diff --git a/GNUmakefile b/GNUmakefile index 353813c43..c92840ca3 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -117,8 +117,8 @@ dev: changelogfmt vendorfmt dev-build dev-build: @$(SHELL) $(CURDIR)/build-support/scripts/build-local.sh -o $(GOOS) -a $(GOARCH) -dev-docker: - @docker build -t '$(CONSUL_DEV_IMAGE)' --build-arg 'GIT_COMMIT=$(GIT_COMMIT)' --build-arg 'GIT_DIRTY=$(GIT_DIRTY)' --build-arg 'GIT_DESCRIBE=$(GIT_DESCRIBE)' -f $(CURDIR)/build-support/docker/Consul-Dev.dockerfile $(CURDIR) +dev-docker: go-build-image + @docker build -t '$(CONSUL_DEV_IMAGE)' --build-arg 'GIT_COMMIT=$(GIT_COMMIT)' --build-arg 'GIT_DIRTY=$(GIT_DIRTY)' --build-arg 'GIT_DESCRIBE=$(GIT_DESCRIBE)' --build-arg 'CONSUL_BUILD_IMAGE=$(GO_BUILD_TAG)' -f $(CURDIR)/build-support/docker/Consul-Dev.dockerfile $(CURDIR) vendorfmt: @echo "--> Formatting vendor/vendor.json" @@ -138,7 +138,7 @@ dist: @$(SHELL) $(CURDIR)/build-support/scripts/release.sh -t '$(DIST_TAG)' -b '$(DIST_BUILD)' -S '$(DIST_SIGN)' $(DIST_VERSION_ARG) $(DIST_DATE_ARG) $(DIST_REL_ARG) verify: - @$(SHELL) $(CURDIR)/build-support/scripts/verify.sh + @$(SHELL) $(CURDIR)/build-support/scripts/verify.sh publish: @$(SHELL) $(CURDIR)/build-support/scripts/publish.sh $(PUB_GIT_ARG) $(PUB_WEBSITE_ARG) @@ -243,34 +243,34 @@ version: @$(SHELL) $(CURDIR)/build-support/scripts/version.sh -g @echo -n "Version + release + git: " @$(SHELL) $(CURDIR)/build-support/scripts/version.sh -r -g - + docker-images: go-build-image ui-build-image ui-legacy-build-image go-build-image: @echo "Building Golang build container" @docker build $(NOCACHE) $(QUIET) --build-arg 'GOTOOLS=$(GOTOOLS)' -t $(GO_BUILD_TAG) - < build-support/docker/Build-Go.dockerfile - + ui-build-image: @echo "Building UI build container" @docker build $(NOCACHE) $(QUIET) -t $(UI_BUILD_TAG) - < build-support/docker/Build-UI.dockerfile - + ui-legacy-build-image: @echo "Building Legacy UI build container" @docker build $(NOCACHE) $(QUIET) -t $(UI_LEGACY_BUILD_TAG) - < build-support/docker/Build-UI-Legacy.dockerfile static-assets-docker: go-build-image @$(SHELL) $(CURDIR)/build-support/scripts/build-docker.sh static-assets - + consul-docker: go-build-image @$(SHELL) $(CURDIR)/build-support/scripts/build-docker.sh consul - + ui-docker: ui-build-image @$(SHELL) $(CURDIR)/build-support/scripts/build-docker.sh ui - + ui-legacy-docker: ui-legacy-build-image @$(SHELL) $(CURDIR)/build-support/scripts/build-docker.sh ui-legacy - - + + .PHONY: all ci bin dev dist cov test test-ci test-internal test-install-deps cover format vet ui static-assets tools vendorfmt .PHONY: docker-images go-build-image ui-build-image ui-legacy-build-image static-assets-docker consul-docker ui-docker ui-legacy-docker version diff --git a/acl/acl.go b/acl/acl.go index b84e30960..3dfab6340 100644 --- a/acl/acl.go +++ b/acl/acl.go @@ -8,14 +8,14 @@ import ( var ( // allowAll is a singleton policy which allows all // non-management actions - allowAll ACL + allowAll Authorizer // denyAll is a singleton policy which denies all actions - denyAll ACL + denyAll Authorizer // manageAll is a singleton policy which allows all // actions, including management - manageAll ACL + manageAll Authorizer ) // DefaultPolicyEnforcementLevel will be used if the user leaves the level @@ -24,27 +24,27 @@ const DefaultPolicyEnforcementLevel = "hard-mandatory" func init() { // Setup the singletons - allowAll = &StaticACL{ + allowAll = &StaticAuthorizer{ allowManage: false, defaultAllow: true, } - denyAll = &StaticACL{ + denyAll = &StaticAuthorizer{ allowManage: false, defaultAllow: false, } - manageAll = &StaticACL{ + manageAll = &StaticAuthorizer{ allowManage: true, defaultAllow: true, } } -// ACL is the interface for policy enforcement. -type ACL interface { - // ACLList checks for permission to list all the ACLs - ACLList() bool +// Authorizer is the interface for policy enforcement. +type Authorizer interface { + // ACLRead checks for permission to list all the ACLs + ACLRead() bool - // ACLModify checks for permission to manipulate ACLs - ACLModify() bool + // ACLWrite checks for permission to manipulate ACLs + ACLWrite() bool // AgentRead checks for permission to read from agent endpoints for a // given node. @@ -133,135 +133,135 @@ type ACL interface { Snapshot() bool } -// StaticACL is used to implement a base ACL policy. It either +// StaticAuthorizer is used to implement a base ACL policy. It either // allows or denies all requests. This can be used as a parent // ACL to act in a blacklist or whitelist mode. -type StaticACL struct { +type StaticAuthorizer struct { allowManage bool defaultAllow bool } -func (s *StaticACL) ACLList() bool { +func (s *StaticAuthorizer) ACLRead() bool { return s.allowManage } -func (s *StaticACL) ACLModify() bool { +func (s *StaticAuthorizer) ACLWrite() bool { return s.allowManage } -func (s *StaticACL) AgentRead(string) bool { +func (s *StaticAuthorizer) AgentRead(string) bool { return s.defaultAllow } -func (s *StaticACL) AgentWrite(string) bool { +func (s *StaticAuthorizer) AgentWrite(string) bool { return s.defaultAllow } -func (s *StaticACL) EventRead(string) bool { +func (s *StaticAuthorizer) EventRead(string) bool { return s.defaultAllow } -func (s *StaticACL) EventWrite(string) bool { +func (s *StaticAuthorizer) EventWrite(string) bool { return s.defaultAllow } -func (s *StaticACL) IntentionDefaultAllow() bool { +func (s *StaticAuthorizer) IntentionDefaultAllow() bool { return s.defaultAllow } -func (s *StaticACL) IntentionRead(string) bool { +func (s *StaticAuthorizer) IntentionRead(string) bool { return s.defaultAllow } -func (s *StaticACL) IntentionWrite(string) bool { +func (s *StaticAuthorizer) IntentionWrite(string) bool { return s.defaultAllow } -func (s *StaticACL) KeyRead(string) bool { +func (s *StaticAuthorizer) KeyRead(string) bool { return s.defaultAllow } -func (s *StaticACL) KeyList(string) bool { +func (s *StaticAuthorizer) KeyList(string) bool { return s.defaultAllow } -func (s *StaticACL) KeyWrite(string, sentinel.ScopeFn) bool { +func (s *StaticAuthorizer) KeyWrite(string, sentinel.ScopeFn) bool { return s.defaultAllow } -func (s *StaticACL) KeyWritePrefix(string) bool { +func (s *StaticAuthorizer) KeyWritePrefix(string) bool { return s.defaultAllow } -func (s *StaticACL) KeyringRead() bool { +func (s *StaticAuthorizer) KeyringRead() bool { return s.defaultAllow } -func (s *StaticACL) KeyringWrite() bool { +func (s *StaticAuthorizer) KeyringWrite() bool { return s.defaultAllow } -func (s *StaticACL) NodeRead(string) bool { +func (s *StaticAuthorizer) NodeRead(string) bool { return s.defaultAllow } -func (s *StaticACL) NodeWrite(string, sentinel.ScopeFn) bool { +func (s *StaticAuthorizer) NodeWrite(string, sentinel.ScopeFn) bool { return s.defaultAllow } -func (s *StaticACL) OperatorRead() bool { +func (s *StaticAuthorizer) OperatorRead() bool { return s.defaultAllow } -func (s *StaticACL) OperatorWrite() bool { +func (s *StaticAuthorizer) OperatorWrite() bool { return s.defaultAllow } -func (s *StaticACL) PreparedQueryRead(string) bool { +func (s *StaticAuthorizer) PreparedQueryRead(string) bool { return s.defaultAllow } -func (s *StaticACL) PreparedQueryWrite(string) bool { +func (s *StaticAuthorizer) PreparedQueryWrite(string) bool { return s.defaultAllow } -func (s *StaticACL) ServiceRead(string) bool { +func (s *StaticAuthorizer) ServiceRead(string) bool { return s.defaultAllow } -func (s *StaticACL) ServiceWrite(string, sentinel.ScopeFn) bool { +func (s *StaticAuthorizer) ServiceWrite(string, sentinel.ScopeFn) bool { return s.defaultAllow } -func (s *StaticACL) SessionRead(string) bool { +func (s *StaticAuthorizer) SessionRead(string) bool { return s.defaultAllow } -func (s *StaticACL) SessionWrite(string) bool { +func (s *StaticAuthorizer) SessionWrite(string) bool { return s.defaultAllow } -func (s *StaticACL) Snapshot() bool { +func (s *StaticAuthorizer) Snapshot() bool { return s.allowManage } -// AllowAll returns an ACL rule that allows all operations -func AllowAll() ACL { +// AllowAll returns an Authorizer that allows all operations +func AllowAll() Authorizer { return allowAll } -// DenyAll returns an ACL rule that denies all operations -func DenyAll() ACL { +// DenyAll returns an Authorizer that denies all operations +func DenyAll() Authorizer { return denyAll } -// ManageAll returns an ACL rule that can manage all resources -func ManageAll() ACL { +// ManageAll returns an Authorizer that can manage all resources +func ManageAll() Authorizer { return manageAll } -// RootACL returns a possible ACL if the ID matches a root policy -func RootACL(id string) ACL { +// RootAuthorizer returns a possible Authorizer if the ID matches a root policy +func RootAuthorizer(id string) Authorizer { switch id { case "allow": return allowAll @@ -274,9 +274,9 @@ func RootACL(id string) ACL { } } -// PolicyRule binds a regular ACL policy along with an optional piece of +// RulePolicy binds a regular ACL policy along with an optional piece of // code to execute. -type PolicyRule struct { +type RulePolicy struct { // aclPolicy is used for simple acl rules(allow/deny/manage) aclPolicy string @@ -284,39 +284,43 @@ type PolicyRule struct { sentinelPolicy Sentinel } -// PolicyACL is used to wrap a set of ACL policies to provide -// the ACL interface. -type PolicyACL struct { +// PolicyAuthorizer is used to wrap a set of ACL policies to provide +// the Authorizer interface. +// +type PolicyAuthorizer struct { // parent is used to resolve policy if we have // no matching rule. - parent ACL + parent Authorizer // sentinel is an interface for validating and executing sentinel code // policies. sentinel sentinel.Evaluator - // agentRules contains the agent policies + // aclRule contains the acl management policy. + aclRule string + + // agentRules contain the exact-match agent policies agentRules *radix.Tree - // intentionRules contains the service intention policies + // intentionRules contains the service intention exact-match policies intentionRules *radix.Tree - // keyRules contains the key policies + // keyRules contains the key exact-match policies keyRules *radix.Tree - // nodeRules contains the node policies + // nodeRules contains the node exact-match policies nodeRules *radix.Tree - // serviceRules contains the service policies + // serviceRules contains the service exact-match policies serviceRules *radix.Tree - // sessionRules contains the session policies + // sessionRules contains the session exact-match policies sessionRules *radix.Tree - // eventRules contains the user event policies + // eventRules contains the user event exact-match policies eventRules *radix.Tree - // preparedQueryRules contains the prepared query policies + // preparedQueryRules contains the prepared query exact-match policies preparedQueryRules *radix.Tree // keyringRule contains the keyring policies. The keyring has @@ -328,6 +332,52 @@ type PolicyACL struct { operatorRule string } +// policyAuthorizerRadixLeaf is used as the main +// structure for storing in the radix.Tree's within the +// PolicyAuthorizer +type policyAuthorizerRadixLeaf struct { + exact interface{} + prefix interface{} +} + +// getPolicy first attempts to get an exact match for the segment from the "exact" tree and then falls +// back to getting the policy for the longest prefix from the "prefix" tree +func getPolicy(segment string, tree *radix.Tree) (policy interface{}, found bool) { + found = false + + tree.WalkPath(segment, func(path string, leaf interface{}) bool { + policies := leaf.(*policyAuthorizerRadixLeaf) + if policies.exact != nil && path == segment { + found = true + policy = policies.exact + return true + } + + if policies.prefix != nil { + found = true + policy = policies.prefix + } + return false + }) + return +} + +func insertPolicyIntoRadix(segment string, tree *radix.Tree, exactPolicy interface{}, prefixPolicy interface{}) { + leaf, found := tree.Get(segment) + if found { + policy := leaf.(*policyAuthorizerRadixLeaf) + if exactPolicy != nil { + policy.exact = exactPolicy + } + if prefixPolicy != nil { + policy.prefix = prefixPolicy + } + } else { + policy := &policyAuthorizerRadixLeaf{exact: exactPolicy, prefix: prefixPolicy} + tree.Insert(segment, policy) + } +} + func enforce(rule string, requiredPermission string) (allow, recurse bool) { switch rule { case PolicyWrite: @@ -356,10 +406,10 @@ func enforce(rule string, requiredPermission string) (allow, recurse bool) { } } -// New is used to construct a policy based ACL from a set of policies +// NewPolicyAuthorizer is used to construct a policy based ACL from a set of policies // and a parent policy to resolve missing cases. -func New(parent ACL, policy *Policy, sentinel sentinel.Evaluator) (*PolicyACL, error) { - p := &PolicyACL{ +func NewPolicyAuthorizer(parent Authorizer, policies []*Policy, sentinel sentinel.Evaluator) (*PolicyAuthorizer, error) { + p := &PolicyAuthorizer{ parent: parent, agentRules: radix.New(), intentionRules: radix.New(), @@ -372,40 +422,62 @@ func New(parent ACL, policy *Policy, sentinel sentinel.Evaluator) (*PolicyACL, e sentinel: sentinel, } - // Load the agent policy + policy := MergePolicies(policies) + + // Load the agent policy (exact matches) for _, ap := range policy.Agents { - p.agentRules.Insert(ap.Node, ap.Policy) + insertPolicyIntoRadix(ap.Node, p.agentRules, ap.Policy, nil) } - // Load the key policy + // Load the agent policy (prefix matches) + for _, ap := range policy.AgentPrefixes { + insertPolicyIntoRadix(ap.Node, p.agentRules, nil, ap.Policy) + } + + // Load the key policy (exact matches) for _, kp := range policy.Keys { - policyRule := PolicyRule{ + policyRule := RulePolicy{ aclPolicy: kp.Policy, sentinelPolicy: kp.Sentinel, } - p.keyRules.Insert(kp.Prefix, policyRule) + insertPolicyIntoRadix(kp.Prefix, p.keyRules, policyRule, nil) } - // Load the node policy + // Load the key policy (prefix matches) + for _, kp := range policy.KeyPrefixes { + policyRule := RulePolicy{ + aclPolicy: kp.Policy, + sentinelPolicy: kp.Sentinel, + } + insertPolicyIntoRadix(kp.Prefix, p.keyRules, nil, policyRule) + } + + // Load the node policy (exact matches) for _, np := range policy.Nodes { - policyRule := PolicyRule{ + policyRule := RulePolicy{ aclPolicy: np.Policy, sentinelPolicy: np.Sentinel, } - p.nodeRules.Insert(np.Name, policyRule) + insertPolicyIntoRadix(np.Name, p.nodeRules, policyRule, nil) } - // Load the service policy + // Load the node policy (prefix matches) + for _, np := range policy.NodePrefixes { + policyRule := RulePolicy{ + aclPolicy: np.Policy, + sentinelPolicy: np.Sentinel, + } + insertPolicyIntoRadix(np.Name, p.nodeRules, nil, policyRule) + } + + // Load the service policy (exact matches) for _, sp := range policy.Services { - policyRule := PolicyRule{ + policyRule := RulePolicy{ aclPolicy: sp.Policy, sentinelPolicy: sp.Sentinel, } - p.serviceRules.Insert(sp.Name, policyRule) + insertPolicyIntoRadix(sp.Name, p.serviceRules, policyRule, nil) - // Determine the intention. The intention could be blank (not set). - // If the intention is not set, the value depends on the value of - // the service policy. intention := sp.Intentions if intention == "" { switch sp.Policy { @@ -416,28 +488,71 @@ func New(parent ACL, policy *Policy, sentinel sentinel.Evaluator) (*PolicyACL, e } } - policyRule = PolicyRule{ + policyRule = RulePolicy{ aclPolicy: intention, sentinelPolicy: sp.Sentinel, } - p.intentionRules.Insert(sp.Name, policyRule) + insertPolicyIntoRadix(sp.Name, p.intentionRules, policyRule, nil) } - // Load the session policy + // Load the service policy (prefix matches) + for _, sp := range policy.ServicePrefixes { + policyRule := RulePolicy{ + aclPolicy: sp.Policy, + sentinelPolicy: sp.Sentinel, + } + insertPolicyIntoRadix(sp.Name, p.serviceRules, nil, policyRule) + + intention := sp.Intentions + if intention == "" { + switch sp.Policy { + case PolicyRead, PolicyWrite: + intention = PolicyRead + default: + intention = PolicyDeny + } + } + + policyRule = RulePolicy{ + aclPolicy: intention, + sentinelPolicy: sp.Sentinel, + } + insertPolicyIntoRadix(sp.Name, p.intentionRules, nil, policyRule) + } + + // Load the session policy (exact matches) for _, sp := range policy.Sessions { - p.sessionRules.Insert(sp.Node, sp.Policy) + insertPolicyIntoRadix(sp.Node, p.sessionRules, sp.Policy, nil) } - // Load the event policy + // Load the session policy (prefix matches) + for _, sp := range policy.SessionPrefixes { + insertPolicyIntoRadix(sp.Node, p.sessionRules, nil, sp.Policy) + } + + // Load the event policy (exact matches) for _, ep := range policy.Events { - p.eventRules.Insert(ep.Event, ep.Policy) + insertPolicyIntoRadix(ep.Event, p.eventRules, ep.Policy, nil) } - // Load the prepared query policy - for _, pq := range policy.PreparedQueries { - p.preparedQueryRules.Insert(pq.Prefix, pq.Policy) + // Load the event policy (prefix matches) + for _, ep := range policy.EventPrefixes { + insertPolicyIntoRadix(ep.Event, p.eventRules, nil, ep.Policy) } + // Load the prepared query policy (exact matches) + for _, qp := range policy.PreparedQueries { + insertPolicyIntoRadix(qp.Prefix, p.preparedQueryRules, qp.Policy, nil) + } + + // Load the prepared query policy (prefix matches) + for _, qp := range policy.PreparedQueryPrefixes { + insertPolicyIntoRadix(qp.Prefix, p.preparedQueryRules, nil, qp.Policy) + } + + // Load the acl policy + p.aclRule = policy.ACL + // Load the keyring policy p.keyringRule = policy.Keyring @@ -447,21 +562,29 @@ func New(parent ACL, policy *Policy, sentinel sentinel.Evaluator) (*PolicyACL, e return p, nil } -// ACLList checks if listing of ACLs is allowed -func (p *PolicyACL) ACLList() bool { - return p.parent.ACLList() +// ACLRead checks if listing of ACLs is allowed +func (p *PolicyAuthorizer) ACLRead() bool { + if allow, recurse := enforce(p.aclRule, PolicyRead); !recurse { + return allow + } + + return p.parent.ACLRead() } -// ACLModify checks if modification of ACLs is allowed -func (p *PolicyACL) ACLModify() bool { - return p.parent.ACLModify() +// ACLWrite checks if modification of ACLs is allowed +func (p *PolicyAuthorizer) ACLWrite() bool { + if allow, recurse := enforce(p.aclRule, PolicyWrite); !recurse { + return allow + } + + return p.parent.ACLWrite() } // AgentRead checks for permission to read from agent endpoints for a given // node. -func (p *PolicyACL) AgentRead(node string) bool { +func (p *PolicyAuthorizer) AgentRead(node string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.agentRules.LongestPrefix(node); ok { + if rule, ok := getPolicy(node, p.agentRules); ok { if allow, recurse := enforce(rule.(string), PolicyRead); !recurse { return allow } @@ -473,11 +596,9 @@ func (p *PolicyACL) AgentRead(node string) bool { // AgentWrite checks for permission to make changes via agent endpoints for a // given node. -func (p *PolicyACL) AgentWrite(node string) bool { +func (p *PolicyAuthorizer) AgentWrite(node string) bool { // Check for an exact rule or catch-all - _, rule, ok := p.agentRules.LongestPrefix(node) - - if ok { + if rule, ok := getPolicy(node, p.agentRules); ok { if allow, recurse := enforce(rule.(string), PolicyWrite); !recurse { return allow } @@ -488,15 +609,18 @@ func (p *PolicyACL) AgentWrite(node string) bool { } // Snapshot checks if taking and restoring snapshots is allowed. -func (p *PolicyACL) Snapshot() bool { +func (p *PolicyAuthorizer) Snapshot() bool { + if allow, recurse := enforce(p.aclRule, PolicyWrite); !recurse { + return allow + } 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 { +func (p *PolicyAuthorizer) EventRead(name string) bool { // Longest-prefix match on event names - if _, rule, ok := p.eventRules.LongestPrefix(name); ok { + if rule, ok := getPolicy(name, p.eventRules); ok { if allow, recurse := enforce(rule.(string), PolicyRead); !recurse { return allow } @@ -508,9 +632,9 @@ func (p *PolicyACL) EventRead(name string) bool { // EventWrite is used to determine if new events can be created // (fired) by the policy. -func (p *PolicyACL) EventWrite(name string) bool { +func (p *PolicyAuthorizer) EventWrite(name string) bool { // Longest-prefix match event names - if _, rule, ok := p.eventRules.LongestPrefix(name); ok { + if rule, ok := getPolicy(name, p.eventRules); ok { if allow, recurse := enforce(rule.(string), PolicyWrite); !recurse { return allow } @@ -522,17 +646,17 @@ func (p *PolicyACL) EventWrite(name string) bool { // IntentionDefaultAllow returns whether the default behavior when there are // no matching intentions is to allow or deny. -func (p *PolicyACL) IntentionDefaultAllow() bool { +func (p *PolicyAuthorizer) IntentionDefaultAllow() bool { // We always go up, this can't be determined by a policy. return p.parent.IntentionDefaultAllow() } // IntentionRead checks if writing (creating, updating, or deleting) of an // intention is allowed. -func (p *PolicyACL) IntentionRead(prefix string) bool { +func (p *PolicyAuthorizer) IntentionRead(prefix string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.intentionRules.LongestPrefix(prefix); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(prefix, p.intentionRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyRead); !recurse { return allow } @@ -544,11 +668,12 @@ func (p *PolicyACL) IntentionRead(prefix string) bool { // IntentionWrite checks if writing (creating, updating, or deleting) of an // intention is allowed. -func (p *PolicyACL) IntentionWrite(prefix string) bool { +func (p *PolicyAuthorizer) IntentionWrite(prefix string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.intentionRules.LongestPrefix(prefix); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(prefix, p.intentionRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyWrite); !recurse { + // TODO (ACL-V2) - should we do sentinel enforcement here return allow } } @@ -558,10 +683,10 @@ func (p *PolicyACL) IntentionWrite(prefix string) bool { } // KeyRead returns if a key is allowed to be read -func (p *PolicyACL) KeyRead(key string) bool { +func (p *PolicyAuthorizer) KeyRead(key string) bool { // Look for a matching rule - if _, rule, ok := p.keyRules.LongestPrefix(key); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(key, p.keyRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyRead); !recurse { return allow } @@ -572,10 +697,10 @@ func (p *PolicyACL) KeyRead(key string) bool { } // KeyList returns if a key is allowed to be listed -func (p *PolicyACL) KeyList(key string) bool { +func (p *PolicyAuthorizer) KeyList(key string) bool { // Look for a matching rule - if _, rule, ok := p.keyRules.LongestPrefix(key); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(key, p.keyRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyList); !recurse { return allow } @@ -586,10 +711,10 @@ func (p *PolicyACL) KeyList(key string) bool { } // KeyWrite returns if a key is allowed to be written -func (p *PolicyACL) KeyWrite(key string, scope sentinel.ScopeFn) bool { +func (p *PolicyAuthorizer) KeyWrite(key string, scope sentinel.ScopeFn) bool { // Look for a matching rule - if _, rule, ok := p.keyRules.LongestPrefix(key); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(key, p.keyRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyWrite); !recurse { if allow { return p.executeCodePolicy(&pr.sentinelPolicy, scope) @@ -603,21 +728,53 @@ func (p *PolicyACL) KeyWrite(key string, scope sentinel.ScopeFn) bool { } // KeyWritePrefix returns if a prefix is allowed to be written -func (p *PolicyACL) KeyWritePrefix(prefix string) bool { +// +// This is mainly used to detect whether a whole tree within +// the KV can be removed. For that reason we must be able to +// delete everything under the prefix. First we must have "write" +// on the prefix itself +func (p *PolicyAuthorizer) KeyWritePrefix(prefix string) bool { // Look for a matching rule that denies - _, rule, ok := p.keyRules.LongestPrefix(prefix) - if ok && rule.(PolicyRule).aclPolicy != PolicyWrite { + prefixAllowed := true + found := false + + // Look for a prefix rule that would apply to the prefix we are checking + // WalkPath starts at the root and walks down to the given prefix. + // Therefore the last prefix rule we see is the one that matters + p.keyRules.WalkPath(prefix, func(path string, leaf interface{}) bool { + rule := leaf.(*policyAuthorizerRadixLeaf) + + if rule.prefix != nil { + found = true + if rule.prefix.(RulePolicy).aclPolicy != PolicyWrite { + prefixAllowed = false + } else { + prefixAllowed = true + } + } + return false + }) + + if !prefixAllowed { return false } - // Look if any of our children have a deny policy + // Look if any of our children do not allow write access. This loop takes + // into account both prefix and exact match rules. deny := false - p.keyRules.WalkPrefix(prefix, func(path string, rule interface{}) bool { - // We have a rule to prevent a write in a sub-directory! - if rule.(PolicyRule).aclPolicy != PolicyWrite { + p.keyRules.WalkPrefix(prefix, func(path string, leaf interface{}) bool { + found = true + rule := leaf.(*policyAuthorizerRadixLeaf) + + if rule.prefix != nil && rule.prefix.(RulePolicy).aclPolicy != PolicyWrite { deny = true return true } + if rule.exact != nil && rule.exact.(RulePolicy).aclPolicy != PolicyWrite { + deny = true + return true + } + return false }) @@ -627,7 +784,7 @@ func (p *PolicyACL) KeyWritePrefix(prefix string) bool { } // If we had a matching rule, done - if ok { + if found { return true } @@ -637,7 +794,7 @@ func (p *PolicyACL) KeyWritePrefix(prefix string) bool { // KeyringRead is used to determine if the keyring can be // read by the current ACL token. -func (p *PolicyACL) KeyringRead() bool { +func (p *PolicyAuthorizer) KeyringRead() bool { if allow, recurse := enforce(p.keyringRule, PolicyRead); !recurse { return allow } @@ -646,7 +803,7 @@ func (p *PolicyACL) KeyringRead() bool { } // KeyringWrite determines if the keyring can be manipulated. -func (p *PolicyACL) KeyringWrite() bool { +func (p *PolicyAuthorizer) KeyringWrite() bool { if allow, recurse := enforce(p.keyringRule, PolicyWrite); !recurse { return allow } @@ -655,7 +812,7 @@ func (p *PolicyACL) KeyringWrite() bool { } // OperatorRead determines if the read-only operator functions are allowed. -func (p *PolicyACL) OperatorRead() bool { +func (p *PolicyAuthorizer) OperatorRead() bool { if allow, recurse := enforce(p.operatorRule, PolicyRead); !recurse { return allow } @@ -665,7 +822,7 @@ func (p *PolicyACL) OperatorRead() bool { // OperatorWrite determines if the state-changing operator functions are // allowed. -func (p *PolicyACL) OperatorWrite() bool { +func (p *PolicyAuthorizer) OperatorWrite() bool { if allow, recurse := enforce(p.operatorRule, PolicyWrite); !recurse { return allow } @@ -674,11 +831,12 @@ func (p *PolicyACL) OperatorWrite() bool { } // NodeRead checks if reading (discovery) of a node is allowed -func (p *PolicyACL) NodeRead(name string) bool { +func (p *PolicyAuthorizer) NodeRead(name string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.nodeRules.LongestPrefix(name); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(name, p.nodeRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyRead); !recurse { + // TODO (ACL-V2) - Should we do sentinel enforcement here return allow } } @@ -688,10 +846,10 @@ func (p *PolicyACL) NodeRead(name string) bool { } // NodeWrite checks if writing (registering) a node is allowed -func (p *PolicyACL) NodeWrite(name string, scope sentinel.ScopeFn) bool { +func (p *PolicyAuthorizer) NodeWrite(name string, scope sentinel.ScopeFn) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.nodeRules.LongestPrefix(name); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(name, p.nodeRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyWrite); !recurse { return allow } @@ -703,9 +861,9 @@ func (p *PolicyACL) NodeWrite(name string, scope sentinel.ScopeFn) bool { // PreparedQueryRead checks if reading (listing) of a prepared query is // allowed - this isn't execution, just listing its contents. -func (p *PolicyACL) PreparedQueryRead(prefix string) bool { +func (p *PolicyAuthorizer) PreparedQueryRead(prefix string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.preparedQueryRules.LongestPrefix(prefix); ok { + if rule, ok := getPolicy(prefix, p.preparedQueryRules); ok { if allow, recurse := enforce(rule.(string), PolicyRead); !recurse { return allow } @@ -717,9 +875,9 @@ func (p *PolicyACL) PreparedQueryRead(prefix string) bool { // PreparedQueryWrite checks if writing (creating, updating, or deleting) of a // prepared query is allowed. -func (p *PolicyACL) PreparedQueryWrite(prefix string) bool { +func (p *PolicyAuthorizer) PreparedQueryWrite(prefix string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.preparedQueryRules.LongestPrefix(prefix); ok { + if rule, ok := getPolicy(prefix, p.preparedQueryRules); ok { if allow, recurse := enforce(rule.(string), PolicyWrite); !recurse { return allow } @@ -730,10 +888,10 @@ func (p *PolicyACL) PreparedQueryWrite(prefix string) bool { } // ServiceRead checks if reading (discovery) of a service is allowed -func (p *PolicyACL) ServiceRead(name string) bool { +func (p *PolicyAuthorizer) ServiceRead(name string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.serviceRules.LongestPrefix(name); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(name, p.serviceRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyRead); !recurse { return allow } @@ -744,10 +902,10 @@ func (p *PolicyACL) ServiceRead(name string) bool { } // ServiceWrite checks if writing (registering) a service is allowed -func (p *PolicyACL) ServiceWrite(name string, scope sentinel.ScopeFn) bool { +func (p *PolicyAuthorizer) ServiceWrite(name string, scope sentinel.ScopeFn) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.serviceRules.LongestPrefix(name); ok { - pr := rule.(PolicyRule) + if rule, ok := getPolicy(name, p.serviceRules); ok { + pr := rule.(RulePolicy) if allow, recurse := enforce(pr.aclPolicy, PolicyWrite); !recurse { return allow } @@ -758,9 +916,9 @@ func (p *PolicyACL) ServiceWrite(name string, scope sentinel.ScopeFn) bool { } // SessionRead checks for permission to read sessions for a given node. -func (p *PolicyACL) SessionRead(node string) bool { +func (p *PolicyAuthorizer) SessionRead(node string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.sessionRules.LongestPrefix(node); ok { + if rule, ok := getPolicy(node, p.sessionRules); ok { if allow, recurse := enforce(rule.(string), PolicyRead); !recurse { return allow } @@ -771,9 +929,9 @@ func (p *PolicyACL) SessionRead(node string) bool { } // SessionWrite checks for permission to create sessions for a given node. -func (p *PolicyACL) SessionWrite(node string) bool { +func (p *PolicyAuthorizer) SessionWrite(node string) bool { // Check for an exact rule or catch-all - if _, rule, ok := p.sessionRules.LongestPrefix(node); ok { + if rule, ok := getPolicy(node, p.sessionRules); ok { if allow, recurse := enforce(rule.(string), PolicyWrite); !recurse { return allow } @@ -785,7 +943,7 @@ func (p *PolicyACL) SessionWrite(node string) bool { // executeCodePolicy will run the associated code policy if code policies are // enabled. -func (p *PolicyACL) executeCodePolicy(policy *Sentinel, scope sentinel.ScopeFn) bool { +func (p *PolicyAuthorizer) executeCodePolicy(policy *Sentinel, scope sentinel.ScopeFn) bool { if p.sentinel == nil { return true } diff --git a/acl/acl_test.go b/acl/acl_test.go index f93cd7b78..14c1904d0 100644 --- a/acl/acl_test.go +++ b/acl/acl_test.go @@ -7,230 +7,251 @@ import ( "github.com/stretchr/testify/require" ) +func legacyPolicy(policy *Policy) *Policy { + return &Policy{ + Agents: policy.Agents, + AgentPrefixes: policy.Agents, + Nodes: policy.Nodes, + NodePrefixes: policy.Nodes, + Keys: policy.Keys, + KeyPrefixes: policy.Keys, + Services: policy.Services, + ServicePrefixes: policy.Services, + Sessions: policy.Sessions, + SessionPrefixes: policy.Sessions, + Events: policy.Events, + EventPrefixes: policy.Events, + PreparedQueries: policy.PreparedQueries, + PreparedQueryPrefixes: policy.PreparedQueries, + Keyring: policy.Keyring, + Operator: policy.Operator, + } +} + // // The following 1 line functions are created to all conform to what // can be stored in the aclCheck type to make defining ACL tests // nicer in the embedded struct within TestACL // -func checkAllowACLList(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.ACLList()) +func checkAllowACLRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.ACLRead()) } -func checkAllowACLModify(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.ACLModify()) +func checkAllowACLWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.ACLWrite()) } -func checkAllowAgentRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.AgentRead(prefix)) +func checkAllowAgentRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.AgentRead(prefix)) } -func checkAllowAgentWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.AgentWrite(prefix)) +func checkAllowAgentWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.AgentWrite(prefix)) } -func checkAllowEventRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.EventRead(prefix)) +func checkAllowEventRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.EventRead(prefix)) } -func checkAllowEventWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.EventWrite(prefix)) +func checkAllowEventWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.EventWrite(prefix)) } -func checkAllowIntentionDefaultAllow(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.IntentionDefaultAllow()) +func checkAllowIntentionDefaultAllow(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.IntentionDefaultAllow()) } -func checkAllowIntentionRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.IntentionRead(prefix)) +func checkAllowIntentionRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.IntentionRead(prefix)) } -func checkAllowIntentionWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.IntentionWrite(prefix)) +func checkAllowIntentionWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.IntentionWrite(prefix)) } -func checkAllowKeyRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.KeyRead(prefix)) +func checkAllowKeyRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.KeyRead(prefix)) } -func checkAllowKeyList(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.KeyList(prefix)) +func checkAllowKeyList(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.KeyList(prefix)) } -func checkAllowKeyringRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.KeyringRead()) +func checkAllowKeyringRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.KeyringRead()) } -func checkAllowKeyringWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.KeyringWrite()) +func checkAllowKeyringWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.KeyringWrite()) } -func checkAllowKeyWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.KeyWrite(prefix, nil)) +func checkAllowKeyWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.KeyWrite(prefix, nil)) } -func checkAllowKeyWritePrefix(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.KeyWritePrefix(prefix)) +func checkAllowKeyWritePrefix(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.KeyWritePrefix(prefix)) } -func checkAllowNodeRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.NodeRead(prefix)) +func checkAllowNodeRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.NodeRead(prefix)) } -func checkAllowNodeWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.NodeWrite(prefix, nil)) +func checkAllowNodeWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.NodeWrite(prefix, nil)) } -func checkAllowOperatorRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.OperatorRead()) +func checkAllowOperatorRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.OperatorRead()) } -func checkAllowOperatorWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.OperatorWrite()) +func checkAllowOperatorWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.OperatorWrite()) } -func checkAllowPreparedQueryRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.PreparedQueryRead(prefix)) +func checkAllowPreparedQueryRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.PreparedQueryRead(prefix)) } -func checkAllowPreparedQueryWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.PreparedQueryWrite(prefix)) +func checkAllowPreparedQueryWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.PreparedQueryWrite(prefix)) } -func checkAllowServiceRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.ServiceRead(prefix)) +func checkAllowServiceRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.ServiceRead(prefix)) } -func checkAllowServiceWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.ServiceWrite(prefix, nil)) +func checkAllowServiceWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.ServiceWrite(prefix, nil)) } -func checkAllowSessionRead(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.SessionRead(prefix)) +func checkAllowSessionRead(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.SessionRead(prefix)) } -func checkAllowSessionWrite(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.SessionWrite(prefix)) +func checkAllowSessionWrite(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.SessionWrite(prefix)) } -func checkAllowSnapshot(t *testing.T, acl ACL, prefix string) { - require.True(t, acl.Snapshot()) +func checkAllowSnapshot(t *testing.T, authz Authorizer, prefix string) { + require.True(t, authz.Snapshot()) } -func checkDenyACLList(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.ACLList()) +func checkDenyACLRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.ACLRead()) } -func checkDenyACLModify(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.ACLModify()) +func checkDenyACLWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.ACLWrite()) } -func checkDenyAgentRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.AgentRead(prefix)) +func checkDenyAgentRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.AgentRead(prefix)) } -func checkDenyAgentWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.AgentWrite(prefix)) +func checkDenyAgentWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.AgentWrite(prefix)) } -func checkDenyEventRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.EventRead(prefix)) +func checkDenyEventRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.EventRead(prefix)) } -func checkDenyEventWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.EventWrite(prefix)) +func checkDenyEventWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.EventWrite(prefix)) } -func checkDenyIntentionDefaultAllow(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.IntentionDefaultAllow()) +func checkDenyIntentionDefaultAllow(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.IntentionDefaultAllow()) } -func checkDenyIntentionRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.IntentionRead(prefix)) +func checkDenyIntentionRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.IntentionRead(prefix)) } -func checkDenyIntentionWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.IntentionWrite(prefix)) +func checkDenyIntentionWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.IntentionWrite(prefix)) } -func checkDenyKeyRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.KeyRead(prefix)) +func checkDenyKeyRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.KeyRead(prefix)) } -func checkDenyKeyList(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.KeyList(prefix)) +func checkDenyKeyList(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.KeyList(prefix)) } -func checkDenyKeyringRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.KeyringRead()) +func checkDenyKeyringRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.KeyringRead()) } -func checkDenyKeyringWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.KeyringWrite()) +func checkDenyKeyringWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.KeyringWrite()) } -func checkDenyKeyWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.KeyWrite(prefix, nil)) +func checkDenyKeyWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.KeyWrite(prefix, nil)) } -func checkDenyKeyWritePrefix(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.KeyWritePrefix(prefix)) +func checkDenyKeyWritePrefix(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.KeyWritePrefix(prefix)) } -func checkDenyNodeRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.NodeRead(prefix)) +func checkDenyNodeRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.NodeRead(prefix)) } -func checkDenyNodeWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.NodeWrite(prefix, nil)) +func checkDenyNodeWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.NodeWrite(prefix, nil)) } -func checkDenyOperatorRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.OperatorRead()) +func checkDenyOperatorRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.OperatorRead()) } -func checkDenyOperatorWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.OperatorWrite()) +func checkDenyOperatorWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.OperatorWrite()) } -func checkDenyPreparedQueryRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.PreparedQueryRead(prefix)) +func checkDenyPreparedQueryRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.PreparedQueryRead(prefix)) } -func checkDenyPreparedQueryWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.PreparedQueryWrite(prefix)) +func checkDenyPreparedQueryWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.PreparedQueryWrite(prefix)) } -func checkDenyServiceRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.ServiceRead(prefix)) +func checkDenyServiceRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.ServiceRead(prefix)) } -func checkDenyServiceWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.ServiceWrite(prefix, nil)) +func checkDenyServiceWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.ServiceWrite(prefix, nil)) } -func checkDenySessionRead(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.SessionRead(prefix)) +func checkDenySessionRead(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.SessionRead(prefix)) } -func checkDenySessionWrite(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.SessionWrite(prefix)) +func checkDenySessionWrite(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.SessionWrite(prefix)) } -func checkDenySnapshot(t *testing.T, acl ACL, prefix string) { - require.False(t, acl.Snapshot()) +func checkDenySnapshot(t *testing.T, authz Authorizer, prefix string) { + require.False(t, authz.Snapshot()) } func TestACL(t *testing.T) { type aclCheck struct { name string prefix string - check func(t *testing.T, acl ACL, prefix string) + check func(t *testing.T, authz Authorizer, prefix string) } type aclTest struct { name string - defaultPolicy ACL + defaultPolicy Authorizer policyStack []*Policy checks []aclCheck } @@ -240,8 +261,8 @@ func TestACL(t *testing.T) { name: "DenyAll", defaultPolicy: DenyAll(), checks: []aclCheck{ - {name: "DenyACLList", check: checkDenyACLList}, - {name: "DenyACLModify", check: checkDenyACLModify}, + {name: "DenyACLRead", check: checkDenyACLRead}, + {name: "DenyACLWrite", check: checkDenyACLWrite}, {name: "DenyAgentRead", check: checkDenyAgentRead}, {name: "DenyAgentWrite", check: checkDenyAgentWrite}, {name: "DenyEventRead", check: checkDenyEventRead}, @@ -270,8 +291,8 @@ func TestACL(t *testing.T) { name: "AllowAll", defaultPolicy: AllowAll(), checks: []aclCheck{ - {name: "DenyACLList", check: checkDenyACLList}, - {name: "DenyACLModify", check: checkDenyACLModify}, + {name: "DenyACLRead", check: checkDenyACLRead}, + {name: "DenyACLWrite", check: checkDenyACLWrite}, {name: "AllowAgentRead", check: checkAllowAgentRead}, {name: "AllowAgentWrite", check: checkAllowAgentWrite}, {name: "AllowEventRead", check: checkAllowEventRead}, @@ -300,8 +321,8 @@ func TestACL(t *testing.T) { name: "ManageAll", defaultPolicy: ManageAll(), checks: []aclCheck{ - {name: "AllowACLList", check: checkAllowACLList}, - {name: "AllowACLModify", check: checkAllowACLModify}, + {name: "AllowACLRead", check: checkAllowACLRead}, + {name: "AllowACLWrite", check: checkAllowACLWrite}, {name: "AllowAgentRead", check: checkAllowAgentRead}, {name: "AllowAgentWrite", check: checkAllowAgentWrite}, {name: "AllowEventRead", check: checkAllowEventRead}, @@ -330,7 +351,7 @@ func TestACL(t *testing.T) { name: "AgentBasicDefaultDeny", defaultPolicy: DenyAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Agents: []*AgentPolicy{ &AgentPolicy{ Node: "root", @@ -345,7 +366,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadDenied", prefix: "ro", check: checkDenyAgentRead}, @@ -368,7 +389,7 @@ func TestACL(t *testing.T) { name: "AgentBasicDefaultAllow", defaultPolicy: AllowAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Agents: []*AgentPolicy{ &AgentPolicy{ Node: "root", @@ -383,7 +404,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadDenied", prefix: "ro", check: checkAllowAgentRead}, @@ -406,14 +427,14 @@ func TestACL(t *testing.T) { name: "PreparedQueryDefaultAllow", defaultPolicy: AllowAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ PreparedQueries: []*PreparedQueryPolicy{ &PreparedQueryPolicy{ Prefix: "other", Policy: PolicyDeny, }, }, - }, + }), }, checks: []aclCheck{ // in version 1.2.1 and below this would have failed @@ -428,7 +449,7 @@ func TestACL(t *testing.T) { name: "AgentNestedDefaultDeny", defaultPolicy: DenyAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Agents: []*AgentPolicy{ &AgentPolicy{ Node: "root-nope", @@ -447,8 +468,8 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Agents: []*AgentPolicy{ &AgentPolicy{ Node: "child-nope", @@ -467,7 +488,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadDenied", prefix: "nope", check: checkDenyAgentRead}, @@ -504,7 +525,7 @@ func TestACL(t *testing.T) { name: "AgentNestedDefaultAllow", defaultPolicy: AllowAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Agents: []*AgentPolicy{ &AgentPolicy{ Node: "root-nope", @@ -523,8 +544,8 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Agents: []*AgentPolicy{ &AgentPolicy{ Node: "child-nope", @@ -543,7 +564,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadAllowed", prefix: "nope", check: checkAllowAgentRead}, @@ -784,7 +805,7 @@ func TestACL(t *testing.T) { name: "NodeDefaultDeny", defaultPolicy: DenyAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Nodes: []*NodePolicy{ &NodePolicy{ Name: "root-nope", @@ -803,8 +824,8 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Nodes: []*NodePolicy{ &NodePolicy{ Name: "child-nope", @@ -823,7 +844,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadDenied", prefix: "nope", check: checkDenyNodeRead}, @@ -860,7 +881,7 @@ func TestACL(t *testing.T) { name: "NodeDefaultAllow", defaultPolicy: AllowAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Nodes: []*NodePolicy{ &NodePolicy{ Name: "root-nope", @@ -879,8 +900,8 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Nodes: []*NodePolicy{ &NodePolicy{ Name: "child-nope", @@ -899,7 +920,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadAllowed", prefix: "nope", check: checkAllowNodeRead}, @@ -936,7 +957,7 @@ func TestACL(t *testing.T) { name: "SessionDefaultDeny", defaultPolicy: DenyAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Sessions: []*SessionPolicy{ &SessionPolicy{ Node: "root-nope", @@ -955,8 +976,8 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Sessions: []*SessionPolicy{ &SessionPolicy{ Node: "child-nope", @@ -975,7 +996,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadDenied", prefix: "nope", check: checkDenySessionRead}, @@ -1012,7 +1033,7 @@ func TestACL(t *testing.T) { name: "SessionDefaultAllow", defaultPolicy: AllowAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Sessions: []*SessionPolicy{ &SessionPolicy{ Node: "root-nope", @@ -1031,8 +1052,8 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Sessions: []*SessionPolicy{ &SessionPolicy{ Node: "child-nope", @@ -1051,7 +1072,7 @@ func TestACL(t *testing.T) { Policy: PolicyWrite, }, }, - }, + }), }, checks: []aclCheck{ {name: "DefaultReadAllowed", prefix: "nope", check: checkAllowSessionRead}, @@ -1088,7 +1109,7 @@ func TestACL(t *testing.T) { name: "Parent", defaultPolicy: DenyAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Keys: []*KeyPolicy{ &KeyPolicy{ Prefix: "foo/", @@ -1119,8 +1140,8 @@ func TestACL(t *testing.T) { Policy: PolicyRead, }, }, - }, - &Policy{ + }), + legacyPolicy(&Policy{ Keys: []*KeyPolicy{ &KeyPolicy{ Prefix: "foo/priv/", @@ -1147,7 +1168,7 @@ func TestACL(t *testing.T) { Policy: PolicyDeny, }, }, - }, + }), }, checks: []aclCheck{ {name: "KeyReadDenied", prefix: "other", check: checkDenyKeyRead}, @@ -1185,8 +1206,8 @@ func TestACL(t *testing.T) { {name: "PreparedQueryWriteDenied", prefix: "baz", check: checkDenyPreparedQueryWrite}, {name: "PreparedQueryReadDenied", prefix: "nope", check: checkDenyPreparedQueryRead}, {name: "PreparedQueryWriteDenied", prefix: "nope", check: checkDenyPreparedQueryWrite}, - {name: "ACLListDenied", check: checkDenyACLList}, - {name: "ACLModifyDenied", check: checkDenyACLModify}, + {name: "ACLReadDenied", check: checkDenyACLRead}, + {name: "ACLWriteDenied", check: checkDenyACLWrite}, {name: "SnapshotDenied", check: checkDenySnapshot}, {name: "IntentionDefaultAllowDenied", check: checkDenyIntentionDefaultAllow}, }, @@ -1195,7 +1216,7 @@ func TestACL(t *testing.T) { name: "ComplexDefaultAllow", defaultPolicy: AllowAll(), policyStack: []*Policy{ - &Policy{ + legacyPolicy(&Policy{ Events: []*EventPolicy{ &EventPolicy{ Event: "", @@ -1274,7 +1295,7 @@ func TestACL(t *testing.T) { Intentions: PolicyDeny, }, }, - }, + }), }, checks: []aclCheck{ {name: "KeyReadAllowed", prefix: "other", check: checkAllowKeyRead}, @@ -1368,13 +1389,328 @@ func TestACL(t *testing.T) { {name: "PreparedQueryWriteAllowed", prefix: "zookeeper", check: checkAllowPreparedQueryWrite}, }, }, + { + name: "ExactMatchPrecedence", + defaultPolicy: DenyAll(), + policyStack: []*Policy{ + &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "football", + Policy: PolicyDeny, + }, + }, + AgentPrefixes: []*AgentPolicy{ + &AgentPolicy{ + Node: "foot", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "fo", + Policy: PolicyRead, + }, + }, + Keys: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "football", + Policy: PolicyDeny, + }, + }, + KeyPrefixes: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "foot", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "fo", + Policy: PolicyRead, + }, + }, + Nodes: []*NodePolicy{ + &NodePolicy{ + Name: "foo", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "football", + Policy: PolicyDeny, + }, + }, + NodePrefixes: []*NodePolicy{ + &NodePolicy{ + Name: "foot", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "fo", + Policy: PolicyRead, + }, + }, + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "foo", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + &ServicePolicy{ + Name: "football", + Policy: PolicyDeny, + }, + }, + ServicePrefixes: []*ServicePolicy{ + &ServicePolicy{ + Name: "foot", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "fo", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + }, + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "football", + Policy: PolicyDeny, + }, + }, + SessionPrefixes: []*SessionPolicy{ + &SessionPolicy{ + Node: "foot", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "fo", + Policy: PolicyRead, + }, + }, + Events: []*EventPolicy{ + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "football", + Policy: PolicyDeny, + }, + }, + EventPrefixes: []*EventPolicy{ + &EventPolicy{ + Event: "foot", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "fo", + Policy: PolicyRead, + }, + }, + PreparedQueries: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "football", + Policy: PolicyDeny, + }, + }, + PreparedQueryPrefixes: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "foot", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "fo", + Policy: PolicyRead, + }, + }, + }, + }, + checks: []aclCheck{ + {name: "AgentReadPrefixAllowed", prefix: "fo", check: checkAllowAgentRead}, + {name: "AgentWritePrefixDenied", prefix: "fo", check: checkDenyAgentWrite}, + {name: "AgentReadPrefixAllowed", prefix: "for", check: checkAllowAgentRead}, + {name: "AgentWritePrefixDenied", prefix: "for", check: checkDenyAgentWrite}, + {name: "AgentReadAllowed", prefix: "foo", check: checkAllowAgentRead}, + {name: "AgentWriteAllowed", prefix: "foo", check: checkAllowAgentWrite}, + {name: "AgentReadPrefixAllowed", prefix: "foot", check: checkAllowAgentRead}, + {name: "AgentWritePrefixDenied", prefix: "foot", check: checkDenyAgentWrite}, + {name: "AgentReadPrefixAllowed", prefix: "foot2", check: checkAllowAgentRead}, + {name: "AgentWritePrefixDenied", prefix: "foot2", check: checkDenyAgentWrite}, + {name: "AgentReadPrefixAllowed", prefix: "food", check: checkAllowAgentRead}, + {name: "AgentWritePrefixDenied", prefix: "food", check: checkDenyAgentWrite}, + {name: "AgentReadDenied", prefix: "football", check: checkDenyAgentRead}, + {name: "AgentWriteDenied", prefix: "football", check: checkDenyAgentWrite}, + + {name: "KeyReadPrefixAllowed", prefix: "fo", check: checkAllowKeyRead}, + {name: "KeyWritePrefixDenied", prefix: "fo", check: checkDenyKeyWrite}, + {name: "KeyReadPrefixAllowed", prefix: "for", check: checkAllowKeyRead}, + {name: "KeyWritePrefixDenied", prefix: "for", check: checkDenyKeyWrite}, + {name: "KeyReadAllowed", prefix: "foo", check: checkAllowKeyRead}, + {name: "KeyWriteAllowed", prefix: "foo", check: checkAllowKeyWrite}, + {name: "KeyReadPrefixAllowed", prefix: "foot", check: checkAllowKeyRead}, + {name: "KeyWritePrefixDenied", prefix: "foot", check: checkDenyKeyWrite}, + {name: "KeyReadPrefixAllowed", prefix: "foot2", check: checkAllowKeyRead}, + {name: "KeyWritePrefixDenied", prefix: "foot2", check: checkDenyKeyWrite}, + {name: "KeyReadPrefixAllowed", prefix: "food", check: checkAllowKeyRead}, + {name: "KeyWritePrefixDenied", prefix: "food", check: checkDenyKeyWrite}, + {name: "KeyReadDenied", prefix: "football", check: checkDenyKeyRead}, + {name: "KeyWriteDenied", prefix: "football", check: checkDenyKeyWrite}, + + {name: "NodeReadPrefixAllowed", prefix: "fo", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "fo", check: checkDenyNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "for", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "for", check: checkDenyNodeWrite}, + {name: "NodeReadAllowed", prefix: "foo", check: checkAllowNodeRead}, + {name: "NodeWriteAllowed", prefix: "foo", check: checkAllowNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "foot", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "foot", check: checkDenyNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "foot2", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "foot2", check: checkDenyNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "food", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "food", check: checkDenyNodeWrite}, + {name: "NodeReadDenied", prefix: "football", check: checkDenyNodeRead}, + {name: "NodeWriteDenied", prefix: "football", check: checkDenyNodeWrite}, + + {name: "ServiceReadPrefixAllowed", prefix: "fo", check: checkAllowServiceRead}, + {name: "ServiceWritePrefixDenied", prefix: "fo", check: checkDenyServiceWrite}, + {name: "ServiceReadPrefixAllowed", prefix: "for", check: checkAllowServiceRead}, + {name: "ServiceWritePrefixDenied", prefix: "for", check: checkDenyServiceWrite}, + {name: "ServiceReadAllowed", prefix: "foo", check: checkAllowServiceRead}, + {name: "ServiceWriteAllowed", prefix: "foo", check: checkAllowServiceWrite}, + {name: "ServiceReadPrefixAllowed", prefix: "foot", check: checkAllowServiceRead}, + {name: "ServiceWritePrefixDenied", prefix: "foot", check: checkDenyServiceWrite}, + {name: "ServiceReadPrefixAllowed", prefix: "foot2", check: checkAllowServiceRead}, + {name: "ServiceWritePrefixDenied", prefix: "foot2", check: checkDenyServiceWrite}, + {name: "ServiceReadPrefixAllowed", prefix: "food", check: checkAllowServiceRead}, + {name: "ServiceWritePrefixDenied", prefix: "food", check: checkDenyServiceWrite}, + {name: "ServiceReadDenied", prefix: "football", check: checkDenyServiceRead}, + {name: "ServiceWriteDenied", prefix: "football", check: checkDenyServiceWrite}, + + {name: "NodeReadPrefixAllowed", prefix: "fo", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "fo", check: checkDenyNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "for", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "for", check: checkDenyNodeWrite}, + {name: "NodeReadAllowed", prefix: "foo", check: checkAllowNodeRead}, + {name: "NodeWriteAllowed", prefix: "foo", check: checkAllowNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "foot", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "foot", check: checkDenyNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "foot2", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "foot2", check: checkDenyNodeWrite}, + {name: "NodeReadPrefixAllowed", prefix: "food", check: checkAllowNodeRead}, + {name: "NodeWritePrefixDenied", prefix: "food", check: checkDenyNodeWrite}, + {name: "NodeReadDenied", prefix: "football", check: checkDenyNodeRead}, + {name: "NodeWriteDenied", prefix: "football", check: checkDenyNodeWrite}, + + {name: "IntentionReadPrefixAllowed", prefix: "fo", check: checkAllowIntentionRead}, + {name: "IntentionWritePrefixDenied", prefix: "fo", check: checkDenyIntentionWrite}, + {name: "IntentionReadPrefixAllowed", prefix: "for", check: checkAllowIntentionRead}, + {name: "IntentionWritePrefixDenied", prefix: "for", check: checkDenyIntentionWrite}, + {name: "IntentionReadAllowed", prefix: "foo", check: checkAllowIntentionRead}, + {name: "IntentionWriteAllowed", prefix: "foo", check: checkAllowIntentionWrite}, + {name: "IntentionReadPrefixAllowed", prefix: "foot", check: checkAllowIntentionRead}, + {name: "IntentionWritePrefixDenied", prefix: "foot", check: checkDenyIntentionWrite}, + {name: "IntentionReadPrefixAllowed", prefix: "foot2", check: checkAllowIntentionRead}, + {name: "IntentionWritePrefixDenied", prefix: "foot2", check: checkDenyIntentionWrite}, + {name: "IntentionReadPrefixAllowed", prefix: "food", check: checkAllowIntentionRead}, + {name: "IntentionWritePrefixDenied", prefix: "food", check: checkDenyIntentionWrite}, + {name: "IntentionReadDenied", prefix: "football", check: checkDenyIntentionRead}, + {name: "IntentionWriteDenied", prefix: "football", check: checkDenyIntentionWrite}, + + {name: "SessionReadPrefixAllowed", prefix: "fo", check: checkAllowSessionRead}, + {name: "SessionWritePrefixDenied", prefix: "fo", check: checkDenySessionWrite}, + {name: "SessionReadPrefixAllowed", prefix: "for", check: checkAllowSessionRead}, + {name: "SessionWritePrefixDenied", prefix: "for", check: checkDenySessionWrite}, + {name: "SessionReadAllowed", prefix: "foo", check: checkAllowSessionRead}, + {name: "SessionWriteAllowed", prefix: "foo", check: checkAllowSessionWrite}, + {name: "SessionReadPrefixAllowed", prefix: "foot", check: checkAllowSessionRead}, + {name: "SessionWritePrefixDenied", prefix: "foot", check: checkDenySessionWrite}, + {name: "SessionReadPrefixAllowed", prefix: "foot2", check: checkAllowSessionRead}, + {name: "SessionWritePrefixDenied", prefix: "foot2", check: checkDenySessionWrite}, + {name: "SessionReadPrefixAllowed", prefix: "food", check: checkAllowSessionRead}, + {name: "SessionWritePrefixDenied", prefix: "food", check: checkDenySessionWrite}, + {name: "SessionReadDenied", prefix: "football", check: checkDenySessionRead}, + {name: "SessionWriteDenied", prefix: "football", check: checkDenySessionWrite}, + + {name: "EventReadPrefixAllowed", prefix: "fo", check: checkAllowEventRead}, + {name: "EventWritePrefixDenied", prefix: "fo", check: checkDenyEventWrite}, + {name: "EventReadPrefixAllowed", prefix: "for", check: checkAllowEventRead}, + {name: "EventWritePrefixDenied", prefix: "for", check: checkDenyEventWrite}, + {name: "EventReadAllowed", prefix: "foo", check: checkAllowEventRead}, + {name: "EventWriteAllowed", prefix: "foo", check: checkAllowEventWrite}, + {name: "EventReadPrefixAllowed", prefix: "foot", check: checkAllowEventRead}, + {name: "EventWritePrefixDenied", prefix: "foot", check: checkDenyEventWrite}, + {name: "EventReadPrefixAllowed", prefix: "foot2", check: checkAllowEventRead}, + {name: "EventWritePrefixDenied", prefix: "foot2", check: checkDenyEventWrite}, + {name: "EventReadPrefixAllowed", prefix: "food", check: checkAllowEventRead}, + {name: "EventWritePrefixDenied", prefix: "food", check: checkDenyEventWrite}, + {name: "EventReadDenied", prefix: "football", check: checkDenyEventRead}, + {name: "EventWriteDenied", prefix: "football", check: checkDenyEventWrite}, + + {name: "PreparedQueryReadPrefixAllowed", prefix: "fo", check: checkAllowPreparedQueryRead}, + {name: "PreparedQueryWritePrefixDenied", prefix: "fo", check: checkDenyPreparedQueryWrite}, + {name: "PreparedQueryReadPrefixAllowed", prefix: "for", check: checkAllowPreparedQueryRead}, + {name: "PreparedQueryWritePrefixDenied", prefix: "for", check: checkDenyPreparedQueryWrite}, + {name: "PreparedQueryReadAllowed", prefix: "foo", check: checkAllowPreparedQueryRead}, + {name: "PreparedQueryWriteAllowed", prefix: "foo", check: checkAllowPreparedQueryWrite}, + {name: "PreparedQueryReadPrefixAllowed", prefix: "foot", check: checkAllowPreparedQueryRead}, + {name: "PreparedQueryWritePrefixDenied", prefix: "foot", check: checkDenyPreparedQueryWrite}, + {name: "PreparedQueryReadPrefixAllowed", prefix: "foot2", check: checkAllowPreparedQueryRead}, + {name: "PreparedQueryWritePrefixDenied", prefix: "foot2", check: checkDenyPreparedQueryWrite}, + {name: "PreparedQueryReadPrefixAllowed", prefix: "food", check: checkAllowPreparedQueryRead}, + {name: "PreparedQueryWritePrefixDenied", prefix: "food", check: checkDenyPreparedQueryWrite}, + {name: "PreparedQueryReadDenied", prefix: "football", check: checkDenyPreparedQueryRead}, + {name: "PreparedQueryWriteDenied", prefix: "football", check: checkDenyPreparedQueryWrite}, + }, + }, + { + name: "ACLRead", + defaultPolicy: DenyAll(), + policyStack: []*Policy{ + &Policy{ + ACL: PolicyRead, + }, + }, + checks: []aclCheck{ + {name: "ReadAllowed", check: checkAllowACLRead}, + // in version 1.2.1 and below this would have failed + {name: "WriteDenied", check: checkDenyACLWrite}, + }, + }, + { + name: "ACLRead", + defaultPolicy: DenyAll(), + policyStack: []*Policy{ + &Policy{ + ACL: PolicyWrite, + }, + }, + checks: []aclCheck{ + {name: "ReadAllowed", check: checkAllowACLRead}, + // in version 1.2.1 and below this would have failed + {name: "WriteAllowed", check: checkAllowACLWrite}, + }, + }, } for _, tcase := range tests { t.Run(tcase.name, func(t *testing.T) { acl := tcase.defaultPolicy for _, policy := range tcase.policyStack { - newACL, err := New(acl, policy, nil) + newACL, err := NewPolicyAuthorizer(acl, []*Policy{policy}, nil) require.NoError(t, err) acl = newACL } @@ -1392,11 +1728,11 @@ func TestACL(t *testing.T) { } } -func TestRootACL(t *testing.T) { - require.Equal(t, AllowAll(), RootACL("allow")) - require.Equal(t, DenyAll(), RootACL("deny")) - require.Equal(t, ManageAll(), RootACL("manage")) - require.Nil(t, RootACL("foo")) +func TestRootAuthorizer(t *testing.T) { + require.Equal(t, AllowAll(), RootAuthorizer("allow")) + require.Equal(t, DenyAll(), RootAuthorizer("deny")) + require.Equal(t, ManageAll(), RootAuthorizer("manage")) + require.Nil(t, RootAuthorizer("foo")) } func TestACLEnforce(t *testing.T) { diff --git a/acl/cache.go b/acl/cache.go deleted file mode 100644 index f3fdf6830..000000000 --- a/acl/cache.go +++ /dev/null @@ -1,180 +0,0 @@ -package acl - -import ( - "crypto/md5" - "fmt" - - "github.com/hashicorp/consul/sentinel" - "github.com/hashicorp/golang-lru" -) - -// FaultFunc is a function used to fault in the parent, -// rules for an ACL given its ID -type FaultFunc func(id string) (string, string, error) - -// aclEntry allows us to store the ACL with it's policy ID -type aclEntry struct { - ACL ACL - Parent string - RuleID string -} - -// Cache is used to implement policy and ACL caching -type Cache struct { - faultfn FaultFunc - aclCache *lru.TwoQueueCache // Cache id -> acl - policyCache *lru.TwoQueueCache // Cache policy -> acl - ruleCache *lru.TwoQueueCache // Cache rules -> policy - sentinel sentinel.Evaluator -} - -// NewCache constructs a new policy and ACL cache of a given size -func NewCache(size int, faultfn FaultFunc, sentinel sentinel.Evaluator) (*Cache, error) { - if size <= 0 { - return nil, fmt.Errorf("Must provide positive cache size") - } - - rc, err := lru.New2Q(size) - if err != nil { - return nil, err - } - - pc, err := lru.New2Q(size) - if err != nil { - return nil, err - } - - ac, err := lru.New2Q(size) - if err != nil { - return nil, err - } - - c := &Cache{ - faultfn: faultfn, - aclCache: ac, - policyCache: pc, - ruleCache: rc, - sentinel: sentinel, - } - return c, nil -} - -// GetPolicy is used to get a potentially cached policy set. -// If not cached, it will be parsed, and then cached. -func (c *Cache) GetPolicy(rules string) (*Policy, error) { - return c.getPolicy(RuleID(rules), rules) -} - -// getPolicy is an internal method to get a cached policy, -// but it assumes a pre-computed ID -func (c *Cache) getPolicy(id, rules string) (*Policy, error) { - raw, ok := c.ruleCache.Get(id) - if ok { - return raw.(*Policy), nil - } - policy, err := Parse(rules, c.sentinel) - if err != nil { - return nil, err - } - policy.ID = id - c.ruleCache.Add(id, policy) - return policy, nil - -} - -// RuleID is used to generate an ID for a rule -func RuleID(rules string) string { - return fmt.Sprintf("%x", md5.Sum([]byte(rules))) -} - -// policyID returns the cache ID for a policy -func (c *Cache) policyID(parent, ruleID string) string { - return parent + ":" + ruleID -} - -// GetACLPolicy is used to get the potentially cached ACL -// policy. If not cached, it will be generated and then cached. -func (c *Cache) GetACLPolicy(id string) (string, *Policy, error) { - // Check for a cached acl - if raw, ok := c.aclCache.Get(id); ok { - cached := raw.(aclEntry) - if raw, ok := c.ruleCache.Get(cached.RuleID); ok { - return cached.Parent, raw.(*Policy), nil - } - } - - // Fault in the rules - parent, rules, err := c.faultfn(id) - if err != nil { - return "", nil, err - } - - // Get cached - policy, err := c.GetPolicy(rules) - return parent, policy, err -} - -// GetACL is used to get a potentially cached ACL policy. -// If not cached, it will be generated and then cached. -func (c *Cache) GetACL(id string) (ACL, error) { - // Look for the ACL directly - raw, ok := c.aclCache.Get(id) - if ok { - return raw.(aclEntry).ACL, nil - } - - // Get the rules - parentID, rules, err := c.faultfn(id) - if err != nil { - return nil, err - } - ruleID := RuleID(rules) - - // Check for a compiled ACL - policyID := c.policyID(parentID, ruleID) - var compiled ACL - if raw, ok := c.policyCache.Get(policyID); ok { - compiled = raw.(ACL) - } else { - // Get the policy - policy, err := c.getPolicy(ruleID, rules) - if err != nil { - return nil, err - } - - // Get the parent ACL - parent := RootACL(parentID) - if parent == nil { - parent, err = c.GetACL(parentID) - if err != nil { - return nil, err - } - } - - // Compile the ACL - acl, err := New(parent, policy, c.sentinel) - if err != nil { - return nil, err - } - - // Cache the compiled ACL - c.policyCache.Add(policyID, acl) - compiled = acl - } - - // Cache and return the ACL - c.aclCache.Add(id, aclEntry{compiled, parentID, ruleID}) - return compiled, nil -} - -// ClearACL is used to clear the ACL cache if any -func (c *Cache) ClearACL(id string) { - c.aclCache.Remove(id) -} - -// Purge is used to clear all the ACL caches. The -// rule and policy caches are not purged, since they -// are content-hashed anyways. -func (c *Cache) Purge() { - c.aclCache.Purge() -} diff --git a/acl/cache_test.go b/acl/cache_test.go deleted file mode 100644 index 53fde17b5..000000000 --- a/acl/cache_test.go +++ /dev/null @@ -1,328 +0,0 @@ -package acl - -import ( - "testing" -) - -func TestCache_GetPolicy(t *testing.T) { - c, err := NewCache(2, nil, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - p, err := c.GetPolicy("") - if err != nil { - t.Fatalf("err: %v", err) - } - - // Should get the same policy - p1, err := c.GetPolicy("") - if err != nil { - t.Fatalf("err: %v", err) - } - if p != p1 { - t.Fatalf("should be cached") - } - - // Work with some new policies to evict the original one - _, err = c.GetPolicy(testSimplePolicy) - if err != nil { - t.Fatalf("err: %v", err) - } - _, err = c.GetPolicy(testSimplePolicy) - if err != nil { - t.Fatalf("err: %v", err) - } - _, err = c.GetPolicy(testSimplePolicy2) - if err != nil { - t.Fatalf("err: %v", err) - } - _, err = c.GetPolicy(testSimplePolicy2) - if err != nil { - t.Fatalf("err: %v", err) - } - - // Test invalidation of p - p3, err := c.GetPolicy("") - if err != nil { - t.Fatalf("err: %v", err) - } - if p == p3 { - t.Fatalf("should be not cached") - } -} - -func TestCache_GetACL(t *testing.T) { - policies := map[string]string{ - "foo": testSimplePolicy, - "bar": testSimplePolicy2, - "baz": testSimplePolicy3, - } - faultfn := func(id string) (string, string, error) { - return "deny", policies[id], nil - } - - c, err := NewCache(2, faultfn, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if acl.KeyRead("bar/test") { - t.Fatalf("should deny") - } - if !acl.KeyRead("foo/test") { - t.Fatalf("should allow") - } - - acl2, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if acl != acl2 { - t.Fatalf("should be cached") - } - - // Invalidate cache - _, err = c.GetACL("bar") - if err != nil { - t.Fatalf("err: %v", err) - } - _, err = c.GetACL("bar") - if err != nil { - t.Fatalf("err: %v", err) - } - _, err = c.GetACL("baz") - if err != nil { - t.Fatalf("err: %v", err) - } - _, err = c.GetACL("baz") - if err != nil { - t.Fatalf("err: %v", err) - } - - acl3, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if acl == acl3 { - t.Fatalf("should not be cached") - } -} - -func TestCache_ClearACL(t *testing.T) { - policies := map[string]string{ - "foo": testSimplePolicy, - "bar": testSimplePolicy, - } - faultfn := func(id string) (string, string, error) { - return "deny", policies[id], nil - } - - c, err := NewCache(16, faultfn, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - // Nuke the cache - c.ClearACL("foo") - - // Clear the policy cache - c.policyCache.Purge() - - acl2, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if acl == acl2 { - t.Fatalf("should not be cached") - } -} - -func TestCache_Purge(t *testing.T) { - policies := map[string]string{ - "foo": testSimplePolicy, - "bar": testSimplePolicy, - } - faultfn := func(id string) (string, string, error) { - return "deny", policies[id], nil - } - - c, err := NewCache(16, faultfn, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - // Nuke the cache - c.Purge() - c.policyCache.Purge() - - acl2, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if acl == acl2 { - t.Fatalf("should not be cached") - } -} - -func TestCache_GetACLPolicy(t *testing.T) { - policies := map[string]string{ - "foo": testSimplePolicy, - "bar": testSimplePolicy, - } - faultfn := func(id string) (string, string, error) { - return "deny", policies[id], nil - } - c, err := NewCache(16, faultfn, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - p, err := c.GetPolicy(testSimplePolicy) - if err != nil { - t.Fatalf("err: %v", err) - } - - _, err = c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - parent, p2, err := c.GetACLPolicy("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - if parent != "deny" { - t.Fatalf("bad: %v", parent) - } - - if p2 != p { - t.Fatalf("expected cached policy") - } - - parent, p3, err := c.GetACLPolicy("bar") - if err != nil { - t.Fatalf("err: %v", err) - } - if parent != "deny" { - t.Fatalf("bad: %v", parent) - } - - if p3 != p { - t.Fatalf("expected cached policy") - } -} - -func TestCache_GetACL_Parent(t *testing.T) { - faultfn := func(id string) (string, string, error) { - switch id { - case "foo": - // Foo inherits from bar - return "bar", testSimplePolicy, nil - case "bar": - return "deny", testSimplePolicy2, nil - } - t.Fatalf("bad case") - return "", "", nil - } - - c, err := NewCache(16, faultfn, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if !acl.KeyRead("bar/test") { - t.Fatalf("should allow") - } - if !acl.KeyRead("foo/test") { - t.Fatalf("should allow") - } -} - -func TestCache_GetACL_ParentCache(t *testing.T) { - // Same rules, different parent - faultfn := func(id string) (string, string, error) { - switch id { - case "foo": - return "allow", testSimplePolicy, nil - case "bar": - return "deny", testSimplePolicy, nil - } - t.Fatalf("bad case") - return "", "", nil - } - - c, err := NewCache(16, faultfn, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := c.GetACL("foo") - if err != nil { - t.Fatalf("err: %v", err) - } - - if !acl.KeyRead("bar/test") { - t.Fatalf("should allow") - } - if !acl.KeyRead("foo/test") { - t.Fatalf("should allow") - } - - acl2, err := c.GetACL("bar") - if err != nil { - t.Fatalf("err: %v", err) - } - - if acl == acl2 { - t.Fatalf("should not match") - } - - if acl2.KeyRead("bar/test") { - t.Fatalf("should not allow") - } - if !acl2.KeyRead("foo/test") { - t.Fatalf("should allow") - } -} - -var testSimplePolicy = ` -key "foo/" { - policy = "read" -} -` - -var testSimplePolicy2 = ` -key "bar/" { - policy = "read" -} -` -var testSimplePolicy3 = ` -key "baz/" { - policy = "read" -} -` diff --git a/acl/errors.go b/acl/errors.go index e77afb45c..65c5cc7ab 100644 --- a/acl/errors.go +++ b/acl/errors.go @@ -13,6 +13,7 @@ const ( errRootDenied = "Cannot resolve root ACL" errDisabled = "ACL support disabled" errPermissionDenied = "Permission denied" + errInvalidParent = "Invalid Parent" ) var ( @@ -29,6 +30,10 @@ var ( // ErrPermissionDenied is returned when an ACL based rejection // happens. ErrPermissionDenied = PermissionDeniedError{} + + // ErrInvalidParent is returned when a remotely resolve ACL + // token claims to have a non-root parent + ErrInvalidParent = errors.New(errInvalidParent) ) // IsErrNotFound checks if the given error message is comparable to diff --git a/acl/policy.go b/acl/policy.go index 0796a1aec..7fefcc2b0 100644 --- a/acl/policy.go +++ b/acl/policy.go @@ -1,10 +1,22 @@ package acl import ( + "bytes" + "encoding/binary" "fmt" "github.com/hashicorp/consul/sentinel" "github.com/hashicorp/hcl" + "github.com/hashicorp/hcl/hcl/ast" + hclprinter "github.com/hashicorp/hcl/hcl/printer" + "golang.org/x/crypto/blake2b" +) + +type SyntaxVersion int + +const ( + SyntaxCurrent SyntaxVersion = iota + SyntaxLegacy ) const ( @@ -17,16 +29,25 @@ const ( // Policy is used to represent the policy specified by // 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"` + ID string `hcl:"id"` + Revision uint64 `hcl:"revision"` + ACL string `hcl:"acl,expand"` + Agents []*AgentPolicy `hcl:"agent,expand"` + AgentPrefixes []*AgentPolicy `hcl:"agent_prefix,expand"` + Keys []*KeyPolicy `hcl:"key,expand"` + KeyPrefixes []*KeyPolicy `hcl:"key_prefix,expand"` + Nodes []*NodePolicy `hcl:"node,expand"` + NodePrefixes []*NodePolicy `hcl:"node_prefix,expand"` + Services []*ServicePolicy `hcl:"service,expand"` + ServicePrefixes []*ServicePolicy `hcl:"service_prefix,expand"` + Sessions []*SessionPolicy `hcl:"session,expand"` + SessionPrefixes []*SessionPolicy `hcl:"session_prefix,expand"` + Events []*EventPolicy `hcl:"event,expand"` + EventPrefixes []*EventPolicy `hcl:"event_prefix,expand"` + PreparedQueries []*PreparedQueryPolicy `hcl:"query,expand"` + PreparedQueryPrefixes []*PreparedQueryPolicy `hcl:"query_prefix,expand"` + Keyring string `hcl:"keyring"` + Operator string `hcl:"operator"` } // Sentinel defines a snippet of Sentinel code that can be attached to a policy. @@ -155,27 +176,29 @@ func isSentinelValid(sentinel sentinel.Evaluator, basicPolicy string, sp Sentine return sentinel.Compile(sp.Code) } -// Parse is used to parse the specified ACL rules into an -// intermediary set of policies, before being compiled into -// the ACL -func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { - // Decode the rules +func parseCurrent(rules string, sentinel sentinel.Evaluator) (*Policy, error) { p := &Policy{} - if rules == "" { - // Hot path for empty rules - return p, nil - } if err := hcl.Decode(p, rules); err != nil { return nil, fmt.Errorf("Failed to parse ACL rules: %v", err) } + // Validate the acl policy + if p.ACL != "" && !isPolicyValid(p.ACL) { + return nil, fmt.Errorf("Invalid acl policy: %#v", p.ACL) + } + // Validate the agent policy for _, ap := range p.Agents { if !isPolicyValid(ap.Policy) { return nil, fmt.Errorf("Invalid agent policy: %#v", ap) } } + for _, ap := range p.AgentPrefixes { + if !isPolicyValid(ap.Policy) { + return nil, fmt.Errorf("Invalid agent_prefix policy: %#v", ap) + } + } // Validate the key policy for _, kp := range p.Keys { @@ -186,6 +209,14 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return nil, fmt.Errorf("Invalid key Sentinel policy: %#v, got error:%v", kp, err) } } + for _, kp := range p.KeyPrefixes { + if kp.Policy != PolicyList && !isPolicyValid(kp.Policy) { + return nil, fmt.Errorf("Invalid key_prefix policy: %#v", kp) + } + if err := isSentinelValid(sentinel, kp.Policy, kp.Sentinel); err != nil { + return nil, fmt.Errorf("Invalid key_prefix Sentinel policy: %#v, got error:%v", kp, err) + } + } // Validate the node policies for _, np := range p.Nodes { @@ -196,6 +227,14 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return nil, fmt.Errorf("Invalid node Sentinel policy: %#v, got error:%v", np, err) } } + for _, np := range p.NodePrefixes { + if !isPolicyValid(np.Policy) { + return nil, fmt.Errorf("Invalid node_prefix policy: %#v", np) + } + if err := isSentinelValid(sentinel, np.Policy, np.Sentinel); err != nil { + return nil, fmt.Errorf("Invalid node_prefix Sentinel policy: %#v, got error:%v", np, err) + } + } // Validate the service policies for _, sp := range p.Services { @@ -209,6 +248,17 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return nil, fmt.Errorf("Invalid service Sentinel policy: %#v, got error:%v", sp, err) } } + for _, sp := range p.ServicePrefixes { + if !isPolicyValid(sp.Policy) { + return nil, fmt.Errorf("Invalid service_prefix policy: %#v", sp) + } + if sp.Intentions != "" && !isPolicyValid(sp.Intentions) { + return nil, fmt.Errorf("Invalid service_prefix intentions policy: %#v", sp) + } + if err := isSentinelValid(sentinel, sp.Policy, sp.Sentinel); err != nil { + return nil, fmt.Errorf("Invalid service_prefix Sentinel policy: %#v, got error:%v", sp, err) + } + } // Validate the session policies for _, sp := range p.Sessions { @@ -216,6 +266,11 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return nil, fmt.Errorf("Invalid session policy: %#v", sp) } } + for _, sp := range p.SessionPrefixes { + if !isPolicyValid(sp.Policy) { + return nil, fmt.Errorf("Invalid session_prefix policy: %#v", sp) + } + } // Validate the user event policies for _, ep := range p.Events { @@ -223,6 +278,11 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return nil, fmt.Errorf("Invalid event policy: %#v", ep) } } + for _, ep := range p.EventPrefixes { + if !isPolicyValid(ep.Policy) { + return nil, fmt.Errorf("Invalid event_prefix policy: %#v", ep) + } + } // Validate the prepared query policies for _, pq := range p.PreparedQueries { @@ -230,6 +290,11 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return nil, fmt.Errorf("Invalid query policy: %#v", pq) } } + for _, pq := range p.PreparedQueryPrefixes { + if !isPolicyValid(pq.Policy) { + return nil, fmt.Errorf("Invalid query_prefix policy: %#v", pq) + } + } // Validate the keyring policy - this one is allowed to be empty if p.Keyring != "" && !isPolicyValid(p.Keyring) { @@ -243,3 +308,543 @@ func Parse(rules string, sentinel sentinel.Evaluator) (*Policy, error) { return p, nil } + +func parseLegacy(rules string, sentinel sentinel.Evaluator) (*Policy, error) { + p := &Policy{} + + type LegacyPolicy struct { + 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"` + } + + lp := &LegacyPolicy{} + + if err := hcl.Decode(lp, rules); err != nil { + return nil, fmt.Errorf("Failed to parse ACL rules: %v", err) + } + + // Validate the agent policy + for _, ap := range lp.Agents { + if !isPolicyValid(ap.Policy) { + return nil, fmt.Errorf("Invalid agent policy: %#v", ap) + } + + p.AgentPrefixes = append(p.AgentPrefixes, ap) + } + + // Validate the key policy + for _, kp := range lp.Keys { + if kp.Policy != PolicyList && !isPolicyValid(kp.Policy) { + return nil, fmt.Errorf("Invalid key policy: %#v", kp) + } + if err := isSentinelValid(sentinel, kp.Policy, kp.Sentinel); err != nil { + return nil, fmt.Errorf("Invalid key Sentinel policy: %#v, got error:%v", kp, err) + } + + p.KeyPrefixes = append(p.KeyPrefixes, kp) + } + + // Validate the node policies + for _, np := range lp.Nodes { + if !isPolicyValid(np.Policy) { + return nil, fmt.Errorf("Invalid node policy: %#v", np) + } + if err := isSentinelValid(sentinel, np.Policy, np.Sentinel); err != nil { + return nil, fmt.Errorf("Invalid node Sentinel policy: %#v, got error:%v", np, err) + } + + p.NodePrefixes = append(p.NodePrefixes, np) + } + + // Validate the service policies + for _, sp := range lp.Services { + if !isPolicyValid(sp.Policy) { + return nil, fmt.Errorf("Invalid service policy: %#v", sp) + } + if sp.Intentions != "" && !isPolicyValid(sp.Intentions) { + return nil, fmt.Errorf("Invalid service intentions policy: %#v", sp) + } + if err := isSentinelValid(sentinel, sp.Policy, sp.Sentinel); err != nil { + return nil, fmt.Errorf("Invalid service Sentinel policy: %#v, got error:%v", sp, err) + } + + p.ServicePrefixes = append(p.ServicePrefixes, sp) + } + + // Validate the session policies + for _, sp := range lp.Sessions { + if !isPolicyValid(sp.Policy) { + return nil, fmt.Errorf("Invalid session policy: %#v", sp) + } + + p.SessionPrefixes = append(p.SessionPrefixes, sp) + } + + // Validate the user event policies + for _, ep := range lp.Events { + if !isPolicyValid(ep.Policy) { + return nil, fmt.Errorf("Invalid event policy: %#v", ep) + } + + p.EventPrefixes = append(p.EventPrefixes, ep) + } + + // Validate the prepared query policies + for _, pq := range lp.PreparedQueries { + if !isPolicyValid(pq.Policy) { + return nil, fmt.Errorf("Invalid query policy: %#v", pq) + } + + p.PreparedQueryPrefixes = append(p.PreparedQueryPrefixes, pq) + } + + // Validate the keyring policy - this one is allowed to be empty + if lp.Keyring != "" && !isPolicyValid(lp.Keyring) { + return nil, fmt.Errorf("Invalid keyring policy: %#v", lp.Keyring) + } else { + p.Keyring = lp.Keyring + } + + // Validate the operator policy - this one is allowed to be empty + if lp.Operator != "" && !isPolicyValid(lp.Operator) { + return nil, fmt.Errorf("Invalid operator policy: %#v", lp.Operator) + } else { + p.Operator = lp.Operator + } + + return p, nil +} + +// NewPolicyFromSource is used to parse the specified ACL rules into an +// intermediary set of policies, before being compiled into +// the ACL +func NewPolicyFromSource(id string, revision uint64, rules string, syntax SyntaxVersion, sentinel sentinel.Evaluator) (*Policy, error) { + if rules == "" { + // Hot path for empty source + return &Policy{ID: id, Revision: revision}, nil + } + + var policy *Policy + var err error + switch syntax { + case SyntaxLegacy: + policy, err = parseLegacy(rules, sentinel) + case SyntaxCurrent: + policy, err = parseCurrent(rules, sentinel) + default: + return nil, fmt.Errorf("Invalid rules version: %d", syntax) + } + + if err == nil { + policy.ID = id + policy.Revision = revision + } + return policy, err +} + +func (policy *Policy) ConvertToLegacy() *Policy { + converted := &Policy{ + ID: policy.ID, + Revision: policy.Revision, + ACL: policy.ACL, + Keyring: policy.Keyring, + Operator: policy.Operator, + } + + converted.Agents = append(converted.Agents, policy.Agents...) + converted.Agents = append(converted.Agents, policy.AgentPrefixes...) + converted.Keys = append(converted.Keys, policy.Keys...) + converted.Keys = append(converted.Keys, policy.KeyPrefixes...) + converted.Nodes = append(converted.Nodes, policy.Nodes...) + converted.Nodes = append(converted.Nodes, policy.NodePrefixes...) + converted.Services = append(converted.Services, policy.Services...) + converted.Services = append(converted.Services, policy.ServicePrefixes...) + converted.Sessions = append(converted.Sessions, policy.Sessions...) + converted.Sessions = append(converted.Sessions, policy.SessionPrefixes...) + converted.Events = append(converted.Events, policy.Events...) + converted.Events = append(converted.Events, policy.EventPrefixes...) + converted.PreparedQueries = append(converted.PreparedQueries, policy.PreparedQueries...) + converted.PreparedQueries = append(converted.PreparedQueries, policy.PreparedQueryPrefixes...) + return converted +} + +func (policy *Policy) ConvertFromLegacy() *Policy { + return &Policy{ + ID: policy.ID, + Revision: policy.Revision, + AgentPrefixes: policy.Agents, + KeyPrefixes: policy.Keys, + NodePrefixes: policy.Nodes, + ServicePrefixes: policy.Services, + SessionPrefixes: policy.Sessions, + EventPrefixes: policy.Events, + PreparedQueryPrefixes: policy.PreparedQueries, + Keyring: policy.Keyring, + Operator: policy.Operator, + } +} + +// takesPrecedenceOver returns true when permission a +// should take precedence over permission b +func takesPrecedenceOver(a, b string) bool { + if a == PolicyDeny { + return true + } else if b == PolicyDeny { + return false + } + + if a == PolicyWrite { + return true + } else if b == PolicyWrite { + return false + } + + if a == PolicyList { + return true + } else if b == PolicyList { + return false + } + + if a == PolicyRead { + return true + } else if b == PolicyRead { + return false + } + + return false +} + +func multiPolicyID(policies []*Policy) []byte { + cacheKeyHash, err := blake2b.New256(nil) + if err != nil { + panic(err) + } + for _, policy := range policies { + cacheKeyHash.Write([]byte(policy.ID)) + binary.Write(cacheKeyHash, binary.BigEndian, policy.Revision) + } + return cacheKeyHash.Sum(nil) +} + +// MergePolicies merges multiple ACL policies into one policy +// This function will not set either the ID or the Scope fields +// of the resulting policy as its up to the caller to determine +// what the merged value is. +func MergePolicies(policies []*Policy) *Policy { + // maps are used here so that we can lookup each policy by + // the segment that the rule applies to during the policy + // merge. Otherwise we could do a linear search through a slice + // and replace it inline + aclPolicy := "" + agentPolicies := make(map[string]*AgentPolicy) + agentPrefixPolicies := make(map[string]*AgentPolicy) + eventPolicies := make(map[string]*EventPolicy) + eventPrefixPolicies := make(map[string]*EventPolicy) + keyringPolicy := "" + keyPolicies := make(map[string]*KeyPolicy) + keyPrefixPolicies := make(map[string]*KeyPolicy) + nodePolicies := make(map[string]*NodePolicy) + nodePrefixPolicies := make(map[string]*NodePolicy) + operatorPolicy := "" + preparedQueryPolicies := make(map[string]*PreparedQueryPolicy) + preparedQueryPrefixPolicies := make(map[string]*PreparedQueryPolicy) + servicePolicies := make(map[string]*ServicePolicy) + servicePrefixPolicies := make(map[string]*ServicePolicy) + sessionPolicies := make(map[string]*SessionPolicy) + sessionPrefixPolicies := make(map[string]*SessionPolicy) + + // Parse all the individual rule sets + for _, policy := range policies { + if takesPrecedenceOver(policy.ACL, aclPolicy) { + aclPolicy = policy.ACL + } + + for _, ap := range policy.Agents { + update := true + if permission, found := agentPolicies[ap.Node]; found { + update = takesPrecedenceOver(ap.Policy, permission.Policy) + } + + if update { + + agentPolicies[ap.Node] = ap + } + } + + for _, ap := range policy.AgentPrefixes { + update := true + if permission, found := agentPrefixPolicies[ap.Node]; found { + update = takesPrecedenceOver(ap.Policy, permission.Policy) + } + + if update { + agentPrefixPolicies[ap.Node] = ap + } + } + + for _, ep := range policy.Events { + update := true + if permission, found := eventPolicies[ep.Event]; found { + update = takesPrecedenceOver(ep.Policy, permission.Policy) + } + + if update { + eventPolicies[ep.Event] = ep + } + } + + for _, ep := range policy.EventPrefixes { + update := true + if permission, found := eventPrefixPolicies[ep.Event]; found { + update = takesPrecedenceOver(ep.Policy, permission.Policy) + } + + if update { + eventPrefixPolicies[ep.Event] = ep + } + } + + if takesPrecedenceOver(policy.Keyring, keyringPolicy) { + keyringPolicy = policy.Keyring + } + + for _, kp := range policy.Keys { + update := true + if permission, found := keyPolicies[kp.Prefix]; found { + update = takesPrecedenceOver(kp.Policy, permission.Policy) + } + + if update { + keyPolicies[kp.Prefix] = kp + } + } + + for _, kp := range policy.KeyPrefixes { + update := true + if permission, found := keyPrefixPolicies[kp.Prefix]; found { + update = takesPrecedenceOver(kp.Policy, permission.Policy) + } + + if update { + keyPrefixPolicies[kp.Prefix] = kp + } + } + + for _, np := range policy.Nodes { + update := true + if permission, found := nodePolicies[np.Name]; found { + update = takesPrecedenceOver(np.Policy, permission.Policy) + } + + if update { + nodePolicies[np.Name] = np + } + } + + for _, np := range policy.NodePrefixes { + update := true + if permission, found := nodePrefixPolicies[np.Name]; found { + update = takesPrecedenceOver(np.Policy, permission.Policy) + } + + if update { + nodePrefixPolicies[np.Name] = np + } + } + + if takesPrecedenceOver(policy.Operator, operatorPolicy) { + operatorPolicy = policy.Operator + } + + for _, qp := range policy.PreparedQueries { + update := true + if permission, found := preparedQueryPolicies[qp.Prefix]; found { + update = takesPrecedenceOver(qp.Policy, permission.Policy) + } + + if update { + preparedQueryPolicies[qp.Prefix] = qp + } + } + + for _, qp := range policy.PreparedQueryPrefixes { + update := true + if permission, found := preparedQueryPrefixPolicies[qp.Prefix]; found { + update = takesPrecedenceOver(qp.Policy, permission.Policy) + } + + if update { + preparedQueryPrefixPolicies[qp.Prefix] = qp + } + } + + for _, sp := range policy.Services { + existing, found := servicePolicies[sp.Name] + + if !found { + servicePolicies[sp.Name] = sp + continue + } + + if takesPrecedenceOver(sp.Policy, existing.Policy) { + existing.Policy = sp.Policy + existing.Sentinel = sp.Sentinel + } + + if takesPrecedenceOver(sp.Intentions, existing.Intentions) { + existing.Intentions = sp.Intentions + } + } + + for _, sp := range policy.ServicePrefixes { + existing, found := servicePrefixPolicies[sp.Name] + + if !found { + servicePrefixPolicies[sp.Name] = sp + continue + } + + if takesPrecedenceOver(sp.Policy, existing.Policy) { + existing.Policy = sp.Policy + existing.Sentinel = sp.Sentinel + } + + if takesPrecedenceOver(sp.Intentions, existing.Intentions) { + existing.Intentions = sp.Intentions + } + } + + for _, sp := range policy.Sessions { + update := true + if permission, found := sessionPolicies[sp.Node]; found { + update = takesPrecedenceOver(sp.Policy, permission.Policy) + } + + if update { + sessionPolicies[sp.Node] = sp + } + } + + for _, sp := range policy.SessionPrefixes { + update := true + if permission, found := sessionPrefixPolicies[sp.Node]; found { + update = takesPrecedenceOver(sp.Policy, permission.Policy) + } + + if update { + sessionPrefixPolicies[sp.Node] = sp + } + } + } + + merged := &Policy{ACL: aclPolicy, Keyring: keyringPolicy, Operator: operatorPolicy} + + // All the for loop appends are ugly but Go doesn't have a way to get + // a slice of all values within a map so this is necessary + + for _, policy := range agentPolicies { + merged.Agents = append(merged.Agents, policy) + } + + for _, policy := range agentPrefixPolicies { + merged.AgentPrefixes = append(merged.AgentPrefixes, policy) + } + + for _, policy := range eventPolicies { + merged.Events = append(merged.Events, policy) + } + + for _, policy := range eventPrefixPolicies { + merged.EventPrefixes = append(merged.EventPrefixes, policy) + } + + for _, policy := range keyPolicies { + merged.Keys = append(merged.Keys, policy) + } + + for _, policy := range keyPrefixPolicies { + merged.KeyPrefixes = append(merged.KeyPrefixes, policy) + } + + for _, policy := range nodePolicies { + merged.Nodes = append(merged.Nodes, policy) + } + + for _, policy := range nodePrefixPolicies { + merged.NodePrefixes = append(merged.NodePrefixes, policy) + } + + for _, policy := range preparedQueryPolicies { + merged.PreparedQueries = append(merged.PreparedQueries, policy) + } + + for _, policy := range preparedQueryPrefixPolicies { + merged.PreparedQueryPrefixes = append(merged.PreparedQueryPrefixes, policy) + } + + for _, policy := range servicePolicies { + merged.Services = append(merged.Services, policy) + } + + for _, policy := range servicePrefixPolicies { + merged.ServicePrefixes = append(merged.ServicePrefixes, policy) + } + + for _, policy := range sessionPolicies { + merged.Sessions = append(merged.Sessions, policy) + } + + for _, policy := range sessionPrefixPolicies { + merged.SessionPrefixes = append(merged.SessionPrefixes, policy) + } + + merged.ID = fmt.Sprintf("%x", multiPolicyID(policies)) + + return merged +} + +func TranslateLegacyRules(policyBytes []byte) ([]byte, error) { + parsed, err := hcl.ParseBytes(policyBytes) + if err != nil { + return nil, fmt.Errorf("Failed to parse rules: %v", err) + } + + rewritten := ast.Walk(parsed, func(node ast.Node) (ast.Node, bool) { + switch n := node.(type) { + case *ast.ObjectKey: + switch n.Token.Text { + case "agent": + n.Token.Text = "agent_prefix" + case "key": + n.Token.Text = "key_prefix" + case "node": + n.Token.Text = "node_prefix" + case "query": + n.Token.Text = "query_prefix" + case "service": + n.Token.Text = "service_prefix" + case "session": + n.Token.Text = "session_prefix" + case "event": + n.Token.Text = "event_prefix" + } + } + + return node, true + }) + + buffer := new(bytes.Buffer) + + if err := hclprinter.Fprint(buffer, rewritten); err != nil { + return nil, fmt.Errorf("Failed to output new rules: %v", err) + } + + return buffer.Bytes(), nil +} diff --git a/acl/policy_test.go b/acl/policy_test.go index 19468e38b..cb36b86b9 100644 --- a/acl/policy_test.go +++ b/acl/policy_test.go @@ -1,32 +1,372 @@ package acl import ( - "reflect" "strings" "testing" - "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) -func TestParse_table(t *testing.T) { - // Note that the table tests are newer than other tests. Many of the - // other aspects of policy parsing are tested in older tests below. New - // parsing tests should be added to this table as its easier to maintain. +func errStartsWith(t *testing.T, actual error, expected string) { + t.Helper() + require.Error(t, actual) + require.Truef(t, strings.HasPrefix(actual.Error(), expected), "Received unexpected error: %#v\nExpecting an error with the prefix: %q", actual, expected) +} + +func TestPolicySourceParse(t *testing.T) { + ljoin := func(lines ...string) string { + return strings.Join(lines, "\n") + } cases := []struct { Name string - Input string + Syntax SyntaxVersion + Rules string Expected *Policy Err string }{ { - "service no intentions", - ` -service "foo" { - policy = "write" -} - `, + "Legacy Basic", + SyntaxLegacy, + ljoin( + `agent "foo" { `, + ` policy = "read" `, + `} `, + `agent "bar" { `, + ` policy = "write" `, + `} `, + `event "" { `, + ` policy = "read" `, + `} `, + `event "foo" { `, + ` policy = "write" `, + `} `, + `event "bar" { `, + ` policy = "deny" `, + `} `, + `key "" { `, + ` policy = "read" `, + `} `, + `key "foo/" { `, + ` policy = "write" `, + `} `, + `key "foo/bar/" { `, + ` policy = "read" `, + `} `, + `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" `, + `} `, + `session "foo" { `, + ` policy = "write" `, + `} `, + `session "bar" { `, + ` policy = "deny" `, + `} `, + `query "" { `, + ` policy = "read" `, + `} `, + `query "foo" { `, + ` policy = "write" `, + `} `, + `query "bar" { `, + ` policy = "deny" `, + `} `), &Policy{ - Services: []*ServicePolicy{ + AgentPrefixes: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "bar", + Policy: PolicyWrite, + }, + }, + EventPrefixes: []*EventPolicy{ + &EventPolicy{ + Event: "", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyDeny, + }, + }, + Keyring: PolicyDeny, + KeyPrefixes: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "foo/", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "foo/bar/", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "foo/bar/baz", + Policy: PolicyDeny, + }, + }, + NodePrefixes: []*NodePolicy{ + &NodePolicy{ + Name: "", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "foo", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "bar", + Policy: PolicyDeny, + }, + }, + Operator: PolicyDeny, + PreparedQueryPrefixes: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "bar", + Policy: PolicyDeny, + }, + }, + ServicePrefixes: []*ServicePolicy{ + &ServicePolicy{ + Name: "", + Policy: PolicyWrite, + }, + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + }, + SessionPrefixes: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "bar", + Policy: PolicyDeny, + }, + }, + }, + "", + }, + { + "Legacy (JSON)", + SyntaxLegacy, + ljoin( + `{ `, + ` "agent": { `, + ` "foo": { `, + ` "policy": "write" `, + ` }, `, + ` "bar": { `, + ` "policy": "deny" `, + ` } `, + ` }, `, + ` "event": { `, + ` "": { `, + ` "policy": "read" `, + ` }, `, + ` "foo": { `, + ` "policy": "write" `, + ` }, `, + ` "bar": { `, + ` "policy": "deny" `, + ` } `, + ` }, `, + ` "key": { `, + ` "": { `, + ` "policy": "read" `, + ` }, `, + ` "foo/": { `, + ` "policy": "write" `, + ` }, `, + ` "foo/bar/": { `, + ` "policy": "read" `, + ` }, `, + ` "foo/bar/baz": { `, + ` "policy": "deny" `, + ` } `, + ` }, `, + ` "keyring": "deny", `, + ` "node": { `, + ` "": { `, + ` "policy": "read" `, + ` }, `, + ` "foo": { `, + ` "policy": "write" `, + ` }, `, + ` "bar": { `, + ` "policy": "deny" `, + ` } `, + ` }, `, + ` "operator": "deny", `, + ` "query": { `, + ` "": { `, + ` "policy": "read" `, + ` }, `, + ` "foo": { `, + ` "policy": "write" `, + ` }, `, + ` "bar": { `, + ` "policy": "deny" `, + ` } `, + ` }, `, + ` "service": { `, + ` "": { `, + ` "policy": "write" `, + ` }, `, + ` "foo": { `, + ` "policy": "read" `, + ` } `, + ` }, `, + ` "session": { `, + ` "foo": { `, + ` "policy": "write" `, + ` }, `, + ` "bar": { `, + ` "policy": "deny" `, + ` } `, + ` } `, + `} `), + &Policy{ + AgentPrefixes: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "bar", + Policy: PolicyDeny, + }, + }, + EventPrefixes: []*EventPolicy{ + &EventPolicy{ + Event: "", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyDeny, + }, + }, + Keyring: PolicyDeny, + KeyPrefixes: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "foo/", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "foo/bar/", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "foo/bar/baz", + Policy: PolicyDeny, + }, + }, + NodePrefixes: []*NodePolicy{ + &NodePolicy{ + Name: "", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "foo", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "bar", + Policy: PolicyDeny, + }, + }, + Operator: PolicyDeny, + PreparedQueryPrefixes: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "bar", + Policy: PolicyDeny, + }, + }, + ServicePrefixes: []*ServicePolicy{ + &ServicePolicy{ + Name: "", + Policy: PolicyWrite, + }, + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + }, + SessionPrefixes: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "bar", + Policy: PolicyDeny, + }, + }, + }, + "", + }, + { + "Service No Intentions (Legacy)", + SyntaxLegacy, + ljoin( + `service "foo" { `, + ` policy = "write"`, + `} `), + &Policy{ + ServicePrefixes: []*ServicePolicy{ { Name: "foo", Policy: "write", @@ -35,17 +375,16 @@ service "foo" { }, "", }, - { - "service intentions", - ` -service "foo" { - policy = "write" - intentions = "read" -} - `, + "Service Intentions (Legacy)", + SyntaxLegacy, + ljoin( + `service "foo" { `, + ` policy = "write" `, + ` intentions = "read"`, + `} `), &Policy{ - Services: []*ServicePolicy{ + ServicePrefixes: []*ServicePolicy{ { Name: "foo", Policy: "write", @@ -55,434 +394,1153 @@ service "foo" { }, "", }, - { - "service intention: invalid value", - ` -service "foo" { - policy = "write" - intentions = "foo" -} - `, + "Service Intention: invalid value (Legacy)", + SyntaxLegacy, + ljoin( + `service "foo" { `, + ` policy = "write" `, + ` intentions = "foo"`, + `} `), nil, - "service intentions", + "Invalid service intentions policy", + }, + { + "Bad Policy - ACL", + + SyntaxCurrent, + `acl = "nope"`, + nil, + "Invalid acl policy", + }, + { + "Bad Policy - Agent", + SyntaxCurrent, + `agent "foo" { policy = "nope" }`, + nil, + "Invalid agent policy", + }, + { + "Bad Policy - Agent Prefix", + SyntaxCurrent, + `agent_prefix "foo" { policy = "nope" }`, + nil, + "Invalid agent_prefix policy", + }, + { + "Bad Policy - Key", + SyntaxCurrent, + `key "foo" { policy = "nope" }`, + nil, + "Invalid key policy", + }, + { + "Bad Policy - Key Prefix", + SyntaxCurrent, + `key_prefix "foo" { policy = "nope" }`, + nil, + "Invalid key_prefix policy", + }, + { + "Bad Policy - Node", + SyntaxCurrent, + `node "foo" { policy = "nope" }`, + nil, + "Invalid node policy", + }, + { + "Bad Policy - Node Prefix", + SyntaxCurrent, + `node_prefix "foo" { policy = "nope" }`, + nil, + "Invalid node_prefix policy", + }, + { + "Bad Policy - Service", + SyntaxCurrent, + `service "foo" { policy = "nope" }`, + nil, + "Invalid service policy", + }, + { + "Bad Policy - Service Prefix", + SyntaxCurrent, + `service_prefix "foo" { policy = "nope" }`, + nil, + "Invalid service_prefix policy", + }, + { + "Bad Policy - Session", + SyntaxCurrent, + `session "foo" { policy = "nope" }`, + nil, + "Invalid session policy", + }, + { + "Bad Policy - Session Prefix", + SyntaxCurrent, + `session_prefix "foo" { policy = "nope" }`, + nil, + "Invalid session_prefix policy", + }, + { + "Bad Policy - Event", + SyntaxCurrent, + `event "foo" { policy = "nope" }`, + nil, + "Invalid event policy", + }, + { + "Bad Policy - Event Prefix", + SyntaxCurrent, + `event_prefix "foo" { policy = "nope" }`, + nil, + "Invalid event_prefix policy", + }, + { + "Bad Policy - Prepared Query", + SyntaxCurrent, + `query "foo" { policy = "nope" }`, + nil, + "Invalid query policy", + }, + { + "Bad Policy - Prepared Query Prefix", + SyntaxCurrent, + `query_prefix "foo" { policy = "nope" }`, + nil, + "Invalid query_prefix policy", + }, + { + "Bad Policy - Keyring", + SyntaxCurrent, + `keyring = "nope"`, + nil, + "Invalid keyring policy", + }, + { + "Bad Policy - Operator", + SyntaxCurrent, + `operator = "nope"`, + nil, + "Invalid operator policy", + }, + { + "Keyring Empty", + SyntaxCurrent, + `keyring = ""`, + &Policy{Keyring: ""}, + "", + }, + { + "Operator Empty", + SyntaxCurrent, + `operator = ""`, + &Policy{Operator: ""}, + "", }, } for _, tc := range cases { t.Run(tc.Name, func(t *testing.T) { - assert := assert.New(t) - actual, err := Parse(tc.Input, nil) - assert.Equal(tc.Err != "", err != nil, err) - if err != nil { - assert.Contains(err.Error(), tc.Err) - return + req := require.New(t) + actual, err := NewPolicyFromSource("", 0, tc.Rules, tc.Syntax, nil) + if tc.Err != "" { + errStartsWith(t, err, tc.Err) + } else { + req.Equal(tc.Expected, actual) } - assert.Equal(tc.Expected, actual) }) } } -func TestACLPolicy_Parse_HCL(t *testing.T) { - inp := ` -agent "foo" { - policy = "read" +func TestMergePolicies(t *testing.T) { + type mergeTest struct { + name string + input []*Policy + expected *Policy + } + + tests := []mergeTest{ + { + name: "Agents", + input: []*Policy{ + &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "bar", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "baz", + Policy: PolicyWrite, + }, + }, + AgentPrefixes: []*AgentPolicy{ + &AgentPolicy{ + Node: "000", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "111", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "222", + Policy: PolicyWrite, + }, + }, + }, + &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "baz", + Policy: PolicyDeny, + }, + }, + AgentPrefixes: []*AgentPolicy{ + &AgentPolicy{ + Node: "000", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + expected: &Policy{ + Agents: []*AgentPolicy{ + &AgentPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "bar", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "baz", + Policy: PolicyDeny, + }, + }, + AgentPrefixes: []*AgentPolicy{ + &AgentPolicy{ + Node: "000", + Policy: PolicyWrite, + }, + &AgentPolicy{ + Node: "111", + Policy: PolicyRead, + }, + &AgentPolicy{ + Node: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + { + name: "Events", + input: []*Policy{ + &Policy{ + Events: []*EventPolicy{ + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "baz", + Policy: PolicyWrite, + }, + }, + EventPrefixes: []*EventPolicy{ + &EventPolicy{ + Event: "000", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "111", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "222", + Policy: PolicyWrite, + }, + }, + }, + &Policy{ + Events: []*EventPolicy{ + &EventPolicy{ + Event: "foo", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "baz", + Policy: PolicyDeny, + }, + }, + EventPrefixes: []*EventPolicy{ + &EventPolicy{ + Event: "000", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + expected: &Policy{ + Events: []*EventPolicy{ + &EventPolicy{ + Event: "foo", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "bar", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "baz", + Policy: PolicyDeny, + }, + }, + EventPrefixes: []*EventPolicy{ + &EventPolicy{ + Event: "000", + Policy: PolicyWrite, + }, + &EventPolicy{ + Event: "111", + Policy: PolicyRead, + }, + &EventPolicy{ + Event: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + { + name: "Node", + input: []*Policy{ + &Policy{ + Nodes: []*NodePolicy{ + &NodePolicy{ + Name: "foo", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "bar", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "baz", + Policy: PolicyWrite, + }, + }, + NodePrefixes: []*NodePolicy{ + &NodePolicy{ + Name: "000", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "111", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "222", + Policy: PolicyWrite, + }, + }, + }, + &Policy{ + Nodes: []*NodePolicy{ + &NodePolicy{ + Name: "foo", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "baz", + Policy: PolicyDeny, + }, + }, + NodePrefixes: []*NodePolicy{ + &NodePolicy{ + Name: "000", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + expected: &Policy{ + Nodes: []*NodePolicy{ + &NodePolicy{ + Name: "foo", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "bar", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "baz", + Policy: PolicyDeny, + }, + }, + NodePrefixes: []*NodePolicy{ + &NodePolicy{ + Name: "000", + Policy: PolicyWrite, + }, + &NodePolicy{ + Name: "111", + Policy: PolicyRead, + }, + &NodePolicy{ + Name: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + { + name: "Keys", + input: []*Policy{ + &Policy{ + Keys: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "bar", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "baz", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "zoo", + Policy: PolicyList, + }, + }, + KeyPrefixes: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "000", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "111", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "222", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "333", + Policy: PolicyList, + }, + }, + }, + &Policy{ + Keys: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "foo", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "baz", + Policy: PolicyDeny, + }, + &KeyPolicy{ + Prefix: "zoo", + Policy: PolicyRead, + }, + }, + KeyPrefixes: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "000", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "222", + Policy: PolicyDeny, + }, + &KeyPolicy{ + Prefix: "333", + Policy: PolicyRead, + }, + }, + }, + }, + expected: &Policy{ + Keys: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "bar", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "baz", + Policy: PolicyDeny, + }, + &KeyPolicy{ + Prefix: "zoo", + Policy: PolicyList, + }, + }, + KeyPrefixes: []*KeyPolicy{ + &KeyPolicy{ + Prefix: "000", + Policy: PolicyWrite, + }, + &KeyPolicy{ + Prefix: "111", + Policy: PolicyRead, + }, + &KeyPolicy{ + Prefix: "222", + Policy: PolicyDeny, + }, + &KeyPolicy{ + Prefix: "333", + Policy: PolicyList, + }, + }, + }, + }, + { + name: "Services", + input: []*Policy{ + &Policy{ + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "foo", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + &ServicePolicy{ + Name: "bar", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "baz", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + }, + ServicePrefixes: []*ServicePolicy{ + &ServicePolicy{ + Name: "000", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + &ServicePolicy{ + Name: "111", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "222", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + }, + }, + &Policy{ + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "foo", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "baz", + Policy: PolicyDeny, + Intentions: PolicyDeny, + }, + }, + ServicePrefixes: []*ServicePolicy{ + &ServicePolicy{ + Name: "000", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "222", + Policy: PolicyDeny, + Intentions: PolicyDeny, + }, + }, + }, + }, + expected: &Policy{ + Services: []*ServicePolicy{ + &ServicePolicy{ + Name: "foo", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + &ServicePolicy{ + Name: "bar", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "baz", + Policy: PolicyDeny, + Intentions: PolicyDeny, + }, + }, + ServicePrefixes: []*ServicePolicy{ + &ServicePolicy{ + Name: "000", + Policy: PolicyWrite, + Intentions: PolicyWrite, + }, + &ServicePolicy{ + Name: "111", + Policy: PolicyRead, + Intentions: PolicyRead, + }, + &ServicePolicy{ + Name: "222", + Policy: PolicyDeny, + Intentions: PolicyDeny, + }, + }, + }, + }, + { + name: "Sessions", + input: []*Policy{ + &Policy{ + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "bar", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "baz", + Policy: PolicyWrite, + }, + }, + SessionPrefixes: []*SessionPolicy{ + &SessionPolicy{ + Node: "000", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "111", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "222", + Policy: PolicyWrite, + }, + }, + }, + &Policy{ + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "baz", + Policy: PolicyDeny, + }, + }, + SessionPrefixes: []*SessionPolicy{ + &SessionPolicy{ + Node: "000", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + expected: &Policy{ + Sessions: []*SessionPolicy{ + &SessionPolicy{ + Node: "foo", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "bar", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "baz", + Policy: PolicyDeny, + }, + }, + SessionPrefixes: []*SessionPolicy{ + &SessionPolicy{ + Node: "000", + Policy: PolicyWrite, + }, + &SessionPolicy{ + Node: "111", + Policy: PolicyRead, + }, + &SessionPolicy{ + Node: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + { + name: "Prepared Queries", + input: []*Policy{ + &Policy{ + PreparedQueries: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "bar", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "baz", + Policy: PolicyWrite, + }, + }, + PreparedQueryPrefixes: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "000", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "111", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "222", + Policy: PolicyWrite, + }, + }, + }, + &Policy{ + PreparedQueries: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "foo", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "baz", + Policy: PolicyDeny, + }, + }, + PreparedQueryPrefixes: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "000", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + expected: &Policy{ + PreparedQueries: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "foo", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "bar", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "baz", + Policy: PolicyDeny, + }, + }, + PreparedQueryPrefixes: []*PreparedQueryPolicy{ + &PreparedQueryPolicy{ + Prefix: "000", + Policy: PolicyWrite, + }, + &PreparedQueryPolicy{ + Prefix: "111", + Policy: PolicyRead, + }, + &PreparedQueryPolicy{ + Prefix: "222", + Policy: PolicyDeny, + }, + }, + }, + }, + { + name: "Write Precedence", + input: []*Policy{ + &Policy{ + ACL: PolicyRead, + Keyring: PolicyRead, + Operator: PolicyRead, + }, + &Policy{ + ACL: PolicyWrite, + Keyring: PolicyWrite, + Operator: PolicyWrite, + }, + }, + expected: &Policy{ + ACL: PolicyWrite, + Keyring: PolicyWrite, + Operator: PolicyWrite, + }, + }, + { + name: "Deny Precedence", + input: []*Policy{ + &Policy{ + ACL: PolicyWrite, + Keyring: PolicyWrite, + Operator: PolicyWrite, + }, + &Policy{ + ACL: PolicyDeny, + Keyring: PolicyDeny, + Operator: PolicyDeny, + }, + }, + expected: &Policy{ + ACL: PolicyDeny, + Keyring: PolicyDeny, + Operator: PolicyDeny, + }, + }, + { + name: "Read Precedence", + input: []*Policy{ + &Policy{ + ACL: PolicyRead, + Keyring: PolicyRead, + Operator: PolicyRead, + }, + &Policy{}, + }, + expected: &Policy{ + ACL: PolicyRead, + Keyring: PolicyRead, + Operator: PolicyRead, + }, + }, + } + + req := require.New(t) + + for _, tcase := range tests { + t.Run(tcase.name, func(t *testing.T) { + act := MergePolicies(tcase.input) + exp := tcase.expected + req.Equal(exp.ACL, act.ACL) + req.Equal(exp.Keyring, act.Keyring) + req.Equal(exp.Operator, act.Operator) + req.ElementsMatch(exp.Agents, act.Agents) + req.ElementsMatch(exp.AgentPrefixes, act.AgentPrefixes) + req.ElementsMatch(exp.Events, act.Events) + req.ElementsMatch(exp.EventPrefixes, act.EventPrefixes) + req.ElementsMatch(exp.Keys, act.Keys) + req.ElementsMatch(exp.KeyPrefixes, act.KeyPrefixes) + req.ElementsMatch(exp.Nodes, act.Nodes) + req.ElementsMatch(exp.NodePrefixes, act.NodePrefixes) + req.ElementsMatch(exp.PreparedQueries, act.PreparedQueries) + req.ElementsMatch(exp.PreparedQueryPrefixes, act.PreparedQueryPrefixes) + req.ElementsMatch(exp.Services, act.Services) + req.ElementsMatch(exp.ServicePrefixes, act.ServicePrefixes) + req.ElementsMatch(exp.Sessions, act.Sessions) + req.ElementsMatch(exp.SessionPrefixes, act.SessionPrefixes) + }) + } + } -agent "bar" { - policy = "write" -} -event "" { - policy = "read" -} -event "foo" { - policy = "write" -} -event "bar" { - policy = "deny" + +func TestRulesTranslate(t *testing.T) { + input := ` +# top level comment + +# block comment +agent "" { + # policy comment + policy = "write" } + +# block comment key "" { - policy = "read" + # policy comment + policy = "write" } -key "foo/" { - policy = "write" -} -key "foo/bar/" { - policy = "read" -} -key "foo/bar/baz" { - policy = "deny" -} -keyring = "deny" + +# block comment node "" { - policy = "read" + # policy comment + policy = "write" } -node "foo" { - policy = "write" + +# block comment +event "" { + # policy comment + policy = "write" } -node "bar" { - policy = "deny" -} -operator = "deny" + +# block comment service "" { - policy = "write" + # policy comment + policy = "write" } -service "foo" { - policy = "read" -} -session "foo" { - policy = "write" -} -session "bar" { - policy = "deny" + +# block comment +session "" { + # policy comment + policy = "write" } + +# block comment query "" { - policy = "read" -} -query "foo" { - policy = "write" -} -query "bar" { - policy = "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: "", - Policy: PolicyRead, - }, - &KeyPolicy{ - Prefix: "foo/", - Policy: PolicyWrite, - }, - &KeyPolicy{ - Prefix: "foo/bar/", - Policy: PolicyRead, - }, - &KeyPolicy{ - Prefix: "foo/bar/baz", - Policy: PolicyDeny, - }, - }, - Nodes: []*NodePolicy{ - &NodePolicy{ - Name: "", - Policy: PolicyRead, - }, - &NodePolicy{ - Name: "foo", - Policy: PolicyWrite, - }, - &NodePolicy{ - Name: "bar", - Policy: PolicyDeny, - }, - }, - Operator: PolicyDeny, - PreparedQueries: []*PreparedQueryPolicy{ - &PreparedQueryPolicy{ - Prefix: "", - Policy: PolicyRead, - }, - &PreparedQueryPolicy{ - Prefix: "foo", - Policy: PolicyWrite, - }, - &PreparedQueryPolicy{ - Prefix: "bar", - Policy: 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, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - if !reflect.DeepEqual(out, exp) { - t.Fatalf("bad: %#v %#v", out, exp) - } + # policy comment + policy = "write" } -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" - }, - "foo/": { - "policy": "write" - }, - "foo/bar/": { - "policy": "read" - }, - "foo/bar/baz": { - "policy": "deny" - } - }, - "keyring": "deny", - "node": { - "": { - "policy": "read" - }, - "foo": { - "policy": "write" - }, - "bar": { - "policy": "deny" - } - }, - "operator": "deny", - "query": { - "": { - "policy": "read" - }, - "foo": { - "policy": "write" - }, - "bar": { - "policy": "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: "", - Policy: PolicyRead, - }, - &KeyPolicy{ - Prefix: "foo/", - Policy: PolicyWrite, - }, - &KeyPolicy{ - Prefix: "foo/bar/", - Policy: PolicyRead, - }, - &KeyPolicy{ - Prefix: "foo/bar/baz", - Policy: PolicyDeny, - }, - }, - Nodes: []*NodePolicy{ - &NodePolicy{ - Name: "", - Policy: PolicyRead, - }, - &NodePolicy{ - Name: "foo", - Policy: PolicyWrite, - }, - &NodePolicy{ - Name: "bar", - Policy: PolicyDeny, - }, - }, - Operator: PolicyDeny, - PreparedQueries: []*PreparedQueryPolicy{ - &PreparedQueryPolicy{ - Prefix: "", - Policy: PolicyRead, - }, - &PreparedQueryPolicy{ - Prefix: "foo", - Policy: PolicyWrite, - }, - &PreparedQueryPolicy{ - Prefix: "bar", - Policy: PolicyDeny, - }, - }, - Services: []*ServicePolicy{ - &ServicePolicy{ - Name: "", - Policy: PolicyWrite, - }, - &ServicePolicy{ - Name: "foo", - Policy: PolicyRead, - }, - }, - Sessions: []*SessionPolicy{ - &SessionPolicy{ - Node: "foo", - Policy: PolicyWrite, - }, - &SessionPolicy{ - Node: "bar", - Policy: PolicyDeny, - }, - }, - } +# comment +keyring = "write" - out, err := Parse(inp, nil) - if err != nil { - t.Fatalf("err: %v", err) - } +# comment +operator = "write" +` - if !reflect.DeepEqual(out, exp) { - t.Fatalf("bad: %#v %#v", out, exp) - } + expected := ` +# top level comment + +# block comment +agent_prefix "" { + # policy comment + policy = "write" } -func TestACLPolicy_Keyring_Empty(t *testing.T) { - inp := ` -keyring = "" - ` - exp := &Policy{ - Keyring: "", - } - - out, err := Parse(inp, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - if !reflect.DeepEqual(out, exp) { - t.Fatalf("bad: %#v %#v", out, exp) - } +# block comment +key_prefix "" { + # policy comment + policy = "write" } -func TestACLPolicy_Operator_Empty(t *testing.T) { - inp := ` -operator = "" - ` - exp := &Policy{ - Operator: "", - } - - out, err := Parse(inp, nil) - if err != nil { - t.Fatalf("err: %v", err) - } - - if !reflect.DeepEqual(out, exp) { - t.Fatalf("bad: %#v %#v", out, exp) - } +# block comment +node_prefix "" { + # policy comment + policy = "write" } -func TestACLPolicy_Bad_Policy(t *testing.T) { - cases := []string{ - `agent "" { policy = "nope" }`, - `event "" { policy = "nope" }`, - `key "" { policy = "nope" }`, - `keyring = "nope"`, - `node "" { policy = "nope" }`, - `operator = "nope"`, - `query "" { policy = "nope" }`, - `service "" { policy = "nope" }`, - `session "" { policy = "nope" }`, +# block comment +event_prefix "" { + # policy comment + policy = "write" +} + +# block comment +service_prefix "" { + # policy comment + policy = "write" +} + +# block comment +session_prefix "" { + # policy comment + policy = "write" +} + +# block comment +query_prefix "" { + # policy comment + policy = "write" +} + +# comment +keyring = "write" + +# comment +operator = "write" +` + + output, err := TranslateLegacyRules([]byte(input)) + require.NoError(t, err) + require.Equal(t, strings.Trim(expected, "\n"), string(output)) +} + +func TestPrecedence(t *testing.T) { + type testCase struct { + name string + a string + b string + expected bool } - for _, c := range cases { - _, err := Parse(c, nil) - if err == nil || !strings.Contains(err.Error(), "Invalid") { - t.Fatalf("expected policy error, got: %#v", err) - } + + cases := []testCase{ + { + name: "Deny Over Write", + a: PolicyDeny, + b: PolicyWrite, + expected: true, + }, + { + name: "Deny Over List", + a: PolicyDeny, + b: PolicyList, + expected: true, + }, + { + name: "Deny Over Read", + a: PolicyDeny, + b: PolicyRead, + expected: true, + }, + { + name: "Deny Over Unknown", + a: PolicyDeny, + b: "not a policy", + expected: true, + }, + { + name: "Write Over List", + a: PolicyWrite, + b: PolicyList, + expected: true, + }, + { + name: "Write Over Read", + a: PolicyWrite, + b: PolicyRead, + expected: true, + }, + { + name: "Write Over Unknown", + a: PolicyWrite, + b: "not a policy", + expected: true, + }, + { + name: "List Over Read", + a: PolicyList, + b: PolicyRead, + expected: true, + }, + { + name: "List Over Unknown", + a: PolicyList, + b: "not a policy", + expected: true, + }, + { + name: "Read Over Unknown", + a: PolicyRead, + b: "not a policy", + expected: true, + }, + { + name: "Write Over Deny", + a: PolicyWrite, + b: PolicyDeny, + expected: false, + }, + { + name: "List Over Deny", + a: PolicyList, + b: PolicyDeny, + expected: false, + }, + { + name: "Read Over Deny", + a: PolicyRead, + b: PolicyDeny, + expected: false, + }, + { + name: "Deny Over Unknown", + a: PolicyDeny, + b: "not a policy", + expected: true, + }, + { + name: "List Over Write", + a: PolicyList, + b: PolicyWrite, + expected: false, + }, + { + name: "Read Over Write", + a: PolicyRead, + b: PolicyWrite, + expected: false, + }, + { + name: "Unknown Over Write", + a: "not a policy", + b: PolicyWrite, + expected: false, + }, + { + name: "Read Over List", + a: PolicyRead, + b: PolicyList, + expected: false, + }, + { + name: "Unknown Over List", + a: "not a policy", + b: PolicyList, + expected: false, + }, + { + name: "Unknown Over Read", + a: "not a policy", + b: PolicyRead, + expected: false, + }, + } + + for _, tcase := range cases { + t.Run(tcase.name, func(t *testing.T) { + require.Equal(t, tcase.expected, takesPrecedenceOver(tcase.a, tcase.b)) + }) } } diff --git a/agent/acl.go b/agent/acl.go index dec738174..d98d05c52 100644 --- a/agent/acl.go +++ b/agent/acl.go @@ -2,242 +2,65 @@ package agent import ( "fmt" - "sync" - "time" - "github.com/armon/go-metrics" "github.com/hashicorp/consul/acl" - "github.com/hashicorp/consul/agent/config" "github.com/hashicorp/consul/agent/local" "github.com/hashicorp/consul/agent/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. - -const ( - - // 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 -) - -// 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. - 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.RuntimeConfig) (*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 +// 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.Authorizer, error) { + // ACLs are disabled + if !a.delegate.ACLsEnabled() { + return nil, nil } + // Disable ACLs if version 8 enforcement isn't enabled. + if !a.config.ACLEnforceVersion8 { + return nil, nil + } + + if acl.RootAuthorizer(id) != nil { + return nil, acl.ErrRootDenied + } + + if a.tokens.IsAgentMasterToken(id) { + return a.aclMasterAuthorizer, nil + } + return a.delegate.ResolveToken(id) +} + +func (a *Agent) initializeACLs() error { // Build a policy for the agent master token. + // The builtin agent master policy allows reading any node information + // and allows writes to the agent with the node name of the running agent + // only. This used to allow a prefix match on agent names but that seems + // entirely unnecessary so it is now using an exact match. policy := &acl.Policy{ Agents: []*acl.AgentPolicy{ &acl.AgentPolicy{ - Node: config.NodeName, + Node: a.config.NodeName, Policy: acl.PolicyWrite, }, }, - Nodes: []*acl.NodePolicy{ + NodePrefixes: []*acl.NodePolicy{ &acl.NodePolicy{ Name: "", Policy: acl.PolicyRead, }, }, } - master, err := acl.New(acl.DenyAll(), policy, nil) + master, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { - return nil, err + return err } - - var down acl.ACL - switch config.ACLDownPolicy { - case "allow": - down = acl.AllowAll() - case "deny": - down = acl.DenyAll() - case "async-cache", "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(a *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, acl.ErrRootDenied - } else if a.tokens.IsAgentMasterToken(id) { - 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{"acl", "cache_hit"}, 1) - return cached.ACL, nil - } - metrics.IncrCounter([]string{"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: a.config.ACLDatacenter, - ACL: id, - } - if cached != nil { - args.ETag = cached.ETag - } - var reply structs.ACLPolicy - err := a.RPC("ACL.GetPolicy", &args, &reply) - if err != nil { - if acl.IsErrDisabled(err) { - a.logger.Printf("[DEBUG] agent: ACLs disabled on servers, will check again after %s", a.config.ACLDisabledTTL) - m.disabledLock.Lock() - m.disabled = time.Now().Add(a.config.ACLDisabledTTL) - m.disabledLock.Unlock() - return nil, nil - } else if acl.IsErrNotFound(err) { - return nil, acl.ErrNotFound - } else { - a.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(a, reply.Parent) - if err != nil { - return nil, err - } - } - - acl, err := acl.New(parent, reply.Policy, nil) - 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 there's no ACL datacenter configured. This means that agent - // enforcement isn't on. - if a.config.ACLDatacenter == "" { - 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) + a.aclMasterAuthorizer = master + return nil } // resolveProxyToken attempts to resolve an ACL ID to a local proxy token. diff --git a/agent/acl_endpoint.go b/agent/acl_endpoint.go index 94a845d07..d9df83d52 100644 --- a/agent/acl_endpoint.go +++ b/agent/acl_endpoint.go @@ -2,22 +2,26 @@ package agent import ( "fmt" + "io/ioutil" "net/http" + "strconv" "strings" + "time" "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/structs" ) // aclCreateResponse is used to wrap the ACL ID -type aclCreateResponse struct { +type aclBootstrapResponse struct { ID string + structs.ACLToken } // checkACLDisabled will return a standard response if ACLs are disabled. This // returns true if they are disabled and we should not continue. func (s *HTTPServer) checkACLDisabled(resp http.ResponseWriter, req *http.Request) bool { - if s.agent.config.ACLDatacenter != "" { + if s.agent.delegate.ACLsEnabled() { return false } @@ -34,211 +38,42 @@ func (s *HTTPServer) ACLBootstrap(resp http.ResponseWriter, req *http.Request) ( } args := structs.DCSpecificRequest{ - Datacenter: s.agent.config.ACLDatacenter, + Datacenter: s.agent.config.Datacenter, } - var out structs.ACL - err := s.agent.RPC("ACL.Bootstrap", &args, &out) - if err != nil { - if strings.Contains(err.Error(), structs.ACLBootstrapNotAllowedErr.Error()) { - resp.WriteHeader(http.StatusForbidden) - fmt.Fprint(resp, acl.PermissionDeniedError{Cause: err.Error()}.Error()) - return nil, nil - } else { - return nil, err + legacy := false + legacyStr := req.URL.Query().Get("legacy") + if legacyStr != "" { + legacy, _ = strconv.ParseBool(legacyStr) + } + + if legacy && s.agent.delegate.UseLegacyACLs() { + var out structs.ACL + err := s.agent.RPC("ACL.Bootstrap", &args, &out) + if err != nil { + if strings.Contains(err.Error(), structs.ACLBootstrapNotAllowedErr.Error()) { + resp.WriteHeader(http.StatusForbidden) + fmt.Fprint(resp, acl.PermissionDeniedError{Cause: err.Error()}.Error()) + return nil, nil + } else { + return nil, err + } } - } - - return aclCreateResponse{out.ID}, nil -} - -func (s *HTTPServer) ACLDestroy(resp http.ResponseWriter, req *http.Request) (interface{}, error) { - if s.checkACLDisabled(resp, req) { - return nil, nil - } - - args := structs.ACLRequest{ - Datacenter: s.agent.config.ACLDatacenter, - Op: structs.ACLDelete, - } - s.parseToken(req, &args.Token) - - // Pull out the acl id - args.ACL.ID = strings.TrimPrefix(req.URL.Path, "/v1/acl/destroy/") - if args.ACL.ID == "" { - resp.WriteHeader(http.StatusBadRequest) - fmt.Fprint(resp, "Missing ACL") - return nil, nil - } - - var out string - if err := s.agent.RPC("ACL.Apply", &args, &out); err != nil { - return nil, err - } - return true, nil -} - -func (s *HTTPServer) ACLCreate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { - if s.checkACLDisabled(resp, req) { - return nil, nil - } - return s.aclSet(resp, req, false) -} - -func (s *HTTPServer) ACLUpdate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { - if s.checkACLDisabled(resp, req) { - return nil, nil - } - return s.aclSet(resp, req, true) -} - -func (s *HTTPServer) aclSet(resp http.ResponseWriter, req *http.Request, update bool) (interface{}, error) { - args := structs.ACLRequest{ - Datacenter: s.agent.config.ACLDatacenter, - Op: structs.ACLSet, - ACL: structs.ACL{ - Type: structs.ACLTypeClient, - }, - } - s.parseToken(req, &args.Token) - - // Handle optional request body - if req.ContentLength > 0 { - if err := decodeBody(req, &args.ACL, nil); err != nil { - resp.WriteHeader(http.StatusBadRequest) - fmt.Fprintf(resp, "Request decode failed: %v", err) - return nil, nil + return &aclBootstrapResponse{ID: out.ID}, nil + } else { + var out structs.ACLToken + err := s.agent.RPC("ACL.BootstrapTokens", &args, &out) + if err != nil { + if strings.Contains(err.Error(), structs.ACLBootstrapNotAllowedErr.Error()) { + resp.WriteHeader(http.StatusForbidden) + fmt.Fprint(resp, acl.PermissionDeniedError{Cause: err.Error()}.Error()) + return nil, nil + } else { + return nil, err + } } + return &aclBootstrapResponse{ID: out.SecretID, ACLToken: out}, nil } - - // Ensure there is an ID set for update. ID is optional for - // create, as one will be generated if not provided. - if update && args.ACL.ID == "" { - resp.WriteHeader(http.StatusBadRequest) - fmt.Fprint(resp, "ACL ID must be set") - return nil, nil - } - - // Create the acl, get the ID - var out string - if err := s.agent.RPC("ACL.Apply", &args, &out); err != nil { - return nil, err - } - - // Format the response as a JSON object - return aclCreateResponse{out}, nil -} - -func (s *HTTPServer) ACLClone(resp http.ResponseWriter, req *http.Request) (interface{}, error) { - if s.checkACLDisabled(resp, req) { - return nil, nil - } - - args := structs.ACLSpecificRequest{ - Datacenter: s.agent.config.ACLDatacenter, - } - var dc string - if done := s.parse(resp, req, &dc, &args.QueryOptions); done { - return nil, nil - } - - // Pull out the acl id - args.ACL = strings.TrimPrefix(req.URL.Path, "/v1/acl/clone/") - if args.ACL == "" { - resp.WriteHeader(http.StatusBadRequest) - fmt.Fprint(resp, "Missing ACL") - return nil, nil - } - - var out structs.IndexedACLs - defer setMeta(resp, &out.QueryMeta) - if err := s.agent.RPC("ACL.Get", &args, &out); err != nil { - return nil, err - } - - // Bail if the ACL is not found, this could be a 404 or a 403, so - // always just return a 403. - if len(out.ACLs) == 0 { - return nil, acl.ErrPermissionDenied - } - - // Create a new ACL - createArgs := structs.ACLRequest{ - Datacenter: args.Datacenter, - Op: structs.ACLSet, - ACL: *out.ACLs[0], - } - createArgs.ACL.ID = "" - createArgs.Token = args.Token - - // Create the acl, get the ID - var outID string - if err := s.agent.RPC("ACL.Apply", &createArgs, &outID); err != nil { - return nil, err - } - - // Format the response as a JSON object - return aclCreateResponse{outID}, nil -} - -func (s *HTTPServer) ACLGet(resp http.ResponseWriter, req *http.Request) (interface{}, error) { - if s.checkACLDisabled(resp, req) { - return nil, nil - } - - args := structs.ACLSpecificRequest{ - Datacenter: s.agent.config.ACLDatacenter, - } - var dc string - if done := s.parse(resp, req, &dc, &args.QueryOptions); done { - return nil, nil - } - - // Pull out the acl id - args.ACL = strings.TrimPrefix(req.URL.Path, "/v1/acl/info/") - if args.ACL == "" { - resp.WriteHeader(http.StatusBadRequest) - fmt.Fprint(resp, "Missing ACL") - return nil, nil - } - - var out structs.IndexedACLs - defer setMeta(resp, &out.QueryMeta) - if err := s.agent.RPC("ACL.Get", &args, &out); err != nil { - return nil, err - } - - // Use empty list instead of nil - if out.ACLs == nil { - out.ACLs = make(structs.ACLs, 0) - } - return out.ACLs, nil -} - -func (s *HTTPServer) ACLList(resp http.ResponseWriter, req *http.Request) (interface{}, error) { - if s.checkACLDisabled(resp, req) { - return nil, nil - } - - args := structs.DCSpecificRequest{ - Datacenter: s.agent.config.ACLDatacenter, - } - var dc string - if done := s.parse(resp, req, &dc, &args.QueryOptions); done { - return nil, nil - } - - var out structs.IndexedACLs - defer setMeta(resp, &out.QueryMeta) - if err := s.agent.RPC("ACL.List", &args, &out); err != nil { - return nil, err - } - - // Use empty list instead of nil - if out.ACLs == nil { - out.ACLs = make(structs.ACLs, 0) - } - return out.ACLs, nil } func (s *HTTPServer) ACLReplicationStatus(resp http.ResponseWriter, req *http.Request) (interface{}, error) { @@ -261,3 +96,423 @@ func (s *HTTPServer) ACLReplicationStatus(resp http.ResponseWriter, req *http.Re } return out, nil } + +func (s *HTTPServer) ACLRulesTranslate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + policyBytes, err := ioutil.ReadAll(req.Body) + if err != nil { + return nil, BadRequestError{Reason: fmt.Sprintf("Failed to read body: %v", err)} + } + + translated, err := acl.TranslateLegacyRules(policyBytes) + if err != nil { + return nil, BadRequestError{Reason: err.Error()} + } + + resp.Write(translated) + return nil, nil +} + +func (s *HTTPServer) ACLRulesTranslateLegacyToken(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + tokenID := strings.TrimPrefix(req.URL.Path, "/v1/acl/rules/translate/") + if tokenID == "" { + return nil, BadRequestError{Reason: "Missing token ID"} + } + + args := structs.ACLTokenReadRequest{ + Datacenter: s.agent.config.Datacenter, + TokenID: tokenID, + TokenIDType: structs.ACLTokenAccessor, + } + if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { + return nil, nil + } + + if args.Datacenter == "" { + args.Datacenter = s.agent.config.Datacenter + } + + // Do not allow blocking + args.QueryOptions.MinQueryIndex = 0 + + var out structs.ACLTokenResponse + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.TokenRead", &args, &out); err != nil { + return nil, err + } + + if out.Token == nil { + return nil, acl.ErrNotFound + } + + if out.Token.Rules == "" { + return nil, fmt.Errorf("The specified token does not have any rules set") + } + + translated, err := acl.TranslateLegacyRules([]byte(out.Token.Rules)) + if err != nil { + return nil, fmt.Errorf("Failed to parse legacy rules: %v", err) + } + + resp.Write(translated) + return nil, nil +} + +func (s *HTTPServer) ACLPolicyList(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + var args structs.ACLPolicyListRequest + if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { + return nil, nil + } + + if args.Datacenter == "" { + args.Datacenter = s.agent.config.Datacenter + } + + var out structs.ACLPolicyListResponse + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.PolicyList", &args, &out); err != nil { + return nil, err + } + + // make sure we return an array and not nil + if out.Policies == nil { + out.Policies = make(structs.ACLPolicyListStubs, 0) + } + + return out.Policies, nil +} + +func (s *HTTPServer) ACLPolicyCRUD(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + var fn func(resp http.ResponseWriter, req *http.Request, policyID string) (interface{}, error) + + switch req.Method { + case "GET": + fn = s.ACLPolicyRead + + case "PUT": + fn = s.ACLPolicyWrite + + case "DELETE": + fn = s.ACLPolicyDelete + + default: + return nil, MethodNotAllowedError{req.Method, []string{"GET", "PUT", "DELETE"}} + } + + policyID := strings.TrimPrefix(req.URL.Path, "/v1/acl/policy/") + if policyID == "" && req.Method != "PUT" { + return nil, BadRequestError{Reason: "Missing policy ID"} + } + + return fn(resp, req, policyID) +} + +func (s *HTTPServer) ACLPolicyRead(resp http.ResponseWriter, req *http.Request, policyID string) (interface{}, error) { + args := structs.ACLPolicyReadRequest{ + Datacenter: s.agent.config.Datacenter, + PolicyID: policyID, + } + if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { + return nil, nil + } + + if args.Datacenter == "" { + args.Datacenter = s.agent.config.Datacenter + } + + var out structs.ACLPolicyResponse + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.PolicyRead", &args, &out); err != nil { + return nil, err + } + + if out.Policy == nil { + return nil, acl.ErrNotFound + } + + return out.Policy, nil +} + +func (s *HTTPServer) ACLPolicyCreate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + return s.ACLPolicyWrite(resp, req, "") +} + +// fixCreateTimeAndHash is used to help in decoding the CreateTime and Hash +// attributes from the ACL Token create/update requests. It is needed +// to help mapstructure decode things properly when decodeBody is used. +func fixCreateTimeAndHash(raw interface{}) error { + rawMap, ok := raw.(map[string]interface{}) + if !ok { + return nil + } + + if val, ok := rawMap["CreateTime"]; ok { + if sval, ok := val.(string); ok { + t, err := time.Parse(time.RFC3339, sval) + if err != nil { + return err + } + rawMap["CreateTime"] = t + } + } + + if val, ok := rawMap["Hash"]; ok { + if sval, ok := val.(string); ok { + rawMap["Hash"] = []byte(sval) + } + } + return nil +} + +func (s *HTTPServer) ACLPolicyWrite(resp http.ResponseWriter, req *http.Request, policyID string) (interface{}, error) { + args := structs.ACLPolicyUpsertRequest{ + Datacenter: s.agent.config.Datacenter, + } + s.parseToken(req, &args.Token) + + if err := decodeBody(req, &args.Policy, nil); err != nil { + return nil, BadRequestError{Reason: fmt.Sprintf("Policy decoding failed: %v", err)} + } + + args.Policy.Syntax = acl.SyntaxCurrent + + if args.Policy.ID != "" && args.Policy.ID != policyID { + return nil, BadRequestError{Reason: "Policy ID in URL and payload do not match"} + } else if args.Policy.ID == "" { + args.Policy.ID = policyID + } + + var out structs.ACLPolicy + if err := s.agent.RPC("ACL.PolicyUpsert", args, &out); err != nil { + return nil, err + } + + return &out, nil +} + +func (s *HTTPServer) ACLPolicyDelete(resp http.ResponseWriter, req *http.Request, policyID string) (interface{}, error) { + args := structs.ACLPolicyDeleteRequest{ + Datacenter: s.agent.config.Datacenter, + PolicyID: policyID, + } + s.parseToken(req, &args.Token) + + var out string + if err := s.agent.RPC("ACL.PolicyDelete", args, &out); err != nil { + return nil, err + } + + return true, nil +} + +func (s *HTTPServer) ACLTokenList(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := &structs.ACLTokenListRequest{ + IncludeLocal: true, + IncludeGlobal: true, + } + if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { + return nil, nil + } + + if args.Datacenter == "" { + args.Datacenter = s.agent.config.Datacenter + } + + args.Policy = req.URL.Query().Get("policy") + + var out structs.ACLTokenListResponse + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.TokenList", &args, &out); err != nil { + return nil, err + } + + return out.Tokens, nil +} + +func (s *HTTPServer) ACLTokenCRUD(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + var fn func(resp http.ResponseWriter, req *http.Request, tokenID string) (interface{}, error) + + switch req.Method { + case "GET": + fn = s.ACLTokenRead + + case "PUT": + fn = s.ACLTokenWrite + + case "DELETE": + fn = s.ACLTokenDelete + + default: + return nil, MethodNotAllowedError{req.Method, []string{"GET", "PUT", "DELETE"}} + } + + tokenID := strings.TrimPrefix(req.URL.Path, "/v1/acl/token/") + if strings.HasSuffix(tokenID, "/clone") && req.Method == "PUT" { + tokenID = tokenID[:len(tokenID)-6] + fn = s.ACLTokenClone + } + if tokenID == "" && req.Method != "PUT" { + return nil, BadRequestError{Reason: "Missing token ID"} + } + + return fn(resp, req, tokenID) +} + +func (s *HTTPServer) ACLTokenSelf(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := structs.ACLTokenReadRequest{ + TokenIDType: structs.ACLTokenSecret, + } + + if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { + return nil, nil + } + + // copy the token parameter to the ID + args.TokenID = args.Token + + if args.Datacenter == "" { + args.Datacenter = s.agent.config.Datacenter + } + + var out structs.ACLTokenResponse + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.TokenRead", &args, &out); err != nil { + return nil, err + } + + if out.Token == nil { + return nil, acl.ErrNotFound + } + + return out.Token, nil +} + +func (s *HTTPServer) ACLTokenCreate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + return s.ACLTokenWrite(resp, req, "") +} + +func (s *HTTPServer) ACLTokenRead(resp http.ResponseWriter, req *http.Request, tokenID string) (interface{}, error) { + args := structs.ACLTokenReadRequest{ + Datacenter: s.agent.config.Datacenter, + TokenID: tokenID, + TokenIDType: structs.ACLTokenAccessor, + } + + if done := s.parse(resp, req, &args.Datacenter, &args.QueryOptions); done { + return nil, nil + } + + if args.Datacenter == "" { + args.Datacenter = s.agent.config.Datacenter + } + + var out structs.ACLTokenResponse + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.TokenRead", &args, &out); err != nil { + return nil, err + } + + if out.Token == nil { + return nil, acl.ErrNotFound + } + + return out.Token, nil +} + +func (s *HTTPServer) ACLTokenWrite(resp http.ResponseWriter, req *http.Request, tokenID string) (interface{}, error) { + args := structs.ACLTokenUpsertRequest{ + Datacenter: s.agent.config.Datacenter, + } + s.parseToken(req, &args.Token) + + if err := decodeBody(req, &args.ACLToken, fixCreateTimeAndHash); err != nil { + return nil, BadRequestError{Reason: fmt.Sprintf("Token decoding failed: %v", err)} + } + + if args.ACLToken.AccessorID != "" && args.ACLToken.AccessorID != tokenID { + return nil, BadRequestError{Reason: "Token Accessor ID in URL and payload do not match"} + } else if args.ACLToken.AccessorID == "" { + args.ACLToken.AccessorID = tokenID + } + + var out structs.ACLToken + if err := s.agent.RPC("ACL.TokenUpsert", args, &out); err != nil { + return nil, err + } + + return &out, nil +} + +func (s *HTTPServer) ACLTokenDelete(resp http.ResponseWriter, req *http.Request, tokenID string) (interface{}, error) { + args := structs.ACLTokenDeleteRequest{ + Datacenter: s.agent.config.Datacenter, + TokenID: tokenID, + } + s.parseToken(req, &args.Token) + + var out string + if err := s.agent.RPC("ACL.TokenDelete", args, &out); err != nil { + return nil, err + } + return true, nil +} + +func (s *HTTPServer) ACLTokenClone(resp http.ResponseWriter, req *http.Request, tokenID string) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := structs.ACLTokenUpsertRequest{ + Datacenter: s.agent.config.Datacenter, + } + + if err := decodeBody(req, &args.ACLToken, fixCreateTimeAndHash); err != nil && err.Error() != "EOF" { + return nil, BadRequestError{Reason: fmt.Sprintf("Token decoding failed: %v", err)} + } + s.parseToken(req, &args.Token) + + // Set this for the ID to clone + args.ACLToken.AccessorID = tokenID + + var out structs.ACLToken + if err := s.agent.RPC("ACL.TokenClone", args, &out); err != nil { + return nil, err + } + + return &out, nil +} diff --git a/agent/acl_endpoint_legacy.go b/agent/acl_endpoint_legacy.go new file mode 100644 index 000000000..e462855d4 --- /dev/null +++ b/agent/acl_endpoint_legacy.go @@ -0,0 +1,203 @@ +package agent + +import ( + "fmt" + "net/http" + "strings" + + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/agent/structs" +) + +type aclCreateResponse struct { + ID string +} + +func (s *HTTPServer) ACLDestroy(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := structs.ACLRequest{ + Datacenter: s.agent.config.ACLDatacenter, + Op: structs.ACLDelete, + } + s.parseToken(req, &args.Token) + + // Pull out the acl id + args.ACL.ID = strings.TrimPrefix(req.URL.Path, "/v1/acl/destroy/") + if args.ACL.ID == "" { + resp.WriteHeader(http.StatusBadRequest) + fmt.Fprint(resp, "Missing ACL") + return nil, nil + } + + var out string + if err := s.agent.RPC("ACL.Apply", &args, &out); err != nil { + return nil, err + } + return true, nil +} + +func (s *HTTPServer) ACLCreate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + return s.aclSet(resp, req, false) +} + +func (s *HTTPServer) ACLUpdate(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + return s.aclSet(resp, req, true) +} + +func (s *HTTPServer) aclSet(resp http.ResponseWriter, req *http.Request, update bool) (interface{}, error) { + args := structs.ACLRequest{ + Datacenter: s.agent.config.ACLDatacenter, + Op: structs.ACLSet, + ACL: structs.ACL{ + Type: structs.ACLTokenTypeClient, + }, + } + s.parseToken(req, &args.Token) + + // Handle optional request body + if req.ContentLength > 0 { + if err := decodeBody(req, &args.ACL, nil); err != nil { + resp.WriteHeader(http.StatusBadRequest) + fmt.Fprintf(resp, "Request decode failed: %v", err) + return nil, nil + } + } + + // Ensure there is an ID set for update. ID is optional for + // create, as one will be generated if not provided. + if update && args.ACL.ID == "" { + resp.WriteHeader(http.StatusBadRequest) + fmt.Fprint(resp, "ACL ID must be set") + return nil, nil + } + + // Create the acl, get the ID + var out string + if err := s.agent.RPC("ACL.Apply", &args, &out); err != nil { + return nil, err + } + + // Format the response as a JSON object + return aclCreateResponse{out}, nil +} + +func (s *HTTPServer) ACLClone(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := structs.ACLSpecificRequest{ + Datacenter: s.agent.config.ACLDatacenter, + } + var dc string + if done := s.parse(resp, req, &dc, &args.QueryOptions); done { + return nil, nil + } + + // Pull out the acl id + args.ACL = strings.TrimPrefix(req.URL.Path, "/v1/acl/clone/") + if args.ACL == "" { + resp.WriteHeader(http.StatusBadRequest) + fmt.Fprint(resp, "Missing ACL") + return nil, nil + } + + var out structs.IndexedACLs + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.Get", &args, &out); err != nil { + return nil, err + } + + // Bail if the ACL is not found, this could be a 404 or a 403, so + // always just return a 403. + if len(out.ACLs) == 0 { + return nil, acl.ErrPermissionDenied + } + + // Create a new ACL + createArgs := structs.ACLRequest{ + Datacenter: args.Datacenter, + Op: structs.ACLSet, + ACL: *out.ACLs[0], + } + createArgs.ACL.ID = "" + createArgs.Token = args.Token + + // Create the acl, get the ID + var outID string + if err := s.agent.RPC("ACL.Apply", &createArgs, &outID); err != nil { + return nil, err + } + + // Format the response as a JSON object + return aclCreateResponse{outID}, nil +} + +func (s *HTTPServer) ACLGet(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := structs.ACLSpecificRequest{ + Datacenter: s.agent.config.ACLDatacenter, + } + var dc string + if done := s.parse(resp, req, &dc, &args.QueryOptions); done { + return nil, nil + } + + // Pull out the acl id + args.ACL = strings.TrimPrefix(req.URL.Path, "/v1/acl/info/") + if args.ACL == "" { + resp.WriteHeader(http.StatusBadRequest) + fmt.Fprint(resp, "Missing ACL") + return nil, nil + } + + var out structs.IndexedACLs + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.Get", &args, &out); err != nil { + return nil, err + } + + // Use empty list instead of nil + if out.ACLs == nil { + out.ACLs = make(structs.ACLs, 0) + } + return out.ACLs, nil +} + +func (s *HTTPServer) ACLList(resp http.ResponseWriter, req *http.Request) (interface{}, error) { + if s.checkACLDisabled(resp, req) { + return nil, nil + } + + args := structs.DCSpecificRequest{ + Datacenter: s.agent.config.ACLDatacenter, + } + var dc string + if done := s.parse(resp, req, &dc, &args.QueryOptions); done { + return nil, nil + } + + var out structs.IndexedACLs + defer setMeta(resp, &out.QueryMeta) + if err := s.agent.RPC("ACL.List", &args, &out); err != nil { + return nil, err + } + + // Use empty list instead of nil + if out.ACLs == nil { + out.ACLs = make(structs.ACLs, 0) + } + return out.ACLs, nil +} diff --git a/agent/acl_endpoint_legacy_test.go b/agent/acl_endpoint_legacy_test.go new file mode 100644 index 000000000..d31f57655 --- /dev/null +++ b/agent/acl_endpoint_legacy_test.go @@ -0,0 +1,297 @@ +package agent + +import ( + "bytes" + "encoding/json" + "fmt" + "net/http" + "net/http/httptest" + "strings" + "testing" + + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/testrpc" +) + +func TestACL_Legacy_Disabled_Response(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), "") + defer a.Shutdown() + + tests := []func(resp http.ResponseWriter, req *http.Request) (interface{}, error){ + a.srv.ACLDestroy, + a.srv.ACLCreate, + a.srv.ACLUpdate, + a.srv.ACLClone, + a.srv.ACLGet, + a.srv.ACLList, + } + testrpc.WaitForLeader(t, a.RPC, "dc1") + for i, tt := range tests { + t.Run(fmt.Sprintf("%d", i), func(t *testing.T) { + req, _ := http.NewRequest("PUT", "/should/not/care", nil) + resp := httptest.NewRecorder() + obj, err := tt(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if obj != nil { + t.Fatalf("bad: %#v", obj) + } + if got, want := resp.Code, http.StatusUnauthorized; got != want { + t.Fatalf("got %d want %d", got, want) + } + if !strings.Contains(resp.Body.String(), "ACL support disabled") { + t.Fatalf("bad: %#v", resp) + } + }) + } +} + +func makeTestACL(t *testing.T, srv *HTTPServer) string { + body := bytes.NewBuffer(nil) + enc := json.NewEncoder(body) + raw := map[string]interface{}{ + "Name": "User Token", + "Type": "client", + "Rules": "", + } + enc.Encode(raw) + + req, _ := http.NewRequest("PUT", "/v1/acl/create?token=root", body) + resp := httptest.NewRecorder() + obj, err := srv.ACLCreate(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + aclResp := obj.(aclCreateResponse) + return aclResp.ID +} + +func TestACL_Legacy_Update(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + testrpc.WaitForLeader(t, a.RPC, "dc1") + id := makeTestACL(t, a.srv) + + body := bytes.NewBuffer(nil) + enc := json.NewEncoder(body) + raw := map[string]interface{}{ + "ID": id, + "Name": "User Token 2", + "Type": "client", + "Rules": "", + } + enc.Encode(raw) + + req, _ := http.NewRequest("PUT", "/v1/acl/update?token=root", body) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLUpdate(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + aclResp := obj.(aclCreateResponse) + if aclResp.ID != id { + t.Fatalf("bad: %v", aclResp) + } +} + +func TestACL_Legacy_UpdateUpsert(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + body := bytes.NewBuffer(nil) + enc := json.NewEncoder(body) + raw := map[string]interface{}{ + "ID": "my-old-id", + "Name": "User Token 2", + "Type": "client", + "Rules": "", + } + enc.Encode(raw) + + req, _ := http.NewRequest("PUT", "/v1/acl/update?token=root", body) + resp := httptest.NewRecorder() + + testrpc.WaitForLeader(t, a.RPC, "dc1") + obj, err := a.srv.ACLUpdate(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + aclResp := obj.(aclCreateResponse) + if aclResp.ID != "my-old-id" { + t.Fatalf("bad: %v", aclResp) + } +} + +func TestACL_Legacy_Destroy(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + testrpc.WaitForLeader(t, a.RPC, "dc1") + id := makeTestACL(t, a.srv) + req, _ := http.NewRequest("PUT", "/v1/acl/destroy/"+id+"?token=root", nil) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLDestroy(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + if resp, ok := obj.(bool); !ok || !resp { + t.Fatalf("should work") + } + + req, _ = http.NewRequest("GET", "/v1/acl/info/"+id, nil) + resp = httptest.NewRecorder() + obj, err = a.srv.ACLGet(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + respObj, ok := obj.(structs.ACLs) + if !ok { + t.Fatalf("should work") + } + if len(respObj) != 0 { + t.Fatalf("bad: %v", respObj) + } +} + +func TestACL_Legacy_Clone(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + testrpc.WaitForLeader(t, a.RPC, "dc1") + id := makeTestACL(t, a.srv) + + req, _ := http.NewRequest("PUT", "/v1/acl/clone/"+id, nil) + resp := httptest.NewRecorder() + _, err := a.srv.ACLClone(resp, req) + if !acl.IsErrPermissionDenied(err) { + t.Fatalf("err: %v", err) + } + + req, _ = http.NewRequest("PUT", "/v1/acl/clone/"+id+"?token=root", nil) + resp = httptest.NewRecorder() + obj, err := a.srv.ACLClone(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + aclResp, ok := obj.(aclCreateResponse) + if !ok { + t.Fatalf("should work: %#v %#v", obj, resp) + } + if aclResp.ID == id { + t.Fatalf("bad id") + } + + req, _ = http.NewRequest("GET", "/v1/acl/info/"+aclResp.ID, nil) + resp = httptest.NewRecorder() + obj, err = a.srv.ACLGet(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + respObj, ok := obj.(structs.ACLs) + if !ok { + t.Fatalf("should work") + } + if len(respObj) != 1 { + t.Fatalf("bad: %v", respObj) + } +} + +func TestACL_Legacy_Get(t *testing.T) { + t.Parallel() + t.Run("wrong id", func(t *testing.T) { + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + req, _ := http.NewRequest("GET", "/v1/acl/info/nope", nil) + resp := httptest.NewRecorder() + testrpc.WaitForLeader(t, a.RPC, "dc1") + obj, err := a.srv.ACLGet(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + respObj, ok := obj.(structs.ACLs) + if !ok { + t.Fatalf("should work") + } + if respObj == nil || len(respObj) != 0 { + t.Fatalf("bad: %v", respObj) + } + }) + + t.Run("right id", func(t *testing.T) { + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + testrpc.WaitForLeader(t, a.RPC, "dc1") + id := makeTestACL(t, a.srv) + + req, _ := http.NewRequest("GET", "/v1/acl/info/"+id, nil) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLGet(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + respObj, ok := obj.(structs.ACLs) + if !ok { + t.Fatalf("should work") + } + if len(respObj) != 1 { + t.Fatalf("bad: %v", respObj) + } + }) +} + +func TestACL_Legacy_List(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + testrpc.WaitForLeader(t, a.RPC, "dc1") + var ids []string + for i := 0; i < 10; i++ { + ids = append(ids, makeTestACL(t, a.srv)) + } + + req, _ := http.NewRequest("GET", "/v1/acl/list?token=root", nil) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLList(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + respObj, ok := obj.(structs.ACLs) + if !ok { + t.Fatalf("should work") + } + + // 10 + master + // anonymous token is a new token and wont show up in this list + if len(respObj) != 11 { + t.Fatalf("bad: %v", respObj) + } +} + +func TestACLReplicationStatus(t *testing.T) { + t.Parallel() + a := NewTestAgent(t.Name(), TestACLConfig()) + defer a.Shutdown() + + req, _ := http.NewRequest("GET", "/v1/acl/replication", nil) + resp := httptest.NewRecorder() + testrpc.WaitForLeader(t, a.RPC, "dc1") + obj, err := a.srv.ACLReplicationStatus(resp, req) + if err != nil { + t.Fatalf("err: %v", err) + } + _, ok := obj.(structs.ACLReplicationStatus) + if !ok { + t.Fatalf("should work") + } +} diff --git a/agent/acl_endpoint_test.go b/agent/acl_endpoint_test.go index d4cf6da85..ad40875ae 100644 --- a/agent/acl_endpoint_test.go +++ b/agent/acl_endpoint_test.go @@ -3,80 +3,70 @@ package agent import ( "bytes" "encoding/json" - "fmt" + "io" "net/http" "net/http/httptest" - "strings" "testing" - "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/testrpc" + "github.com/stretchr/testify/require" ) +// NOTE: The tests contained herein are designed to test the HTTP API +// They are not intented to thoroughly test the backing RPC +// functionality as that will be done with other tests. + func TestACL_Disabled_Response(t *testing.T) { t.Parallel() a := NewTestAgent(t.Name(), "") defer a.Shutdown() - tests := []func(resp http.ResponseWriter, req *http.Request) (interface{}, error){ - a.srv.ACLBootstrap, - a.srv.ACLDestroy, - a.srv.ACLCreate, - a.srv.ACLUpdate, - a.srv.ACLClone, - a.srv.ACLGet, - a.srv.ACLList, - a.srv.ACLReplicationStatus, - a.srv.AgentToken, // See TestAgent_Token. + type testCase struct { + name string + fn func(resp http.ResponseWriter, req *http.Request) (interface{}, error) + } + + tests := []testCase{ + {"ACLBootstrap", a.srv.ACLBootstrap}, + {"ACLReplicationStatus", a.srv.ACLReplicationStatus}, + {"AgentToken", a.srv.AgentToken}, // See TestAgent_Token + {"ACLRulesTranslate", a.srv.ACLRulesTranslate}, + {"ACLRulesTranslateLegacyToken", a.srv.ACLRulesTranslateLegacyToken}, + {"ACLPolicyList", a.srv.ACLPolicyList}, + {"ACLPolicyCRUD", a.srv.ACLPolicyCRUD}, + {"ACLPolicyCreate", a.srv.ACLPolicyCreate}, + {"ACLTokenList", a.srv.ACLTokenList}, + {"ACLTokenCreate", a.srv.ACLTokenCreate}, + {"ACLTokenSelf", a.srv.ACLTokenSelf}, + {"ACLTokenCRUD", a.srv.ACLTokenCRUD}, } testrpc.WaitForLeader(t, a.RPC, "dc1") - for i, tt := range tests { - t.Run(fmt.Sprintf("%d", i), func(t *testing.T) { + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { req, _ := http.NewRequest("PUT", "/should/not/care", nil) resp := httptest.NewRecorder() - obj, err := tt(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - if obj != nil { - t.Fatalf("bad: %#v", obj) - } - if got, want := resp.Code, http.StatusUnauthorized; got != want { - t.Fatalf("got %d want %d", got, want) - } - if !strings.Contains(resp.Body.String(), "ACL support disabled") { - t.Fatalf("bad: %#v", resp) - } + obj, err := tt.fn(resp, req) + require.NoError(t, err) + require.Nil(t, obj) + require.Equal(t, http.StatusUnauthorized, resp.Code) + require.Contains(t, resp.Body.String(), "ACL support disabled") }) } } -func makeTestACL(t *testing.T, srv *HTTPServer) string { +func jsonBody(v interface{}) io.Reader { body := bytes.NewBuffer(nil) enc := json.NewEncoder(body) - raw := map[string]interface{}{ - "Name": "User Token", - "Type": "client", - "Rules": "", - } - enc.Encode(raw) - - req, _ := http.NewRequest("PUT", "/v1/acl/create?token=root", body) - resp := httptest.NewRecorder() - obj, err := srv.ACLCreate(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - aclResp := obj.(aclCreateResponse) - return aclResp.ID + enc.Encode(v) + return body } func TestACL_Bootstrap(t *testing.T) { t.Parallel() a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_master_token = "" - `) + acl_master_token = "" + `) defer a.Shutdown() tests := []struct { @@ -94,20 +84,23 @@ func TestACL_Bootstrap(t *testing.T) { resp := httptest.NewRecorder() req, _ := http.NewRequest(tt.method, "/v1/acl/bootstrap", nil) out, err := a.srv.ACLBootstrap(resp, req) - if err != nil { + if tt.token && err != nil { t.Fatalf("err: %v", err) } if got, want := resp.Code, tt.code; got != want { t.Fatalf("got %d want %d", got, want) } if tt.token { - wrap, ok := out.(aclCreateResponse) + wrap, ok := out.(*aclBootstrapResponse) if !ok { t.Fatalf("bad: %T", out) } if len(wrap.ID) != len("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") { t.Fatalf("bad: %v", wrap) } + if wrap.ID != wrap.SecretID { + t.Fatalf("bad: %v", wrap) + } } else { if out != nil { t.Fatalf("bad: %T", out) @@ -117,228 +110,487 @@ func TestACL_Bootstrap(t *testing.T) { } } -func TestACL_Update(t *testing.T) { +func TestACL_HTTP(t *testing.T) { t.Parallel() a := NewTestAgent(t.Name(), TestACLConfig()) defer a.Shutdown() testrpc.WaitForLeader(t, a.RPC, "dc1") - id := makeTestACL(t, a.srv) - body := bytes.NewBuffer(nil) - enc := json.NewEncoder(body) - raw := map[string]interface{}{ - "ID": id, - "Name": "User Token 2", - "Type": "client", - "Rules": "", - } - enc.Encode(raw) + idMap := make(map[string]string) + policyMap := make(map[string]*structs.ACLPolicy) + tokenMap := make(map[string]*structs.ACLToken) - req, _ := http.NewRequest("PUT", "/v1/acl/update?token=root", body) - resp := httptest.NewRecorder() - obj, err := a.srv.ACLUpdate(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - aclResp := obj.(aclCreateResponse) - if aclResp.ID != id { - t.Fatalf("bad: %v", aclResp) - } -} + // This is all done as a subtest for a couple reasons + // 1. It uses only 1 test agent and these are + // somewhat expensive to bring up and tear down often + // 2. Instead of having to bring up a new agent and prime + // the ACL system with some data before running the test + // we can intelligently order these tests so we can still + // test everything with less actual operations and do + // so in a manner that is less prone to being flaky + // 3. While this test will be large it should + t.Run("Policy", func(t *testing.T) { + t.Run("Create", func(t *testing.T) { + policyInput := &structs.ACLPolicy{ + Name: "test", + Description: "test", + Rules: `acl = "read"`, + Datacenters: []string{"dc1"}, + } -func TestACL_UpdateUpsert(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() + req, _ := http.NewRequest("PUT", "/v1/acl/policy?token=root", jsonBody(policyInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLPolicyCreate(resp, req) + require.NoError(t, err) - body := bytes.NewBuffer(nil) - enc := json.NewEncoder(body) - raw := map[string]interface{}{ - "ID": "my-old-id", - "Name": "User Token 2", - "Type": "client", - "Rules": "", - } - enc.Encode(raw) + policy, ok := obj.(*structs.ACLPolicy) + require.True(t, ok) - req, _ := http.NewRequest("PUT", "/v1/acl/update?token=root", body) - resp := httptest.NewRecorder() + // 36 = length of the string form of uuids + require.Len(t, policy.ID, 36) + require.Equal(t, policyInput.Name, policy.Name) + require.Equal(t, policyInput.Description, policy.Description) + require.Equal(t, policyInput.Rules, policy.Rules) + require.Equal(t, policyInput.Datacenters, policy.Datacenters) + require.True(t, policy.CreateIndex > 0) + require.Equal(t, policy.CreateIndex, policy.ModifyIndex) + require.NotNil(t, policy.Hash) + require.NotEqual(t, policy.Hash, []byte{}) - testrpc.WaitForLeader(t, a.RPC, "dc1") - obj, err := a.srv.ACLUpdate(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - aclResp := obj.(aclCreateResponse) - if aclResp.ID != "my-old-id" { - t.Fatalf("bad: %v", aclResp) - } -} + idMap["policy-test"] = policy.ID + policyMap[policy.ID] = policy + }) -func TestACL_Destroy(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() + t.Run("Minimal", func(t *testing.T) { + policyInput := &structs.ACLPolicy{ + Name: "minimal", + Rules: `key_prefix "" { policy = "read" }`, + } - testrpc.WaitForLeader(t, a.RPC, "dc1") - id := makeTestACL(t, a.srv) - req, _ := http.NewRequest("PUT", "/v1/acl/destroy/"+id+"?token=root", nil) - resp := httptest.NewRecorder() - obj, err := a.srv.ACLDestroy(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - if resp, ok := obj.(bool); !ok || !resp { - t.Fatalf("should work") - } + req, _ := http.NewRequest("PUT", "/v1/acl/policy?token=root", jsonBody(policyInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLPolicyCreate(resp, req) + require.NoError(t, err) - req, _ = http.NewRequest("GET", "/v1/acl/info/"+id, nil) - resp = httptest.NewRecorder() - obj, err = a.srv.ACLGet(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - respObj, ok := obj.(structs.ACLs) - if !ok { - t.Fatalf("should work") - } - if len(respObj) != 0 { - t.Fatalf("bad: %v", respObj) - } -} + policy, ok := obj.(*structs.ACLPolicy) + require.True(t, ok) -func TestACL_Clone(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() + // 36 = length of the string form of uuids + require.Len(t, policy.ID, 36) + require.Equal(t, policyInput.Name, policy.Name) + require.Equal(t, policyInput.Description, policy.Description) + require.Equal(t, policyInput.Rules, policy.Rules) + require.Equal(t, policyInput.Datacenters, policy.Datacenters) + require.True(t, policy.CreateIndex > 0) + require.Equal(t, policy.CreateIndex, policy.ModifyIndex) + require.NotNil(t, policy.Hash) + require.NotEqual(t, policy.Hash, []byte{}) - testrpc.WaitForLeader(t, a.RPC, "dc1") - id := makeTestACL(t, a.srv) + idMap["policy-minimal"] = policy.ID + policyMap[policy.ID] = policy + }) - req, _ := http.NewRequest("PUT", "/v1/acl/clone/"+id, nil) - resp := httptest.NewRecorder() - _, err := a.srv.ACLClone(resp, req) - if !acl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + t.Run("Name Chars", func(t *testing.T) { + policyInput := &structs.ACLPolicy{ + Name: "read-all_nodes-012", + Rules: `node_prefix "" { policy = "read" }`, + } - req, _ = http.NewRequest("PUT", "/v1/acl/clone/"+id+"?token=root", nil) - resp = httptest.NewRecorder() - obj, err := a.srv.ACLClone(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - aclResp, ok := obj.(aclCreateResponse) - if !ok { - t.Fatalf("should work: %#v %#v", obj, resp) - } - if aclResp.ID == id { - t.Fatalf("bad id") - } + req, _ := http.NewRequest("PUT", "/v1/acl/policy?token=root", jsonBody(policyInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLPolicyCreate(resp, req) + require.NoError(t, err) - req, _ = http.NewRequest("GET", "/v1/acl/info/"+aclResp.ID, nil) - resp = httptest.NewRecorder() - obj, err = a.srv.ACLGet(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - respObj, ok := obj.(structs.ACLs) - if !ok { - t.Fatalf("should work") - } - if len(respObj) != 1 { - t.Fatalf("bad: %v", respObj) - } -} + policy, ok := obj.(*structs.ACLPolicy) + require.True(t, ok) -func TestACL_Get(t *testing.T) { - t.Parallel() - t.Run("wrong id", func(t *testing.T) { - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() + // 36 = length of the string form of uuids + require.Len(t, policy.ID, 36) + require.Equal(t, policyInput.Name, policy.Name) + require.Equal(t, policyInput.Description, policy.Description) + require.Equal(t, policyInput.Rules, policy.Rules) + require.Equal(t, policyInput.Datacenters, policy.Datacenters) + require.True(t, policy.CreateIndex > 0) + require.Equal(t, policy.CreateIndex, policy.ModifyIndex) + require.NotNil(t, policy.Hash) + require.NotEqual(t, policy.Hash, []byte{}) - req, _ := http.NewRequest("GET", "/v1/acl/info/nope", nil) - resp := httptest.NewRecorder() - testrpc.WaitForLeader(t, a.RPC, "dc1") - obj, err := a.srv.ACLGet(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - respObj, ok := obj.(structs.ACLs) - if !ok { - t.Fatalf("should work") - } - if respObj == nil || len(respObj) != 0 { - t.Fatalf("bad: %v", respObj) - } + idMap["policy-read-all-nodes"] = policy.ID + policyMap[policy.ID] = policy + }) + + t.Run("Update Name ID Mistmatch", func(t *testing.T) { + policyInput := &structs.ACLPolicy{ + ID: "ac7560be-7f11-4d6d-bfcf-15633c2090fd", + Name: "read-all-nodes", + Description: "Can read all node information", + Rules: `node_prefix "" { policy = "read" }`, + Datacenters: []string{"dc1"}, + } + + req, _ := http.NewRequest("PUT", "/v1/acl/policy/"+idMap["policy-read-all-nodes"]+"?token=root", jsonBody(policyInput)) + resp := httptest.NewRecorder() + _, err := a.srv.ACLPolicyCRUD(resp, req) + require.Error(t, err) + _, ok := err.(BadRequestError) + require.True(t, ok) + }) + + t.Run("Policy CRUD Missing ID in URL", func(t *testing.T) { + req, _ := http.NewRequest("GET", "/v1/acl/policy/?token=root", nil) + resp := httptest.NewRecorder() + _, err := a.srv.ACLPolicyCRUD(resp, req) + require.Error(t, err) + _, ok := err.(BadRequestError) + require.True(t, ok) + }) + + t.Run("Update", func(t *testing.T) { + policyInput := &structs.ACLPolicy{ + Name: "read-all-nodes", + Description: "Can read all node information", + Rules: `node_prefix "" { policy = "read" }`, + Datacenters: []string{"dc1"}, + } + + req, _ := http.NewRequest("PUT", "/v1/acl/policy/"+idMap["policy-read-all-nodes"]+"?token=root", jsonBody(policyInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLPolicyCRUD(resp, req) + require.NoError(t, err) + + policy, ok := obj.(*structs.ACLPolicy) + require.True(t, ok) + + // 36 = length of the string form of uuids + require.Len(t, policy.ID, 36) + require.Equal(t, policyInput.Name, policy.Name) + require.Equal(t, policyInput.Description, policy.Description) + require.Equal(t, policyInput.Rules, policy.Rules) + require.Equal(t, policyInput.Datacenters, policy.Datacenters) + require.True(t, policy.CreateIndex > 0) + require.True(t, policy.CreateIndex < policy.ModifyIndex) + require.NotNil(t, policy.Hash) + require.NotEqual(t, policy.Hash, []byte{}) + + idMap["policy-read-all-nodes"] = policy.ID + policyMap[policy.ID] = policy + }) + + t.Run("ID Supplied", func(t *testing.T) { + policyInput := &structs.ACLPolicy{ + ID: "12123d01-37f1-47e6-b55b-32328652bd38", + Name: "with-id", + Description: "test", + Rules: `acl = "read"`, + Datacenters: []string{"dc1"}, + } + + req, _ := http.NewRequest("PUT", "/v1/acl/policy?token=root", jsonBody(policyInput)) + resp := httptest.NewRecorder() + _, err := a.srv.ACLPolicyCreate(resp, req) + require.Error(t, err) + _, ok := err.(BadRequestError) + require.True(t, ok) + }) + + t.Run("Invalid payload", func(t *testing.T) { + body := bytes.NewBuffer(nil) + body.Write([]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}) + + req, _ := http.NewRequest("PUT", "/v1/acl/policy?token=root", body) + resp := httptest.NewRecorder() + _, err := a.srv.ACLPolicyCreate(resp, req) + require.Error(t, err) + _, ok := err.(BadRequestError) + require.True(t, ok) + }) + + t.Run("Delete", func(t *testing.T) { + req, _ := http.NewRequest("DELETE", "/v1/acl/policy/"+idMap["policy-minimal"]+"?token=root", nil) + resp := httptest.NewRecorder() + _, err := a.srv.ACLPolicyCRUD(resp, req) + require.NoError(t, err) + delete(policyMap, idMap["policy-minimal"]) + delete(idMap, "policy-minimal") + }) + + t.Run("List", func(t *testing.T) { + req, _ := http.NewRequest("GET", "/v1/acl/policies?token=root", nil) + resp := httptest.NewRecorder() + raw, err := a.srv.ACLPolicyList(resp, req) + require.NoError(t, err) + policies, ok := raw.(structs.ACLPolicyListStubs) + require.True(t, ok) + + // 2 we just created + global management + require.Len(t, policies, 3) + + for policyID, expected := range policyMap { + found := false + for _, actual := range policies { + if actual.ID == policyID { + require.Equal(t, expected.Name, actual.Name) + require.Equal(t, expected.Datacenters, actual.Datacenters) + require.Equal(t, expected.Hash, actual.Hash) + require.Equal(t, expected.CreateIndex, actual.CreateIndex) + require.Equal(t, expected.ModifyIndex, actual.ModifyIndex) + found = true + break + } + } + + require.True(t, found) + } + }) + + t.Run("Read", func(t *testing.T) { + req, _ := http.NewRequest("GET", "/v1/acl/policy/"+idMap["policy-read-all-nodes"]+"?token=root", nil) + resp := httptest.NewRecorder() + raw, err := a.srv.ACLPolicyCRUD(resp, req) + require.NoError(t, err) + policy, ok := raw.(*structs.ACLPolicy) + require.True(t, ok) + require.Equal(t, policyMap[idMap["policy-read-all-nodes"]], policy) + }) }) - t.Run("right id", func(t *testing.T) { - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() + t.Run("Token", func(t *testing.T) { + t.Run("Create", func(t *testing.T) { + tokenInput := &structs.ACLToken{ + Description: "test", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: idMap["policy-test"], + Name: policyMap[idMap["policy-test"]].Name, + }, + structs.ACLTokenPolicyLink{ + ID: idMap["policy-read-all-nodes"], + Name: policyMap[idMap["policy-read-all-nodes"]].Name, + }, + }, + } - testrpc.WaitForLeader(t, a.RPC, "dc1") - id := makeTestACL(t, a.srv) + req, _ := http.NewRequest("PUT", "/v1/acl/token?token=root", jsonBody(tokenInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCreate(resp, req) + require.NoError(t, err) - req, _ := http.NewRequest("GET", "/v1/acl/info/"+id, nil) - resp := httptest.NewRecorder() - obj, err := a.srv.ACLGet(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - respObj, ok := obj.(structs.ACLs) - if !ok { - t.Fatalf("should work") - } - if len(respObj) != 1 { - t.Fatalf("bad: %v", respObj) - } + token, ok := obj.(*structs.ACLToken) + require.True(t, ok) + + // 36 = length of the string form of uuids + require.Len(t, token.AccessorID, 36) + require.Len(t, token.SecretID, 36) + require.Equal(t, tokenInput.Description, token.Description) + require.Equal(t, tokenInput.Policies, token.Policies) + require.True(t, token.CreateIndex > 0) + require.Equal(t, token.CreateIndex, token.ModifyIndex) + require.NotNil(t, token.Hash) + require.NotEqual(t, token.Hash, []byte{}) + + idMap["token-test"] = token.AccessorID + tokenMap[token.AccessorID] = token + }) + t.Run("Create Local", func(t *testing.T) { + tokenInput := &structs.ACLToken{ + Description: "local", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: idMap["policy-test"], + Name: policyMap[idMap["policy-test"]].Name, + }, + structs.ACLTokenPolicyLink{ + ID: idMap["policy-read-all-nodes"], + Name: policyMap[idMap["policy-read-all-nodes"]].Name, + }, + }, + Local: true, + } + + req, _ := http.NewRequest("PUT", "/v1/acl/token?token=root", jsonBody(tokenInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCreate(resp, req) + require.NoError(t, err) + + token, ok := obj.(*structs.ACLToken) + require.True(t, ok) + + // 36 = length of the string form of uuids + require.Len(t, token.AccessorID, 36) + require.Len(t, token.SecretID, 36) + require.Equal(t, tokenInput.Description, token.Description) + require.Equal(t, tokenInput.Policies, token.Policies) + require.True(t, token.CreateIndex > 0) + require.Equal(t, token.CreateIndex, token.ModifyIndex) + require.NotNil(t, token.Hash) + require.NotEqual(t, token.Hash, []byte{}) + + idMap["token-local"] = token.AccessorID + tokenMap[token.AccessorID] = token + }) + t.Run("Read", func(t *testing.T) { + expected := tokenMap[idMap["token-test"]] + req, _ := http.NewRequest("GET", "/v1/acl/token/"+expected.AccessorID+"?token=root", nil) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCRUD(resp, req) + require.NoError(t, err) + token, ok := obj.(*structs.ACLToken) + require.True(t, ok) + require.Equal(t, expected, token) + }) + t.Run("Self", func(t *testing.T) { + expected := tokenMap[idMap["token-test"]] + req, _ := http.NewRequest("GET", "/v1/acl/token/self?token="+expected.SecretID, nil) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenSelf(resp, req) + require.NoError(t, err) + token, ok := obj.(*structs.ACLToken) + require.True(t, ok) + require.Equal(t, expected, token) + }) + t.Run("Clone", func(t *testing.T) { + tokenInput := &structs.ACLToken{ + Description: "cloned token", + } + + baseToken := tokenMap[idMap["token-test"]] + + req, _ := http.NewRequest("PUT", "/v1/acl/token/"+baseToken.AccessorID+"/clone?token=root", jsonBody(tokenInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCRUD(resp, req) + require.NoError(t, err) + token, ok := obj.(*structs.ACLToken) + require.True(t, ok) + + require.NotEqual(t, baseToken.AccessorID, token.AccessorID) + require.NotEqual(t, baseToken.SecretID, token.SecretID) + require.Equal(t, tokenInput.Description, token.Description) + require.Equal(t, baseToken.Policies, token.Policies) + require.True(t, token.CreateIndex > 0) + require.Equal(t, token.CreateIndex, token.ModifyIndex) + require.NotNil(t, token.Hash) + require.NotEqual(t, token.Hash, []byte{}) + + idMap["token-cloned"] = token.AccessorID + tokenMap[token.AccessorID] = token + }) + t.Run("Update", func(t *testing.T) { + originalToken := tokenMap[idMap["token-cloned"]] + + // Accessor and Secret will be filled in + tokenInput := &structs.ACLToken{ + Description: "Better description for this cloned token", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: idMap["policy-read-all-nodes"], + Name: policyMap[idMap["policy-read-all-nodes"]].Name, + }, + }, + } + + req, _ := http.NewRequest("PUT", "/v1/acl/token/"+originalToken.AccessorID+"?token=root", jsonBody(tokenInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCRUD(resp, req) + require.NoError(t, err) + token, ok := obj.(*structs.ACLToken) + require.True(t, ok) + + require.Equal(t, originalToken.AccessorID, token.AccessorID) + require.Equal(t, originalToken.SecretID, token.SecretID) + require.Equal(t, tokenInput.Description, token.Description) + require.Equal(t, tokenInput.Policies, token.Policies) + require.True(t, token.CreateIndex > 0) + require.True(t, token.CreateIndex < token.ModifyIndex) + require.NotNil(t, token.Hash) + require.NotEqual(t, token.Hash, []byte{}) + require.NotEqual(t, token.Hash, originalToken.Hash) + + tokenMap[token.AccessorID] = token + }) + + t.Run("CRUD Missing Token Accessor ID", func(t *testing.T) { + req, _ := http.NewRequest("GET", "/v1/acl/token/?token=root", nil) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCRUD(resp, req) + require.Error(t, err) + require.Nil(t, obj) + _, ok := err.(BadRequestError) + require.True(t, ok) + }) + t.Run("Update Accessor Mismatch", func(t *testing.T) { + originalToken := tokenMap[idMap["token-cloned"]] + + // Accessor and Secret will be filled in + tokenInput := &structs.ACLToken{ + AccessorID: "e8aeb69a-0ace-42b9-b95f-d1d9eafe1561", + Description: "Better description for this cloned token", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: idMap["policy-read-all-nodes"], + Name: policyMap[idMap["policy-read-all-nodes"]].Name, + }, + }, + } + + req, _ := http.NewRequest("PUT", "/v1/acl/token/"+originalToken.AccessorID+"?token=root", jsonBody(tokenInput)) + resp := httptest.NewRecorder() + obj, err := a.srv.ACLTokenCRUD(resp, req) + require.Error(t, err) + require.Nil(t, obj) + _, ok := err.(BadRequestError) + require.True(t, ok) + }) + t.Run("Delete", func(t *testing.T) { + req, _ := http.NewRequest("DELETE", "/v1/acl/token/"+idMap["token-cloned"]+"?token=root", nil) + resp := httptest.NewRecorder() + _, err := a.srv.ACLTokenCRUD(resp, req) + require.NoError(t, err) + delete(tokenMap, idMap["token-cloned"]) + delete(idMap, "token-cloned") + }) + t.Run("List", func(t *testing.T) { + req, _ := http.NewRequest("GET", "/v1/acl/tokens?token=root", nil) + resp := httptest.NewRecorder() + raw, err := a.srv.ACLTokenList(resp, req) + require.NoError(t, err) + tokens, ok := raw.(structs.ACLTokenListStubs) + require.True(t, ok) + + // 3 tokens created but 1 was deleted + master token + anon token + require.Len(t, tokens, 4) + + // this loop doesn't verify anything about the master token + for tokenID, expected := range tokenMap { + found := false + for _, actual := range tokens { + if actual.AccessorID == tokenID { + require.Equal(t, expected.Description, actual.Description) + require.Equal(t, expected.Policies, actual.Policies) + require.Equal(t, expected.Local, actual.Local) + require.Equal(t, expected.CreateTime, actual.CreateTime) + require.Equal(t, expected.Hash, actual.Hash) + require.Equal(t, expected.CreateIndex, actual.CreateIndex) + require.Equal(t, expected.ModifyIndex, actual.ModifyIndex) + found = true + break + } + } + require.True(t, found) + } + }) + t.Run("List by Policy", func(t *testing.T) { + req, _ := http.NewRequest("GET", "/v1/acl/tokens?token=root&policy="+structs.ACLPolicyGlobalManagementID, nil) + resp := httptest.NewRecorder() + raw, err := a.srv.ACLTokenList(resp, req) + require.NoError(t, err) + tokens, ok := raw.(structs.ACLTokenListStubs) + require.True(t, ok) + require.Len(t, tokens, 1) + token := tokens[0] + require.Equal(t, "Master Token", token.Description) + require.Len(t, token.Policies, 1) + require.Equal(t, structs.ACLPolicyGlobalManagementID, token.Policies[0].ID) + }) }) } - -func TestACL_List(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - var ids []string - for i := 0; i < 10; i++ { - ids = append(ids, makeTestACL(t, a.srv)) - } - - req, _ := http.NewRequest("GET", "/v1/acl/list?token=root", nil) - resp := httptest.NewRecorder() - obj, err := a.srv.ACLList(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - respObj, ok := obj.(structs.ACLs) - if !ok { - t.Fatalf("should work") - } - - // 10 + anonymous + master - if len(respObj) != 12 { - t.Fatalf("bad: %v", respObj) - } -} - -func TestACLReplicationStatus(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()) - defer a.Shutdown() - - req, _ := http.NewRequest("GET", "/v1/acl/replication", nil) - resp := httptest.NewRecorder() - testrpc.WaitForLeader(t, a.RPC, "dc1") - obj, err := a.srv.ACLReplicationStatus(resp, req) - if err != nil { - t.Fatalf("err: %v", err) - } - _, ok := obj.(structs.ACLReplicationStatus) - if !ok { - t.Fatalf("should work") - } -} diff --git a/agent/acl_test.go b/agent/acl_test.go index 8740f1278..8cf49cd02 100644 --- a/agent/acl_test.go +++ b/agent/acl_test.go @@ -2,578 +2,288 @@ package agent import ( "fmt" + "io" + "log" "os" - "strings" "testing" "time" - rawacl "github.com/hashicorp/consul/acl" + "github.com/armon/go-metrics" + "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/config" + "github.com/hashicorp/consul/agent/consul" + "github.com/hashicorp/consul/agent/local" "github.com/hashicorp/consul/agent/structs" - "github.com/hashicorp/consul/testrpc" - "github.com/hashicorp/consul/testutil" + "github.com/hashicorp/consul/lib" + "github.com/hashicorp/consul/logger" "github.com/hashicorp/consul/types" "github.com/hashicorp/serf/serf" + + "github.com/stretchr/testify/require" ) -func TestACL_Bad_Config(t *testing.T) { - t.Parallel() +type TestACLAgent struct { + // Name is an optional name of the agent. + Name string - dataDir := testutil.TempDir(t, "agent") - defer os.Remove(dataDir) + HCL string - cfg := TestConfig(config.Source{ - Name: "acl", - Format: "hcl", - Data: ` - acl_down_policy = "nope" - data_dir = "` + dataDir + `" - `, - }) + // Config is the agent configuration. If Config is nil then + // TestConfig() is used. If Config.DataDir is set then it is + // the callers responsibility to clean up the data directory. + // Otherwise, a temporary data directory is created and removed + // when Shutdown() is called. + Config *config.RuntimeConfig - // do not use TestAgent here since we want - // the agent to fail during startup. - _, err := New(cfg) - if err == nil || !strings.Contains(err.Error(), "invalid ACL down policy") { - t.Fatalf("err: %v", err) - } + // LogOutput is the sink for the logs. If nil, logs are written + // to os.Stderr. + LogOutput io.Writer + + // LogWriter is used for streaming logs. + LogWriter *logger.LogWriter + + // DataDir is the data directory which is used when Config.DataDir + // is not set. It is created automatically and removed when + // Shutdown() is called. + DataDir string + + resolveTokenFn func(string) (acl.Authorizer, error) + + *Agent } -type MockServer struct { - getPolicyFn func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error +// NewTestACLAGent does just enough so that all the code within agent/acl.go can work +// Basically it needs a local state for some of the vet* functions, a logger and a delegate. +// The key is that we are the delegate so we can control the ResolveToken responses +func NewTestACLAgent(name string, hcl string, resolveFn func(string) (acl.Authorizer, error)) *TestACLAgent { + a := &TestACLAgent{Name: name, HCL: hcl, resolveTokenFn: resolveFn} + hclDataDir := `data_dir = "acl-agent"` + + a.Config = TestConfig( + config.Source{Name: a.Name, Format: "hcl", Data: a.HCL}, + config.Source{Name: a.Name + ".data_dir", Format: "hcl", Data: hclDataDir}, + ) + + agent, err := New(a.Config) + if err != nil { + panic(fmt.Sprintf("Error creating agent: %v", err)) + } + a.Agent = agent + + logOutput := a.LogOutput + if logOutput == nil { + logOutput = os.Stderr + } + agent.LogOutput = logOutput + agent.LogWriter = a.LogWriter + agent.logger = log.New(logOutput, a.Name+" - ", log.LstdFlags|log.Lmicroseconds) + agent.MemSink = metrics.NewInmemSink(1*time.Second, time.Minute) + + a.Agent.delegate = a + a.Agent.State = local.NewState(LocalConfig(a.Config), a.Agent.logger, a.Agent.tokens) + a.Agent.State.TriggerSyncChanges = func() {} + return a } -func (m *MockServer) GetPolicy(args *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { - if m.getPolicyFn != nil { - return m.getPolicyFn(args, reply) +func (a *TestACLAgent) ACLsEnabled() bool { + // the TestACLAgent always has ACLs enabled + return true +} + +func (a *TestACLAgent) UseLegacyACLs() bool { + return false +} + +func (a *TestACLAgent) ResolveToken(secretID string) (acl.Authorizer, error) { + if a.resolveTokenFn == nil { + panic("This agent is useless without providing a token resolution function") } - return fmt.Errorf("should not have called GetPolicy") + + return a.resolveTokenFn(secretID) +} + +// All of these are stubs to satisfy the interface +func (a *TestACLAgent) Encrypted() bool { + return false +} +func (a *TestACLAgent) GetLANCoordinate() (lib.CoordinateSet, error) { + return nil, fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) Leave() error { + return fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) LANMembers() []serf.Member { + return nil +} +func (a *TestACLAgent) LANMembersAllSegments() ([]serf.Member, error) { + return nil, fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) LANSegmentMembers(segment string) ([]serf.Member, error) { + return nil, fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) LocalMember() serf.Member { + return serf.Member{} +} +func (a *TestACLAgent) JoinLAN(addrs []string) (n int, err error) { + return 0, fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) RemoveFailedNode(node string) error { + return fmt.Errorf("Unimplemented") +} + +func (a *TestACLAgent) RPC(method string, args interface{}, reply interface{}) error { + return fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) SnapshotRPC(args *structs.SnapshotRequest, in io.Reader, out io.Writer, replyFn structs.SnapshotReplyFn) error { + return fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) Shutdown() error { + return fmt.Errorf("Unimplemented") +} +func (a *TestACLAgent) Stats() map[string]map[string]string { + return nil +} +func (a *TestACLAgent) ReloadConfig(config *consul.Config) error { + return fmt.Errorf("Unimplemented") } func TestACL_Version8(t *testing.T) { t.Parallel() t.Run("version 8 disabled", func(t *testing.T) { - a := NewTestAgent(t.Name(), TestACLConfig()+` + resolveFn := func(string) (acl.Authorizer, error) { + require.Fail(t, "should not have called delegate.ResolveToken") + return nil, fmt.Errorf("should not have called delegate.ResolveToken") + } + + a := NewTestACLAgent(t.Name(), TestACLConfig()+` acl_enforce_version_8 = false - `) - defer a.Shutdown() + `, resolveFn) - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - getPolicyFn: func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { - t.Fatalf("should not have called to server") - return nil - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - - if token, err := a.resolveToken("nope"); token != nil || err != nil { - t.Fatalf("bad: %v err: %v", token, err) - } + token, err := a.resolveToken("nope") + require.Nil(t, token) + require.Nil(t, err) }) t.Run("version 8 enabled", func(t *testing.T) { - a := NewTestAgent(t.Name(), TestACLConfig()+` + called := false + resolveFn := func(string) (acl.Authorizer, error) { + called = true + return nil, acl.ErrNotFound + } + a := NewTestACLAgent(t.Name(), TestACLConfig()+` acl_enforce_version_8 = true - `) - defer a.Shutdown() + `, resolveFn) - testrpc.WaitForLeader(t, a.RPC, "dc1") - var called bool - m := MockServer{ - getPolicyFn: func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { - called = true - return fmt.Errorf("token not found") - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - - if _, err := a.resolveToken("nope"); err != nil { - t.Fatalf("err: %v", err) - } - - if !called { - t.Fatalf("bad") - } + _, err := a.resolveToken("nope") + require.Error(t, err) + require.True(t, called) }) } -func TestACL_Disabled(t *testing.T) { +func TestACL_AgentMasterToken(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_disabled_ttl = "10ms" - acl_enforce_version_8 = true - `) - defer a.Shutdown() - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - // Fetch a token without ACLs enabled and make sure the manager sees it. - getPolicyFn: func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { - return rawacl.ErrDisabled - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) + resolveFn := func(string) (acl.Authorizer, error) { + require.Fail(t, "should not have called delegate.ResolveToken") + return nil, fmt.Errorf("should not have called delegate.ResolveToken") } - if a.acls.isDisabled() { - t.Fatalf("should not be disabled yet") - } - if token, err := a.resolveToken("nope"); token != nil || err != nil { - t.Fatalf("bad: %v err: %v", token, err) - } - if !a.acls.isDisabled() { - t.Fatalf("should be disabled") - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), resolveFn) + authz, err := a.resolveToken("towel") + require.NotNil(t, authz) + require.Nil(t, err) - // 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 rawacl.ErrNotFound - } - if token, err := a.resolveToken("nope"); token != nil || err != nil { - t.Fatalf("bad: %v err: %v", token, err) - } - if !a.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 * 10 * time.Millisecond) - for i := 0; i < 10; i++ { - _, err := a.resolveToken("nope") - if !rawacl.IsErrNotFound(err) { - t.Fatalf("err: %v", err) - } - if a.acls.isDisabled() { - t.Fatalf("should not be disabled") - } - } + require.True(t, authz.AgentRead(a.config.NodeName)) + require.True(t, authz.AgentWrite(a.config.NodeName)) + require.True(t, authz.NodeRead("foobarbaz")) + require.False(t, authz.NodeWrite("foobarbaz", nil)) } -func TestACL_Special_IDs(t *testing.T) { +func TestACL_RootAuthorizersDenied(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - acl_agent_master_token = "towel" - `) - defer a.Shutdown() - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - // An empty ID should get mapped to the anonymous token. - getPolicyFn: func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { - if req.ACL != "anonymous" { - t.Fatalf("bad: %#v", *req) - } - return rawacl.ErrNotFound - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - _, err := a.resolveToken("") - if !rawacl.IsErrNotFound(err) { - t.Fatalf("err: %v", err) + resolveFn := func(string) (acl.Authorizer, error) { + require.Fail(t, "should not have called delegate.ResolveToken") + return nil, fmt.Errorf("should not have called delegate.ResolveToken") } - // 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 = a.resolveToken("deny") - if !rawacl.IsErrRootDenied(err) { - 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 := a.resolveToken("towel") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("should not be nil") - } - if !acl.AgentRead(a.config.NodeName) { - t.Fatalf("should be able to read agent") - } - if !acl.AgentWrite(a.config.NodeName) { - t.Fatalf("should be able to write agent") - } - if !acl.NodeRead("hello") { - t.Fatalf("should be able to read any node") - } - if acl.NodeWrite("hello", nil) { - t.Fatalf("should not be able to write any node") - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), resolveFn) + authz, err := a.resolveToken("deny") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrRootDenied(err)) + authz, err = a.resolveToken("allow") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrRootDenied(err)) + authz, err = a.resolveToken("manage") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrRootDenied(err)) } -func TestACL_Down_Deny(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_down_policy = "deny" - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - // Resolve with ACLs down. - getPolicyFn: func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { - return fmt.Errorf("ACLs are broken") - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := a.resolveToken("nope") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("should not be nil") - } - if acl.AgentRead(a.config.NodeName) { - t.Fatalf("should deny") - } -} - -func TestACL_Down_Allow(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_down_policy = "allow" - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - // Resolve with ACLs down. - getPolicyFn: func(*structs.ACLPolicyRequest, *structs.ACLPolicy) error { - return fmt.Errorf("ACLs are broken") - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := a.resolveToken("nope") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("should not be nil") - } - if !acl.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } -} - -func TestACL_Down_Extend(t *testing.T) { - t.Parallel() - aclExtendPolicies := []string{"extend-cache", "async-cache"} - for _, aclDownPolicy := range aclExtendPolicies { - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_down_policy = "`+aclDownPolicy+`" - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - // Populate the cache for one of the tokens. - getPolicyFn: func(req *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { - *reply = structs.ACLPolicy{ - Parent: "allow", - Policy: &rawacl.Policy{ - Agents: []*rawacl.AgentPolicy{ - &rawacl.AgentPolicy{ - Node: a.config.NodeName, - Policy: "read", - }, - }, - }, - } - return nil - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - - acl, err := a.resolveToken("yep") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("should not be nil") - } - if !acl.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } - if acl.AgentWrite(a.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 = a.resolveToken("nope") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("should not be nil") - } - if acl.AgentRead(a.config.NodeName) { - t.Fatalf("should deny") - } - if acl.AgentWrite(a.config.NodeName) { - t.Fatalf("should deny") - } - - // Read the token from the cache while ACLs are broken, which should - // extend. - acl, err = a.resolveToken("yep") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("should not be nil") - } - if !acl.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } - if acl.AgentWrite(a.config.NodeName) { - t.Fatalf("should deny") - } - } -} - -func TestACL_Cache(t *testing.T) { - t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{ - // Populate the cache for one of the tokens. - 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: a.config.NodeName, - Policy: "read", - }, - }, - }, - TTL: 10 * time.Millisecond, - } - return nil - }, - } - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } - - rule, err := a.resolveToken("yep") - if err != nil { - t.Fatalf("err: %v", err) - } - if rule == nil { - t.Fatalf("should not be nil") - } - if !rule.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } - if rule.AgentWrite(a.config.NodeName) { - t.Fatalf("should deny") - } - if rule.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 - } - rule, err = a.resolveToken("yep") - if err != nil { - t.Fatalf("err: %v", err) - } - if rule == nil { - t.Fatalf("should not be nil") - } - if !rule.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } - if rule.AgentWrite(a.config.NodeName) { - t.Fatalf("should deny") - } - if rule.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 rawacl.ErrNotFound - } - _, err = a.resolveToken("yep") - if !rawacl.IsErrNotFound(err) { - 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: a.config.NodeName, - Policy: "write", - }, - }, - }, - TTL: 10 * time.Millisecond, - } - return nil - } - rule, err = a.resolveToken("yep") - if err != nil { - t.Fatalf("err: %v", err) - } - if rule == nil { - t.Fatalf("should not be nil") - } - if !rule.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } - if !rule.AgentWrite(a.config.NodeName) { - t.Fatalf("should allow") - } - if rule.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 - } - rule, err = a.resolveToken("yep") - if err != nil { - t.Fatalf("err: %v", err) - } - if rule == nil { - t.Fatalf("should not be nil") - } - if !rule.AgentRead(a.config.NodeName) { - t.Fatalf("should allow") - } - if !rule.AgentWrite(a.config.NodeName) { - t.Fatalf("should allow") - } - if rule.NodeRead("nope") { - t.Fatalf("should deny") - } - if !didRefresh { - t.Fatalf("should refresh") - } +func authzFromPolicy(policy *acl.Policy) (acl.Authorizer, error) { + return acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) } // 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 { +func catalogPolicy(token string) (acl.Authorizer, error) { + switch token { case "node-ro": - reply.Policy.Nodes = append(reply.Policy.Nodes, - &rawacl.NodePolicy{Name: "Node", Policy: "read"}) - + return authzFromPolicy(&acl.Policy{ + NodePrefixes: []*acl.NodePolicy{ + &acl.NodePolicy{Name: "Node", Policy: "read"}, + }, + }) case "node-rw": - reply.Policy.Nodes = append(reply.Policy.Nodes, - &rawacl.NodePolicy{Name: "Node", Policy: "write"}) - + return authzFromPolicy(&acl.Policy{ + NodePrefixes: []*acl.NodePolicy{ + &acl.NodePolicy{Name: "Node", Policy: "write"}, + }, + }) case "service-ro": - reply.Policy.Services = append(reply.Policy.Services, - &rawacl.ServicePolicy{Name: "service", Policy: "read"}) - + return authzFromPolicy(&acl.Policy{ + ServicePrefixes: []*acl.ServicePolicy{ + &acl.ServicePolicy{Name: "service", Policy: "read"}, + }, + }) case "service-rw": - reply.Policy.Services = append(reply.Policy.Services, - &rawacl.ServicePolicy{Name: "service", Policy: "write"}) - + return authzFromPolicy(&acl.Policy{ + ServicePrefixes: []*acl.ServicePolicy{ + &acl.ServicePolicy{Name: "service", Policy: "write"}, + }, + }) case "other-rw": - reply.Policy.Services = append(reply.Policy.Services, - &rawacl.ServicePolicy{Name: "other", Policy: "write"}) - + return authzFromPolicy(&acl.Policy{ + ServicePrefixes: []*acl.ServicePolicy{ + &acl.ServicePolicy{Name: "other", Policy: "write"}, + }, + }) default: - return fmt.Errorf("unknown token %q", req.ACL) + return nil, fmt.Errorf("unknown token %q", token) } - - return nil } func TestACL_vetServiceRegister(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) // Register a new service, with permission. err := a.vetServiceRegister("service-rw", &structs.NodeService{ ID: "my-service", Service: "service", }) - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Register a new service without write privs. err = a.vetServiceRegister("service-ro", &structs.NodeService{ ID: "my-service", Service: "service", }) - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.True(t, acl.IsErrPermissionDenied(err)) // Try to register over a service without write privs to the existing // service. @@ -585,29 +295,17 @@ func TestACL_vetServiceRegister(t *testing.T) { ID: "my-service", Service: "service", }) - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.True(t, acl.IsErrPermissionDenied(err)) } func TestACL_vetServiceUpdate(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) // Update a service that doesn't exist. err := a.vetServiceUpdate("service-rw", "my-service") - if err == nil || !strings.Contains(err.Error(), "Unknown service") { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.Contains(t, err.Error(), "Unknown service") // Update with write privs. a.State.AddService(&structs.NodeService{ @@ -615,29 +313,17 @@ func TestACL_vetServiceUpdate(t *testing.T) { Service: "service", }, "") err = a.vetServiceUpdate("service-rw", "my-service") - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Update without write privs. err = a.vetServiceUpdate("service-ro", "my-service") - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) } func TestACL_vetCheckRegister(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) // Register a new service check with write privs. err := a.vetCheckRegister("service-rw", &structs.HealthCheck{ @@ -645,9 +331,7 @@ func TestACL_vetCheckRegister(t *testing.T) { ServiceID: "my-service", ServiceName: "service", }) - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Register a new service check without write privs. err = a.vetCheckRegister("service-ro", &structs.HealthCheck{ @@ -655,25 +339,21 @@ func TestACL_vetCheckRegister(t *testing.T) { ServiceID: "my-service", ServiceName: "service", }) - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) // Register a new node check with write privs. err = a.vetCheckRegister("node-rw", &structs.HealthCheck{ CheckID: types.CheckID("my-check"), }) - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Register a new node check without write privs. err = a.vetCheckRegister("node-ro", &structs.HealthCheck{ CheckID: types.CheckID("my-check"), }) - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) // Try to register over a service check without write privs to the // existing service. @@ -691,9 +371,8 @@ func TestACL_vetCheckRegister(t *testing.T) { ServiceID: "my-service", ServiceName: "service", }) - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) // Try to register over a node check without write privs to the node. a.State.AddCheck(&structs.HealthCheck{ @@ -704,29 +383,18 @@ func TestACL_vetCheckRegister(t *testing.T) { ServiceID: "my-service", ServiceName: "service", }) - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) } func TestACL_vetCheckUpdate(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) // Update a check that doesn't exist. err := a.vetCheckUpdate("node-rw", "my-check") - if err == nil || !strings.Contains(err.Error(), "Unknown check") { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.Contains(t, err.Error(), "Unknown check") // Update service check with write privs. a.State.AddService(&structs.NodeService{ @@ -739,146 +407,86 @@ func TestACL_vetCheckUpdate(t *testing.T) { ServiceName: "service", }, "") err = a.vetCheckUpdate("service-rw", "my-service-check") - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Update service check without write privs. err = a.vetCheckUpdate("service-ro", "my-service-check") - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) // Update node check with write privs. a.State.AddCheck(&structs.HealthCheck{ CheckID: types.CheckID("my-node-check"), }, "") err = a.vetCheckUpdate("node-rw", "my-node-check") - if err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, err) // Update without write privs. err = a.vetCheckUpdate("node-ro", "my-node-check") - if !rawacl.IsErrPermissionDenied(err) { - t.Fatalf("err: %v", err) - } + require.Error(t, err) + require.True(t, acl.IsErrPermissionDenied(err)) } func TestACL_filterMembers(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) var members []serf.Member - if err := a.filterMembers("node-ro", &members); err != nil { - t.Fatalf("err: %v", err) - } - if len(members) != 0 { - t.Fatalf("bad: %#v", members) - } + require.NoError(t, a.filterMembers("node-ro", &members)) + require.Len(t, members, 0) members = []serf.Member{ serf.Member{Name: "Node 1"}, serf.Member{Name: "Nope"}, serf.Member{Name: "Node 2"}, } - if err := a.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) - } + require.NoError(t, a.filterMembers("node-ro", &members)) + require.Len(t, members, 2) + require.Equal(t, members[0].Name, "Node 1") + require.Equal(t, members[1].Name, "Node 2") } func TestACL_filterServices(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) services := make(map[string]*structs.NodeService) - if err := a.filterServices("node-ro", &services); err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, a.filterServices("node-ro", &services)) services["my-service"] = &structs.NodeService{ID: "my-service", Service: "service"} services["my-other"] = &structs.NodeService{ID: "my-other", Service: "other"} - if err := a.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) - } + require.NoError(t, a.filterServices("service-ro", &services)) + require.Contains(t, services, "my-service") + require.NotContains(t, services, "my-other") } func TestACL_filterChecks(t *testing.T) { t.Parallel() - a := NewTestAgent(t.Name(), TestACLConfig()+` - acl_enforce_version_8 = true - `) - defer a.Shutdown() - - testrpc.WaitForLeader(t, a.RPC, "dc1") - m := MockServer{catalogPolicy} - if err := a.registerEndpoint("ACL", &m); err != nil { - t.Fatalf("err: %v", err) - } + a := NewTestACLAgent(t.Name(), TestACLConfig(), catalogPolicy) checks := make(map[types.CheckID]*structs.HealthCheck) - if err := a.filterChecks("node-ro", &checks); err != nil { - t.Fatalf("err: %v", err) - } + require.NoError(t, a.filterChecks("node-ro", &checks)) checks["my-node"] = &structs.HealthCheck{} checks["my-service"] = &structs.HealthCheck{ServiceName: "service"} checks["my-other"] = &structs.HealthCheck{ServiceName: "other"} - if err := a.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) - } + require.NoError(t, a.filterChecks("service-ro", &checks)) + fmt.Printf("filtered: %#v", checks) + _, ok := checks["my-node"] + require.False(t, ok) + _, ok = checks["my-service"] + require.True(t, ok) + _, ok = checks["my-other"] + require.False(t, ok) checks["my-node"] = &structs.HealthCheck{} checks["my-service"] = &structs.HealthCheck{ServiceName: "service"} checks["my-other"] = &structs.HealthCheck{ServiceName: "other"} - if err := a.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) - } + require.NoError(t, a.filterChecks("node-ro", &checks)) + _, ok = checks["my-node"] + require.True(t, ok) + _, ok = checks["my-service"] + require.False(t, ok) + _, ok = checks["my-other"] + require.False(t, ok) } diff --git a/agent/agent.go b/agent/agent.go index 97e14d73b..289653cd1 100644 --- a/agent/agent.go +++ b/agent/agent.go @@ -88,7 +88,10 @@ type delegate interface { LocalMember() serf.Member JoinLAN(addrs []string) (n int, err error) RemoveFailedNode(node string) error + ResolveToken(secretID string) (acl.Authorizer, error) RPC(method string, args interface{}, reply interface{}) error + ACLsEnabled() bool + UseLegacyACLs() bool SnapshotRPC(args *structs.SnapshotRequest, in io.Reader, out io.Writer, replyFn structs.SnapshotReplyFn) error Shutdown() error Stats() map[string]map[string]string @@ -127,8 +130,8 @@ type Agent struct { // depending on the configuration delegate delegate - // acls is an object that helps manage local ACL enforcement. - acls *aclManager + // aclMasterAuthorizer is an object that helps manage local ACL enforcement. + aclMasterAuthorizer acl.Authorizer // state stores a local representation of the node, // services and checks. Used for anti-entropy. @@ -255,14 +258,9 @@ func New(c *config.RuntimeConfig) (*Agent, error) { if c.DataDir == "" && !c.DevMode { return nil, fmt.Errorf("Must configure a DataDir") } - acls, err := newACLManager(c) - if err != nil { - return nil, err - } a := &Agent{ config: c, - acls: acls, checkReapAfter: make(map[types.CheckID]time.Duration), checkMonitors: make(map[types.CheckID]*checks.CheckMonitor), checkTTLs: make(map[types.CheckID]*checks.CheckTTL), @@ -281,6 +279,10 @@ func New(c *config.RuntimeConfig) (*Agent, error) { tokens: new(token.Store), } + if err := a.initializeACLs(); err != nil { + return nil, err + } + // Set up the initial state of the token store based on the config. a.tokens.UpdateUserToken(a.config.ACLToken) a.tokens.UpdateAgentToken(a.config.ACLAgentToken) @@ -515,12 +517,10 @@ func (a *Agent) listenAndServeGRPC() error { } a.xdsServer = &xds.Server{ - Logger: a.logger, - CfgMgr: a.proxyConfig, - Authz: a, - ResolveToken: func(id string) (acl.ACL, error) { - return a.resolveToken(id) - }, + Logger: a.logger, + CfgMgr: a.proxyConfig, + Authz: a, + ResolveToken: a.resolveToken, } var err error a.grpcServer, err = a.xdsServer.GRPCServer(a.config.CertFile, a.config.KeyFile) @@ -968,8 +968,11 @@ func (a *Agent) consulConfig() (*consul.Config, error) { if a.config.ACLDatacenter != "" { base.ACLDatacenter = a.config.ACLDatacenter } - if a.config.ACLTTL != 0 { - base.ACLTTL = a.config.ACLTTL + if a.config.ACLTokenTTL != 0 { + base.ACLTokenTTL = a.config.ACLTokenTTL + } + if a.config.ACLPolicyTTL != 0 { + base.ACLPolicyTTL = a.config.ACLPolicyTTL } if a.config.ACLDefaultPolicy != "" { base.ACLDefaultPolicy = a.config.ACLDefaultPolicy @@ -977,10 +980,9 @@ func (a *Agent) consulConfig() (*consul.Config, error) { if a.config.ACLDownPolicy != "" { base.ACLDownPolicy = a.config.ACLDownPolicy } - base.EnableACLReplication = a.config.EnableACLReplication - if a.config.ACLEnforceVersion8 { - base.ACLEnforceVersion8 = a.config.ACLEnforceVersion8 - } + base.ACLEnforceVersion8 = a.config.ACLEnforceVersion8 + base.ACLTokenReplication = a.config.ACLTokenReplication + base.ACLsEnabled = a.config.ACLsEnabled if a.config.ACLEnableKeyListPolicy { base.ACLEnableKeyListPolicy = a.config.ACLEnableKeyListPolicy } diff --git a/agent/bindata_assetfs.go b/agent/bindata_assetfs.go index f28c0e560..d4ebf5dc6 100644 --- a/agent/bindata_assetfs.go +++ b/agent/bindata_assetfs.go @@ -1,37 +1,5 @@ // Code generated by go-bindata. // sources: -// pkg/web_ui/v1/index.html -// pkg/web_ui/v1/static/android-chrome-192x192.png -// pkg/web_ui/v1/static/android-chrome-512x512.png -// pkg/web_ui/v1/static/apple-touch-icon-114x114.png -// pkg/web_ui/v1/static/apple-touch-icon-120x120.png -// pkg/web_ui/v1/static/apple-touch-icon-144x144.png -// pkg/web_ui/v1/static/apple-touch-icon-152x152.png -// pkg/web_ui/v1/static/apple-touch-icon-57x57.png -// pkg/web_ui/v1/static/apple-touch-icon-60x60.png -// pkg/web_ui/v1/static/apple-touch-icon-72x72.png -// pkg/web_ui/v1/static/apple-touch-icon-76x76.png -// pkg/web_ui/v1/static/apple-touch-icon.png -// pkg/web_ui/v1/static/application.min.js -// pkg/web_ui/v1/static/base.css -// pkg/web_ui/v1/static/base.css.map -// pkg/web_ui/v1/static/bootstrap.min.css -// pkg/web_ui/v1/static/consul-logo.png -// pkg/web_ui/v1/static/favicon-128.png -// pkg/web_ui/v1/static/favicon-16x16.png -// pkg/web_ui/v1/static/favicon-196x196.png -// pkg/web_ui/v1/static/favicon-32x32.png -// pkg/web_ui/v1/static/favicon-96x96.png -// pkg/web_ui/v1/static/favicon.ico -// pkg/web_ui/v1/static/favicon.png -// pkg/web_ui/v1/static/loading-cylon-pink.svg -// pkg/web_ui/v1/static/mstile-144x144.png -// pkg/web_ui/v1/static/mstile-150x150.png -// pkg/web_ui/v1/static/mstile-310x150.png -// pkg/web_ui/v1/static/mstile-310x310.png -// pkg/web_ui/v1/static/mstile-70x70.png -// pkg/web_ui/v1/static/safari-pinned-tab.svg -// pkg/web_ui/v1/static/tada.png // pkg/web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png // pkg/web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png // pkg/web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png @@ -45,8 +13,8 @@ // pkg/web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png // pkg/web_ui/v2/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js // pkg/web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png -// pkg/web_ui/v2/assets/consul-ui-5bed6f2476654159acbc4a2eda3fc897.js -// pkg/web_ui/v2/assets/consul-ui-9cafc4780f8a37506d814e36abac7af1.css +// pkg/web_ui/v2/assets/consul-ui-a4906f79ed84ea87f5f28e23fdde9580.js +// pkg/web_ui/v2/assets/consul-ui-eb2191f7fde75fdce9659f7db9d70d64.css // pkg/web_ui/v2/assets/encoding-5ed8e95353b97ff5dd41bf66212d118e.js // pkg/web_ui/v2/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js // pkg/web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png @@ -135,646 +103,6 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _web_uiV1IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xcf\x76\xdb\x38\xb2\xf7\x3e\x4f\x51\x1f\x7b\xe1\xc5\x17\x52\xb2\x6c\xc7\x8e\x47\xd6\x3d\x89\xe3\x9e\xce\x24\x9d\xee\x93\x38\x99\xdb\xab\x7b\x20\x12\x12\x31\x06\x01\x0e\x00\x4a\x56\xeb\xe8\xdd\xef\x01\x40\x52\xfc\x03\x52\x92\x1d\xfb\xf6\xf4\xcc\x22\xb1\x48\x02\x28\x54\xa1\x50\xf5\xab\x02\x40\x8e\xff\xdf\xbb\x5f\xae\x6f\x7f\xfb\xf5\x06\x62\x95\xd0\xc9\x8b\x71\xf1\x07\xa3\x68\xf2\x02\x60\x9c\x60\x85\x20\x8c\x91\x90\x58\x5d\x79\x99\x9a\xf9\x17\xde\xf6\x41\xac\x54\xea\xe3\x7f\x66\x64\x71\xe5\xfd\xb7\xff\xf5\x8d\x7f\xcd\x93\x14\x29\x32\xa5\xd8\x83\x90\x33\x85\x99\xba\xf2\xde\xdf\x5c\xe1\x68\x8e\x2b\xf5\x18\x4a\xf0\x95\xb7\x20\x78\x99\x72\xa1\x2a\x45\x97\x24\x52\xf1\x55\x84\x17\x24\xc4\xbe\xb9\x78\x09\x84\x11\x45\x10\xf5\x65\x88\x28\xbe\x1a\x06\xe7\x2f\x21\x93\x58\x98\x6b\x34\xa5\xf8\x8a\x71\xdb\xb4\x22\x8a\xe2\xc9\x35\x67\x32\xa3\x30\x5d\xc1\x4f\x48\xc6\xe4\x9a\x8b\x74\x3c\xb0\x8f\x74\x21\x4a\xd8\x1d\x08\x4c\xaf\x3c\xa9\x56\x14\xcb\x18\x63\xe5\x41\x2c\xf0\x4c\xdf\x41\x8a\x84\x83\x29\xe7\x4a\x2a\x81\xd2\x20\x21\x2c\x08\xa5\xf4\xf6\xae\x89\x24\x76\x55\x20\x21\x67\x1e\xa8\x55\x8a\xaf\x3c\x92\xa0\x39\x1e\xa4\x6c\xde\xa8\x3b\x43\x0b\x5d\xcc\x3f\x19\xdd\x9f\x8c\x02\xf3\x5c\x92\xdf\xb1\xbc\xf2\xcc\x9d\xc7\x34\x79\xfc\xea\xfe\xf8\x55\xad\x49\x73\xc7\x9b\xbc\xd0\x6d\xca\x50\x90\x54\xe5\x4d\x29\x7c\xaf\x06\xff\x40\x0b\x64\xef\x1a\xaa\x00\x83\x01\x5c\xc7\x88\xcd\x31\xa8\x98\x48\x58\x20\x9a\x61\x50\x1c\x56\x3c\x13\x7a\xf0\xb4\xc0\x63\x2e\x15\x90\x99\xbe\x07\x48\x60\x60\x5c\x81\xc8\x18\x23\x6c\x5e\xb4\xa1\x62\x0c\x5f\xdf\x03\x67\xe6\x97\x44\x09\xb6\xb5\x90\x04\x54\x34\x43\x98\x54\x88\x85\x38\x28\x2a\xe1\x60\x1e\x80\xa7\x35\xed\x72\x30\x48\x56\x12\x8b\x05\x16\x41\xc8\x93\xcb\x8b\xb3\xe1\xd0\x33\xc5\x16\xa8\xe8\xc6\x4f\xba\xbd\x2b\x38\x3a\xd2\x9c\x0d\x2c\x13\x93\x17\x2f\xc6\x03\xab\xd1\xe3\x29\x8f\x56\x96\x6d\xc6\x8b\xa7\xba\x85\x71\x88\x99\xc2\xc2\x5e\x00\x8c\xe3\xd1\xe4\x6f\x68\x81\xbe\x58\xd9\x7c\xd6\x3a\x2e\x70\x34\x1e\xc4\xa3\xb2\x48\x3a\xf9\x95\x62\x24\x31\x60\xa6\xd5\x10\x2a\xe5\x09\xb3\xa2\x59\xe2\x29\x4c\x05\x5f\x4a\x2c\xb4\xb8\x32\x89\x21\x57\xcf\xaf\xef\x83\xf1\x20\xcd\x69\x0f\xb6\xc4\xc7\x83\x6d\xbf\xf4\x65\x44\x16\x10\x52\x24\xe5\x95\xb7\x14\x28\x4d\xb1\xc8\x87\xa4\xfa\x44\x4f\x1f\x44\x58\xf9\xac\xf9\x94\xfa\x49\xe4\x1f\x8f\xca\xa7\xf9\x73\x12\x5d\x79\x28\x4d\xab\xb7\x07\x11\x59\x94\x6d\x6c\x2f\xf2\x9f\x2d\xc2\x69\x26\x63\x6f\x52\x16\xec\x2a\x36\xe3\x5c\x55\x3a\xb7\xab\xf3\xfb\x30\xd0\xe8\x6b\x47\x6f\x1d\xba\x7d\xef\xc7\x88\x45\x14\x4f\x91\x90\x79\x7b\xeb\x35\xcf\x14\xc5\x6a\xb3\xa9\x2b\xcd\xee\xfa\x10\x21\x85\x7c\x85\x93\x94\x22\x85\x7d\x6b\xd6\xb0\x10\xdc\x35\x4a\x82\x2f\xfb\xc6\xe7\x02\xf2\x1f\x7c\x36\x93\x58\xf9\x23\x73\x2d\x13\xff\xd8\xfe\xba\x97\x8e\x21\xcc\x9b\xd0\x3d\xf3\xad\x12\xc1\x02\x0b\x45\x42\x44\xf3\xeb\x9a\xcc\xd6\xeb\x1f\xc8\xcc\x58\x5b\xc1\x29\xc5\x22\x48\x78\x84\x69\xa0\xcd\x45\x26\x6f\xf1\xbd\x02\x23\x83\x8a\x90\xd3\x82\xc4\x94\xd3\xc8\x9b\xfc\x74\x7b\xfb\x2b\x18\x06\x21\xe4\x11\x86\x99\xe0\x49\xae\xd2\x97\x30\xd6\xb7\x26\xeb\x75\x47\xfb\x9b\x0d\x74\x3e\xd3\xb4\x37\x9b\xf1\xc0\xb4\x50\x4e\x8c\xa2\xd3\x03\x32\xab\xf5\xab\x83\x0d\x81\x65\xca\x99\xc4\xfb\x30\x72\x63\x78\x48\xb0\x94\x68\xde\xc1\x06\x25\x09\x51\x3b\xa8\x8c\xce\xce\xf6\xef\xf6\x38\x2d\x9c\x93\xc0\x2a\x13\x0c\x47\x80\x98\x95\x66\x00\xbf\xf1\x0c\x12\xb4\x82\x18\x2d\x30\x2c\x88\x24\x4a\x3f\x86\xaf\x9f\x3f\x82\x8a\x91\x02\x22\x81\x72\x14\x11\x36\xd7\x95\x32\x76\xc7\xf8\x92\x81\xc0\x92\x67\x22\xc4\x2f\x41\x1a\x6b\x5c\xe3\x39\x44\x0c\x94\x58\xc1\x9c\xeb\x5a\x53\x14\xde\x69\x23\xa4\x4d\xaf\xe0\x5c\x05\xf0\x7e\x66\xad\xd4\x9b\xeb\x8f\xa0\xf8\x1d\x66\xb0\x44\xd2\xd8\xed\x19\xcf\x58\x64\x2c\xb9\x6e\x43\x60\x89\x15\x10\xf5\x12\x10\x8b\x74\x7d\xd6\x22\xb5\x24\x94\xc2\x14\x83\xc0\x11\x11\x38\xd4\x7d\xcf\x49\x49\xac\x14\x61\x73\x09\xa9\x16\xb4\xe2\x60\xb5\x14\x01\xc3\xcb\x2d\xe5\xa0\x21\xbc\xba\xf5\x10\x89\x3f\x17\x3c\x4b\x6b\xba\x0c\x30\x9e\x66\x4a\x71\x06\xeb\x35\xa0\x50\x11\xce\xc0\x33\x5d\xbd\xd5\x2d\x7a\x60\xf4\x0d\xa6\x84\x45\x3e\x52\x4a\x14\xcd\x5d\x4e\x15\x03\xfd\x9f\x1f\x69\x8f\x26\x74\xc1\xc9\x67\xc3\xa2\xee\x8e\xa9\x3c\x1e\xd8\xa6\x77\xd2\xd3\x42\xfd\x89\x27\x78\x1f\x6a\x78\x86\x32\xaa\x0c\xb9\xbf\x72\x78\x9b\x0f\xc7\x67\xce\x95\x8b\x5c\xb7\x79\x73\xd9\xba\xef\x61\xb7\xa2\x70\x90\x31\x94\xa9\x98\x0b\xf2\x3b\x8e\xfe\x98\x16\xac\x39\x8f\xdf\x84\x21\x96\x12\xde\x61\x46\xb4\x7b\xae\x2b\x51\x3a\xf9\xad\xae\xdf\x11\xc7\x56\xc1\xcd\x2c\xd3\xea\x89\xd2\x54\xf0\x54\x10\xa4\x30\xa4\x58\x24\x44\x4a\xc2\x99\xd4\x23\x93\x62\xa1\x55\xcf\x14\xc3\xf7\xa9\xd5\x6a\x3b\xf0\x2d\x75\x4d\x27\x1f\x31\x12\x0c\x12\x2e\xb0\xf6\xfe\xba\xce\x18\xe5\x68\x4c\x63\x17\x79\x39\x18\x2c\x97\xcb\xc0\xa2\x94\x80\xf0\x41\xc4\x43\x39\x98\x67\x24\xc2\x72\x80\x42\x1a\x68\xe4\xed\x81\x42\x62\xae\x91\xf6\xff\x4c\x29\x62\x77\xde\x44\xf7\x3d\xe2\x61\x96\x60\xa6\x31\x1d\x67\xe3\x01\x9a\xd4\xc9\x3f\x8f\x6a\xa0\x90\xca\x88\x48\x8d\x74\xfe\x55\x54\xe3\xfa\xa3\x84\x77\x79\x97\xdb\x03\x66\x1e\x6b\xa0\x5a\x70\x65\xc7\x8d\xc8\x02\xa2\x85\x34\x93\x0a\x8b\x00\x6e\xf5\x4d\x22\xcd\xa0\xe6\xb3\x18\xa6\x38\x46\x0b\xc2\xc5\x4b\x0d\x5e\xb5\xa1\xb4\x1a\xc5\xb5\xa6\x50\x12\x12\x45\x57\x05\x2e\x54\x31\x4e\xfe\xdd\x14\x26\x77\x55\x7f\x50\x45\x21\xc9\x1c\xa4\x08\xcb\x38\x29\xef\xad\x1f\xae\x28\x67\x7e\x4a\xd8\x5d\x20\x17\x73\x0f\x6c\x34\xea\x9d\x5c\x9c\x7a\x10\x63\x32\x8f\xd5\x95\x77\x7a\xd1\x50\xba\xc9\x58\x26\x88\xd2\xc9\x47\xdb\x48\x10\x04\xe3\x81\xbd\xf3\x94\x42\x37\xd8\xdd\xd8\xa2\x29\x3a\x04\x6c\xda\x3a\xfe\xb6\x52\x59\xc0\xe5\xbd\x24\x46\x22\x8c\xdf\x22\x71\x59\x60\xf0\x61\xf1\xeb\xcc\xb8\xbc\x83\x7d\xf6\x7a\x0d\x84\xa5\x59\x95\x33\xcf\xc6\x93\x57\x33\x42\xf5\xc8\x55\x5b\xc8\xc1\x17\x54\x2f\xfc\x84\x30\xe2\x41\x4a\x51\x88\x63\x4e\x23\x2c\xf2\x9a\x16\x43\xee\xe9\x42\x0b\x10\xc9\xf0\xf2\x4d\x48\xdf\x5a\xc7\x5e\xaf\xdd\x56\xce\x51\x13\x80\xec\xc3\xb1\xa1\xa4\xe3\x76\x5f\x71\x38\xd2\x66\xf4\x28\xaf\x73\xa4\xb1\x81\x86\x06\x9a\x23\xa8\x60\x04\xf3\x9b\x71\x3d\x56\x0b\x0c\x69\x46\xa9\x2f\xb4\xf6\x1d\x6d\x36\x9f\x2c\x6a\x5a\xaf\x07\x79\x93\x4d\x9c\x5b\x67\xd2\xc1\x75\x1d\x95\x5a\x29\x58\x10\x8e\x65\xe5\x81\x83\xfd\xb3\xce\x08\xad\x67\xb8\x17\x04\x2f\xe1\x26\x99\x62\x11\x7c\xc1\x14\x87\xaa\x4c\xf6\x14\x44\xf3\xe1\xb7\x97\x7b\x0e\xff\x41\xe3\xec\xe2\x38\x46\xf2\xe6\x3e\x45\x2c\xc2\x11\xf4\x73\x3d\x82\x98\x44\x11\x66\xfe\xbd\x2c\x7e\xc9\xe4\x70\x49\x54\xc0\x63\x0f\x48\x34\x9a\x70\xb9\x1d\x71\x2d\xac\x08\x33\x89\xa3\x2a\x86\x34\xbf\x53\x41\x12\x24\x56\x39\xf2\xcc\x01\xa9\xe2\xf3\x39\xc5\xd7\x45\x25\x8d\x35\x2d\x9b\x87\x42\xcc\xa6\xdc\x9e\x0a\x57\xec\x63\xba\x9c\x22\x2b\x93\x02\x70\xb9\xf5\x10\x97\xa5\x8b\x80\x4b\xc5\x53\x6d\xe5\xb4\x08\x5e\xf4\x8d\xef\x71\xe1\x61\x4a\x07\x73\x51\xdc\xc9\x7d\xd0\xb0\x78\x90\x5f\x1f\xd7\x47\xbf\xf0\xda\x3f\x78\x93\x9a\x37\xe2\xa9\x3f\x15\x88\x45\x45\x82\x44\x3b\xe2\x2e\x61\x3b\xf5\x2e\xef\xc5\xc9\xc3\xfa\x55\xb5\x3a\x12\x8b\x05\x09\x71\xdb\xf2\x14\x06\xa7\x94\xdb\xd1\x66\xf3\x25\x2f\xec\xb4\x31\xd5\x14\xcf\x33\x74\x9c\xf1\x68\xcf\x5e\x7f\xd2\x25\xff\x08\x5d\xbe\x5b\xec\xd5\xdf\x0f\x78\x35\xf8\xa6\x0d\xdf\xa3\xfb\xdc\xd0\xdb\x2d\x76\x1a\x36\x78\x18\xed\xcd\x83\xd3\x4b\xb9\xb8\xe8\x72\x45\x0f\xea\xff\xab\x1d\xfd\x3f\xdd\x35\x0f\xd7\x6b\xb7\x9d\xc8\x2d\x82\x66\x24\x46\xf2\x47\x44\x28\x61\xf3\xeb\x18\x87\x77\xd2\x98\xd2\x25\x12\x8c\xb0\xb9\xf9\x2d\x33\x13\x51\x7a\x55\xab\xea\x59\xb3\xea\x6d\x36\x13\x18\xcb\x14\xb1\xa2\x75\x4c\x49\xea\xf3\x05\x16\x33\xaa\x8d\xd6\x7a\x6d\x52\x44\x9b\x4d\xbd\x54\x88\x04\x56\xda\x0a\xe8\x9b\xc5\x1f\x30\xe6\xa0\x95\xd4\x22\xf2\x9d\xe0\x69\xc4\x97\xec\x1b\x91\x64\x4a\x71\xd3\xbf\x9b\xc0\xc4\x34\x1b\xe5\x05\xfd\x04\xb3\xac\xd4\x01\x0f\xcc\xea\xc4\x95\x17\x11\x99\x52\xb4\xba\x9c\x52\x1e\xde\xfd\xc5\x05\x4a\x30\x0a\x63\x88\x42\x1d\x7e\x44\xa1\x6c\x10\x32\xc4\x28\xa9\x08\x21\x26\x11\xd6\x9d\xd3\x62\x70\x1b\x97\x28\xdc\x6c\xd6\x6b\xfb\xff\x56\x29\xc6\x03\x4a\xda\xd4\x07\x9a\x7a\x0b\xbc\x64\xd4\x95\x42\x3b\x44\xad\xda\xe6\x7c\xb4\x43\xad\x9a\x53\x7b\xd8\x63\x46\x6d\x2e\x6b\xd7\xd4\x78\x05\x24\xe4\xec\xa8\x0e\x52\xe4\x62\x0e\xf7\x09\x65\xf2\xaa\x58\xcc\xd0\xe1\xdd\xf2\x24\xe0\x62\x3e\x18\x0d\x87\xc3\x81\x89\x39\x8c\x9b\xd4\xd5\x35\x47\x73\x0f\x34\x7e\x7a\xcb\xef\xaf\xbc\x21\x0c\xe1\x64\x04\xa7\xc3\x26\xb0\x48\x91\x8a\x21\xba\xf2\x7e\x3e\x3e\x85\x21\xf5\x8f\x83\x93\xe3\x13\x38\x0d\xfd\x63\x08\x4e\xfc\xe3\xe0\xf5\xf9\x59\xf0\xea\xe2\xc2\x1f\x05\x17\xe7\x67\x70\x1c\x1c\x5f\x5c\x50\xff\x24\x38\x1f\xf9\xc7\xfa\x8e\x3f\x0a\xce\x2f\xc0\xfc\x67\xae\x41\x3f\x0a\xfd\xe0\x2c\x78\xed\x07\x17\x17\xf9\x5d\xdf\xd4\x03\xd3\xc6\xc7\x21\x1c\x9f\x2e\x4e\xe9\x29\x68\x52\xa7\x61\x70\x02\xc7\x10\xbc\xba\x38\x07\x43\xcc\x90\x38\xb7\x45\x75\x6f\xce\x2f\x74\x93\xc7\x39\x8d\x51\x7e\x6d\xa9\x9f\x86\xc1\xeb\x40\xd7\x78\x3d\x3c\x0b\x2e\x4c\xad\xd7\xc3\xa2\x93\xc7\xc1\xe8\x02\x4e\xe3\x53\x6a\xc8\xf8\xa7\xe1\xb1\x1f\x9c\xc0\x28\x18\x0e\x5f\xf9\x9a\x23\x53\xf8\x95\xed\xd9\xc7\xd1\x2b\x18\x5d\x04\x67\xaf\x4f\xe9\x28\xb8\x38\x3e\x31\x5c\x69\xe6\x87\xaf\x0c\xaf\x61\x70\xe6\x07\xaf\x35\x09\x73\x33\x27\xe1\x1b\x72\x1f\x4f\x46\x70\x7c\xb1\xf0\x4f\xa9\x7f\x6a\xa4\xa7\xd9\x3f\xf1\x8f\x35\x91\x73\x2b\x40\x43\xe4\xdc\x8a\x90\x6a\x96\xac\x00\x0d\x91\x51\x71\x69\x25\x15\xfa\x5a\x70\x67\x96\x8c\x91\xa0\xa5\x92\xf7\xf3\xf8\x02\x86\xb1\x7f\xfa\x7b\x32\x82\xd7\xe1\x49\xf0\x1a\x86\x70\x0e\x27\xc1\x31\x9c\xc3\xb9\xf4\xcd\x0f\xff\x5c\xff\xd3\xbf\x7d\xfd\xdb\xfc\xd5\x77\x7e\xf7\x06\x75\xf4\x26\x17\xf3\xc6\x6c\xe9\x34\xc4\xad\x8b\xea\x4c\xfa\xce\xeb\x1f\x77\x8b\x81\x8c\x4b\x0c\x77\x40\xec\x6f\xed\x3f\x9d\xfb\x67\x90\xa2\x28\xc2\x91\xc5\xc0\x7e\x42\xa2\x88\xe2\x6a\xbc\x1a\x9f\x96\xa9\x1e\x81\x51\x14\x8a\x2c\x99\x4a\x6f\x52\x42\x31\x6f\x6b\xb6\x8e\xb4\x4c\x6e\xf9\x07\xbc\x3a\x82\xb9\x86\x63\xbf\x22\x81\x99\xfa\x80\x57\x60\xec\x58\x5a\x5c\x6a\x43\x85\x26\xb0\xab\x8d\xb4\x5a\xfd\xff\xeb\x2a\xe3\x41\x7c\xba\x63\x1d\xea\xfb\x8a\xe1\x45\xdb\x8a\x13\x85\x13\x6d\xc7\x8d\xff\x69\xae\x7d\x54\x4c\x98\x2e\x17\x58\x6e\x3e\xf3\x4c\x61\x7b\x43\x73\xa3\xd0\xfc\x93\xc5\xe4\x64\x91\x2f\x23\xcf\x10\x95\xb8\xe8\x1c\x25\x52\xd9\xc0\xc6\x37\xc4\xcc\x75\x19\x9d\xf8\xba\x4d\xaf\x49\xb8\xc4\xef\x2d\xb7\x6c\xc8\x12\xf9\xa3\x89\xdf\x2f\xa7\x73\x7f\x2e\xb4\xab\x9a\xfb\xd4\xb0\xaa\xaf\xe0\xd2\x90\x98\x22\xe1\x9b\x8c\x34\x67\x0a\x51\xed\x7b\x5a\x21\x6e\x53\x8e\x5a\x0d\x5b\xfe\x4e\x8b\xc1\x50\xbd\xc3\xab\xbf\x13\x15\xf3\x4c\x59\x4d\x68\xf7\xb9\xdd\x7e\x6d\x6a\xd5\xa7\x5c\xcd\x8d\xd5\xfd\x53\xb5\x4f\x53\x2e\x22\x2c\x7c\x8a\x67\xaa\x37\x9e\xec\x6e\x61\x61\xf1\x80\xae\x56\xfc\xac\xc5\xa1\xe3\x58\xec\x6e\xa4\xa9\x62\xe7\x50\xe9\x58\x47\x5a\x2d\x57\x42\x5b\xb0\x33\xf0\x4d\x11\xc3\xd4\x95\x1f\x71\x46\x6f\xa6\xb4\x1e\x5b\x20\x32\x4f\x9c\xe9\xd1\xe7\x02\xb1\x39\xae\xeb\x81\x89\xe0\x76\x8e\xb9\x6d\x30\xc6\xd5\xb4\x63\xad\xec\xd6\x64\xd8\xa2\x66\x47\x88\xa3\x20\xc0\xb5\xc0\x48\x61\xf8\x80\x57\xed\x56\x6a\x53\xdd\x25\xec\xee\xbe\x4d\x79\xb4\x02\xfb\x73\xc6\x45\xe2\xea\xa3\x59\x6e\xa8\x24\x12\xbc\x56\xb3\xcd\xa6\x7b\xb2\x4e\x79\xe1\x74\xb2\x5e\x9b\x25\xc6\x9f\xed\x5a\xa7\x36\x73\xa9\xab\xac\x9b\x0f\xe8\x1d\xc6\x2d\x79\x60\x78\xf9\x01\xaf\xf4\xec\xfa\x86\x28\x89\x2e\x17\xfa\x7f\x1b\x7d\x3b\xfb\x55\x61\xc2\x24\x04\x7b\xb9\x80\x3a\xa0\xae\x54\xf0\x51\x14\x71\xe6\x35\x0d\xb9\x81\xd8\x1d\x4d\x95\x29\x48\x9b\x77\xca\x3b\xae\x6d\xa0\x23\xf7\xe4\x81\xc8\xf7\x7e\x5c\x29\x91\xe1\xb6\x85\xab\x09\x6f\x67\xcf\x63\x4c\x53\xdf\x20\x72\x6f\x72\xcb\x21\xb4\xaa\x86\x60\x66\x0c\xe1\x4b\xc0\x76\x81\x15\xee\xf0\x0a\x96\x44\xc5\xf9\x62\xf4\xa0\x5c\x62\xee\x62\xac\x7b\xf4\xca\x3c\xa7\xe6\xb2\x30\xb9\x6e\x3e\xc6\xe9\xe4\x13\xcf\x77\xf7\x30\x8c\x23\x1c\xc1\x8c\x0b\x60\x58\x2a\x1c\xe9\x3e\xc9\xe6\x3a\xc6\x96\x08\xa6\xb2\x19\xab\xe4\x8d\x1e\xa0\x3d\x46\x69\x90\xc2\x7f\x93\x9c\x5d\x16\x17\xdb\xbe\x1b\xcd\x32\xcf\xf2\x28\xed\xd2\xee\xb5\xe8\xd4\xb2\xf5\x1a\x34\x68\x41\x02\xa3\xfa\x68\x9b\xc8\xdb\x39\xde\x5d\x03\xdc\x35\x8a\x79\x4b\x88\xc1\x14\x03\x62\x2b\x93\xac\x44\xca\x2c\x95\x53\xcc\xe6\x2a\xde\x39\x68\xae\x7e\x37\x02\x9f\x4a\x9d\xf6\x22\xb4\xd5\xa2\x0f\x78\x65\x83\xd6\xad\xa0\x8b\x95\xad\xab\x52\x82\xef\x99\x91\x6a\xef\x6a\x75\x5d\xdc\xd5\xa0\xb8\xb5\x8e\x6d\x4d\xa5\x7b\xb5\xbc\xe0\xe4\x87\x8c\x51\x2c\xe5\x9e\x1a\x48\xd1\x14\xd3\xfa\xc0\xe8\x38\x7d\xca\xef\xf5\x1c\xaf\xae\x1d\x14\xf7\xc1\xfc\xd8\x32\x59\xd5\x21\xd8\x6c\xbe\x15\x5a\xf4\xb7\x2f\xbf\x7c\x1a\x0f\x4c\xfb\x1d\x22\xb7\x1d\x75\xf7\xab\x2d\xf5\x08\x53\xac\xb0\x65\xc6\xeb\x5d\xfd\xaf\xa4\x73\x2b\xde\xae\x91\x77\xb0\x9b\x11\x80\xc8\xcf\x9c\xab\x4b\x0b\x0c\x8c\x8c\xdf\x19\x3a\xb9\x85\xe8\x16\xf5\x78\xa0\xa5\xd5\xe1\x9c\x7a\x6e\x3d\xc3\x62\xe0\xdd\x62\x80\x23\xa2\xfe\x2d\x03\x82\x67\x08\x07\x6a\x93\xad\x16\x0d\x68\x94\x68\xf6\xde\xfc\x27\x20\x78\xca\x80\xa0\x76\xfb\x4f\x14\x0f\x80\x54\x24\xbc\x5b\xf9\x32\x14\x9c\xd2\x3d\xa3\x83\xe7\x09\x0f\xe6\x02\x63\x66\x1e\x6a\xd3\xbf\x5f\xc0\xb0\x7f\xb8\xa0\xcd\x89\x2b\x97\x5c\x89\x1c\xb6\xb4\xa9\xf9\xe3\xb9\x20\x48\x9e\x0f\x0e\x8c\x31\x71\x3c\xd5\xc0\xcc\x96\x28\x5a\x73\x25\x61\xcd\x66\x82\xed\x8e\xdb\xc2\x97\x38\x14\xfa\xc3\xcd\x6f\xf0\xf1\x97\xeb\x0f\x37\xef\x1c\xee\xc1\xee\x49\x70\xf4\xa2\xb9\x4d\x11\x9c\x81\x8e\x0b\x60\x1e\x1e\xe4\xec\x1d\xbb\x34\x83\x96\xdd\x53\xd2\x1d\x3f\xb5\xe4\xb0\x0f\x1a\xb5\x63\xe2\x06\xa3\xc5\x78\x1d\x88\x45\xdb\x48\xb4\x24\x92\xe1\x77\x58\xa3\xfb\xc8\x1d\x7f\x94\x20\x6e\xb7\xa6\xb8\xe1\xe4\x16\xbb\x14\xd0\x25\x4b\xa3\x1d\x80\xb1\x9c\x76\x8d\x02\x55\x5c\xd3\x8d\x65\x6a\x6b\x28\x1d\xad\x5b\x1e\x26\x5f\x4d\x57\x7a\x60\x4d\xab\xf3\x21\x62\x21\xa6\x37\x1a\x50\x3c\x4d\xef\x0b\x80\xab\xf1\xad\xa1\xd5\xd3\xbb\x47\xc0\xd5\xb6\x92\xed\x8d\x56\xdb\x42\xb1\x60\xf4\xb1\x23\x7a\x08\x52\xdd\x67\x70\x73\xe8\x7a\x87\x57\x5d\x22\x74\xa1\xd6\xae\x2d\x2c\x75\xa0\xb3\xcb\x74\x8e\xe3\xb3\x89\x7e\x00\x5f\xb0\xd9\xd2\x39\x1e\xc4\x67\x0d\xf3\xd5\x5a\x68\x0e\x64\xcc\x97\x47\x79\xbb\xd2\xd6\x0b\x3e\xf1\x08\x3f\x25\x18\x2a\x00\x41\x0d\xea\xb8\x90\xce\x23\x70\x0e\xe4\xcc\x68\x1e\x8a\xdf\xae\x00\xec\x00\x5f\xa3\x9b\xad\x8a\xc8\x69\x8f\x9c\x3e\xe7\x20\x38\xe5\x5c\xff\xab\x5d\x7c\xef\x68\x45\x8f\xdf\xe0\x3f\xfb\x17\x9f\x61\xff\x62\xb1\x70\xfc\xd8\x3d\x40\xaf\xec\xbe\x1f\x13\x22\x5d\x3a\x62\x24\x20\xf2\x4b\xcc\x97\x84\xcd\xdf\x2b\x9c\x5c\x6e\xe1\xb6\xf3\xbe\x4c\xea\x3e\x3c\xdf\xc2\xf6\x26\x4d\x83\x37\xc6\xda\xbe\x45\xe2\x9b\xbe\x53\x55\x4c\x6b\x90\xec\x3e\x44\x1c\x5d\xdb\x1d\x6e\xed\x04\x4e\x79\x70\xa5\xdc\x9e\xd5\x4e\xf1\xac\xd7\x3f\x84\x9c\x52\x6c\x2d\xbb\xdd\x39\xf7\x91\x48\x65\x68\xe6\x7b\xe7\xde\x12\xa6\xc7\xea\xca\x6b\x50\x2c\x87\xf9\x62\x38\x04\xc1\x97\x3f\xd9\xab\xd3\x53\x77\xb6\xc5\xb5\x8a\x9f\xdb\x40\x63\x29\x9e\xc6\xea\xd5\x46\xb5\x35\xa8\xed\x0d\x1a\x6d\xdc\x7f\x50\x20\xd8\x9e\x67\x1d\x66\xb2\x90\x89\x66\xb9\xa3\xd3\x07\x5a\xc8\xa2\x45\xeb\xf3\x73\x2c\xdb\x25\x90\x1e\x8c\x0e\x3b\x72\x85\xee\xad\xa0\xf9\xc3\xad\x32\xb9\xf4\x31\x4f\xdb\x3e\x87\x16\x1e\x8f\x86\xcf\xa8\x86\x4f\xaf\x7c\xbb\x34\x6e\x9b\x93\x6a\x74\xb0\x67\x99\x6a\x3f\x81\xe4\xbb\x4f\x64\x36\x55\x14\x1f\x6d\x36\x85\xce\xf6\xaa\x42\x85\xf3\x32\x8d\x6d\xdd\x46\x8c\x69\xda\x70\x31\x8d\x4a\xa8\xdc\x10\x6e\x48\x7a\xdb\x1d\x8f\xeb\x75\x55\xb7\x6d\xca\xac\x53\xbd\xbb\x65\xe5\x58\x57\xcb\x9f\x6c\xf7\x3b\x19\x29\x12\x46\x09\xeb\x9b\xbd\x36\x03\xa6\xe1\x1c\x10\x66\xfe\xb6\xd2\x5f\x95\xd6\x29\xa9\x9f\x19\x59\xaf\x99\xc1\x32\xae\x3d\x4b\x5b\x1a\xae\xbd\x4b\x5b\x56\xb2\xae\xfc\xf2\x23\xa6\x69\x03\x07\xb5\x96\x5b\xb6\x67\x5f\xa8\xb5\x46\xb7\x31\x16\x38\x3f\x87\x0d\x85\x0e\x81\xe2\xa0\xd5\xa8\xbe\x8a\xd3\x68\xfd\x5f\x3d\x67\x65\x92\x55\x3a\x14\xe9\x40\x59\x82\x2f\xa1\x7b\x49\xbb\xb6\x17\xa6\xd6\x93\xd6\xc5\xe3\x91\x4f\x27\x90\xb4\x1b\x16\xb7\xc8\x71\x97\xdc\x2a\x06\x63\x8b\xaa\xca\x61\x6b\x6c\x52\xd3\xbf\xed\xe2\x15\x6c\x36\xc5\x31\x44\xed\xd4\x64\xef\xc6\xdf\xce\xa1\x89\x4f\x4a\xc7\xca\xfd\x04\x89\x39\x31\xeb\xb1\x79\x18\x35\x0c\xf2\xfd\xc4\xc5\x5f\xd0\xb3\x2b\x3e\x29\x1b\xd3\xed\x96\xbf\xcf\x26\xb7\x68\x2e\x6d\xac\x56\xb2\x46\x66\xda\x05\xd4\x0e\x27\xa4\x93\xf5\xda\xde\xab\xa8\xb2\x63\x56\x4c\x3e\x71\x53\xb7\x56\xaa\xae\xee\xf1\xd9\xc4\xec\x1d\xae\x05\x88\x4d\x3b\x52\xee\xab\x71\x89\xbc\x16\x3c\xea\xdf\x26\x20\xda\x2f\x70\x34\xb9\xb2\x3c\x63\x66\x5e\xee\x50\xfc\x94\xca\x73\x9c\x47\x71\xf8\x2c\x43\x70\x2f\xc7\x55\x66\x55\xdd\xb0\xa9\x2f\x73\xdb\xe1\xb2\x2a\x63\xdf\xb7\xab\xc2\x5a\xd5\xad\x54\xda\x81\xb0\x05\x3e\xd5\x72\x6f\xa2\x48\x98\xd5\xb8\xae\x28\xb2\xba\x20\x6b\x89\x33\xae\x70\x61\xc2\x83\xa6\x5b\x6a\xaf\xc1\x56\xb5\xb0\xad\xd6\xe0\x70\x3e\x19\x33\x7b\x6b\xa3\xd6\x21\x17\xab\x2c\x86\x64\xe1\x75\x02\x3b\x10\x8e\xa0\x7f\xeb\x73\xf6\xc1\xcf\xae\x70\x5e\x97\x7b\x8b\x84\x25\x18\x7c\xc9\x4f\xd7\xbb\x73\x9d\xbb\x30\x6f\xee\xc0\x83\x4e\xd4\x5b\x8e\x4d\x4e\xce\xf0\xf5\xfe\x1d\x74\x8e\x0c\x1c\x9e\x48\xd8\xc1\x48\x0f\x34\x76\xe7\x44\x5a\xde\xdb\xe5\xb3\xad\xa7\xae\xba\xc1\xd6\x1e\xaf\x6a\xb5\xc3\xad\xbc\x31\x0b\x7f\x82\xe0\x76\xef\xf0\xd6\x19\xe0\xb6\x07\xf3\x59\x63\x5c\xe8\xb1\xd5\x4f\x98\xda\xab\xa8\xd9\xf3\x06\xba\x4d\x65\xeb\x0d\x76\xad\x70\x3a\xd2\x77\x95\xf6\x0e\x0f\x7a\x6d\xcb\xc0\xb2\xa4\x38\x4e\x04\x9b\x4d\x89\x30\xfa\x68\xf5\x05\xc1\xd0\x1f\x46\xec\x40\xd9\xb0\x1b\x69\xf7\x85\xc4\xcf\x1b\x14\x3f\x85\xd6\xee\xd0\xd5\xe7\x88\x8a\x1f\x15\x17\xef\xa1\xac\xa5\xb7\xda\x85\x1f\x1a\x6c\x1f\x1a\x12\x7f\xaf\xa0\x78\x87\x3e\x77\x07\xc6\x07\x87\xc6\x5b\x9c\x92\xcf\x42\xb3\x43\x24\x9f\x90\xfd\xd3\xbf\x1d\x25\xcb\x3a\xa6\xef\x0f\x98\x77\x85\xcc\xdd\x41\xf3\xce\x09\xbd\xc7\x74\x6e\xed\xa4\x73\xec\x55\xec\x0f\x9f\x6d\x12\xc1\x19\x3b\x77\x1c\x93\x7d\x92\xe0\xf9\x4f\x10\xf7\x6a\x49\x3e\x49\xd0\x6b\xa1\xd6\xc1\x11\x2f\xeb\x3e\x34\x7a\x58\xb8\x5b\xe9\x54\x1e\xf7\x1a\x2b\x6d\x4e\x02\x1a\xeb\xb3\x7d\x90\x1b\xa6\x36\x7e\xee\x8b\x8a\x0b\x27\xea\x0c\x52\x2b\xf3\xd9\x92\xa8\xb8\x5c\x67\xbc\xda\xc8\x29\x36\x26\xf3\xf7\x40\x44\x10\xf1\x4c\x0f\x98\xb1\x48\xdd\xef\x55\x70\xc0\x1b\xa8\xef\xe5\xd9\xb5\x91\xc7\x09\x6f\x1c\xf6\xc9\x19\x70\xee\x85\x68\xb6\x8d\x95\x2e\xe5\x72\x7b\xef\x57\x2e\x5c\x1b\xc6\x1c\x2e\xc7\xc5\x88\xd3\x82\x83\xcc\xa6\x9d\xc7\x35\x15\x9a\x57\xec\x76\x70\x5b\xcf\x8b\x94\x0d\x53\x62\x13\x24\x87\x9c\xbe\xac\xb0\x7a\x8b\xe6\xc5\x6a\x45\x0f\xa5\xba\xd5\xee\x8f\x9f\x2a\xba\x6c\x41\x84\x53\x93\xcb\x08\xda\xea\xf1\x36\x84\x76\x5a\xb4\xf6\x9e\xb2\xf5\xda\xe6\x4f\x9a\xc1\x71\xb7\x06\x7e\x97\xec\x46\x4f\x04\x5d\xe2\x91\x5a\xf0\xfc\x90\xac\x46\x3d\x46\x7e\x60\x42\xc3\xb9\x61\xab\xc5\xf6\xd9\xe4\x13\x57\xb8\x96\x86\xcb\x1f\xa5\xdb\x3c\x80\x29\x02\x8e\xe3\x24\xba\xfe\x2f\x99\x4a\x33\xe5\x6a\x40\xe0\x92\x17\x5b\xc8\xb4\x20\xb0\xa3\xe3\x6e\x3e\x9c\x3a\x55\xdd\xe9\xd1\x52\x2d\x32\x2b\xf6\x3c\x34\x2c\x62\x63\x8b\x59\xd5\x56\xe6\x86\xd5\xee\x94\x30\x13\xae\xdd\x80\xc3\x96\x75\x5a\xc5\x9a\x41\xec\x36\x67\x0f\xdb\x05\xb2\x87\x41\xdc\x6f\x07\x88\x63\x9b\x3b\x61\xc5\x16\xa5\x5c\xbc\x5e\x51\x3d\x30\x49\xa0\xbd\xde\xb1\x57\xdb\x59\x64\xee\x6b\xd6\xdc\x7b\x8c\x4c\x82\xe2\x7d\x49\xb5\xe3\x55\x7c\xee\x43\x57\xfb\xdb\x53\x87\xcd\x29\xd8\xb2\x56\xa7\xe3\x78\x42\x0b\x09\x9b\xea\x5d\xf8\xb7\xcb\xd0\xb6\x0f\xba\x17\xd4\x7f\xc6\x0a\xb9\xc7\xa7\xfd\x7a\x96\xfa\x34\xd8\xb5\x26\x04\xc6\xe0\x78\x93\x4f\xbc\x54\xe6\x1d\x59\x71\xac\x96\x5c\xdc\xc1\x2d\x4f\xf8\x5c\xa0\x34\x5e\x35\x26\x16\xa8\xf2\xc9\x5f\xf5\xff\x95\x6b\x38\x39\x79\x55\xb1\xdb\x9d\x5d\x89\xf0\x65\x6e\xf3\x34\x3c\xdc\xd6\xf7\x35\x32\xf3\x09\x9b\xf1\xca\x7b\x13\xca\xce\x76\x34\xf7\x33\x61\x24\xc9\x92\xcb\x7a\xd7\x82\x84\x68\x49\x26\x72\x8f\x06\x70\x44\x10\x6b\xd5\x37\x77\xf7\x6d\x02\xdd\x3b\xfb\x80\xee\xab\x0d\x3c\xe4\x5d\x5f\xf4\xcf\x9d\x4a\x6c\x4d\xce\xe7\x49\x10\x36\xdf\x7a\x92\x43\xe2\xf7\xef\x9e\x30\x2f\xf8\x3d\xb6\xfd\x35\xdb\xe9\x49\xf3\x19\x63\x4e\x8d\xe1\x37\xff\x19\xb3\xed\x6a\xce\x4d\xa7\x27\x02\x6f\x46\xdf\xd5\x27\x8e\xf3\x80\xfd\x51\xb6\x79\x1f\xe3\xff\x49\x90\x5d\xbc\x79\xa5\xa2\xe4\x5b\x5a\x7f\xc0\x00\xdc\x65\xeb\x1f\x70\xc6\xfb\x90\xde\xed\x3e\xcc\xf1\xe4\xa7\xbd\x0f\x3b\xef\x7d\xd0\x89\x6f\x80\xfc\xb5\x7a\xce\x59\xe1\xca\xc0\x75\x1d\xb7\x7d\xc8\xb1\xef\xee\x53\x11\x3d\x47\xb2\xf7\x38\xea\xd0\xd7\x72\x47\x1e\xae\x7d\x34\xfa\x4d\x48\x83\xca\x9e\xa3\xc6\xd9\x84\x9e\x6d\x72\x1d\xc7\x65\xbf\x60\x65\x0e\x38\xf3\x54\xdb\x0c\x44\xcd\xa7\x20\xcc\x29\x63\x7d\xf7\xcd\xf5\xc7\xa0\xef\xf0\x76\xb7\x40\x1e\xc0\x6a\xf7\x9b\x09\xb5\x27\x96\x75\x19\xdc\xae\x52\xa7\x0c\x76\xbd\x9b\x70\x2f\xa1\xdc\xc6\xd8\x78\x7f\xe0\x33\xfb\xb2\x62\xfb\xc2\xd9\xe7\x12\x85\x3d\xc5\x30\xf9\x9c\x51\x1d\xf3\x75\x9e\x90\x85\xae\x03\xd5\x5a\x3e\xa6\xf2\xf7\x52\x92\x1f\xb9\x28\x5e\x8c\x6b\x4f\x53\x6b\x10\xc0\x19\x08\x4d\xe4\xa5\x7d\x3b\xfa\x13\xbe\x31\x37\xb0\x87\x38\x1f\x28\xfb\xae\xf3\xd9\x6f\x42\xda\x7f\x4c\xb8\x7a\x72\x66\xbf\xc3\xd5\xee\x33\xbf\x9d\x8b\xe2\xfd\x6f\x06\x6d\x38\x98\xad\xc3\x7d\xd4\x1b\x6a\xe9\x81\x5b\xe8\x1f\x93\x04\x36\x18\xf9\xe0\x1c\xb0\xc6\x1d\x7b\xa6\x80\x5d\x63\xdf\xef\x17\x9f\xd4\x27\x1e\x76\xa0\x71\x2f\x5f\x58\xc1\x8a\x9e\x3d\x9a\xa5\xe5\xe3\xe5\xf9\x38\x17\x72\x7c\xee\x93\x82\x1d\x91\xff\xbe\x47\xff\xf6\xb3\x8a\x0d\x3f\x98\x67\xf4\x0f\x73\x83\x4f\xe0\x02\xf7\x41\x1d\x3b\x39\xdb\xcf\xed\x59\x96\x1f\xeb\xf5\xbe\x9b\xc7\xfb\x0e\x9c\xef\xe9\xe5\xba\x0e\x6a\x1e\xea\xe0\xfe\x25\x9d\x5b\xa7\x98\xdb\x4e\xcd\x9e\x21\x3d\xd8\xa9\xed\x7f\xde\x73\xeb\x3e\x29\x67\x87\x7e\x60\xe3\x5a\xd7\x39\x88\x8a\xc4\xea\x40\x1a\x5f\x25\xee\xfb\x5a\x88\x55\xa6\x1f\xa0\x72\x50\xf1\x13\x57\x6f\x58\xc7\xc9\xbb\xae\x17\x8c\xf4\x8a\x77\xe7\xeb\x44\x2a\x79\xd7\xca\xcb\x44\xfa\x3a\xec\x7c\xf1\xcc\x21\xc7\x34\xf3\x8b\x58\x3c\x0c\x32\x10\x16\xe1\x7b\x07\x68\xe8\x3d\x5f\x57\x79\x79\x67\xd7\xcb\x3d\xeb\xa8\xa2\xe3\x74\x9d\x5d\x6a\x35\x46\x11\x99\xc3\x81\xf6\x79\x63\x3f\x72\xfb\x8d\x7b\x3b\xd6\x59\x8f\x6c\xe9\x66\x3a\xa4\xe9\x13\xdb\xdb\x80\x65\xcc\x45\x7b\x4d\xd2\xe1\x4c\x91\xd8\x63\xdd\xf4\xd0\x37\xa6\xed\xb5\xfa\x05\xe5\x8b\x34\x76\x9b\xc1\xea\x82\x56\xb7\x09\xaa\x2f\x62\x39\x55\xcd\x95\x0d\x6f\x02\xb8\x7a\xee\xfd\x51\x9b\xf5\xed\x5b\x5f\x9f\x58\x29\x2b\x4a\x78\xa2\x31\x82\xa1\x59\xdb\x13\x90\x6a\xb7\x29\x2b\x9f\x54\x42\x94\xf2\xa5\xf9\xfa\x88\xe2\xda\x8b\xcf\xc8\x3c\x13\xd8\x7e\xd4\xa9\xf8\xec\x5c\x81\x2b\xf2\x8f\x9a\xfc\x1d\x4f\xe1\xeb\xfb\x00\x6e\x16\x58\xac\x54\x4c\xd8\x1c\x88\x04\x89\x16\xf6\x8b\x4d\x94\x87\x88\x4a\xc5\x05\x9a\xe3\x97\x39\x5d\xc4\x22\x90\x31\xcf\x68\x04\x29\x16\x92\x48\xed\x9e\x04\xcf\xe6\xb1\x75\x56\xd2\x94\x28\xe8\x65\x12\xcd\x71\x50\x4b\x94\x97\xdc\x98\x54\x1f\xca\x14\xd7\x5e\x2f\x44\x94\xae\x8a\x16\x71\x04\x59\xca\xcd\x6c\x22\x33\x12\x1a\x4f\x65\xbe\x69\xc5\x38\x24\x88\x65\x88\x9a\x3e\xea\xbe\x16\xef\x63\xab\xd1\x88\xcf\x26\x95\x8f\x37\x6d\x67\xeb\x4e\x7c\xd0\xf3\x3d\x0a\x6b\xb5\xed\x87\x83\x3a\x31\x50\xc2\x19\xaf\x7f\x8c\xc2\x33\x35\xaa\x78\xa8\x1f\x05\x99\xf6\xf5\x18\x60\xa6\xec\x3b\xdf\x34\x87\x58\x6a\xb9\xda\x6f\xce\xd8\x77\xc0\xfd\x97\xb2\xcc\x99\x0b\x48\x91\x40\x09\xae\x7d\x9e\x26\x93\x76\x0c\x8b\xfe\xe5\x68\xb2\xd0\x80\xb2\x3b\x4b\xab\x02\xf5\x09\x58\x37\xde\xbb\xa4\xd6\xf5\xe5\xad\x87\x7c\x74\xeb\x9d\x75\xa9\xb2\xed\x94\xdc\x58\x40\x3e\x00\x0b\xc8\x96\xcb\xdb\xb1\x9f\x69\x6b\x1b\xf4\x83\xc1\x00\x6e\xec\xb7\x7c\xfe\x99\x61\xb1\xb2\xc2\x97\x2f\x21\xc9\xa4\x82\x29\x36\x1f\x66\xc3\x11\x4c\xf1\x4c\xe3\x3a\xac\xb1\x35\x10\xf9\x02\x2c\xcc\xbe\xf9\xf4\x0d\xae\x60\xfd\xe3\xcd\x9b\xdb\xaf\x9f\x6f\xbe\x5c\xc2\xfa\xc8\x34\xe3\xdb\x66\x7c\x86\x97\x47\x97\xa0\x44\x86\x37\x9b\xbf\x34\xba\x51\x18\xa8\xea\x69\x6f\x94\xa6\x34\x9f\x22\xe6\x03\xa5\xff\x90\xc6\x9a\xda\x3a\xe3\x81\xfd\xc2\xe5\x78\x60\xbf\xe4\xfa\xbf\x01\x00\x00\xff\xff\xeb\x13\x0c\x4a\xe1\x75\x00\x00") - -func web_uiV1IndexHtmlBytes() ([]byte, error) { - return bindataRead( - _web_uiV1IndexHtml, - "web_ui/v1/index.html", - ) -} - -func web_uiV1IndexHtml() (*asset, error) { - bytes, err := web_uiV1IndexHtmlBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/index.html", size: 30177, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAndroidChrome192x192Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x9a\x55\x53\xdc\x0d\xb3\xc4\xff\xbb\xb8\xbb\x43\x70\x87\xa0\xc1\x65\x71\x0b\xee\xee\x12\x9c\xe0\xbe\x10\xdc\xdd\x9d\x20\xc1\x03\x09\x21\xb8\xbb\xbb\x6b\x70\x77\x87\x53\xcf\xf9\x00\x6f\x4d\xcd\x5c\xcc\x6d\x57\xf5\xaf\x2f\x3a\x52\x45\x49\x06\x0d\x99\x18\x19\x00\x00\x34\x39\x59\x49\x35\x00\x00\x3a\xff\x5b\x44\x78\x00\x00\xd4\x56\xed\x11\x00\x00\x80\xb5\x16\x53\x14\x03\x80\x9f\xf1\x28\x2f\xa6\x70\x00\x00\x50\x98\xcb\xaa\x29\x02\x80\x0f\x1d\x00\x40\x43\x00\xe0\x09\x00\x00\xe8\x01\x00\xb8\xb3\x03\xc0\x91\x09\x00\x08\x64\x00\x00\x81\x73\x4e\xb3\xaa\x10\x00\x00\xf0\x66\x0a\x32\x92\xc0\xfb\x7f\x53\xd0\x56\x96\x0c\x00\x00\x82\x9b\x9c\xa2\x14\xc2\x16\x0c\x39\xc0\x4c\x50\xf9\x9b\x9e\x1d\x00\xa4\x8e\xe5\x24\xc5\x34\xbc\x96\x4f\xdb\xbe\x24\xd0\xc8\x78\xd0\xdd\xad\x0a\xd7\xb4\x72\x1d\xb7\x37\x57\x3a\x71\x37\x83\x50\xa1\xfd\x1c\x36\x00\xcc\x28\x90\x01\xb2\x0e\xe3\x52\x40\x0f\xff\x17\xa1\x10\xfb\x85\xef\x68\x97\xf2\x0c\xdd\x93\x71\xca\x46\xcf\xa5\x24\x35\x8d\x53\x75\x1a\xc3\x56\xb1\x1e\x6f\xd4\x42\xef\x8b\x9c\x0b\xbf\xc1\x0e\xfa\x5e\x3b\xc6\xaa\x36\x0c\x1a\xf7\x93\x48\x65\xf3\x19\xf5\x79\x4c\xcc\x8c\xa1\x68\x3d\xd5\x0c\x35\x27\xd5\x79\x73\xf3\x35\x97\xeb\x48\x79\x55\x05\x9f\xd0\xba\x6b\xe0\xdb\x4b\xdb\x39\xe8\x66\x4a\x86\xdc\xff\x7f\x9c\x01\x07\xc4\x5f\x6b\xbc\xce\x2d\x5b\xb3\x3f\xd4\x85\x0f\x67\x08\x8c\xbc\x82\x1c\xee\x1b\x56\x91\x0e\x98\x21\x08\x36\xaa\x83\x2d\x87\x2b\x61\xdd\x1b\xda\x71\xeb\x85\xb5\x00\x2b\x05\x64\x53\x35\x5b\xd4\x37\x70\x41\x36\x42\xb7\x93\x03\xf6\xd5\xd8\x98\x51\x40\xc2\x18\xe4\xb7\x49\x7d\x31\xb8\xdf\x34\xa7\x7c\xee\x82\x99\xb1\x3f\xc3\x6f\xa5\x18\x70\xfe\x8a\x0e\x3c\x21\x4f\x31\x3d\x21\xd7\x81\xe2\x27\x7d\xe3\x13\xf7\x17\xcf\xad\x3b\xe0\x37\x6b\x31\x8d\x2e\x82\x4f\x84\xd1\x6d\x31\x2f\xb8\xde\x91\x00\x7f\x4b\x9b\x10\x41\x3d\x10\x38\x44\x44\xb6\xe9\xe7\x84\xcb\x64\xd9\xfd\xe2\xf9\x0b\x30\x16\x9a\xfb\x44\x3a\x03\x3d\xff\x86\x1b\xf2\x7e\xc2\xfc\x0d\xc1\x33\x07\xcc\x8d\xf9\x44\x11\x34\x20\x12\xeb\x15\x4f\x8b\x82\xf2\xa3\xbe\x80\x66\x44\x9c\x4f\x17\xdf\xac\x3e\xb4\xa7\x3e\x94\xba\x3e\xb4\x98\x4a\x0a\xeb\xb3\x98\x24\xb4\x37\x56\x79\x14\xb3\x81\x11\xda\x87\xc9\xc5\xda\xad\x81\xd3\x50\x2f\xa7\x23\x87\xf3\xe5\x07\xc3\x4a\x68\xab\x7d\xea\x55\x94\xa6\x52\x38\xeb\x58\xff\x68\x58\xd6\xa6\x3a\x70\xf1\x76\xe2\x60\xb4\x0b\x1c\x30\x7f\x63\x3b\x23\x84\xbb\xc0\x7a\xa1\x28\xdc\x87\xcb\xf6\x8a\x83\x1b\xea\xde\xd6\x11\x8b\x8a\xc3\xff\xde\x25\xa6\x49\x1a\xff\xc5\xc2\x69\xb0\xd7\x57\x92\x24\x1e\x09\x17\x0d\x07\x19\x26\xa3\x90\x0f\xac\x82\x09\x83\x05\x4a\x82\x82\x40\x40\x88\xed\x02\xb0\x88\xa9\x06\xdf\x09\x80\xe0\x80\x68\x50\x03\x21\x38\x97\x8a\x41\xb5\x17\x99\x27\x38\x46\xea\xa0\x5e\x6c\x51\x5c\xf7\xfb\xb5\x77\x5f\xf3\x6f\xe2\x4f\x04\xf8\x3b\x3e\x3e\xac\x66\x15\x3c\x56\xf8\x1a\x29\x5d\x2b\x2f\xb8\xdd\x95\xa8\xfe\x52\x50\x41\x08\x88\xaf\xeb\x3e\xee\x6e\x1d\x2b\xcf\x2b\x0b\x00\xc4\x07\x7b\xa7\x83\x6e\x27\x2f\x24\x95\xf2\x94\x7e\x74\x27\x46\x88\x9d\xa5\xb1\xfa\xa9\x14\xd8\xa0\x72\xa5\xf4\xa2\x8a\x93\x04\x76\xfc\x30\x49\x5d\x12\xff\xcd\xf1\x9d\x75\x14\xdf\x2d\xc8\x88\x71\xf8\x2e\xf4\xb6\xce\x7b\x57\x4b\xbe\xe5\x53\xf6\x2c\x57\x18\x04\x0d\x70\x4e\x09\xd6\x8e\x2b\x20\xea\xfe\xc4\xbc\x1a\x19\xe5\xac\xcf\x04\xe9\xb4\xc1\xd8\xc4\xf7\xb1\x76\x23\x80\xe2\x78\x01\x98\xf4\x5f\xbf\xbe\x4c\xea\xd9\x6c\xd8\x88\x35\xf3\x96\x26\x23\xe0\xe1\x90\xe3\x30\x10\x0f\xa0\x4a\x15\xf2\x04\x3b\x09\x12\x42\xa5\x38\x46\xf4\x33\xd6\xa6\x25\x7d\x44\xca\x74\xce\x59\xfb\x63\x31\xd8\x62\xcb\x1b\x0e\xeb\x74\xc1\x00\x0e\x53\xd4\x66\x2e\x23\xf1\x18\xaa\x67\x0a\xd5\xaa\x07\xf2\x26\xd1\xe5\xeb\x28\xc9\x02\x22\x06\x40\x05\x44\xa8\xeb\xf2\xbb\x58\x7c\xf2\xb3\x60\x61\x13\x26\x9e\x09\x8d\x97\xe7\x11\x10\x67\x90\xef\xc2\x8f\x39\x6b\x03\xc3\xd4\xd9\x8f\x6a\xb9\x05\xe5\x4d\x30\xdf\x65\xa3\x20\xbd\x9e\xba\x9a\x97\x54\xe6\x70\xf2\x21\x6f\x8d\x62\x06\x58\x4d\xf7\xff\x38\x43\x95\x6a\x72\xc0\x2d\x88\xdc\x7c\x46\xf6\x37\xc0\xe9\x1e\x48\xa7\x7a\x2e\x9b\x19\x4e\x46\x52\xf4\x92\xaf\x9f\x52\x15\x57\xbd\xe2\x39\x24\xb0\x35\x6f\x2c\x45\xba\xf9\x66\x3f\xf8\xd4\x77\xdb\x75\x45\x62\x4d\x2f\xcf\x05\x5f\x28\xd0\x94\xda\xa5\x1a\x21\xa8\x86\xe5\xf1\x1a\x7d\xf7\xf3\xb2\xcd\x2a\x8e\xfa\x61\x5b\x3a\xf9\xae\x24\xb5\xcb\x97\xa0\x38\x1e\x95\xa0\x6f\xbf\x1b\xde\x5b\xb2\xc0\x06\xd5\x23\xe1\xcb\x8c\x1d\x3b\x30\x42\x65\x5f\xc3\xb0\x54\xcb\xd2\x77\x4b\xde\x21\xaa\x2b\xd4\x80\xcb\xf5\x15\x30\x81\x76\x64\xf6\x32\xc3\x74\x3a\x54\x21\xb6\x68\x81\xc0\x27\x7e\xb5\x99\x3b\x88\x6d\xb2\x0c\x6a\x71\x6c\x52\xa5\x67\x7a\x48\xa2\x9f\x0a\xa2\xf2\xd3\x58\xfd\x30\xac\x30\xd7\xcf\xf6\x17\x6d\x55\x7a\xaf\x2c\x13\xdb\x5b\x88\x3f\x75\xf8\x7b\x14\x3d\x0c\xff\xee\xba\x62\x02\x1e\xc6\x90\x03\xa2\xf7\x56\x94\x90\x3c\x4a\xc0\x0f\x19\x82\xad\xcf\x49\xbc\xae\x34\xe2\x89\x5f\xcf\xcd\xdc\x9e\xce\x76\x2f\xca\xd4\x2d\xb7\xb8\x8a\x42\x31\x8a\x86\xcf\xcf\x6d\xd8\x61\x9b\x3f\x4e\x62\x2c\xf4\xec\xfd\x59\xcf\x67\x78\x3b\xb8\x8a\x68\x86\xc5\x93\xda\xb4\x86\x0b\x90\x76\xf6\x8e\x73\x24\x90\x5a\xd4\x44\xc6\x34\xd9\xf7\x85\x33\x5e\xb6\xb9\xf2\x47\x99\x6a\x1b\x48\xa7\xca\x97\xfb\xd1\xbd\x4f\x43\x42\x0e\x35\xfc\x55\xb0\xc6\xc4\x0e\xa8\x13\x1c\xfc\x9d\x2b\x7f\xbc\x3f\x57\xc6\x0f\xf0\x73\x2f\x6f\x45\xfd\x24\xb5\xb9\x56\xc1\xe3\xd5\x2a\xfd\xe7\x1b\xf6\x09\x31\x9c\x0d\xfb\x51\x8b\xb4\x1f\xa0\x72\x57\x92\xba\x15\x6e\xb5\x93\xff\xe1\x63\x64\xc7\x47\xfd\x07\xf6\x1b\xb8\x0e\x46\x42\xb0\x04\xce\x41\x66\x5f\xd3\x1b\xaf\x93\xd2\x7e\xe0\x4f\x52\x2e\xce\x4d\x51\xea\x55\x2d\xab\xa9\x1a\x15\x28\xda\xd6\xfd\xf5\xc9\x45\x30\x5b\x99\x06\xa5\xcb\x95\xd5\x76\xe4\x50\xce\x8b\x3e\x65\xb2\x50\x08\xa1\xec\x8a\xff\x79\x0b\x1a\xae\xd8\x0f\x9a\xa5\xda\x55\x42\x96\xf7\x8e\x5a\xd2\xc1\x76\x3b\xcc\x52\xf1\x3a\xaa\x13\x1f\xda\xc5\x29\xe4\xc9\xee\x72\x36\x10\x14\x15\x28\x0c\xb7\xde\x91\x89\x63\x93\x6a\x27\x5d\x18\xbc\xce\x28\x5c\xf4\xd8\x78\x76\x0c\x0f\x5d\x92\xa7\xb3\x7f\x7d\xcd\x1c\xea\x5e\x98\x88\x4d\xb5\x02\x41\x60\xfe\x50\xcd\x7a\x47\x7b\x14\x63\x9f\xe8\xcc\x74\x52\xbf\x04\x50\x07\x20\x02\xdd\xe6\xde\x5f\x1e\xd4\x09\x10\xda\x9d\x2d\x3e\xbd\xd0\x63\x7d\x13\x8a\x03\x86\x56\xfc\xcf\xff\xc0\xb0\x4b\x24\xd6\x89\x7d\xc8\x18\x1d\xc1\x88\xc3\xff\xde\xad\xb6\xaa\xc3\x03\x2b\x2d\x1c\xb8\x87\xfd\x30\x53\xa6\xec\x74\xef\xf0\x27\x96\xec\x07\x90\x73\x71\xed\xa8\xb8\x10\x81\x01\x24\xca\x58\x6f\xdf\x0b\x05\x70\x5d\x0e\xf4\xd0\x1e\x8a\xe2\x31\x10\x87\x91\x89\x14\x9f\xf2\x50\x00\x2c\x2a\xdc\x69\x2c\x28\xf1\xe7\x0a\xe1\x49\xb8\x0d\x4b\xa9\x19\xba\xdb\x6f\xbd\xbb\x44\x02\x2e\xdb\xbd\x35\xea\xc1\x64\x65\x40\x4e\xdb\xf9\x27\xcf\x7f\xb1\xf8\x4a\x36\xe2\x57\x8f\xd1\x30\x1d\x7e\x0b\xf2\x0f\xca\x3d\x74\xde\xdf\xcf\xe7\x57\x0d\x4c\x20\xf2\x8b\x34\xe4\x99\x83\x23\xf7\xe8\x69\xbd\x25\xd9\x30\xcb\x54\x12\x6f\x41\xee\xf4\x4a\x39\x90\x16\x39\x24\x8f\x98\x4d\xd8\xc5\xe7\x17\xab\x34\x30\x50\x28\x61\x57\x38\x34\xe0\x48\xd3\x9e\xc5\x84\xd2\x51\x8f\x95\xd3\xb8\xd3\x89\xa9\x42\xc2\x11\x4d\x65\xb5\x44\xc8\x42\xa2\x1d\xc7\x08\xce\xa6\x2c\x40\x25\xa4\x08\xc3\x84\xef\xcc\xa0\x12\x27\x8c\xc8\xa0\x0a\x62\xa7\x31\x41\x06\x5b\x45\x14\xe4\xf2\x66\x9b\xf6\xf5\x62\x90\xe9\xa2\xbd\xf7\x99\xc8\xbd\xf0\x8a\xf2\x65\xbd\x55\xde\x46\x1c\xc6\x72\xc3\xd9\x24\x4d\x76\xcc\xd4\x51\xe3\x76\x0e\xac\xef\x87\x1a\x07\x47\x5d\x84\x93\xb7\x64\x36\x9d\xe7\xf5\x0d\x8a\xa2\x93\xfc\xa3\x59\x06\x35\x10\x48\x40\x58\x47\x51\x0d\x0b\x4a\xea\x65\xaf\xa5\x96\x86\x71\x69\x05\xb5\x53\x4e\xfd\x54\x1b\x51\x2c\x13\xd3\xdc\x83\x8e\x9a\x21\xee\x28\x5c\xd1\x54\x26\xb8\x1c\xc3\x98\xec\xa3\x00\x65\x58\x1d\x04\x0b\xcb\x81\x46\x9e\x27\x4d\x9c\x4e\xab\x1b\x1e\x5d\x06\x0d\x3b\xde\x56\x9c\xca\x2c\x41\xb2\xb7\x73\x28\x41\xce\x2c\x29\xb6\x3b\x84\xca\xa5\x25\x3f\x53\x85\x1b\xff\xd3\xe0\x40\x11\xfc\x63\xbf\x4f\x2f\x8b\x98\xc3\x7e\x93\x6e\xd1\x7b\x5c\x6f\x23\x33\x04\x7a\x21\x18\x6d\x48\x04\xe0\x4e\x49\x4f\xed\x7f\x44\x13\xfa\xc3\x56\xfd\x52\x68\xb1\xf3\x6d\xc5\xbd\x16\x15\x9a\x09\x66\x25\xa0\xf5\x15\x26\xa9\xd7\x9a\xa7\xde\xdb\x96\x9f\x35\x18\x0f\x19\xb3\x57\x6d\x54\x10\x28\x24\x96\x08\x8a\x64\xac\xa1\xc1\x3d\xcb\x84\x49\x76\x41\x94\x12\x1f\xec\x2d\x6c\xa2\xeb\x45\xd0\x74\x31\x69\x62\x88\x43\x4b\xeb\xbd\x6c\xa2\x8b\x09\xf9\x4c\x4a\xc0\xb0\xfc\x95\xb7\x96\x72\x52\xdf\x7a\x40\xe1\xdd\x91\xae\x84\x48\x05\x85\x71\x5f\x62\xdc\x13\xaf\x51\x13\x04\x16\x12\x86\x6d\xea\x73\x34\xc0\x49\x9a\x30\x24\x7e\xd8\x96\x34\x7a\x92\x09\x29\xea\xaa\x6e\x97\x89\x82\xda\x16\xe5\x2a\x87\x57\x3d\xee\x36\x71\x08\xe6\x4f\x3a\x55\x4b\xc6\xce\x25\x59\x10\x10\x55\x3c\xf5\x65\xf7\xad\x3d\xd3\x16\x3e\x30\xb6\x2b\x80\xec\x47\x43\x8a\xec\x51\xa4\x96\xf0\xf1\xb1\x9b\x01\xa0\x08\x92\x98\xc3\x82\x12\x79\xd9\x2a\xc4\x93\x98\x5c\x2a\x13\x35\xed\xf6\x19\x27\x8c\x96\x24\x94\xa7\x85\xcd\x7e\x34\x2a\x3d\x7c\x24\xf0\xfa\xa9\x7d\xf5\xd3\x99\x91\x67\xf5\x05\x8c\x7d\x31\x98\xdb\xd9\x55\xa0\x9b\xfc\xc3\x88\x42\x4f\x7e\x53\xd2\xd3\xb0\x8a\xdc\x0b\xeb\xa8\x8a\x45\xe5\x59\x2c\x88\xdd\xb0\xa0\xef\x36\xc2\xdb\xee\xe3\x0f\xe3\x4c\xb9\x2f\x5c\x95\xaa\xe6\x73\x34\x55\xa8\x9f\x44\x9b\xae\x0f\x09\xf4\x56\x59\x2e\x7b\xc5\x1a\xdc\x3e\x83\x84\x28\x57\xf1\xad\xb6\xf5\x7a\x3f\xd7\x4a\x8d\x3e\x36\xec\x38\xf3\x98\x25\x2c\x4a\x2a\x7d\x58\xc9\xd7\x42\x8f\xdd\xdf\x95\xe0\x88\x8d\xb1\xef\x1f\xed\xc4\x5c\x6c\x90\x7b\xa5\xef\xe0\xcb\xf0\x1e\x59\xd3\x6c\x99\x38\xd9\xfa\xc9\x8a\x3c\x29\xf9\x80\x07\x20\x2a\x97\xa5\x46\x96\xd5\x96\xbc\xb1\xeb\xe2\x8b\x74\x68\x0a\x36\xe3\x72\x30\xd7\x2e\x8e\xb8\xca\xbd\x4e\xcf\x51\xde\x4e\xfb\x89\x1b\xb3\xdb\x09\x16\x2a\x71\x35\xcd\x47\x5d\x3c\xc7\xbe\x09\xb5\x32\x66\xb9\x7b\x0f\x6e\xaa\x82\x37\xb7\x73\xe5\x93\x72\x5b\x38\xab\x6a\x8c\x88\xb4\xd8\x06\x3e\x51\xfe\x14\xad\x3e\x11\x6d\xc2\x17\xe0\x31\x48\x41\x67\xa0\x8b\xbb\xb5\xe5\x68\x23\xe6\x10\xf1\x3a\x34\xd9\x0b\xa7\x33\x15\x68\xa2\x96\x26\x11\x5e\x89\x1b\x48\x63\x86\xe0\x6c\x61\x80\x20\x0f\x9b\x7a\x36\x47\x43\xc7\x43\x81\x59\x0c\x28\xf9\xeb\x51\x7d\x35\xa1\x99\x89\xe8\xd9\x0d\x0b\xe1\xc3\xe4\x06\xc4\xaa\x6c\x96\xe2\x5a\xc4\x4c\x82\xf9\x4a\xd7\xea\x50\x8a\x2d\xa7\xb4\x98\x33\xa9\xe2\x5e\xbf\xf6\xc0\x97\x14\xc8\x5e\x56\x92\x76\xd5\xcb\x33\x4e\xdf\x9c\xab\x79\x89\x6b\x32\xbf\xf7\xf6\xc1\xd7\x87\x75\x61\xdd\x5d\x9d\x5e\x0a\x98\x08\xf7\xbc\x73\x95\x84\xd3\xc7\x85\xfb\xdd\x8e\x54\x24\xed\xe7\x3e\xa4\xfc\xbd\x1e\x2a\x0f\xda\x46\x0d\x90\x1e\xd6\x5b\x8b\x56\xf7\xf3\x87\x8e\xc4\x87\x9d\x26\x3a\x21\x84\xec\x9c\xef\x66\xa6\x56\x55\x52\xa3\xd9\xe9\xd2\x73\x9e\x1f\x63\xcb\xd3\x35\xa7\xc6\x61\x20\xde\xc5\x5f\x56\xcb\x36\x06\x37\x64\x2f\x5e\x9b\x7c\x80\x17\x45\x8a\x73\xeb\xe2\x10\xff\x5a\x2a\x0d\x6b\x70\xf9\x68\x0e\x32\xc0\x80\x6f\xd5\x97\x99\x92\x96\xaf\x68\xcb\x45\x2d\x75\x78\xea\x8b\x4f\x4d\xbe\x94\x8e\xee\x4f\x53\x91\x5c\xe8\x61\x0d\xfb\x6d\xb2\x3b\x73\xa8\xdb\xd3\x11\x35\xcd\x09\x80\x20\x01\xb3\xb1\x22\x5b\xd4\x52\x9e\xa7\x2c\x75\x64\x74\x2a\x05\x17\xe4\x7a\x28\xa7\xfe\x2f\xd2\xdb\x1d\x51\x76\xdd\x0d\x75\x91\x28\xcc\x51\x19\xbf\x3f\xfc\xb4\x62\x8b\x49\x5b\x6f\xe5\xab\x30\x52\x93\x12\x44\x49\x25\xd0\x0f\x5b\x46\xb9\xc3\x79\xd3\x92\x7e\xd1\x82\xdd\xa8\x55\x6e\xcd\x3f\x1d\x45\x7c\xb1\x2f\xb0\xbf\xb1\x8e\xa0\x44\x64\x1b\x88\x99\x96\x9f\xd5\x21\x66\x4d\x59\xef\x70\xe2\x78\xda\x6c\xff\xf5\x35\x70\x91\xe2\x87\xd6\xf3\xe1\xb0\xf3\xa3\xf5\xb9\x22\xde\x06\x1c\x14\x0c\xe0\xfe\x0d\xf8\xfa\x64\xae\x3d\x00\xe3\x90\x09\x86\x3d\xb9\xd0\x72\x78\x6b\x23\xb2\xbc\x8a\x3c\x1e\x12\x8d\xb2\xeb\xe6\xaa\x93\xeb\x9e\x00\x74\xc4\x7e\x6a\x7d\xc4\x48\xdf\x78\x32\x29\xf2\xa2\xab\xd5\x39\x56\xf1\x2e\x1c\x1f\xd4\xda\x23\x76\xba\x7a\xd8\x9d\xf0\xd9\xd9\xc9\x46\xf2\xa7\xee\xb2\x09\x2d\xfc\x18\x31\x55\xf4\x11\x03\x6c\xdb\x20\x46\xc8\x14\x85\xa9\x1b\x45\x52\xb2\xab\xe3\xf3\xc5\x49\xfa\xf1\x22\xe8\x71\xd1\x3c\x99\xff\xb1\x69\xb1\xd7\xf5\x57\x02\xfb\xba\xbf\x43\xe0\xd9\x3e\xee\x4f\x52\x0d\xdc\x82\xba\x29\x6d\x31\xae\xce\x9a\x9e\x34\x06\x28\x7d\xce\xd2\xf1\x3e\x46\xfc\x7e\xc9\x54\x59\x2d\xdd\x7b\xb4\xa4\xee\x03\xed\x22\x4d\xc3\x00\xc5\xe7\xb6\xd4\xe9\xf5\x40\x5f\xe5\xb7\xb9\x92\xa6\x9f\x40\x2a\xc1\x21\x37\x9e\x2d\xf2\x66\xac\xcf\x0d\xc9\x25\x09\x96\x22\x1c\x92\x78\x25\xf2\xe6\xbd\x21\x35\x36\x9b\xd3\x3a\x57\x2d\x22\x93\x86\x15\x0c\x1e\xd0\x8d\x1a\x24\xc0\x55\x90\x4a\x80\xfd\xd4\xfd\xb3\x64\x30\xf4\x19\xbf\x58\x19\xb5\x7c\xfb\xd7\xc6\x13\x05\x49\xbd\x63\x6b\xa3\xe8\x7d\x6e\x92\x45\x2d\x18\x12\x50\x9c\x5a\xc0\xc3\x77\x81\x55\xd8\xf2\xf5\x06\x61\x31\x18\xce\x0a\x7a\x21\x48\x1d\x48\x53\x9a\x1c\xa4\x6c\x48\xfc\x22\xf3\xad\xe2\xe6\x38\x1b\x6b\xa6\x07\xd0\xa1\xb3\x5f\xf7\xf1\x75\x7a\x6b\xa9\x3d\x9d\x68\x4b\xd2\x3e\xa1\x05\x06\xbf\xb2\xfe\x99\xca\x99\x1a\xf3\x1e\x1a\x67\x20\x48\xc1\x9c\x1e\x9c\x3f\x9f\xaa\x7e\xfe\x1a\xee\x83\x97\x70\x2f\xa4\x9b\xb7\xe7\xbe\xa0\x07\x98\xa8\xa1\xee\x7d\x5d\xd5\x69\x4b\x9d\xad\x19\xc2\x6f\xdc\x69\x66\x67\x99\xd4\xc3\xad\xa6\x9b\xbe\xc9\x9e\x79\xac\x35\x26\x61\x32\xde\x7e\x8a\xd0\x06\xd6\x5f\x4c\x81\x4e\x8f\xe2\x0b\x18\xfb\x2b\x54\xcc\xba\x03\x77\xe9\x37\x4c\x2b\x86\xa7\xd5\x92\x20\x36\x74\xbc\xbe\x0d\x08\xaa\x4f\xfb\x98\x13\x76\xe9\x58\xe9\x2f\xcf\x8d\x8c\xf1\x57\xb3\x4f\xb6\x1f\xc5\xfb\xc2\xdc\xf5\x04\xbb\xd7\x93\x0c\x3b\x88\xc4\x9d\x8f\x66\x19\xdf\x64\xce\xe9\x88\x43\x97\x37\xcd\x9c\x6e\x38\xd8\x1e\x04\x34\xe0\x49\xc8\x6c\x3f\x54\x57\x64\xa6\x23\xe9\xef\x92\x93\x0f\x7d\x8f\x67\x25\x4a\x27\xcf\x89\x16\x4e\x67\x42\x41\x70\x18\xbd\x51\xe8\x39\xf2\x1c\x8f\x23\xd8\xf8\x96\xb5\x49\x50\x10\x70\x49\xf2\xab\xa5\xad\xb2\xee\x0b\x8a\x22\xf9\xd6\xfe\x58\x1e\x22\x20\x99\xdf\xc1\xfe\xa0\x10\x3e\x2f\x1e\xc8\xa4\xc2\x3d\x79\x7c\x9c\x4e\xe3\x7b\xfa\x1a\xb9\xad\x3c\xf1\x19\x6f\xfd\x13\xe2\x88\xf8\x58\x98\x7b\xc8\x06\x87\xb7\x9e\x12\x2c\xc2\xc4\xc8\x7a\x9c\x2a\x5b\x81\x87\x18\xb5\x3c\xe1\x80\xc3\x30\x5b\x42\x0f\xc9\x39\x45\xbd\x4b\x55\x0c\xde\xf7\x2e\xfa\x1a\xfa\xfc\xdf\x1c\xcc\x81\xe7\x07\x4f\x1b\x76\x54\x63\x90\xb1\x1b\x17\x2b\x19\xeb\x1b\xcf\xa5\xb7\xea\x3b\x89\xca\xdd\xe2\xc6\x7a\x63\x5e\x7d\x90\x9f\x4c\x00\x10\x21\xec\xc1\x75\x39\x09\x73\x3d\xf5\x6e\x54\x7f\xe1\xc6\x56\x3b\x02\x2c\xea\xcd\xb6\xde\xf5\xbb\x9d\x3d\x2f\x84\x0d\x6b\x17\xd0\x3d\x28\xb9\x9e\xf8\xaf\xcf\x3b\xd1\x3c\x08\xa6\x49\x36\x22\xcd\xfc\x5e\xb0\xeb\xf5\x8d\xae\x40\xf9\x17\x5b\x0a\x40\x0b\x74\x74\x68\x70\xa7\x92\x2c\x04\x5f\x7b\x27\xd2\x5a\x0f\x67\xea\x2f\xfe\xa8\xd8\xd3\x4c\xea\xd6\xe1\xbd\xb6\x31\x22\x6f\xfe\x7c\xce\x25\xd8\x44\x0c\xbc\xd9\xd4\xb3\xd9\x18\xa8\x2d\x7d\xb3\xd4\xa0\x8f\xbf\xbb\x6a\xc6\xe5\xb0\xe3\x29\xe9\xb8\x1f\x0e\x3a\xc1\x98\xa7\xda\xa3\x6a\x92\x61\x7f\x93\x12\x50\xf7\x56\x89\x3b\x8e\xc3\xf7\x13\xe5\x36\xe9\x40\xa7\xc1\x58\xb4\x89\x7b\xd6\x80\x66\x31\x5a\xda\xdf\x60\x9d\x13\x5e\x94\x8a\x37\x52\xbf\x88\xc1\x49\x7b\xc1\xe2\xbd\x2e\xce\xbe\x9d\xff\x05\x3f\x58\xb8\x5e\xb6\xbf\xc9\x1a\xe0\x84\x89\xdc\x6f\x4d\x8a\x92\x31\x45\x76\xc0\x0b\xdf\x3c\xe8\x64\x7c\xd1\x0e\x9b\xd3\x36\x16\x49\x78\xfe\xc1\xb4\x64\xb7\xd9\x68\xec\xbd\xb5\x2f\x57\xe0\xd5\x1c\xbf\x12\x7c\x5f\x1a\x49\x75\xe1\x8b\x88\xdd\xd4\x26\x6d\xb1\x73\xce\xa0\x01\x0f\x17\x70\x9f\x7d\x5e\x5b\x6a\x94\x4f\xc7\x9d\x1a\xa0\xe9\xd6\x1a\xfd\xc2\xba\x43\xb9\xcc\x02\x77\xb1\xfc\x8a\xac\x71\x32\xf6\xb0\x2f\x4a\xfa\x14\x7b\xe8\x76\x10\xcf\x63\xd3\xe7\x0b\xfe\x36\x39\x1d\xbe\x53\x42\xde\xd6\xce\x76\x5f\x21\xa7\x43\xfc\x12\x2a\x6a\x83\xf2\xde\x88\xe9\xc7\xa6\x67\x32\x8e\x23\x34\x86\xa5\x34\xd0\xf0\x2f\xd6\xed\x54\xe3\xa1\x4d\x4a\xea\x61\x9b\x6a\xfc\xd6\xab\xeb\x8f\x70\xfe\xdc\x7d\x03\xd1\x79\x69\x19\xf2\xa6\xf9\x13\x5f\x37\x39\x3c\x74\xb1\x98\xeb\x12\x87\xde\xb1\xef\x2d\xd5\x62\x47\xb8\xad\xb9\xf4\xe3\x7f\x4e\xb4\x7d\xbf\x9e\x33\xde\xa1\x84\x35\x02\x5d\xa9\x3e\x3c\x31\xf0\x29\xbb\x58\x09\x9b\x2f\x26\x22\x76\x2e\xe3\xc1\x96\x95\x01\x5e\x79\x5e\xf5\xf0\xde\x3a\x73\x8f\x13\x83\x71\x97\xd3\x55\xe1\x7b\xe0\x23\x17\x23\x96\x2a\x55\xa9\x5d\x5d\x55\x46\x6c\xc1\xb7\xfd\xda\x97\xb8\xb1\xd9\x45\xb0\xc2\xea\x50\x60\xa6\xac\xf9\x20\x77\x70\x28\x79\xc2\x98\xf4\x81\xc0\x45\xd1\xab\x42\x7b\x61\x16\x36\x2b\xd0\xb3\xe2\xe2\xf4\xcf\xfd\xde\x86\xc9\xe0\xee\x8c\xa7\xdf\x7c\x40\x77\xe0\x4a\xdc\x53\xec\x64\xb0\x6e\x77\x76\xf1\x7a\x5b\x58\x1a\x4f\x0b\xd8\xe3\xb9\xd2\x6a\x7e\x6d\x24\x31\xf1\x19\xbf\x68\x82\x66\xa4\xbb\xa1\x28\x16\xbd\x30\x4a\xd3\x64\x25\xa2\xda\x96\x4a\x58\x38\x7f\xb2\xe3\xf9\x2a\x68\xd5\xb7\xc2\x42\x10\xc5\x71\x5d\x4c\x55\xb1\xe5\x64\xf7\xf9\xe8\x37\xd8\x4b\x31\x1f\x53\xe3\x03\xe7\x65\xe8\xbd\x4c\x3b\x67\x6a\x72\xe0\x1f\xed\xb7\x00\xc3\x82\x50\xcf\x32\xe4\x8d\x00\x3b\xa7\xb7\xdf\x68\x5b\x13\xe2\x75\x17\x1b\x5a\x16\x4a\x6b\x14\x10\x2c\x60\xb5\x7e\xb3\x85\xc2\x41\xf5\xc1\x7b\x40\x66\xee\xf8\x26\x92\xf9\x07\x02\x7a\x6d\xd8\x7b\xa4\xd9\x76\x32\xe2\x4b\xcf\x8a\xc3\xa8\x56\x3d\xe5\xf1\xbb\xef\xa1\xc9\xdd\xc6\xf8\xf7\x5f\x9f\x2e\xf2\xff\xfa\x3e\x9d\xf9\xd4\xe3\xac\x8e\x1e\x5f\x1f\x7c\x7e\xe9\x4d\x9c\xbb\x20\xc7\x8e\xc2\x6e\x6b\xca\x93\xcb\x78\x7a\xb3\xb8\xf4\x75\x52\x22\x30\xb2\x44\xe4\xdc\xc4\x0f\x58\xdf\xdb\xe7\x75\x38\xf3\xda\x42\x28\x77\xbe\xcf\xe1\x73\x09\x36\xf6\x13\xc8\x17\x43\x03\xf4\xb0\x03\xa0\x50\xbe\xda\xb2\xda\xd2\x0f\xcd\xbe\xfc\x2f\xa2\x0c\xf8\x01\x4d\xaa\x5e\x82\x56\x0c\xd8\x9c\x43\x91\x97\xad\xa4\xfa\x51\x24\xe7\x04\x96\x2b\x37\x2d\x04\xfb\xfc\x3e\x41\x46\xe7\xb0\x0b\x52\xde\xe8\xe5\xdb\x9d\x6b\x23\x89\x1b\xd8\x0e\xdc\xeb\xd1\x28\x8b\x19\x44\x04\xd2\x0a\xa2\x01\xfe\xc6\x6f\x96\x51\x3a\xc4\xb6\x94\x68\x71\x17\x82\x48\x2c\x0e\xac\xeb\x67\x34\x7c\xfe\x75\x94\x4d\x55\xa9\x1d\x0e\xa0\xf6\xad\x8f\x08\xf3\x12\x38\x32\x5a\x12\xc6\xc9\xf6\x7e\x9e\xd1\xf4\x58\x38\x59\x17\x24\xca\x06\x0a\xe3\x2f\xe1\xcf\xda\x6f\xc8\xe0\x6e\x25\xa5\x5c\x81\x50\x9f\xcb\x8f\x2d\x5a\x50\x78\xd5\x3c\x4e\x20\x44\x69\x5d\xd6\x8f\xb3\x06\x49\xd9\xcd\x97\x0c\x00\xa2\x3a\xdb\x45\x74\x02\x6e\xe7\xe4\x43\x8a\xb8\xae\xac\xbb\x58\x5f\x88\x67\x43\x02\xb5\xc3\x8f\x1c\x79\x7c\x56\xc9\x03\xf6\x94\x0f\xde\x1e\x0f\xca\xc4\xe9\xbc\xbf\x57\xe3\x70\x24\x84\x2b\x6c\xd7\x92\xeb\xc7\xb5\x7e\x0d\xf8\xe5\x86\x76\x24\x31\xe1\xdb\x0f\x99\x4a\x25\x5f\x1f\xc8\x73\x13\x7e\x49\x4c\xbd\x68\x1f\xca\x79\x91\x1a\x85\x1c\xf6\x8d\x7d\xa4\xb9\xe1\x62\x23\x1b\x7d\x83\x10\x1c\x08\xcc\x66\x0b\xfb\x6f\x6d\xc0\x3b\xc3\x50\x40\xad\x17\x02\x21\x78\xea\x30\x15\x0f\x97\x4a\xf3\xfe\x49\xb1\xf7\xe7\xc6\x18\xc2\xa8\x78\x5c\xf2\xb0\xbc\x30\x52\x13\x93\xd1\xb1\x0c\xa2\x5b\xda\x00\xc5\x4b\x62\xe8\x81\xb5\x04\x9d\xc8\x6a\x34\xc9\x58\x48\x55\x76\xed\xd9\x44\xc0\x1f\x8a\x95\x91\x49\x83\x87\x67\xab\x89\xf9\xe2\x71\x58\x62\x56\x59\xf3\xa4\xd0\x3b\x4f\x37\x4e\x78\xb5\xa2\xcf\x67\xa1\x51\xb4\x94\x41\xbe\xb5\x60\xd0\xaf\x0f\xfa\xb3\x88\x64\xcc\x90\x86\x9b\x7e\x84\x7d\xb3\x81\xb0\xe8\xed\xb2\x96\xbf\x61\xdf\xea\x65\xb9\xce\x4f\xc6\x02\xad\x39\x1c\x47\x21\xaf\x74\x04\x1d\x2d\xfa\xe9\x05\x53\x04\x6f\xac\x12\xb9\xa4\x92\xa8\x42\x93\x68\xbe\xf9\x16\x3b\x2e\x7d\xdd\xa6\xe5\xa9\xf5\xb7\x67\x34\x9e\xb1\x8e\x0b\xc0\xba\x83\x07\x12\x80\x3b\xd4\x3f\xd5\x92\xde\x93\x9f\x6e\x2f\x34\x75\x8a\xb6\x1c\x91\x99\x2e\x3d\x9b\x9f\x4b\xc2\x9c\x1b\x9a\x75\x21\x48\x2d\x4a\x5e\x36\xad\x1a\x62\x46\x2e\x1c\xaa\xf0\x81\x65\x94\xdd\xcd\xba\x12\xa5\xa9\x3b\x4c\x9b\xf7\xe9\x1e\x99\x2c\x76\x1c\x6d\xfb\x85\x16\x50\x11\xe1\x24\x17\xce\x63\x89\x26\x3f\xee\x43\xfb\xd8\x17\x7b\xbf\xb1\x9c\x1d\x08\x67\x1b\xbc\x31\xb8\x77\x8e\xf2\x7e\xd7\xd9\x92\x0f\x05\x80\xb2\x1e\xad\x29\x1a\x96\x8d\x43\xb9\x11\x2a\x43\x75\xda\x15\xdd\x9b\x33\x52\xb8\x0b\x11\x06\x67\x14\xf2\xa1\xfe\x29\xea\xca\xad\x89\x08\x1e\xe2\xb3\xbb\xbd\xa8\xfa\xb6\x9b\xf9\xf5\x17\x0c\xde\xe0\x15\xe2\x4c\xe1\xf5\xfa\x3c\xff\x13\x80\xa5\x2f\xd6\x40\xb5\xd1\xd1\xed\xaa\x03\x97\xc3\x9c\xb1\xc6\x78\xf1\xc4\xd7\x5e\x1f\xa4\x47\xf8\x1a\x4f\x3b\xb2\xd6\x22\xcc\xfb\x39\x3f\x7f\x02\xd5\x66\xa1\x90\xea\x61\x3d\x71\xc3\x29\xfc\x8f\xd3\xb5\x13\xc6\x0b\xcf\xa4\xfd\x37\x95\x9d\xa7\x82\xbb\xac\xd0\xcc\xe5\x33\x24\x94\x7a\xff\xdb\x55\x9b\x43\x52\xd8\x59\xda\x63\x3c\x81\x5c\x10\x38\xd9\x10\xbd\x26\x34\xef\xb8\xef\xa0\x83\x98\x6b\xa2\x4d\x50\xd3\x0b\x67\x35\xd3\x20\x96\xef\xcb\x53\x77\xc7\xeb\x26\xcc\x21\x0b\xc0\xbe\x91\xcd\xe4\x57\x47\xc8\x6b\x64\xe9\x90\x60\x4d\x14\xb2\x3b\x11\x9f\xda\xde\x82\xff\x89\x6b\x92\x22\xac\x92\xe0\x20\x14\xac\x21\x91\x17\xcf\x2a\x85\xfe\x7d\xb8\x7b\xc8\xd1\x49\x9e\xc0\xe6\xec\x3f\x90\x28\x24\xb5\xa1\x77\xf9\x71\xbf\x26\x06\x5a\x07\x61\xd8\x35\x9a\x50\xd3\xeb\xe2\xd8\x6c\x95\x7c\xcb\x24\x48\xdf\xee\x5f\x21\x91\xfa\x44\xdc\x4d\x51\xe5\xec\xf2\xeb\x66\x5b\xd0\x17\xa5\xac\xeb\xb5\xfd\xd1\xfd\x03\x24\x3e\xa5\x80\x95\x2d\x01\xa3\x07\x46\xf4\x89\xd9\xb3\x3a\x24\x3f\x89\x55\x68\xe9\x54\x71\x8c\xf6\xf6\xbf\x38\x46\x40\xc9\x97\xd9\xf7\x89\xea\x26\x34\x70\xa5\x0b\xa5\x23\x59\xc1\x04\xb2\x9b\x9b\xaa\x55\xbc\xb7\x8d\x11\x57\xf3\x7e\x2b\xe3\x44\xa7\x55\xca\x35\x6c\x1e\x15\x7a\x5c\x4e\xec\x30\x1a\x93\x63\x36\x96\x43\xc2\xfc\x7a\xd1\xf6\x63\x5b\x1f\x97\xc3\x89\xaa\x9d\xd7\xfb\x07\xfd\x37\xa3\x32\xc7\xc9\x66\xc9\xfb\xa1\x1c\x21\x4e\x03\x6c\x51\x78\xc3\xa7\x57\x85\xa4\x36\x37\xab\xfa\x87\x2b\x69\x84\x07\xa4\x8e\x91\xb3\xff\x64\xda\x0e\x25\x30\x32\x31\xf8\x9c\x98\xfc\x79\xc7\x22\x25\xb5\x90\x8a\x5c\x9c\xc7\x62\x8b\xfc\x83\x62\xa0\xab\xb2\x56\xc0\x7b\xa7\xcf\xc1\x22\x44\x2e\x23\x89\x95\xb4\x18\xd1\x5e\xb3\x7e\x81\x60\xa7\xff\x37\x73\xcf\xd1\xa3\xfd\xa0\x1e\x88\x57\x11\x2d\x3f\x62\xc3\x55\x46\x66\x04\x79\x92\xe6\x44\x4c\xa4\x1e\xbb\x5d\x99\xe3\x32\xc8\xd1\x31\x0c\x54\xb7\x94\x72\x77\x57\xfd\x9d\x07\xc6\xf1\x2e\x6c\x25\x2c\xf2\x84\x27\xbc\x41\xc7\xfd\x33\x05\x9e\x2d\x87\x59\x0c\x95\xd5\xd8\xf7\x5f\x57\x9f\xe5\xb3\xc5\x50\x69\x12\xcd\x12\xa9\xfa\x59\x46\x49\x91\x09\xe8\xb1\x36\x5c\x7c\x60\x9b\x9b\x7d\xdd\x7b\x4e\xc7\x81\x80\xc7\x92\x24\x8b\xe2\x0b\x0b\xa5\x00\x6c\xae\x59\xcd\x51\x65\xb9\xc6\xf4\xf1\xb8\xf4\x75\x58\x5e\x73\x92\xfc\xe1\x45\xe3\x9b\x33\x03\xbe\xf3\x6e\xf8\xf7\x56\x63\xfa\xa5\x76\x54\x80\x53\x82\x82\x38\x04\xbb\x7c\x8c\x78\xfc\xdc\xab\x42\x5e\xa4\xde\x53\xbd\x7b\x69\xe5\x93\xf6\x8b\xb8\xd1\x6e\x4f\xe5\x96\xbf\x4b\xee\xea\x86\x03\xc2\x38\xed\xad\x27\x3e\xf6\x13\xe9\xec\xf5\xdd\x2c\x9e\xd5\x19\xca\x7b\x1c\x9c\x13\x3c\xbf\xb8\x61\x48\x94\x6e\x32\x08\xea\x0e\xe8\xc0\x40\x35\x01\x9d\xad\x65\x26\x80\x6f\xeb\x54\x08\xe1\x4b\x6e\x0f\x4c\x01\xaf\x0b\x04\x60\x1d\x07\x40\x58\x81\x9a\xcf\x81\xc6\x7a\xde\x90\x5f\x17\xb2\xbc\xbc\x6a\xf8\x87\x4f\xa1\x89\xd3\x82\x9b\xf8\x6f\x90\xc0\x40\xf2\x95\x78\x78\xf1\x03\x86\x20\xd7\xd1\x6c\x29\xcb\xf2\x5d\x84\x6b\x54\x4f\x23\x26\x99\xfd\x36\x84\xe5\xb7\xf1\xdb\x16\x22\x54\x41\x8e\x20\x83\x3d\xe5\xc1\xde\xc4\xc2\xa4\x1b\x95\x3f\xa1\x2c\x5a\x66\xfd\xe1\x0d\x8c\x0e\xf8\xab\x92\xbf\x5f\xc7\x6a\xc8\x22\x00\xf1\x8f\xe7\x1c\x6c\x0f\x42\x33\x21\x3d\x3a\x03\xe1\x3c\xd7\x31\x98\xe3\x27\x5b\x64\x17\x0f\x9f\xca\xa3\xab\x6b\x49\xa4\x6c\x64\x40\xad\x99\x6f\x54\x80\x2c\xc2\xbc\x84\x2f\x95\x40\x7b\x65\x36\xfa\x27\x24\x66\x23\x22\xb5\x0d\xab\xc1\x85\xb3\x0e\x07\x2f\x06\x4f\x41\x70\xb9\xd6\x4b\x9c\xf7\x45\xe4\x2d\xfe\x03\xc1\x02\x0a\xd5\xdb\x6d\x5e\xf6\xfb\x4a\xf3\x7c\x24\x15\xb7\x26\x90\x1f\xee\x61\xf9\x7c\x3e\xc6\x70\x1f\xc5\xf3\xe1\xa8\xd4\xdc\x35\xea\x93\xab\xbf\x4a\x0b\xfc\xa7\x86\xfd\x46\x24\xf7\xc5\x48\xbf\x0c\x43\x11\x19\xcc\x29\xbc\xbd\x80\xf3\xb5\xaa\x0a\xb5\x0a\x88\x43\xe2\x2a\x62\x00\x8d\x5e\x67\x6e\xf4\x3e\xd6\x11\x93\x61\xfd\x1c\x51\x27\xdb\xa1\x21\x2e\x83\x1a\xbc\xc2\xb6\xff\x5a\x86\x28\x2a\x28\x57\xf9\xc0\x5a\x63\x68\x5c\xac\x6d\xad\xe3\x58\xfa\x1d\x08\x72\xba\xeb\xce\xbc\x7f\xf7\x48\x12\x87\xbd\x78\x7d\x48\x34\xbc\x9c\x80\x74\x19\xcb\x3e\xae\x99\xc0\x9f\x65\xf6\xd4\xaa\xd1\xdd\xe5\xac\x8c\xe8\xff\x93\xd1\xdf\xa8\xc7\x76\xb3\x05\x23\x01\x14\x4a\xff\xfe\x6d\x45\x88\x35\x0f\x3f\x4c\xc3\x66\xb5\x8b\x68\x88\x20\xbc\x15\xbf\xd7\xc8\xd9\xd9\x43\x34\x46\x02\xe1\x0b\x1d\x7b\x4f\xfa\xc0\xb5\x03\x13\x7d\x38\xb6\x97\x16\xda\x54\x40\x82\xb0\x2e\xad\x40\x62\xb2\x5a\x08\x95\x5a\x8a\xc3\xad\x96\xda\x88\x65\x77\x1a\xfc\xad\x3b\xca\x8b\x0e\xfd\x8b\xb8\x5d\x6f\x86\x74\x8a\x2f\x41\xb1\x2f\xdd\xd5\xd5\x1a\x25\x8e\x32\x3b\x50\x8a\xe2\xe6\xcd\xe8\x68\xe0\x15\x58\xc4\x97\xac\x5d\xc5\x39\x4b\xc0\x0c\x6b\x23\x81\x44\xcc\x04\x01\xc6\x0c\xdd\x41\x42\xa9\xa9\x18\xb2\x3c\xc4\xa7\xa5\xdf\x5c\xa3\xdc\xcd\x29\x6b\xd8\x82\xf5\x1f\x3c\x63\x4f\x37\xa0\xd1\x33\x13\x04\x67\x9a\x21\xa5\xbf\x68\x56\x7e\x20\x8a\xb8\xd1\x7f\x2c\xfd\x12\x44\xf5\x58\xcc\x8b\x13\x7e\x5f\x96\xba\x4f\x25\xc0\xcf\xa8\xc2\x8d\x04\x84\x50\x32\x64\x86\x18\x4d\x30\xce\x4f\x88\x64\x30\xbc\x9e\x74\xdb\x7c\x81\x63\x3a\xc7\xfb\xb6\x52\x7d\x78\x13\x99\x2e\xa9\xf0\xb6\xf8\xfb\xdf\x4f\x09\xbb\xc2\x0d\x54\x92\x7f\x5f\xc4\xa7\x08\x2b\x42\x56\xd8\xe1\x4d\x62\xf1\xbf\x97\xf4\x54\x16\xe6\x1b\x93\x31\xbd\xdf\x2a\x20\x34\x10\x14\xd0\xf1\x22\x0a\xc9\x4f\x9e\x10\xe9\x67\x82\xc0\xba\x61\x32\x51\xd3\xaa\xe2\xaa\x4d\x33\xe8\x56\x88\x27\x25\x4d\x2e\xeb\x34\x55\xb0\x8e\x54\xf3\x64\xa2\x4f\x7f\x3a\xfb\x4f\x3c\x4f\xca\x80\xd6\x2f\x9b\x9e\xad\x6b\x51\x9b\x03\xf7\x34\x18\x69\xbd\xbd\x0d\xe9\x08\x01\xee\x4d\x34\x01\x52\x75\x53\x22\x17\x27\x8c\x91\x3c\xfc\xf8\x9c\x83\xf4\xea\x96\x97\xd5\xc2\xba\x8f\x81\xcf\x5b\x86\x87\x7f\x0a\xa9\xca\x11\x99\xba\x8f\x84\x44\xc1\x1f\x0b\x92\x54\x70\xdf\x46\x1f\xbb\xac\xef\x2d\x52\x45\xf1\x1d\xdc\x06\x7d\xd9\xca\xcd\x7c\xce\x23\xed\xba\x9d\x36\x5a\x08\xfd\xb9\x6b\x90\x02\x2f\x4f\x77\xec\x44\x77\x6b\xce\xb3\x0c\x95\x72\x05\xe6\xea\x26\x96\x97\x10\x77\xca\x44\x55\x1b\x9d\x19\x6a\x12\x25\x1c\x5e\x02\xc9\x50\xc5\xaf\x1b\x18\x4f\x39\x67\xe3\xdf\x04\x97\xf7\x37\x42\x60\x92\xcb\xc8\xef\xf1\x8b\x23\x00\x88\x5b\xf1\xe5\x06\xbf\xc1\x2b\xf2\xac\x4e\xb6\x37\x5d\x48\xc5\xd5\x8d\x2d\x4c\x79\x9f\xf5\xcd\xc8\xbd\x96\x19\xb1\x9c\x48\xa0\xcb\xc5\xac\x8d\xd8\x93\x7a\x97\x34\x02\x05\x24\x0e\x13\xfa\x3d\xe3\x21\xb2\xa7\x72\xeb\xfd\x50\x9d\x00\x41\xa4\xf1\x32\xc7\x2f\x49\xd0\x49\x9a\x11\xc0\x0c\x38\x9b\xee\x9c\xf1\xe5\x1a\xce\x7f\x44\x0c\x24\x93\x24\x21\xcb\x1c\x67\x78\x1f\xe3\x4a\x57\x8f\x77\xd9\x77\x8c\x16\x2b\x5a\x93\x72\x76\xaf\x20\xfe\x18\xf5\x23\x41\xae\x99\xea\x2f\xab\xdc\x5d\xb7\xda\xa8\x0e\xf8\x9d\x89\x55\x70\xfa\xe5\x4b\x3d\xc5\x3f\xe3\x72\x8a\x1f\xdc\x29\x06\x8d\xd2\x3d\xba\xbe\xf9\xe5\x0d\x72\x66\x3f\x4d\x25\x29\xc1\x40\x84\x29\xc3\x12\x6c\x75\x26\x72\x16\x33\xfd\xe0\x67\x47\x0d\x9d\x69\xaa\xc5\x9f\x5f\x72\x15\x29\x07\x02\xce\x6c\x82\x16\x8a\xad\xff\xc9\x04\xc2\x01\xdd\x13\x06\x44\x0f\x27\x26\x72\x0f\x64\xa3\x14\xd3\xc3\x8f\x92\x24\xa7\xa2\x75\x1f\x9e\xd8\xce\xf3\xe3\x3f\xe6\x66\xb2\x18\x6d\x8d\x9f\xa6\xb8\x27\x01\x10\xfe\x7a\xec\xf5\x06\xb6\xe2\x97\x20\x88\xea\xc8\xdf\x7f\x45\xb1\xa5\x18\x35\xe1\x01\xe7\x5f\x1b\xfd\x76\xb4\xd4\xf4\x43\x9e\xa4\x78\x6d\xb9\x51\xdc\xcc\xc0\x58\x00\xa6\x34\xca\x74\x88\x4d\x71\xcd\x6a\xfe\x61\x9d\xbb\x61\xea\x09\x55\xd3\xb1\xeb\xa9\x0e\xfa\x04\x1d\x4a\x37\x13\xd2\x49\x67\x2b\x3f\x0f\xbb\x53\x5e\x8a\xc2\xcd\x17\xb3\x6e\x17\xc9\x25\x86\x8a\xc9\x2e\xdf\x36\xcb\x14\x4a\x86\x01\xed\xd3\xb9\xc2\xec\x7e\x6f\xe1\xe0\xc0\xbc\x4c\x4c\x63\xc3\x0d\xea\x8f\xd0\xec\xf4\x8d\x43\x02\x68\x96\xdc\xaf\xa5\xd7\x6d\x05\x2f\x67\xaf\x4f\xad\xd6\x2c\x6c\xaf\x3c\x56\x0c\xf3\xe3\x43\x16\x28\xe4\xa2\x8d\xb8\x8f\xdb\x99\x43\xdb\xc6\xc1\x82\x8e\x88\x3d\x61\x66\x64\xc6\x51\x42\xcc\xd9\x0f\xeb\x1e\x4e\xdc\x16\x49\xe1\x22\xf5\x98\xaf\x8b\xd5\xdf\xef\xa8\x9a\x08\x7a\x15\xaf\x31\xc0\x8a\x05\xc0\x7b\xe0\xad\x25\x46\x5a\x6f\x5b\x88\xbb\xe3\xfb\x4a\x04\x11\x33\xc7\x0e\x71\x93\xcc\x7b\x73\xc6\x79\x6e\x30\xf0\xa6\xd0\x7e\xa2\x4e\xd3\x6e\xab\x48\x1a\x20\xf1\x7a\x3a\x84\xf2\xd4\x11\x59\x7a\xfa\xae\x3a\xbb\xb8\x5f\x37\x86\x4e\x05\xaf\x7a\xe1\x89\x67\xde\x4b\x11\xec\xd0\xa8\x3c\xbb\x54\x56\x4c\xf4\x6c\xac\x68\x30\x6b\xcc\x77\xd5\xfc\x94\xfa\x2f\xe9\x37\x02\xd3\x9e\x2a\xa2\xad\x7a\x4b\x34\x99\x29\xca\x68\xa1\x40\x7b\x59\x8b\x56\x77\xfc\x10\x8f\xc8\xf4\xd0\x5f\xec\xac\x8b\x9b\xad\xb9\x8b\x0f\xce\xd9\x3e\xd8\xc0\xa0\x6a\x6e\xaf\xba\xe5\x96\xcb\xac\x58\x84\x88\x59\x01\x6a\x4a\x48\x72\x70\x6c\xb7\x0a\x57\x6d\x4e\x30\x39\x9a\xe2\x80\x15\xc1\xb5\x0f\x67\x05\xb5\xd1\x67\xfa\xe4\x08\xf7\xb3\x77\x5e\x24\xe6\x2a\xe9\x58\x38\xe7\x19\x93\x67\xec\x25\x47\x5e\x70\x2b\xa5\xdf\x58\xf5\xe4\x3f\xef\xd7\xa0\x7f\x49\x8f\xcf\x45\x5d\x4a\x60\x98\xbf\xc5\x28\x1c\x98\x91\x7d\x71\xe1\xae\x77\x89\x3f\x5c\x97\xe9\xcd\xec\xba\xdf\x39\x3c\x3f\x7b\x47\x9b\x52\xa8\xe8\x43\x04\x0e\x16\x49\xb7\x43\xbb\x9e\x3b\x40\x79\x1d\x15\xb9\x79\x2c\x28\xf7\xd4\x7b\x13\x67\xab\xa8\x45\xb1\xf4\x65\xf5\x57\x86\xda\x61\x73\x70\xe5\xa7\xc8\x38\xe5\x75\x83\x68\xb2\x3c\x79\x47\x37\x64\x8c\xf8\x22\xec\xe5\x51\x3f\x76\x33\x54\xc1\xf7\xcb\x3f\x28\x53\xcd\x64\x8c\x28\x86\xba\xbf\x2e\xd2\x18\x5a\x06\x7c\xa1\x32\x34\x8c\xce\xb0\xdb\xbc\xdb\x39\xe3\xbb\x2e\x8b\xbc\x08\xaf\xeb\x2b\x9a\x39\xb7\x9b\x18\x98\x3f\xad\x35\xcd\x56\xbc\xff\x57\x84\x2a\xd9\x65\x12\x5f\x86\x3f\xfa\xaa\x96\xf9\x7a\x9c\x7d\xcf\xcc\xb6\x4c\x85\xac\x37\x3b\x65\x25\x3f\x69\x53\x6a\x53\xe7\xa2\x9d\xfe\x58\xa6\xc3\x47\xa3\x32\xeb\x32\x49\x6d\x46\xc1\x98\x5a\x20\x47\xc4\x74\xbe\x4a\xa4\x21\xb5\xd4\xcd\x31\x5a\x60\x1e\x0d\xe6\xc2\x4d\xb3\x37\xc6\xae\xee\x7f\x5f\x38\x6a\x73\x25\x13\xc3\x26\x8e\x1c\x36\x94\x0e\xc4\xb7\xf4\xfd\x49\xb1\x22\x55\xfe\x67\xc9\x63\x74\xf0\xdc\x3b\xc0\x89\xd0\x0b\x51\x35\xe2\x4c\xb0\xf8\x55\xde\x6f\xec\x69\x5f\x18\x27\x00\x7d\x31\x2c\xd2\x66\xf9\x29\xf9\xf5\x3c\xad\x23\xc4\x01\x1f\xe6\x0f\xff\xac\x5b\x94\xa8\xfb\x11\x2e\x32\xe1\xd4\x6b\xd6\xc6\x7a\xa8\xdd\xda\x1f\x8e\x2b\x4f\xa5\xd2\x30\xa8\x6e\x06\x68\x36\x07\x4e\x33\xba\x88\x66\xa9\x31\x16\x72\x7e\x33\x4b\x67\x15\xda\x6a\xaf\xab\xc2\xf6\x82\x96\x5a\x90\x09\x7e\xf0\x90\xac\x67\xa1\x93\x22\x29\x11\x38\x43\x04\xb4\x12\xaa\xa5\x2e\xc8\x5f\x3d\x63\x9e\x1b\x74\x53\x9f\xdb\xac\x7f\xef\x17\x1d\xcf\x93\x53\x22\x7f\xcb\x76\xc7\x88\x10\xe7\x4c\xfa\xfd\x6e\xf2\xe4\x7f\xda\xa0\xa2\x8b\xc3\x77\xe7\xba\x26\xbb\x8f\x28\x48\xff\x10\x70\x3e\xa1\x5f\x1f\x01\xf1\x0f\x29\xdd\xf8\x80\x30\x0f\x37\xec\x16\xb4\x27\xe0\x8f\x1f\x95\x91\x87\x94\x4d\x54\xce\xe8\x74\xeb\x63\xa7\xaa\xce\x2a\x77\xe7\x57\xb6\xaf\x45\xeb\xfb\xb3\x40\x67\xbc\x6a\x9a\xd3\xdf\x8c\x99\x0b\x62\x48\x2f\xed\x9e\x44\x81\xeb\x6e\xf0\x2f\x8e\xca\x6a\x4f\x7c\x1e\x7b\x36\xfe\xad\xa6\xea\xfd\x94\x3b\x30\x0b\xf7\x09\x3d\xde\x80\x37\x6e\x40\xbb\x5a\xb4\x17\xb7\xb9\x14\xfa\x05\x5e\xd2\x94\xa2\xd1\xf1\xfd\xed\xc1\xf2\x15\x64\xb3\x7d\x8e\xee\x6c\x3a\xef\x5d\x21\x34\xa6\x6b\x72\x2d\xaf\x69\x2d\xae\x02\x5b\x87\xfd\xe9\x23\x87\xc6\x9a\x83\x03\x0a\xbc\xe9\x52\x6a\xf9\xdf\x7e\x7f\x4d\xff\x05\xf8\xc2\x3d\xb5\xd5\x87\x82\x64\x57\xf5\xde\x98\xbe\x26\x97\xb8\xa2\x4d\xb5\x3f\x62\x17\x9a\x50\xe8\x76\xff\x1c\x16\x8d\x6d\x02\x68\x54\xc5\x1a\x45\x18\xa8\x63\xb7\x59\x4a\xf8\x0d\xff\x69\xeb\x9e\x59\xbb\x19\x67\x13\x8f\x0a\x09\x10\x4f\x92\x57\xff\xe6\xba\x97\x1e\x39\xe4\xd3\xed\xb7\x86\x5c\xd7\x57\xaa\x8e\x32\xaf\x2d\xee\x2d\x00\x7b\xa6\xdb\x39\xe1\x77\x79\xa6\x78\x01\x57\x9f\x3b\xc6\xdf\xce\xb8\x79\x37\xfa\xb0\x34\x89\x0a\x9c\x8c\x50\xef\xba\x56\x2c\x2e\xc9\xe6\xa2\x65\x12\xec\xe1\x3c\x09\x34\x59\xfb\xee\xaf\xad\x58\x0f\x44\x9f\xef\x59\x1e\xeb\xb5\xec\x8f\x31\xdf\xa5\x62\x0c\x44\x5b\x77\x89\x5a\xb7\xee\xe8\x14\x50\x64\x27\x48\xba\x71\x46\xe8\xec\x37\x16\xc4\x66\xea\x25\x9c\x0a\xcd\xb2\xf9\xe9\xd3\x29\x2f\x7f\x86\xb5\xf7\xd0\x34\xcc\x2b\x5e\x88\x49\x56\xcb\x0c\x30\xab\x3c\x57\x98\x3d\xc0\x29\x5e\xb8\x89\xdf\xf0\xa3\xb8\xa1\x6a\x42\xc0\x28\xdb\xc8\x49\x3f\xd5\x26\xd5\x27\x65\x89\xdc\xda\x51\x48\x6c\xeb\x91\x3a\x4c\xb0\x28\x0e\x89\xd5\xfd\x4b\xb3\xa4\xb0\x80\xf0\xbb\x52\x3b\x6c\xce\x1d\x85\x6b\x9d\xc6\xbd\x95\x1e\x91\xaf\xbe\x52\x5f\xce\x61\xb7\xbf\xe0\x2e\xd9\x5c\x61\x2b\x30\x82\xc8\x76\x89\xe4\x3b\x8a\xdb\xeb\x4b\xc6\x13\x4a\x4b\x12\x30\x81\x30\x60\xba\xb8\x89\xa9\x17\x47\x64\x67\x4d\x1f\xb5\xe1\xe7\xc5\xf3\xa6\xb9\xd4\xcd\x9a\xb9\xd8\x0c\x99\xf9\xef\xa1\x17\x9d\x71\x3c\x29\x76\x67\x22\x43\x62\x5a\x1f\x8a\x53\x8e\xf2\x84\x93\x3c\x69\x26\x57\xaf\xa0\x62\xfc\x68\x4e\x1f\xf7\xf6\xf1\x5a\x46\xeb\x0b\x67\x5a\xa3\x68\x38\x83\xdb\xe7\xe7\xb5\x4b\x34\x0e\x15\x2a\xdd\xe7\x74\x09\xef\x27\x79\xfe\xb8\xdc\x57\x1c\xa7\xe1\x82\x05\x4f\xb6\x50\x34\xec\x80\x23\xbd\xab\xc2\x1f\x55\x2f\xd9\x51\xa1\xe4\xfd\xb8\x68\xd4\x40\x90\x26\xcf\xf6\xec\x61\xcc\xd7\xd7\xa0\xbf\x07\x7f\xd6\xb3\x99\x02\x8e\xbb\x6d\xbe\x0c\xb9\x1a\x01\x9e\xf2\xc5\x77\x4f\xed\xab\x23\x1c\xb9\x27\x4b\xc9\xaa\x22\x71\xfa\x84\x88\xac\xa3\xf2\xe9\xd2\xb3\x4e\x01\x7c\x5a\xad\x88\x67\x09\x04\x03\x56\x03\x24\x1b\x95\x65\x65\xc8\xe7\x72\x3c\x6f\x4f\x6d\x28\x53\xc6\x68\x99\x4d\x85\xde\xba\xf8\x87\x47\xcf\x38\x7d\x1d\xbe\x9e\xf5\xce\xf0\xb6\x8f\x3b\x41\xee\x5b\x2f\x93\x72\x0c\xb0\xf8\x8c\xb6\x5f\x50\x84\x10\xe9\x4c\xe1\x14\xbf\x5b\x96\xd7\x2e\xb5\xcc\xa8\xfc\x79\x50\x1c\xcb\xf6\x44\x21\x6e\x0b\x6c\x71\x94\x65\x5f\xbc\x0c\xf2\xbe\x6e\x7f\x6c\xca\x81\xf7\xbc\xa0\xc8\x4f\xd8\x86\xad\x66\xfc\x46\xcb\x71\x39\xa4\x00\x63\x4c\xcc\x14\x59\x16\x31\x10\x1a\x09\x20\x9a\x25\x24\xb0\xbc\x74\x3a\xab\x36\xef\x9b\x2f\x24\x29\xa3\x97\x77\xbf\x5f\x1d\xbd\xad\x7a\x9f\xad\xc6\x01\x99\x24\x1b\x3f\x68\x87\xc6\x5f\xfe\x39\xef\x89\x8a\x04\x50\x17\x9e\x2a\x33\x2b\xcb\xe1\xc7\x21\xac\x7e\x64\x96\xbb\xbb\x0a\x55\xbd\x6d\x71\x52\xda\x0f\xf8\x99\x78\x39\xb0\xef\xc7\x87\x95\x33\x2e\xac\x80\x1a\x74\xf3\xe4\x76\x36\x77\x5b\x97\xf9\xd7\x89\xf2\x29\xb2\x30\xc9\x2b\xdd\x62\x27\x43\xe2\x7b\x1f\xe6\xa2\x40\x61\xe8\xef\x08\xef\xc3\x6f\x43\xdb\xca\x1f\x31\x2a\x09\x0a\x92\x24\xcf\x4b\x26\xbe\x0c\xe5\xae\x8f\x4b\xeb\xcc\x59\xd2\x2d\xe7\x12\x08\x03\x00\x3b\x07\x73\x66\xea\xe1\xbc\xd3\xcd\xc6\xbc\x2e\x45\xe7\xcb\x0f\x26\x08\xb7\xb9\x68\x30\xa3\xdb\x0e\xe8\x18\x39\x42\x9c\x3b\xe7\x37\x39\x1c\x94\xb7\x80\xe7\x88\xff\x86\x0a\xd5\xc0\x9d\x58\xe5\x66\x69\x04\xa6\xe3\x93\x41\xca\x9b\x5c\x43\x13\x19\x2c\x45\xd8\xe7\x97\x4b\x5f\x82\xe2\xa9\x7a\xd9\xf7\xc7\x16\xf5\x50\x66\x12\xff\x4d\x86\x20\x09\x8f\x12\x30\x34\x45\xbb\x6a\x97\x9c\x4c\x2e\xf0\x7a\xd0\xf6\x61\xd8\xb0\x72\x4b\x06\x41\xc3\x25\xdf\xa2\x90\xcf\x0c\x51\x7d\xf4\xb3\xe6\xaf\x85\x74\xf3\xfe\x12\x94\xe2\x23\xfd\x06\xc6\x53\x01\x8d\xc5\x0f\x5e\x01\xda\x64\xb6\x85\x23\x31\xc7\xd6\xdd\x98\x05\x0a\xd4\x47\xe1\xbc\xf0\xbf\xfe\xfe\xc8\xf9\x8f\x57\xa7\x91\x84\x34\x48\x80\x4a\xca\xe9\xa8\x99\x41\xbe\x61\x04\x89\x6b\x18\xa4\x41\xc5\x98\xad\x7b\x84\x7c\x0e\xd3\x61\x02\x48\x8a\x95\x2a\x8c\xc6\xb4\x01\x80\x68\xf6\xb9\xfe\x51\xa7\x2c\xdb\x1f\x2c\xfb\xf8\x9d\xbc\x30\x4a\xb3\x3a\x1a\x4c\x0d\xbe\x8d\x97\xed\x00\x00\x99\x3e\xe0\x28\x91\x4d\xd6\xc3\x4d\x2f\x30\xcb\xe2\x17\x47\xee\x4c\x2d\xf7\xdf\xf6\xb9\x9a\xda\x2a\x7a\x98\xd3\xfa\x36\x0f\x00\xb8\x38\xa2\x7e\x1b\xe2\x37\x95\xe9\xe1\x73\xa2\x6c\xc3\x1e\xf8\x47\x4b\xeb\xa4\xe1\x40\x3d\xa2\xf9\xfe\x80\xbc\xf5\xc7\xb8\x0a\xed\x64\x4b\xca\xd4\x49\x59\xf1\xba\x9f\xe5\x48\x1a\x23\x21\x63\x6e\xaa\x8d\xae\x2a\xa6\x8f\x0c\x90\xd8\xd3\x31\x05\x4f\x44\x15\x94\xe8\xbd\x86\x76\x7b\x89\x82\xa7\xdb\xae\xaf\x6f\x4f\x26\x8f\xc8\xb3\xe2\x72\xf6\xe5\x3f\xc7\x53\x0b\xa4\xbf\xef\x6a\x13\xff\x39\x34\x59\x1e\x27\x06\x40\x00\x15\xae\x2c\xef\x07\x0a\x00\x48\x9e\xc4\x9e\x1d\xe8\x38\xe7\xc6\x19\xdc\x7d\x04\x03\x8c\x29\x7f\xc2\x23\x86\x9a\xf7\x44\x4e\xf1\x17\x83\x23\x55\xd6\x3f\x4c\x15\x79\xc1\xd9\xd6\x28\x58\x4f\x31\x81\xa1\xa4\x1c\xb2\x7e\x4e\xd2\x8f\xbf\x95\x3c\x1c\xcd\x05\xbc\xef\x0a\xf5\x2f\xcf\xdf\x5f\x54\xf6\x3e\x39\x67\xff\x80\xbf\xb7\x1e\x6f\x86\x94\x45\xfc\x38\xac\xcb\x54\x0c\x57\x1c\x60\x96\x2a\x2c\x4a\x21\x9e\xf5\x0a\xf2\xca\x52\x10\xb9\x1b\xe1\x27\x38\xff\xed\x42\x48\x33\xac\x82\x92\xbf\x87\x07\xb5\x4e\xda\xc9\x26\xf7\xb4\xef\xe9\xfa\x85\x87\x13\x21\x2a\x9d\x41\x39\xad\x88\x8a\x09\x40\x63\x0d\x3e\x1b\x1b\x61\xf4\x2b\x41\x37\xe0\x33\x28\xd2\x0f\x29\x8a\x58\xd6\xe7\x32\x7d\x81\xcf\xba\x1a\x5a\x4b\xec\x4d\xaf\xf7\xe3\x0c\x4c\x20\xe8\x57\x67\xd6\x5f\x6c\x66\x09\x38\xb9\x39\xf9\x2a\x29\xc4\x23\x0a\xf1\x30\x9d\x2d\x9b\x46\x75\x57\xdf\xd2\xa8\xbf\x13\x37\x85\xce\x46\xb6\xb8\x34\xf9\x93\xd2\x3a\x67\x79\x16\x22\x6f\x7e\xf8\x41\x16\x9f\xdc\x43\xd9\xdb\xe2\x9b\xbb\x21\xb8\x3f\x5f\x68\xa5\xe4\x2e\x99\xb3\x3a\x8a\x36\x4c\x4e\x0d\x40\x22\x40\x47\x5a\x20\x42\x33\x25\xc7\x72\xcf\xac\x65\x39\x23\x8a\xfd\xbf\x95\x6f\x6e\x66\x75\x7c\x47\xdc\x93\xd5\xe9\x26\x14\x58\xdf\x68\x0b\xf7\x1a\x3c\xad\x80\x01\x43\x66\x34\x82\x3e\x98\x90\xa2\x38\xcf\x72\x6a\xf8\xbf\x82\xa5\xc9\x36\x62\x8d\x64\x01\xca\x32\x07\x64\xa0\x4a\x9f\xd0\xce\x36\x2e\xb4\x4d\x2d\x4c\x19\x95\x5c\xe5\x0e\x37\xed\xf6\x4b\xe4\x82\x20\x5f\x63\x70\xd3\x46\xb6\x48\xb5\x43\x99\x7c\x25\x9d\xca\x2d\x21\x57\x48\x8b\x4b\x90\xe3\x4d\x9c\x67\x50\x3d\x75\x48\xbb\x5c\x16\x75\x17\x2e\xae\xc9\x9a\xb0\x2f\x1b\x14\xc0\x2c\x1d\x1d\x62\xdb\xf4\x74\xe4\x6f\xd7\x12\x9a\x1c\x33\x42\x33\x4d\x40\xcc\xa4\x51\x4b\x70\x38\x3f\x18\xa9\x45\x22\x05\xed\x7b\x26\x80\x56\x85\x20\xf8\xf7\x7f\x02\xb2\xf3\x5e\xbc\xdb\x50\x67\xc2\xf6\x1f\x5b\xe5\xbb\xf3\x6b\x3f\xa6\x94\x2e\x54\x61\x92\x28\xcf\xab\xeb\x3a\x78\x0f\x38\x66\x6f\x5e\x41\x7f\x0e\xaf\xdb\xc4\xb7\x14\xf8\xb3\x03\xfd\xec\x5f\x85\xe8\xd7\xa5\x01\x48\x1d\xfb\xf1\x91\x11\x23\x78\xa5\x77\x96\x3f\xdf\xce\xa5\xd9\xe5\x04\x31\xb7\xe7\x6e\xcf\x60\xe3\x51\x30\xa0\xff\x02\xb9\x7c\xe1\xc4\x32\xcf\x8e\x2f\xf0\x9b\xf0\x7e\xf5\xfa\x87\x26\xcf\xa4\x63\xbf\xb7\xb6\x3d\x38\xf0\x3e\x3c\x11\xd8\xa4\x5c\x10\xab\x13\xd5\x5d\x5f\xc4\x95\x59\xd5\x3d\x5a\x8f\x6a\x9a\x10\xfa\x9b\x56\xee\x6f\xec\xf9\x60\x63\xaf\x6d\x00\xd4\x69\x24\xa4\xda\x9d\x84\x43\xf1\xa0\x4e\xa9\x96\x69\x79\xc4\xbb\x6f\xef\xdb\x08\xb0\x6a\x55\xd9\x20\x11\x53\x98\xb6\xa4\x99\x5e\x0b\x38\x52\x3a\xec\x5d\x6c\x5a\xc3\xee\x5b\xef\x07\x26\x4c\x78\xb6\x67\x1b\x9e\x7a\x61\xae\xe4\x8d\x13\x81\xfb\x6d\x8b\x21\x32\x36\x96\xf7\xce\x08\xc1\x99\xc8\x1f\x39\x63\x7e\x39\x74\x60\x85\xb8\x51\x87\xb8\x4e\x9a\x6c\xfc\xeb\x87\x78\xb7\xb3\x4c\xff\x1d\x1f\xc7\x98\x97\x1f\x15\x72\x32\x9f\x3f\x10\xf6\x55\xd4\xa9\x25\x9b\x40\xf9\xb1\xf1\xce\x0d\xb6\x6d\x00\xdd\x2f\xe1\xbb\x40\x04\x91\x3b\x01\xc0\xbe\x97\x41\xa2\x8a\x19\x8e\x02\x35\x72\xf3\x03\xab\x07\x67\x05\x5b\x23\x69\x0f\xbf\xbe\x64\xe6\x69\x3b\xa5\x3e\xb4\x0a\xbf\x4f\xb7\x9c\xa0\xd9\xd6\x79\xc9\xa7\x77\x74\x82\xf6\xf7\x82\x60\x64\x0d\x8b\xfc\xdd\xe8\xe3\xd4\x34\xc2\x66\x47\x39\x2a\x72\x13\x8a\x6d\x00\xde\xfa\x6b\x30\x6b\xe2\xc4\x23\xb1\x54\x6d\xd4\x26\xfa\xbe\x23\x3f\x6c\x96\xcc\x0a\x17\xd0\x17\xe3\x91\xdc\x04\x00\x14\xcb\x73\x2a\x51\x8d\x66\x7f\x78\x49\x44\xd4\xcb\x14\x9a\x62\xd8\x3f\x66\x21\x67\x2d\x9d\x3d\x73\xe3\x09\x95\xf5\xc9\xe2\x1f\x9d\xda\xae\x7f\xe4\x5d\x5f\x52\xf7\x72\x17\xb6\xcf\x73\x38\x5e\x0d\xc1\x63\x8b\x4d\x69\x6f\x49\x98\xd4\x2e\x94\xc2\x66\x2e\x97\xca\xbc\x52\x5c\x7a\x20\xcb\x9f\x20\xfd\x8e\x5a\x33\xca\xb5\x69\x63\x49\x05\x1f\x49\x66\x88\xa4\x9c\xd3\x9a\xc9\xf7\xf5\xca\x6a\x7b\x70\x6b\x6e\x32\x03\xa2\x8a\xbb\xca\xcd\x19\xd7\xfd\x2b\x97\x6d\x2d\x8a\x71\x3b\xeb\x08\xb5\xdb\x3e\xb9\xee\x2b\x2f\x9b\xca\x2f\xd5\x0c\x15\x49\xfb\x51\x8f\x90\x4d\x5e\x2f\xc7\xf4\x81\x20\x4a\x76\x05\xb9\xaf\x22\x39\xbf\xf3\xc5\x51\x7b\x1d\xfe\x32\xc2\x7a\xf0\xc7\x4d\xa8\x6f\x2f\x5f\xed\x0b\x33\x6b\xbe\x3f\xfb\xf4\x1a\xf8\xde\x42\xee\x8e\xc9\x5b\xd2\x90\x4b\x34\xb6\x3e\xda\x4c\x2f\xd0\x99\x96\x8c\xf4\x1c\xfd\xd9\x58\x4c\x0f\xc4\x39\xe2\xad\x22\x6d\xe9\x18\x46\x83\x03\xb6\x25\x8d\xe2\xfc\x2d\x44\x7c\xfc\x20\x78\xe7\xc9\xac\xdc\xa0\x54\xb8\x07\x3d\xb1\x46\x36\x23\x22\xad\x8d\x77\xe7\xd6\x5f\xa8\x67\x6d\xb0\x22\x2f\x5d\xfc\x65\xbc\x6e\xfa\xc4\x2a\x7d\x07\x38\x0b\x38\xf1\xe8\x04\x25\xca\x43\xf8\xcd\x08\x5c\x29\x60\xc0\xc2\xbc\xb1\x2a\xf2\xe6\xc6\x4f\xfc\xfd\x8d\xf9\xd9\xd5\x5a\x73\x48\xeb\xef\xb5\x60\x01\x30\x26\xf7\x13\x20\x66\x86\xe6\x07\xe6\x81\x80\x95\xc5\xa1\x53\xc2\xe0\xd8\xe2\xfa\x50\x29\xcd\xfa\xd7\x93\xa6\x4e\xd8\x3d\xd6\x90\x7c\x5d\x53\x10\x34\x93\x04\xe7\x63\x29\xfe\x98\x94\xaa\xb9\xef\x9f\x9d\x7e\x7b\xac\x6a\xab\x81\x90\xeb\x4d\x25\xba\x6d\x45\x3c\x54\x83\xf2\xce\x58\xd0\x69\x33\xdd\xf7\xf7\x53\x19\xeb\xed\xfc\x0f\x13\x72\x18\xb2\x3c\x35\xc5\x5c\x85\x88\x55\xc1\x66\x63\xb9\xe4\xac\xaf\x07\xb9\xc2\xa1\x0b\xf6\xa3\xad\xb7\x7f\x73\xa4\x6c\x34\x1f\x90\xa4\x86\xb9\xb4\xd5\xe8\xef\x4a\x52\x6b\x19\xe8\x02\x50\xb9\x52\x80\xf1\x22\xd9\xd4\xbe\x2b\x2f\xb1\x66\x37\x3f\xc6\xab\x73\xe3\xb5\xfc\xe7\x71\x03\xb5\x09\xa0\x09\xff\x2c\x8e\xe8\x94\x01\xf2\x7b\xf9\xa0\x2d\x7a\xea\x47\xb8\xb5\x79\x07\xc1\x5c\xe8\x84\x29\x3c\xd2\x9b\x11\x5c\xd4\xdd\x30\x7e\x00\x43\x45\x72\x20\xbb\x5e\xc2\xdb\xdd\xdc\xeb\xdf\xf7\xfd\x27\x13\x6f\xf7\x9d\xd5\x9a\x81\x60\x7c\x59\x98\x65\xdd\x18\xad\xd0\xee\x72\x15\x22\x0f\xd4\xc4\x22\x9d\xc5\xce\x28\x19\x90\xc7\xf2\xe7\xcd\x5b\xb9\x6c\xc0\x24\x25\xc9\xa2\x24\x85\xca\x89\x9e\xa0\x9a\xf1\xe0\xab\xe8\x77\x9c\x72\xb9\x2b\x47\x53\xd9\x0c\x84\xfb\xb8\x8a\x62\x00\x3d\x07\x4b\x0f\x00\xea\x09\x17\x9c\x02\x9e\x17\x97\x37\x48\x0d\x50\xda\x1a\xd8\xc8\x04\xd2\x98\x50\xd4\x93\x62\xa9\x78\xc0\xea\xa9\x27\x37\x6a\xab\x4d\x3e\xde\x3a\xc2\x7f\xf0\x39\x08\x0a\xb0\x1b\x92\x11\x3c\x23\xa9\x8c\x40\x34\xe2\xaa\x0f\xae\xfb\x61\x22\x5c\x99\xa9\xef\x3a\x05\x83\xe9\x43\x20\x0e\x44\x39\xfc\xf6\xc0\x2a\x0a\x72\xff\xb3\xe9\x4e\xff\x5a\xd2\xc1\xd7\xdd\x54\x53\x77\xac\xd5\xf3\xec\x32\xe9\x14\x10\x85\xdb\xfd\x57\x8b\x09\x19\xa7\xfe\x77\x16\xb3\x84\x7d\x0a\x1d\x3a\xcc\x42\x1b\xfb\x02\x9a\xb7\xb7\x19\xed\x64\x1c\xdc\x9f\xef\x8f\x7b\xd0\xc6\x7f\xd7\x6f\x59\xe8\xa5\xd5\x59\x90\x9a\x52\x14\xee\x09\x26\xa2\xaf\x64\x48\x50\x9b\x62\x1d\x03\x02\x2a\x3b\xd5\x86\xa5\x6d\x9b\x96\xad\x6a\x9f\x72\x18\x68\x63\xa3\xb6\x0f\x6b\xd2\x4f\xf2\xf5\x23\xdd\xce\xa4\xa9\xe9\xe5\x0f\x97\x96\xce\x04\x98\x97\x9c\xd4\x82\xcf\x30\xad\x6d\x63\x9f\xbb\xab\xa2\x8b\x2b\x7c\x5c\x34\xda\x68\x96\x65\x13\xed\x59\x96\x32\x54\xbf\xb1\xc7\x52\x95\x06\xb5\x88\x17\xe3\x18\xf4\xcb\xd8\x0b\xa0\x3a\x6e\x59\xd7\x7c\xcf\xcb\x18\x1d\x0e\xa4\x52\xe1\x5e\x3f\xc9\xc3\x82\xa1\x2d\x44\xea\x70\xb9\x92\xee\x56\x0a\x1f\x7b\x77\x17\x36\x2b\xcd\x35\x0e\xf2\xbd\xd7\x43\x22\xa1\x79\xbb\xb0\x3f\xd1\xe8\xa5\x98\x10\x47\xa9\x87\x02\xbd\x19\x74\x2f\xc3\x3b\xbc\x49\xc7\x0a\x97\xa9\x81\xd5\x48\xb3\x13\xc2\xcb\x93\xb8\xb6\x9a\x50\x43\x3a\x31\xd5\x46\x2e\x92\x2d\x54\xb2\x20\x15\xdc\x48\x3b\x1a\xa4\xae\xc8\x45\xfd\xfe\xa0\xc3\x3e\x69\x99\xc7\x53\x79\xad\x6f\x2d\x51\x30\x16\x22\x5c\x1f\xdf\x32\x4c\x17\x39\xd3\x19\x24\x4c\xac\x64\x42\xf3\xf7\x64\x42\xb2\x55\xc8\xd5\x77\x32\x44\x03\xfa\x0e\xaf\x54\x98\x95\xfe\x20\x03\x95\x74\xa6\xd1\xb4\x43\x79\x33\xb0\x02\xca\x58\xfa\xeb\x0f\x01\x68\x4c\x52\x47\x39\xe5\x8a\xfb\xc4\xe3\xa3\x54\x9d\xd2\xc2\x07\x87\xbf\xae\x04\xab\x11\x45\x11\x92\x26\x43\x8c\xfd\x4f\xac\xb6\x89\xca\x4b\x4c\xae\xd6\x49\x89\x00\xf1\xf8\xd1\x7e\x72\x79\x9b\x6e\xeb\xc2\xd8\x20\x3c\x10\x22\x4c\xc5\x85\x1d\x79\x5b\xa6\x17\xa1\x6d\x15\xd1\x7a\xee\x21\x84\xfb\x19\x46\x94\x97\x84\x75\x50\x6b\xbe\x3f\xd7\x37\x18\x51\x42\x5e\x1e\x4f\xa6\x2b\x3f\xd6\xa4\x6c\x14\x76\xfd\x13\x94\x0b\x26\x05\x54\xf0\xcb\x4f\xc5\xa7\x98\x9d\xa1\x15\xdd\x46\x61\x9a\x4f\x97\x51\x6a\xdd\x48\x84\xa6\x03\xf5\xf7\xa0\x0c\x5b\x26\xfb\x46\xc5\x10\xb3\x0a\x8a\x94\x92\x44\xb5\xc0\x0e\x13\xc0\x22\x51\x2d\x50\x4c\xfd\xa2\xeb\x9c\x2d\xea\x67\xfb\x1d\x11\x18\xfe\x59\x32\x28\x41\x89\x23\x3a\x79\x06\x63\x02\x9f\xf8\x33\xf8\xe6\x11\xa4\xf9\x59\x4c\x11\x94\x53\x0a\x40\xbc\x38\xe9\x85\x25\x18\x88\x6d\xee\x57\x43\x8a\x0a\x85\x75\x1f\xd3\xd9\x5d\x39\x7a\xfe\xc2\xcf\x2b\x65\x6e\x55\xb0\x01\x7c\xf1\xb2\x62\x8d\x28\x3c\x66\x96\x58\xcb\x3b\xe1\x6e\x50\x42\x44\x17\xc5\x0c\xa8\x0f\x7c\x70\x2e\xc5\x43\xc0\xc4\x28\x42\xc0\x0f\xa0\x60\x91\x6a\x98\x85\x34\xb5\x43\x71\xbc\x5e\x92\xc6\x4e\xb4\x2e\xf3\xde\x28\x2e\xd9\xf5\xda\x73\x84\x2d\x8b\x53\x0f\xc1\x53\x2d\x12\x47\xfd\x9c\x16\xf7\x1a\xdd\x40\x89\x45\x74\x42\xe0\x74\xb5\xf6\x8f\x78\xf1\xc2\x75\x8f\xaf\x7f\x4a\x61\xd2\x03\xa6\x55\xae\x25\x2c\x13\x5d\xbb\xaf\xb1\xde\x52\x3e\x7a\x36\x5c\xf9\x98\x16\x2c\xf0\x3d\xb1\x88\x1b\x93\x47\x76\xa5\xb5\x00\xbd\x1b\xfe\xaf\x13\x15\x3d\xda\x04\xad\x3b\x9e\x2d\x3f\x36\x3e\xb7\x4b\xd5\x2f\xce\xb9\xd9\x31\xe0\x6f\x42\x2a\x6f\xf3\x66\x38\x08\x88\x20\xb6\x48\x52\xc1\xfd\x47\xbe\xae\xe5\x7c\x47\x75\x0e\xef\x2e\xad\x39\xf0\x8b\xc1\x46\xb5\x95\xcf\xd3\xe0\xb1\x45\x2d\xaa\x75\x84\xc7\x9a\xce\xc4\x36\xd8\x8f\xdd\xd3\xe0\x6d\xe5\x6b\xce\xa8\x98\x25\xb7\x27\x67\x7e\x30\x15\x73\x5b\x69\xc2\x42\xfb\x84\x98\xe5\xf7\xfd\x6c\xf3\xbb\x07\xda\x54\xc0\xfe\xe1\x0d\x0f\x25\xdc\x02\xc5\x73\x14\x31\x8e\x28\x8a\x96\xdb\x14\xdb\x76\x6b\x26\x4e\x5c\xde\x25\x16\x15\xd1\x50\xb2\x16\x19\x17\x0d\xad\xbc\x08\x87\xea\x2c\x56\x11\xb9\xbd\x4c\x3a\x17\xe3\x96\x3a\x12\x0d\xf0\x50\x6d\xd4\x54\xfc\x6e\x37\xa6\xb4\x8e\x68\x0a\xa3\x8c\x96\xda\xcb\xf7\x30\x01\x5e\xa9\x81\x25\x7d\xb1\x3f\xb6\x4d\x53\xe7\x8f\xdb\xb7\x3a\x57\x7f\xe3\xe1\x65\x7a\x89\xc1\x9e\x9d\x7b\x8b\x38\x2e\x82\xbd\x79\x89\xb8\xb8\x3a\xf1\x1f\xee\x60\xa3\x1d\x42\xd5\xf8\x8c\x23\x23\x4b\x06\x87\x38\x5c\xb1\x23\x13\x20\xf2\x71\xe3\x47\xf7\x99\x85\x1a\xbf\x1c\x93\x9f\xea\x57\x27\x79\x53\xf7\x6b\x14\x75\x1a\x6a\x78\xf9\xb2\x89\x10\x26\x8b\x4e\x53\xe7\x7d\x0e\x44\x80\x42\x2f\xc3\x1d\xcf\x0c\x03\x88\xa1\xc2\xff\xf5\x4c\x8a\x68\x0c\x77\x51\x95\x71\x9c\xd2\xd9\x3d\xca\x22\x7f\x67\xc6\xeb\xc9\xbc\xe4\xe5\x55\x45\x11\x1b\xe4\x4b\xc0\x16\xf1\xef\xcb\xc8\x96\x2e\xaa\xaf\xf9\x2c\xd9\x8a\x00\x06\x40\x24\x1c\x43\x60\x75\xae\x6e\x64\x20\xc0\xf2\x1a\x8b\xdf\xb7\x20\x48\x1b\x07\x5e\x94\x7d\x8a\xdb\xcc\xdc\xfd\x76\xb5\x60\x7d\xa6\xfe\x66\x14\xbd\xad\xaf\xa2\xdb\xeb\xa3\x8e\xfc\x78\x61\xe6\x24\x94\xe0\xf9\xba\xed\x15\xfd\x40\x83\x5d\xc6\x2f\xbe\x51\xce\x87\x04\x06\xec\xb1\xa3\x58\xba\x05\x8c\x1e\xd4\x7b\x59\x34\xbf\x13\x37\x21\x08\xa3\x02\x7c\x04\xf5\x6e\xdf\xea\xe2\xaa\x91\x35\xeb\xf7\x1d\x4b\x6e\x50\x7f\x7d\x91\xfb\xd5\x0c\x7f\xe1\x88\xa8\xcb\xdf\xa7\x67\x86\x78\xa2\x94\x6c\x0e\x1b\x45\x45\x0d\xf7\x45\x14\x68\x45\xe8\x8a\xde\x3a\x5d\xc7\x84\x71\xf6\xfd\x86\x39\x6b\x6b\x78\x79\x3f\xc8\x20\x76\x37\x1c\x70\x38\xb6\x1a\xe1\x6c\x6e\xb2\xde\xca\xd6\x6e\xbb\xc6\x56\x69\x8f\xad\xcf\x02\x3b\x66\x0c\x5f\x0c\xfb\x45\x9a\x90\xf5\x5f\x78\x08\xc6\xb4\xfa\x36\x11\x6b\x54\x7a\x61\xda\xc5\xe9\xc3\x5e\xdb\x5e\xbc\xc2\xc3\x63\x90\x9d\xf9\xc5\x85\x02\xf7\x36\x2f\x19\xc9\xae\x85\x17\xb5\x47\xa2\x1c\xe1\xd8\xc8\x5d\x75\x97\x9a\x75\xf6\xa6\x65\xe2\xf8\x04\x6a\xca\x7e\x97\x0c\x84\x8b\xb2\x32\x07\x45\x57\xdb\x5c\x80\x7f\x7d\x48\x50\x0f\x23\x9b\xe0\x6b\xd4\x5c\xe3\x57\x1e\x75\x68\x81\x09\xb3\x1d\xab\xed\x47\x9d\x8c\x1f\x45\x6b\x8f\xe2\x5e\x75\x34\x1f\xfa\x50\x69\xa2\x96\xcd\x6f\xd6\x98\x5a\x2f\xba\x51\x62\x70\x68\x02\xb8\x6f\xc3\x5e\xb5\x08\x86\x7d\x60\xed\xa2\x65\xfe\xdd\xce\x7d\x39\x6c\xb3\x59\xce\x8b\xb2\xaa\xf2\x97\x0f\x52\x42\x84\x57\xc0\x8a\x0e\xc5\xaa\xbe\xe1\xef\x31\x51\x0d\x1e\x2e\x8d\xa9\xf7\xc1\x65\xc3\x55\xb7\x28\xe5\x63\x18\xcd\xe2\x1c\x0e\x5e\x91\xdc\x7a\xbd\x7a\x39\xd8\x60\x3f\x9f\x7b\x7c\x9c\xfd\xa1\xfe\xd2\x12\x02\xff\x4a\x72\xe3\xab\x3d\x3d\x3c\x0a\x79\x5c\xd5\x50\x1a\x8f\xe4\x91\x87\xf8\x9a\x30\xab\xee\xb4\xf5\x35\x25\xc2\xfd\x59\xd2\x4a\xad\xac\x94\x38\x5a\xa1\x86\x3b\x64\x1c\x92\x1e\xf2\x50\xaa\x42\x72\x3b\xbd\x8a\xf0\x21\x3e\xca\x05\x29\x4e\xc5\x11\x0c\x6a\x66\xbb\xf3\x5b\xb1\x1c\x83\x0d\x09\x1c\xa6\x13\xc1\x00\xd0\xeb\xf6\xd5\xeb\x3b\x05\x1a\x8b\xa6\x40\x9f\x1d\xfc\x69\x04\x91\x89\x04\x52\x0e\x39\x99\xd8\xfe\x96\x21\x8d\x1d\xa0\xd2\x68\xa1\x31\x1c\x87\x72\xbc\xe4\xb2\x45\x55\x44\x81\x42\xa7\x1e\xd1\x25\xbe\x68\x85\x07\x47\x31\x58\x2f\xf9\x5d\x17\x9b\x89\xcb\x60\xec\x8b\xfb\x95\xb5\xb7\xbe\xf0\xa0\xb4\x13\xe3\xf9\xef\xae\x2a\x4c\xd8\x00\x84\xdf\x8e\xa6\xfe\xa6\x1a\x6d\x3e\x16\x9f\x5e\xc6\x25\x95\x02\x4a\x73\x03\x34\x68\x7d\xb7\x56\x75\x0e\xd1\x9c\xb3\x1d\xe3\x08\x06\xc1\xc0\x75\xcf\xe5\x74\xc9\x61\xcc\xd5\x74\xbb\xdb\x01\x57\xb5\x1e\x3e\x6e\xd0\xa7\xec\xe9\x00\x8f\x2f\x3a\xb9\x97\x39\x2d\xd6\x55\x98\x01\xeb\x70\xcc\x24\xf5\x57\xb4\x43\x46\x31\x47\x16\xc6\x82\x64\x5d\x12\x3f\x2f\x1e\xdc\xa4\x97\xfe\xe0\xf2\x3a\x8a\x09\x73\x54\xe2\x4c\xfe\xfa\x71\x5b\xa7\x07\x2a\x83\x8d\xd3\x0e\xd9\x70\x47\xbb\x6a\xd6\x78\xe4\x21\x82\x1f\x4a\x49\x34\x19\x8e\xb8\xff\x7c\xc1\x15\x5e\x2c\x14\x97\x1e\xe9\x24\xb6\x6b\xbe\x62\x35\x6d\x53\x42\xfe\xd7\x3d\xbd\x56\x5b\x8e\xa0\xfc\x69\xcf\xed\x4d\x30\xbf\x29\x67\x39\x7b\x32\x24\xad\x49\x55\xb1\x1b\x99\x40\x7a\xce\xc9\x90\x84\x69\x02\xea\x3b\xb6\x25\x14\x8d\x0e\x34\x87\x66\x3e\x4d\x07\x9d\x78\xd2\xa2\x60\xc4\xec\xef\x0e\x38\xe3\xd0\x16\x20\x56\x3d\x86\xdc\x0d\x8f\x20\xd4\x8b\x9a\x95\x0f\x23\x6f\xad\x91\xda\x47\x74\xa2\xe4\xf0\xb9\x74\x2b\x60\xf6\x71\xa1\x8e\xe0\x06\x71\xa6\x6a\x96\x86\xc9\x6f\x0b\x4f\x16\x2e\x05\x13\x25\x11\x06\xef\xa2\x14\x1f\x11\x39\xb7\xdc\x1a\xf0\xf7\x94\x29\xe7\x9f\xfd\xbb\x11\x86\x5b\x20\x07\x1c\x57\x9a\x3f\x9a\xa0\xdb\xb2\x65\x90\xcf\x3d\x26\xb6\x21\xde\xd2\xc5\xcd\xb4\xae\x13\x75\x1c\x65\x66\x6b\x89\xdc\xdd\x1c\xce\x38\x6f\xf7\x22\x41\x9f\x9a\xde\x2b\x06\xe8\x08\xea\x47\x8b\xcc\xd8\xd0\x2b\xb6\x6d\x06\xa9\x60\x62\xc5\xcd\x86\xa9\x0c\x05\x79\xb5\x9e\xfa\x2b\x11\xbe\xb2\x71\xfc\x6b\x49\xd8\x37\xac\x96\xc4\x61\xcc\x55\x3e\xe2\x32\xfd\x56\x57\x2e\x26\x0d\x1b\x85\x7b\x91\xc8\xa6\x58\x90\x69\x27\xb1\x9b\xff\xf2\xe2\xbc\xd7\x17\x6c\x56\x0b\x71\x88\xfd\xa7\x10\x8f\x3d\xab\x1c\x84\x5c\x37\x85\x15\x70\xb9\x3c\x47\x78\x51\x4e\x29\x59\x56\x7f\x25\xd1\x94\xb4\x39\x8d\xc5\x2e\xe1\xc5\x53\xd2\xa6\x97\x66\x83\x04\x1e\x54\xf4\x0c\x06\x3b\xbf\x6e\x75\xb2\x3d\x47\x2a\x83\x3d\x71\xa1\xe4\x73\x9a\x17\xbc\x2e\x2f\x06\x49\x7e\xad\x13\x69\x5a\x13\x97\x42\xf4\xc6\xfb\x4d\x02\x12\x65\x3d\x69\x02\xe9\xb3\xb5\xd8\xc8\xb4\x43\xfd\xc8\xa6\xb2\xe2\x40\x04\xa5\x09\x0f\x7c\x03\xcb\xf4\x8d\x78\xb7\xd7\x7d\xf5\xe1\x0b\xef\xf8\x67\xfc\x75\xd3\xf2\xe6\x91\x13\x06\xe8\xb5\xfd\xba\x01\xcc\x77\x94\xd9\x66\x91\xef\x63\x35\x32\xa3\x76\xb8\x3f\xc1\x12\x26\xcb\x19\x99\xcd\x90\x6b\xef\xbe\xbc\x8e\xd4\x59\xe5\x8e\x06\xde\xf7\x5c\xcf\x3b\x7c\xa3\x05\xb8\x66\xf4\x33\x40\xa4\x83\xfd\x0c\x42\x64\xbb\x00\xbb\x5d\x66\xef\x4a\x59\x38\xf1\x85\xca\x30\xf6\xc8\xa2\x79\x66\x1c\x3d\xd3\x6b\xa3\xf0\xf7\xe4\xd6\x6d\xc4\x5f\xd4\x33\x71\xe7\x38\xa2\x5f\x87\x96\x62\xfa\xa1\x13\xdd\x49\x04\x83\x14\xa5\xb0\xed\xde\xd7\x76\xb9\xef\xae\x4f\x73\x77\x8f\x37\x96\x13\x2b\xc1\x6f\x17\xe6\x36\x0c\xae\x13\xa1\xd3\xa6\xc9\xaf\xff\x64\xf7\x5a\x5c\x14\xbd\x5c\x7f\x51\xc4\xf5\xb9\x53\x46\x32\x52\x59\x4e\x7d\xac\x96\x1e\xdb\xfd\x1d\xf1\xd7\xcc\x7c\xaf\x29\xda\x55\xe5\xda\xec\xb2\x65\x71\xdc\xa7\x67\x17\xbe\x2c\x62\x69\x01\x61\x64\xf9\xb6\xeb\x0a\x6d\xa9\x3b\xb1\x2e\x52\x02\x15\x9a\x2a\x55\x71\x08\x76\x87\x5d\x8b\x74\xbf\x42\x0e\x54\xce\xdc\x6a\xcd\x55\x3d\x4d\x98\x8b\x48\x1c\x67\x9e\xff\xcc\x8b\x4c\xa1\x82\x9b\x3d\xce\x40\xee\xef\x2a\xf0\x8e\xdf\xf4\x68\x99\xe5\x68\xee\x44\xd0\xf4\x09\xd4\x61\x72\x93\x25\x5e\x83\x85\x73\xc4\xfb\xe8\xb7\x53\x55\x20\x32\x62\x57\x09\xd7\x91\x78\xaf\xb0\x93\xd7\x97\x88\x20\x5c\xab\x63\x6b\xf4\x33\xad\x90\x4e\x19\xdd\x3b\x95\x6b\xe5\x92\x8e\xfc\xbc\x7f\x17\x65\xd1\x5b\xd8\x6e\xfc\x16\xd7\xb0\x80\xdf\xb0\xc0\xc8\x8a\x0f\x6d\xb5\xc1\x06\xf3\x93\x99\xf6\xa8\xb3\xd0\x91\x15\x10\x06\x31\x8e\x23\x4e\xef\xbf\xba\x1a\x72\xc4\x5e\x53\xaf\x78\x98\x6c\xff\xc5\x19\xe0\x0a\x61\x16\x77\xc0\x5f\x1c\xfa\xd4\xd3\x2a\xbe\xad\x09\xbb\x6e\x6f\x8f\xfb\x8f\x00\xb7\x65\xe7\xb5\xc6\x67\x8c\x35\xe0\x73\xc0\xe6\x35\xa7\xe4\xc5\x4d\x28\xf2\xec\x3a\x09\x44\x11\x9a\xfb\x29\x01\xa7\x73\x1f\x6d\x0b\xd1\x2c\x68\xd3\x9a\xb4\xdd\x06\x21\xd0\x30\x40\x22\x3e\x5f\x73\x39\x29\x3b\xac\xf2\x04\x0a\x97\xc8\xec\x84\x03\x4a\x78\x3d\x9c\x44\x2a\x44\x19\xbe\x41\x3b\x8a\xcb\xfe\xff\x12\x4d\xde\x6e\x34\x08\xc8\xe1\x73\x31\x93\xa9\x82\x6b\x7d\xdd\xd1\x25\x79\xb0\x9c\x7c\xdc\x3d\xb9\x02\xd9\x07\xe4\xf0\xbb\x07\x77\xcc\x4d\x9c\x35\xec\x5d\x8a\xa4\xbb\x6e\xbc\xe8\x0d\x60\xb9\x59\x1b\xee\xf8\x3d\x21\x05\x72\x59\xf1\xad\xe7\xdc\x5c\x41\xd3\x0a\x8c\x7e\xb4\x1e\xcb\x1c\xdd\x18\x16\xef\xdb\x1f\xd9\x39\x6c\xa2\x25\x01\x90\x8f\x72\x3c\xa4\x06\x18\x6b\x78\x9f\x04\xd8\xb2\xa3\x80\x08\x0b\x73\x17\x2b\x48\xa0\x21\xce\x0f\x64\xd0\x59\x7b\x6e\x29\x80\xee\x87\x0b\xea\x34\x26\xd2\x23\xba\xac\x5c\x44\xef\xba\x17\x59\xe8\x07\x0e\xfc\x3f\xa4\x2b\x90\x1e\x49\xb0\x90\x76\xdd\x5c\x05\xcd\xbb\x78\xc2\xdf\xa4\x8f\xcc\xde\xf1\x8b\x9e\xd3\x5c\x30\xcd\x95\x72\xf4\x3c\x3e\xb6\xba\x27\xd7\x5d\xa9\x8d\xf2\x89\xaa\xa5\x28\xb9\xf5\x10\x11\x7f\x1a\xbc\xf4\x25\xa0\xbe\xef\x70\x63\x6f\x41\xbf\x15\x3a\x67\xa5\xe7\x77\xa2\xcf\xb2\x17\xf8\xed\xb6\x21\x78\xf3\x98\xe3\xfb\xd5\xca\xa2\x96\xd4\xab\x47\xa7\xd5\x8e\x8a\x8d\x1f\x1f\x22\x7c\xcf\x02\x5d\x29\xde\xcb\x10\x58\x5f\xcc\x93\xb6\xa3\xdb\xf7\x14\xb6\x0e\xb3\xc3\xb5\x2c\x37\x26\x67\xc9\x17\xad\x27\x56\xe2\x65\xfe\x32\x83\x18\x52\x74\xe0\x26\xed\xcd\x63\xb1\xcd\x3b\x92\xaa\xdb\x49\xf4\x29\x47\xca\x42\xdb\x40\x52\x3f\x96\x8c\x69\x90\x4c\x34\x3c\x7e\x7f\x04\xab\xbd\xc0\x0f\x7d\xc3\x1d\x95\x3b\x1e\xe2\x51\xd3\xd5\xd0\xf5\x49\xc0\x49\x3b\x2e\xb8\x94\xba\xd1\x5a\xb4\xd3\x1b\x48\x27\xd2\x50\xb1\x6f\x14\xad\x3e\x89\x3e\x16\x1f\x58\xa7\x00\x80\xa1\x7e\x09\xc4\xcd\xe9\xea\x14\x11\x8c\xdb\x63\x28\x59\x0b\x7e\x13\x4e\x67\xa6\x44\x40\x62\x77\x80\x26\xb9\xb7\x16\x9f\x4c\x40\xab\x7b\x94\xd4\x99\x75\xc7\x74\x55\x00\x97\x5c\x41\x38\x6a\xc1\x6b\x50\x99\xa1\x15\xdf\x46\x75\x60\x94\x8e\xb7\x15\xc4\x77\xa2\xbf\x8a\xb9\x9b\x25\xa8\xa8\xb7\xeb\xf7\x64\x19\x35\x7c\xa4\x84\x3f\xe3\xa4\x83\xb5\x65\xfb\xcc\x56\x32\xc3\xbf\x4f\x2e\x2f\x4c\xdc\x02\xc1\xc6\x63\xaf\x70\xd0\x3a\x88\xaa\x5b\x39\x0d\xdd\x4e\x56\x02\xe0\xf9\x57\x6b\xe0\xb8\x87\xf9\x5b\xfe\x50\x4f\xfc\xdb\x45\x37\x0a\x9b\x9b\x86\x76\x73\x09\x26\xfc\x47\x91\x90\xda\x74\x3c\x30\x94\x0f\xf8\x0e\x98\x78\x41\xf0\xee\xfd\xdf\x4e\x26\x45\x15\x6c\xba\x83\x1c\x05\x96\xfa\xab\x2e\xba\xbc\x2e\x8d\xdf\xb6\x55\xee\xe8\x55\x2a\x99\xfb\x9c\x72\xb8\x57\x97\xcf\xcc\x8f\x37\x25\xe8\xcf\xfd\x9e\x42\x27\x64\xeb\x43\x77\x65\xac\x76\x10\xee\x2d\xfe\x25\x9b\x26\x93\x6e\x94\x1b\x9b\x10\x87\x8c\xef\x8a\xcf\x0b\x92\xc7\xa5\xae\x37\x0b\x15\xd5\x04\x65\xcb\x8e\xb0\xed\x36\x44\x39\xee\x16\xec\x12\xe6\xc5\x86\xef\xda\xed\x31\x01\x98\x70\x50\x1a\x00\x15\xd4\x79\x51\xf6\x11\xfd\x65\x79\x6a\x77\x90\x40\x25\x9d\x72\xcc\xbb\xcf\x67\x47\x70\x60\xfe\xbd\xef\xeb\x68\xc6\xb7\xe5\x8f\xe4\x1d\xde\xd3\xf3\xe2\x65\xf1\x63\x52\xdf\x8e\x6e\x34\x3d\x1f\x0b\x7f\x4f\x0e\x9a\xf3\xe2\x18\xcb\xa7\x84\xb2\x39\x3a\x23\xfd\x1d\x75\x0a\x2b\xa8\xc2\x79\x3a\x33\x50\x0b\xdc\x92\xf1\x2c\x31\x9e\x82\x1b\x0e\x57\xf8\xa5\x79\x57\x4e\xf6\xcb\x4e\xcb\x6b\x8c\x42\x64\x4d\xa9\x85\xaf\x22\xef\x63\xb4\xdb\xef\x95\xec\xa8\xa3\xee\x6f\x18\x6b\x51\xfe\x60\x5b\x6e\x82\x17\xf4\x4b\x25\x85\xcc\x93\x1e\x34\x27\xcb\xb1\xc9\xa9\xd4\x8b\xbc\xb2\x9a\xd2\x37\xfb\x02\x9a\x00\xc5\x02\x1b\x62\xbf\xf9\xbc\x08\x31\xd9\x9f\x17\x3b\xcf\x33\xc3\xc6\x7e\x7b\x2f\x9b\xb5\x49\xc8\xef\xf4\x1d\x5d\x8d\x8c\xfc\x3b\x6b\x4c\x00\x39\xd8\x20\x4f\xd1\xd6\x95\x99\x63\xe7\x5b\x8d\x53\x54\xd0\x2f\xfa\x4a\xbf\xad\x45\xb5\x7f\x14\xb3\x29\x50\x65\x0f\xc7\x68\xe0\x77\x3c\x2b\xc8\xe9\x49\x63\x64\x98\x8e\x9b\xf2\xf1\xe0\xf3\xf6\xbd\xb9\xc0\xa3\xe5\x6c\xf0\x42\xa2\x0a\xb7\x40\x62\xf2\xfb\x52\x43\xba\x3a\xf9\xb7\xe1\xe6\xce\x91\xeb\x99\x84\xbd\xef\x86\xbf\xaa\x80\x3c\xb8\x04\x5e\x59\x79\x04\x28\xa7\x44\x81\x11\xb1\xea\xc6\x74\x8b\x45\x0c\x00\xa8\x7c\xf6\xbb\x78\x7b\x3c\xa8\x65\xc6\x8f\x0b\xf2\x75\xf9\xc5\x48\x36\x25\xa3\xbc\x49\xf6\xda\x13\xbf\xf6\x59\x28\x93\x21\x79\x42\x82\xa4\x9e\x4e\x85\x9b\x27\x57\x35\xc0\x5a\x59\xeb\x43\xa8\x8f\xb5\xac\xb2\x75\x90\x92\x30\xf3\xfa\x2b\xd4\x76\xf5\x79\x8e\xf2\xf6\x48\x7e\xf6\xc4\x07\x1f\x00\xb8\xcb\xa3\xf2\xfd\xae\xf4\xae\x18\x9d\x7d\x11\x9f\x4a\x27\xd1\xc5\xa1\xaf\x6c\x00\x94\x94\xd3\xc5\x8d\x85\xcd\x9f\xb8\xe1\x6e\xc6\x0a\x2f\x59\xc8\x6b\xc2\xec\x86\xa3\xbc\xed\x5e\x51\x2e\xd3\x41\x01\x04\xce\xc0\x36\xf8\x45\x92\x7a\x92\x3f\x5d\x19\x06\xb9\x5e\x5b\x27\x2d\x64\xf0\x30\x11\xbe\xd9\x45\x53\x1f\xcc\x44\xcf\x1d\x2f\xf7\x90\x0d\xc4\x5f\xf4\x78\xe8\x8f\x52\xdc\xfb\xf7\x33\x21\x32\xde\xfd\xab\xf8\x28\x84\x88\x25\x32\x1e\xf2\x2d\xa8\x96\xe0\xbc\x2d\x9b\x08\x9a\x0f\xf7\xe0\x53\x77\x94\x6a\x7a\x3b\xfc\xd5\xc9\x0a\x84\x98\xf9\x70\x10\xf9\x77\x31\x1d\x27\x2b\x21\xf8\xcd\xc7\x84\xbe\xd8\x11\x2d\x61\x32\xc4\x54\x7c\x45\xc1\x79\x9f\x72\xc9\x86\xc9\x2c\x81\x61\x96\x2d\x04\xe4\xc3\x8d\x73\x23\x0e\xf2\xb3\x0e\x72\xdd\xe9\x4b\xe7\x0e\xb2\xf2\x71\x49\x66\xd4\xf4\x3b\xdb\xd1\x56\xcb\x1f\xa8\xd2\x23\xea\x55\x46\x7a\x3a\x0e\x3a\x0d\x5f\x78\x67\x93\xf0\x24\xc9\xe8\x96\xa6\xc4\x16\x1d\xce\xc9\x2b\x38\xcd\x46\x29\x40\x73\x6b\xa2\xcf\xd5\x2d\x70\xfb\xa2\xd3\xc6\x99\x3f\xbb\x11\xfc\xa1\xf7\xca\x1c\x7e\xd8\x42\xe9\xed\x4a\x7d\x21\x29\x5e\xa2\x0f\x17\x39\xc8\x57\xaf\xea\x0c\xf7\x3e\xd5\x44\x7f\x53\xfb\x2a\xe2\x1f\x6e\xa5\xbd\x79\xa9\x87\x8f\x9a\x66\xd1\x88\xd4\xd2\xde\x48\x89\x63\x0b\x49\x4a\xb8\xb1\x73\x4e\xf2\x7b\x05\x27\x6c\x1f\x57\x72\x5f\x7a\x74\x7d\xdb\x6c\xdf\xa7\x0a\x4c\x07\x6e\x3f\x0b\xda\x17\xdf\xfb\x09\x99\xf3\xb0\xe5\xa2\x45\x97\xc4\xdf\xbd\xb0\xab\x03\xf3\x66\xfc\x56\xff\x86\xa9\x0c\x0f\xfe\x05\x32\x82\xcd\x19\xad\x0c\x56\x4f\x7c\x4f\x64\x41\x59\xa3\xe0\xb9\xef\xe7\xfa\x72\x0e\x77\x4f\x26\x8f\x96\xcb\x70\x9a\x14\xf1\x09\x91\xe7\x22\x2e\xcc\x6f\xf1\x18\xd5\xa1\x77\x60\x08\xec\xd3\xd9\x54\x2e\x58\x44\xb2\x50\x80\x1d\xdf\xa2\xa5\x35\x61\x72\xe3\x30\x84\xa9\x9e\x65\x19\x25\x3d\x7c\x2e\x7a\x92\x42\xa2\x86\xe0\x80\xa7\x93\xc5\x06\xbf\xbc\xfe\x43\x4e\x1e\x53\x6b\xe3\x07\x0e\xb6\xdb\xa3\x30\x73\x01\xfe\xc7\x87\xd8\x5e\xf2\x98\xfd\x12\xd5\x0b\xcf\xf8\xbb\x54\x93\x67\x95\x3f\xaa\x4f\xeb\x16\x5b\xd5\xf6\x83\xcd\x93\xe3\x72\x0c\x66\x7b\x63\xa0\xd3\x7d\x92\x54\xa6\x47\x01\x1b\x61\x6d\x68\x1c\x8e\x8e\x1f\x67\x81\xc1\x5d\xfe\x8c\x5b\x22\x18\x3c\x49\x7f\x7d\xe5\x22\x9e\xb8\xfa\xcd\x57\x3a\x4a\x0e\x3d\x06\x7f\x77\x52\xcd\x40\xb4\x4c\x7e\x36\x04\xbe\xb8\x27\x12\x87\x5e\x45\xd4\xcf\xe7\x7a\xb3\x70\x7c\xab\x0d\x02\x06\x64\x2b\x24\xbb\x68\x58\x04\xf5\x52\xd0\xe5\x78\xe2\x78\x05\xc9\xa5\x4c\xc6\x68\x6f\xd3\x03\x5c\x18\x9e\x59\x25\x4c\x88\xca\xf7\xb1\x8e\x18\x2d\x95\xb4\x53\x66\xf3\xdc\xe4\x44\xcc\x66\x77\xd1\x74\x62\xb3\x4a\x12\x83\x71\x95\x7f\x6c\x07\x39\xc2\xec\xf2\x7c\x0c\xeb\xa1\xfb\x6b\xf7\x8b\x22\xd2\x55\xee\xb5\x95\xee\x2e\xd5\xa4\x65\x33\x99\x79\xbb\xf5\xde\x76\xf5\xdd\x76\x96\xa5\x22\xa9\x2d\x85\x29\x5a\x22\x4a\x4a\x4d\x4c\x52\x2f\x0c\x72\xbd\x80\x30\x22\xfa\xf8\x58\x78\xc2\xcb\x3b\x58\x43\x5a\xc4\x4e\xcf\x3e\x9e\x4a\xb9\x18\x0d\x6d\xaa\xc1\xa5\xa0\x70\xc9\xb2\x96\xa0\x00\x20\x84\xe0\x24\x34\xfd\xa5\x1f\x39\xad\xa2\x16\x49\x8d\x0a\x9b\x0f\x20\x50\x42\x9d\x5c\x5c\xdc\xbe\xa5\x0b\xa5\xa9\x01\x4b\xf4\xac\x29\xd1\x05\x13\x08\x0c\xcc\x6b\x07\xef\xf1\xb9\x1f\xe1\xda\xfe\xc9\x17\xea\x45\x1a\xa7\x27\xe7\x8f\x01\x01\xb5\x52\xa3\xdd\x06\x6a\x1d\xb6\xe6\x69\xf8\x84\xe2\x2a\x94\x53\xf5\xac\xdd\xc3\xb4\x43\x46\x86\x9f\x0f\xce\xf3\xd7\xd5\x5f\xee\xf4\x67\x1e\xb5\x79\x6c\x95\xf9\x58\xbe\xfa\xf1\xb5\x46\x9f\x7d\x27\x38\x6f\x30\x67\xc2\xc1\x78\xe1\xe9\x87\x2d\xb7\xa9\x81\x05\xae\xe4\x67\x75\xbc\x02\xeb\x1f\xda\x92\x79\xb1\x8d\xd3\xaa\xf7\xd4\x4d\x99\x3b\x51\x53\xa6\x8a\x6e\x30\xf2\x3b\xd8\x29\xde\xfe\xc9\xee\xbd\x1b\xc4\x11\x31\xab\x9c\xc7\xb9\xaa\x31\x56\xd2\xfc\x79\x65\x3f\x42\x0e\x9e\x97\x5d\x3f\xd7\x3f\xa9\x95\x96\xd4\x23\x04\x28\xc8\x78\x4e\xd3\x31\x2c\x66\xea\x43\x37\x3e\xa7\x85\xa6\x98\x99\x86\x52\x49\x5f\x47\xe5\xb2\x0d\x7a\xc4\x51\xed\xe1\x7e\xd8\x8a\x0e\x72\x93\xf4\x9c\x66\x6a\xae\x1e\x9e\xb2\xc1\x77\x16\xa9\x54\xdf\xb6\x9d\x65\x41\xaf\x30\xb3\x81\xe0\x61\x14\x7d\xb0\xf4\xa2\x04\x28\xed\x93\x5a\xe8\xaf\xbe\x72\x92\xd4\x7f\xdc\x15\x4f\xe3\x65\xae\x76\xc2\xf6\xde\x8c\xb9\x21\x11\x85\x77\x21\xe4\xef\xb0\x5b\x36\xce\x73\x7d\xec\xda\x65\xf8\xc9\x31\x23\x5f\x9f\x3b\x16\x5a\x75\xdb\x6a\x56\x7b\x04\x1e\x63\xd7\xb0\xf4\x72\x0d\xd9\xd0\x47\xa9\xb6\xac\xaf\xf4\x98\xfc\x0d\x06\x66\xa7\xac\xf9\xca\xb3\x91\x89\xc0\xad\xc4\x9f\x16\xe8\xaf\xae\x74\x34\xe8\xcd\xdb\x9a\xee\xfa\x43\x65\x07\x69\x64\xca\xbe\x5e\xa5\x50\xd6\x8d\x54\xaa\x36\xc0\x2a\x4a\x47\x0a\xaa\x22\xf9\xc1\x92\x23\x70\x9f\x87\xe1\xd8\xa6\x44\x93\xb1\x23\x0a\x5c\x58\xe2\x80\x3c\x87\xe8\xd8\xe4\x9c\x13\x2e\xee\x73\xa8\xca\xe8\x91\x81\x4d\x41\x64\x2f\x19\x6c\x54\x40\x92\x80\x81\x79\xd0\xc3\x8a\xa9\x8c\x34\xc9\x61\xd5\xc5\x01\xc4\x86\x09\xa4\xb1\xfa\x99\xb4\x52\xac\xd1\xae\x78\xed\x69\xa9\x4d\xcc\xbe\x47\x1e\xe3\x28\xe5\xf0\xb9\x0c\x30\x04\xd3\xdb\xce\xb4\xe8\xb8\xe3\x57\xad\xcb\x0b\xd7\x1c\x8c\xe0\xa7\x40\xdf\x2b\xb0\x96\xf0\x94\x09\x4f\x4a\x78\xed\x25\x3d\xe6\x5c\x7d\x06\xf3\x18\xa1\xd6\xb8\x88\x7a\x84\x82\xb7\x05\xdc\xdd\x05\x42\x69\xe9\x71\x98\xf3\x38\x0b\x36\xb7\x02\x45\xb1\xf4\xe1\xd1\xdb\xdf\xa8\xa5\x18\x45\xb3\xa7\xf7\x1d\x46\x5f\x04\x2a\x1d\xdd\x5a\x0c\xf1\x82\x48\x6e\x5f\x61\x3b\xb2\x6a\x51\x80\xed\xcb\x12\xd9\xab\xad\xa5\x87\xbc\xd0\x90\xc2\xac\x90\xc7\xb8\x83\xd8\x94\x02\x50\xb2\x01\x66\x62\x5a\x31\xa2\xd0\x92\x66\x8f\x1e\x62\x9b\x51\xc7\xed\x67\x10\x40\x9c\x25\x3e\x6e\x7d\x4b\xcb\xd2\x37\x66\xf0\x99\xde\x42\x16\x0f\xc3\x24\xcc\xc7\x87\x3c\xa4\x50\x43\x0d\xe7\x43\xde\x38\x43\x61\xb0\xfd\xc4\x3f\xf1\x34\xd0\x26\x89\xcc\xf6\xd3\x63\x6f\x24\x8e\x83\xaf\x98\x07\x13\xf1\xe2\x63\x8d\x00\x86\x92\xa0\x37\xf5\xcf\xf7\x2d\xfd\x4b\x51\x32\xa6\x48\x63\x45\x9b\xee\x70\xed\xb0\x91\x2f\x17\x65\x8c\x48\x1a\xc1\x74\xb8\x57\xeb\xba\xd0\x32\x61\x37\x62\xb6\x87\xd6\xb1\x8e\x2f\xfc\x9b\xc2\x78\xad\xb1\xe3\x97\x5c\xa1\x50\x41\x69\x15\x5d\x8c\x82\xbe\xa6\x9f\x02\x1a\xd8\xe6\x72\x8a\xab\x2b\xd1\xaf\xa0\x0f\x19\x94\xb4\x66\x09\xcf\xf7\xff\x52\x7a\x4c\xbf\xb1\x8c\xd3\xdf\xa0\x4a\xbc\x45\x0b\x9d\x5f\x3a\x6a\x85\x00\x82\xf9\xbc\xee\x5e\x5d\x18\x52\xa8\xd8\xbe\x6f\xdb\x9b\xf4\x67\x7a\x48\xef\x7f\xa2\x42\xf3\x7b\x50\x63\x65\x3e\x73\x1a\x25\x1d\xac\xd8\xa9\xce\xb8\x30\xcc\xfe\x4d\x5f\x51\x01\xef\xbf\x93\x99\xee\x7d\xc1\x68\x1b\x1b\xc9\x6e\x3e\xac\x5a\x14\xd6\x86\xd2\xa1\x50\x2d\x84\x45\x4a\x11\xb2\x0c\xc4\xa4\xfe\x0c\x16\xc2\x3e\xde\x2a\xca\x68\x21\x4c\xb3\x17\x12\x36\x48\xfa\xb0\x96\xac\xe9\x2c\xf6\x93\xe0\x2a\x6a\xb7\x8e\x74\x67\x39\xff\x91\xb9\xcf\x51\x2d\x04\x1e\xc5\x20\x2f\x42\x3e\x58\xef\xb0\x74\x70\x6d\x24\xb1\x6d\xc2\x40\xee\x75\xdf\xdc\xfb\xd0\x8e\xaa\x0f\x21\xc7\x9a\x80\x21\xeb\x83\x0a\x9c\x9b\x65\xd3\x4b\x90\x5c\x86\xf6\x43\x65\xbe\x98\x7f\x8f\x4b\x09\x78\x76\x00\xd1\x7b\x8c\x8a\xcd\xbd\x88\x8d\xff\xc2\xea\x76\xa5\xb4\x6f\xd8\x9e\xa5\xf9\x85\x69\x24\x04\x44\x01\x8f\x27\x90\x8a\x0b\xa0\xc6\xec\xef\xc2\x4c\x18\x29\xbd\xd2\x7f\xa3\xfd\x59\x92\xa5\x9e\x0b\xa5\x64\x97\x4f\x7a\xed\xbf\xed\xba\x7a\x7f\x5d\x7e\x5b\x5d\xd1\x2b\x19\x04\x77\x4c\x22\x33\xc9\x82\xea\xa4\xd8\x8a\x7b\x44\x3c\x30\x7f\x61\xed\xfe\xbe\xdd\xb5\xd0\x95\x15\x0a\xa0\xbe\x9c\xcd\xab\xba\xb2\xec\xeb\xbd\x0f\x9a\x80\xc8\x62\x31\xaf\x92\x4e\xbe\xbd\x64\xdf\x57\xf9\xe3\x1c\x29\x60\xfc\x3e\x49\xba\x59\xb2\xbb\x58\x6f\xb8\x0f\xfc\xf3\xab\x96\x57\x1f\x94\x63\xc7\x37\x53\xcb\x05\x96\xea\x2c\x86\x7d\x9e\x1e\x4e\x2c\xab\x2d\x6d\x4f\x61\xf1\x94\xa9\x5d\x44\xe5\xb1\xb2\x5b\x4a\xb8\x5d\x43\x29\x2e\xe9\xf0\x75\xaa\xf7\xea\xeb\x8f\x61\x93\xc2\x95\xec\xc5\x25\xb4\xfa\x99\x8a\x3c\x05\xc9\x68\xfd\xc9\xb7\xde\x6c\x84\x0d\x0c\x16\xc5\x8a\xc7\x8f\xd3\x9c\x09\xb7\xe2\x3f\xa9\x7d\xa6\x9e\xe0\x1e\x99\xfb\x84\xd8\xf6\x78\x96\xd7\x1d\xf8\xda\xef\xf6\x26\x7c\x50\xf0\xa6\x85\x72\x7f\x1e\x5d\x7d\x32\xa3\x18\x9b\x76\xc3\x3e\xec\xad\xbb\x7b\x94\xb2\x79\x61\x7b\xb0\x98\xbc\x90\xdc\x41\xb4\x10\x12\xa9\x18\xe0\x68\x85\xe9\xc1\x45\xc6\xd1\xe1\xe2\x58\x75\xb3\xd6\xb0\xd3\x47\x54\x6e\x1c\xe2\x8d\x17\x54\xf6\x5c\x99\x4d\xe4\x75\x73\x04\x07\x8f\x18\xb3\x41\x5c\xf9\xf1\x0d\xb9\x49\x35\x5f\xe5\xbb\x10\x1f\x81\xa0\xdf\x82\xfc\xc3\xf5\x50\xfd\x85\x6e\x50\x51\xda\xd8\x58\xb0\x7d\xc7\xd5\x0e\xf5\xe1\xbb\xa3\x15\x24\x1b\xce\x33\x94\x40\x3b\x64\x4f\x29\x8b\x68\xa5\xab\x34\x1c\xc5\xb5\x34\x21\x9a\x03\xb0\x1d\xfd\xda\x8a\xfd\xfd\x4c\x0f\x69\xc3\xf5\x4a\x7a\x1b\x05\x49\x31\x63\xf9\xc4\xd7\x1c\x68\xa4\x9c\xb4\xcb\xac\xbb\x3d\x45\x29\x2e\x39\x0f\xe4\xd3\xca\x5a\xda\xe4\xdd\x1d\xa3\x5a\xc7\x23\xc0\xcd\x5e\xe7\x41\xf3\x89\xb6\xb1\xd8\xe6\x76\x77\x60\xa2\x43\xf7\xb7\xa0\xf4\x79\x98\xd4\x7b\x98\x19\xaa\xbf\x68\xb5\x29\x6e\x9b\xdc\x13\xb4\x06\xee\xe4\x47\x1f\x8e\x09\xce\x75\x9f\x37\x34\x87\x8c\x10\xde\xf5\x0c\x5a\xd2\x7e\xd4\xee\x47\x9b\xb0\x81\x0d\x8a\xc5\xa8\x19\xf4\xe2\x33\x42\xfd\x06\x8d\x88\x19\xe5\x71\x28\x71\xe8\x79\xaf\xd7\x31\x01\x7c\x06\xe2\x98\x83\x7f\x89\x43\x39\x2f\xff\x12\xe7\x2e\xbc\x0c\x70\x86\x33\xeb\x7e\x10\x83\x77\x14\x79\x3b\x72\xd5\x02\x06\x66\xb3\xab\xc8\x68\xaa\xaa\x79\xce\xff\xb6\x51\xfb\xad\x31\x60\xfc\x16\xa3\x15\xd2\xc1\x56\x27\xcf\x55\xcc\xe1\xf3\xe6\xba\xcc\x3f\x55\x0e\x7f\xa3\x28\x4d\x8e\xc7\x09\x4b\x9a\xec\x82\x86\x03\xce\x83\xbd\x08\x38\x59\x75\x7e\x96\x4d\x7e\x64\x2f\x95\x4b\x1a\x1b\xb7\x8e\x3d\xa5\xcc\x00\xc0\xbd\x42\x57\xab\x1e\xf6\x79\x91\xc9\xb2\x7b\xbe\xdb\x59\x95\x18\x49\xbb\x48\x86\xd7\xbd\x54\x1c\xc8\x60\x4f\x41\xce\xfe\xd7\x95\x58\x74\x73\x49\x5d\xb9\x65\xee\x5b\x1f\x15\x43\x98\xc2\x65\x3a\x62\x56\xee\x58\x96\xa2\x8d\x1c\x5e\xd1\xc3\x96\xd2\x59\x0b\x31\xa2\x2e\x1c\xc8\xbb\x7e\x8a\x3d\x51\xda\x09\x15\xa1\x59\x62\xf0\xf1\x63\x6c\x7e\xff\x99\x1d\xb9\xaf\x34\xda\x17\xe0\xc9\x49\xff\xae\xd4\x4b\x11\x8f\x1d\x86\xbd\x76\x47\x0e\x4f\xd3\x87\xfa\x15\xe0\x72\x73\x14\xf9\x51\x1b\xfc\x4e\xfc\x45\x5b\x6d\xc1\x29\x12\xcc\x7d\x81\x76\x3d\x50\xb3\x44\x41\x50\x3f\xbb\x9b\xe1\xc2\xac\x89\x8f\xc3\x61\x48\x78\xa8\x79\x61\x80\x43\x31\xaa\x22\xd9\x78\x91\xf8\x9d\x4e\xa4\x8d\xb7\x52\xc8\xdb\x8d\xd6\xcf\x99\x93\x9e\x19\xdc\x67\x25\x62\xa1\x4e\xc2\x15\x70\xe3\x9e\x95\x1f\x7c\x01\x8e\xe9\x0a\xe4\xa1\x14\x19\xf3\x75\x34\xda\x34\x14\xaf\xcd\xe0\xf3\x71\xa3\x6d\xbd\x4f\x5c\xea\x4d\x8e\x1f\xa5\x09\x78\x9e\xd4\x7b\xf0\x44\x18\xde\x16\x4d\x60\xf5\x23\xe4\xc2\x0d\xfe\x80\x4e\x1a\x52\x64\x51\xcf\x12\x67\xd5\xbd\x77\x68\x3f\xc8\x24\x06\xc5\x3e\xe1\x81\x5b\x9c\x4e\x11\xcb\x97\xe2\x98\xa0\x18\x65\x8b\xc1\x51\xd1\x25\xa0\xd9\xce\x62\xbf\xfb\x77\xdb\x4b\x8f\x51\x15\xfe\x81\x1a\x57\x6e\x65\x4a\x0e\x37\xc8\x16\x4b\x40\x1f\xff\x70\xa9\xd5\x2c\x57\x37\x8a\x68\xdf\x91\xf6\xf6\xb1\xa4\x29\x91\x17\xf1\xd6\x27\x4e\xcf\x90\x99\xcf\xc6\x6a\x45\x1b\x4f\xaa\xfe\x27\x5f\x5a\xfa\xf6\x0c\x91\xe5\x84\xac\x98\xc0\x87\x85\xc1\x6f\x94\x38\x1b\xcc\x6a\x42\xa1\x84\x0c\xd9\x6b\x18\xa8\x9d\x46\xb1\xc4\x81\xb7\xdb\x6d\x76\x81\xba\x15\xd5\x08\xad\x99\x7a\x2d\xb6\xac\x75\xbb\xfc\x0d\xac\x4c\x62\xb8\x4c\xf2\x09\x00\x34\xc4\x7e\xab\x2b\x7e\x3d\x46\xd4\xc5\x9e\xff\x2a\xd2\x68\x17\xdb\x0d\x19\xde\x44\x75\x94\x93\xce\xd4\x55\xa0\x70\x41\x63\xa8\x3d\x45\xfd\xe4\x78\x29\xe1\xf7\x2f\xe2\x4f\xf3\xf3\xd4\x56\x3f\x29\x56\xc2\x62\x89\x8c\x95\x2b\x35\xe1\xca\x97\x9f\x86\xea\x29\x30\xca\xcd\x2c\x9a\x18\xd0\xd1\xcb\xb7\x2d\x3e\x53\x3f\x53\xd1\xfd\x55\xe0\xb9\x34\x4d\x2c\x62\xfc\xac\x8a\x7d\xfb\x31\xbf\xd8\x52\xa5\x17\x99\x8b\xf1\x75\xc2\xb8\xd5\xf3\x56\x14\x32\xf6\xe9\x08\x59\xfb\x8c\x19\x82\x03\xcb\x00\x3a\x27\xfb\x9a\x42\xd1\x3e\x95\x14\x21\xb6\x9d\x57\x72\xd0\x86\xb1\x16\xf5\xaa\x56\xd4\xfa\xf8\xa1\x88\xa7\x93\x21\x98\x53\x8a\xc5\xc9\xbc\xd1\xd6\xb4\xd1\x16\xab\xd1\x16\xb3\xd1\x16\x3b\x8b\x07\x69\x84\x24\x04\x5f\xb1\x5b\x83\x84\x23\x99\xb2\x8e\x11\x1c\x46\x08\x58\x41\xd8\x25\x8a\x2c\x8a\xeb\x4c\x76\xea\x2c\x8a\x43\x2c\x76\xc4\xa6\xa4\x25\x8a\x62\xa5\xe1\xa2\xc2\x90\xa4\xbe\x65\x14\xd2\x58\x4d\xaa\x27\x97\x92\xa4\x48\x3d\xf5\x63\xc4\x97\x76\x78\x98\x17\x08\x21\xfc\x5e\x46\xd3\xfc\x73\xe0\xa8\x06\x65\x25\x17\x03\x0c\xa4\x4a\x7f\x4c\xd4\xbe\x82\xcb\x19\x24\x4c\x72\xc9\xd8\xda\xd3\xd1\xb3\x0f\x93\x79\xb1\x27\xe2\xf7\x4b\x76\x32\x0a\x1d\xfe\x06\x62\x60\x5a\x61\xf6\xa3\x86\xc2\x45\xf5\x0b\x15\x56\xc7\x80\x16\xa1\x9d\x66\x80\xd6\xae\x4c\x01\x6a\x27\xd2\xef\x5e\x00\x91\x1a\x00\xa3\x86\xc4\x62\xf9\xcb\x20\x7a\x03\x3a\x72\xf5\x13\x46\xc4\xaa\xef\x6b\x06\xe2\xea\x5d\x1d\x35\x0b\x35\xdd\x69\x2c\xc1\xaf\x9d\xac\x31\x6d\x3f\xa9\x80\xdb\x6c\xe5\x39\x38\x6d\xb1\x9f\x73\x99\xa0\xd3\x30\x1b\x73\xe1\x42\x24\x6a\x2a\xa9\x6c\xc7\x67\x0f\x50\x08\xc0\x0e\xc6\xc4\x84\x86\x00\x43\x88\x09\xc1\x20\xc6\xf2\xe9\x7f\xc3\xf7\x14\x45\x59\xbc\x5f\x64\xba\xfb\xab\x5a\x09\x79\x03\xee\xa2\x25\x96\xfe\x0f\x14\x07\xeb\xf8\xff\xeb\x83\x89\xe2\x05\x8a\x83\x43\x23\x76\xd3\x42\x78\xdb\x14\x00\xc0\x57\x09\x00\xfc\x2b\xac\xbb\x66\x03\x93\x30\x73\x66\x40\x9b\x2f\x2a\xf6\x52\x42\x13\x93\x21\x93\x24\xb7\xc8\x4b\x74\x47\xa2\x28\xdb\x0b\x1f\x4c\x14\xbf\xf1\x8b\x43\xd9\xef\xad\x47\xcc\x65\x70\xef\x08\x6f\x4a\xb2\xfa\x56\x61\x5b\x15\x00\xa0\xa1\x8b\xd4\x1b\x39\xe8\xae\x48\x88\x80\xae\x45\xcc\xec\xad\x94\x76\x5d\xb2\xb1\x15\xd3\x85\xa1\x1d\x3e\x1b\xec\x3a\x58\x98\x69\x73\x49\xfd\xdd\x97\x0e\xe6\xfe\xe3\xb9\xf1\xd2\x07\x16\x61\x59\xa8\x25\xab\xfb\xc6\x05\x01\xf4\x15\xa0\x6d\xb4\xa0\x04\xde\x72\x9c\xd5\xa6\x89\x54\xbb\x39\xa8\xdd\xca\x85\xac\xb9\xa8\x4e\xc2\x61\x93\xa4\x7a\x9d\x60\x73\xa7\x81\x21\xa0\xd9\xb0\x75\xeb\xbd\xa9\xc2\xf7\x5f\x39\x90\xfb\x69\x3a\x6c\x2e\x40\x85\xa6\xc4\x4b\x55\xe2\x55\x00\x00\xe8\x2b\x40\x47\x68\x90\x4d\xc4\xaf\x05\xea\x14\x00\x00\x6c\x86\xc0\x4e\x47\xcc\xec\x8d\x41\xed\x1a\xc5\x90\x8d\x1a\x24\x21\xdb\x38\xda\xeb\x24\x9b\x3b\x01\xaa\x64\xa7\xaf\x0e\x97\x5f\x7b\xe9\x60\xf6\x3b\x57\x87\xca\x17\x6d\xcc\x32\x50\x13\xfe\x3c\xd4\x5c\x9f\x7c\x3c\xd0\xae\x0d\x8a\xdb\x31\x0a\x00\x50\x97\x48\xc1\x23\xd8\x14\xe2\x62\xf9\x4d\xc2\x8c\xb9\xa4\xbe\x74\x2b\xa9\x5f\x25\x0c\xe9\x11\x83\x24\x45\x1b\x87\xfa\x8a\xd0\x1c\xba\x40\x8b\xb7\x92\xfa\x99\x57\xf7\xe7\xbe\xf3\xde\x54\xe1\x6d\x55\xa2\xab\x50\x11\xfa\x2c\xd4\x14\xa0\x08\xf5\x5c\x3d\x2e\xce\xce\xdd\x34\xfa\x03\xec\x30\x05\x70\xe0\xc9\x26\xf2\x32\x51\x7b\x67\x02\x0b\x3c\x29\x76\x65\x89\x96\x6f\x0c\x94\x67\x96\x63\xc6\x0d\x81\x21\x33\x6c\xe2\xb8\x60\x63\xa5\xaf\x08\xf5\x30\x08\x55\x17\x92\xfa\x87\x6f\x4d\xe7\x7f\xf0\xd6\x74\xfe\xd5\x74\xc4\x9a\x07\x04\x59\x80\x6a\x73\xb8\x7a\xbc\x54\x25\x9b\x56\xbb\x77\x2b\xb1\xa3\x05\xc2\xa7\x00\x9b\x5f\x8a\x9f\x0c\x95\x1d\x64\x67\x17\xd9\x69\x51\x00\x88\x60\x86\xa2\x93\x39\x79\xf2\x9e\xc5\xc8\x89\xa9\xac\x7c\x3c\x6c\x92\x14\x62\x7d\x8f\x91\x2e\xd0\xe2\x72\xcc\xb8\x72\x71\x44\x3d\x7d\x75\x58\xbd\x66\x10\xe6\x14\x24\x77\x46\x79\x3f\x9a\x12\xde\xed\xe9\x8a\x05\xda\x8d\xc2\x0f\xb0\xc3\x15\x00\xc0\x57\x09\xf8\x30\x65\x6f\x38\x30\xaf\x08\x61\xe0\x14\x02\x33\x14\x19\x2b\x48\xe3\x47\x97\xc3\xf7\xec\xcd\x28\xf7\xc4\x35\x32\xba\x43\x36\xd2\xb6\x0c\x0c\x01\x2d\x8b\x76\x76\x31\x6e\x5c\xba\x38\x52\x3a\x73\x73\x40\x9b\x31\x09\x73\xd8\x97\xbd\x42\xef\x8c\xf6\x7e\x19\x73\xae\x78\xa7\xdd\x2a\xfc\x00\xbb\x40\x01\x1c\x34\x98\x0d\x1c\x45\x70\xa2\x25\x9d\xa4\xef\x10\x54\x94\xc0\x51\x04\xe7\x38\x9c\x52\x85\xc1\x23\xab\xe1\xbb\xa6\xd3\xca\xb1\x41\x55\xdc\x2b\x59\x38\x72\x3b\x9b\x47\x16\x66\x7a\x5e\xb1\x96\x66\x53\xfa\xf9\xcb\xc3\xea\x85\xa5\xb8\xbe\x48\x51\x55\xc8\x1d\xe1\xe7\x7f\x0e\x12\x7c\xaf\xf0\xef\x4a\xb3\x87\xc7\xae\x7a\xe9\x01\xb3\x01\xaf\x08\x4e\xe8\xb0\x43\xfb\xe1\x28\x02\xaf\x0c\x4e\x8d\xb1\x90\x64\xe1\xe8\x54\x4e\x9e\x3c\xb8\x16\x3a\x3a\x9e\x97\x0e\xc7\x74\x61\x58\xb4\x6f\x8f\xbd\x04\x1b\x31\x4b\x95\x68\x66\x25\x66\x5c\xbf\x99\xd2\x2e\xde\x1c\x2c\xdf\x2c\xc8\x76\x16\x6a\x8c\x6c\x4e\x25\x1f\x95\x3b\x76\x84\xbe\x25\xb2\x80\xdd\x2e\xfc\x00\xbb\x4c\x01\x1c\x04\xcc\x06\x7e\x8a\xc0\xc7\xcf\xf3\xca\xe0\x28\x84\xf3\x9d\x12\xd3\x49\x62\x2a\xab\x4c\xed\xcd\xc8\x07\x47\x0b\xd2\xfe\xa8\x4e\x86\x76\x9b\x07\xc9\xc2\xcc\x28\x4b\x34\xbb\x16\x36\x67\xe7\x92\xda\xb5\xd9\x94\x76\x73\x3d\x62\xae\x53\xe4\x62\x5f\xf3\x6b\x8e\xe0\x1b\x50\x2f\xf8\x7e\x51\xad\xb7\x85\xf0\x03\xec\xa2\x97\xeb\x85\x47\x09\x00\x9a\x24\x86\x83\x7b\x56\xe0\x15\x42\xf1\x34\x39\xaa\x93\xf8\x78\x5e\x1e\x9d\xc8\x4b\x7b\x47\x0a\xd2\x9e\x84\x26\x8c\x29\x26\x8e\x11\x8a\xa4\x9d\xa4\x10\x36\x62\x96\x21\x30\xb5\x28\xdb\x6b\x6b\x11\xe3\xd6\x62\xdc\x98\x9d\x4f\xe8\xf3\x99\xb0\x99\xa1\xc8\x65\xc6\xf0\xb4\x83\xfc\x31\x3f\xda\x37\x1b\xf1\x6f\x9b\x51\x9f\xc7\x8e\x79\x99\x9d\xa2\x81\x59\xe4\xa5\x06\xf1\xce\x0a\xbc\x42\xf0\x8a\xc1\xff\x4e\x12\x28\x52\x52\xaa\x90\x1a\x2e\x4a\xc3\xc3\x45\x71\x6c\x50\x15\xc7\x62\xba\x30\xa4\x98\x38\x2e\xda\x48\x21\x14\x89\x5b\xa1\x14\x14\x31\xdb\x22\x4c\xd7\x05\x56\x2c\x49\x76\x26\x13\x32\x97\x56\xa3\xe6\xe2\x4a\xd4\x58\x5e\x8f\x98\xe9\xb2\x48\x4b\x50\x4f\x35\xa8\x71\x9f\x1a\xd4\xd3\x10\x7a\xa9\x08\xef\x18\xc1\x77\xb0\xeb\x15\xc0\x41\x0b\x8a\xe0\x37\x2b\x38\xeb\x05\xaf\x52\xf0\xdf\x49\xdc\xdf\x8a\x98\x81\x14\x31\x48\x24\xae\x09\xf1\x64\x59\x48\xa6\x54\x71\x30\xae\x93\x54\xd8\x20\x09\xc5\xc4\x11\xc9\x46\x11\xd1\xc6\x32\x66\x20\x60\x86\x08\x66\x40\x10\x43\xa4\xda\xd1\x8c\xeb\x73\x54\x11\x2e\x06\x8c\x51\x54\xd9\xd1\xb6\x37\x04\xdd\x24\xac\xac\x13\xaa\xaa\x92\x9d\x2b\xca\x76\x36\xaf\x58\x99\x74\xd8\x4a\x67\x42\x56\xb6\x28\x5b\x45\x93\x30\x27\x13\xcb\xe1\xd8\x74\x9a\xee\xd3\x0c\x70\xd3\xbe\x38\xcd\x4b\xff\x52\x27\xf8\x00\xb7\xaf\xf0\x57\x5e\xc1\x6d\x04\x1f\xa6\x34\xbf\xc5\xb2\x33\x2b\x38\x6b\x05\x5e\x21\x24\x70\xcf\x12\x92\xcf\xef\x44\xee\xff\xaa\x39\xc1\x84\x22\x51\xa4\x48\x0a\x99\x58\x0e\x19\x24\x24\xdb\x58\x96\x2c\x24\xcb\x16\x96\x25\x0b\xcb\x84\x01\x21\x0c\x11\x4c\x11\x41\x00\x88\x22\x46\x19\x02\x6a\x23\x66\x19\x84\x19\x86\x40\x0d\x83\x30\x5d\x17\xa8\xae\x4a\x76\x59\x13\xa8\xa6\x0b\xd4\xb0\x30\x33\x36\xca\x8c\xf2\xc4\xb2\x5e\x82\x59\x03\xdc\x64\xb3\xde\xef\x78\x81\xf7\x1b\xed\xef\x38\xc1\x77\x70\x5b\x29\x80\x83\x16\x14\xc1\x8f\x4b\xc7\xab\x10\xde\x26\x79\x7e\xe7\x97\x18\xef\x4d\x84\xf7\x63\x84\x70\xee\xa9\xae\xae\x2e\xd4\x87\x7b\xf0\x8d\x17\x5e\xb3\xc5\xd6\x88\x78\x36\xb0\xfe\xee\x9d\x20\xf8\x0e\x6e\x4b\x05\x70\xd0\x02\x77\xa6\x77\x66\xf0\x32\x33\xf0\x9b\x6d\x42\x40\xe3\x15\xc8\x7b\x2e\x2f\xc7\x4f\xab\x0a\xe0\x17\xf9\xca\x0b\x32\x3f\x13\x04\x35\x3f\x81\x6f\x48\xf7\x78\x27\x09\xbe\x83\xdb\x5a\x01\x78\x34\x99\x15\x9a\x29\x44\x10\x7d\x09\x81\xc6\xb4\x27\xed\xcc\x00\x7e\x49\x40\xbe\x21\xe0\x50\x2f\xe0\x5e\x61\xf7\x8e\xf2\x7e\x26\xce\x1d\x2d\xf8\x0e\xee\x18\x05\x70\xd0\x64\x56\x08\x52\x08\x3f\xc2\x2a\xef\x71\x33\xf6\x38\xaf\xdb\xb6\x11\x6d\x78\xc3\x8c\x38\x9f\x63\xef\x08\xdf\x94\x96\xe5\x4e\x16\x7a\x1e\x77\x9c\x02\xf0\x68\xa2\x0c\xfc\x71\x10\x15\x22\x0e\xf8\xde\x7b\x0c\x3e\x9f\x00\xc1\x4a\xe0\xa7\x0c\x8d\x3e\x83\x1a\x7f\x0d\x00\xe8\x0b\xbe\x17\x77\xb4\x02\x38\x68\x81\xc3\x3e\x68\xa6\xf0\xfb\x2e\x68\xc4\x6f\xd4\xd7\x7e\x8a\xe0\xfd\xb9\x91\x80\x37\x64\xad\xee\x0b\x7d\x30\xfa\x0a\xe0\x83\x16\x14\xa2\x9d\x4f\xef\x71\x10\x58\x87\x9f\xde\x63\x00\xe8\x0b\x7d\xab\xe8\x2b\x40\x13\x34\x28\xea\x80\xda\xfc\xd9\xfb\xbb\x20\x01\x65\x6d\xfe\x0c\x00\x7d\x81\xef\x14\x7d\x05\xe8\x00\x2d\x56\x3a\xe9\xb4\x6f\x9b\x0a\x72\x5f\xd8\x7b\x87\xbe\x02\xf4\x18\xad\x96\x01\x6a\x86\xbe\x90\xf7\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x3d\xc5\xff\x0f\xa9\x40\x1f\x73\x75\xc7\xd3\x6b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xc3\x2e\x30\xd9\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xb2\x73\x88\x65\x00\x00\x00\x57\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x69\x70\x74\x63\x00\x00\x78\x9c\xe3\xf2\x0c\x08\x71\x56\x28\x28\xca\x4f\xcb\xcc\x49\xe5\x52\x00\x03\x23\x0b\x2e\x63\x0b\x13\x23\x13\x4b\x93\x14\x03\x13\x20\x44\x80\x34\xc3\x64\x03\x23\xb3\x54\x20\xcb\xd8\xd4\xc8\xc4\xcc\xc4\x1c\xc4\x07\xcb\x80\x48\xa0\x4a\x2e\x00\xea\x17\x11\x74\xf2\x42\x35\x95\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x85\x3c\x99\xda\x4a\x47\x00\x00") - -func web_uiV1StaticAndroidChrome192x192PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAndroidChrome192x192Png, - "web_ui/v1/static/android-chrome-192x192.png", - ) -} - -func web_uiV1StaticAndroidChrome192x192Png() (*asset, error) { - bytes, err := web_uiV1StaticAndroidChrome192x192PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/android-chrome-192x192.png", size: 18250, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAndroidChrome512x512Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") - -func web_uiV1StaticAndroidChrome512x512PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAndroidChrome512x512Png, - "web_ui/v1/static/android-chrome-512x512.png", - ) -} - -func web_uiV1StaticAndroidChrome512x512Png() (*asset, error) { - bytes, err := web_uiV1StaticAndroidChrome512x512PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/android-chrome-512x512.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon114x114Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xd8\x3c\x27\xc3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x72\x00\x00\x00\x72\x08\x06\x00\x00\x00\x8f\xdd\x85\x7d\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x79\x70\x1c\x57\x7a\x27\xf8\xfb\x5e\x66\x65\x9d\xa8\xc2\x7d\x11\x04\x08\x10\x04\xc1\x53\xa4\x28\x52\x14\x49\x91\x52\x5b\x52\x77\x4b\xb2\xa7\x2f\xb7\xa7\x7d\x6f\xc4\xba\x3d\x0e\x4f\x78\xc3\x31\x13\xe1\xd8\xd8\xf0\x4e\x78\x1d\xb3\xde\x0d\xaf\x63\xd7\x31\xe3\xe8\xe8\x9d\xe8\xe9\xb1\x3d\x3d\x3d\x76\x77\xbb\x65\x75\xdb\x56\x4b\x6c\x49\x2d\x91\x94\x78\x88\x27\x44\x82\x04\x08\x92\x00\x08\x80\x40\xa1\x50\xa8\xbb\xb2\xb2\xde\xb7\x7f\x54\x66\x56\x56\x22\xab\x00\x48\x6a\xcf\x7a\x63\x3f\x44\x21\x33\xdf\xf9\xbd\xef\xe5\xfb\xae\x77\x24\x01\x10\xd8\x3c\x48\x33\x9f\x75\xf5\x8a\x6b\x94\xef\x1f\xbb\xcc\x8d\xa4\xdd\x0c\x7c\x5c\x5c\x7f\x9a\x6d\xfc\xff\xe1\xff\x4b\xe0\xee\xd9\x46\xcf\x5e\x71\xc2\xe3\xde\x9d\xde\x7d\xdd\x6c\x1a\x2f\xd8\x0c\x2e\x1b\x79\xde\x08\x4e\x1b\xa5\xcd\x7a\xf9\xd7\x6b\xe3\x86\xea\x53\x1d\x81\xb2\x4e\xa2\x7a\x61\xf5\xd2\x3b\xcb\x72\x97\x5b\xaf\x2c\xeb\xd9\xc9\x7a\xdc\xe5\x79\xb1\xa4\xcd\xe0\xec\x2c\xd7\x8b\x1d\x59\xf1\xf5\xe2\x1a\x95\xeb\x55\x47\x23\xd8\x48\x67\x7a\xd1\xa2\x2e\x2e\x54\xa7\x90\x7f\xca\x50\x4f\x66\x6c\x56\x2e\xfd\xbf\x11\xbc\x5e\xe8\x0d\xb5\xe1\x93\x68\xe4\x7a\x6f\xf7\x3f\x35\xd8\x08\xb7\xda\x48\x1b\x37\x2b\x3e\x1a\x82\xea\x7a\xde\x28\x6b\x58\x2f\xad\x9b\x1d\x3a\xc1\x1d\xee\xc5\x3a\xeb\x5e\xdb\xdb\xdb\x45\x7b\x7b\x3b\xda\xdb\xdb\xd1\xda\xda\x8a\x58\x2c\x06\xbf\xdf\x2f\x88\xc8\x2a\x4b\x10\x11\x98\x19\xd6\xd5\xaa\xd7\x7c\x96\xcc\x8c\xd5\xd5\x55\x99\xcb\xe5\x10\x8f\xc7\xb1\xb2\xb2\x82\xa5\xa5\x25\xac\xae\xae\x42\x4a\xe9\xc4\xab\x11\xce\xce\xf0\x7a\xe9\xdd\xed\x76\xa7\xf3\xa2\x97\x57\x19\x8d\xe8\x02\x00\xc2\x8b\xb5\x7e\x5c\xd5\x78\x23\xc3\xbe\x51\x1d\x35\x71\xed\xed\xed\xd8\xb6\x6d\x1b\x7a\x7a\x7a\xd0\xd6\xd6\x26\x7c\x3e\x9f\x20\x22\x01\x86\x2a\x18\x5a\x48\x57\x22\x61\x5d\xe9\x8e\x16\x94\x5e\xbf\x21\x5a\x43\x25\xa5\x59\x33\x28\xa2\x30\xf9\x89\xa1\x32\xc1\x30\x04\xe7\x0b\xaa\x4c\x15\x7c\x32\x99\xf7\x95\x17\xd3\xfe\xf2\x42\xc6\x5f\x8e\x17\x7c\x32\xc3\x04\x03\x80\xc1\xcc\x32\x9f\xcf\xcb\x44\x22\x21\xef\xdf\xbf\x8f\x9b\x37\x6f\xfe\x34\xd9\xee\x47\x31\x43\x1a\x75\x2c\x68\x93\x08\x6c\x46\x98\x6f\x74\x64\xaf\x81\x96\x96\x16\xb1\x7b\xf7\x6e\x6c\xdb\xb6\x0d\xa1\x50\x48\x25\x22\x55\x91\x08\xc4\xf2\x6a\x77\x77\x5a\xdb\xdb\x9d\xf2\x1f\x6e\xcf\xfa\xf6\xb6\xe4\xd4\x11\xad\x2c\xba\x05\x23\x00\x8f\xc6\x13\x03\xf6\x78\xac\x6d\xa9\x94\x84\x4c\xc1\x27\x67\x97\x43\xa5\x3b\x4b\x11\xfd\xfa\x42\x54\xff\xe0\x51\x44\xbf\x99\xf6\x97\xe3\x2c\xa0\x33\xb3\x9e\x4e\xa7\xe5\xf8\xf8\x38\xa6\xa6\xa6\x90\x4a\xa5\xd6\x6b\xcf\x47\x6d\xf3\xc7\xa2\x95\x05\x56\xf3\xd6\xd3\x14\x37\x8a\xc0\x46\x90\xaa\x9b\x66\xf7\xee\xdd\x62\x74\x74\x14\x6d\x6d\x6d\x2a\x00\x55\x93\x22\xba\x75\xc5\x7f\x60\x68\x39\xf8\xe9\xbe\x55\xff\x89\xa6\x82\xba\x5b\x30\x42\x60\x02\x11\x1c\xbd\x64\xb6\x84\x1d\xf7\x00\x98\x01\xa2\x4a\x30\x99\x71\x8c\xda\x3e\x65\x32\x3b\x9c\x18\x65\x81\x64\x32\x58\xba\x3e\xdd\x52\x7c\xe7\x6e\x5b\xfe\x47\xf3\xd1\xe2\x78\x99\x38\xc7\xcc\xfa\xdc\xdc\x9c\xbc\x79\xf3\x26\x66\x66\x66\x50\x2e\x97\x1b\x69\x94\x1b\xa5\x5b\x23\x56\xb9\x61\x9a\x59\x71\xee\x8e\xac\xa7\xea\xaf\xcb\xa3\xd7\xc9\x07\xc7\xb3\x13\x01\x44\x22\x11\x3c\xf6\xd8\x63\x18\x1a\x1a\x12\x81\x40\x40\x55\x98\x22\x3d\x29\xff\xde\xdd\x8f\x42\x5f\x1c\x8a\x07\x5f\x0c\x18\x62\x1b\x98\x84\xd5\x4f\xe4\xe8\x05\xab\xa3\xec\xde\x31\xaf\x76\x7f\xda\x09\xac\x0c\xa8\xed\x64\x98\x1d\xe9\x2a\x8f\x2b\x25\x18\x19\x7f\x79\xfc\x4e\x47\xee\xd5\xf1\xae\xdc\xf7\xe3\xe1\xd2\x24\x13\x72\xd9\x6c\xd6\xb8\x72\xe5\x8a\xc5\x7a\x6b\xda\x52\xaf\x8d\x1e\x34\x84\xc7\x3d\x5c\x69\x37\x9a\x7f\xd3\xe6\xc7\x27\x2a\x33\xc2\xe1\x30\x0e\x1e\x3c\x88\x91\x91\x11\xa1\xaa\xaa\xe6\x2f\x51\xf3\xe8\x62\xf8\xc5\x7d\xf3\xe1\xff\xae\x35\xeb\x3b\x42\x80\x4a\xce\xde\xb1\xc1\xfd\x8c\x35\x1d\x59\x3f\x8f\x33\xdc\x2b\xcc\x8a\xe1\xca\x08\x26\x00\x20\x94\x89\x73\x0b\x51\xfd\xed\x6b\xbd\x99\x6f\xdc\x6d\xcb\x9d\x29\x2b\x48\xe9\xba\xae\x5f\xbc\x78\x11\xe3\xe3\xe3\x28\x97\xcb\x1f\x9f\x20\x1f\x13\x36\x2b\x23\x3f\x11\x38\x78\xf0\xa0\xd8\xb7\x6f\x9f\x08\x04\x02\x5a\xa0\x24\x3a\xf7\xcf\x45\xbe\xf4\xd8\xc3\xc8\x6f\x85\x4a\x62\x88\xd6\x10\xda\x7a\x62\x10\xc8\x63\x18\xc2\x95\xde\x2b\x1c\x70\x0f\xc5\x4a\x31\x55\xed\xb6\x26\xbd\xa3\x13\xed\x78\x66\x30\x41\x26\x03\xc6\xd5\x0f\xb6\xa6\xff\xdd\x78\x57\xee\x35\x43\xe1\x64\x26\x93\xd1\x2f\x5e\xbc\x88\xc9\xc9\x49\x30\x73\x3d\xe7\x87\x97\xd8\xaa\x97\xce\x2b\xbd\x05\x75\xc5\x1f\x79\x24\x76\xc3\x7a\xac\xb2\xae\x26\xe5\x4e\xd7\xd3\xd3\x83\xe3\xc7\x8f\xa3\xb5\xb5\x55\x53\xca\xd4\xbc\x6f\x3e\xfc\x85\x27\x66\xa2\xbf\x1b\xd6\xc5\x30\x00\x80\x6d\xfa\xd5\x90\xbf\x42\x57\x8b\xa8\xb5\xa1\x30\x33\xda\x72\xd0\xea\x00\xab\xe3\x2d\x46\x59\x29\xc1\xd5\xdd\x66\xbc\xcd\xb3\xd9\x4e\x45\x66\x18\xdb\x98\x38\x4b\x80\x5c\x09\x1a\x97\xdf\xdb\xb6\xfa\xbf\x4f\x76\xe4\xdf\x64\x42\x66\x7e\x7e\xde\x78\xf7\xdd\x77\x91\x4c\x26\x37\x6a\x5e\xc1\x11\xef\xa6\x67\x23\x3d\xc3\xb3\x1c\xc2\x5a\xe2\x7f\xe2\x9e\x76\xbf\xdf\x8f\xc3\x87\x0f\x63\xd7\xae\x5d\x2a\x81\x42\xdb\x12\x81\x63\x4f\x4f\x35\xff\x9b\xd6\x9c\x7a\xa4\xca\x09\xdd\xda\x0b\xd6\x0c\x32\xb7\xc8\x5b\x93\x6e\x03\xe1\xce\x0e\xac\x16\x6a\xc5\x92\x99\x86\xd7\x65\x55\x26\xa6\x72\x36\x56\xfc\xfb\x77\xb6\x27\xff\x70\x29\x52\xba\x59\x96\xe5\xc2\xf9\xf3\xe7\xe5\xcd\x9b\x37\x2d\x7b\x74\x3d\xd3\x62\xb3\x74\xaf\x2b\x3b\x15\x13\x27\x67\x44\xa3\x36\xd4\x23\x99\x55\xe0\x9a\xb8\xce\xce\x4e\xbc\xf0\xc2\x0b\xe8\xef\xef\x0f\x84\x4b\x4a\xdf\xb3\x93\x2d\xbf\x7f\xfc\x7e\xec\x8f\xc2\xba\x18\x70\x2a\x1b\x55\xed\xd1\x7c\x66\x47\x1f\x9a\x37\x6b\x38\xaa\xf3\x9e\x1c\x8f\xce\x72\xac\x68\x47\x1e\x72\xbc\x14\x6c\xe6\xb5\x4c\x15\x32\x03\xad\xf4\xd6\x48\xb7\xdf\x29\xaa\xd6\x01\x80\x62\x05\x75\x64\xd7\x62\xf8\xe7\x55\x49\xfc\x28\x66\x8c\x6f\x19\xd8\x5a\xea\xe8\xe8\x28\xcf\xcf\xcf\x53\xa9\x54\x72\x93\xc3\x49\x1f\xe9\x0a\x6b\x44\x77\x67\x1a\x77\x3a\x82\x47\xa0\x05\x8d\x54\xe2\x46\x5a\x6b\x4d\x9a\x7d\xfb\xf6\x89\x27\x9f\x7c\x52\x08\x12\x91\x81\x95\xc0\x89\x9f\xb9\xd3\xf2\xc7\x4d\x45\x65\xb4\x2a\xaf\xaa\x98\x30\x39\xee\xcd\x38\x9b\x98\xeb\x8c\x38\xeb\x05\x70\x36\x88\x1d\xf1\x40\x95\xed\x3a\x07\xb9\x9d\xdf\x55\x67\xcd\xbb\xe2\x2a\x83\x1d\x15\xd8\x2f\x82\xd9\xdb\x8b\x91\xd2\xdb\xaf\xef\x4c\xfc\xde\x72\xb8\x34\xb6\x9c\x58\x2e\x7c\xef\x7b\xdf\xdb\xa8\x49\xf7\x51\x4d\x0f\x1b\x3e\x8a\xf9\xe1\xac\xc0\x1d\x67\xa7\x79\xf6\xd9\x67\xc5\x8e\x1d\x3b\x54\x45\xa2\xf5\xc9\x07\xb1\xaf\x1e\x9a\x69\xfa\x3d\x85\x29\x54\x3b\x14\xaa\x58\xd4\xca\x38\xd4\xb5\x11\x19\x6c\x8f\x1a\x36\x4d\x05\x5d\xe5\x42\x56\x2b\x67\x32\x7e\x23\x95\xf7\xc9\x5c\x41\x95\x85\xb2\x60\x43\x12\xa4\xc2\x24\xd4\x32\x69\x01\x43\x84\x42\xba\x08\x45\x8a\x6a\x34\xac\x8b\x88\x2a\x49\xf5\xb4\x47\xed\xca\xeb\xbd\xe3\x2e\xfc\x6b\x70\x03\x74\x55\x2e\xbc\xba\x37\xfe\xf3\xb3\xb1\xc2\x85\x9f\xfc\xe4\x27\xc6\x9d\x3b\x77\xac\x8c\x9e\x66\x03\xd6\x17\x57\x1b\x31\x07\xa1\x3a\x22\xeb\x5d\xeb\x85\x79\xc6\xf9\x7c\x3e\xf1\xdc\x73\xcf\xa1\xaf\xaf\x4f\x0b\xe9\xa2\xff\x85\xf1\xd6\x3f\x1a\x58\x09\x7c\x81\xd8\x92\x3f\x54\x43\xa2\x8a\x62\xe1\xe0\x9d\xf6\xc8\x71\x2a\x1e\x66\x5e\x62\x18\x82\x8d\xe5\xb0\xbe\x38\x17\xd5\xa7\xe7\x62\xc5\xa9\xe5\x70\x69\x36\xed\x2f\x3f\x2a\x0b\x4e\x31\x90\x03\xa0\xa3\xea\x76\x03\x11\x09\x00\x02\xcc\x1a\x40\x01\x02\x42\x9a\x41\xcd\xb1\x82\xda\xd3\x99\xd6\xb6\xf5\xa4\xfc\xfd\x5b\x56\xb5\xfe\xa6\xa2\xda\x2c\x18\xa2\xa2\x54\x59\xea\x12\x6a\xf8\xb0\xcd\xf2\xb9\x06\xbb\x2a\xee\x60\x2c\x87\x4b\x8b\x8b\x11\xbd\x40\x44\x6a\x53\x53\x93\xd1\x88\x56\x0d\x68\x0a\x54\x3b\x69\x23\xb4\x87\x8a\x4f\xc0\x3d\x64\x41\x38\x1c\x16\x2f\xbf\xfc\x32\x62\xb1\x58\xa0\x39\xa7\xee\x7e\xf9\xc3\xf6\xaf\xb5\xe5\xd4\x27\xac\x2e\xb4\xd5\x0c\x8b\x30\xb6\x43\xbb\xea\xe0\xae\xc8\x9f\xda\x61\x59\x52\xa4\x31\xd3\x5c\x9c\x9a\xe8\xc8\x5d\x9f\x6d\x2e\xde\x4c\xfb\xcb\x0f\x18\x1c\x27\xa2\x24\x33\xa7\x00\xe4\x88\x48\x67\x66\x9d\x88\x0c\xd3\x0c\x90\xb0\xea\xaa\x34\x58\x25\x82\x2a\x99\xd5\xa2\x0f\xa1\x47\xaa\x1e\x7a\x14\xd1\xa3\x37\x7a\x32\xad\x0a\x53\x67\x6b\xce\xb7\x7d\x68\x39\xb0\x7f\x38\x1e\xda\xdb\x9e\xf1\x75\x13\x3b\x74\x54\x58\x72\xd1\x31\x74\x4d\xc9\x44\x96\x39\x03\x20\xab\x95\x93\xaf\x8d\x2e\xff\x87\x92\xca\x09\x66\x36\x52\xa9\x14\x5c\xf4\xdd\x2c\xad\xd7\x4b\x6f\xc7\xbb\x67\x3f\xdc\xe0\x1c\xca\x5e\x71\x76\x78\x24\x12\x11\x2f\xbd\xf4\x12\x62\xd1\x58\xa8\x2b\xa5\x3d\xf1\xb3\x1f\xb6\x7f\x23\xac\x2b\x43\x55\x85\xb0\x42\x84\x2a\x61\x9c\xda\x4b\x25\xc6\xad\x91\xae\x04\x8d\xc4\x58\x77\xf6\xd2\xed\xce\xdc\xd9\x8c\xbf\x3c\xc9\xe0\x05\x00\x71\x00\x49\x22\xca\x31\xb3\x0e\x40\x07\x20\xa5\x94\x52\xd7\x75\x00\x90\x89\x44\x02\x86\x51\x1d\x0c\x7e\xbf\x1f\xb1\x58\x0c\x44\x24\x34\x4d\xb3\x70\x57\x89\x48\x05\x10\x28\x83\x23\xf1\x48\xa9\x35\x1e\x29\xbd\x71\x71\x6b\xba\xaf\x33\xeb\xdb\xb7\x77\x3e\x72\x6c\xc7\x62\x68\xaf\xbf\x8c\xc0\x5a\x6d\xcb\xc4\x1f\xb0\x4d\x94\x32\xb1\xf1\xc6\xce\x95\xff\xb4\x1a\x30\x2e\x80\x11\x5f\x5d\x5d\x35\x26\x26\x26\xea\x79\x71\x36\xea\x9a\xf3\xa2\xb5\xa7\x3e\x62\x99\x1f\x1b\x81\xba\xbc\x3c\x1c\x0e\xc3\x1c\x89\xa1\xde\xa4\x76\xec\xe5\x9b\xed\xdf\x08\x95\x44\xdf\x9a\x84\xf5\xcc\x01\x97\xfd\x17\x0f\x97\x16\x2e\x6d\x4d\xbf\x7d\xb7\x3d\xff\x6e\x49\xc8\x29\x22\x9a\x03\x90\x00\x90\x61\xe6\x02\x11\x19\x89\x44\x42\x2e\x2c\x2c\x20\x1e\x8f\x23\x1e\x8f\x23\x9f\xcf\x23\x9b\xcd\x36\x6c\x00\x11\x21\x1a\x8d\x22\x12\x89\xa0\xa3\xa3\x03\xed\xed\xed\xe8\xea\xea\xb2\x1d\xf3\x00\x02\xcc\x1c\x05\xd0\x49\x44\x7d\xe1\xa2\xb2\x7b\xff\x5c\xf8\x67\xf6\xcf\x45\x8e\x04\x0c\x11\xaa\x3a\x24\x6a\xdb\xc2\x00\xde\xdb\x96\x7a\xf5\x42\x7f\xea\x4f\x19\x3c\x26\xa5\x4c\xfc\xe0\x07\x3f\x90\x8b\x8b\x8b\x8d\xcc\x8d\x4d\xd1\xb8\x4e\xfc\xa6\x5d\x74\x75\x2b\xf0\xf9\x7c\xf8\xc2\x17\xbe\x80\x58\x2c\x16\xea\x4a\x69\x47\x3e\x77\xa3\xfd\x5b\x41\x43\xe9\xae\x49\xe4\x6c\xb4\xd3\x16\xac\x31\x13\x18\x29\x7f\x39\x79\x7e\xdb\xea\xe9\xdb\x9d\xb9\x37\x0c\xe2\x49\x00\xb3\x30\x3b\xb0\x5c\x2e\x1b\xf3\xf3\xf3\x72\x6a\x6a\x0a\x73\x73\x73\x48\xa7\xd3\x1b\x69\xf8\xba\x40\x44\x88\xc5\x62\xd8\xbe\x7d\x3b\x06\x07\x07\xd1\xd2\xd2\xa2\x02\xd0\x00\x44\x00\x74\x12\xa8\x3f\xac\x8b\xbd\x4f\xcc\x44\x7f\x76\xef\x7c\xf8\x88\x5a\x16\xaa\xdb\x7c\xb9\xdb\x96\xbb\xfa\xf7\xbb\x97\xff\x50\x0a\x5c\x00\xb0\x78\xee\xdc\x39\x63\x6c\x6c\xec\xe3\xa0\xb5\xf9\x76\xb8\x9e\x1b\xb1\x52\x37\x08\x00\xf2\xb3\x9f\xfd\xac\xd8\xba\x75\x6b\xa0\x2d\xeb\x3b\xf0\xf9\xeb\x1d\xdf\x8a\x14\x95\x6d\x76\xc9\x6e\x6d\xd0\x5d\x9b\xd9\xc1\x06\xb1\x71\x6d\x4b\xe6\xfd\x0b\xfd\xab\xdf\x2b\xfa\x78\x0c\xc0\x7d\x54\x58\x68\x2e\x95\x4a\x19\xe3\xe3\xe3\xb8\x7a\xf5\xea\x27\x26\xcb\xd7\x83\x93\x27\x4f\x8a\xc1\xc1\x41\xe1\xf7\xfb\x35\x66\x8e\x10\x51\x37\x18\x43\xed\x59\xdf\x53\xa7\xee\x36\x7f\xa9\x2f\xe9\x1f\xb2\xe4\xfd\x4a\xb0\xb4\xf8\xd7\x07\x16\x7f\x3f\xaf\xc9\xb7\x01\xcc\xde\xb9\x73\xa7\xf0\xf6\xdb\x6f\xff\xa3\xe1\x6a\xc1\x46\xcc\x8f\xba\x7c\xfe\xc4\x89\x13\x62\xf7\xee\xdd\x5a\xb8\x28\x86\xbf\x78\xad\xf3\xdb\xad\x39\xdf\xde\x1a\xb6\xe3\xe9\x0e\xad\x06\x32\x18\x89\x90\xb1\x78\x7a\x24\xf1\x5f\xe7\xa3\xfa\x5b\x20\xdc\x01\xb0\x08\x20\x95\x48\x24\x8c\x0f\x3e\xf8\x00\xf7\xee\xdd\xdb\x88\xc9\x83\x3a\xe1\x6e\x95\xdd\x5d\x46\xa3\x32\xe5\xa1\x43\x87\xc4\xde\xbd\x7b\x85\xdf\xef\xd7\x00\x34\x03\xe8\x13\x12\xbb\xf7\xcf\x45\x3e\xff\xd4\xfd\xd8\x0b\x04\xe0\x6f\xf6\x2f\xfd\x1f\x0b\x51\xfd\x7b\x00\xa6\x12\x89\x44\xe6\xbb\xdf\xfd\x6e\x23\x8f\xce\x7a\xf8\x7a\xe5\x71\x87\x79\xb6\x81\xb0\xb6\x21\x6e\xf0\x9c\x6a\x19\x1d\x1d\xc5\xc9\x93\x27\x55\xb5\x4c\xbd\xff\x6c\xac\xfd\xeb\x7d\x49\xff\x0b\xe4\xc9\x3f\x4d\xb0\x3b\xd7\x54\xd9\x89\x71\xb3\x2b\x77\xe9\x9d\xed\x2b\x7f\x5e\x50\xe5\x65\x54\x46\x61\x32\x9f\xcf\xeb\x17\x2f\x5e\x94\x77\xee\xdc\x71\x2e\xd3\xf8\xa8\xf0\x71\x65\x12\x34\x4d\xc3\xd1\xa3\x47\xb1\x63\xc7\x0e\xa1\x28\x4a\x88\x99\x3b\x09\x34\xdc\x99\xf1\x3d\xd1\x9c\xf7\xb5\xdc\xee\xc8\x7e\x0f\xc0\xb8\xae\xeb\xa9\x57\x5e\x79\x45\xae\xae\xae\x7e\x1c\x7c\x36\x0b\x35\x32\xd2\x09\x1b\xf2\x22\x74\x76\x76\x8a\x9f\xfb\xb9\x9f\x13\x82\x44\xeb\x33\x93\xcd\xbf\xff\xd8\x5c\xe4\x5f\xda\x7e\x4b\xab\x54\xfb\xd6\xad\xc4\x33\xca\x0a\x8c\x33\x83\xc9\x1f\x5e\xdb\x92\xf9\x2b\x26\x8c\x31\xf3\x2c\x33\xe7\xc6\xc7\xc7\x8d\x33\x67\xce\x6c\x64\xa6\xe0\xe3\xc0\x47\x2a\xb3\xab\xab\x4b\x1c\x3d\x7a\x14\x9d\x9d\x9d\x1a\x80\x28\x11\xb5\x02\x00\x33\xc7\x01\x24\x7f\xfc\xe3\x1f\xcb\xa9\xa9\xa9\x8d\xcc\x7e\xd4\x40\x7b\x7b\xbb\x88\xc7\xe3\x1b\x71\x92\x37\x0c\xaf\x27\x23\x2d\xf0\x64\x6b\x5f\xfa\xd2\x97\x44\x6b\x6b\x6b\x64\xf4\x51\xe8\xcb\x2f\x8c\xb7\x7e\x4d\x78\x98\x31\x8e\x01\x58\xe3\x23\x2d\xa8\x5c\x78\x7d\xe7\xf2\x7f\x9e\x6a\x2b\x7c\x1f\x84\x9b\x00\x16\xb3\xd9\x6c\xe1\xcd\x37\xdf\xc4\xfc\xfc\xfc\xa6\x09\xb1\x89\x74\x9e\x6a\xfb\x26\xca\x15\x00\xe4\xc1\x83\x07\xc5\x81\x03\x07\x84\xcf\xe7\x53\x01\xc0\x30\x0c\xe3\xca\x95\x2b\xf2\xca\x95\x2b\x8d\xca\xae\x79\x7e\xfa\xe9\xa7\xc5\xd0\xd0\x90\xf0\xfb\xfd\x02\x00\x98\x59\x2e\x2f\x2f\xcb\x5b\xb7\x6e\xe1\xd6\xad\x5b\x1f\xe9\xc5\x6d\xc4\x5a\x3d\x5d\x42\x27\x4e\x9c\x10\xbb\x76\xed\x0a\x34\x17\x7c\x7b\x7f\xe1\x4a\xe7\xf7\x43\xba\xd2\x5b\x53\xda\x1a\x27\x27\x6c\x87\x65\x4e\x2b\x67\xfe\x6e\x77\xfc\xff\x7e\x18\xd3\xff\x8e\xc1\xe3\x00\x12\xb3\xb3\xb3\xfa\x9b\x6f\xbe\x89\x62\xb1\xb8\x51\x79\x51\x4f\xee\x35\x92\xed\xee\x72\x36\xe2\xf6\x6a\x98\x76\xf7\xee\xdd\xc2\xef\xf7\x63\x72\x72\x12\xe9\x74\xba\x91\x2c\xb6\x61\xe7\xce\x9d\x38\x71\xe2\x84\x50\x84\x12\x68\xce\xab\x7d\x7d\xab\xfe\x03\x6a\x99\x22\x2b\x21\x63\xf2\x61\xac\x38\x56\x12\x32\x13\x8f\xc7\xf5\xd7\x5f\x7f\x1d\xd9\x6c\x76\xa3\xb8\x01\x1b\x94\x91\x36\x6c\xdd\xba\x15\x9f\xf9\xcc\x67\x54\x01\xea\xfc\xdc\x8d\x8e\xff\x30\xb0\x12\xf8\x8c\x33\xbe\x2a\x1a\x9d\x0a\x4d\xe5\x2e\xaf\x96\x73\x7f\xbb\x2f\xfe\xef\x17\xa2\xfa\xdf\x01\x18\x67\xe6\xe4\xcd\x9b\x37\x8d\x73\xe7\xce\x6d\x44\x16\x36\xc2\xed\x93\x96\x3b\x1b\x81\x4d\xd7\xb9\x73\xe7\x4e\x3c\xfd\xf4\xd3\xaa\xc6\x4a\xeb\xc9\xbb\xcd\xff\x6a\xf7\x42\xf8\xab\x0a\x53\xd4\x34\xbd\x64\x32\x68\x5c\x7e\x73\xc7\xca\xff\x38\xd3\x52\x7c\x7f\x75\x75\x35\xf7\xca\x2b\xaf\xa0\x58\x2c\xae\x57\x9f\x1d\x6e\x4d\x63\x55\xdd\x2b\x0d\x7e\x9f\xfe\xf4\xa7\x29\x10\x08\x44\xf6\x2c\x44\xbe\x7c\xf0\x61\xe4\x5f\xae\xd1\x68\xc8\x79\x53\xf5\xaa\x96\x14\x59\xf8\xe1\x9e\xe5\xaf\xcf\xc5\xf4\x57\x18\x7c\x1b\x40\xf2\xcc\x99\x33\xc6\xe5\xcb\x97\xa5\xab\x0e\x32\x91\x73\x3f\x37\xc2\x0d\x0d\xf2\xff\xb4\x7e\x58\xa7\xae\x9a\xb8\x58\x2c\x46\xcf\x3f\xff\xbc\x50\x15\xb5\xe5\xf9\xdb\xad\xff\xeb\x9e\x47\xe1\xdf\x16\x0c\xbf\xc3\x53\x44\x01\x43\xf4\x0e\xc7\x43\x2f\x4e\x37\x17\xcf\x96\xa2\xea\xa3\x50\x28\x64\xdc\xbf\x7f\x5f\x3a\xea\x6b\xd8\x76\xa7\x53\xd6\x02\xa7\x93\xd6\x8e\x3b\x78\xf0\xa0\x68\x69\x69\xd1\x22\xba\x32\x74\xec\x5e\xec\xf7\x08\x24\xc8\x74\x19\x13\x33\xec\x7b\xf3\xd9\x02\x49\x2c\x4f\x8f\xac\xfc\x97\xd9\xe6\xe2\xdf\x9a\xe6\x45\xf2\xcc\x99\x33\xc6\xad\x5b\xb7\xdc\xf5\x79\xe1\x50\x2f\xbc\x1e\xde\x5e\x32\x7d\xbd\xfc\x8d\x1c\xd8\x8d\xe2\x9c\xe1\x5e\x65\xd9\xcf\x7b\xf6\xec\x81\xa6\x69\x5a\x5f\xd2\x7f\x6c\xe7\x62\xe8\x57\x09\x64\xfa\x9a\x51\xf1\xfc\x99\x7f\x9a\x21\xda\x8f\xdf\x8b\xfd\x4f\x04\x6a\xde\xbe\x7d\xbb\x08\x87\xc3\x5e\xf5\x7b\xe2\xe1\x6e\x98\x67\xe3\xc2\xe1\xb0\x78\xfc\xf1\xc7\x05\x18\xd1\x23\xd3\xb1\xdf\x0c\x95\x44\x1f\x73\x65\x89\x04\x73\x45\x27\xb5\xef\x2b\x6b\x5b\x2a\x5e\x1b\x30\x2e\xf6\xa7\x5e\xbb\xd3\x91\xfb\x0e\x08\x77\x98\xd9\xdd\x89\xc0\xc6\xd8\x94\x97\xac\x70\xc7\x3b\xcb\x71\x13\xc0\x2d\xbf\xea\xca\xb1\x06\xe1\x8d\xd8\x5b\x43\x05\x65\x60\x60\x00\x00\x22\xdb\x97\x83\x2f\x11\xa8\xa2\x18\x5a\x74\xaa\x99\xd1\x63\xf4\xa4\xb4\xa3\x11\x5d\xe9\x57\x14\x45\xdd\xb6\x6d\xdb\x46\xf0\x02\x00\x61\x11\xa0\xe1\xef\xe0\xc1\x83\x10\x42\x68\x6d\x59\xdf\xde\x3d\x0b\xe1\x5f\x24\xae\x4e\x55\x57\x98\x27\x81\xcc\x69\x9e\xca\x88\xac\x84\xdd\x6b\x2d\x8c\x5d\xe8\x4f\x7d\x13\x84\x9b\xcc\x9c\xb8\x7a\xf5\xaa\x61\x6a\x65\xee\xc6\xbb\x09\x5c\xef\xba\xd1\x30\x59\xe7\xde\x49\x8c\xcd\xe0\xe1\x8e\xf7\x8a\xab\x9b\xdf\x1c\x59\x81\xb0\xae\xf4\x5a\xb3\x28\x44\x16\x27\xb3\x38\x58\x85\x23\xab\x92\x42\xe1\xa2\xd2\x07\x40\x0d\x87\xc3\xee\xb2\x9d\xf8\xd6\x28\x71\x8d\xd8\x2a\x80\xca\xac\xc6\xc8\xc8\x88\x20\x50\xf3\xe1\xe9\xa6\xdf\x52\x24\x22\x4c\x66\x97\x11\x81\x89\x1c\x26\x64\x35\x2c\xeb\x2f\x27\xdf\xdc\xb1\xf2\x75\x29\x30\xc6\xcc\xf1\x7b\xf7\xee\xe9\x17\x2f\x5e\xf4\x22\xe8\x46\x47\xc5\x7a\xcf\x3f\x0d\xd8\x48\x1d\x6e\x6e\x56\x03\xcd\xcd\xcd\xd6\x5e\x14\x91\xd1\xca\x29\x66\x80\x89\xc0\x5c\x11\x46\xce\x2b\x00\x94\x09\x46\xc1\x57\x36\x1a\xd4\x5d\x97\xb5\x3a\x7f\x6e\xf6\x24\x1e\x7b\xec\x31\x28\x8a\xa2\xb5\x67\x7d\x7b\x87\xe3\xa1\x17\x89\xa9\x46\xcc\x92\xf5\x83\xc3\xf2\x00\xe3\x9d\xed\x2b\xff\x35\xed\x37\x2e\x30\xf3\x5c\x3a\x9d\x2e\xbc\xf3\xce\x3b\xf5\x10\xb1\xea\x5c\x0f\x17\x27\xbe\x8d\xda\xe0\x95\xde\x2b\xbe\x91\xbc\xac\x4b\x0f\x8f\x7b\xaf\x51\x62\x5f\x53\xa9\x14\xcc\xb5\x3b\xfa\x64\x47\xee\x3c\x13\x4b\x32\xb5\x7b\x4b\x37\x74\x6a\x8c\xf3\xd1\xe2\x78\x2a\x50\x5e\x00\xe0\x9c\x94\xae\xfb\xa2\x58\x71\x0d\xdf\xf2\x50\x28\x84\xd1\xd1\x51\x41\x44\xd1\x83\x0f\x23\xbf\xa6\x4a\x0a\xb9\x78\xaa\x7d\xcf\xc4\x20\xaa\xf0\xfd\xa9\xb6\xc2\xd5\x89\x8e\xfc\x0f\x88\x68\x5a\x4a\x99\x3b\x7d\xfa\x34\xcc\xb9\x42\x4f\x24\x1c\x04\xd9\x28\x38\x09\x56\x2f\x9f\xd7\x0b\xe3\xbe\x6f\x54\xb7\x97\x5d\xed\xae\x73\x3d\xae\x02\x29\x25\x12\x89\x84\x24\xa2\xcc\x5c\x54\xbf\xfc\x61\x77\xf6\x1d\xb6\xf6\x2f\x90\xa9\xf7\x9b\xbf\xa2\x2a\x0b\xef\x6e\x4f\x7e\x4b\x82\xe3\x00\x8c\x87\x0f\x1f\x3a\xeb\xf6\x92\xd1\x36\x2e\x0d\x57\x08\x8c\x8c\x8c\x08\x45\x51\xb4\x48\x41\xd9\xb6\x63\x31\xf4\xb2\x39\x4d\x5e\x35\x2e\xa8\xba\x7a\xd4\x1a\x93\x25\x21\xf5\xb3\x83\xc9\xbf\x94\xe0\x49\x02\x25\xaf\x5e\xbd\x2a\x5d\x2e\xa8\x7a\xf2\xc7\x2b\xac\x51\x5a\xd1\x20\xbe\x5e\x9b\xbc\x0c\xf7\x46\xf5\x6d\x54\x46\xba\x95\x30\xe7\x55\xdc\xb8\x71\x03\xdd\xdd\xdd\x05\x10\xee\xbf\xbd\x63\xe5\xcf\x8a\x3e\x69\xec\x9f\x8b\x9c\xf4\x95\x85\x66\xb1\xb7\x78\xb8\x34\xf7\xd6\xf0\xca\x5f\x2c\x36\x95\xde\x06\x23\x1e\x8f\xc7\x8d\x87\x0f\x1f\xae\xd7\x2e\xbb\x1e\x6b\xcd\x8e\xe7\x1b\xba\x63\xc7\x0e\x00\x08\xed\x7a\x14\xfa\xbc\x4f\x52\xd4\x59\x82\x35\x43\x6e\xed\xaf\xb0\x3c\xaa\x1f\xf6\x64\xdf\x49\x84\x8c\x0b\x00\x16\x97\x97\x97\xf5\x0f\x3e\xf8\xa0\x9e\xa6\x59\x0f\x36\x3a\x42\xdd\xf2\x76\xa3\xe5\xd7\xd3\x78\xbd\xca\x59\xef\xd9\x5d\xae\x67\xfa\x7b\xf7\xee\xe1\xee\xdd\xbb\xc6\xf6\xed\xdb\xe3\x65\x81\xcb\x67\x06\x57\xff\xe4\x6a\x6f\xe6\x8d\x9e\xb4\xb6\x47\x33\x44\x68\x25\x68\xcc\x3d\x8a\x16\xaf\x94\x05\x6e\x02\x98\x62\xe6\xcc\xd9\xb3\x67\xd7\xc3\xad\x06\x0f\x6b\x44\xae\x19\xb2\xbd\xbd\xbd\x68\x69\x69\x51\x15\x89\xd6\xd1\xc5\xf0\xcb\xce\x25\x53\x15\xfd\xca\xb9\xfc\xa1\x12\xa6\x2b\x9c\xbb\xdc\x97\xfe\x0e\x08\xd3\x60\xe4\xde\x7f\xff\x7d\x60\x2d\x1b\xdc\xa8\x6a\xdf\x48\xd1\xf0\x62\x7b\x5e\xe5\x6f\xd4\x03\xd3\xc8\x5e\xac\xc7\xce\xdc\x26\x51\x23\xbc\xf0\xd6\x5b\x6f\x41\x55\xd5\x42\x7f\x7f\xff\x1c\x11\x65\xd2\x7e\xe3\x7e\xda\x6f\xbc\x4d\x44\x2a\x33\xe7\x88\x28\x09\x20\x51\x2e\x97\x73\x6f\xbf\xfd\xb6\x7c\xf4\xe8\x51\x3d\xdc\x3c\xeb\x53\x1d\x01\xce\x4c\x72\x74\x74\x54\x30\xb3\xd6\x9d\x0a\x1c\x68\xc9\xa9\xa3\x55\x7f\x46\x65\xf4\xc1\xd6\x52\xad\x3a\x08\xe3\x9d\x99\x73\x69\x7f\xf9\x3a\x33\x27\x67\x67\x67\xbd\x58\x83\xb3\x72\x2f\x36\x51\x6f\x04\xd4\x4b\xef\xf5\xec\xee\xd4\x7a\x6f\xf4\x46\xa1\x5e\xbe\x46\x6c\x76\x4d\x3a\x29\x25\x7e\xf4\xa3\x1f\xe1\x89\x27\x9e\xd0\xf7\xef\xdf\x9f\x50\x14\x25\x65\xad\xf0\x23\x22\xc9\xcc\xc6\xc2\xc2\x82\xf1\xde\x7b\xef\x61\x9d\xd9\x10\xcf\xfa\xdc\xa7\x7a\xd8\x09\xfa\xfb\xfb\x05\x80\xc8\x70\x3c\xf8\x69\xc1\x24\x6c\xef\x29\x5b\x52\xb2\xfa\x0c\x00\x65\xc1\xc6\xf5\xde\xec\xdf\x81\xb0\x40\xa0\xc2\xe5\xcb\x97\x1b\x11\xa2\x1e\xbb\xfa\x28\x32\xb2\x51\xf9\x8d\x46\x64\xa3\xfc\xeb\x29\x51\x8d\x5e\x3a\xaf\xf4\x36\x4e\x97\x2e\x5d\xc2\xa5\x4b\x97\x0c\x00\xc6\x81\x03\x07\x44\x20\x10\x40\x2a\x95\x72\x6f\xd3\x6b\x58\x86\x57\x9c\x73\x5d\xab\x1d\xb8\x65\xcb\x16\xf8\x7c\x3e\x21\x40\xd1\xa1\xe5\xe0\x33\x4e\xa7\x9e\xcd\x4e\xd9\x19\x06\xcc\xc5\x8a\xe3\xcb\xe1\xd2\x55\x66\x4e\x3e\x7c\xf8\xd0\x30\x59\x83\x97\x56\xb7\x91\x91\x57\x8f\x85\x34\x52\x30\xdc\x8d\xf3\x1a\x91\xce\xb8\x7a\x2f\x49\xbd\x51\xdc\x48\x46\xad\xc1\xa3\xa7\xa7\x47\x6c\xdd\xba\x15\xcd\xcd\xcd\x00\x80\x72\xb9\x2c\xa6\xa7\xa7\xe1\x58\x59\x67\x2d\x5f\xb1\x69\xe3\xf7\xfb\xc5\xde\xbd\x7b\xd1\xdf\xdf\x8f\x48\x24\x22\xcc\x7c\x72\x7a\x7a\x1a\x77\xee\xdc\xc1\xe2\xe2\xa2\x17\x9e\x35\x23\xd2\xd9\x50\xf4\xf7\xf7\x83\x88\xb4\xb6\x8c\x6f\xa4\xa9\xa0\x6c\xab\x75\x8d\x3b\xa6\xa7\x50\x5d\xa6\x7b\xab\x2b\xfb\x36\x08\x73\x04\xca\x8d\x8f\x8f\xa3\x01\xd4\x33\x1d\xbc\x6c\xb9\x7a\x71\x1b\x91\x89\x1b\x29\x67\x3d\x1c\x37\x93\x5f\x00\x95\x8d\xbb\xa7\x4e\x9d\xc2\x96\x2d\x5b\x54\x30\x34\x5f\x99\x02\x0a\x93\x28\xaa\xb2\xb0\x7d\xfb\x76\xfd\xa9\xa7\x9e\x32\xde\x7f\xff\x7d\xe9\x58\x81\x0e\x00\x18\x1e\x1e\x16\xc7\x8f\x1f\x17\x7e\xbf\x5f\xd3\x0c\x8a\x76\xa5\xb5\x21\x45\x92\x96\x08\x95\x66\x23\xbb\x76\x2f\xec\xde\xbd\xbb\x70\xe3\xc6\x0d\x9c\x3f\x7f\x1e\xd5\xf3\x2a\xaa\x78\x78\x9a\x1f\x3d\x3d\x3d\x82\x99\x03\x5b\x93\xfe\xe3\x04\x88\xea\xca\x6b\xb2\x77\xf4\x52\x75\x65\x27\x4a\x0a\xe7\xee\xb5\x16\xde\x65\xe6\x64\x2e\x97\xab\x37\x53\x5e\x0f\x36\xcb\x36\xdd\xf9\xec\xf8\x58\x2c\x26\x7a\x7a\x7a\x10\x8b\xc5\x10\x8b\xc5\x00\x00\xb9\x5c\x0e\xe9\x74\x1a\xf1\x78\x1c\x75\x64\xf6\x27\x06\xed\xed\xed\xe2\xc5\x17\x5f\x14\x01\x7f\x20\xd0\xbb\xaa\xed\x7f\x62\x3a\xfa\xdb\x3d\x29\xed\x98\xc2\xa4\xa5\xfd\xe5\xfb\x1f\x76\x67\xbf\x75\x6d\x0b\xfe\xfa\xd4\xa9\x53\xa9\x70\x38\x6c\x98\x93\xd1\x62\xfb\xf6\xed\x78\xe6\x99\x67\x84\x0a\xd1\x7c\xf8\x7e\xf4\x57\x1f\x9b\x8b\xfc\x76\xb0\x24\xfa\x01\x88\x32\x21\x75\xbf\x2d\xff\xca\x5b\xc3\xc9\x7f\xbb\x77\xef\xde\xd9\x70\x38\xac\x9f\x3e\x7d\x7a\x4d\x3b\x3c\x8f\x67\x69\x6f\x6f\x17\xcc\x1c\xea\x4b\xfa\x9f\x20\x54\x8c\x7d\xa0\x3a\xc3\xe8\x5c\x2c\x0f\x00\x0f\x63\xc5\xf1\x82\x4f\x4e\x13\x51\xce\x5c\x2c\xe5\xc5\x1a\x9d\x75\xb8\xc3\x6a\xea\x6f\x40\x2b\xcf\xf8\x9d\x3b\x77\x8a\x7d\xfb\xf6\xa1\xa5\xa5\x45\x98\x5a\xa0\x4a\x30\x9d\x0d\x44\x12\x15\x2f\x89\x51\x2c\x16\xe5\xed\xdb\xb7\xe5\xfb\xef\xbf\xff\x49\x74\xe8\x1a\x5c\x9e\x7f\xfe\x79\x04\x02\x81\xd0\x9e\xf9\xf0\x97\x3e\x35\xd1\xf2\xa7\x0a\x53\xc4\x8a\x6b\xcb\x89\xde\xa7\xa7\x62\xc7\xfa\x57\xfc\xcf\xfe\xdd\xee\xe5\xdf\x3d\x7c\xf8\xf0\x62\x3a\x9d\x36\x26\x27\x27\xe5\xa9\x53\xa7\x54\x85\x44\xeb\x73\xb7\x5b\xff\x60\xd7\xa3\xd0\xbf\x70\x6e\xf6\x55\x99\x9a\xb7\xc7\x43\xbf\xde\x92\xf3\xed\xfe\xee\x63\x8b\xbf\x32\x34\x34\x74\x7f\xe7\xce\x9d\xc6\xed\xdb\xb7\xd7\x98\x1f\x35\x08\x0d\x0c\x0c\x08\x00\xaa\x2a\xa9\xb9\x23\xa3\x8d\x00\xce\x85\x6f\x15\x6d\x95\xa9\xaa\xee\x30\x18\x0f\x5a\x0a\x97\x41\x48\x30\xb3\x7e\xf7\xee\x5d\x67\x43\xdd\xf7\xf5\x3a\x74\x23\x1d\xe8\x26\xa0\xe8\xea\xea\xc2\xc9\x93\x27\xd1\xdc\xdc\xac\x11\x23\xd4\x14\x2f\x1f\x88\x2e\x19\xcf\x87\x92\xe5\xfd\x6a\x89\x3b\xc1\x50\xa5\x4a\xc9\x42\x44\xdc\x49\xb7\x29\x3f\x59\xed\xd2\xde\xd9\xbf\x6f\x5f\x62\x74\x74\x54\xbf\x7e\xfd\xba\x34\xe7\x43\x1b\xc9\xe3\xf5\x64\xbb\x8d\xcf\xc1\x83\x07\x45\x53\x53\x53\xa0\x2d\xe3\xdb\x7f\x6a\xb2\xf9\x4f\x14\x46\xa4\x42\x31\x7b\x77\x08\x08\x84\x81\x95\xc0\x97\x0e\xcf\x44\x27\xcf\x6d\x5b\xfd\xe3\xa3\x47\x8f\x26\xf7\xef\xdf\x2f\x14\x45\x09\x0c\x2e\x07\x9e\x1b\x7d\x14\xfa\xef\x2b\x0b\x2a\xac\x5d\xd4\xd5\x01\xd3\x9a\x53\x8f\x1c\x99\x8e\xfe\xf6\xdb\xdb\x57\xfe\xe0\xc9\x27\x9f\x4c\xde\xbe\x7d\xbb\x46\x7e\xbb\x59\xab\xec\xee\xee\x16\x00\xd4\xa6\xa2\xda\x1b\xd6\x95\x6e\xdb\x73\x63\x29\x37\x4e\x8b\xc3\xdc\x8e\xfd\xb0\xb9\x78\x05\x40\x4a\xd7\x75\xf9\xe8\xd1\xa3\xcd\xa8\xce\xee\xb0\xf5\xae\x36\xec\xdd\xbb\x17\xc7\x8e\x1d\x13\x60\x8e\xc4\x1e\x19\xcf\x74\x4f\xe8\xbf\x17\xc8\xc8\x23\x64\x11\xdf\xb1\x58\x28\x98\x96\xcf\x34\xcf\x97\xbe\xda\x3b\x5e\x9c\x8d\x0f\x68\x5f\x5f\x1c\xd4\xfe\xd3\xa1\x43\x87\xe2\xbd\xbd\xbd\xfa\x1b\x6f\xbc\xe1\x9e\x89\xaf\x57\x6f\x43\x33\x64\xf7\xee\xdd\x00\x23\xb4\x6f\x3e\xfc\x6b\xbe\xb2\x68\xb6\x55\x09\xd3\x19\xee\x98\x43\xc6\xde\xf9\xf0\xaf\x5e\xdc\x9a\xfa\xf3\x60\x30\x98\x09\x85\x42\x12\x8c\xc8\xe8\x62\xf8\xe7\x89\x2b\x53\x5c\x4e\x95\x84\x4c\x82\x13\x03\x23\x8b\xa1\x2f\x9c\x19\x4a\xfe\x19\x05\x02\x19\x54\xb6\x4a\xd8\x38\xac\x11\xda\x1d\x1d\x1d\x00\xa0\xb6\xe4\xd5\x21\xc1\xd0\x6c\x73\xdf\x9a\xf0\x70\x26\x26\x42\xc1\x27\x93\xc9\x80\x31\x05\xa0\xb0\x81\x4e\xdc\x2c\x78\x2a\x25\x7b\xf6\xec\x11\x4f\x3d\xf5\x94\x4a\x65\xee\xdc\x3a\x56\xfc\x83\x6d\x57\x0a\x7f\x15\xcc\x94\x8f\x12\x20\x6a\x56\xf2\x81\xad\x89\x52\x10\x08\xaa\xc1\x7d\x5d\x77\xf5\x3f\xdc\x71\x3e\xf7\x57\x81\x8c\xdc\xdd\xdb\xd3\x13\x78\xf1\xc5\x17\xa1\x69\xda\x46\x6c\xcc\x86\xf1\xe6\x54\x55\xb4\x33\xa3\x1d\x70\xaf\x68\x73\xae\xf1\x25\x00\x81\x92\xe8\x8e\x15\xd4\x61\x22\xd2\x98\x59\x00\x88\xc4\xf2\xea\x90\xed\x77\x35\x81\x5d\x79\x03\x86\xe8\x0c\x94\x44\x27\x00\x75\xef\xde\xbd\x35\xb4\x11\x0e\x62\x09\x00\xc2\x54\x12\xb4\xb6\xac\x6f\x47\x75\xa6\x83\xea\x2e\x7a\x48\x84\x4a\xb3\x25\x85\xe3\x00\xf4\xf9\xf9\x79\x77\xd9\x9b\xb9\xd6\x0b\x73\xe2\x29\x86\x87\x87\xc5\xb1\x63\xc7\x54\xc1\x68\x1f\xb8\x56\xf8\xe3\xd6\xd9\xd2\xef\x10\xa0\x55\xb5\x69\x97\x37\x9f\x08\xce\x15\x29\x04\x20\x98\x96\xc7\x86\x2f\xe6\xbf\xe3\xcf\xca\xbd\x1d\x1d\x1d\x81\x53\xa7\x4e\x55\xb7\xdf\xd5\xa9\xd7\xf5\x03\x1c\x1d\xbb\x75\xeb\x56\x2b\x5c\x23\x86\x66\xe7\xb6\x44\x92\x73\xbf\x88\x99\xd7\x10\xac\x31\xb3\x30\xeb\x55\xf3\xbe\x72\x0e\x6e\x70\x2e\x2a\x41\x45\xa9\x2c\xaa\xec\xa9\x99\xab\xae\x00\x84\x42\x21\x01\x40\x8b\x15\xd4\xbe\x9a\xf5\x8c\x9e\x57\x60\x39\x6c\x4c\x83\x90\x61\x66\x23\x1e\x8f\xd7\x94\xe5\x55\xe1\x3a\x57\xeb\xde\xd3\xc6\xd4\x34\x0d\xc7\x8f\x1f\x17\x04\x44\xba\x26\xf5\xdf\x8e\x3d\x32\x7e\xd1\x61\xdd\x56\xdd\x86\x55\x1d\x1b\xd5\xa3\x20\xe0\x48\xc7\x50\x8b\x3c\x34\x70\xb5\xf0\xef\x26\x8f\x86\xbe\x32\x38\x38\x38\x3b\x38\x38\x68\x4c\x4d\x4d\xad\xc1\x21\x16\x8b\x61\xf7\xee\xdd\xe8\xed\xed\x45\x30\x18\x14\x00\x90\xc9\x64\x30\x33\x33\x83\x1b\x37\x6e\x40\xd7\x75\x39\x33\x33\x63\xe1\x6b\x2c\x44\xf5\xc9\xee\xb4\x7f\xbf\x35\xc1\xe1\xd5\x99\x05\x9f\x4c\xa5\xfd\xe5\x38\x00\x69\x6e\x01\xd4\xef\xb5\x15\x2e\x0f\xac\x04\x8e\xda\x7b\x45\x6d\x91\x66\x17\x80\xb9\x68\xf1\x8e\x21\x38\x87\xda\x29\xae\x1a\x84\x25\x00\x69\xb2\x55\x01\x20\xd0\x54\x50\xba\x2d\x36\x65\x2d\xe7\xb0\x3d\x73\x8e\xe7\x64\xb0\x34\xcb\xcc\x05\x00\xd2\x54\xef\x3f\x89\x9f\x05\x35\x86\xfb\xd1\xa3\x47\xe1\xf7\xfb\xb5\x60\x4a\x1e\xe8\xbc\xa7\xff\x0e\xec\xe6\x92\xc3\x1c\x5a\xeb\x13\xae\xc4\xad\x9d\x7b\x0b\xa6\xe5\x91\xce\x7b\xfa\x6f\x80\x39\x72\xfc\xf8\x71\x38\xeb\x02\x80\x03\x07\x0e\xe0\x8b\x5f\xfc\xa2\xd8\xb7\x77\x5f\xa8\x3f\xd2\xd1\x3b\xa2\xb7\x3c\xbe\xbd\xd4\xbc\x7f\x6b\x4b\x77\xe7\xa1\x43\x87\x02\x5f\xf9\xca\x57\xc4\xc8\xc8\x88\x00\x00\x29\xa5\x64\x70\xee\x46\x4f\xe6\x47\x25\x45\x16\x60\x9a\x69\xf6\xa4\x3b\x99\x13\xc8\x04\x8c\x77\xe6\xce\x18\x42\x26\x89\xc8\xa0\x8a\x56\x9d\xba\xd9\x95\x7d\x23\x1e\x2e\x4d\xd7\xbc\x71\xa8\xa2\xab\x2b\x5c\x38\x3f\x90\xfa\x0e\x08\x49\x66\x96\xd3\xd3\xd3\x35\xf8\xae\x91\x41\xe6\x99\x33\x5a\x44\x57\x5a\x9d\x9c\x15\x8e\x7b\x7b\xad\x09\x01\x29\x7f\xf9\x21\x11\xe9\xa6\xc2\x50\xc3\xa6\x5d\xf7\xf5\x58\x97\xd7\xb3\xa7\x6c\x1c\x1c\x1c\x14\x60\x8e\x76\xdc\xd7\x7f\x43\x94\x11\x21\x53\xfe\x55\x1a\x6e\x1e\xa9\x62\xc9\x44\x46\xf5\x8d\x66\x86\x9d\x96\xab\x69\x89\x19\xed\x0f\xf4\x5f\x57\x0c\xf4\x06\x83\x41\x6d\xfb\xf6\xed\x76\xbd\x9f\xfa\xd4\xa7\xc4\x91\x23\x47\xb4\x08\x6b\xbd\xcf\xdf\x69\xf9\xc3\x5f\xbd\xd8\x73\xfe\x8b\xd7\x3a\xce\x7e\xf9\x6a\xe7\x7b\xbf\x7e\xb1\xfb\xec\xb1\x7b\xb1\xdf\x09\xa9\xfe\xd6\x67\x9e\x79\x46\x3d\x7a\xf4\xa8\x98\x9f\x9f\x97\x44\x94\x4a\x84\x8c\xab\x6f\x0f\x27\xff\xb3\x41\x6c\x90\xa3\x33\x2d\x59\x34\x17\xd5\xef\x9c\x1f\x58\xfd\x36\x80\xb8\x94\xd2\x58\x5a\x5a\x92\x44\x94\x2b\xa9\x7c\xe7\x87\x7b\x96\xff\xcf\x47\x11\x7d\x9a\xcd\xf9\x5d\x36\x69\x9c\x57\xcb\x99\x1f\x8d\x26\xfe\xe3\xa3\x26\xfd\x1c\x80\xc4\xd2\xd2\x92\xe1\x3e\x1b\xaf\x86\xb5\xb6\xb6\xb6\x56\xee\x19\xaa\x66\x88\xca\x9a\xcb\x1a\xbf\xb8\xf3\x35\xa9\xa0\x96\xd3\xca\x71\x00\x7a\xa1\x50\xf0\x1a\x4d\xf0\x78\xae\xe7\x8e\x83\x47\xbc\x9d\x77\x64\x64\x44\xf8\xfd\x7e\x55\xd1\xb9\x3b\xb6\x68\xbc\x50\xc1\xc7\xb1\x5a\xc1\x39\xda\x6a\xd4\x3e\xaa\x22\x6b\x3d\x3a\x8e\x12\x51\x4b\xe8\x8e\x2e\x1a\x9f\x5a\xd9\xe2\x9b\xdd\xbd\x7b\xb7\x7e\xf7\xee\x5d\x0c\x0f\x0f\x8b\xe1\xe1\x61\xd5\x5f\xa2\xde\xcf\x5f\xef\xf8\x66\x67\xc6\x77\xd2\x59\x64\xb0\x24\x86\x0e\x4f\x37\xfd\x51\x5b\xd6\xb7\xef\xef\x77\xc7\xff\xd5\xde\xbd\x7b\xe3\xd7\xae\x5d\x93\xbd\xbd\xbd\x05\x22\xba\x7f\xb3\x2b\xfb\xed\x95\x60\x29\x71\x78\x3a\xfa\x72\x77\x5a\xeb\x57\x24\xa9\xa9\x80\x91\xbc\xdd\x99\xbb\x74\x75\x4b\xe6\x3b\x86\xc2\x57\x09\x94\xbc\x75\xeb\x96\xbc\x70\xe1\x02\xbe\xf8\xc5\x2f\x16\x9a\x9a\x9a\x66\x57\x83\xc6\x9b\x7f\x7d\xf0\x51\x62\x68\x39\xf8\xec\x96\xa4\x7f\x44\x91\xa4\x2d\x45\x4a\xd3\x93\x1d\xb9\x77\x73\x9a\xbc\x04\x60\x52\x4a\x99\xfb\xe0\x83\x0f\xec\x3e\xb3\xa0\xc6\xd7\xea\xf3\xf9\xc0\xcc\xc2\x27\x45\x40\x2b\x53\x88\xcd\x06\xdb\x66\xa4\xd5\x81\xb6\xbb\x95\x65\xc1\x27\x93\xcc\x6c\x6d\x5e\xa9\xe7\xda\xaa\x17\xd7\xc8\x5d\x57\xd3\x99\x3d\x3d\x3d\x60\x66\x2d\x94\x2a\xef\x17\x06\xb7\xba\xcf\x98\x63\x9b\x91\x3a\x65\x24\xec\xb5\x30\x96\x0a\x6f\xc7\x9a\xb2\x88\x98\x10\x59\x36\x8e\x27\x7a\xd5\xef\xb6\xb5\xb5\x65\x60\xb2\x70\x00\x91\xc3\x33\xd1\xdf\xae\x74\x62\x2d\xbb\xb6\x60\x68\x39\xf0\xcf\x77\x2d\x84\xdf\xbb\xd1\x93\xf9\x8b\x2d\x5b\xb6\x64\x2e\x5c\xb8\x20\x8f\x1c\x39\x92\x04\x30\x36\x1f\xd3\x53\xaf\xee\x8d\x9f\xf7\x49\xea\x16\x12\x9a\xae\x72\x82\xc1\xb3\x0c\x4c\x13\x68\x21\x9d\x4e\x17\x2e\x5c\xb8\x00\x5d\xd7\xf1\xd6\x5b\x6f\xe1\xb3\x9f\xfd\x6c\x4e\x55\xd5\xfb\x65\x41\xa9\x3b\xed\xb9\x3b\x13\x1d\xf9\x66\x53\x19\xca\x30\xf3\x22\x18\x8b\x00\x32\xef\xbc\xf3\x8e\x9c\x99\x99\x81\x1b\xdc\x76\xa4\xa0\xca\x7a\x4b\x95\x98\xd4\xaa\xbd\x88\x9a\x9e\xb4\x6c\x22\x16\x90\x65\xc1\x05\x93\xcf\x03\x6b\x47\xe1\x66\xc1\x6b\x14\x0b\xa0\x72\x6e\x2b\x11\x69\xfe\x8c\xdc\x55\x43\x56\xfb\xc4\x2a\x0b\x51\x38\x9e\xad\x01\x69\xf7\x60\x25\x9c\x1c\xdc\x0e\x8c\x40\x56\x0e\x11\x10\x32\xcd\x10\x04\x83\x41\x55\x91\x68\xdf\xb5\x10\xfe\x32\xb9\xde\xe4\x5a\x9a\x90\xd8\xf3\x28\xfc\x95\xb1\x9e\xec\xab\x9d\x9d\x9d\xb9\x57\x5e\x79\xc5\x90\x52\x1a\x87\x0f\x1f\x4e\xa8\xaa\x9a\x63\xf0\x6c\x49\x41\x00\x0a\x84\x79\xbe\x41\x86\x80\xc2\xd2\xd2\x92\xfe\xfd\xef\x7f\xdf\x6e\xeb\xc2\xc2\x82\xf8\xe6\x37\xbf\x69\xbc\xfc\xf2\xcb\x99\xde\xde\xde\x02\x2a\x7b\x43\x55\x22\x12\xcc\x6c\x10\x91\x9e\xcb\xe5\xf4\x77\xdf\x7d\x17\x0f\x1e\x3c\xf0\xe4\x6c\xee\xd9\x0f\x30\xb3\x20\x90\x20\x86\xb0\x8f\xf2\xb2\x24\xb6\x83\x4b\x99\xb7\x52\x9a\x87\xd6\x7a\x14\x0e\xac\x65\x91\x9e\x9d\xe4\x7a\xf6\xf4\xac\x84\x42\x21\xc1\xcc\x9a\x52\xe2\x66\x06\xaa\x67\xde\x38\xcf\x8a\x73\x8f\x48\x82\xb9\x1d\x81\xec\x8e\x66\x54\x0e\x70\x60\xb2\x94\x6f\x82\x52\x42\x33\x18\x01\x06\x8b\xaf\x7e\xf5\xab\x82\x99\xd5\x90\xae\xf4\x06\x0c\xd1\x69\x2b\x9b\x8e\x13\x99\xc9\x31\x99\x1e\xcb\xab\x43\xaa\xa4\x66\x43\xe1\xc5\x2d\x5b\xb6\xc8\x1b\x37\x6e\xc8\xf9\xf9\x79\xec\xdb\xb7\x2f\xd7\xdf\xdf\x5f\xd0\x34\xcd\x32\x6d\x64\x22\x91\x90\x37\x6e\xdc\x80\xcb\xbd\x66\x73\xa5\x1f\xfe\xf0\x87\xe8\xee\xee\x36\x06\x06\x06\x8c\xee\xee\xca\xa6\xef\x74\x3a\x8d\xb9\xb9\x39\x4c\x4e\x4e\xc2\x30\x8c\x7a\x0e\x09\x51\xef\x30\x08\x01\x54\xad\x0c\x8b\x2d\x55\x55\x69\x54\x0f\xde\xd8\xb8\x6b\xcd\xae\xb4\x4e\x5c\x23\xb0\xd3\x72\x05\x33\x6f\x0d\xd5\x89\x1b\xd7\xc6\x5b\x43\xd1\x69\xce\xb1\x39\x34\x99\x20\x41\xb5\xac\x5f\x12\xab\x4c\x90\x00\x83\xad\x55\xe1\x0e\xb0\x58\xb9\x21\x58\x4a\x62\x0d\xa6\xcb\xf0\xe1\xc3\x87\x88\xc7\xe3\x78\xeb\xad\xb7\x6c\x2e\xd5\xd1\xd1\x21\x96\x96\x96\xbc\xda\xe4\xd6\x29\xc4\xc2\xc2\x02\x16\x16\x16\x1a\xf9\xa9\x9d\xdc\xcf\x7e\x76\x76\xa4\x84\xc9\x5a\x99\x20\x99\x20\x6d\x05\xc1\xb5\xef\xd1\x21\x9e\x84\xe0\x75\x4f\x06\x71\x56\xba\x99\xce\x5b\x03\x44\x84\x92\x5f\x24\xe1\x18\x15\x55\x3f\x00\xd9\xef\x19\x59\xab\xdf\xcd\x31\x5a\xeb\x8e\x72\xe2\x5f\x91\x95\xa5\x00\x25\x01\x92\x0e\x09\x28\xb3\x9a\x4c\x2d\x87\x4a\xd3\x9d\x19\xdf\x88\xed\xd9\xe2\x5a\x16\x4e\x60\xcc\xc5\x8a\xe3\x92\x50\x00\x20\x9d\x76\x74\x20\x10\x10\x3d\x3d\x3d\xf6\xbc\x62\x2c\x16\xc3\xfc\xfc\xbc\xfb\xc0\x0a\x4f\x7f\xf4\x93\x4f\x3e\x29\x22\x91\x8a\xbf\xdd\x9a\xc7\x74\xcc\x28\x79\xea\x1e\x9e\x6b\x76\x24\x20\x25\xb1\xc1\x0e\x16\x42\x16\xd5\xa8\xba\x6d\x55\x30\x84\x2a\x49\x33\x59\x87\x99\xd5\x59\xcc\x9a\x37\xc8\x8d\x40\xbd\xd1\xbc\x46\xfb\x2d\x16\x8b\x08\x06\x83\x7a\x3e\x2a\x26\x6a\xcf\x0e\x83\xcd\x3a\x6a\x94\x55\x3b\xda\xc9\x3e\x1c\xa3\xcb\x7a\x29\x01\xe4\xa3\xca\x14\x08\x05\x02\xc9\x3b\x77\xee\x60\xc7\x8e\x1d\x06\x83\x13\x17\x06\x52\xaf\xbc\x74\xb3\xed\x5f\x57\x56\x48\xb0\x43\x21\xae\xd0\x41\x17\x5c\xf8\xa0\x2f\xfd\x03\x10\x52\xcc\x6c\x98\x0a\x9f\x3c\x7a\xf4\xa8\xd8\xb5\x6b\x57\x65\x0f\x25\x9b\xb4\x25\x48\x66\x36\x1e\x3e\x7c\x28\xcf\x9d\x3b\x27\xcc\x53\x24\x6d\x3a\xb4\xb4\xb4\x88\x13\x27\x4e\xa0\xbb\xbb\x5b\x23\x90\xa6\x95\x29\x20\x24\x89\xa2\x4f\x16\x76\xec\xd8\x51\x38\x74\xe8\x90\x71\xee\xdc\x39\xe7\x54\xdc\x1a\xa7\x79\x0d\x30\xb3\x2c\x0b\xe8\x25\x85\x73\xc1\x12\xb5\xae\x35\x50\xc9\x26\x02\x08\x22\x58\x52\xa2\xcc\xf6\xe1\x79\x5e\x1d\xea\x8c\x6b\xf4\x56\xb9\xcd\x97\x9a\xb8\x78\x3c\x8e\xe6\xe6\x66\xbd\x18\x11\x53\xc5\x10\xcd\xfa\x73\xdc\x47\xae\xf1\xe1\xde\xd2\x57\xd5\x51\x1d\x1d\x00\x54\x8c\x73\x9b\x17\x03\xa9\x4e\xf5\x3c\x33\xe7\x74\x5d\x97\x6f\xbf\xfd\xb6\xec\xe9\xe9\x31\x9a\x9a\x9a\x12\x77\xdb\xf2\x3f\x3a\xb7\x6d\x75\xf8\xa9\xfb\xb1\xcf\x29\xb2\xf2\xb2\x5a\x87\x1f\x96\x54\x2e\x9c\x1e\x59\xf9\x8b\xa5\x48\xe9\x7d\x66\x4e\xce\xcf\xcf\xcb\x62\xb1\x88\x2f\x7c\xe1\x0b\xa2\xad\xad\x2d\x10\x2d\xaa\xdd\xfb\x66\x23\x5f\xe8\x4e\x69\x87\x05\x93\xb6\x1c\xd6\x6f\x7e\xd8\x9d\xfd\x0e\xb6\x6c\x99\xfc\xfc\xe7\x3f\x5f\x78\xfd\xf5\xd7\x61\xae\x5b\x95\xcd\xcd\xcd\xe2\xa5\x97\x5e\x12\xa1\x60\x28\xd0\xbf\xe2\x3f\x72\x78\x26\xfa\x5b\x1d\x19\xdf\x13\x82\x49\x5b\x09\x1a\x37\xaf\xf7\x66\xbe\x71\xb3\x9b\x5e\xfb\xcc\x67\x3e\x93\xf9\xe0\x83\x0f\xac\x95\x05\x35\x2f\xbb\xe2\x20\x2a\x75\x76\x76\x62\xeb\xd6\xad\x82\x88\x5a\x77\x2d\x84\x7f\x62\x54\x13\xfa\x00\x00\x1c\x93\x49\x44\x41\x54\x2e\x5c\x12\xed\x35\x9d\x57\xe1\x5b\x26\xd1\x2a\x6c\xeb\x41\x6b\xe1\xdc\x72\xb8\x74\xad\x58\x2c\xe6\x6f\xdf\xbe\x6d\x15\xbc\xd6\x8d\xb2\xf6\xbe\x5e\x1c\xb9\xc2\x25\x00\x21\x84\xc0\xd0\xd0\x10\x00\x68\x24\x69\x4b\xd3\x72\xf9\x31\x62\x27\x2e\xae\x52\xab\x3d\xec\xe8\xc4\xea\x19\xae\x96\xbf\x27\xd7\xac\x4c\x2e\x0c\x6b\xdf\x20\x41\xd3\xf3\xf3\xf3\x85\xc9\xc9\x49\xce\xe5\x72\x34\x34\x34\x64\x80\x50\x98\x8b\xea\xd3\xd3\xad\x85\x05\x02\xfc\x4c\x40\xc6\x6f\xac\x4e\x74\xe4\xaf\x9f\x1e\x59\xf9\xe6\xc3\x58\xf1\x87\x20\x4c\x00\x48\x9d\x3b\x77\x8e\x4f\x9d\x3a\x85\xf6\xf6\xf6\xd0\x60\x22\x78\xea\xf3\x37\x3a\xbe\x33\xb0\x12\xf8\xf9\xe6\x82\xba\x27\x5a\x54\x47\xbb\xd2\xda\xd3\x7b\x16\x22\xbf\x0c\xa2\xf4\xa3\x16\xe3\xd6\xe0\xd0\x90\x3e\x35\x35\xc5\x00\xe8\x73\x9f\xfb\x1c\xc2\xa1\x70\x78\xff\x5c\xf8\x2b\x9f\xbe\xdd\xf6\xe7\xb1\xbc\xef\x31\x1f\x8b\x66\x85\xa9\x29\xa2\x2b\x43\x43\xcb\x81\x2f\x44\x0b\x6a\xec\x41\x7b\xf1\x52\x57\x4f\x77\xfe\xe1\xc3\x87\xc8\x66\xb3\x64\x37\x0a\xd5\x63\x3e\x19\x00\x2f\x2e\x2e\xf2\xa1\x43\x87\x54\x22\x8a\x0e\x2d\x07\x3f\xdd\x92\x57\xfb\x2a\x5a\xdb\x5a\xca\x58\x67\xb6\x2d\x36\xe9\xb7\xe6\x62\xc5\x73\xaa\xaa\x66\xaf\x5d\xbb\x26\x9d\xe5\x7d\x84\x1f\x99\x1d\xe7\x0c\x03\x00\x5e\x59\x59\xe1\xfd\xfb\xf7\x43\x08\x41\x85\x26\x45\x6f\x5e\x28\x3d\xad\x18\x88\xd8\xb8\x50\x65\x23\x91\xb5\x74\xdb\x1a\x71\x44\x56\x1c\x4c\x37\x99\xa5\xf7\x10\x58\x90\x9c\xd9\x1b\xf8\xba\x1e\x51\xce\x32\x73\xfc\xf2\xe5\xcb\xe5\x44\x22\xc1\x2b\x2b\x2b\x1c\x0c\x06\xb9\xbd\xbd\xbd\x08\x60\x35\x1b\x90\xd3\x77\xdb\xf2\x97\xc7\x7a\xb2\xef\x8c\xf5\x64\x4f\x3f\x68\x2b\xbc\x9e\x57\xcb\x97\x00\x4c\x11\xd1\xea\xf9\xf3\xe7\xcb\xc1\x60\x10\x23\x23\x23\x5a\x34\xaf\x8c\x7e\xee\x46\xc7\xb7\x83\x25\xa5\xcf\x66\x5c\x26\x4e\x02\xa4\x6d\x49\xfa\x9f\x5d\x0d\x1a\x13\x89\x68\xf9\x4e\x7b\x7b\x7b\xa9\xad\xad\x0d\x3d\x3d\x3d\x5a\x7b\x4e\x3b\xf4\xd2\xcd\xb6\x6f\xa8\x2c\x9a\x80\xea\xc1\x89\x56\x09\x1d\x59\xdf\xa1\x82\x4f\x2e\x3c\x8a\x95\x6e\x74\x77\x77\xeb\xe6\x62\x2d\x9b\x3e\x35\x2c\xae\xa3\xa3\x43\x98\x36\xa1\x9e\x0a\x18\x8b\x95\xb7\xdd\x39\x1a\x2b\x84\xb2\xd7\x96\x13\xd0\x9a\xf3\x6d\x23\x22\xcd\xb2\xc1\x36\x01\x5e\xda\xab\x5b\x5e\xd7\xdc\x8f\x8f\x8f\x4b\x00\x29\xe9\xa3\x9b\x33\xfb\x02\xff\x91\x05\x74\x8b\x9b\xd6\xc8\x44\xa0\x46\x02\x98\x6d\xad\x9a\x50\x26\x8d\x96\xb6\xf9\x5e\x4f\xb7\x2b\x3f\x66\xe6\xc5\x74\x3a\xad\x4f\x4e\x4e\xda\x75\x9d\x39\x73\x46\x5e\xbb\x76\x4d\x2f\x97\xcb\x71\x66\x1e\x07\xf0\x3e\x08\x6f\x33\xf8\x4d\x66\xbe\x00\x60\x52\xd7\xf5\xe4\x99\x33\x67\x8c\xb1\xb1\x31\xec\xd9\xb3\x07\x60\x44\xf6\xcd\x47\x7e\x2d\x60\x88\x5e\x00\xf6\xcb\xc5\x0e\xf9\x2d\x00\xed\xc8\x74\xf4\x5f\x11\xa3\xbd\xbb\xbb\x5b\x1d\x1d\x1d\x15\x00\x22\xfb\xe6\xc2\xbf\xa4\x4a\x6a\xae\xa0\x6e\xd9\xae\x0c\xeb\x30\x43\x02\xc4\xa1\xd9\xa6\xdf\x52\x99\x3a\x9b\x9b\x9b\xd5\xbe\xbe\xbe\x1a\x37\x68\x8d\x1d\xb9\xbc\xbc\x6c\x9d\xcb\xad\x27\x03\xc6\x1c\x7b\x68\xab\x36\x61\xb8\xf2\xa6\xb5\x65\x7d\xdb\xc0\x08\x11\x91\xe8\xee\xee\x16\x2e\xd5\xb9\x11\xb8\x4d\x11\x4f\xfb\xd1\x71\x2f\xaf\x5d\xbb\x26\x86\x87\x87\xf5\x60\x30\x38\x97\x6d\x51\x7e\x34\xbd\x2f\xd0\xb9\x75\xac\xf0\xab\xc2\xa8\x4e\x1d\x55\x8f\x88\xa1\x9a\xc3\x77\xd9\x71\xa4\x27\x13\x61\x65\x8b\xfa\xfe\xfc\x88\xff\x1b\x20\x9a\x24\x20\x73\xe5\xca\x15\xab\xed\x76\xdd\x17\x2e\x5c\xc0\xc4\xc4\x84\xdc\xb1\x63\x47\xa1\xbf\xbf\xbf\xd0\xda\xda\x2a\x00\x60\x69\x69\x49\x3e\x78\xf0\x00\x37\x6f\xde\x44\xb1\x58\x94\xe1\x70\x58\x44\x22\x11\x01\x46\xa4\x77\xd5\x7f\xa4\x96\x99\xb3\x45\x2e\xfb\x7f\x2c\xaf\x8e\x44\x8a\x4a\x7f\x3a\x50\x5e\x24\x22\x03\x8c\x68\x57\x5a\x7b\xdc\x42\x98\x89\x6d\x73\xc7\x79\x5e\x6c\xb8\xa8\x0c\x45\x0b\xea\xb6\x95\x90\x31\xd7\xd1\xd1\x61\xcc\xce\xce\xd6\x38\x04\xaa\x94\x95\x12\x52\x4a\x08\x21\xf4\xe5\xb0\x71\xaf\x4a\x05\xe7\x1b\x6f\x53\x0c\x60\x46\x73\x5e\xdd\x16\x2c\x89\xd6\xbc\x26\xa7\x3b\x3a\x3a\x8c\x85\x85\x85\x8d\x8e\x4c\xf7\x48\xf4\x0a\xaf\x49\x9f\xcb\xe5\x70\xe6\xcc\x19\xf9\xfc\xf3\xcf\x67\x18\xb8\x93\xec\x51\xbf\x5d\x0a\x04\x53\x5b\xc7\x0a\xbf\xec\xcf\x72\x27\xb9\x90\xb4\xcf\x41\x47\xd5\xd7\x23\x55\xe8\x8f\x86\xb5\xd7\x16\xb7\x69\xdf\x62\xc2\x55\x02\xe2\x13\x13\x13\xd6\x1a\x98\x35\x75\xaf\xac\xac\xe0\xc2\x85\x0b\xf2\xc2\x85\x0b\x16\xb7\x5a\xd3\xe1\xad\xad\xad\x96\x23\x25\xa0\x4a\x8a\x58\x3e\x4c\xe7\x79\xe8\x4e\xc7\x05\x01\x42\xa9\x6c\xc1\x50\x99\x59\x12\x48\x93\x04\xe1\x3c\xda\xad\x32\x28\x4d\xcd\xca\x7a\x26\x58\x36\xab\x6a\xfa\xc5\x6d\xda\xd4\x4c\x63\x01\x90\xa6\x37\x5e\x4f\x06\x4b\xd3\x65\x82\x4e\x16\x7b\x05\xd9\x32\x07\x20\x7b\x09\x82\x56\xa6\x68\x5b\xd6\x37\x02\x40\xed\xe9\xe9\x71\x76\x8a\xd7\xd4\x54\xbd\x69\x2b\xe1\x8a\xaf\x5b\xce\xbd\x7b\xf7\xe4\xb5\x6b\xd7\x0c\x00\x09\x06\xc6\xb2\xad\xea\x77\xee\x3c\x15\xfe\x83\xb9\x51\xff\x0f\x0b\x61\x8a\xb3\xc9\x96\xc8\x41\x3c\x26\x42\x59\xa3\x5c\x7c\xab\xef\xc2\x9d\x63\xa1\xff\x6d\x71\x50\xfb\x1a\x13\x2e\x10\xd1\xdc\xec\xec\x6c\xc1\x69\xbc\xd7\xc1\x17\x40\x65\xee\xd0\xe1\xc5\xb2\xe3\x66\x66\x66\xa4\x65\xd7\xae\x84\x4a\x0b\xd6\x7d\xe5\xa8\x50\xf3\xcf\x36\xe5\x08\x69\x7f\x39\x9e\xf1\x97\x53\xcc\x2c\x89\x48\x82\x60\x2c\x44\x8b\x53\x56\xaf\x54\x3a\xdc\x31\x41\x47\x15\x7a\xc7\xc3\xa5\xa9\xd5\x40\x39\x01\xc0\x79\x30\x93\x84\x63\x44\xda\x2c\x6d\x71\x71\x11\xdd\xdd\xdd\x7a\xc6\x5f\x9e\xcb\xf8\x8d\x78\x73\xde\x57\x3d\x7e\xc5\xaa\xc8\xfa\x67\xda\x67\xfd\xc9\xc0\x93\xb3\xcd\x85\xd7\xba\xba\xba\x72\x8e\x86\xd7\x03\x2f\xfb\xd1\xcb\x36\xaa\x9b\xfe\xfc\xf9\xf3\x52\xd7\x75\xe3\xd0\xa1\x43\x09\x22\xd2\xcb\x2a\x12\x4b\xdb\x7c\x77\x96\x06\x7c\xdf\x0f\x64\xe5\x8e\x60\x4a\x6e\xf3\x15\x64\x2b\x31\x84\xa1\x51\xa6\x10\x11\x73\xf9\xa8\x72\x5b\x2a\xb8\xcf\xc0\x34\x11\xcd\x81\x39\x35\x33\x33\xa3\xbf\xfe\xfa\xeb\x35\xed\xaf\x73\xf5\x4a\x53\x83\x9b\xd9\x29\xb9\x9b\xdd\xd9\xb7\x46\x96\x42\x9f\x12\x6c\xda\xd6\x55\x37\x92\x49\x3c\xc6\x87\x3d\x99\x37\x4b\x42\xc6\xad\xb3\x65\x89\x28\x73\xbd\x37\xf3\x0f\xbb\x17\xc2\x9f\x09\x1a\x4a\xc4\xe9\x41\xb3\x09\x44\x2c\x3f\xd8\x9a\xfa\x21\x83\x13\x60\xe8\x0e\xe7\x83\x84\xa9\xb5\xda\xe6\x07\x00\x34\x35\x35\x61\x60\x60\x80\x98\x10\xee\x49\xf9\x8f\xb6\xe7\x7c\x03\xd5\x58\x67\x4a\x58\x83\x14\x6a\x99\xd4\xb1\x9e\xec\xdf\xfa\x7c\xbe\xd4\xbd\x7b\xf7\x38\x9f\xcf\x5b\xa9\xdc\xa6\x84\xa5\x95\x0a\x8f\x78\x5a\x5b\xba\x0d\xec\xce\x63\xba\xb2\xb8\xbb\xbb\xbb\x18\x08\x04\x32\x20\x8a\x83\x68\xce\xf0\x8b\xbb\x85\xa8\x72\x2d\xdb\xaa\x5e\xc8\xb6\xaa\x67\xf3\x31\xe5\xbd\x52\x50\x5c\x60\x41\x1f\x82\x68\x12\xc0\xbc\x94\x32\x73\xf1\xe2\x45\xe3\xbd\xf7\xde\x73\x7e\x7c\xc5\xc5\xd8\x6a\x9e\xdd\xb2\x9b\x5c\xe9\xa8\xaf\xaf\x8f\x23\x91\x08\x56\x03\xe5\xa2\xdf\x10\x7d\xdd\x69\x6d\x7b\xad\xa2\x58\x91\x7d\xb3\xcd\xc5\xf1\x9f\x6c\x4f\xfe\x7b\xa9\xe0\x0e\x33\x67\x0a\x85\x82\xf4\xf9\x7c\x5c\xf4\x71\x39\x11\x2e\x19\xdb\x96\x83\xfb\x55\x86\xcf\x69\xf2\x49\x62\x5c\xda\x9a\xfe\x87\x6b\x5b\x32\x7f\xc9\xc0\xdd\x5c\x2e\x97\x3b\x7b\xf6\xac\x75\xac\x0d\x01\xb5\xc7\xb3\x30\x00\x8e\xc7\xe3\x7c\xe8\xd0\x21\xc1\xcc\x81\xa0\x21\x86\x07\x13\x81\xc3\x54\x4d\x6f\xb6\xcc\xf4\x72\x98\xe1\x41\x43\xb4\x4e\x74\xe6\x5e\xcb\xab\xe5\x39\xc3\x30\x4a\xa6\xf7\xa1\x9e\x89\x81\x06\x71\x9b\xca\x93\x4e\xa7\x79\x6c\x6c\x8c\xb3\xd9\xac\x0c\x85\x42\x85\x50\x28\x94\x06\x90\x20\xa2\x45\x66\x9e\x23\xa2\x79\x66\x9e\x03\xf0\x08\x40\x22\x9f\xcf\x67\x26\x27\x27\x8d\x1f\xff\xf8\xc7\x3c\x33\x33\x23\x99\x79\x23\x75\x61\x9d\x70\x06\xc0\x52\x4a\xda\xb6\x6d\x5b\x19\x80\x3e\xd3\x5a\x9c\x4d\xfb\xcb\xdc\x9c\x57\xbb\xb4\xb2\xf0\x33\x80\xac\x56\x4e\x5f\xdb\x92\x7d\xf7\xad\xe1\x95\x3f\xd3\x15\x79\x19\xc0\xd2\xd8\xd8\x58\xe9\xec\xd9\xb3\x18\x19\x19\x29\x0b\x21\x0a\xc9\x60\x79\x69\xa2\x33\x7f\x1f\x40\xc0\x27\x49\x2b\xaa\xb2\xf0\x30\x56\xbc\xff\xce\xf0\xea\x77\xc6\x7a\xb2\xdf\x62\xf0\x2d\x00\x89\x0b\x17\x2e\x58\x67\xc1\xda\xf5\x7b\x6d\x19\x90\xd9\x6c\xd6\x08\x85\x42\x99\x99\xe6\xe2\x07\x0c\x48\x22\x08\x80\xbd\xbf\xbb\x41\x0c\x85\xa1\xed\x58\x0a\x7d\xfa\x7c\xff\xea\xe5\x91\x91\x91\xdc\xa5\x4b\x97\x84\xe3\x43\x60\xc0\xc6\x26\x92\xe1\x91\x66\x23\x2c\x0f\xe3\xe3\xe3\xd2\xdc\xa6\x20\x87\x87\x87\x65\x57\x57\x57\xcd\xf6\xe8\x74\x3a\x8d\xeb\xd7\xaf\xaf\xc7\xf2\xeb\x41\x23\x57\xa2\x0d\x13\x13\x13\x72\x60\x60\xc0\x18\x1a\x1a\x8a\x4b\xe6\xab\x1f\xf6\x64\x93\xb7\xba\xb2\x6f\x84\x4a\x4a\xaf\x60\x88\x9c\x4f\x2e\x1a\x0a\xdf\x67\xe6\x29\x22\x5a\x58\x5d\x5d\x2d\xbc\xf7\xde\x7b\x12\x00\xce\x9f\x3f\x8f\x13\x27\x4e\xa4\x00\x8c\xaf\x06\x8d\xe4\x4f\x86\x93\xd7\xc1\x68\x25\x40\x65\x42\x12\xc0\x1c\x80\x59\x02\x25\xc6\xc7\xc7\x0d\xaf\x0d\x3f\x16\x6b\x75\x28\xb9\xa0\xf6\xf6\x76\xb4\xb5\xb5\x89\x82\x2a\xb5\x9d\x4b\xa1\xe7\x82\x25\x25\x66\xfa\x50\x6a\x78\x77\x55\xcb\x22\x44\x74\xa5\x6d\xac\x37\xfb\xaa\xa2\xf9\x56\x1f\x3d\x7a\x24\x53\xa9\x94\xc5\x46\xdd\x6c\xaa\x1e\x3b\xe5\x3a\x57\x37\xab\x75\x97\x51\xc3\x76\x13\x89\x84\x9c\x99\x99\xa1\x99\x99\x19\x58\x3f\x73\x43\x91\x4b\xea\xd8\x9d\xe4\xc6\x87\x5d\xf1\xa8\x93\x66\x4d\xde\xfb\xf7\xef\x23\x16\x8b\x95\x5b\x5a\x5a\x72\x44\x94\x60\xc2\x9c\xae\xf2\x9d\x82\x22\x6f\xb1\xc0\x6d\x00\x0f\x00\xc4\x17\x17\x17\x0b\xa7\x4f\x9f\x46\xb1\x58\x24\x00\xb4\xb4\xb4\x84\x54\x2a\x25\x7b\x7b\x7b\x8b\xaa\xaa\xa6\x98\x79\x81\x88\x66\x40\xb8\x87\xca\xa9\x99\x73\x52\xca\xd5\xb1\xb1\x31\xe3\xec\xd9\xb3\xee\x41\xc0\x80\xf7\x07\x5c\x60\xbb\xc3\x08\xc1\x48\x51\xd9\xd9\xbb\xaa\xed\xb2\x3c\x23\x56\x0f\x92\xa9\x1e\x93\x69\x97\x05\x0c\xd1\xf2\xa8\x49\xbf\x9a\x08\x96\xee\x84\x42\x21\x7d\x62\x62\xc2\x49\x7c\x0b\xdc\xcf\x5e\x71\x5e\x32\xb2\x51\x19\xec\x0a\x5b\xaf\x0e\xe7\x4f\x3a\xd2\x5b\xf7\xce\x4e\xf2\x82\xba\x76\x32\x33\xe3\xde\xbd\x7b\x48\xa5\x52\x32\x12\x89\x14\xc3\xe1\x70\x86\x99\x57\x89\x68\x85\x99\x57\x53\xa9\x54\xee\xd2\xa5\x4b\xe5\xf7\xdf\x7f\x1f\xf9\x7c\xde\x59\x37\x12\x89\x84\x1c\x1f\x1f\x87\x61\x18\x86\xcf\xe7\x2b\x84\xc3\xe1\x1c\x33\x67\xb2\xd9\x6c\x76\x7a\x7a\xba\xf4\xee\xbb\xef\xb2\xe9\x02\x75\x0f\x02\xd3\x87\x55\x0b\x02\x80\x0c\x85\x42\xe2\x97\x7e\xe9\x97\x04\x80\xee\xee\xb4\xff\x4b\xbf\x70\xa5\xf3\x4f\x6c\x2d\x8c\xaa\x4e\x07\x37\x0d\xa7\x5b\x0a\x6f\x7f\x7f\xff\xd2\xaf\x49\xf0\xdc\x77\xbf\xfb\x5d\xb9\xb2\xb2\x52\x8f\x25\x35\x62\xaf\x8d\xd2\xd5\x83\x8f\x9b\xff\xa7\x06\x3d\x3d\x3d\x02\xa8\xb0\xf7\x4c\x26\xf3\x53\xc3\x45\x31\xaf\xd6\x10\x65\x00\xa2\x54\x2a\xc9\x2d\x5b\xb6\xa0\xa9\xa9\x89\xf2\xbe\xb2\x18\x4a\x04\x4f\x86\x4b\x4a\x8b\xe5\x04\xb0\xce\x16\xa9\x98\x21\xa6\x7d\x44\x40\xb4\xa0\xf4\xcd\x36\x17\xcf\xa5\x83\xe5\x07\xc1\x60\xb0\x34\x35\x35\xe5\x64\x55\xc2\x71\xef\x0e\x73\xb3\x3c\xb8\xd2\x39\xd3\x0a\xac\x4d\x4f\x75\xe2\x9c\xa3\xcb\x1d\xef\x55\x9e\x3b\xac\xde\xd5\x09\x5e\xf9\x6d\xc8\x64\x32\x94\xc9\x64\xa4\xae\xeb\x76\xf8\x73\xcf\x3d\x27\x4e\x9e\x3c\xa9\x1c\x3e\x7c\x58\x7d\xe2\x89\x27\x94\xc7\x1f\x7f\x9c\x86\x87\x87\x81\x0a\x9b\xad\x57\x5f\xc3\x30\xb7\xf9\x61\xb3\x35\x45\x51\x30\x30\x30\xc0\x4c\xf0\xa9\x92\xfa\x06\x56\x02\x07\xac\x33\xd4\xac\xc4\x8e\x7f\x56\xdf\x8a\xa6\xa2\xda\x31\xde\x95\x7b\x3d\xd6\x1c\xcb\xcc\xcf\xcf\x73\x26\x93\x71\xcb\x39\x27\x51\x9d\x61\xeb\xc9\x21\x6c\xa0\x1c\x2f\xd3\x06\x75\xf2\x36\x32\x27\xe0\x7a\x76\xa7\x75\xb3\x67\x27\x2b\xae\xab\x03\xec\xda\xb5\x4b\x7c\xee\x73\x9f\x53\x5a\x5b\x5a\x83\x5d\x85\xc0\xf0\x48\x3c\xf4\xfc\xc0\x4a\xe0\x58\xb8\xa4\x34\x1b\x31\xdf\xea\x96\x6d\x5b\x8d\x81\x81\x01\x39\x33\x33\x03\x5d\xd7\xdd\xe5\x79\xb5\xc1\x0e\x5b\x63\x7e\x58\xbf\x78\x3c\xce\xfb\xf6\xed\x83\xa2\x28\x94\x0a\x18\xbc\x6f\x3e\xf2\x59\x95\xc9\x67\xf9\x5f\xed\x3e\xb4\x3c\x48\xa6\x23\xb6\xa9\xa8\x6e\x8d\x47\x4a\x63\x2b\x21\x63\x32\x16\x8b\xe9\xa6\xeb\xcb\x5d\xbe\xc5\xf2\x36\x6d\x72\xac\x93\x66\x23\x79\x36\x9a\x17\x0d\xe2\x36\x5d\xe7\xae\x5d\xbb\xc4\xf1\xe3\xc7\x55\xbf\x54\x3a\x7e\x66\xa2\xe5\x7f\x7e\x76\xb2\xe5\xcf\x06\x97\x83\xbf\xd0\xbf\x1a\x78\x71\xc7\x52\xf0\x97\x47\x17\xc3\x9f\x4e\x84\x8c\xc9\x52\x9b\x36\x3f\x30\x30\x50\x1a\x1b\x1b\xdb\xd4\x4c\x92\xc5\x5a\x2d\xa8\x61\x0d\xe6\xf7\x31\xb8\xa4\xb0\xd2\x54\x50\x47\xba\x32\xbe\x21\xe7\xbb\x46\x80\xb9\x58\xd9\xec\x51\x73\x54\x76\x64\xb4\x91\xf1\xee\xdc\x3f\x04\xa3\x91\x74\xb1\x58\x94\x8b\x8b\x8b\x6e\x6d\xd0\x6b\xc4\xad\xc7\xc2\x1a\xc1\x47\x65\x85\x9f\x14\x34\x2c\xb3\xb9\xb9\x59\x3c\xff\xfc\xf3\xc2\xa7\xa8\x2d\x9f\xbe\xdd\xf6\xc7\xa3\x8b\xa1\xdf\x20\x86\xe6\x9c\x84\xf0\x97\x45\xd7\xf6\x78\xf0\xc5\xd9\xe6\xe2\xfb\xa5\x98\x3a\x1f\x8d\x46\xcb\xf7\xef\xdf\x6f\x84\x67\x4d\x9d\xc2\xf5\xab\x09\x3f\x73\xe6\x8c\x64\xe6\x02\x33\x2f\x5c\xdb\x92\xfe\x81\x21\x58\xb7\x97\x3f\x5b\x5a\x0f\x5b\x7b\x14\xc8\xbc\x27\xb4\xe4\xd5\xdd\x47\x1e\x44\x7f\x13\x8c\xc8\x13\x4f\x3c\x21\xa2\xd1\xa8\xbb\x3e\xb7\xe6\xd7\x48\x29\xaa\x99\xae\xf1\xb8\x5f\xcf\xf9\xee\x4e\xe3\x2e\xdf\x2b\x4d\x43\xba\x6c\xb0\x2c\xfb\xf9\xc0\x81\x03\x50\x55\x35\xb0\x75\xc5\x7f\x62\xc7\x52\xf0\x9f\x93\x73\xa9\x3e\x9b\x7e\x6b\x26\x68\x52\xb4\x3e\x3d\xd5\xfc\xfb\xc4\x68\x1d\x1a\x1a\xda\x08\xfe\x76\xdd\x4e\x83\xdd\x8d\x10\x00\x88\x85\x85\x05\x49\x44\xc9\x44\xc8\xb8\x3c\xd1\x91\xbf\xe0\x58\x8b\x6f\xb2\x54\x36\x97\x08\xb2\x19\x56\x79\x49\x0e\x3c\x6c\xfa\x6a\x5f\xd2\x7f\x42\xd3\xb4\xc0\x73\xcf\x3d\x07\x45\x51\xdc\x86\xbf\xbb\x5e\x67\xfd\x5e\x1d\xed\xa5\x81\xd6\xeb\x38\x2b\xce\x1d\x5f\xef\x85\xf0\x4a\xe3\xc6\x69\xa3\x1d\xed\x74\xaa\x0b\xa0\x72\x26\x03\x80\xd0\x90\x75\xcc\x27\x01\x20\x36\x77\x82\x3b\xae\x60\x74\xa5\xb5\x23\xb1\xbc\x3a\xac\x28\x8a\x76\xe0\xc0\x01\x77\xd9\x75\xdb\xe1\xae\x18\x8e\x7b\x09\x40\x7e\xf0\xc1\x07\x60\xe6\x02\x83\x67\x2f\x6e\x4d\x7d\xc7\x10\xac\x13\xd8\xf4\xec\x03\x80\x39\xd1\x6c\x79\xfa\xcd\x37\x4c\x65\x0a\xfd\xcc\x44\xcb\x1f\x05\x75\xb1\xad\xad\xad\x4d\x7b\xea\xa9\xa7\xd6\x94\x8d\xc6\x9d\x53\x2f\x5d\xa3\xd9\x11\x77\x3b\xdc\xf1\xff\x18\xbf\x35\xb8\xf9\xfd\x7e\x41\x44\x81\x50\x49\xe9\xb5\x78\x61\xed\xac\x48\x75\x96\x44\x30\xb4\x60\x49\xf4\x02\x50\x43\xa1\x50\xbd\xf6\xad\xf9\x79\xbd\x95\xce\xd1\x20\xe6\xe6\xe6\xe4\xfc\xfc\xbc\x41\x44\x89\x95\x90\x71\x69\xac\x27\xfb\x76\x05\x19\x86\x3d\xd3\x4c\xe6\xf8\x34\x57\xd8\x59\x8b\xd6\x9a\xf3\xea\xe8\xf3\x77\x5a\xff\x50\x61\x6a\xdf\xb5\x6b\x97\x35\x1b\xee\xae\xcf\x4d\x74\xaf\x37\xbf\xae\x11\xee\x2a\x6f\xa3\xa3\xa9\x51\xda\xcd\x3c\x37\xaa\x07\x00\x84\xf3\x98\xcf\x94\xdf\x48\x58\x52\xcd\x3e\xa4\x18\xb0\x17\x4c\x03\x40\x49\xe1\x42\x2a\x60\xa4\x80\xca\xc7\xd9\x1a\xe0\x58\xd3\x26\x2f\x16\xe3\x24\x9c\x04\x20\x5c\xa3\xf2\xaf\xb2\x9a\x4c\x5a\x13\xa7\xce\x93\x0e\xad\x83\x06\x6d\xb6\x0b\xc2\xe0\x72\xe0\x73\x27\xee\x35\xff\x2e\x81\x9a\x8f\x1f\x3f\x2e\xcc\x33\x0a\xdc\xf5\x35\x92\x85\x8d\xd2\xd6\x63\x91\xf5\xca\xa8\x97\x66\xa3\x75\xaf\x87\x83\x3b\x0f\x52\xa9\x94\x75\x32\x66\x61\xb2\x3d\x7f\x9e\x05\xcb\xda\xef\xa3\x54\xb7\x28\x02\xc0\x4c\x73\x71\x2c\xab\xc9\x05\x00\x86\x63\x3f\x8d\xf3\xe7\x29\x2e\xea\x99\x1f\x70\x5e\x33\x99\x0c\xb7\xb7\xb7\x73\x4b\x4b\x8b\xa1\x2b\xb2\x5c\x54\x39\x34\xb4\x1c\x78\xdc\x62\xa7\x16\x54\x59\x6d\xed\x7d\x57\x5a\x3b\x5c\x52\x64\xfc\x51\xcc\xb8\x39\x38\x38\xa8\x27\x12\x09\x5e\x5d\x5d\xdd\x94\x7a\xbd\x89\x1f\xd6\x89\xa7\x4d\x96\xe3\x4e\x6f\xd9\x8e\x5e\xe5\x4a\x47\x3e\x00\x60\x66\xe6\xb6\xb6\x36\xb4\xb4\xb4\x50\xd6\x2f\x65\xb0\x24\x06\xba\x32\xda\x90\x45\xaf\x2a\xfd\x08\x05\x5f\x39\xf3\xda\xae\xe5\xff\x2b\xe7\x2b\x5f\x01\xb0\x7a\xfe\xfc\x79\x99\xcb\xe5\xe0\xaa\xcf\x49\x6e\x3b\xdc\xe9\xd9\xa9\x67\x12\x00\x00\x96\x97\x97\x69\x74\x74\xb4\x4c\x44\xc6\x72\xb8\x94\xee\x49\xfb\x0f\x34\x17\x94\x0e\xb7\xe9\x6b\x2d\x26\x60\x47\x98\x20\x88\xbe\x64\xe0\x64\x5e\x2b\xcf\x2d\x45\x8d\x09\xb3\x33\xb1\xba\xba\xfa\x49\x9b\x01\x1b\x81\xcd\xd6\xe9\x36\x9d\xea\xe5\x77\x86\x0b\xe7\x33\x33\xd3\xf0\xf0\xb0\x04\xa1\x3c\xd3\x52\x98\x03\x10\xeb\xc8\x6a\x7d\x0a\x5b\x8a\x0f\xf0\x28\xaa\x4f\xff\xc3\xee\xe5\xaf\xc5\x23\xc6\x8f\x89\x68\x36\x1e\x8f\x17\x1c\x5f\x61\x58\xb7\x1d\x4e\xcf\x4e\x3d\x4d\x91\x00\x70\xa1\x50\x20\x00\xdc\xdb\xdb\x5b\x62\x82\x31\x1f\xd3\xd3\xa3\x8b\xa1\x13\x95\x33\x47\x1d\x82\x9b\xab\x63\xb1\x1a\x06\x08\x26\x75\x60\x25\xf0\x33\x45\x9f\x5c\x5c\x8c\x1a\xb7\x07\x07\x07\xf5\x4c\x26\x83\x44\x22\x51\xcf\x8e\xac\xe7\xe5\x71\xdf\xc3\x95\xcf\x6d\x3f\xba\x5f\x4c\xaf\xb4\x8d\xe2\xe4\x3a\x69\xe1\xaa\x87\x5d\x69\x29\x99\x4c\x22\x16\x8b\xc9\x96\x96\x96\x82\x24\xa4\x67\x9b\xf5\x89\x9b\xdd\xd9\x9b\x73\x31\x7d\xf6\x7e\x5b\xe1\xd6\xa5\xad\xa9\x1f\x5d\xec\x4f\xff\x97\xb4\xbf\x7c\x8e\x88\xa6\xa4\x94\x99\xd3\xa7\x4f\xb3\x7b\xed\x6a\xa3\x36\x2a\x58\xeb\xfe\x81\xc7\x33\x01\xc0\xd2\xd2\x12\xb6\x6f\xdf\x5e\x0e\x04\x02\x7a\x51\x2d\x17\x73\x9a\xd4\x86\x96\x83\x8f\xdb\x33\xe1\x56\x4a\xcb\x49\x60\xad\xcd\x37\xef\x05\x2a\x9d\x09\x20\x3f\xdf\x52\xba\xb9\x6d\x70\x50\x27\x22\xb9\xb0\xb0\x00\x66\x7b\xbd\x98\x1b\x0f\xa0\xca\xba\xbc\xf0\x72\xe7\xf3\x72\x63\x39\xd3\xbb\xb5\x60\x77\x3e\x27\x3b\xf5\x2a\x17\x54\x51\x35\x25\x00\x68\x9a\x26\xca\xe5\x32\xbb\xd2\x3b\xeb\x95\x00\xf8\xc1\x83\x07\xd4\xd6\xd6\x56\x6e\x69\x69\xc9\x83\xb0\x5c\x52\x79\x7a\x25\x64\x7c\xb8\x14\xd6\x2f\x66\x03\xf2\x03\x26\xdc\x26\xa2\x87\xe5\x72\x39\xf3\xe6\x9b\x6f\x5a\xdb\xf8\xbd\x70\x72\xbe\x60\xc0\x3a\x32\xd2\x53\x1e\x30\x33\x2f\x2f\x2f\xd3\xf6\xed\xdb\x0d\x12\x42\x8f\x47\x8c\x95\x48\x51\xd9\xd6\x99\xf1\xf5\xdb\x8e\x01\xeb\x5f\xc5\xc8\x74\xbc\xb3\xe6\x48\x65\x52\xfa\x56\xfd\xcf\x44\x0b\x6a\xf3\x4c\x73\xe1\x4a\x47\x6f\x77\xa1\xab\xab\xab\x3c\x37\x37\x47\xa5\x52\xa9\x9e\xdc\x44\x9d\xf0\x8d\xc8\xc4\x46\xf2\xdf\x42\xcc\xaa\x97\x5c\xe9\xd6\xc8\xc3\xce\xce\x4e\x7a\xee\xb9\xe7\x70\xf2\xe4\x49\xe5\xf0\xa1\x27\xd4\xd1\x5d\xa3\xc8\xe7\xf3\x58\x5e\x5e\x76\xd2\xcb\x79\x65\x98\xc4\xbb\x7b\xf7\x2e\xeb\xba\x2e\x5b\x5b\x5b\x8b\x3e\x9f\x6f\x95\x88\xe2\x00\x96\x88\x68\x89\x99\x57\xe7\xe6\xe6\x8a\xa7\x4f\x9f\xe6\xb9\xb9\x39\xe9\xaa\x1f\xce\xb2\x5c\xf8\xdb\x32\xd2\x8b\x45\x58\xbd\xee\x2c\x40\x00\xa0\x4c\x26\x23\x85\x10\xe8\xe9\xe9\x29\x01\xd0\x67\x9b\x8b\xf1\xad\xc9\xc0\x63\x11\x5d\x6d\xb1\xbf\x9b\x6c\xa9\xd5\xe6\xca\xee\x8a\xeb\xce\xdc\x40\x53\xd9\x6a\x40\xed\x59\xdf\xa1\xfe\x95\xe0\xa1\xf9\x58\xf1\xaa\xda\x16\x5e\x1d\x1d\x1d\x2d\x3b\x08\xe2\xc5\x3e\xdc\xb8\xb9\x65\x87\x57\x98\x3b\xde\x2d\xef\x2c\x42\x58\x79\xbd\x5c\x89\x04\x80\x15\x45\x11\xfb\xf6\xed\xa3\x67\x9f\x7d\x56\x34\x45\x9a\xc2\x43\x89\xe0\x53\x27\xa6\x62\xbf\xf9\xa0\xbb\xf4\xc1\xd6\x81\xfe\xe2\xea\xea\x2a\x56\x56\x56\xe0\x2a\x67\x0d\xfb\x5f\x5c\x5c\xa4\x1b\x37\x6e\x94\x2f\x5f\xbe\x5c\xce\xe5\x72\xe5\x95\x95\x95\xd2\xed\xdb\xb7\xcb\xaf\xbf\xfe\x7a\x79\x62\x62\x82\xcc\x79\x4a\x67\xfd\x5e\x9d\xb7\x06\x2c\xd6\xea\x66\x09\x0d\xd9\xec\xc2\xc2\x02\xba\xbb\xbb\xcb\x4d\x4d\x4d\xba\x54\x90\x9f\x6e\x29\xc4\x87\xe3\xc1\x23\x9a\x21\x82\xeb\xe7\xae\x6e\x46\x8d\xe8\xca\xc0\xe8\x62\xf8\xe7\x8a\xaa\x5c\x4a\xc4\xe4\xfd\x81\x6d\xdb\x4a\x5d\x5d\x5d\xbc\xba\xba\x8a\x6c\x36\xeb\x24\x84\x45\x68\x2f\xb9\x05\x8f\x30\x2f\x79\xea\x56\x1c\x9c\xb2\xd3\xfd\xd6\x3b\x3b\x56\xf6\xf5\xf5\x89\x17\x5e\x78\x01\x3b\x76\xec\xd0\x34\x56\xda\x9f\xba\x1f\xfb\x1f\x4e\xde\x6d\xf9\xd3\xb6\x9c\xef\x24\x13\x72\x0f\x9b\xf5\x6b\x5b\xb6\x6c\xd1\xef\xdf\xbf\xcf\xc5\x62\xb1\x5e\x47\xb2\xab\x0e\xc4\xe3\x71\x7a\xf8\xf0\xa1\x34\x5f\xde\x7a\xf5\xd7\x93\xf5\x4e\x10\xf5\x58\xab\x9b\x45\xac\x49\x33\x3b\x3b\x4b\x23\x23\x23\x25\x55\x55\x8b\x45\x55\x66\xe6\x63\x7a\x7a\x38\x1e\x7c\xc2\xc7\xc2\x67\xaf\xe7\xb4\xb7\x17\x38\xee\xc9\x52\x84\x2a\x22\x54\x95\x14\x19\x4c\x04\x5e\xee\x5d\xf5\xef\x5a\x8a\x94\x6e\xab\x6d\x91\xf4\x8e\x91\x1d\x46\x53\x53\x93\x73\x9b\xb5\x9b\x95\xac\x17\xe6\x36\x05\xbc\xde\x66\x37\xbb\x5d\x53\x4e\x67\x67\x27\x3d\xfb\xec\xb3\x74\xf0\xe0\x41\x35\x18\x08\x46\xb6\x26\xfd\xc7\x5e\xba\xd9\xf6\xb5\xe1\x78\xf0\x17\x05\x93\x46\x44\xd4\x9d\xf2\x3f\xb9\x10\x2d\x5e\xc9\x36\xe1\x41\x4f\x4f\x4f\xe9\xd6\xad\x5b\xf5\x58\xb8\xbb\x0e\xaf\x78\x77\xbe\x35\x2c\xb4\x5e\x99\xee\xd9\x0f\x77\x81\x5e\x9a\x21\x00\xc0\x30\x0c\x9a\x9d\x9d\xc5\xe8\xe8\x68\x49\x08\x51\xc8\x6a\xe5\xd5\xa5\x26\x3d\xbf\x3d\x1e\x7c\x5c\x30\x14\xb8\x74\x1d\x8b\xd5\x3a\xb7\xb0\x57\x16\x0f\x33\x88\x41\xd1\xa2\xba\x73\xf7\xa3\xf0\x97\xc3\xba\xd2\x94\x68\x2a\xdf\x8b\x76\xb5\x15\x0e\x1c\x3c\x20\xbb\xbb\xbb\x51\x28\x14\x28\x9d\x4e\xbb\xdf\xc4\x46\xac\xb4\x11\xdb\xad\xc7\xae\xed\xfb\xc1\xc1\x41\x71\xf2\xe4\x49\x3a\x74\xe8\x90\x1a\x6d\x8a\x86\xda\x72\xbe\x91\x67\x27\x5b\xfe\xcd\xb1\xfb\xb1\x7f\x1b\xd6\x95\x6d\x36\x65\x00\x08\x86\xaf\x6f\x35\x70\xf8\x4e\x47\xfe\xb4\xda\x14\x58\x09\x06\x83\x72\x7a\x7a\xda\x5d\xd7\x46\xea\xf7\x1a\x71\x1b\xc5\xdb\x36\x3f\xea\xa9\xb8\xce\x42\xd7\x0c\xfb\x7c\x3e\x8f\xd5\xd5\x55\x1e\x18\x18\x28\x0a\x21\x72\xc9\x80\x91\x88\x47\x4a\xf9\xc1\xe5\xe0\x7e\x1f\x0b\xd5\xc6\xcb\xb9\xf1\xc7\x1a\xa1\xd6\xb3\xc3\xd7\x28\x98\x02\xdd\x19\xed\xd8\x9e\x85\xc8\x17\x83\x25\xd1\xb4\x1a\x2a\xcf\x05\x5a\x9b\x0a\x3b\x46\x76\xc8\x1d\x3b\x76\xc8\x40\x20\x40\x86\x61\x90\xa9\x96\xc3\x83\x00\xf5\xcc\x18\x67\x5a\x37\x5b\x26\x53\x0b\xe5\xa7\x9e\x7a\x8a\x4e\x9d\x3a\x45\x3b\x77\xee\x54\x9b\x22\x4d\x91\x8e\xac\xb6\xeb\xf8\xbd\xd8\xbf\x7e\xf6\x6e\xeb\x9f\x74\x64\xb4\xa3\x82\x49\x75\xf0\x13\xfb\xea\x2f\x8b\x96\xb6\xac\xda\x7f\xa7\x23\xf7\x66\x7b\x67\x47\x7e\x75\x75\x95\x13\x89\x04\x3b\x70\x72\xca\x3d\x77\x67\x58\x61\x4e\xee\xe7\xa6\xbf\x33\x9d\x53\xcc\xd8\xe5\x90\x23\xd1\x47\x86\x3d\x7b\xf6\xe0\xd8\xb1\x63\x2a\x80\x56\x02\x8d\x6e\x59\xf5\xff\xec\x4b\x37\xdb\xbe\x1a\xd2\x95\x88\x5b\x5e\x3a\xbf\x14\xe2\x44\xb5\xe6\x3c\x1f\x33\x9d\x21\x38\x71\xaf\xad\xf0\xea\xcd\xae\xec\xb7\x67\x9b\x8b\x57\x0d\xc1\x19\x06\x1b\xb9\x5c\xce\x98\x9f\x9f\xc7\xfc\xfc\x3c\x56\x57\x57\xf1\xe8\xd1\x23\x48\x29\xad\x05\xbb\xf5\xfc\xb2\x12\x80\xe5\xf7\x94\x5d\x5d\x5d\xa2\xa3\xa3\x03\x3d\x3d\x3d\xe8\xed\xed\xad\x7c\x5d\x95\xa1\x69\x65\x8a\x0e\x24\x02\x47\xf6\x2e\x44\x7e\xa5\x2f\xe9\x7f\x41\x30\x45\xbc\xec\x21\x77\x5b\x18\x8c\xf7\x07\x52\xff\xcb\xf9\x81\xd4\x9f\x96\x8c\x52\xea\x6f\xfe\xe6\x6f\xdc\xdf\x5b\x6e\xe4\x2f\xf6\x8a\xf3\x9a\x54\xf0\xb2\xf9\x2b\xed\xaa\x53\xf0\x46\xa0\xa6\x92\x23\x47\x8e\x88\xc7\x1e\x7b\x4c\x45\xe5\xeb\xe0\x23\xed\x39\xed\xf9\x97\x3e\x6c\xfb\x17\x2d\x79\xb5\x13\x16\x37\xb5\xb4\x58\x53\xb9\xb5\x4f\xe2\x20\x73\xcd\xac\xd5\xab\xae\x33\xef\x98\x20\x33\xfe\xf2\xf8\xfd\xd6\xc2\x6b\xf7\x5a\xf3\x6f\xcc\x47\xf5\xb1\xbc\x4f\xa6\x18\x6c\xa0\x72\x2e\x9b\xcc\x64\x32\xd0\x75\x5d\x26\x93\x49\xe7\xb1\x9d\x36\x84\x42\x21\x34\x35\x35\x21\x10\x08\x88\x70\x38\x0c\xf3\x54\x46\x95\x40\x5a\x58\x17\xcd\xbd\xab\xfe\x03\x43\xcb\xc1\x4f\x0f\xac\x04\x5e\x08\x96\xc4\x90\xbd\x1b\xca\x12\x11\x8e\x0e\x23\xc0\xdc\xc2\x5e\x79\x13\xad\xa1\x51\x16\x9c\x7b\x75\xef\xd2\xaf\x4c\xb7\x16\x5f\x5f\x58\x58\xc8\xbd\xfa\xea\xab\xf5\xe6\x59\x3f\x71\x70\x77\xa4\x93\xf5\xb8\x7b\xdd\x19\xef\x05\xe2\xf1\xc7\x1f\xc7\xe3\x8f\x3f\x2e\x84\x10\xcd\xcc\x3c\x14\xd1\x95\x13\x2f\xdc\x6e\xfd\xcd\xfe\x95\xc0\x88\xb5\xe7\xaf\x22\x2b\x2b\x19\xd8\xec\xd5\x8a\x1e\x5b\xdd\xdc\x69\x1f\xbb\x02\xaa\x12\xd2\x36\x49\x59\xea\x0a\x2f\xae\x84\x4a\xd7\xe7\xa3\xfa\xe5\x78\xb8\xf4\xe1\x72\xb8\x74\x27\xed\x2f\x2f\xe6\x7d\xe5\x1c\x13\x0c\xf6\x38\x74\x8f\x00\x55\x30\xd4\x40\x49\x09\x45\x0b\x4a\x77\x6b\xce\x37\xd2\x99\xf1\xed\xeb\x4e\xf9\x1f\x6f\xc9\xa9\xfb\x7d\x92\x5a\x09\x24\xaa\x2f\x17\x6c\x8e\xc1\x26\xb2\xd5\xbd\x8e\x96\x59\x55\x99\xce\xab\x9e\x2f\x40\x48\xf9\x8d\xa9\xbf\x3e\xb8\xf8\xcf\xd2\x9a\x71\xe7\x8d\x37\xde\x30\xee\xdf\xbf\xef\x44\xc3\x4d\xdb\x7a\x23\x11\x1e\xe1\x5e\xf1\x76\xfe\x35\xe7\xec\xd4\x29\xc0\x6b\x36\xc0\x5d\xb8\xbc\x7c\xf9\xb2\x48\x26\x93\xf2\xd9\x67\x9f\x4d\x0a\x21\xee\x64\xfd\xb2\xf0\xea\xde\x78\xfc\xc9\xfb\xb1\x5f\x3b\x34\xdb\xf4\x8c\x30\x09\x05\x50\xf5\x73\xbc\x0e\x09\x56\xfb\x69\x5f\x33\xce\xfe\xa8\x28\x59\xf7\xc2\x5f\x16\xdd\x5d\x29\xad\xbb\x2b\xe5\x7f\xc1\x1c\x2e\x52\x12\x72\x86\xe0\x44\x51\x95\xc9\x82\x2a\x53\x65\xc1\x3a\x13\x0c\x62\xa8\xaa\x24\xcd\x6f\x88\xa8\xdf\x10\xad\xaa\xa4\x66\xc1\x08\x01\x10\x64\xee\xa1\xb4\x0f\x4f\xa4\xea\xb8\xf3\xd2\x10\x6c\xa1\x64\x6d\x75\xe3\x8a\xb2\x66\x49\x2c\x26\x86\xae\x48\xf8\x4b\xa2\x3b\xe3\xa7\xa9\xb6\xb6\x36\x67\x47\x7a\x0d\x00\xaf\xce\x5c\xcf\x65\xea\x09\x6b\x4e\xbe\xf2\xa8\xb4\xee\x08\xf4\x88\x93\x53\x53\x53\xc8\xe7\xf3\x78\xee\xb9\xe7\x32\xc1\x60\x70\xaa\x2c\x90\x3b\x37\xb8\x9a\x7c\xd8\x5c\xbc\xf3\xa9\x89\x96\x2f\x47\x0b\x4a\x2b\x00\x7b\xf4\xd9\x7d\xe6\xf2\x02\xd9\xcb\x80\x1c\xe1\xf6\x91\x2c\x36\x1b\xae\xa4\x05\x43\x28\x8c\x88\x22\x29\xe2\x2f\x8b\xfe\x68\x11\x35\x1d\x50\xc9\xc3\x55\x56\x80\xda\x38\x72\x86\x13\xad\x61\x53\x8e\x69\xd7\xea\x7f\x1b\x95\x4a\xfa\xb2\x60\x39\xd6\x9d\x7d\xff\xec\x50\xf2\xeb\x45\x45\xde\x27\x90\x34\xa7\xaf\x1a\x4d\x9c\xbb\xc3\xdc\x50\x2f\xef\x9a\x72\xdc\xeb\x5a\x1b\x69\x58\x6e\xa8\x1b\x97\xc9\x64\xf8\xfa\xf5\xeb\xb2\xbf\xbf\xdf\x08\x87\xc3\x59\x06\xaf\xac\x86\xca\x73\xb7\x3b\x73\x13\x01\x43\xb4\xb6\x65\x7d\x3d\xa2\x66\x5d\xa5\x09\xe4\xb8\x38\x3b\xa2\x91\x83\xc1\x1d\x66\x8d\xb0\xb5\x9b\x54\xec\x41\x5d\x13\x65\xcb\x6b\x77\xb9\x0e\x0d\xcc\x99\xc7\x21\x16\xc8\x7c\x4e\x86\x4a\xf1\xd7\x77\x26\xbe\x75\xb5\x2f\xf3\x97\x65\x05\x57\x89\x68\x21\x97\xcb\xe5\xbd\xbe\x06\x80\xf5\x3d\x50\x1f\x29\xbd\x65\x7e\x38\x3d\x1b\x6e\x8f\x48\x3d\xd3\xa4\xde\xd4\x97\xfd\x9b\x98\x98\x80\xdf\xef\x2f\x77\x74\x74\x14\x00\x24\x4b\x0a\x2f\xdd\x6b\x2b\xdc\x99\x8f\x15\x97\xdb\x33\xbe\x2d\xa1\x92\x68\xaa\x79\xff\x3d\x09\xea\x0a\x77\xc7\x7b\x76\x32\xd5\xed\x6c\x2b\xda\x2a\x67\x4d\x32\x3b\x8e\xd6\xd6\xe3\x22\x67\x49\x91\xfa\x95\xbe\xf4\xbb\xaf\xef\x4c\x7c\x2d\x1e\x2e\x9d\x26\xa2\x31\x66\x5e\x48\xa5\x52\xb9\xd7\x5e\x7b\x0d\xe6\x8c\x91\x9b\x46\x70\x94\x54\x6f\x46\xc3\xed\x26\x5d\x8f\xfe\xf8\x44\xcc\x8f\xf5\x60\x68\x68\x08\xc7\x8f\x1f\x17\xc1\x60\x50\x03\xd0\x0a\xa0\x5f\x91\xd8\xbd\x7b\x21\xfc\xd9\xc3\xd3\xd1\x4f\x35\x15\x95\x66\x27\xb3\xac\xe2\xbe\x01\xa5\xba\x4e\xb2\xda\x7e\xaf\x1a\x0a\xd5\x70\xe7\xc9\x75\x5e\xb9\x01\xaf\x37\x87\xc1\x90\x04\x39\xd9\x9e\x1f\x7b\x6f\xdb\xea\xab\xc9\xa0\x71\x1e\x84\x49\x00\x8b\xcc\x9c\x99\x9c\x9c\x34\xce\x9e\x3d\x5b\xef\x7b\x99\x3f\x35\xf8\x38\xe6\xc7\xa6\xe1\xd4\xa9\x53\x62\x64\x64\x44\x25\xa2\x10\x33\xb7\x13\xd1\x36\xbf\x41\x7b\xf7\xcc\x87\x9f\x3f\xf0\xb0\xe9\x58\x53\x51\x69\xb6\xf7\xfd\x9b\x1a\x22\x08\xa6\x66\xe8\xb4\x4a\xac\x2d\x7e\x96\x02\x64\xf1\x3f\xd8\xec\xd0\xd6\x2e\x6d\x3b\xa2\xda\x64\xab\x23\xed\x21\x69\x7e\xf3\xd8\x3a\xc4\xae\xaa\xb5\x72\x4d\xbd\x65\x01\x79\xaf\x2d\x3f\x7e\x69\x6b\xfa\xb5\x47\x4d\xfa\x79\x06\x4f\x12\xd1\x9c\xf9\xe1\x1a\xfd\xcc\x99\x33\x4e\xb7\xe2\x46\xa1\x91\x25\xb0\x61\xf0\xea\x48\xf7\x5c\x97\x5b\x1d\xae\x17\xd7\x48\xb5\xb6\xc3\xb6\x6c\xd9\x22\x8e\x1c\x39\x82\x8e\x8e\x0e\x0d\x40\x08\x40\x27\x80\x7e\xb5\x4c\x23\x3b\x96\x82\x4f\x3f\x36\x17\x39\xd6\x99\xd6\x7a\x09\x10\x55\x5a\x57\xf9\x5a\xed\xf8\x20\x47\x28\x1c\xb2\x6c\xed\x99\xe6\x56\x63\xd9\xd1\x91\x6b\x1b\xef\xb4\x15\xab\xf7\x79\x9f\xcc\x4d\x74\xe4\xc6\xae\xf5\x66\xde\x4c\x84\x8c\x2b\xa0\xca\x56\x37\x00\xc9\x72\xb9\x5c\xb8\x7e\xfd\xba\x74\x7d\x3f\x7a\xa3\xf0\x89\x74\xa2\x85\xf9\x66\x58\x6b\x23\xfb\x67\xe3\x95\x12\x61\xd7\xae\x5d\x38\x78\xf0\x20\xc2\xe1\xb0\x06\x20\xc2\xcc\xad\x00\xfa\x04\xa8\xbf\x33\xad\x3d\xb6\xeb\x51\xe8\xe8\xf6\xe5\xe0\xee\x48\x51\x89\x82\xc9\xd6\x1c\xed\xd1\x63\x6a\x2e\xd5\x05\x5f\xb5\x22\xcc\xee\x08\xdb\xcc\x31\x3b\xd0\xa9\xed\x38\x4f\xff\xa7\x6a\x37\x33\x18\x65\x01\x63\x3e\x5a\x9c\xbd\xd5\x99\xbb\x34\xd5\x9e\x3f\x5f\x50\xe5\x24\x08\xd3\xcc\xbc\x08\x20\x09\xa0\x30\x39\x39\x29\xaf\x5c\xb9\x82\x64\x32\xf9\x51\x49\xe1\x84\x7a\xe6\x86\x57\x38\xe0\x1a\x48\x9f\x14\x6b\xf5\x72\x25\x6d\xe8\x4d\xdb\xb3\x67\x8f\xd8\xbf\x7f\x3f\x9a\x9a\x9a\x54\x54\x46\x68\x14\x40\x27\x33\xf7\xaa\x4c\x7d\x3d\x29\xff\xbe\xc1\xe5\xc0\xfe\xad\xc9\xc0\x50\x6b\xce\xd7\xae\x48\xa8\xb4\xd6\x9f\x67\xda\x73\xb4\x46\x23\xb5\x2f\x84\x9a\xa3\x3a\x9d\x2c\xd3\x52\x93\x73\x3e\x99\x99\x8f\x16\x67\xef\xb7\x16\xc6\x1f\xb4\x16\xae\xa4\xfd\xe5\x29\x10\x66\x01\x2c\x00\x48\x00\xc8\x94\xcb\x65\x7d\x6a\x6a\x4a\x3a\x4e\x02\xd9\x2c\x7c\x62\xa3\xd0\x09\xeb\x75\x64\x23\xf6\x59\x2f\xec\x23\xc1\xf0\xf0\xb0\xd8\xbf\x7f\x3f\xda\xda\xda\x54\x22\xb2\xd8\x6e\x14\x40\x3b\x80\x76\x62\x74\x86\x8b\x4a\x5f\x67\xc6\xb7\xbd\x3b\xe5\x1f\x6a\xcf\xfa\xba\xdb\x72\xbe\xf6\x90\x2e\x22\x8a\x74\x9c\xf6\x0c\x97\xda\xc4\x56\x47\x56\x7b\x91\x09\x52\x57\x58\x4f\x05\x8c\x64\x3c\x5c\x5a\x7c\xd4\xa4\x4f\x2f\x34\x15\xa7\x12\x21\xe3\x5e\x49\xe1\x05\x06\x2f\x9a\xb3\xf7\x09\x66\xce\x10\x51\x41\xd7\x75\x63\x62\x62\x42\x3a\x76\x0c\x7f\xd4\x36\xff\x54\xf2\x39\x59\x6b\xbd\x0e\xa9\xe7\xb8\xb5\x60\x23\xce\x5d\xaf\x6b\xbd\xb2\xe5\x53\x4f\x3d\x25\x06\x07\x07\x11\x89\x44\x54\x00\x1a\x33\x07\x4c\x05\x29\x4a\x44\x51\x54\xfc\xb9\x51\x30\xa2\x5a\x99\x9a\xc3\xba\xd2\x16\x29\x2a\xad\x81\x92\x88\x04\x0c\x11\xd2\xca\x22\xa0\x48\x52\x89\x21\x24\xb1\x51\x16\x6c\x14\x54\x59\x28\xfa\x38\x93\xd5\xca\xc9\xac\x56\x4e\xe4\xb4\xf2\x72\x99\x90\x02\x21\x05\x20\xc9\xcc\x29\x00\x49\xf3\x0c\xf1\x1c\x11\xe9\x86\x61\x18\x0b\x0b\x0b\x72\x62\x62\xc2\xfa\xee\xe3\x7a\x9c\xa7\x51\x5b\xbd\xd2\xbb\xa1\x11\x1d\x1b\xa6\x25\xd4\x56\xea\x05\x5e\x4a\x4b\xa3\xb8\x46\x9e\xfc\x46\x65\xaf\x89\xeb\xea\xea\x12\xc3\xc3\xc3\xd8\xb2\x65\x0b\x62\xb1\x98\xfd\x25\x3a\x00\x9a\x39\x6a\x03\x00\x02\x66\x47\x6b\xcc\x6c\x85\x0b\xd4\x7e\x76\x58\xa2\xe2\x7f\xd5\xcd\x5f\x81\x99\x0b\x44\x54\x70\x84\xe9\x00\x0c\x5d\xd7\xe5\xfc\xfc\xbc\x7c\xf0\xe0\x01\xee\xdd\xbb\xe7\xe9\x80\x5f\x07\x3e\x96\xfe\xf0\x51\xeb\x71\xb3\xd6\x86\x4e\xf1\x06\x71\x9b\x85\x8f\x54\xd6\xd0\xd0\x90\xe8\xe9\xe9\x41\x47\x47\x07\x22\x91\x88\x08\x06\x83\x40\x65\x6a\x4a\x98\xb3\x19\xd6\x27\x8a\x84\xbd\x8f\xd3\x9c\xb6\x32\x8b\x90\x00\x24\x55\xbe\x69\x2c\xcb\xe5\xb2\xcc\xe7\xf3\x72\x71\x71\x11\xf1\x78\x1c\xe6\xe9\x96\xff\x24\xa1\x5e\x47\x6e\xb4\x43\x1b\xb1\x16\xa0\xfe\xe8\xf4\x2a\x6b\xa3\xf5\x57\x12\x0a\x21\xa4\xf9\x69\xd3\xc1\xc1\x41\xd1\xde\xde\x0e\x61\x6e\x2e\x6b\x6a\x6a\x82\xb9\x01\x06\x00\x90\x48\x24\x50\x2a\x55\x0e\x07\x5e\x5d\x5d\x45\xb1\x58\x84\xf9\x9d\xcb\x8f\x02\x9f\xd4\x0b\xfd\x53\x51\x7a\xac\x82\x85\xeb\xde\xed\x95\xf7\x4a\xe3\x2e\x03\x58\x9b\xaf\x5e\x9c\x57\xbd\x8d\xd2\x7a\xd5\xd5\x28\x9f\x17\xfe\x9b\xc5\x75\x33\x65\x6c\xf4\xea\x05\x5e\xf4\x74\xc7\x6f\x38\xcf\x27\xc5\xdb\xff\x31\x64\xc4\x7f\x6b\xf8\x6f\xdd\xc6\x86\xf5\x6f\xe4\x0d\xda\xc8\xdb\xf5\x8f\x0d\x1b\xe1\x0c\xf5\xd2\x6e\xa6\xdc\x9f\x36\x7c\x64\xdc\x36\x32\xb1\xec\xa5\x89\x36\xca\xb3\x9e\x8c\xf4\x4a\xe7\x7c\x6e\xe4\xe2\xf3\xba\xf7\xc2\xb5\x51\x1d\x6e\x68\x64\x2a\x01\xde\xb8\xb8\xeb\x6a\xd4\x0e\xd4\x89\x73\xd7\xef\x05\x5e\xb8\x79\xa6\xfb\x7f\x00\xaf\xaa\xf6\x12\x47\x65\x14\xb8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x18\x1c\x34\x88\xd8\x3c\x00\x00") - -func web_uiV1StaticAppleTouchIcon114x114PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon114x114Png, - "web_ui/v1/static/apple-touch-icon-114x114.png", - ) -} - -func web_uiV1StaticAppleTouchIcon114x114Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon114x114PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-114x114.png", size: 15576, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon120x120Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x7b\x3f\x84\xc0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x78\x00\x00\x00\x78\x08\x06\x00\x00\x00\x39\x64\x36\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\xbd\x7b\x70\x1c\x47\x7a\x27\xf8\xfb\xb2\xaa\xab\xdf\x8d\x46\xa3\xf1\x06\x01\x10\x04\x01\xf0\x29\xbe\x44\x91\x1c\x8e\x44\x51\x8f\x95\x34\x1c\x4b\x96\x3c\x1e\xdb\xe7\x47\x78\xbc\x7b\x8e\xbb\x3d\x3b\x6e\xcf\xbb\xe1\x70\x5c\x38\x36\x1c\x0e\xc7\x86\xcf\xe1\xb8\xf0\xeb\x6e\x7c\xb3\xde\x59\xef\x7a\x66\x35\xb6\xc7\x33\x9a\xd1\xcb\x96\x34\xa2\x24\x4a\xe4\x90\xa2\xf8\x82\x40\x12\x04\x41\x10\x04\xf1\x6c\x00\xdd\x8d\x7e\x54\x57\x57\x65\xde\x1f\x5d\xd5\x5d\x5d\xa8\x6e\x00\x24\x35\xe3\xd9\xd8\x44\x34\xaa\x2a\x2b\x7f\x99\x59\x99\xf5\x3d\xf2\xfb\x32\xb3\x80\xff\x11\xfe\xbb\x0f\xcc\x71\xac\x17\xc7\x1c\x71\xce\x34\x6b\xc5\xaf\x37\xad\x5b\xb9\xb5\xc2\x83\xc2\xba\x3d\xdf\x4f\x3c\x96\x6c\x11\xdc\x3c\xe7\x2e\x09\x39\xdc\x0b\x75\xc3\xb8\x9d\xd7\xab\xb4\x3d\x0f\xb7\x32\x6b\x95\x7d\xaf\xd8\x7a\xf9\xd5\x4a\xb7\x9e\xba\xfc\x73\xc5\xd6\x0d\x6b\x51\xf5\x7a\xee\xd5\xca\xaf\x16\x7e\xbd\x6f\xf2\xfd\x62\x9d\x6f\x7f\xad\xe3\x4f\x34\x56\xae\x71\xc3\xde\xfb\xd6\x1b\xb4\x16\x35\xd6\x6a\x5c\xe7\x9b\xe4\x56\x96\x5b\xbc\x13\x53\x8b\x1a\xef\x05\xcb\xab\x93\xd7\xc4\xbb\x51\xc3\x4f\x22\xf6\xc7\x16\x36\xf2\xa2\xac\x75\xaf\xee\xfd\x48\x24\xc2\x00\x40\x92\xa4\xf5\x70\x91\x8d\x94\xf9\xcf\x1a\x6b\xc9\xe0\xb5\xe4\x2f\x1c\xf7\xe1\x12\xe7\x26\x73\x9d\x32\xa4\xd6\xfd\x7a\xa1\xae\xfc\x6f\x6a\x6a\x42\x3c\x1e\x87\xcf\xe7\x43\x73\x73\x33\x88\x08\xad\xad\xad\xe5\x32\xbc\x5e\x2f\x18\x63\x20\x22\x00\x80\xaa\xaa\xe0\x9c\x03\x00\xd7\x34\x0d\x4b\x4b\x4b\xc8\xe7\xf3\x48\xa5\x52\x58\x5e\x5e\x46\x3a\x9d\xc6\xca\xca\xca\xbd\xd4\x67\x3d\xe1\x47\x8e\xa5\x3a\xf7\x6a\x75\xcc\x83\x0e\x1b\xca\xbf\xb7\xb7\x97\x75\x74\x74\xa0\xa9\xa9\x09\xcd\xcd\xcd\x4c\x92\x24\xa0\x24\x6a\x18\x81\x18\x01\x32\x09\xc8\x32\x27\xc5\xa7\x33\x9f\x6c\x90\xc2\x04\xc9\x24\xc0\x04\x41\x37\x98\xd0\x0b\x32\x57\x35\x49\x68\x9c\x84\xc6\x09\x3a\x08\x5c\x08\xa1\x03\xe0\x42\x08\x5e\x2c\x16\xf9\xf4\xf4\x34\x12\x89\x04\x6e\xdf\xbe\x8d\xa5\xa5\xa5\x5a\x2f\xf6\x7a\x5f\xe2\x1f\x1b\x96\xdc\x22\x6d\xd7\x56\xa8\x95\x29\x5c\xd2\xb8\xc5\x39\xa9\xbc\x96\x8c\x71\xad\xe8\xae\x5d\xbb\x58\x4f\x4f\x0f\x5a\x5b\x5b\x99\xc9\x62\x65\xc6\xa1\x04\x8a\x52\x34\x96\x95\xbb\x9b\x72\x9e\xa1\x58\xce\x33\x18\x51\xe5\xde\xb0\x2a\x75\x04\x34\xa9\x45\x16\x14\x61\x1c\x01\x00\x8c\x4c\xc5\x44\x98\xba\x84\x20\x68\x9c\x44\x4e\x93\xc5\x52\x46\x31\xe6\x57\x7c\xfa\x64\xd2\xa7\x4f\x2c\x05\x8b\x57\x13\xc1\xe2\x68\xca\xa7\x4f\x17\x64\x91\x03\x41\x03\xc0\xf3\xf9\xbc\x7e\xe7\xce\x1d\xdc\xbd\x7b\x17\x37\x6e\xdc\x58\x6b\x44\x51\x2f\xfe\x47\x8e\xad\x47\xc1\xf6\xf0\x59\x53\xf1\xaa\xb0\x75\xeb\x56\xd6\xdf\xdf\x8f\xce\xce\x4e\x46\x44\x32\x81\x94\x90\x26\xc5\x3a\x52\xde\xdd\xdd\xcb\xde\xc7\xda\xd2\xca\xc1\x06\x55\x1e\x92\x39\xc5\x20\xc0\x2c\x16\x2c\x04\x40\x04\x40\x00\x02\x02\x00\xa1\x74\x29\x00\xa0\xcc\xaa\x2b\x09\x2b\x41\x94\x52\x69\x05\x99\x4f\x2d\x06\xf5\xe1\xbb\x0d\x85\x0f\xef\x44\xd5\x8f\xe6\xc2\xda\x58\x51\x16\x19\x00\x5a\x3e\x9f\xe7\x13\x13\x13\xfc\xfa\xf5\xeb\x98\x9f\x9f\xaf\x27\xb2\x36\x1a\x3e\x13\xac\xb3\x83\xeb\xc9\xd4\x8d\xa4\xb1\xdf\xdb\x50\x9e\x07\x0f\x1e\x64\xdb\xb6\x6d\x83\xd7\xeb\x95\x85\x10\xbe\x90\x26\xc5\xb7\x24\x02\xc7\xb6\x26\xfc\x5f\x6c\x5d\x51\x8e\x78\x0c\x8a\xa3\xc4\x8a\x4b\x41\xa0\xd4\x8d\x64\x5d\x10\x40\xb6\x53\x81\xf2\x75\xd5\x11\xd5\xe7\x42\x88\xd2\xab\x60\x4b\x63\x75\x78\x5e\xe1\xe3\x93\x51\xf5\x07\xa3\x2d\xb9\xef\x4f\x46\xd5\x4f\x0c\x09\x19\x21\x84\xbe\xb0\xb0\xa0\x5f\xbb\x76\x0d\xa3\xa3\xa3\x65\xb9\x8e\xda\xfa\x8b\xdb\x35\x1c\x69\x1f\x38\x76\xbd\x14\xfc\x99\x86\x68\x34\xca\xf6\xef\xdf\x8f\xbe\xbe\x3e\x46\x44\xb2\xc4\x11\xe9\x5e\xf6\xed\xdb\x3e\x1b\xfc\xf9\xde\x25\xdf\x73\x32\xa7\x38\x99\xbd\x25\x4a\x84\x68\x76\xa8\x49\x9b\xc2\xa4\x4c\xf3\x5e\x55\xa7\x11\xca\x3d\x2d\x04\x2a\x9d\xb8\x3a\x71\x39\xbf\x0a\x65\xdb\xd2\x08\x01\x41\xe0\x59\x85\x8f\x5e\x6f\xc9\xfe\xfd\x48\x5b\xf6\xef\x16\x03\xfa\x24\x08\xb9\x4c\x26\xa3\x0f\x0f\x0f\xe3\xda\xb5\x6b\xd0\x34\x6d\xa3\x54\x78\x3f\xba\xce\x9a\x58\x42\x6d\x0a\xab\x37\x6e\xdc\x48\xe1\x35\x83\xdf\xef\x67\x87\x0f\x1f\xc6\x96\x2d\x5b\x18\x00\xc5\xa7\xb3\xd8\xb6\xf9\xe0\x33\xbb\xa6\x43\xbf\x16\xcb\xc9\x07\x09\xc4\x4a\x94\x85\x2a\x66\x5b\xee\x14\x1b\x2b\x26\x22\xb3\x43\xa9\xcc\x7e\xeb\x62\x9d\xad\x60\xb1\x6c\xe1\x20\xf1\x32\x4b\xaf\x86\x18\x4c\x64\x26\x1b\xd5\x57\x2f\x74\x66\xfe\x6a\x2a\xaa\x7e\xc2\x19\x72\x2b\x2b\x2b\xda\x85\x0b\x17\x70\xe3\xc6\x0d\x18\x86\x01\xb8\x53\xe1\x7a\xe5\xe8\x03\xc1\xfe\xd8\x28\x78\xdf\xbe\x7d\x6c\xf7\xee\xdd\x4c\x51\x14\xc5\xa3\x53\x74\xd7\x4c\xe8\x85\x3d\x77\x43\xff\x4b\xb8\x20\xed\x24\x1b\x65\x56\x08\x8e\xca\x72\x14\xa8\xc4\x5b\xd4\x2b\x4a\xe4\x89\xf5\x61\x09\x64\xa3\x7c\x61\xf2\x79\xe7\x79\x25\x1f\xab\xe3\x57\x63\x39\x84\x36\xdd\xa0\xfd\xd3\xd9\xee\xf4\x9f\x4d\x36\xaa\x1f\x83\x90\x49\xa7\xd3\xfa\xa9\x53\xa7\x30\x35\x35\xb5\x1e\xc2\xf8\x4c\xe5\xb6\x5b\x07\xbb\x69\xc9\x0f\x54\xc1\x7a\xf1\xc5\x17\x59\x3c\x1e\x57\x48\x20\x34\x30\x1f\x38\x7e\x78\xa2\xe1\x77\x1a\x54\x69\x8f\xc5\x86\x2d\x39\x2a\xca\x54\x65\x29\x4e\x02\xa2\x8a\xb8\x4c\xd6\x09\x8b\xf5\xae\x03\x5b\xc5\xce\x2b\x9d\x66\xc9\x60\x81\x0a\xae\xdc\x48\x56\x7e\xa8\x8d\x15\x04\x6d\x22\xa6\xfe\xc3\x47\x9b\x53\x7f\x9c\x08\x16\x47\x05\x44\x6e\x6c\x6c\x8c\xbf\xfb\xee\xbb\x3f\x76\x2d\x7a\x3d\x06\x07\xb7\x0e\xaf\x55\xb0\xeb\x35\x63\x0c\x47\x8e\x1c\xc1\xf6\xed\xdb\x19\x04\x02\xcd\x19\xcf\xd0\x63\x37\xa3\xbf\xdb\x99\xf2\x3e\x47\xa0\xea\xb2\xdd\x38\x69\x0d\xee\xba\x2a\x3c\x00\xec\x7a\x93\xbb\x61\x75\x26\xd2\x97\x3a\x32\x7f\x7a\xb6\x3b\xfd\xb5\x82\x87\x27\x72\xb9\x9c\xfa\xe1\x87\x1f\xe2\xd6\xad\x5b\x1b\xcd\xf1\x81\x04\x09\x95\x77\x55\xb8\xfc\x08\x15\xea\x75\xbb\x76\xc3\xba\xa6\x7d\xf1\xc5\x17\xa9\xa7\xa7\x47\x91\x0d\x8a\x1f\x9c\x8c\xfc\xcb\xa7\x46\x63\xff\x4f\xa3\xea\x79\x88\x40\x24\x9c\x4d\x4a\x15\x6a\x2a\xcb\x4e\x6b\x18\x64\x0d\x77\x60\xbf\x5e\x3f\xb6\x74\xcf\xaa\xa2\x25\xc6\xad\x74\xe5\x4c\xec\xb1\xb6\xeb\xb5\xb1\x4c\x90\xb7\x3d\xad\x3c\xda\x9f\xf0\x3f\x9e\xf4\xeb\x63\xb9\x30\x2d\x6c\xd9\xb2\xa5\xa8\x28\x8a\x30\x59\xb6\xbd\x6d\xec\x47\x7b\xb0\xd2\xd9\xd3\x3a\xaf\xd7\x85\x95\xcc\x48\x66\x46\xb0\x72\xbd\x2b\x54\x58\xeb\xda\x19\x98\xe3\x1e\x01\xa0\xa1\xa1\x21\x3a\x71\xe2\x84\x14\x0e\x85\xfd\xb1\x9c\xbc\xfd\x0b\x23\xf1\x3f\x1d\x9a\x0f\xfc\xba\x24\x98\xbf\xd2\x35\xd5\x0a\x10\x39\x8e\x95\xae\xb2\x98\x31\xe1\x5e\xb1\xa8\xfa\x4f\x8e\xff\xd6\x1f\xcc\x32\xec\x79\x6d\x0c\xeb\xd3\xa5\xb6\xad\x0b\x81\x17\xbc\x06\xc9\xd3\x0d\xda\x48\xbc\xb5\x59\x95\x24\x49\x4c\x4f\x4f\x5b\x1d\x62\x75\x50\x2d\xe3\x90\xfd\xc1\xec\xbf\x0d\x61\xeb\x71\xa2\xfb\x36\x55\x1e\x3d\x7a\x94\x6d\xdb\xb6\x8d\x11\x28\x32\x38\x1f\x78\xe6\xf1\xb1\xc6\x3f\xf6\xea\xd4\x56\x6e\x24\xbb\x55\xa2\xe6\x7b\x63\xbb\x2f\x2c\x4a\xa9\xc6\x5a\x28\x9d\x09\x3d\xab\x18\xe9\xb4\xcf\x48\x67\xbd\x46\x26\x2f\xf3\x5c\x41\xe6\x39\x83\x09\x2e\x08\x9c\x71\x30\x0f\x67\x8a\xaf\xc8\x02\x81\x22\x0b\x85\x55\x39\x12\x2e\x48\x11\xaf\xce\x7c\x4c\x54\x1b\xe8\xdd\xeb\xe0\x3c\x2f\x05\xb7\x21\xb6\xfd\xde\x64\x63\xe1\x6f\xbe\xb3\x7b\xe1\x37\x0a\x85\x42\xfa\x9b\xdf\xfc\x26\x8a\xc5\x62\x2d\x0d\xb9\x9e\x2d\x1f\x2e\xe7\x6b\x62\x65\xd4\x97\xc1\xcc\x71\x74\x33\x55\xae\x3a\x97\x24\x09\x8f\x3d\xf6\x18\xfa\xfb\xfb\x65\xc9\x40\xfc\xc8\x44\xf4\x5f\xef\x9d\x0a\xfd\x5b\x12\xa4\x58\x0f\x6d\x05\x12\xd6\xb5\xa5\xf6\x56\x1b\x2b\x56\x75\xba\xa9\x88\x71\x06\xbe\xe2\xd5\xd3\xd3\x91\xc2\xe4\x4c\x43\x61\x62\x2e\xac\x4d\xa6\x7c\xfa\xdd\x82\x2c\x92\x20\xe4\x00\xa8\x00\x34\x21\x84\x4e\x44\xf6\x87\x97\x01\x28\x00\x14\x08\x11\x60\x82\x42\x41\x4d\x6a\x8e\x67\x3d\x5d\x6d\x69\xa5\xb7\x33\xe5\xed\x6d\xce\x28\x2d\x8a\x41\xbe\x52\xd1\x56\x5d\xcc\xae\x2b\x9f\x5b\x43\xb3\x8a\x92\x6d\x57\xb6\xad\xe7\x31\x98\xd0\x2e\x74\xae\x9c\x07\xe0\xf3\x7a\xbd\x19\x45\x51\x78\xb1\x58\x74\xb6\xb5\xb3\x9d\xeb\xc5\x6f\x08\x2b\xa3\xd2\xf3\xeb\xa5\x52\xb7\xf4\x55\xe7\xcf\x3f\xff\x3c\x6b\x6a\x6a\x52\xbc\x45\xea\x78\x72\x34\xf6\xfb\xfd\x09\xff\xcf\x11\x88\xa1\xaa\x01\x80\x32\xc3\xa3\x0a\xcb\x15\xc2\x64\xa9\xa2\x3a\x0d\x00\x08\x06\x9e\x08\x6a\xf3\x63\xf1\xfc\xc8\xad\x58\xfe\xf2\x52\xb0\x78\xcb\x60\x98\x17\x42\x2c\x11\x51\x5a\x08\x91\x03\x90\x83\x80\x06\x40\x37\x7f\x5c\x54\x17\x0a\x22\x92\x01\xc8\x20\x92\x39\xc1\xb7\xe2\x33\x02\x2b\x3e\x23\x34\x1e\xcb\x47\x09\x14\x0f\x14\x59\x47\x67\xca\xbb\x6d\xcb\x82\x7f\x77\xcf\xb2\xaf\xcf\xa7\xb3\x40\xb9\xae\xe5\xf7\xcf\xaa\xbb\xb3\x96\xb6\x7a\x93\xc0\x99\xde\xd4\xf7\x26\x62\xea\x27\x42\x08\xad\x50\x28\xf0\x6c\x36\x5b\xcf\xa1\xb0\x96\x2d\x1f\x8e\xb4\x6b\x62\x65\xd4\x0f\x6e\x66\xb2\x9a\x2f\x82\xcf\xe7\x63\xcf\x3d\xf7\x1c\xe2\xf1\xb8\x2f\xa0\xb1\xee\x13\x9f\xc6\xff\xa2\x3d\xad\x1c\x07\x50\x36\x20\x58\x1c\xb6\x32\xae\x2c\xfd\xa3\xca\xa8\x03\xb0\x0c\x16\x26\x4e\xf5\x08\xf5\x7a\x73\x6e\x78\xa4\x2d\x7b\x66\x21\xa4\x7d\xca\x19\xa6\x01\xcc\x03\x48\x02\x48\x13\x91\x0a\x40\x23\x22\xdd\xac\x5f\xb9\x8e\x0b\x0b\x0b\x55\xf5\x55\x14\x05\x0d\x0d\x0d\xf6\xb7\xde\xfa\xc9\x44\xe4\x03\x10\xc8\x29\x3c\x7a\xa3\x39\xff\xd1\x8d\x78\xbe\xcd\x5f\x64\xbd\x5b\x16\xfd\x0f\xef\x9c\x09\x1e\x6c\x5d\x51\x3a\x4a\x75\xb5\x0d\xa5\xca\x3d\x5b\x61\xe1\x84\xd2\x90\x6c\x2c\x9e\xff\xe4\x93\xae\x95\x6f\x81\x30\x41\xa0\xcc\xc8\xc8\x88\xbd\x0d\x6b\x51\x22\x6c\xf7\xed\xf5\xac\xe7\xe8\xa9\x89\xdd\xf0\x68\xa0\x46\x60\x5e\xaf\x17\x27\x4e\x9c\x40\x2c\x16\xf3\x85\x0b\x72\xdf\x4f\x0d\xc7\xff\xb2\x39\xeb\x39\x62\xc9\xdb\x4a\x9b\xd8\x65\x99\x8b\x74\x33\x3b\x57\x40\x20\xe7\xe1\x99\x4b\x9d\x99\x33\xc3\xed\x99\x77\x73\x1e\x3e\x26\x20\xa6\x50\xea\xd8\x34\x80\x1c\x00\x5d\x08\xa1\xa7\x52\x29\x9e\x48\x24\xb0\xb8\xb8\x88\xc5\xc5\x45\xcb\xa7\xbb\x26\x47\x6a\x6f\x6f\x67\x7e\xbf\x1f\xf1\x78\x1c\xf1\x78\x1c\x6d\x6d\x6d\x4c\x92\x24\x66\x52\xb8\x22\x84\x08\x11\x51\x0c\x42\x74\x10\xa8\xab\x2b\xe9\x7d\xe4\xc0\x9d\xc8\xf1\x4d\xcb\xde\x5e\xb2\xd9\xc3\xdd\x64\xf0\x92\xbf\x38\xfb\xb7\x7b\xe6\xff\x7d\xde\x63\xbc\x0f\x60\x6a\x7e\x7e\x3e\xf7\xca\x2b\xaf\xd4\xa3\xc4\xcf\xcc\x54\x59\x0f\x64\x85\x7a\x66\x33\xae\x28\x0a\xfb\xe2\x17\xbf\x88\xa6\xa6\x26\x5f\xb0\xc0\xfa\x5e\xb8\xd2\xfc\x57\xf1\xac\xe7\x60\x25\x73\x37\x45\xaa\x32\x94\x29\x77\xba\x69\x84\x50\x65\xae\x5e\xec\x58\xf9\xe8\x62\x67\xe6\x1f\xf3\x1e\xe3\x1a\x80\x49\x22\x4a\xa0\xd4\xb1\x9a\xa6\x69\xfa\xdd\xbb\x77\xf9\x9d\x3b\x77\x30\x39\x39\x89\x5c\x2e\x67\xaf\x67\xad\xfa\xaf\x67\xbc\x8f\x96\x96\x16\xf4\xf4\xf4\xa0\xa7\xa7\x07\x8d\x8d\x8d\x8c\x88\x14\x00\x01\x00\x51\x00\x1d\x10\xe8\xdb\x94\xf4\x1e\x3e\x3c\xd1\xf0\x4c\x7b\x5a\xe9\x76\x7b\x32\x4d\x12\xea\xb7\x1f\x9a\xff\xbf\xe6\xc3\xc5\xef\x03\x18\x53\x55\x35\xfd\xca\x2b\xaf\x20\x95\x4a\xd5\x2b\xfa\x33\x09\x0f\x84\x82\x1f\x7f\xfc\x71\xd6\xdf\xdf\xaf\xf8\x75\xa9\xfb\xf9\x2b\xf1\xbf\x6c\x5b\x51\x8e\x51\x55\xd6\xee\xfa\xa5\x73\xa8\xc3\x01\x8c\x35\xe7\x87\x3f\xdc\x9c\xfa\x6e\xca\xa7\x9f\x07\x61\x42\x08\x31\x0b\x20\x43\x44\xea\xec\xec\x2c\xbf\x7e\xfd\x3a\xae\x5f\xbf\xfe\x59\x9a\x00\xcb\xb8\x78\x3c\xce\x86\x86\x86\xd0\xdf\xdf\xcf\x14\x45\x91\x51\xea\xe8\x18\x80\x2e\xc6\x31\xb0\x6d\x2e\xf8\xd4\xe1\x89\xc8\xd3\x41\x4d\x8e\x58\x83\x32\x0e\xf0\x77\x06\x96\xff\xe6\xd3\xb6\xec\xd7\x41\x18\x31\x0c\x63\xe9\x9d\x77\xde\xe1\x13\x13\x13\x6b\xd5\xe5\xc7\xe2\x2e\xb4\x42\x4d\xc5\xe0\xd0\xa1\x43\x6c\xd7\xae\x5d\xb2\x2c\xa8\xed\x8b\xc3\xf1\x3f\xe9\x59\xf6\xbd\x60\x69\x9c\x15\xad\xb2\x22\x7f\x2b\xa6\x5d\x51\xa5\x5c\x65\x14\x3d\x7d\xb2\x3f\xf9\xdd\x9b\xf1\xfc\x5b\x82\x30\x0a\x60\x0a\x25\x8a\x55\xc7\xc6\xc6\xf8\xc5\x8b\x17\xdd\x66\x56\xd4\xab\xfb\x7a\x1b\xab\x96\xb2\x52\x85\xdf\xb6\x6d\x1b\xdb\xb7\x6f\x1f\x82\xc1\xa0\x45\xd1\x2d\x10\xe8\x0d\x6a\x6c\xdf\xa3\xe3\xd1\x2f\x0f\xcc\x07\x76\x03\xc0\x70\x5b\xf6\xd4\x0f\x06\x96\xff\x88\x43\x7c\x42\x44\xf3\xe7\xcf\x9f\xd7\xcf\x9f\x3f\xbf\x2a\xbf\xf5\x96\x5b\xe3\x59\xd6\x8d\xbd\x2f\x0a\xde\xba\x75\x2b\x3b\x76\xec\x98\x4c\xa0\xd8\xf1\x1b\x8d\xbf\xbb\x6b\x26\xf8\xbf\x12\x6c\xca\x87\x35\x6e\x2d\x73\x65\x93\x2d\x0b\x5b\x47\x03\xb8\x15\x53\xaf\xbd\x33\xb0\xfc\xd7\x59\xaf\xf1\x31\x80\x71\x00\x09\x21\x84\x7a\xe7\xce\x1d\xfd\xcc\x99\x33\x48\x26\x93\x0f\xd4\x16\x7e\x3f\x61\xfb\xf6\xed\xec\xe0\xc1\x83\x50\x14\xc5\x07\x20\x82\x12\xdb\x1e\xda\x3e\x17\xf8\x17\x43\x73\xc1\xdd\xaf\xee\x48\xfc\xb1\x26\x8b\xb3\x00\xa6\xee\xdc\xb9\xa3\xbe\xf1\xc6\x1b\x3f\xd6\xba\x13\xee\xc3\x5d\xf8\xab\xbf\xfa\xab\xb2\x47\xf6\x44\x76\x4f\x07\x7f\xf9\xd8\x58\xe3\x1f\x31\x41\xf2\x2a\x71\x6b\x57\x36\xed\x9c\x5a\x00\x06\x13\xfc\x5c\x77\xfa\xed\xb3\xdd\xe9\xff\x66\x90\x18\x26\xa2\x49\x21\x44\x3a\x9d\x4e\x6b\x3f\xfc\xe1\x0f\x61\xb2\xb5\x7a\x6e\xb4\x7a\xd6\x9c\x8d\xde\x43\x8d\xf8\x55\xfa\x87\xcf\xe7\x63\x87\x0f\x1f\x46\x5f\x5f\x1f\x63\x8c\x05\x00\xc4\x09\xd4\xc1\x04\x14\x83\xc4\x14\x80\xe9\x95\x95\x95\xdc\xcb\x2f\xbf\xfc\x93\xeb\x2e\xfc\xd2\x97\xbe\xc4\x1a\x1b\x1b\x03\xed\x29\xe5\xd1\x9f\xbe\xd2\xfc\x0d\x8f\x41\xd1\xca\x10\x02\xb0\xf7\xa4\x5d\xd6\x5a\x0a\x95\x26\x09\xf5\x9d\x81\xe5\xbf\x1d\x6d\xce\xbd\x02\xc2\x08\x80\x69\xc3\x30\x72\x23\x23\x23\xfc\xf4\xe9\xd3\x3f\x8e\xb7\x7e\xc3\x32\xb0\xad\xad\x8d\x3d\xf6\xd8\x63\x68\x68\x68\x50\x00\xf8\xcc\x3c\x54\x5d\xd7\xb5\xd7\x5f\x7f\x9d\xcf\xce\xce\x6e\x48\x57\x38\x74\xe8\x10\xf3\xfb\xfd\x68\x6c\x6c\xc4\xf2\xf2\x32\x16\x16\x16\x30\x3c\x3c\xbc\x5e\xb1\xe4\x1a\x36\xaa\x45\x03\x00\x1e\x7d\xf4\x51\x36\x34\x34\xa4\x78\x8b\xac\xf7\xcb\x17\x5a\xbe\x15\xcb\x7b\x76\x97\xdc\x76\x95\x71\x6e\xa9\x53\xcd\xff\x02\x20\xaa\xc4\xa8\xb2\x91\x7b\x75\xc7\xe2\x7f\xbc\xdb\x50\x78\x43\x40\x5c\x03\x30\x9f\xcf\xe7\xd5\xf7\xde\x7b\x0f\x77\xee\xdc\x01\xaa\x29\xad\xd6\x83\xac\x87\x4a\xdd\xb0\x1b\xa5\x60\x67\x7c\x55\x1a\x8f\xc7\x83\xdd\xbb\x77\x63\x70\x70\x10\xa1\x50\x08\x93\x93\x93\x38\x77\xee\x1c\x16\x17\x17\xd7\xc4\x02\x40\x43\x43\x03\x0e\x1d\x3a\x84\x4d\x9b\x36\x31\xc6\x98\x22\x84\xb0\xac\x8b\x3a\x11\xe9\x86\x61\xe8\x17\x2f\x5e\xe4\xe7\xcf\x9f\xbf\xa7\x3a\xdb\x59\x74\xbd\xe1\x43\xf9\x7e\x77\x77\x37\x9e\x79\xe6\x19\x06\x81\xf8\x93\xa3\x8d\x7f\xb0\x63\x36\xf8\x95\x8a\x97\xa5\x14\x9c\xfa\xb3\x3d\x3e\xab\x18\xe9\xef\xed\x48\x7c\x75\x2e\xa2\xfd\x23\x80\x6b\x00\x96\xe6\xe6\xe6\xb4\xb7\xde\x7a\xcb\x6d\xb8\xe3\xac\x03\xb0\xfa\xc5\xab\xd5\xc1\x0f\x12\xfb\x99\xc4\x45\xa3\x51\x7c\xe1\x0b\x5f\x40\x30\x10\x0c\xc4\x72\x72\xdf\xbe\xa9\xf0\xaf\xf4\x2c\xfb\x1e\xf5\x18\x2c\x92\xf6\xe9\x13\xd7\x5a\x72\xdf\xb9\xd2\x9e\xf9\x6e\x51\x16\xc9\xe9\xe9\x69\xed\xd5\x57\x5f\xdd\x70\x19\x12\xaa\x07\xa9\x1c\x95\xfe\xe1\xb6\x38\x06\x80\x7b\x3c\x1e\x7a\xf6\xd9\x67\xa1\x28\x4a\xb0\x77\xc9\xf7\xd4\xd1\xf1\xe8\xef\x11\xc0\x2c\xfd\xd8\x92\xb3\x96\xa1\x82\xec\x02\x17\x80\xea\xe1\x99\xef\xef\x48\xfc\xe5\x6c\x83\xf6\x3a\x80\xab\x00\x16\x47\x47\x47\x8b\xef\xbe\xfb\x2e\x54\x55\xe5\xa8\xed\x72\xb4\xbf\x27\x4e\xd7\xa4\x3d\xcd\xbd\x60\xed\x8d\x52\x0b\x2b\x1e\x34\xd6\xeb\xf5\xe2\x85\x17\x5e\x40\x30\x18\x0c\xf4\x2d\xfa\x9e\x7c\x7e\xb8\xf9\xe5\xf6\x15\xe5\x29\xc5\x90\x3a\x3c\x9c\x9a\x02\x1a\xdb\xd2\xb3\xec\x3b\xd1\xbd\xec\xdf\x33\xde\x94\xff\xd0\xd7\x18\xca\x44\x22\x11\x3e\x31\x31\x81\x8d\x94\xeb\xa4\x5e\xeb\xda\x19\x07\x00\xd8\xbb\x77\x2f\x42\xa1\x90\xe2\xd5\xa9\xe3\xb1\x9b\xd1\xdf\x65\x20\xd9\xee\x9e\x13\x20\x9b\x6d\xd6\xea\xf4\x52\x47\xeb\x4c\x68\x6f\x0c\x2d\xfe\xa7\x99\x88\xf6\x1a\x4c\xca\x1d\x19\x19\xd1\x4f\x9e\x3c\xc9\x35\x4d\xb3\xca\x71\xe3\x22\x6e\x66\x45\xb7\x34\x1b\xc1\x3a\x29\xd9\x6d\xc8\xb1\xd6\xf1\xbe\xb0\x87\x0e\x1d\x42\x30\x18\x54\x22\x79\x69\xe8\xe9\xeb\xb1\xbf\xf0\x1a\xac\x8d\x6c\x24\x61\x39\x1f\xdb\x32\xca\x93\x4f\xdc\x88\xfd\x01\x04\xa2\x5b\xb7\x6e\x65\x6d\x6d\x6d\x1b\x2a\xb7\x9e\xb5\xca\x1e\xc7\xa3\xd1\x28\xdb\xbd\x7b\x37\x83\x40\x64\xff\x64\xe4\xd7\xa2\x79\x79\x3b\x20\xcc\xa9\x2c\xe6\xcf\x36\x33\xd1\x6e\x92\xe4\x10\xfc\xdd\xad\xcb\x2f\x4f\x36\x16\xbe\x8f\xd2\x18\x77\x69\x64\x64\x44\x3f\x75\xea\x14\x77\x94\x55\xeb\x65\xb3\xdf\x77\x53\x2a\x36\x82\xad\x25\x92\x6a\x75\xdc\x7a\xe4\xf7\x86\xb0\x44\x84\xde\xde\x5e\x06\x20\xb4\xe7\x6e\xf8\x57\xbc\x3a\xeb\x10\xab\x18\x50\xe5\xbc\x77\xc9\xf7\x53\x2d\x19\xcf\x1e\x00\xbe\xa1\xa1\xa1\x0d\x95\x5b\xeb\xad\x5e\x95\xc1\xa1\x43\x87\x40\x44\x4a\x63\x5e\x1e\x7a\x68\x3a\xf4\x15\x32\xeb\x50\x72\x99\x91\x0b\x23\x2c\xf9\xa7\x05\x04\x2e\x76\x66\x4e\x8e\xb4\xe6\xfe\x4e\x40\xd8\x3b\xd7\xad\x7c\xb7\x37\xd1\x49\x9d\xcc\x25\x7e\x23\xd8\x7a\x1d\xe4\x86\xb5\xe7\xf1\x40\xb0\x1d\x1d\x1d\xf0\x7a\xbd\x0c\x02\x91\xce\x94\xf7\x90\xd5\x56\x80\xd9\x74\x02\x66\x9b\x96\x5c\x57\x4c\x40\xe9\x4a\xfa\x3e\x2f\x84\xf0\xf5\xf4\xf4\x6c\xa8\x5c\xcb\x9b\x54\x4b\xe3\xe4\x00\x58\x4b\x4b\x0b\xeb\xea\xea\x62\x04\x8a\x1e\xbc\x1d\xf9\x75\x45\x67\xb1\x8a\x45\xca\x4c\x69\x59\x2d\x2c\x1f\xaa\x59\xd1\xe9\x06\x6d\xec\xa3\xcd\xa9\xaf\x83\x70\x8d\x40\x89\xd9\xd9\x59\xcd\x41\xb9\xf5\x82\x9b\xf6\xfc\x20\xb0\xb5\xf2\x58\x4f\xde\xf7\x8d\x6d\x69\x69\x61\x28\x69\xb8\x01\x99\x53\xa4\xe2\x5c\x33\x45\x1c\x55\x18\x35\x04\x40\x82\xe0\x2f\xb2\x16\x00\x8a\xc7\xe3\x71\xeb\xa3\x9a\xc1\xed\x8d\x5e\xf5\xc6\xef\xdd\xbb\x17\x8c\x31\x5f\x3c\xeb\xd9\xb9\x75\x21\xf0\x02\x48\x00\x64\xb2\xe1\x55\xe7\x28\xab\x1f\x05\x8f\x91\x7b\x67\x60\xe9\xaf\x74\x49\x5c\x06\x30\xbb\xb2\xb2\xa2\xbe\xf9\xe6\x9b\x56\xbe\xb5\xca\x74\xc6\xb9\x71\x98\x07\x89\xb5\x53\x98\x3d\xce\x0d\xf3\xa0\xb0\x00\x4a\xb4\x90\xf2\xe9\xf3\xe5\x36\x24\x4b\xe4\x59\x42\xae\xd4\x9e\x82\x04\x92\x7e\x3d\x41\x44\xce\xbc\xd6\x2c\xd7\xc9\x3e\x9c\x32\x8e\x37\x37\x37\xb3\xee\xee\x6e\x06\x81\xc8\x81\x3b\xe1\x5f\x93\x04\x05\x08\x04\x12\xe6\xcf\xfa\x33\x1d\xf5\x65\x1e\x43\x02\x67\x7a\xd2\xdf\x5d\x0a\xe8\x1f\x09\x21\xa6\x0c\xc3\x50\xdf\x7e\xfb\x6d\x6b\xe6\xbf\x53\x66\xd6\x93\xab\x6e\x54\xf7\xa0\xb1\x6e\xe3\x7e\x37\x2a\x79\x20\xd8\xb9\xb9\x39\x08\x21\x38\x08\xb9\x6b\xad\xd9\x53\x96\xa5\x9e\x04\x95\xfd\xe0\x64\xf3\x91\xe7\x3d\x3c\x39\xde\x94\x3f\x8f\xd2\x0c\x95\x0d\x95\x5b\xeb\x2d\x2c\x87\xbd\x7b\xf7\x82\x88\x7c\x0d\xaa\xdc\xdf\x9f\x08\x3c\x47\x96\xf3\xc0\x7c\xeb\x4a\xc1\xa2\x62\x94\xa9\x78\x26\xa2\x8d\x5d\xee\xc8\x7c\x47\x40\x4c\x10\x51\xe6\x87\x3f\xfc\x21\x5f\x58\x58\x80\xad\x8c\xb5\x64\x56\x2d\x59\xfa\x20\xb0\xdc\x11\x6f\x7f\x7e\x27\x55\x38\xeb\x7c\xdf\xd8\x44\x22\x01\x5e\x5a\xcc\x94\xbe\xd1\x9c\x7f\xf7\x46\x3c\x7f\x56\xa0\xc2\x09\xcb\x0a\x17\x01\x06\x09\xfe\x41\x5f\xf2\xe5\xbc\xc2\xc7\x01\xe4\x6e\xdf\xbe\x6d\xcb\x76\xed\x72\x99\xcb\xcd\x32\x28\x14\x0a\xb1\x4d\x9b\x36\x31\x00\xa1\xdd\xd3\xa1\x9f\x97\x38\x42\xd5\x66\x48\xcb\xc0\x61\xf2\x65\xd3\x8b\x64\x10\xf8\xa9\xbe\xe4\xcb\x9c\x61\x94\x88\x96\x66\x67\x67\xf5\xe1\xe1\x61\x67\x85\x6a\xfd\xdc\x2a\x5f\x4b\x23\xbe\x57\x2c\x5c\xae\xdd\xd8\x5f\xad\xb4\xf7\x85\xd5\x34\x8d\x8f\x8e\x8e\x72\x00\x19\x0e\x31\xfe\xd6\xd0\xd2\x9f\x5d\xec\xcc\x9c\xd4\x98\xd0\xac\x01\x92\x00\x90\xf6\x1a\x4b\x6f\x0d\x2e\xfd\xe7\xab\xad\xb9\xef\x00\x98\x06\xa0\x5e\xbe\x7c\xd9\xfe\x7c\x6b\x96\x6b\x9f\xb2\x63\x7f\x33\x39\x00\xf4\xf7\xf7\x83\x31\x26\x7b\x8b\xd4\x36\x34\x1f\x38\x51\x5a\x02\x62\x05\xfb\xc4\xb8\x72\x0c\x84\x20\x8c\x35\xe7\x3e\x9e\x8e\x68\x1f\x00\x98\xd6\x75\x5d\x7d\xef\xbd\xf7\xac\x24\x6e\x8a\x4f\xad\xe0\x4c\x5b\x8f\x25\x6f\x04\xeb\x96\x8f\x5b\x7a\xb7\x72\x1e\x18\xf6\x83\x0f\x3e\xe0\x5d\x5d\x5d\x5a\x28\x14\x9a\xd5\x18\xff\xf8\xbd\x2d\xc9\xf4\x85\xae\x95\xb7\xda\xd2\xde\x6d\xbe\x22\x0b\xa5\xfc\xfa\xfc\x4c\xa4\x70\x49\x93\xc4\x88\x80\x18\x83\x40\xf2\xfa\xf5\xeb\xdc\xb6\x64\x75\x5d\xe5\x3a\xe7\x64\xd9\x1b\x80\x0d\x0e\x0e\x02\x40\x60\xf3\x92\xff\xd1\x80\xc6\xba\xca\xde\x5b\x6b\x95\x5f\x79\x98\x04\x58\x3d\x6d\x48\xd0\x3f\xee\x4e\x7f\x5b\x40\x4c\x10\x28\x33\x3c\x3c\xcc\x53\xa9\xd4\x7a\x3b\xb5\xdc\x00\x2e\x95\xdd\x88\x86\x5b\x0f\x5b\x4b\x66\xaf\xa7\x9c\x07\x8a\x7d\xf5\xd5\x57\x71\xe2\xc4\x89\x5c\x38\x1c\x9e\x04\x90\x4e\x79\xf5\xf1\x74\x8b\xf1\x3e\x00\x59\x08\xa1\x02\x58\x22\xa2\x25\x08\xa4\xef\xdc\xb9\xa3\xbf\xff\xfe\xfb\xb5\xca\xaa\x59\xae\x73\xda\x6c\x99\xc4\xbb\xba\xba\x10\x89\x44\x64\x02\x45\xb6\xcd\x05\x9e\x27\xfb\xb4\x51\x9b\xc5\x05\xb0\xb4\xfa\xd2\x98\xe9\x56\x2c\xff\xc9\x42\xb0\xf8\x31\x11\x25\xf2\xf9\xbc\x7e\xf6\xec\xd9\x8d\x74\x2e\x5c\xea\xf3\x59\x63\x9d\xb2\x74\xa3\x9c\xe2\x9e\xb1\x2b\x2b\x2b\x78\xf5\xd5\x57\xf1\xb9\xcf\x7d\x4e\xdd\xb4\x69\xd3\x3c\x80\xa4\xe9\x6c\xb0\xf2\xd0\x35\x4d\xd3\x2f\x5c\xb8\xc0\x2f\x5d\xba\xe4\xc6\x91\xd6\x2c\xb7\xe6\xb4\xd9\x9e\x9e\x1e\x10\x91\x1c\x2a\x48\x5d\xed\x69\xef\x01\x4b\xe8\x97\x57\x70\x59\xc1\x76\xca\x09\xfc\x52\x67\xe6\x35\x10\xa6\x84\x10\xb9\x35\x5c\x5d\xb5\x42\x2d\x2a\xfc\xac\xb0\x6b\x51\xe5\x67\x8a\x5d\x59\x59\xc1\x9b\x6f\xbe\x89\x78\x3c\x8e\x9e\x9e\x1e\x35\x12\x89\x20\x14\x0a\x61\x79\x79\x19\xa9\x54\x0a\x57\xae\x5c\x59\x6f\x19\xae\xe5\xd6\x9c\x36\xdb\xd3\xd3\x03\x21\x84\xaf\x67\xc9\x77\xc4\x63\x50\xc4\xbe\x08\xc2\x9a\x97\x6e\x9f\x38\x07\x08\x24\x42\xc5\x89\xe9\x48\xe1\x2c\x80\xa5\x42\xa1\xa0\x5f\xb8\x70\xe1\x5e\xe5\xe5\x7a\xa9\xf0\xb3\xc0\xae\x75\xef\xbe\xb0\x83\x83\x83\xcc\xe7\xf3\x01\x00\x2e\x5d\xba\xc4\xbd\x5e\x2f\x2b\x14\x0a\x3c\x91\x48\x20\x91\x48\xc0\x05\x0b\xa0\xb4\xdc\xb6\xb9\xb9\xb9\x7c\x23\x9d\x4e\x63\x6c\x6c\xcc\x3e\x2d\xd8\xb5\x5c\xd7\x95\x0d\xcd\xcd\xcd\x08\x85\x42\x0c\x02\xa1\xde\x25\xdf\xe3\x15\x6d\xb9\x62\x64\x11\x55\x4c\xba\x44\xc8\x57\x5b\xb3\xef\x9b\x73\x96\x73\xe3\xe3\xe3\x55\x79\x9a\xc1\xa9\xfd\x59\x71\xab\x8c\x00\x35\xd2\xfd\xa8\xb0\xf6\xb4\xf7\x8d\x6d\x68\x68\x60\xc7\x8e\x1d\x43\x6b\x6b\x2b\x43\x45\x2c\xe2\x91\x47\x1e\xe1\x00\xf4\xb1\xb1\x31\x9c\x3e\x7d\x1a\xf9\x7c\xbe\x0a\xab\x28\x0a\x0e\x1f\x3e\xcc\x06\x07\x07\x19\x00\x85\x71\x28\x92\x20\x85\x93\xd0\x0d\x82\xba\x6b\xd7\x2e\x6d\x66\x66\x06\x6f\xbf\xfd\xf6\x2a\xac\x55\x0f\x57\x25\xab\xbd\xbd\x1d\x00\x64\x99\x53\xac\x33\xe5\xdd\x03\xd3\x61\x5f\x19\x12\xd9\x9c\xf9\x26\xd0\x20\x68\x63\xf1\xfc\x7b\x00\x96\x00\x68\xe6\x24\x6f\x3b\x35\xd9\x55\xfa\xf5\xb0\x98\x5a\x94\xf8\xa0\xb1\xce\x7b\x6e\xd8\xb5\xb8\x41\x4d\xec\xd0\xd0\x10\x0e\x1d\x3a\xc4\x14\x8f\xe2\x6b\xcc\xca\xdd\x83\x0b\x81\xe7\x5a\x57\x94\x87\x74\x26\xd4\x99\x88\x76\xfe\x7a\x4b\xf6\xcd\xfe\x2d\xfd\xf3\x5d\x5d\x5d\xea\xeb\xaf\xbf\x8e\x44\x22\x51\xc6\x3e\xf7\xdc\x73\x68\x69\x69\x51\x02\x1a\x6b\xdb\x3b\x15\xfe\x85\x2d\x09\xff\x17\x43\x9a\xd4\x51\x90\xf9\xd2\xed\x46\xf5\xe4\xc7\x9b\x56\xfe\x0a\x6d\xed\xe3\x5f\xfa\xd2\x97\x56\x61\xad\x3a\xc8\x70\x69\xfc\x9e\x9e\x1e\x06\x40\x89\x67\x3d\x03\xfe\x22\x6b\xb1\x66\x63\xb8\x4d\xff\xb0\x62\xe7\xc2\xda\xf8\x8a\xd7\x18\x07\x90\x99\x9b\x9b\xe3\x4b\x4b\x4b\xe5\xfc\x9c\xf9\xbb\x34\x20\xb0\xfa\xed\xb3\xc7\x3b\x29\xa6\x2e\xf6\xd0\xa1\x43\xac\xa7\xa7\xa7\xa4\x24\x52\x69\x1b\x08\x00\x96\x95\x88\xe7\x72\x39\x7e\xf7\xee\x5d\x5c\xbb\x76\x0d\x33\x33\x33\xb5\xf2\x72\xd6\xd5\xad\xee\x75\xb1\xdd\xdd\xdd\xec\xe8\xd1\xa3\x8c\x11\x8b\xec\x9b\x0a\xff\xdc\xa1\xdb\x91\xdf\xf3\x18\x2c\x6e\xb5\x63\x7f\xc2\xff\x2f\xf7\xdf\x09\x8f\xbd\x3d\xb8\xf4\x6f\x6e\x35\xe1\xfd\x67\x9f\x7d\x36\xf3\xbd\xef\x7d\x8f\xa5\x52\x29\xfe\x85\x2f\x7c\x81\xb5\xb4\xb4\xf8\x62\x59\x79\xe8\xa7\x86\x9b\xbf\xde\xa0\x4a\xbb\xad\xb6\x56\x0c\xd6\xbd\x63\x36\xb4\x67\x4b\xc2\xff\xe2\xab\x3b\x16\x7f\xed\x6e\x14\x67\x8e\x1d\x3b\x96\xfb\xce\x77\xbe\xc3\x0c\xc3\xa8\xaa\xab\xb5\x7c\xb4\xec\xec\x97\x24\x89\x1e\x7e\xf8\x61\xe6\xf1\x78\xc2\x5b\x17\xfc\x3f\xdd\xbb\xec\xfb\x3c\x9c\x41\xd8\x58\xb5\x79\x7e\xa5\x23\xf3\xe6\x74\x54\xfb\x27\x00\x0b\x57\xae\x5c\x31\xe6\xe7\xe7\x6d\xa9\xab\x7e\x6e\x9d\x6b\x77\x56\x33\x47\x3a\x37\xc7\xf9\x2a\x6c\x38\x1c\xa6\x63\xc7\x8e\xd1\xe3\x8f\x3f\x2e\xb5\xb5\xb6\x7a\xfd\x8a\x37\xe2\x5f\xe1\x7d\xe1\x84\x71\x28\xbc\x64\x1c\x0d\x26\xf9\x5e\x5f\xc6\xe8\x21\x0e\x2f\x05\x95\x62\xac\x29\x86\x81\x81\x01\xa3\xb7\xb7\x17\x0b\x0b\x0b\x94\xcb\xe5\x9c\x13\x1f\xec\xe5\x5a\xe5\xd8\x27\x40\xd8\xef\x31\x37\xec\x89\x13\x27\xc8\xeb\xf5\x06\x77\xcc\x06\x7f\xe6\xd8\x58\xf4\xcf\x65\xc1\x42\x36\x61\x07\x02\xe0\x31\x28\xd6\xb7\xe4\x7f\xfa\x76\xa3\x7a\x4a\x0b\xb2\xb9\xa6\xa6\x26\xdd\xeb\xf5\xd2\xb6\x6d\xdb\x64\x0f\x67\x6d\x2f\x5c\x69\xfe\x4f\x4d\x79\x79\x7f\x65\xd2\xb1\x85\x15\x90\x0d\x6a\xe8\x59\xf6\x1d\xb9\xda\x9a\x7b\xc3\x13\xf2\xa5\x89\xc8\x98\x9e\x9e\xae\x9a\x58\x50\x96\x07\xd6\x31\x16\x8b\xc1\xe7\xf3\x31\x00\x81\xf6\xb4\x77\x77\x65\x6b\x0a\x73\x1f\x0c\xcb\xe3\x61\xa3\x0a\x01\x81\xc9\x68\xe1\xbc\x10\x22\x0d\x40\x77\x98\xd3\xac\xbc\x9d\x6c\xcc\x2d\x8d\xf3\x7c\x2d\x39\x0a\xa0\x34\x67\xf9\xf0\xe1\xc3\x4c\x96\x65\xc5\x93\xe7\x1d\xf1\x49\xed\xe7\x1a\xa7\x8b\x5f\xf2\xa8\x62\x08\x10\x8a\x95\xce\x9c\x82\xa0\x1b\x1e\x9a\x48\xb6\xc9\xdf\x5b\xe8\xf5\xfc\x75\xbc\xa9\x69\xfc\xc5\x17\x5f\x54\x2f\x5d\xba\xc4\xcf\x9d\x3b\xc7\xcc\xed\x90\x6a\xc9\x57\xb7\xba\x3b\xeb\xca\xcc\x3a\x21\x10\x08\x28\x8a\x4e\x1d\x87\x26\x22\xbf\xc3\x04\xc9\x80\x80\x30\x5d\x70\x15\x87\x11\xc1\xa3\x53\xfc\xc8\xad\xe8\xbf\xfb\xee\xae\x85\x7f\xd5\xd6\xd6\x36\xdf\xd6\xd6\xc6\x01\xf8\xb6\x2c\xfa\x9f\x8e\x67\x3d\x87\xac\x91\x8b\x1b\x36\xa8\x49\xfd\x3b\x66\x83\x3f\x73\x6e\x53\xfa\xcf\x07\x06\x06\xb4\x73\xe7\xce\x55\xd5\x6f\x95\x89\xab\xa9\xa9\x09\x44\xc4\x20\x10\x88\x67\x3c\xfd\x96\xe9\xac\x94\x1f\x95\x5d\x84\x02\x54\x9a\xe7\x2c\x4a\xc6\xf0\xa5\x40\x71\x0c\x40\x2e\x93\xc9\xf0\x74\x3a\x5d\xce\xaf\x4e\x43\xad\xe7\x07\xc7\xf9\x2a\xec\x9e\x3d\x7b\x70\xf4\xe8\x51\x59\x66\x52\xb4\xe9\xb6\xf6\x0b\x83\x1f\xe6\xde\x69\x19\x2f\xfc\xbe\x47\xe5\xbb\x01\x28\x36\xc7\x9b\xa5\x35\xc8\x72\x91\xf7\xc7\x27\xb5\xff\x63\xe0\xa3\xdc\xbb\x6d\x37\xb4\xdf\x24\x43\xc4\x77\xef\xde\x2d\x3f\xf5\xd4\x53\x6b\xd5\xcd\x79\xbf\xe6\x33\x99\xc3\x4c\xa5\x2d\xad\x1c\x08\x69\x52\x6f\xb9\x16\xa2\x2c\x2a\x4a\xc3\x11\x73\xf4\xd9\x91\x56\x8e\x06\x34\xd6\x45\x44\x0a\x11\x31\x22\x0a\x75\xa4\x94\xcf\x95\xed\x0f\xb5\xb0\x82\xd0\x95\xf4\x7e\x9e\x88\x42\xc1\x60\xd0\xd2\xb4\xcb\xf5\x58\x25\xdf\x1a\x1a\x1a\x20\x84\x90\x7d\x3a\x8b\x86\x34\xa9\x8d\x2c\x33\x33\x84\xe9\x88\x5e\xed\x22\x5c\x0c\x14\x27\x8b\x92\x48\x10\x91\x36\x3b\x3b\x6b\x65\x55\x4b\x56\x31\xdb\xcf\x1e\xe7\x0c\xae\x94\x61\x3f\xdf\xb3\x67\x0f\x7b\xf8\xe1\x87\x65\x26\x10\xeb\x1a\x29\xfc\x9f\x5d\x23\x85\xff\x57\x2e\x8a\x6e\xaa\x72\xa0\x5b\xe7\xa6\x8d\x57\x98\x3f\x22\x30\x1d\xb1\xd6\x9b\xda\xef\xf7\x5e\xc8\xff\x89\xa4\xa3\xa3\xa7\xa7\x47\x79\xf2\xc9\x27\xeb\xd5\xcf\x19\xe7\xa6\x69\x33\x00\xac\xa3\xa3\x03\x42\x08\x25\xa8\x49\xdd\x00\x31\x61\xb6\x99\xb5\xaa\xc3\x6a\x47\x32\xe3\x65\x83\x02\x5e\x9d\xb5\xc1\xd4\xb2\x85\x10\x8a\xa2\xb3\xa8\xe5\x2e\xac\x87\x95\x38\x85\x20\x4a\xd3\x76\x65\x59\xb6\xd7\x6f\x95\x8d\x96\xb7\xb6\xb6\x82\x88\xe4\xb0\x2a\x75\xc8\x06\x85\xcc\x56\x2a\xd3\x31\x91\xcd\x3d\x68\xba\x0b\x17\x43\xc5\x09\x94\x96\x99\xe8\x33\x33\x33\xb0\xe5\xe9\x16\xec\x6f\x7a\x3d\xcb\x8f\x1b\xe5\x94\xef\x75\x77\x77\xb3\x87\x1f\x7e\x98\x11\x10\x69\xbf\x5e\xf8\xad\xa6\x3b\xc5\xdf\x24\x40\xb6\x56\x53\x90\xb9\x47\x96\x75\xac\x88\x14\x6b\x9e\x58\xa9\x81\x48\x08\x16\x59\x30\x7e\xb6\xe7\x72\xfe\x0f\x89\x8b\xd8\xe6\xcd\x9b\xe5\x9d\x3b\x77\xae\x2a\xcf\xd1\x4e\x88\xc7\xe3\xe8\xec\xec\x44\x67\x67\x27\xa2\xd1\xa8\x53\x94\x70\x73\x87\x5b\xa6\x7a\xb8\x0a\xcb\x56\x60\x13\x77\xa5\xdd\x7a\x2a\x2f\x5f\x51\x12\xaa\xea\xe1\xaa\x5d\x21\x5c\x08\x15\xa7\xc5\x1a\x58\x01\xc2\x62\xb0\x38\x0d\xb3\xf3\x9d\x75\xb6\x8f\x83\x39\x00\xf8\xfd\x7e\x00\x90\xc3\x05\xa9\x83\x00\xb6\xda\x9b\x40\x15\xc7\xbe\x19\xb9\x18\x28\x4e\xa0\xb4\xaa\x9e\x9b\x83\x75\xd8\xf2\x75\x72\x09\xa7\x1c\x73\xa3\x5e\x37\x5c\x39\x5e\x96\x65\x3c\xf2\xc8\x23\x20\xa2\x40\xc3\x6c\xf1\x99\xe6\x89\xe2\xff\x0e\x73\x0b\x06\x41\x96\x1f\x95\x2a\x3b\x3e\x94\xa7\x9f\x98\x47\xab\xee\x56\xa3\x01\x88\xcc\x1b\x3f\xdb\x3c\xa1\x5d\x9a\xef\xf3\x7e\x75\xff\xfe\xfd\xe9\x89\x89\x09\x64\x32\x99\x72\x43\x01\x60\x8a\xa2\x60\xdf\xbe\x7d\x18\x18\x18\x60\x3e\x9f\xaf\xaa\xed\x32\x99\x0c\x2e\x5c\xb8\x80\xab\x57\xaf\x02\x00\x4b\xa7\xd3\x88\x46\xa3\xfa\x4c\x44\x1b\xcd\x7b\x78\x32\x50\x64\xd1\xca\x76\x15\x95\xf6\xb4\x34\xb3\xa5\x40\x71\x32\xef\xe1\x69\xa0\xb4\xe3\x2d\x11\xa9\x63\xf1\xdc\xe9\x47\x6e\x47\x7e\xd9\x6b\x20\x50\x0b\x2b\x08\x7c\xb4\x39\xff\x21\x4a\x3b\x1a\x70\x55\x55\xed\xed\x58\xed\x2e\x24\x22\x66\x2e\x8e\x96\x23\xaa\xdc\x5e\x79\x7c\x5b\xae\xab\xdc\x85\x02\x29\xbf\x7e\x07\x80\xa6\xeb\x3a\xb7\x8d\xc5\x5c\x29\xcf\x76\xac\x27\xe7\x6a\xa5\x05\x00\xbe\x6d\xdb\x36\x34\x36\x36\xca\x4c\x17\x6d\xed\xd7\x0b\xbf\x4d\x02\x72\x59\xc6\x3a\xde\xc7\x55\xdb\x90\xb8\xe9\xe2\xa6\xd4\x69\xb9\xa9\xfd\x1b\x4f\x9e\xf7\x79\xbd\x5e\x65\xef\xde\xbd\xab\xea\xfe\xd2\x4b\x2f\x61\xf7\xee\xdd\x4a\x44\xf6\xb7\x0c\xcc\xfb\x9f\x3c\x72\xab\xe1\x7f\x7b\x64\x22\xf2\x3f\xf7\x2e\xfa\x8e\x36\xf8\x43\xb1\xa3\x47\x8f\x2a\xcf\x3f\xff\x3c\x03\xc0\xcd\x89\xef\x9a\x2a\xf3\xe9\x4f\xba\x56\x5e\xaf\xa8\xe4\x4e\xd1\x01\x70\x80\x9f\xdf\xb4\xf2\x2a\x08\x4b\x44\x64\x6d\x39\x91\x4b\xfb\x8d\x6b\x67\x7a\x52\xdf\xe5\x75\xb0\xc3\x6d\xd9\x93\xd3\x0d\x85\x4f\x00\x64\x56\x56\x56\xf8\xf2\xf2\x72\x55\x9d\x57\xb9\x0b\x4d\x32\x97\xfd\x45\x16\xb7\xfc\xbb\x36\x67\x91\x2d\x94\x3a\x9b\x13\xf4\xac\x62\xcc\x0b\x21\x34\x5d\xd7\xdd\xc6\xb8\xf5\xcc\x78\xf5\x82\x5b\x3e\x00\xc0\xb7\x6f\xdf\x0e\x00\x81\x86\x79\xfd\x49\x6f\x4e\xec\xb4\xb6\x32\xac\xaa\xab\xad\x5f\xab\xde\x7d\xdb\x60\x88\x6c\xe9\x89\x00\x49\x47\xbc\xe9\x4e\xf1\xcb\x33\x5b\x95\x3f\xec\xeb\xeb\xd3\x3e\xf8\xe0\x83\x72\xf9\x5f\xf9\xca\x57\x64\x59\x92\x03\xbd\x8b\xbe\x23\x8f\x8f\x35\xfe\x87\x88\x2a\xed\x86\x20\x66\xca\x2f\x7d\x21\x54\x7c\xff\x9f\x06\x97\x7e\x07\x2d\x2d\xc3\xbf\xf4\x4b\xbf\xa4\x9e\x3f\x7f\x1e\x5b\xb6\x6c\x51\x05\xc4\xec\x27\x5d\x2b\xdf\x0a\x17\xe4\x8e\x5d\xd3\xc1\x63\xa5\xcd\xde\x4a\xe4\x27\x50\xda\x6b\xe4\x4c\x4f\xea\x7b\x63\xf1\xfc\x5b\x42\x88\x25\x5d\xd7\xf5\xeb\xd7\xaf\x63\xe7\xce\x9d\xaa\x10\x62\xea\x42\x57\xe6\x1b\x9c\x41\x3e\x34\x11\x39\xe1\x2b\x4a\x01\x0b\xab\x49\x5c\xbb\xd4\x99\x39\x79\xa6\x37\xf5\x57\x28\x2d\xb3\xcd\x99\xc6\xa5\xaa\x50\x65\xc9\x32\xa7\x83\x30\x00\xb2\x4f\x67\x11\x5b\x93\x81\xaa\x5a\xa6\xe2\x2e\xe4\x4c\xe8\xaa\xcc\xd3\x00\x74\x73\xa7\xf4\x5a\xc6\x80\xf5\x76\x6c\xad\xf4\xe5\xeb\x86\x86\x06\x06\x21\x22\xd1\x99\xe2\x17\x4b\x52\xa3\xd2\x9b\x64\x0e\x27\xec\x83\xda\xf2\x9e\x2e\x4e\x06\x64\xbb\x6f\x59\xeb\xa2\xb3\xfa\x33\x73\xfd\xca\xd7\xbc\x5e\x6f\x7a\xeb\xd6\xad\xec\xc6\x8d\x1b\xfc\x85\x17\x5e\x60\xb2\x2c\xfb\x36\x2d\x7b\x8f\x7e\x61\xa4\xe9\x1b\x1e\xce\xa2\x16\x58\x94\xc0\x72\x73\xc6\x73\xfc\xa7\x2f\x37\x7f\xeb\xef\x1f\x9a\xff\xf2\x72\x90\x86\x7b\x7b\x7b\xd5\xb9\xb9\x39\xde\xd2\xd2\x92\xe4\x0c\x23\xef\xf6\x2f\xff\xc9\xcd\xa6\xdc\xc8\x8e\xd9\xd0\xd1\x78\xd6\xd3\xc6\x49\xf0\xd9\x88\x36\x39\xdc\x96\x3d\x39\x17\xd6\xde\x03\x61\x14\x02\x99\xe1\xe1\x61\x7e\xee\xdc\x39\x1e\x8d\x46\xf5\xce\xce\xce\x25\x10\x86\x2f\x75\x64\xbe\x76\xbd\x25\x77\xba\x2b\xe9\x7d\x28\x5c\x90\xe2\x39\x0f\x4f\xdf\x8d\x16\xae\x64\x14\xe3\x32\x4a\xd3\x90\xe7\x93\xc9\xa4\x76\xf9\xf2\xe5\x55\x6d\x5c\x65\x8b\x6e\x6f\x6f\x87\x69\xf9\x91\x7d\x45\x16\xa9\x34\x82\x4d\x55\xa7\xea\x18\x9d\x71\xb5\x28\x89\x0c\x11\xf1\x6c\x36\xbb\xaa\x33\xee\x21\xd4\xb3\x76\x61\xc7\x8e\x1d\x0c\x80\xcc\x0c\xc4\x02\x29\xbe\xbb\x54\x1b\xcb\xd2\x56\x6d\x71\x5b\x7d\xed\x1e\xc8\xf6\x4f\xc9\xf3\x3e\x8f\x2a\xba\x0a\x7e\x4c\x77\x74\x74\xe8\xba\xae\xb3\xe6\xe6\x66\x99\x71\xc4\x1f\x1b\x8b\xfe\xbe\x87\x53\xa9\x73\x6d\x5c\xc0\xe2\x74\x41\x4d\xea\x3d\x7a\xab\xe1\xb7\xbf\xbf\x63\xf1\x5f\x77\x76\x76\x6a\x5f\xfb\xda\xd7\xf4\x97\x5e\x7a\x49\x8d\xc5\x62\xd3\x00\xb4\xdb\x8d\xea\xec\x64\x63\xe1\x1d\x94\x96\x9d\x72\x40\x24\x05\x30\x4d\x44\xd3\x42\x88\xa5\x44\x22\xa1\x9d\x3b\x77\x8e\x03\xc0\xeb\xaf\xbf\xce\x5f\x7a\xe9\x25\x2d\x16\x8b\xcd\x03\x50\xf3\xb2\x31\x3d\xd6\x9c\x3f\x8b\xd2\x22\x37\x4d\x08\x91\x04\x90\x20\x50\x7a\x79\x79\x59\x7d\xed\xb5\xd7\x5c\x9f\xcd\xe9\x2e\xb4\x58\x34\x63\x82\x94\xf2\x93\xdb\x37\x4c\x71\xb8\x0b\x39\x83\x26\x08\xba\x73\x27\x9b\xfb\x08\x75\x29\x3e\x1e\x8f\x03\x80\x2c\x15\x45\x5c\x2a\x8a\x58\xa5\x62\xf6\x23\x56\x5f\x0b\x97\xdb\x2e\x81\x38\x02\x4a\x9e\x77\x6b\x01\xf9\x93\x8e\x8e\x0e\x44\x22\x11\x10\x91\xd2\x9a\x56\x76\x37\xe5\x3c\x7b\xca\xda\x0d\x84\x9d\xf4\x4b\x45\x08\x81\x4d\x49\xdf\xf1\xa0\x26\x75\x67\x14\x3d\x7d\xe0\xc0\x01\xfe\xed\x6f\x7f\x9b\x3f\xff\xfc\xf3\x6a\x4b\x4b\xcb\x2c\x11\x25\x01\x4c\x08\x21\x14\x73\xa2\x84\x4a\x44\x39\x00\xda\x9d\x3b\x77\xf4\x37\xdf\x7c\xb3\xea\x99\xbf\xfd\xed\x6f\xf3\xc3\x87\x0f\x6b\x43\x43\x43\x4b\x1e\x8f\x27\x8d\xd2\xbe\x21\xcc\x94\xd1\x3a\x11\x69\x63\x63\x63\xfc\xcc\x99\x33\xc8\xe5\x72\xae\xed\x55\xcb\x5d\xc8\x98\x20\xb9\xac\xb5\x38\xf8\x9a\xc3\x5d\xc8\x85\xb9\x5d\x91\x33\x0f\x97\x38\xd7\xb2\xe0\x2e\xb3\x5d\xf1\xa6\xab\x4d\x66\xba\x88\x90\x28\xd5\x5f\xc0\xbe\x6d\xb0\xc9\x36\x4b\x27\xe5\x5d\x63\xcb\x8b\xcf\xab\x52\x56\x42\xc5\x75\x42\x30\x5f\x1c\x39\x1c\x0e\x23\x1c\x0e\x43\x08\xe1\x8b\xe6\xe5\xa1\xd2\x9e\x9a\x56\x87\x56\x2b\x9a\x64\x92\xb3\xc7\xa0\x68\x44\x95\x7a\xb3\x5e\xe3\x5a\x24\x12\x01\x00\xf6\xca\x2b\xaf\xf0\xed\xdb\xb7\xeb\x7d\x7d\x7d\x99\x8e\x8e\x8e\x5c\x79\xe6\x24\x11\xee\xde\xbd\xcb\xaf\x5c\xb9\x62\xad\xaa\x5c\xd5\x16\xa7\x4f\x9f\xe6\x97\x2f\x5f\xc6\xe6\xcd\x9b\xb5\xf6\xf6\x76\xcd\xef\xf7\x83\x73\x8e\xe9\xe9\x69\xdc\xbe\x7d\x1b\x8b\x8b\x8b\x56\x5b\xb9\xb6\xa3\x5b\x07\x3b\x86\x2d\xd6\x4e\xac\xa2\x3c\xc4\x70\x71\x3b\x70\x72\x6a\xab\x1b\x97\xb9\xce\xeb\xfa\x78\x32\xeb\x29\xec\xcc\xd9\x1c\x03\x93\x65\x23\xa7\x32\xa1\x95\xbb\xc4\xb9\x2f\xb4\xd5\xff\x40\xb9\xcf\x4c\x99\x5e\xe6\x66\x44\xc4\x74\x26\x58\x65\xeb\xe2\x0a\xd4\xaa\x83\x95\x8f\x20\xf0\xa2\x24\x98\x10\xc2\xbe\x8e\x08\x23\x23\x23\xdc\xe6\x61\x43\x34\x1a\x65\xe6\xce\x05\xf5\x08\x81\x03\x40\x36\x9b\xe5\xc3\xc3\xc3\x30\x27\x2e\x02\x70\x1d\x7a\xba\x62\x57\x75\xb0\x65\x73\xe6\x24\x74\x6b\xcc\x41\x55\x4f\xe2\x48\x2f\x88\x91\x70\x1d\xcb\x6e\x44\x63\xde\x70\x30\x3c\x94\xe3\x0c\xaa\x24\x44\xa8\xc2\x25\x2b\xe2\x83\xca\xfb\x44\xd8\x15\x44\xd8\x06\xc6\xa8\x8c\xa9\xaa\x5f\x4e\x5e\xf4\x51\x12\x95\x97\x96\x03\xe0\x33\x11\x6d\xcc\x60\x42\x93\x45\xc5\xfc\x09\x2b\x2b\x2b\x4f\x02\x32\x5e\x63\x3e\xe5\xd7\xe7\x89\x88\xdb\xd6\x08\x97\x83\xb9\x2b\x00\x00\x20\x99\x4c\x5a\xf9\xaf\x19\x06\x07\x07\xab\x1c\xfe\xa9\x54\x8a\xd5\x98\xed\x51\x15\xec\xce\x86\xf2\x03\x12\x11\x37\x98\xd0\xab\x2d\x02\xf6\xc7\xaa\x5c\x4b\x82\x14\x26\xaa\x5e\x94\x5a\x06\x0d\x67\xa8\x35\x94\x82\x23\xde\x9e\x9e\x1e\x96\x4a\xb6\x00\x00\x1f\x36\x49\x44\x41\x54\xe9\xba\x0e\x00\xba\xee\xa1\xa4\xe6\x67\x09\x7f\xc6\x08\x55\xb8\xae\xe3\x05\xac\xe2\xdb\x8e\x47\x58\xfd\x28\x00\x00\xc3\x83\x8c\xe6\x67\xb3\x00\xf4\x74\x3a\x0d\x5d\xd7\x11\x8b\xc5\xb4\x8c\xd7\x98\xba\xd6\x9a\x3d\xb5\x63\x36\x74\xbc\x8a\x7a\xab\xe0\x02\x97\x3a\x33\xff\x54\x64\x22\x01\x40\xb7\xb6\x4d\x6a\x6a\x6a\x62\x7b\xf7\xee\x45\x6f\x6f\x2f\x33\xed\xcc\x0c\x00\x8e\x1f\x3f\xce\x55\x55\xd5\xaf\x5d\xbb\x86\xf3\xe7\xcf\x5b\xbb\xc4\x57\xb5\xd1\x81\x03\x07\xd8\xce\x9d\x3b\x4b\xbb\xfc\x94\xc6\xfb\xa5\xaf\xc7\x10\xf4\x03\x07\x0e\xe8\x9f\x7e\xfa\x29\xaf\x85\x85\xe9\xf0\xaf\xb2\x1a\x99\xbb\xdf\x70\x55\xe6\x99\x4a\x0b\xd8\x8f\x16\x97\x2b\x5d\xcb\x9c\x7c\x1e\x83\xf9\x0a\x1e\xc3\xd9\xb1\x6b\xf9\x77\x6b\x85\x7a\x32\x98\x27\x12\x09\xb6\x65\xcb\x16\x1d\x44\xe9\x95\xb8\x74\xd9\x97\x31\x7a\x61\xe3\xba\x95\xa1\x9d\x8d\x6a\x2d\x05\xd0\x7a\x04\xfb\x7b\x6b\x21\x4c\x93\x66\xae\x41\x1a\x35\x3c\x48\x00\xd0\xef\xde\xbd\x8b\xe9\xe9\x69\x3c\xf1\xc4\x13\x2a\x08\xb3\x1f\xf4\x25\xff\xba\x31\xef\xe9\xee\x48\x29\xfd\xe5\x8c\xac\x21\x23\x01\xd7\x5b\x72\x67\x2e\x74\xae\x7c\x1b\x84\x04\xe7\x5c\x3b\x73\xe6\x0c\xef\xee\xee\x66\x4f\x3d\xf5\x14\x93\x98\xe4\x6b\x50\xa5\x96\x2d\x89\xc0\xb1\x68\x5e\xde\xaa\x33\x91\x9f\x69\x28\x9c\xbd\x15\xa3\x8f\xf7\xec\xd9\x93\xe9\xeb\xeb\xd3\x5e\x7b\xed\xb5\xaa\x0d\xdc\x9e\x79\xe6\x19\xd6\xdd\xdd\xad\x78\x74\x8a\xee\x9c\x0a\x9e\xe8\x5f\x08\x7c\x21\x54\x90\x3a\x72\x8a\x31\x3f\x16\xcf\xbf\x36\xdc\x9e\xf9\xde\x9e\x3d\x7b\x96\xba\xba\xba\xb4\x7f\xf8\x87\x7f\x70\x6d\x53\xc9\xde\xa0\xe1\x70\x18\xe6\xf4\x90\x70\xdb\x8a\x72\xa8\x2b\xe5\xdb\x53\x69\x91\xca\x8f\xc8\x76\x2d\x80\x6b\xad\xb9\x37\x72\x5e\x7e\x33\x95\x4a\x15\x6e\xde\xbc\xe9\xa6\xca\x5a\xad\xcd\xe0\x96\x61\x75\x1c\x1c\x47\x0b\x27\x00\xb0\x42\xa1\x80\x1d\x3b\x76\x10\x08\x1e\x5d\x21\x6f\x6c\x4a\x7f\x8a\x01\xcc\xa6\xcc\x56\xe0\x54\x83\xd4\x56\xd5\xb0\xf4\x4c\x82\x08\x33\x03\xde\xbf\x29\x84\xa5\xd3\x00\x16\xaf\x5c\xb9\xc2\x6f\xdd\xba\x85\xee\xee\x6e\x1e\x08\x04\x8a\x86\x84\xfc\x8d\xe6\xdc\x4d\x9d\x41\x09\x15\xa4\x46\x99\x93\x62\x10\xf4\xe5\xa0\xbe\x70\xba\x37\xfd\xea\xe9\xcd\xe9\xaf\x0b\x86\xcb\x00\x16\x26\x27\x27\x8b\xba\xae\x93\xd9\xb9\x91\x7d\x53\xe1\xff\xe9\xb9\x91\xa6\xff\xda\xb7\xe4\xff\x85\xd6\x8c\x72\xb4\x7d\xc5\xfb\xf8\xd6\x05\xff\x2f\xf6\x27\x02\x47\xe7\xc2\x85\xcb\x7a\xc4\xb3\xd8\xdb\xdb\xab\x8f\x8e\x8e\x92\x61\x18\xf4\xe4\x93\x4f\x52\x6f\x6f\xaf\x12\x2a\x48\xbd\x2f\x5e\x69\xfe\xfa\xf6\xb9\xe0\x6f\x46\x0a\xf2\x90\xcf\x60\x9d\x61\x4d\x1e\xe8\x4e\x7a\x4f\x6c\x49\x04\x3e\x3f\x19\x55\xcf\xb2\xa8\x2f\xb9\x69\xd3\x26\x63\x74\x74\x94\x84\x10\x55\xed\x5a\xb5\x21\x78\x26\x93\x11\xfb\xf7\xef\x27\x21\x44\xb0\x29\xef\xd9\xdb\xbb\xe4\x3b\xe4\x36\x8f\xc3\x2e\x76\x40\x60\xb7\x62\xea\x07\xc9\x80\xfe\xa9\xcf\xe7\xcb\x9b\xd3\x3b\x85\xcb\x0f\x35\xe2\xd7\xfa\xc1\x7e\x54\x55\x55\xf4\xf7\xf7\x0b\x9f\xcf\x07\xdd\x4b\xc2\x97\xe5\xdb\xfc\x19\xbe\x69\x55\x47\x92\xad\x9e\xf6\x57\xa7\xdc\xf1\x36\xcd\xcb\xb4\xaf\xe7\x1a\xa4\xb1\x99\x21\xef\x57\x41\x34\xae\xeb\x7a\xee\x9d\x77\xde\x31\x84\x10\x62\x61\x61\x81\xb6\x6c\xd9\x62\x48\x92\x94\xe3\x0c\xcb\x77\xa3\x85\x1b\xc3\xed\x99\x73\xc3\xed\xb9\x1f\x5e\xec\x5a\xf9\xc1\x85\xce\xcc\xf7\xe6\x23\xc5\x77\x51\xda\x4c\x66\x2e\x93\xc9\xe4\x4f\x9d\x3a\x85\xa7\x9e\x7a\x0a\x1e\x8f\x27\xb8\x6b\x26\xf4\xb3\x8f\xdd\x8c\xfe\x99\x2c\x58\xb8\xea\xbd\x02\x21\x50\x94\x36\xf5\x2d\xfa\x9f\x1c\x6f\xca\x9f\x14\x21\xcf\x62\x20\x10\x30\x18\x63\xd8\xbf\x7f\xbf\x4c\x1c\x4d\x27\x46\xe2\x7f\xde\x91\xf6\x3e\xe5\xec\x07\x02\xc1\xaf\x4b\x9d\x9b\x92\xbe\x87\xaf\xb5\x66\xff\xd1\x17\x0e\xae\x68\x9a\xc6\xe7\xe6\xe6\xac\xf6\x27\x98\xee\xc2\x32\x3b\xb5\x4d\x6f\xd1\xd3\x5e\x63\xc6\x9e\xa1\xb0\xb7\xb5\x30\x57\xd0\x98\x8a\x4c\x34\x2f\x6f\x12\x42\xc8\x8e\x0f\x3f\xda\xd9\x34\x73\xf9\xc1\x91\xd6\x79\xac\x85\x87\xa9\x8d\xaa\x02\x98\x9e\x1e\xf4\xfe\x57\xcd\xcb\x92\x96\x8f\xc8\xea\x35\x61\xf3\xb6\x54\xc5\x9b\xc3\x1a\x01\xd8\x5c\x87\x80\x21\x91\x76\x77\xbb\xef\xaf\x05\xa3\x09\x21\x44\xe6\xda\xb5\x6b\x65\x51\x93\x48\x24\xf0\xc6\x1b\x6f\xf0\x62\xb1\x98\x41\x69\x83\xb6\x8f\x75\x12\x3f\xc8\x7a\x8d\xef\xe5\x14\xfe\x2a\x27\x71\x12\xc0\x45\x00\xd3\x99\x4c\x26\xf7\xea\xab\xaf\xa2\xad\xad\x0d\x5e\xaf\x57\xf1\x1a\xac\xe3\xd0\xed\xc8\xef\x90\x80\x5c\x59\x75\x54\x59\x20\x2f\x84\x40\xa0\xc8\x7a\x0f\x4f\x44\x7e\x0b\x02\xd1\x81\x81\x01\xf6\xd8\x63\x8f\x41\x08\xa1\x74\x27\x7d\x47\xbb\x92\xde\xa7\x85\xa8\x20\x9c\xd8\x58\x4e\xde\xb7\x6b\x26\xf4\x73\x42\x88\xd0\x9e\x3d\x7b\x60\xca\xf7\x72\xfb\xda\x3d\x49\x4c\x08\xc1\xb3\xd9\x2c\x27\x22\x6d\xc5\xa7\xcf\x0a\x4b\x06\x9a\x43\x11\x4b\x66\x11\xd9\xdc\x85\x44\x88\x67\x95\x7e\x02\xf9\x3c\x1e\x8f\xbd\xd3\x9c\xae\x3e\x37\xa7\x82\x53\x4e\xd7\x74\x30\xd8\xaf\xaf\x5c\xb9\xc2\x73\xb9\x9c\x06\x20\x51\xf4\xd1\x27\xb7\xf7\xf8\xbe\x6a\xc8\xc8\x55\xe4\x2f\x2a\xdd\xea\xe6\x2e\x14\xe6\x7d\xd3\x75\x28\x18\xf4\xa9\x1d\xbe\xbf\xc9\x35\xb0\xf7\x01\xcc\xea\xba\xae\xd9\xd6\x00\x71\x00\x7c\x6e\x6e\x8e\xbf\xfc\xf2\xcb\xb8\x7a\xf5\xaa\xaa\x69\x5a\x92\x88\xa6\x84\x10\xe3\x00\xc6\x89\x68\x3a\x97\xcb\x25\xcf\x9e\x3d\xab\x7d\xf3\x9b\xdf\xe4\xe9\x74\xba\xec\xf0\x6f\x4f\x2b\x07\x82\x9a\xd4\x4d\xa6\x97\xcb\x14\x72\xe5\xf6\xb4\xdc\xaf\xdd\xcb\xbe\xe3\x8a\x41\x6d\x42\x08\xd9\xe3\xf1\x30\x22\x0a\xf5\x2c\xf9\x9e\x22\x90\xbc\x16\x76\x4b\xc2\xff\x2c\x81\x22\x5e\xaf\x57\x36\x3f\xcc\x59\x6e\x2b\xbb\xa9\x12\x00\x58\x36\x9b\x45\x30\x18\xd4\x57\xbc\xc6\xbc\x26\x8b\x8c\x4f\x87\x69\xb2\xb4\x6d\x1e\x5a\x9e\x36\x52\x12\x91\xcd\x59\x4f\x3f\x01\x01\x01\xc8\x83\x83\x83\xdc\xdc\x4b\xb2\xa6\xbb\x0f\xd5\xa1\x9e\xa6\x5d\x33\x9c\x3a\x75\x0a\x4f\x3e\xf9\x64\x86\x18\x9b\xc8\x36\xca\x6f\xdc\xda\x1f\x90\xbb\x2f\xe7\xbf\xa2\xe4\x11\xb3\x2b\x4f\x15\x93\x8c\xb5\xc4\x86\xaa\x86\xc1\x86\x42\xb9\xa9\x1d\xde\x6f\x26\xdb\xe4\xbf\x13\xc0\x18\x01\x99\x8f\x3f\xfe\x98\x9b\xae\xc2\x2a\xc5\x31\x9f\xcf\xe3\x83\x0f\x3e\xe0\x1f\x7d\xf4\x11\x5a\x5b\x5b\x79\x2c\x16\xc3\xf0\xf0\x30\x6f\x69\x69\x61\xb6\x39\x68\x00\xc0\x4c\x8b\x9b\x12\xd4\xe4\x5e\x54\x94\xd7\xea\xcf\xff\x50\x45\xf6\x78\x0c\x16\xf1\xea\xac\xa5\x20\xf1\x31\xb3\x3c\x9f\xbf\xc8\x5a\xca\x5f\x95\xa9\x83\xf5\x17\x59\x0b\x13\x08\x19\x54\x2a\x77\x76\x76\xb6\xdc\xf6\x4e\xa7\x00\x37\x55\x7b\x5d\x93\x44\x72\xc5\xab\xcf\x5b\x0b\xce\x9c\x1b\x79\x8b\xb2\xa7\x89\x10\xcd\xc9\xbd\xbe\x22\x8b\x09\x21\x64\xdb\x58\x6d\x3d\xd4\x78\xcf\xbf\x89\x89\x09\xfe\xe9\xa7\x9f\x72\x00\x49\x01\x31\x9a\x69\x64\xaf\xdc\x38\x14\xf8\x83\xc5\x4d\x9e\x33\x5c\x86\x66\xef\xdf\xf2\xae\xf2\x36\x59\x2c\x18\x78\xaa\x55\x1e\xbe\x71\x28\xf0\x87\xcb\x6d\xf2\xb7\x04\x30\x02\x60\xe9\xc6\x8d\x1b\xfa\xa7\x9f\x7e\x5a\xaf\xde\x30\x0c\x83\x4f\x4f\x4f\x73\x73\xe5\x06\x33\x17\x84\x95\x39\x21\x00\xee\xf1\x78\x20\x84\x60\x05\x99\x6b\xe5\x8a\x94\xb5\xfa\x8a\xe6\x0e\x51\xe2\x28\xba\x24\xb4\xa2\x24\x74\x4b\x4c\x0a\x21\x90\xf2\xeb\x4b\x15\xab\x59\x6d\xec\x6c\x58\x1b\xe7\x54\x1a\xb7\xdb\xc6\xee\x00\x2a\x13\xdf\xad\x48\x96\x48\x24\xb0\x75\xeb\x56\x1d\x84\xdc\x42\xa8\x38\xd1\x9c\x51\xfa\xad\x02\x2c\x2a\xa8\xda\xba\x41\x00\x1e\x4e\xa1\xd6\x15\x65\xfb\x44\x93\x3a\xd2\xde\xde\x9e\x83\x3b\xf5\xda\x3b\xbe\xde\x50\x69\xd5\xb8\xbc\x56\xfa\xd3\xa7\x4f\x73\x9f\xcf\xa7\xf7\xf7\xf7\x2f\x11\xd1\xb5\xa2\x17\xe9\xa9\x1d\xde\x89\xf9\xcd\xca\x43\xd1\xd9\xe2\xa1\x70\xc2\x18\xf0\x65\x78\x9c\x19\x42\x81\x00\x13\x12\x69\x85\x20\x2d\x65\x62\xf2\xf8\x72\xbb\x7c\x56\x0d\xb3\xf3\x20\x1a\x83\x10\x53\x44\x94\x1c\x1b\x1b\xd3\x4e\x9e\x3c\x69\x79\xd5\x50\xab\x5c\x47\xbc\xab\xb8\xc9\x66\xb3\x08\x87\xc3\x7c\x36\xac\x8d\x69\x92\xc8\x78\x75\x0a\x95\x37\x69\x35\xdb\xcd\xae\x38\x4d\x34\xe6\x2f\xaa\x32\x4f\xc2\x34\xfb\x12\x91\x76\xb3\x29\xff\xc3\x03\x93\x91\x5f\x90\x05\x29\xb5\xb0\x82\x04\xae\xb7\xe4\x3e\xc4\xea\x09\x17\x00\xaa\x9d\x0d\x00\xc0\xd3\xe9\x34\x03\xc0\x85\x10\x99\x99\x48\xe1\xda\xf6\xd9\xc0\x93\xa5\x8c\x2b\x9d\x8c\xb2\x90\xb7\x58\x07\xa1\x67\xd9\xf7\xb9\x5b\xb1\xfc\xab\xd1\x68\x94\x05\x02\x01\x6e\x6e\x6a\x56\xd7\x04\xb7\x81\x7b\x35\xd3\xbf\xfb\xee\xbb\x7c\x69\x69\x49\x7f\xf8\xe1\x87\x93\x44\xa4\x82\x68\xa9\x10\xc0\xc4\xfc\x16\xef\xe9\xf9\x3e\x11\x27\x81\x28\xd3\x4b\x9f\x99\xe5\x12\x72\x82\x21\x29\x4a\xab\xf6\x66\x85\x10\xf3\x54\xda\x35\x3e\x37\x32\x32\xc2\x5d\xf6\x0e\xd9\x48\xfd\xab\xe2\x12\x89\x04\x42\xa1\x90\x9a\x55\x8c\xc9\xcb\x1d\x99\xb7\x0f\xdc\x09\xbf\x00\x41\x55\x46\x33\x61\x1a\x67\x8a\x4c\xa8\xe7\xbb\x57\xbe\x23\x20\x92\x84\x92\xc3\x5f\x08\x91\x5b\x08\x15\x87\x2f\x75\xae\xbc\xbd\x6f\x2a\xfc\x5c\x2d\xec\x8d\xe6\xfc\xd9\xdb\x31\xf5\x23\x21\x44\x46\xd3\x34\xdd\x39\xcf\xdb\x1a\x07\x97\xc7\x9a\xaa\xaa\xd2\xee\xdd\xbb\xc1\x18\xf3\x0a\x42\x6c\xe7\x4c\xe8\x39\x56\x92\xe6\xb0\xf6\xc1\x12\xb6\xad\x1b\x4a\xf2\x01\xf0\x17\x59\xf0\x72\x67\xf6\xbb\x02\x48\xa5\xd3\x69\x23\x91\x48\xd8\xc7\xaf\x70\x96\x53\x23\x8e\xa1\x7a\x7c\xbc\x2e\xec\xdc\xdc\x1c\x9f\x9c\x9c\x44\x43\x43\x43\x31\x1c\x0e\xe7\x01\x24\x89\x68\x5e\x00\xd3\x82\x70\x9b\x4b\x18\xe3\x12\xae\x9b\xdb\x14\x8f\x01\xb8\x45\x44\xb3\x00\x52\xc9\x64\x52\x3d\x79\xf2\xa4\x30\xed\xbc\xf5\xca\x75\x8e\xdd\x9d\xe3\xfb\x2a\xac\xae\xeb\xb4\x75\xeb\x56\x01\x82\x98\x8e\x14\x16\xc3\x05\xb9\x27\x9e\xf5\x74\x10\xa8\x6a\x3b\xcf\x82\x2c\x72\x6f\x0f\x2c\xfd\xf5\x9d\xa8\xfa\x06\x80\xc9\x42\xa1\x90\x1f\x1b\x1b\x43\x73\x73\xb3\x01\x82\x31\x15\x2d\xcc\x31\x50\x43\x4b\xd6\xd3\xcd\x04\x24\xcb\xb0\xce\x99\xe0\xd7\x5a\x73\x3f\x7c\x67\xeb\xf2\x9f\xeb\x4c\x0c\x03\x48\x5c\xbe\x7c\xd9\x30\x3f\xdb\x53\xae\x93\x73\xa7\x3b\x32\x0c\x03\x3d\x3d\x3d\x22\x18\x0c\xb2\x82\xcc\x03\x3b\x66\x83\xcf\x28\x06\x0b\x96\x25\x2e\x99\x42\x8d\x50\x3e\x27\x10\x14\x9d\x45\x6f\xc7\xd4\xf7\xb2\x3e\x3e\xe1\xf1\x78\xb4\xd1\xd1\x51\xa7\xb1\xc2\x79\x74\xb3\x58\x59\x18\xee\x68\x44\x38\x8e\xe4\xc4\xe6\x72\x39\xba\x71\xe3\x06\xa6\xa7\xa7\x39\x11\x15\xfd\x7e\x7f\xde\xe3\xf1\x64\x88\x28\x65\x76\xf8\x32\x80\x65\x22\xca\x68\x9a\x96\x9d\x9c\x9c\x2c\x9e\x3b\x77\x8e\x7f\xf4\xd1\x47\x3c\x9d\x4e\xaf\xa7\x5c\x7b\xb0\x8f\xf5\xed\xac\xb9\x8c\x4d\xa7\xd3\xd8\xb4\x69\x13\x0f\x06\x83\x45\xc1\xa0\x8e\x37\xe5\xc7\xe7\xc2\xda\xb2\x00\x64\x43\x12\x3c\xe9\x37\x16\x47\x5b\x72\x17\xdf\xdd\xba\xfc\x9f\xa7\x1b\xb4\x37\x41\x74\x83\x88\xd2\x1f\x7e\xf8\x21\xbf\x70\xe1\x82\x85\xd5\x04\x21\x77\x27\x5a\xb8\x75\xa3\x39\x3f\x96\x0c\xe8\x2b\xcb\x01\x7d\x71\x3c\x9e\xff\xf4\xa3\xcd\xa9\xef\x5c\xee\xc8\xfe\xad\xc1\xc4\x25\x53\x8b\x57\x4f\x9e\x3c\x69\x99\x2c\xcb\x75\x76\xb2\x68\x00\xc0\xcc\xcc\x0c\x9a\x9b\x9b\x35\x83\x90\x98\x8a\x16\xae\x0d\xcd\x49\x2d\x00\xca\xde\x99\xd2\x39\x2a\x82\xb8\xf4\x52\xb1\xc1\xb9\xc0\x17\x66\xc2\x85\x8f\x3a\x3a\x3a\x72\x91\x48\x84\xa7\xd3\x69\xeb\xc1\xed\xe3\xd9\x7a\x32\xd8\x4d\xeb\x5e\x6f\xe0\x00\xd8\xec\xec\x2c\xb7\x69\x91\xbc\xbb\xbb\xbb\x4a\xa6\x4f\x4e\x4e\xba\xc9\x57\x37\x7d\xa1\x9e\xad\x7c\x4d\xac\x10\x02\x3f\xf8\xc1\x0f\xd8\x89\x13\x27\xd4\x50\x28\x34\x2d\x08\xda\x44\x93\x3a\x3d\x11\x53\xdf\x02\x10\x02\xa0\x83\x90\x44\x69\x6b\x86\x69\x00\xe9\x89\x89\x09\xdd\xda\xcd\xde\x8e\x05\x21\x97\x0c\xe8\x53\xc9\x40\xe6\x14\x4c\x87\x3f\x4a\xa2\x65\x96\x40\xc9\x6c\x36\x9b\x7b\xed\xb5\xd7\x50\x28\x14\x56\xd5\x51\xb2\x45\x94\xad\x47\x92\x24\x51\x7f\x7f\x3f\x40\x50\x24\x41\x1d\x5b\x13\xfe\xd2\xc7\x35\x2c\x77\xa1\xa5\xd9\x55\xb4\x36\x10\x08\x11\x55\x6e\xf9\xb4\x3d\xfb\x7d\x43\xc2\xb2\xa6\x69\xfa\xf4\xf4\x34\x77\xe6\x6d\xbb\x86\xcb\x39\x6a\xa4\xa9\x15\xd6\xc4\xa6\x52\x29\x61\xff\xb9\xa4\xb5\xd8\xb0\xc5\x59\xec\xf5\x5c\xab\x9c\xba\xd8\x42\xa1\x20\xae\x5c\xb9\x22\x7a\x7a\x7a\x74\xbf\xdf\x9f\x25\xa2\x25\x01\x31\x8d\xd2\x37\x28\x6e\x03\xb8\x2d\x84\x98\x15\x42\x64\x2e\x5f\xbe\x5c\xb5\x82\xdf\xc2\x36\x36\x36\x1a\x0d\x0d\x0d\x39\x22\x4a\x0a\x21\xe6\x01\xdc\x25\xa2\xbb\x00\xe6\x85\x10\xe9\xd9\xd9\xd9\xc2\xdf\xff\xfd\xdf\x73\x55\x55\x5d\xeb\x28\xc1\x25\xa4\x52\x29\xb1\x6b\xd7\x2e\x92\x24\x49\xca\x79\x0c\x65\xe7\x6c\xe8\x59\xd9\xfc\xa8\xd5\xea\x50\x11\x59\x1e\x4e\xe1\x94\xcf\x18\x9f\x0f\x17\x2f\xc7\x62\x31\xf5\xd2\xa5\x4b\xeb\xe9\xa4\x1f\x77\xd8\xc8\x0b\x75\x4f\xd8\xab\x57\xaf\x0a\x55\x55\x85\xd7\xeb\xd5\xbc\x5e\xaf\x2a\x49\x52\x06\x40\x26\x9b\xcd\xe6\xc6\xc7\xc7\xf5\xf7\xdf\x7f\x5f\xdc\xb8\x71\xc3\x95\x5b\x8d\x8f\x8f\x8b\x4f\x3e\xf9\x84\xcb\xb2\x6c\x48\x92\x54\xe0\x9c\xab\xaa\xaa\x16\x6e\xdd\xba\x55\x3c\x7f\xfe\x3c\xb7\xa6\xf8\xd4\x0a\x84\x1a\xc3\x92\x13\x27\x4e\xa0\xa3\xa3\x23\x04\x81\x9d\x27\x3e\x6d\xfa\xe3\xfe\xc5\xc0\xa1\xea\xe7\x22\xc7\x59\xe9\x3c\x11\xd4\x2e\xbe\xbc\x6f\xee\xcb\x06\xc3\xc4\xfb\xef\xbf\xaf\x5f\xbb\x76\xad\x56\xd9\xf5\x58\xa0\x3d\xbe\xaa\x5e\x2e\xe9\xee\x05\x5b\x6f\x28\xb6\xd6\xd0\xee\xbe\xb0\x5e\xaf\x17\xd6\xea\x03\xf3\x23\x59\xe5\x7b\xc1\x60\x10\xe1\x70\xb8\xbc\xc2\xdf\x36\x5b\xe3\x9e\xcb\xb5\x9c\x0d\x96\xd2\x52\x56\x60\x88\x88\x7a\x7b\x7b\x39\x08\x8a\x41\x68\x1a\x58\xf0\x7f\xae\xdc\x91\xe6\x58\xb8\x74\x51\x7d\x1e\x28\x4a\x2d\x8b\xc1\xe2\xd5\xc5\x80\x7e\xbd\x31\xd6\x58\x30\x8d\x01\x76\xf6\x65\x95\x65\x0f\xb5\x34\x57\x3b\x16\x70\xa7\x94\x8d\x62\xad\x7b\x76\xc5\xca\x9e\x0f\x39\xb0\xc2\x76\x9f\xee\x17\x6b\x18\x06\x15\x8b\x45\xfb\xf7\x0b\xa9\xa7\xa7\x87\x8e\x1f\x3f\x8e\x83\x07\x0f\xb2\xa1\xa1\x21\x69\xf3\xe6\xcd\x6c\xdb\xb6\x6d\x6c\xcf\x9e\x3d\x14\x89\x44\xc4\xe2\xe2\x22\x99\x1b\xc8\x6d\xb8\xdc\x2a\x77\xa1\xbd\xd1\x72\xb9\x1c\x76\xec\xd8\x01\xc6\x18\x65\xbc\x06\x0d\xcd\x07\x8f\x7b\x0d\x29\x68\xd9\xa2\xcb\x96\x51\xbb\xeb\xb0\x74\x4d\xd1\xbc\xdc\x35\xd2\x96\x7d\x43\xf1\x7b\x33\xba\xae\xf3\xb9\xb9\x39\xbb\xe6\x8c\x2a\xc0\x6a\xed\x18\x8e\x63\xbd\x61\xd4\xbd\x60\xed\x69\x6a\x61\xdd\xca\x82\x23\xcd\x7d\x63\x89\x88\x8e\x1e\x3d\x8a\x43\x87\x0e\xc9\xa1\x40\x30\xd0\x9a\x55\xb6\x0e\x2c\x04\x9e\xd9\xbc\xe8\x7b\x34\x52\xf0\xb4\xa8\x5e\xb1\x12\x69\x69\xd2\x06\x06\x07\x78\x36\x9b\x85\xb9\xe6\x7a\x43\xe5\xd6\xfc\x7e\xb0\xae\xeb\x14\x8d\x46\x45\x53\x53\x13\x0c\x12\xb2\x5f\x67\xbd\x9d\x29\xef\xb6\xca\xfc\xa7\x52\xca\xca\x04\xbc\x0a\x25\x07\x8a\xac\x2d\xab\xf0\xa9\xb9\x88\x76\xa5\xb9\xb9\x59\xbb\x74\xe9\x92\xe1\x56\xc6\x3a\x7f\x40\x8d\x3a\x7e\x86\x58\x27\x07\x70\xa3\x90\xfb\xc6\x1e\x3d\x7a\x94\xb6\x6f\xdf\x2e\xfb\x74\xa9\xed\xa9\xeb\x8d\xbf\xf7\xe8\x78\xe3\x9f\x6c\x5e\xf2\x7f\xa9\x2b\xe5\xfb\x17\x7d\x8b\xbe\x2f\x6f\x9f\x0d\xfe\x74\x51\x12\x4b\x8b\x51\x7e\xb3\xa7\xb7\xa7\xb8\xb4\xb4\x24\xcc\x79\x5c\xeb\x2e\xd7\xa2\x60\xb7\x01\x3b\x54\x55\xc5\xe0\xe0\xa0\x20\x22\x96\xf2\xeb\x62\xd7\x4c\xe8\x69\x49\x40\x2e\xc3\xcb\x0c\x82\x50\x5e\xf4\x85\x92\x46\xdd\xb2\xa2\x6c\xbb\xde\x92\x7d\x93\x7b\xa5\xe5\xc6\xc6\x46\x63\x7c\x7c\xdc\x49\x79\x76\x76\x5b\xcf\xe0\xe1\x76\x8d\xfb\xc0\x3a\x8d\x25\xae\xcf\xee\xa8\x2b\x1e\x34\xb6\xaf\xaf\x8f\x1e\x79\xe4\x11\x99\x71\xc4\xbf\xf8\x69\xfc\xcf\xfa\x96\xfc\xbf\x48\x80\x52\x4a\x51\x82\x79\x04\x45\x7b\x96\x7c\xcf\x66\x15\x63\x72\x21\xa2\xdf\xe8\xe8\xe8\x28\x8c\x8e\x8e\x92\xae\xeb\xeb\x2e\xd7\xa2\x60\xd7\x37\x20\x93\xc9\xf0\x2d\x5b\xb6\x08\x9f\xcf\x07\x4d\x12\x2c\x9a\x97\x87\x9a\xb3\xde\x9e\xb2\xbb\xd0\x64\xd1\x56\xa7\x96\xc6\xc6\xa5\xb2\x3d\x9c\x22\x01\x4d\x0a\xde\x8c\xe7\x4f\x45\x1b\xa3\xea\xe2\xe2\xa2\xb5\x21\x9a\x9d\xba\x98\xe3\xda\x8d\xda\xdc\xae\xef\x07\x2b\x1c\x58\xa7\x1c\xab\x45\x71\x0f\x14\xfb\xec\xb3\xcf\x92\xa2\x28\xa1\x6d\xb3\xc1\x97\xf6\xdd\x0d\xfd\x5b\xfb\x66\xa4\xa5\xf9\x08\x04\x08\x80\x88\xa4\xf6\xb4\xf2\xf0\xb5\xd6\xdc\x6b\xc2\x27\x2d\x1b\x86\x61\x4c\x4f\x4f\x63\xbd\xe5\x56\x39\x87\x6d\xd7\x65\xc3\xc4\x95\x2b\x57\x20\x84\x50\x41\x98\xfe\x78\xd3\xca\xb7\x75\xc6\xb5\xca\x1a\xe1\x4a\xbb\x0a\x73\x8e\x96\xb5\x05\x2e\x00\x0c\x2e\x04\x7e\x76\xeb\x82\xff\x19\x02\x05\x8e\x1d\x3b\x56\xb3\x8c\x7b\xfc\xdd\x0f\x96\x3b\xf2\xb1\xd7\x6d\xad\x7a\xde\x37\x36\x1e\x8f\x33\x6b\x17\xa3\xc1\x85\xc0\x4b\x30\xc5\x1e\x4c\x46\x58\xf2\x26\x59\xd7\x02\x3e\x9d\xb5\xf5\x2d\xfa\x9e\x06\x10\xd8\xba\x75\xab\xa3\xd8\xfa\xe5\x3a\x2d\x32\xab\x7e\x57\xaf\x5e\xe5\x99\x4c\x46\x03\x90\x5c\x0e\xe8\x17\x47\x5b\x72\x67\x80\x6a\x77\xa1\x00\x40\x82\xca\x86\xad\xd2\x6e\xe5\x04\x26\x48\x79\xec\x66\xe3\xbf\x8f\xa8\xd2\x80\xd7\xeb\xf5\xbd\xf0\xc2\x0b\xac\x56\x39\x3f\xe2\x9f\xf3\x79\x9d\xf5\x72\x5e\xe3\x41\x62\xad\xd5\x19\x04\x44\xc2\x05\xa9\x8b\xca\xed\x66\xf7\xb3\x03\x95\x5e\x27\x34\xe4\xe5\x41\x00\xbe\x60\x30\xc8\x6a\x94\xe3\x5a\xae\xdb\x9b\x06\x54\xbf\x09\xec\xd2\xa5\x4b\x10\x42\xe4\x04\xc4\xd4\xd9\xee\x95\xbf\x2b\x78\x78\xf9\xfb\x37\x36\x82\x85\x9d\xfd\x5b\x62\x39\xa8\x49\xdd\x4f\x5f\x6f\xfa\x0f\x92\x81\x96\xe6\xe6\x66\xe5\xd1\x47\x1f\x75\x7b\xfb\xed\xa1\x16\xa5\xae\x27\x6c\x04\x6b\x8f\xb7\x8f\x8f\x99\xe3\xfa\x81\x63\xcd\x35\xd8\x10\x80\x5c\x90\x4a\xfe\x62\x2a\xeb\x32\xa5\x44\x25\xde\x6f\x3a\x05\x49\x20\xa7\xf0\x8c\xb9\x6c\x65\x43\xe5\xda\x7b\xdd\x02\x39\xa9\x1a\x23\x23\x23\x16\x15\x2f\xa5\x7c\xfa\xc5\x4b\x1d\x2b\x6f\xc3\xdc\x9d\xbc\xb2\x67\x47\x89\xed\x97\xac\x99\xc2\xd4\xb9\x4a\xf4\xdd\x99\x52\x8e\x1f\xbb\xd9\xf8\xdb\x0c\x14\x1d\x1c\x1c\xb4\x56\xd0\xd7\x0a\xb5\xa8\x6d\x3d\x61\x23\x58\xb7\x78\xee\x88\xff\x4c\xb0\xe6\x6c\x11\x80\xa0\xdd\x69\x2c\x8c\x08\x6b\x3b\x0c\x5b\xe7\x96\x42\x29\xc2\x20\x68\x13\xb1\xfc\x25\x22\x72\x5b\x03\x56\xb7\xdc\x55\xee\x42\x54\x2b\x0e\x65\x6d\x4c\xd7\x75\xea\xe9\xe9\x31\x00\x18\xf3\xe1\x62\xb6\x3f\x11\x38\x12\x28\x4a\x21\xeb\xc5\xab\x8c\x89\xed\x55\xb4\x94\x30\x42\x4b\xc6\xb3\xcf\x20\x91\x9e\x6e\xd0\xae\x74\x6d\xea\x2a\x68\x9a\x86\xf9\xf9\xf9\xb5\xc6\xb9\x4e\x65\xcc\xa9\xc5\xde\x0b\xd6\x99\xae\x9e\xa6\x5e\x0f\x73\xcf\xd8\x42\xa1\x80\xdd\xbb\x77\x0b\x00\xf2\x52\x40\xe7\x83\xf3\xc1\xc7\x15\x83\xf9\x60\xcb\xa0\x64\x5e\x28\xb5\xe3\x68\x4b\xee\xf4\x70\x7b\xf6\x6f\x41\x98\x9a\x9b\x9b\x2b\x5c\xbf\x7e\x7d\xdd\xe5\xae\x72\x17\x5a\x1d\x6a\x8b\x03\x00\x4a\x24\x12\xbc\xbb\xbb\x5b\x84\x42\x21\x6e\x30\x18\x69\x9f\x4e\x03\x0b\x81\x47\x4a\x4a\x9f\xe9\x27\x36\xcb\x28\xbb\x11\xcd\x85\x5f\x66\x46\xd4\x99\xf2\x1d\x51\x3d\x7c\x6e\x3e\x5c\xbc\xde\xb5\xa9\x4b\xd3\x34\x4d\x98\x9d\x6c\xb7\xcc\x00\x15\xcd\xd0\x39\x04\x80\x2d\xce\xc9\x6d\xd6\x8b\x85\x2d\x9d\x7d\x04\xb1\x16\xd6\x1e\xee\x0b\x5b\x2c\x16\x45\x67\x67\x27\x82\xc1\x20\x8a\xb2\xd0\xe7\xc2\x5a\xbe\x67\xd9\xb7\x5b\x31\xc8\x6b\xeb\x57\x00\xc0\x64\xac\x30\xf2\xd6\xe0\xd2\x9f\x1a\x12\x3e\x05\xb0\x74\xf1\xe2\x45\x6e\xee\x4f\xb9\xae\x72\xed\x86\x0e\x7b\x65\xec\x15\xb7\x32\x61\xc9\x64\x12\x03\x03\x03\x3a\x11\x15\x93\x7e\x3d\x1f\x29\xc8\x9b\x9b\x57\x3c\xdd\x64\x9b\xc3\x53\xce\x84\x2c\x93\x08\xca\x72\x9a\x09\x92\xbb\x93\xbe\xc7\xf2\x8a\x71\x77\x3e\x52\x1c\xeb\xea\x2a\x77\xb2\x7d\x28\xe1\x1c\x7a\x38\x55\x7f\xfb\xd0\xc3\xfe\xe6\x6e\x04\xeb\xe4\x06\x4e\x2c\x1c\x78\x67\x7e\xf7\x8d\xcd\x64\x32\x34\x30\x30\xa0\x03\x28\xae\x78\x8d\xa5\xd1\xe6\xdc\xb8\xc1\x20\xcb\x9c\x79\x8b\x4c\x14\xe6\xc2\xda\xd4\xd9\x9e\xf4\x3f\x7e\xb4\x39\xf5\xf5\xa2\x8c\xf3\x00\x66\x53\xa9\x94\x7a\xf2\xe4\x49\xbe\x91\x72\x5d\xdd\x85\x8e\x6b\x2b\x13\x91\xc9\x64\x84\xd7\xeb\x45\x6b\x6b\xab\x0e\x82\x3e\xdd\x50\x58\xee\x5f\xf4\x1f\xf6\xeb\x52\xb0\xbc\x3a\xc0\x36\x36\xb6\xb4\xed\x8a\x7b\x11\x60\x20\x4f\xef\x92\xef\xe9\xa2\x24\x16\x66\x23\xda\x68\xd7\xa6\xae\x62\x30\x18\x14\x93\x93\x93\xf6\x72\xed\xc7\x7a\xc1\x99\xe6\x5e\xb0\x4e\xd1\x64\x6f\x83\xb5\xca\xb9\x67\xec\xca\xca\x0a\xe9\xba\x2e\x3a\x3b\x3b\x35\x22\x5a\x29\x48\x7c\x7e\x2a\x56\xb8\x32\xdc\x91\xfd\xe8\x62\xe7\xca\x3b\xd7\x5a\x73\xff\x94\x08\xeb\xef\x71\x88\x4f\x01\xcc\x16\x8b\xc5\xdc\x3b\xef\xbc\x23\x32\x99\x8c\x9b\x38\xad\x59\xae\xab\xbb\xd0\x16\xec\x2c\x10\x00\xd8\xd4\xd4\x14\x1f\x1a\x1a\xe2\x8a\xa2\x14\x75\x49\xe8\x89\x60\xb1\x30\xb0\xe0\x3f\x28\x09\x48\x76\x79\x6c\x95\x67\xed\x84\x67\x67\x3b\x04\x48\x9b\x96\x7d\x4f\x2a\x06\xb1\xbb\xd1\xc2\x95\xa6\x96\x66\xad\xa5\xa5\x85\x8f\x8d\x8d\xad\xa7\x63\x1e\x74\xd8\xc8\x4b\x51\x13\x7b\xf4\xe8\x51\x76\xe0\xc0\x01\x0a\x04\x02\x34\x33\x33\xb3\xae\x17\x6c\x6e\x6e\x4e\x18\x86\x21\xda\xda\xda\x0a\x92\x24\xa5\x00\x2c\x00\x98\x22\xa2\x49\x22\xba\x65\x9e\x2f\xaf\xac\xac\xe4\xdf\x79\xe7\x1d\x61\xfb\x5c\xed\xba\xeb\x6c\x37\x55\xba\x29\x0d\x70\xc4\x13\x4a\xf2\x18\x5b\xb7\x6e\xd5\x89\x48\x5b\xf1\x1a\x19\x83\x21\xd2\xbd\xec\xdb\x0e\x54\x28\xb7\x0a\x5e\x9e\x30\x66\x53\xbe\x40\xac\x3d\xad\x1c\x8e\x67\x95\xee\xa9\xa8\xfa\x49\x20\x16\xc9\x0d\x0d\x0d\x19\xa9\x54\x8a\x6c\x8e\x79\xa7\x12\x61\x67\x8d\xb0\xa5\x71\x7b\xd0\x7a\xd8\x5a\xcf\xbc\x96\x12\x56\x75\x9f\x88\xe8\xf0\xe1\xc3\xf4\xf4\xd3\x4f\x4b\xad\x2d\xad\xde\x2e\x44\xa2\x8d\x3d\x6d\xfa\xd0\xd0\x10\x9f\x9c\x9c\xa4\x42\xa1\xb0\xa6\x12\x39\x37\x37\x47\x37\x6f\xde\x14\x92\x24\xe9\xe1\x70\x38\x2f\xcb\x72\x16\x40\x46\x08\x91\x49\x26\x93\xea\xf0\xf0\xb0\xf1\xf6\xdb\x6f\xf3\x4c\x26\xb3\xae\x3a\x39\xef\x5b\x2d\x6e\x1f\x3c\x03\xd5\x0a\x8c\xf3\x08\x00\xec\xe0\xc1\x83\xd8\xb3\x67\x8f\x02\xa0\x85\x04\x0e\x3c\x75\x3d\xf6\xef\xb6\xcd\x05\x0e\x59\xb3\x2e\x2b\x82\xc1\x3e\x51\x1e\xd5\xae\x46\xb3\x16\x49\xbf\x7e\xf9\xed\x81\xe5\xdf\xba\xdb\x50\xf8\x58\x40\x64\x6e\xde\xbc\xc9\x3f\xf8\xe0\x03\xbb\x4b\xad\x5e\x70\x8e\x01\x9d\x75\xad\x95\xde\xfe\xac\xeb\xc1\x56\xb5\x4d\x5b\x5b\x1b\x0e\x1f\x3e\x8c\xe6\xe6\x66\x85\x71\x44\x1e\x9e\x8c\xfc\xc2\xfe\xa9\xf0\x6f\x7c\x7f\x47\xe2\x5f\xdd\x69\x2c\x9c\xcd\x64\x32\xb9\x6f\x7e\xf3\x9b\xce\xb1\xe9\x7d\x97\xbb\x51\x6c\x4d\x77\x61\x9d\x23\x01\xc0\xdd\xbb\x77\xd1\xd5\xd5\x65\x84\x42\x21\x0d\x04\x75\xb2\x51\x9d\xed\x4c\xf9\x76\x85\x0b\x72\xac\x94\xc8\x46\xc5\x54\xde\x27\xaf\xca\xbd\x28\xcc\x74\x7e\x5d\x6a\x1d\x9c\x0f\xbc\x28\x0b\x32\xe6\xc2\xda\xcd\x86\xa6\x46\x6d\xdb\xb6\x6d\x5c\x08\x81\xb9\xb9\xb9\xb5\xde\x54\xb8\x9c\x5b\x47\x37\xac\x3d\x4d\x2d\xac\x5b\x59\x00\x80\x86\x86\x06\x3a\x74\xe8\x10\x0e\x1f\x3e\xcc\x42\xc1\x50\xb0\x31\x2f\x0f\x3e\x77\xb5\xe9\xff\xde\x3e\x17\xfc\x4d\x59\xb0\xc6\x8e\x94\xf7\xe1\xd1\x96\xdc\xdb\xe4\xf7\xa4\x9a\x9a\x9a\xb8\x63\xb5\xe5\x3d\x97\x7b\xaf\xd8\x9a\xee\x42\xac\x43\x13\xbd\x7e\xfd\xba\xd8\xb6\x6d\x9b\x21\xcb\xb2\xc6\x19\xd4\xdb\x8d\xea\x7c\xcf\xb2\xf7\xa1\x40\x51\x76\xac\xa2\xab\x04\xbb\xca\x67\x9f\xf8\xcd\x40\x4a\x47\x4a\x79\x7c\xcb\x62\xe0\x73\x2b\x3e\xe3\x4e\x36\x8c\xf9\xce\xae\x4e\x7d\xcb\x96\x2d\xa2\x58\x2c\x62\x69\x69\xa9\x9e\x46\x5c\x4f\xd3\xae\xf5\x7c\x6b\x69\xd8\xab\x34\xd2\x03\x07\x0e\xd0\xf1\xe3\xc7\x59\x73\x73\xb3\xd7\x6b\xb0\xe6\xfd\x53\x91\x5f\x7d\xfa\x7a\xec\x2f\x1a\xf3\x9e\xbd\x64\xfa\x4d\xbd\x3a\x6b\x8e\xaa\x72\xcb\x8d\xe6\xfc\x07\xd1\xc6\x68\x5e\xd3\x34\xeb\x53\x38\xf7\x5c\xee\xfd\x60\xeb\xba\x0b\x51\xfd\x36\xb8\xfe\xa6\xa7\xa7\x31\x38\x38\xa8\x13\x51\xbe\x28\x8b\xec\x64\x63\x21\xb1\x79\xd1\xbf\xc7\xab\xb3\x40\xa5\xfb\x6c\x0a\x9f\xbd\x87\xe1\x60\xe8\x02\xf0\xeb\xac\x73\x60\x3e\xf0\x33\x6d\x2b\x4a\x5f\xca\x6f\x4c\x19\x0d\x4a\x7a\xf3\xe6\xcd\xc6\xf6\xed\xdb\x85\xd7\xeb\x25\x73\x3f\x64\x7b\xa8\x67\xc8\xa8\x75\xed\x94\xc5\x35\x9f\xbd\xbd\xbd\x9d\x0e\x1c\x38\x80\x27\x9e\x78\x42\xea\xe8\xe8\xf0\xc8\x60\xd1\xa1\xb9\xc0\x73\xcf\x5c\x6b\xfa\xd3\xad\x09\xff\x2f\xcb\x82\x05\x2d\xcf\x80\xb5\x28\x3e\x96\xf3\x0c\x15\x24\x3e\x3f\x13\x29\x0c\x77\x76\x76\x6a\x77\xee\xdc\x81\x6d\x3f\xea\x75\x95\x6b\xbb\xde\x70\x9d\xed\xd8\xba\xee\x42\x54\x06\xd1\xdc\x11\x57\x4e\x93\xcb\xe5\x78\x32\x99\x44\x6f\x6f\x6f\x91\x31\xa6\xe6\x65\x23\x3d\x11\x53\xe7\x7a\x96\x7d\xbb\xfc\x45\x16\x04\x50\xd9\x3f\x92\x6c\x2b\x13\x89\x6c\xb5\x32\x57\xcf\x51\x79\x42\xbd\x14\xcd\xcb\x3b\xb7\xcf\x05\x7f\xbe\x35\xa3\x6c\xc9\x2a\xc6\x82\x1a\xa2\x54\x5b\x7b\x3b\xdf\xbb\x77\x2f\x36\x6d\xda\x04\x49\x92\x68\x61\x61\x61\x2d\x4a\xad\x75\xcd\x50\xfd\x9c\xe5\x67\x23\x22\x8a\xc5\x62\xd8\xb5\x6b\x17\x8e\x1e\x3d\x8a\x5d\xbb\x76\xc9\xf1\xa6\xb8\xa2\x08\xa9\x69\xdb\x7c\xf0\x8b\x4f\x5f\x8f\xfd\xd1\xae\x99\xd0\x6f\xfa\x75\xa9\xa3\x6a\x95\x9f\xa9\x44\x9a\xcf\x46\x9d\x29\xef\x23\x77\xa3\x85\x73\x2b\x3e\x63\xba\xab\xab\x4b\xb3\xd6\x31\xd5\x2a\xd7\xa5\x6d\xd7\x5d\xe7\x7a\x58\x82\xbb\x0c\x76\x0b\x4e\x85\xcb\x1e\x8f\x9d\x3b\x77\xb2\x23\x47\x8e\xc8\x42\x88\x08\x11\xf5\x87\x55\xe9\xd1\x2f\x7e\x1a\xff\x8d\xe6\x8c\xa7\x8b\x00\xdb\x32\x17\x51\xb1\xa9\x5b\x71\x16\x65\xc3\xba\x2e\x49\xe8\xb2\xcb\x0c\xd0\xe6\xc3\xda\xa9\xab\xad\xb9\xff\x76\x33\x9e\xff\x41\x46\x31\x12\x20\x68\x42\x08\x3d\x9d\x4e\xf3\x99\x99\x19\xcc\xcc\xcc\x20\x9d\x4e\x23\x9d\x4e\x5b\x1f\xa8\x58\xf3\x59\x18\x63\xf0\x7a\xbd\x68\x68\x68\x40\x53\x53\x13\x3a\x3a\x3a\xd0\xda\xda\x8a\x40\x20\x20\x0b\x21\x64\x26\xc8\x17\xcf\x79\x7a\x07\xe6\x03\x27\x86\xe6\x02\x3f\x1f\xd2\xa4\x21\x6b\x75\x25\xa8\x22\x62\xec\x2c\xc5\x7a\x56\x40\x20\x19\xd0\x47\xfe\x6e\xcf\xfc\xcf\x67\x3d\xc6\xd8\xc4\xc4\x84\xfa\xd6\x5b\x6f\xb9\xb5\xdd\x7a\xaf\xef\x09\x6b\x17\x8f\xeb\x09\xf5\xb4\x53\x1c\x3c\x78\x90\x3d\xf4\xd0\x43\x32\x11\x45\x84\x10\x7d\xfe\xa2\x74\xe8\xe9\xeb\xb1\x5f\xdf\xbc\xe4\xdb\x6e\xc9\xa8\x8a\xad\xbc\x74\x62\x2d\x85\x01\xcc\xbd\xae\x08\x25\xd7\x63\xf9\x9e\xc9\xfe\x00\x08\x12\x28\x4a\x62\x76\x3a\x52\x78\x7f\xbc\x29\xff\xc6\x54\xb4\xf0\xf1\xb2\x5f\x9f\xe6\x24\x34\x54\xf6\xea\xb2\x36\x24\xc7\xfc\xfc\x3c\xcc\x1d\xdc\xab\x82\xdf\xef\x47\x43\x43\x03\x64\x59\x66\xc1\x60\x10\x42\x08\xcb\x23\xa3\x78\x38\xf3\xc5\xb3\x9e\xde\x9e\x25\xdf\xa3\x7d\x8b\xfe\x67\xe3\x59\xcf\x41\xc6\x11\x2a\x8f\x09\xac\x3d\x39\x40\xb6\xfa\x95\x6a\x28\xcc\xde\xad\x6c\xb5\x24\x30\x16\xcf\xff\xed\x1b\xdb\x16\x7f\xcb\x20\x31\xff\xee\xbb\xef\xea\x63\x63\x63\x55\x76\x05\x47\x7b\xd6\x6d\xdf\x35\xfa\xc2\x15\x6b\x51\x30\x50\x9b\x42\xdd\x42\xad\xe1\x13\xf6\xef\xdf\xcf\xf6\xec\xd9\xc3\x18\x63\x11\x00\xdd\x1e\xce\xf6\x1d\xb9\xd5\xf0\x2b\x7b\xee\x86\x1e\x25\x61\x5b\x9b\x0b\x87\xf2\x45\x28\x2f\xf3\xb4\x0b\x2b\x7b\x45\x61\x8f\x27\x01\x4e\xc8\xac\x78\xf5\x6b\xb3\x11\xed\xe2\x5c\x58\xbb\xb0\x14\xd0\xaf\x25\xfd\xc5\xc9\x8c\xc2\xd3\x3a\xe3\x3a\x4a\x9d\x0e\xa0\x6a\x1f\x2f\x66\x75\xa8\x62\x30\x25\x5c\x90\x62\xd1\xbc\xa7\x37\x9e\xf5\x6c\x6f\x4b\x2b\x7b\x5b\x32\xca\xbe\x80\xc6\x7a\x09\xf0\x41\xb8\x6f\x9b\xe6\xbc\xb6\x87\x55\xcf\x41\x82\x7f\xd0\x97\xfa\xed\x4f\x36\xad\xfc\x7f\x99\x4c\x26\xf3\xf2\xcb\x2f\x5b\x5f\x1e\xb5\x87\x5a\xc3\x1f\x67\x70\x8b\xaf\x8b\x5d\xb5\xba\x10\xab\x3b\xae\x56\x61\xae\x2e\xc6\xf3\xe7\xcf\xf3\xc5\xc5\x45\x3c\xf1\xc4\x13\x69\x49\x92\xc6\x8b\x8c\x6b\xef\x6f\x49\xa6\xe7\xc2\xda\xe4\xe3\x63\x8d\x2f\x7a\x75\x0a\x00\x40\x65\x60\x8c\x0a\x5f\xb3\x76\xa5\xb3\xbe\x45\x6c\xbe\x0c\x36\x9d\xac\x9c\x8e\x40\x90\x38\x42\x51\xd5\x73\xa0\x21\x2f\x1f\x18\x9c\x0f\x00\x00\x17\x80\xa6\x4b\x62\x49\x93\x78\x22\xef\xe1\x49\xd5\xc3\xd3\x06\x09\x4d\x10\x38\x09\x30\x99\x93\xcf\x57\x64\x11\x7f\x51\x8a\x29\x06\xc5\x25\x4e\x51\x02\x14\xc0\xe2\x1c\x15\x8e\x51\x09\x66\x25\x09\xab\xc7\xf1\x26\xa5\x96\xb1\xf6\x65\x9e\x28\x5d\x36\xa8\xd2\x36\x21\x44\x20\x18\x0c\xe6\x38\xe7\x3a\x56\x07\x67\xfb\x6e\xd4\x4d\x59\xf3\xda\x29\x83\xeb\xca\x59\x97\x34\x35\xe3\x3a\x3a\x3a\x70\xfc\xf8\x71\x04\x02\x81\x00\x80\x38\x84\x18\x88\xe5\x3c\x9f\x7f\xe2\x46\xec\x17\x3b\x52\x4a\x6f\x79\xad\x31\x2a\xda\x00\x09\x1b\x05\x90\xed\x9e\x40\x99\xf2\xab\x0c\x26\xf7\x80\xad\xda\xe0\xce\xf6\xf2\x38\x39\x47\x99\x72\x6d\xfa\x82\x75\x63\x5d\x58\x12\xc8\x78\x8d\xe4\x7b\x5b\x92\x2f\x8f\xc5\xf3\xdf\x12\x10\xc3\x42\x88\xe4\x37\xbe\xf1\x0d\x6e\xd3\x11\xd6\xd3\xce\xb5\xc2\xba\xb0\xeb\x76\x17\x3a\x9e\xc3\xae\xa6\xdb\xd3\x97\x0b\x58\x59\x59\xa1\x3b\x77\xee\xa0\xb5\xb5\xb5\x18\x08\x04\xf2\x20\x4a\xe5\x15\xbe\x30\xda\x9c\xbb\x61\x30\x78\x5a\x57\x94\x6e\x89\x97\x6c\xe1\xe5\xdd\x8e\xc8\x92\xc5\xa5\x9e\x22\xc0\xd4\xae\xed\x0d\x57\xcd\x1e\x37\x8c\x2d\x2b\x47\xd5\x5f\x2f\x29\x7f\x1b\x8a\x2a\xdf\x74\x2b\x63\xcd\x7c\xd6\x8b\xe5\x04\xdc\x68\xce\x5f\x7e\x7d\xfb\xe2\x57\x67\x23\xda\x5b\x20\xdc\x20\xa2\xa4\x6d\x71\x99\x7d\xe4\x62\x75\x8e\x73\x88\xe3\x26\x05\x36\x8c\xdd\x90\xbb\xd0\xe5\x58\x6e\x67\xdb\xaf\x7c\x4f\x55\x55\x5c\xbd\x7a\x95\x07\x83\x41\x1e\x8f\xc7\x0b\x42\x88\x94\x60\x58\xbe\xdb\x50\x18\x1f\x8f\xab\x53\xd1\xbc\xa7\xad\xa1\x20\xc7\x4a\x8e\x45\xdb\xb0\xc9\xb4\x76\x95\x14\x17\x6b\xd3\x11\xb3\x85\xcd\x62\x2a\xdb\x15\x6c\x0c\x4b\x55\x6d\x40\xe5\x5e\x2c\xaf\x7d\xb6\xd2\x90\xa3\xcd\xc8\xd9\x7e\x6e\x58\x20\xe5\xd7\x97\xde\x1e\x5c\xfe\xd6\xb9\xee\xf4\x7f\xd1\x64\xf1\x43\x94\xd6\x23\x2f\xcf\xcf\xcf\x6b\xaf\xbf\xfe\xba\x7d\xa8\x64\xb5\xb3\x53\xcc\x3f\x50\x37\x65\x2d\x5d\xc1\x1e\xd6\x63\xd7\x5d\x33\x6d\x7f\x7f\x3f\x3b\x72\xe4\x08\x7c\xa5\xed\x62\xa3\x00\xba\x49\x60\xa0\x2f\xe1\x7f\xe2\xc8\x44\xc3\x33\xb1\x9c\xdc\xe2\xb6\x8a\xdd\x6a\x38\xaa\xa1\xd9\xac\x12\xe1\x6b\x60\xdd\x58\x75\x29\xde\xbe\x49\x8a\x6d\x1f\x03\x7b\x7a\xd4\xc0\x42\x40\x95\x79\xee\x93\xae\x95\x53\x17\x3b\x33\xdf\x2f\xca\x62\x44\x08\x31\x01\x20\x61\x7d\x85\xf5\xcc\x99\x33\x6e\xca\xd1\x5a\x76\xf3\x5a\x61\xdd\xd8\xb5\x3a\xf8\x41\xaa\xf1\x00\x4a\xdb\xf3\x6d\xda\xb4\x49\x26\xa2\x92\x6c\x06\xba\x65\x83\x86\xb6\xcd\x05\x9e\xda\x37\x15\x3e\x1a\xcd\xcb\xf1\x9a\x95\xaa\xa7\xbe\x02\xa8\x96\x84\x6b\x60\xed\xd7\x0e\xb9\x4d\x6b\x95\x55\x19\x9f\xa3\x20\x73\xf5\xd3\xb6\xec\xc7\x9f\x74\x65\xde\xc8\x7a\x8d\xcb\x00\x26\x00\xcc\x02\xc8\x24\x93\x49\xed\xd4\xa9\x53\xb0\x2d\xa3\xfd\x91\x07\xc2\x6a\x41\x5e\x4b\xb8\xbb\xc5\x6f\x64\x20\x5e\x0e\xbd\xbd\xbd\xf8\xfc\xe7\x3f\x0f\xbf\xdf\xaf\x08\x21\x42\x44\xd4\x02\xa0\xdb\xa3\xd3\xc0\xd6\x84\xff\xf3\x0f\xdd\x0d\x1f\x69\xc9\x78\x3a\x2c\x89\xb7\x9e\x50\xd9\x0b\xda\xba\xae\xff\x2e\x54\xdd\xaf\x93\xd8\xed\x96\x80\x40\x56\x31\xd2\xc3\xed\xd9\x8f\x87\xdb\xb2\xef\x66\xbc\xc6\x08\x08\x13\x30\x17\x72\x17\x8b\x45\xed\xf2\xe5\xcb\xfc\xd2\xa5\x4b\x70\x7c\xc7\xa2\x56\xfb\xad\xd5\xe6\xf7\x8c\xb5\xea\xee\xe6\x42\xab\x37\x5c\x5a\x53\x8b\x76\x14\x64\x0f\xe5\x74\xfb\xf7\xef\x67\x0f\x3d\xf4\x10\x93\x65\x59\x41\x69\xd5\x7b\x5c\x08\xd1\x21\x09\xea\xeb\x48\x79\xf7\x6e\x9f\x0b\x1e\xda\x92\xf0\x0f\x29\x06\xf9\xd6\xee\x68\xb7\x0d\xbf\x6b\x50\xb3\x8b\xbe\x5c\xb6\xb4\xc1\x52\xb2\xaa\xd3\x08\x08\x70\x02\x9f\x89\x14\x26\x87\xdb\xb3\x67\xc7\x9b\xf2\xa7\x35\x49\x8c\x83\x30\x85\x12\xc5\xa6\x85\x10\xea\xed\xdb\xb7\xf9\xe9\xd3\xa7\xab\x36\x15\x85\x3b\x11\xd4\x6b\x3f\x67\x7b\xdd\x33\x96\x50\xff\x2d\x78\x90\xc1\xb5\x0c\xbf\xdf\x8f\x3d\x7b\xf6\x60\xdb\xb6\x6d\x56\x47\x07\x84\x10\x51\x22\x6a\x03\xd0\xe1\x2b\xb2\xbe\xde\x25\xdf\xde\xad\x0b\xfe\xdd\x1d\x29\x6f\xb7\x4f\x67\x01\xaa\xea\xcc\x52\xb0\xcc\x9b\x16\xaf\xad\x50\x5e\xf9\xce\xda\xdc\xc0\x2e\xab\xcd\xce\xd5\x99\xd0\x13\xc1\xe2\xec\xcd\x78\x7e\x64\x2c\x9e\xff\x38\xe9\xd7\xaf\x83\xca\xdb\x2e\x2c\x01\xc8\x70\xce\xd5\xc9\xc9\x49\x7e\xfe\xfc\x79\xfb\x9a\xde\x07\xd6\x46\xf7\x83\xad\xf7\xcc\xf7\x22\xfc\xef\x2b\x1c\x3e\x7c\x98\xf5\xf7\xf7\xc3\xef\xf7\x2b\x28\x7d\x9f\x20\x02\x20\x46\x44\x2d\x10\x68\xf1\xe9\xac\xab\x65\xc5\x33\xd8\xbd\xec\x1b\x68\x4f\x7b\xbb\x63\x39\xb9\xc5\xa7\x33\x5f\x15\x2b\x5f\x57\x4f\xba\x07\x01\x01\x9d\x09\x3d\xed\x33\x92\xb3\xe1\xc2\xd4\x9d\xc6\xc2\xd8\x74\x43\xe1\xda\x8a\xd7\xb8\x25\x08\xb3\x00\xe6\x01\x24\x50\xfa\xca\x9b\xca\x39\xd7\x6e\xdf\xbe\xcd\x2f\x5c\xb8\x60\xff\x76\xef\x67\x6e\x7e\xdc\x08\xd6\x2e\x83\x1f\x14\x15\x3b\xd9\x74\x3d\x19\xe1\xac\x1c\x03\xc0\x77\xee\xdc\xc9\x06\x07\x07\x11\x8b\xc5\x18\x00\x85\x88\x7c\x42\x88\x00\x11\x45\x51\xd2\xc0\x63\x10\x88\x7b\x75\x8a\x37\xa8\x72\x67\x2c\xe7\xe9\x68\xca\x7a\xda\x22\xaa\x1c\x0b\x17\xa4\x48\x50\x93\x42\x8a\x4e\x8a\xcc\x49\x21\x41\x55\x06\x77\x01\x70\x83\x09\x5e\x94\x84\x96\xf7\x18\xb9\x8c\xd7\x48\xa7\x7d\x7a\x72\xd9\xaf\xcf\x2f\x06\x8b\xd3\x4b\x01\xfd\x4e\xde\x63\xcc\x73\x42\x02\x84\x25\x21\x44\x92\x4a\x1f\xd3\xc8\x08\x21\x72\x44\xa4\xe5\xf3\x79\xfd\xea\xd5\xab\x18\x1d\x1d\x85\x69\xf7\xde\x88\x69\x77\x3d\x6d\xf3\xc0\xb0\xf6\x67\xaf\xf5\xf6\xd4\x92\xbd\xeb\xb9\x5e\x2b\xd4\x4d\x1f\x8b\xc5\x58\x7f\x7f\x3f\x36\x6f\xde\x8c\x48\x24\xc2\x88\x48\x46\xc9\xac\xe8\x43\x89\x95\x07\x88\x28\x64\x2a\x6a\x21\x08\x04\x00\x04\x08\xf0\x31\x01\x45\x36\xc8\x27\x09\x52\x18\x27\x8f\x69\xe8\xe0\x06\x89\x62\x51\x12\x2a\x27\xa1\x72\x82\x06\x20\x87\xd2\x2e\x71\x56\x07\xa6\x01\xe4\x84\x10\x19\x22\x52\x51\xfa\x84\x8d\xae\xaa\x2a\xbf\x7d\xfb\x36\x1f\x1f\x1f\xc7\xd4\xd4\x54\x2d\x19\xb8\xd6\xf3\xd7\xd3\x5d\x3e\x13\xec\x46\x64\xf0\x7a\xcc\x98\xeb\x49\x7b\x4f\x5c\xa2\xa9\xa9\x09\x9b\x36\x6d\x42\x47\x47\x07\x9a\x9b\x9b\x99\xd7\xeb\x65\xe6\x5a\x1d\x19\x80\x2c\x84\x90\x89\x48\x71\x1c\xad\x2f\x79\x32\x00\x30\x77\x90\xe3\x64\x7e\x96\xc6\xfc\x69\xe6\x4f\x17\x42\xe8\x44\xa4\x03\xd0\x8b\xc5\x22\xcf\x64\x32\xfc\xf6\xed\xdb\x38\x7b\xf6\x2c\xb7\x6d\xb5\xbc\xd6\x33\xd5\xbb\xfe\x91\x63\x37\x2a\xad\x7e\xe4\x72\xb9\x5e\xd8\xbe\x7d\x3b\x8b\xc7\xe3\xd6\x47\xad\x11\x0e\x87\x19\xcc\x87\x34\x8d\x16\xd6\x03\xb3\xb2\x11\xc3\xac\xbf\xd9\xc9\x00\xc0\x35\x4d\x43\x2e\x97\xe3\xb3\xb3\xb3\x48\xa7\xd3\x48\x24\x12\x76\x2a\x5d\x2b\xfc\xb3\x92\xb9\xce\x44\x6e\x32\xf8\x5e\xa8\x79\xad\x21\x41\x2d\x6c\xad\x8a\x6f\x24\x7d\x39\x78\xbd\x5e\xe6\xf5\x7a\xd1\xd8\xd8\x58\x8e\x8b\xc5\x62\x50\x94\xca\x0e\x50\x4b\x4b\x4b\xd0\xb4\xd2\x06\xb0\xb7\x6f\xdf\x76\x1b\xc2\x59\x65\x5a\xd7\xb5\x86\x2e\x3f\x69\xd8\x55\x00\xe7\x71\x3d\x98\x5a\xd7\xff\x23\xfc\x98\x42\xd5\xb7\x0b\x51\xfb\xed\xb0\x5f\xd7\x52\xbc\x6a\xe1\xd7\x32\x88\xac\x65\xad\x79\xd0\xd8\x7a\x5c\xa5\x1e\xb6\x56\xf8\x67\x8d\xad\xa5\x64\xad\x47\x71\x72\x2a\x00\xb0\x61\x6a\x29\x00\xf5\x8e\xf6\xf2\x3e\xeb\xe1\x83\x5b\x9d\xff\x7b\xc7\x82\xd9\x7e\xb5\xae\x9d\x47\xb7\xdf\x46\xf2\x72\x9e\xbb\x95\xb3\x56\x9d\x3f\x0b\xec\x5a\x22\xe7\x27\x06\xfb\xff\x03\x63\xf3\x13\xf9\xa3\x12\xaf\x6e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x7a\x51\x44\xbe\x7b\x3f\x00\x00") - -func web_uiV1StaticAppleTouchIcon120x120PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon120x120Png, - "web_ui/v1/static/apple-touch-icon-120x120.png", - ) -} - -func web_uiV1StaticAppleTouchIcon120x120Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon120x120PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-120x120.png", size: 16251, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") - -func web_uiV1StaticAppleTouchIcon144x144PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon144x144Png, - "web_ui/v1/static/apple-touch-icon-144x144.png", - ) -} - -func web_uiV1StaticAppleTouchIcon144x144Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon144x144PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-144x144.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon152x152Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x4f\x40\xb0\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x98\x00\x00\x00\x98\x08\x06\x00\x00\x00\x18\xc2\x20\x21\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x79\x78\x1c\xc9\x75\x27\xf8\x7b\x91\x59\x59\x27\x0a\x40\xe1\x06\x01\x90\x04\x49\x80\x04\xd9\x68\x36\xd9\x27\x9b\xdd\x6c\xf5\x25\xb6\xa4\x56\x6b\x24\xb9\xbd\xb2\x65\x8d\xec\x59\x79\x76\x3f\xef\xee\xac\xd7\x3b\xab\xdd\xf5\x37\xf3\xed\x8c\x77\xd7\xdf\xec\x7c\xf3\xf9\xf3\xe7\xf1\xce\x6a\x34\x5a\xd9\xb2\x65\xc9\x96\x2c\x79\xd4\x2d\xb5\xfb\x52\x77\xb3\xef\x6e\xb2\x9b\xf7\x4d\x10\x04\x40\xdc\x28\x14\x0a\x75\x66\x65\xc6\xdb\x3f\xf2\xa8\xac\x44\x16\x0e\x1e\x1e\x7b\xbc\x81\xaf\x90\x99\x71\xbc\x7c\x11\xf1\xe2\xbd\x17\x2f\x5e\x44\x12\x00\x81\xda\x20\x03\xe2\x36\x92\x7e\xb3\xe1\x76\xc3\xbf\x15\xc1\xc1\x71\xa3\x6d\x15\x94\xff\x3f\x6b\x58\xc2\x13\x29\x51\x0b\x14\x9e\xab\x37\x0f\xea\x5c\xeb\xfd\x82\xd2\xfd\xf0\xd6\x82\x5f\x2f\xce\x9f\xb6\x5a\xfc\xad\x84\x15\x94\x16\x84\xbb\xf0\xc5\xfd\xbd\x83\x45\x58\x9b\x5b\xac\x87\xa3\xf8\x5f\x54\x2f\xff\x7a\x46\xc5\xdf\x05\x0e\xe6\x84\x8d\xe2\xba\x5a\xfd\xff\x3e\xc0\x5a\x11\x6e\xa6\xa3\xfd\x65\x83\x60\xdd\x2a\x42\x5a\xcf\xbb\xfe\x53\xc0\xfa\x7b\x1f\x84\xe7\x2a\x50\xdb\x98\x41\xf7\xfe\x38\x81\x60\x18\x5e\x31\xeb\x87\x5b\x0f\xe6\x6a\xb0\xfc\xef\xf4\x97\x93\x01\xf9\x6f\x27\x2c\x6f\xdc\x6a\xb0\xfc\xef\xff\xfb\x08\xeb\xef\x44\x58\x8b\xab\x6c\xa4\x22\xb7\x12\xd6\xff\x1f\xd6\x11\x6e\x46\x94\x05\x71\x1d\xff\x7d\x50\x5a\x3d\x38\x41\xb8\x6c\x74\x34\xd4\xcb\x7f\xab\x60\xad\x56\x76\xa3\x69\xff\xd9\xc3\x52\x7d\x09\xb2\x5e\x46\x5f\x9e\xf5\x74\x50\x50\x3e\x7f\x87\xd5\x53\x08\x57\x23\xe8\xb5\xde\xb1\x5a\xfe\x55\x61\x75\x75\x75\x09\x45\x51\xdc\x88\x8e\x8e\x0e\x1c\x3b\x76\x0c\x07\x0e\x1c\x70\xf3\xcf\xcd\xcd\xa1\x58\x2c\x0a\x00\x98\x98\x98\x90\x6d\x6d\x6d\x62\x6e\x6e\xce\x0f\x77\x35\xbc\xea\xb5\x49\xbd\xf6\xfa\x3b\x0d\x8b\xea\x14\x0c\x02\x54\x6f\x4a\xea\x2f\xe3\x47\x6e\x35\xd8\xeb\x81\xb5\x5a\xd8\x68\x7e\x00\xc0\xe0\xe0\xa0\x68\x6d\x6d\x45\x3c\x1e\x47\x73\x73\x33\x1a\x1a\x1a\x00\x40\x10\x11\x88\xdc\x26\xa9\x69\x3c\x66\x76\xd3\xec\x7b\xe9\xdc\x33\xb3\x04\x80\xeb\xd7\xaf\xc3\x34\x4d\x4c\x4d\x4d\x41\xd7\x75\x5c\xb8\x70\xa1\x5e\xdd\x36\x82\x77\xbd\xf6\xfd\x3b\x01\x6b\x3d\x66\x0a\x6f\xf0\x73\xb8\xd5\xcc\x13\xb7\xd2\xd8\x77\x23\xf0\x00\x40\xf6\xf6\xf6\x8a\xae\xae\x2e\x6c\xda\xb4\x09\x0d\x0d\x0d\x88\x44\x22\x2e\x17\x65\x66\x57\x34\x13\x91\x0a\x40\x80\x21\x42\x92\xd4\x90\x49\xaa\x22\x49\x25\x86\x4a\x20\x01\x00\x0c\x96\x92\x60\x18\x0a\xeb\x15\xc1\x86\x29\x58\x82\x60\xd8\x04\x26\x89\x48\x32\xb3\xb4\x89\x4f\x02\x90\xb9\x5c\x0e\xf3\xf3\xf3\x98\x9f\x9f\xc7\x47\x1f\x7d\x14\x54\x1f\xbf\xed\x31\xa8\x4d\xd6\xca\xfb\xb7\x16\x96\x9f\x83\xad\x27\xdc\x10\xd7\xf8\x1b\x80\xe5\x86\xbd\x7b\xf7\x8a\xae\xae\x2e\x74\x76\x76\x22\x14\x0a\x55\xf5\x3b\x86\x0a\x40\x53\x25\x69\x71\x5d\x49\x34\x17\xd4\x9e\xe6\xa2\xda\x9f\x28\xab\x3d\x8d\x45\xa5\xb7\xa1\xac\x76\x87\x4c\x6a\x0a\x99\x94\x0c\x49\x4a\x10\x3b\x04\x66\x35\x18\x13\x24\x03\x86\x29\xb8\x64\x08\xce\x55\x14\xce\x96\x42\x72\x7e\x39\x6c\x4c\x67\x23\xe6\xf8\x52\xc4\x18\x5d\x8a\x18\xa3\x99\x98\x31\x5d\x08\x99\x05\x49\xd0\x01\x18\x0e\x11\x12\x91\x2c\x14\x0a\x72\x7a\x7a\x1a\x57\xaf\x5e\xc5\x95\x2b\x57\x6e\x79\xdd\xff\xb6\x05\x87\xc0\xea\x89\xc0\x20\x31\xe6\xcd\x1f\x14\x17\xc4\x65\xfc\x14\xee\x2f\xe7\xcd\xe3\xcf\x5f\x8f\xab\xb9\xd7\x68\x34\x2a\xb6\x6d\xdb\x86\xc1\xc1\x41\xb4\xb4\xb4\x00\x96\x6e\x29\x00\xa8\x42\x22\xd2\x50\x56\x52\x6d\x39\x6d\x4b\xe7\xb2\xb6\xb7\x33\xab\xed\x6f\x2e\x84\x86\x22\x86\xe8\x11\x8c\x24\x98\x04\x08\x00\x33\x00\xb2\x6e\x6b\x86\x1d\x03\x4c\x20\xb2\xb3\x78\x03\x59\xc9\x8e\x54\xb5\x92\xd9\x30\x05\xd2\xf9\x90\x39\xb2\x90\xa8\x9c\x9d\x6e\xd0\x8f\x4d\x37\x94\x4f\xce\x27\x2a\x63\xc5\x90\xcc\xb1\x43\x74\xd6\x4f\x8e\x8d\x8d\xe1\xc2\x85\x0b\xb8\x7a\xf5\xea\x7a\xb8\x9b\xb7\xcd\xd6\xc3\x59\xfe\x93\xc3\xda\x28\x07\x5b\x8d\x48\xd6\x4b\x44\x41\x71\x37\xcc\xc9\x0e\x1f\x3e\x2c\xba\xba\xba\x1c\x4e\x65\x71\x28\x93\x62\x9d\x59\xad\xbf\x2f\x13\x39\xd0\x9b\x09\x3f\x94\xca\x87\xf6\x69\x26\x75\x02\xa4\x7a\x2b\x6c\x91\xd4\xca\x50\x2f\xde\x9b\x0e\x3b\x0f\xdb\x04\xe6\x94\x09\xba\x32\xb8\x54\x0a\xc9\xd1\xb9\x44\xe5\xe8\x58\x73\xe9\xcd\x6b\xcd\xa5\xf7\x16\xe2\x95\x69\x26\x14\x00\x18\xcc\x6c\x94\xcb\x65\x79\xf9\xf2\x65\xbc\xf3\xce\x3b\x1b\xd5\x41\x81\x9b\xd3\x63\x6f\x2b\x2c\xf2\x47\xd4\x79\x61\x3d\x02\x0a\xe2\x78\xfe\xfb\x8d\x5e\x11\x50\xbe\x06\x8f\xdd\xbb\x77\x8b\xdd\xbb\x77\xa3\xa9\xa9\xc9\x21\x2a\x55\x48\x24\x3a\x97\xb5\xfe\x1d\x73\xb1\x4f\x6e\x5d\x88\x3e\xd9\x50\x56\x86\x05\x23\xe6\x54\x90\x41\x20\x87\xc7\xb8\xf7\xd5\xd4\x5a\xa2\x22\x37\xa6\x5a\xc6\x4b\x38\x56\xba\xcd\xef\x6a\xe2\x9c\x5c\xe4\xc9\x5d\xfb\x56\x86\x29\x38\xbd\x18\x35\x3e\xba\xd4\x56\x78\xee\x52\x5b\xf1\xf5\x4c\xd4\x98\x64\x42\x09\x80\x6e\x9a\xa6\x4c\xa7\xd3\xf2\xd8\xb1\x63\x18\x1b\x1b\x5b\x4d\xc7\x59\x6d\xa0\xaf\xb7\x2f\x6e\x3b\xac\x20\x25\x3f\x88\x5d\xfa\x43\x3d\x02\x41\x9d\xfb\xf5\x8a\xdf\xba\x62\x31\x12\x89\x88\x3b\xef\xbc\x13\xbb\x76\xed\x82\xa6\x69\x02\x80\x06\x46\xa4\xb1\xa4\xb4\x6f\x9f\x8f\x3d\xba\x73\x26\xf6\x85\x96\x7c\xe8\x7e\x01\x8a\x55\xfb\xd9\x2b\xbf\xec\xc8\x1a\x16\x56\x65\x3f\x8c\xea\x2c\xb1\xb6\x9c\x0f\x96\xff\xea\xe4\xf1\xf0\x35\x17\x16\xd7\xf0\xba\x15\xe5\x99\x00\x53\x20\x3d\xd5\x50\x7e\xfd\x4c\x57\xfe\xcf\x47\x53\xa5\x0f\x4a\xaa\x4c\xc3\x16\xa3\x73\x73\x73\xf2\xdc\xb9\x73\x38\x7f\xfe\xfc\x7a\x27\x53\x6b\xb5\xf3\x6a\x7d\x75\x5b\x60\xdd\x88\x92\xef\x0d\xeb\x65\xa1\x1b\x1d\x31\x35\xe1\x9e\x7b\xee\x11\x43\x43\x43\xd0\x34\x4d\x25\x22\x95\x18\xb1\xce\xac\xd6\x7f\xc7\x54\xe2\x17\xfb\x17\x22\x5f\x0c\x1b\xa2\x8f\x36\x2c\xed\x7d\x61\x2d\xb9\x18\x94\x97\x01\x90\xa7\x60\x3d\x39\xe9\x24\x32\xad\x8c\x67\x47\xe7\x63\x63\x39\x6c\x9e\xbd\xd0\x5e\xf8\xde\xe9\xae\xfc\x5f\x2d\x45\x8c\x59\xd8\x22\x74\x61\x61\x41\xfe\xe5\x5f\xfe\x65\x3d\xd1\xb5\x9e\xfb\xd5\xc2\x6d\x85\x55\x8f\x83\xad\xc6\xbd\x82\xc2\x7a\x47\xc5\x5a\x65\xbd\xcf\x72\x70\x70\x50\xdc\x75\xd7\x5d\x48\x26\x93\x02\x80\x46\x12\x89\x9e\xa5\xf0\xd0\xfe\xf1\x86\x7f\xd4\x9b\x89\x7c\x56\x30\x92\x8e\x62\x0e\xf8\x74\x23\xcf\xb5\x5e\x08\xca\xb7\x11\x58\xde\xbc\xf5\xde\xe5\x87\x5d\x0f\x1f\xaf\xb0\xd6\x15\x9e\xb8\xdc\x5a\xfc\xfe\xb1\xde\xec\x77\xd3\x31\x63\x0c\x84\x02\x33\x1b\x0b\x0b\x0b\xf2\xc3\x0f\x3f\xc4\xf8\xf8\x78\x3d\x29\xb3\x5e\xf1\xe7\x2d\x7b\x5b\x61\xdd\x2c\x07\xbb\x1d\x41\x00\x90\xcf\x3c\xf3\x8c\x68\x6f\x6f\xb7\x08\x0b\x14\xeb\xca\x6a\x43\xf7\x8e\x25\xbf\xd6\xb7\x18\xf9\xac\x22\x29\x59\xed\x11\x4f\xf7\x91\xc3\x25\xd8\xee\x75\xaa\x8a\x2f\xb2\xbb\x97\x9d\xbc\x08\xa0\xaa\x75\xc2\x42\x00\x6c\x47\xcc\xfa\x61\x3b\xf0\xbd\x22\xda\x3f\x1d\xad\x03\x4b\x57\x79\xf2\x42\x7b\xe1\x4f\x8f\xf5\x66\xff\x24\x13\x31\x26\x00\x94\x98\xd9\xb8\x72\xe5\x8a\x7c\xed\xb5\xd7\xfe\x4e\x98\x38\x1c\x0e\x56\x4f\x2f\xaa\xa7\x3f\xf9\xd3\x82\xa8\xdd\x9f\x7f\xcd\x20\x84\x10\x0f\x3c\xf0\x00\x06\x06\x06\x10\x0a\x85\x34\x00\x91\x64\x51\xe9\xbe\xff\x5a\xe3\x3f\xde\x31\x17\xfd\xb2\x2a\x29\xe5\x98\x0c\x00\x4f\x87\xba\x81\x6d\x15\x27\x78\x6e\xe8\xe6\x66\x80\xa9\x6a\x7e\xd8\x08\x2c\xc7\xa2\x5f\x55\xed\x9d\x78\x0f\x9d\xf8\xd2\x9c\x18\xe7\xce\x49\x59\x2f\xac\x62\x48\x8e\x1c\xdf\x94\xfb\x83\x13\x9b\x96\x7f\x54\x56\x39\xc3\xcc\x25\x5d\xd7\x8d\x77\xdf\x7d\x17\x17\x2f\x5e\xac\xa7\x7c\x3b\x71\xc0\xea\x5c\x68\x35\x65\xfd\xa6\x61\x6d\xd4\x92\xbf\xd1\xb0\x6e\xf1\xd8\xdd\xdd\x8d\x4f\x7c\xe2\x13\x88\xc5\x62\x2a\x00\x2d\x6c\x8a\xd4\xf0\x64\xe2\xb3\x77\x8f\x27\xff\x69\xc4\x10\x7d\xd5\xf9\x58\xb5\xdb\xfc\x6a\x93\xbf\xa3\x9c\x3c\x4e\xa8\x15\x69\x37\x06\x2b\x48\x2c\xae\x16\xe7\x85\xe7\x9f\xbb\xfa\xe1\xae\x06\x8b\xc1\xc8\x44\x8d\x0f\xde\xde\xba\xf4\xbb\x23\x2d\xc5\x77\x4c\xe2\x1c\x00\x7d\x7c\x7c\x5c\xbe\xf9\xe6\x9b\xc8\xe7\xf3\x5e\x90\xeb\x69\x77\xa0\x96\x68\xea\xe5\xbf\x29\x58\xab\x89\xc8\x8d\xd8\x40\xd6\xcb\xb1\x02\x4d\x11\x77\xdd\x75\x97\xd8\xb7\x6f\x1f\x14\x45\xd1\xc0\x48\x74\x2f\x69\x43\x0f\x8f\x34\xfd\x76\xc7\xb2\xf6\x28\xd8\x63\xbb\x0a\x50\x88\x1c\xe9\xe5\xef\x11\x66\xbb\x72\x5e\x65\xda\xf3\x78\xc3\xb0\xd6\x63\x3c\xab\x77\xef\x7f\xbc\x01\x58\xa6\xe0\xc2\x95\xd6\xe2\x9f\xbe\xd5\x9f\xf9\x83\xa5\xb0\x31\x46\x44\x25\x5d\xd7\x8d\x57\x5e\x79\x05\x13\x13\x13\x41\x1c\x05\xd8\xb8\x2d\xab\x1e\x77\xda\x30\x2c\xc5\x2e\xc8\xf6\x95\x50\xdb\x8c\xe4\x49\xab\x77\xf5\x36\x11\xd5\xf9\x39\x79\x6b\xf2\x44\xa3\x51\x3c\xfd\xf4\xd3\xb4\x7d\xfb\x76\x21\x84\x88\xaa\x26\xb5\xde\x77\x2d\xf9\x2b\x9f\xb8\xdc\xfc\xfb\xc9\x72\xe8\x0e\xcb\xca\xee\xe9\x5d\xf2\xe8\x52\x64\xeb\x33\x36\x75\x38\xa2\x86\x40\x96\xf8\xf3\xea\x3b\x8e\x98\xbb\x15\xb0\xfc\xe9\x0e\xf5\xd9\xb0\xac\x32\x55\xae\xe3\x5b\x20\xaf\xe6\xb9\x41\x58\x02\x14\x4a\x15\xd4\xfd\x3b\xe6\x62\x8f\xe4\xc3\x72\x3c\x1d\xab\xcc\x08\x45\x18\x3b\x76\xec\x60\xc3\x30\x30\x33\x33\xe3\x6f\x6f\x87\xa3\xac\xd6\x7f\xfe\x38\xd4\x89\xdb\x30\x2c\xc5\x6d\x55\xeb\xca\x01\xcf\xf0\x5c\xa9\x4e\x9e\xb5\x7e\x4e\x59\xe9\xc4\x75\x77\x77\xd3\xe7\x3e\xf7\x39\x34\x34\x34\xa8\x04\x8a\xb7\x14\x42\x3b\x3f\x75\xb6\xe5\x5f\xed\x9c\x8d\xfd\xd7\x0a\x8b\xb8\xdb\xf1\x5e\x1a\x75\xf5\x21\xcf\x90\x76\x89\xc3\x43\xe7\x6e\x1c\x6a\x89\x68\xa3\xb0\x5c\x62\xf4\xc2\x25\x0f\x57\x21\x1f\x1c\x3f\xdb\xf1\xe1\xe4\x0d\x37\x03\x0b\x04\xcd\x14\x6d\xdb\x16\xa2\x9f\x49\xe8\x8a\x36\xd5\xa8\x9f\x33\x15\x94\xda\xdb\xdb\x8d\xe3\xc7\x8f\x7b\x75\xa0\xa0\xfe\xf2\x5f\x19\xb5\x1c\xcb\x9f\xff\xa6\x60\x11\x56\x9a\x08\x10\x10\x17\x68\x46\xf0\xc5\xfb\x43\xa0\xc1\x14\x80\xd8\xbf\x7f\x3f\x86\x87\x87\xa1\xaa\xaa\x46\xa0\xe4\x8e\xb9\xe8\xc3\x8f\x5c\x69\xfe\xdd\x98\x2e\xb6\x13\x03\x2b\xe4\x86\x23\xa6\x02\xc4\xd7\x5a\xe2\xad\xa6\x09\x7c\xb0\x98\x01\x26\x86\xa1\xb0\x5e\x0c\xc9\x42\x2e\x6c\xe6\x96\xc3\x46\xa6\x18\x92\x85\x62\x48\x16\x74\x45\x96\x4c\xc1\xd2\x14\x30\x88\x01\xc1\x50\x43\xa6\xd0\x22\x06\x45\xa2\x15\x25\x16\xd3\x95\x44\xa2\xac\x24\x13\x65\x25\x11\x36\x44\x44\x61\xa8\xe4\xb5\x75\x79\xf1\x72\x50\x61\x5f\xed\xfc\x5c\xd6\x8b\xab\x9b\x5e\x1f\x16\x88\xe5\x78\x53\xf9\x8f\xfe\x72\x78\xf6\xeb\x44\x94\x3d\x7e\xfc\xb8\xf1\xc1\x07\x1f\xac\x47\x31\xbf\x11\x33\xc5\x86\x61\xa9\x9e\x04\x51\x27\xe3\x7a\x26\x01\x41\x76\xb0\x20\xa2\x14\xfb\xf7\xef\xc7\xbe\x7d\xfb\x04\x11\x69\x8a\x49\xa9\xfb\xaf\x25\xbf\x7a\xd7\x44\xc3\xd7\x55\x46\x02\xc0\x0a\x2a\xb1\xee\xec\xc5\x66\x9b\xcb\x38\x03\xde\xeb\xa3\x05\xd4\xa6\x33\xb1\xdd\x91\x55\xf1\xc7\x00\x2a\x82\xf5\xe5\x88\x99\x9d\x6e\xd0\x27\xa7\x93\xe5\xb1\xf9\x78\x65\x7a\x29\x62\xcc\x96\x43\x72\x59\x12\x0a\x0c\x6b\xc9\x06\x96\x07\x84\x61\xbb\xe0\xd8\xa8\x91\x80\xe5\xe2\xa3\x02\xa4\x02\x88\x90\xe5\x9d\x91\x88\x97\x95\xe6\xe6\xa2\xda\xd9\xbe\xac\x75\x77\x65\xb5\x9e\xd6\x7c\xa8\x3d\x5a\x51\x12\x82\x21\x18\x80\x35\x63\xe5\xea\xa2\xb9\x2b\xb5\x3d\xf8\x79\xb8\x99\x5b\x7b\x67\x30\xd8\x05\xac\xb8\x2a\x2c\x5d\xe1\xc2\xb1\xde\xe5\x0f\x01\x44\x98\x39\x97\x4c\x26\x83\xfa\x47\xf8\xee\xa5\xaf\xcf\x82\xfa\xb8\x5e\xbf\x6f\x08\x96\x8a\x95\x4a\xdb\x7a\x4c\x14\x7e\xea\x5e\x2d\xdd\x2d\xff\xe4\x93\x4f\x8a\x2d\x5b\xb6\x08\x66\x8e\x44\x2a\xa2\xfb\xb1\x8b\xcd\x5f\xdf\x3e\x1f\xfd\xaa\xe3\x6f\x65\x85\x5a\xd6\xe4\x34\xab\xd7\xa4\x00\xb7\xe1\xab\xc4\x58\xc3\x15\xd8\xee\x0e\x5b\xbf\xc9\x6b\x32\x37\xd9\x58\x1e\xbb\xd6\x5c\xba\x7c\xbd\xb1\x7c\x39\x1b\x31\xa6\x4c\xe2\x0c\x80\x1c\x11\xe5\x98\xb9\x40\x44\x25\x66\x2e\x11\x91\xc1\xcc\x3a\xc1\xf2\xe9\xb2\xdd\x6c\x1c\xc7\x42\x8b\xc8\x00\xc1\xcc\x2a\x00\x8d\x01\x4d\x17\xac\xe9\x51\x19\x5b\x8c\x56\x62\x23\xa9\x62\x82\x40\x49\xcd\xa4\x54\x5b\x4e\xdb\xdc\x9b\x09\x6f\xdf\x9c\x8e\x6c\x6f\xcd\x87\x3a\x55\x49\xaa\x33\x58\x5c\xb6\xe4\x11\xc9\xe4\x5d\x15\x80\xc7\xa6\x06\xa0\x3a\xff\xb4\xf5\x47\x10\x24\xb1\x7c\x67\xcb\xd2\x8f\xae\x35\x97\xce\x13\x91\x01\x40\x56\x2a\x15\xa7\x15\xd6\x33\x49\xab\x67\x66\xf2\xc2\xb8\x29\x58\x8e\x5b\x8b\x3f\x93\xff\x05\xfe\x7b\x3f\x12\xf5\xc4\xa1\x1b\x3e\xf3\x99\xcf\x88\xee\xee\x6e\x15\x40\xa4\xa1\xac\xf6\x3d\x75\xae\xe5\x5f\x77\x67\xb5\xc3\xb5\x53\x77\x9f\x2c\x73\xe3\xc8\x5e\x4e\x71\x78\x52\x55\xf9\xad\xe6\xa8\xa6\x33\x11\x2a\x42\xea\xe3\xcd\xa5\x91\x0b\xed\xf9\x93\x13\x4d\xe5\xf3\x85\x90\x9c\x02\x21\x0d\xc0\x22\x2c\x50\x0e\x40\x01\x40\x89\x88\x74\x00\x86\xed\x28\xe8\x5c\x5d\xaf\x55\x17\x23\x8b\x32\x84\x7d\xef\x70\x69\x9b\xa3\x41\xb3\xaf\x31\x00\x31\x5d\xe5\xc4\xf5\xa6\x72\xd3\xf5\xa6\x72\xd3\x87\x7d\xd9\xd6\xe6\x42\x68\x73\xff\x42\x74\xcf\xc0\x6c\x6c\x4f\xaa\xa0\xb6\x93\x07\xe3\x15\xf8\x63\xc5\x90\x59\x91\xc6\x00\xce\xb7\x17\x3e\x38\xd9\x9d\x7b\x11\x84\x59\xbb\x2e\x72\x64\x64\xc4\xdb\xfe\xf5\xc4\x5e\xbd\xb0\x11\x53\xc5\xba\x60\x79\x45\xa4\x13\xb9\x1e\x63\xaa\x37\x9f\xff\x5a\x13\x42\xa1\x10\x0e\x1f\x3e\x2c\x3a\x3b\x3b\x55\x30\x62\xcd\x45\x75\xe0\x33\x67\x5a\x7f\x3f\x55\x50\xef\x5f\x69\x17\xaa\x2a\xbd\xec\x11\x0d\xce\x84\x6f\x85\x1e\x06\x80\xd9\x23\x32\xc1\x58\x8a\x98\xe9\xb3\x9d\xf9\xe3\xe7\x3b\xf2\x47\xb3\x61\xf3\x2a\x80\x79\x10\xe6\x61\x13\x16\x33\xe7\x6c\x82\x72\xfc\xb2\x1c\x16\x0f\xd3\x34\x65\xb9\x5c\xb6\xe1\x32\xc6\xc7\xc7\x57\xd4\x47\x51\x14\x6c\xda\xb4\xc9\xc2\x96\x08\xd1\x68\xd4\x69\x27\xd7\x43\x96\x88\x54\x66\xd6\x00\xc4\x88\x28\x66\x10\x27\xe7\xe2\xfa\xd9\xf9\x78\xe5\xc3\x63\xbd\xd9\xce\x4d\x99\xf0\xee\x3d\xd3\x89\x7b\xb7\x2c\x44\xb6\x87\x24\x69\xde\xd1\xe2\xf2\x6f\xef\x3c\xc4\x9b\x60\xdf\xce\x26\xf4\xb1\x37\xb6\x2d\xfe\x89\x14\xb8\xcc\xcc\xf3\x00\x4a\xd7\xaf\x5f\x97\xd7\xaf\x5f\xf7\xa2\x1b\xd4\xaf\xf5\xb8\xd4\x7a\xd3\x36\x04\x4b\xf5\x25\xfa\x89\xcb\x5f\x28\xe8\x65\xce\xf3\x8a\xfb\x50\x28\x84\x4f\x7e\xf2\x93\xe8\xea\xea\x52\x99\x39\xd6\x9a\x0f\x0d\x7d\xfa\x6c\xcb\x1f\x34\x15\xd5\x7d\x16\x97\xf7\xba\xb5\xd8\xc1\x99\xa2\xdb\x62\xc9\x9a\xfc\x51\xad\xbe\xe5\xea\xd1\xec\x4e\xc4\x16\xe2\x95\xe9\x8f\x37\xe5\xde\xbb\xdc\x56\xf8\xb0\xac\xf2\x18\x80\x59\xa0\x4a\x58\xb0\x74\x2b\xc3\x16\x81\xb2\x5c\x2e\xcb\xe5\xe5\x65\x5c\xbf\x7e\x1d\x1f\x7c\xf0\x81\x6c\x6d\x6d\x15\xf3\xf3\xf3\x6b\x59\xb2\x6b\x46\xad\x10\x02\xa9\x54\x0a\x42\x08\xd9\xdb\xdb\x2b\x9b\x9b\x9b\xd1\xd8\xd8\x88\x96\x96\x16\x87\xc3\xe5\x00\xa8\x44\xa4\x01\x88\x31\x73\xc2\x14\x94\xba\xd6\x5c\xba\x3c\xd6\x5c\x7e\xbf\x35\x1f\xda\x35\x3c\x99\x38\x30\x38\x1b\xdb\x13\x36\x29\xe2\xe5\x64\xfe\x15\x06\xa6\xaa\x3e\x96\x0f\xc9\xec\x2b\x03\xe9\xef\x94\x43\x7c\x96\x99\x27\x01\x64\xf3\xf9\xbc\xf1\xf6\xdb\x6f\x43\x4a\x19\xd4\x67\x75\xeb\xe0\x7b\x5e\x8f\x2e\xb6\x21\x58\x7e\x3e\x1c\x04\xbc\x5e\x43\xaf\x19\x1c\xb1\xc8\xcc\xb1\x54\x21\xb4\xf3\x1f\x9c\x6a\xfb\x66\x43\x59\xd9\xe3\x8a\x03\xf6\xd8\x30\x6c\x42\x71\xf5\x27\x58\xa2\xce\x6b\x7b\xf2\xb2\x30\xa7\xdc\x52\xc4\x4c\x7f\xd8\x97\x3d\x72\xa9\xad\xf0\xae\xae\xf0\x18\x08\x93\xf6\x88\xce\x10\x51\x81\x99\x5d\x0f\xd2\xf9\xf9\x79\x4c\x4d\x4d\xe1\xbd\xf7\xde\x0b\xe2\xd2\x6b\xb5\xc1\x86\xd2\x77\xec\xd8\x21\x3a\x3b\x3b\xd1\xdf\xdf\xef\xb8\x17\x09\x58\x62\x34\x42\x44\x09\x00\x29\x00\x9d\x60\x74\xa7\x0a\xea\xae\xfd\xe3\xc9\x47\x06\xe7\x62\xc3\x8a\x84\xea\xd8\xc4\xac\x41\xe6\x70\x6f\xeb\xd9\x24\x96\x2f\x0f\xa6\xff\xe8\x7c\x7b\xe1\xc7\x0c\x3e\x4b\x44\xb3\xcc\x5c\xfa\xe6\x37\xbf\x69\x6c\x10\xef\x8d\xe4\xbb\x61\x58\xe4\x4b\xa8\x37\xdd\xac\xb7\xe6\x14\x14\x27\x00\xe0\xe0\xc1\x83\x18\x1a\x1a\x52\x01\xc4\x9a\x0a\xea\xc0\x67\x4f\xb7\xfe\xbb\xe6\xa2\xba\xcf\xab\x6d\xb8\xc4\xc5\xa8\xba\x29\x7b\x67\x58\x4e\x1e\x3b\x8e\x3c\xe2\xb3\xa4\x99\x85\xe3\xdd\xb9\x77\x8e\x6f\x5a\x7e\xad\x1c\xe2\xcb\x00\x26\x61\x71\xad\x0c\x2c\x7d\x44\x07\x20\xe7\xe6\xe6\xe4\x95\x2b\x57\x70\xf2\xe4\xc9\xd5\xf4\x88\x7a\x57\x7f\xdd\xfd\x5c\x3a\x88\x73\x07\x2a\xcc\x87\x0e\x1d\x12\x5b\xb7\x6e\x75\x88\x4d\x05\x10\x01\xe0\x10\x5a\x37\x18\x3d\x1d\xcb\xda\x9d\x07\x46\x1b\x0f\xf7\x2e\x86\xb7\x0b\x47\xe7\xf2\xee\x66\x02\xe3\xa3\x9e\xe5\x57\xde\xec\x5f\xfa\x26\x08\xa7\x01\x4c\x00\x28\x9c\x38\x71\x42\xbe\xff\xfe\xfb\x37\x84\x17\x56\x32\x8f\x7a\x6d\x73\x43\xb0\xfc\x04\xb6\x56\x58\x0f\x27\x13\xfb\xf7\xef\xc7\xfe\xfd\xfb\x05\x80\x58\xbc\xac\x6c\x79\xe6\x74\xeb\x1f\xb6\xe5\x42\x07\xc9\xab\x99\x03\x1e\x7d\xcb\xeb\xec\x87\x00\xbe\x6a\x53\x20\x01\x12\x2c\x47\x53\xa5\x8b\x6f\xf5\x67\x9e\x4f\xc7\x8c\x53\x20\x8c\x01\x98\x06\x90\x86\x4d\x58\xe5\x72\xd9\x18\x1f\x1f\xc7\xcf\x7f\xfe\xf3\x40\xfc\xd6\x59\xd7\x8d\xe4\x5f\xad\xd1\x6b\xc2\xce\x9d\x3b\xc5\xd0\xd0\x10\x5a\x5a\x5a\x9c\x9d\x4c\x11\x66\x4e\x12\x51\x2b\x80\x6e\x45\xa2\x7f\x70\x26\x7e\xe8\x81\x6b\xc9\xc7\x13\x65\xc5\x75\x47\x62\x30\xc6\x9b\xca\xe7\x9f\xdb\x3d\xff\x7b\x15\x95\x8f\x02\x18\x03\x90\x1d\x1d\x1d\x35\x5e\x7a\xe9\xa5\x7a\xef\x5c\x37\x5e\xeb\x08\x37\x04\xcb\x6b\x68\xad\x67\x40\x0b\x02\x5a\xaf\x8c\xd8\xb2\x65\x0b\x9e\x78\xe2\x09\x41\x44\x91\x90\x41\xdd\x4f\x9f\x69\xfd\xd7\xbd\x99\xf0\x67\xab\x2f\x74\x96\x46\xac\xe0\xb7\x2b\x3a\x7c\xab\xea\x82\x5c\x0d\xc5\x90\xcc\xbd\xbd\x75\xe9\xa5\x73\x1d\xf9\xd7\x6c\xe5\x76\x82\x88\xe6\x61\xe9\x3a\x7a\xa5\x52\x31\x4e\x9f\x3e\x8d\x53\xa7\x4e\xa1\x54\x2a\x6d\xb4\x41\xeb\x0e\x98\x75\xd4\x1d\x01\x79\xea\x8e\x6e\x22\x12\x1d\x1d\x1d\xb8\xef\xbe\xfb\xd0\xde\xde\xee\x10\x5a\xcc\x26\xb4\x4e\x30\xfa\x1a\xca\xca\x1d\x0f\x5f\x69\xfa\xdc\xb6\xf9\xe8\x10\x01\x62\x39\x6c\xce\xff\x68\x78\xee\xdf\x64\x62\xc6\x5b\xcc\x3c\x42\x44\xe9\x4c\x26\xa3\x3f\xf7\xdc\x73\x28\x16\x8b\xeb\x95\x3e\xeb\xe1\x3a\xb7\x14\x16\x61\x25\x11\x05\x29\xee\xfe\xe7\xc0\x29\x6a\x7b\x7b\x3b\x3e\xfd\xe9\x4f\x23\x14\x0a\x45\x84\x44\xfb\x63\x97\x9a\xbf\x3e\x34\x1d\xff\xaf\xbc\x3a\x57\x8d\x07\x28\x80\x95\x26\x77\x1f\xfb\xb2\x5d\x8b\x27\x9a\xca\x23\xaf\x6d\x5f\xfc\x61\x3a\x6e\x7c\x0c\x60\x14\x96\x48\xcc\x02\x28\x48\x29\x8d\x13\x27\x4e\xe0\xf4\xe9\xd3\x28\x16\x8b\x7e\xb4\x6e\x47\x58\x4b\xa4\xae\x47\xb4\xb8\x69\xcf\x3c\xf3\x8c\xe8\xe8\xe8\x70\x74\xb4\x18\x80\x56\x00\x3d\x42\x62\xfb\x9e\xe9\xf8\x27\xee\xbd\x96\x7c\xf4\x95\x81\xc5\xef\x5c\x4d\x15\x5f\x24\xa2\x8b\xcc\x3c\x6b\x18\x46\xe9\xc5\x17\x5f\xc4\xe4\xe4\xe4\xba\xdf\xb3\x51\xbc\x6e\x05\xac\xb5\x94\xfc\xb5\x42\x0d\x15\x7f\xf1\x8b\x5f\x14\xa9\x54\x4a\x03\xa3\x69\xff\x44\xc3\x57\x1e\x1c\x69\xfc\x1d\x01\xd2\xdc\xdc\x81\xe2\x6f\xf5\x20\x89\xe5\xf1\xee\xdc\x3b\xef\x6d\x59\xfa\x71\x59\x91\xe7\x89\x68\x14\xd6\xec\x30\x07\x40\x9f\x9c\x9c\x94\xcf\x3f\xff\xfc\x7a\x74\xc4\x1b\x0d\xeb\x1d\xf5\x1b\x81\xb3\xe2\x7e\xe7\xce\x9d\xe2\x81\x07\x1e\x40\x28\x14\x72\xf4\xb3\x26\x00\xed\x60\x74\x36\x94\x95\xd4\x72\xd8\x9c\xb0\xd5\x81\x59\x00\x85\x23\x47\x8e\x48\x8f\xaf\xfe\x6a\xd2\xe7\xa6\xf0\xba\x59\x58\x5e\x11\xe9\x84\x40\xee\x84\x60\xaa\x05\x60\xcd\xf0\x9e\x7c\xf2\x49\xf4\xf5\xf5\xa9\x44\x94\xec\x5b\x0c\x1f\x7c\xfa\x74\xeb\x1f\xab\x92\x92\x80\x4f\xa1\x5f\xe5\xde\x1b\x18\x80\xae\x70\xe9\xc8\xb6\xcc\x4f\xce\x76\xe6\x5f\x64\xc2\x45\x58\x4a\x6d\x1a\x40\xa9\x58\x2c\x1a\x6f\xbd\xf5\x96\x77\x3f\xe1\x5a\x5c\xb8\x5e\x67\x04\x89\xc0\x1b\x51\x70\x11\x10\xbf\x9e\x7c\x35\x79\x1e\x79\xe4\x11\xb1\x7d\xfb\x76\x41\x44\xaa\x3d\xdb\x4c\x00\x50\xed\x55\x86\x2c\x80\xc2\x85\x0b\x17\xe4\x1b\x6f\xbc\xb1\x11\x42\xb8\x69\xbc\x6e\x14\x96\xbf\x5f\xd7\x0b\xb4\x26\x0c\x0e\x0e\x8a\x43\x87\x0e\x09\x00\x89\x64\x51\x19\xf8\xc2\xc9\xf6\x3f\x6e\x2c\xa9\x3b\x1d\x3b\x44\x75\x21\xba\xba\xee\xe6\x06\x67\xfa\xe8\xc6\x5b\x64\x97\xd3\xcc\xec\xcb\x83\x8b\xdf\xbf\xd6\x5c\x7a\x0d\x04\x67\x96\x98\x01\xa0\x5f\xb9\x72\x45\xbe\xfa\xea\xab\xb7\x8a\x43\xfd\xad\x0b\x9b\x37\x6f\x16\x0f\x3e\xf8\x20\xe2\xf1\xb8\xea\x59\x31\x90\x00\x8c\xa9\xa9\x29\xf9\xdc\x73\xcf\xdd\x70\xdd\x07\x06\x06\xc4\x9e\x3d\x7b\xd0\xda\xda\x0a\x1b\x2e\x98\x19\xa5\x52\x49\x2e\x2c\x2c\xe0\xcc\x99\x33\xb8\x76\xed\xda\x2d\x6b\x5b\xbf\x0e\xe6\x84\x75\x8f\xdc\xa6\xa6\x26\xf1\x85\x2f\x7c\x01\x8a\xa2\x44\x14\x89\xce\x4f\x9d\x6d\xfd\xdd\xfe\x85\xc8\xb3\x41\x5b\x31\xd8\xf3\xbf\x7a\xf1\xba\x2a\x5b\xb3\xc5\x6c\xc4\xc8\x3c\xbf\x7b\xfe\x3f\xcc\x26\x2a\xef\x32\x2c\x13\x04\x11\xe5\xa4\x94\xfa\xbb\xef\xbe\x8b\xb3\x67\xcf\xba\xfe\x54\x3e\x9c\xbd\x61\x3d\x3a\x25\x7c\x71\xeb\x81\xb5\x1a\x07\x0c\xe2\x7e\x6b\x29\xd0\x81\xb0\x34\x4d\x13\xc3\xc3\xc3\xe8\xef\xef\x47\x53\x53\x13\x96\x97\x97\xf1\xd1\x47\x1f\x39\x07\xaa\x6c\x08\x96\x73\xff\xec\xb3\xcf\x0a\xcf\x5e\x52\x67\x69\xcb\x29\xef\x2c\xee\x1b\xd7\xaf\x5f\x97\x3f\xfd\xe9\x4f\xd7\x53\x8f\x35\xeb\xb8\x11\x11\xe9\x4f\x97\x42\x08\xf1\xcc\x33\xcf\xa0\xad\xad\x4d\x03\xa3\x69\xef\xf5\xc4\x2f\x3d\x7c\xa5\xe9\x5f\x11\x48\xad\x5d\x51\xab\xce\x1b\x7d\x2b\x3d\x9e\x54\x6b\xd6\xb8\x18\x35\x66\x9f\xdf\x3d\xff\x1f\xd2\x71\xe3\x5d\x00\x97\x61\xe9\x1c\xb9\x6c\x36\x6b\x7c\xff\xfb\xdf\x5f\x2f\x6e\x35\x78\x06\xc4\x6d\xa4\x9e\x41\xb0\x56\x13\xcb\xab\xc1\x0a\xca\x77\xdb\x61\x6d\xdb\xb6\x0d\x8f\x3e\xfa\xa8\x20\x22\x4d\x48\xc4\x36\x2f\x46\xf6\xee\x9a\x89\xff\x83\xae\x25\x6d\xaf\x2a\x29\x56\xd0\xe4\xec\x68\xaa\xf4\xc6\xd9\xce\xdc\xf3\x0b\xf6\x2e\xa6\x72\xb9\x6c\xfc\xec\x67\x3f\xc3\xdc\xdc\xdc\x4d\xe1\xe5\xe5\x60\xfe\xb0\x96\xc2\x27\xee\xba\xeb\x2e\xdc\x7d\xf7\xdd\x82\x88\x12\xa9\xbc\x3a\xfc\xec\xc7\x1d\x3f\x88\x98\xa2\xbd\x76\xd7\xb3\x77\x19\xd7\x0a\xec\xb9\xf3\xae\x47\x66\x22\xc6\xfc\x73\x7b\xe6\xfe\xfd\x42\xdc\x78\x1b\x1e\xe2\x9a\x9b\x9b\x93\x3f\xfe\xf1\x8f\xd7\x1a\xa5\x37\x1a\x6e\x16\xd6\x5a\x93\x80\xd5\xe2\x6e\x3b\xac\xed\xdb\xb7\x8b\x43\x87\x0e\x41\x51\x94\x48\x44\x17\x9d\x9f\xb8\xdc\xfc\x5b\x3b\xe6\xa2\xbf\x46\xa0\x88\xb5\xe6\x59\xdd\x78\x52\x56\x79\xec\xc3\xbe\xec\xff\xf1\x51\xcf\xf2\x5f\x31\x21\x5b\x2a\x95\xf4\xef\x7c\xe7\x3b\xf5\xda\x66\x5d\x71\x0a\x5c\x1f\x90\x9a\x1f\xfb\x9e\x81\xaa\xb7\xa2\x73\xcf\x87\x0f\x1f\x26\x55\x55\xc3\x42\xa2\xe3\x89\x8b\xa9\xff\xad\xb5\xa0\xed\x73\x14\x2e\xaf\x23\x4d\x95\xd4\xbc\xa0\x3d\xc4\xc5\x8c\x5c\x58\x66\x9f\xdb\x3d\xff\x8d\xf9\x78\xe5\x2d\x10\x5d\x66\xe6\x69\x00\xf9\xd1\xd1\x51\x2f\xbb\xf6\xcf\x0f\x7c\x0b\x99\x6e\x25\x1d\x5c\xbd\xe9\xde\xe7\x9b\x81\x25\x7c\x57\xf2\xa5\xf9\xdb\xcb\xdf\x6e\xab\xc1\xbc\xa5\xb0\x1a\x1a\x1a\xe8\x89\x27\x9e\x40\x28\x14\x8a\x84\xa4\x68\x7f\xea\x7c\xcb\xff\xbe\x6d\x21\xfa\x6b\x04\x6b\x39\xca\xed\x21\xfb\x56\x65\xd1\xd8\x9b\x09\x3f\x51\x56\xe5\xc4\x74\x83\x7e\x45\x51\x15\xbd\xb3\xb3\x93\x2f\x5d\xba\x84\x1b\xc5\xcb\xa1\x38\xff\x0f\x01\xcf\xde\x38\x1c\x3e\x7c\x58\x68\x9a\xa6\x82\x91\xd8\x35\x13\x7f\x72\x73\x3a\x72\xb8\x96\x37\x01\xc4\x54\xdd\x02\xc8\x80\xeb\x51\xc7\x6c\x39\xda\xc1\x8a\x2b\x85\x64\xe1\xc5\x9d\x0b\x7f\x34\x97\xa8\xbc\xcd\x16\xe7\x9a\x06\x50\xb8\x7a\xf5\xaa\x7c\xf9\xe5\x97\x6f\x64\xf4\xd6\xe0\x5a\xe7\xf9\x46\x61\x05\x5d\xbd\xa3\xdc\xff\xce\xd5\xca\xdf\x56\x58\x77\xdc\x71\x07\x22\x91\x88\x4a\x44\x89\x3d\x53\xf1\xcf\x6e\x49\x47\x9e\xb5\xda\xdd\xf6\xff\xaf\x3d\x46\x08\xc4\x80\x90\x14\xb9\xff\x5a\xe3\x3f\x4b\x15\xd4\x01\x00\xb1\x4d\x9b\x36\x79\x71\xd9\x30\x5e\xce\x0c\xc5\x1f\xfc\xf1\x35\x9d\xd0\xd3\xd3\x23\xfa\xfa\xfa\x04\x80\x48\xac\x22\xfa\xee\xbb\x96\xfc\x27\x96\xbd\xcb\x1a\x17\x35\x7b\x2b\x00\xdb\x0b\xa0\xca\x0c\xbd\xbe\x4e\x52\xc0\x78\x63\x5b\xe6\x87\xe3\x4d\xe5\x37\x6c\x85\x7e\x96\x99\x0b\x57\xaf\x5e\x95\xaf\xbc\xf2\xca\x6a\x8a\x6c\xbd\xe0\x94\x11\x9e\xbc\xde\xfb\x9b\x85\xe5\x87\xb9\x5a\x58\x4f\xdb\xde\x36\x58\xfd\xfd\xfd\x00\xa0\x09\x89\xd4\x1d\x53\x89\x7f\x48\x4c\xaa\xc3\x87\xc8\xd9\x7f\xe0\x4e\xe2\xab\x7d\x12\x36\xa8\x73\xd7\x4c\xfc\x19\x58\xee\x46\xe2\xe1\x87\x1f\x5e\x0d\xbf\x55\xf1\x0a\x42\xce\x4f\xb1\xfe\x1f\x1e\x78\xe0\x01\x00\x50\xc1\x48\xee\x1b\x6f\xf8\x52\x43\x59\x19\xb0\x96\x75\x2c\xca\x62\x62\xb0\xbd\xd0\xc3\x2e\xb5\x55\x07\x4c\x35\x9d\xf1\x51\xcf\xf2\xcf\xcf\x75\x14\x5e\x00\xe1\x22\x11\xcd\x12\x51\x6e\x74\x74\x54\xbe\xfa\xea\xab\xf5\xf0\x03\xea\x73\x1d\x2f\xfe\xf0\xe5\xbd\x55\xb0\xea\x35\xa8\x1f\xae\x5f\x6f\x5d\x0d\x87\xdb\x02\x2b\x1a\x8d\x0a\x22\xd2\x92\x25\xb5\xbb\xb1\xa8\xee\xac\xe9\x23\xd8\x3e\x29\x8e\x37\x81\xd3\x27\xd6\xa6\x08\xf4\x64\xc2\x07\x14\xa6\x26\x00\xda\xe6\xcd\x9b\xa1\x28\xca\x0d\xe1\x15\xe4\x32\xed\xaf\x68\xcd\x68\x1f\x18\x18\x10\xcd\xcd\xcd\x02\x40\x2c\x55\x50\xb7\xdf\x31\x95\xf8\x4a\x75\xae\x08\x77\x74\x78\x95\x99\x5a\xe5\xa2\xea\xdf\x74\xad\xb9\x74\xf6\xfd\xcd\xd9\x1f\xc0\x32\xa2\x4e\x03\xc8\xcd\xcf\xcf\x3b\x62\x31\x70\x62\x81\xda\x4e\x0e\x52\x40\x83\xca\x02\xb7\x0e\x56\x50\x83\xae\x25\x66\x83\x66\x77\xde\x70\xcb\x61\xed\xdd\xbb\x57\x10\x91\x60\x66\x2d\x56\x11\x9d\x0a\x23\x42\xb6\x58\xf1\xf4\x96\xfd\xdf\x73\x22\x90\x1d\x93\xd0\x95\x6e\xc1\x94\x34\x59\xaa\xd1\x68\x54\x98\xa6\xe9\x77\x07\x5a\x17\x5e\x7e\x97\x69\x7f\x85\x6b\xee\x15\x45\xc1\x9d\x77\xde\x09\x58\x47\x27\x25\xf7\x4d\x34\xfc\x8a\x66\x52\xab\x93\xee\xd8\x52\xc1\x8e\x23\x60\x95\x07\x7b\xb6\x6f\x00\x60\xe4\x35\x33\xf3\xfa\xf6\xcc\x77\x0d\x85\xcf\xc3\x32\xa2\xe6\xb2\xd9\xac\xf1\xa3\x1f\xfd\xc8\xdb\xe9\xfe\xce\xf7\xe3\x56\x0f\xdf\x20\x4e\x73\xab\x60\xad\x55\xc6\xff\x8e\xa0\xb0\x91\xb4\x1b\x82\x15\x0e\x87\x01\x58\x0b\xeb\xba\xc2\x92\x09\x92\xd8\x39\x6b\xb6\x4a\x66\xb4\x42\x44\x5a\x57\xdb\x04\xaf\x3a\x8e\x9f\xaa\xaa\x0a\xc3\xa8\xa1\xb1\x75\xe1\x55\x4f\x4c\x04\x2a\x6c\x5b\xb7\x6e\x75\x0e\x7d\x8b\xb4\xe6\x43\x03\x03\x73\xb1\xcf\x91\xc3\x6f\x1d\xf4\xbc\xfa\x96\x2d\x1d\xc9\xa7\x50\x4a\x82\x3c\xb2\x6d\xe9\x87\x99\xa8\xf1\x11\x80\x09\x66\xce\x9a\xa6\xa9\xdb\x62\xd1\xfb\xfe\x7a\x93\x8e\x20\xa5\x73\x3d\xf9\x6f\x25\xac\x20\x5c\xb1\x0a\xac\xa0\xf6\xbd\x6d\xb0\xde\x7f\xff\x7d\x09\x00\xcc\x2c\xb3\x11\x23\x53\x08\x99\x69\x27\xad\xc6\x64\xb4\xd2\x9d\x05\x0c\xc6\x4c\x83\x3e\x62\x08\xd6\x01\xab\x3f\x0d\xc3\xb8\x21\xbc\x82\xc4\x44\xbd\x11\x2b\xf6\xef\xdf\x0f\x22\x52\xc1\x48\xde\x75\x3d\xf1\xcb\x21\x93\x52\x5e\xa4\xd8\xc6\xbe\xe6\x9e\x19\x4c\xb5\x2e\xc0\x97\x5b\x8b\x1f\x5d\x6a\x2b\xbc\x0c\xc2\x18\x33\xa7\x01\xe8\xef\xbf\xff\x3e\x3c\xe7\xcd\x07\xea\x7e\xbe\x6b\x3d\xee\x12\x54\xe6\x56\xc3\xf2\x07\xff\x40\x0d\x12\x5b\xd2\xf7\xec\xbd\xde\x16\x58\xf6\x8e\x28\x5d\x57\x39\x7b\xb1\xad\xf8\x9e\xdf\xfd\xc9\xe5\x00\xd5\xfc\xd6\x0b\x09\xc6\xb9\x8e\xfc\x3b\xb0\x8f\x8d\x02\x20\x55\x55\xbd\x21\xbc\xbc\x8d\xeb\x1f\x49\x35\xf7\x03\x03\x03\x68\x6c\x6c\x14\x00\x22\xc9\x92\xb2\x65\xc7\x5c\xec\x33\xc4\x64\xaf\x35\x7a\x94\x45\x00\x1e\x2d\x12\x44\xb6\xb5\xcb\x7e\x2e\x84\x64\xf6\xed\xad\x4b\x3f\x60\xc2\x28\x80\x79\x22\x2a\x5d\xbd\x7a\x55\x9e\x3e\x7d\x7a\x3d\x1c\xc3\x9f\x1e\xa4\x33\xad\x97\xfb\xdc\x0c\x2c\x6f\xf9\xd5\x74\x2a\x2f\x2c\xff\x20\xf6\xe3\x70\x4b\x61\x45\xa3\x51\x21\xa5\x94\xcc\xac\x33\x73\xe6\x58\xef\xf2\x73\x99\xa8\x31\xc9\x60\xdb\x44\x01\x4b\xaa\xd8\xdb\xf1\x98\x9d\x85\x3c\xc6\xa5\xb6\xc2\x07\xd7\x9a\x4b\x1f\x32\x73\x0e\x80\x31\x3d\x3d\xed\x70\xb0\x0d\xe3\xe5\x1f\xb9\x75\x47\xc3\xf6\xed\xdb\x61\xef\x05\x4c\xde\x31\x95\x78\x26\x64\x8a\x94\x35\x63\x84\xbd\x0b\xde\xd2\xaf\xd8\x26\x34\xef\xee\x7d\x00\x8e\xac\xc4\xd1\xbe\xec\xcf\x96\x22\xc6\x49\xdb\x90\x9a\x2b\x95\x4a\x86\x6d\x8e\x08\x7c\x6f\x1d\xdc\xea\x89\xf6\x7a\x30\x6e\x25\xac\x7a\xfa\xe1\x5a\xb0\xbc\x75\xac\xc7\x4d\x6f\x19\xac\x62\xb1\x28\x27\x26\x26\x00\xcb\x75\x3c\x9d\x0f\x9b\xe7\x7f\xb6\x6b\xe1\x1b\x8b\x51\x63\xba\xc6\x3c\x61\xf7\x9b\x33\xfb\x1f\x49\x95\x4e\xfe\x7c\xc7\xe2\xb7\x4d\xe2\x31\x58\xfe\x76\xc6\xa9\x53\xa7\xfc\xef\x5a\x37\x5e\xce\x77\x53\x9c\xe9\x83\xd7\x2c\x5a\x13\x7f\xe8\xd0\x21\x45\x08\x11\x89\x54\x44\xdf\xa3\x97\x9a\xff\xb9\x66\x88\x26\x87\x88\xd8\xb3\x29\x96\x80\xaa\xfb\xb3\x2b\x16\x2d\x15\x72\x3e\x5e\x99\x78\x7d\x7b\xe6\x5b\xa6\x82\x73\x44\x34\x03\xa0\xf4\xfa\xeb\xaf\xf3\xe2\xe2\xa2\xff\xbd\xde\xe0\x4f\xf3\x5a\xdd\x85\xe7\xea\xaf\x43\x50\xb8\x15\xb0\x82\x70\x65\xd4\xe6\x17\x75\xee\xfd\x79\x6f\x2b\xac\x2b\x57\xae\xf0\xf0\xf0\x30\x2b\x8a\x62\x02\xe0\x42\x58\xe6\x2e\xb7\x16\xae\x02\xd0\xe2\xba\x92\x0c\x49\x0a\x03\x20\x43\x61\x63\x3e\x6e\x4c\xbe\xbf\x39\xfb\xd7\xef\x6d\xcd\x7e\x4f\x57\xe4\x69\x22\x9a\x00\xb0\x9c\x4e\xa7\x0d\xfb\xe4\xeb\x1b\xc2\x2b\x68\x16\xb9\x82\x4d\x3f\xf8\xe0\x83\x42\x08\x21\x00\x24\xfa\xe7\xa3\x07\x13\xba\xd2\x67\xd9\x4d\x00\xcb\x9a\xea\x91\xee\x9e\xa9\xae\x1d\x01\xc7\xf9\xf9\xc3\xbe\xec\x4f\x74\x95\x2f\xc3\x72\x18\x2c\x5d\xbd\x7a\x55\x8e\x8c\x8c\xf8\xe5\x76\xd0\xc8\xf0\x87\x20\x85\x72\xd5\x3a\xdc\x42\x58\xfe\x11\xbc\xda\x88\xf6\xe7\xf3\xdf\xdf\x76\x58\x1f\x7f\xfc\x31\xee\xbd\xf7\x5e\x9d\x88\xe6\x99\x59\xe6\xc3\xb2\xf4\x66\xff\xd2\xc4\xfb\x9b\xb3\xdd\x89\xb2\xd2\xa1\x4a\x8a\x94\x54\x99\xcb\x6b\xe6\x75\x53\x60\x12\x84\x09\x02\x4d\x02\xc8\x4a\x29\x75\xfb\x6c\xd8\x1b\xc6\xcb\x7f\x36\xc5\x8a\x8c\xaa\xaa\x8a\xcd\x9b\x37\x03\x96\x45\x38\xb9\x73\x36\xf6\x74\xed\x56\x7f\xa0\x6a\x8a\xa8\xae\x32\x56\x53\xac\xd8\xd9\x84\x3e\x72\xa5\xb5\xf8\x26\x6c\x7b\x97\xae\xeb\x86\xc7\xde\xe5\x0f\xab\x89\x39\x7f\x85\x83\xee\xbd\x75\xb8\x1d\xb0\xfc\xb3\xa8\x7a\xa2\xce\x9f\xf7\x6f\x1c\xd6\x89\x13\x27\x24\x11\xe1\x9e\x7b\xee\x29\xd8\xc7\x0b\x14\x40\x98\xd5\x55\x1e\x49\xab\x46\xcc\xce\x6f\xd8\x1b\x92\x33\xb0\x77\x65\x19\x86\xa1\xbf\xf2\xca\x2b\x41\xed\xb4\x21\xbc\x54\x5f\xe2\x0a\x45\x77\xf3\xe6\xcd\x22\x91\x48\x08\x66\xd6\x52\x05\xad\xbf\x2b\xab\xdd\x8d\x3a\xa1\x6a\x49\xe1\xea\x93\x65\x80\xc1\x47\x3d\xcb\x2f\x99\x84\x09\x66\xce\x10\x91\x7e\xee\xdc\x39\x2f\x22\xfe\xfb\xd5\xb8\x4f\xbd\x32\xf5\xca\xdd\x2e\x58\xfe\xfb\xf5\xc0\xaa\x57\xc7\xdb\x0a\xeb\xf8\xf1\xe3\x52\x4a\x89\x7d\xfb\xf6\x95\x34\x4d\xb3\x88\xcc\x92\x22\x8e\x04\x33\x6c\xe2\xd3\x01\xe8\x4b\x4b\x4b\xf2\xc8\x91\x23\x98\x9a\x9a\xba\x69\xbc\xbc\x22\xd2\x3f\x62\x01\x54\x95\x7b\x02\xc5\xfa\x17\xa2\x87\x54\x49\xc9\x95\x9f\xb7\xa8\x3e\x33\x50\xdd\x30\x6a\xc3\x58\x8c\x19\x13\x57\x5b\x8a\x6f\x33\x78\x96\x88\x0a\x86\x61\x18\x27\x4f\x9e\xf4\x23\xe5\x45\x6e\xbd\x1d\x5f\x8f\x78\xea\xb1\xf4\x5b\x05\x2b\x48\x1c\xad\x06\x2b\x88\x43\xd5\x13\x8b\xb7\x05\xd6\xc9\x93\x27\xe5\xc9\x93\x27\xf1\xd0\x43\x0f\x19\xfd\xfd\xfd\x46\x38\x1c\x2e\xf9\x9c\x36\xe5\xf2\xf2\x32\xce\x9c\x39\x83\x53\xa7\x4e\x79\x27\x1b\x37\x85\x57\xd0\x52\x51\x0d\xa0\xde\xde\x5e\x61\x9f\x4d\x9f\xec\x5f\x88\x3e\x62\x59\xeb\xc9\x25\x2a\x6b\xd3\xac\xad\x67\x39\x1f\x18\xb0\xa8\x0c\x80\x65\xc2\x38\xdb\x91\x3f\x52\x56\xe4\x04\x80\x0c\x33\xeb\x67\xce\x9c\x71\xb6\x5a\xd5\x43\xd6\xdf\x60\x41\xb8\xad\x35\x9b\x09\x2a\x7b\xab\x60\xad\xc6\x15\xfd\xb0\xfd\xf9\xeb\xd5\xf5\x6f\x04\xd6\x9b\x6f\xbe\x29\xdf\x7c\xf3\xcd\xf5\xe4\xbd\x25\x78\x79\xcf\xa6\x08\x04\x6c\x2b\xf7\x91\xa6\xa2\xda\xd7\x9a\x0b\x0d\x3b\x4a\xbb\x67\x19\xde\xb2\xd4\x7b\x4f\xe7\xa3\xea\xc8\x28\xab\x9c\xbb\xd4\x56\x78\x13\x16\x4b\x2e\xe8\xba\x6e\xd8\x56\xe6\x7a\xfa\xce\x6a\x3a\x49\x3d\xdd\xc3\x1f\xb7\x16\xa1\xdc\x0c\xac\xb5\xde\xe3\x0f\xf5\xb8\x4a\x3d\xfd\xe5\xa6\x60\x6d\xde\xbc\x59\xf4\xf6\xf6\xba\x05\xde\x7a\xeb\xad\x0d\xc3\x4a\x24\x12\x18\x1a\x1a\x42\x57\x57\x17\xe2\xf1\xb8\x5b\xa0\x52\xa9\x88\xab\x57\xaf\xe2\xe8\xd1\xa3\x41\x6d\x12\x08\x2b\x68\x16\xe9\x22\xfc\xf0\xc3\x0f\x3b\x99\x23\x7d\x8b\x91\x07\x14\x76\x0e\xe8\xf0\x19\xb9\x3c\xf7\xd5\x35\x48\x6b\x59\x7b\xac\xa9\x74\x3a\x1b\x35\x47\x08\x94\x06\xa0\xdb\xa7\xbf\xac\xa6\x78\x07\x21\x1d\x24\xbe\x83\x44\xbb\x37\x8f\x5f\xb7\xbc\x55\xb0\x56\x4b\x0f\xc2\xdf\xfb\xde\x7a\x9c\xf9\xa6\x60\x69\x9a\x86\x83\x07\x0f\x62\xfb\xf6\xed\x8e\x58\x73\x7e\x18\x1a\x1a\x92\x00\xa4\x69\x9a\xf2\xcc\x99\x33\xf8\xf8\xe3\x8f\x85\x73\x82\x90\x1f\x56\x3c\x1e\x17\x7b\xf7\xee\xc5\xee\xdd\xbb\x01\xfb\x1b\x50\x5e\x58\x00\x8c\xe6\xe6\x66\x63\xdf\xbe\x7d\xf2\xda\xb5\x6b\xf2\xf5\xd7\x5f\xaf\x0b\xcb\x29\xe3\x3f\xbe\xa9\x26\xf3\xa6\x4d\x9b\x1c\xe3\x6a\xa2\x6f\x31\x72\xaf\x95\xc4\x2e\x01\x79\x3f\x0a\x55\xfb\x39\xa9\x6a\xdc\x85\xf6\xc2\x5b\xa8\x6e\xeb\x97\x67\xcf\x9e\x0d\x7a\x9f\x3f\x6e\x35\xd6\xef\x27\x9c\xb5\xf2\xae\x06\xfb\x66\x60\xad\x96\x77\x35\x8e\xb4\x56\xdd\x37\x04\x6b\xcb\x96\x2d\xe2\xc0\x81\x03\x48\x24\x12\x2a\x00\x4d\x31\x11\x6b\xcb\x6b\x7d\xa9\x7c\xa8\xdb\x14\x6c\xa4\x63\x95\x89\x74\xbc\x32\x09\x45\x29\x0d\x0f\x0f\xeb\x5b\xb7\x6e\x35\xbe\xf7\xbd\xef\x05\xe2\xf0\xa9\x4f\x7d\x4a\x34\x37\x37\xab\x00\xb4\x48\x45\x34\xf5\x2f\x44\xee\xdf\x9c\x8e\x3c\x18\xad\x28\xad\xa5\x90\x4c\x5f\x6f\x2c\x7f\x78\xb9\xb5\xf8\x4e\x5e\x33\xe7\x37\x6f\xde\x5c\xfa\xfc\xe7\x3f\x5f\x17\x96\x73\xe3\xff\x66\xb7\x9b\xa1\xb9\xb9\x19\x89\x44\x42\x00\xd0\xa2\x86\x92\xea\x58\xd6\x86\xbd\xeb\xf0\xde\xe3\x1e\x6b\x56\x88\x3c\xfa\x57\x31\x24\x33\x13\x4d\xe5\x13\xce\xcc\x71\x61\x61\x41\xda\x3b\x91\xeb\x35\x9c\x3f\xee\x46\xc5\xc8\x5a\x0a\xf0\xaa\xb0\x76\xee\xdc\x29\x3a\x3a\x3a\x90\x4c\x26\xd1\xdc\xdc\xec\xc6\xa7\xd3\x69\x2c\x2f\x2f\x63\x69\x69\x09\x53\x53\x53\x98\x99\x99\x59\x4d\xcc\xd6\x8b\x5f\x4b\x44\xae\x1b\xd6\x8e\x1d\x3b\xc4\xa1\x43\x87\x04\x11\xa9\x42\x22\x39\x34\x13\x7f\x74\xdf\x78\xc3\x6f\x34\x96\xd4\xbd\x82\x11\x03\x20\x25\xa1\x90\x8e\x55\x3e\xf8\xa0\x2f\xfb\xfb\x97\xda\x8a\xef\x25\x12\x89\xdc\x57\xbe\xf2\x15\xfd\x85\x17\x5e\xf0\xae\xfd\xc2\xde\x71\xa4\x82\x91\x18\x98\x8b\x3e\xfc\xe0\xd5\xa6\x7f\x96\x2c\x29\xc3\x00\xa9\x56\xb7\x33\x76\xcc\x45\xe5\xbd\x63\xc9\x8b\xef\x6c\x59\xfa\x17\x67\x3a\xf3\xaf\x38\xb0\x3c\x7e\xfb\x2b\x70\x75\x4e\x99\x5e\x61\x11\x1e\x1c\x1c\xa4\x9e\x9e\x1e\x02\x90\xe8\xc8\x69\x77\x0f\x4f\x26\xbe\x24\x98\x14\xc0\xa1\x9f\xaa\x2f\x37\xc1\xd1\xc1\x6c\xaa\xb3\x19\xd9\xd5\x96\xd2\x47\xe7\x3b\x0a\x3f\x21\xa2\xeb\xcc\x9c\x3f\x7d\xfa\xb4\x9c\x9e\x9e\xae\x67\xbd\xf6\xc7\x39\xcf\xfe\x55\x05\x6f\x67\x04\xf9\xd1\x7b\xad\xf0\x41\xd6\xe5\x40\x58\x7b\xf6\xec\xa1\x87\x1e\x7a\x88\x1e\x7a\xe8\x21\xa5\xaf\xaf\x8f\x5a\x5a\x5a\x42\x89\x44\x22\x14\x0a\x85\x54\x45\x51\x54\x55\x55\xd5\x86\x86\x06\xb5\xa5\xa5\x45\x6c\xda\xb4\x89\x06\x07\x07\xb1\x73\xe7\x4e\xa8\xaa\x8a\xe9\xe9\x69\x2f\x91\xb0\x0f\x07\xff\xbb\xd7\x13\xb7\x2e\x58\x9f\xff\xfc\xe7\x89\x88\xc2\x21\x29\x5a\x1e\xbf\x98\xfa\x9f\xef\x1d\x4b\xfe\x6e\xd4\x10\x5b\x6c\xef\x62\x22\x86\x20\x46\x38\x56\x51\xfb\xb7\x2d\x44\x3f\x17\x92\x54\xb8\xde\x54\x3e\xa7\x84\xd4\x4a\x7f\x7f\xbf\x79\xe2\xc4\x09\x09\x80\x0f\x1f\x3e\x2c\xda\xdb\xdb\x55\x02\x25\xef\x98\x8a\x3f\xfd\xf8\xc5\xd4\x37\x23\x15\x65\x33\x08\xc2\x51\x87\x6c\xb5\x9a\x42\x52\xb4\x6e\x49\x47\x3e\x55\x51\xe5\xe4\x74\xb2\x72\x45\x0d\xa9\x7a\x7b\x7b\x3b\x5f\xbe\x7c\x59\x06\xd5\xc7\x7b\x4e\xbe\x37\x88\x5d\xbb\x76\xa1\xa5\xa5\x25\x04\xa0\x71\xc7\x7c\xec\x53\x5b\xd2\x91\x43\xd5\xc3\x78\xe1\x21\x2e\xeb\xc1\xeb\x0c\x6d\xc5\x31\x3e\xee\xc9\x3d\x37\x97\xd0\xdf\x05\xd1\x1c\x11\x95\x7f\xfa\xd3\x9f\x9a\xf5\xde\x07\xaf\x4f\x62\x35\xce\xbb\x84\xe3\x25\x0e\x0f\x35\x07\x12\xa5\x40\x2d\x11\xf9\x97\x83\x5c\x58\x83\x83\x83\x74\xf8\xf0\x61\xea\xef\xef\x17\xd1\x68\x34\x44\x44\x11\xc5\x40\x73\x3c\x6b\x6e\x4b\x01\xc5\x9b\xce\x00\x00\x20\x00\x49\x44\x41\x54\xce\x99\xf7\x34\xcc\x1b\x0f\x26\xe7\xcd\x03\x89\x8c\x79\x47\x34\x27\x7b\x15\x13\x11\xa9\x0a\x53\x2a\x40\x38\x1c\xa6\xee\xee\x6e\x39\x3c\x3c\x0c\x00\xf0\x0c\x1e\xff\xfb\x82\xea\xca\x75\x9e\xe1\x7b\x0e\x84\xf5\xd4\x53\x4f\x89\xc6\xc6\x46\x8d\x40\x8d\x0f\x8c\x36\xfe\x97\xc3\x53\x89\xff\x89\x98\x94\x1a\x3f\x2f\xcf\xc4\x4b\x80\x42\x9d\xcb\xda\x83\x79\xcd\xbc\x32\x93\xd0\x47\x54\x55\xad\xa4\x52\x29\xd6\x34\x8d\x86\x87\x87\x05\x80\x78\x5b\x5e\xdb\x73\xf8\x5c\xcb\xff\xa3\x99\x22\x65\x35\x72\x7d\x58\x5d\xd9\xf0\x3d\xe3\xcd\xe5\x37\x73\x9a\x31\xdf\xd8\xd8\x58\xc9\xe5\x72\x58\x58\x58\x58\x51\x27\xff\x09\x87\x4e\x90\xed\xed\xed\x82\x99\x85\xf5\x21\xaa\xf0\x1e\xcb\xc6\xe5\xd9\x19\xc4\xd5\x25\xa2\x9a\xd6\xb1\xb7\x40\x55\x04\x97\x26\x1b\xcb\xa7\x40\x94\x03\xa0\x2f\x2c\x2c\xf8\x67\x71\x40\xb0\x28\x40\x40\xbe\x15\xf8\x05\x94\xa9\x07\xd7\xb9\xaf\x81\xd5\xd8\xd8\x88\x07\x1f\x7c\x10\x9b\x36\x6d\x12\x44\xa4\x81\x39\x16\x5f\x34\x07\x5a\xc6\x2b\xbf\xd0\x30\x6f\x3e\xa9\x56\x78\x0b\x18\x91\x15\xef\x25\xe8\xa6\x8a\x89\x5c\x4a\xfd\xf9\x42\x4f\xe8\x07\xb9\x56\xe5\x64\x28\x14\xca\xdd\x7b\xef\xbd\xfa\xae\x5d\xbb\xf0\xb3\x9f\xfd\x0c\x4b\x4b\x4b\x0e\x2e\x6b\xcd\x54\x57\xab\x43\x90\xc8\x71\xef\x7b\x7a\x7a\x04\x11\x45\x5a\xf2\xa1\x81\xe1\xc9\xc4\x7f\xeb\xe6\xb7\x59\x8d\xab\xc2\xb8\x3b\xbc\x18\x42\x22\x72\xff\xb5\xc6\xaf\x5f\x6a\x2b\xbe\x57\x0e\xc9\xd2\x96\x2d\x5b\x0c\x7b\x95\x46\x25\x50\x72\xdf\x44\xc3\xaf\x86\x4d\xea\x64\xb2\x37\xe5\xac\x02\x4b\x33\xa9\x7d\xdf\x44\xe2\x57\x5f\x18\xd2\x2f\x03\x28\x0d\x0c\x0c\xe8\x17\x2e\x5c\x58\x81\x77\x5d\x97\xe9\xa6\xa6\x26\x00\x50\x15\x93\x12\x2d\xf9\x50\xbf\x65\xe2\xaa\x2a\xf7\x8e\xfe\xe5\xf5\x83\x64\x58\xff\x88\x08\xd9\x48\x65\x3a\x1b\x36\x27\xec\x13\x9c\x8d\xe9\xe9\x69\xa0\x56\xdf\xa8\x47\x30\x41\x4a\xf7\x5a\xb3\xc2\x7a\x8a\x3b\x7c\x79\x5d\x58\x4f\x3f\xfd\xb4\x88\x46\xa3\x2a\x11\xc5\x22\x59\x73\x7b\xd7\xa5\xf2\x6f\x34\xcc\x99\x5f\x14\xcc\x09\xb0\x77\xf2\xe2\x70\x6b\x06\x88\x04\x4b\x44\xd4\x0a\xb6\x37\x4e\x1b\xdb\x1b\x67\x8c\xaf\xe4\x9b\x95\xbf\x9e\x1a\xd0\x7e\x2f\xdf\xac\x9c\x6e\x68\x68\x28\x7c\xf1\x8b\x5f\xd4\x5f\x7f\xfd\x75\xff\x07\xdf\xd7\x9a\x4c\x78\x89\x6a\x2d\x3d\x53\x1e\x3c\x78\xd0\x1a\x30\x8c\xd8\xf6\xb9\xe8\x53\x9a\x49\xad\x5e\x75\xb8\x2a\x4f\xaa\x4c\x91\x6c\x39\x17\xd7\xc5\xf6\x2d\x8b\x91\x83\xe7\xdb\xf2\xb3\x00\x74\xfb\x98\x76\x4d\x93\xa2\xb5\x37\x13\x3e\x48\xd5\x02\xab\xc3\x02\xa3\x67\x29\xf2\x70\xc8\xa0\x94\xae\xc8\x4c\x7b\x7b\xbb\x1e\x8f\xc7\x45\x3e\x9f\xaf\xa9\x63\xcd\x94\xd6\x09\x5b\xb6\x6c\x71\xe2\xd4\xb0\x41\x4d\x71\x5d\xe9\xac\x0a\xe2\xaa\x4d\xa2\xba\xb5\xc3\xc5\xc9\x76\x31\x62\xcc\x27\x2a\xa3\xa6\xe0\x0c\x11\x95\x00\xc8\xa9\xa9\x29\x7f\x43\xfa\xaf\xce\xcf\xcf\xe9\x82\xe2\xfc\x41\x60\x65\x27\xad\xe0\x5a\x4e\xda\x2f\xff\xf2\x2f\x8b\x58\x2c\xa6\x11\xd0\x94\x9a\xa8\x1c\xde\xfe\x41\xe1\x07\xc9\x59\xf3\xab\x42\x22\xe1\x70\x66\xa7\xc3\xc8\xf9\x9c\x1f\x00\xeb\x78\x4f\x86\x73\xcc\x27\x01\x91\xc4\xa2\xf1\xb9\xfe\xa3\xc5\x1f\xb4\x8f\xe8\xbf\x04\xc9\x4d\x8a\xa2\x68\x8f\x3c\xf2\x08\xfa\xfb\xfb\x57\x98\x0c\x02\x70\x59\x6f\x9a\xfb\xec\x9c\x2d\x66\x9f\x29\x96\x68\xcf\x69\xc3\x8e\x62\x62\xad\x9e\x10\xfc\xa1\x6a\xb0\xb7\xd2\xda\x97\xb5\xfd\x44\x14\xb3\xcf\xbd\x00\x11\xa9\xe1\x8a\x48\x85\x2b\xa2\x1d\x1b\x80\x15\xae\x88\xd6\x68\x45\xb4\x12\x91\xaa\x28\x8a\xf0\x9d\xd1\x2f\x00\x6b\x5f\x24\xe0\x1b\x35\xb6\x3f\xb7\x00\xa0\x35\x96\xd4\xee\x90\x49\x09\x66\x87\x63\xd6\x52\x72\x90\xcb\x34\x08\x98\x6e\xd0\x2f\x82\xac\x23\x96\xa4\x94\x8e\xd7\x84\xff\x87\x9b\x88\xf3\x8e\x94\x75\xe5\x6f\x6a\x6a\xc2\xaf\xfc\xca\xaf\x88\x78\x3c\xae\x81\xb9\xa9\x63\x44\xff\x72\xcf\xe9\xd2\xb7\xd4\x0a\xb6\x38\x04\x55\xfd\x4e\xa4\x6f\xd2\xb2\xe2\xf3\x34\x56\x5b\x30\x13\x14\x13\xed\x5d\x17\xf5\x7f\xd3\x73\xae\xfc\x9b\x24\xb9\x55\x08\x11\x79\xec\xb1\xc7\xfc\x38\x78\x43\x10\xbe\x41\xf9\x57\xd4\x91\x99\x65\x4b\x4b\x8b\xd3\x3f\x91\x90\x49\x49\x07\x17\xef\xa9\xd4\xe4\xf9\xef\xa7\x13\x45\x22\x66\x9f\x82\x2d\x6c\x22\x53\x99\xa0\x55\xf3\xad\x0f\x96\x14\x2c\x4d\xc1\xaa\x6d\xca\xf2\x07\x09\xd4\x71\x99\xb6\x8f\xe9\x16\xcc\xac\x35\x15\xd5\x6e\xc1\xd0\xe0\xce\x14\xc9\xe5\x5c\xb5\x53\xb4\xaa\x9b\x34\x00\x2c\xc4\x2b\x57\x98\xb9\x04\xc0\xc8\x64\x32\x4e\x83\xac\x36\x62\x81\x80\x11\xbb\x46\x7a\x90\x5e\x13\x38\xfa\x55\x55\x15\x8f\x3c\xf2\x08\xa2\xd1\xa8\xca\xcc\xc9\x96\xf1\xca\x67\x3b\x2e\xe9\xbf\x63\x4f\xe7\xad\x3a\x38\x15\xb0\xb9\xb0\x35\x92\xed\xa5\x2f\xb6\x0d\xc8\xce\x9a\xab\x6d\x50\x76\x57\xcd\x00\xad\x65\xac\xf2\x3f\x74\x5c\xd6\xbf\x4a\x40\x12\x80\xf6\xa5\x2f\x7d\xa9\x9e\xe8\xab\xcb\x8d\x5b\x5b\x5b\xfd\x83\xbe\x86\x38\x1d\xd7\x65\x7b\x1d\x51\x14\x34\x33\x57\x8b\xbf\x7d\x4f\x80\x33\x9f\xf1\xf3\xa1\x4c\xd4\x98\x77\xb8\x97\x0d\x4b\x96\x42\x66\x61\x29\x62\x4c\x6f\x04\x56\x4e\x33\x67\x8b\x21\x59\x72\xbe\x27\xe0\x5b\x1c\x17\x40\xd5\x52\x5b\x53\x09\xcf\xe7\x59\xd4\x86\xb2\xba\xc9\x95\x12\x8e\xa2\xef\xb3\x7f\xb9\x2e\xd3\x36\xfb\x32\x04\x97\x96\xa2\xc6\x24\xac\xa3\xc3\x65\x3a\x9d\x5e\xd1\x50\x9e\xb0\x9a\x31\xb3\x5e\xde\x7a\xb6\xb4\xba\x46\xbf\x1d\x3b\x76\x88\xb6\xb6\x36\xc1\xcc\xb1\x58\x56\xee\xe9\xbe\x50\xfe\x1d\x62\xb8\x1f\x90\x5f\xf1\x1d\x78\xf2\x88\x09\x57\x1f\xf1\xcc\xa0\x81\x9a\x42\x76\x53\xa8\xed\x57\xf5\xaf\x17\x1a\x95\x8b\x4b\xed\xca\xcf\x13\x89\x44\xf6\xde\x7b\xef\x75\xbe\x1d\xe4\xe5\x44\x35\xb8\xed\xdf\xbf\x1f\xbb\x76\xed\x12\x91\x48\x44\x78\x3f\xf6\xa0\xeb\xba\x4c\xa7\xd3\x38\x7a\xf4\xa8\xdb\x79\x86\x61\xc8\x52\xa9\x24\x2c\x29\xc3\xfa\xb5\xe6\xd2\xe9\xc1\xd9\xd8\x61\x67\x75\xae\x76\x01\xdb\xc6\x8d\xaa\x5f\x73\x63\x82\x9c\x6d\xd0\xaf\x38\xbe\xf6\xf6\xcf\x30\x09\xb9\x2b\xad\xc5\xa3\xad\xf9\xd0\xc0\xba\x60\x81\x71\xb5\xa5\x78\xdc\x24\x2e\x80\x61\x00\x40\x57\x57\x97\xb0\xf1\x74\xeb\x18\xa8\xdf\xf4\xf5\xf5\x01\x16\xfb\xd4\x1a\x4a\x96\xfe\x55\xdd\x09\x4c\x16\x1d\x3b\x1d\x63\x0f\x6a\xaf\xcb\x74\x59\x95\xd9\x62\x48\xa6\xed\x0f\x1e\xc8\x5c\x2e\x07\x04\x8c\x56\xac\x24\x88\xf5\xcc\x28\xbd\xdc\x29\x88\xa0\x02\x67\x67\xf7\xdd\x77\x1f\x60\xf9\xb4\xb5\x6f\x3a\x5f\xfe\xa7\xc2\x40\xbb\xa3\xb8\x56\x9d\x41\x3c\xfa\x96\x95\x52\x95\x0c\x76\x3c\x79\xa2\x5d\xc7\x5d\xb2\xf8\xba\xb5\xf5\x9e\x13\xdd\x17\xca\xff\x8b\x5a\x41\x37\x00\xcd\xde\xe6\xe7\xc5\xd5\xe5\xb0\xc3\xc3\xc3\xe2\xab\x5f\xfd\xaa\xd8\xb7\x6f\x9f\x1a\x8d\x46\x23\x2a\x44\x22\x6a\x28\xad\x51\x43\x69\xd7\xa4\x68\x0a\x6b\xe1\x44\x67\x67\xa7\xf6\xf4\xd3\x4f\x8b\xa7\x9f\x7e\xda\xad\x97\x3d\x60\x0d\x10\x15\xae\xb6\x94\x3e\x5c\x8c\x1a\x13\xde\x6f\x38\x51\x4d\x7f\xb1\xc3\x82\x40\x04\xcc\x27\x2a\x23\xd3\x0d\xd6\xcc\x8f\x88\xa4\x4d\xd0\x3a\x08\xd9\x93\xdd\xb9\x97\x33\x51\x63\x72\x3d\xb0\x72\x61\x73\xfe\xf8\xa6\xdc\x8b\xb0\xdd\xaa\x4b\xa5\x92\xf4\x70\x30\xb7\x8e\xfe\xce\xa8\x61\x71\xcc\xac\x25\xcb\x6a\xbb\x37\x83\xd7\x08\xe5\x3c\xb3\x67\x4b\x1a\x01\x28\x68\x32\x5d\x11\x5c\x80\xfd\x25\x0d\x7b\x04\xfb\x67\x75\x41\xa1\x2e\x07\x0a\xb8\x7a\x61\xad\x4a\x74\x7b\xf7\xee\x15\xa1\x50\x48\x10\x51\x2c\x39\x67\xdc\x1f\x5f\x34\x1f\xf5\xea\x15\x04\xfb\x3b\x44\xfe\xb3\x1a\x3c\xe7\xf4\xbb\x1c\xbc\xc6\x2e\xe3\xcd\xef\xb0\x3f\x42\x38\x2f\x87\x53\xd7\x2b\x87\xed\x13\x0a\xd5\x87\x1e\x7a\xc8\x3f\x63\x96\x8f\x3f\xfe\x38\xee\xbb\xef\x3e\xa1\x69\x5a\x44\x33\x45\xeb\xde\xc9\x86\xcf\x7f\xe1\x64\xfb\x37\xbe\xf2\x61\xe7\x8b\x5f\xf9\xb0\xf3\xe5\x5f\x3a\xd6\xf1\x83\xc7\x2e\x35\xff\x56\x5b\x5e\x1b\x00\x23\xd1\xd5\xd5\xa5\x7e\xf9\xcb\x5f\x16\x00\x60\x4f\x98\x0c\x00\xb9\x52\x48\x4e\xbc\xb9\x2d\xf3\xfd\x8a\x90\xba\x43\x10\xb5\x32\x91\xec\x6f\x20\x59\x27\x46\xbe\xd9\x9f\xf9\x0b\x29\xac\x63\x38\x99\xd9\xe5\x60\x00\xb2\x05\x4d\x5e\x7e\x79\x20\xfd\x47\xf9\x90\x99\x5d\x0d\x56\x51\x35\x73\xaf\xee\x58\xfc\xd3\xe5\xb0\x79\xd1\x76\x52\xd4\x3d\x9f\xb0\x71\xeb\x08\x04\x9c\x4d\xe1\x91\xcd\x82\x40\x6a\xb8\x42\x49\x67\xab\x7f\x75\xde\xc8\x70\xb7\x9a\x03\x9e\x7b\xeb\xc0\xde\xbc\x66\xa6\x41\xd6\x97\x35\xb0\x32\xac\x36\x0d\x5f\x8d\xf8\x56\x83\xe1\x17\x3d\x35\x70\x76\xef\xde\x0d\xdb\xd6\xd5\xd4\x32\x5e\xf9\x45\x92\xd0\x5c\xc5\xca\x6b\x6e\xb1\x47\x4f\xed\x64\x86\xbc\x8c\xcc\xe6\x60\xec\x8c\x2c\xfb\x07\x0f\x2c\x06\x31\x8b\x96\xf1\xca\x97\x48\x72\x8a\x88\xb4\x6d\xdb\xb6\x21\x12\x89\xb8\x38\x1d\x38\x70\x40\xf4\xf7\xf7\x0b\x02\xc5\x52\x79\x75\xe7\x17\x4f\xb4\x7f\xeb\x91\xcb\x4d\xdf\xee\x5e\xd2\x9e\x8d\x56\xc4\x70\xac\xa2\x0c\x35\x17\xd5\x47\xf6\x4c\xc5\xff\xf9\x2f\x1c\x6f\x7f\x61\xdf\x44\xc3\x7f\x01\x46\x53\x2c\x16\xd3\x7e\xed\xd7\x7e\x4d\xcc\xcd\xcd\x39\xbb\x7c\x0a\x00\xa6\xaf\xa6\x4a\x6f\xbc\x3c\xb8\xf8\x9d\x7c\xc8\xcc\x3a\x9a\xb1\x57\x4b\x66\x00\x39\xcd\xcc\xbc\x34\x98\xfe\xa3\xf1\xa6\xf2\xdb\xb0\x77\x73\x2d\x2f\x2f\xcb\x97\x5e\x7a\x09\x86\xb5\xa3\x36\x07\x60\x72\xb2\x51\x7f\xe3\xc7\xc3\x73\xff\xf6\x5a\x73\xe9\xbc\x41\x6c\x78\x7a\x16\x26\xb1\xbc\xde\xa8\x8f\xfc\xd5\x1d\xf3\xff\xf7\x68\xaa\xf4\x32\x08\x13\xb0\x3e\xcf\x63\x9c\x39\x73\xc6\xdf\xee\xae\x0e\xe6\x74\x90\x00\x20\x3b\x3b\x3b\x11\x0a\x85\xac\x29\xb1\xf5\xed\xec\x44\xed\x61\x4c\x41\xa1\xaa\x87\x58\x1c\xcc\xcc\x00\xd0\x99\xd9\x90\x52\xca\x86\x86\x06\xb1\xbc\xbc\x5c\xf3\x1e\xac\x14\xcf\xde\xb0\x16\x97\xf3\xdb\xc1\xfc\xf7\x0e\x0c\xd9\xde\xde\x2e\xe2\xf1\xb8\x00\xa0\x85\x4a\xdc\x1d\x5f\x34\x0f\xd4\xe0\xed\xb0\x24\xc7\x97\x0d\x0e\xe7\xb2\x6b\xe4\xde\x7b\xab\xeb\x8d\xf3\xcc\x36\xb9\x9a\x1e\x2e\xc8\xa1\xe8\x92\x1c\x28\x34\x2b\xb3\x9a\xa6\x95\x4a\xa5\x92\x01\x00\xdd\xdd\xdd\x62\xcf\x9e\x3d\x02\x40\xa4\xa1\xac\xf4\x3f\x7d\xa6\xf5\x1b\x4d\xc5\xd0\xdd\xfe\x76\x75\x4c\xda\x61\x93\xba\x0f\x8e\x34\xfe\x3e\xc0\xe2\xa3\x9e\xdc\x0f\x55\x55\xcd\xec\xdb\xb7\xcf\xb8\x72\xe5\x0a\x06\x07\x07\x75\x22\x4a\x83\x70\xf9\x62\x5b\xe1\xb9\x99\x86\xf2\xf8\xf0\x64\xe2\xb1\xcd\x8b\x91\x81\x98\xae\x24\x01\x60\x39\x6c\x66\x46\x53\xc5\xf3\xa7\xbb\xf2\xaf\x2e\x47\xcc\x93\x00\x46\x60\x39\x1f\xe8\x1f\x7f\xfc\x31\x46\x47\x47\xe5\xc9\x93\x27\xc5\xbe\x7d\xfb\x4a\x44\x34\x0f\x82\x98\x4f\x54\x8c\xff\xb8\x67\xee\x6a\x4b\x3e\xb4\xab\x2b\xab\xf5\x47\x2b\x4a\xa2\x18\x92\x85\xe9\x64\x79\x64\x3e\x5e\x39\x27\x05\x46\x60\x9d\xd3\x3f\x0f\xa0\x74\xee\xdc\x39\xd8\x13\xb9\x15\x76\xcb\x15\x2e\xd3\xb6\x1c\xb5\x66\x5e\x92\xb4\x90\x29\x62\x40\xad\x12\x5c\x2f\x38\xc9\x45\x55\x66\x61\xb9\xe1\xc2\x30\x0c\x78\x88\xcb\x7f\xf5\x2a\xe9\x22\x20\x4f\x50\xa8\x57\x26\xb0\xdc\xec\xec\xac\x84\x75\x88\x6e\x24\xb6\x64\xee\x11\x26\x9a\x5c\x6b\x9e\xa3\xb1\x7b\x94\x59\xf2\x10\x0f\xdb\x0e\x95\xd5\xe0\x69\x04\x67\xe6\xe3\x5c\x5d\xd1\x69\x13\x1c\x93\x96\x58\x34\xef\x29\x34\x2b\x1f\x01\xc8\x1d\x3a\x74\x48\xbe\xf1\xc6\x1b\x78\xf0\xc1\x07\x01\x6b\x60\x37\x1d\xb8\xda\xf8\x1b\x4d\x45\xb5\x96\xb8\x1c\x47\xce\x9a\x0a\x93\x76\xef\x58\xf2\x9f\x5d\x4b\x95\x4f\x2e\xc4\x2b\x27\xdb\xdb\xdb\x0b\xa7\x4e\x9d\x92\x89\x44\x42\xf6\xf4\xf4\x14\x00\x4c\x83\x20\x97\xa2\x66\xf6\xcd\xfe\xa5\x8b\xef\xc8\xa5\x76\xcd\x14\x09\x00\xd0\x55\x99\x35\x09\xf3\x20\x4c\xc2\x3a\xa2\x61\x1e\x40\x69\x7c\x7c\x5c\xda\xc7\x71\xe2\xf8\xf1\xe3\xe8\xe8\xe8\xa8\xc2\x02\x4a\x52\x20\x3d\xd7\x50\x19\x9d\x6b\xa8\x24\x6c\x7c\x1d\x2e\x97\x46\xf5\x1b\x50\x85\x4b\x97\x2e\xc9\xb7\xdf\x7e\xdb\x2f\x3d\xdc\x7e\x0c\x74\x99\x76\xbe\x8b\x48\x0c\x55\x91\xd0\xbc\x22\xc2\xdb\x08\xd5\x46\xad\x3e\x33\x00\x5d\xe5\x9c\x47\xbe\xc3\x07\xdf\xcf\x75\xbc\x69\x7e\xee\xe6\x47\x18\xab\xdc\x7b\x83\x0b\xdf\x3e\x7a\x48\x00\x88\x44\xb3\x72\x17\xe0\xd0\x48\xb5\x46\xec\x2c\x81\x38\x2a\x87\x47\x6c\xd6\xcc\x1a\x6b\x38\x35\xb9\x4a\xaf\xf7\x23\xb7\xde\x03\x46\x22\xcb\xe6\x4e\x30\x22\x0c\x16\x9d\x9d\x9d\x00\x20\x1b\x1b\x1b\x55\x66\x8e\x34\x96\xd4\xbe\xed\xf3\xd1\x67\x6b\xbe\x90\x4b\xfe\x77\x54\x43\xd8\x10\x9d\xbb\xa7\xe2\xbf\x70\x64\x5b\x66\x94\xc1\xa5\x81\x81\x01\xf9\xe2\x8b\x2f\xe2\xc9\x27\x9f\x34\x7a\x7b\x7b\x73\xb0\x36\x6e\x64\x01\x4c\x1a\x02\x09\x43\x98\x9a\x55\x57\x2a\x31\x73\x8e\x40\x59\xe7\xbb\x98\x33\x33\x33\xf2\x85\x17\x5e\x70\xdb\xd9\x34\x4d\xf9\xe2\x8b\x2f\x8a\x07\x1f\x7c\x50\x0e\x0e\x0e\x96\xec\x1d\x48\x39\x58\xc4\xa6\x39\xf9\x88\x48\xb7\x4f\xbb\x2e\x49\x29\x8d\x2b\x57\xae\xc8\xd7\x5e\x7b\xcd\xdf\x4f\x35\xfd\xbb\x62\xa9\xa8\xab\xab\x4b\xd8\x07\x5e\x08\x62\x21\x08\x24\xd8\x6e\x7d\xe7\x0b\x69\x6b\xb9\x4c\x4b\x62\x67\x13\x41\x3d\xc5\x3c\x48\x87\x0a\x7a\x0e\xb2\x99\xf9\xd3\xea\x4d\x0c\x04\x00\xf4\xf4\xf4\xc0\xfe\xcc\x5e\x24\x54\x92\xdd\xae\xc9\xc5\x26\x0e\xc7\x9e\x5a\x6b\x7e\x80\xfd\x75\x33\x67\x71\x9f\x3d\xd4\xe7\x99\x4c\x39\x0c\xcd\x53\xde\x55\xdf\x08\xd0\x4a\xdc\x09\x70\x84\x88\x44\x63\x63\x23\x9e\x7d\xf6\x59\xc7\xb0\x19\xd9\xb4\x14\xbe\x57\x95\x94\x74\xbf\x6a\x6b\x41\xb6\xcc\x40\x1e\xa2\x73\xd7\x7f\x89\xd0\x9b\x09\x1f\x14\x8c\x6f\x48\x41\x99\x8e\x8e\x0e\xc3\x34\x4d\xf9\xc2\x0b\x2f\xe0\xc0\x81\x03\xd8\xbd\x7b\xb7\xf3\x7d\xa6\x2c\xac\x43\x4b\x54\x7b\xc7\xb6\xf3\x85\x39\xc3\x34\x4d\xe3\xf4\xe9\xd3\xf0\x7c\x72\xd9\x6d\x3b\xd3\x34\xe5\x91\x23\x47\x70\xe4\xc8\x11\xf9\xe9\x4f\x7f\x5a\x76\x77\x77\x3b\x9b\x43\x1c\x7a\x70\x8e\x22\x90\x99\x4c\x46\x7e\xf0\xc1\x07\x18\x1d\x1d\x5d\x73\xe0\xaf\xb0\xc0\x3a\x22\xd2\x32\x3b\x40\x10\xdb\x5f\x6b\xf0\x8c\xe2\xb5\x5c\xa6\x25\x59\x36\x16\x8f\x1d\x25\x88\x18\xea\xe9\x4e\x7e\x9b\x51\x90\xb1\xb2\x9e\x91\xd5\xcf\xfd\x2c\x8c\xac\x63\x8c\x54\x61\x22\x51\x55\xe2\x9d\x59\x9f\x73\x9c\x54\x6d\x3b\xb8\x42\xca\xa6\x1c\x57\xa4\x7a\x8a\xfa\xf6\x17\xdb\xf7\xec\x0e\x38\x61\x72\x0c\x0c\x8d\xc1\x02\x70\xd7\x77\x05\x80\x48\x5c\x57\x7a\xad\x59\x99\xfb\x92\x1a\xa0\x55\x33\x41\xf5\x1d\xd1\x8a\x68\x57\x25\x25\xcb\x24\x55\x4d\xd3\x84\xa2\x28\x30\x4d\x53\xbe\xf3\xce\x3b\xb8\x72\xe5\x0a\xfa\xfb\xfb\x8d\xad\x5b\xb7\x1a\xb6\x1f\x9f\xdb\x9e\xc5\x62\x11\x23\x23\x23\x38\x7d\xfa\x34\x96\x96\x96\xea\x0d\x50\xb7\xfd\x7e\xf6\xb3\x9f\x81\x99\x8d\xa1\xa1\xa1\x1a\xf7\xeb\x99\x99\x19\xd8\x1f\x9d\xf7\x96\x5f\x15\x56\xd0\x17\x6f\xbd\x05\x6c\xab\xb1\xdd\x08\xde\x4d\xb5\xde\x4f\x9f\xd9\x76\x20\x4f\xb7\x48\xab\xad\xea\x2a\x6d\xf5\x88\x0b\x75\xe2\xd7\x3b\x21\xa8\x67\x21\x17\x00\x04\x0b\x48\x2f\xa7\x72\xef\x9d\x49\x21\x5c\x1e\xe2\x95\x56\x1e\xf1\xe7\x57\xe6\xdd\x42\xd5\x5d\x54\x5e\xae\x46\x2e\xce\x8e\x01\xd5\x51\x3f\x54\x69\x67\xae\x3d\x24\xb9\xaa\xf0\x55\x49\xae\xea\x2d\x6c\x0a\x18\x92\xe0\x9c\x9d\x8f\xbe\xbe\x3e\x5c\xbd\x7a\x55\x00\x56\xe7\xcf\xcc\xcc\xc8\x77\xdf\x7d\x57\x00\x30\xfa\xfa\xfa\x84\x94\x12\xf6\xf1\x01\x41\x6d\xea\x6d\x9b\x9a\x7e\x77\x18\xc3\xd9\xb3\x67\x71\xf6\xec\xd9\x7a\x7d\x11\x14\x56\xc0\x0a\xf4\xa6\xf0\x9c\x3c\x2c\x99\x58\x5a\xa3\x9e\xdc\x1e\x59\xa1\x24\xfb\x66\x98\x82\xc9\xcf\x19\x57\x13\x89\xeb\xb1\xf0\x6f\x34\x6e\x85\xde\x46\x44\x30\x43\x94\x73\xd7\xeb\x9d\x2f\xbc\xb9\x8a\xba\xc7\x81\xb2\x46\xaf\x74\x06\x10\x50\x3b\xa0\xe0\x31\x8e\x01\x8e\x18\xa9\xc2\x24\x18\x9a\xc8\x81\x20\x7d\xc4\x05\x66\x96\x33\x0d\xfa\x35\xb6\xec\x44\xa2\xca\x4d\x1d\xdd\xae\xfa\x7e\xa7\x65\x99\x19\xf3\x71\x7d\xcc\x10\x55\xe9\x60\x7f\xe5\x24\xb0\x3d\xc6\xc6\xc6\xbc\x6d\xb3\x1e\x23\x77\x5d\x58\xed\xed\xed\xce\x64\x69\xc3\xb0\xbc\x4b\x45\x02\x00\xba\xba\xba\x60\xbb\x70\x80\x89\xa4\x24\x48\xe2\xda\x75\x46\xc0\xf3\xc1\x4c\x38\x42\xb3\x4a\x64\x8a\x24\x15\x96\xa1\xd6\xfb\xd2\xf5\x50\x7e\x3d\xe5\x7f\x2d\xc5\x7f\x2d\xf1\x29\x99\xd9\x28\xc7\xc5\x24\xdc\xfe\x77\x78\x46\x2d\xb7\xaa\xea\xda\xb5\x03\xca\xed\x77\x47\xf9\x67\x8b\xa3\xb1\xad\x2f\x79\xf9\x90\xf3\x8e\x72\x8c\xa6\x19\x30\x60\x4d\x78\x5c\x5c\x88\x48\x9f\x4e\x96\x47\x32\x51\x63\x22\x55\x0c\xf5\x55\x5d\x83\x3c\xb0\x7c\xcc\x9f\x09\xd2\x3e\x82\xa9\x00\xb6\xbe\x2b\xae\x28\x8a\x30\x4d\x53\x02\x10\xa1\x50\x08\x7b\xf6\xec\x41\x67\x67\x27\xda\xda\xda\xdc\x76\xd1\x75\x1d\x53\x53\x53\x18\x1d\x1d\x15\x63\x63\x63\xee\x1a\x66\x40\x7b\x3b\x8a\xbc\xd8\xb3\x67\x0f\x76\xef\xde\x8d\x78\x3c\x0e\x45\x51\x9c\x7e\x14\xcc\x2c\x97\x96\x96\x70\xea\xd4\x29\x71\xe1\xc2\x85\x35\x61\x01\xb5\xfe\x60\x35\x66\x0a\x22\x82\x24\x48\x49\x30\xfc\xd3\x66\x78\x3a\xa0\x3a\xea\xab\x39\xc2\xd6\x14\xd9\x51\x68\xdd\x86\xf5\x83\x08\x48\x0b\x1a\x09\xeb\x11\xa1\x75\xb9\xe0\xf2\xf2\xb2\x48\x24\x12\x20\x22\x3d\xdf\xa4\x5c\x60\x82\x24\x69\x97\xa5\x5a\xa9\x0f\xf2\x78\x11\x38\x83\x8a\x2d\xeb\xb5\xbb\xd1\xc5\x99\x25\x7a\xb8\x1d\x3b\x13\x1e\x87\xad\xd9\x44\x97\x6f\x56\xce\xc3\x5a\x92\x31\x72\xb9\x1c\xfe\xec\xcf\xfe\x4c\xfe\xfa\xaf\xff\xba\x04\x50\x30\x05\x66\xdf\xd9\xba\xf4\xa3\xc3\xe7\x5a\xfe\x1b\x95\x2d\x5d\xb8\x46\xa3\xf0\x70\x5a\x26\x60\xac\xb9\x7c\xfa\x72\x6b\xf1\x7d\xfb\x7b\x45\xc6\xfc\xfc\x3c\x6c\xe2\xc2\xbe\x7d\xfb\xb0\x7b\xf7\x6e\x44\xa3\x51\x87\x61\xa8\x60\xab\x93\x23\x91\x88\x4c\x26\x93\xc6\xe0\xe0\xa0\xcc\x66\xb3\xf2\xad\xb7\xde\x12\x13\x13\x13\x41\xed\x2d\x9d\x4f\xd8\x38\x7b\x31\x88\xa1\x85\x2b\x22\x12\x32\x49\xab\x28\xac\x97\x54\x59\x68\x6e\x6e\x36\x1e\x7e\xf8\x61\x7d\xef\xde\xbd\xf2\xf5\xd7\x5f\x17\xb6\xbb\xf8\x0a\x58\xce\xd5\xbf\xd8\x5d\x93\xc9\x14\x6c\xe8\x8a\x2c\x00\x8a\xc5\xb1\x5c\x0d\xd9\x1e\xfd\xae\xc2\xec\xd1\x5e\x88\x10\xd5\x45\x12\xb5\x1c\xac\x9e\x12\xe8\x0d\xf5\xb8\xd2\x6a\xc4\x17\x54\xae\x86\xdb\x2d\x2e\x2e\xa2\xb3\xb3\xd3\x20\xa2\x52\x29\x21\xc6\xca\x51\x9a\x8c\x14\xb8\xc7\x6b\x3c\xad\x9a\xc3\xa8\xa6\x93\x5d\x71\xe7\x8a\x4f\x9f\x49\xc1\x11\x8b\x4e\x7b\x38\x03\x8d\x00\x33\x84\x6c\xbe\x59\x39\xe7\xf8\xc3\x39\x1b\x2c\xf2\xf9\xbc\x8c\xc5\x62\x25\x22\x9a\xbf\xd2\x5a\x7c\xe3\xfd\x2d\x4b\x7d\xf7\x8d\x36\x7e\x56\x65\xa8\xec\x8a\xdf\x5a\xed\x7e\x2e\x51\x19\x7b\x75\x20\xfd\x2d\x53\xb1\x8e\x54\x62\x66\xc3\x3e\x7a\x01\x8f\x3e\xfa\xa8\xb0\xb7\xab\x69\xaa\x49\x89\xcd\xe9\xc8\x9e\xbe\x4c\xf8\x40\xa2\xac\x6e\x32\x05\xeb\x0b\xb1\xca\xb9\x91\x96\xe2\x5b\x73\x89\xca\x44\x32\x99\x2c\x3d\xf5\xd4\x53\xfa\x87\x1f\x7e\x28\x7c\xca\xba\xec\xeb\xeb\x13\x8f\x3d\xf6\x18\x54\x55\xd5\x48\x22\xb1\x6d\x21\xba\x6f\xcf\x54\xfc\x17\x5b\xf3\xda\xdd\x21\x93\x9a\x2a\x8a\xcc\xcc\x34\x54\xde\x3b\xdd\x95\xfb\xde\x68\xaa\x74\x32\x99\x4c\x16\x9e\x7a\xea\x29\xfd\xe3\x8f\x3f\x5e\x01\xcb\x7b\x1f\xe4\x32\x2d\x6d\xf1\x27\x19\x6c\x94\x55\x99\x73\x08\x85\xa9\x3a\x87\x84\x23\x22\xdc\x0e\x61\xf7\x7f\x5c\x57\x9a\x80\xaa\x32\xea\xe9\x74\x51\xe7\xde\x4f\x18\xf5\xd2\xbc\x21\x68\x86\xb9\x02\xd6\x5b\x6f\xbd\x25\x87\x86\x86\x24\x33\x97\x20\x90\xce\x74\x87\xde\xe9\xb8\xac\x3f\xeb\x11\x8e\x2e\x17\x5a\x31\x29\xf1\xda\xf7\x6a\x27\xca\xb6\xea\x56\x9d\x81\xda\xf4\x06\xdb\xa8\x81\x6c\x5b\xe8\x23\x43\xa3\x69\xdb\x65\xc9\x71\xb8\xc4\xa9\x53\xa7\x70\xdf\x7d\xf7\xe9\xcc\x9c\x06\xd1\xc8\x87\xbd\xcb\x7f\x9e\x8e\x19\xe9\xfb\x47\x93\x9f\x4a\x15\x42\x9d\x82\x21\x9c\x25\x9e\xa2\x6a\x16\xce\xb7\x17\x8e\x7e\xb0\x39\xfb\xe3\xa2\x26\x8f\xdb\x67\xaa\x15\x72\xb9\x9c\x3c\x77\xee\x9c\x7c\xec\xb1\xc7\x44\x7f\x7f\xbf\x60\xe6\x58\xe7\x72\x78\xe8\xd1\x4b\xcd\xbf\xdd\x96\x0b\x3d\x4e\x40\xc4\x19\xfd\x3b\x10\xc5\xdd\xe3\x0d\xf3\x17\xda\x0b\xff\xfe\xad\xfe\xa5\x6f\x16\x55\x73\xfe\x9e\x7b\xee\x29\x31\x33\xec\x4d\x1f\x12\x00\x9e\x78\xe2\x09\x08\x21\x22\x21\x83\x5a\x1f\xbd\xd4\xfc\x9b\x03\x73\xb1\x5f\x17\x8c\x98\xe3\xc0\xa0\x99\xd4\xd7\xbf\xa0\x0c\x6f\x49\x47\xbe\x7c\xae\x23\xff\x6f\xdf\xd8\x96\xf9\x43\x56\xd5\xf9\x7b\xee\xb9\xa7\xb4\xb0\xb0\x20\xc6\xc7\xc7\xbd\xcc\x20\x50\x44\x02\x00\xda\xda\xda\xaa\x9d\x44\x64\x94\x42\x32\xeb\x9c\x3e\xcc\xb6\x42\x1c\xe4\x32\x6d\x35\xad\xc5\xd1\x12\xba\xd2\x4a\x0c\x8d\x09\xc2\x5e\x76\xaa\x11\xc3\x01\x04\x53\x2f\x3d\x48\xaf\x0a\x22\xd0\xba\x1c\x0c\x96\x1e\x22\x43\xa1\x50\x89\x81\xf4\x42\x4f\xe8\xd5\x96\xf1\xca\xe3\x6a\x89\x53\x0e\xc2\xcc\xe4\x31\xbe\xd8\xc6\x53\x38\xca\xb5\x45\x38\xe4\xfa\x87\x79\xc5\xaa\x87\xa3\xbb\x17\x82\x54\x50\x9a\xdb\xa2\xbd\x00\xa2\x34\x98\x0b\x52\x4a\xe3\xda\xb5\x6b\x2e\x81\x6d\xdd\xba\x55\xb6\xb7\xb7\x17\x98\x79\x92\x88\xe4\xe5\x96\x42\xe1\x5a\x73\xe9\x44\x5b\x2e\x34\xd8\x52\x08\x75\xab\x26\x69\xb9\xb0\x99\x99\x4e\xea\x17\x72\x9a\x39\x02\xeb\x34\xc8\x09\x58\xd6\x73\xe3\xe8\xd1\xa3\xb8\xef\xbe\xfb\xc4\xb6\x6d\xdb\x04\x80\x44\x47\x56\xdb\xf3\xcc\xe9\xd6\x3f\x8e\x55\x94\xfe\x1a\x57\x6f\x58\x38\x86\x24\xb5\xee\x9e\x8e\xff\xaf\x4d\x45\x75\xe7\xf3\xbb\x17\xbe\x5e\x0a\xc9\xc9\xbb\xee\xba\xab\x34\x31\x31\x21\x72\xb9\x1c\x3e\xf7\xb9\xcf\x41\x51\x14\x8d\x24\x52\x8f\x5c\x6e\xfa\xad\x9d\xb3\xb1\xff\xae\xaa\x57\xc3\x86\x62\xfd\x57\x18\xb1\xdd\xd3\xf1\xff\x51\x91\x94\x78\x79\x30\xfd\xbb\x52\x60\xfe\xe0\xc1\x83\xfa\xf7\xbe\xf7\x3d\x6f\x3f\xb9\x7d\xe1\xec\x2a\x22\x3b\x81\x0b\x85\x02\xdf\x79\xe7\x9d\x50\x14\x25\x04\x20\xd9\x9d\xd5\xee\xef\x5c\x0e\x0f\x56\x07\x33\xa1\x76\x86\x45\x20\xfb\x1c\x56\xb7\x95\x09\xf2\x74\x57\xee\x3f\x1a\x82\xe7\x85\x10\xa5\x89\x89\x09\xe4\xf3\xf9\x2a\x9e\xc1\x57\x0a\x88\x67\x0f\x21\xfa\xd3\x82\xca\xfb\xe3\x18\x00\x35\x36\x36\xa2\xb5\xb5\x95\x01\x28\x52\x25\x01\x50\x53\xc3\x82\xb9\xc7\x69\x34\xf2\xe6\x76\xb9\x5a\xd5\x48\xe0\x28\x6b\xae\xc4\x27\x76\x45\xa1\x57\xc9\x77\x8a\x2f\xf4\x86\x7e\x9e\xee\x09\x3d\xc7\xf6\x77\xb5\xe7\xe6\xe6\x4c\xfb\xb0\x17\x06\xc0\x13\x13\x13\xb4\x79\xf3\x66\x19\x89\x44\x2a\xcc\x5c\x24\xa2\xac\x49\x9c\xce\x45\xe4\xf8\x6c\x43\xe5\xdc\x54\x43\xf9\x44\x3a\x56\x39\xae\x2b\xf2\x02\x11\x5d\x65\xe6\x49\x00\x8b\x00\xca\xef\xbe\xfb\xae\xbc\x76\xed\x1a\x0e\x1d\x3a\x04\x55\x55\xc3\x21\x83\x3a\x3e\x7d\xb6\xe5\xf7\x9a\x4a\xea\x5d\xb5\xba\xb0\x73\xd2\x37\x5c\x1d\xb9\xa1\xac\xec\x0a\x99\x64\x8c\xa6\x4a\xc7\x84\x22\x2a\xed\xed\xed\x66\x32\x99\x74\xce\x1f\x49\x6c\x49\x47\x0e\x3d\x38\xda\xf4\x2f\x09\x08\xad\x01\x8b\x5a\xf2\xa1\x3b\x33\x31\xe3\xfc\x5c\x5c\xbf\xaa\x69\x5a\x45\x55\x55\xb6\x77\xed\xb3\xa7\xdf\x6a\x44\x58\x4d\xb0\x97\x7a\x8c\x6c\xd8\x9c\x76\xa6\xcf\x8e\x5b\x8e\x6d\x84\x75\xaf\x4e\x27\x39\xdb\xda\xc2\x86\x68\x4a\xe8\x4a\xca\x16\x91\xc2\xde\xa0\x1a\xf4\x43\x9d\x78\x3f\x47\x5a\x2b\xaf\x5f\x4f\xab\x29\x7f\xfa\xf4\x69\x48\x29\x25\x11\xe5\x40\x34\x3d\xbf\x39\xf4\x5c\xb6\x4d\x39\xe9\x7a\x6a\x56\x19\x90\xa3\x4d\xb9\x0d\xeb\x35\x9a\x91\xdd\x76\x8e\xd9\xc0\x1e\x6e\x36\x71\x59\xf7\xc5\xa4\x18\x9d\xde\x11\xfe\x4b\x10\x4d\x38\x0a\xf9\x07\x1f\x7c\xe0\xc5\x49\xe4\xf3\x79\xf9\x93\x9f\xfc\x04\xe9\x74\xda\x20\x6b\xd7\xd5\x2c\x11\x5d\x06\x70\x12\xc0\x47\x44\x74\x94\x88\x4e\x12\xd1\x79\x00\x63\x44\x94\x36\x0c\xa3\xf4\xee\xbb\xef\xca\xd3\xa7\x4f\xcb\xc1\xc1\x41\x84\xc3\x61\x01\x20\xb6\x65\x31\xf2\x70\x5b\x4e\x3b\xe8\x9e\xee\xed\x98\x29\x1d\xcc\x6a\x0c\x7f\x84\xdd\xd3\xf1\xaf\x26\x4b\x4a\x3f\x00\xad\xb5\xb5\x55\xec\xd9\xb3\x07\x64\x1d\xec\xdc\x34\x3c\x99\xf8\x65\xc1\x88\xad\x07\x16\x31\x69\xfb\xc6\x1b\xfe\x91\xc2\x94\x02\xa0\xda\xc7\x0d\xac\xd0\xc5\xfc\x22\x07\x00\xb0\xb4\xb4\xe4\x98\x2a\xf4\xe5\x88\x31\xeb\xb8\xeb\x10\x55\x1b\xb3\xae\xcb\x34\x00\xc1\xd0\x9a\x0b\xa1\x3e\xdb\xef\x1b\xf7\xde\x7b\xaf\xf0\xbc\x23\xd0\x08\xea\xb9\xf7\x5f\x83\xf4\xb5\xa0\x32\xfe\x74\x17\xfe\xc2\xc2\x82\x63\x33\x2a\x01\x98\x97\x02\x23\xe3\x7b\x22\xdf\x2e\x26\xc5\x28\x7b\x2c\xe7\xae\xd4\xb3\x95\x77\x47\x89\x77\xc9\x8d\xa8\xc6\xce\xe5\x98\x15\x1c\xe5\xbe\x1c\xa3\xf9\x6b\x77\x46\xbe\x69\x6a\x74\x9e\x99\x67\x01\x94\xa6\xa6\xa6\xa4\xbd\xa3\xaa\xa6\xce\xc5\x62\x51\xfe\xe8\x47\x3f\xc2\x5b\x6f\xbd\x25\xb3\xd9\x6c\xc9\x5e\xfb\x4b\xdb\xe5\x9c\x5f\xa6\x52\xa9\x14\xce\x9f\x3f\x6f\x7c\xfb\xdb\xdf\x76\x0e\x4a\x16\xf6\xf2\x97\x0a\x46\x62\x73\x3a\xf2\x09\x01\xeb\x13\x31\xd5\xdd\xf6\x70\xdd\x9c\x9d\x3e\x83\x85\x32\x54\x49\xa9\xde\x4c\xe4\x00\x11\x39\x87\xcf\x09\x66\xd6\xc2\x26\xb5\x76\x2e\x6b\xfb\xc8\x53\xa7\xb5\x60\xa5\x0a\xa1\xbd\xc9\x92\xda\x4d\x44\x11\x5b\x15\xf2\xf7\xeb\x8a\x59\x24\x00\x20\x93\xc9\xa0\xb5\xb5\x55\x02\x30\x32\x51\x63\x4a\x12\x74\x85\xad\x45\x6f\x47\xd1\x5f\x19\x6a\x63\xdb\x72\xa1\x1d\x97\xdb\x48\x03\xac\x33\x2e\xfc\xef\xb0\x43\xbd\x99\xe1\x6a\x33\xc4\xf5\xa4\xc3\x9f\xfe\xde\x7b\xef\x89\xde\xde\x5e\x43\xd3\xb4\x1c\x11\x4d\x18\x61\x3a\x7e\x75\x5f\xf4\xdf\x6d\x3e\x59\xfa\x5a\x3c\x6d\x6e\xf7\x32\x2b\xab\x36\xa8\x31\xbf\x54\x2d\xf5\x55\x9d\xcb\xdd\xd1\x4e\x40\x31\x21\x26\xaf\xed\x8d\xfc\xbf\xe5\xb8\x38\x0a\x8b\xeb\x64\x2b\x95\x8a\x1e\xf0\x3d\x71\x17\x4f\x29\xa5\x3c\x7b\xf6\x2c\x2e\x5c\xb8\x20\x4c\xd3\x34\xee\xbc\xf3\x4e\xd1\xd1\xd1\x01\x00\x28\x16\x8b\x98\x9e\x9e\xc6\xd8\xd8\x18\xca\xe5\x72\x4d\x1d\x9b\x9a\x9a\x84\xcd\x75\x62\xc9\x92\xda\xe7\x62\xec\x7a\x78\x78\xbc\x40\x56\xd8\x3e\x80\x64\x49\xd9\x06\xeb\xbb\xe0\xc2\x5e\x5f\xd4\xc2\x15\x91\x0a\x99\xd4\xb4\x11\x58\x0a\x23\x96\x28\x2b\x3d\x99\x98\x71\x16\xc1\x93\x30\xf8\xdd\x75\x00\x00\xa6\x69\x02\xb6\x41\x30\x1b\x31\x67\xcb\xaa\xcc\xc5\x2a\xc2\x73\x26\x3e\xbc\xd6\x8a\x5a\x4e\x66\xc7\x77\x2e\x87\x87\x88\x11\x63\x82\x1a\x8b\xc5\xf4\x50\x28\x24\x2a\x95\xca\x6a\xb6\x30\xf8\xf0\x08\x52\xec\xfd\x69\xfe\x99\x63\x50\x39\xc0\x16\x4b\xaf\xbe\xfa\xaa\x78\xea\xa9\xa7\x74\xfb\xac\x8c\xd1\x4a\x54\x60\x64\x7f\xb4\xd0\x79\xa9\xfc\x85\x96\xf1\xca\x01\x61\x42\x73\xeb\xe5\x31\x41\x78\x97\x81\x6a\xbc\x48\x40\x90\x02\x46\xa6\x4b\x3d\x3e\x39\x18\xfe\xf3\x8a\x46\x27\x01\x5c\x26\x60\x9e\x99\xf5\xf7\xdf\x7f\x3f\xa8\x5e\x2b\x9e\xed\xf6\x76\x66\x75\xf5\x26\x2f\x16\x47\x50\x55\x11\x8b\xc5\x60\x6f\x8a\xd6\x24\x71\xb5\x63\x99\x6c\x9f\x79\xb8\xfa\x21\xc1\x63\xa7\xb3\xf9\xb4\x24\x08\x00\x1a\x33\x3b\x9f\x9b\x11\xba\xca\x30\x04\x97\x42\x12\x89\xf5\xc2\x32\x84\x2c\xe5\xc3\x66\x09\xb0\x4d\x2c\x01\x7d\x19\xb4\xdd\x08\xd7\xaf\x5f\xc7\xe0\xe0\xa0\x64\x66\xbd\xa2\xc8\x4c\x2e\x6c\xce\xc7\x2a\x4a\x0a\x70\x69\xca\x33\x4b\xb1\x42\xad\x86\x4d\x48\x15\xd4\xed\x61\x43\x34\x95\x42\x52\x8d\xc7\xe3\xa2\x52\xa9\x38\xde\xad\xab\x59\xf4\x57\xe3\x56\x41\x65\x82\x66\x95\x75\x0d\x7f\xe3\xe3\xe3\xf2\xe4\xc9\x93\xb8\xe3\x8e\x3b\x4a\xb0\x88\x40\x9a\x0a\xf4\xc9\x9d\xe1\x6c\xa6\x2b\x74\xb2\xed\xaa\xfe\x48\x72\xce\xd8\x29\x4c\x68\x8e\x8e\xe9\x2c\x29\x79\x9d\x58\x89\x00\x16\x30\x96\x53\xca\xc8\xdc\x56\xed\xf5\xe5\x16\xe5\x7d\xb6\x3e\x43\x38\x06\xfb\xa3\xf5\x1f\x7f\xfc\xb1\xf4\xac\xe3\xad\xc6\x65\xd7\xaa\x77\xcd\x60\xb2\x3d\x59\xdd\x41\x95\x89\x1a\xd3\xbc\x68\x3d\xf8\xdd\x90\xdc\xc5\x78\x97\x11\x30\x18\x90\x33\x0d\xfa\x55\xf6\xad\x2e\xe8\x8a\x2c\x2c\xc6\x8c\xc9\x68\x56\x69\xe5\x75\xc2\x5a\x88\x57\x46\x32\x51\x23\x6d\x6f\x20\x09\xac\x8f\x5f\x44\x0a\x00\x72\x61\x61\xc1\x06\x46\x86\x09\xe4\xe6\xe2\x95\xd1\xb6\x65\x6d\xa0\x6a\xe7\xa9\x99\xd4\xbb\x2f\x84\x3b\x46\x80\x98\xae\xb4\xb7\xe4\xd5\xfe\xeb\x4d\xfa\x65\x66\x2e\xec\xd9\xb3\x47\xf8\x3e\xb6\x10\x14\x56\x33\xc0\xae\x46\x98\xde\x4a\xad\x96\x5f\xbc\xf7\xde\x7b\x12\x80\x4b\x64\xf6\xc6\x94\x5c\xbe\x51\xcc\x16\xf6\x46\x4e\x69\x45\xde\xd6\x30\x67\x0c\x25\xd2\x66\x7f\x24\x27\xdb\xd5\x0a\x47\xc0\x50\x41\x90\xa6\x4a\xa5\x72\x5c\xcc\xe7\x52\xca\xe8\x72\xab\x72\xb6\x14\x17\x97\x98\x30\x41\x44\x13\x60\x9e\x25\xa2\x2c\x33\x97\x8e\x1d\x3b\x26\x8f\x1d\x3b\x56\x17\x07\x0f\xbe\xeb\x31\xc9\xac\x68\x9b\xc5\xc5\x45\x34\x37\x37\x1b\xcc\xac\x8f\xb4\x14\x3f\xbe\x63\x2a\xf1\x39\x85\xa1\xfa\x0d\x14\xae\x01\xdc\x36\x14\x13\x80\x4c\xd4\x98\x1c\x6f\x2e\x9d\x85\xbd\xe9\xc3\xf9\x1a\x88\x09\xce\x9d\xed\xcc\x1f\xe9\xcc\x6a\x7b\x04\x20\xd6\x82\x05\x00\x67\x3a\xf3\x47\x24\x38\x0b\xcb\x4d\xc8\x8f\x2b\x80\x3a\x47\x68\x2e\x2e\x2e\x4a\x00\x60\x66\x1d\x40\x61\x2a\x59\xbe\x38\x34\x13\x7b\xd2\xd2\xc1\x6c\x9d\x24\x68\xf9\xc8\x99\x4b\x31\x43\x80\xb4\xde\x4c\xe4\x9e\xeb\x8d\xfa\x11\x22\x12\xbd\xbd\xbd\x38\x7d\xfa\xf4\x5a\x86\x53\x3f\x82\xfe\xc6\x15\x1b\x8c\xf3\xc3\x01\x6c\x22\x5b\x58\x58\xc0\x43\x0f\x3d\x54\x52\x14\xc5\x80\xd5\xd8\x69\x66\x9e\x2c\x47\x69\xa4\xdc\x17\x3a\x36\xdf\x17\x4a\x12\x90\x10\x26\x62\x24\xa1\xb2\x80\x21\x15\x94\x18\xc8\xd9\x84\x94\x26\xa2\x79\x30\x67\x98\x39\x03\xa0\x54\xa9\x54\xf4\x93\x27\x4f\xc2\x43\x5c\x41\x75\xa8\x57\xff\x7a\xf8\xaf\xc8\x9b\xcd\x66\xd1\xdc\xdc\x2c\x01\xe4\x26\x9a\xca\x27\x47\x53\xa5\xe3\xfd\x0b\x91\xbb\xc9\xb6\x55\x56\x0d\xc7\x70\x57\x57\xd8\xd2\x9f\xe5\x87\x7d\xd9\xe7\x4d\x81\x59\xb0\xb5\x67\xc2\xde\xd3\x68\x00\xc8\x9c\x6f\x2f\xbc\xb1\x6d\x3e\x7a\x70\x4b\x3a\xb2\x77\x55\x58\x60\x8c\x37\x95\x4f\x9f\x6f\x2f\xbc\x46\x44\x19\x66\xd6\xed\x23\x51\x57\xd4\x51\x41\x6d\x70\x6c\x18\xe8\xeb\xeb\xa3\x58\x2c\xa6\xd8\xb3\x8d\xd4\xd0\x74\xe2\x31\x01\x52\x9c\x69\x79\x8d\x01\xca\x56\xfc\x1d\x33\x85\x63\xbe\x50\x24\xe1\x6c\x57\xfe\xaf\x41\xc8\xc6\x62\xb1\x8a\xbd\xa4\x40\x9e\xf7\x78\x7f\xf0\x5d\xeb\xa5\x7b\x7f\x4e\x85\xd6\x53\xbe\x06\x56\x3a\x9d\xe6\x8f\x3f\xfe\x98\x7b\x7a\x7a\xb8\xa1\xa1\xa1\x02\x6b\x86\xb9\x6c\xef\x92\x99\x87\x65\x3a\x98\x62\x41\x13\x52\xe0\x1a\x14\x1a\x05\xd1\x35\x00\xd7\x88\x68\x0c\xc0\x04\x11\xcd\xdb\xf9\x4b\x8b\x8b\x8b\xc6\xab\xaf\xbe\x8a\x4b\x97\x2e\xc9\x00\xbc\xfc\xb8\x39\x57\x6f\x5b\xd4\xc3\x7f\x05\x2c\x5d\xd7\x69\xfb\xf6\xed\x4c\x44\x60\x82\x3a\x95\x2c\xa7\x7b\x33\x91\xe1\x58\x45\x4d\x7a\xc5\x7a\x75\xe2\x65\xe9\x53\x27\x36\xe5\x5e\xfd\xa8\x67\xf9\x07\x4c\x96\x5f\x3e\x33\x57\xb2\xd9\x2c\xc2\xe1\xb0\x24\x22\x92\x02\x18\x6f\x2e\xcd\xb4\xe5\xb5\x6d\x8d\x25\xb5\x35\x08\x16\x03\xb8\xde\xa8\x5f\x7e\x71\x67\xfa\x1b\x25\x4d\x9e\x02\x30\x05\xa0\x78\xe2\xc4\x09\xe9\x59\x97\x74\xeb\xe1\x35\xb4\x56\x4d\x3a\x80\x68\x6e\x6e\x46\x7b\x7b\x3b\x00\x68\x15\x85\xe3\xbb\x66\xe2\x8f\x59\x1b\x40\xbc\x67\x19\xda\x4f\xee\xa2\xa4\x5d\xdc\x16\xe2\xd1\x8a\xd2\x7c\xa9\xad\xf0\x52\x31\x64\xce\x08\x21\xca\x8b\x8b\x8b\xce\xe6\x80\x15\xef\x0b\xb8\xd6\x4b\x83\x27\x5d\xd6\x29\xbb\x6e\x58\x17\x2e\x5c\xa0\xa9\xa9\x29\x4e\x26\x93\x66\x34\x1a\xd5\x85\x10\x65\xdb\x36\x95\x05\x90\x21\xa2\x05\x00\x73\xb6\x1b\xf1\x3c\x80\x05\xdb\xbe\x95\x67\xe6\xf2\xd2\xd2\x92\x71\xf4\xe8\x51\x3e\x72\xe4\x88\xcc\xe7\xf3\x7e\x42\x81\xef\xfd\xfe\x67\x3f\x7e\x4e\x7a\x10\x61\xba\x65\xb3\xd9\xac\x1c\x1c\x1c\x84\xa6\x69\x0c\x80\xf5\x10\xeb\x57\x5a\x8a\x63\x11\x43\x34\x36\x16\xd5\x56\xc5\xe3\x2e\xc5\x00\x96\xc3\x66\xfa\xed\xfe\xa5\xe7\x8e\xf6\x2e\xff\x85\x49\x7c\x9e\x88\xa6\x89\xa8\x70\xe2\xc4\x09\x7e\xe9\xa5\x97\x1c\x58\x26\x00\xc3\x50\xa1\x5f\x6e\x2d\x5e\xc9\x85\xcd\x72\x5c\x57\x9a\x34\x29\xc2\x00\xc8\x14\x5c\xc9\x44\xcd\x85\x63\xbd\xcb\xaf\x1d\xd9\x96\xf9\x93\x92\x26\x4f\x30\xf3\x18\x11\x65\x4a\xa5\x52\xe5\xd5\x57\x5f\x85\x94\x72\x45\x1d\x83\xec\x0d\x6e\xf8\xda\xd7\xbe\xa6\x02\x68\x22\xa2\xa1\xc3\xe7\x52\xbf\xb3\x73\x26\xfe\xb0\xd7\x28\x59\x33\x06\xfd\xda\x3f\x03\x4c\x8c\xb7\xb7\x2e\xfd\x5f\x47\xfb\x96\xff\x90\x99\x67\xa7\xa6\xa6\xf4\xe7\x9f\x7f\x1e\x58\xc5\x9c\x50\x27\xac\x67\xa6\x78\x4b\x60\xdd\x7d\xf7\xdd\xa2\xab\xab\x0b\x89\x44\x02\x89\x44\x02\x40\xd5\x65\x98\x88\x64\xa9\x54\x42\x2e\x97\xc3\xc4\xc4\x84\xd7\xf5\x38\xe8\x1d\x6b\xcd\x98\xd7\x1b\xea\xc2\xfa\xda\xd7\xbe\xa6\x12\x51\x84\x99\x53\x00\xfa\x08\xb4\xa5\xb1\xa4\x0c\x76\x2f\x85\x07\x1a\xca\x6a\xca\x24\x36\xd2\xf1\xca\xe4\x64\xb2\x7c\xae\xac\xf2\x65\x10\x46\xed\xe5\xa9\x4c\x3a\x9d\x36\x7e\xf8\xc3\x1f\x4a\x1f\x2c\x8d\x99\x9b\x00\x74\x13\x51\x8f\x90\xe8\x6e\x28\x2b\x9b\xc2\x86\x88\x95\x55\x2e\xe4\x34\x63\xc6\x54\x30\x69\x13\xd6\x24\x33\xa7\xa5\x94\xa5\x37\xde\x78\x03\xf6\x01\x74\x2b\x42\xe0\x2c\xd2\x09\xa6\x69\x4a\x55\x55\x75\x00\xd9\xb1\xa6\xd2\xf1\xc1\xd9\xf8\xc3\x2e\x45\x32\xc3\xbf\x59\xc2\x4b\x6f\xb0\xc5\xe6\xe0\x6c\xec\xc9\x8f\x7a\x96\xbf\x2b\x05\x65\xda\xdb\xdb\xf5\x44\x22\x01\x7b\xa7\xb7\x37\x04\xd9\xb5\xfc\xfa\x87\x97\xa0\x82\xf4\x94\x7a\xb0\x82\xf4\xbe\xba\xb0\x02\x4e\x50\x96\xce\xb1\x44\xf6\x6c\x18\xba\xae\xfb\xf1\x5f\xcf\x44\xa4\x9e\x42\xbf\x1a\xde\xab\xc2\x7a\xf7\xdd\x77\xe5\x81\x03\x07\xdc\xc9\x0a\x33\x67\x32\x11\x63\x2c\x13\x31\x3e\x04\x10\xb1\x95\xf8\x02\x9c\x9d\x40\x6c\x9d\x95\x6b\x18\x86\x97\xb8\xbc\xb0\x74\x00\x69\x1b\x56\xda\x24\x8c\x65\x22\x46\x02\x96\xe3\x82\xc1\xcc\x05\x30\x32\xb0\x8e\xa3\x2f\x00\xf0\x1f\x55\xb5\x02\x77\xbf\x88\xac\x31\x66\x6c\xdf\xbe\x9d\xa2\xd1\xa8\x60\xe6\x70\x39\xc4\xda\x1d\x53\xf1\xc3\xc2\xf6\x5d\xf2\x18\x48\x6c\x62\xb2\x9e\xad\xe8\x2a\x4b\x8b\x18\x22\x35\xd9\x58\x7e\x7f\x29\x62\x5c\x53\x14\x45\xcf\xe5\x72\x72\x76\x76\xd6\x2f\x1e\xbd\x6a\x9d\x6b\xd6\xf3\xc4\x39\xf1\x5e\xd1\x2a\x3d\xe9\x14\xf0\xf3\x96\x01\x6e\x02\x56\xa5\x52\x01\x00\xae\x54\x2a\xe4\xd8\x08\x7d\xf8\x7b\xe1\xd7\x8c\x33\x4f\xfd\x82\xde\x7b\x53\xb0\x66\x67\x67\xa9\x5c\x2e\x73\x57\x57\x97\x61\x8b\xf6\x3c\x2c\xb1\x6e\xe9\x8f\xd6\x1a\xe6\x75\xb2\x3e\x3c\xb6\x48\x44\x85\x4c\x26\x63\x7c\xf7\xbb\xdf\x95\x41\xb0\x66\x67\x67\xb9\xab\xab\xcb\x0c\x85\x42\x65\x22\x2a\xda\xb0\xd2\x44\x34\x67\xaf\x30\x38\x3a\x67\x31\x9f\xcf\xeb\x6f\xbc\xf1\x06\xdb\x2b\x24\x75\xeb\xe8\x3f\xa3\xb5\x26\xc4\x62\x31\xb2\xb7\x5b\x85\x2a\x2a\x47\x7b\x17\x23\xfb\x1b\xcb\xa1\x0e\x57\xa5\xe7\xaa\x42\x5f\x55\x28\xab\x71\xf6\x4f\x11\x4c\xc6\x48\x6b\xe9\x6d\x10\xf2\xa9\x54\xca\xb0\xbf\x24\x51\x4f\x21\xc7\x2a\xf1\xfe\x67\x87\x38\xfc\x79\x9d\xf8\x20\x38\xb7\x02\x16\xea\x94\x5b\xc1\xc8\xd7\x78\xef\x4d\xc3\x9a\x9d\x9d\xe5\xe3\xc7\x8f\x73\x47\x47\x07\x37\x36\x36\xea\x64\x6d\x53\x2b\x10\x51\x9e\x88\x72\x44\x94\x67\xe6\x52\xa9\x54\xaa\x1c\x3f\x7e\x9c\x5f\x7d\xf5\xd5\xa0\x76\x01\x00\xce\x66\xb3\x7c\xea\xd4\x29\x2e\x97\xcb\x48\x24\x12\x46\x2c\x16\x33\xec\x6d\x6a\x45\x22\x2a\x11\x91\xbe\xbc\xbc\x5c\xb9\x70\xe1\x82\x7c\xfd\xf5\xd7\x31\x3f\x3f\x5f\x17\x96\xf3\x5b\xe1\x32\x6d\x07\x09\x40\x4c\x4d\x4d\xe1\xae\xbb\xee\x92\x00\x4a\x0c\x64\xae\xb4\x16\x8f\xf6\x2c\x85\x87\x2d\x7b\x48\x7d\x97\x69\x2f\xdb\x00\x80\xad\x0b\xd1\xc7\x9b\x8a\xea\xb7\x16\x63\x46\x3a\x1e\x8f\xeb\xbd\xbd\xbd\xb0\xfd\x87\x9c\x10\x24\xce\x80\x60\x91\x06\xac\x14\x1f\x6b\x89\xd6\x5b\x09\x6b\x35\xdb\x95\x3f\xac\x55\x7e\x3d\xf8\xac\x0b\xd6\x0b\x2f\xbc\x00\x00\x72\x70\x70\x10\xbd\xbd\xbd\x6e\xf9\x6c\x36\x8b\xa9\xa9\x29\xa7\xbd\xeb\x99\x3f\x6a\x60\x9d\x39\x73\x06\x67\xce\x9c\x91\x91\x48\x04\xa5\x52\x49\x0e\x0c\x0c\x08\x00\xb8\x78\xf1\x62\x8d\x9b\xf6\x7a\x60\x39\x1c\x0c\x08\x18\xad\xcb\xcb\xcb\x3c\x3c\x3c\x0c\x45\x51\x40\x44\x5a\x29\x24\xc3\x43\xd3\xf1\x47\x54\x26\xcd\x59\xf4\xf5\xba\x4c\x57\x39\x18\xaa\x7e\x54\x20\x28\x4c\x51\x49\x58\xbe\xd6\x5c\xfa\x10\x84\x62\x2a\x95\x32\xcf\x9d\x3b\x17\x34\x53\x0a\xe2\x62\xf5\x46\xb2\xa8\x53\xc6\x9b\xdf\xdb\x51\xb7\x0a\x96\x9f\xeb\x78\xe1\xb1\xaf\x5c\x50\xbd\xd6\x8a\xbb\x29\x58\x0b\x0b\x0b\x3c\x32\x32\xe2\xfc\xe8\xfa\xf5\xeb\x32\x9b\xcd\xae\x80\xb5\x67\xcf\x1e\xb1\x75\xeb\x56\xc7\xd5\x9a\x5a\x5b\x5b\x31\x37\x37\x57\xc3\x89\x0c\xc3\x70\x61\x2e\x2c\x2c\x10\x00\xe6\xea\x9a\xd0\xba\xf0\xf2\x9f\x32\xed\x17\x93\x22\x99\x4c\xa2\xb5\xb5\x15\x00\x54\x5d\xe5\x70\xe7\x72\x78\x4f\xaa\x18\x51\x4f\x6f\x55\x00\x00\x1c\x88\x49\x44\x41\x54\xda\x04\xa0\xd6\x65\x9a\xaa\x2e\xd3\xee\x71\x0f\xb0\x9d\x00\x8a\x1c\x75\xe3\xf9\x88\xd1\x5c\x0c\x6d\xbe\xd0\x5e\x78\xb1\xac\xc8\x74\x34\x1a\xad\x7c\xf4\xd1\x47\x41\xb3\x3f\x0e\x78\xae\x87\x9b\x93\x16\x34\xad\x0f\xe2\x4a\xb7\x0a\x96\x1f\x57\xe1\xcb\xcb\xbe\xb4\x8d\xde\xdf\x56\x58\x5f\xf8\xc2\x17\xc4\xc1\x83\x07\x95\xbe\xbe\x3e\xa5\xb3\xb3\x53\x34\x36\x36\xaa\x7d\x7d\x7d\xd4\xdb\xdb\x8b\xbb\xee\xba\x0b\x2d\x2d\x2d\x34\x32\x32\xe2\x6f\x8b\x1b\xc6\x4b\xc1\x4a\x65\xbb\xa6\x81\x4d\xd3\xa4\x81\x81\x01\x00\x20\x10\x45\x98\xb8\x71\xfb\x5c\xf4\x3e\x30\x91\xeb\x32\x5d\x63\xec\xa8\xda\xc4\x1c\xc3\x2b\x40\x50\x24\xe2\x04\x2a\x5d\x4b\x95\x8f\x12\x51\x71\xcb\x96\x2d\xd2\xe6\x62\xf5\x6c\x5a\x5e\xe5\xd1\x9b\xcf\x3f\x41\x40\x40\x1e\x2f\x2c\x60\x65\xfd\x6e\x06\x96\x3f\x1f\x7b\xe0\x00\xb5\x70\xfd\x1c\xd4\x29\xef\x57\x8c\x6f\x2b\x2c\x22\xc2\xe3\x8f\x3f\x4e\x8f\x3d\xf6\x98\x12\x8d\x46\x43\x02\x14\x4b\x94\x95\x96\xce\x65\x6d\x7b\x7b\x4e\xdb\x1a\x36\x44\x83\xa1\x00\x52\x21\x34\x35\x37\xc9\xe1\xe1\x61\x36\x0c\x03\xf6\x64\xec\xa6\xf0\xf2\x8a\x48\x3f\x82\x02\xb0\x8c\x7a\xdb\xb6\x6d\x43\x34\x1a\x25\x66\x0e\xe5\xc2\x26\x06\xe6\x62\x0f\x45\x4d\x25\xe1\x12\x11\x9c\x95\xfa\xaa\xe2\x5f\xfb\x4e\x2b\x3d\x55\x08\x6d\x1b\x6d\x29\xbd\x51\xd0\xe4\x5c\x34\x1a\xd5\x2b\x95\x0a\x66\x67\x67\x81\x5a\xf1\xe3\xd7\x71\xbc\x71\xde\x19\x1f\xf9\xe2\xe0\xb9\xf7\xeb\x34\x74\x0b\x61\xf9\x95\x70\x6f\x9c\xff\xe7\x0d\xc2\x57\xce\xfb\xbb\xad\xb0\x1e\x7f\xfc\x71\xea\xef\xef\x17\x44\x14\x4b\x15\x43\x5b\x3f\x71\xb9\xf9\xb7\x1e\xbe\xd2\xf4\x7f\xee\x99\x8e\xff\xf7\x03\x73\xb1\x5f\x1d\x9a\x8e\xff\xc3\x9d\x33\xb1\x27\xc3\xa6\xe0\xf9\x86\xca\x38\xab\xa2\xd2\xd7\xd7\x27\x99\x99\xa7\xa6\xa6\x6e\x0a\xaf\x15\x2e\xd3\x9e\x42\x2e\xc1\x29\x8a\x82\x9e\x9e\x1e\x10\x11\x19\xc4\xe1\x88\xa1\x74\xf4\x2c\x45\x76\xd7\x75\x99\x06\x57\x2f\x9e\x68\x85\x29\x1a\xab\x28\xd1\xcb\x6d\xc5\x77\x40\x54\x48\xa5\x52\xc6\xd5\xab\x57\xa1\xeb\xba\x7f\xea\xee\x9d\xf2\xfa\xa7\xee\x5e\xea\xf5\x8f\x28\x7f\x1c\xe3\xd6\xc3\xf2\x8f\x5c\xf2\xfd\xbc\x62\x24\xc8\x04\x13\xc4\x41\x6f\x1b\xac\x87\x1e\x7a\x88\x76\xec\xd8\x21\x00\x24\xfa\x32\x91\x7b\x9e\x3e\xd3\xf6\xed\xce\x65\xed\xd3\x0a\x53\x33\x81\x14\x30\x48\x10\x85\xc2\xa6\xe8\xda\xb4\x14\x3e\xdc\x95\x0d\x6f\xbd\xda\x5a\x7a\xbf\x22\x64\xa9\xbb\xbb\xdb\xb4\x55\x99\x1b\xc6\x4b\xf1\x21\xe5\x0d\x2e\x95\xe6\xf3\x79\xda\xb5\x6b\x97\x14\x42\x80\x88\x42\x4b\x51\x83\x77\x4f\xc7\x1e\x09\xb1\xd0\xc8\xae\x8b\xbb\x1e\x49\xb0\x15\x7e\x9b\xa3\x79\xcc\x18\x20\x42\x53\x51\xed\x4f\xc7\x2a\x67\xd2\x71\x63\x34\x14\x0a\xe9\x0d\x0d\x0d\xce\x09\xd4\xf5\x46\xa2\xf7\xb9\xde\x28\xf2\xa6\x7b\xaf\xb7\x0b\x96\x57\x6c\x06\x8d\x68\xef\xd5\xfb\x2e\xa0\x96\x83\xe2\x76\xc2\xea\xed\xed\xa5\xfb\xef\xbf\x5f\x10\x51\xac\xa9\x14\xda\xf1\xd9\xd3\xad\xdf\x8a\xeb\xca\x20\x81\xec\xc1\xef\xf4\x11\x9c\x67\x6a\x28\x2b\xbb\x52\x05\x35\x75\xb9\xad\xf8\x2e\x04\x15\x77\xed\xda\x25\x4f\x9e\x3c\xe9\x6f\xab\x75\xe3\xe5\x88\x48\xbf\xfe\x55\x43\x9d\xba\xae\xa3\xa5\xa5\x05\xcd\xcd\xcd\x0c\x40\xe8\x0a\x87\x1a\xca\xca\xe6\x8e\x65\xad\xdf\xdd\x13\xe8\xea\x5d\x80\xbb\x5a\x49\x80\xcb\xe5\xc8\x05\xac\x76\xe4\xc2\x3b\x2e\xb4\x17\x5e\x36\x54\x2c\x37\x35\x35\x19\x4b\x4b\x4b\x58\x5c\x5c\xf4\x8f\x0a\x60\xe5\xc8\xf4\x8f\x1a\x6f\x99\x20\x0e\x75\xbb\x60\x79\x89\xd6\xdb\x5e\x41\x81\x7d\xe9\x7e\x91\x7c\xdb\x60\x3d\xfe\xf8\xe3\x14\x8f\xc7\x43\x00\x9a\x1f\x1e\x69\xfc\x27\x9b\x96\x22\x9f\xac\x6e\xd5\xab\x8a\x18\xb2\x21\x39\xa6\xa7\xa6\x92\x3a\x30\x1f\xaf\x9c\x4c\xc7\x8d\x31\x55\x55\xcb\x86\x61\x60\x66\x66\xc6\x8b\xe3\xba\xf1\x12\xa8\x52\x9b\x97\x8b\x49\xcf\x55\x02\x80\x7d\x44\xa2\x84\xfd\x51\xf1\xe3\xdd\xb9\x17\xca\x2a\x17\xaa\x45\x3c\x66\x8a\x2a\xcf\xaa\x72\x30\x86\x1b\x9b\x2c\x29\x43\x07\x46\x1b\xff\x31\x31\x9a\x88\x48\x7b\xe0\x81\x07\xea\xbe\x37\xe0\xde\x1b\xe7\x9f\xe1\x49\xdf\xcf\x5f\xb7\x5b\x09\x0b\xbe\xbc\xde\x20\xd6\x48\xf7\xe3\x70\x5b\x60\xa5\x52\x29\xc0\xfa\x34\x5f\x7b\xff\x42\xf4\x33\xae\xf7\x9e\x87\xf7\xb8\x3a\x82\xf7\x10\x3e\xa6\xc8\xd0\x4c\xfc\x17\xc0\x48\x12\x91\x6a\x4f\xf2\x6e\x08\x2f\xbf\x91\xcc\x1f\xdc\xf8\xa9\xa9\x29\x39\x35\x35\x25\xed\x8d\xa4\xf3\x8b\x31\xe3\xec\x85\xf6\xc2\x3b\x2b\x36\x7f\xb0\xc5\xc1\x1c\xa2\xaa\xa9\x09\x57\x3d\x31\x86\xa6\xe3\x5f\xdd\x31\x17\x7b\x1c\x8c\x44\x2c\x16\x53\x9f\x7e\xfa\x69\xe1\xdb\x38\xe0\xc7\xcd\x9f\x06\x4f\x7a\x50\x5a\x90\x72\x7e\x2b\x60\x05\x05\x3f\x5c\x59\x27\xde\x9f\xff\xb6\xc2\xb2\x77\x75\x69\xc9\x92\xd2\x13\xae\x88\x4e\xc0\xd9\x17\x65\x75\x8c\x73\xb2\x8f\xed\x2b\x56\xc3\x18\x5a\x73\xa1\x21\x55\x52\x0a\x80\x96\x4a\xa5\xdc\xf3\xf9\x37\x8a\xd7\x6a\x15\xf5\x06\x09\x00\xc7\x8e\x1d\x03\x59\x07\xcb\xe5\x18\x3c\xfd\x51\xcf\xf2\x4f\xcb\xaa\xcc\x39\x48\x39\x57\x97\x97\xd9\x17\xf7\xf8\x7e\x8f\x3e\xa6\x30\x45\x1e\xbe\xd2\xf8\xdb\xcd\x45\x75\x80\x99\x63\x5d\x5d\x5d\x62\xff\xfe\xfd\x2b\xde\x19\x70\xf5\x57\xc2\x5f\xd1\xa0\xfc\xb7\x12\x96\x1f\x66\x50\x3e\x3f\xd1\x06\x71\xc6\xbf\x09\x58\x82\x99\x55\x45\x52\x92\x60\xed\x18\x77\xa4\x0a\x80\x1a\x37\x68\xef\x71\x05\x0c\x40\x91\x14\xa3\xea\xc7\xc0\x1c\x57\xed\x0d\xe3\x25\x10\xdc\xb0\x81\x54\x3a\x39\x39\x29\xaf\x5f\xbf\x2e\x61\x79\x80\xce\x2f\x45\x8c\xb3\x27\xba\x73\x3f\xaf\x39\x71\x1a\x2b\xb5\x41\xf8\x9e\x9d\x6b\x5c\x57\xfa\x9f\xb8\x90\xfa\x17\x61\x53\x74\x02\x88\xdc\x71\xc7\x1d\x62\xd7\xae\x5d\xf5\x46\xe8\x5a\x83\x61\xad\x11\x75\xab\x60\xad\x37\xce\x79\x0e\x12\x2d\xfe\xfc\xb7\x05\x96\x4d\x48\x22\xaf\x99\x05\x53\xb0\xee\x2a\x93\x0c\xc0\xe5\x65\xd5\x5e\xaa\xf2\x35\xc6\x52\xd4\x98\x35\x05\x4b\x58\x44\x8a\xce\xce\xce\x1b\xc2\xab\x5e\xa2\xf4\x65\x74\xc5\xc7\x4f\x7f\xfa\x53\xc9\xcc\x06\x33\xe7\x40\x98\x3c\xbe\x29\xf7\xd3\xa5\x88\x39\xeb\xa0\xc8\x76\x0d\xc8\x79\xf6\x54\xc6\x91\xf3\xe4\xb9\xef\xca\x6a\x8f\x3e\x72\xb9\xf9\x37\x15\x89\x56\x00\xda\xfd\xf7\xdf\x8f\xee\xee\x6e\x81\x95\x8d\xe7\x17\x61\x41\xe2\x3d\x48\x14\xde\x6a\x58\xfe\x10\x94\x2f\x48\xed\xf0\x3e\xd7\x53\x4b\x6e\x19\xac\xa1\xa1\x21\xe1\x6c\x9e\xce\x85\xcd\xcc\x42\xcc\x18\x65\x54\x8f\x3e\x70\xb7\x0c\x3b\x6a\x19\x5b\x84\x65\x7f\xee\x0b\x23\xd6\x57\x3c\x9c\xa3\xe8\xa5\xe7\xa3\xab\x1b\xc2\x2b\x48\x51\xab\xc7\x82\xdd\xfb\x99\x99\x19\x49\x44\x05\x00\xe9\x62\x48\x5e\x7e\x7f\xf3\xd2\x4f\x18\x90\x5e\x33\x05\xe0\x31\x5b\x38\x7f\x9e\x1d\xc6\xce\xd6\x27\x02\x61\xe7\x4c\xec\xd7\xee\xbd\x96\xfc\x0a\x81\x9a\x42\xa1\x90\xf6\xc9\x4f\x7e\xd2\xfb\xbe\x20\x1c\x56\x53\xe2\x83\xf2\xdd\x4a\x58\x08\x48\xf7\xe7\xf3\xc3\xaa\x97\xff\xb6\xc1\x3a\x7b\xf6\xac\x73\x84\xa9\x2e\x05\xb2\xc7\x37\x2d\xbf\xc2\x60\xe9\x8a\x45\x9b\xb2\x82\xdc\xa2\x0b\x21\x99\xbe\xd8\x5e\x78\x1b\xd6\xa9\xd2\x46\x36\x9b\xf5\xc2\xde\x10\x5e\x75\x5d\xa6\x57\x79\xa6\xe9\xe9\x69\x0c\x0d\x0d\x49\xb2\x4e\xe0\xa1\x74\xdc\x28\x76\xe4\xb4\xc1\xa6\x62\xa8\xc3\xe2\x54\x40\x8d\x85\xd5\x09\xd5\x93\x13\x6b\xd2\x89\x21\xba\x96\xc3\x0f\x94\x43\x72\x62\xa6\x41\x1f\x51\x14\xa5\x32\x3c\x3c\x2c\x67\x67\x67\x69\x79\x79\xd9\x6f\x42\x80\x07\x1f\xe9\x89\x5f\xed\x1a\x64\x1c\xbc\x51\x58\xd2\x07\x13\x3e\x78\xf0\xdd\x07\xe5\xf5\xda\xd5\x6e\x1b\x2c\x67\x05\x06\x80\x92\x8e\x55\x4a\xc9\xb2\xda\xd3\x9a\x0f\xf5\x55\x9d\xa9\xe0\xf1\x8a\xb1\x40\x9a\x04\xe3\xf5\x1d\x8b\x7f\x72\xbd\x51\x7f\x13\x96\x2f\x59\xfe\xe2\xc5\x8b\x72\x62\x62\xc2\x6f\xa6\x58\x17\x5e\x41\xdf\xec\xc6\x1a\xcf\x5c\x2e\x97\x39\x1e\x8f\x53\x6b\x6b\x2b\x13\x91\x29\xc1\x62\x2e\x51\xc9\xed\x9c\x89\x1f\x08\x49\x11\x22\x7b\x37\x70\x95\x83\xa1\xba\x84\x64\x6f\x66\xad\x31\x61\x10\x20\x98\xd4\xde\xa5\xf0\xc1\xbc\x26\x47\xe7\x12\x95\x31\x45\x51\x2a\x5b\xb7\x6e\x35\x67\x67\x67\x61\x13\x99\xb7\x52\x5e\x82\x90\x01\x69\x41\xb8\x3b\xf7\x22\x20\xff\x46\x60\xf9\x61\xfa\x1b\xdb\x69\xe0\xd5\xf2\xae\xf5\x7c\x4b\x60\xd9\xfe\x7c\x92\x88\x58\x82\x31\xde\x5c\x9e\x56\xa5\x68\x6c\xcb\x6b\x3d\xc4\x24\x5c\x85\xdf\xe6\x03\xb9\xb0\x99\x79\x7d\x7b\xe6\x2f\x2e\xb4\x17\x9e\x03\xe1\x2a\x80\x05\x29\x65\xf9\xb9\xe7\x9e\x93\x37\x8a\x97\x7f\x57\xd1\x7a\x82\x00\xc0\x73\x73\x73\x34\x30\x30\x20\x43\xa1\x10\x03\xe0\x52\x88\x0d\x53\xe1\xf8\xe6\xc5\xc8\x6e\xc7\xc8\x5a\xb3\x24\xe9\xd4\x83\x60\x2d\x2b\x79\x26\x9a\xce\x19\x5b\x0a\x23\xdc\xbb\x18\x79\xb8\xa0\xc9\xab\x73\x0d\x95\x6b\x42\x08\xa3\xbf\xbf\xdf\x9c\x99\x99\x41\x2e\x97\xf3\x72\x18\x2f\xa1\xd4\x1b\x59\xf5\x38\x18\x50\xcb\xad\x6e\x04\x16\x61\xe5\x88\xf5\x72\xba\x20\xa3\xe4\x6a\xdc\xf3\xb6\xc0\x9a\x9b\x9b\xa3\xfe\xfe\x7e\x0e\x87\xc3\x12\x40\xc5\x14\x5c\x1e\x4f\x95\x47\xaf\x35\x97\xae\x57\x14\x96\x00\xb8\x1c\x92\xc5\xd9\x84\x3e\x79\xaa\x3b\xf7\xfe\x91\xff\xaf\xbd\x6b\x6b\x8e\x1b\xb9\xce\xdf\x69\x00\x33\x18\x92\x73\xe1\x68\xc4\x9b\x48\x5a\x1c\x51\x0a\x75\xf1\xca\xab\x75\x76\xd7\xd2\x6a\x57\x8e\xbd\xa9\xf2\x3a\xb5\xa9\x52\x25\x0f\xa9\xa4\x2a\x65\x3f\xe4\x2f\xa4\xfc\xe0\xca\x7b\xf2\x90\xb7\xbc\xe5\x25\xe5\x5c\x2a\x15\x57\x2a\x76\xbc\xf1\x26\xa9\xf2\x6d\x77\x63\xaf\x6d\xa9\xb4\xa6\xee\xd4\x9d\xe4\x90\x12\x87\x1c\x0e\x67\x06\x33\x18\xa0\x4f\x1e\x30\x98\x69\x80\x98\x0b\x29\xae\xd7\x76\xd2\x55\x28\x00\xdd\xa7\x3f\x74\x37\x0e\xce\x39\x68\x1c\xf4\x99\xdf\xfe\xa7\x42\xca\xfe\x21\x08\x4b\x2d\x0f\x56\xeb\xd6\xad\x5b\xf2\xf1\xe3\xc7\x51\xd2\x7c\xa0\x76\xf5\x74\x99\x8e\xa8\xd0\x7e\xca\x1d\xc7\xa1\x9d\x9d\x1d\xe4\xf3\x79\x49\x44\x12\x04\x3c\x1b\xb1\xcb\x87\x2b\xb1\xf9\x51\x4b\x1f\xef\x4c\xab\x7a\x90\x1d\x91\xa0\xa8\x46\xa8\xef\x30\x9e\x5c\xd3\x98\xcc\xa3\x9b\xe6\x9b\x0d\x5d\xae\x3c\x4d\x36\x1f\x09\x4d\x73\xf2\xf9\xbc\xc3\xcc\xb4\xbe\xbe\x0e\xa5\xad\x12\xe1\xd9\x91\xe0\x06\x74\x06\x02\xca\x5e\xcd\xdf\x2f\x96\x4f\x1f\x66\x4e\x95\x2e\x7c\xe3\xa3\xae\xfb\xb1\x62\x49\x29\xb1\xb6\xb6\x86\xb9\xb9\x39\x57\xd7\xf5\x26\x11\x59\x20\x54\xaa\x71\xb7\xf0\x70\xd4\x5a\x5c\x9c\xac\x7e\xf8\x8b\x23\xd5\x1f\xde\x1a\xaf\xfd\x70\x35\xd5\xf8\x9f\xa6\xce\x37\x18\xfc\x00\xc0\x3a\x11\x55\xb7\xb6\xb6\x9c\xef\x7e\xf7\xbb\xaa\x31\xbf\xe7\x76\xf5\x74\x99\x56\xf2\xc2\x7b\x00\xe0\x52\xa9\xc4\x53\x53\x53\x48\x26\x93\x2e\x33\xbb\x2c\x88\xd6\x93\xf6\xf6\x7c\x31\xf1\x52\xdc\x15\x09\x02\x10\x30\xe8\xdb\x6b\x69\xb5\x16\xd4\x20\x2f\xcf\x57\x99\x7e\x13\x05\x93\x31\x53\x32\x3f\xaf\x31\xaa\xab\xe9\xc6\x6d\xd2\x44\x73\x7a\x7a\x5a\x0a\x21\x78\x75\x75\x55\x15\xd7\x3e\x73\x84\xd5\xbc\x9f\x8f\x88\xb2\x6e\x66\xc0\x5e\xb0\xd0\xa5\x1e\x61\xf7\xe0\xf7\xba\x6e\x5f\xac\xb1\xb1\x31\x0a\xfd\x0e\xb7\x27\x2c\xcb\xb2\x78\x65\x65\x85\xf2\xf9\xbc\xab\xeb\xba\xcd\xcc\x55\x00\xdb\x44\x54\x24\xa2\x35\x00\x2b\xcc\xfc\x84\x88\x9e\x30\x73\x01\xde\x3a\x64\xb5\xcd\xcd\x4d\xf7\x9b\xdf\xfc\xa6\x54\xb1\xf6\xd3\x47\xd5\xe1\xb0\x9b\x61\x1f\x25\x8a\xdb\x79\x4f\x9f\x3e\xa5\x7c\x3e\x2f\x75\x5d\x97\x00\x9c\x86\x21\x9d\xed\x84\xe3\x1c\xdb\x18\x7a\x51\x80\x84\x1a\xc0\x32\x60\xf8\xfb\xf9\x81\x15\x13\x5b\xad\x23\x40\x80\x8c\xa9\xed\xf8\xeb\xa9\x86\x3e\xb2\x3c\xda\x58\x74\x88\xed\xc9\xc9\x49\x67\x72\x72\x12\xeb\xeb\xeb\xd4\x68\x34\xb8\x47\xfb\xba\x19\xe2\xbd\xfa\x33\x28\x56\x94\xaa\x08\x0f\x7a\x14\xed\x20\x79\x6d\xac\x5c\x2e\x47\x6f\xbd\xf5\x16\xbd\xf8\xe2\x8b\xe2\xdc\xb9\x73\xe2\xa5\x97\x5e\x12\x27\x4e\x9c\x40\xb5\x5a\xa5\x52\xa9\xb4\x27\x2c\xcb\xb2\xe8\xda\xb5\x6b\x72\x74\x74\x94\x33\x99\x8c\xd3\xfa\xa1\xa3\x02\x6f\xc5\xc4\x12\x11\x6d\xc1\x63\x3a\x8b\x99\x1b\x8a\xef\xfe\x73\xf7\xb1\xa7\xcb\xb4\x52\x16\xe6\xd6\xf6\xbe\x5e\xaf\xf3\xce\xce\x0e\xcd\xcd\xcd\x49\x21\x84\xcb\x80\x2c\x0d\xb9\x15\xc1\x48\x4f\x6d\xc7\x8f\x0b\x45\xf3\x90\xb2\x57\xcf\xc2\xff\xed\xb6\x5f\x0c\x00\x91\xab\x1a\x9f\x9d\x2d\x99\xa7\xd6\x52\xcd\x45\xcb\x90\x95\x64\x2a\xe9\xcc\xcf\xcf\xcb\x66\xb3\x49\xc5\x62\x11\xec\xaf\x04\xd7\x49\xea\x00\xa8\xaf\xd0\xbd\x9e\x3e\xd5\xf0\xef\x87\x15\x35\x0e\x84\xe8\xf1\x0a\x3f\xd1\xe1\x7a\xbb\xf2\x0c\xc3\xa0\x97\x5f\x7e\x99\x2e\x5d\xba\x24\x12\x89\x84\x41\x8c\xa1\xdf\x7a\x3a\x7c\xc6\xd1\xd8\xe5\x61\xc3\x9e\x9b\x9b\xe3\x72\xb9\xcc\x9b\x9b\x9b\x83\xe0\x07\xda\x71\xff\xfe\x7d\xba\x72\xe5\x8a\x3b\x3c\x3c\xcc\xb1\x58\xcc\xb1\x6d\xbb\x69\x18\x86\xbd\xb3\xb3\xd3\xdc\xdc\xdc\x74\xef\xdc\xb9\x23\xbf\xf3\x9d\xef\xc8\xd5\xd5\xd5\x03\xeb\x63\x5f\x97\x69\x74\x06\x37\xfc\xfa\xec\x97\x73\xa9\x54\xa2\x4c\x26\xc3\xd9\x6c\x56\x12\x51\x13\x04\xb9\x96\xb2\x4b\xa3\x96\x31\x93\xad\xe9\x93\x04\x80\x38\x28\xc5\x7c\x75\xe9\xfd\xf5\xc6\x9d\xc8\x66\xd4\xea\x0d\xa3\x45\x4b\x18\xb1\xb5\xfc\x7c\x71\xe8\x92\x65\xb8\xcb\xc5\xe1\xe6\x9a\x6e\xe8\xee\xcc\xcc\x8c\x1c\x1f\x1f\xe7\x42\xa1\x40\xb6\x6d\xab\xed\xf2\x19\x46\x86\xdb\xd9\xa3\x9f\xac\xd4\xeb\x87\x05\xec\x96\x72\x2a\x2d\x87\xca\x06\x3e\x9e\x99\x99\x11\x97\x2e\x5d\x42\x3e\x9f\x17\x00\x4c\xc3\xa1\xdc\x85\x07\x99\xaf\x5c\x78\x98\xfe\x9b\x51\xcb\x98\x58\x3a\x6c\xfd\x14\x82\xec\xd9\xd9\x59\xe7\xea\xd5\xab\x83\xe0\x46\xb6\xeb\xf1\xe3\xc7\x74\xfd\xfa\x75\xb9\xb8\xb8\xc8\x4b\x4b\x4b\x74\xe5\xca\x15\x79\xe7\xce\x1d\x2e\x14\x0a\x51\x2f\x1b\xcf\xd5\xc7\xbe\x2e\xd3\x08\x1a\x91\x61\xda\xf6\xeb\xfd\xc3\x87\x0f\xe9\xc4\x89\x13\x32\x1e\x8f\x7b\x33\xfd\x02\xee\x93\x4c\x63\x7d\xba\x14\x3f\x35\x62\xeb\x19\x0f\x45\x81\x69\x1f\x72\x6b\xba\xc2\x5f\xb1\x5a\x11\x63\xe8\x2c\x51\x19\x73\x29\x3b\xb7\x99\xf8\x72\xba\xae\x8f\xac\x25\x1b\x4b\x4d\x0d\x8d\x64\x2a\xe9\x9e\x3a\x75\x4a\x1a\x86\x41\x2b\x2b\x2b\x51\xed\x0a\x4b\xa9\x70\xfb\xc3\x26\x41\xaf\x3e\x86\x07\x5b\x7d\x82\xc3\x63\x44\x4a\x5d\x75\x2c\xfd\xfa\xaa\xda\x45\x3a\x9d\xa6\x57\x5f\x7d\x95\x5e\x79\xe5\x15\x31\x3c\x3c\x6c\x80\x31\x72\xb8\x62\x9c\x7e\xeb\xe6\xa1\xbf\x3a\xbe\x91\xf8\x33\x02\x86\xd2\x96\xfe\x82\xa3\xf1\xfa\x6a\xca\xbe\x4d\x44\xcd\x93\x27\x4f\xca\x1b\x37\x6e\x50\x6b\xb6\x5e\x60\xf7\x3d\x1a\xa8\x5d\xca\xc3\xb9\xab\x5d\x07\xd1\xc7\xbe\x2e\xd3\x08\x1a\xbe\xe1\x0b\x06\xa4\xc2\xe2\xe2\x22\x9f\x3d\x7b\x56\x6a\x9a\xe6\x32\xb3\xed\x6a\x70\x56\xd2\x8d\x67\x47\xb7\xcc\x4f\x9b\x8e\x36\x4c\xad\x36\x74\x1c\xde\xfc\x8b\xfa\x4a\x53\x31\xfe\xfd\x06\xb5\xc3\xe5\x11\x08\xd0\x0f\x57\x8d\x97\x8f\x3f\x1b\x7a\xc3\x32\x64\xa1\x34\xec\x3c\x83\x20\x39\x39\x39\xe9\x9e\x38\x71\x02\xcd\x66\x13\xc5\x62\x31\x3c\xa7\x15\xee\x87\x5f\x46\xca\x9e\x42\x79\x50\x8e\xc3\x58\x61\x63\x57\xcd\x0b\x6f\x6a\x0a\xdb\x7a\x0c\x80\x3f\xf7\xb9\xcf\xd1\xa5\x4b\x97\x90\xcb\xe5\x74\x22\x4a\xc4\x9b\x34\xfe\xdb\x4f\x52\x7f\xf2\x85\xbb\xd9\xbf\x4e\xd7\x8d\xcf\x10\xda\xaf\x48\x62\x62\x27\xf6\xd9\xd5\xb4\xfd\xb3\xb2\xe9\x14\x0c\xc3\x70\xb2\xd9\xac\xbc\x77\xef\x5e\xf8\x9a\x07\xd2\xae\x83\xc2\x1a\xc8\x65\x5a\xd9\x10\xba\xe0\xae\x17\x83\xad\xad\x2d\x1c\x3d\x7a\xd4\x11\x42\xb8\xcc\x6c\x37\x0c\x6e\x14\xd2\x8d\x52\xbe\x68\x9e\x31\x1c\x32\x7d\x14\xf5\xd7\x36\xdf\x15\xc9\x9f\xf3\xf3\x4f\x3c\xe3\x9f\xe1\x1b\x69\x7e\x03\xe2\xae\x36\x76\x6c\x33\xf1\x7b\x93\xdb\xf1\xb9\x72\xc2\x79\x5c\x8e\x3b\x95\x58\x2c\xc6\x47\x8f\x1e\x95\xf3\xf3\xf3\x88\xc7\xe3\x28\x95\x4a\xd4\xfa\xed\x2a\xdc\xee\x70\xdf\x10\x91\x17\x2e\x57\x6d\xb1\xf0\x93\x4b\xa1\x4d\x55\x23\x02\xbb\xc7\x8e\x93\xc9\xa4\x38\x7f\xfe\x3c\xbd\xfe\xfa\xeb\x34\x35\x35\xa5\x0b\x21\x4c\xc1\x94\x3e\xfe\x2c\x71\xf1\x77\x6f\x67\xff\xf2\xf8\xc6\xd0\x57\x34\x49\x49\xff\xf3\x0d\x00\x30\x33\x34\xa6\xc4\x64\x39\x7e\x72\x69\xcc\xfa\x7e\x53\xe3\x9d\x4c\x26\xe3\xb4\xfe\x6b\x38\x90\x76\x85\xf2\x0f\x04\x6b\x20\x97\x69\x85\x26\x6c\xc3\xa8\x65\x00\xbc\xa9\x0b\x00\x74\xe4\xc8\x11\x97\x88\x1c\x10\xec\x6a\x4c\x56\xd7\x52\xf6\x76\x7e\x33\xf1\xe9\x98\x14\x31\xcf\xd0\x6a\x49\x2d\xea\x6c\x81\xf3\x8e\x21\x16\xf8\xf7\x12\xdc\x96\x75\x7a\xba\xae\x9d\x5e\x58\x1f\xbe\x7c\xc8\x32\xb2\xe5\x84\xbb\x56\x33\xa4\x65\x9a\x26\x4f\x4d\x4d\xc9\xd3\xa7\x4f\x73\x3a\x9d\xa6\x6a\xb5\x8a\x7a\xbd\xae\xbe\x0c\x84\xfb\x13\xb5\x85\x25\x5a\x58\x72\x87\x27\x6a\xc3\x4f\x74\xd4\xf8\xf0\xd4\xd4\x94\x38\x7f\xfe\x3c\x5d\xb8\x70\x01\xb9\x5c\x4e\xd7\x75\xdd\xd4\x98\x92\x33\x5b\xf1\x97\xde\xbc\x93\xfd\x8b\x73\xcb\xc9\xaf\x0d\x35\xb5\xbc\x27\xe4\x5b\x33\x86\xbe\xa4\x6f\xf5\x3d\xe1\x88\x89\x74\x5d\xcf\xdc\xcf\x59\x3f\x66\x41\xd6\xf8\xf8\xb8\xb3\xba\xba\xea\x2f\x13\xbf\xaf\x76\xb5\xf2\x54\xc9\x7e\x60\x58\x03\xb9\x4c\xb7\xf2\xc2\xe5\xea\x53\x1d\xc0\x58\x5b\x5b\x23\xd3\x34\xf9\xf0\xe1\xc3\x5e\x30\x4c\x70\xb3\x12\x97\xe5\xb5\x94\x5d\x9a\x2d\xc5\x17\x62\x2e\x99\xe4\xeb\xc7\xce\x4f\x94\xca\x23\xd0\x89\x19\xe4\x2f\x68\xd7\x59\xe1\x06\xf0\x0b\x5b\x2a\xd5\xcc\xd5\x8c\x97\x4f\xae\x0f\xff\x7e\xb6\x66\x8c\x57\x63\xee\xb3\x6a\xdc\xb5\x84\x26\x90\xcd\x66\x79\x61\x61\x01\xf3\xf3\xf3\x9c\x4c\x26\xc9\xb6\x6d\xaa\x56\xab\x61\x06\x89\x7a\xbd\x8e\x92\x76\x6a\x9e\xda\x6f\x75\xbc\xa2\x12\x5f\xbc\x78\x51\xbc\xf6\xda\x6b\x74\xfa\xf4\x69\x91\xc9\x64\x0c\x00\x09\x9d\x29\x75\x74\xd3\x7c\xf5\xd2\xd2\xe8\xd7\x5e\x7e\x92\xfa\x7a\xa6\x6e\x9c\x05\x48\xf7\xbb\xd7\x71\x6d\xee\x00\xf9\x9f\xd6\x46\x6b\xc6\x42\x53\xe3\xb5\x42\xca\xbe\x25\x34\xd1\x9c\x9c\x9c\x74\xef\xde\xbd\x0b\xd7\x75\xf7\xd4\xae\x50\x79\xd8\x54\x38\x10\x2c\x42\xf4\x5b\x52\x38\xf5\xa2\x51\xd5\x65\xc0\x56\xf9\xe2\x17\xbf\x28\xf2\xf9\xbc\x0e\x60\x08\xc0\x04\x18\x27\xc6\x2a\xc6\xc5\x2f\xdf\xc8\x7d\x35\x55\xd7\xb2\x1d\x27\xeb\x2e\xad\xe6\xe0\x00\x47\xf7\x8b\x94\x33\x86\x4b\x28\x17\xd2\x8d\xff\xbe\x3e\x51\xfd\xfb\x87\xd9\xfa\xcf\xea\xba\x2c\x83\x60\xc3\x0b\x39\x2c\x2d\xcb\x92\xab\xab\xab\x58\x5b\x5b\xf3\x63\x21\x0e\xd2\xc7\xa8\xf2\x48\xfa\xb1\xb1\x31\x31\x39\x39\x89\x89\x89\x09\x8c\x8d\x8d\x21\x91\x48\x08\xc0\x73\xfc\x23\x90\x39\x6c\x6b\xd9\xe3\xcf\x12\x97\x4e\xad\x0d\xff\x51\xae\x6a\x9c\x27\xc0\x6c\xbf\x31\x73\xab\x4f\x11\xbf\xfd\x75\x6e\xb7\x57\x6e\x6b\x72\xf3\xdf\xce\x6c\xfc\xe9\x4a\xa6\xf1\x01\x80\xca\xbd\x7b\xf7\x1c\x65\xee\xaa\xdf\xbd\x1a\xb4\xec\xb9\xb1\xa8\x0f\x71\x14\xf3\x84\xe9\xa3\xca\xe0\xe7\x5d\xbe\x7c\x59\xe4\x72\x39\x1d\xc0\x10\x33\x8f\x11\xd1\x7c\xda\xd2\x5e\xf9\xd2\x8d\xdc\x57\xc7\x2b\xc6\x34\xa9\x83\x07\xff\x4f\xf0\x8e\x60\xf3\x64\x18\x05\x98\x4d\x11\x7a\x01\xfb\xcd\x2f\x6b\x2d\xf7\x28\x6b\x86\xbc\xf3\x30\x5b\xff\xf7\x7b\xb9\xda\x7f\x15\x52\xf6\x2d\xcb\x90\x15\x10\x6c\xf6\xc2\x0c\x4b\x00\x92\x99\x65\xb1\x58\x84\x65\x59\x58\x5e\x5e\x86\x94\x12\xd7\xaf\x5f\x97\x00\x30\x32\x32\x22\x2a\x95\x8a\xf4\xf7\xea\xc0\x2c\x2c\x2c\x08\x4d\xd3\x10\x8f\xc7\x31\x3e\x3e\x0e\xc3\x30\xd0\x5a\x82\xdc\x8f\x32\xe7\x33\x55\x6c\xc4\xd6\xb2\x47\x4a\xf1\x33\xc7\x37\x12\x5f\x9a\xd9\x32\xdf\x8a\xb9\x34\xdd\xfe\x59\xa6\x65\x0a\xa8\xe7\xfe\xb2\x95\x6d\x35\xd9\x2a\xf0\xff\x9a\xf7\xc7\xa7\x34\xd4\xfc\xe8\x5f\xce\x3e\xfb\x4a\x35\xee\x2e\x01\xa8\x7d\xf0\xc1\x07\x72\x71\x71\xb1\x3d\xf6\x03\xdc\xbf\xf0\x7d\x44\x17\xba\x7d\x63\x0d\xca\x60\x51\x69\x10\xc9\x07\x20\xc8\x64\x00\x72\x00\xf2\x43\xb6\x38\xf7\x85\x3b\xa3\x7f\x9c\x2f\x26\xce\x04\x24\x99\x2a\x98\x29\x9c\x19\x4c\x81\xf8\xd6\xbb\xca\xda\xfc\x09\x49\x5c\xaf\xc5\xe4\xd2\x5a\xb2\xf1\xe3\xc7\xa3\x8d\x1f\x15\xd2\x8d\x8f\xb6\x12\xce\x5a\x53\xc8\xb6\x43\x5d\x6b\x2d\xad\xb6\x7f\x93\xaf\x92\x5b\x65\xed\x28\xb0\x40\x60\x41\x3a\xc0\x63\x24\xd1\x1a\x0f\x1d\x80\x1e\x77\x85\x39\x5a\x33\xa6\xa6\xb7\xe3\xe7\x66\xb6\xe2\x17\xc7\x77\x62\xaf\x9a\x8e\x38\x4a\x08\x06\x6a\x8d\xee\x55\xb0\x54\x89\xbf\x1b\xd9\xff\xa5\x9c\xf5\x0f\xff\x71\xb2\xf8\x75\x97\x78\xad\x56\xab\xd5\x5b\x4b\x33\x75\x4b\xbd\x04\xc3\x5e\xd3\x40\x58\x61\x15\x39\x88\xc4\x0a\xe7\x75\xab\x0f\x3f\xdf\x34\x4d\xf1\xc6\x1b\x6f\x60\x76\x76\x56\x10\xd1\x10\x33\x67\x89\x28\xaf\xbb\xb4\xf0\xea\xa3\xd4\x1f\xbe\xb8\x9c\x7c\x5d\xe3\x56\x58\x1b\xc5\xb8\xf7\x86\x10\x5d\x07\x38\x78\x8b\x22\x6e\x57\x40\xc7\xb6\x3f\xac\x4b\x97\x50\xb6\x0c\xf7\x71\x71\xd8\x59\xdc\x18\xb6\xaf\x6f\x8c\x34\xef\x94\x4d\xe7\xf1\x4e\xdc\xdd\xb4\x0c\x59\x93\xc4\x0e\x13\x24\x63\x97\x43\x1d\x00\x08\x82\x17\xcb\x5c\x30\xc5\x12\x4d\x61\xa6\xea\xfa\x58\xaa\xae\x4d\xe7\xaa\xc6\xc2\xd8\x4e\xec\xf4\xa8\x65\x9c\x49\x34\xc5\xac\x60\x8c\x04\x5b\x47\xca\x31\xb7\x8e\x09\xd1\xab\x39\xfb\x4d\x57\xcf\x79\x17\x96\x04\x3b\x1f\xcc\x6d\xff\xf9\x4f\x67\xca\x7f\x47\x44\xa5\x0f\x3f\xfc\x50\x46\x84\xd7\xeb\xb6\x0f\xf4\xab\xb5\xef\x46\xb7\x2f\xac\xc8\x55\xa6\x43\xa0\xea\x45\xc3\x0d\xe8\x55\xa7\x7d\x5c\xaf\xd7\xe5\xbb\xef\xbe\x2b\x2e\x5c\xb8\x20\x4f\x9d\x3a\x55\x83\xa7\x9a\x9c\xa6\xe0\xfa\x7b\x73\xdb\x95\xa7\x23\xf6\xf2\x1b\xf7\x46\xdf\x1e\xb2\x45\x2a\x60\x6f\xb4\x8e\x83\x8b\xaa\x74\x54\xa6\x6f\xb7\x74\x5c\x80\xfd\xc4\xf0\x3f\xb2\x87\xb1\x00\x16\x3a\x28\x33\xd2\xd0\x33\x23\xb6\xf6\xc2\xd1\x2d\x13\x2d\xcf\x74\x5b\x12\x2a\x8e\xc6\x1b\x0d\x4d\x96\x1a\x86\x2c\xd7\x75\x59\x96\x82\x6d\xe9\x49\x39\x10\xa0\xeb\x92\x62\x71\x47\x8c\xc4\x1d\x91\x89\x37\x45\x4e\x97\x94\x69\x31\x52\xac\xd3\x2e\x28\xed\xf2\x25\x29\x7b\x4d\x68\xaf\xd8\xec\x11\xf5\x5b\x19\x3a\xdc\xc7\x30\x96\x14\x90\xc9\x46\x3b\x72\x87\x9e\xcb\xe5\xfc\xe5\x17\xc3\x0f\x7b\xf8\x3c\xea\xde\x45\x95\x3f\x17\xd6\x7e\x63\x6b\x0f\x72\x1c\x4e\xf2\xfd\xf7\xdf\x87\x6d\xdb\x78\xe1\x85\x17\x6a\x9a\xa6\x49\x78\x86\x77\xfd\xce\x61\xab\x56\x1c\x6e\xae\x7e\xfe\xee\xe8\x1f\x1c\xd9\x8e\xe7\x03\x12\x8b\xe0\x31\x4b\xc8\xf6\x25\xf5\x0d\x14\x08\x49\x81\x50\xfd\x7e\x58\x20\x10\x73\x4c\x30\x65\x75\xa6\xac\xe9\x10\xd0\x50\x86\xa6\x9b\x2e\x0b\x49\xc8\x40\xbb\x28\xd8\xae\xa0\x6b\x72\xa7\xd5\x6a\x1d\x0a\xd4\xe9\x8f\x55\x89\xbb\xa5\x1f\xcc\x97\xbe\x71\x2f\x67\xfd\x2b\x76\x4b\x5b\x19\xda\x03\xd1\xd2\x26\x4c\xb7\x4b\x03\x3d\x0f\xd6\xbe\x5c\xa6\x95\xbc\xf0\xbe\x17\x0d\x01\xa0\xd5\xd5\x55\x6c\x6e\x6e\x62\x6e\x6e\xce\x21\xa2\x26\x80\x2a\x80\xaa\x15\xe3\xcd\x3b\x87\xad\x7b\x92\xa0\x8d\x55\x62\x47\x34\x86\xae\x7a\x61\xa8\xd2\xa0\x1d\x37\xbb\x35\xd5\x11\x1c\x7e\xff\x0d\xa0\x63\xc3\x78\xa5\x07\x87\xd5\xae\x49\xc1\x70\x14\x2a\x56\x87\x1f\x7d\xe3\x3d\xe8\x9a\x1c\x9e\x09\xd8\x0b\x96\x4b\x2c\xef\xe5\xac\xeb\xef\x9c\x2a\xfe\xed\x5a\xca\x7e\x0f\x84\x47\xf0\x56\xbf\xb6\x6f\xdd\xba\xc5\x4f\x9f\x3e\xed\x36\xb5\xa0\x1e\x47\x4d\x4d\xf9\xe7\xe1\xe9\x9b\x7d\x63\xed\xcb\x65\x3a\x74\x81\x28\x1a\xea\x51\x9f\xb6\xb7\xb7\xe5\xd5\xab\x57\xf9\xf8\xf1\xe3\xd2\x34\x4d\xa7\xe5\x26\x52\x63\x81\x9d\x95\x74\xe3\xc9\xf2\x68\x63\x2d\x5b\x33\xc6\x93\x0d\x2d\x43\xed\x70\xc6\xfe\x83\xdc\x62\x01\x4f\xdd\xb5\x9f\xfa\xce\x5b\xbc\x2f\x15\x3a\xab\x2f\xfa\xef\x62\x07\x85\x45\xad\xe3\x36\xff\xb5\x9f\xa9\x8e\x3a\x0c\x63\x75\x5c\x93\x83\x18\x7b\xc5\xda\x89\x3b\xa5\x1f\x1d\x2b\x7d\xfb\xc7\x47\xcb\xff\xdc\x30\xf8\x1a\x08\xf7\x99\xf9\x19\x80\x5a\xa9\x54\x72\xbf\xf7\xbd\xef\xa9\x52\x45\x65\x02\x20\xc8\x24\x1c\x2a\x1f\xe4\x7c\xcf\x58\xfb\x76\x99\x8e\xd8\xab\x29\x4a\x8a\xa9\x65\x0c\x00\xd7\xaf\x5f\xe7\x6c\x36\xeb\xfb\x28\xd5\x01\xd4\x18\x5c\xa9\x9a\xb2\x78\x77\xac\x76\xb7\x66\x48\x67\xac\x12\x9b\x32\xa4\x88\xed\xd2\x7a\x14\x62\x92\xb6\xfa\xe8\x68\xad\xa0\xda\x44\xe7\xef\xe5\xe7\xc2\x52\x42\xe9\x84\x54\x57\xbb\xe3\xa4\xe6\x2a\x12\xc9\xe3\x18\xf8\xf2\xb4\x9d\x3f\x00\x96\x43\xec\xdc\x98\xa8\x5e\xf9\xcf\x85\xcd\x6f\xac\xa4\xed\x1f\x48\xe2\x9b\x00\x1e\x90\xb7\x8e\x7f\x65\x7b\x7b\xdb\x7d\xe7\x9d\x77\xd0\x6c\x36\xa3\xa4\x8e\x00\x94\x0e\x04\x53\xd4\x7d\x0c\x6b\xb0\x7d\x63\xed\xdb\x65\x5a\xa9\x03\xa5\x4c\x95\xfb\x50\x8e\x29\x54\xd6\x3e\xbf\x7f\xff\x3e\x59\x96\xc5\x53\x53\x53\x8e\x10\xa2\x01\xa0\x46\x44\x65\x29\x50\x5e\x4b\x36\x1e\xdf\x1a\xb7\x96\x74\x97\x12\x59\x4b\x3f\x2c\x18\x9a\xda\x48\xcf\xa8\xe6\x0e\x97\x80\x3b\xb7\xc6\x8f\xf7\xa8\x74\xa6\x73\xdb\x3a\xb9\xfb\xc3\xa2\x76\x9d\x60\x60\x0a\x95\x45\x3b\x5d\x25\xe5\x1a\xea\x11\x0f\x80\xe5\x12\xe4\x72\xa6\xf1\xe0\xdd\x93\x9b\xff\xf8\x8b\xa9\xea\xb7\x1b\xba\xbc\x46\x44\x77\x88\x68\x15\x40\x49\x4a\xd9\xb8\x7b\xf7\xae\x6c\x31\x97\x3a\x0b\x1f\xf5\x25\x22\x4a\x8d\x45\xdd\x27\x20\x38\xa3\xbf\x6f\x2c\xe5\x59\x3e\x90\xf4\x5c\x5f\x05\xde\x7e\xfb\x6d\xd1\xfa\x83\x38\x06\x60\x04\x40\x16\xc0\x34\x18\xb3\x63\x15\xe3\xec\x67\x9f\xa4\x7e\x67\xae\x68\x2e\x18\xae\xd0\x15\xad\x12\xec\xae\xb2\xdf\x65\x83\x47\xd0\xb4\x69\xf7\x82\xa5\x26\x65\xd6\x37\xb8\x30\x72\xe7\x3c\x24\x48\x83\xed\xe9\x82\x25\xc1\x58\x4f\xda\xcb\x3f\x9f\xd9\xf9\xfe\x83\x43\xd6\x4f\x1c\xe2\x87\x44\xb4\x0c\x2f\x50\x69\x99\x99\xed\x5a\xad\xe6\xbc\xf7\xde\x7b\x78\xf4\xe8\x51\xbf\x39\xcc\x5e\x53\x0a\x83\xa4\x7d\x63\x51\xa8\x82\x9f\x7a\x4d\x4b\xf4\x9b\x0f\x19\xb4\xde\xae\x0e\x08\x21\xc4\xb1\x63\xc7\x70\xe1\xc2\x05\xc4\x62\x31\x9d\x99\x4d\x22\x1a\x61\xe6\x31\x00\x53\x02\x34\x3d\xbe\x13\x3b\x7b\x6e\x39\xf9\xfa\x5c\xd1\x5c\xd0\x25\xe9\x1d\x75\xb3\x7b\x52\x32\x28\x0f\x54\xd5\xb3\x7b\x4d\xec\x8e\x24\xeb\x87\xd5\x71\x01\x57\xa7\x25\x42\xca\x33\x74\xce\x80\xff\x85\x42\xcd\x03\x76\x61\x31\xb1\x5c\x4f\xda\xab\x57\xa7\x2b\xef\xdd\x3f\x64\xfd\xc4\xd1\xf8\x31\x33\xfb\x8c\x55\x02\x50\x67\x66\x67\x69\x69\x49\xbe\xff\xfe\xfb\xbe\xd4\xea\x36\x87\x15\x95\x37\x08\xcd\x81\x61\x85\x9f\xa1\xfd\xcc\xe8\x77\x4b\xcf\x85\xf5\xe6\x9b\x6f\x8a\xd9\xd9\x59\xa1\x69\x9a\x0e\xc0\x64\xe6\x14\x11\xe5\xe0\x7d\xd3\x9c\xca\xd6\xf4\x93\x9f\x2e\x8c\x9c\x3f\xfe\x6c\xe8\xcc\xb0\x2d\x46\x3a\x9f\x5a\xba\x49\x8d\x8e\xa8\xf2\xe7\x99\x02\xa5\x1c\xf1\x6f\x40\x17\xac\xce\xa4\x67\x04\x86\x32\xcb\x1f\x2d\xf5\x42\x76\x21\x03\x20\x46\x53\x63\xfb\x49\xa6\x71\xff\xa3\xa9\xca\x07\x4f\x32\xf5\x6b\x52\x60\x19\xc0\x2a\xbc\xc0\x5c\x25\x00\x35\x66\xb6\xd7\xd7\xd7\xe5\xb7\xbe\xf5\xad\x41\xef\xc5\x20\x13\xe6\x83\xa6\x7d\x61\x51\x1f\xc2\x5e\x93\xab\xea\x45\x7a\xcd\xfc\x46\xe1\x00\xdd\xb1\x02\xe7\x97\x2f\x5f\x16\x87\x0e\x1d\x12\x44\xe4\x4b\xb4\x14\x80\x2c\x33\x4f\x10\x68\x62\xc8\x16\x73\xc7\x8a\x89\xcf\x2c\xac\x0f\x7f\x66\x7c\x27\x36\xa5\x33\xe9\x81\x5b\xd8\x11\x4d\x68\xbd\x2c\x06\x7c\xd1\x02\x64\x4a\x5e\xe7\x9b\x66\x08\x4b\x51\x85\x1e\x1d\xb7\x24\x18\x75\x95\x60\x3e\x9d\xaf\x3e\xfd\xeb\x48\x30\xca\xa6\xb3\x79\xf7\xb0\x75\xe3\xe6\x78\xf5\xc3\xad\x21\xe7\xae\x04\xaf\x12\xd1\x53\x84\x18\xab\x56\xab\xc9\x6b\xd7\xae\xc1\x8f\xdb\xdd\x63\x9c\xbb\x8d\x79\xaf\x89\xf1\x8f\x0d\x2b\x4a\x45\x76\x9b\xf6\x87\x52\x3e\x88\x18\xed\x57\xa7\x1f\x96\x27\x62\x89\x30\x3b\x3b\x8b\x73\xe7\xce\x21\x97\xcb\x09\x78\x71\x73\x4c\x00\x23\xcc\x9c\x69\x49\xb5\x31\x92\x98\xc8\xd5\x8c\x63\xc7\x36\x12\x2f\xe4\x8b\x89\x13\xd9\x9a\x31\xa6\x49\xe8\xaa\x8a\x0c\x0a\x93\x90\x49\x1d\x32\xf0\xd1\x2e\xe9\xd4\xf7\x67\xdf\x3b\x0e\x90\x9d\xaf\x0b\x3e\xa6\x3f\x33\x1f\x64\xba\xc0\xfb\xbc\xac\xc4\xdd\xf2\x93\xd1\xfa\xfd\xdb\x87\xad\x8f\x56\xd3\x8d\x9b\x8e\xe0\x55\x46\x3b\x54\xcb\x26\x33\x97\xc9\x8b\xd8\x61\x57\xab\x55\xb9\xb8\xb8\x88\xd6\x32\x96\xe1\x14\x65\xde\xf8\x63\x89\x88\xfc\x70\xf9\xc7\x8e\x45\xa1\x4c\xb5\x52\x14\xc3\x75\xe3\xd6\x6e\x69\x50\xdd\x1d\x75\x8d\x5d\xd7\x9a\x9b\x9b\x13\x67\xcf\x9e\xc5\xd8\xd8\x98\xe7\xa9\xe0\x45\x07\x33\x89\x28\xa5\x30\x5b\x4e\x48\xe4\x0e\xd5\x8c\xb9\xe9\x52\xfc\xc4\xcc\x96\x99\x1f\xaf\xc4\xa6\x12\xb6\x18\x22\x90\x08\xdb\x50\x9d\x14\xb6\xd7\x00\xa0\x13\xb7\xbb\x75\xda\xa6\x53\xed\xa6\xdd\xea\xb2\x73\xce\x60\xd8\x1a\xdb\x9b\x43\xcd\xa7\x2b\x99\xc6\xc3\x47\xa3\xf5\x3b\xeb\x49\xfb\x9e\xad\xc9\x35\xf6\x18\x6a\xa3\x15\xd0\xb4\xd4\x5a\x50\xa6\xce\xcc\x4e\xad\x56\x93\x57\xaf\x5e\x0d\xbb\x14\xf5\x1a\xa3\x41\xca\xa2\xd2\xc7\x8a\xe5\x4b\x30\x74\x01\x8f\x4a\x51\x52\x0b\x03\x9c\xef\x27\xed\xc2\x10\x42\x60\x7a\x7a\x1a\xf3\xf3\xf3\x98\x9f\x9f\x07\x33\xeb\xf0\xbc\x18\x4c\xf2\x82\xa7\x8e\x30\x73\x0a\x40\x96\x88\x32\xc4\xc8\x9a\x4d\x91\x1b\xb5\xf4\x99\xf1\x9d\xd8\xec\xe4\x76\x7c\xfa\x50\xcd\x18\x4b\x36\xb4\x94\xe1\x52\x4c\x9d\x3c\xe8\xc4\xb0\xe8\x48\x9d\xc0\xdf\x50\xbe\xb4\x62\x04\x54\xa4\xea\xea\x2d\x09\xd2\x32\xdc\x4a\x71\xc8\xd9\x78\x9a\xb4\x57\x0b\xa9\xc6\xe3\x8d\xe1\xe6\x72\x35\xee\x16\x5c\xc2\x26\x08\x25\x66\xde\x84\xc7\x50\x15\x66\xae\xf8\xd2\x8a\x88\x64\xb1\x58\x94\xb7\x6f\xdf\xc6\xed\xdb\xb7\x55\x03\x7e\x2f\x92\xa5\x57\xfe\x2f\x1d\xab\x9f\x0d\xe6\xa7\x7e\x76\xda\x41\x19\x8e\xbd\xca\x22\x69\xcf\x9d\x3b\x27\x4e\x9f\x3e\x0d\xd3\x34\x7d\x3f\x2c\x1d\xde\x87\x5f\x13\x9e\x7b\xd0\x08\x80\x14\x80\x11\x30\x52\x00\x52\xc4\x18\x89\xbb\x22\x9d\xae\xeb\x63\x69\x4b\xcb\xa5\xea\x7a\x36\x59\xd7\x53\xc9\x86\x96\x32\x1d\x61\xc6\x1c\x32\x0d\x57\xc4\x84\xe7\x31\x21\xa8\x35\x58\x4c\x90\x92\x58\x3a\x82\x1d\x5b\x63\xbb\xa1\xcb\x7a\x35\xe6\x56\x2a\x71\xb7\x54\x36\x9d\x52\x29\xe1\x6c\x6c\x9b\xce\x46\x35\x26\x8b\xae\xe0\x32\xbc\x95\x20\xcb\xe4\x05\x30\x2d\xc3\xfb\xd9\xb5\x02\x2f\xba\xae\xdd\xda\x1c\xdb\xb6\xe5\xa3\x47\x8f\x70\xf3\xe6\x4d\x28\x51\x63\xf7\x32\x26\xfd\x6c\xe5\x4f\x0c\x8b\x94\x0c\x20\xc8\x7d\x83\x70\xfa\x7e\x6c\xb0\x28\x9c\x6e\x58\x51\x18\x5d\x07\xe1\xe2\xc5\x8b\x62\x66\x66\x06\x23\x23\x23\x02\xf0\x1c\xfe\xe0\x31\x5c\x0c\x9e\x84\x33\xe1\x39\x3e\xfa\xd2\x4e\x3d\x8f\x01\x30\xc1\xd0\x09\x88\x69\x92\x74\xc1\xd0\x89\x49\x17\x0c\xcd\xfb\x46\xce\x4d\x49\x90\xae\x60\x5b\x12\x1c\x06\xdb\xe4\xc5\x56\xac\x93\x17\x5c\xbe\x0e\xa0\x06\xcf\x30\xaf\xf9\x5f\x27\x5a\xf9\xbe\xa3\xa3\xc3\xcc\x8e\x6d\xdb\x72\x65\x65\x05\x0f\x1e\x3c\xc0\xf2\xf2\x32\x1a\x8d\xc6\xa0\xa6\x47\x3f\xe3\x7b\x2f\x66\xcc\xc7\x8e\x75\x90\x12\x6c\xaf\xf6\xd9\x20\x69\x2f\x9d\x0a\xa4\xd7\x5e\x7b\x4d\x4c\x4c\x4c\x20\x93\xc9\x40\x08\x21\x5a\xb4\xba\xb2\x8f\x75\xd9\xab\x9b\x3f\x50\xea\xe0\x4b\x66\x96\xad\xb5\x6a\xfd\xcd\x8e\xda\x87\x3d\x67\x2d\xcb\x92\x85\x42\x01\x0f\x1e\x3c\x40\x2b\x36\xc0\x20\xfd\xdc\x6b\xd9\xaf\x14\x16\xf5\x21\xee\x67\x88\x47\xd5\xed\x65\xd3\xed\x85\x91\x7b\xbd\x0c\x74\x7b\xf2\x22\xdb\xfc\xa9\x4f\x7d\x4a\x1c\x39\x72\x04\xd3\xd3\xd3\x30\x4d\x13\xf1\x78\x5c\xa8\xde\xa8\x61\xcf\xd4\x96\xaa\x85\x5f\xd6\xca\x07\xd0\xf6\x6e\x95\xfe\x31\x3a\x0c\x27\xd5\x7c\xc7\x71\xa4\x65\x59\x28\x14\x0a\x28\x14\x0a\xb8\x7d\xfb\x76\xb7\xf6\xf6\xeb\x77\x98\xa6\x57\xdf\x7f\xe5\xb0\x06\x65\xb0\xa8\xb4\x5f\x29\x75\x10\xd2\x2d\x8a\xf9\xb0\x57\xdc\xb3\x67\xcf\x8a\x6c\x36\x8b\x64\x32\x09\x5d\xd7\x71\xe8\xd0\xa1\x36\xbe\xea\x26\x1d\x72\x99\xf6\xcf\x25\x11\xa1\x5c\x2e\xa3\x56\xf3\xc2\x05\xac\xac\xac\xa0\xd1\x68\x60\x65\x65\x05\x5b\x5b\x5b\x07\x25\xcd\x0f\x52\x33\x7c\x22\x58\x22\xe2\x38\x6c\x03\x45\xd9\x44\x51\xb4\x6a\x5e\x54\x7e\xbf\xb4\x9f\xeb\xf4\x2b\x1b\x08\xcb\x97\x5a\xb1\x58\xac\x5d\x36\x33\x33\x23\x00\x60\x7e\x7e\xbe\x9d\x97\x4e\xa7\x77\xd1\xf5\x68\x4f\xb7\x36\xec\xa5\xfd\xbf\xd6\x58\x51\x9f\x8a\x80\xee\x86\x9f\x7a\xdc\x8b\x26\x9c\xa2\x8c\xfc\x30\xed\xa0\x46\x7e\xb7\xbc\x7e\xf5\x0f\x12\x2b\x4a\x75\x77\xeb\x5f\x2f\x95\xff\x7f\x05\xeb\x97\x9a\x0e\xf2\xa2\x9f\x04\xd6\x20\x74\xff\x8f\x15\x22\x54\xb7\x70\x5e\x2f\x9a\xf0\xbe\x17\x4d\xb7\xad\x17\x56\x54\x59\xbf\xf2\x8f\x1b\x2b\x5c\x27\x8c\x17\x4e\x51\xb4\xfd\xce\x7f\xd3\xb0\x0e\x3c\xf5\x6b\xcc\x5e\xe8\xfd\xf2\xa8\xce\x7e\xd2\x58\xbd\xae\x71\x50\xe9\xd7\x1a\x6b\x3f\x17\xec\x25\x0d\x7a\xd1\xf5\x4a\x61\x7b\x2e\xaa\x7e\x94\x7d\x10\x85\x1f\xc6\x8a\x92\x50\xcf\x8b\xb5\x17\x26\xed\x45\xf3\x1b\x8f\xf5\xbf\x71\x3d\xfb\xd8\x8b\xb7\x8f\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xce\x70\x75\x8d\xd9\x5c\x00\x00") - -func web_uiV1StaticAppleTouchIcon152x152PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon152x152Png, - "web_ui/v1/static/apple-touch-icon-152x152.png", - ) -} - -func web_uiV1StaticAppleTouchIcon152x152Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon152x152PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-152x152.png", size: 23769, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon57x57Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x26\x14\xd9\xeb\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x39\x00\x00\x00\x39\x08\x06\x00\x00\x00\x8c\x18\x83\x85\x00\x00\x13\xed\x49\x44\x41\x54\x68\x81\xc5\x5b\x79\x6c\x5c\xc7\x79\xff\x66\xde\xdb\xfb\xe0\x5e\x5c\x2e\x97\x2b\x8a\xf7\x25\xea\x22\x25\x9a\x92\x65\x59\xb2\x6c\x59\x91\x64\xa5\xb1\xdc\xc4\x75\x1a\x07\xad\x13\x04\x81\x9b\x06\x49\x0a\x18\x41\x11\x04\x45\x10\xa4\x40\x11\x18\x41\x9b\xa3\x6d\xdc\x20\x71\x85\x34\xb5\x5b\xc7\xb1\x22\x59\xa2\x1d\x2b\xba\x4c\x4b\x34\x4d\x89\x14\xc5\x4b\xe4\xf2\x5e\xee\x7d\xbf\x7b\xa6\x7f\x2c\x77\xb9\xbb\x5c\x51\xa4\xac\xb8\x1f\xb1\x1c\xee\xbc\x99\x6f\xe6\x37\xc7\x77\x3e\x22\x00\xc0\x00\x40\x96\xcb\x2c\xe5\x7f\x2f\x7e\xb6\x16\x6d\xa4\xed\xfd\xf6\x5b\xab\x6d\x49\x1c\xd9\x8a\xb5\x06\xd8\xc8\xa4\xef\x07\xe0\x46\x69\xc3\x73\x45\xf7\xe8\xf4\x40\x48\xa7\xd3\x01\xcb\xb2\xa0\xd3\xe9\x40\x92\x24\x10\x04\x01\x04\x41\x00\x45\x51\xfe\xd4\x43\x03\x40\x06\xe4\x03\x25\x9b\xcd\x86\xdd\x6e\x37\x38\x9d\x4e\xec\xb0\xdb\x59\xa7\xce\x62\x36\xcb\x6a\x97\x56\xc2\x36\x96\x20\x2d\x41\x54\x16\x58\x1a\x4f\xab\x14\x7f\x40\x4e\x04\x83\xb1\xb0\x18\x08\x04\x64\x9f\xcf\x07\xb3\xb3\xb3\xe4\x41\xcf\x07\xe0\x01\x81\x34\x1a\x8d\xb8\xa9\xa9\x09\x9a\x1b\x9b\xb4\x4d\xe0\xd8\xb1\x39\xac\x7d\xbc\x2a\xae\x79\xd8\x91\x54\xb5\x6b\x65\xec\x02\x00\x0c\x80\x00\x51\x0a\x00\x08\x28\xa2\x00\x00\xa0\x20\x88\x47\xf5\xd2\x98\xcf\x24\xf6\xcf\x58\x85\x77\x27\xcd\xc9\x0b\x23\x73\x93\xe1\x91\x91\x11\xb2\xb0\xb0\xf0\xc0\x00\x7f\x2c\x90\x56\xab\x15\x77\x76\x76\xe2\xad\xae\xfa\xea\xed\x4b\xe6\x17\x5a\x97\xf4\xcf\x1a\x05\xa6\x6e\x19\x43\x01\x51\x00\x40\x28\xfb\x07\x00\xa5\x85\x83\x53\x04\xa0\x20\x48\x7a\xed\xdc\xdb\x83\x95\xa9\x57\x06\xe8\xc2\x85\x8f\x6e\x0c\x88\x13\x13\x13\x1f\x1b\x6c\x31\xc8\xac\xa4\x2d\xfe\x5e\x50\xaf\x56\xab\xf1\xee\xdd\xbb\x71\x57\x6d\x7b\xcd\xde\x59\xcb\x4b\x2d\x4b\x86\xbf\x64\x08\xd2\xe6\xc1\x29\x0d\x32\xf7\x9b\x2e\xb7\xc8\x43\x9d\x57\x52\x04\x10\x34\x48\x7d\xef\xd7\xc4\xbe\x7f\x1d\xe6\xdf\xbe\x7c\xe5\xb2\xb8\xb4\xb4\x94\x65\x95\x3f\x9f\x62\x79\x52\xfc\x8c\x00\x00\x46\x6b\x74\x28\xee\x08\x00\x00\x1e\x8f\x07\x1e\xdb\x7f\x40\xff\x48\xa8\xe2\x6f\xbb\x66\xcc\x2f\xa9\x14\x6c\xbe\x4b\xbf\x8d\x51\x31\x5e\x00\xa0\x88\xc2\x8c\x55\x78\xfb\xdd\x86\xf0\xb7\x2e\x8d\xf7\x8f\x5c\xbf\x7e\x1d\x08\x21\x1b\x56\x53\xcc\x32\xdb\xb5\x8e\x6d\xee\xd9\xee\xdd\xbb\xe1\xf8\xae\x83\x2d\xcf\x8c\xba\x5f\x6f\xf5\x1b\xbe\xc8\x50\xa4\xc9\xf5\x2e\xf1\xa1\x08\x80\x60\x20\x29\xb5\x92\x8a\xe9\xe5\x70\x4c\x27\x47\x53\x1a\x25\x29\x31\x54\x61\x09\x62\x31\x00\x46\x08\x56\xce\x71\x76\x24\x84\x00\x50\x66\xb7\x2d\x3c\xdb\xb0\x65\xc9\xf8\x79\x5d\x8d\xdd\x1b\x2b\x83\x5b\x73\x73\x73\x1b\xb9\x62\x04\x00\x10\xbb\x9e\x96\x18\x63\x38\x78\xf0\x20\x3e\x60\x6b\x3b\x7c\xec\x23\xfb\x2f\xb5\x32\xe3\xb8\x3b\x57\x0a\x3e\xb3\x38\x33\x69\xe7\x06\xe6\x2c\xc2\x87\x21\xbd\x34\x2c\x31\xd4\x0f\x00\x69\x40\x20\x03\xa5\x18\x00\x69\x31\x05\x8b\x99\x67\x1b\xdc\x71\xf5\xce\x9a\xb0\xae\xa3\x26\xac\x6d\x51\x2b\x58\x5d\x62\x6d\x81\x21\x60\x4c\x6a\x14\xa3\xd5\x6a\x2d\xbe\x4e\xf7\x9c\x3a\x00\x00\xbb\x9e\x4e\x87\x0f\x1f\x66\x1f\xd7\x36\x3f\xfb\xe4\xa0\xfd\xdf\x31\x05\x2d\x85\xd5\x92\x45\xc2\x54\x1c\xaa\x4c\x5d\xbd\xe9\x4e\xbe\x16\xd5\xc9\xbd\x14\xe8\x5c\x3c\x1e\x4f\x06\xbc\x01\x31\x16\x8b\x11\x8e\xe3\x40\x14\x45\x40\x08\x81\xc1\x60\x00\x93\xc9\x84\xed\x76\xfb\x3b\xa1\x72\xbb\x7e\xb8\x22\xe5\x54\x2b\xb8\xbd\xd9\xaf\x3f\xd9\x39\x6b\x3a\x52\xc6\xb3\xb6\x7c\xde\x97\xea\xa2\xff\x39\x6f\x16\x4e\x0f\x5e\x19\x24\x1b\x04\x09\x00\xeb\x90\xae\x87\x0e\x1d\x62\x0f\x9b\xdb\x3f\x7b\xf4\xb6\xfd\x17\x98\x22\xf5\xea\xab\x43\x61\xb8\x22\x7d\xed\x6a\x6d\xf4\xc7\x29\x0d\xb9\x18\x89\x44\x7c\x23\x23\x23\xa2\xd7\xeb\x85\x44\x22\x71\xcf\x09\xb1\x2c\x8b\xab\xab\xab\xa1\xa9\xa9\x09\x7b\x3c\x1e\x0b\x0b\x78\xdb\xd6\x45\xe3\x97\xf7\x78\xcb\xfe\x4c\x23\x63\xed\x58\x79\xfa\xda\xd9\xd6\xd0\x17\x3f\x1a\xf8\x68\xec\xfa\xf5\xeb\xf7\x25\x69\xd7\x04\xd9\xd1\xd1\x81\x8f\x37\xed\x7d\xec\xe4\x8d\xf2\x37\x59\x82\xf5\x79\x32\x01\x00\x00\xd2\x6a\x25\x79\xbe\x39\xfc\x93\x69\x2b\xff\x8b\x70\x24\xec\xfd\xe0\x83\x0f\xc4\x8f\xa3\xd0\xcd\x66\x33\xde\xb5\x6b\x17\xae\xaf\xaf\x77\x98\x04\xf6\x70\xf7\xb4\xf9\xaf\x2e\xd6\x47\xff\x61\xd2\x37\x7b\xf5\xec\xd9\xb3\x32\xa5\xb4\x14\xef\xbb\x1d\xe1\x5c\x7d\xb1\x74\xcd\x95\x1e\x8f\x07\x9f\x3c\x74\xbc\xe6\xb9\xfe\x8a\x3f\x1a\x45\xd6\x53\xa0\x1a\x28\x05\xbf\x49\x9a\x7b\x6b\x4b\xf0\xdb\x31\x95\x78\xe6\xfa\xf5\xeb\xd1\xa1\xa1\xa1\x52\x92\x8f\x14\x0d\x88\x8b\xea\x4b\x4e\xcc\xed\x76\xe3\x47\x1e\x79\x44\x6d\x36\x9b\x2d\xf1\x78\x3c\xfa\xe6\x9b\x6f\x8a\x3c\xcf\x17\xcc\xd1\x66\xb3\x41\x6d\x6d\x2d\xa8\xd5\x6a\x98\x9f\x9f\x87\x99\x99\x99\x52\x63\x15\xa8\x90\x02\xd2\x68\x34\xf0\xcc\x33\xcf\x68\x9f\x9d\xda\xfc\x5a\x7d\x48\x77\x14\xa0\xf0\x88\x2e\x98\x85\xc9\x37\xb7\x06\x5e\x8c\x08\xc9\x8b\xe7\xce\x9d\xe3\x83\xc1\xe0\x7a\x54\xd0\x5a\x9e\xce\x6a\xb4\x18\x83\xc3\xe1\x80\x50\x28\x54\x6c\xe3\x92\xf6\xf6\x76\x7c\x6c\xfb\xfe\xb6\xdd\xb3\xe6\x6f\xa8\x15\x64\x1c\x72\xa5\x7e\x79\x21\x31\x72\xfe\xfc\xf9\xf3\x72\xa9\x31\x4a\x4a\xd7\xdd\xbb\x77\xe3\x9d\xa9\xf2\xe7\xea\x42\xda\xa3\x14\x68\x46\x17\xa0\x8c\x0a\x0f\x1a\xc4\x85\xdf\xb5\x07\x5e\xf4\x27\x23\x17\x4e\x9f\x3e\x2d\xa6\xd3\x69\x80\xb5\xf5\xd6\xdd\x3c\x9d\x35\x75\x1d\x21\x04\xfc\x7e\xff\xaa\x7a\x9b\xcd\x86\x0f\xec\xda\xeb\x7e\xa6\xcf\x79\x4e\x2f\x32\x6e\x00\x0a\x75\x41\xdd\xd3\xe2\xf6\xa6\xa7\xe6\xb7\xcc\x9f\xbf\x75\xeb\xd6\xaa\x31\x56\x0d\x64\xb5\x5a\x61\x5b\x53\x9b\xf3\x91\xc9\xb2\xef\x02\x5d\x56\x76\x00\x80\x00\x01\xcf\x2a\xe9\xb7\xb6\x04\x5f\x0a\xf2\xf1\x8b\x79\x00\x3f\x51\xaa\xa9\xa9\x01\x4f\x5c\xfb\x78\x06\x20\x00\x42\x08\x10\x45\x6c\x63\x50\xff\xb9\x9a\x9a\x9a\x92\x9b\xb6\x4a\x85\x74\x76\x76\xb2\xdb\x16\x4d\x5f\x31\x0a\x8c\x07\x21\x9a\xb1\x31\x51\xe6\x98\xfe\xa1\x31\xf2\x93\xb0\x4a\x38\x7d\xee\xf7\xe7\xf8\x74\x3a\xfd\x27\xf1\x18\xee\x45\x2c\xcb\xe2\xa4\x46\x49\x02\xa2\x99\x49\x2d\x4b\xc2\x94\x5a\x49\x33\x0c\x53\x52\x08\x15\xec\xa4\xd9\x6c\xc6\x0d\x9b\xeb\x1c\x3b\xe7\x8c\x5f\x02\x8a\x80\x2e\xef\x22\xa5\x08\xa6\x6c\xfc\xc0\x78\x39\xf7\xaf\xbd\xbd\xbd\xf1\x70\x38\xfc\xff\x02\x10\x00\x60\x61\x61\x01\xfc\x46\xa9\xf7\x43\x4f\xe2\x74\xf6\xa0\xcd\x5b\x84\xb1\x1b\xee\xe4\xab\x8b\x8b\x8b\x62\xa9\x3e\x05\xdb\xdb\xd2\xd2\x02\xf5\x21\xdd\x09\xa3\xc8\xb8\x57\x74\x0b\x02\x82\x28\xb9\x52\x17\x7b\xd9\xb7\xe4\x9b\x19\x1e\x1e\x7e\x10\x00\xef\x29\xf6\xef\x46\x73\x73\x73\xe4\xf6\xc8\x6d\x1f\xb4\xb4\x7e\x7d\xa0\x2a\xf9\x9a\x8a\x20\x7d\x44\x27\xf7\x86\x23\xe1\x91\x81\x81\x81\x92\x7d\xf2\x41\xe2\xc6\xc6\x46\x6d\xeb\xa4\xe1\x73\x99\x23\xb0\x22\x4f\x27\xed\x5c\x5f\x48\x2f\xbd\x73\xed\xdd\x6b\xf2\x46\x26\xb4\x4e\x5a\x8f\xe7\x53\x20\x31\x2f\x5d\xba\x44\x96\x96\x96\xbc\xb5\xb5\xb5\x73\x2c\xcb\xc2\xe2\xf0\xa2\x3c\x38\x38\x08\x92\x24\x95\xe2\x03\x6c\x96\x41\x79\x79\x39\x58\x34\x46\x57\x75\x54\xb3\x37\xdf\x46\xa0\x08\x60\xd0\x9d\xfa\x8d\x6f\xc9\x17\xf4\xf9\x7c\xc5\x03\x6e\xc4\x1b\x28\x56\x19\x6b\xf1\x59\x25\x91\x9d\x4e\x27\xec\xd8\xb1\x03\x3b\xcc\x56\x7d\x82\x4f\x8b\xb7\x86\x6f\xc9\xe7\xce\x9d\x93\x01\x00\xea\xea\xea\xe0\x33\x27\x3e\xad\xad\x52\x5b\x9d\x01\x25\x19\xbe\x71\x7b\x28\x39\x38\x38\x98\xe3\x95\xdb\xc9\xaa\xaa\x2a\x70\xc7\x35\x7b\x33\x7e\xe1\x8a\x5d\xc3\xa9\x48\x7c\xd6\xc2\x9f\x1f\xb9\x38\x92\xbf\x8b\xeb\x26\xbd\x5e\x0f\x2d\x2d\x2d\xe0\x72\xb9\xd4\x46\xa3\x11\xf3\x3c\x4f\xfc\x7e\xbf\x3c\x3a\x3a\x0a\x91\x48\x64\x5d\x3c\x36\x6d\xda\x04\x4f\x1f\x3c\x5a\x7d\x64\xcc\xf1\xe3\xaa\x19\xcd\xbe\x88\x5e\x1a\xeb\x79\xa8\xfa\x6b\x6f\x99\x2e\x5f\x4b\xa7\xd3\x70\xb2\xeb\x89\x1d\x4f\xdd\x72\xbc\x6a\xe1\xd8\x36\x4e\x45\xe6\xce\xb4\x3a\x5e\xd0\x68\x34\xef\xf4\xf5\xf5\xe5\x0c\x74\x00\x00\x70\xb9\x5c\xac\x3b\xa6\xde\x83\x00\x15\x18\x7b\xb3\x16\x7e\x40\x06\xb2\xe0\xf5\x7a\x37\x0c\xb0\xad\xad\x0d\x1e\xde\xd9\xe5\x72\xcf\xd1\xaf\x95\x4d\xca\x47\x58\x81\xb8\x14\x95\x31\x9c\x70\x58\x2e\x76\x7e\xaa\xed\x9f\xfb\xa7\x6e\x8f\xf4\xf6\xf6\x02\xa5\x25\x42\x09\x79\xb4\x67\xcf\x1e\xf5\x63\x77\x6c\x3f\xda\x1c\xd1\x1c\xa5\x80\xa0\x3c\xa5\xde\x75\x74\xd8\xfe\xea\x52\xe7\xee\xdd\x32\x55\xc4\x03\xc3\xd6\x97\xad\x9c\xaa\x0d\x00\x40\x2f\x31\x9e\x27\xc6\x6c\x3f\x9d\xd9\xb5\xa3\x73\x70\x70\x30\x2e\x08\xc2\x8a\x0a\x71\x38\x1c\xac\x63\x52\xdd\x06\x40\x0b\x7c\xfb\x85\x32\xb1\x3f\x14\x0a\xa5\x45\x51\xdc\xd0\xfd\xdb\xba\x75\x2b\x3e\xb8\xa5\xab\xab\xfe\x03\xee\x35\x15\x4f\x3c\xd9\x7a\x56\x06\x97\x66\x46\x6c\xb3\x2e\x48\xcf\xe9\xb6\xb7\xbe\xa0\x79\x54\xf3\xdb\x0b\x17\x2e\xac\x79\x4a\x2c\x65\x16\xb3\x6b\x44\xdd\x05\x90\x8d\x2e\x00\x94\xf1\x6c\x83\x9e\xb0\xd5\x9c\x0a\xfb\x2c\x1c\xdb\x90\x7f\xfa\x8c\x02\xe3\x51\x01\x63\x2b\x2b\x2b\x8b\xfb\xfd\x7e\x92\xdb\x49\x9d\x4e\xa7\xb5\x70\xac\x27\xa3\xf6\x57\x60\x86\xf4\xd2\xad\xc0\x62\x60\x43\x47\xd5\x6a\xb5\xe2\x3d\x9d\x5d\xce\xda\xab\xdc\x29\x95\x40\x3c\xab\xdc\x00\x04\xc0\x28\xd4\xbc\xf9\x06\xf7\x0a\xff\x70\xc3\x84\xb7\xc6\x7b\xd3\xeb\xf5\x12\xa3\xd1\x88\xbb\xbb\xbb\x71\x43\xf9\x26\x1b\x01\x4a\x46\x17\xa6\xa2\x37\x6f\xde\x24\x14\xa8\xbc\x68\x12\x27\x4c\x82\xce\x95\x65\x10\xd7\xca\x3e\x4e\x45\xe2\x14\xa8\x38\x69\xe7\xfa\x76\x2c\x18\x4f\x64\xd9\xcf\x5a\xf8\x21\x19\x93\x34\xcf\xf3\x99\x85\x5d\x19\x17\x69\xf5\x22\x76\xe4\x66\x01\x99\x3d\x4d\x68\x65\x6f\x2c\x16\xdb\xd0\x2e\x6e\xd9\xb2\x05\xdb\x17\x95\xe7\xd5\x1c\xa9\xbb\xfb\x41\x44\x80\x15\x6a\x76\x7a\xc5\x6f\x6c\xdf\xbe\xfd\xcb\x4b\x4b\x4b\xf2\xd3\x9f\xfe\x8c\xfe\xa9\xd9\xaa\x97\x5b\xfb\xf5\xcf\x53\x04\xf2\x0d\xb7\xf3\x67\x67\x8e\x54\x7d\x27\x1c\x0e\x27\x2f\x34\x30\x3f\xd0\x28\xf8\x87\xee\x98\xba\x21\xaa\x93\x82\xef\x36\x45\x7e\x90\x4a\xa7\xfc\x81\x40\x40\xbc\x54\x87\xbf\x2f\x63\xaa\xf6\x44\xb5\xed\x41\xa3\x38\x73\xa5\x36\xf6\xbd\xa5\xa5\xa5\x70\x3c\x1e\xcf\x49\x57\x70\x3a\x9d\x18\x53\x50\xab\x14\xac\x2d\x74\xa6\x80\xf0\x2c\x0d\x17\xd9\xa7\xc5\x62\x3a\xbf\x0e\x03\x00\xa9\xaa\xaa\x52\x9b\xee\x28\x87\x72\xac\xd0\x72\x78\xae\x04\x19\x43\xf2\xbe\xf2\xd6\x72\x63\x77\x77\x77\x74\x67\xc2\xfe\x7c\xdb\x92\xfe\x4b\x08\x00\x80\x82\x7a\xe7\xbc\xf1\x9b\xb3\x56\xc7\x07\xbf\x5f\xea\x7f\x9d\x61\x98\x3f\xbc\xb1\x95\x9c\x64\x28\x78\x14\x04\x61\x51\x12\xc7\x2e\xf4\x5c\xe0\x03\x81\x00\x30\x87\x98\x7e\xb9\xce\xf3\x02\x42\xc8\x01\x00\xd1\x40\x20\xe0\xeb\xe9\xe9\xc9\x9d\xbe\x9c\x0a\x41\x00\x2c\x02\xc0\x59\x2b\x07\x20\x13\x48\xa2\x88\x66\xad\x88\x7c\x15\x70\x37\x91\x4f\x00\x00\xeb\xf5\x7a\x96\x91\x24\x1b\x42\x79\xe7\x34\xff\xef\x95\x60\x0e\xb0\x12\x58\x30\x42\xda\x86\x86\x06\xd6\x3e\xa9\xea\x04\x8a\x0a\x96\xd9\x9e\x52\x3d\xa4\xd7\xeb\xff\xf7\x8d\x37\xde\x10\xeb\xeb\xeb\x47\xec\x76\xfb\x48\x22\x91\x80\x89\x89\x09\xc8\xda\xce\x67\xcf\x9e\x25\x76\xbb\xdd\xe7\x70\x38\x7c\x89\x44\x02\x8a\x62\xb6\x2b\x2a\x84\x02\x00\x45\x40\x50\x36\x68\x9a\x29\x30\xa6\xeb\x8b\x03\xe5\x83\x25\x84\x10\x49\x8b\xc2\x59\x21\xb6\x02\x8a\x2e\xdf\xf8\xcc\x9d\x47\x00\x20\x6a\x50\x18\x00\x64\x8e\xe3\xc8\xac\x55\x77\xa3\x73\x8e\xe6\x5a\x13\x00\x32\x6b\x11\x6e\xf0\x0b\x3c\x18\x0c\x06\x70\x38\x1c\xd8\x64\x32\x61\x86\x61\x88\xd1\x68\x24\x59\x90\x15\x15\x15\xb0\x63\xc7\x0e\xd6\x6a\x30\xab\x93\x42\x5a\xc4\x18\xcb\x73\x73\x73\xb9\x49\xe5\x00\x10\x04\xa2\x84\x09\xcf\x28\x8c\x36\xdf\x41\xd6\x4a\xd8\x82\x71\x81\xc7\x72\x4f\x03\x20\x14\x0a\x89\x4e\x67\xf9\x25\xeb\x82\x7c\xb8\x30\x56\x82\x96\x9d\x9a\x8c\xc5\x4f\x81\x42\xbc\x82\xed\xe5\x78\x3e\x7d\xf9\xf2\x65\xa2\x7f\xe2\xf0\x6f\xdf\x6b\x88\xee\xdc\x39\x6f\x3c\x4e\x10\x90\xeb\xd5\xf1\xff\xf6\x99\x84\xf3\x89\x44\x82\xfc\xc5\xf1\x93\xce\xc7\xa7\xcb\x7f\xe0\x9e\xd7\x74\x05\x8d\xe2\xf0\x7b\x4f\xb6\x7d\xfb\xcd\xab\x3d\x93\x82\x20\xc0\xc9\x83\x47\x6b\x8e\x8e\x96\xff\xb4\x72\x5a\xd3\x1d\x32\x48\x43\x6f\xef\xdf\xfc\xe2\x5b\x03\x17\x6e\x0e\x0f\x0f\xaf\x80\x4c\xa5\x52\x40\x81\x8a\x29\x8d\x12\xd6\x4a\xd8\x92\x99\x54\x66\x0f\xcc\x3c\x5b\x6d\x36\x6f\x2c\xb4\x3a\x31\x31\x21\xbb\xf7\x55\xbe\x9e\xb2\x32\x5f\x30\x86\xe5\xa6\x5c\x40\x19\xad\x08\x34\x00\x04\x92\x0e\x87\x03\x9b\xd5\xaf\x4c\x8c\x0e\xf1\x5e\xaf\x17\x06\x6e\x0c\xcc\xd1\xed\xdb\x5f\xba\xe9\x4e\xfe\x18\x00\x80\x50\xe2\xed\xbb\xde\x17\x6e\x6c\x6c\x54\x3f\x31\x5d\xfe\xa3\x66\xbf\xfe\xb3\x40\x01\xcc\x82\xae\xcd\x28\xb0\x35\xe1\x7d\x8f\x1c\x94\x64\x49\x7e\x6c\xd2\xfe\xb2\x27\xa6\x39\x0c\x00\xe0\x4c\xaa\xf6\x1e\xbb\xed\x78\x35\xf0\x50\xf7\xc3\x77\xee\xdc\x49\xe6\xf4\x64\x2a\x95\x02\x00\xe0\xa3\x3a\x79\xc1\x9e\x54\xd5\xe5\x2e\x05\x05\x28\x4f\xa9\xb6\x2c\x87\x02\xd7\xad\x46\x46\x46\x46\xa0\xad\xad\xcd\xcb\xee\xb4\x7d\xab\xe6\x23\xfe\x65\x43\x44\x69\x00\x94\xaf\x98\x10\x08\x06\x14\xf4\x76\xe8\xbe\x9d\x90\xb9\xbe\x81\x81\x01\x02\x00\xe4\xda\xb5\x6b\x30\x3e\x3e\x1e\xac\xae\xae\x0e\x12\x42\x60\x7a\x7a\x1a\xe2\xf1\x38\xe9\xda\xdd\x65\xac\x1a\xd1\xec\xcf\x05\xd1\x28\x82\xf2\xa4\xaa\xc3\x84\x35\x1e\x41\xaf\x0e\xbb\x12\xea\x2e\x04\x28\x63\x54\x20\x00\x7b\x9a\x6d\x33\x82\xda\xe3\x74\x3a\x47\x66\x67\x67\x57\xf4\x64\x24\x12\xe1\x03\x86\xb2\xb1\xfa\x80\x7e\x5f\xfe\x84\xdd\x31\xcd\xae\x8a\xda\x0a\xf5\x46\x40\x02\x00\xf4\xf4\xf4\x88\xc7\x8e\x1d\x7b\x47\xee\x32\x7d\xbe\xcc\x2f\x7f\xbe\xcc\x2f\xef\x55\xf1\xd4\x26\xab\x50\x32\xe1\x60\xfa\x23\x6e\xd5\x29\x4e\x12\x7a\xdf\x3e\xf3\x76\x9a\xe3\xb8\x9c\xa0\x88\x44\x22\xa4\x94\xb9\x17\x36\xc8\x0b\x46\x91\x75\x01\x64\xec\xe9\x88\x5e\x5e\x10\x59\xca\x03\x02\x79\xc1\x2c\x8c\x35\xf9\x59\x57\x76\x09\x7d\x26\x61\x82\x67\x49\x3c\xab\x27\x99\x2c\x93\x8a\x8a\x0a\x70\xd8\xec\xee\x56\xbf\xfe\x18\xa0\xe5\x20\x36\x02\x30\x88\x4c\xf9\xad\x5a\xe1\x57\x77\xa6\xa7\xe2\x1c\xc7\xe5\x0b\x3e\x0c\x45\xfa\x26\x9f\x44\x51\x44\x63\x63\x63\x0a\xab\x52\xf9\x74\x1e\xfb\xe5\x44\xa5\xe6\x74\xc4\xa3\x7e\x3d\xea\x62\x4f\xa5\x8c\xe8\x77\x53\xd3\xde\xd1\x9e\x9e\x1e\x31\x1a\x8d\xc2\x32\x9f\x62\x7e\xb9\xef\x9e\x4d\x1e\x39\x51\xa9\x8a\x54\xc5\x35\xdd\x7a\x09\x1b\x63\x3a\x39\x74\xae\x25\xfc\x3d\x9f\x1c\xbb\x12\x0a\x85\xd2\xd1\x4d\xea\x99\x32\x81\x6d\x37\x48\xb8\x6c\xd1\x2c\x4e\xf5\xb4\x84\xbf\xbb\x98\x08\xf5\xf7\xf5\xf5\x49\x00\x79\xd1\xba\xe6\xe6\x66\x7c\x68\xdf\x81\x1d\x5f\xb9\xea\xbe\xc2\x2a\x48\x9b\x6f\xc0\x9e\x6d\x0b\x7e\xf5\x75\xdf\x07\xff\xd6\xdb\xdb\x5b\xca\xf5\x01\x58\x3b\x09\x03\x00\x40\x5c\x2e\x17\x56\xa9\x54\xa0\x28\x0a\x84\x42\x21\x10\x04\x61\xad\x94\x7d\xc1\x33\xab\xd5\x8a\x8f\x1f\x3f\xae\xd7\x69\x75\x4d\x6a\x05\xd5\x48\x0c\x5d\x10\x24\x71\xb8\xa7\xa7\x27\x19\x89\x44\xe0\xe8\xd1\xa3\x6a\xab\xd5\xea\x41\x80\x5c\x80\x20\x9c\x4c\x26\xbd\x67\xce\x9c\xe1\xa3\xd1\x68\x61\xb4\xce\x60\x30\xc0\x73\xcf\x3d\x67\x7b\x6a\xd8\xf1\x56\x7d\x50\xd7\x9d\xaf\xd5\xe6\xca\xc4\xde\x53\xad\xb3\x4f\x9c\x3a\x75\x2a\x2d\xcb\x6b\x9e\xda\x3f\xc5\xfb\x05\x04\x00\xb0\x4e\xa7\x83\xe6\xe6\x66\x28\x2b\x2b\xc3\x89\x44\x82\x8c\x8e\x8e\x82\x20\x08\x20\xcb\x32\xc1\x18\xe3\xea\xea\x6a\x70\x38\x1c\x90\x48\x24\x60\x72\x72\x12\x24\x49\xca\x31\xc8\x26\x7c\x40\x92\x24\xa8\xae\xae\x96\xb4\x26\x83\xa3\x29\xa0\x3f\x94\x91\xf5\x19\xa8\x66\x81\xf1\x2c\xda\x95\x0f\xc2\x0c\x3f\xb6\xec\x53\xde\x8d\x36\x92\x8c\x59\x6f\x5b\x04\x00\x20\xcb\x32\xf8\x7c\x3e\x98\x9e\x9e\xa6\xb1\x58\x0c\x1e\xdd\xbf\x1f\x7f\x7a\xd7\x63\xb5\x8f\xb5\x3f\x54\xed\x6c\xdc\x14\x99\x9c\x9a\x52\xc6\xc6\xc6\x20\x14\x0a\x41\x26\xfc\xbb\x42\x39\x90\xcb\x44\x2c\xcd\x55\xd1\xb6\x25\xc3\x9f\x6b\x15\xac\xcf\xdc\x4b\x04\x08\x10\xd8\xd3\x6c\xb3\x7f\xab\xfe\x37\xe3\x13\xe3\x42\xfe\x2a\x7d\xd2\xc4\xb2\x2c\x9c\x38\x71\x42\xfd\x6c\xa2\xe5\x87\x4f\x8e\xd9\x7f\xb5\x75\xd1\xf8\xd5\x16\xde\xb6\x9f\xec\x71\x9f\x9d\x9c\xf5\xa6\x38\x8e\x5b\xd5\x87\x81\x95\x98\x17\x0d\x06\x83\x74\xcb\xd6\xf6\x14\xcb\x32\xd5\x9b\x23\xda\x4e\x44\x57\x32\x1f\x06\x91\xa9\x94\x35\x28\xc1\x6f\x36\x5c\x9d\x98\x98\x50\xf2\xfb\x7d\x92\x9f\xc6\xc6\x46\xf4\xa8\x7b\xdb\xa3\x87\xc6\xad\xff\x02\x34\xa3\x79\x4d\x02\xbb\x59\x56\x81\x18\x74\xc2\x1f\xa7\xa6\xa6\x56\xcd\x6d\xd5\x9d\x18\x1a\x1a\x4a\x0f\x56\xa6\x5e\x49\x68\x94\x70\xa6\x26\xe3\x44\x23\x8a\x60\xef\x54\xd9\xdf\x77\x5a\xea\xf6\x75\x74\x74\x7c\x12\xaf\xb2\x94\x24\xbb\xdd\x0e\x7a\x11\xd7\x21\x8a\x60\x25\xb7\x09\xa0\x97\x98\x3a\x8b\xc5\x52\xd2\x04\x5d\x35\xd9\xc1\xc1\x41\x48\x4a\xdc\xf0\xe5\xba\xd8\xcf\x29\xa2\x00\x59\x5b\x16\x51\x50\x11\xa4\x7f\xea\x96\xe3\x97\x07\xda\xbb\x9a\x5a\x5a\x5a\xee\x07\xe8\xbd\xfa\x60\x58\x6d\x3e\x16\x94\x91\x48\x04\xe6\x2d\x42\x7f\x42\x23\x87\xb3\x59\x35\x05\x53\x32\xea\x4c\xf7\xc4\xe3\xf1\xe2\x34\x01\x00\x00\x66\x96\x2b\x73\xf9\x61\x45\x51\x40\x14\x45\xc9\xd8\xea\x9e\xaa\x48\xaa\xf7\x5b\xd3\x2b\x4a\x16\x00\x81\x46\xc6\x65\x35\x11\xdd\xe3\x52\x47\xf9\xf9\xb8\x94\x8e\x04\x02\x81\xfc\xfc\x32\x2d\xe2\x97\xd5\x7b\x59\x9d\x97\xdf\xa6\x94\x8e\x5d\xb1\xe4\x57\x9e\x17\x64\x0b\x93\xc9\x24\xaa\x6f\x69\x8a\xcd\xb8\x24\x2f\x26\xc8\x19\xd1\xcb\xfe\x8b\x0d\xd1\x9f\xcd\x9b\x85\x5f\x5f\xbd\x7a\x35\x95\x48\x24\x00\x0a\x79\xd3\xac\xe0\x21\x79\x03\x40\x30\x18\x24\xee\x2a\x77\x32\xba\x49\x35\xd3\xec\x37\x1c\x57\x93\xc2\xb4\xb9\x4e\xc2\x8e\x86\x90\xfe\x18\xda\x5e\x71\x85\x98\x54\x8b\xf3\xf3\xf3\xd9\x38\x4d\xf1\x5b\x11\x59\x40\xf9\x00\xf2\xcb\xe2\xc5\xc9\x81\xad\xac\xac\x44\xbb\x76\xed\x62\x30\xc6\x34\x12\x89\xe4\xfa\xc8\xb2\x0c\x73\x73\x73\x92\xad\xda\x35\xea\xf3\xc0\xd9\x3b\xe5\xdc\x6b\x01\x94\x7e\xef\xf2\xe5\xcb\xb1\xbc\x38\x54\xfe\x42\xe2\xbb\xbd\x33\x80\x16\x17\x17\x49\x6d\x6b\xe3\x62\xd0\xa2\x70\xcd\x7e\xc3\x41\x4c\xb3\x93\x58\xf6\x4e\x64\xc6\xda\xea\xd7\x3f\x6b\xf0\xd8\x03\xc6\x76\xcf\xad\x70\x38\xac\x24\x93\xc9\x12\x81\x8e\x75\x51\xae\x9d\x46\xa3\x81\xee\xee\x6e\x7c\xac\xe3\xd1\xd6\xe7\x97\x9a\x7f\xaa\xd9\x59\x75\xd3\x9f\x8e\x06\xc3\xe1\x70\xae\x31\xc7\x71\x70\xfb\xf6\x6d\x65\x6a\x6a\x2a\x31\x3e\x3e\x1e\xef\xed\xed\x95\x82\xc1\x60\x29\x7e\x08\x60\xb5\x0a\xc9\x91\x28\x8a\x10\x89\x44\x44\xe7\x96\x9a\xb1\xb8\x4e\xd1\xd5\x87\x74\x0f\x21\xb4\x1c\xc9\x5b\x2e\x19\x8a\x34\x75\x21\xdd\x89\x5a\xa9\xac\xc3\xda\x51\x7b\x4b\xe7\xb2\x04\x38\x8e\xa3\xc9\x64\x72\x9d\xd8\x56\x48\xab\xd5\xc2\xb6\x6d\xdb\xe0\xc8\x81\xc7\x2d\xc7\xe5\xa6\xaf\x1f\x19\xb1\xff\x87\x8d\x53\x6d\x77\xc5\xd5\xbb\x93\x9d\xb6\xff\xb9\xe3\x9d\xe4\x05\x41\x28\xe8\xc3\x71\x5c\xc6\x83\xba\x47\xb4\xaf\x40\x85\x14\x7f\x62\xb1\x18\x15\x45\x91\xd3\xb5\x54\x0c\x26\xb4\x8a\xbe\x36\xac\xeb\x40\xb4\x78\x51\x10\x58\x38\xb6\x71\x9b\xcf\xf8\xd7\xf5\x6a\x67\xab\xa7\xbd\xde\x5f\xd1\x56\xe3\xd7\x1b\xf4\x32\x42\x08\x44\x51\x04\x45\x51\x48\x29\xfe\x56\xab\x15\xd5\xd6\xd6\x42\x67\x67\x27\x7e\xb2\xeb\xd1\xca\xa3\xa8\xf9\xab\xc7\xc6\x2b\x7e\x5e\x1f\xd4\x3d\xcd\x00\xd2\x00\x05\x30\x8a\x6c\x95\x96\xb2\x26\xa9\xdd\xf6\xee\xe8\xe8\xa8\xb2\x9c\x6d\xde\x90\xda\x59\xd7\x71\xea\xec\xec\xc4\x1d\x1d\x1d\xae\x9a\x88\xee\xc5\x4f\xdd\xb6\x7d\x53\x2b\x33\xda\xbb\x99\xe6\x14\x51\x88\x6b\x95\x31\xaf\x8d\x3b\x3f\x57\x26\x5c\x0a\x18\xa5\x9b\x01\x48\x2d\xc4\xd3\x49\x91\x2c\x67\xc3\x75\x1a\x2d\xb6\xa9\x8d\xe6\x72\x5e\xdb\x54\x19\x57\x77\x6f\x8e\x68\x0f\xb9\x63\x9a\xfd\x0c\x41\xda\x55\x37\x3a\xc3\x93\x9c\xde\x12\xfa\xc2\xeb\xb3\x57\xff\xeb\x7e\xde\x1b\x58\x57\x68\xe3\xc3\x0f\x3f\x84\x64\x32\xe9\x23\xfb\xf6\xbd\xfc\xeb\x0e\x79\xea\xc8\x6d\xdb\x77\x5c\x09\x75\xf5\xdd\xda\x9b\x79\xa6\x69\xdb\x82\xb1\x69\xdb\x82\xf1\x6f\x00\x00\x08\x82\xb4\xc8\x90\xa8\x8c\x29\x8f\x00\x61\xb5\x8c\xcc\x2a\x82\x2c\x50\x24\xee\x69\xf1\xfb\x6a\xcb\x80\x93\x6a\x25\x29\x32\xc4\xec\x74\x3a\xef\x2b\xff\xc2\x94\xa8\xcb\x49\x25\xc8\x13\xdf\xa1\x50\x88\xf8\x7c\x3e\xde\x51\xe3\xbe\x3d\xb1\x49\x7a\x5f\x66\xa8\xa5\x32\xa1\xa9\x67\x09\x66\x32\x92\xab\xe8\x27\x93\x1c\xcd\xb8\x39\x14\xa9\x54\x04\x9b\x34\x0a\xb6\xaa\x15\x6c\x61\x00\xe9\x10\x45\x28\xd3\x66\xc5\x74\xcc\x28\xf8\x95\x92\x02\xc0\xb0\x2b\xd5\xfb\xfb\x2d\xa1\xbf\xf3\x6b\xf8\xd3\xef\xbf\xff\x3e\x1f\x8f\xc7\x69\x89\x39\x16\x4b\xe9\x02\x97\x8d\x29\xd1\x01\xb2\xc0\x0a\xd7\x13\x50\x32\x99\x84\xf1\xf1\x71\xd9\x60\x32\xce\x73\x35\xfa\x8b\x23\xae\xf4\x2d\x96\xa0\x0a\x7b\x4a\x5d\x89\x00\xe1\x82\xe1\xb2\x3d\x73\xc2\xaa\xc4\x33\x80\x82\x28\x5e\x36\xd9\x0b\x88\xc2\xb4\x95\x1f\x39\xdb\x16\xfa\xa7\xc1\xca\xe4\x3f\x2e\x86\x03\xd7\xcf\x9d\x3b\xc7\x2d\xbf\x5f\x57\xcc\x21\x9f\x8a\xd5\x13\xcd\x8e\x70\x5f\x26\x5a\x55\x55\x15\xec\xd9\xb3\x47\x6d\xb5\x5a\xdd\x46\x91\xdd\xd7\xbe\x68\xf8\x5c\xeb\x92\x61\x6f\x19\xcf\x58\x10\xcd\x5f\xab\xfc\xf1\x69\x51\x09\xb9\x76\x14\x01\xf0\x2c\xe1\xc7\xcb\xb9\xfe\x41\x77\xf2\x8d\x80\x41\x3a\x9f\xe6\xd2\x93\xfd\xfd\xfd\xe9\x6c\x40\xea\x7e\xe9\xbe\x41\x66\xa9\xae\xae\x0e\xb6\x6d\xdb\xc6\x96\x97\x97\xdb\x10\xa0\x06\x67\x52\xb5\x6f\x73\x44\xbb\xc7\x1d\xd3\xb4\x94\x27\x55\x6e\xbd\xc8\x18\xf3\x13\xba\xcb\x41\x1a\x00\x00\x10\x58\xca\x87\xf4\x92\x7f\xd1\x2c\x4c\xcc\x58\xf9\xbe\x79\x8b\xf0\x9e\x82\x61\x24\x91\x48\xf8\x87\x86\x86\xf8\xe1\xe1\xe1\x07\xf2\x76\xf3\x46\xfc\xbf\x35\xc9\x6e\xb7\xe3\xfa\xfa\x7a\xa8\xad\xad\x55\x9b\x33\xe1\x3d\x1b\x02\xe4\x54\x2b\xc8\xa5\x17\x19\xa7\x56\xc6\x16\x86\x20\x0d\x41\x54\x12\x59\x9a\x4c\xab\x14\x3f\xa7\x22\x3e\x0a\xd4\x0f\x00\x41\x8e\xe3\xe2\x33\x33\x33\xfc\xe4\xe4\x24\x99\x9b\x9b\x7b\xa0\xe9\xfa\x07\x06\x32\x9f\x0c\x06\x03\xae\xa8\xa8\x00\xab\xd5\x0a\x66\xb3\x19\x9b\x4c\x26\xcc\xb2\x2c\xd6\x6a\xb5\x58\x92\x24\x22\x08\x02\xe1\x38\x8e\x24\x12\x09\x12\x89\x44\xc0\xef\xf7\x43\x24\x12\xf9\x7f\x7b\x0f\x61\xad\x80\xf2\xc7\xf1\x42\xee\x87\xef\x7d\xff\xc7\xc3\x3d\x5d\x9b\x75\xb4\xbd\x5b\x5d\xa9\x36\x1b\x99\x2c\x86\xd2\xbc\xee\x36\x7e\xa9\x7e\x00\x00\xf8\xff\x00\x76\x62\x7c\x14\xb0\x27\x9e\x60\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x73\xbe\x6c\xe4\x26\x14\x00\x00") - -func web_uiV1StaticAppleTouchIcon57x57PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon57x57Png, - "web_ui/v1/static/apple-touch-icon-57x57.png", - ) -} - -func web_uiV1StaticAppleTouchIcon57x57Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon57x57PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-57x57.png", size: 5158, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon60x60Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x15\x6d\xea\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x3c\x00\x00\x00\x3c\x08\x06\x00\x00\x00\x3a\xfc\xd9\x72\x00\x00\x15\x59\x49\x44\x41\x54\x68\x81\xed\x3a\x69\x6c\x9b\xc7\x95\x6f\x86\x1f\x3f\xde\xf7\x21\xea\xb0\x6e\x51\xb2\x2d\x3b\xb2\x2d\xdb\x8a\xe3\x23\x8e\xaf\xc4\xb1\xdd\x38\x45\x36\x69\xbb\x8b\xa2\x7b\x60\xb7\xc0\x02\xdd\x76\x17\xdb\x2d\xda\x6c\x51\x60\x8b\x6e\x51\x14\x45\xb6\xdb\x2d\xb6\xbb\x05\x9c\x4d\x8b\xd4\x75\xb1\x75\xea\xb8\x75\xed\xc8\x4e\x64\x39\xf2\x6d\x4b\xb2\x75\x59\x96\x28\x89\xa4\x28\x92\xa2\x78\x7e\x24\x3f\x7e\xdf\xcc\xfe\xe0\xa1\x4f\x34\x29\xc9\x4e\xba\x05\x8a\x3e\xe0\xe3\x7c\x9c\x99\x37\xf3\xde\x9b\xf7\xe6\xcd\x7b\xf3\x01\xfc\x11\xfe\x08\x7f\x50\x80\x72\x25\x06\x00\x92\x2b\x21\xf7\x5e\x0c\xd2\x3e\xc5\x7d\xb1\xb4\x23\x42\x08\x6c\x36\x1b\xd8\xed\x76\xb0\xd9\x6c\xd8\x60\x30\x60\xad\x5a\xc3\xa8\x19\x05\xab\x42\x72\x16\x21\x84\x53\x62\x86\x4f\x23\x91\x8f\xc6\x63\x42\x24\x1a\x11\xc2\xe1\x30\x99\x9b\x9b\x03\x9f\xcf\x07\x99\x4c\x86\x14\xcd\x2b\x05\x52\x54\x5f\x4c\xd3\xb2\xb8\x08\xca\x43\x31\xf2\x8a\x50\x5d\x5d\x8d\x9d\x4e\x27\x6e\xa8\xa9\x55\xd7\xa6\x75\x1b\xab\x23\x8a\x1d\xf6\x38\xbb\xc5\xcc\xc9\x9d\xda\xb4\xac\x4a\x2e\x22\x3d\x02\x60\x73\xdd\x05\x11\x03\x97\x60\x45\x7f\x58\x29\x4c\x04\xb5\xfc\x80\x57\xcf\xf7\xcd\xe8\x93\x1f\xba\xe6\xbd\xe1\x07\x0f\x1e\x08\x13\x13\x13\xc5\xcc\x7f\x64\x40\xf0\xa8\x14\x1e\x0b\x18\x86\x81\xb5\x6b\xd7\x42\xfb\xba\xf5\x6c\x1b\xb5\x75\xad\x9b\x53\x7f\xa6\x31\xa8\x3a\xac\x14\x70\x15\xca\x2b\x10\x85\x45\x5d\x5a\x02\xd9\x86\x7c\x33\x05\x0a\x22\x02\xce\x6b\x48\xf7\x0c\x57\x24\xde\x1e\x32\x44\xde\xbd\xff\x70\x34\x3c\x38\x38\x08\xb1\x58\xec\xa3\x90\x59\x80\xd5\xac\xb0\x54\x20\x05\xb5\x41\x08\x61\xa7\xd3\x09\xdb\xb7\x6e\x53\x3e\x15\xb3\xbc\xd4\x39\xa3\xfb\xa2\x35\x21\xef\x44\x74\xb9\x21\x21\xcf\xd9\x12\x28\x27\x8f\xa4\x5c\xf4\x0d\x54\xc5\x7f\x74\xa3\x32\xfc\xc3\xbb\xe3\x43\xfe\x5b\xb7\x6e\x41\x3a\x9d\x5e\x91\xa9\x95\xa6\x07\x28\xad\xbe\xe5\xec\x02\x0c\x06\x03\xde\xb3\x7b\x37\xb3\x45\x55\xb7\x63\xf7\x43\xd3\xb7\xed\x71\xf9\xb6\xd2\x43\xd3\x47\xab\x9f\x00\x52\x0c\xf1\x5d\xad\x8f\x7e\xf3\x9a\x31\x70\xe2\xf2\x87\xbd\xdc\xe4\xe4\xe4\x13\xab\xb9\x2c\x57\x96\xa2\x8c\x96\x6a\x6b\x6d\x6d\xc5\x87\xf7\x1d\x32\x1e\x0d\xd6\x7d\x6b\xef\xb8\xe9\xdf\xb4\x69\xd9\x9a\xc5\xd5\x41\x8b\x45\xb9\x95\x96\xb4\xa1\xbc\x4c\x10\x00\xa2\xd2\xf6\xa5\xdd\x19\x8a\xb4\xf5\x21\xe5\xe1\xa6\xb8\x6e\xb7\x72\x53\xcd\x75\x5e\x01\x41\xaf\xd7\xfb\x44\xd2\x7c\x2c\x1b\x7e\xfa\xe9\xa7\x61\x57\xd3\xa6\xf6\x17\x87\x2c\x6f\x5a\x13\x6c\x47\x96\xec\xbc\x1d\x66\xcb\x7c\x1d\x05\x00\x01\x53\xc1\xaf\xcb\x78\xe7\x74\xbc\x2b\xa4\xca\xb8\x13\x0a\x31\xc8\xcb\x68\x9c\x22\x4a\xe4\x22\x56\xab\x79\x6c\x36\x26\x99\x2a\x5b\x9c\xad\xaf\x8c\xb2\xb5\x4a\x01\x2b\x0b\x76\x0f\x14\x68\x6e\x3c\xe9\xdb\x8c\x31\xdd\x7b\x6a\xc3\xdc\x0b\x27\x4e\x9c\xe0\x04\x41\x78\x6c\x86\x19\x28\xbf\x13\x2f\x51\xe9\x03\x07\x0e\x30\x3b\xcc\xad\xbb\x8f\xde\xb5\xbe\xad\xce\xc8\xec\x8b\xbc\xe6\x09\x44\x80\x28\x00\xc1\x94\x4c\x9a\x53\x63\xc3\x15\x89\xf7\xa7\x4d\xa9\x4b\x3c\x43\xc7\x01\x20\x08\x00\x1c\x00\xf0\x89\x44\x82\x00\x00\x51\x68\x14\x98\x61\x18\x16\x00\xd4\x00\x60\xc4\x04\xea\x2b\xa3\x8a\xa7\xdb\xfc\xea\xe7\x9c\x7e\xf5\x66\x56\x40\x6c\x6e\x58\x00\x8a\x80\x22\x80\xa4\x9c\xc4\xcf\xb7\x86\xbe\x1f\x8b\xc5\x04\x51\x14\xcb\xf1\xf4\x88\x9b\x94\xd6\x95\xd2\xbb\x47\x6c\xf6\xc0\x81\x03\xcc\x2e\x63\xdb\xc1\x63\xf7\xac\x6f\xcb\x09\xd6\x97\x9a\x85\x22\x4a\x86\xed\xdc\xcd\x1b\xb5\xd1\xb7\xc2\x2a\xa1\x87\x50\xe2\xf6\xfb\xfd\xf1\x99\x99\x19\x21\x10\x08\x40\x28\x14\x02\x8e\xe3\x96\x8c\xab\x50\x28\xb0\xc1\x60\x00\x9b\xcd\x06\xd5\xd5\xd5\xb8\xba\xba\x5a\x2d\x67\xe4\x76\x85\x80\x3b\x3b\x3c\xda\x3f\xdb\xec\xd6\x3d\xc7\x8a\x58\x99\x95\x2d\x25\xef\x6c\x08\xfe\xcb\xa4\x91\x7b\xe3\xdd\x77\xdf\x0d\xfb\x7c\xbe\x27\xb2\xe3\x15\xb6\x54\x80\xae\xae\x2e\x7c\xa0\x61\xcb\xce\x97\xfb\xed\xef\xb0\x22\x32\x4a\x7c\x48\x61\x04\xbf\x36\xe3\xed\x76\x86\x7e\xe0\xd7\x66\x4e\x27\x53\x49\xd7\xbd\x7b\xf7\x52\x63\x63\x63\x90\x5b\xcd\x55\x83\x5c\x2e\xc7\x4d\x4d\x4d\xd0\xde\xde\xce\x9a\xcd\x66\xbb\x26\x8d\x9f\xdb\xf3\xd0\xf4\x85\x96\x80\xaa\xe3\x6a\x5d\xf4\x7f\xaf\xd5\x45\xbf\xd8\x77\xb5\xcf\x3d\x38\x38\xf8\xc4\x9b\xd6\x72\x27\x2d\xdc\xda\xda\x0a\x87\xbb\xf6\x3a\x3f\x75\xbb\xe2\x82\x96\x67\x6a\xf2\xb6\x44\x25\xbb\xca\x9d\x9a\xf8\xc5\xde\x86\xf0\x37\x79\x22\xdc\xec\xef\xef\x8f\xf7\xf7\xf7\xc3\x93\xd8\x56\x11\x90\xe6\xe6\x66\xdc\xd5\xd5\xa5\x54\xab\xd4\xce\xba\x05\xe5\x91\x69\x53\xea\xf4\xf8\xc4\xc3\x91\xee\xee\xee\x95\x98\x2d\xa5\xd2\x05\x28\xbb\xc2\x46\xa3\x11\x7f\xf2\xa5\x97\xf5\xaf\x0e\x55\x9e\xa9\x89\x28\x77\x02\x48\xfd\x25\x05\x11\x01\xb9\xd8\xb2\x70\xe2\xbe\x23\xf1\x5d\x7f\xc0\x3f\x7e\xe9\xd2\x25\x21\x12\x89\x48\x8f\x7d\xc5\x47\xbc\x52\xff\x4b\x1d\x65\x0b\x6d\x2c\xcb\xc2\xf6\xed\xdb\xb1\xd3\xe9\x64\xbd\x5e\x2f\xdf\xdd\xdd\x4d\x78\x9e\x5f\xc2\x94\xcd\x66\x83\x4d\x9b\x36\x61\x93\xc9\xc4\x24\x93\x49\x32\x36\x36\x26\x8c\x8e\x8e\x02\xa5\xb4\xe4\x51\xb3\x2c\xc3\xc7\x8f\x1f\x67\x0f\x27\x1b\x5f\xdf\x31\x61\xfc\xda\xe2\xbe\x99\x65\x58\xc4\x94\x9c\x6b\x9b\xff\xf7\x31\x1b\xf7\xdd\xb1\xb1\x31\xef\x07\x1f\x7c\xf0\x91\x97\xf4\x49\xa0\xa6\xa6\x06\xbf\xf4\xdc\x0b\x8e\x03\x0f\xad\xdf\xab\x0f\x29\x9f\x0d\xab\x04\xd7\xa5\x96\x85\x2f\x5f\x9c\x1d\xe8\xed\xe9\xe9\x29\x49\x13\x2e\xf5\xac\x5b\xb7\x0e\xb7\x68\x2a\x37\x6e\x9b\xd2\x7f\x09\x21\xc8\x72\x89\xb2\x1b\x32\x45\x14\xde\x6f\x5e\x38\xf1\xc0\xc6\x7d\x77\x70\x70\xd0\xfd\xc1\x07\x1f\x90\x72\xe3\xfc\xae\x9f\xdd\xbb\x77\xb3\xfb\x26\xac\x6f\xb4\x04\xd5\x7f\x22\x27\xd8\x6e\x4b\xb0\xdb\x8e\xdc\xb7\x9e\xdc\xd0\xbc\xd6\x61\xb7\xdb\x4b\xe2\x48\x97\x9c\x00\x00\x91\xcb\xe5\xd0\xd9\xd9\xa9\xdc\x39\x61\xf8\x86\x5c\x44\x6a\xa0\x14\x0a\x0f\x50\x18\xac\x4c\x5c\x1c\xac\x4c\x7c\x7b\x78\x64\xc4\x7d\xf5\xea\x55\x28\xc2\x2f\x2e\xc9\x32\xed\x1f\x09\x2c\x16\x0b\x68\x35\x5a\x63\x4d\x58\xb1\x1b\x00\x0a\x34\xaa\x32\xd8\x6e\x8f\xb3\x5d\x55\x55\x55\x25\xf1\x1e\xb1\xa1\xf5\xeb\xd7\x43\x1d\xaf\xdb\xd1\x34\xaf\x7a\x9e\xa2\xac\xff\xcb\x3f\x21\xb5\xe0\xeb\x69\x0a\x7f\xc3\x37\xe7\x73\x5d\xbe\x7c\xf9\x71\x98\x59\x4e\x18\xc5\xcf\xaa\xfa\x51\x4a\x01\x00\x48\x58\x9d\xf1\x03\x00\xe4\x69\x25\x08\x84\xa8\x52\x08\x61\x8c\x4b\xe2\x3f\xb2\x9b\x6d\xd8\xb0\x41\xb9\xc5\xad\xff\x02\x02\x84\x81\xe6\x36\xa9\xdc\x51\xf0\x62\xf3\xc2\x1b\x9c\x98\xbe\xdd\xdd\xdd\xbd\x92\xcd\x7e\x94\x55\x5c\x95\x26\x84\x42\x21\x92\xe0\x12\xd1\x4b\xcd\xe1\x37\xa2\x0a\x21\x0c\x00\x20\x22\x10\x7a\x9a\xc2\x3f\x89\x29\xc5\x7b\x6e\xb7\xbb\x24\x1e\x03\x92\x2d\xbc\xb1\xb1\x11\xac\x58\xdb\xdc\x14\x54\x1d\xa4\x00\x00\x08\x80\x02\x02\x40\x00\x93\xe6\xd4\x5d\xb7\x31\xfd\xf3\xeb\x57\xae\x73\x89\x44\x02\xa4\x78\xbf\x2f\x78\xff\xfd\xf7\xf9\x43\x87\x0e\xfd\xe2\xcd\xad\xb3\x2e\x73\x52\xbe\x31\xce\x8a\xde\xa4\x9c\x7c\x38\x34\x34\x14\xf2\xfb\xfd\x25\x69\xcc\x1f\x2d\x31\x40\x36\x30\x68\xf5\xab\x5e\x91\xd1\xec\xb1\x4e\x1a\xa7\xde\xac\x8d\xfe\x38\x1c\x09\x7b\x87\x87\x87\x41\x8a\x23\x79\x7f\xdc\x52\x0a\x2b\xd5\x95\xc4\xf5\x78\x3c\x70\xe6\xcc\x99\x68\x47\x47\xc7\xfb\x26\x93\xa9\x37\x19\x4b\x92\xd1\xd1\x51\x61\x6c\x6c\xac\x2c\x2e\x23\xa9\x84\xaa\xaa\x2a\x6d\xd3\x80\xfa\x79\x0a\x34\x1b\xbd\xa0\xec\x5e\x10\xd0\x66\x5c\x5e\x3d\x7f\x7e\xe0\xf2\x00\x9f\xf3\x6f\x05\x9c\xa2\xf7\xc7\x2d\x01\x1e\xdd\x47\xca\x85\xa5\x04\x00\x40\x26\x93\xc1\x86\x0d\x1b\xc0\xe1\x70\x30\x00\x40\x66\x66\x66\xc8\x85\x0b\x17\x04\x00\x10\x10\x42\xb8\xbd\xbd\x1d\x5e\x3e\x7e\x5c\xc9\x32\x2c\x0e\x45\x16\xf8\x3b\x77\xee\x40\x20\x10\x28\xcc\x9b\x67\x18\xea\xea\xea\xb0\x9a\x30\x55\x8e\x18\xbb\x31\x1b\xc4\x53\xc8\xdb\xf0\xa8\x9d\xbb\xc8\x67\x78\xef\xf8\xf8\x38\x3c\x29\x58\x2c\x16\x5c\x57\x57\x07\x46\xa3\x11\x03\x00\x44\xa3\x51\x32\x3d\x3d\x0d\x7e\xbf\xbf\xd8\x56\xcb\xda\xb0\x42\xa1\xc0\xc7\x8e\x1e\x65\x76\xa6\xd7\xfc\xe9\x46\xaf\xf6\x2f\x08\xa2\xc2\x2d\x67\xeb\xf7\x2f\x37\x36\x9e\x3e\x73\xe6\x8c\xb0\x77\xef\x5e\xbc\xcf\xdc\x7e\x70\xcf\xb8\xf1\x5b\xba\xb4\xac\xc6\x65\x4e\x9d\x3f\xff\x62\xdd\x17\x4f\x5f\xf8\xb5\xdf\xe3\xf1\x10\x80\xac\x4a\x03\x00\x60\x87\xc3\x01\x15\x31\x45\xa7\x8c\x22\x76\xf1\xfc\x95\x3d\x46\xba\x2c\xc9\xdf\x4e\x4f\x4f\xa7\x72\x47\xc6\x72\xb6\x5b\xf2\x48\xa7\x56\xab\x61\xd7\xae\x5d\xd8\x69\xae\x69\x33\x7b\x85\x57\x95\x61\xb1\x1d\x01\xe0\x94\xb6\x66\x64\xe1\xb9\xa7\x4e\x3e\x8c\xcf\x0d\xf4\xf4\xf4\x90\x68\x34\xba\xa2\xd0\x3a\x3b\x3b\xf1\x36\xa1\xfa\xb5\xfd\x63\xa6\x1f\xe7\x22\x6a\x38\x3c\xc4\xee\xe0\x3a\xc4\x17\x99\xe3\xc7\xdf\xab\xd3\x57\x34\xbe\x78\xdd\xf2\x36\x4b\x90\x1e\x00\x41\x4b\x50\xfd\x5a\x9a\x31\xf3\xc1\x9d\x3b\xff\xfa\xe4\xc9\x93\xbc\x94\x78\x62\xb5\x5a\x19\x7b\x5c\xfe\x14\x64\xdd\x2d\x00\xcd\x86\x7b\x49\x39\x89\x86\xd4\xc2\x40\x4e\x42\xcb\xa9\xf3\x23\x02\xd0\x6a\xb5\x70\xec\xd8\x31\x76\x3b\xef\x78\xbd\xed\x0a\x77\xab\x62\x82\xff\x9a\x21\x20\xbe\xa4\x0f\x88\xc7\xec\x93\x99\x7f\x74\x5e\xe1\xae\x6d\x0d\x9b\xbf\x73\xfc\x13\x2f\xa9\x4d\x26\xd3\x72\xe3\x12\x00\x80\xc6\xc6\x46\xb6\x39\xa8\x7e\x15\x15\x7c\x25\x00\x06\xc4\x34\x05\x55\xaf\x5a\xad\x56\xd6\x11\x63\x77\xb2\x22\xd6\xe7\xdb\x80\x02\xac\x09\x2b\x9f\x35\xe8\xf5\x5a\x8d\x46\x03\x00\x8b\x2b\x0c\x26\x93\x89\x31\x4d\xcb\x9b\x8b\x13\x15\xf3\x9a\x8c\x8b\x02\x0d\xf9\x7c\xbe\x62\x42\x96\xb3\x61\x00\x00\xd8\xb7\x6f\x1f\xd3\x1c\x50\xfc\x43\xc5\x38\xff\xcf\xf9\x30\x7e\x69\x02\x05\x31\xd6\xa9\xcc\xdf\x51\x2c\x87\xfd\xfb\xf7\x7f\xe5\xd4\xa9\x53\xa9\xfc\x18\x4e\xa7\x13\x3b\x1c\x0e\x4c\x29\x05\xb7\xdb\x0d\x93\x93\x93\x84\x61\x18\x9c\x94\x8b\x1c\x45\x4b\x03\xb6\x04\x4b\x38\x00\xc0\x21\xb5\xe0\x23\x88\x12\x04\xa8\xa0\x69\xf3\xea\x8c\x17\x10\x82\xbc\xdf\x2e\x30\xac\x56\xab\x19\x5d\x5a\x56\x55\x18\x26\x57\x84\x95\xc2\xb4\x48\x48\x4a\x12\x18\xac\x0a\x1a\x1a\x1a\x70\xb5\xc1\xd6\xec\xb8\x9b\xf8\xca\x92\x6c\xd1\x92\xf0\x32\xbb\x49\xd8\x5c\x99\xbf\x75\xd4\xe8\x4f\xb6\xb5\xb5\x5d\x1f\x19\x19\x21\xc7\x8e\x1d\x63\x76\x30\xf5\x87\x37\x7a\xb5\x9f\x13\x31\x08\x77\x3a\x63\x3f\xfc\xb0\xf5\x41\xcf\xfc\xfc\x7c\xea\xd6\x1a\xe5\x4f\x9b\x82\xaa\xfd\xda\xb4\xcc\x08\x08\x20\xa2\x14\xfc\xc3\x15\x89\x5f\xc6\xe3\x71\x1e\xe9\x74\x77\x3f\x6c\x88\xfc\xec\x69\x97\xe1\x35\x4c\x01\x47\x95\x62\xe8\x72\x53\xf8\x07\xa1\x50\x28\x9e\x8f\xc5\x19\x00\x00\xad\x56\x8b\x01\x80\x55\x66\xb0\x11\x20\x97\xa8\x41\xd9\x20\x90\x63\xc5\x60\x22\x91\xe0\xe1\x31\xfd\x6e\x43\x43\x03\x36\xf8\x85\x97\x90\x08\xea\x25\xb9\x2e\x89\x30\x0b\xef\x14\x18\xa3\x4f\x78\xa5\xb9\xb9\xf9\xb6\x5e\xaf\x17\xb6\xb3\xf5\x47\x8e\x0c\x5a\x4f\x21\x00\x06\x01\x40\x7d\x48\x79\x24\xd3\x41\x5f\xb8\x11\x1e\xef\x09\xc9\x52\x17\x7f\xd2\x39\xf7\xd9\xc6\x79\xe5\x51\x82\x40\x98\xb0\x24\xdf\x49\x90\xf4\xf5\xb3\x67\xcf\x92\xad\x5b\xb7\xfa\xa1\xb1\xe9\xab\xc3\x15\x89\xdf\x68\x78\x99\x63\x5e\x93\xb9\x9d\x12\x33\x37\xaf\x74\x5f\x29\xd0\x5f\x58\x61\x4a\x29\x66\x08\x62\x17\x73\xc9\x59\xbd\xc9\xc8\x68\x9c\x10\xb2\x92\x3b\x79\x24\x0c\x33\x9b\xcd\x8c\x62\x8e\xac\xcd\x67\x80\x16\x15\x1a\x65\x83\x10\x4a\x01\xe5\x1a\x29\xa5\xa0\x48\x90\x36\x7b\xbd\x9d\xb1\x58\x2c\xcc\xda\x09\xf5\xe7\x10\x05\x06\x72\x87\x1e\x4c\x40\xd9\xe6\x57\x7f\x76\x50\xaf\xfc\xf0\xec\xd9\xb3\xf1\x1d\x3b\x76\x9c\x4b\x55\xd8\x7a\x10\x42\x30\x3b\x3b\xcb\xf5\xf5\xf5\x09\xd1\x68\x94\x5c\xbc\x78\x11\xbc\x5e\xef\xb4\xd3\xe9\xfc\xb9\x5a\xad\xc6\x01\x57\x40\xb8\x73\xe7\x0e\x99\x9f\x9f\x2f\xb8\x3c\x46\x4a\x64\x5e\xe0\x08\x00\x0a\x8e\x78\x11\xca\xb9\x8f\x92\x6d\x18\xe3\xdc\x49\xad\x08\x50\x2e\xc5\x87\xa4\x73\x65\xe5\x2b\x93\xc9\xb0\x4c\x26\x83\x0c\xa6\x4b\xa7\xce\x0a\x1e\x34\x1a\x0d\xf6\xfb\xfd\xe4\xf4\xe9\xd3\x7c\x45\x45\x85\x90\xc9\x64\x20\x14\x0a\x15\xe6\xa6\x94\x92\xe1\xe1\x61\x08\x87\xc3\x82\x5c\x2e\x87\x85\x85\x05\x88\xc5\x62\x4b\xe8\x94\x1e\x2d\x89\x20\xa3\x7c\x71\xca\x95\x15\xb1\x1a\x16\xc3\xab\x55\x43\x3a\x9d\x26\x9c\x5e\x33\x0a\x90\x81\xbc\x0b\x29\xfe\x5d\x9c\x09\x41\x52\x2f\x1b\x8b\xc5\x62\x42\x3a\x9d\x26\x77\x6b\xe4\xa7\x9c\x01\xf5\x41\x85\x88\x94\x00\x00\x9c\x5c\x8c\x0e\x56\xc6\x7f\x19\xf0\x05\x84\x96\x96\x16\xfc\xcc\xb6\xa7\xd5\x4d\xbc\x61\x73\x06\x53\xee\x01\x04\xef\x7d\x70\xb9\x87\xf7\x7a\xbd\x60\xb1\x58\xe0\xe0\xfe\x03\xec\xc6\x8c\xfd\x39\x5d\x9a\xa9\x9a\x34\x71\xef\x5f\x73\xdd\x73\xf5\xf5\xf5\x91\x7c\xd2\x8f\x01\x00\x22\x8a\x22\x46\x08\x09\x49\x39\x89\x16\xaf\x89\x26\x8d\xad\x2c\xcb\x96\xbd\x38\x93\x4a\x4f\xda\xe6\x76\xbb\x85\xca\xa7\xec\xe7\x05\x16\xfd\xbd\x9c\xa7\x4b\x73\x61\x45\x39\x31\x51\x06\xa9\x70\x25\x73\xd6\xfd\xd0\x2d\x4c\x4c\x4c\x10\xcb\xe1\xc3\xbf\xfe\xe9\x16\xdf\xe7\xdb\xfc\x9a\xe3\x04\x51\x61\xb8\x82\x3b\x15\x65\xf8\x9e\x70\x38\x4c\x5e\x7c\x7a\x5f\xfd\x2b\x03\xf6\x77\x4c\x49\xa6\x9d\x02\xc0\x8c\xd1\x70\x4e\x7f\x50\xf3\x99\x33\xe7\x7f\x13\xde\xbf\x6f\x9f\xf2\xe5\xc9\x9a\x1f\xb7\x04\x54\xaf\x01\x00\xec\xc2\x86\xb8\xb1\x5d\xfe\xaa\xb8\x4d\x3c\xd7\xd7\xd7\x07\x90\x27\x30\x99\x4c\x82\x28\x8a\x42\x4c\x21\x64\x43\xad\xdc\x7d\x0f\x00\x02\x63\x52\x5e\xab\x54\x2a\x59\xb9\x5c\x2e\x65\x6c\xb9\x30\x90\x00\x00\x8c\x8e\x8e\x42\x06\x91\x31\x77\xbb\xe2\x3f\x28\x02\x42\x81\x02\xa5\xd9\x8d\x30\x5b\xd2\x82\xcb\xf7\xac\x53\xfe\x37\x2f\x87\xdb\xf7\xef\xdf\x27\x5e\xaf\x17\xde\x7b\xef\xbd\xb0\x57\x8c\xfc\xec\x7a\x5d\xf4\xaf\x6e\xac\x89\x7e\xde\x93\x9c\x3f\x7d\xee\xdc\xb9\x68\x75\x75\x35\xd3\xe9\xd6\x7f\xd9\x98\x63\x16\x00\x60\x4d\x58\xf1\x7c\x7b\x50\xff\xe7\x87\x0f\x1f\xc6\x75\x19\xc3\xce\x3c\xb3\x00\x08\xe4\x04\x6b\x77\x4d\x18\xbf\xb9\x7e\xfd\x7a\x2d\xcb\xb2\x00\x12\xb7\x44\xe2\xf1\x38\x1f\x52\x1b\x27\x16\x93\xe9\x59\xb0\x26\xe4\x8d\x0c\x60\xbd\xd5\x6a\x8d\xce\xce\xce\x16\x33\x57\x0e\x48\x3c\x1e\x87\x9b\x37\x6f\x46\xb7\x6d\xdb\xf6\xc3\xc9\xcd\x2a\xa6\xe6\x7e\xea\x6f\xd8\x14\x59\x92\xe2\xcd\xb0\x88\xf3\xac\x55\x9c\x08\x57\x32\xdf\xeb\xbf\x7b\x37\xbc\xb0\xb0\x40\x00\x00\x5c\x2e\x17\xb8\x5c\xae\x14\x00\xa4\xa4\xfd\xcd\x66\x33\xab\xf3\xcb\x9a\x51\x91\xaa\xe8\x52\xcc\x5a\x84\x10\xab\xca\xe0\x5a\xc8\xa5\x19\xf3\xa0\xc8\x60\x3b\x46\x58\x6b\x34\x1a\xe3\x7e\xbf\x7f\x31\x3c\x0c\x85\x42\x42\xc0\x68\xbf\xbf\xb8\x55\x65\xd1\x58\x11\xe9\xed\x71\x76\xa3\xc3\xe1\x70\xcf\xce\xce\x3e\x96\x1d\xf7\xf7\xf7\x03\xcb\xb2\xde\x8e\x8e\x8e\xef\xc4\x76\x6b\x2e\xe9\x82\xe2\x21\x55\x4c\x74\x02\x05\x48\xe9\xf0\x44\xcc\xca\x5c\x10\x65\x70\xfd\xde\xbd\x7b\xfe\x1b\x37\x6e\x00\xac\xb0\x4f\x24\x93\x49\x61\xca\x9c\xba\xdd\x1c\x54\x3d\x97\x5f\x16\x02\x40\x1e\x5a\x93\x57\x10\x42\x82\xc7\x90\xbe\x1b\x53\x08\x41\x5d\x9a\xb1\x66\x31\x28\xdc\xaf\x4c\x5c\x24\x94\x70\xe1\x70\x18\x00\x00\xcb\xf2\xa2\xd2\xe9\x74\xd4\x52\x5f\x89\x36\xbb\x75\x9f\x45\x14\xc9\x24\xf7\x09\xc0\xb1\x24\xec\xb3\x89\x17\x46\x46\x46\x04\x28\xde\x71\xca\x03\x01\x00\xe4\xf5\x7a\xc1\xe3\xf1\x24\x55\x1a\xf5\xa4\xdc\xa1\xbf\x92\xb0\x30\xbf\x89\x9b\x65\xbf\x4a\x6a\xd0\x6f\xbd\x73\xbe\x91\x2b\x57\xae\xc4\xee\xdf\xbf\x4f\x72\xe3\x4a\x4b\xa9\x9b\x20\x00\x80\x94\x4a\xa5\x28\x6b\xb6\x4c\x13\x44\xab\xf4\x29\x59\x45\x5c\x21\x46\x7a\x9a\x22\x6f\x4e\x99\x93\x27\x6e\xdc\xbc\x19\x35\x57\x58\x23\x53\x76\x7e\x46\x21\xe0\x6a\x9e\x21\x99\xfe\xea\xc4\xf9\x5b\x6b\x62\xff\x3a\xf6\x60\xcc\x33\x31\x31\x21\x82\xe4\x9e\x04\x6c\x36\x1b\x3e\xfe\xd2\x71\xc7\x27\xfb\x6d\xbf\x5d\x13\x51\xb4\x83\x64\xc6\x88\x52\x9c\x3e\xb1\x75\x76\xeb\xc9\x5f\xfc\x3c\x18\x0e\x87\xcb\xa5\x62\xa5\x75\x65\xd3\xb4\x06\x83\x01\x03\x00\x3c\xc6\xc9\xad\x80\x2b\x93\xc9\xf0\x81\x03\x07\x70\x6d\x6d\xad\x03\x28\xd4\x00\x80\x40\x81\x4e\xdf\xbb\x77\x2f\xd8\xd7\xd7\x47\x6a\x6a\x6a\xf0\xde\xbd\x7b\x95\x2a\x95\xca\x01\xd9\x2b\x9c\xe0\xd4\xd4\x54\xb0\xbb\xbb\x9b\x08\x82\x90\x1d\x23\x3f\x2a\xc7\x71\x74\x7d\xfb\x7a\x51\x8d\xd8\x96\x86\x79\x65\xe1\xfa\x13\x01\x80\x42\xc4\x06\xbf\x2e\x33\x14\xd6\x88\xfd\xd3\xd3\xd3\x25\x6f\x15\x8b\xea\x8a\xdb\x0a\xff\xd3\xe9\x34\x4d\xa7\xd3\x8f\x73\xf3\x57\xe8\x4b\x29\xa5\xe3\xe3\xe3\x24\x10\x08\xc4\xe3\x89\xb8\xc7\xe3\xf5\xcc\x5e\xbd\x7a\x95\xcb\x05\xfc\x10\x8d\x46\xe9\xc0\xc0\x40\x66\x61\x61\x21\xe2\xf3\xf9\x02\xb7\x6f\xdf\x4e\xf4\xf7\xf7\x8b\x84\x90\xc2\x18\xb2\x9c\x04\x11\x00\x20\x83\xc1\x40\x14\x35\xc6\xf4\x53\x1e\xdd\xa7\x11\x05\xbc\xa8\x51\x08\x8c\x29\x59\xad\x77\x1d\x7b\xf2\xc1\x83\x07\x3c\xcf\xf3\x92\xe4\xed\xff\xff\x13\x89\x44\xc0\xe3\xf1\xc0\xec\xec\x2c\x38\x9d\x4e\x38\x76\xe0\x05\xc3\xd1\xb6\x9d\x1d\x9b\x37\x6f\xc6\x1a\xbb\x31\x31\x34\x34\x44\xbd\x5e\x2f\xe4\x52\x51\x4b\x70\xf3\x36\x4c\x01\x80\x26\x93\x49\x68\x5c\xe7\x4c\x58\x92\xf2\x1d\xb6\x04\x5b\x9b\xed\x9d\xdd\x1e\x34\xbc\xac\x32\xa2\x21\x53\xa9\x0a\xf6\x4e\xde\x1e\x8a\x56\x82\x14\xd5\x95\xfb\x5f\x5c\x9f\x6f\xa3\x92\x76\x2a\x79\xca\xe1\xc0\xa6\x4d\x9b\xe0\xe8\xda\x67\x76\x7c\xba\xbf\xaa\x7b\x93\x47\xf7\xa5\xa7\x66\x75\x9f\xd7\x59\x8c\x49\xbc\xd6\x7a\x63\x78\x78\x58\x28\x85\x2b\x93\x0e\x90\x48\x24\x68\x7d\x7d\x3d\x9f\x31\xb3\xa4\xdd\xa7\xf9\xc4\x52\x07\x85\xa0\x2a\xaa\xe8\xf4\xb5\xb1\xbf\x0c\x44\x43\x79\x17\x22\x25\xaa\x98\xc8\x62\x06\xa0\xa8\x94\x3e\x50\xd4\x0e\x25\xea\x96\xe0\xc8\xe5\x72\xf4\xfc\xf3\xcf\xab\x8f\x0c\xdb\x7e\x6a\xe1\xe4\x6b\xb3\xf1\x0e\x62\xd6\x44\x14\xcf\x4e\xd7\xd3\x77\xe6\x12\x0b\xfe\xbc\x9b\x93\xe2\x3d\xe2\x06\xee\xdc\xb9\x23\x04\xb4\x99\xf7\x1e\x5a\x93\xd7\x0b\xfd\x50\xb6\x54\xf3\xd8\xb1\x7f\xcc\xfc\xc6\x9e\xdd\xbb\xb5\xf9\x54\x4d\x0e\x56\x9d\xa6\xf9\xb8\xc0\x64\x32\x81\x0c\xcb\xf4\x86\x24\xd3\x08\x92\x63\x0c\xa6\xc0\xea\xd2\x4c\x9b\xc5\x62\x29\x89\x27\xbd\x86\x00\x00\xc0\x93\x93\x93\x30\x1f\x9a\xf7\xf5\x36\x46\xbe\x27\xc8\x28\x8f\xb2\x91\x22\x20\x94\x8d\x72\x1a\xe7\x95\x87\xf7\x78\x6c\xaf\x1f\x3a\x74\x88\xd5\x68\x34\xbf\x97\x2b\x16\x00\xc0\x1c\xc7\x01\x20\xe0\xa7\xcc\xa9\x81\x6c\x50\x95\xa5\x8f\x63\x49\x78\x4e\xc7\x8f\x71\x1c\x57\xcc\x1f\x06\x89\x1f\x96\xaa\x0d\x8a\x44\x22\xa4\x6e\x7d\xf3\x1c\x00\xd4\xd6\x2e\x28\x37\x50\x94\x4d\xf7\xe4\x75\xb4\x2a\xaa\xe8\xc2\x6a\x05\xc7\x6e\x70\xdc\x70\xb9\x5c\x62\x26\x93\x01\x78\xd4\x46\x8b\x55\xbe\xf8\x7f\x31\x4e\x29\x9b\x2d\xd7\x0e\x3c\xcf\x93\xaa\xaa\x2a\x21\xbc\x46\x3e\xa5\x4d\x33\x6b\x35\xbc\xcc\x10\xd0\x66\xbc\xe7\xdb\xe6\xbf\xb5\xc0\xa4\x2f\xf6\xf6\xf6\xf2\x12\xba\x0a\xb8\x4b\x6c\x38\xcf\x74\x2c\x16\xa3\x3a\x9d\x2e\x9d\x69\xd0\x4d\xd4\x84\x95\xfb\x74\x69\xc6\x9c\xdd\xe3\x50\x2e\x86\x45\xa8\x6e\x41\xb1\x5f\xa1\x50\x82\x72\xcb\x9a\xab\xde\x59\xaf\xc0\x71\x5c\xb1\xe0\x96\x8c\x59\xe2\xff\x4a\x7d\x0b\x65\x53\x53\x13\x26\x84\xa0\x9c\x3b\x2b\xe0\x7a\x3c\x1e\x5a\xd3\x50\xeb\x9d\xa9\x26\x17\x6f\xad\x89\xfd\xea\xbe\x23\xf1\x3f\x11\x19\x7f\xa9\xa7\xa7\x27\x3e\x37\x37\x47\x4a\x8d\xbd\xc4\x2d\x49\x1f\xaf\xd7\x4b\x1b\x9b\x9b\x42\x73\x15\x74\xb6\xd5\xaf\x3e\xc8\x12\xac\x58\x74\x52\x59\x15\xaa\x89\x28\x76\x3b\x32\xea\x16\xe5\xf6\xba\xcb\x02\xa6\xdc\xdc\xdc\xdc\xc7\xea\x7e\xaa\xaa\xaa\xd0\xd1\x23\x47\x15\xaf\xe8\xb7\xbc\x5a\xb9\xb9\x65\xd6\x1b\x9c\x4b\xc6\x62\xb1\x42\x7b\x26\x93\x81\x91\x91\x11\x31\x16\x8b\x85\x62\xb1\xd8\xf4\xd4\xd4\xd4\x5c\x6f\x6f\x2f\x9f\xcb\xbf\x95\x1c\xb3\x70\xb4\x84\x22\xd7\x20\x8a\x22\x0a\x04\x02\x62\xed\xda\xa6\x19\x9f\x31\xc3\xb5\xfa\xd5\x7b\x30\x85\xc2\x91\x33\x3f\xa2\x85\x93\xaf\x6f\x0d\x6a\x5f\xd6\x34\xd9\x27\xcd\xeb\xeb\x5c\xf1\x44\x5c\xcc\xa5\x5c\x57\x72\x53\x50\xae\xcd\x64\x32\xc1\xae\x5d\xbb\xf0\xc1\x8d\x3b\x5a\x8e\x4d\x54\xfe\xd7\x26\x8f\xee\x9f\x8c\x69\xb6\x21\xbd\xd9\xfa\xee\xf8\xc3\x71\x21\xa7\xaa\xd9\x25\xa3\x94\xcc\xcf\xcf\x23\xb7\xdb\x0d\x3e\x9f\x0f\x78\x9e\x5f\x76\xde\xbc\x4a\x4b\x23\xd4\x42\xa4\x9a\x48\x24\x48\x22\x91\xe0\x2d\xad\x35\xe3\x01\x6d\x86\x36\x07\x55\x5d\x98\x2e\x66\x04\xf3\xa0\x10\xb0\xa9\xd5\xaf\xfe\x54\x23\x6f\xd8\x6c\x6b\xaf\x9b\x71\xac\x6f\xf0\x31\x72\x39\x49\x24\x12\x52\x02\x4a\xf9\xd6\x82\x7a\x32\x0c\x83\x1a\x1a\x1a\xa0\xab\xab\x0b\xef\xdf\xf4\xcc\x9a\xe7\xa3\xf5\x5f\x3d\x30\x6a\xfe\x4f\x0b\xc7\xb6\x43\x56\xb0\xeb\x78\x35\x0a\xd1\x26\xe3\xcd\xd1\xd1\x51\x01\x1e\x35\x8b\x95\xdc\x61\x2e\xf9\xbc\x0a\xd8\xbc\x79\x33\xee\xec\xec\x74\xd4\x84\x15\x7f\xf9\xe2\x7d\xcb\x97\x55\x02\x56\x2f\xca\xa9\x20\xeb\xc2\xaf\x5f\x9b\xb9\x3e\x62\x4f\xbc\x3d\x69\x49\xfd\x7a\x5a\x08\x4d\xfb\xfd\x7e\x61\x61\x61\x81\x24\x12\x89\xc2\xa7\x83\x32\x99\x0c\x34\x1a\x0d\xe8\xf5\x7a\xb0\x5a\xad\x4c\x8d\xd1\x6e\xac\x8b\xaa\x77\xb6\xfa\xd5\xaf\x36\xcc\xab\x8e\x30\x54\x92\xfc\xcb\xf1\x90\xc1\x84\x3b\xd5\xe1\x7f\xe1\xdc\x83\x6b\xbd\x37\x6f\xde\x7c\x22\x97\x87\x60\x95\xa9\x9b\x8d\x1b\x37\xc2\xf6\xed\xdb\xad\xa6\xa4\xfc\xe5\x17\x87\x2c\xaf\x5b\x13\x6c\x95\x54\x9c\x92\x04\x86\x44\x04\x94\xc4\x14\xe2\xb8\x5f\xc7\x0f\x2c\xa8\x84\xf1\x38\x2b\x7a\x78\x86\x44\x29\x02\xc2\x10\xa4\x54\xf1\xd8\x6e\x48\x31\x0d\xb6\x38\xdb\x6e\x49\xc8\xdb\x65\x14\xb4\x00\xa8\xec\x78\x00\x00\x6e\x43\xaa\xf7\xe4\x06\xdf\x0b\x27\x4e\x9c\xe0\x96\xf9\x56\x6b\x59\x86\x01\x96\x46\x37\x65\x23\x9e\xc6\xc6\x46\xd8\xb3\x67\x8f\x56\x85\xd9\xae\x67\x26\x0d\x5f\x79\xca\xa3\x7d\x76\xc5\x8f\x49\x57\x98\x9c\xae\xf6\x1d\x51\x78\x60\x4b\xde\xbd\xd4\xbc\xf0\xf5\x90\x98\x38\xff\xd6\x5b\x6f\xa5\x4a\xd0\x5a\xcc\x07\x14\xb7\x97\xfa\xd6\xb2\x78\xe1\x70\xae\xa4\x0b\x0b\x0b\x74\x6a\x6a\x2a\x63\xaf\xac\x98\xf6\x57\xe3\xde\x69\x53\x2a\x68\xe5\xe4\x2d\x5a\x5e\xa6\x07\x04\x80\x96\x79\x4a\xb5\xc3\x2a\xde\x29\x02\x08\xab\x85\xe0\x85\xd6\xd0\x8f\xae\xd7\xc6\xbe\x1e\x4e\xc5\xae\x9f\x3f\x7f\x9e\x2f\xe3\x06\x8b\x8f\xa9\xd2\xbd\x03\x60\xb5\x36\x5c\x0a\xb6\x6c\xd9\x82\x3b\x3a\x3a\xf4\x0c\x96\xad\x6b\x0a\xaa\x3e\xd3\x39\xa3\x3b\x56\x11\x63\x6b\xf2\x1f\x89\x2e\x4d\xf2\x66\x2f\xe5\x90\x54\x9c\x8f\x50\x96\xff\x6e\x9a\x16\x28\x0b\xab\x84\xe0\xad\x9a\xd8\xb9\x21\x47\xe2\x4d\x01\xc8\xdd\xd1\xd1\xd1\xf0\xb5\x6b\xd7\x48\x6e\x23\x7c\x22\x58\xb5\x0d\x97\x02\x9d\x4e\x07\x5b\xb7\x6e\xc5\x4d\x4d\x4d\x7a\x04\xc8\xe9\x88\xb1\x07\xd7\xf9\x34\x2f\x34\xcd\xab\xda\xd5\x3c\xd6\x2e\x95\xa7\xf4\xa3\xb6\x32\x72\x46\x14\xd2\x0c\x4d\xb9\xcc\xc9\x91\xe1\x0a\xee\xbd\x69\x53\xea\x2c\x01\x3a\xe4\x76\xbb\x43\x37\x6e\xdc\x20\xc1\x60\xf0\x49\x49\x5d\x9c\x62\x99\xb6\xe2\xe0\xa0\xec\x2d\xbe\xc9\x64\x82\xf6\xf6\x76\xdc\xdc\xdc\xac\x64\x18\xc6\x2e\xa3\xa8\xd9\x9a\x90\x77\x56\x47\x14\x5b\xec\x31\xb6\xd1\xcc\xc9\x1d\xba\xb4\x4c\xcf\x0a\x98\xc5\x34\x7b\xdb\x41\x11\x90\x8c\x8c\xf0\x71\x85\x18\x5d\x50\x09\x41\xbf\x96\x9f\xf0\x1a\xf8\x01\x9f\x2e\x7d\x4d\xc0\x74\x8c\x10\xe2\x75\xb9\x5c\xdc\xe0\xe0\x20\xc9\xdd\x21\x2f\x97\x1e\xce\xd3\xbb\x5c\x06\x66\x55\x0c\x97\x4c\xd3\x94\xeb\xcb\x30\x0c\xae\xab\xab\x83\xfa\xfa\x7a\x5c\x55\x55\xc5\x2a\x95\x4a\x2d\x00\xe8\x11\x20\x23\x00\x18\x31\x05\xb5\x8c\x20\x35\x02\x00\x11\x53\x5e\x44\x10\x07\x80\x28\x05\x1a\x06\x80\x70\x26\x93\x89\xfb\x7c\xbe\xd4\xe4\xe4\x24\x71\xb9\x5c\x90\x4e\xa7\x3f\xf6\x68\xeb\xc9\xb7\xd8\x55\x80\xd1\x68\xc4\x16\x8b\x05\xf4\x7a\x3d\xe8\x74\x3a\xcc\x30\x0c\x68\x34\x1a\x8c\x10\x02\x8e\xe3\x88\x20\x08\x10\x8f\xc7\x49\x24\x12\x81\x50\x28\x04\x92\x3b\xa0\xdf\x19\x48\x6d\x78\x39\xb5\xf9\x83\x06\x5c\x54\x16\xd7\x4b\xff\x17\xf7\xfd\x28\xb8\xe5\xe6\xff\x58\x71\xff\x0f\x53\x0e\xb2\x7c\x11\x33\x9d\x6b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x8a\xd5\xc5\x8c\x92\x15\x00\x00") - -func web_uiV1StaticAppleTouchIcon60x60PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon60x60Png, - "web_ui/v1/static/apple-touch-icon-60x60.png", - ) -} - -func web_uiV1StaticAppleTouchIcon60x60Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon60x60PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-60x60.png", size: 5522, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon72x72Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x79\x1c\x86\xe3\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x48\x00\x00\x00\x48\x08\x06\x00\x00\x00\x55\xed\xb3\x47\x00\x00\x1c\x40\x49\x44\x41\x54\x78\x9c\xed\x7c\x7b\x6c\x1b\x47\x9a\xe7\x57\xd5\xcd\x66\x93\xe2\x9b\x14\x45\x4a\xa4\x24\x4b\xd6\xc3\x7a\xd9\x52\x64\x2b\xc9\x38\x91\x9d\xd8\x8e\xe3\x38\xd9\x64\x32\x98\xdb\xcb\x2d\xb0\x7b\xbb\x59\x04\xb7\xb7\x87\x5d\xdc\x61\x71\x58\x2c\x16\xb3\x83\x60\xb0\x18\x1c\x82\x99\xbb\x60\x76\x2f\xb8\xc9\xe0\x66\x0f\x8b\x99\x9d\x64\x32\x4e\x72\x33\x4e\x3c\x4e\xe2\xc4\x8e\xfc\x94\x62\xcb\xb2\xac\x97\x25\x59\xa2\x24\x4a\xe2\xfb\xd1\x6c\xf6\xa3\xea\xfe\x10\x49\x91\x14\x29\xd1\x8f\xec\x2d\x0e\xf7\x09\x2d\x75\x57\xff\xfa\xfb\xaa\xaa\xab\xbe\xfa\xd5\x57\xd5\x42\x00\x80\xa1\x50\x48\x26\x8d\x14\xdd\x23\x45\x38\x9c\x97\x86\x8b\x30\xa5\x9e\xbb\x17\x4c\x39\x29\xce\xd3\xd7\x8e\x41\x15\x00\xff\xbf\xc0\xd7\x53\x49\x95\xe8\xfc\x17\x8f\x61\x2b\x78\xe8\x6b\x93\x9a\x9a\x1a\x30\x18\x0c\x98\x61\x18\xa8\xaa\xaa\x02\x00\x80\x44\x22\x01\x84\x10\x48\x26\x93\xe0\xf7\xfb\x09\xc6\x18\x08\x29\xe8\xdd\xdb\x75\xfb\x87\x8e\x61\x61\x6b\xad\xe5\xfb\x96\x72\x8a\xf2\xfd\x49\x39\x1f\x96\xd3\xa5\xd5\x6a\x71\x5d\x5d\x1d\xb8\xdd\x6e\xa8\xae\xae\xc6\x56\xab\x95\xe5\xb1\x86\xd7\xcb\x8c\x45\x27\x63\x07\x2f\x33\x16\x96\x00\x0f\x00\xa0\x60\x2a\x88\x1a\x12\x13\x34\x24\x90\xe2\xd4\x88\xa8\x48\x62\x24\x1a\x55\xfc\x7e\x3f\xf1\xfb\xfd\xb0\xb4\xb4\x04\x92\x24\x95\x2b\xf0\x4e\xbe\xe5\x9e\x31\x3b\xf9\xa0\xfb\x76\x78\x2c\xcb\x42\x63\x63\x23\xb4\xb5\xb5\x61\xb7\xcb\xcd\xd9\xd3\x5c\xbd\x37\xcc\x3f\xe9\x8e\x71\x03\xd5\x09\xae\xc7\x24\x32\x4d\x1a\x82\x4c\x00\xc0\x6e\x64\x63\xe3\x37\x05\xc8\xfe\x56\x64\x86\x46\x62\x5a\x65\x76\xdd\x28\x8f\x2d\x9b\xd2\x17\x7d\x96\xf4\x85\x00\x97\x5e\x58\xf1\xaf\x48\xd3\xd3\xd3\x64\x76\x76\x16\x54\x55\xdd\x21\x7b\x0f\x26\xe8\x61\x2b\x34\x18\x0c\xb8\xab\xab\x0b\xda\xda\xda\xb8\x1a\xb5\xaa\xb1\x7d\x4d\xff\xed\xd6\x75\xfd\x4b\x56\x81\xed\x42\xb4\xc2\x2e\x8d\x10\x00\xa5\x5b\x92\x29\x02\x25\xac\x57\x46\xa7\xaa\x85\xf7\x27\x9c\xc2\x2f\xfc\x38\x31\x3f\x39\x39\x29\xdd\xbc\x79\x13\x04\x41\x28\xd7\x4d\x1e\x48\x1e\x5a\x05\x69\xb5\x5a\xdc\xdf\xdf\x0f\xed\x6d\xed\xfc\xae\x98\xfe\xf1\x3e\x9f\xf1\x3f\xd4\x87\xf9\xe3\x08\x10\x07\x34\xcf\xd2\x4e\xe7\xf9\x7f\x4b\xe5\x36\x93\x4e\x31\x95\x16\x2c\xe2\x47\xc3\xde\xf8\x9b\x77\x4d\xc2\xd0\xe8\xcd\x9b\xe2\x95\x2b\x57\x8a\x5d\xc3\x76\xd7\x15\x61\x50\xde\x0d\x80\x42\x0e\x04\x25\xee\x95\x54\xd4\xde\xde\x8e\x07\x06\x06\xb8\x86\xb4\xb1\xff\xe0\xac\xe5\x3b\x75\x51\xee\x29\x44\x11\xa6\x08\x00\x01\x05\x0a\x28\x63\x68\xf3\x9c\x02\x05\x44\x11\x14\x63\x0a\xea\x8c\xe6\xa5\xa2\xac\x86\xc2\x8c\x53\xa0\x64\xc9\x9c\x3e\x7b\xbe\x29\xfa\xdd\xbb\x9a\xe8\xc8\x95\xab\x57\xa5\x89\x89\x89\xfc\x32\xe6\xfb\xcd\x4a\x7c\x6b\x01\x66\x3b\x1f\x54\x8e\xd0\xe5\xae\xf5\x7a\x3d\x1c\x3e\x7c\x18\x37\x3b\xbd\xae\x83\xb3\xe6\xbf\xee\xf0\x57\xfd\x21\xce\x8e\x8c\x14\x01\xa0\xfc\xe2\x94\x38\x2f\x8b\xc9\x93\x02\x4c\x19\xa1\x08\x08\xa2\xca\x2d\x57\xf2\xc7\x17\x9a\x22\xaf\xcf\xf8\x17\xd6\x3e\xfb\xec\x33\x22\x8a\x62\xb9\x27\x2a\xf6\xad\x0c\x94\xef\x66\xb4\x84\x92\x1c\xd6\xe3\xf1\xc0\x73\xcf\x3d\xc7\xed\x03\xf7\x91\x17\x6f\x56\xbf\xeb\x8d\xf2\x4f\x03\x20\x8c\x00\x01\xcd\xc2\x10\x82\x8d\xeb\x8d\x47\xb3\xe7\x85\x98\x4d\x63\xb4\xc0\x10\xca\xb8\x21\xb4\x71\x85\xb2\xcf\x6c\x1e\xf9\x18\x04\x08\xd7\x24\xb9\xfe\xb6\x35\xfd\x4b\x52\xad\x6e\xdc\xb6\xc7\x3b\x3f\x31\x31\x41\x69\x09\x5f\xb6\x4d\x99\xb7\x60\x58\x28\xcf\x01\xa0\xdc\xbd\x3d\x7b\xf6\xe0\x27\xbe\x71\x50\x7f\x60\xd1\xfc\xe7\x8f\xde\x35\xfd\x35\xa2\x88\x2b\xf9\x74\x7e\x7f\x81\x8d\x6e\x95\xd2\x10\x61\xc5\x94\x5e\x58\x35\xca\xf3\x41\xbd\xec\x8b\xf3\x8a\x5f\xd4\x90\xb0\x82\xa9\x04\x00\xc0\xaa\x88\xd7\xc9\x8c\xd5\x94\x66\x5c\xb6\xa4\xa6\xde\x15\xe7\x1a\xdd\x31\xce\xa3\x55\x30\xbf\x51\x21\x99\x02\x23\x54\xd4\xe0\x28\x50\x8a\xc0\x94\x66\x9b\x7a\x97\x8c\x7f\xb1\xd8\x29\x5e\x71\x3a\x9d\xb1\x95\x95\x95\x07\x72\xde\xd9\x51\xa5\x94\x03\xcb\x97\xdc\xfd\x03\x07\x0e\xe0\x47\xba\xf7\xd9\x8e\x4c\xda\x7e\xd0\xbe\xa6\xff\x3d\x94\xd7\x35\xb2\xe7\xb9\x3a\xc9\x94\x21\xa5\x21\xc2\xa4\x53\xb8\x3e\x55\x2d\x5c\x58\x35\x4a\xc3\x2a\xa2\x0b\x08\xa1\x10\xa5\x34\x81\x10\x12\x29\xa5\x4a\xce\xbe\x06\x70\x4c\xa7\xb2\x7e\x4a\x79\x70\x80\x01\x00\x1c\x2c\x41\xf5\xb5\x31\xed\x40\xeb\x9a\xfe\x60\x4b\x40\xdf\xc5\xcb\x88\xdf\xb4\x09\xb0\x59\x53\x14\xc2\x3a\x65\xed\x4c\x5b\xe8\x4d\x4a\xa9\x14\x8b\xc5\x4a\x96\x21\xef\x3a\x2b\x15\xf9\xa0\x1d\x9d\xd9\x81\x03\x07\xa0\xbf\xbb\xd7\xf1\xdc\xb8\xfd\xed\xc6\x10\x7f\x32\xe3\x61\x0b\x24\x9f\xcb\x44\x79\x25\x74\xcd\x1b\x3f\x33\x51\x23\x7c\xa8\x30\x74\x0c\x00\xfc\xaa\xaa\x26\x56\x57\x57\xa5\x40\x20\x40\x82\xc1\x20\xc4\x62\x31\x58\x5d\x5d\x25\x5a\xad\x16\x03\x00\xe8\x74\x3a\xe0\x79\x1e\xcc\x66\x33\xd8\x6c\x36\x70\x3a\x9d\xd8\xe1\x70\x70\x0c\xc3\x98\x00\xa0\x56\x2b\xa3\x9e\x4e\xbf\xe1\xa5\x3e\x9f\xf1\xa9\x2a\x89\x31\xe4\xea\x07\x01\x28\x98\x48\xef\xec\x5b\xfb\xcb\x35\xa3\xfc\x0f\xd7\xae\x5d\x0b\x8d\x8c\x8c\x14\x97\x2b\x7b\x5d\x8a\xdc\x96\xc4\x54\x3c\x59\xed\xee\xee\x86\x83\x03\x8f\xd9\x9e\x1b\x77\xbc\xbd\x2b\xa8\x7b\x01\xe5\x65\xac\x58\xd2\x0c\x11\x2f\x37\x44\x3f\xba\x51\x9b\xf8\x5f\x2a\x03\xd7\x09\x21\x6b\x3e\x9f\x4f\x9c\x9a\x9a\x22\x3e\x9f\x2f\xcb\x84\xb7\x1b\x31\xf3\x33\x8e\x01\x80\xb4\xb4\xb4\xe0\xb6\xb6\x36\xec\x76\xbb\x79\x84\x50\x2d\xa7\xa0\xfe\x47\x16\x8d\xbf\xdf\xe7\x33\x3e\xc5\xaa\x98\x05\x44\xe1\x6c\x6b\xf8\xc7\xb7\xdc\xc9\xef\x2d\x2e\x2e\xfa\x4e\x9f\x3e\x4d\x4a\xe9\xd9\xa6\xbc\x25\x31\x15\xf1\xa0\x86\x86\x06\xfc\xcc\xb1\x63\x86\x23\x53\xb6\xff\xda\xe9\xaf\xfa\x83\x5c\xe5\x14\x09\x45\x00\x0b\xd6\xf4\xd4\xd9\xd6\xd0\x9b\x71\x5e\x3d\xab\xaa\xaa\x6f\x72\x72\x52\xb8\x71\xe3\x06\xc4\xe3\xf1\x87\x42\xe4\x2c\x16\x0b\xee\xeb\xeb\x83\xa6\xa6\x26\x3d\x46\xb8\xc9\x26\xb0\x27\x8e\x4d\xda\xfe\x5d\xa0\x4a\x9e\x3f\xdb\x1a\xfe\xb3\x44\x32\x31\xfe\xde\x7b\xef\x29\xa2\x28\x3e\x14\x7b\xa5\x2a\xa8\xe0\xad\x9a\xcd\x66\xfc\xe2\x8b\x2f\x72\x8f\xae\xdb\xff\xfc\xc9\x3b\x96\xbf\x2d\xf2\xba\x39\x2d\x14\x28\x5c\x69\x88\xfd\xe6\x72\x43\xec\x07\x04\xe8\xf5\x95\x95\x95\xc8\x97\x5f\x7e\x49\xc2\xe1\x70\x45\xbe\xed\x5e\x31\x4e\xa7\x13\x1f\x3c\x78\x10\xdb\xed\x76\x1b\x4b\x50\x07\x00\x08\x12\xa8\x63\xef\xbf\xff\xbe\x18\x08\x04\x4a\xe9\xbc\x2f\x5b\x3b\x12\xc5\x97\x5e\x7a\x89\xed\xe1\xea\x8e\x7c\xeb\x86\xf3\x57\x0c\x41\xfc\x06\x27\xd9\x1c\x9b\x29\x02\x20\x88\x92\x33\x6d\xa1\x9f\x4c\x3a\x85\x1f\x29\xaa\x32\x75\xe9\xd2\x25\x71\x7c\x7c\x1c\xa0\x74\xf7\xd9\x89\xed\x42\x11\x6e\x5b\xcc\xde\xbd\x7b\x71\x4f\x4f\x0f\x4b\x08\x81\xa1\xa1\x21\x65\x6e\x6e\xae\x64\xa0\xaf\xb3\xb3\x13\x77\x77\x77\xb3\x46\xa3\x91\x55\x55\x95\xac\xac\xac\x28\x57\xaf\x5e\x25\x81\x40\x60\x5b\x5b\xdb\x12\xc5\xfe\xfe\x7e\x3c\xd0\xf3\x48\xed\x2b\x23\x35\x9f\x59\x53\x9a\xdd\x40\x69\xa6\x6e\x32\xae\x98\x02\x28\x18\x94\xdf\x74\x04\xfe\x6e\xd6\x21\xfe\x7d\x32\x99\x9c\xfd\xf8\xe3\x8f\x95\x8c\xd1\x52\x05\xcd\x4f\xfb\x67\x8b\x28\x0e\x0e\x0e\x42\x5f\x63\x47\xe3\xa1\x19\xcb\xeb\xf5\x61\xfe\x49\x91\x25\x91\xaf\x3c\xf1\xb7\x46\xdc\xd1\x9f\x7c\xf4\xf1\xc7\xa2\xcf\xe7\x2b\xab\xa7\x2c\x51\x34\x9b\xcd\xe8\xf0\xe1\xc3\xfc\x13\x77\xad\x7f\xd3\x14\xd2\x1f\xcf\x0d\xaa\x28\x0b\x47\x40\x11\x90\x33\xed\xa1\xff\x31\x53\x2d\xfc\xb7\x68\x2c\x36\xf7\xfe\xfb\xef\x2b\xd1\x68\xb4\x58\xd5\xb6\x84\x73\x1b\x4c\x29\xa9\x98\xe0\x65\xa5\xa9\xa9\x09\x1e\xed\x3f\x60\xfb\xd6\xa8\xf3\x94\x37\xcc\x3f\xc3\x52\x64\xd2\xaa\xd8\xd9\x18\xe6\x4f\x88\x5a\x1a\x60\xdb\x9d\xc3\xb7\x6e\xdd\x22\x25\x08\x25\x02\xd8\x6c\x52\x5b\x8e\xc7\x1e\x7b\x0c\x3b\xd3\x7c\xdf\xbe\x25\xe3\xab\x39\x34\xda\xe4\xb2\x00\x14\x2e\x37\xc4\x3e\x98\x74\x0a\x3f\x8a\xc6\x62\xf3\x1f\x7e\xf8\xa1\x92\x99\x51\x17\x1f\x50\xce\xc6\x3d\x62\xee\xeb\x68\x69\x69\xc1\xae\x18\xf7\x78\x75\x42\xd3\x8f\xd0\x06\x5f\xcf\x96\xa1\x7b\xd9\xf0\x47\x3a\x9d\xce\x54\x57\x57\x57\xd6\x7e\xc9\xb7\x56\x53\x53\x83\xbd\x5e\xaf\xfe\xf1\x39\xf3\x5f\x62\x0a\x3c\x85\x8d\x9f\x8d\x6a\xd9\x38\x5b\xb0\xa6\xc7\xaf\x34\xc4\xfe\x8b\x98\x16\x67\xce\x9c\x39\xa3\x08\x82\x50\xac\xa6\x94\xee\x52\xc1\xb9\x9d\xe4\x81\x30\x76\xbb\x1d\x6b\x08\x76\x01\x6c\x4e\x67\xb2\x65\xd0\xc9\xd8\x81\x10\xd2\xeb\x74\xba\xb2\x7a\x8a\x23\x8a\x04\x00\xf0\x23\x8f\x3c\x82\x6b\x12\xdc\xa3\x4d\x41\xdd\x31\x44\xb7\xb6\x6a\x91\x25\xc2\xd9\xd6\xd0\xf7\x09\xd0\xb1\x2f\xbe\xf8\x42\x0a\x87\xc3\xe5\x0c\x94\xe2\x1e\x95\x60\x8a\x65\x3b\x92\xb7\x2d\x26\x91\x48\x10\xbf\xdd\x38\x21\x6a\x48\x4c\x27\x31\xa6\xfc\x07\xee\xd8\xc5\x11\x4a\xa9\x94\x09\xba\xe1\x52\x7a\xb6\x64\xd6\x66\xb3\x41\x5d\x5d\x1d\xdf\xeb\x33\xbe\x86\x28\x62\xb3\xad\x27\x57\xfb\x88\xc2\xe5\x86\xe8\x7b\x71\x5e\x3d\x37\x31\x31\x91\x98\x9f\x9f\xdf\xa6\x5c\x05\x06\xef\x07\x43\x8a\xfe\x96\xc2\x6d\x8b\x99\x9f\x9f\x27\x69\x0d\x9d\x3a\xdd\x1e\xfc\x61\x92\x53\x63\x14\x6d\x94\x61\xde\x96\x1a\xff\xb2\x29\xf2\xa6\x2c\xcb\x91\x8c\x93\x2e\xa9\x87\x2d\x4a\x20\x6d\x6d\x6d\xb8\x4a\x66\x9a\x76\x07\x74\xc7\x51\x41\x94\x62\x63\xd4\x8a\xf0\xea\xda\x68\x6d\xe2\xed\x64\x32\xe9\xbf\x74\xe9\x52\xbe\xc2\x52\x85\xbe\x2f\x8e\x53\x46\x2a\xc1\x6d\xc1\x8c\x8e\x8e\x42\x43\x43\x43\x00\xdc\xee\xb7\xff\xe7\xc0\xca\x0d\x47\x42\xd3\x9b\x66\x49\x34\xa4\x57\x2e\x51\xa0\xa3\x97\x86\x2e\x49\x25\x48\x65\xee\x9a\x2d\x4e\x6c\x69\x69\xe1\x5a\xd7\xf4\x2f\xb2\x2a\xd6\x6f\x44\x12\xf2\xe2\x11\x08\x60\xd8\x1b\x7b\x4f\xc1\x74\x7c\x78\x78\x58\x91\x65\xf9\xa1\xb0\xd5\xaf\x5b\x4e\x9f\x3e\x4d\x0e\x1e\x3c\xe8\x6b\x6e\x6e\x0e\xac\x98\xe9\xa7\x94\x52\x92\x4c\x26\xc5\xcb\x97\x2f\x2b\x77\xee\xdc\xd9\xb6\x0c\xf9\xb3\x79\xf0\x78\x3c\xc0\x6b\x79\x7d\xcb\xba\xfe\x79\x04\x14\x28\xca\x8b\x04\x22\x04\x22\xab\x26\x26\x9c\xc2\x3b\xf1\x78\x3c\x32\x31\x31\xb1\x13\x09\x2c\x96\x7b\xc1\x6c\x87\xab\x08\x83\x31\x06\x87\xc3\x01\x1c\xc7\x81\xcf\xe7\x23\xe7\xce\x9d\xc3\xe7\xce\x9d\x13\x6a\x6a\x6a\xc4\x74\x3a\x0d\x91\x48\x04\x2c\x16\x0b\xec\xd9\xb3\x07\x63\x8c\x21\x12\x89\xc0\xf2\xf2\x32\x14\x0d\xf7\x85\xcb\x3e\x5e\xaf\x17\x74\x32\xae\x77\xc5\xb9\x1e\x80\xc2\x50\x02\x02\x80\xe9\xea\xd4\x90\xcc\xd2\xa9\x89\x89\x09\x05\xb6\x8f\xf1\xe2\xa2\xeb\x8a\x30\x08\xa1\xfc\x0c\x96\x72\xec\xa5\x74\x6d\xc1\xec\xda\xb5\x0b\x9e\x38\x78\x90\x75\x60\x83\xcb\x90\x66\x1c\x41\xbd\x3c\xef\x0b\xfa\x63\xe7\xce\x9d\x83\xd5\xd5\x55\x00\x00\x72\xe8\xd0\x21\xdc\xd1\xdc\x66\x6a\x08\xf3\x07\x39\x05\x19\x16\xad\xe9\x4b\x77\x13\x6b\xbe\xb3\x67\xcf\x42\x86\xcb\x11\x80\xa2\x85\x43\xaf\xd7\xcb\xd6\x45\xb5\x8f\xe3\x4c\x00\xac\x30\xca\x43\x61\xba\x5a\xf8\x98\x10\x12\x9a\x9c\x9c\x2c\x95\xc1\x7b\x49\xc3\x00\x00\xf5\xf5\xf5\xd0\xd2\xd2\x02\x4e\xa7\x93\x33\x1a\x0c\x58\x51\x55\x88\xc5\x62\x64\x65\x65\x45\xb9\x7d\xfb\x36\x84\x42\xa1\x4a\x74\x17\x48\x4b\x4b\x0b\x7e\x7a\xf0\xb0\xe9\xf0\xb4\xf5\x7b\x9d\xfe\xaa\x57\x11\x20\x2e\xcd\x12\xff\x67\xbb\x75\x7f\x61\x7c\xde\xf8\x8b\x53\xa7\x4e\x29\xfb\xf7\xef\xc7\xfd\x9e\xf6\x8e\x17\x87\xab\x7f\x66\x49\x69\xba\x10\x00\xc8\x98\x44\x3e\x6e\xe7\x5e\xe3\x4e\x9c\x38\xf5\xee\xbb\xef\x2a\xb2\x2c\x6f\x71\xd2\x60\x32\x99\xd8\xda\x39\xed\xfe\x6c\xcb\x41\x79\xa4\x54\x62\xa8\xb0\x62\x92\x86\xfc\x7e\xbf\x94\x4a\xa5\xee\xd5\xf7\x14\xe0\xcd\x66\x33\x1e\x1c\x1c\xc4\x1e\xab\xd3\x65\xf3\xc9\xbf\x6b\x1a\x57\x9f\xd6\x88\x49\x0f\x45\x48\x12\x0d\xba\xa9\x88\xab\xf5\xfd\xce\x97\x3a\x7e\x33\x3e\x79\x3b\x71\xe1\xc2\x85\x7b\xb2\x35\x30\x30\xc0\xf5\xfa\x8c\x7f\xda\xe5\xaf\xfa\x93\xec\xab\xe5\x65\xe4\x3a\x3a\x69\x7b\x6b\xad\x5f\x9a\x3a\x79\xf2\xe4\x35\xa3\xd1\x68\x38\x34\x66\x7d\xc3\x9a\x62\xbb\x20\x53\x56\x8d\x8a\x2c\x4f\x4f\x59\xdf\x5c\x18\x10\xaf\x74\x76\x76\x2e\x5c\xbf\x7e\xbd\xb0\x05\x79\x3c\x1e\x8c\x31\xd6\x57\xc7\x35\x1d\x14\xb2\x73\xae\xcd\xfe\xb8\x6a\x94\x66\x14\x86\xfa\x97\x96\x96\x2a\x1d\xb5\x4a\x76\x2f\xab\xd5\x0a\x27\x4f\x9e\xe4\xdc\x11\xf6\x9b\x9e\xf3\xc9\x37\x58\x89\xba\xf2\x01\x7c\x82\xf4\x99\x57\x95\xdf\x75\x1a\xf1\x15\xed\xbe\xb6\xd7\xec\xbf\x63\x1f\x3b\x7d\xfa\x34\x91\x24\x69\xc7\xa8\x80\xd7\xeb\xc5\x7a\xbd\xde\xb0\x3b\xa0\x7b\x79\x23\xf7\xd9\xf0\x2c\x00\x43\x41\xbf\x2b\xa8\x7b\x29\xec\x35\x8d\x22\x02\xb6\xba\xa8\xf6\xd1\xbc\x45\x4a\x00\x04\xc0\x2b\xd8\x59\x9d\xe0\xfa\xeb\xea\xea\x7c\xd9\x0a\xc2\xd9\xc3\x62\xb1\x00\xa2\xa0\xb7\xa6\xd8\x7a\x04\x08\x10\x2d\x3c\xd6\x0c\xd2\x04\xa5\x34\xe6\xf7\xfb\x0b\x9e\xcb\x3b\x8a\xd3\xa1\x38\x5d\xab\xd5\xc2\x89\x13\x27\x58\x77\x84\xfd\x76\xc3\x0d\xf1\xa7\x8c\x0c\x2e\x8a\x32\xf3\x3b\x84\x80\xa2\x8d\x65\x20\x00\x0a\xfa\x38\x39\xb0\xfb\x4a\xea\x7d\x8f\xb1\xba\xfd\x1b\xdf\xf8\xc6\x16\x5d\x66\xb3\x19\xef\xde\xbd\x1b\x37\x37\x37\x63\xa3\xd1\x08\x00\x80\xf5\x7a\x3d\x00\x00\x47\x10\xe0\xe2\xfc\x23\x8a\x40\xc1\x04\x53\x4a\x31\x45\x80\x05\x0d\x49\x14\xdf\x07\x00\x92\xe4\x54\x01\xe5\xe6\x9b\x1b\x4e\x1a\x00\x00\xcc\x66\x33\x68\x54\x64\xe1\x65\xc6\x52\x38\x6d\xdb\xb8\x0a\xeb\x95\x59\x4a\xa9\x58\xe4\x17\x2a\x99\x5d\xe7\xee\xf7\xf6\xf6\x82\x99\xd5\x35\x79\x6e\x25\xdf\x00\x42\xd9\xfc\x85\x30\xba\x65\xc1\x90\x82\x26\x4d\xeb\xbd\xb7\xc4\x37\xa4\xfe\xdd\xff\x6a\x72\x72\x32\xb6\xbc\xbc\x8c\x79\x9e\x87\xc1\xc1\x41\xdc\x5c\xd7\x60\xaa\x8b\xf1\xfb\x08\xa2\xd2\x92\x51\x1c\x1d\x9f\x99\x4c\xcc\xce\xce\x02\x00\x88\xe3\xae\xe4\xa7\xb5\x31\xae\x27\x1b\x14\x47\x00\x20\x33\x44\x9a\xb7\x89\x17\x11\x42\x0a\x00\xc4\xae\x79\x63\xa7\x9e\x9e\xb6\xfe\x49\x3e\xe6\x8e\x3d\x75\x2d\xa2\x53\x66\xc2\x73\xe1\x5c\xb9\x72\x3e\x88\xe7\x79\x96\x97\xb1\x8d\xa1\xc0\xa3\xa2\x95\x03\x8a\x00\xe2\x5a\x65\x51\x96\x65\x25\x9d\x4e\x97\x25\x55\x25\x2a\xa6\xe0\x5e\x7b\x7b\x3b\x6f\x5f\x90\xff\x2d\x2b\x83\x23\xc7\xaf\x36\x57\x88\x60\x73\x81\x70\xb3\xb6\x8c\x01\xf5\x88\x3e\x4e\xfa\x3a\x3a\x3a\xce\x2d\x2f\x2f\x93\x67\x9f\x7d\x96\xed\xe6\xea\x0e\x9e\xbc\xea\x78\xbb\x4a\xc2\x4d\x00\x00\x11\x9d\x32\xf6\x61\xa7\xe6\xf7\x2d\x16\xcb\x68\x3c\x1e\x4f\xdc\x72\xc1\x4f\x0d\x69\xa6\xa9\xcf\x67\x3c\xc6\xa9\x88\x8f\xf0\x6a\xe8\xf3\xdd\xe1\x1f\xc7\x78\xf5\xda\xc4\xc4\x84\xe2\x76\xbb\x63\x63\x6e\x78\x4b\xc5\x94\xeb\x59\x36\x1c\xd7\xa8\x98\x9b\xb7\xa7\x46\x2f\x37\xc4\xde\x20\x94\x2c\xdf\xbe\x7d\x3b\x57\xae\x5c\x0b\xd2\xe9\x74\xa0\x55\xb1\x09\x00\x80\x66\x97\x54\x28\xe4\x32\x9c\xd2\x90\x50\x5e\xd8\xf4\x5e\x18\x30\x00\x00\xb8\x5c\x2e\xcc\x69\x34\x7a\x63\x20\xf5\x54\x36\x96\x94\x2f\x9b\x61\xb8\xec\xcb\xa1\x99\x37\x4b\xb1\x21\xa0\x1e\xf5\x78\x3c\x43\x1d\x1d\x1d\x52\x8d\xbd\xda\xf1\xec\x15\xfb\xdb\x55\x12\xd3\x94\x85\x5b\x04\x4d\xd7\x33\x13\xf6\xbf\x0f\xf5\x29\xcf\x5e\xbf\x71\x3d\xb2\x67\xcf\x9e\x89\xcb\x0d\xb1\xff\x3c\xec\x8d\xff\xa3\x56\xc1\x36\x81\x53\xe7\x09\xd0\xf1\x48\x24\xe2\xbf\x78\xf1\x22\x58\x2c\x16\xe5\xf8\xf1\xe3\x13\xe3\x35\xf4\xf5\xdb\x35\xc2\x4f\x01\x80\xa5\x40\xfd\x00\xe0\xfb\xe2\xf3\x2f\x84\x50\x28\xb4\x85\x49\x63\x00\x00\x4c\x10\xbf\x39\x72\x6d\x12\x45\x0a\x00\x2a\xa6\x5b\xa6\xeb\x79\xb2\x23\x09\xb4\xd9\x6c\x00\x00\x7a\x2e\x45\x6a\x73\x95\x92\xd9\xa4\x80\x10\x02\x44\x69\x66\x91\xa4\xb0\xbf\x51\x84\x80\x4b\x91\x46\x8e\xe3\xd9\x81\x81\x01\xc5\x9e\xd4\xec\x33\xa5\x99\xa6\xbc\x5c\x02\x02\x04\xce\x84\xa6\xdf\x90\x66\x9a\x58\x96\x1d\xf9\xe0\x83\x0f\xa4\x47\x1f\x7d\x74\xa6\xae\xae\x6e\x5e\xd1\x52\x56\x96\x65\x65\x72\x72\x52\xba\x76\xed\x1a\xc8\xb2\x4c\xd6\xd7\xd7\xe1\x9d\x77\xde\x51\xba\xbb\xbb\x7d\x1e\x8f\x67\x59\xa3\xd1\xc0\xfa\xfa\x3a\xb9\x79\xf3\x26\x14\x85\x6b\xb7\xec\x0f\xc2\x05\x9e\x1d\xf2\x46\x82\xad\x93\xc1\x7b\x0a\x67\x64\x1c\x1f\x4b\x31\x90\x4c\xb0\x2d\x7b\x23\x63\x67\xeb\xda\x7b\x2e\x0d\x03\x50\x4a\x31\xcb\xb2\xa0\x60\xca\x16\xe6\x70\xe3\x9c\x20\x20\x2a\xa6\xac\xc1\x60\x80\x70\x38\x0c\xa7\x4f\x9f\x26\x0c\xc3\x48\xaa\xaa\x8a\xa5\xf2\x25\x8a\x22\x5c\xbd\x7a\x15\x26\x27\x27\x09\x42\x08\x92\xc9\x24\x28\x8a\x92\xcd\x73\x81\x0f\xca\x89\x8a\xa9\xb4\x75\x2d\x67\x23\xab\x2c\x41\x7c\x89\x0a\xa9\x58\x64\x59\x06\x00\x90\xc4\x2a\xbc\xac\x15\x54\xcf\x46\xf8\x36\xd3\x5a\xb2\x7e\xa7\xb8\xd4\x99\xbc\xa4\xab\xf0\x02\x42\x88\x04\x02\x01\x82\xec\x8e\x99\x25\x73\x7a\xbc\x2e\xca\x77\x64\x2b\x11\x01\xc0\x8c\x23\x75\x29\xa5\x21\xfe\x70\x38\x0c\x36\x9b\x0d\xf6\xef\xdf\x8f\x3d\x75\x75\x2c\x8b\x59\x1c\x4b\xc6\x95\xe9\xe9\x69\xe5\xfa\xf5\xeb\xa0\x28\x0a\x06\x00\x68\x69\x69\x81\xfd\xfb\xf7\xb3\x0e\xad\xc9\xc4\x10\xc4\x45\x50\x2a\x74\x73\x6c\x4c\x1a\x1e\x1e\x06\x4a\x69\xae\x42\xf3\x23\x8a\x90\x66\x49\xac\x28\x87\xb9\x4a\xd2\x4b\x8c\x0d\x21\x54\x36\x02\xb9\xd3\x31\x35\x35\x45\x00\xa1\x44\xd4\xa5\xf9\x22\xbb\x3e\x0f\xf9\x7f\x33\xeb\xf8\x28\x8f\x9e\x22\x40\x40\x31\x48\xb1\x6a\xf6\x7c\x34\x1a\x95\xce\x9f\x3f\x0f\x14\xa8\xef\xd7\x1d\xc1\xef\xdc\x71\x08\xa3\x32\x26\x8a\xcc\x12\xe9\x96\x2b\x79\xe9\x93\xd6\xd0\xf7\x54\xa2\xae\x85\xc3\x61\x78\xe1\x85\x17\xb8\x93\x9a\x8e\x3f\xf8\xc3\x11\xcf\xc5\xd7\x2e\xd6\xdd\xfe\xbd\xf9\x5d\x3f\x7b\xba\xfd\x40\xc7\xb3\xcf\x3e\x8b\x01\x80\x74\x74\x74\xc0\xd1\x27\x0f\xdb\x5e\x5e\xac\xff\xd1\x1f\x5f\xac\x9d\xfb\xa3\x4b\xee\xb9\x57\x6e\x79\x3e\x3c\xbc\xe7\x40\xfb\xf1\xe3\xc7\x21\x3f\xdf\xb9\x16\x94\x4c\x26\x49\xda\x49\x62\x2a\xa6\x12\x43\x80\x2b\x26\x8a\xc6\x34\x53\x67\xaa\x36\x55\xb4\xc8\x58\x54\xf9\x39\x09\x87\xc3\x02\x72\x5b\x7e\xe5\x9c\xc3\xaf\xf0\x71\x52\x9b\xf3\x35\x34\xbf\x63\xe5\xbd\x22\x44\x21\x50\xcf\x9d\x95\x75\x78\x6c\x76\x62\x56\x59\x5f\x5f\x27\xc3\xc3\xc3\x42\x7f\x7f\xff\xd9\xff\xdd\x11\x5c\xd0\x10\xd4\x44\x01\x88\x82\xc9\x14\x05\x98\xbd\x72\xe9\x8a\xd8\xdf\xdf\xcf\x76\x87\x2d\xaf\x3c\x35\x6d\x7d\x2b\x93\x07\x68\x0c\xf1\xf5\x8e\x44\x75\x9f\xd0\x4f\x0e\x1f\x3a\x74\x68\xa1\xb9\xb9\x99\x7f\x7c\xce\xf2\xdd\xf6\x35\xfd\xab\x59\x5b\xb5\x31\xee\xc8\xf3\x63\x8e\x9f\x25\x1e\x51\x8e\xb6\xb6\xb6\x06\xa6\xa6\xa6\x0a\x89\x62\x32\x99\x04\x99\xa1\xb1\x94\x86\x44\x4a\x11\x45\x7b\x52\xb3\x9b\x65\x59\xd6\x60\x30\x94\x22\x89\xdb\x11\xc7\x9c\x9d\xaf\xbe\xfa\x8a\x10\x0c\x13\xf3\x7b\xf9\xbf\x95\xb5\x28\x01\x59\x62\x98\x23\x8a\x90\x3b\x00\x01\x24\x6c\xec\xd4\x4a\x8b\xf6\x07\xb2\x2c\xfb\xc7\xc6\xc6\x00\x00\x60\x64\x64\x04\x3e\xf9\xe4\x93\xd8\xda\xfa\xda\x48\x1a\xa9\xa7\xd2\xa0\x7c\xb0\xbc\xb2\x32\x76\xfa\xf4\xe9\xc4\xda\xda\x1a\x98\x4c\x26\x7d\xf7\x4a\xd5\x1f\x23\x8a\x0a\xc8\xa2\x31\xcd\x36\x36\x07\x75\xdf\x6c\x69\x69\x61\x59\xcc\x58\xda\xd7\xf4\xdf\xda\x52\x46\x81\xed\x71\x47\xb5\x4f\xee\xde\xbd\x3b\x97\xef\x5c\x0b\x4a\x24\x12\x40\x80\x26\x42\x7a\xc5\x67\x14\x19\x67\xee\x35\x66\x5e\x6a\x4d\x9c\xeb\x40\x80\xf4\x76\xbb\x5d\x48\x24\x12\x95\xb7\xa3\x3c\x07\x39\x33\x33\x03\x4d\x4d\x4d\x91\x86\x86\x86\x53\x33\x8f\xea\xc1\x33\x26\xfe\x99\x21\xa4\xee\x2e\x18\x0a\x00\x80\x62\x44\x02\x5e\xcd\x85\x95\x56\xed\xf7\x09\x03\x57\xce\x7f\x76\x3e\x3b\xff\xc3\x00\x00\x77\xee\xdc\x81\x4c\x1c\x47\x64\x59\x16\x67\x9c\x2b\xb4\xb5\xb5\x01\x00\xf0\x9c\x8a\x2d\xf9\x9b\xae\xb2\x2d\x55\xa3\xa0\x1a\x84\x10\x0b\x14\xf4\x88\x02\xb7\x15\x03\x40\x11\xe8\xcd\x66\x73\xee\x25\xe7\x88\x62\x30\x18\xc4\x08\x21\x61\xcd\x20\xcd\x34\x84\xb4\x7d\x1b\x95\xb3\xd9\xfc\x1d\x49\x4d\xbb\x56\x41\xce\xda\xda\xda\xc0\xdd\xbb\x77\xef\x3b\x50\xf6\xe9\xa7\x9f\xe2\x23\x47\x8e\xf8\xeb\xeb\xeb\x7f\x7e\xe7\x80\x6e\x4c\x1f\x25\x4f\x1b\x03\x4a\x3f\x97\xa2\x0e\x8a\x41\x11\x0d\xd8\x17\x75\xb2\x9f\xcb\x3c\xba\x40\x01\x66\x2e\x5c\xb8\x20\xcc\xcc\xcc\x14\x87\x43\x73\xa2\x28\x4a\x2e\x2d\x95\x4a\x61\x00\x50\xee\x5a\xc5\x51\x67\x5c\xd3\x9e\xef\xf8\x15\x86\x4a\x73\xf6\xd4\x45\x00\x50\x28\x02\x61\xca\x29\x0c\xed\x5d\x32\x9c\xc8\xc7\x84\xf4\x8a\x6f\xc5\x94\x1e\x0d\x2e\x04\x73\x7e\x39\xc7\x83\x56\x57\x57\x89\xaa\xaa\xe2\x8a\x29\xfd\x15\x45\xc6\x6f\x6f\x06\xeb\x37\xfe\xb2\x04\x78\x6f\x84\x3f\xb8\x52\x57\x37\x05\x00\x9b\xdb\x55\xee\x51\x14\x45\x21\x1f\x7d\xf4\x11\xe9\xec\xec\x0c\xf5\xf6\xf6\x0e\x81\x45\x3f\x26\x58\x18\x0b\x00\xe8\x33\x3a\x63\x00\x10\x09\x06\x83\xc2\x97\x5f\x7e\x49\xfc\x7e\x7f\xc5\x76\x16\x16\x16\x48\x3a\x9d\x4e\x5c\xa9\x8f\xbd\x55\x9d\xd0\x74\x35\x84\xf9\x0e\x84\x10\x48\x98\x48\xe7\x5a\xc2\x3f\x89\xf1\xea\x88\xcf\xe7\x53\x9c\x4e\x67\xe8\x7c\x53\xf4\x0d\x8d\x8a\x1d\x6d\x6b\xfa\x7e\x0c\x80\xd7\x0c\xb2\xef\xa3\x3d\xc1\xd7\x09\x86\xf9\xfc\x60\x60\xc1\xca\xea\x8b\x2f\xbe\x88\xeb\xad\xae\x27\x5f\xbd\x54\x7b\x9a\x55\x11\x57\xbc\x4c\x37\xe5\x10\x7e\xf3\xeb\x8e\xc0\xbf\x3e\x75\xea\x54\x62\x7d\x7d\xbd\x54\x44\x11\xa0\x28\xc6\xbd\x1d\x06\x21\x84\xbd\x5e\x2f\x38\x9d\x4e\xe0\xb8\x8d\x3d\x58\x82\x20\xc0\xe2\xe2\x22\x04\x83\xc1\x52\x7a\x8a\x07\x89\x2d\x98\xd6\xd6\x56\x3c\x38\x38\x68\x40\x80\x7a\x1c\x49\xcd\x41\xbd\x84\xab\xd7\x0d\xf2\x8d\x94\x86\x0c\x25\x92\x89\x85\x77\xdf\x7d\x57\x69\x6c\x6c\x84\xc1\xc1\x41\x3d\x02\xd4\xca\x2b\xb8\x87\x25\x88\x4f\x70\xea\x04\x05\x3a\x36\x35\x35\x15\xfa\xfc\xf3\xcf\x73\xdd\xb9\x60\x65\xd5\x68\x34\xd2\xea\x5a\x17\x78\x23\xda\x23\x26\x91\xa9\xd9\x9c\x17\x6d\xd4\xa5\x45\x64\xea\xc6\x5d\xc9\x5f\x49\x0c\x5d\x5d\x58\x58\xc8\xdf\x0f\x97\x2f\xf9\x69\x3b\x62\xa2\xd1\x28\x2c\x2f\x2f\xc3\xe2\xe2\x22\x2c\x2e\x2e\x82\xdf\xef\x87\x54\x2a\x05\x50\xb8\xda\x9a\x3f\x41\xcb\x97\x2d\x98\x60\x30\x88\x62\xb1\x98\x54\xe3\xaa\x59\x91\xf4\xf8\x46\x54\xa7\x5c\x90\x19\x3a\xb6\xb0\xb0\x10\x38\x73\xe6\x8c\x2a\x8a\x22\x09\x06\x83\x68\x6d\x6d\x4d\x36\x5b\xcc\x6b\x9c\x51\x37\x21\x31\xe4\x66\x2a\x95\x9a\xff\xea\xab\xaf\x92\x97\x2f\x5f\x86\x7c\x5b\x05\x2d\xc8\xe5\x72\xc1\xf3\xcf\x3f\x6f\xea\x59\x31\xbc\xfe\xd4\x94\xed\x4f\x4b\x2d\xf4\x5e\xa9\x8f\xfe\xf0\xf3\xba\xc0\x5f\xfd\xfc\xe7\x3f\x17\xb7\xd9\x24\xf9\x7f\x5d\x10\x42\xb9\x98\x74\x28\x14\x82\x54\x2a\x05\x76\xbb\x1d\x1c\x0e\x07\xa4\xd3\x69\xf0\xfb\xfd\x20\x8a\x22\x68\xb5\x5a\xd0\x68\x34\x50\x6e\xe0\x61\x20\x6f\xc1\x31\x91\x48\xd0\xf6\xf6\x76\x22\x1a\x19\x65\xef\xb2\xe1\x5b\x0c\x45\x5b\x36\x7e\xdb\x93\x9a\xd6\x09\x8f\xf8\x4b\xa2\x41\x41\x9f\xcf\x47\xf2\x9f\xff\x97\x76\x08\x82\x40\xe3\xf1\x38\xd5\x6a\xb5\xe8\xc4\x89\x13\xf8\x89\x7d\x03\xf6\x6f\x58\xda\x0e\x74\xd5\xb7\x58\x76\xf5\xed\x89\x20\x8c\x95\xc5\xc5\x45\x22\x49\x52\x59\x1d\x4c\x71\x05\x70\x1c\x47\x9d\x5e\x77\xda\x92\xd2\xec\xaf\x4e\x6a\x1a\x8b\xef\xb3\x04\xe9\x58\x82\xb8\x44\xab\xe1\x93\xb9\xb9\x39\x55\x14\xc5\x2d\xab\xfe\x19\xc1\xb0\x65\xce\x5e\x31\x26\x3f\xfd\x81\x30\x1c\xc7\xa1\x17\x5e\x78\x81\x3d\x00\xde\xe7\x5f\x1e\x75\x7e\xd8\xe5\xaf\xfa\xf7\x5d\xfe\xaa\xd7\x1a\x62\xfa\x01\xa1\xdb\xf2\x29\xd5\xe0\xc4\xf2\xf2\x72\x59\x3d\x4c\x26\x31\xeb\x13\x68\x3c\x1e\x47\x9d\x9d\x9d\x52\x5c\xa7\xe2\xee\x15\xc3\x73\x98\x16\x4e\x02\x36\x66\xce\x5c\xf7\x82\x5d\xfa\x52\x57\x67\x9d\x9f\x9a\x9a\x02\x28\xf4\x35\xc5\x3e\x88\x16\xd9\xa8\x04\x03\x65\xce\xf3\x71\x15\x61\x7a\x7b\x7b\x61\x8f\xa7\xb9\xf1\xe5\x51\xe7\x07\xbc\x8c\xab\xb3\x65\x30\x89\x6c\x13\xaf\x60\x5b\x62\x8f\xf1\xcc\xf4\xf4\xb4\x2a\x49\x52\x49\x3d\x5b\x66\xb9\x89\x44\x02\x66\x67\x67\xc5\x40\x95\x7c\xee\x8e\x23\x75\x0d\x10\x85\x82\x8d\xdc\x88\x02\x43\x10\x77\x74\xd2\xf6\x86\xc7\xe1\x72\xed\xdf\xbf\xbf\xc4\x8b\x2b\xd4\xb9\x13\xa0\x0c\xa6\x54\x60\xae\xdc\x28\x56\x16\xe3\xf5\x7a\xb1\x2b\xc6\x1d\xe4\x65\x6c\x03\x80\x3c\x37\x4f\xa1\x29\xa4\x3b\xc6\x60\xc6\x52\x5b\x5b\x0b\x45\x92\xd3\x53\x72\xf2\x39\x32\x32\x02\x84\x92\xe5\xa1\x5d\xd1\xb7\x14\x04\xca\xe6\xcc\x3a\x4b\xaa\x28\xd8\x05\xb6\xeb\xf0\xb4\xf5\xfb\xfb\x7a\xf6\x1a\x76\xed\xda\x05\xa5\xf4\x3c\xe0\x51\xac\xb3\x94\x8d\x1d\x31\x3c\xcf\xe3\x34\x4b\x14\x8a\xb2\xf9\xdf\x7c\xe1\x49\x4e\x15\x00\x01\xab\xd5\x6a\xcb\xea\xc9\xfa\xa0\x82\xfe\x2c\x8a\x22\x31\x1a\x8d\x4a\x95\xdb\x16\xe1\x14\xd4\x52\x1b\xe3\x5b\x37\x86\xfc\x4c\x80\x1d\x36\x76\xbe\x3b\x92\x9a\x6e\x8a\x91\xac\xd9\xeb\xbe\x1c\x08\x04\xd4\x58\x2c\xb6\x93\xcf\xf9\x67\x17\xa7\xd3\x89\xb4\x2e\x33\xa9\x8f\xf0\x4f\x1b\x25\xd6\x9e\xcd\x3f\x45\x00\x43\xbb\xa2\xff\xb0\x6e\x90\xcf\xde\xb8\x71\x43\x8c\xc7\xe3\x25\xf3\x9e\xf5\x41\x00\x85\x5c\x83\xae\xaf\xaf\xa3\xf6\xf6\x76\x61\xcd\xaa\xae\xb6\xae\xeb\x9e\xe1\x15\xa6\x2a\x87\xca\xc6\x91\x29\x02\x4f\x54\xfb\x84\xa4\x81\xa8\x7e\x9f\xe7\xab\xa2\x4a\x2a\x76\x78\x05\xbe\xee\x3e\x31\xc5\xbe\x6c\x47\x8c\x24\x49\xb4\xa5\xad\x55\x98\xb5\xa7\xee\xea\x64\xa6\x51\x2f\x63\x63\x8c\x57\xc2\x43\xbb\x62\xbf\x18\x77\x09\x7f\x17\x8e\x84\x97\x2e\x5f\xbe\xac\x96\xd3\x53\xbc\x05\x2f\xe7\xa8\x64\x59\x06\x59\x96\xd5\xda\x06\x4f\x64\xdd\x28\x2b\xed\xab\x55\x87\x51\x6e\x2d\x71\xe3\x6b\x0b\x0a\x00\x80\x10\x6a\x0c\xf3\x47\x00\x63\x99\xef\xad\xbb\x96\x96\x24\x65\x7d\x7d\xbd\x62\xa2\xb8\x0d\xa6\x62\xa2\x68\x36\x9b\x41\xaf\xd7\xa3\xcc\x88\x5a\x80\x89\xc7\xe3\x44\x55\x55\xd9\xe9\x75\x2f\xde\x71\xa4\xce\x8f\x78\xe2\x1f\x8f\xd6\x26\xfe\x69\xcd\x20\x7d\x90\x4e\xa7\xe7\xcf\x9c\x39\xa3\xa6\x52\xa9\xb2\xb6\xb6\xfb\x98\x05\x02\x81\x00\xd4\xd4\xd4\xa4\x51\x75\xd5\x12\xc1\xd4\x5d\x1f\xe1\x3b\x0b\xca\xb5\xb9\x5f\x11\x79\x23\xda\xc3\x96\x34\x57\x0b\x7b\x9d\x43\x46\xab\x59\x58\x5e\x5e\x7e\xd0\xaf\x01\x4b\x55\x6a\x81\x70\x1c\x87\x06\x07\x07\xe1\xe8\x63\x83\x96\xfd\x2d\xdd\x16\xc6\xa4\x4b\x2e\x2c\x2c\x6c\xd1\xe3\xf7\xfb\x61\x75\x75\x55\xe2\x79\x3e\xc0\xb2\xec\x7c\x22\x91\x58\x9c\x9d\x9d\x0d\x7f\xf2\xc9\x27\x24\xf3\xb9\x42\x59\x5b\x05\x44\xb1\xd4\xb1\xb4\xb4\x04\x2d\xad\x2d\xf1\x80\x9d\xcc\x59\x52\x6c\xb7\x23\xc9\x79\xca\x95\xa7\x3a\xc9\xed\x6b\x0a\xe8\x8e\xca\x8d\x55\x63\xb5\x5d\xcd\x2b\x19\x5a\xff\xb5\x90\xc9\xb6\xb6\x36\x74\xec\xd8\x31\xb6\x47\xe7\x7d\xfc\x77\x6e\x55\xff\x53\x53\x50\xff\xcd\x40\xa7\xee\x03\x99\x28\xc2\xea\xea\xea\x16\x9b\xf1\x78\x9c\xce\xcc\xcc\x90\x9b\x37\x6f\xaa\xb7\x6f\xdf\x56\x17\x17\x17\xa9\xa2\x28\x3b\xda\xd9\x42\x14\x8b\x45\x96\x65\x1a\x08\x04\x68\xf3\xee\xe6\xc8\x82\x5d\xba\xe3\x8e\x71\xfb\xcd\x22\xe3\x28\x87\xd7\xcb\xd8\xd5\xe1\x37\xbc\x62\xa6\x5a\xbb\xae\xbb\xf6\x96\xa7\xb9\x21\xa9\xaa\x2a\x04\x83\xc1\x9d\xc8\x5e\xb9\xf4\x02\x4c\x6b\x6b\x2b\x3e\x74\xe8\x10\xd3\xd7\xdc\x59\x77\x78\xd1\xf1\x9d\xa7\x66\xac\x3f\xd4\x4b\xb8\xce\x20\x31\x1e\x4e\xc5\x55\x52\x97\xed\xf3\xa5\xa5\x25\x25\x99\x4c\xd2\xed\xf4\x54\x62\x0b\xa0\x04\x51\xcc\xbb\xce\x9d\xc7\xe3\x71\x10\x04\x41\xf6\x36\xd6\x07\x66\x1d\xa9\x3b\xae\xb8\xb6\xcf\x9c\xd2\xd8\x8b\x09\x64\xf6\x07\x53\xc4\xba\xe2\xda\x81\x2e\xbf\xe1\xdf\x58\xb8\x2a\xb3\x79\x8f\x67\x6e\x77\xcf\x9e\xa4\xc9\x64\xa2\xaa\xaa\xa2\x54\x2a\x85\x08\x21\x15\x11\x45\x86\x61\xc0\xed\x76\xa3\x9e\x9e\x1e\x34\x38\x38\xa8\xe9\xf5\xb6\xd7\x3f\x19\xac\xf9\x8f\xcf\x4c\xda\xff\xbb\x27\xc2\x3f\x85\x29\x62\xb3\x76\x5d\x71\xee\x91\x90\x41\x99\xd2\xb7\xd6\x8c\x4f\x4f\x4f\xd3\x4c\x20\xed\x81\x08\x67\xc1\x64\xb5\x48\xb6\x90\xae\xfe\xfe\x7e\xe8\xed\xed\x35\x69\x08\x3e\x78\x74\xd2\xf6\xdd\xd6\x75\x5d\x1f\xca\xff\x22\x30\x7b\x4e\xf3\xca\x8d\x00\x14\x04\xc2\x82\x55\x3c\x33\x5d\x2d\xfc\x72\xc1\x2a\x7e\x11\x63\xe4\x40\x28\x1c\x92\x42\xa1\x10\x49\x26\x93\x50\xf4\xd9\x12\x98\x4c\x26\xa8\xaa\xaa\x02\xb3\xd9\x8c\x1d\x0e\x07\x6b\x22\x9c\xa3\x3e\xcc\x3f\xd9\xba\xae\x7f\xb9\x3e\xc4\x1f\x63\x09\x18\x8a\xa3\x85\xd9\xa2\x89\xac\x1a\xf8\x59\xdf\xea\x33\xd7\xfd\x33\xd7\x7f\xfb\xdb\xdf\x96\x2a\x47\x39\xc2\x59\x12\x53\xd6\x41\x97\x93\x9e\x9e\x1e\x3c\x30\x30\x60\xc0\x80\xfa\x0e\xdc\x35\xfd\xa7\x81\xbb\xa6\x13\x98\x16\x19\xcc\x1f\x80\xf3\x64\xe3\xb3\x05\x10\x23\x3a\x65\x7c\xd5\x28\x8d\x86\xf4\xf2\xed\xb8\x56\xf5\xa5\x34\x24\xa0\x30\x44\xa0\x00\x44\x43\x90\x9e\x97\xb1\xc3\x28\xb2\x1e\x9b\xa0\x69\xab\x49\x68\xf6\x59\x05\x4d\x07\xa6\xa0\x47\x90\xa7\xb7\x8c\x0d\x40\x00\x8b\x96\xf4\xd9\x77\x7b\xd6\x5e\x7a\xef\xbd\xf7\x84\xbc\xb8\xd2\x7d\x49\xa9\x0f\xea\xb6\x5d\x56\x1e\x1d\x1d\x25\x89\x44\x22\x71\xe8\xd0\xa1\x2b\x97\x1b\x62\x7f\xb5\x62\x4e\x4f\x1c\x9d\xb4\xbd\x6a\x14\x59\xcb\x96\x4c\x17\x30\xab\x8d\xc6\xc5\x00\xf0\xf6\xa4\xa6\xcf\x2e\x68\xfa\xb2\xf7\x8a\xcb\x59\xf0\xd6\x8a\x07\xee\x52\xe7\x79\x7a\xfc\xa6\xf4\xc2\xa7\x2d\xe1\x7f\x44\x08\x61\x96\x7d\xf0\x7f\x2c\x51\x96\x28\xe6\x61\xb6\x90\xb7\x70\x38\x8c\x16\x17\x17\x95\xda\xba\xda\x50\xda\xc2\x8e\x8f\xd7\x08\xe3\x5a\x15\xbb\xaa\x13\x1a\xef\xc6\xb7\xa5\x19\x70\x86\x09\x50\xc8\x11\xf0\x9c\xa5\x02\x4c\x41\x79\x29\xe4\xbe\x73\xa5\x79\x9b\xb8\x32\x1f\xd1\x64\xc3\xfb\xc5\x18\x89\x25\xd2\xc5\x5d\xd1\x0f\x3f\x69\x09\xff\x8d\xa0\x51\xcf\xdd\xbd\x7b\x37\x3a\x3a\x3a\x9a\xad\xbe\x6c\x39\xee\x99\x70\x96\x25\x8a\x79\x07\x14\xdd\x47\x00\x1b\xa1\xd1\xa9\xa9\x29\x62\x30\x18\x62\x26\x87\x75\x6e\xde\x2e\x5e\x9d\xb3\xa7\xfc\xe6\x14\x5b\x67\x16\x19\xdb\x06\x4f\xca\xdf\xa5\xb6\xd9\x37\x50\xee\xba\x3c\xa6\xd0\x24\x85\x6c\xc5\x17\x67\x95\x60\x20\xb7\x5d\xc9\xab\xbf\xee\x0c\x7e\x7f\xde\x9a\xfa\xb1\x4a\xc9\xe8\xd5\xab\x57\xe3\x43\x43\x43\x59\x60\xc5\x84\xb3\x14\x66\x3b\x27\x5d\xb1\xd4\xd6\xd6\xc2\x13\x4f\x3c\xc1\x9a\x4c\x26\x0b\x02\xd4\x5e\x17\xd5\x3e\xd7\xe7\x33\x9e\x6c\x0c\xf1\xed\x0c\x45\xb8\x54\x17\xa2\x90\xf1\xe7\xa8\xb4\x3b\x41\x00\xb9\x8f\x8b\xb2\x2d\x70\x13\x43\x41\x62\xa8\x34\xe9\x14\x46\x46\x3c\xf1\x5f\x86\x75\xf2\x39\x00\x98\x59\x5a\x5a\x4a\x0c\x0d\x0d\x91\x48\x24\xf2\xa0\x45\x2a\xc8\xc7\x43\x93\xae\xae\x2e\xbc\x77\xef\x5e\xb6\xaa\xaa\xca\x06\x14\x9a\x8c\x69\xe6\x40\xfb\xaa\xfe\x68\x4b\x40\xdf\xe7\x48\x68\x5c\x9b\xcb\xcd\xb9\xa0\x40\x89\x1c\xe4\xf7\xf2\xbc\xbe\x08\x14\x54\x04\xca\x8a\x39\xed\x9b\xac\x16\x2e\x4d\x57\x0b\x1f\xa7\x35\xf4\x3a\x00\x2c\x04\x02\x81\xd8\xf0\xf0\x30\x79\x90\xe5\xa8\x72\xf2\x50\x2b\x28\x2b\x1d\x1d\x1d\xb8\xb3\xb3\x13\x5b\xad\x56\x03\x00\x38\x81\x42\xbd\x31\xcd\x74\x79\x22\xda\x47\xdc\x31\x6d\x6b\x75\x42\xe3\xb1\xa4\x58\x9b\x56\xc1\x1c\x2a\xd3\x82\x09\x02\x22\xb2\x44\x0c\xeb\xe5\xc0\x9a\x41\x5e\x58\x36\xa7\xc7\x97\xcc\xe9\xe1\x94\x86\x4c\x00\x82\x05\x42\x48\x60\x75\x75\x55\x1c\x1d\x1d\x25\x77\xef\xde\x05\x28\x3d\xb0\x54\x32\xf8\x6c\x8b\x29\xee\x62\xf9\x7c\xa0\x92\xed\x75\xdb\x8a\xcb\xe5\x82\xe6\xe6\x66\x68\x6c\x6c\x64\xf5\x7a\x3d\x0f\x00\x26\x00\xb0\x21\x40\x36\x4c\xc1\xa1\x55\xb0\x43\x27\x63\x9b\x56\xc1\x46\x86\x6c\x6c\x3d\x56\x18\x2a\xa5\x59\x12\x15\x34\x24\x20\xb1\x24\x40\x81\x86\x28\x40\x00\x00\x22\x08\xa1\x58\x28\x14\x92\x66\x67\x67\x95\xd9\xd9\x59\x28\xd3\x95\x2a\xc9\x77\xc5\x98\x7b\x22\x8a\xf7\x2b\x08\x21\xb0\x5a\xad\xe0\x76\xbb\xc1\xed\x76\x83\xc5\x62\x61\x8d\x46\x23\x66\x59\x96\x45\x08\xb1\x99\xed\x26\xb9\x17\x83\x10\x22\x00\xa0\x48\x92\xa4\x44\xa3\x51\x25\x10\x08\x90\xb5\xb5\x35\x58\x5e\x5e\x86\x78\x3c\xbe\x5d\x1e\xef\x89\x04\x56\x82\xf9\x5a\xba\xd8\xbd\x88\xdd\x6e\x2f\xf9\x1f\xa8\x1e\x94\xe0\x3d\x6c\xc1\x65\xce\x2b\xc1\xff\x3f\x2d\xf9\x5b\xf0\xb6\x73\x62\x59\x29\xf7\x56\xef\x6b\xe9\xf9\x3e\x30\x3b\x2e\x3d\x3f\x6c\xcc\xff\x01\x1e\x70\x67\x94\x89\x55\x05\x4a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x11\x5f\x41\x78\x79\x1c\x00\x00") - -func web_uiV1StaticAppleTouchIcon72x72PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon72x72Png, - "web_ui/v1/static/apple-touch-icon-72x72.png", - ) -} - -func web_uiV1StaticAppleTouchIcon72x72Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon72x72PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-72x72.png", size: 7289, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIcon76x76Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x5f\x1f\xa0\xe0\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x4c\x00\x00\x00\x4c\x08\x06\x00\x00\x00\xc7\x97\x51\x2b\x00\x00\x1f\x26\x49\x44\x41\x54\x78\x9c\xed\x7c\x79\x70\x5b\xc7\x99\xe7\xaf\x1b\xef\x01\x0f\x07\x01\x10\x20\x48\xf0\xa6\x48\x8a\x14\x49\x89\xa2\x2e\x4b\xb6\x15\x5b\xbe\x64\x5b\x9a\xd8\x1e\x27\x93\xcd\x1e\x55\xa9\x6c\x65\x6a\xcf\xa9\xd9\x54\xca\x35\x7f\xa4\xb2\x53\x53\xbb\x99\xa9\xdd\xd4\x26\x95\x64\x77\x6a\xbc\x99\x4c\x36\x33\xc9\x78\x22\x27\x9e\xd8\x8e\x65\xc7\xd7\xc8\xb6\x4c\xdd\x12\x75\x92\xe2\x25\x8a\xa4\x48\x10\x04\x71\xe3\x01\x78\x47\xf7\xfe\x81\x83\x0f\x20\x40\x51\x87\x6b\xfe\xc9\xc7\x7a\x7c\xe8\xeb\xeb\xfe\xbe\xd7\xfd\xeb\xaf\xbf\xee\xf7\x08\x00\x8a\x55\x62\x65\xe1\x72\xba\x5d\xfa\x7a\x54\x5e\xb6\x1a\xaf\x8d\xd4\x71\x2f\xed\xb8\x27\x5e\xe4\x3e\x56\xfc\x3b\xfa\x1d\x6d\x8c\x3e\x8b\x1e\x57\x8d\x27\x05\x00\xb3\xd9\x7c\xaf\x75\xde\xcf\x36\xaf\xcb\xcb\x38\x24\x59\x85\xdf\x95\x70\xa7\x9c\x71\xb5\x3c\x6b\x2a\xa6\x94\xc2\xeb\xf5\xc2\xef\xf7\xc3\xeb\xf5\xc2\xeb\xf5\x52\x97\xcb\x45\x4d\x26\x93\x40\x41\xa8\xa0\x13\x33\xe5\x10\x00\x80\x51\x68\x1a\xe5\x0a\x03\x67\xd9\x6c\x56\x8b\xc7\xe3\x2c\x12\x89\xb0\x60\x30\x88\xa5\xa5\x25\x84\xc3\xe1\x4a\x75\x1b\xdb\x50\x2d\xbe\x62\xdb\x36\xca\xeb\x4e\x31\xec\x8e\xc1\x96\x52\x8a\xb6\xb6\x36\x74\x75\x75\xa1\xa9\xa9\x49\xa8\x31\xdb\x6c\x75\x29\xb1\xbb\x21\x61\xde\x5d\x97\x12\xb7\xb9\x65\xa1\xdb\x99\x15\x5a\x2c\x1a\x75\x0b\x3a\x71\x10\x40\x00\xc0\x38\xe1\x9a\x46\xb9\x9c\x16\x59\x28\x2e\xe9\xf3\x51\xab\x3a\xbe\x6c\x57\x2f\x2f\x39\x95\xb3\x2b\x36\x75\x26\x91\x4e\x65\xe6\xe6\xe6\xb4\xc9\xc9\x49\x2c\x2e\x2e\x82\x73\x7e\x27\xcd\xba\x6b\xfa\xcc\x40\xbf\xa6\xa6\x06\xfd\xfd\xfd\xe8\xe9\xe9\x11\xdc\x82\xcd\xd3\xb9\x62\x7d\xb2\x3b\x64\xfb\x7c\x73\xcc\xbc\xdf\xa2\xd1\x26\x02\x52\xb5\x2c\xcf\x37\xac\xfc\x9e\x4b\xe3\x4c\x16\xd9\xec\x5c\x6d\xe6\xd8\x64\x5d\xfa\xcd\x19\x4f\xe6\xe3\x88\x1c\x8f\x8f\x8d\x8d\x69\xd7\xae\x5d\x43\x36\x9b\xfd\x2c\xc4\x29\x52\xf5\x56\xdf\x25\xb9\x5c\x2e\xba\x73\xe7\x4e\x74\x75\x75\x49\x8d\x49\x69\x70\xfb\x82\xe3\x0f\xbb\x43\xd6\x17\x44\x9d\x7a\x6e\x5f\xda\xa8\x9a\x8d\xa4\x73\x64\x05\x16\x18\xab\x97\x8f\x5c\x6a\x4a\xfe\x38\x20\xca\xe3\xe3\xe3\xe3\xca\xf0\xf0\x30\xab\xc6\xe1\x5e\xa9\xbc\x75\x05\xdc\x5a\xef\xb7\x31\x2f\x8c\xf1\xfb\xf6\xed\xa3\xfd\xfd\xfd\xe6\xb6\xa4\x7d\xdf\xbe\x9b\xce\x97\x5a\xa3\x96\x67\xc8\x9a\x1e\x5c\xe8\x33\xeb\x35\x29\x97\x5e\x49\x7d\x25\x71\x86\x00\x03\x94\x69\x6f\xfa\xb5\x93\x1d\xf1\xff\xb5\x68\x91\xaf\x8c\x8c\x8c\x28\x17\x2e\x5c\xa8\xa6\xb8\x4a\xf2\x54\x4a\x5f\x93\xaf\x1a\xe8\xc3\x10\x87\x75\xf2\x30\x00\xb4\xad\xad\x0d\xfb\xf7\xef\x17\x9a\x4c\xae\xce\xcf\x4d\xbb\xff\xb4\x2b\x64\xfd\x22\x05\x11\x0a\x32\xdd\x8e\x56\x87\x1b\x2a\x75\xa2\xb5\x99\x2a\x8d\xd7\xfc\x9d\x11\x9e\xb9\xe6\x4f\xfd\xbf\xe1\x8e\xd8\x5f\xdc\x4a\x86\x16\x8e\x1d\x3b\xc6\x42\xa1\x50\x79\xdb\x37\x8a\xc5\x6b\xca\x98\x0c\x4d\xa9\x34\x16\x48\x85\xe6\x17\xc3\x94\x52\xf2\xe0\x83\x0f\xe2\xa1\x7d\x0f\x3a\xf6\x84\xbc\xff\xf6\xf0\xb5\xba\xbf\xab\x4f\x99\xf7\x10\x10\x5a\x10\x94\x80\x83\x10\x80\x20\x87\x5a\x84\x73\x10\x42\x8a\x8c\x09\x38\xc0\x09\x40\x56\x2b\xcb\xe5\xe7\x20\x9c\xe4\xee\x85\xb2\xe0\xf9\x74\x63\x3c\x5f\x0d\x13\x80\x72\x08\x0d\x09\xcb\xee\xbe\x25\xfb\x1f\xe8\x6e\xf1\x56\xdd\xce\xae\x29\x45\x51\xb4\x60\x30\x48\xf2\x42\x97\xcb\xc4\x50\x59\x76\xa3\x4e\x0a\x1d\x87\x98\xf2\x4a\xd8\xe8\x55\x50\x1a\x77\x38\x1c\xe4\xd9\x67\x9f\xa5\xfd\xcd\x5d\xad\x87\x47\xeb\xfe\xef\xd0\x2d\xc7\xd7\x4d\x9c\x58\x8b\x0f\x3b\x5f\x55\x5e\x17\x25\x1d\x85\x1b\x9a\xc7\x01\x26\x9b\x59\x3a\x6a\xd3\x56\x42\x76\x35\xb8\x62\x57\x97\xa3\x36\x6d\x25\x69\xd1\x13\xaa\xc0\x14\xc2\x89\x49\xe0\xb9\xde\x5a\xe9\xd1\x92\xfc\x3f\x4e\x56\xa7\x11\x0e\x40\xd4\x89\x73\x73\xc8\xf6\x62\x8d\x2a\xb8\x95\x41\xef\xb1\x99\x99\x19\x2d\x9d\x4e\xaf\x2b\xd3\x6d\xe4\x06\x00\x2e\x54\xd1\xec\xba\xe4\xf1\x78\xe8\xd3\x4f\x3f\x2d\x74\xc2\xb3\xfb\xf7\xce\xd7\xfd\xd4\x99\x11\xba\x0d\x0a\x00\xc0\xf3\x7d\x21\x17\x61\xac\x51\xa7\x9c\x05\x6a\x94\xf9\x9b\x9e\xcc\xd8\x82\x33\x3b\xb6\x62\x57\x27\x32\x22\x0b\x70\x20\x09\xf0\x0c\x07\x34\x00\x20\x84\x08\xe0\xb0\x11\xc0\x69\x57\x4c\x4d\xbe\x84\xd8\xdb\x12\xb3\xf4\xb7\x47\xa4\x1e\x4f\x4a\xac\x2f\xa8\x87\xaf\x56\xba\x5a\xe7\xaa\x7c\x74\xd9\xae\x6a\x94\x52\xb3\xd3\xe9\xcc\xe4\x6d\x37\x23\xdd\x0e\xcb\xd6\x90\x80\xea\x00\x57\x11\xf4\x7d\x3e\x1f\x3d\x74\xe8\x90\xb0\x39\xe5\x7c\xe6\xf0\xb5\xba\x9f\x58\x34\xea\xa9\x66\x00\x80\x10\x80\x73\x70\x02\x84\x6d\x5a\xe8\x4a\x63\x72\x78\xc2\x97\xfe\xa7\xa4\x59\xbf\x02\x82\x05\x00\x51\x00\x32\xe7\x5c\xd1\x34\x4d\xcb\x64\x32\xc8\x66\xb3\x0c\x00\x95\x24\x09\x16\x8b\x85\x8a\xa2\x48\x93\x16\x5d\x4a\x5a\x74\xdb\x8d\xba\x4c\xdd\x27\x3c\xd6\xe2\x91\x85\xa1\xbe\x25\xfb\x13\xfd\x01\xfb\x6e\x9b\x4a\x1d\xb9\x2e\x96\x1b\xb2\x3c\x3f\x4c\x39\x01\xae\x35\xc8\xc3\x97\x9a\x92\x3f\xcf\x66\xb3\x72\x20\x10\x28\x97\x8b\x56\x08\x57\x73\x10\x14\xf5\x50\xcd\x0e\xab\x08\x90\x3e\x9f\x0f\x87\x0e\x1d\x12\xfa\x12\xae\x17\x9e\x1d\xf5\xfe\x58\x64\xd4\x51\x0d\xd4\x73\xea\xe3\x58\xb6\xab\x81\x53\xed\xf1\x37\xa6\xeb\xd2\x6f\x33\xf0\x31\x00\x41\x55\x55\xe5\xc5\xc5\x45\x65\x61\x61\x01\xc1\x60\x10\xb1\x58\x0c\x99\x4c\xa6\x52\xdd\x00\xc0\x5a\x5b\x5b\xa9\xd7\xeb\x45\x73\x73\x33\x6d\x6c\x6c\x14\x28\xa5\x4e\x00\x4d\xa2\x4e\xb6\xf6\x07\xec\xbf\xbf\x67\xd6\x79\xd0\xae\xe4\x15\x97\xa7\x65\xbb\x32\xff\xea\x50\xf0\x3f\x28\x26\x76\xec\x83\x0f\x3e\x90\xa7\xa7\xa7\x0b\xbc\x51\xce\xbf\x8a\x22\x2b\xb6\xe7\x76\x86\x6b\x31\xb3\xc3\xe1\xc0\xf3\xcf\x3f\x2f\x6c\x51\x3c\xcf\x3c\x77\xa5\xee\xe7\x22\xa3\x8e\x75\xca\x21\x2d\xe8\xf2\xa7\x9d\xb1\x37\xae\x36\xa4\x5e\xe1\x14\x97\x18\x63\xc1\x5b\xb7\x6e\x29\xa3\xa3\xa3\x6c\x6e\x6e\x0e\xba\xae\xdf\x95\x8b\xc6\x62\xb1\xa0\xab\xab\x0b\xbd\xbd\xbd\xd4\xe7\xf3\xd9\x00\x34\x99\x35\xf2\xc0\x9e\x59\xe7\x57\x76\xcc\xd7\x1c\x10\x38\xa1\x19\x81\xc9\xff\xb0\x63\xe9\xa5\xa8\x4d\x3b\x72\xf9\xf2\xe5\xf0\x89\x13\x27\xee\xb4\x9a\xaa\xb4\x21\xc3\x55\x14\x45\xfa\xdc\x73\xcf\xd1\x1e\xc9\xff\xc0\x1f\x8c\xd4\xbf\x6e\xd1\x48\xdd\x7a\xf9\x67\x3c\x99\xb1\xf7\x7b\xc2\x3f\x4c\x9a\xf5\x0f\x01\xcc\x4f\x4e\x4e\xca\xe7\xcf\x9f\x47\x2c\x16\xbb\xaf\x06\x65\x63\x63\x23\xdd\xbd\x7b\x37\x6d\x6c\x6c\x74\x80\xa3\xbb\x3e\x29\x7e\xfe\xe0\x75\xcf\xd7\x4e\xb6\xc7\x8f\x4c\xfa\xd2\xdf\x0f\x04\x02\xf3\x6f\xbc\xf1\x86\x76\x3f\xeb\x2c\xf4\xb0\x4a\x82\x14\xe3\x1f\x7f\xfc\x71\x3a\xd0\xbe\xb9\xe3\xcb\x17\x1a\xde\xae\x4d\x8b\x3d\xd5\x98\x31\x70\x76\xb2\x23\x7e\xf4\x4c\x5b\xfc\x87\x9c\x60\x24\x14\x0a\x85\x87\x87\x87\x59\x20\x10\xf8\xcc\x2c\x6f\x00\xd8\xbc\x79\x33\xdd\xbb\x77\xaf\x60\xb3\xd9\xea\x4d\x0c\x1d\x3a\x41\x40\x4e\xcb\xb3\xaf\xbd\xf6\x9a\x26\xcb\xf2\x7d\xad\xbb\x92\xc2\x4a\x40\xb0\xa7\xa7\x87\x1e\x78\xf4\x80\xf3\xf0\x35\xef\x8f\x37\x87\x6c\x2f\x96\x1b\x96\x05\x98\xd5\x08\xd7\xde\xdd\xb2\xf2\x37\xe3\xbe\xf4\x8f\x38\xf8\xd8\xc8\xc8\x88\x7c\xf6\xec\x59\x70\xce\x2b\x5a\xcc\x95\xea\xaa\x10\x7f\xbb\xbc\xc5\xdf\x16\x8b\x85\xee\xdd\xbb\x17\xdd\xdd\xdd\x42\x2c\x16\x63\x1f\x7f\xfc\x31\x5b\x5e\x5e\xae\xa8\xac\xb6\xb6\x36\xba\x6b\xd7\x2e\xea\xf3\xf9\xcc\x00\x20\xcb\xb2\x36\x36\x36\xa6\x9d\x3d\x7b\xb6\x12\x9e\x55\xb5\xf4\x81\x32\x80\xab\xa9\xa9\xc1\x17\xbe\xf0\x05\xf3\xd0\x4a\xed\xd7\x9e\x1a\xaf\xfd\x21\xa9\xb2\xac\xd1\x28\xb4\xb7\xfa\x43\xff\xfb\x86\x37\xf3\x23\x45\x51\xa6\x3f\xfc\xf0\x43\x65\x76\x76\xb6\x3c\xdb\x46\x5c\xd4\xf7\x12\x77\xbb\xfa\x00\x80\xf5\xf7\xf7\xd3\x47\x1e\xda\xef\xd8\x33\xe7\xfc\x8f\x5b\x17\xec\x5f\x31\xeb\xd4\x76\xd3\x93\xf9\xf8\x93\xce\xe8\x9f\x4d\x44\x6f\xcd\xbc\xf5\xd6\x5b\x4c\xd7\xf5\xaa\xbc\x8c\x96\x3e\xca\x7e\xe3\xc0\x81\x03\x68\x73\xf8\x7a\x3f\x7f\xb5\xee\x27\x22\xa3\xb6\xd5\x2c\xab\x17\x23\x60\xef\x6c\x59\x79\x79\xaa\x2e\xf3\x97\xe9\x4c\x7a\xea\x37\xbf\xf9\x8d\x6a\x98\xc2\x8d\x54\x8e\x97\xd5\x56\x16\x77\x1b\x77\xdb\x3c\x1e\x8f\x87\x3c\xf5\xd4\x53\xd2\xe7\x66\x6a\xff\xec\x81\x59\xe7\xb7\x2c\xba\xa9\x4e\xe0\xc4\xe5\x95\xc5\xc1\xf6\x88\x74\x60\xb6\x9b\xfc\x5a\x07\x4b\x2e\x2e\x2e\x56\xe5\x55\xe8\x72\x6b\xae\xd6\xd6\x56\x74\xb4\x77\x38\x1e\xbe\xe1\xfe\xa6\xa4\xd2\x3a\x70\xe4\x7c\x4e\x85\x3b\x72\xc3\x71\xb8\x23\xf6\xda\x84\x2f\xfd\x72\x3a\x93\x9e\x7e\xeb\xad\xb7\xb4\x70\x38\x5c\x91\xdf\x7d\xbe\x70\x9b\x70\xc5\xab\xbb\xbb\x1b\x16\x08\xfe\xc1\x05\xc7\xd7\x0a\x72\x14\x2e\x8f\x2c\x0c\x6e\x0a\x4b\x87\x7a\x7b\x7b\x85\xf5\x78\x54\xea\xd6\x14\x00\x76\xef\xde\x4d\x7d\x49\xf1\x81\x2d\x4b\xb6\x2f\x16\x6c\xea\x92\x3b\x07\xa6\xbd\x99\x91\x73\xad\x89\xef\x69\xba\x36\xf9\xde\x7b\xef\x15\x94\xf5\x59\xd1\x46\x4d\x90\xaa\xf9\x1a\x1a\x1a\xa8\x45\xa3\xf5\x22\x23\xce\xd2\x71\x02\x10\x0e\x38\x33\x42\x9f\xc3\xe1\x30\xae\x7e\xd6\x7a\x8d\xcb\x22\x29\x00\xb4\xb7\xb7\x53\x5f\x9d\xcf\xb1\xf7\xa6\xf3\xeb\x84\x13\x81\xe7\x97\xba\xc6\x4b\x36\xeb\xf1\xf7\x7b\xc2\xff\x83\x13\x5c\x3b\x71\xe2\x44\x26\x3f\x0c\x8d\xfc\x68\xd9\x55\x1e\xb7\x91\x3c\xe5\x0d\x5e\x8f\x57\xb9\x80\x6b\xf2\x65\xb3\x59\x26\x9b\xf5\x64\x4c\xd2\x03\x9c\x10\x70\x52\x90\x27\xb7\xbe\x0d\xd4\x64\x27\x50\xd9\xb8\x2d\xf2\x2a\x67\x0a\x00\x18\x1a\x1a\xa2\x1e\x59\x18\xea\x5c\xb1\x1e\xcc\xad\x39\xf2\x6b\x50\xb2\x7a\x7d\xd2\x19\xfd\x99\x2c\xea\xc7\xa7\xa7\xa7\xe3\xa3\xa3\xa3\x65\x72\x55\x7c\xca\x95\x84\xaf\x94\x67\x23\xbd\xb4\xda\x8c\xbb\x6e\xdc\xe2\xe2\x22\x18\x78\xe0\x58\x77\xe4\xaf\x35\xca\x14\x00\xc5\x2e\x76\xa5\x31\x75\xec\x96\x4b\x39\x1e\x08\x04\xb4\xf5\x78\xad\x59\x7c\x7b\xbd\x5e\xd4\xd7\xd7\x4b\xdb\x27\x1d\x5f\xa5\x20\x42\x25\x0f\x41\xa0\x26\x3b\x3d\xd6\x20\xff\x3c\x93\xc9\x04\x8f\x1f\x3f\xbe\x01\xf9\xee\x88\x36\xaa\xd8\x3b\xe1\x01\x00\x18\x1d\x1d\x45\x5f\x5f\x5f\xf4\x86\x07\x3f\x7d\x65\xe7\x52\xa4\x37\x68\x7f\xda\xa2\x11\xdb\x6c\x6d\x66\xe4\x86\x37\xf3\x0a\x07\x9f\x31\x98\x16\x15\x79\x15\x00\xae\x48\xbd\xbd\xbd\xd4\xac\x53\x7f\x4f\xd0\x76\xa8\xf2\x3a\x91\xe3\x54\x7b\xfc\xef\x39\xc1\xf8\xb9\x73\xe7\xb4\x4c\x26\x73\xa7\xb8\x75\xc7\x1e\x82\xfb\x45\x9a\xa6\xe1\xe8\xd1\xa3\x38\x74\xe8\xd0\x0c\x71\xbb\xff\xf6\xc4\xa6\xd8\x51\xe4\x74\x10\xd5\x34\x2d\x74\xfc\xf8\x71\x65\x61\x61\x61\xdd\xb6\x15\xbc\x15\x00\xc0\x08\x21\xb4\xbb\xbb\x5b\x68\x8f\x48\x8f\x4b\x1a\xad\x23\x06\x57\x71\x81\x56\xec\xea\xec\x8c\x27\xf3\x66\x22\x91\x88\x5f\xbb\x76\xed\x76\x6e\xeb\x4a\x8b\xdc\xdb\xba\xba\x0d\xf1\x1b\x31\x5e\xd7\x8b\x5f\xc3\x3f\x99\x4c\xb2\x23\x47\x8e\xb0\xde\xde\xde\x70\x63\x63\x63\x58\x10\x04\x44\xa3\x51\x8c\x8e\x8e\x22\x95\x4a\x95\x7b\x2d\xd6\xf0\x2a\x99\x11\x7c\x3e\x1f\x2c\x16\x8b\xd4\x75\xc3\xfa\x2c\xe1\x24\xe7\xfc\xe3\xa5\x8e\x9b\x2b\xfe\xd4\xbb\x9c\x60\xe6\xd2\xa5\x4b\x5a\x19\xd3\x75\xdd\xd8\x15\x1a\x52\x9e\xbf\x3c\x5c\xcd\xaa\xaf\x14\xb7\x6e\x99\x81\x81\x01\xda\xd6\xd6\x26\x48\x92\x84\x6c\x36\x8b\xa9\xa9\x29\x76\xfd\xfa\x75\x76\xfd\xfa\xf5\x62\xde\x81\x81\x01\xda\xd7\xd7\x27\x38\x1c\x0e\x81\x73\xce\x6e\xdd\xba\xa5\x5d\xb8\x70\x81\xae\xac\xac\x94\xf0\x2a\xc1\xb0\xd6\xd6\x56\x98\x38\xf1\xb4\x46\xa5\x7d\x20\x39\x77\x72\x8e\x72\x3e\x26\x9d\x42\x1b\xf7\xc9\x6f\xa9\xaa\x1a\x9f\x9c\x9c\x84\x81\x51\xc9\x53\x58\x27\x4c\xab\xc5\x39\x9d\x4e\xf8\x7c\x3e\x38\x1c\x0e\xaa\xaa\x2a\x62\xb1\x18\xbd\x75\xeb\x56\xb9\xf2\xab\x96\xaf\x94\x6e\xb5\x5a\xf1\xcc\x33\xcf\x08\x1d\x4e\x7f\xcb\xf6\x05\xc7\x57\x3d\x41\xa1\x3b\x64\x57\xaf\x5e\x7c\xb0\xed\x6f\x7b\x7a\x7a\x02\xef\xbc\xf3\x0e\xd3\x75\x9d\x3e\xf5\xd4\x53\xd8\xd2\xb8\xa9\x69\xef\x4d\xe7\x37\xda\x26\xa5\x47\x32\x22\x0b\x5f\x6c\xae\xfd\x51\xfb\xf3\xed\x6f\x7c\xf0\xe1\x07\xca\xcc\xcc\x0c\xf2\x8a\xa5\x25\x18\xd6\xd2\xd2\x22\xb8\xd3\x42\x8f\x5d\xa1\xfe\xe2\x40\x24\xab\x5e\xcd\x80\x53\x19\x97\xcd\x6c\x6c\x76\x7a\x56\xc9\x3b\xfa\xee\x99\x3a\x3b\x3b\xe9\xd0\xd0\x10\xad\xf3\x78\x25\x8b\xcc\x9a\x84\x2c\xf7\x73\x4a\x32\x59\x1b\x99\x55\x04\x1e\x9d\x9a\x9a\x52\xce\x9e\x3d\x8b\x64\x32\x79\xc7\xf5\x1d\x38\x70\x40\xe8\xb6\x37\xf6\x7f\xe9\x5c\xfd\x5b\x36\x85\xb6\x00\x40\xd7\xb2\x15\x7d\x01\xfb\x57\x8e\xec\x20\x9f\x3f\x70\xe0\xc0\x64\x2c\x16\x43\x77\x4b\x87\xff\x0b\xe7\xeb\xdf\xac\x4b\x09\x43\x20\x00\x4f\x13\x34\xc6\xcd\x8f\x8b\x9b\xc9\x1f\xa9\x8f\x3c\xf2\xd7\xc1\x60\x50\x93\x65\x19\x28\xef\x61\x5e\xaf\x57\x68\x5c\xb6\xec\x2c\xd9\x64\xe5\x05\xbf\x39\xc1\xac\x3b\x73\x1e\x04\xa1\xbc\xc6\x37\x02\xde\xeb\x2e\x98\x0f\x1e\x3c\x48\x3b\x5b\xda\x3d\xbe\x19\xe5\x6b\xde\xcb\xa9\xaf\x8a\x19\xde\x0d\x70\x0a\x10\x70\x02\x39\x55\x6b\x3a\xe6\xea\xee\xfc\x5e\xe7\x97\x3a\x8f\x7f\xf2\xc9\x27\xca\xc4\xc4\xc4\x86\x95\xe6\xf3\xf9\x68\x4b\x4b\x8b\xf4\xd0\xa8\xf3\x4f\xed\xaa\xa9\xc5\xe8\x08\x76\x65\x85\x9e\x3d\xb3\x35\x2f\x25\xbb\x3b\xfe\x18\x80\xd6\x13\xb0\x7d\xd9\x2b\x0b\x43\x05\x53\x20\xff\x9f\xee\xbd\xe9\xfc\x93\xab\x8d\xa9\xd7\x36\x6f\xde\x1c\xbc\x78\xf1\x22\x00\x03\xe8\x7b\x3c\x1e\x98\x4c\x26\xc1\x9b\x12\x07\x8a\x88\x45\x56\xe1\x9e\x03\x58\x74\x66\xcf\x71\xce\x0b\xee\xde\x75\x5d\x42\xeb\x10\x13\x04\x81\x3e\xfd\xf4\xd3\xb4\xa3\xb6\xb1\xa7\xf3\xa4\xfc\x53\x29\xa1\xef\x5e\xed\xd0\x79\x47\x33\x27\x36\xc7\x8a\x76\xc8\x11\xd6\x0f\x2e\x75\x99\xff\xfc\xc0\xa3\x07\xbe\x43\x29\x95\xaf\x5f\xbf\x6e\xac\xbb\x6a\x7d\x4d\x4d\x4d\x20\x20\xce\xfa\xa4\x79\x67\xe9\xb4\x95\x53\x47\x43\xc2\xbc\x1b\x80\x03\x80\xec\x4e\x0b\x03\x64\xcd\x26\x28\x87\x4d\x35\x35\x89\x3a\xa9\x77\xbb\xdd\xc1\x42\x6c\xa1\x87\x31\x97\xcb\x45\x09\x21\x52\x6d\x5a\xe8\xe0\x15\x8c\x2f\x0e\xce\x56\xec\xea\xb5\x44\x22\xa1\x19\x66\x93\xa2\x12\x50\x19\x5f\x50\x16\xcf\x00\xd0\x3d\x7b\xf6\xa0\xb5\xa1\xc9\xdf\x79\x42\x7e\xc5\x9a\xd4\x07\x4b\x72\x93\xd5\x25\x58\xfe\x26\x34\x4c\x29\xff\x55\x17\x49\xea\xe1\x87\x1f\xfe\x41\x20\x10\x50\x62\xb1\x58\xb1\x8e\xda\xda\x5a\xda\xd5\xd5\x05\xab\xd5\x0a\x55\x55\x71\xf3\xe6\x4d\x2c\x2e\x2e\x42\x10\x04\x00\xa0\x29\xb3\x1e\x75\xa7\xc5\x72\x7d\x21\x21\xe9\x51\x42\x08\x05\x80\xa0\x43\xb9\xc1\xd7\x2c\xd5\x09\x62\x92\x1a\x50\x4c\x3c\x63\x88\x2c\xce\x92\xd4\xe5\x72\x01\x80\xe4\xcc\x08\x7e\x52\x61\xcf\x39\x23\xb0\xb8\x6c\x66\x81\x48\x20\x52\xc9\x6d\xb2\x91\x75\x1e\x2b\xd4\x33\x30\x30\x20\x35\x4c\x28\x5f\x97\x92\xfa\xe0\x1a\x6f\x11\x2f\x77\x21\x71\x10\x0e\x34\x8e\x67\xbf\x15\x6b\xb0\xbf\xbf\x6f\xdf\xbe\x91\xdf\xfe\xf6\xb7\x20\x84\x60\xcf\x9e\x3d\x18\xda\xb6\xdd\xb6\x29\x62\xdd\x5f\x9f\x34\x0f\xc6\x6b\xb5\xd9\xc9\x81\xed\xef\x4e\xcc\xdd\x88\xde\xbc\x79\x13\x20\x48\x9e\x6b\x49\xbc\xd1\x14\xb3\x0c\x51\x83\x3c\x0c\x9c\x5d\xf1\x27\x7f\x0b\x40\x06\xa0\x4c\xd5\xa5\xdf\x9d\x77\x65\xff\x75\x6b\x4c\xda\x82\x7c\xed\x8c\x70\x36\xbc\x29\xf6\xf7\x20\x08\xe7\xbd\x17\x45\x4b\x9f\x01\x80\x24\x49\x14\x1c\x66\xab\x4a\xdd\xc6\xad\xab\xc2\xf0\x94\xcd\x2c\xca\xc0\x93\x79\xf0\xbd\x5b\xc0\x67\x3d\x3d\x3d\xd4\xc4\x49\x9d\x77\x5e\xfd\x37\x64\x8d\x72\x50\x21\x9c\x83\x06\xca\xe0\xf0\xcc\xab\x5f\x69\xed\x6e\x1d\x03\x20\x6f\xdb\xb6\x8d\xee\x1a\x1c\xf2\x1c\xbe\x5a\xf7\xf2\xa6\xb0\xf4\x62\xc1\x06\xda\x33\xab\x5d\x7a\x6d\x90\xfe\x0b\x8b\xc5\x32\x9e\x4c\x26\x93\x37\xbc\xf8\xc5\x3b\x7d\xe1\xfa\x7d\x33\xce\x17\x6b\xb2\x26\x4f\x4c\xd2\xc3\xa7\xda\x63\x47\x66\x6b\xb3\xbf\x5e\x59\x59\x91\xc7\xc7\xc7\xd9\xbe\x7d\xfb\xc6\xdf\xd8\x16\x7a\x69\x68\xde\xf1\x87\x2d\x31\xa9\x3f\x2d\xea\xc9\xcb\x8d\xa9\xa3\xb7\x5c\xd9\xbf\x4b\xa5\x52\x71\xe3\x06\x4a\x11\xf4\x2d\x16\x0b\x28\x87\x24\xea\xc4\x56\xba\x6b\x96\x9b\x26\xd3\xa2\x1e\x07\xa0\x24\x93\xc9\xbb\xd4\x55\x8e\x1a\x1b\x1b\xa9\x35\xc1\x86\x4c\x0a\xaf\x2f\x2a\xc4\xa0\xaa\x8a\xdb\xec\x79\x1d\xd6\xac\x68\xfb\xe9\x66\xb3\x63\x60\x60\x20\xb3\x6b\xd7\x2e\xf3\xb6\x05\xc7\xd7\x36\x85\xa5\x17\x8b\xdb\xe6\x20\xa8\x4d\x8b\x83\x8f\x4c\xbb\xbf\x9d\xec\xd3\xbf\x7a\xf2\xd4\xc9\xe4\xd0\xd0\xd0\xe4\x75\x1f\xff\xce\x84\x4f\x7e\xdd\xc4\x88\x47\xa3\x3c\xc4\xc1\x27\x55\x55\x9d\xff\xe8\xa3\x8f\x58\x28\x14\x62\x2e\x97\x2b\xde\xd7\xd7\xf7\xf1\xe9\xb6\xf8\xf8\x69\xc4\x3d\x00\x14\x00\x81\x74\x3a\x1d\x3a\x7a\xf4\xa8\xa6\x69\x5a\xb1\x83\x18\xf7\x25\x41\x39\x11\x08\x08\x25\x46\x08\xe3\xb9\xfd\x45\x9d\x42\x21\x84\x94\x5b\xd7\x40\x29\x00\x1b\xc3\xc6\xb8\x62\xbc\xc7\xe3\xa1\x62\x98\x75\x80\x1b\x9e\x0a\x21\x30\x98\x7c\x39\x45\xe5\xff\x71\x4e\x8a\xbb\xdb\x62\x86\xfb\x01\xd8\xf6\xee\xdd\x0b\x41\x10\x6c\xed\x11\xe9\xe9\x02\x58\xe7\x6e\xb9\xff\xad\x11\xcb\x23\x94\xc3\x23\x08\x42\xf2\xf5\xd7\x5f\xd7\xf6\xed\xdb\x37\xd3\xd2\xd2\xb2\xc0\x28\xa5\x8c\x31\x76\xf3\xe6\x4d\xe5\xcc\x99\x33\x88\xc5\x62\x00\x80\xe3\xc7\x8f\xb3\xe9\xe9\xe9\xe4\x96\x2d\x5b\x26\xeb\xea\xea\xa8\xaa\xaa\x98\x9f\x9f\x67\x97\x2f\x5f\x36\x6e\xff\x01\x46\x0c\x03\x40\x4b\x07\x83\xd1\x0e\xe3\x05\x81\x2b\x2d\x79\xca\xc3\xd5\xdc\xc9\x45\xf0\xe7\x84\x80\x90\x82\x81\x67\x9c\xca\xf3\x55\x16\xaa\xe6\x86\x27\x97\x3b\x82\x91\x33\x1e\x73\x80\x2e\x68\xc5\x16\xf3\x92\x7e\xaa\x99\x38\xe3\x04\xe6\x9a\x9a\x1a\xc4\x62\x31\xe4\x31\x4f\x31\xec\x2f\x18\xdb\x05\x00\x74\x61\x61\x01\x4b\x4b\x4b\x90\x24\x89\x71\xce\x91\xdf\x3c\x59\x23\x97\xd1\x0e\x63\x9c\x70\xc6\xc0\x19\xaf\x80\xe1\x82\x4e\xcc\x9c\xf3\x7b\xf6\x1c\xe8\xba\xce\xb2\x76\xd3\xbc\xd1\x60\x21\x86\xff\xab\xa0\xbf\xaa\x82\xc2\x8e\x76\xd6\x4e\x03\x1c\x50\xa2\x91\x08\xdc\x6e\x77\xe6\x9a\x3f\xf5\x41\x77\xc8\x7a\x80\x80\xc0\xc8\x6f\xb4\x5e\xfe\x98\x81\xc7\xa3\xd1\x28\x6a\x6a\x6a\xb0\x63\xc7\x0e\xb4\xb5\xb5\x09\x66\xd1\x4c\xd3\x99\x34\x9b\x9e\x9e\xd6\x46\x46\x46\x68\xfe\xf0\x1d\xb5\x58\x2c\xd8\xb3\x67\x0f\x7a\x36\x6f\x36\x5b\x89\x59\xd2\x28\xd7\x96\xc3\xa1\xcc\xe9\xd3\xa7\xd9\xfc\xfc\x7c\x89\x0c\x46\x4b\x9f\x32\x02\x4d\x35\x71\x59\xd4\xb9\xad\x60\x0f\x15\xc8\xaa\x52\x27\x0c\x66\xc8\x6d\x94\x54\x95\x42\xa1\x10\xb3\xb6\xb4\x4c\x66\xed\x74\x5e\x4a\xb1\x96\xe2\x40\x22\xab\xfd\xa4\xe4\xdc\x84\x21\x26\x56\x2f\x9c\x04\x20\x9f\x3c\x79\x12\xfb\xf6\xed\x93\x6f\x78\xc8\xaf\x3f\xee\x8a\x0e\x3c\x38\xe3\x7a\x51\xd4\x89\x99\x11\xb0\xd1\x86\xd4\xc9\x53\x1d\xb1\xff\xa3\xeb\x7a\x34\x1c\x0e\xe3\x85\x17\x5e\x10\x7a\x32\xee\xfd\xbb\x26\x6b\xfe\x93\x33\x2b\xb4\x84\xec\xea\xb5\x53\xdd\xb5\xdf\xdb\xb4\x69\xd3\xb5\x37\xdf\x7c\x93\xa5\x52\x29\x76\xf8\xf0\x61\xa1\x57\x6a\x1c\x7c\xec\xaa\xfb\xdb\x0d\x09\xf3\x03\x59\x81\x85\x2f\x36\xd7\xbc\x5c\xf7\xb4\xf7\xaf\x86\x4f\x9d\x90\xaf\x5c\xb9\x52\x82\x61\x00\x40\xd3\xe9\x34\x38\xb8\x92\x36\xeb\x71\xbb\x62\xaa\xe3\x65\xc7\x6c\xec\x8a\xa9\xce\xc4\x89\xe4\x74\x3a\xef\x56\x57\x00\x80\xe9\xe9\x69\xd6\xd2\xd2\x12\x58\xea\x34\xff\xb2\xed\x72\xe6\xbf\x94\xaa\x69\xf5\x11\xad\x4e\xd2\x04\x9c\x70\xa8\x12\x0d\x47\x9a\xc5\xd7\x15\x45\x49\xce\xcd\xcd\x31\x45\x51\x70\xf8\xf0\xe1\xc9\xf3\xcd\x89\xff\x76\xad\x21\xf5\xb6\x3b\x2d\x76\xa5\x2c\xfa\x52\xd2\xac\x9f\xe5\xe0\x63\xe7\xcf\x9f\x57\x1e\x7e\xf8\x61\xda\x93\x71\x1f\x7c\xe1\xb2\xef\x55\xca\x88\x04\x00\xb5\x29\xf1\x81\xb6\x88\xf4\x7b\x47\x86\xf0\xec\xa3\x8f\x3e\x3a\x92\x4a\xa5\xd0\xe2\xaa\xef\xf8\xfd\xb3\xbe\x7f\xb4\x67\x4d\x6d\x84\x00\x42\x96\x7a\x1e\xba\xe1\xfa\x8e\x89\x11\x97\xf6\xc0\x03\xdf\x9e\x9b\x9b\x53\x0a\x9b\xd0\x45\x2f\x82\x2c\xcb\x20\x84\x64\xe2\x16\x3d\xc8\x0b\x47\x6e\x0c\xc0\x62\xd6\x89\xc3\xae\x98\xfc\x4e\xa7\xb3\x92\x97\xb6\xa2\xe7\xd6\x10\x2e\xa6\x4f\x4d\x4d\x21\x9d\x4e\x47\x23\xcd\xc2\xcf\xa3\x8d\xc2\xe9\x55\xaf\x3a\x87\xe1\x14\xd9\xea\x2f\x02\x70\x4a\xb4\xd9\x41\xe9\xfb\x4c\x20\x57\xae\x5c\xb9\xa2\x01\xa0\x4b\x4b\x4b\xec\xe8\xd1\xa3\x4a\x38\x1c\x1e\xcf\x8a\xfc\xb5\x25\xa7\xf2\xfd\xa4\x45\xff\x59\x4a\x4e\x8d\x7c\xf4\xd1\x47\xc9\x48\x24\x02\x67\x8d\xd3\xb1\x67\xd6\xf9\x52\x41\x59\xc8\xd7\x64\x51\x69\xdd\xae\xf9\x9a\x6f\xb4\xb4\xb4\x48\xbd\xbd\xbd\xe6\xde\xa0\xed\x4b\x76\x85\xb6\x01\x58\x9d\x8b\x40\xb0\x63\xbe\xe6\x3f\x4b\x44\xf4\xf7\xf5\xf5\x15\xe5\x29\xf6\xb0\x64\x32\x09\xce\x79\x26\x6c\x53\x67\x37\x85\xa5\x7d\x25\xcf\x39\xa7\x38\xea\x4b\x9a\xfb\x97\xbd\xde\x93\x84\x10\x6a\x38\xb5\x7c\x3b\x0f\x42\x49\x9c\xa6\x69\x18\x1e\x1e\xd6\x9e\x78\xe2\x89\xf1\xd9\x6d\xd2\xb7\x74\x31\xfb\x4d\xef\xac\xfa\x88\xf1\x50\x5d\xd1\x0e\x24\x04\x9a\x85\xc4\x67\x07\xa5\xbf\x4a\x7a\x4c\xff\x10\x89\x44\x42\x97\x2e\x5d\x02\xf2\x80\x1d\x08\x04\xf0\xab\x5f\xfd\x8a\xd5\xd6\xd6\xca\x1e\x8f\x47\x4e\xa5\x52\x58\x5a\x5a\x02\xe7\x9c\xed\xdc\xb9\x93\x02\x70\x38\x33\x42\x47\x71\x16\x29\x1e\x5c\xe3\x70\xa5\x85\x6e\xce\xb9\x0d\x80\x6c\xcf\x9a\xba\x0c\x53\x33\x0a\x99\x45\x9d\x38\x2d\x1a\xf1\x7b\xbd\xde\xf9\x82\x10\x45\x0c\x5b\x59\x59\xa1\x00\x94\x90\x43\x9d\x04\x48\xbe\x6c\xe9\x22\xbc\x39\x66\xde\x33\x5d\x27\xfd\xcc\xe5\x72\x69\xd1\x68\xf4\xae\x71\x6c\x7a\x7a\x1a\x5e\xaf\x37\x39\x34\x34\x74\x72\xbe\xdf\xf2\x52\xb8\x49\xfc\xbc\x77\x4e\x39\xe4\x08\xeb\x9d\x82\xc2\x6d\x9c\x80\x65\xed\x34\x14\xf3\x0b\x23\x2b\x2d\xe6\x57\x75\x33\x39\x9e\x48\x24\xe6\xdf\x79\xe7\x1d\xa6\xaa\xea\x1a\x47\x64\x24\x12\x41\x24\x12\x29\xa9\x83\xb1\x5c\x72\xc4\xa6\x06\xdc\x19\xa1\x0d\x80\xc1\x8a\x21\x08\xd4\x28\xd3\xc8\x39\x4d\xd9\xa2\x2b\x3b\x0a\x52\x93\x9b\x95\x8b\x22\x13\x04\x1d\xca\x74\xca\xcc\xc2\xe9\x74\xba\x68\x21\x14\x67\xc9\x44\x22\xc1\x54\x55\x55\x02\x35\xca\x05\x80\x83\x17\x94\x65\x98\xd9\xdb\x22\xd2\x43\xe0\x31\x47\x73\x73\xb3\x1c\x8d\x46\xef\x56\x5f\x00\x80\x33\x67\xce\xb0\x68\x34\x9a\x7c\xf8\xe1\x87\x47\xb8\x5b\x9c\x95\x6b\xad\xaf\x83\x73\x3f\x61\x70\x72\x02\x0d\x94\x84\x00\x2c\x00\x08\x2c\x2c\x2c\x24\x8f\x1d\x3b\xc6\xee\xc4\xc5\xb3\xb4\xb4\x04\x0e\x1e\x3f\xd9\x1e\xff\x79\x73\xd4\x32\x24\x32\x6a\x2e\xc8\x91\xb4\x68\xe1\x0b\x2d\x89\x57\x00\xc8\x9a\xa6\x29\x33\x9e\xcc\xfb\xa3\x0d\xf2\x70\xdf\x92\xed\xa1\x82\xc0\x8a\x89\x65\x8e\x75\x47\x5e\x06\x41\xe8\xe6\xcd\x9b\x45\xbe\x26\xe4\x86\x0a\x07\x80\xc6\xc6\x46\x22\x79\x6b\x84\xfe\x80\xfd\x45\x8b\x4e\xec\xe5\x8d\xb0\xa9\x26\xcf\x78\xbd\x7c\x54\xb7\x0b\x73\xd7\xaf\x5f\xaf\xe6\xad\xe0\x15\xc2\xe5\xf1\x00\x80\x70\x38\xcc\xaf\x5d\xbb\xc6\x15\x45\x49\x59\xad\xd6\x25\xb3\xd9\x3c\x43\x05\xd3\x75\x10\x32\x9e\xcd\x66\x67\xe6\xe6\xe6\x96\xcf\x9c\x39\x93\x3d\x7d\xfa\xb4\xae\x28\x4a\xb5\xa3\x68\x15\x29\x99\x4c\xf2\xb6\xb6\x36\x1d\x1e\x69\xf1\x86\x37\x13\x30\x71\xb8\xb3\x02\xcb\x4e\x7b\xd3\x17\xdf\xef\x8d\xfc\xcf\x94\x85\x1d\x1b\x1b\x1b\x8b\x8d\x8c\x8c\xf0\xce\xae\xae\xc4\x8d\xba\xcc\x95\xa0\x43\x91\xd3\x66\xa6\xcc\x78\x33\x57\x3e\xdc\x1c\xf9\xc1\x8a\x43\x7b\x23\x14\x0a\x2d\x0f\x0f\x0f\x17\xcf\x0e\x18\xcf\x56\xb0\x1d\x3b\x76\xd0\xdd\xbb\x77\xfb\x9f\x1a\xf7\xfc\x74\x6b\xc0\xf1\x24\xb0\x56\xcc\xd3\xed\xf1\xbf\xfc\xb4\x23\xfa\xd2\x2f\x7e\xf1\x8b\x4c\x3c\x1e\xaf\x66\xc8\x56\xf3\xe9\x57\xf2\xf1\x97\xac\x10\x44\x51\x2c\x62\x5d\xd9\xdb\x1d\x95\x16\xfd\x95\xd2\x8b\x77\xbb\xdd\x4e\x0f\x1f\x3e\x4c\x5d\x2e\x97\x07\x40\x13\x00\x1b\x80\x38\x80\x85\x85\x85\x85\xf8\x7b\xef\xbd\xc7\x14\x45\xc1\xd6\xad\x5b\xb1\x77\xef\x5e\x33\xa5\xb4\x0e\x80\x93\x10\xa2\x71\xce\x43\xa1\x50\x28\xfe\xf6\xdb\x6f\x33\xc3\x46\x4f\xe9\x29\x6a\x4d\xd3\xd0\xd7\xd7\x07\x10\xd4\xf7\x06\x6d\x4f\x90\xf2\x67\x4a\x08\x5c\x69\xa1\xf9\x72\x53\xea\x55\x9d\xf0\xe8\xfc\xfc\x3c\x41\xc9\x5c\xba\x9a\xb3\x42\x7c\xa5\x70\xf9\xb9\x0e\xc2\x72\x64\x8c\x67\x55\xf8\x31\xac\x2d\x6f\xbc\x73\x55\x55\xc9\xf8\xf8\x38\x57\x14\x45\x36\x99\x4c\xcb\x9a\xa6\xdd\x5a\x5e\x5e\x0e\x9d\x3f\x7f\x3e\x7d\xfa\xf4\x69\x5e\x38\x74\x12\x0c\x06\xd9\xc4\xc4\x04\xcb\x66\xb3\x09\x55\x55\x43\xc1\x60\x30\x7c\xf9\xf2\xe5\xcc\x89\x13\x27\xb8\xaa\xaa\xc0\xea\x28\x29\xdd\x97\x0c\x85\x42\x48\xa5\x52\x99\x39\x37\xfd\x58\x16\x59\xd4\xa6\x52\x37\x0a\xd9\xf3\xab\x60\xbb\x42\x9b\xfa\x96\x6c\x5f\x4c\x6f\xd9\xf2\x83\xf3\xe7\xcf\x2b\x9f\xc1\xab\x2a\x1b\x75\x1d\x6d\x68\x85\xa1\xaa\x2a\x2e\x5e\xbc\x88\x8b\x17\x2f\x16\x21\x44\x92\x24\xec\xd8\xb1\x03\x8d\x8d\x8d\xb4\xb0\x6b\x74\xf5\xea\x55\x5c\xb8\x70\xe1\xb6\x6d\x5a\x73\xec\xdc\x6a\xb5\xf2\xfa\x26\xbf\xee\xc8\x9a\x06\x9b\xe2\x96\x9e\xdc\x19\x78\x82\xe2\x9d\x13\xd4\xa5\xc4\xde\xd1\x96\xf4\x2f\xa9\x59\x88\xcd\xcd\xcd\xb1\x72\x1e\xb7\xb9\x08\x72\xbd\xe3\x4e\xca\xdc\xb7\xcb\xe3\xf1\x90\x17\x5e\x78\x41\x78\xa0\xb6\x7b\xe8\xf1\x68\xf3\x1f\xef\x92\xeb\x5f\x6c\x74\xfb\xec\xbe\x9d\x5d\x37\x18\xb8\x9a\x3f\xfc\x57\xb5\x7c\x01\xf4\x8b\xe6\x4f\x22\x91\x20\x03\x03\x03\x6a\xdc\xaa\x63\x70\xd1\xf1\x3c\x59\x5d\xa9\xe4\x88\x00\x66\x9d\xba\x18\x81\x96\xee\x72\x1c\x9f\x9b\x9b\xd3\x65\x59\x2e\x0c\xde\x8d\x80\x7e\x25\xf0\xae\x56\xae\x12\x19\xd3\xd6\xcb\xb7\x86\x2c\x16\x0b\x7d\xfe\xf9\xe7\x85\xc1\x94\xf7\xc5\x17\xae\xf8\xfe\xb1\x29\x61\x7e\xd4\x97\x32\xef\xea\x5a\xb1\x7e\xd1\x95\x15\xfd\x99\x41\xcf\x3f\xad\x84\x57\xd4\x68\x34\x5a\x95\x67\x01\xc3\x0a\x40\xc9\xb3\xd9\x2c\xf1\xfb\xfd\xcc\xec\x71\xa4\xbd\x29\x71\xaf\x47\x16\x9b\xcb\xdf\x3c\x23\x00\xfc\x09\xcb\xd0\x0d\x5f\xf6\x03\x47\xb3\xf7\xd6\xe8\xe8\xa8\x11\x90\x0b\xca\x37\x86\x51\x45\x48\x8a\x52\xec\x21\x55\xc2\xd5\xd2\x8c\xbf\xb9\x81\x5f\xc5\xb8\xc1\xc1\x41\x74\xb6\x75\xd4\x3d\x7f\xc5\xf7\x8a\x55\xa3\x3e\xa3\x3c\x75\x29\x71\xfb\x2d\x57\xf6\x0c\x6d\xac\x99\x30\xc8\xb3\x86\x57\xa5\xa5\x0d\x46\x46\x46\x18\x08\x16\x4e\xb7\xc7\x7f\xc2\x72\x2e\x95\xbc\x84\xb9\xb2\x1c\x80\xc0\x88\xed\xe9\x31\xcf\xf7\xfd\xb5\xbe\xfa\xfd\xfb\xf7\x6f\x04\x77\x2a\x2d\xa5\xee\x27\xdd\xd6\x93\xd2\xd0\xd0\x40\xad\xaa\xa9\xad\x26\x6b\xea\x28\x9c\x42\x2a\xc8\x44\x40\xa8\x3f\x61\xfe\x9c\xd7\xeb\x35\x0b\x82\x50\x95\x97\x71\xe7\xb8\x78\x2d\x2c\x2c\xb0\x85\x85\x05\x39\x64\x57\x8f\x8d\x36\xa4\x3e\x46\xfe\x20\x5d\xe1\x4e\xf2\x6b\x17\x5f\x52\xdc\x79\x60\xd2\xfd\xed\xfe\xbe\x7e\x47\x7e\xbd\x55\xf5\x20\x5a\x85\xeb\x4e\xf3\xdf\xf3\x65\x32\x99\x90\x15\x98\xa6\x98\x78\x92\x70\x83\x0f\x8d\x73\x70\x70\x44\x6c\xda\x12\x00\xe4\x3d\xac\x95\x79\x54\xd1\x24\x8f\xc5\x62\xe8\xed\xed\x4d\x07\x6b\x94\x58\xff\x92\xfd\x59\x91\x51\xb3\x71\x37\x89\x90\xdc\x93\xa9\x4f\x8a\x43\x8c\xf0\x8c\x69\x6b\xfd\xd9\x44\x22\xa1\x85\xc3\xe1\xf2\xf1\x5f\x82\x91\xa8\x8c\x57\xe5\xce\xfd\x6a\xd8\x54\x8d\xd7\xba\x06\x72\x81\x9c\x4e\x27\xfc\xcd\x8d\x54\x60\xa4\xb3\x39\x66\x19\x28\xbe\x08\x05\x82\xe5\x1a\x75\xe6\xd3\xce\xe8\x77\x23\xb1\xe8\xdc\xd5\xab\x57\x59\x35\x5e\xe5\xa0\x5f\xc4\x9d\x54\x2a\x05\xb7\xdb\xad\xd6\xd4\xd7\xc6\x33\x22\xab\xed\x0c\x4b\xbb\x40\x72\xeb\xb0\xdc\x56\xd8\xea\x1b\x65\xad\x51\xcb\xa3\x59\x91\x87\x2d\xdb\x1a\x47\x12\x89\x84\x6e\x50\x5a\xa1\x07\x1b\x85\x2c\xc7\x17\xa3\x9d\x65\xf4\x1e\x12\xac\x55\x4e\x25\x5e\xdc\x10\xae\xa4\xb4\x22\x16\xa5\x52\x29\x6c\xd9\xb2\x25\xbb\x58\xab\xce\x64\x04\xe6\x74\x66\x05\x9f\x4e\xb9\x3e\xe1\x93\x2f\xbc\xd7\x1b\xfe\x0b\x45\xe0\xa7\xce\x9f\x3f\x9f\x0e\x06\x83\xbc\x1a\xaf\x75\x5f\xff\x5b\x5c\x5c\xc4\x96\x2d\x5b\xe4\xb0\x8b\x2d\xfa\x92\xe2\x2e\x4f\x5a\x6c\x34\x66\x34\x48\x46\xda\x23\xd2\x53\xa0\x24\x2b\x0e\x36\x9e\x03\xa0\x05\x02\x81\x0a\xd9\x2a\x1a\x9a\x65\x8e\xa4\x8a\x61\x5a\x96\x56\x3e\xa9\x14\x95\xeb\xf1\x78\x08\xe7\x9c\x68\x9a\x66\xcc\x03\x00\xc8\x66\xb3\x2c\x1a\x8d\xb2\x8e\x4d\x9b\x56\x96\x5c\xea\xb9\x4b\xcd\xc9\x0f\x2e\xb4\x24\x7f\x3d\x5d\x97\x39\xa2\x9a\xf8\xd9\x1b\x37\x6e\x44\x4f\x9f\x3e\x0d\xce\x79\xf9\x83\x2b\xf2\x2a\x3f\x45\x5d\x42\x9a\xa6\x21\x99\x4c\xb2\x4d\x9b\x36\xc5\xe7\x3c\xd9\xc5\x9e\x65\xdb\xe3\x16\xcd\x64\x33\x00\xa5\x11\x38\x49\x6b\xd4\xf2\xb8\x33\x2b\xfa\xf5\x01\xcf\x89\x5a\x9f\x57\x0e\x04\x02\x50\x55\xb5\x2a\xff\x32\xc5\x6d\x24\x5c\xf5\xe1\xba\x5c\x2e\x1c\x3c\x78\xd0\xf4\xd8\x8e\x07\x6b\xfb\xb7\x0e\xf0\xb4\x92\xd5\x97\x97\x97\xd7\xd4\x15\x8d\x46\x31\x37\x37\xa7\x59\xad\xd6\xb0\x24\x49\x73\x9c\xf3\x99\x48\x24\xb2\x78\xee\xdc\xb9\xf4\xa9\x53\xa7\x8c\xcb\xb1\x4a\xf5\xae\x35\x5c\xcb\xaf\x48\x24\xc2\x9d\x4e\xa7\xea\xf4\xd5\xae\xdc\x72\x65\x13\xbd\x41\xdb\x23\x26\x96\x5b\x21\x14\xce\xed\x17\x54\x07\x00\xbe\x94\xb8\x63\xd3\x8a\xf5\x31\xb9\xcd\x7a\xa9\x75\x5b\xf7\x92\xa2\x28\x2c\x14\x0a\x7d\x66\x86\xaa\xc9\x64\x22\xdb\xb7\x6f\xc7\x63\x8f\x3d\x66\xde\xca\x1b\x0e\x3c\x7f\xc5\xf7\x4b\x87\x26\xf8\xf9\xf6\xfa\x13\xc1\x60\x50\xcd\xaf\x77\x4b\xca\xc8\xb2\xcc\xa7\xa6\xa6\xf8\xc5\x8b\x17\xf5\x91\x91\x11\x6d\x74\x74\x94\x85\x42\xa1\x8d\xd5\x97\x57\x5c\x25\x80\x2b\xc6\xcd\xcf\xcf\x93\xf6\xf6\xf6\x34\x77\x5b\x16\x56\xec\x2a\xd9\x1c\xb2\xed\xa1\x9c\xd0\x7c\xc7\xca\xab\xbf\xb0\x13\x44\x60\x53\x4c\x4d\x03\x01\xfb\xbf\x92\x88\x28\x49\x5b\xfd\x57\x5b\x3b\x3b\x32\x8a\xa2\x20\x12\x89\x6c\xd8\xc8\x5c\x87\x8a\xed\xea\xeb\xeb\xa3\x4f\x3e\xf9\x24\xed\x6f\xee\x6a\x7e\x7c\xc6\xfb\xdf\x1f\x9d\x72\x7f\x47\xd2\x4c\xf5\xfe\x84\x79\xef\x72\x8d\x7a\xd5\xd1\xe3\xbf\x3e\x35\x35\xc5\x55\x55\xbd\x6f\x46\x70\x01\xf4\x8d\x9e\x03\x23\xd6\x70\x00\x94\x31\x86\xb9\xb9\x39\xde\xd9\xd9\x99\x4c\x39\xe9\xcd\x98\x4d\x13\x37\xad\x58\x87\x08\x27\x55\xed\x29\xca\x89\xd8\x1c\x37\x7f\x6e\x60\xc9\xf1\x25\xab\xd5\x0a\xd7\xd6\xd6\xe9\xcd\xfd\x5b\x14\x49\x92\x78\x36\x9b\x25\xf9\xb7\x63\x8d\x0d\x2f\x07\xf8\x4a\x33\x27\xa9\xaf\xaf\xc7\xd6\xad\x5b\xc9\x13\x4f\x3c\x21\x6e\x6d\xdd\xdc\xf4\xe0\x92\xf7\x8f\x9e\x19\xf3\xfe\xa8\x29\x6e\x7e\x94\xe4\xde\x30\x06\x05\xa1\x6d\x51\x69\xff\x8d\x26\xf5\xdd\x1a\xbf\x67\x79\x62\x62\x02\x95\x78\xc1\x60\xb0\xa3\x14\x0b\x8d\xb8\x55\x52\xce\xe8\xde\xa9\x44\x25\x2e\x15\xaf\xd7\x8b\xe7\x9e\x7b\xce\x2c\x0a\x62\xe7\xa6\x15\xe9\xdf\x3d\x3b\xe6\xfd\xf7\xa2\x46\xcc\xf9\xf7\x48\x8b\x53\x34\x90\xb7\xdb\xc8\xaa\xcc\x19\x81\x05\xc6\xeb\xe5\x23\xd7\xeb\xe5\x5f\x04\x6a\x94\x2b\x71\x39\x99\x59\x5c\x5c\xd4\x56\x56\x56\x10\x89\x44\x20\xcb\x32\x12\x89\x04\x14\x45\x61\x85\x4f\xcb\x38\x9d\x4e\xd8\x6c\x36\xb8\x5c\x2e\x34\x34\x34\xc0\xef\xf7\x0b\x35\x92\xcd\xd6\x14\xb3\xec\xdc\xb2\x64\xff\x97\x9b\x43\xd6\x17\x45\x9d\x78\xca\x17\x13\x84\xe7\xb6\x53\x16\xdc\xca\xf1\x5f\x0d\x06\xbf\x70\xee\xe2\x85\xd0\x99\x33\x67\x0a\xf2\x00\xa5\x32\x6f\xd4\x6d\x84\x82\x74\x77\x44\x7e\xbf\x9f\x1e\x3c\x78\x50\x90\x24\xa9\xa3\x21\x21\x7e\xf9\xf0\xd5\xba\xaf\x3b\xb3\x82\x7b\xa3\xe5\x39\x38\x4b\x99\xf5\xe9\x39\x77\xf6\xf8\xa2\x53\x39\xb5\xec\x50\x2e\x45\xad\xda\x4c\x46\x60\xc9\xfc\x46\x6d\x51\x28\xc2\x41\xad\x1a\x75\xba\xd2\x42\x5b\x7d\xd2\x3c\xd4\x14\xb3\x3c\xd8\x12\xb5\xec\xb7\xa9\xb4\x83\x18\x8f\xdb\x94\x4b\x91\xef\x13\x9c\x70\x9c\x6b\x4d\x7c\xf7\xa3\xf6\xf0\x37\x5f\x7d\xf5\x55\xc5\xe0\xbf\xbb\x6b\xba\x63\x85\x01\xb9\x8f\x79\x1c\x3a\x74\x88\xd6\xd4\xd4\x34\x59\x15\xfa\xe4\xc1\xeb\x9e\x6f\x74\x84\xa5\xfe\x92\x27\x5d\xe2\x1f\xcf\xc7\x15\xab\x2c\x85\x0a\x0e\x28\x9a\x89\x47\xb3\x02\x8b\x6a\x94\x2b\x00\x20\x30\x62\xce\x7f\x5e\xc6\x4d\x00\x73\x65\xad\x54\xd1\x14\x08\xc0\x01\x9d\x72\xed\x64\x47\xec\x6f\xce\xb6\x25\xfe\xe4\xfd\xf7\xdf\x8f\x4f\x4f\x4f\xdf\xb3\xc2\x4a\x5c\xd4\x58\x6b\xc4\x56\x04\xc4\x6c\x36\xcb\x27\x26\x26\xd0\xd0\xd0\x90\x94\xdc\x8e\x9b\xe3\xf5\xf2\x88\x2c\x32\x73\x73\xcc\xd2\x6d\xca\x7f\x6c\xa8\xfa\xa3\x58\x9b\x40\x00\x93\x89\x13\xbb\x59\xa7\x5e\x49\xa3\xf5\x92\x46\xeb\xcd\x3a\xf5\x9a\x38\xb5\x13\xc0\x54\x49\xc9\xeb\x13\xc1\xb2\x43\x59\x78\x73\x6b\xe8\xbb\x13\xbe\xf4\x4f\x54\x4d\x5d\x3a\x73\xe6\x0c\xbb\x53\x37\x77\x25\x2a\xd8\x61\x46\x8b\xb9\x1c\xf4\x81\xb5\x40\x48\x74\x5d\xc7\xf8\xf8\xb8\x4e\x29\xcd\xd4\x37\x34\x2c\x06\x5d\xea\xa5\xeb\xf5\xf2\xa4\x5d\x31\x35\x79\x64\xd1\x4f\x79\x61\x6f\x31\xef\x4b\xe3\x85\x3b\x40\xca\xff\x0a\xe9\x6b\xfe\xb0\x7a\x37\xf2\x40\x59\x7e\x43\x5c\x56\x64\x99\x13\x1d\xf1\xdf\x7c\xd0\x1b\xfe\xf3\x84\x45\x7f\x4b\x96\xe5\xb9\x77\xdf\x7d\x57\xcb\x7f\x51\x60\x3d\xcf\x46\x35\xc0\x2f\xe9\x38\xb7\x03\xfd\x0d\x91\xdf\xef\xc7\xfe\xfd\xfb\x69\x6d\x6d\xad\x9b\x80\x6c\xf1\x27\xcc\xcf\xee\xbd\xe9\xfc\x62\x7b\x58\xea\xa1\xc8\xcf\x08\x25\x33\x83\x21\x5c\xbc\x17\x1e\x91\x31\xbd\xf0\xcc\x2a\x95\x59\xad\x9f\x93\xdc\x2e\xcf\xe5\xa6\xe4\xc9\x73\x2d\x89\x57\xd2\x66\x36\xcc\x39\x9f\x99\x9c\x9c\x94\x87\x87\x87\x8d\x1f\x30\xaa\x06\xf0\x1b\x06\xfe\xfb\xa2\x30\x00\xa0\x94\x62\xdb\xb6\x6d\xd8\xb9\x73\xa7\x59\x14\x45\x0f\x38\x7a\xea\x52\xe2\x23\xdb\x17\x1c\x87\x37\x2f\xdb\x06\x2d\xda\xea\xee\x73\x55\x32\xf6\xe7\x92\xb8\x82\xc2\xca\xe2\x09\x10\xb1\x6a\xa1\xab\x8d\xa9\xe1\xab\xfe\xd4\x9b\x19\x91\x9d\xe5\x9c\xcf\x46\x22\x91\xf8\xa7\x9f\x7e\xca\x2a\xbc\xf7\x78\xcf\x54\x09\x69\x8c\x76\xd9\x7a\x54\x31\x9f\x24\x49\x74\x70\x70\x10\xfd\xfd\xfd\x66\xb3\xd9\xec\x04\xd0\x26\x6a\xa4\xbf\x23\x22\x3d\xda\x15\xb2\xee\x6e\x89\x4a\x9d\x76\x85\x3a\xd6\xfb\x1c\xd6\x1a\x32\xe0\x3b\x03\x67\x11\x9b\x16\x9a\xf1\xa4\xc7\x26\xeb\xd2\xc3\x01\xa7\x72\x82\x13\x8c\x03\x08\x84\xc3\xe1\xe4\x85\x0b\x17\xd8\xd4\xd4\xd4\x3d\x83\x7b\x35\x32\xf6\x30\xa3\x8d\x62\xdc\xb2\x42\x85\xdf\xc6\xfc\x46\x2a\x51\xe2\xe0\xe0\x20\xed\xeb\xeb\xa3\x4e\xa7\xd3\x06\xc0\x0d\xa0\xc9\xc4\x49\x5b\x6d\x5a\xe8\x69\x48\x58\x06\xea\x52\x62\x8b\x5b\x16\xea\x9d\x59\x93\x5b\x52\x4d\x36\x51\x27\x66\x92\x3b\x6b\xc5\x18\x05\x53\x4d\x4c\x49\x99\xf5\x64\x5c\xd2\xa3\x11\xab\x1a\x08\x3a\xd4\xe9\x25\xa7\x72\x35\x69\xd6\xc7\x39\xf8\x3c\x80\x20\xe7\x3c\x5e\xf8\xbc\xc3\xcc\xcc\xcc\x9d\x2a\xaa\x9a\x8c\x55\x89\x60\xad\x82\x8c\xf7\x02\x55\x8b\x2f\xa4\xa1\x4a\x7e\x00\x40\x7d\x7d\x3d\x36\x6d\xda\x84\x8e\x8e\x0e\xea\x74\x3a\xcd\x84\x10\x1b\x72\x47\xbe\x9d\xf9\xcb\x01\x0e\x1b\xe5\x90\x68\xfe\x3b\x3b\x8c\x70\x85\x11\x64\x40\x90\x04\x90\x44\x6e\x3f\x31\x0e\x20\xa9\xeb\x7a\x66\x69\x69\x49\x9b\x9e\x9e\x66\x33\x33\x33\x28\xbc\x74\x50\xa5\x6d\x77\x03\x39\x55\x79\xdd\x29\x86\xdd\x6d\x03\x8a\x64\xb3\xd9\xd0\xd4\xd4\x04\xaf\xd7\x8b\xda\xda\x5a\xea\x74\x3a\x61\xb7\xdb\x69\x7e\x03\xd7\xe8\xc6\x66\xc8\x9d\x2a\x62\xe9\x74\x9a\x45\x22\x11\x16\x89\x44\x10\x08\x04\xb0\xb2\xb2\x02\x45\x51\xee\xa5\x19\xbf\xa3\x7f\x4e\xba\x97\x1e\x74\xbb\xcd\x8f\x4a\x79\xca\xd3\xd7\x6b\x43\x35\x5e\x77\xb3\xb9\x72\x57\xbc\xca\x87\x01\xbd\x4d\x7c\x35\xe6\xeb\x35\xaa\xda\xe4\x50\x9e\x5e\x49\x80\xf2\x70\x35\x50\x36\x6e\xaa\x54\x7b\x20\xf7\x85\xd7\xff\x07\x1e\x96\xad\x0b\x2f\xb5\x25\x63\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe4\xb2\x09\xb9\x5f\x1f\x00\x00") - -func web_uiV1StaticAppleTouchIcon76x76PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIcon76x76Png, - "web_ui/v1/static/apple-touch-icon-76x76.png", - ) -} - -func web_uiV1StaticAppleTouchIcon76x76Png() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIcon76x76PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon-76x76.png", size: 8031, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticAppleTouchIconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x99\x55\x50\xd4\x8f\xf7\xfe\xdf\xb0\x94\xc4\x4a\x0a\xea\x82\x4b\xc9\x52\xee\xd2\x0b\x48\x37\x88\xec\xd2\x08\xd2\x88\x0b\x12\x4b\x4a\x23\x8a\x48\x48\xb7\x20\x2d\x0d\xd2\x88\xb4\x20\x20\x25\xdd\xb5\x74\x4b\xf7\xf2\x9f\xcf\xe5\xff\xe2\x77\xf7\x9d\x33\x67\xe6\xdc\xbc\xe6\xcc\x9c\x8b\xf3\x3c\x33\x4f\x28\xea\xb9\x0a\x15\xf9\x03\x72\x00\x00\xa8\xd4\x54\x15\xb5\x01\x00\xa8\xfe\xaf\xc9\x08\x01\x00\xa8\x2c\x8f\xb1\x01\x00\x80\xc8\x56\x4e\x53\x0e\x00\x2a\xa2\x28\xae\x2d\x88\x01\x00\x80\x5a\xa9\x6a\x6b\x02\x80\xf7\x63\x00\x08\xfc\x00\x00\x97\x00\x00\x04\x6e\x00\x80\x3b\x02\x00\xb6\xcc\x01\x40\x22\x19\x00\x18\x9d\xd3\x1a\xd0\x4f\x01\x00\x20\xb1\xd4\x50\x51\x04\x6e\xff\xab\xcc\xa6\xfc\x38\x00\x00\x48\xdd\xd4\x34\x95\x48\x97\x40\x8f\x00\x5e\x1a\xf9\xf1\x20\x62\x00\x60\xc1\xab\x29\xca\xe9\xbe\x9d\xde\x4d\xf7\x7c\x0b\x59\xf7\x5b\x5f\x4f\x6f\x6e\xb2\x18\xba\xa7\xc8\x2a\x1b\x48\xa4\x1a\x0d\x7c\x21\xab\x08\xed\x4c\x84\xa1\xb5\xad\x55\xf4\xad\x35\x42\x39\x3b\xb9\xa5\x25\x23\xd3\x25\xd7\x59\xd6\x21\xc6\xcd\xe7\x43\x17\x15\x36\xab\x6f\x34\x12\x99\xb9\xb8\xb8\x62\x4d\x38\x8c\xf5\xb3\x5e\x8b\x68\x13\x49\xb2\xc6\x42\x09\x82\xa8\x80\xa1\xde\x53\x41\x49\xbf\xf9\xab\xf7\x3c\xf4\xef\x5e\xf6\x81\x5f\x09\x50\x38\x4b\x07\x10\xee\xef\x34\x0a\x5d\xcd\xd5\x5d\xcf\x9b\x11\x50\xcb\x77\x74\x58\x4b\xa0\x72\x24\xcd\xb5\xeb\x93\x71\x88\x9e\x4f\xdc\xe0\xb8\x88\xff\xd5\xb0\xa8\xec\x69\x5e\x16\x9d\xd5\x1e\x4e\xce\xde\x7d\xe7\x79\x68\x95\x20\x3b\x4c\xcd\x54\x0d\x4b\x0e\x57\x40\x7f\xcc\x8e\x80\x51\x2f\xc2\x5a\x05\x64\x2d\x0a\x3e\xcb\x3b\x70\xac\x65\xa2\x92\x88\x5d\x51\x05\xe9\xf2\xa5\x1c\xad\x02\x44\x4c\x37\xf4\xae\xbd\x41\x0c\xa4\xf4\x36\xe2\xbf\xc3\x72\xb0\x58\xe4\x63\x93\x50\x32\x10\x0d\xf6\x29\xab\xca\xb0\x4b\x90\xce\x30\x61\xbc\xb5\xa2\x6e\x66\x36\x74\xa4\xc1\xc0\x0a\xc8\x84\x41\x11\xb2\xcb\x05\x9f\xdb\xe7\xee\x35\x76\xc8\xc5\x8b\xf7\xd8\x3d\x32\xda\xe5\x24\x74\x9c\x75\x52\x29\x5d\x09\x9a\x20\x37\x54\x9d\x5f\x47\xe9\xaf\x50\xff\x32\x03\x57\xbe\xb4\xf2\x1d\x44\x2e\x30\x26\xfe\xa6\x23\x67\x97\x35\x1a\x5a\x27\x01\xe4\xb8\x09\x8f\x0c\x43\x95\x1c\x1b\x9a\x93\x4d\x4d\x95\xc5\x12\x69\x09\xce\xe4\x19\xfe\xc8\x53\x93\xd2\x5b\x63\x91\x89\xd2\xe2\xf1\xd2\x02\xad\xee\x51\xe1\xec\x02\xc1\x0c\xeb\x8b\xcd\x80\x82\x40\x54\x42\x09\x7f\x65\xad\xbe\xe1\x84\xde\x10\x15\x67\x72\x57\x43\xb4\xae\x60\x46\x27\xab\x02\x56\xf8\x37\xe4\xa1\xf9\xb4\xcf\x94\x50\xce\xb0\xb5\x76\x1d\x0d\x9b\x27\xea\xa1\xda\xf8\xf9\x1b\x07\x91\x53\xcd\x9a\xe3\x4a\xed\xd1\xe7\xf7\x6f\x3c\xdc\xcc\x4d\xc3\x14\x2c\x88\x6a\x5d\x91\x17\xe3\x4a\x6b\xa8\x0c\x24\x44\x08\x45\xa7\xd3\x96\x26\x3c\xa7\xbb\x36\x39\x64\x3e\xa3\xab\x41\x32\x4b\x26\x1a\xa5\x12\xeb\xf5\x18\xcc\xdd\x87\x20\xbd\xa2\x2d\xf7\xc8\xd3\xa2\xe2\xe5\x9e\xdf\xd8\xb3\x26\x01\x59\x07\x77\x35\x97\xce\xbb\xfb\xd0\x8d\xa1\x28\xc9\xfa\x36\xc0\x18\x8b\xf9\x4f\x0a\xe4\x79\xb1\x4e\x69\x51\x2d\x6e\x1f\xb7\x53\x02\xb3\xdf\xb8\x79\x8e\x06\x31\x4e\xed\x1a\x6f\xcf\x9e\x95\xe4\x1a\xc4\x0f\x4a\x86\xf6\x81\xb0\xdd\x43\x6e\xb8\x28\xa9\x03\x46\xc9\x1f\x5f\xb1\x30\x86\xbf\x94\xd9\x2c\x7d\xf6\xee\x6f\x9c\x9c\x17\x66\x2c\x31\x7c\x5f\x54\xe8\x34\xe5\xc2\x15\x96\x14\xbf\x35\xc1\x0f\x33\xba\xa6\x74\x7e\x1d\xbd\xae\xee\x26\x32\xdd\x71\x9e\xfb\x31\xeb\xe7\x44\x61\xb4\x29\xd2\x00\x2f\x82\xe9\x62\x61\xd1\xdb\xf7\xef\xde\x76\x55\x8c\x4a\x32\x26\x54\x9b\xbb\x39\x1d\x83\xa0\xba\x0e\x31\x67\x6d\xee\x03\x33\xa9\x28\x95\xac\xfd\xd7\xe4\x68\x88\x4b\xc4\xe7\x9b\x32\xa1\xcb\x37\x21\x48\x5a\xa1\x06\xb8\x17\x41\x74\xb2\x9f\x55\xe9\x3e\x85\x43\xe2\x1a\x10\x74\x6f\x8f\x4f\xc7\x1c\x17\x48\x36\x23\x0e\xb9\x54\x93\x74\xcd\x0d\xf8\xfa\x04\x3e\xaa\x10\x2f\xde\x74\xb7\xcc\xd5\xcf\x8e\x61\x2d\xf7\xf3\x5e\xef\x31\x7d\x34\x92\x5e\xf9\xd3\x4d\xb3\xd0\x61\x78\x0e\xce\x70\x76\xa3\xb9\x8f\x26\xb0\x75\xc7\x38\xe9\xbc\xa5\x3a\xa5\x08\x2e\xda\x00\x1f\x71\x2f\x97\xed\x60\x05\x77\x05\xc9\x48\x47\x4f\x8e\x50\x05\x3f\x7d\xf2\x94\x20\x32\x5b\x9f\xb6\x06\x9d\xfc\x45\x79\x97\xde\x2e\x1f\xf5\x30\x38\x96\x29\xc8\x0a\x20\x46\xc5\x66\xc1\x78\x31\x4b\x37\xbf\x66\x88\xe0\xf9\xc8\x60\x9a\x4c\x28\xeb\x85\xaf\x9a\xae\x03\xba\x47\x4c\x1a\x63\x5f\xdc\xb3\x2c\x25\x8c\x06\xf2\x2b\xa9\xd5\x3c\x29\x9f\xe3\x17\x99\x6b\x5d\x0d\xcf\xf6\x81\x45\xd8\x5a\x2d\x2d\x01\xa3\x9e\xb1\xdb\xc9\x33\x06\x38\xd6\x9c\x85\xe2\x55\x3e\x41\x30\x88\x10\xc4\x14\x06\x10\x11\x00\x04\x64\x84\x34\x8a\xef\xa8\xe5\x61\x3d\xd1\x49\xf1\xd5\x50\x15\x23\xee\x64\xda\x10\x2b\x5f\x33\xc3\x8d\xbb\x14\xef\x69\xb8\xe3\x83\xd2\x72\x9d\xb8\x56\x39\xee\x92\xbb\x04\xd8\xff\xeb\x26\xb0\xe1\x3c\xb0\xf3\xfc\x17\x7a\xe3\xfd\x9c\x13\x68\x83\x08\x1b\xed\xe6\x19\x10\x95\x94\x32\xe8\xa6\x3f\x82\xbb\x5a\x8a\xda\xe9\x93\x90\x7c\x82\xa5\xc1\x88\x75\xe4\x03\x92\xa5\x84\xda\xbf\xb2\x2c\xc1\x9f\xa9\xd3\x90\xa0\x5f\x5d\x9d\xa2\x52\x61\xf8\x4b\xf0\xa0\x5f\x31\xc5\xbf\x8e\x01\x55\x2c\x2c\x8d\xc9\xaf\x96\xfd\xfa\x98\x55\xbc\x6d\xf3\xf0\x5d\xc1\xe7\xdc\x07\xea\x6f\x1c\x44\x6a\x4f\xc6\x46\x69\x65\xd6\x72\x8f\xaa\x19\x51\x86\x68\xa6\x4f\xdf\xf7\xa9\xf2\xc0\xa7\x2e\xb6\xca\x79\x64\x39\xd8\x3e\xd0\xa7\x75\xbc\x08\xe7\xad\x1f\x69\x26\x85\x39\x59\xc6\xb4\x64\x4e\x07\x2b\x57\xfd\x5f\x1d\xd2\x9c\x41\xcf\x0d\x84\x7a\x4e\x20\x59\xfd\xee\x43\x46\xc9\xda\x89\x91\x7e\x82\x3e\xb9\xc1\xa9\x72\xd4\x92\x62\x96\x58\xbc\xf7\x99\xcb\xe1\x6e\xf8\x75\x5e\x8f\x09\xe3\xb3\xda\xda\xd4\xc3\xae\xbd\x8e\x70\x66\xd7\xd1\x39\x88\x80\x32\xc4\x25\x82\x4a\xba\x42\xe6\xb4\xbd\xd0\x68\xcf\x80\x20\x52\xfb\xa4\x73\x60\xe6\x01\xb3\xe4\x83\x6e\xf5\x72\x8b\x44\xcc\x27\xd5\x25\x7a\xd7\x7a\x19\xbc\x0b\xe3\xd5\x7c\xa6\xba\x13\x6d\xe5\xb0\x31\xfe\xe6\x27\x7f\xff\xea\xef\x63\x23\x62\x92\x4f\x0a\xe4\x42\x71\x0b\x01\x5c\xf8\xc3\xfb\x8a\xe3\xfe\xf6\x81\x59\xa3\xc3\xb4\x67\x52\xfd\x91\xe9\x1a\xd8\x96\x1c\xd9\xc7\x6f\x38\x3b\x85\x54\xca\x3b\x4c\x91\x09\xd2\x12\x99\xce\x53\x1c\x41\x12\x05\x95\x01\xcd\xfd\x5e\x5d\x2e\x39\x3f\xd3\x3e\xff\xb8\x17\x02\xb1\xe5\x62\xf1\xe1\xc5\x87\x08\x4d\x27\xb9\x00\xac\xc5\x8d\x7b\x3e\xc6\x2f\xeb\xc4\x96\x38\x83\x91\x50\x5e\x6e\x69\xf7\x4c\xb1\x4b\x13\x52\x1f\xef\xb7\xd3\x59\x34\xe6\x05\xfb\xf0\x99\x30\xfc\xcc\xab\x40\xc6\xea\xb3\xdb\xb4\x30\x05\xb5\x83\xb8\xa8\xfd\x70\xfc\xa5\x54\xbf\x15\xc9\x5a\x65\xbd\x07\xfc\x6c\xb6\xe5\x63\xc9\x01\x43\xf7\xeb\x98\x3b\xdc\x7d\x1c\xa6\x9b\x61\xd2\x13\xac\x94\xca\xe5\x57\x49\x56\xb6\x0a\x53\x9e\x7b\xad\xb3\xf7\x72\xae\x90\x20\x57\x2e\x70\xb7\x5a\xdb\xa3\x96\x87\x17\x01\x5d\xc2\x65\x42\x08\x73\x87\x97\x2b\x3e\xb9\xfd\xe3\xfa\x42\x4e\x10\x76\x68\xbb\x59\x2a\xe5\xed\xd5\xd0\xca\xfc\xd7\xbb\xb6\xf7\x8b\xb2\x90\xff\xde\xfb\x14\x34\xb0\xe5\x48\x8a\x09\xb9\x72\x82\xef\x2b\xe3\xb7\x15\xff\x85\x5c\x55\x0e\x76\xa4\xb4\xa6\x55\x5f\x35\xeb\xef\x83\xb6\x9d\x5b\xfc\x22\xcd\xfe\xee\xa0\x0d\x05\x2a\xf2\x25\xaf\x8f\x7e\xb5\x27\x90\xed\x55\x25\xdc\xf4\x32\x9f\x96\x6a\x44\xec\xc5\xf3\xac\xa9\x42\x42\xa5\xd6\x7f\x3f\xf2\x7b\x19\x59\xf1\xa0\x2c\xef\x41\xd8\x8d\xd9\xb4\xe5\x42\x43\x6e\xab\xed\xc6\x8e\xb3\x14\x5d\x16\xd7\x4c\x69\x29\xc3\x3c\xe9\xc4\x20\x63\x40\xc6\x0f\x6a\x52\x1f\xbb\xb7\xc7\xdb\x01\xc9\x12\x27\x03\x94\x24\x10\xe3\xa4\xf3\x5b\xfc\xbd\xa2\x01\xa7\xee\x99\x21\xc6\x60\x1a\x20\x92\xb0\x88\x7a\xf7\xe5\x48\xec\x59\x64\x98\x55\x68\x4f\xd7\x19\x06\x45\x92\x89\x1d\xb4\x7d\x11\x8e\xb7\x63\x5f\xab\x79\x70\xe4\x78\x4c\x52\x13\xa3\xec\xc9\x2a\x76\xc8\x0b\x0e\x66\x50\xd0\xaa\xc9\xd7\xa2\x5c\xf1\x66\x5d\xcb\xf5\x0b\x70\xaf\x5a\xaf\xb2\x47\xa5\x22\x76\xe6\x66\xff\xad\x18\x40\x0e\x92\x06\x7f\x9b\x49\x7f\xd9\xd6\x4b\x9e\x78\x71\x5d\xe3\x50\xf6\xf3\x0b\x81\x68\x14\xe3\x7d\x8a\xc0\xa7\x61\xef\xa5\x24\x1f\xe0\xeb\xd8\x7f\xb0\xa4\x2f\xfa\xfb\xf4\x4c\x78\x22\x3d\x45\x18\x2a\x6f\xd3\x58\x65\xd1\x6b\x70\xe2\x11\xae\x90\x8e\x25\xa6\x20\xa8\xe2\x8f\xde\x61\x6d\xb9\x09\xc6\x75\x27\x9a\xb8\xf2\xc1\x04\x3a\x93\xf3\xc2\xf7\x38\x94\xa3\x06\xd5\xac\x2d\xef\x45\x57\xfa\xc0\x4b\x4d\x62\xc7\xc5\x54\x9f\x8e\x8a\xb7\x2b\x8c\x2a\x74\x3e\x3e\xb9\xce\x5b\x37\x74\xe6\x81\xe6\x2c\xc5\x56\x2a\xef\xf7\x97\xa8\xac\xf5\x4c\x67\xa7\x8e\x6a\x8c\x43\xaf\x0f\xcf\x57\xce\xe6\xff\xf4\xcc\x07\xff\xe0\xe7\x34\x5b\x58\x6a\x28\x9e\x82\x08\x95\x29\x40\xc2\x22\x6f\x8e\xb6\xfb\x62\x9a\x31\xcc\x20\x3e\x7e\x06\x9b\xa8\xf9\xe7\xfc\x43\x01\x0a\x49\x49\x6a\xe9\xdb\x29\x9f\xf0\x13\xa1\x69\xf1\xef\x5e\x7c\xca\x86\x3b\x7a\xcc\x61\x78\x96\xbd\xe9\x9f\x53\xe2\x73\xd3\xc5\x67\x93\x7a\x6c\x3e\x48\x89\x40\x7c\x2d\x33\x4c\xa5\x05\x26\xb2\x5b\x90\x50\x2e\xa5\xaf\xe2\x89\x23\xf3\x0c\x8b\x05\xeb\xef\xdc\xbf\xfa\x18\xaf\x85\xbb\xbf\x7e\xa2\x96\xc1\xf4\xac\xd9\x9d\xd5\xe7\xcb\x68\x9b\xf4\x9a\x79\xc6\x5e\xdd\xb8\x19\xa4\x50\xc1\x4f\x48\xba\xcf\x1d\xe9\x64\x7f\x2c\x55\x69\xc1\x62\x14\xb2\x46\xfb\xad\xc9\xf3\x77\x34\xb6\x5b\xa3\xf0\x74\x7e\xaa\x5e\xf6\x59\xf8\x00\x2e\xda\xea\xcd\xf1\x14\x9d\x78\x67\x8b\xb1\x3e\x49\x58\x73\x75\x9e\xb9\x95\x58\x04\xb1\x4b\xec\xdf\x47\xfa\x23\xda\x1b\x54\x7f\x22\x06\x30\xa4\x6e\xf7\x54\x0e\x3f\x1f\x6d\xd2\xbd\xdf\x9a\x59\xf6\xff\x79\xcb\x6b\xdc\xa3\x1e\xd5\x3c\x67\x88\x90\x55\x42\x8f\x4e\x11\xd2\x2b\x07\xa6\x82\x45\xaa\x32\xf3\x91\xb9\x28\x9e\x53\x1c\xe6\x84\x66\x10\x50\x69\x0a\x68\x9e\xaf\x6d\x7e\xb1\xa0\xf2\x42\x15\xa0\xed\xf2\x2b\x7a\x7e\x17\x45\x4a\x75\x5c\xfb\x78\x9b\x3b\x72\xe5\x0b\x63\x7d\x99\xc0\xc9\xee\xae\x71\x52\xfd\xbe\x83\x40\x1d\x97\x11\x80\xb4\x33\xba\x8f\x1a\x19\xae\xe4\x09\x14\x77\xfb\x9a\xea\x4e\x17\x42\xff\x0a\x07\x4f\x47\x67\xbc\x0b\x85\xb9\x5f\xb2\x4c\x99\x3f\x11\x79\xd5\xd1\xec\x7e\xc7\x68\xb9\x77\x9e\xe4\x6c\x26\xbd\xee\xc9\xc8\x9c\x4b\xc1\x17\x64\xf2\xa9\xe9\xde\x6c\xfd\xd6\x0c\xe1\x99\x5f\x69\x62\x02\x83\x84\x4c\xbf\xfc\x87\x92\x83\x0b\x96\xf9\xe8\x55\x45\xc6\xe8\xe4\x75\x57\x7b\x7e\x5e\x5d\x2a\x84\x78\xd6\xe0\x1e\x5a\xed\x20\x74\xa2\x61\xac\x5c\x94\x8f\xf7\xcf\xdc\x59\x89\xb0\xc3\x0a\x0f\x76\xae\x86\xf0\xd0\x72\x23\x3f\x24\xd7\x7c\xab\x21\xc0\xe2\xf9\xf4\xd1\xa2\xc4\x3e\xc8\xfe\xc8\x82\x6d\x58\x05\xb2\xa9\xf3\x6b\x33\x4e\x81\xe7\x21\xe8\xc1\xd9\x6c\xcb\x37\x73\x76\x2f\x72\x6a\x59\xf3\xaf\x57\xe3\x7f\x7b\xd5\xad\xe0\xe9\x16\x5a\x60\xb5\x18\x61\x42\x9a\x3e\x25\xe3\x54\x50\xd9\x4f\x03\xc3\x09\xfd\xd5\x9e\x42\xfd\xbb\xd8\x6e\xc4\xc5\x1a\x71\x30\xfa\x4b\x40\x57\x6d\xed\x9f\x8a\x52\xe9\x47\x77\xab\xa2\xdb\x02\xf3\xdc\x69\x9a\x04\xa1\x21\x4c\xdc\xb1\xca\xd0\x8e\xa7\xfa\x8d\xdd\x89\x06\x66\xf6\xcc\x1d\xac\x94\x2a\x23\x2a\x57\x7a\xa2\xca\x98\xf6\x93\x4d\xbd\xe0\x8c\x83\x02\x04\x01\x53\x58\x12\x72\x8d\xef\x85\x4a\x08\x31\xb7\x6b\xbd\x19\x53\x64\xe1\x9b\x37\x46\x3a\x18\x27\xe3\xa7\x62\x83\xaf\x04\x35\x5e\xf1\x82\xbb\xd5\x0a\x41\x49\x7a\x1f\xcb\x09\x08\x5d\x77\x4d\x1d\xc1\x0f\x8f\x82\xa7\xc2\x14\x98\x3e\x39\xcf\xd9\x79\x7e\xd7\x55\xa8\xd8\x5d\x0b\xea\x35\xb3\x8a\x0d\x9d\x0a\x63\x9f\x13\x80\x12\xc7\xf1\x3c\x94\xf4\x10\x5e\x54\x3a\x82\xf3\x6c\x7e\xb4\xd1\xc7\x05\x06\xf5\x41\x1e\xa2\x52\xea\x88\xe0\x95\x33\x62\x13\xf7\x6f\x1a\x1f\x8b\x23\x8a\xe7\xc2\x84\x53\x56\x06\xb5\x8a\xde\xbc\xc1\x14\x66\xda\xad\xcb\x05\x16\x1c\xc8\x12\x91\xd3\x12\x02\xad\x43\x69\xe0\xaf\x50\x78\x28\x9d\x9a\x78\x2a\x09\xd1\xc7\xab\xdd\xfa\x09\x51\x8d\xde\xc9\x92\x8e\xb6\x97\xc9\xf4\x5c\xb4\x45\xa9\xd9\xad\xb5\xd8\x8a\xcd\x81\x38\x66\xce\x9e\x7c\x49\x92\x94\x5f\x7e\xed\x28\x7a\x39\x00\xbd\x55\x5d\x56\x5a\xed\x50\x90\x22\x50\x42\xe1\xa2\x5d\xd4\x24\x86\x3f\x34\x2a\xb3\x35\x51\x73\x26\xfb\x88\x53\x12\x9d\xd1\x1c\xdb\xd3\xaa\x43\x9d\x74\xa6\xf2\x0f\x55\x5d\xd6\x4e\x0e\xd0\x74\x17\x1f\x8a\xb6\xde\x78\x6c\x6f\x29\x79\x79\xe5\x50\x10\x97\xf9\xf0\x1d\x5b\x4b\xba\x16\xdc\x4e\x1b\x1e\x4d\x86\xe7\xf3\xf3\x33\xe0\xe1\x8e\x95\x65\xc5\x03\xc7\xcc\xbd\x43\x6e\x1b\x3d\xa7\x93\xe1\xe9\x13\x6b\x04\x49\x39\x18\xbc\x36\xc2\x3d\x73\xe2\x76\xcc\x38\x4d\x32\xc9\x4e\xf2\x72\xfc\x09\xb8\x5b\xed\xda\xab\xe6\x8a\xde\xdb\xe8\x8e\x11\x3a\x93\x45\x2a\x8c\x43\x41\x49\x8e\x9a\xa8\x13\x91\xd3\x5e\x30\x39\x10\x53\x11\xe0\x9d\xd0\x42\xdf\xb8\xb7\x8f\x8a\x1f\xe9\x22\x55\x0e\xb1\xca\x5b\x98\xb7\x59\xd0\x95\xd4\x5c\x17\x17\x38\x5f\x3e\xdd\x28\x97\xf8\x76\x42\x43\x4f\xc2\x46\xb7\xe0\x07\x72\x45\x89\x6a\xd6\x72\xee\xe2\xa2\xdb\xb9\x97\xc2\x5e\xc0\x2d\x7b\x8b\xc2\x82\xd4\x93\xb9\xbe\xd5\x1b\x2e\xbc\xfe\xbe\xad\xbe\x73\x08\x13\xba\xcf\x70\x1f\x0c\xc8\x22\xf9\x4e\xb5\xcb\xeb\xb2\xda\x27\x0c\x77\x8b\x9e\xb4\x6d\x8a\x93\x3b\x24\xb4\x3f\xfb\x17\x7a\xa3\x93\x70\x80\x76\x52\x59\x6e\x7b\xb4\x97\x63\xe7\xab\x18\x7c\xd5\x10\x90\x37\xdf\x04\xb9\xf5\xb3\xbd\xb7\x8f\xc6\xb0\xdd\xc7\x4f\x59\x34\x54\x3c\x53\x28\x63\xda\x35\x4b\x46\x30\x25\xc8\x73\x8b\xf0\xa3\x79\x31\x98\xf1\x5b\x59\xa3\x87\x6f\x60\xfe\xab\xfd\x71\x4d\xe5\xcc\x14\x1e\x27\x47\x15\xf4\x69\x96\xcd\x0a\xd8\x3e\x9c\x6b\x62\xf5\xf8\xd8\xdc\x58\xed\xeb\x11\xf2\xe1\x98\x33\xc4\xde\xa8\x24\xa3\x2d\x25\xd7\x9a\xf7\x6f\x3a\x9f\x06\x3f\xb3\xfa\x8b\x69\x19\x79\x53\xf5\xc6\x69\x11\x2b\xbd\xd0\xe3\xcd\x25\xb7\xae\x4c\x2b\x15\x85\x32\xe6\x2f\xc1\x48\x12\x36\xf2\xe2\xad\xef\x54\xf0\xda\x38\x91\xdf\x06\x4c\x68\x45\xcc\xe2\xae\x4e\x7e\xc0\xe9\xf4\xca\xa6\xa9\xd2\x9f\x8d\x97\x99\xaa\x82\x42\x34\xbb\x3e\x37\x1d\x8b\xcd\x03\xad\xfd\x9a\xc5\x78\x6f\xcf\xa9\x69\x92\x68\x31\x4f\x11\xd8\x9f\xbe\xb6\xe6\x14\x2b\x5f\x68\xac\xdd\xfe\xd1\xf5\x54\xaa\xfd\x6e\xaf\x36\xa2\xb3\x70\x92\x5f\xfe\xb9\xa5\x16\xd5\x60\x29\xb2\x4c\x51\xf7\x05\xb2\x9b\x07\xbe\x57\x81\x69\x8e\x79\xf2\x2f\xd4\x6d\x7d\xa4\xdc\x43\xea\x88\x24\x43\xb5\xb8\x51\x11\xf7\xe1\x5d\x9d\x56\x70\x43\x59\xb5\xff\x41\x99\x4d\x80\x07\x85\xf2\x2a\xe7\xbc\x99\xda\x41\x50\x43\x26\x1a\x2b\xfc\xa4\x6b\xca\xbe\x93\x95\x0b\x99\x10\x89\x1f\xb6\xa6\x8d\xb1\x28\x93\x34\xfe\x8c\x0b\x0c\xe2\x2b\x02\x1b\x67\x27\x9e\x7f\x7e\xe9\xfc\xaf\x62\x74\xa8\xcb\xdf\x1d\x2f\xb6\xff\xea\x3e\x42\xb0\xed\x99\x62\x94\xf4\xe9\x53\x46\x8d\x9a\xeb\xfe\x3d\xdf\x0d\x10\x0f\xaa\x34\x6e\x34\xde\xe9\xf4\x66\x76\x97\x47\x36\xbd\x9a\xe4\x4b\xc8\xef\xce\x1f\xed\xff\x70\xf5\x2f\x28\x48\x8d\x76\x75\xc6\x04\x65\x54\xd3\xfe\x1e\x74\xec\x7b\xfb\x37\x99\xbd\x17\x2c\x63\xfb\x76\xa1\xa3\xd5\x34\x7c\x92\xe1\xb4\x96\xa3\xcc\xad\x4e\x97\x6c\x3c\x56\x49\x72\x36\xf5\x37\xea\xe7\x2c\xae\xf3\xb4\x50\x63\x14\x03\x90\xd5\x18\x86\x5f\xa0\x73\x90\x2b\x1c\xf0\x2e\x3d\x62\xdb\x6c\x61\xb9\x27\xda\x07\x80\xd7\x32\x6e\x1f\xfc\xd5\xc7\x7f\x81\xaf\xc5\x20\x74\x55\xeb\x66\x65\x35\xeb\x34\xcd\xf5\x73\x1f\x99\x1d\x7b\x69\x69\x91\x2f\xa6\x70\x9a\xad\xef\xb4\x02\xe4\xd0\x67\x53\xe1\x90\xe6\x15\xa5\x1e\x8f\xe4\x4f\x8d\x78\xf6\xa2\x93\xc6\x2a\x21\x57\x02\x8b\x84\xcd\x3a\x25\xab\x98\x1f\x1f\xaa\xae\x0f\x9a\xc5\x19\x32\xcb\xb7\x4d\x3a\xe3\x46\xe3\xe0\x55\x16\xee\xcb\x9c\x41\x50\xea\x77\xd9\x94\x5e\x18\xe5\x00\x92\x2e\xae\x44\x5a\x9b\x81\x1d\x07\x14\x2f\x66\x41\x5f\xc6\xdd\xce\x79\xd7\xf4\x39\x9c\xbf\xc7\x83\x53\x36\xad\x4e\x0c\x13\xde\x36\x51\x4f\x1f\xcd\x8e\x51\x4a\x77\xa0\x77\x1d\x2e\x18\x81\x92\x82\xc9\xe0\xd7\xa7\xb2\x25\x62\x21\xa8\xd4\x9d\x08\x4f\x93\x1d\x9f\x9b\xb7\x23\xeb\x1e\x7d\xce\xc6\xa6\x96\x83\x11\x88\x90\xcb\x8b\x5e\x39\x18\x77\xfd\xe0\x2b\x23\x23\xc7\x9f\x5e\x02\x34\xce\x5a\x33\x5f\x4d\xf5\xb7\xbc\xcc\x5f\xfe\x33\x3b\xb3\x15\x16\x03\x75\x78\xf9\x8c\x54\xbf\x27\x32\x5a\x3d\xb9\xbd\xe1\x5f\x8e\xda\x4b\x6f\x66\x61\x91\x85\x48\x26\x7a\xdf\x5a\x36\x89\x2e\x7f\xd5\xc7\x72\x88\x17\x38\x92\x77\x3d\xd5\x1f\xb5\x7b\x96\x5d\xdd\xb1\x68\xbd\x30\x4f\x27\xe1\x9f\xc9\xd6\x93\x74\xeb\x5c\xef\x78\x46\xf2\x27\x01\x7b\xc4\x19\xd9\x21\xaf\xf5\x48\x7d\x6f\xf7\x87\x28\x97\xfc\x4e\xde\xf3\xa2\xf1\x7d\x9f\xb7\xef\x5d\x0d\x96\x85\x4d\x33\x60\xff\x66\x5b\x1e\x54\x5a\xae\xa4\x58\xe9\x08\x71\x03\xb4\xae\x7b\x76\x87\x01\x5e\x1a\xdf\x8e\x5f\x9f\xf6\xbb\xaf\x46\xed\x82\xa5\xdc\x11\x7e\x2e\x1b\x39\x4f\xd5\x81\x36\x3f\x8f\xf5\xbd\xc7\x0b\x0a\x0f\x85\xb9\x9c\xc6\x60\x60\xce\xb6\xc2\x88\xcd\xdf\x26\xd5\xe8\x3b\x21\x2a\x51\xa7\x1c\x24\x63\x2c\x0f\x8a\x39\x46\xa5\xa8\xb7\x58\xc8\xaa\x45\x9e\x5f\x99\x61\x39\x44\x4f\xfb\xa5\xfa\xb2\xb8\xa7\xa8\xad\xbb\xcd\xd2\x20\xb7\x03\xa6\xe2\x03\xde\x32\x92\x9a\x4c\x04\xea\x74\xcd\xf0\xea\xa1\xde\x5e\x4b\x78\xda\x5a\x83\xf2\x2a\x32\x04\x46\xed\x8e\xd2\xf5\xab\xd8\x8e\x7c\xdc\x35\x90\x57\x20\x75\xb4\x41\x41\xbd\x3d\x5d\x24\xeb\x87\x6d\xb0\xfa\x24\x25\xc5\x47\xac\x13\xd8\x51\x90\xca\xb6\xdd\xa0\x5e\xe4\xaf\x9f\x30\x5c\x13\x05\xe1\x31\xce\xf6\x98\x8e\x06\x51\xc0\x78\xad\xb8\x9e\x6c\x34\xb7\x50\x6b\xef\x74\xf4\x68\x8c\x84\x81\xc8\x5d\x36\x36\x7f\x8d\xc0\x96\x41\xf1\xf4\x8f\xfc\x2f\xa9\xf5\xd6\x33\x6a\xd3\x1e\x42\x11\x57\x89\x12\x33\x97\x76\x58\xbe\x27\xc4\x3a\x28\xfd\x7f\x6c\x92\x34\xce\x85\x10\x4f\x81\xa4\xce\x8a\xa6\xf9\x8a\x26\x16\xf4\xe2\x95\x5e\xcf\xab\xcf\xe3\x31\xec\xa5\xa2\x99\x0f\x5d\x51\x1f\x15\x7f\x91\x73\x8b\x7a\x7b\x71\x3c\xca\x80\x48\xcb\x14\xa8\x0a\x86\x99\xdd\x86\x5b\x4b\xaa\xc4\x3a\x1d\x5b\xb7\xe8\x93\x0b\x55\x98\x65\x54\x97\x99\xc6\xf7\xf8\x10\xfc\x45\x1a\x2d\x7f\x11\xc0\x0b\x3c\xbc\x6c\x72\x28\x6d\xc1\x8c\x89\x82\x72\x7c\x91\xe7\x8a\xa9\x54\x85\xf3\x46\x2b\x84\x42\xf7\x52\x3c\xae\x7e\x41\x36\x0d\xe2\x5a\x24\xfd\xbc\x0d\xf3\xd4\x46\x9d\x85\xc3\x14\x6e\x9c\x1d\x74\xdb\x5d\xb8\xfb\xd5\xb6\x22\xfd\x5d\x94\x54\x2b\x04\x03\x6e\x5a\xef\x70\x2a\xd9\x24\x32\x88\xa7\xde\x0b\xb1\xfc\xd8\x18\x67\x32\x74\xd9\x5f\x38\x88\xb0\x46\x7d\x24\x86\xf1\x1a\x34\x09\x1f\x1e\xf5\xe8\xb0\x98\xe9\xeb\xea\xef\xcb\x5b\x17\x0c\x93\x9b\x23\x5f\x74\x66\xcd\xa3\xca\x3d\xb3\x79\x6a\x98\x73\xc9\xe2\xbb\x7b\x23\x3e\xc6\x74\x8c\x12\x93\x42\x11\x26\x2f\x23\x3d\x64\x97\x79\x8c\x1f\x44\x2a\x63\x0b\x16\x02\x57\x96\x9f\xca\x53\x7d\x98\x93\x97\x38\xd4\x26\x0f\x3d\x15\x77\xee\x8d\x67\x26\x22\xe7\xe3\x67\xb0\xf3\x17\x5a\x61\x1b\x2c\x19\xff\xe2\xfa\x69\x3c\x06\x64\xf0\xd3\x67\x5c\x0a\x9d\xa0\x0e\xcb\x1f\xa3\xe9\x0e\xaf\xfa\x59\xdc\xe0\xf6\x82\x4b\x60\xa6\x3f\x7c\x93\x53\x28\x21\x97\xf4\x93\xd5\xfa\xf0\x85\xb6\xb6\x6a\x0e\x72\xd4\x20\x24\x3a\xee\x7a\xa7\x57\xd4\x1e\xa8\x43\xe1\x19\x2e\x55\x26\x08\x28\x4f\xc4\xe0\xca\xad\xc2\xec\x44\xe8\xbd\x43\x69\x37\x9d\x53\x13\xa5\xda\x93\xb1\x3d\xad\xf2\xd4\x25\x16\xf2\x0f\x41\x94\xc4\xe2\x13\xf2\xbf\xa3\xe3\x3a\xb2\x60\x13\x22\xbf\xd3\x33\xa2\x73\x36\xa7\x5a\x3c\x3e\x57\x09\x7e\x93\x98\xd7\x53\x73\x41\x69\x03\x98\xc0\x98\xea\xc6\xd2\x83\x9d\x80\x6b\xb4\x2a\x86\xfb\x6e\xc2\x1d\x9f\x94\xf2\x6a\x11\xab\xd7\x89\xae\x06\x71\xb1\x2b\x0a\x5a\xb5\x1a\x16\x6b\x97\xb7\x59\xad\xb5\xcd\x0d\x2b\x01\x7b\x7d\xb4\xec\xf0\x60\xed\xbe\x2c\xfc\xb1\x8f\xc2\xb0\x35\x6d\x66\x20\xcc\xd3\x68\xc2\xc0\x78\x42\xcf\xb2\xec\xfe\x9a\x4a\x30\x9d\xce\xbe\xe9\xf3\xc6\xe1\xce\xf4\x0c\x54\xec\xd3\x56\x74\xf6\xac\xcd\x8c\xc9\x76\x83\x3d\xb1\x51\xe1\x1c\xa9\x56\x31\x32\x4d\xb8\x15\x25\xb2\x7d\x47\x7c\x40\x4e\x4e\x50\x11\xd2\xd9\x1f\x1e\x6e\xbc\xf5\xd1\x5d\xca\xd6\xac\xda\x2b\xb8\x8a\x67\x99\x1b\xd6\x8a\x1e\xf4\x2b\x2e\xe4\xc4\x6f\x94\xcf\x5b\x69\x81\x35\x2a\x84\xd9\x14\x64\x97\x57\xd8\xa2\x96\xe9\x34\xe6\xce\x4a\xfa\x92\x2b\x49\xd8\xfa\xb2\xe6\x17\xb5\xa6\x7f\x54\xe5\x4c\x34\x50\x2a\x07\xf8\xfc\x69\xa8\x2d\xda\x70\x12\x7d\x75\x67\x27\xda\xea\xcd\x46\x17\xa9\x25\xfc\x6b\xb3\xc7\x4f\x8e\xe0\xfb\xb5\xf6\xc2\x27\xa7\x4a\xb7\x06\x75\x53\x62\x13\x6c\xa9\x7f\x61\xe0\x51\x39\x76\x64\x58\x01\x75\x08\xbd\x05\xbd\x72\xb7\x87\x70\xb4\x98\x6a\x88\xfb\x66\x93\xf1\x6f\x2d\x93\x68\xa4\x1f\x25\xcb\xbd\x8c\x2a\xbc\xce\x97\xbf\x3b\xdb\xfc\x94\x86\x13\x7a\x46\xfa\x24\x1d\x31\xf5\xc8\x07\x3a\xc8\x3b\x67\x2f\x42\xff\xfb\xd9\xaf\xa6\xc6\xf2\x4f\xcd\x1e\xdc\x9e\x6e\xeb\xdc\xe4\x43\xe1\x02\xa4\x3e\x9d\x6d\xaa\x9b\x75\x1e\x9a\xf6\x6e\x21\x8d\xf4\xde\x45\x52\x87\xd7\x6e\x59\x77\xa8\x97\x06\xb4\x22\x02\xae\x4e\x0e\xf7\xe7\x2d\xc6\xe2\x07\x75\x96\x53\x41\x47\x2f\xf4\xc6\x51\xda\xb8\x34\xc8\x84\xab\xf9\x60\xe8\xd6\x6e\xa9\xde\x8c\xf1\xf1\x05\x1f\xf0\x00\xef\xe6\xaa\x16\x5e\xe4\x6c\x26\xbb\xb4\x62\x99\xe1\x60\x55\x6a\xa5\xf2\x3e\xcf\x9d\x66\xaf\xca\x06\xfd\x11\x09\xa1\xc0\x6f\xcc\xf1\x7d\x75\x6f\x37\x17\x3e\xff\xe5\x87\x7b\xed\xbb\xd5\x92\xfc\xeb\xa6\x82\xb1\x2a\xf8\xf1\x27\xf6\x8a\xc5\x38\xd2\xfc\x94\x35\xdd\x4c\x34\xa4\xbe\xab\x48\xb0\xff\x63\xdf\x3f\x5c\xfd\x34\xc2\x77\x8e\x75\xe7\x78\x0b\x3e\xb7\x5b\x3a\xc1\xea\x60\x61\xae\x60\x75\xa4\x50\x97\x5d\x54\x87\xd9\x52\x6b\xf6\x7a\xb7\x9d\xc2\xfa\x34\x62\xf7\x81\xe6\x4e\x13\x7e\x91\x24\xcc\xe5\x7a\xac\xec\xbe\x5f\xc4\x54\x9c\x82\x51\x24\xa8\x2a\xd3\xbd\xce\x32\x5f\x97\xa4\x47\xf6\x39\x2d\x09\xfb\xf4\x5e\x36\x45\xf3\xef\x22\xaa\x85\xfa\x05\xe9\x9f\x0e\x0e\x68\x1d\xf7\x99\xdb\xcb\x92\x52\xdd\x5b\x80\xa2\x5b\xad\xaf\x82\x57\xc8\xe9\x19\xb4\x1d\xb2\xd7\x32\x40\xc6\x4b\xac\x63\x57\x49\xa8\x80\x7e\xfe\xa8\x29\xdb\xe2\x28\xdb\x8f\x57\x32\xc7\x76\x26\x84\xcc\x6f\xc9\xc4\xd3\xe6\x52\xfb\x87\xfb\xea\x5a\xc0\x45\xa3\x0f\x36\xa5\xb6\x57\x43\x1f\x3e\x75\x38\xf9\x4b\x49\x73\xec\x62\xe3\x4b\xdf\x3f\x9c\xa1\x89\xa6\x06\xe6\xa9\xff\x1c\x94\xb5\xcb\x30\x41\xa7\x16\x41\x3b\x81\xda\x33\x5a\x0e\xa2\xa7\x4e\xbe\x94\xa2\x0d\xc0\x68\x5b\xbc\x55\x18\xcf\x7d\xe4\xc6\xa8\xeb\x60\x5f\x71\xef\x47\xa4\x0c\xbe\xdd\xd9\x27\x89\xad\x48\x6a\x1a\x5a\x32\x8a\x7b\xb9\x6d\x10\x70\xa1\x65\x32\xc6\xc9\x03\xef\xb9\x4f\xa6\xf7\x15\x21\x4b\x6c\x7a\xb6\x4d\x4a\x44\x32\xaa\xe9\x9a\x9c\x3e\xba\xa8\x97\x73\x73\xfc\xae\xe4\x90\x0d\x40\x0b\x71\x7c\x52\x10\xc0\xb2\xa9\xdd\x87\x81\x89\xe4\xa8\x3b\x16\x1a\xdf\x76\xd1\x05\xf8\x6c\xae\xb2\xaf\x07\x1c\x39\xd6\xdb\x22\x7e\x2a\x3a\x53\xe8\x0d\x6b\xcf\xbc\xbd\x3d\x2d\x62\x2e\xfd\x20\x12\x25\xa5\xc2\xcf\xb1\x86\x76\x1f\x95\x8f\x97\x28\xbf\x7a\xb7\x24\xfd\xd0\x14\x87\xa2\x8b\xb7\x7b\xa9\x93\xd7\xe6\x69\x79\x0f\x57\x70\x90\xad\xaf\xad\x79\x89\xe6\xee\xfb\x97\x14\x14\x1c\xfd\x23\xd8\x65\x26\x49\xa6\xde\xf5\xa0\xd4\x5e\x25\x32\xed\xa1\xb4\xf3\x63\x37\xc7\xc0\xfb\x51\x61\x18\xbc\x9d\x2a\x85\xb2\xf9\x87\x39\x4b\xf8\x19\x43\x79\x49\xe9\x6c\x43\xa5\x9b\xa6\xdf\x3d\x33\x74\x93\xac\x43\x6e\x1e\x27\xc2\x75\xf3\x65\xe0\xa4\x53\x61\xcb\x00\xe2\xb3\x57\x49\x6d\xed\x83\x32\x9f\x8f\x36\xa4\xa6\xb8\xef\x65\xe5\xc3\x7f\xc5\x76\x71\x50\x9e\xa7\x6f\x2b\x14\x3e\xd3\x81\xe8\x6d\x4e\x47\xa3\x8f\xc6\x6d\x52\xf7\xf3\xe0\xe3\x96\x67\xb1\x3f\xa7\xed\x9c\xcc\x06\xbb\x52\x8e\x15\xe3\xa9\xb8\x3a\x84\xa3\x00\xd9\x69\x8c\x46\x4c\xef\x96\xa7\xce\x13\x63\x7c\x90\x55\x3e\xee\x7a\xa5\xb2\x83\xf7\x25\xce\x50\x74\x82\xa3\x68\xc0\x69\x41\xd0\x86\x91\x8a\x7a\x62\xae\xbf\xd0\x8f\xf1\xa2\x37\x2b\xc2\x80\xb0\xa3\xc6\x47\x7c\x0c\x31\x92\x35\xe8\xf6\x9a\x91\x74\xaf\x26\x76\xcc\x34\x81\xe5\xc9\x9b\xf5\x02\x88\xad\xad\x30\x68\x90\xd3\x20\x67\x93\x5f\xba\xa6\x77\xeb\x5a\x0e\xce\x7b\xe2\x8f\xff\xb6\xb8\x7c\x25\x58\x7a\x5f\x80\x6b\xf7\xaa\xbd\x7f\x24\x91\x2f\xdb\x2e\x3c\xac\xa5\xd6\xef\x7a\xa8\x69\xa4\xdc\x0e\xbd\x38\x39\xb4\x78\x73\xad\x39\x3d\xfb\xb6\xe6\x27\x86\x80\x3c\x3f\x29\xa1\xe8\x0d\xdf\x71\xf0\x79\xb8\x5c\xc2\x67\x27\x24\x6a\xf1\xe2\x59\xf1\x2d\xaf\x71\xbe\x48\x19\x1d\xc3\x1e\x2e\x60\x76\x73\x76\x2c\x79\xd3\xee\x6a\x9c\x73\x75\xe1\xe7\x88\xc7\x11\x2e\x2a\x85\x93\x20\xe8\xea\xcd\xbc\x8c\x99\xc1\x65\xbf\x31\x36\xe3\x77\x0f\x56\x7f\x0f\x91\xb8\x06\x64\x62\x45\x44\xf2\x57\x89\xba\x20\xbb\x75\x65\xa5\xa3\x9b\xee\x4f\x84\x81\x60\x9f\x47\x86\xb6\x98\x42\xd5\x9d\xcd\x57\x5a\x51\xaa\x16\x24\x04\x00\xbc\xd2\x68\x42\x5f\xc2\x53\x64\x88\x8a\x73\xaa\xb1\xa7\xfc\xe3\x63\xe1\xf8\xef\x5c\x21\x23\x5c\xa4\x9d\x43\x44\xea\xcb\xd6\x35\x83\x0d\xcd\x61\xa6\xfa\x12\x0f\xc5\xfa\x8d\x18\x98\xef\xa9\x2c\xbf\xbf\x2b\xc5\x6b\x82\xb6\x59\xae\x2c\x29\x32\x3c\x1e\x19\x7c\xdd\x0d\x77\xb5\xca\x92\x15\xef\xe4\x55\x03\x13\x00\x35\x3a\xc9\x52\x9e\x0b\x7e\xf7\xd9\x64\x1f\xed\xf7\x19\x79\xdd\xe2\xfc\x7f\x5e\xa6\x04\xb7\x20\xda\xbe\x0e\x68\x94\xb4\x06\x11\x12\x27\xc7\x3d\x26\x74\xcc\x9e\x0d\x16\xc7\xf0\x2f\x08\x90\x1c\x1f\xce\xa4\x27\x20\x81\x77\x46\x13\x06\x85\x3b\x61\xed\x61\x3d\x75\x27\x51\x82\x82\x3d\x8f\xaa\x3e\x3f\xfc\x5e\x56\xc6\xa1\x9b\x34\x66\x01\x3e\x25\x6f\x62\x4d\xf8\xac\x49\x69\x5b\x8b\x83\xf2\x4a\x1d\xbb\xd4\xd8\xde\xc3\x19\xb2\x1d\xfc\xf6\xca\x79\x34\xa5\xc8\x5f\xc5\x40\x9a\xe9\x7c\xb5\xf6\xe2\x24\x86\xbc\xa7\x69\x5d\x71\xac\xd3\xe8\x59\x84\x52\x88\xb3\xf0\xb6\xa6\x88\xb5\xac\x03\xe1\x8b\x66\xb1\xf8\x49\xd7\x81\x8d\x7c\x51\x74\x30\x18\x07\x05\x39\xce\x7c\xb4\xab\x29\x65\xa5\x0d\xb8\x88\xc8\x94\x98\x4a\xeb\xa9\x91\x35\x8a\x79\x1c\x6b\x32\x48\xe4\xe9\x68\x02\xd1\x28\x80\x77\x15\x52\x49\x59\xb6\x23\x16\x27\xa7\xa8\x03\x4a\x8d\x6d\xa6\x15\xf0\x2e\x30\x3c\x0e\x73\xbb\xe0\x20\x62\x8f\x5e\x0f\xa4\x9c\x1a\x58\xda\x2c\x52\x10\x35\x9e\xd0\x5b\xe5\x86\x7a\xe9\x2b\x7f\xbf\x8b\xd6\xbe\xfe\x67\xe0\xdf\x05\xd9\xd1\x9b\xfa\x0a\x73\x27\xf1\x3f\xc6\xf4\x86\x1d\xfa\x3e\x1d\x6e\x07\x85\xb9\xec\x88\x71\xe5\x97\xf3\x6e\xd7\x9e\xb3\x4c\x2f\xfa\x39\xbf\x94\x8e\xf5\xda\xca\x41\x8e\x3e\xff\xe1\xe8\xa4\x5b\x6e\x86\x7d\x4a\x73\xb3\x8a\xad\x89\xe9\x12\x7b\x7a\x20\x93\x96\xee\xeb\xbb\xa0\x6b\x03\x25\x63\xeb\x9a\x5c\x8c\x23\xcd\x1e\x6c\x49\x8a\xea\x16\x98\xfb\xc8\x3e\xf3\xfb\xc5\xc9\xb8\x36\x91\x5c\xac\x93\xa9\x2a\xbe\x42\xc5\xef\xea\xe1\xbd\x2c\x19\x08\xbe\x33\x86\xcf\x5f\x28\x3a\x8e\x6d\x10\x62\x65\x7b\xb8\xf5\x37\xd0\x11\xd7\x7a\xe3\x31\x31\xc7\x3b\xba\x8f\x61\x78\x4e\x79\x7b\x85\x4e\xe0\xc2\x8b\x09\x16\xde\x24\xbd\xf2\xd5\xc0\xbd\x65\xab\x58\x4f\xdb\x8b\x6c\xf0\x7e\x62\x0d\x91\x4c\x1c\xd6\x70\x65\x7a\x7a\x1e\x1e\x97\x95\x7f\x37\x25\x4e\xe3\x5e\x66\xee\xf7\xf4\x22\x70\xee\xa4\xce\xaf\x2d\xba\x9a\x42\x45\x2d\xec\x22\x27\xf8\x4c\x8a\xd7\xf5\x90\x57\x6d\x47\x8a\xf1\xd6\x2f\xbf\xa2\x79\x33\x98\x92\x9e\x83\xbb\x84\x27\xae\x05\xa2\x51\x5c\xce\x54\x4e\x9b\x5e\x27\x1b\x69\x9c\x64\x34\xca\x69\xef\x7f\xbb\x24\xce\x7d\x5d\xf5\xab\xaf\x82\xf7\xd2\xc3\xaa\x0d\x40\xd1\xeb\xd5\x51\xc9\x95\x72\x14\x79\x5e\x8a\xa4\x77\xbe\xbb\x7a\xf3\xf5\x6a\x22\x33\x11\x52\x44\xf1\x69\x39\x74\x71\x79\x9f\x0c\xa4\x4c\x22\xcd\xc0\x67\x10\x47\x51\x84\x51\x83\xf3\x8e\xcd\x51\xe8\x04\x2c\x87\xfa\x69\xcc\x09\x97\x7d\x37\xb2\x18\x8c\x78\xee\x7f\xeb\xe0\x70\x90\x46\xc1\x32\xf3\x6d\xfa\xbe\x82\x3f\xf0\x79\xa6\x6e\xbc\xbf\x12\xb5\xa1\x7b\xcc\x48\x6a\xc7\xd9\x94\xd1\x12\x0a\xeb\xef\xc7\x8a\x5d\x9c\x76\xfe\x8d\x02\x6f\x48\xdb\x3f\x01\x4a\xec\x79\x6d\xf9\x2a\xad\x17\x0c\x8b\xf9\x23\xa5\x25\xbd\x04\x7e\xbe\xd0\x8f\xff\x29\x33\x92\xfa\xc5\xdd\xe4\x5d\x05\xa3\x56\x88\xbf\x37\x4a\x61\x74\xbe\x9d\x24\xef\xce\x2d\xa3\xd8\xd4\xf4\x3d\x5b\x17\xf6\x9a\x6a\xdd\xf3\x5b\x47\xfb\xd3\x08\xf9\xe9\xd6\xe6\x93\x52\xa7\xcd\x5b\x59\x20\x5a\xc4\xb4\xcc\xde\xf7\x52\x17\x9f\x82\x82\x4e\x48\x7d\x04\xcc\x1d\xc0\x4c\x09\x4d\xd5\x88\x36\x93\x7b\xdb\x0d\xea\x8a\x41\xb8\xd7\xb8\x9c\x06\x6f\xa0\xad\x51\x7f\x62\x6f\x95\xf3\xd6\x2a\xa4\xf6\x85\xa4\x50\xf6\xe0\xd4\x9f\x6a\x84\x4a\x79\x04\xfe\x97\x06\x0f\xaf\xaa\x3f\x99\x3a\xdd\xbc\x8a\xe8\x39\xcb\x54\xa6\xe0\x6d\xd7\x67\x10\xbd\x0d\x5e\xfb\x3f\xb7\x59\xa4\x40\x89\xde\xab\xac\xd6\xfd\x7b\xd2\x79\xd1\x4b\x93\xae\x82\x85\x92\x53\xde\x5c\x3b\x6f\xdc\x36\x7f\x29\x5e\x80\x65\x3a\xef\x83\xec\xc3\xf1\xde\x39\x31\x15\x13\x8f\xbd\x5e\xb8\xfa\xfe\x9b\x6a\x75\x35\x2b\xf6\x33\xf6\x2b\x9b\x90\x33\x0d\x7b\xea\xea\x8b\xf3\x71\x5a\x95\xd8\x4a\xde\xd0\xf0\xcf\xf7\xe8\xb3\x39\x08\xf0\xa2\xd0\xcb\x70\xcd\x7c\x4c\xbf\x3a\x49\x91\xdf\xd5\xf2\x43\x65\x43\xe8\xae\x19\x25\xfb\xfe\xb6\xb4\x5d\xe8\xc2\xed\x2a\x3f\x4f\x15\xa5\x2f\x25\xf1\xe3\x85\x1f\xc8\xc3\xbb\x2d\xb6\xe0\xd3\x07\xb1\x3d\xba\x9e\xb9\x28\x3b\xff\x8b\xc1\x35\xdb\xba\x43\x6c\x01\xcf\xa3\xd6\x8a\x63\x9f\xf7\xdd\x11\xee\x49\xf9\x50\x62\x9d\xbe\x18\x5e\x40\xa1\x50\x42\x06\xfa\x99\xef\xb9\x24\x2f\xb4\xfd\x2b\x73\xfa\xf9\xc0\xfc\x28\xbe\xb7\x96\x6a\xac\xc0\xc1\xbf\x24\x6f\x4d\x1e\x42\x46\x5e\x60\xc3\xa9\x1e\x64\xfb\x53\x59\x24\xad\x82\x1b\xc3\xea\xe7\x2b\xcb\xf4\x09\x25\x22\x3d\x6b\x3f\x92\x47\x32\x64\x92\x8d\x90\xdf\xe9\x1c\xa1\x8b\x6a\xea\x71\x8f\x0a\xff\x85\x56\xfc\x58\xdb\x28\x7e\xba\xd9\x9b\xf6\x09\x24\x07\x44\x1a\x25\x26\x85\xfe\xc2\xe2\x2b\xbf\x19\xfa\xdc\x3f\x4c\x0a\xea\x8b\xf1\x0f\xcc\xd1\xad\x19\x2c\x20\x94\x11\xcf\x91\x2d\xb3\xb5\x3c\x3c\xf0\x64\x6b\x79\xfa\x44\x65\x41\xc6\x64\x15\x4e\x7c\xa0\x4d\x3a\x97\xfc\xde\xe9\x3d\x7a\xc5\x95\x57\x92\x18\xcb\x27\x8d\xef\x97\x2a\xf4\xa8\x29\xfb\x36\xe2\x96\xd4\xf1\x46\x0c\x7e\x7a\xd3\xe9\xad\xb1\xcd\x96\xb3\x45\x5e\xa4\x48\xfe\x0d\x07\x4f\x0f\xc5\x6f\xad\xe8\x6a\x40\xd1\x4b\x60\xdf\x5b\xc7\x5e\x1e\x66\x5a\xf3\xb5\x04\x71\x06\xd2\x20\x68\x7b\x42\xf7\xa4\x4c\x53\xea\x1e\x53\x5a\x7f\x88\xb9\x63\xf8\x51\xad\xf2\x59\x53\xa9\x6e\xd3\x42\xf4\x56\xd0\x54\x0c\x9d\x89\xdd\x42\xde\x86\x2b\xb3\xc9\x84\xe1\xe3\x87\x51\x0e\x0a\x9a\x17\xb7\x3f\xe8\x0c\x98\xd5\xec\xc8\x5c\xf9\xc1\x44\x72\xe7\x1a\x6d\x07\x2a\x67\x03\x69\xc4\xf6\x8f\x3f\x69\xe7\x2f\xc7\x69\xbc\xf4\x14\xd1\x39\xe9\x24\x16\x0c\xee\x15\x48\x14\x1f\x65\xf4\x59\x72\xbb\x5c\xa1\xee\x33\x8d\xbc\x03\x9d\x27\x1d\x67\x08\x70\x30\x66\xd5\x8a\x21\xf9\x04\x92\xa3\xb6\x80\x0a\x1e\xb4\xdc\x22\xbf\x5c\xac\xbe\xdf\x63\xaf\x5f\xb0\x58\xd0\x5e\x9f\x1d\x7b\x8d\x01\x17\xc0\x8f\xb3\x84\xc8\xe9\xbb\x70\x85\xa0\xa6\x50\x83\x9f\x93\x65\x02\x05\x65\xea\x8c\x76\x9c\x1a\xcd\x07\x77\xce\xf2\xf5\xef\x8f\xd8\x32\x30\xb1\x83\x89\xe4\x3a\x86\xce\x57\xce\xe6\xd5\x1b\xbd\x4c\x93\x24\xcc\x0a\xde\x57\x0a\x93\x42\x66\xb6\x1c\x1c\x44\x14\x83\x7d\x06\x12\xd9\x5d\x82\x96\x07\x3e\xe7\x9f\x9a\xa9\x33\xd7\xf3\x81\x15\x5d\xa5\x60\x50\x9e\xd9\x77\x8f\xae\x43\x6d\x6c\xcc\x1d\xbd\xbf\xf0\x7e\x0c\x05\xc9\x51\x8b\xa7\x82\xa5\xa6\x58\x6e\xfa\xb9\x13\x64\x6a\x52\xda\x00\x34\xae\xba\x84\x7c\x52\x74\xd4\x50\x5f\x8f\x9a\x80\xd1\x8e\xf5\x64\xe1\xf2\x0f\x2a\x2c\x2f\xb8\x57\x6e\xed\x5c\xf6\x72\x83\x61\xaf\x3d\xf7\x0f\xaa\x05\xc3\xbd\xd2\x19\x12\x83\x93\xa5\x56\xb4\xe8\xdc\xa8\x62\x5e\x0a\x90\x2c\xf9\xc6\x66\x0f\x36\x07\xce\xa6\x0b\x24\x64\x9a\xb2\xd3\x1c\x79\xf2\xec\x7c\xdf\x86\x82\x6a\xd0\x0f\x92\x1e\x53\xbf\x0b\xe2\xe8\x32\xc2\x0a\x0f\x98\xa5\x59\x0f\x46\xb8\xcc\x59\xb5\xa3\xde\x88\xa6\x9e\x7f\x22\x34\xf5\x65\xe2\x03\x13\xc9\x65\x96\xe4\xce\xff\x60\xf2\xb5\x94\xc9\xc8\x68\x7c\x12\xd8\x8a\x48\x0a\x86\xb9\xd2\x32\x38\x56\x0e\x2b\x10\x99\xbc\xad\x00\x1d\x19\xa2\x25\x83\x5f\x90\xc9\x2e\x01\x0a\x32\x87\x1a\xda\x50\x7a\x1b\x98\xaa\xfa\x8b\xf8\xe5\x12\x88\x5a\xb8\xd5\x1d\x2c\xc7\x63\x4a\xe5\x8e\xa5\x64\xe1\x94\x58\x9d\x4b\x03\x4e\x85\x52\xeb\x29\x4f\x4f\xc6\xe7\x5f\xc7\xa3\x4c\xd3\x97\x70\xf5\xe4\x13\x42\x34\xd7\x13\x7e\xcf\x7c\xcc\xe6\x8f\xe4\x09\x88\xa8\x99\xd4\xe9\x02\x1f\xa3\x1e\x90\x0a\x13\x90\x51\x9a\x03\x04\x00\x1a\x1a\xcf\x00\xeb\x26\xe7\x92\xd7\xd7\x45\xd2\x1c\xd2\xf6\xcd\xad\x64\x18\x7b\x22\x46\x6b\x0b\x6b\xcf\x8b\xeb\x5e\x23\xbf\xf6\x89\x05\xb3\x81\x89\xe4\x56\x54\x25\x0e\x4d\x54\x8e\xa7\x22\xef\x7e\x0e\xa5\x60\xe9\xb3\x3a\x99\x6d\x99\xbe\xfa\x51\xf3\x02\xfc\xf8\x48\x8b\xe0\xbf\x33\xc2\x78\xfb\xb2\xf0\x7f\x75\x76\xdf\xac\x77\xb7\x23\x43\xfb\xc9\xc8\xf9\x78\x41\x4a\x01\x3f\x7b\xc6\xf5\x75\x02\x3d\x1a\x8b\xe9\x13\x91\x65\x6c\x9a\x1c\x39\x83\x2d\x8c\x57\xbb\x85\xc1\x0f\x4a\x02\xaf\xde\x94\x69\x95\x1e\xce\xb6\x48\x18\x3c\xba\x11\xff\x46\xdd\xf9\x0e\x4a\x16\xcf\x70\xba\x82\x3a\x67\x54\x49\x61\xbf\x69\x70\x70\xa3\x00\x64\x97\x6a\xa9\x44\x9a\x43\x9c\x2a\xab\x9f\xf0\x4c\x12\x2c\xe7\xcc\xdf\xfb\x86\x2c\xcb\xe6\xb8\x58\x99\x61\xcc\x1e\x74\xff\x3e\x67\xd5\x30\xf9\x27\x82\x08\x94\xf8\x5b\x70\xd0\x76\x02\x59\x2b\x56\xc0\x17\x65\x8b\x24\xe6\x8f\x2c\x56\xa5\xeb\x39\xb7\x9f\x3b\x48\x1a\xf8\xd7\xd4\xe6\xc5\x4d\x43\x8f\xaa\x51\xda\xf3\xf9\x4f\xb4\x6d\x0a\x91\x26\x81\x7d\x20\x2c\x94\x2c\x48\x56\x11\x12\xce\x75\x9a\x16\xde\xe2\xa2\x5f\x0f\x49\x85\x63\xa2\x09\x3e\xc6\xba\x2b\x95\xcd\x24\x49\x3a\x39\x71\xfc\x99\x3b\x1a\xd0\xc4\x7c\xfd\xb4\xcc\x43\x4d\xd3\x45\x57\x08\x4a\xa2\x2b\xf7\x70\xb5\x55\xa1\x10\x17\x05\xd7\x50\xbb\xe9\xa4\xb8\x1a\xe4\xf8\x19\x4b\xa1\x71\x69\x9e\x95\xf5\x7f\x1a\x69\xbb\x48\xbb\xef\x44\xfa\x39\xc1\x2e\xd6\xbc\xd6\x26\x03\x91\x2c\xf0\xcc\x1f\x24\xc4\x8a\xa1\x23\x0d\x65\xc3\x5e\xf6\x39\x79\x35\xd9\x99\x61\x77\x31\xe6\xa6\x61\xcb\x3c\x28\xed\x8e\x36\x98\x6b\x2e\xdc\xfd\x7b\xd4\x36\x4b\x92\x3c\xf7\xaf\x67\xec\xb0\x56\x29\xfd\x86\xc2\xd1\xe6\xbc\x01\x6f\x1d\x2a\xa3\x4d\x6e\x67\xb8\x48\x42\x9f\x15\xd6\x97\x6c\x85\xc3\x02\x1a\xbb\xc7\xf4\xcc\x93\xd2\x45\x6a\x19\xf7\x56\x5e\xd3\x2f\x73\x0a\x04\x4b\x83\x61\x51\x54\x9c\xe3\x27\x7a\xe3\x63\x09\xd6\x35\x62\xf9\x1d\x1c\xc1\x83\xf2\xd4\x5d\x21\xb2\xe8\x44\x79\x6e\xbc\x7c\xf4\xf6\x83\xd5\x01\x2d\xb2\x1b\x0b\xac\x60\x61\x2e\xf1\xdc\x1a\x33\x7d\xa6\x3e\xed\xd9\x54\xf7\x83\x47\x4d\x25\x1f\x4c\x4d\x9f\x8b\xd1\x2f\x77\x82\x65\x9f\x7c\xc0\x5a\xf2\x50\xa8\x43\x26\x08\x89\x8d\x22\xbf\x75\xc6\x24\x23\xe8\xe9\x48\xd8\xda\x65\x15\x53\x9f\xfd\x19\xaa\x86\xac\xd3\xeb\x7f\xc8\x8e\x50\x25\xd7\x8d\xdf\x54\xe0\x44\x00\x88\xe3\xad\x0b\x88\x5d\x3e\xa2\x3c\x01\xe6\x4e\x4b\xc0\x68\xb4\xcc\x5e\xdc\xa8\xf8\x83\xe2\x6c\x8a\xfc\xdf\x87\x97\x9e\xf7\x4a\x90\x65\xa0\x3f\xe4\x2b\x1c\xc1\x4b\xab\x44\xf0\x2e\xa3\x60\x9a\x78\x8e\x7c\x44\x63\xbb\x1a\x4a\x3b\x13\xc6\x4e\x4d\x48\x49\x8c\x24\xe1\x43\xda\xe5\xa0\x1e\x86\x8a\xc3\xfa\x6c\xe4\x98\x85\x5f\xe5\x07\x26\xc0\x7c\xdf\x7f\xdb\x9b\x85\xe1\x10\x43\xad\x54\x67\xf6\x08\x74\xd4\xff\x32\x24\xbe\x0e\x20\x6a\xb5\x56\xb2\x6e\xa7\x30\x04\x00\x80\xd3\x4d\xc9\xd0\xcd\xda\xc2\xcd\x46\xc2\xca\xc5\xc6\xc2\xcd\x06\x10\x44\x08\x88\xf1\x23\x84\xf8\x85\x04\x74\x11\x08\x09\x61\x21\x09\x01\x31\x5e\x84\xa0\x04\x02\xf1\x63\x8f\x8e\xfb\xff\x03\x1c\x9c\xac\x31\xaf\xbc\xfe\x6f\xa0\xbb\xaa\x38\x01\x00\x00\x03\x6f\x5d\x43\x37\x6d\x0b\x4f\xa8\xb3\x8b\xd3\x2b\xcc\x1b\x1b\xa8\x9b\x97\xb3\x0d\x14\xe3\xec\x66\x05\x00\x6f\xd3\x96\x0f\x29\xc9\xb0\xfa\x30\xd8\x1f\xad\xde\x3e\xb5\x55\x6d\x00\xc4\x4e\xf1\xc4\x8a\x82\x8e\x9d\x4e\x23\x8e\x1e\x44\x07\x55\x0c\x14\xfe\x65\x0d\x62\xaf\xd2\x85\xf6\x4e\x8e\x76\x77\xf4\x75\x40\x3a\x48\x7b\x03\x55\x33\xd5\x9f\x00\x5b\x8c\x34\x6e\x87\xf2\x22\xff\xad\x00\xd4\x94\x9e\x2b\x96\xc9\x9b\x07\xfd\xbf\x00\x00\x00\xff\xff\x4b\xad\xcc\x72\x5d\x20\x00\x00") - -func web_uiV1StaticAppleTouchIconPngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticAppleTouchIconPng, - "web_ui/v1/static/apple-touch-icon.png", - ) -} - -func web_uiV1StaticAppleTouchIconPng() (*asset, error) { - bytes, err := web_uiV1StaticAppleTouchIconPngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/apple-touch-icon.png", size: 8285, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticApplicationMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\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\x21\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\xd3\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\xe1\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\xb3\xfc\xfd\xa5\xb7\xcc\xb3\xb5\x9c\xd2\x9e\x30\x39\xfc\x59\xfe\xfe\xd2\xdb\x84\x2b\xf6\x33\xfc\xff\xa5\x57\x2c\x72\xc6\xd2\x9f\xe5\xef\x2f\xbd\x32\x93\xa5\xfe\x60\x78\x4d\x5a\x48\x53\x49\xd5\x48\x41\xd3\x91\xd1\xf6\xb4\x05\x03\x68\x5a\xdd\xf6\xa6\x23\xd9\x6b\xb8\x2a\xd6\x38\xd5\x66\x22\x49\xc6\xf7\x97\x56\x00\x66\x4e\xb4\xe6\x59\xf4\x85\xc8\x3a\xeb\xca\x86\x16\xd8\xc1\x14\x8b\x3c\x4b\x92\x37\x6c\x59\x0a\xc1\xb6\x91\x60\xe3\x53\x91\x4b\x94\x31\x72\x99\x09\x10\x4b\x0a\xc0\xa4\x6b\xff\xa5\x51\xfb\x65\xb6\x69\x54\x0e\xef\xad\xba\xeb\x3c\xc6\xbb\x2d\xa2\x29\x37\xf0\x16\x58\x36\xab\x95\x48\x0b\x63\x29\xc2\xb5\xa3\x8a\xc2\x58\xf0\xce\x01\x22\x55\x55\x28\x22\xfa\x69\xcc\x72\x06\xe1\xcc\xf1\xdc\x41\x38\x1b\x7b\x93\x41\x38\x73\x3d\x5b\xe0\x91\xdc\x93\xbd\x5d\x92\x85\x91\xb7\x53\x62\x02\x44\x49\x12\x8e\xc6\x77\x07\xf2\xaa\x36\xd6\xeb\x53\xba\xe0\xcc\xa9\xa0\x7b\x3c\x37\x84\x78\x33\xb5\x8f\x97\xc2\xd7\x38\xe9\x3b\x92\x5f\x64\x78\xb7\x07\x1b\x94\xfa\x64\x04\xc9\x23\x63\xb4\x27\xf3\x64\x9b\x77\xb6\x68\xd4\x49\xcd\x56\x79\x81\x99\xa5\x1f\xa1\x25\xd3\xd2\xeb\xa0\x99\x6c\x5b\xa2\x3d\x81\xfd\xf0\xbe\x86\xcc\xfb\x57\xc1\x50\xca\x2b\xd8\xc1\xa0\xbe\x29\x50\x6a\x90\xc2\x9d\xb4\x54\x37\x8d\x17\x37\x33\xab\x7e\x6e\xf5\x48\xf1\xed\x5d\x77\x4c\x8d\x3b\x5f\x39\xc3\x04\x85\x08\xef\xf7\xc4\x0c\x14\xee\xed\x4c\x86\xa5\xc9\x41\x4b\x7e\x45\x73\x4b\x9c\xd3\x8a\xd3\x30\x79\x25\x8f\x35\x78\x43\xe2\xda\x58\x65\xc5\x7b\x8e\x06\xf1\x7a\x9b\x34\x1c\xe5\xc9\x63\x3a\xc3\xe7\xa5\x3c\x88\x35\xf7\x19\x92\x12\x71\x2e\xcb\x48\x5c\x7c\x94\x75\x08\x03\x60\xb3\x5d\x6f\xb7\xdf\xe3\x29\x18\x56\x35\xe4\x04\x2b\x56\xc1\x0a\x3b\x0e\xb8\x05\x1f\x06\x8e\xcc\x8e\xc8\x44\x87\xf2\x94\xb8\x46\x31\x0e\x7f\xe8\xf7\xe6\x9b\x3e\x64\x6d\xdf\x9b\xb2\xae\x5c\x83\x41\x67\x32\x04\xa7\xe9\x3b\xad\x28\xa3\xf5\xc5\x2f\x9c\x5e\x94\x53\x2e\x3c\x98\xae\x55\x94\x8e\x9a\xe0\xa4\x7e\x81\x78\x12\xb9\x12\xb5\x1a\x99\xad\x5c\x68\x66\x29\x20\x77\x87\x7b\xe4\x18\xd6\x8b\xd3\xa2\xe4\xbb\x23\x5c\x25\x88\xdc\x33\x0b\xdc\xc0\xc1\xbd\x81\x40\xc3\xc6\x54\x50\x69\x61\x02\x32\xa7\xe4\x6a\x20\xe1\x10\xc4\x54\xeb\x19\xe8\x24\x2e\x10\x98\x38\x24\xce\xdb\xe0\xd2\xe9\x43\x63\x2a\xa4\xe1\xf0\x87\xd6\xfc\xcc\xb6\x5e\x22\xd9\x16\xd1\x01\x52\xca\xe3\x78\x40\x2d\x61\x7d\x20\x75\x8f\xf5\x26\x4d\xc5\x80\xd4\x2b\x9c\xef\xa5\xd9\xad\x85\x09\x68\x43\x80\x7e\xb3\xc1\xc0\xd1\xbe\x8d\x71\xf3\xa8\x48\x98\x6d\xab\x57\xc3\x55\xf7\xee\x70\xd4\x5e\x42\xba\xc4\x2e\x48\xbe\x47\x7c\xf2\x12\xd2\x44\xc6\x43\xbf\x90\x87\x93\x31\x3d\x06\xf9\x2d\x61\x1d\x82\xcd\xec\x50\xd2\xf1\x9a\xf3\xc1\xd1\x92\xb4\x44\x9f\x3f\xd3\x91\xc3\x71\xe9\xae\xb4\x6a\x55\xae\x7a\x1b\x32\x16\x61\x23\xc1\xac\x89\x4d\x84\x82\x5d\x3b\xcf\xd5\x05\x38\xb3\x5f\xb2\xf9\x7b\xe0\x4b\xb7\x02\x2b\x0e\xda\x34\x74\x1b\x76\xc0\x14\x71\x08\xe6\x1e\x82\xe7\xec\x33\xcb\x91\xe0\x95\x12\x16\x7e\x66\x2a\x19\xf6\x80\x03\xf5\x82\xd6\x99\x40\x40\x77\x8d\xfd\xa3\x24\xea\x48\xc9\x2b\xa5\x7c\xd1\x19\xc2\x0e\xb0\x38\xa6\xad\x7d\x1b\x0c\x28\xb4\xa0\x2c\xb9\x20\xab\x1f\x57\x55\xdc\x87\x20\x59\x7d\xc3\xef\xb3\x95\x93\x58\xca\xd6\x80\xa7\x99\x96\x98\x49\x5a\xcb\xf6\xdd\x3e\x3e\x89\x2c\x53\x62\x92\x1e\x28\x3e\x80\x1b\x26\xe9\x4a\x49\x2a\xb4\x9a\x83\x96\x19\xe0\x8e\x7b\xbb\xf9\xaa\x6d\x51\x38\x49\x9b\xf5\x1d\xad\x63\x2a\x6a\x0c\x23\xb9\x9e\x85\xec\x39\xfa\x24\xaa\xe6\xbc\x32\xc4\xff\x54\x09\x88\x1c\xc0\x50\xb3\x37\x42\x93\xbf\xd6\x92\xd6\x9b\xb0\xa4\x01\x75\xba\x8c\x14\x81\x67\xe9\x88\x77\xc8\x2b\xa7\xb9\xe9\x24\x20\x27\xa8\x31\x74\xb0\xef\x6f\x74\x55\xe7\xe8\xee\x17\x53\xc9\x9f\xe6\x0a\xb5\x05\x64\x8f\xd4\x0f\xb1\x06\xc1\x92\xf0\xf8\x4e\xdd\xac\xb1\xbe\x46\x68\x7f\x11\x88\x6f\xaa\x72\xc0\x59\x8e\x3c\xe2\x36\x6e\x8e\xd5\x26\x6e\x21\x35\x84\x56\x49\xc2\x44\xbf\x88\xba\x43\xf9\x1f\xcd\xb0\xbc\x23\x11\x99\x34\xd8\x5a\x7e\x29\x47\xc2\xdf\xd7\x3d\x28\x27\x32\x1c\x47\xb9\xef\x54\xf8\x7f\xd3\x5e\x03\xcf\x2c\xab\x9b\x0f\xab\x2a\x43\x3d\x57\x25\x1e\x4c\xb7\xe8\xf4\x46\x46\xbf\x12\x5d\x18\x7d\x12\xbf\xcd\x99\xd7\x1e\xdd\x80\xed\x6e\xb2\x53\xaa\xbc\xb0\x55\x12\x3d\xfc\xf4\xef\x6d\x51\xca\x9a\x22\xa0\x80\xc6\x49\xea\xc1\xa2\xe8\x6a\xf1\xb0\x9a\xf6\x8c\x77\xb6\xe4\x18\xed\xd4\x98\xa0\x1a\x90\xe7\x8c\xd0\x1f\x83\x23\xed\xe8\x99\xe0\x34\x21\x8a\x50\x58\x1e\x01\x8a\xd2\x43\x92\xa7\x5a\x7a\x8a\x4c\xcd\xd8\x7a\xf5\x95\x04\x35\xb0\xe0\x70\xf5\xe9\x1c\xdd\xcd\xf5\x5b\x78\xcc\x59\x0e\x83\xdf\x14\xaf\x97\xfa\x42\xe4\x7e\x28\x1c\xac\x07\x73\x21\x1f\x74\x55\x2f\xe4\x23\x04\xdf\x80\x82\xc1\x98\x09\xdb\xa0\xfb\x3a\x29\x91\xb4\x0f\xb1\x21\x40\x7c\xa8\xd1\x59\x27\xce\x8c\x1d\xe3\x7e\xa2\xaf\xe5\x8b\xfb\x57\x76\xe7\xc2\x95\xc0\xc1\xa4\xdf\xbd\xd4\x5a\x0b\x5a\x0a\x6b\x7a\x45\xeb\xdd\x57\x88\x8b\x5a\x98\x13\xb2\x9c\x29\x74\x75\x99\x50\xda\xa4\x19\x49\xfa\x70\xf2\x4a\xa2\xb7\x83\xd6\xed\x00\x4c\xde\xf4\x60\xe3\x96\x4a\x8b\x4d\x62\x02\xe1\xbe\x86\xc3\xc1\xe0\xfb\x43\xfd\x0a\x26\x2e\x77\xbb\x81\xc7\x0b\x9e\x9e\xa6\xbc\x60\x97\x30\xa0\xca\x1e\xfa\xa7\x68\x44\x44\x3a\xd0\x5d\x9a\xc6\x4b\xeb\xd0\x19\x0c\xde\x1d\x38\x17\x48\x21\x30\x75\x0e\x8a\xde\xb4\x14\x2e\x15\x43\xf0\x80\x88\x05\x1f\x97\x5a\x21\xd4\xce\xfc\x30\x20\x19\x36\xd1\x70\x1f\x2f\x65\x8c\xa3\x5c\x9c\xb0\x50\x1a\xcf\xac\x98\x72\x2e\x85\x57\x26\x4d\xc1\xc0\xd9\xc8\xa1\xe1\x98\x15\x83\xa2\x54\x09\x91\xc2\xf9\x93\xe8\x01\x26\xb1\xb8\x63\x8a\x69\x32\x55\x41\x1d\xfb\xb1\x69\x73\x6c\x86\xff\xcc\x06\x03\xab\xa0\x31\x89\xbb\xd4\xa0\x16\xa5\x85\x47\xd9\x72\xc9\x27\xf3\x88\xcb\xf2\x3d\x89\x85\x72\x4a\xa1\x94\x56\x8a\xb6\x62\x56\xa7\xb1\xa2\x81\x4a\x9a\xb6\x31\x12\x83\xdd\x01\x5f\xcf\x59\xda\x25\xec\x9a\x47\x17\x86\xae\x0a\x67\xab\xb3\xe5\xf2\x98\x79\x85\xb4\xa7\x68\xb3\xe7\x60\x1d\xa0\xd6\x6f\x6d\x6a\x69\x24\x92\x45\x69\xb5\x6f\x99\x04\x40\x8c\x4b\x96\x59\x7d\x5f\x32\x44\x23\x34\x34\x3e\x79\xf5\x27\x52\x1f\xd9\x93\xfa\x1e\x05\x20\x73\x0c\xd7\xe0\x0a\xc0\x44\xa5\xe5\xd2\xca\x48\x4a\x98\x9f\x05\x4d\x3c\x92\xdc\x6a\x2a\x05\x3e\x33\xea\x85\x42\x17\x2c\x02\xa8\x03\x8a\x80\x15\x14\xdc\xcd\xe4\x34\xf9\xa3\xd9\x31\xa9\x11\xd3\xd3\x73\x70\x32\xd3\x96\x7d\x8f\x57\xa8\x0e\x17\x98\x34\x64\x37\xeb\xfb\x41\xea\x8a\x75\x5a\x73\x4b\x43\x59\x1d\x57\xa6\xb3\x46\xf0\xec\xa5\xb5\x36\xc5\x0d\xe5\x83\x92\x9e\xfd\x3a\xf2\x7f\xf5\xfe\x72\xe5\x5f\x8d\x48\xf0\xe8\xc1\x19\x79\x2d\xd5\x21\xc5\x6e\x53\x54\x1c\x35\xac\x99\xf7\x53\x5a\xc6\x49\xf5\x22\x49\x30\x3e\x23\xbf\x97\xf4\xb8\x2e\x1a\xf9\xb9\xa4\x3b\x88\xcb\x9a\xb3\x14\x3c\xa7\x0a\x4d\xd9\x82\x3f\xa7\xec\x0e\x1c\xae\xf1\x5a\xbd\xbe\xbd\x6f\x79\xd5\x80\x68\xea\x1d\x2e\x07\x44\xd0\x4c\x29\xa0\xe8\xeb\x01\xc3\x06\xbc\xf6\x69\xd2\xf0\x21\xb0\xd9\x16\xd7\x1f\xcb\x70\x71\x23\x15\x58\xe5\xb9\xbd\x01\x7d\xa1\x7f\x65\x4f\xe3\xe7\xe5\xb4\x14\xb6\x95\x0d\x79\xc6\x2f\x03\x31\x19\xda\x7c\x79\x2f\xfd\xc3\x9a\xa5\xd4\x8d\x11\x23\x50\xa0\x56\x98\x17\xb3\x63\xf4\x23\x7e\x0e\x46\x34\x22\xdc\x0a\x04\x57\x01\x2f\xa3\x72\x05\x88\xdc\xea\x6d\xd6\x78\x1b\x82\xd9\xb6\xc7\x48\x7a\x18\xac\x44\x81\x69\x01\x67\x06\x60\xf7\x5e\x3b\x7e\x9a\x36\xce\x35\x8f\x42\x20\xef\x86\x80\xb8\x02\xf3\xcb\xc0\x84\xc0\x9e\xa4\xdd\xa1\x1e\x5b\xa3\xdd\xc8\xe5\x01\xf7\xd7\x82\x85\x3f\x38\x80\xff\xba\xb2\x0e\x2f\x1b\x77\x85\x68\xe9\xf7\x65\xce\x2e\x37\x13\xbf\x2b\xdb\x27\x3c\x03\x0c\xf0\x74\x75\x12\x38\x7b\xb2\x48\xb2\x82\x15\xf7\x18\x9f\x82\x3f\x01\xc3\x46\x9e\xc8\xeb\xc7\xba\xee\xda\xc5\x45\x8d\x87\x33\x31\x17\xe2\xb6\x73\x24\x15\x8f\xb1\xc7\x71\x26\x9f\xe6\xc3\x21\x5c\x91\xca\xc5\x9b\x07\xd3\x74\x30\x48\x39\xff\x34\x4d\xa9\x69\x54\x0b\xb6\xbe\xfa\xe2\xea\x99\xc3\x69\x53\x38\x0b\xe5\x75\x65\x0a\xd1\x68\xda\x9e\x2a\x94\x3d\x13\x2c\x4d\x56\x7c\x94\xf8\x63\xa5\x84\x61\x8c\x77\x5c\x10\x57\xe1\xf2\x44\x88\xa2\x6e\xf8\x1b\xe1\x78\x6b\x84\xcd\xb0\x97\x41\x9c\xc5\x88\xdd\x75\x87\xcb\xe9\x88\xe2\x64\x06\xe8\x91\x9e\xa9\x60\x32\xe0\xf4\x54\xc7\xd6\x19\xfd\xfb\xb7\x2d\xcb\xbf\xcc\x98\x6f\x07\x9e\xc4\x62\x4f\xe6\x17\x87\xd4\xbe\x1d\x18\xa0\x99\x49\x7c\xce\x0b\xbe\x19\x73\x82\xf2\x22\x49\x2c\x35\xaf\xde\xa9\x73\xa0\x87\xad\x29\x66\x67\x1f\x21\x43\x53\xa5\x49\x47\xa5\x07\xf7\x8d\x3e\x0b\x3c\x26\xad\xf4\xd7\x2c\x5f\x09\xda\x0f\x36\x7e\xd8\x58\xf2\x07\x84\x47\xc1\x2e\xc7\xc2\xcd\xcd\x37\xa1\x19\xbe\xa7\x85\xff\x7c\xcf\x57\xae\x01\xe4\x35\x29\xfb\x2c\x74\xf6\xbc\xd6\xbb\xbe\x85\xc4\xd8\xb4\x81\xd8\x75\x44\xd8\xbc\xd7\xfe\xc2\x71\xfa\x66\x94\xd8\x59\x29\xad\x86\xe4\x0e\x70\xe4\xc4\x3f\x8a\xc1\x28\xb1\xae\x11\x61\x5d\x04\x36\x8b\x7b\x2c\xc4\x0e\xcb\x82\x1f\xcb\xb4\x1d\x29\x53\x05\xdd\xe0\x99\xcd\x88\xe3\xe0\xe9\x88\x7d\x3e\x9a\xb7\x1d\x58\x5d\xd6\xfd\x22\x49\xee\x1f\x4c\x47\x1b\x7f\x58\xe6\x48\x5b\x5f\x09\x02\xb3\x45\x80\x01\xaf\xee\x6b\xc1\xd7\x0e\x1f\xcf\xcb\x17\xe2\xe5\xd8\xac\xc9\xcf\x96\xc5\x1a\x62\xe9\x6e\x8f\x0d\x27\xb0\x84\xe1\x3d\xd1\x3b\xf8\xfd\x15\x99\x51\xfa\x78\x29\xb5\xd7\xff\xd1\x35\x11\x41\x31\xd8\xd3\x20\x30\x38\x11\xa5\xea\x9b\x52\x9d\x24\x94\xbd\xf4\x9d\xa9\xa7\x97\x9e\x1f\x10\x66\x44\x7f\xc7\xfb\x8e\x73\xd1\x25\x44\x68\x31\xd5\x55\x8d\x5b\xa1\x75\xb8\x51\x5e\x83\xf4\xda\x45\x00\x79\xa1\x6e\x22\xb4\x2f\x4e\xcf\x25\x7f\x88\x85\x6b\x8d\x16\xdd\xc8\x95\xbb\x4d\xb9\x14\xe1\xf8\x93\x18\x7b\xc5\x73\x4e\xb0\x7f\x16\x51\xec\x44\x4e\x49\x0c\x78\xbe\xd7\x7a\x03\x81\x6a\xe2\x11\xe7\xc2\x73\x08\x63\x2e\x2b\x31\xf8\x86\xb6\x9b\xca\x8e\x7b\xfa\xfa\x2e\xa7\x34\xf9\xc1\xc1\xc0\x62\x14\x79\x69\x56\x5a\xe0\xf7\x05\x23\xe1\x97\xb4\xd4\x6a\x28\x0e\x84\xb6\x30\xfd\xd4\x76\x6e\x20\x39\x61\x78\xe6\xe7\x81\xe7\x07\x5e\x2b\x8f\x05\xca\xc3\xab\x9c\x6d\x1a\x91\x8a\xea\x90\x99\x0d\x8b\xfb\x3d\xa7\x84\x51\x7c\xe8\x46\x41\xed\xba\x32\x7c\x28\xf3\xd3\x60\x9a\x09\x67\xb1\x99\xa9\xbe\x91\x8b\x6b\x62\xa7\x91\x0e\x46\xdf\x56\x86\x47\x71\xc1\x69\xed\x14\x83\x18\x67\x14\xd3\x41\x44\x49\xd6\xd0\x24\x89\xf5\xb2\x39\xc6\x04\x50\x3f\xe8\x88\x87\xdc\x1c\xd4\x60\xc0\xfa\xd2\xeb\x25\x34\x53\x87\xb8\x4f\x15\xbf\xfd\x53\x49\x51\x38\x9f\xe7\x55\x98\x97\xf1\x22\x61\x55\x58\xc4\x11\xab\xc2\x6d\x14\x67\xd5\x3c\x8a\xab\x45\x98\x7e\x0e\x8b\x2a\x0a\xcb\x10\xfe\x25\x71\x51\x56\x11\x2b\xc3\x38\x29\xaa\x65\xbc\x5a\x84\xe0\x03\x83\x3f\x6e\x73\x56\x2d\xb3\xac\x64\x79\x25\x82\x24\x57\xd7\xe0\x7c\xa3\x5a\x87\xf9\x4d\xb5\x66\xfc\x43\x1a\x7e\xae\xb2\x6d\xb9\xd9\x96\x95\x72\xd5\x58\x15\x0c\x06\x58\x15\xdb\xf5\x3a\xcc\xbf\x54\x65\xbc\x66\xd5\xe7\x38\x62\x19\x22\xff\x28\xe9\x59\xef\xdf\x7f\xe7\xdb\xf0\x55\x34\xa4\xc8\x9a\xc1\x56\x50\x5d\x45\x43\x8c\xce\x56\xe4\x17\x11\x7e\x48\xe9\x17\x3f\xb3\x66\x1e\x1a\xfe\x54\x0e\x11\xf6\xaf\xae\x8a\xb3\xe7\x01\x22\x28\x46\x98\xfc\x95\xcb\x10\x57\xc5\xf0\x8c\x7c\x5f\xd2\xb3\x67\xd6\xac\x2f\xbc\xf6\xe5\xd5\x22\x4b\x2a\x70\xb6\x5c\x5d\xe7\x55\xbc\x5e\x55\xc2\x86\x2b\x89\x53\xe8\x73\x58\x6d\xc2\x3c\x5c\x63\xcb\xf2\xaf\x6e\xbd\x60\x88\xfd\x5f\x9f\x07\x8f\xf0\xd5\xd9\xf3\xb3\x55\x4c\xfe\x0e\x95\xc9\x2f\x67\xe4\x6f\xfc\x15\x82\xc3\x9c\xc5\xe4\x5f\xfc\xa5\x1a\xfc\x65\x76\x75\x3b\x9c\x9e\x11\x96\x42\xbb\x5e\xb1\xc8\xe3\x4d\x59\x09\xc3\x49\xde\x0a\x3e\x8b\x49\x99\x1a\x8e\x01\xe7\xd9\x5d\x05\x67\x5a\x60\x38\x96\xa6\xf4\x4c\x1e\x9c\x5e\x15\x8f\xac\x99\xe7\xff\x4a\x83\x8a\x5e\x15\x8f\x94\x55\xdc\x88\xd7\x90\xf3\x1a\x1e\x54\x57\x67\xd6\xcc\xfb\x77\xf8\x39\xac\xd8\x62\x1d\x62\xd1\xd8\x59\x4c\x32\xfe\xb9\xcc\xb7\xec\xea\xcc\x1a\x3d\xc2\x67\x24\x4c\x01\x20\x8f\x9e\xf5\xad\x99\x77\xe5\xbf\xfc\xf6\xc5\xe5\x8b\x2b\xbf\x3a\x3d\xc5\x15\x4f\x08\xae\x02\xfe\xfc\xfc\xaa\x78\xf4\xe0\x6c\x45\x8a\x94\x2a\x2f\x36\xbe\x43\xd0\x33\x21\x01\xf4\xd6\xdb\xa4\x8c\x37\x09\xa3\x0f\xd5\xd3\xc3\xe7\x88\xa0\x67\x67\xe2\xfb\x73\x14\x90\x84\xad\x58\x1a\x89\x52\xcb\x98\x25\x51\xc1\x4a\x91\xa7\x7e\x0b\x08\x9f\x0c\x91\x67\x1d\x6e\xc4\x67\x78\x08\x08\x40\x5f\x7c\x12\x72\xb7\xf8\xaa\x9e\xb9\x28\xc4\x42\x59\xbf\x8a\x34\x80\x74\xd0\x81\x80\x94\xb9\xe7\xbb\xa4\x8e\x54\xc0\x27\x47\x66\x81\x47\x23\xeb\x22\x4b\x3a\xf2\xea\x8c\x8b\x2c\x01\x74\x16\xa5\xf5\x9b\xd9\x56\xe4\xf9\xe3\x83\xf2\x65\x2e\xdb\xcb\x9f\x77\x34\xaa\xb5\x18\x4c\xa3\x5e\x33\x9a\xd0\xcc\xb7\x09\x42\x04\xa1\x00\x06\xf9\xf3\x33\xe1\x22\x1d\x49\x5f\xe9\xc1\x9e\x6c\x53\x1a\x59\xdf\x63\x92\xa4\x74\x9b\x7e\x8d\x4b\xfb\x69\x91\x8e\x94\x67\x1c\x2a\x9e\xe3\x2c\x25\x45\x2a\xe3\x1e\xf1\x07\xbe\x90\xf9\x83\x1a\x27\x3c\x8b\xb5\x0e\xdf\x39\xd4\xa1\xc4\x35\xbc\x46\xad\x23\xbb\x83\x10\xe3\xdd\x4e\x1f\x3b\x1d\x39\x52\x5a\xce\x64\x7c\x57\xab\xe6\xb9\x65\x08\x76\x15\x90\xc2\xb2\x0e\x18\xf1\x03\x05\x79\x39\xfa\x4b\x76\x07\x4c\x05\xb0\xa5\x42\x4d\x82\x1d\xb8\x98\xe4\x8c\x30\x54\x7c\x44\x55\x66\x14\x65\xeb\xb7\x61\x1a\x6f\x3a\x23\x80\x82\x1e\xcf\x81\x2f\xaf\xaa\x72\x3a\xd2\x9e\xb6\x93\x14\x33\x7c\xad\x74\x65\xa7\x65\x63\x16\x99\xf0\xe9\xba\xc9\xd9\xff\x77\xfa\x17\xa7\x05\xcb\xcb\x6f\xe0\x82\x83\xef\x4c\x0d\x9e\x8b\xf7\x56\xdc\x7d\xfc\x37\x3b\x7b\x70\x4d\xd7\x4a\x38\x68\x5e\x9d\x4d\x85\xcb\xf2\xa8\xb2\xd3\xff\x46\xa3\x8d\xcd\x77\x8f\x3b\x4d\xf4\x9a\x92\xbb\xe4\x65\xa4\xb2\x66\x8d\xde\x24\xa6\xf6\x54\xa8\xee\x81\x2b\xad\x38\xc0\x10\x29\x4f\xf2\x14\xa9\x31\x41\x0b\x11\x44\x27\x05\x73\x84\x3b\x70\xcb\x9d\x36\x3a\x6e\x09\x55\x10\x7d\x60\x92\x36\x97\x06\x49\xf1\x60\xf0\x85\x97\x24\x48\x6c\x10\xa8\x55\x45\x2b\x1c\x42\xf3\x04\xf3\x30\xb2\xac\x1a\x1f\x23\x65\x3d\x08\xa1\x1c\xe1\x97\x01\x86\x33\x1c\xc8\xd4\x66\x4f\x5a\x23\x61\x70\xa8\x32\x35\x19\xf8\x29\x6e\x76\xa6\xc1\xdc\x4f\xb5\x07\xae\x03\xe7\x41\x2a\x3a\x9d\xd0\xdc\x12\x99\xe4\x4a\xa7\x76\xcb\xb9\x28\x44\x2e\x3a\xe6\xc5\x59\x49\xbe\x7d\x07\xfc\x36\x8b\xd7\x72\xc6\x3c\xe9\xda\x93\x33\xed\x9d\x17\x44\x50\xab\x3a\x8b\x2d\xc5\xc5\x57\xb9\x3e\x26\xba\x1d\x23\x8a\x8d\xf3\x54\xb0\x59\x3a\x38\xfc\xa9\x3d\xff\x1b\x9c\x6d\x8d\x2f\xb3\xb4\x0e\xb3\xa1\xfd\xd7\xfd\x43\xf8\xaf\x03\x2d\xfa\x7e\xc7\x91\x65\x55\xb1\xb4\x3e\x4a\xea\x1f\xdb\x9b\x06\x83\x5f\xca\xee\x6c\x07\xe1\xf6\x06\x83\xbf\x1a\x59\x8b\xd4\xb7\xfe\x2e\x8d\x46\x99\x30\x2d\xe5\x3b\x1c\xf6\x9d\xa0\xe5\x99\x00\xe3\x9d\x50\xb0\x13\x1d\xff\xbe\x24\xe8\xd9\x03\xe7\xf9\xb3\xb3\x07\xee\x73\x84\xc1\x88\x06\x34\xfb\xd5\x19\x96\x3e\xbf\x02\x60\x1d\xb8\x4c\x6d\xaf\x1d\xc0\x38\x62\x80\x88\x32\x3c\x4d\xa9\x2d\x55\x2c\x33\xbc\xdb\xef\x53\x49\x0a\x5a\x1b\x10\xbb\x77\x33\x91\x1d\x6e\x06\x32\x56\x6a\x43\xa6\xb0\x77\x88\x0f\x7e\x83\xa7\x27\xa6\x5c\x1c\xec\x31\xac\xb1\xaf\x25\x6b\xb5\x0f\x15\xbf\x1c\x0e\x03\x12\xcb\x87\x69\xcc\x45\x96\xc1\x20\x37\xea\x16\xe1\xb3\x2d\x79\xe2\x6b\x12\x36\xd2\xf2\x73\x6b\x81\x22\xa1\x49\x0d\xb9\xa8\x84\xf7\xa4\x6f\x63\x62\xba\x76\x57\xd9\xf7\x44\x28\xe5\x1d\x3d\x63\xd2\x46\xa2\x70\x79\xa8\x46\x74\x20\x4a\x32\x9a\x2b\x33\x2d\x2e\x6d\x0b\x11\xa6\x11\x9c\x93\xda\x64\xd1\x38\x19\x5d\x8a\x33\xfa\x0d\x5d\x9c\x3a\x24\xa2\xcc\xb7\x03\x72\xdd\xf2\xd1\x19\x81\xf5\xd8\x75\x55\xf5\x2d\xe7\x39\x5d\x74\x9c\x9d\x0a\xcf\x2a\x0d\xa7\x12\x10\xc2\x0c\x0f\x06\xa9\x5c\x28\xd1\x7d\xbe\x82\xb5\x98\xbf\x1c\xb1\xdf\xac\x1c\x4f\x41\x57\xdd\xb7\x03\x1a\x19\x56\x32\x70\xdd\x54\xae\x13\x90\xb6\xe3\x7a\x62\xa5\x23\x22\xe8\xe5\x02\xc2\x97\x2f\xca\xd1\x7c\x1b\x27\x91\x0e\x74\x27\xb6\x92\x03\x2e\x88\xf4\x1d\xd2\x97\xf8\x8b\x49\x4e\xb7\xe6\x99\x8a\x88\x04\x52\x9f\x58\xd4\x66\xc2\x5b\x9a\x63\x3e\xa3\xb0\xb4\x42\x85\xae\x77\xd6\xb6\xde\x30\xc8\x8a\xcb\xac\xa1\xa2\x41\x8b\xe7\xc9\x34\x01\xb3\x97\x2d\x49\xfa\x94\x6e\x74\xd4\x0f\x20\x83\x31\xe9\xdb\x80\x1d\xc2\x67\x80\x38\x30\x09\xc9\x9d\x15\x1b\x5b\x10\x84\xa3\x54\xc0\xf0\x93\x80\xc4\x24\x91\x4e\x40\x85\xe1\x57\xe8\xab\xf6\x4e\x9d\xf6\x40\x65\x1f\x43\xb2\xc6\x1c\x0b\xa6\x99\xee\x50\xc8\xab\xca\x53\x65\x71\x25\x35\x5b\x50\x43\xaf\x22\x26\x48\xd8\xdc\xbf\xfa\x1c\x26\x08\x37\xb7\xcf\x82\xc4\x70\x1c\x32\x2a\xf2\x05\xdf\xbd\x3f\xb1\xcf\x61\xf2\x53\x9e\x88\x14\x38\xa0\xad\x0b\x5b\xbc\x09\x70\x6b\x23\x7e\x5f\x8a\x53\x23\xfe\xaa\x69\x8c\x30\x86\x57\x24\x2d\x04\x1f\x7b\x18\x4f\xb7\x32\xe0\x50\x63\x77\x32\x8f\x51\x05\xe1\xb9\xcc\x3c\x24\x9e\x90\xe2\x09\x79\x92\x7c\x44\xc4\x5c\x98\x9e\xd4\x41\x51\xa9\x2f\x80\x3f\x42\xc0\x26\x21\x45\xa3\x5e\x24\x89\x87\x0c\x7a\xd5\xa5\xd0\xd7\x3a\xb8\x62\x87\xd7\x11\x70\x3c\x02\x87\xe8\x46\xdc\xe3\x53\x67\x1a\x3e\xa7\x8a\x32\xe7\x94\xd2\xd0\x20\x0f\x02\x37\x38\x5a\x2c\x4a\xb0\x86\xc2\x7e\x19\x58\x29\x26\x71\xa9\x2d\x70\x53\x71\x9a\x7d\xec\x2c\xfb\xe0\x10\xea\x70\x33\x3f\x30\x2d\x23\xb0\x7e\xf4\xf4\xb6\x9c\x70\x11\xe1\x16\xa1\xb5\xe5\x89\x58\xa5\x32\x70\x8a\xe1\xee\xb2\xaf\x36\x40\xf4\x0c\x0d\x6b\x77\x76\x43\xf4\x1c\xe1\x59\x46\x59\x33\x2c\xa2\x67\x25\x8d\xad\xc6\x08\x62\x9a\xa4\x0d\x3e\x27\xa3\x49\x6a\xb2\x3a\x98\xf4\xcd\x2e\x99\x81\x23\x01\x59\x5b\x1f\x64\x70\x4b\xc1\x3b\x36\x82\x1e\x35\x13\xda\x03\x12\x66\x72\x39\xbd\xb3\x32\x4c\x0a\x7a\x27\x66\x53\xf3\x74\x31\x2d\xfc\x30\xc0\xd3\xe1\x30\xc4\xb9\x1f\x06\x83\xc1\xdc\x8a\x49\x0e\x69\xf1\xd2\x2a\xe1\x6e\x48\x2e\xd6\xa2\xaa\xa0\x38\x68\x5c\x40\x7d\x1d\x15\x85\xc3\x21\xfe\xac\xab\x00\x15\x88\xcf\x60\xc3\xa4\xdd\x7b\xf1\xae\x18\x54\x47\xdd\xb4\x3e\xb7\x39\x0b\x9b\x93\xfe\x76\x30\xb8\x03\x86\x4f\x33\xb2\x39\x2d\x54\x94\xae\x6c\x4f\x1a\x64\xb2\x43\x4d\x41\x9f\xef\xb5\x02\x3c\x33\xb5\x81\x6c\x68\x64\x95\x98\x5c\x73\x04\x5f\x51\x7b\xba\x7c\xbe\x9a\xae\xc4\xa5\x64\x46\x99\xbf\x0a\x48\x56\x55\x36\xa5\x34\xc3\x0d\xe5\x00\xf0\x65\xff\x65\xc3\xac\x0c\x63\x4d\xf2\xae\x49\x66\xdc\xde\x64\x81\x97\x61\xad\xf8\xf1\x2f\xed\x33\x45\x19\xba\x16\x55\xb5\x69\x48\x82\xe5\x91\x10\x75\x5b\xaa\xb9\xa9\xec\x3e\x6e\x8a\x2c\x68\x91\xfa\xdb\x80\x33\x60\xda\xee\x99\x14\x06\x4a\x2e\x7c\x27\x18\x66\xc7\xd8\xad\xe1\xc2\x77\x39\x13\xb1\x80\x80\x53\xa7\xa7\x53\x5c\xd0\xa2\x0e\x86\x3a\x6d\x79\xfa\xbc\x87\x09\xcc\xf0\x60\x70\x2d\x7d\xee\xb6\xc5\xf4\xbf\xea\xa1\xf8\x76\xc0\x31\xdf\xa8\x12\x0e\x28\xb0\xb0\xb8\x44\xc2\xcd\x55\x9f\xd2\x6d\x55\xfd\x4d\x57\x3c\xd3\x07\x41\x7d\x0a\xe3\x69\x7c\xb4\xbd\xc2\x2b\xcc\x5d\x30\xa6\xc2\xa0\xa8\xbd\x0d\x8a\xf1\x99\x62\x45\x42\xcd\x6c\x7e\x1c\x10\x15\x08\x7a\x30\xe8\x27\x5d\x1b\x69\xd6\x58\xd3\x89\x8c\xe2\x5a\x23\x43\x61\xde\x17\x90\xc2\xdc\x30\x28\x42\xd3\xa2\x21\x08\x15\x8d\xca\x8a\x86\x20\x54\xd0\x4d\x3d\x0d\xc2\x17\xc7\x31\xe8\x66\x52\x59\xa0\x18\x0c\x36\xcd\x1a\x1b\xba\x69\x8d\x20\xb9\x40\x26\xe0\x28\xfd\xce\xba\xd6\xaa\xc3\xe4\x16\xc3\x8a\xc8\xe8\xb5\xbf\x12\xde\xeb\x97\x16\x84\x97\x3a\x75\x04\xfe\xab\x9b\xd4\x8c\x33\x13\x83\x81\x60\x25\x34\xe1\xcd\x5a\x84\x57\x92\x9c\x26\xca\x67\xd8\x58\xfd\x21\x5f\xf4\x05\x26\xa9\xa0\x53\x31\x34\x5e\x28\x27\xb9\x72\x8b\xcf\xcc\x2d\x3e\x55\x07\xec\x3a\x18\xbc\xa0\x0c\x1b\x11\x23\x27\xed\x88\x27\xd7\x70\xf2\xac\xa3\x4a\xd4\x66\x11\x72\xfb\x08\x17\xd7\x8c\x24\x66\x50\x96\x46\xc8\xe5\x0e\xdb\xf8\x5a\xbc\x67\x9a\xf8\x71\x88\x95\x00\x5e\xc3\xc5\x00\x38\x4f\xb4\x62\x9a\xfa\x05\xdf\x54\xe3\xc1\x60\x0b\xf1\xd1\x76\x9c\xe6\x28\x47\x3d\x40\xa8\x7b\x71\xda\xd3\x29\x0b\x3f\x0f\x66\x6d\x65\x20\x70\xd6\xdc\x72\xe3\xc2\x47\xa6\x54\xdf\xf1\x74\x0b\xb1\xf8\x95\xca\x34\x7f\x23\xc9\x4c\xbe\xf1\x1e\x78\x4a\x2f\xa9\xed\x04\xb8\x4f\xe9\x2f\xb3\x83\x54\xab\xc0\x5e\xaa\x5c\x1f\x90\xb2\x54\x26\xc9\x78\xbf\x27\x8a\x73\x3a\x26\x04\xff\x3b\xbc\xb3\x76\xdb\x3c\xe1\xa2\x36\xd8\x99\x7d\xff\xea\x12\x81\x73\x2a\x61\x76\x26\x11\x81\x84\xc5\x97\x74\xe1\xf5\x1d\x22\x1d\x9c\xf5\x1d\x82\xca\xeb\x3c\xbb\x2d\x10\xc4\x40\x3e\x54\x21\xbc\xcd\xc3\x4d\xfb\xe2\xf4\xbf\x1f\xee\x43\xd6\xd6\x0c\xf5\xa1\x5c\xd6\x4b\x46\xbc\xf6\x99\x7b\x8c\x39\xc7\x5c\x16\x50\xa1\xa5\x39\x7b\x30\x3d\x54\x29\x18\x0c\x5a\x67\x6d\xaa\x76\x52\xb6\x8f\x1e\xf4\x29\x8c\x30\x71\x37\x4f\x4a\x94\x7f\xe9\x8e\x60\xf7\x53\xcc\x1a\x1f\xb4\x2d\xf3\x5e\x0b\xba\xe2\x74\xad\x71\x64\xc2\x01\xf0\x9a\x6f\x1a\xf7\x07\x08\x3a\x1e\x73\xa3\x0d\x4d\xa8\xec\x00\x9e\x6d\xc9\xb9\xac\x83\x68\xa4\xb4\x54\x37\xb2\x85\x85\xa7\x4a\xb3\x68\x96\xd6\x93\x83\xbd\xd2\x90\xd5\xb1\xe8\x75\xb7\x57\xe3\x46\x2f\xa7\xc7\x91\x20\xed\x40\x82\xb2\x19\xac\x01\x7b\xa2\xb1\x6d\xda\x6c\xae\xa5\x54\x04\x33\x6c\xe1\x2e\xdd\xbb\x96\xd1\x80\xd8\x62\x38\x8d\xd0\x42\xb8\x66\xd5\xa5\x75\xa4\x71\xe9\x8c\x47\x7c\xbc\x3a\xa8\xd5\x22\x25\xcb\x94\x6c\x52\x12\xa5\xf4\x2c\x4c\x36\xd7\xe1\x95\xe5\xff\x8a\x83\x47\x57\xf8\x2c\x26\xd7\x29\x3d\xcb\x36\xe1\x22\x2e\xbf\x5c\x15\x8f\xe8\x55\xf1\x48\x7c\xc4\x67\x64\x05\x37\x52\x65\xb6\xa9\xf2\x78\x75\x5d\x56\xf3\xac\x2c\xb3\x75\x95\xb0\x65\x89\x1f\x9c\x91\x35\x7c\x4e\x39\x4f\x0c\x9b\xad\x35\xeb\x9f\x2e\x7c\x16\x06\x78\x34\xc4\x67\xe4\x0b\xff\x2c\x22\xd3\x9e\x91\xcf\x69\xe3\x8e\xee\x57\x0b\x0d\x97\xe5\x10\x61\x6b\xf4\x08\x3f\x90\xf7\x73\xf3\x63\x79\x66\xfd\xcd\x1d\xf6\xc3\xd3\xdf\xff\x4f\x30\x54\x99\xef\xda\x99\xfd\xe1\x69\x80\xa9\x2a\x23\x73\xdd\xa6\x74\xf7\xcd\xfb\x6f\x7f\xf1\x64\xbc\xd9\x3d\xb9\x4c\xe9\x4e\xc7\x40\x46\x2a\x08\x32\x22\x9f\xe3\x22\x9e\xc7\x49\x5c\x7e\xf1\xd0\x35\x84\x7d\x46\x44\x85\xbd\xd5\x85\x5f\xa6\x74\x97\xb0\xb2\x64\xb9\x74\xd5\xe9\xd9\x64\x99\xa5\xe5\x3f\x45\xb8\xed\x89\x6d\xef\xc9\xbb\x94\xfa\xe8\x32\xdb\x20\x82\x20\x20\x2f\x22\xe8\x1b\x80\x1b\x22\xe8\x0d\x5b\x96\x28\x20\x37\x3c\xcb\x3f\x21\xc4\x33\x22\xe8\x3d\x22\xe8\x6d\xf6\x3b\x22\x68\x5d\xa0\xa0\xa5\x7a\xb8\x28\xda\x1e\x32\xfe\xe8\xbc\xb0\xed\xf9\x7f\xb7\x27\x05\xb5\x75\x5c\x23\x1d\xd1\x51\xba\xac\x58\x42\x78\x92\xb8\x56\xcb\x8b\x9f\x17\x10\xd4\x33\xf4\x39\x05\x0f\x60\x9f\x2b\x0a\x5e\x2f\xdf\x89\xfa\x8e\xc1\x98\x87\x8a\x20\x08\xe7\xe4\x0b\xe9\x0a\x56\x85\x07\xa8\x4b\xe2\x3d\xe1\x69\x9d\x21\xbd\x8a\xeb\xec\xb6\x63\x85\xbc\x13\xe3\x82\xb3\xa0\xeb\x38\xea\xba\x45\x78\x27\xa9\x92\x0c\x2c\xd4\x41\x86\x0e\x43\x08\xb1\x99\x54\x60\xe2\xcd\x5a\xf2\x56\x89\xd7\x6f\xe1\xee\x48\x84\x2f\x45\x23\x33\xbd\xf2\x64\x41\xfd\x2e\x0a\x1f\xc4\xeb\x5c\x14\x85\x8e\xfc\x01\x8b\xab\xed\x4f\x5d\x7a\xc5\xd7\xda\x5f\x1b\x9e\x86\x64\x66\xed\x4c\x5d\xba\x05\x46\x0e\xf2\x52\xf0\x62\xbf\x28\x8a\x77\x10\xe9\xc5\xdb\x2d\xb2\x64\xbb\x4e\xc1\x29\x8a\xd7\xb7\xc9\x32\x4e\x92\xf7\xb2\xad\x7e\x03\x2f\xfb\x36\x49\xe2\x94\xfd\xa0\xdf\xb2\x3a\x9b\x88\x1f\x0e\x0f\x9b\xeb\x30\x05\x75\xd8\xdb\x38\xca\x6e\xe1\xe9\x77\xe1\x0a\x9e\x3f\x65\xd9\x1a\xcc\xd8\x17\x05\xd8\x35\x16\xde\x0e\x2d\x93\x2c\x2c\x91\x79\x6b\xb9\x28\x0a\x08\x59\x3d\x43\xea\x09\x79\x08\x90\x42\xbc\xec\x09\xbc\x1c\xa8\xf2\x0b\xc7\x21\xc2\x87\x3e\x6b\x79\x4e\x6b\xe8\x32\x08\x0c\x6b\xf8\x3a\x6c\xc6\x95\x4d\x31\x38\x88\x81\x6c\xe0\x0f\x4a\x22\x30\xf4\x19\xc4\x1e\xab\x99\x40\x2f\xad\x84\x6c\xc1\x77\x9a\xf8\x50\x47\xa8\x30\xdf\xb7\x81\x08\x46\xa1\xb8\x83\xa2\xf6\xae\x5f\x40\x08\x89\x42\xba\xd5\xef\x3b\x24\xd6\x31\x24\x12\x3f\x05\xe7\x70\xa1\x56\xcd\x31\xf4\x41\x69\x08\x05\xef\x52\x21\xea\x08\xf6\x38\xa7\x56\xc6\xe5\x2f\x07\x3f\xca\x7c\x37\x18\x1a\x61\xc0\x8d\xf5\xc4\x05\x69\x15\xf1\x07\x93\xbe\x32\x4b\xa8\xaa\x3a\x0c\x10\xaf\x3d\x2e\xde\x85\xef\x2c\x70\x27\xa8\x3e\xf4\x29\x0d\xd5\xc8\x04\x22\x09\xa0\xe4\x43\x8a\x36\x77\xa8\x69\x6c\x96\xb0\x30\x87\xb3\x84\x8f\xc2\xc5\x33\x92\xae\x0a\x6d\xb8\x8d\xd2\x8e\xe6\xe6\xe1\xe2\x66\x95\x67\xdb\x34\xe2\x7b\x94\xc5\x07\x4d\x51\x9c\x5e\xb3\x3c\xe6\x1c\x7b\x51\x07\x2d\x28\x60\x84\x85\x0e\x5a\x10\x63\x88\x7c\x8c\x31\x78\x3a\x80\x82\xb9\x3c\x76\x5f\xe0\x9d\xc4\xf7\x0e\x6c\xb9\x67\xfa\x6b\x1d\xe7\x3f\x9e\x78\x89\x27\x5f\x37\xfd\xad\x19\x0f\xeb\x19\xb7\xb9\x68\x43\x42\xe9\xd2\x27\x14\x4b\x39\x05\xa5\x2b\x94\x82\x63\x6e\x39\x1f\x29\xe7\xd5\x5f\xa6\x90\xe9\x65\x0a\x8e\xe9\x90\xf4\xe3\x9e\xcf\xac\x8c\x1a\x93\x1d\x4a\xb5\x7f\x5b\x1e\xcf\xbc\xdb\xae\x59\x1e\x73\x81\x78\x96\x55\x95\xed\x85\xd8\x0b\xf7\x9d\x01\xf6\x67\xd6\x32\xa5\x26\x93\x65\x7a\xf2\x6e\x06\x91\x2f\x45\x10\xf9\x3d\xd9\xa4\xdd\x4e\xde\xa5\x1f\xa6\xbc\xaa\xc4\x3e\xb1\xa5\xc5\xac\x10\xa6\xe8\xc2\x56\x0f\x0c\xa5\xad\x14\x57\x15\x87\x99\x57\x1a\x8b\xaf\x5e\x28\x16\x92\x02\xfa\xfd\x47\x6e\xe0\x15\xcf\xdc\x44\x30\xe7\x09\x84\x40\xb7\xc5\x83\xc1\x97\x54\x45\x39\x00\xc9\x28\x91\x31\xfc\x33\x9a\x8c\xd6\x71\x2a\x22\xbe\x87\xfc\x25\xbc\x13\x2f\x75\xba\x91\xaa\xca\xd1\x2d\x1f\x8d\xac\x43\xa5\xc5\x66\x99\x8c\x18\xa5\x42\x8c\xc9\x76\x8f\xbd\xef\xdb\x9e\x52\x94\xe3\x30\x80\xe8\x60\xd0\x00\xbe\xe9\xf0\xdc\xcc\xf6\x27\x01\x7e\x04\xb2\x62\xd1\x6f\x07\x83\x64\x30\xe0\x4b\x07\x0e\xed\x13\xc0\x2a\x13\x6c\xfd\x55\x1b\x6e\x9c\x81\x03\x03\xea\x7c\x9b\x0a\x47\x00\x7c\x11\x84\xe2\x10\x04\x3e\x02\x65\x82\x47\xda\xec\x39\xa4\x61\x22\xea\xa0\x88\x6f\x32\x1f\xe3\xdf\x99\xda\xa5\xd8\x1a\x79\x1c\xae\xc9\x68\x13\xdf\x31\x70\x06\x33\xe4\x64\x45\x15\x88\xcd\x9a\x39\x48\x01\xfd\xb7\x33\xe1\xe4\xde\xdb\x36\x9c\xa6\x4b\x97\xfa\x44\xfa\xd8\xef\xf0\x60\xaf\x97\xe7\xa1\x03\xfb\x86\x01\x52\x3a\xb3\x85\xbd\x29\x38\xe8\x81\x09\x1d\x0c\xd6\x12\x2c\x9a\xac\x22\xc9\xef\x21\x8c\x81\x97\xb9\x0d\x37\x16\x23\x97\x29\x39\x64\x3d\x3e\xc2\xe1\x61\x8e\xf7\xd8\x53\x8f\xda\x66\xf0\x78\x7c\x88\x7c\x30\x58\x9a\xc2\xc5\x8d\xf8\x3c\x7b\x25\xaa\x30\x49\xef\x3c\xbb\xfb\x18\xff\x1e\xa7\xab\xc1\x00\xcd\x61\x8f\x3e\x95\xa6\xb9\x75\x77\x75\x1e\x24\x36\x1d\x12\x63\xcf\x3e\xf0\xce\x2f\xf7\x7a\x4d\xfe\x84\x53\x7c\x99\x7a\x00\xb5\x9a\x5c\x5c\x4b\xf0\x58\x60\x78\x65\xe2\xc0\xac\x85\x12\x52\xe7\x53\xb9\xe9\x17\xaf\x22\xec\xdf\x6c\x64\x3b\x8f\x0c\xaa\x26\xd8\xf5\xd1\x03\x07\x0f\x11\xf2\x4a\xe0\x6b\x10\xea\xf2\xfd\xaf\x4c\xd7\x05\x81\xce\x5b\x68\x48\x64\x88\x3d\x45\x15\x4b\x3c\x43\x20\xd9\x58\x6a\x60\x68\xe8\xd8\xf6\x23\x10\x05\x3c\x84\x48\x46\xe1\xa6\x53\xf4\xad\xaa\x52\xfd\x84\xd0\x34\x1d\x71\xe6\x86\x3a\xc4\x2a\x9f\x53\x87\x27\xc1\x9e\x34\x18\x20\x75\x84\x9b\xc7\x6b\xab\x3e\x10\x8d\xc4\x65\xcd\x60\x70\x70\xee\x01\xf1\x38\xdb\x67\x21\x48\x34\x85\x24\xb2\x0b\x47\x48\xfd\xbc\x86\x93\xa5\x7a\x43\xa3\x54\x9f\x51\x36\x9a\x8b\xb1\x97\x81\xa1\x8d\xba\xea\x68\x49\x8b\x3a\xac\x12\x4b\x62\x2e\x89\xbd\x05\xa9\x0b\xc4\x8f\xd6\xbc\xaf\xeb\x2f\xf7\xcc\x7d\x69\xe0\xff\x4e\x4b\x41\x71\xca\xb9\xc8\x53\x25\x0c\x6d\x52\xe2\x33\x82\x8c\x1a\x51\x60\x98\x72\x35\x8e\x6c\x81\x1a\x7c\x90\x62\x97\xb0\x05\x49\x47\x1b\xf3\x5d\x05\x4a\x00\xc1\x29\x11\x72\xd2\x9f\x5b\xef\xc6\x6a\xb7\x24\x3b\x5d\xd6\x94\x30\x95\xa6\x36\xba\x55\x0b\xfb\x65\x00\xc4\xc9\x6b\x84\xd6\x50\x6c\xfc\x26\xaf\x5d\x9b\x8b\xe9\x29\xa4\x9d\xb5\x91\x32\x12\xa2\x62\x37\xc5\x37\xa8\xcd\x33\x6a\xf3\x55\x24\x52\x04\x1f\xfe\x8c\xda\x4d\x75\x09\x35\x79\x3f\x40\x95\xef\x21\x2b\xe7\x39\x52\x19\x9e\x4f\x71\x2b\x9a\x0b\x1e\xc9\x99\x51\x9c\x4a\x93\x84\xd5\xe1\x5f\x54\x5f\x41\xc4\xed\x74\xa0\xdf\xef\x1e\x16\x1c\x99\x18\xfe\x40\x60\xa6\xf9\x6a\xda\x88\xd0\x14\xfc\x51\x10\x27\x0f\xc1\x30\xbb\x6e\x0d\xf5\x9c\xb1\x21\x9f\x35\x71\x80\xea\x99\xa7\x29\xea\xd0\x4a\xdc\x21\xee\xf6\x10\x99\xb0\x23\xf0\x62\xed\x2f\xcd\xe3\x6c\xf5\x44\x6a\x7b\xc4\x3e\x1b\xbe\x4b\xfd\x3c\xe0\xf5\x67\xa0\xf5\x91\xf9\xf9\xa9\x0b\xbf\xb6\xa1\x4e\xbd\x27\x5f\x0c\x85\x16\xab\xdd\x37\xce\x94\xd2\x1b\x15\xcd\xe1\x55\x4a\xcf\xfe\x8f\x6b\x9f\xad\xc8\xc7\x94\x9e\x5d\xf9\x57\xc1\x83\x33\xf2\x82\x3f\xe6\xb3\xab\xf4\x6c\x45\xfe\x2d\xd5\x75\x85\xa3\x06\x15\xfb\x3b\x5e\x87\x2b\x56\xe5\xac\x60\x65\xb5\x8c\x13\x06\xea\xbb\xdf\xa6\xf7\x45\x0d\xbf\x61\x5f\x56\x2c\xc5\x67\x71\x4b\xf4\x2f\x94\x86\x4d\xb7\xf1\x39\x28\xc5\x5a\xd2\x16\x4f\xe6\x14\xc2\x3d\x9f\xfb\x66\xd2\xb1\x13\xa8\xd6\xe9\xa1\x56\x4c\x81\x20\x7f\xe2\xe4\x89\x09\x2e\xa7\xa8\xc3\x7b\x81\xf6\x9a\x61\x8d\x24\x04\xe7\x7d\x97\x19\xa3\xe1\x20\x87\xcf\x63\xe3\x50\x2d\x05\x2f\x0f\x7d\x2d\x47\xc7\x85\x85\xbc\x3a\xd2\xe3\x60\xf0\x6d\xda\x65\x3e\x3f\x18\xf4\xff\x9d\x1a\x06\x0a\xf2\xf0\x4b\x5e\x51\xf4\x4b\xfd\x0d\xef\x71\x73\x7c\xc6\xb6\xd2\x8c\xa5\xda\xe4\xa7\x52\x11\xf7\xb2\x71\x58\x32\x93\x9a\x05\x69\x87\xa6\xce\x8e\x0f\xc4\x2b\x61\x3c\x44\x04\x1e\xaa\x55\x95\x5e\xa4\x04\x5d\xe5\x57\x29\xf8\xf1\xf0\x3a\xb2\xa6\xdd\x59\xc5\x85\xb7\xdc\xc9\x61\xa6\x69\x93\xd4\xa9\x80\xfc\x70\xe3\xde\x1c\x62\xfb\x30\xb3\xc4\xb3\xd2\x52\xc6\xe9\xe5\x8c\xef\xbb\x24\xf6\x55\x68\xca\x80\x42\x18\x17\xf6\xd3\x8f\xaf\xb9\x6c\x90\xa5\xa0\x49\x82\x87\x88\xa2\x61\xc7\x97\x12\xef\x85\x54\x2d\x64\x1d\x10\xb2\xc2\x7f\x87\x77\x1f\x59\x59\xc6\xe9\x4a\x28\xe1\x99\x09\xa3\x32\x0f\x23\x20\xb8\xa1\x70\x82\xac\xa0\xca\xd7\xa0\xb2\xae\x53\x4e\x94\x3f\x24\x61\x9c\x4a\x57\xf0\x0c\xae\x4c\x81\xf2\x30\x93\x03\xcb\x2c\x8d\x3e\x42\xfb\x0e\x00\xc9\x97\xad\x76\x3f\x9f\x0b\x2b\xec\x6f\xad\x9c\x30\x3f\x0f\x48\x6a\x9c\x59\xc5\xd2\xe9\xf8\xc0\xd0\xbe\x78\x95\x12\x34\x44\xb8\x76\x7d\x84\xe6\xc9\x36\xef\x81\xaf\x85\x9e\x74\xc0\xd0\x53\x9e\x17\x7a\x49\x16\x46\xbd\x9c\x15\xf1\xef\xac\x27\xdc\x12\xf6\x84\x23\xb9\x1e\x78\x21\xe9\x45\xf3\x44\x3c\x80\x73\xa4\x28\xbb\x4d\xc5\xd3\x76\x23\x7e\x39\x77\xd0\xd3\xfe\x94\x7a\xca\x85\x52\xaf\x76\xb7\xd4\xab\x5d\x2c\xf5\x84\x3b\x89\x9e\x54\xb6\xaf\xbd\xfe\x40\xbd\xca\xfb\x0f\x7f\xd8\x6e\x7a\x2c\xcf\xb3\xbc\x67\x44\x93\x69\xfa\x98\xec\xd0\xe7\x28\x03\xda\xb9\x85\x1e\x9c\xd4\xd9\xe2\xd4\x8c\xa3\x93\x52\x78\x4b\x95\xeb\x31\x69\xce\x5d\x76\x5c\xb9\x5c\xf3\x21\xde\x63\x75\x5e\x8f\x99\x6f\xcd\xf5\xb0\xad\x12\x5c\x96\x83\x8b\xa8\xa3\xb1\xff\xb4\x57\x01\x71\xcb\x04\xc7\x8c\xdb\xf4\xa0\x48\xab\xc0\x72\xa9\x4b\xe0\xda\xa5\xe1\x1f\x3b\x2f\x28\x89\xe0\xe5\x79\x1b\x47\x4a\x35\xec\x8a\xda\x20\x9c\x19\xcd\xa3\x47\x8f\x90\x84\x1e\x4f\x28\x09\xab\x2a\x9e\x26\x42\xcd\xc1\xfe\xf3\x26\x25\x3f\xa4\xe4\xb7\x94\x6a\xf7\x6c\x9f\xf8\xe6\x33\x3b\x23\x6f\x53\x7a\xf6\x97\xd1\xa3\x07\x67\xe4\x7d\x4a\xcf\x2c\x7f\x36\x08\xf0\x27\xea\xff\x3a\x08\x1e\x9d\x91\xef\x60\xab\x19\x3d\x9a\x61\xcf\xef\x5d\x95\xc1\x23\xcb\xff\x95\x53\x95\xe0\x11\xbe\xca\x67\x0f\xce\x56\x6b\xf2\x8d\xdc\x8d\xc2\x79\xb6\x2d\xab\x70\xb3\xe1\x7f\xa7\x45\x99\xe5\x7c\xeb\x1a\x0d\x4f\x61\xf2\x0a\x61\xd0\x93\xc0\x66\x56\xdd\xc6\xd1\x8a\x95\xd8\x7b\x70\x46\x3e\xc8\xe2\xdf\xbf\xba\xac\x7e\x78\xf5\xe2\x5b\xfc\xe0\x8c\xfc\x08\x86\x24\x67\x57\x67\x67\xe4\x9f\xf0\xd9\xbf\xba\x1d\x0d\x4f\x83\xa1\x07\x61\x89\xce\xae\xce\x78\x37\xce\x66\x7f\xf1\x44\xa0\x22\xcf\xba\x8a\x86\xb8\xc2\x15\x3e\x23\x0f\x60\x88\xcb\x74\xc4\x97\x10\x79\x9d\x72\x06\xe0\x77\xf8\xff\x73\x4a\xd1\xa3\x33\xa4\xfc\xf4\xa2\x47\x52\xd7\xf3\x87\x94\xfe\x15\x82\x9e\xc9\x93\xa2\x9f\x52\xcc\xd3\x0e\x0c\x1d\x42\x84\xc9\x0f\x29\xe4\xa4\x08\x91\x1f\x52\x2a\xdf\xf6\x6f\x52\xfa\x4f\x79\xea\xf6\x43\x2b\xd4\xa0\x08\x5d\x52\xf7\xe8\x40\x4c\xef\x34\xef\x1f\x0c\x1e\xa4\xea\x64\xf0\x41\xda\xed\x7a\x63\x6a\x0a\xf8\xf0\x6d\x4b\x99\x19\x6f\x5f\xd3\xa8\xad\x88\xf8\x10\x6b\x7b\xbf\x2d\x61\xda\xcb\x33\xd3\xa9\x36\x9c\x5b\x35\x89\x7d\x8a\x67\xda\x6f\x84\x97\x0e\x06\x5d\x41\x1d\xac\x90\xa2\x0f\xef\x3f\x5e\x22\x4c\x0a\x43\x95\xa6\xeb\xf2\x35\x34\x2e\x5e\xaf\xcb\x75\x22\x2e\x62\xbd\x74\x8f\x47\x51\x96\x32\xcb\xdc\x0e\xb3\x1a\xe5\x49\x21\x74\x18\x63\xce\x73\x23\x61\xad\xa2\xaf\x12\xc5\x8e\x56\xb0\x1f\x2e\xdf\xbe\xe1\x54\x5e\xf8\x28\x88\xc5\x9d\xd9\x68\x91\xad\x37\x09\x2b\x99\xc5\x85\xe5\xc6\x2a\x96\x67\xf3\x39\xc9\xaa\xca\x07\x77\x9b\x9b\x2c\x2d\x40\xa9\x81\x94\x84\x05\x9c\x57\x95\xca\xdc\x5a\x9c\x80\x9d\xa8\x0c\xf3\x12\x11\xf9\x0c\xf2\x05\x7f\x7c\x29\x1b\x92\xaf\xaf\x38\xed\x54\xb9\xb6\x70\xb3\xa2\xde\x58\x1a\x75\x09\x23\x6d\xf2\xd9\x45\x31\xda\xb7\x02\xe0\x07\x8a\x79\x36\x49\xc2\xa2\x7c\x9b\x45\x10\xb0\xd0\xdb\xed\x09\x2b\xc3\x15\xc4\xe8\x32\xb6\x4e\x0f\x66\xe2\x87\xd4\xbc\x07\x8f\x8b\x37\xd9\x22\x4c\xbc\x6f\x24\x9f\xf3\x26\xf5\x9d\x00\xeb\x3b\x70\x9b\x6c\xf2\x8c\xf7\x1d\x74\x1a\xfa\xb6\xba\x25\xd7\xee\x2e\xc4\x54\x72\xfc\x8c\x17\xe0\xf2\xef\xec\xee\xf4\xf6\xf6\xf6\x74\x99\xe5\xeb\xd3\x6d\x9e\x88\x2d\x3f\x9a\x82\x47\x66\xce\x10\xff\x74\xf9\xdd\xe9\x13\x44\x84\x66\x42\xe1\xed\xd0\x23\xe4\xfd\x9c\x12\xb0\xed\x41\xfc\xff\xd9\x86\x6f\xda\x48\x28\xb6\x8b\x14\x81\x29\x77\xfc\xbd\xd1\xd2\x3a\x21\x3d\xc8\x70\xc7\xbf\xff\xbb\x80\x1b\x38\x23\x03\x4f\x91\x39\xfe\x1d\x7e\x0e\xe5\x4d\xbf\x61\xbe\xbb\xe3\x75\xf2\xd2\x67\xa2\x39\x68\xe9\x4c\xd4\x04\xa5\xcf\xf6\x44\xe1\xc5\x77\x60\x5a\x26\x8a\x20\x95\xf8\xf3\xdb\x37\x48\xf6\xdd\xc4\x1f\xd5\x19\x95\xf6\xd7\x8f\xef\xdf\x89\x76\x3f\xb3\x9c\x0b\x44\x7c\xdc\xd0\x31\xe4\x7d\x84\xb5\x4f\x60\xa4\x3d\x18\x29\x07\xaf\x78\xe5\xb5\xc0\x7d\x08\x20\x38\xaf\x45\x7e\xe0\x03\xd6\xe9\x3f\xbf\x7d\xb3\x27\xcb\x24\x2c\xdf\x0b\x9b\x04\x31\xcf\x6a\x8e\xc0\x13\xc9\x5e\x63\xc2\x76\x73\x4c\x44\xff\xcd\xfa\x4d\xd8\xb7\x9a\x38\x83\x49\x89\xbd\xdf\xac\x56\x2a\x98\x4e\xf3\x84\x0f\x39\x93\xa7\x35\x6f\xac\xd7\x29\x86\xb4\xcb\x3c\x4c\x0b\x2e\x81\x7a\x6f\xac\xdf\x65\x5a\x4b\xb0\x56\x6f\xbd\xbc\x7d\x04\xbf\x24\x9f\xc9\x9c\xdc\x92\x97\x34\x9d\xba\x7d\x4a\xef\x06\x03\xeb\x8e\xba\x64\x3b\x18\xc0\xed\xc1\x65\xbc\xe6\xcc\x8d\xb5\xc5\x64\x41\x4b\x52\xd0\xb8\xaa\x10\x22\x97\xa3\x9c\x85\xd1\x97\x8f\x65\x58\x32\xca\x9e\xdb\xb3\x89\x67\x93\x8c\xb2\xe7\xd4\xb5\xed\xc1\x60\x6c\xdb\xcf\x59\x55\x8d\xed\x09\xa5\x94\x91\x7c\x30\xb0\xe6\xf4\x93\xb5\x21\x97\x70\xd2\x3e\xa7\x6f\xad\x0d\x99\x93\x4b\x92\x61\x92\xcd\xac\xcd\x28\x5e\xaa\xc5\x34\x18\x58\xb7\xf4\x92\xf3\xcf\x3f\xca\xc9\xfc\x01\xec\x50\x2d\xf4\x26\x2c\xca\x53\x95\x0d\x61\x72\x2b\xc4\x79\x73\x25\xfa\x61\x40\x6f\x31\x39\x52\x01\x5f\xa3\x75\x39\xfe\x26\xf2\x63\xe2\x8a\x8e\x56\x15\xe2\x3b\x22\x17\xd6\x37\xc2\xe3\xd8\x4b\x8a\xd2\x4c\xa2\x2f\xf2\xe4\x78\x44\x6a\xb9\x56\x5d\xf1\xac\x97\x74\x3e\x2a\x38\x2c\xc8\x92\xce\x45\xa8\x87\xcf\x74\x3e\x02\x7e\x8e\x64\xb4\xff\x19\x63\xcf\xfa\x4c\x5f\x12\x8b\x55\x55\xff\x25\x97\x7b\x5e\x52\xc4\x04\xc9\xb2\x9f\x83\x4b\x51\x6a\x63\x8c\xc9\x25\xd4\xb3\x2d\x28\xd3\x8f\x10\x33\xd3\x4a\xab\xea\x25\x1e\x22\x44\xb2\xd9\x8a\xd3\xce\x2c\xf9\x2c\xb4\x07\x22\xe2\x2f\xc9\x4b\x72\x19\x60\x8f\x7f\xe0\xbb\x85\x4a\xbf\x24\x2f\xc9\xe7\xa0\xae\xf4\x65\x16\x31\xeb\x0b\x26\x5f\x68\x49\x92\xc1\xe0\x5a\xb3\x7e\xd9\xac\x41\x37\x3d\x93\xa2\xfa\x97\x64\x43\xb2\xd9\xd2\xe3\x35\xad\x47\xcb\x38\x67\x46\xfd\x01\xe6\x35\x59\x75\x55\x2d\xda\xcc\x4b\x07\x98\x9c\x9e\xc2\x7d\x37\x27\x9e\x86\x47\xba\x46\x19\x20\xed\x18\xe3\xfd\xa1\x6f\x26\x10\x54\x18\x11\x4e\x3c\x69\x0a\x71\x49\x3a\xf4\x3d\x45\x80\x3c\xbd\xee\xac\xdd\x9e\xa4\x98\x44\x74\xa3\xfc\xa4\x54\xd5\x86\x5c\xd7\xaf\x83\x81\x15\x19\x5a\xb4\x91\x14\x66\xe0\xa0\x29\xaa\x7d\x30\x93\x15\xaf\xf6\x5b\xb6\x64\x79\xce\x22\x0b\x8b\x68\x6c\x2f\xc3\x24\x99\x87\x8b\x9b\xc2\x42\x59\xba\x60\xbd\x35\x5b\x67\xf9\x17\xc4\x81\xbb\x31\xc0\x0d\x16\x2c\x9f\x39\x37\x34\xe7\xff\xee\xa8\x4d\x6e\x29\x12\x6e\x61\x59\x84\xc8\x25\xdd\xd5\x2b\xc9\xb3\xc9\x01\xda\x1e\xea\xba\x70\xf9\xcd\xa5\x94\xde\x89\x80\x46\x4b\x2c\x82\xaf\xed\xf6\xd3\x92\x7e\x27\xb9\xa2\x02\x4f\xf1\xd2\x2f\x0f\x4d\x71\x68\xe9\xbb\xc1\xb4\xa4\x4b\x9f\xb5\xbe\xec\x1b\x52\x74\x29\xa4\xe8\x72\xcf\x7b\xf4\x22\x49\x9a\x9d\x2a\x3a\x0e\x24\xa0\x4b\xb3\x42\x7a\xf9\x28\xf8\x38\x7e\xdb\xb2\xa2\x3c\x18\x86\x79\x3a\xdc\xe8\x82\x62\x9f\xee\xaa\xca\x62\x74\xee\xa7\x01\xfc\xab\x2a\x46\x3e\xfb\x2c\xa0\xa5\xe2\x0f\xb8\x50\x92\xc7\x11\x7b\x1b\xaf\x65\x30\xb9\xc3\x4d\xfc\x0e\x42\xb0\xad\x65\x0e\xca\x54\xd9\x7a\x6a\xba\x21\x0b\xbe\x71\xdc\xe7\x77\x00\xd5\x52\x08\xa2\x5f\x38\xa3\xe0\x7f\x11\xf1\x22\xca\x20\x10\x92\xea\xe5\x28\x4c\x6e\xc3\x2f\x85\xc5\x7c\xb5\xc0\x5a\x7e\xc2\x48\x38\xe7\x64\xb9\xc3\x65\x4a\x55\xdd\xea\xf8\x2b\x83\xc1\x62\x04\x19\xad\x12\x93\xdc\xb2\x95\xcb\xe7\x3d\x48\xea\xab\xd1\x26\xcf\xd6\x71\xc1\xac\xcb\x9a\xb9\xa2\xeb\x51\x18\x45\x7c\x5d\x8b\x15\x4b\x2f\x81\x9d\x23\x97\x82\xe4\xd0\xcb\xd1\x32\x8c\x13\xb2\x19\x6d\xf3\x84\x5a\x9c\xe8\xc0\x63\x55\xfd\x90\x72\x1a\x52\x4b\xce\x6f\xe1\x28\x5c\xbf\xfe\x98\x12\x60\x48\x86\xe8\xec\x0c\x61\x22\x88\x20\x4d\x47\x6b\x56\x5e\x67\x51\x55\xa5\x52\x2d\x73\xa3\x53\x44\x16\xb2\x19\x29\x3e\xb3\xd0\x07\xee\x75\x1a\x17\x8e\x10\x6e\x4e\xf6\x41\x50\x42\x81\x77\x9b\xd1\x22\xcf\x8a\xe2\xdb\x6c\x1d\xc6\x29\xf0\xd0\x8a\xd1\x87\x11\xb4\x78\x7d\xd2\xc8\x4e\xfb\xc2\x81\xb0\xef\x04\x94\x52\x18\xc8\x60\x10\xfb\xae\x7c\x73\x03\x08\xc1\x34\x0e\xaa\xca\x42\xd7\x65\xb9\xf1\x38\xa1\xe7\xb9\x67\xe8\x89\x8d\x3c\x34\x99\x8c\x11\xdc\x67\x73\xae\xac\x95\x0d\x6a\x6b\xe4\x83\xd6\xf9\x08\x07\x83\xcd\xc8\xe0\xda\x6a\x7f\x1e\x5a\xbc\x50\xf9\x24\x48\xa8\x3e\xfd\x13\xef\x1c\xce\xc6\x21\x0b\x26\x3f\x58\xaf\x53\xb2\x21\x29\xb9\xc4\x44\xac\x74\x89\x2b\x97\xd3\x84\x6e\xa4\xa1\x0a\xa7\xbb\xb6\xb8\xdf\x10\x84\x75\x38\x3c\x0c\x9b\x6a\x19\x1c\xb4\x9e\x4f\xf1\x33\x2a\xb3\x9f\x36\x1b\xad\x55\xbe\x19\x5d\x87\x85\xd2\x5b\xee\x7f\x90\xec\xa9\xc8\x8a\x49\x48\x01\xfc\x8d\x5c\xb0\xc0\xe4\xc0\xe4\xf7\x21\xb5\x3e\xc9\x92\x21\x9e\xa1\x01\xf2\xd0\x0c\xe1\xa1\x1c\xa6\xd4\x47\x15\x6f\x30\x77\xe1\xe2\x9a\x29\xdf\x78\x02\x59\xdf\xd7\xc5\x43\x8d\x96\xef\x53\x82\x1e\x38\x9f\x28\x1a\xfe\x96\x0e\x87\xd8\x0b\x87\x9d\xcd\x20\x9d\x83\x57\xde\x60\x29\x0e\xf9\x84\xc1\xe0\x72\xd4\x26\x52\x16\x7a\xbd\xd4\x1c\xc6\xe9\xc7\x38\x5d\x30\x44\x0e\x8b\x0a\x89\x40\xb0\x0f\x47\xab\x79\x97\xa5\xec\xf4\x2d\xc7\x71\x64\x64\xc7\x98\x58\x35\xd6\xd4\xb0\xe4\x6f\x06\x87\x2f\x23\x37\xa6\x66\x1a\xee\x6e\x4a\x56\x70\xca\xb3\x20\xd2\xa8\x05\x36\xfe\x83\x02\x2f\x40\x12\x40\xe6\x92\x05\x0b\xfc\x8d\xd4\x5e\x2e\xfc\xe6\x97\x60\x76\xf4\xcb\x90\xcb\xf4\x7d\xbe\x68\xcd\xe4\x19\x22\x3d\x34\xfc\x39\x1d\xa2\x69\xef\x37\x6a\x8f\x6c\xb8\x23\xc4\x5e\x5d\x0d\x7a\x84\x02\xa1\xc0\x0e\xfe\x16\x37\x23\xe1\x6a\xa4\xc0\x1d\xfd\xcd\x88\xfe\x0c\x7e\x18\xe3\xa5\xb5\x19\x09\x83\x28\x2e\xd8\x01\xe2\xd4\xaf\x42\x89\x33\x22\x97\x64\x83\xa5\x77\x46\xb1\x80\xf4\x0a\x92\xa4\x16\x4f\x6f\x29\x82\x47\xa4\x3b\xb2\x93\xd4\xd4\x73\x08\x90\x51\xcf\x21\x8a\xe0\x7a\xce\x1e\x5f\xfa\x59\x60\x6d\x54\x27\x16\xf4\x07\xeb\x77\xb5\x4a\xf1\xae\xc1\x10\x3b\x4d\xee\xaa\x96\x42\x15\x3b\xb4\x19\x81\x5c\xc7\x81\x5e\x0a\x06\x9b\x0b\xf0\xd6\x96\x16\xac\x54\x1c\xb7\xb1\xc3\xaa\x4e\x23\x99\x19\xbc\x48\xa9\x92\x58\x1c\xaa\xdc\x51\x07\xa2\xec\xa6\x91\xf5\x99\xe4\x2a\x1c\xdd\x4b\xc1\x23\xc0\x86\x86\x41\xbb\xba\xf7\x72\x9a\x5b\xa7\x0e\x79\x89\xf7\xc2\xc6\x00\xde\xd0\xbb\xac\xa7\xe5\x88\xfa\x20\xe3\x12\xb6\x7f\x2e\x07\xdd\xe3\x37\x4a\x28\xd1\x94\x24\x25\x08\xe4\x27\x0c\x85\x3e\x82\xf0\x77\x54\xf7\xd1\x28\xa4\x2c\x03\x9a\x11\xd7\x57\x8c\xcb\xfc\x9b\xac\x68\x5d\x24\x82\xf6\x2e\x67\x0d\x8c\x34\xe9\x4b\xb6\xae\xdd\x38\x50\xc9\x31\x28\x69\x65\x55\x15\x13\xe5\xc1\x95\x74\x1d\x95\xa4\xf5\x51\x49\x26\x4e\x49\x72\xa2\x10\x22\xd6\xea\x81\x06\x77\xa9\x45\x6a\x31\x00\x29\x3b\xd7\x82\x2f\xe9\x35\x64\xe3\x23\xe9\x6c\xb1\xee\x4c\xbf\x3b\xad\xbf\x34\x44\x68\xd9\x5a\xa7\x8f\x98\x96\xc8\x0b\xa2\xab\xac\xe2\x88\xba\xbe\x61\xf4\x28\x42\x29\xd5\xc3\xd4\xb2\xa6\xa5\x75\xf6\xcd\x3a\x98\x26\xdf\x22\xb4\x8a\x78\xeb\x3b\x10\xf6\xa0\xb1\x87\x4b\x0f\xfc\xe2\x00\x84\xc9\x26\x79\xce\x93\xba\x31\x8d\x7c\xdd\x8d\x71\xc6\xcc\xac\xb5\x0e\x2f\xf0\x3d\x50\x07\xd0\xac\x46\xfc\x09\x61\x30\xb2\x3f\x50\xf3\x91\x28\xbd\x2b\x1a\xee\x37\x4a\x2e\x09\x77\x1c\x3d\x6a\x6b\x95\x54\xac\x54\xda\xb7\x09\x1b\x89\xd4\x97\xe2\x64\x05\x74\x05\xd4\x29\x4b\xeb\x1b\x38\xdf\xcc\x17\x94\xc1\xa6\x99\x8e\x32\xb8\x5f\xa0\xfc\x01\xc8\x04\xc8\x8a\xd2\xd3\x7b\x93\x31\xb6\xca\xaa\xea\xa7\x06\x31\xa9\xaa\x33\x5e\x96\x45\x95\xa2\x45\x67\xf2\x42\xdc\xc8\x04\x9a\x87\xf7\x37\x23\x23\xb1\x9a\x56\x09\xf7\x78\x8b\xe0\x62\x16\x1c\xb1\x57\x55\x6c\xb9\xb6\x4d\x90\x5c\x0a\x70\x31\x9d\x1f\x18\x8e\x37\xdd\xb5\xb5\xd8\x5e\xbc\x83\x28\xcb\xa2\x77\x56\x29\x1d\x44\xcb\x73\xf2\x7f\x80\x17\xd6\x5f\x52\x7a\x66\x51\x7c\x35\xb3\x66\x74\x50\x3d\xc0\xd5\xd5\xec\x6a\x06\x51\xf0\x8d\x05\xc7\xa9\xcb\xc6\x43\x0b\x29\x79\x89\x43\x9f\x8d\x12\xc4\x0e\x2d\xf4\xff\x91\x8a\x30\xa0\x42\xe2\x14\x26\x3d\x43\xf4\x49\xf0\x08\x26\xa3\xce\x85\x0b\x3e\xc1\xdd\xc8\xcf\x5b\x81\x93\xa1\x8d\x81\x93\x1d\x7a\x8c\xe9\x08\x32\xf5\x25\x3f\xf3\x8b\x52\x5c\xe0\x38\x80\x67\x68\x9b\x27\xa0\x4b\xdb\xba\x17\x97\xcc\x40\xdf\x6a\x6c\xf6\xc2\xba\x58\x9f\x2d\xff\xe1\x79\x1f\xc2\x83\x41\xdd\x20\xf0\x57\x83\x01\xe2\xbf\xc6\xa9\x74\x55\x21\x31\x0c\x70\xa8\xd0\xd8\xb2\xad\x4c\x75\x5f\x81\xb3\x75\x09\xd9\xfa\x8a\x67\xad\x04\x0b\x7b\xad\x14\xb2\x9d\xa5\xfe\x36\xa0\xfc\x9f\xe6\xe4\x7e\x01\x4e\x0e\x0d\x33\x9d\x5d\x81\x2b\x6d\xf1\x8f\x0a\x6c\x8a\xb9\x93\xd9\xe1\x5e\x33\xe3\xeb\xab\xa6\x74\xbe\x5c\xae\xe2\xf8\xce\xd8\x19\x34\xa1\x93\x7e\xd9\xf9\xa6\x6e\x65\x43\xd4\xbb\x0d\x8b\x5e\x9a\x95\x3d\x8e\x4a\x70\x96\xc4\x81\xb0\x27\x4d\xa0\x50\xb1\x9d\x91\x90\x32\x3f\x0b\xc0\x0d\xb4\x59\x75\x51\x1f\x97\xef\x49\xac\x64\x41\x23\x03\x14\x08\x49\xea\x67\x01\x8c\xaf\x09\xde\xbc\x05\xad\x7f\x68\x2b\x37\x50\xb8\x6d\x42\x9f\xcf\x66\x68\x09\x9b\xa1\x82\x86\xb4\xdc\x1b\x16\x75\x4a\xf7\x45\xac\xa7\xbf\xa6\xe4\xfb\x94\xfc\x3d\xa5\x36\xf9\x1b\x97\xb0\x5f\x80\x6c\xf0\xb3\xb8\x94\x35\x8e\xe4\xe5\x22\x01\xe6\x87\x71\x2e\xec\xaf\x29\xfe\x6b\xea\xb3\x40\x2e\xd0\x69\xfb\x1e\xf8\xee\x3a\x6f\x57\x37\x3b\x80\xb4\x08\x4d\x20\x0f\xb9\x07\x83\xf7\x7c\xf1\x7d\x67\xe1\xbd\xf7\x9e\x7c\x7f\x70\xd7\xcc\xab\xb4\x9a\x0a\xcb\x59\x5e\xd0\x7e\xff\xfb\x74\x30\x40\xb7\x71\x79\xfd\x32\x67\x11\x4b\xcb\x38\x4c\x0a\x14\xa7\xbd\xef\x53\x59\x8b\x36\x70\xfc\x77\x78\x07\xf9\xc9\xf7\xa9\xbe\x00\xa9\xb7\x12\x53\x49\x85\xb3\x41\xa9\xb9\x85\x34\xbd\x41\x64\x79\x21\x2f\xe5\xbb\x37\x8a\x66\x40\x72\x9a\x8a\xbe\x8b\x80\xc5\xdb\x82\xe5\x69\xb8\x66\xb3\xed\x28\xdb\xb0\x54\x86\x30\x26\xa9\x24\xfe\xb0\x81\x90\x3a\x1b\x50\xe1\xa2\xb8\xcd\xf2\x08\x7b\xf7\x14\xe1\x48\x7e\x77\x9d\x8b\x73\x70\x61\x90\xcd\xe7\xc9\x4c\xdc\x82\x8d\x5e\x9d\xe0\x17\xc1\x34\xd5\x87\x1e\x83\xc1\x76\xd4\x3e\x2a\xe9\x4a\xb3\xea\x22\xb0\xb0\x4c\x18\xc5\x3e\xfa\xf9\x54\x72\xe4\x2c\x3a\x05\xd7\x02\xe0\x74\xb2\x2b\x9d\xa2\x9f\xdf\xbe\xf9\xa1\x2c\x37\xf2\x83\xe1\xdb\x05\xba\x1e\xe3\xed\x21\x83\x5f\x90\xd8\x2f\x02\xc5\xb0\x26\x78\xb7\xdf\x0a\x36\x36\x6d\xc8\x47\x62\x6d\x56\x95\x88\x10\x66\x46\x49\x50\x74\xb8\x10\xa7\x80\x22\x26\xf3\xd2\x02\x27\x9a\x55\x35\x01\x07\x19\xe6\x56\xc9\xbf\x51\xa1\x22\xbb\xed\xda\x29\xe1\xc2\x36\xdb\x90\xbf\xa5\x83\x81\x14\x59\xff\x9a\x82\xd8\x17\xe3\x49\xbf\x59\x1b\x07\xa7\x12\x28\x38\x37\xbd\x5b\x0a\x7b\x9d\xad\x3c\x10\x22\x09\xdd\x8e\x3a\x4f\xd0\x2c\x7c\xe8\x59\x7a\xdb\xb8\x14\x93\xa1\xfe\xef\x4a\xda\x4c\x17\x40\x5d\xe8\x36\x78\x9a\x84\xde\x06\xef\x16\x14\xa1\x7d\x01\x4c\x84\x5c\x86\x20\x47\xd6\x73\x3a\x73\x5c\x77\x4c\x29\x2d\x20\x12\x81\x6b\x4f\xb0\x57\x50\xd1\xd0\xcc\xb5\x6d\x6f\x62\x4f\xf6\xb2\xba\x08\xef\xe2\xaa\xca\xb8\x80\x10\xe1\xfd\x72\x30\xc8\xac\x02\x0e\x5a\x13\xbc\x57\x58\x3a\x6b\x03\x78\x66\xc8\x30\x39\xf6\xac\x90\x0e\x87\x7f\x4f\x01\x9a\xd6\x5f\xd3\xaa\xb2\xfe\x0a\x97\xc3\x42\x99\x4f\x28\x5e\x58\x7f\x4b\x31\x26\x00\x64\x9a\x63\xd2\x39\x2b\x39\xf6\x72\xab\x8b\xb7\xc8\x07\x83\xbc\xcd\x54\xfc\x2b\x25\x2c\x27\x65\x2e\x6e\xba\x85\x79\x51\x55\x5c\x67\xb7\xd5\x75\x1c\x31\xfc\xe0\x8c\xa4\x79\xcb\xfc\x6c\xe6\x49\x0b\xb4\x0a\x6b\xbb\x35\x61\xb2\x56\x1b\xb8\xe5\x39\x3d\xfb\x6d\xcb\xb6\x22\xd2\xe8\x83\x33\x12\xe7\xd4\x7f\x10\x90\x2c\xa7\x70\xaf\xe6\x77\x1d\x72\x0a\x05\x27\x61\xbf\x7d\xcb\x98\x54\x6b\xcc\x69\x3a\x5a\x40\x80\xc6\x98\xa6\xb9\x38\xe1\x2a\xb1\x30\x14\x96\x67\x54\x0d\x1b\x0f\x16\xcc\x10\xf2\x84\x85\x87\x08\xdf\x6e\x7e\xab\x2a\xfe\xa5\x0f\xe1\x25\x86\x5c\xe2\x51\x55\x4a\xc5\xc2\x54\x04\x8e\x66\x60\x26\xe1\x90\x2d\x75\xc1\xa0\x2c\x1c\x0c\x42\x7f\x1c\xf0\x72\x78\x07\x32\x12\x7f\x25\x31\x8d\xe1\x12\x3d\xa4\xc3\xbc\xaa\x9c\x69\x94\xf5\xc0\x8f\x01\x1a\x9d\x23\x12\x9e\xd1\x82\x68\x25\x7f\x55\x31\x09\x87\x19\x9e\xde\x5e\xc7\x09\xb3\x8a\x3e\xa5\x56\xa1\xc6\x77\xc6\xbb\xe3\xf4\x01\xdf\x4e\x4f\xb7\xda\x06\x35\x86\x53\xa3\x94\xe3\x70\x5e\xd2\x61\x58\x55\xbc\x31\x9b\x93\xc0\x34\x2e\x69\x46\xd2\x11\x4b\x23\x71\x3c\x17\x0e\xad\x58\xda\xd4\xc4\xbe\x1b\x78\x43\xfe\x1f\x93\x74\x1f\xc0\x36\xf5\x22\x8d\xd7\xc0\x1b\x19\x61\x19\x7f\x24\xbb\x92\x43\xfb\xe0\xe4\xf9\xc0\x9c\xd5\x2a\xe1\x6a\x41\x1c\x4a\x78\x70\x3b\xaf\x75\x6e\xa6\x6d\x07\x29\xac\xb6\xb2\x53\x0e\x51\x40\x43\x29\xcb\x21\x8e\x70\x0e\xc7\xd5\xbe\x7c\x1f\x6d\x53\x08\xb5\x6b\x95\xc2\xf3\x5f\x67\x0c\xdc\x72\x16\xe7\x3a\x23\xc3\x5e\x9c\x2b\x3f\xaf\x92\x1b\x05\xa4\xa1\xaf\xc9\x6b\x33\x50\xdf\x22\x4b\x8b\x32\xdf\x2e\xca\x2c\xf7\x5e\x93\x38\x8d\x0f\xdd\x62\x08\x99\x58\xd8\xc4\x25\x6c\xad\x22\x1d\x6e\xf2\x6c\x43\x53\x15\x84\xa2\x88\xd3\x15\x5c\xe9\x15\xb7\xa0\x87\x2e\xae\xbe\xc5\xb5\x26\x2d\x55\x8c\x39\x3e\x43\x52\x8b\xef\x56\xe2\x33\xa0\xae\xa8\x24\x8d\xa8\x08\x69\x2d\x67\xae\x8d\xba\x69\x8d\xba\x7b\xb2\xd8\xe6\x87\x8c\x3a\x0c\x6d\x23\x35\x83\x55\x27\xeb\x88\xcc\x32\x7a\xe2\x0c\xfe\x4b\x6f\x92\x46\x91\x3a\xf8\xbf\xfe\xbc\x27\xf9\x36\xed\x0c\x65\x70\x7f\x53\x22\x25\x2b\xa8\x1c\xaf\x72\x3a\x17\x6d\x73\x40\x30\xb0\xcc\x07\xa0\xf9\x06\x00\x03\xe5\x48\xb0\x9d\xfd\x11\x23\x36\x71\xba\xbf\x61\x4f\x79\x1f\xcc\x6e\xa9\xa5\x20\x79\x5a\x43\x1c\x3f\x2a\x87\xf5\x5b\xb3\x92\xa2\x64\x1b\xe9\xd0\xcc\x4c\xaa\x4d\x98\xc5\xb2\x54\xf5\xcb\xd8\x0d\x20\x85\x15\x10\x26\xb7\xb8\x1f\x90\xfa\xb3\xbc\x88\x30\x91\x6f\xc4\xb1\xcd\xc0\x45\xe3\x13\x31\x2a\xa3\x3b\xed\x15\xb5\xa5\xe9\xad\x2e\x5b\x1a\xf7\x4d\x0c\x7a\xec\x33\x31\x1f\x55\x25\xde\x95\xc2\xb4\x70\xba\x60\xa6\xa9\x9c\x7c\xf9\x2a\xed\x69\x49\x8b\xe0\x03\x41\x08\x93\x72\x30\x10\x86\x29\x60\xcd\x57\x7a\x36\xf6\x9a\xed\xb4\x0d\x17\x84\x5e\xc8\x1d\x00\x53\xb7\x70\x98\x04\x11\x1f\x1a\x1d\xb4\x3a\x7a\x68\x5a\xab\xc9\x82\x2d\xa3\x34\x99\x8a\x0d\xcb\xdb\xc6\x18\x18\x9f\xbc\x21\x83\x75\xd5\xee\x3a\x98\x55\xde\xee\xd5\xdc\xc8\x19\xd4\x61\x96\xe9\x61\xea\x1b\xb6\x14\xa1\x0c\x5b\x81\xf7\xa0\xcb\xa6\x89\x26\x24\x34\x7c\x51\x76\x35\x6d\x86\x9a\xf4\x91\xd8\x63\x11\x41\x7c\x97\x45\x04\xf1\x7d\xf6\x40\xe9\x46\x29\xef\x0a\xd5\x9b\x69\x97\x0a\x23\x48\xd5\x4d\xcc\xa8\xaa\x2e\x33\xe0\x23\x4a\x5a\x42\x29\x2f\x84\x1d\x81\x59\xbf\x0b\xc6\x80\x88\x7a\x0f\xd5\x1b\x97\x61\xc4\x2e\xb3\x3f\xd0\x1d\x94\xe7\x00\x2f\x31\x60\x99\xb6\xf0\x25\xb6\xb2\x25\x16\xd6\xfa\xba\x51\x6d\x30\x5c\xee\xb5\xca\xa1\xfc\x76\x5f\x3c\xe1\xb8\x78\xb5\xde\x94\x5f\xb4\xf6\x2c\x78\xe2\x1a\x15\x1b\xc6\x22\x4b\xe4\x25\x21\x3d\xf0\xa5\xf0\xa3\x00\x80\xa1\xa2\xb4\x27\xbc\x2c\x9e\x72\xe6\xb7\x0e\xe4\x26\x42\x17\xc6\x69\x5c\x5c\x83\xe9\x4b\x09\xa1\x43\x2d\x90\xf4\x94\xce\xe8\x48\x7c\xa7\x21\xe1\x5c\xdf\x08\x38\x1d\x38\x44\x9f\xd5\x96\xd5\xa1\x84\x30\x7c\xb4\x64\x26\x12\xca\xc0\xa6\x47\xec\xa6\x3a\x2e\x40\xa1\xf9\xa9\x0e\xf1\xc8\xdf\x08\xe7\x17\x55\x6f\xba\x54\xf4\xa4\x62\x9c\x52\x04\x10\x9e\xd1\xfb\x8e\x24\x84\xa2\x47\x1c\x5b\x96\x77\x88\xf8\xc1\x91\x40\x4b\xa2\xfd\xbe\x2d\x4f\xb8\xfa\x10\x4e\x77\x88\x6a\xb6\x0e\x09\xc0\x97\xf1\x9a\xe5\x05\x81\xcb\xba\x1a\x86\x42\xe2\xc3\x21\x58\xeb\xf1\xff\xd0\xf3\xc1\x20\xb6\xf8\x8b\xa1\xc2\x0c\x96\xa2\xe1\x61\xc6\x3c\xaf\x6d\xf9\x54\x21\x11\xb2\x45\xb9\x5b\x9b\xa6\xa7\xa7\x53\x9c\xf1\x22\x7c\xd1\xf5\x85\x23\x5f\x21\xf8\x40\x6f\xe1\x13\xf4\xb7\x0f\xab\xc3\x82\x04\x8e\x61\x62\x4e\x73\x4c\x4a\xda\x77\x48\x06\x8c\xcc\x82\x59\x29\x71\x30\x9e\xc2\xc9\x62\x2e\xdc\xe2\x45\x4c\x40\x4b\x78\x36\x05\x57\x17\x62\xee\x3b\x83\xaf\xa8\x23\x1a\x46\x25\x74\xef\x03\x2d\x84\x0b\x32\x21\xc6\x59\x5d\x5f\x41\x18\x71\xee\xb2\x7e\x15\x00\x0f\x5a\x10\xcf\x67\xca\x43\x98\x67\x0b\xe0\x28\xcc\xec\xdb\x1c\xd3\xcd\xbe\xc3\x44\x73\x9e\x59\x4d\x04\xfc\x1a\xbe\x3c\xc0\x9d\x65\x0d\xdc\x52\x00\xb7\x14\xc0\x95\x5e\x92\x39\x4c\xcb\x40\x23\x3c\x47\x35\x48\xa8\x61\x0a\x6e\x0f\x15\x3c\x4b\x80\xa7\x0a\x70\x14\xca\x00\x47\xb9\x5f\x06\x83\x01\xff\x2f\x7b\xdb\x78\xa9\x7b\x84\x15\xd6\xab\x51\xed\x9b\x71\x56\x8a\x24\x8e\xd8\xb7\xd9\x6d\xea\xfd\x6e\x09\x6a\x8a\x09\xa4\xfd\xb4\xe1\x29\x40\x58\x65\xca\xa5\xf0\x9b\xf0\xbb\xa5\xc8\x2f\x26\x9c\xa2\xbd\x4e\x6b\xa7\x05\xa2\x86\x3d\xa4\xbf\xdf\x96\xc6\x07\xa8\x48\x7c\x90\xf5\xd4\xdf\x64\x75\x5f\x11\xfd\x82\x1d\xd2\x4b\x45\x07\xb5\xc2\xb5\xb4\x67\xe4\x94\x8c\x76\x3a\xf5\xe3\x10\x3f\xd4\xfa\x99\xb5\x88\x9a\xb7\xd3\xb7\x71\x29\x97\x6f\x07\x83\x52\xda\x56\x1b\xec\xfc\x60\xc0\x88\x62\xb1\x3c\x46\x04\x83\xe6\x89\xbc\xa5\x32\x53\x30\x4c\x2b\x06\x83\x52\x13\xc0\x5c\x33\x67\x54\xec\xf9\xd9\x72\x39\xb3\xbd\xda\x24\x5f\xf9\x00\xa8\xf9\xc1\xfa\xd1\xab\x1f\xf9\xd2\x97\x4c\x03\x1f\x73\x31\x33\x5f\xfc\x3a\x9f\x08\x77\xa1\x3e\xd4\xbe\xdc\x94\x37\x00\x81\x90\x55\x95\xd7\xa4\xd8\x06\x17\x03\xf2\x5d\x2c\xc5\x7c\x94\x25\x11\xcd\xb5\x6e\x08\xa9\x1f\x69\xd3\xca\xd0\xbc\x15\xe3\x85\xf0\x60\x00\xbf\x06\x6e\x12\x59\xf7\x21\x95\x90\x1f\x38\x6b\x2d\xf7\x7d\x90\x1d\x76\x49\x9c\xb2\xb0\xd3\x85\x10\xdb\x13\x90\x2a\x3a\xbe\x8d\xce\x4f\xdf\x86\xe5\xf5\x68\x91\x15\x16\x7b\x04\x8f\x1f\x5e\xe3\x33\x57\xb0\x14\x82\x10\x50\xa9\xc6\x7d\x47\xdb\xcc\xa7\x48\x1e\x95\xf1\xe2\xa6\xbd\x21\x32\x41\x7e\x24\x29\xc9\xa9\xa0\x1f\xff\xaa\xb5\xf0\xa7\xf9\xb3\x3a\x80\xd9\x70\x88\x19\x4d\xb9\xfc\xc6\x2c\x5c\x55\xfc\x49\x90\xd4\x54\x2d\xf5\xfc\xf4\x94\x38\xb5\x67\x22\xc0\x37\x60\x06\xb3\x8d\x85\xc9\xbf\x52\x5a\xee\x75\x6f\xd6\xac\x19\xbb\x93\x59\x82\xd8\x8a\xce\x28\xa9\x4e\x18\x4f\xde\x09\xae\xde\xc2\xaa\x78\x9c\x96\x2c\xff\x1c\x26\xd4\x19\x13\x23\x83\x39\x3e\x96\x57\x95\xc5\x72\x5a\xb0\xf2\xb5\xcc\x6d\xd5\x90\x68\xd5\x83\x75\xcd\xbc\xaf\x0d\x44\x48\x58\x98\xeb\x0a\x58\x8e\x09\x93\x2e\x4b\x89\x89\x8e\x74\x57\x24\xd9\xad\x77\x61\xdb\x64\x19\x16\xa5\xe7\xda\x76\x1d\xe7\x00\x1c\xe5\xd4\x7c\xb1\x38\xcf\xf9\x6a\x9b\x4b\x49\x20\xa2\xee\x10\x98\xc2\x47\x5d\x3d\x89\x5d\x9e\x10\x20\xcc\x0c\x27\xe0\x7b\x1d\x70\x4d\xb1\x76\xc2\x44\x93\xb6\x2e\x0f\x0f\x9c\x3b\x37\x02\x15\xd4\xde\x4c\x3b\xdc\x85\xc9\x1a\xb9\x4c\x24\x6c\x3a\x4d\x7f\xe0\x53\xed\x64\x8e\xee\x38\xff\x63\x93\x84\x2d\x4b\xcf\xde\x93\x4c\x39\xfc\x56\x76\xf9\x0d\x6f\x09\x70\xfa\x82\xb5\xa7\x8b\xb0\x7d\x5b\x49\x1a\xae\xdf\x49\x86\x67\x96\x24\x3e\x19\x97\x72\xbf\xc9\xb6\x69\x14\xa7\xab\x97\x49\xcc\xd2\xf2\x47\xb6\x28\xfb\x94\xfe\x02\xea\x52\x47\xbe\x5b\xe0\x54\xf3\x67\x2b\xc4\x04\x3a\x1a\x8f\xca\x6c\x33\xb4\xf2\xd1\x26\x5c\xb1\x5f\xc4\xc0\x00\xef\x95\x00\x81\x4f\xad\x74\xb4\x80\xf2\x97\xd9\xa6\xaa\x6c\x2c\x86\x16\x83\xed\xbf\x2a\xf9\x73\xbb\x24\x17\x32\x8c\xa2\xfc\x95\x97\xdd\x63\x2f\x06\x1c\x91\xd3\xb3\xd3\xd0\x3c\x12\x6a\xa8\xb6\x88\x55\xf6\xbe\x08\x4f\x51\x51\x86\x65\xbc\x00\x8f\x1b\x32\x0a\xff\x97\x84\x69\x8b\x60\x8a\x20\xc4\x7c\xfc\x99\x21\xc3\x58\x43\xfa\xb3\x2d\x68\x28\x1b\xb7\xb0\x74\x3a\x22\xea\x07\xb5\x53\xe1\x04\x50\xa6\x80\xf5\x32\x26\x0b\x6a\xd5\xfe\xa5\x84\x93\x0f\xb4\x8c\xef\x44\xec\x6b\xc9\x48\x29\xe7\x88\x42\xcc\x24\xfe\x96\x24\x01\x7e\x7e\xea\x10\x38\x07\xe6\x0b\x63\xba\x98\x59\x1b\x1a\x1a\x66\xcb\x24\xa6\x1b\x0e\x7d\x92\xd1\x8d\x70\xc7\xe0\x59\xb1\xe9\x3a\x64\x8b\xab\xca\x26\x0d\x6f\x22\x09\x86\x19\x38\xdc\xbd\xac\x92\x4a\x87\xcb\x7c\xb3\x2d\x30\x26\x82\x4f\x2c\x47\xc0\x0e\x59\x4b\xfe\x2b\xde\x4e\x0b\x98\xf3\xb8\xce\xc2\x1b\x87\x3c\xe0\xce\x41\xbc\x9f\x16\x62\x82\x33\x4c\xd0\x96\x93\x78\x14\xa7\xbd\x72\x56\x8e\xe0\x45\x35\xb5\xc4\x5e\x08\xe0\x5a\x4a\x31\xd0\x10\xaa\xb4\x77\x2e\x83\xe8\xb4\x5d\xea\xc1\x5c\xb7\x97\x4c\xde\x8a\x39\x5a\x43\x5b\xce\x4d\x6e\x62\xc3\xac\xa4\xf9\x31\x5c\xf7\x64\xe4\x02\x39\xe3\x1f\xa4\xa3\x36\x52\x9a\xa9\xe2\xea\xa9\x0e\x38\xc0\xd7\xaa\x30\x92\x01\x9b\x7e\xed\x6e\xc2\x02\xe7\xf2\x1c\x74\x1a\x47\x20\xab\xb0\x9c\xbe\xcc\x36\xc2\x74\x1a\x38\xcd\x54\x00\xaf\x2b\x23\x5f\x0a\x75\x4e\xb9\x0c\xc5\xc4\x40\xed\xa7\xf5\x20\x85\xa1\x36\xf8\x20\xeb\xab\x75\x27\x67\x47\x34\x70\x90\x17\x1c\x93\xc9\x33\x70\x62\x0e\xfa\x2b\x2d\x87\x9b\x7e\x07\x1b\x60\xab\xaa\xbf\x4f\x85\xa1\x6f\x23\x38\x83\x00\x14\x28\x3b\xaa\x35\xd9\xb9\x66\xc1\x35\xa1\x59\x9f\x3e\xd6\xab\xaa\xbf\xb7\x59\x5f\x4d\x42\x3c\x64\x50\x17\x44\x34\x55\x12\xe9\x92\x5e\x35\xad\xd5\x35\xe9\x38\xfb\x45\x69\x48\xe0\xe9\x21\xc3\x1a\x7f\x85\x07\xb6\xfa\xb2\x8f\xfe\x6c\xb8\xfb\xc8\x60\xb3\x08\x67\x42\xb6\x9b\x71\xe1\xcd\xab\x29\x77\x9b\x84\xfb\x71\xe0\x31\xfe\xef\x73\x16\x47\x10\x5d\x53\x8d\xc2\xca\x67\x8b\xd2\x0a\xb1\x41\x32\x2d\xec\x65\x24\x9f\x65\x9e\xf9\xe1\x92\x33\x19\x18\x2a\xa1\x19\xb8\x60\x8b\x0f\x5c\xb0\x49\x07\x40\x26\x14\xa5\x9b\x30\xed\x7e\x05\x90\xce\x93\x4e\x58\xda\x20\x33\xc2\x3b\x4a\x97\x00\xe0\x47\x18\x0d\x99\x52\x39\xf2\x52\x82\x90\x87\xc0\xcb\x35\x1a\x32\xa3\x02\x38\xab\x11\x10\x8e\x4d\x08\xd7\xd0\x6b\xf7\x96\x33\xaf\xc6\x71\x8e\x16\xee\x63\x2c\x7c\xe6\x58\xb1\x74\x99\x94\xc1\xef\x4c\x62\x37\xf2\xe4\x1a\xaa\x95\x19\x8e\x4d\x9e\xa9\x97\x31\x35\x15\xc2\x44\xc8\x3f\x2b\xc5\xb3\xf4\xf8\x94\x21\xb1\x6b\xa1\x21\x0b\xbc\xa7\xcd\x08\x1c\xa0\x21\xd1\xde\xa5\x81\x73\x5d\x87\x77\x56\x3a\x9a\x67\xd1\x17\x50\x44\xc8\x92\x84\x97\x27\x59\xe3\x4d\x65\x10\x2b\x41\x65\x68\xbe\xd5\x8d\x63\xec\xc5\x2a\x84\x12\xdc\xdf\x90\x9c\x14\x60\x91\x20\xaf\x5d\xe0\x78\xbf\xc0\x7b\x92\x92\x70\x16\x7b\x25\x09\x35\x22\x68\x4e\xa8\x88\x7f\x67\x1d\xba\x10\x65\x1d\x58\x41\x51\xee\x30\x8d\x3e\xb2\x64\x29\xed\x38\x65\x2c\x51\x72\x20\x91\xad\xb3\x68\x9b\xb0\xc1\x40\xfd\x1e\xc9\xc0\x99\xbd\x2c\x2f\x8b\x59\xf3\x95\x2e\x4a\xcf\x62\x23\x11\x07\x8e\xb2\xd1\x03\xba\x28\x49\x47\xe8\xec\x88\x2d\xe3\x94\x0d\x06\xe2\x77\x14\xae\x23\xf5\x6c\x21\x61\xa0\x81\x88\x1f\x74\xf8\xf4\x59\x94\x7b\x8c\xf7\xd6\x2d\x4c\xb4\x60\x00\x44\x7c\xeb\x79\x98\x17\x6d\x41\xe1\x8b\x99\xa0\xcd\xa3\x12\xeb\x5a\x5e\x99\x88\xe3\x27\x7a\xbd\x4f\x0c\xe1\xa3\xcc\x84\xf1\xd8\x21\x54\x11\x1a\x1a\xc5\xb4\x44\x99\xec\x2d\x4c\x3e\xd7\xd9\x13\xa3\xad\x6b\x2b\xd4\x5d\x9f\xfb\x61\x50\x55\x68\x10\xae\x37\x53\xb4\xe7\xfd\x5b\x49\x93\x11\xd0\x7f\x11\xe9\x04\x3d\xe3\xcf\x49\xc9\x1f\x9f\xf3\xc7\x15\x7f\x7c\x88\x1e\x7a\x68\xf0\xdb\x36\x83\xf4\x87\x3c\xfd\x2f\x77\xee\x63\xfe\xf2\xff\xc4\xcb\x85\xcd\xb3\xd1\x87\xde\xc3\xc1\x5f\xee\xc6\xdf\x4e\x1f\xee\x49\x48\xcf\xfc\xc1\xb3\xe7\xe8\xe1\xff\xa3\xc1\xd9\x8a\x2c\xcc\xd7\xe9\x4a\x6e\xe5\x75\xbf\x43\x32\xaf\xf7\x88\x1b\x4e\xfe\xe6\x58\x46\x8b\xad\xa1\x73\x1d\x16\xef\x6f\x53\xe5\x58\x4c\x70\x0a\x73\x72\x03\x3e\xa3\xfd\x9b\x80\xce\xfd\x9b\x00\x0b\xc3\x9d\x88\x1e\x94\x56\xb0\x9d\xae\x6a\x30\x47\x53\xb1\x27\xd5\xfd\xd0\xf0\x36\xf0\x46\x21\x4e\xb8\x9f\x32\xeb\xec\xee\x0c\xe2\x05\xfd\x51\x99\x13\x55\x68\x30\x40\xbe\xc0\xe3\x9e\x62\xac\x02\x9e\x41\x4a\xc5\x21\x67\xf2\x57\x06\xd7\x45\x19\x74\xea\x8e\x02\xe3\xa7\xbc\x21\x54\xd5\x61\x7b\x50\x77\xed\x4a\x5e\x35\x38\xd3\xed\x41\xc9\x66\x63\x5e\xdf\xd9\x43\x73\xf0\x8d\xde\xf1\xb9\x28\x16\xe1\x86\xbd\xba\x03\x47\x01\xbc\x03\xba\xa5\x39\xf0\x55\xf3\x5e\x9c\x16\x65\x98\x2e\x78\xed\x89\x92\x29\xe6\x1a\x8a\x42\x4b\xa5\x3f\x1f\x0c\xec\x3e\xa5\x73\xac\x10\x76\x3a\xa7\x08\x0d\xe7\x53\xe5\x41\x46\xec\x99\x73\x3c\x9b\x7b\xf3\x3a\xae\x05\xb9\xc6\xa2\x43\x70\x38\xdd\x01\xd5\x7e\x28\x2a\x0e\x67\x7d\xdb\xbb\x03\x4d\x25\x9b\x52\x1d\x54\x84\xa7\xf2\x31\xc9\x6e\xad\xf6\xd6\x17\x4c\x36\x47\x16\xdf\x8a\xa3\x19\xec\x1c\xd3\xf9\x60\x30\x17\x4a\x85\x6f\x80\x1a\x58\x21\x35\xde\xc9\x6a\x48\x51\xef\xb4\x87\x86\xe1\x10\x79\x68\x28\x3f\xbd\x04\x87\x9a\xf5\xad\xed\x82\x82\x0d\x9b\x81\x65\xc6\xbd\xa9\x71\x46\x78\xb2\xc2\x24\xa2\xf6\x34\x7a\x76\xad\xce\x06\xa2\xe1\x10\x03\x37\x7a\xed\x47\x41\x40\x17\xe2\x77\x1a\x2a\x8f\x25\x49\x9c\x32\x71\xbf\x49\x43\x71\x1a\x2a\xbc\x79\xd2\x66\x57\x60\x2d\x5f\x53\x14\x31\xa1\xad\xc5\xc7\xb9\x8c\x13\xe0\xa2\x7a\x75\x1d\xbd\x35\x2b\x8a\x70\xc5\x7a\x29\x4f\x17\xe7\x4d\xbd\xa2\x0c\x17\x37\xa6\x07\x88\xa9\x41\x8b\xc4\xc8\x6a\x9b\x29\xa0\x34\xbf\x1b\x94\x86\x5c\x1b\xa0\x5d\x59\x21\xb9\x91\x94\xed\x9a\x25\x1b\x96\x17\x34\x04\x33\x3a\xe5\xc8\x18\x74\xac\xe8\x0d\xa4\xcd\xe5\x25\xaa\x2e\x3e\xe7\xd3\x1d\x8e\x72\xb6\x8a\x8b\x92\xe5\x3f\x40\x0d\x16\x12\x35\xbd\x8d\x0b\x10\x13\x88\x89\x1b\xf1\xd2\x72\xfb\x87\x3e\x14\xa4\x0a\x7a\xca\x6e\x7b\xcc\x42\xb2\x64\x4f\xd4\xe3\xf5\x1e\xc2\x74\x3e\x44\x78\xba\xc7\xd3\xc3\xe6\xc0\x6f\xd5\x0f\x47\xda\xe4\x84\x66\x27\xe6\xfc\x66\x14\xa7\x10\xf0\xd6\x58\x94\x78\xb7\x27\x29\xbd\x19\x2d\xd3\xe9\xd2\x9a\x63\xb0\x47\x3d\x99\x1b\x07\x5f\x0a\x90\x7d\x8e\xbc\xf3\x59\x2a\x6f\x47\xfb\x0e\x7f\x15\x87\xef\x3c\x7d\x21\xd3\xef\xf8\x42\xb1\x9f\xcd\x15\x96\x87\x0a\xac\x82\x9b\xe2\xbd\xf1\x54\x5e\xbe\x50\x3b\x07\xc4\xb3\x9a\x60\x53\xd8\x7f\xc3\x91\x28\x25\x0b\x3a\x57\x23\x21\x8c\xda\xa4\xa4\x08\x91\x68\xba\x84\x35\x66\x85\x34\x6c\x74\x7f\xae\x4c\x71\x22\x9a\x5a\xe2\x05\x63\xa9\xe4\xd1\x41\x85\x70\xbc\xb4\xf8\x6a\xc5\x6a\xad\xac\xea\x38\x40\xec\xd9\x6a\xca\x86\x43\x1c\x81\x81\x24\x28\xa1\x52\x46\x22\x81\xd8\x14\x3c\xf1\x91\x08\x8c\x62\x28\x33\x96\xfa\xa9\x83\x49\x39\xa4\x37\x56\xe8\xb3\x80\xec\x40\x85\x3e\x32\xdd\xba\xac\xe4\x9d\x48\x6b\xa7\xb0\x56\x7c\x3c\xa2\xb1\x1b\xf6\x85\xae\xc8\x91\x46\x75\xf5\x2b\xa3\x7a\xc2\x7b\x3a\xb5\xe5\xb1\x7d\x49\x17\xcd\xf9\xec\x95\x9d\xa0\x8f\x97\x88\x9c\xb4\xb6\xb7\x6e\xb8\x4a\xb4\x98\xf3\x4e\x5f\x8f\xe2\x74\x91\x6c\x23\xf6\x2f\x96\x67\x83\x41\x3f\xac\xaa\x48\x91\x46\x2b\xc4\x33\x3d\x5f\x72\xe6\xf9\x34\xca\xb5\xd4\xd5\x89\x6d\x9a\x80\x97\x82\x26\x12\xeb\xdb\x38\x89\x51\x3e\xef\x6c\x60\x50\xab\x39\xd9\x2d\x53\x4f\x63\x39\x91\xbf\x1e\xc7\x6e\xc2\x7b\xe9\xdd\x40\x67\xf7\xdd\xad\xde\xc6\xe5\x01\xd6\x1d\x19\x3b\xdf\x37\xcc\x01\xd6\x9b\xcb\x32\x15\x3b\xe3\x61\xf5\x49\x76\x74\x59\x0a\x04\x15\x87\x0f\xe2\x6d\x94\xb0\xcf\x2c\x99\xc1\x41\xc7\xeb\xb4\xb4\xcc\x54\xe2\xd8\xd8\x73\xa6\xe1\x28\xc9\x56\xd6\x82\xf0\x35\x54\x53\xa4\x50\xf4\xfb\x06\x3e\xf2\xc7\xbd\x68\x64\xb7\x27\x11\x4d\x08\xa3\xd7\xd3\xc5\xe8\x1f\xaf\x7e\xfc\xf8\xfa\xfd\x3b\x8a\x9c\xd1\x78\x64\xa3\xe9\x62\xf4\xf2\xfd\xdb\x0f\xaf\xdf\xbc\xfa\xf1\xd3\x8f\xaf\xfe\xf1\x1a\xbe\x9d\x4c\xa6\x8b\x91\x7a\xfb\xf4\xf2\x87\x17\xef\xbe\x7f\xf5\x91\xee\x1c\x0f\x3d\xa3\x3d\x67\x64\x8f\xf2\xc5\xc8\x45\xc4\xf5\x10\x15\xef\xf6\x69\xbe\x18\x8d\x11\x19\x37\x53\x26\x88\x4c\x3c\xf4\x5c\xa6\xa0\xbd\x64\x12\x22\xb5\x95\x93\x25\x3c\x2b\x2e\x82\xe4\x34\xaa\x59\x9e\xc5\xa8\x66\x54\x5f\xa5\x9f\xe3\x3c\x4b\x39\xd5\xa4\x9c\x19\x3a\xa2\xf4\xb3\x22\x49\xb6\x5a\xb1\xdc\xbb\xe1\x0f\x5e\x48\x9a\xf3\xe0\x99\xf3\xcb\xe7\x20\x5e\x5a\x9a\xef\x10\xbc\x17\x30\x1e\xb9\x62\x3c\x20\xc7\x4d\x55\xcd\x9b\x24\xfa\x45\xbe\x02\x45\x69\xa9\x27\xcb\xa2\x1e\x47\x1f\x1d\x33\x58\x92\xee\x02\xe1\x69\xa4\xce\x7f\xcc\x4d\x86\x84\x58\x18\x19\xdd\x70\x8a\x3b\x4a\xb3\x92\xde\xc8\xcb\x43\x85\xdd\x61\x40\xe7\x7b\xdd\xfb\x0f\x62\x27\xf2\x9a\xe8\x79\x6f\xcf\x67\xcd\x96\xd5\x5e\x46\xd4\x4d\xb5\x4a\x10\x2d\x89\x89\xb9\xa1\x27\x3b\x61\xc1\xfa\x36\xdc\x78\x3b\xdb\x43\x11\x9b\x6f\x57\x88\x38\x5c\xfe\x5d\x66\x30\xe1\xb7\x61\x9e\xc2\x3c\x0b\x3b\xfd\x3d\xf9\xf6\xd5\x37\x3f\x7d\xef\xd9\xe4\xf5\xbb\xef\xde\x7b\x0e\xf9\xe7\x8b\x1f\xdf\x79\x2e\x79\xf5\xe3\x8f\xef\x7f\xf4\xc6\x04\x90\x96\xff\x66\xab\x56\xf7\x39\x64\x05\x4e\x3f\xa3\x61\xbd\x1c\x74\x07\xfc\x30\x98\xa2\x6d\x2a\x84\x9c\x08\x94\x55\x04\x95\xe6\x13\x9e\x71\x49\x4b\x3e\xf8\x8b\xc0\x7c\x16\x10\x90\xef\x7c\x0d\xec\xf7\xd3\xc5\x48\xe0\x05\xbd\x11\x8f\x34\x14\x47\xd4\x0d\xce\x8d\xa7\xcc\xe9\x6e\x5f\x4f\xda\x9c\x84\x9a\x62\xce\x79\x2d\x42\x61\xf1\xbb\x3c\x5c\x33\x9a\x6a\x41\x7a\x6f\x7d\x26\x1b\x4c\x5e\x34\xf8\x0c\xb2\x32\x38\x8d\x39\x20\xdc\x42\xb4\xd1\x90\x20\x52\xbc\x53\xb6\xfb\xaa\x21\x9e\x2a\xd5\x7a\x17\x98\xf7\x06\xc2\x89\x87\x6b\x1a\x4e\xa3\x51\xc4\x36\xe5\x75\x1d\x26\x31\xda\x8b\x23\x85\xdd\x9e\x2c\xe8\xea\x70\x25\x93\x88\xae\x0e\x16\xf2\x34\x14\xae\xe5\x7e\x64\x9f\x63\xe0\x9d\x4f\x0e\xc1\x00\x4a\x90\x76\x50\x55\x0e\xa7\x77\xf3\x3e\xa5\x0b\xc1\x57\x3f\x5b\x18\x6b\xe1\xda\x42\x97\x6c\xbd\x49\xc2\x92\x81\xf5\xc0\x26\x67\x8b\x6c\xbd\x89\x13\xb5\x24\xc2\xb4\x97\x25\x11\xcb\x7b\x9c\x18\x73\x48\x64\x4b\x43\xfc\xec\x95\xd7\x21\x17\xbd\x59\x4f\x7a\x41\xed\x49\xd7\xbd\xa3\xde\x87\x84\x85\x05\xeb\x6d\x37\x11\xaf\xfb\x4b\xb6\xcd\x8d\xca\xf3\x5e\x99\xf5\x42\xde\x03\xa3\x66\x0b\x0d\x23\x7f\x11\x0c\x11\xee\x65\x79\x2f\xca\x6e\xd3\x55\x1e\x46\xb2\xac\xac\x17\xca\xb5\xbb\x04\x05\xe7\xbc\xe0\x08\xe1\xe9\x9f\x19\x5c\xab\x07\xff\x83\xb1\x99\xfd\x3b\x1c\x57\x08\xc6\xe7\xd0\xbd\xfd\x7e\x1a\x8e\x4a\xd9\x2d\x13\x91\xc4\xf4\xf4\x5b\xb3\xf3\x2e\xeb\xb1\x9a\x74\xf6\x36\x61\x51\xb0\x88\xb7\xa2\xaa\x40\x78\x7a\x22\x90\x72\xd7\x16\xa9\xbc\xe4\x40\xca\xe2\xbb\x6a\x76\xc3\xba\xe8\x11\x49\x09\x23\x11\x59\x0a\x04\x5a\xd1\xc5\xe8\x1f\x6f\x47\x8d\xec\x47\xfc\x47\xc5\x4b\xa9\x26\xb6\x52\x1b\xe9\x0a\x2c\x49\x47\x12\xd8\x3a\x95\xee\x24\x75\xf4\x18\x51\xe4\xcb\x8b\x84\x51\xe2\x72\x4f\xf8\x1c\x52\x5d\xca\x0a\x25\x33\x24\xcc\x40\xfa\x94\x2e\xf7\x64\x81\x21\x97\x95\x92\x55\x7b\xa2\xaf\x59\x4f\xd6\xd9\x43\xc3\xf9\x10\xf5\x16\xd9\x36\x89\x80\xca\xcf\x59\xaf\x9e\xf7\x6b\x96\xf2\xc9\x4a\x39\x87\x1e\xa7\x6a\xde\x4e\xb3\x34\xf9\xd2\x5b\x67\x11\x87\xe7\x9e\xc8\x05\x5b\x78\x7e\xa0\x9e\x4d\x58\xdd\x28\x4a\x20\xcf\x95\x55\x76\x4e\xf1\x16\x33\x46\xe7\x32\x8f\xc7\xc0\xe5\x43\x3b\x8f\xf8\x5e\xf3\x72\x6c\x4f\x20\xea\x96\x77\xc8\x33\x2f\xb8\x3c\x33\x07\xf9\x6c\x3e\x18\x84\x20\xe9\x0e\x06\x16\x70\x04\x27\x89\x22\x73\x9c\x8d\x20\xc6\x5b\x58\xd7\xbd\xd0\x83\xf9\x67\x5c\x5e\x7f\xcb\x89\x8f\x07\x33\xdb\x4e\x25\x69\x96\x6d\xc4\x27\x30\x13\x50\x2b\xf5\x75\xba\xcc\x84\xf3\x0b\x55\x65\x93\x0b\xba\x91\xd2\x95\x20\xc7\x37\x6a\x5f\x9a\xdd\x78\x0b\x52\x92\xf5\x54\xa7\x54\x95\x55\xd2\x1b\xbd\x85\xae\xeb\xbc\x05\x9e\xa6\x8a\x45\x8b\x48\x4a\xe6\xbc\x20\x11\x4c\x13\x36\x2b\x80\xde\x35\x28\x9f\x15\x8d\xcc\x8e\xd6\x3e\x33\x61\x99\xb5\xc7\xd8\x38\xf9\xa9\xa9\xb9\x38\xf2\xa8\xa5\x69\x70\x63\x26\xf7\x61\xed\x3a\x6c\x8c\xc9\x8d\x59\xde\x18\xba\x66\x1f\x8d\xf5\xe1\x87\x72\x00\x55\xc5\x77\x34\xe1\x2a\x2e\xc2\x78\xcf\xc7\xa3\xb7\x83\x1b\xb9\x1d\x44\xfa\xee\x5e\x7a\xe0\x36\x7a\x4f\xe7\xd3\xb0\xb9\x0e\xe9\x49\x73\x1c\x24\x22\x37\x7c\x1f\x8a\xe8\x4e\x82\xca\xeb\xdb\x44\xad\xb5\xa8\x5e\x6b\x37\xca\x4d\x1a\x5f\x9f\x62\x5d\x71\x41\x07\xff\x99\x95\xb4\x14\xf1\x14\x40\x04\x33\x8f\x68\x14\x0b\xa8\x56\x7b\x68\x2d\x48\x84\xf9\x38\x38\x3a\x75\x1d\x2d\xd6\x1a\x7a\xb0\xff\x92\xdf\x31\xf9\xd2\xda\x81\x09\xdf\xc0\xe5\x42\x68\x9d\x74\x2e\xc0\xd0\x21\xe9\x66\x31\xa7\xf3\x7a\x31\x24\x78\xba\x18\x7d\x0c\x97\x4c\x9e\xbe\x71\x16\xfa\xd5\xdd\x82\xc1\xa9\x05\xe5\x5c\xea\x4f\x65\x9c\x14\x74\xce\x59\xeb\xb7\x34\x9c\x2e\x3a\xc8\xf3\xdc\x10\x60\xd4\x57\x8b\xa3\xd0\xde\x58\x68\x11\x5d\x58\x9c\x63\x14\x4c\x06\x5d\xd4\x7b\xbc\xf5\x3b\xf9\x42\x36\xe4\x33\x79\x71\xcf\xb9\xe9\x1c\xef\xe6\x5c\x28\x57\xc7\x17\xfa\x58\x48\x1d\xbe\x7c\x4a\xe2\x94\x4d\x4f\xea\x8f\x2f\x1b\x67\x33\x9f\xc4\x51\x8d\x28\x0c\x11\xf7\xd4\x67\xfe\x72\xf0\x55\xd6\x0c\xdf\x78\xc5\xea\x7c\xf6\x83\x40\xbb\x77\x0d\x57\x32\x73\x12\x72\x3c\x53\xd6\x75\xe3\x2e\x47\x92\x56\x44\x17\x64\x01\x3a\x17\xd8\x73\x3b\x72\x80\x14\x1f\x92\x50\x64\x99\x1a\xca\x63\x24\x12\x01\xc6\xa4\x45\xb5\xc4\x7c\x34\x55\x8a\xe2\xa5\x70\xf6\x4b\xe7\x53\x7d\x1c\xad\x2e\xa1\x2d\x06\x21\x1f\xf1\xcc\x62\x74\x57\x83\xc9\x63\xc6\xb1\x9a\x1e\xa3\xc7\xf4\xd0\x89\x01\x14\x99\x2c\xe0\x45\x4c\x60\xaa\x6a\xc4\xa7\xbd\xe0\xf1\xa5\x64\x0a\x08\xb8\x1a\x19\xf0\xe2\xa4\x97\x30\x2c\x39\xf4\x7b\xb3\x61\x52\x8f\x64\x04\x61\xac\xe0\xc0\x61\x59\x62\x4f\x1f\xc6\x89\x8f\x22\x26\x81\xc8\x83\xf7\xe4\xe4\xed\xb6\x28\xc3\xc5\x35\xeb\x9c\x20\xc2\xf0\xce\x84\x2b\x6b\xc0\x75\x2d\x8b\x22\x13\x8c\x91\x8c\xfd\x07\x0e\x7b\x16\xd7\x61\xfe\xa2\x9c\x59\x0b\xaa\x9e\xad\x31\xe6\x84\x57\xbe\xb8\x4a\x47\x12\xf8\x8a\x88\xa2\x1d\x44\xb2\x1c\x0c\xd0\x00\x1e\x54\xb4\x22\xf9\xb9\xdf\x5f\xc8\xa6\xd8\xdd\x26\xa7\x8d\x33\xdd\xd5\xe8\x23\x4f\xe4\xc3\x98\xcd\x3d\x01\x24\x9d\x22\x38\xf7\xba\xe8\x28\x2e\x7e\xcc\xb2\x92\xf6\x6d\x91\x18\x47\xd4\xfc\x18\xe9\x03\xbf\x70\x5d\x98\x5f\x44\x8a\xf8\x7a\x1d\x16\xd7\xe6\x37\xfe\x3e\x95\x56\x05\xf1\x2a\x9e\x27\x4c\x08\x99\x66\x9e\xe6\x17\xd9\x76\x71\x98\x4f\xa5\xed\x89\x1e\x42\x6b\x6e\x9a\xf3\xb2\x68\xcc\x0b\xd4\x81\x8c\x5e\x86\x53\x19\x29\x3c\x8e\xe8\xdc\xb7\x83\xe9\xc9\x9c\x9a\x23\x9c\x4b\x57\x9b\x0e\x6e\x75\xc9\xea\x1a\xcf\x62\x14\x17\x1f\xe3\xf5\x26\x01\xcf\xd4\x73\xad\xf4\x15\xe2\x3d\x91\x5b\xca\x91\xd5\x7e\xcf\x12\x15\xe5\x50\xe3\xa4\xf5\x1d\x17\xab\xe4\x1a\x95\xce\xc8\x68\x68\xe2\xda\x62\x4f\xbe\x49\xb2\xc5\xcd\xd7\xe2\x2e\x97\x57\xf4\x1c\x8f\xb2\x3c\x5e\xc5\x69\x98\xf4\x29\x8d\x46\x9b\xb0\xbc\xd6\x29\xc6\x0e\x96\x74\x95\x18\xa2\x5e\x94\xb1\x22\x7d\x58\xf6\xc0\x3f\x53\x0f\x0d\x5b\x35\x08\x5b\x12\x73\x84\x22\x9e\x80\x48\x51\x0b\x47\x0d\xae\xde\xc1\x1b\x2b\x7d\xd1\x20\x4f\xa0\xdf\x30\x37\x56\x31\x81\x35\xec\x45\xe6\xaa\xdf\x4f\x2d\x10\x13\xcd\xc5\x3e\x37\x33\x4c\x4f\xac\x05\x9f\xaa\x06\xa9\x88\x8c\xec\xd3\xc5\x60\xd0\xd7\x34\x23\x2e\x5e\xcb\xce\x40\x88\x32\x69\x67\x7a\x00\xef\x26\xa4\xc3\xc6\xc0\x95\x5f\xc0\xa9\x79\x63\x38\xdf\x93\x1f\xc2\xe2\xfa\x4f\x55\xc4\x51\x59\x23\x48\x9c\x17\xbc\x92\xd7\xd1\x9f\xaa\xe2\xf5\xb7\xc8\xb8\xf6\x40\x88\x44\xd4\x0f\xe0\xd8\x78\x45\x6d\xf0\x4a\x28\x19\xa7\xd5\xb3\x25\x84\x3e\x96\xca\x12\x73\x7f\x05\xa1\x2a\x4b\xb2\xa0\x8b\xa1\x65\xc1\x7b\xc1\xf8\xf2\x29\x33\x08\xaf\x81\x87\x39\xe0\x17\x1a\x8d\x94\x16\x94\x7e\xe0\x1d\x10\xda\x50\x5c\x24\xb3\x9f\x45\x87\xe7\xfc\x89\x85\x5e\xa7\x9f\xc3\x24\x8e\x7a\x1c\x8f\xbc\x1e\x1a\x2e\x24\x0e\xa9\x1a\x67\x6c\x38\x94\x3b\x41\xf1\x71\x91\x01\x3d\xb4\xc5\xb9\x51\x24\xd4\x26\x73\xbc\x17\x7a\x29\x12\x09\x15\x02\xf1\x8e\x17\xf4\x24\x6a\xcc\x40\x24\x3d\x84\x0b\x19\x37\x2e\x24\xeb\xc8\x14\x05\x10\x2b\x9c\xc2\xc9\xbe\xde\x70\xfb\x8d\xf6\xc5\x1d\x16\x33\xab\x7d\x9b\x45\x0c\x82\x25\x51\xf3\xa2\x57\x93\x85\x70\x7d\xb8\xcf\xdc\x37\x5f\x1f\x5e\xfc\x78\xf9\xfa\xc5\x9b\x4f\xef\x5e\xbc\x7d\x25\xa7\x3e\x05\xa2\xa0\xc7\xb8\x27\xdf\x86\x65\xf8\xa7\x2a\xfd\xf6\xc5\xe5\x0b\xa4\xe9\xfe\x7c\x4f\x04\x27\xf7\xa7\xea\xf8\x78\xf9\xe3\xeb\x77\xdf\xcb\x5a\x34\xbc\x4d\xf8\x76\x02\x85\x63\x6c\x5a\xb2\x15\x3b\x24\xe9\xf7\xa2\xed\xbb\xcb\x57\xdf\xbf\xfa\xb1\xb3\xb9\x58\xd4\x67\xf2\x32\x66\x8b\x27\xe2\xea\xcc\x9a\xe3\x3d\xf9\x46\x28\x94\xfc\xa9\xa6\xbf\x79\xff\xfe\xcd\xab\x17\xef\x64\xd3\xf3\x2c\x4b\x8e\xb5\x84\xca\x7c\x0b\x1a\x80\x73\x4e\x27\xd6\xeb\x3f\x4f\x27\xa0\x0c\x52\xf4\x1e\xde\xe0\x2c\xb2\xbe\x15\x3d\x38\x55\x53\xa7\x0b\xbb\xfd\x74\x25\xdc\xce\xe6\x34\x51\x8f\x07\x77\xc0\xe6\xc5\x26\xa5\xf4\xda\xe4\xa2\xf4\xa9\xfd\x34\x19\x7d\xf9\x42\xb5\xec\x94\x88\xba\x38\x00\x8d\x8e\x1c\xea\x55\x74\xdf\xd5\x82\xe4\x2d\x5d\x25\x00\x01\x47\xff\x05\x41\xd2\x0c\x06\x48\x50\x71\x91\x3e\x57\xe9\x36\xae\xaa\x56\x92\x83\xf7\x7b\x83\xbd\x97\xf7\x94\x5f\xbe\xd0\xdd\x5e\xf1\xda\x65\x1e\x2e\x1a\x71\x34\xf6\xe4\xe4\xcb\x17\x6f\xb7\x27\xc5\x97\xf5\x3c\x4b\x8a\x4f\xde\x4e\xf8\xec\x72\x49\x9e\x65\xa5\x37\x26\x35\x37\xec\x4d\xc8\xab\xf7\xdf\x79\xe7\xfa\x84\xe2\x82\x14\x40\x03\xe4\x0e\xe0\x3d\xae\x33\x7b\x4f\x48\xb6\x61\xa9\xfa\xf2\x94\x2c\x92\xac\x60\xb0\x17\x7b\x8e\x0d\xdf\xe4\x8b\x43\xd4\x66\xe7\x39\xae\x12\x1d\x3d\x67\x4c\x5e\xbe\x7f\x77\xf9\xea\xdd\xa5\xe7\x4c\xc8\xcb\xf7\x6f\xdf\xc2\xe3\x39\x79\xff\xe1\xd5\xbb\x4f\xdf\xbc\x79\xff\xf2\x6f\x9e\x73\x41\x60\xe3\xf5\x9c\xc7\xe4\xe5\x9b\xf7\x1f\x5f\x79\xce\x13\xf1\xfd\xf5\xbb\x7f\xbc\xfa\x91\xbf\x3f\x15\xef\xaf\xde\x7d\x2b\x8a\xb8\x36\x01\xea\xe9\x3a\xf0\xc1\x73\x5d\x91\xe1\xa7\x77\xaf\x3e\xbe\x7c\xf1\xe1\xd5\xb7\x9e\x3b\x16\x75\x99\x49\x13\x91\x49\xd2\x1a\xcf\x3d\x27\x06\xff\xe1\xb9\x17\xea\xf5\x93\x30\x22\xb5\x3d\xf7\xb1\xe8\xd9\xa7\x9c\x6d\x58\x19\xcb\xc4\x27\x32\x51\xe7\x7a\x0a\xe2\x31\x54\x32\xe6\x1d\xe3\x30\x1d\x3b\x44\x90\x0e\x6f\xec\x12\xb9\xac\xbd\xf1\x98\xc8\x65\xe6\x8d\x65\x67\x3e\xbe\xfa\xf9\xc3\x8f\xde\xf8\x5c\xf6\x56\xbe\x5e\x88\x8b\xab\xf1\x63\xf8\x35\x9a\xff\xb4\x49\xb6\x85\xed\x8d\x9f\xc0\x87\x8f\x6c\x05\x93\x34\x7e\x4a\x4e\x5e\x7f\xeb\x4d\x6c\xf2\xea\xef\x3f\xbd\x78\xf3\xd1\x9b\x38\x84\x13\x3f\x6f\xe2\x02\x9c\x64\xbe\xc2\x9b\x8c\xc9\xc7\x57\x1f\xbc\xc9\x84\x3c\x10\xee\xba\x3c\x9b\x3c\x60\x69\xe4\x39\x7b\x52\xb2\x7c\xcd\xa9\x0d\xc7\x1d\x57\x9d\xf2\x93\x73\x0f\xbd\x7a\xff\x1d\x22\xce\xc4\x43\x72\x26\x11\x71\xce\xf9\x0b\xcc\x25\x22\xce\x85\x87\xea\xd9\x44\xc4\x79\xe2\x21\x18\x0c\x22\xce\x53\xf9\x49\x4e\x24\x22\xae\x2d\x53\xd4\x54\x22\xe2\xba\x22\x09\x11\x77\x2c\x3f\xea\x39\x43\xc4\x9d\xc8\xda\x1a\x89\xe7\x32\xa3\x9c\x4a\x44\xc6\xae\xa7\x48\x35\x19\x8f\x3d\x4d\x48\xc9\x78\xe2\x69\xd2\x46\xc6\xaa\x1c\x80\x19\x91\xf1\x85\xaa\x5c\x26\x4c\x6c\x8f\xb3\x0e\x64\xe2\x78\x48\x80\x12\x91\x89\xeb\x89\x9d\x84\x4c\x26\x1e\xfa\xf8\xea\x03\x82\xa3\xb1\x68\x0b\x6b\xaf\xf8\xe4\xf9\x36\xf1\xc7\xc4\x0d\xf8\x7f\x27\x20\xfe\x05\x3c\x5f\x90\xb1\xf1\xec\x18\xff\xed\x80\xf8\x13\x78\x9e\xc0\xd7\x27\x90\x53\xfd\x77\x3a\xff\x3b\x0e\x7c\x7e\x0a\xff\x1d\x5b\xfc\xb8\xe4\x44\xfe\xc2\xcf\x98\x4c\x02\xe2\x3f\x86\x3a\x9d\xc7\x22\xed\x31\x94\x1e\x3b\x5f\xf3\xc3\x0b\x8c\x65\x01\xd1\x90\x2b\xba\xdc\xfc\x19\xdb\xd0\x82\x2b\xca\x4d\xc6\x90\x73\x22\x86\xee\x3e\x86\xd1\xb9\xa2\x16\xf7\x89\x78\x7b\x22\x0a\x3c\x15\x6f\x4f\x45\x2d\x4f\xd4\x8f\x1b\x04\x64\xc3\xf2\x65\x96\xaf\x5f\x2c\x9a\x8a\xd2\x21\x99\x73\xf6\x9e\xac\xc8\x92\xef\x00\x21\x5d\xea\xbb\xf5\x69\x71\x1b\x97\x8b\x6b\x6b\x85\x77\x8b\xb0\x60\x3d\xc7\x53\x27\x78\xec\xb6\xc7\x1a\x52\xf3\xd2\x0f\x4f\x9d\x40\xc8\x9f\x9f\x1e\xe0\x29\xe4\x77\x8f\xe7\xf7\xdb\x79\xc7\x82\x1b\x7b\x40\x3b\xf3\xca\xea\x97\x7e\x68\x94\x9b\xe7\x2c\xbc\x11\xa5\x27\xc7\x4b\xf3\xa2\xee\x1f\xd7\x70\x7e\x7f\x0d\x27\xaa\xac\xdf\x5d\xfc\xe2\xde\xe2\xdd\x65\x1e\xdf\x3b\xe4\xae\x12\x4f\xfe\x74\x89\xa7\xaa\x84\xcf\xbb\x11\x98\x9f\x1c\xdb\x13\x40\x11\xfc\x2e\xff\x2e\x59\x88\x07\x54\x7c\x68\xe4\x76\x9a\x6d\x6b\x51\xb1\x09\x60\xad\x21\xf0\x47\xf0\x76\xdc\xaf\xaa\xaf\xa3\xda\x23\xf5\x69\x04\xe2\x59\x1a\x5f\x26\x47\xbf\xb4\x26\xdd\x10\xc8\xc4\xac\x9d\x74\xb6\x74\xd1\x2e\xa5\xd9\xb3\xe3\x73\xed\xb4\x26\xdb\x3c\x28\x52\x8b\x07\xbc\xdf\xc9\xd1\x27\x06\x18\x94\x59\x71\xbb\xca\x27\xff\xf9\x2a\x35\xba\xec\x60\xeb\x97\xb5\x80\x3c\xeb\x35\xcb\xef\xcd\x72\xae\xfd\x1f\xef\x8a\xeb\xfc\xe7\xab\x6c\xa1\x9c\x71\xbc\xd2\x42\xba\x13\x51\xdb\xf8\xde\xda\x34\xc2\x25\x96\x81\xec\xcd\x3c\x2d\xba\x54\x1f\xa1\xf9\xa2\x41\x7d\xfb\x20\x6a\xc0\xc7\xf1\xdb\x3d\xbf\xaf\xaa\x40\x02\xa3\xb3\xe4\xc5\x31\xfc\x77\x5b\x48\x59\x8b\x6e\xc7\x11\xd9\x6d\x61\x9d\x21\x81\xdd\x53\xe8\x69\x6b\xb1\xd7\xb2\xd3\xf1\x42\x63\xfb\x58\xbf\xc7\x8e\xa2\x5c\xfa\x6c\x4d\x9d\x3d\x76\x91\xae\x71\x6b\xde\xd5\x59\x49\x67\xd3\x27\xa2\xc8\xd8\xa4\x9b\x0a\xad\x9a\xb5\xb6\xf7\x9c\xa6\x54\x7e\xcf\xb8\xda\x5b\x4d\xab\xe0\xfd\x73\xd1\x5d\x65\x7b\xfb\xe9\xac\xf2\xe8\x54\x35\xeb\x6a\x21\x85\x3a\x11\xb8\x67\x40\x6d\x94\x88\xfe\x20\xff\x53\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\x7c\x7c\xdb\x9c\x3c\x39\x2c\xbc\xdf\x93\x32\x9c\x27\xcc\xf3\x77\x63\xcf\x21\x13\xcf\x25\xe7\x9e\x0f\xdc\xde\x13\x6f\x42\x9e\x7a\xe7\xc4\x71\xbc\x0b\xe2\xb8\xde\x63\xe2\x8c\xbd\x27\x9c\xd5\xf7\x1d\xf2\x34\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\xf8\x7f\xb7\x3d\x97\xb8\xb2\x45\x17\xea\x9b\xa8\x07\x9d\x72\xa1\x1e\x9e\xca\x07\xd7\x56\x0f\xae\x7a\x18\xab\x07\x59\x6a\x4f\x76\x13\x2e\x71\x5e\x70\xb9\xf4\x31\x17\x46\xff\xfb\x80\x73\x1d\xd5\xe4\x93\x3f\x1c\xd1\x89\x6a\xd6\x75\xff\xff\xd9\xac\x00\x1f\xff\x2c\xe0\x07\x4f\x75\xda\x85\x7e\x7a\xaa\x9e\x44\xcd\xf0\xe4\xea\xa7\xb1\x7e\x52\x65\x75\xd5\x13\x5d\xf5\x44\x57\x3d\xd1\x55\x4f\x74\xd5\x13\x5d\xf5\x44\x57\x3d\xd1\x55\x4f\x74\xd5\x93\xba\xea\x73\x5d\xf5\xb9\xae\xfa\x5c\x57\x7d\xae\xab\x3e\xd7\x55\x9f\xeb\xaa\xcf\x75\xd5\xe7\xba\x6a\x03\x20\x17\xba\xea\x0b\x5d\xf5\x85\xae\xfa\x42\x57\x7d\xa1\xab\xbe\xd0\x55\x5f\xe8\xaa\x2f\x74\xd5\x17\x80\xb4\x8f\x3d\x77\x4c\x5c\xc7\x73\x27\x64\x6c\x7b\xee\x39\x39\x99\xd8\x30\x63\x4f\x02\x2e\x79\xf2\xa7\xc7\x01\x99\x8c\x3d\xf7\x42\x66\x7f\xda\xc8\xfe\x07\xb9\xb9\xb0\xf6\x27\x72\x3b\x5f\x9d\xdb\x75\xbc\xf1\x98\xb8\x17\xde\xd8\xe5\xc2\x37\x27\x28\x93\x80\x8b\xde\xfc\xe9\x3c\x30\xcb\xaa\xfa\x61\xd4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x0d\x4f\x5b\xc3\xd3\xd6\xf0\xb4\x35\x3c\x6d\x80\xa7\xed\x8d\x2f\x20\xbf\x43\xc6\x8f\xc5\xd2\x1d\x3f\xf9\x9f\x52\x3a\x68\xfe\xf1\x1f\xaf\x9c\xc7\xde\xf8\xe9\x7f\x8f\xcc\x9d\xb4\xd7\xe9\xc5\x57\x10\x3c\xc0\x1d\xe7\x09\x4f\x99\x70\x38\x7c\xed\x44\xdb\xde\xc4\x69\xc0\x48\xd6\xe1\xaa\x67\x97\x4c\x78\xab\x13\xfd\xf4\xc4\xe3\x72\xbe\xab\xde\xc7\x63\xfd\xa4\xf3\x8c\xcf\xf5\xd3\x85\x7a\x9a\xd8\xfa\x49\x95\xd5\x2d\xb8\xe7\xaa\x05\xfe\x24\xca\xb8\xe7\xf5\xf7\xf1\x13\xf5\x9d\x3f\x89\xb6\xe1\x69\xac\x9f\xea\xaf\xe7\xfa\xe9\x42\x3d\x89\xb6\xc7\x4f\x54\xdb\xf0\x04\x53\x30\x01\x7a\xe1\x3a\xde\xe4\xbc\x0b\x4d\xc5\xf8\x6d\x3d\x7e\x5b\xb5\x0e\x4f\x63\xfd\x54\x7f\x3d\xd7\x4f\x17\xea\x49\x8e\xdc\xd6\x23\xb7\x45\xeb\xf0\xa4\x21\x7e\x32\xb9\x30\xc0\x0f\x53\xe1\x8a\x2e\x3e\x31\xa6\xc2\x81\xa9\x3d\xb7\x89\xfb\xd8\x9b\x3c\x3d\xda\x65\xbe\xfe\xe4\xa0\x27\x06\x18\xcf\x75\xaa\x09\xdc\x0b\x9d\x7a\x51\xaf\x48\x47\xaf\x48\x47\xaf\x48\x47\xaf\x48\x47\xaf\x48\x8d\xa4\x6a\x5b\x96\x4f\x63\xfd\xa4\xca\x0a\x38\x9f\x3b\x1d\x9d\xfe\x9f\x72\x03\xa2\xf7\x7f\xbc\x4a\x26\xde\xb9\xfb\x1f\x59\xff\xe7\x5f\xb1\x22\x05\x3e\xeb\x0d\xd3\xd5\x1b\xa6\xab\x37\x4c\xfe\x74\x22\x6a\x74\xf5\x8e\xe9\xea\x1d\xd3\xd5\x3b\xa6\x6b\xec\x98\xae\x9e\x19\x57\xcf\x8c\xab\x67\xc6\xd5\x33\xe3\xea\x99\x71\xf5\xcc\xb8\x7a\x66\x5c\x3d\x33\x6e\xdd\x5b\xe7\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xf1\x89\xae\xd1\x44\xd8\x73\x81\xb0\x17\x6a\x05\xf1\xf7\xa7\xde\xf9\x98\xd3\xa6\x0b\x9b\x8c\x1d\xef\x7c\x22\x37\x8d\xf3\xc7\x6a\xd3\x38\x97\x2b\xda\x21\xe7\x4f\xc5\x9a\x72\xc8\x85\xa3\xd7\x14\xa7\x11\x8f\xbd\xf3\x73\x32\x7e\xe2\x5d\xb8\x64\xfc\xd4\xbb\x18\x4b\xac\xba\x98\x74\x51\x39\xf9\xcd\x44\xfa\xc7\x9a\xa2\x3c\xd6\x14\xe5\xb1\xa6\x28\x8f\x35\x45\x79\xac\x29\xca\x63\x4d\x51\x1e\xeb\x05\xf3\x58\x53\x94\xc7\x06\x14\x1f\x6b\x28\x3e\xd6\x50\x7c\xac\xa1\xf8\x58\x41\xf1\xc4\x79\xac\xc1\xf8\x58\x83\xf1\xb1\x06\xe3\x63\x3d\xe7\xae\xde\x1f\x5d\xbd\x3f\xba\x7a\x7f\x74\xf5\xfe\xe8\xea\xfd\xd1\xd5\xfb\xa3\xab\xf7\x47\x57\xef\x8f\xae\x5d\x57\xad\x17\xba\xab\x17\xba\xab\x17\xba\xab\x17\x7a\xbd\x1b\xb9\x7a\xa1\xbb\x7a\xa1\xbb\x7a\xa1\xbb\x4e\x4d\xc5\x2e\x2e\x0c\x44\x70\x8d\x74\x18\xd9\x7f\x64\xd1\x4f\xbe\x62\x21\x8a\x2d\x66\xa2\xb7\x98\x89\xde\x62\x0c\xda\x38\xd1\xdf\xf9\x93\x24\xf2\x13\x4d\xe4\x27\x9a\xc8\x4f\x34\x91\xd7\xf5\x4c\x34\xb5\x9d\x4c\x34\x91\x37\xeb\xbe\xd0\x75\x5f\x04\xe4\x44\x16\x32\x80\xe3\xea\x0c\xfc\x49\x34\x0e\x4f\x63\xfd\x54\x7f\x3d\xd7\x4f\x17\xea\x49\x34\x0e\x4f\xaa\x6c\x5d\xb7\xc6\x74\x57\x63\xba\xab\x31\xdd\xd5\x98\xee\x6a\x4c\x77\x35\xa6\xbb\x1a\xd3\x5d\x8d\xe9\xee\x63\xa3\x6e\xbd\x2f\xbb\x7a\x5f\x76\xf5\xbe\xec\xea\x7d\xd9\xd5\xfb\xb2\xab\xf7\x65\x57\xef\xcb\xae\xde\x97\x5d\x83\x72\xb8\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x75\xdd\x4f\x8d\xd5\xaf\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\xac\x77\xf4\xb1\xde\xd1\xc7\x7a\x47\x1f\xeb\x1d\x7d\x6c\x4b\x1e\xec\xe2\xc9\xbd\x9c\xd7\x49\x83\xf5\x12\x5d\x71\x75\x57\x5c\xdd\x04\x7f\x7a\xea\x5d\xa8\xfd\xfd\xb1\x6d\xe0\x92\x9e\xce\x89\x9e\xa6\x89\x9e\xa6\x89\x31\x39\xff\x41\xb6\xc5\x81\x5e\x38\xf7\x31\x30\x9c\x0c\xeb\x91\xe8\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x1b\xeb\x09\x83\x27\x55\x42\x93\x2b\xbd\xfb\xb9\x7a\xf7\x73\xf5\xee\xe7\xea\xdd\xcf\xd5\xbb\x9f\xab\x77\x3f\x57\xef\x7e\xae\xde\xfd\xdc\xfa\x90\xc0\xd1\xa7\x04\x8e\x3e\x26\x70\xf4\x39\x81\xa3\x0f\x0a\x1c\x7d\x52\xe0\xe8\xa3\x02\x47\x9f\x15\x38\xfa\xb0\xc0\x81\x5e\x8f\x81\x74\x9d\x3c\x36\xf9\x69\xbd\x6a\x26\x7a\x35\x4c\xf4\x6a\x10\xec\x9e\x06\xb9\xe4\x9a\x2e\xea\xfd\xf2\xf1\xf8\xab\xf7\xcb\x7b\x39\x7f\x31\x69\x8e\x9e\x34\x47\x4f\x9a\xa3\x27\xcd\xd1\x93\xe6\xe8\x49\xd3\xfb\xf0\xd8\xd1\x93\xa6\x51\x63\xec\x18\x08\xa1\xe5\x86\xb1\x96\x04\xc6\x5a\x12\x18\x8f\x83\x7d\x40\xa4\xd7\x34\x71\xd9\x57\x78\x3b\x31\x3d\x1a\xe8\x01\x39\xb7\xf5\xee\x01\x2a\x19\x60\xdb\xdd\x32\x72\x10\x1a\x55\xc2\xea\x3b\x04\xd3\x0b\x9e\xd3\x3b\xb4\x67\xf2\xed\x80\x44\xd4\x4f\xb7\x49\x12\x10\x46\xfd\x80\x48\x95\x1d\x38\x15\x23\x10\x4a\xfd\x9a\xda\xe4\x86\xda\x24\xa5\xf2\xa8\x36\x61\x77\x2c\x1f\x81\x67\xb9\xcd\xb6\xb4\x94\xfe\x8a\x48\xfe\xf2\x85\x4a\x8d\x8c\xa9\xfc\x15\x1f\x68\x9d\x47\x2a\x5b\x7f\xf9\xa2\x54\x55\xf8\xab\x69\xd4\xa6\x6d\xda\x1a\xf5\x26\x49\xb6\xd0\x16\xf5\x46\x1a\xdd\xed\xf1\x34\xa4\x07\xe9\x53\x26\x0e\xfa\x42\xe1\xde\xa3\x34\x73\x48\x47\xd8\xd2\x1b\x6c\x23\x6d\x94\x87\xe9\x8a\x15\xd3\x2e\xaf\x11\x8d\x7e\x03\x78\x55\x87\xea\x14\x7a\x98\xa9\x76\x32\xb0\x26\x09\xd9\x92\xdf\xc8\x2d\x78\xfc\x22\xc5\x74\x8a\x77\x5b\x3a\xf7\xe7\xfa\xea\x36\x98\x4a\xf7\x57\xa3\x26\x26\xf8\xdb\x00\xff\x46\xbb\x3f\x88\x68\x12\xd2\x62\x88\x52\xba\xae\xaa\x2e\x68\xae\xf1\x9a\x0a\xfb\x04\xb2\x36\x81\x91\xb0\x3b\x0b\x57\x95\x43\x94\xf3\xca\xda\xa8\x70\x3d\x18\x58\x32\xaf\xd2\x9d\xf1\xd7\x41\x55\xad\xf1\xf4\x37\xba\xf2\xb7\xc1\x60\xc0\xff\xfb\xeb\x60\x1f\x2f\xad\x46\xa3\xaa\x8a\xdf\xaa\xaa\xff\x9b\xd6\x8e\x3d\xe9\xff\xa6\xfd\x7a\x7d\xa6\x08\x81\xd9\x70\x8a\x77\x05\xf5\x03\x80\xd2\xa6\x17\xa7\x3d\x5e\x27\x16\x78\xa8\xf5\x2e\xfc\x4d\x30\x18\xb8\xcf\x36\x83\x81\x74\x8f\x88\x1e\x4a\x3f\x2a\x8d\x3c\xc2\x27\xc0\x67\x73\x7c\xc5\x75\x76\xfb\x41\x3a\x99\x9a\xa1\x0f\x7c\x5a\x7a\xa0\xc0\xd1\xcb\x52\xf0\xab\xd0\x43\x43\xeb\x7a\xe8\xe0\x21\xf2\xae\x52\x59\xe9\x61\x51\x0b\x0f\xd1\x55\xfa\xea\x6e\xc3\x16\x65\x9c\xae\x7a\x68\x58\x48\xe5\x41\xd2\x43\x78\x88\x48\x6f\x95\x95\xbd\x87\x68\x68\xb5\x7b\x25\x20\x36\x04\x7f\x2b\xf7\x37\xdf\xfb\x29\x65\xd0\x00\x8b\x78\xaa\x43\xe9\x7a\x86\x58\x1a\xf5\xb2\x65\x2f\xe6\xab\x0d\x79\xe8\xfe\x16\xf0\xb4\x85\x8f\xd6\x67\xb2\x83\x40\xe3\xc6\xb0\x40\x5d\x97\x94\xd9\x0d\x4b\xbd\xce\xaa\x08\xe8\xf5\x37\x97\x54\x9c\xb2\x34\x23\x49\xb6\xf0\x42\xa2\x3a\xe9\x15\x7b\xbc\xe7\x53\xcf\x67\xd5\x50\x43\x07\xe3\x9f\xc1\xc0\x79\xf6\x5b\x53\xc9\x53\xf4\x48\x02\x41\x50\xae\xda\x3e\x38\x14\x08\xdd\xdb\x64\x45\x11\xcf\x79\x42\xd9\x03\x5d\x2b\xaf\x87\x86\x27\x5b\x0e\x61\xd1\xe5\x1e\x1a\xae\xb1\xd2\x71\x10\xf8\x24\xd5\x1c\xe6\x02\x35\xd6\x78\x2a\x95\x41\x1b\x43\x28\x21\x20\x0a\xeb\xf8\xc2\xe9\x05\x9e\xca\xd2\xbf\xf9\x4e\x80\xa7\x6b\x30\xa8\x98\x26\x33\x6b\x4d\x13\x92\x48\x0b\x0c\xeb\xa6\x45\x68\x58\xba\x22\x4b\x7a\xd0\x0c\xb9\xa6\x5d\xd0\xeb\x20\x53\xc4\x7e\x96\x0e\x06\xe9\xe9\x69\xf3\xe2\xcd\x2b\xb4\x85\x9b\x56\xa6\xf1\x79\xcf\x02\xdf\x09\xa6\xb7\xa3\x07\x34\xf2\x95\x06\xed\x69\xc1\x53\x3e\x3d\x68\x9a\x6a\xf8\x2a\xfe\xc4\xa9\x55\x54\x95\x83\x03\xc3\xde\xc5\x34\xde\xa8\xf3\x39\x41\x6d\xb8\xd2\x32\xd8\x38\x56\x99\xf8\xde\x34\xfb\x38\xac\x50\x7c\xd9\x4f\xcb\xc1\xc0\xe2\x1d\x15\x34\x96\xfa\x1d\xd5\xc2\x17\xbe\x2d\x19\xdf\x4e\x1c\x95\xee\x04\x01\x9e\x6e\x25\x64\x4c\xb5\x18\xa1\x4f\x79\x4b\x96\xe4\x86\x5c\x13\x49\x82\x09\x87\x17\xa8\xc0\x4f\x9b\xd4\xa9\x26\x70\x5b\xa5\xf0\xb8\x9d\x16\xe0\xe8\x43\x19\x01\xd8\xe4\xd4\x7d\x54\x60\x12\xd1\xa8\x4e\x71\x78\x0a\x44\xfd\x30\x53\x34\xe2\x1c\x9b\x30\x3b\xd0\xf8\x78\x3b\x7a\xa0\x31\xf0\x16\xee\xd7\x38\x1d\x35\x36\x00\x37\x08\xfc\xc6\x7e\x10\x68\xb4\x6c\xde\xc5\x79\xca\x07\xc9\x7e\x5f\x3f\x91\xf9\xa1\x4d\xd8\xee\xd5\xfb\xef\x3c\xe7\x38\xb3\xa0\xf6\x1b\xbd\x1f\xe3\xe6\xab\x49\x4b\x78\x01\xe1\xa3\xe3\x80\xc5\x50\xfc\x40\x83\xcb\x10\xb7\x88\x40\xb9\x94\x5a\xff\xa7\x75\x96\x4b\xbd\xe8\x4f\x09\x2b\x24\x9a\x47\x59\xca\x68\xdf\x51\x3c\x83\x58\x2e\x54\x31\x0a\x1c\x18\x8a\xfb\x10\xeb\x4b\x94\x02\x3a\xc6\x22\xe3\x85\x6f\x29\x52\x73\x36\x15\x41\x92\x3f\x96\xe1\xe2\x86\xfa\xe8\xf5\xbb\xd7\xa0\x0d\x17\xe8\x36\x80\x77\x30\x56\x8c\xd3\xc4\x79\xdb\x58\x24\x4e\x03\xc3\x6d\x69\x4b\xd6\xe4\x18\x14\x2b\x20\x6a\x56\x28\x6e\x13\x5b\x69\xe7\x48\x77\xa6\x76\x33\xec\x77\xdc\x04\x9a\xf2\x86\x67\x40\xce\xb7\x03\x73\xe8\x43\x05\x49\x01\x97\xe1\xd0\xac\x5d\xbd\x01\x30\x74\x4e\x09\x27\xfe\x1e\xca\x58\xda\x67\xd6\xcc\xbb\xca\xaf\xd2\x59\x75\x95\xe2\xd1\xa3\xb3\x15\x9e\x59\x0d\xe0\x0f\x87\xc4\x1c\x8e\x86\xc5\x70\x28\xcd\x91\xcc\x0f\x02\x30\xba\x2b\x2d\xb8\x1c\x80\xc5\x77\x02\x95\x57\x22\x87\xf1\x5c\x5b\xe1\x9c\x68\x53\x46\xb2\x3d\x40\x2d\x69\x90\xaf\x5c\x1b\x46\x34\x94\xde\x8f\x1a\x23\x3b\x5b\xe1\x46\x3b\xe1\xd0\x78\x3b\x44\x28\xf1\x3c\x2a\xb6\xf3\xa2\x84\xe8\xea\x46\xa2\x5c\x91\xf3\x53\xa7\x31\x9f\xa7\x74\xae\xb8\x4f\x80\xec\xbd\xbd\x10\x38\x6a\x66\x6e\xb4\x24\xd2\xb4\x87\x9c\xe9\x11\x24\x67\x51\x57\x39\x16\x19\x25\xeb\x67\x03\x2d\x61\x5e\x4f\xa9\x99\xcf\xb0\xb7\x36\x27\xe8\xe8\x1a\x31\x73\x76\x6e\x27\x4d\x1c\x6a\x2d\xa9\xc3\xd2\x1d\xfb\x47\x34\x3b\xb1\x54\x17\x4d\xe7\x60\xc7\x0a\x7b\x36\x1e\x86\xbe\x76\x2c\xa4\x8a\x06\x3a\xc1\xb7\xd5\xf3\xd1\x0e\x9c\xce\xff\xc4\x92\x96\xdb\x93\x1d\x0c\x8d\x65\x78\x3a\x6f\xc7\xf3\xe7\x74\xce\x5c\xd7\x06\xf5\xeb\xb7\x68\x00\xa7\x83\x87\x74\x13\x70\xde\x32\x91\x05\x16\x46\x88\x31\x17\xe8\x8a\x36\xb9\x6d\x50\x8e\xaf\xc2\x93\x03\x9c\x53\x23\xb0\x5c\xfb\x99\x86\x3b\x1a\x8d\x46\x10\x94\x7b\x18\xaa\xea\x4e\x5d\x1b\x6b\xb7\x6f\x67\x57\xe9\xd9\x8a\x20\x84\xf7\x64\xbb\x59\x64\xeb\x38\x5d\xfd\x61\xcf\xa6\xae\xfd\x3c\xac\x0d\x58\xc3\x61\x93\x00\xa8\x4e\x9f\xb8\xf6\xa9\xca\xa6\xad\xef\xad\xb0\xce\xe0\xda\x78\xd8\xdd\xd9\xce\xfe\x99\xec\xfc\x91\xee\x69\xc0\x5a\x98\xcc\x85\x11\xbb\xa5\x6a\x1f\x3a\x58\x72\xfc\xa7\xb5\x73\x51\x49\x51\x1a\x43\x17\xa2\x02\xd8\x79\xff\x8a\xf6\x24\xe5\xec\xf7\xa1\x83\x63\xd8\xf4\xb0\xe9\x69\xf3\xd5\xfb\xef\x4c\x6a\x55\x55\x96\xb1\x39\xda\x62\xb5\x82\xda\xaf\xb1\x95\xaa\x4c\x06\x69\x91\x14\x0d\x19\x31\xc9\xd4\x8e\x2b\xbd\x6e\xfc\xb8\x4d\x58\x61\x61\xc2\x77\xd5\xd5\x33\x1d\xa8\x6c\x35\x1c\xe2\x78\x69\x59\xf3\xc6\x74\x88\x0d\x03\x52\x72\x5e\xce\x67\xfe\x2a\x08\x20\x8c\x70\x3f\xac\xaa\x79\xbd\xbe\x9e\x87\xf5\x33\xc4\x4e\x0c\xe9\x9c\x44\x74\x45\xfa\x8d\xc5\xb5\x4c\xd8\x1d\x16\xbc\x0c\xb8\x36\x07\xab\x14\x0a\x65\x8f\x6d\x4e\xb8\x49\x57\xe8\x89\xb6\x51\xfb\x1a\x4a\x55\x73\xb5\xff\x0d\x42\x65\xd0\xa6\x06\x9d\x9a\xcf\x1a\x7c\x9a\xde\x1f\x1a\x89\x72\x3c\x57\xf9\xec\x2a\x9d\x9d\xe1\x23\xa4\xc8\xdc\x43\x0d\x10\xee\x5b\xdb\xbe\x66\x04\xd4\xee\xde\x4c\x60\x45\x93\x33\xa0\x87\xbb\xd7\xd7\x13\x39\x63\x87\x23\x26\x7f\x41\x8d\x06\x14\x63\x23\x89\x9a\xf3\x07\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\x70\xb9\x1f\xca\xd8\xf7\xd2\xc3\x82\x8c\x03\x23\x4b\xce\xd4\xc2\xf5\xda\x72\x37\x7a\xc3\xee\xe2\x45\x98\x1c\x0a\xfb\x2d\xd4\xc3\x43\x34\xea\xfd\x94\xe6\x6c\x91\xad\xd2\xf8\x77\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\xc0\xe7\x31\x97\xe2\xed\x72\xd9\x86\x37\xd2\x20\x4f\x7f\x58\xb4\xe8\x9a\xeb\xfb\xe6\xff\xc4\x09\x02\x41\xc2\xf6\xa4\xfc\x53\x1d\xbc\xaf\x56\x38\x89\xdd\x16\xd7\xad\xea\x14\x84\x00\x70\x00\x13\xb9\xec\xbc\xdd\xfe\x0f\x4c\x3a\x5a\xce\x38\xa3\xda\xf5\xaf\x22\xed\xf3\x16\xa7\x1a\x92\xb9\xe2\x43\x22\xbc\x97\x27\x23\x91\x3c\x16\xb1\x3d\x74\x75\x75\x75\x25\xcc\xe8\x54\x39\x58\x91\xa7\x2e\x9e\x59\x2b\xcb\x26\x8e\x54\x4f\x15\x9d\x45\xeb\x2d\xc2\x98\x97\xea\x2a\xe3\x74\x97\x61\xa2\x50\xbb\x1a\x61\x6d\x2e\xcf\x5e\xe4\x30\x9c\x49\x43\x77\xdd\xab\x93\x9b\xd6\x27\x62\x45\xc9\x89\xb2\x30\x51\x19\x94\xec\xdb\xe3\xdd\x98\xc8\x6e\x98\xf9\xce\x95\x71\x89\xcc\x37\x3e\x97\xea\xc1\xe7\x3a\xe5\x42\x99\x7f\xc8\x04\xf7\x5c\xd9\x76\xa8\xde\x5c\x28\xd3\x0d\x95\xc3\x56\x96\x19\x2a\xc7\x53\x6d\x8f\xd1\x4e\xd1\x63\x72\xc7\xda\x6a\x42\xa5\xb8\x4d\xbb\x87\xba\xdf\x53\x13\x76\x8b\x6c\x8d\x70\xcb\x1a\x42\x8f\x7a\x4c\xce\x8f\x8f\xda\x39\x3f\x68\x4a\x8f\x72\xe2\x68\xab\x06\x95\x62\x6b\xa3\x84\x76\x8a\x1e\xe8\x64\xa2\x55\xfb\x8f\xcc\x8c\x3b\xd1\x9a\xfa\xc7\xe6\xee\x89\xd6\xbe\x6f\x23\xf3\xca\x72\x88\x6b\xf2\x6b\x57\xe8\x6c\x45\x1e\xa2\x87\x98\x8c\x5d\xad\x8f\xff\xc7\xa5\x1e\x72\x36\xef\x21\x32\x4a\x69\x48\x4c\x5c\x89\x00\xae\x06\xc5\x78\xa2\x75\xe9\xdb\x29\x1a\x14\xe3\xb1\x56\x83\x6f\x01\x67\x6c\x1f\xe9\x10\xd1\x39\x14\xb0\xd0\xeb\x77\xff\x78\xf1\xe6\xf5\xb7\x48\x2b\xb5\xcb\x92\xe7\xfb\x3d\x01\x6a\xe4\xf9\x10\x7a\xd8\xff\xf5\xea\xce\xb6\x83\x47\x33\x6b\x46\xad\xab\xdd\xd5\x0e\x63\x7c\x46\xcc\x4f\xc3\xd6\xfb\xce\x25\x7b\x9d\xbb\xba\xba\x52\x3f\xe2\xe1\x81\x51\xfe\xaa\xb8\xfa\x18\x3c\x9a\x9d\x9e\x5e\xed\xaf\xf6\x2a\xf5\xca\xd2\x4f\x3a\x27\x2f\x69\xfd\x17\x9e\x3d\x6f\x27\xfc\xa5\x9d\x70\x75\x76\x90\xf2\xeb\x41\x4a\xf1\x88\xef\x9d\x57\xf3\x83\x0f\xbb\x76\xca\xc0\x4c\xe8\x9f\x9e\x36\x5e\x55\xff\x1b\xbd\x97\x05\xd5\x3b\xd5\x1f\x46\x57\xa3\xfa\x99\x83\xc7\xa7\xff\xb5\xbf\x2a\xae\xce\x46\x38\x00\x98\x9c\x48\xa0\x9c\x8d\x02\x9d\xb1\xd0\xc0\xbd\xda\x43\x0f\x8d\xa6\xda\xef\xc8\xba\xba\xf2\x51\x50\xf9\xbf\xa2\x00\x3f\x42\x2a\xf9\x21\x4f\x7e\xc8\x93\x1f\x06\xf8\xd1\x43\x95\xfc\x7f\xd5\x43\x99\x6f\x19\x74\x87\xf7\x46\x76\x05\x3e\x2c\xc3\xa4\xe8\xfe\x72\x3a\xf3\xed\xd3\xa7\xc1\xb0\xf3\xa3\xe5\xff\x7a\x55\xf4\xd1\x5f\xfe\xcf\x29\xb9\x1a\x5d\x9d\x4d\x4f\x9f\xff\xdf\x2b\xff\xf4\xea\xd7\xff\x77\xb5\x3b\xfd\x2f\x59\xa6\x31\x72\x3d\x42\xdf\xff\xf5\x2a\x08\x1e\x5d\xe9\xe1\x6b\x80\x3d\xc0\x67\x01\xa9\xb7\x58\x6f\xb7\xde\x7a\x3b\x89\xa5\x13\x72\x4e\x2e\xc8\x63\xf2\x84\x3c\x25\x8e\x4d\x1c\x87\x38\x2e\x71\xc6\xc4\x99\x10\xe7\x9c\x38\x17\xc4\x79\x4c\x9c\x27\xc4\x79\x4a\x5c\x9b\xb8\x0e\x71\x5d\xe2\x8e\x89\x3b\x21\xee\x39\x71\x2f\x88\xfb\x98\xb8\x4f\x88\xfb\x94\x8c\x6d\x32\x76\xe0\x52\x1f\x5c\xe4\x16\xf1\x67\xe6\xf5\x9d\x3d\x61\x46\x5b\x07\x1f\x17\xd9\x5a\x7f\x1c\xb7\x3f\xca\xc3\x3d\x9d\xc1\x26\x07\xf5\xdb\xfb\xfd\x7e\x6f\xe1\xe9\xc9\x4a\x5e\x48\xce\xa7\xd7\x86\xc3\xd4\xd5\x74\x35\xfa\x20\xae\x23\xb5\xd1\x3b\xf8\xee\xda\x5b\x18\x1c\xf3\x63\xf2\xcd\x31\x1f\x53\x78\xb7\x37\xec\xef\x5f\x4a\xd7\x69\xf4\xba\xd1\xc0\x4e\xb9\x54\xf3\xae\x49\x14\x17\x61\x51\xb0\xf5\x3c\x69\xf0\x1f\x4a\x58\x9b\xab\x80\xc2\x8b\x2c\x62\x05\x09\xc9\x82\xfa\x81\xb0\xf5\xec\xf6\xcf\x21\x24\x2d\x7f\x15\x10\xf4\xed\xab\x97\x6f\x5e\xfc\xf8\x4a\x98\xd7\x8b\x1a\xf0\x42\x5e\x98\xc9\x6f\x3d\x34\x0c\xc1\x81\xc4\x10\x51\xfe\xf8\x39\x4c\xb6\x4c\x86\xa4\x8f\xd4\x3d\x9c\xf0\x45\x6e\x4f\xaf\x9f\x85\xa3\x30\x5f\x29\x6f\x53\xd3\x6b\x88\x83\x26\xd2\xfc\xeb\xc0\x88\x4b\x6f\x06\xdf\x64\xf4\x21\x7a\x38\x64\x9a\x3a\x73\x69\x98\xa0\xab\xab\x14\xe1\x21\x10\xf6\x48\x85\x38\x9b\xca\xce\xa9\xce\x0e\x11\xb8\x91\x11\x62\x76\x0f\x61\x1d\x03\x7c\x21\xd3\x78\x1d\x7b\xc2\x7e\xdb\x86\x89\xc1\x22\xce\x1b\xec\xad\x84\x9c\x8e\xbf\xcd\x59\x90\x66\x5a\x9f\xd2\x13\xc5\xe0\xf7\x1d\xc3\x1b\x8a\x3d\x5d\x3c\x0b\xa7\x0b\xe5\xf4\x24\x6a\x54\xe8\x2f\x02\x02\x6e\x37\xf4\x2b\xaf\x3b\x92\xef\x7d\x4a\x99\x7c\xac\xaa\xc8\x84\x1a\x7c\x31\xde\x0f\x1b\x16\x82\x78\xa3\x90\x9a\x59\x91\xe8\xaf\x02\x5d\x8b\xbf\x0a\x74\x0d\x7b\x39\xe4\xc5\x75\x9c\x44\x39\x4b\x1b\x63\x6e\x25\xf6\x29\x6d\x8d\xd9\x1c\x6f\xbc\xb4\xfa\x8d\xaa\xfc\x45\x30\x12\x70\x36\xaa\xf2\x17\x01\xae\xeb\xd0\x37\x0f\x64\xb5\x8d\x23\xcf\x56\x0e\x0e\x5b\xee\x2e\x4c\x18\x72\x04\x6b\x34\xa3\x13\xc0\xf5\x4a\x41\x77\x49\x5c\x94\x9e\x1f\x34\x4f\xe4\xa4\x6f\xda\x45\x33\xd6\xf6\x4d\x9a\xdd\xa6\xc2\x92\xac\x98\x1e\xfd\xa2\x5c\x64\x4a\x4f\xf0\x5e\xdf\x26\x27\x87\x0e\xe2\x79\x32\x0b\x17\xd7\xfc\x17\xc5\x4b\xc4\x7f\x85\xd7\x6d\x48\x01\x57\xd8\xfc\x29\xc9\x78\x56\xf0\xf6\xb7\xd0\x1e\xd1\x23\x88\xe3\x88\x8f\x76\xc1\x8f\x02\xba\xf0\xa3\x66\xf0\x70\xe1\x65\x00\x9c\x92\x48\x87\x03\x87\xf8\x2c\xdd\x16\x81\x03\xbb\x50\x06\xe1\x32\xc0\x69\xc1\xfa\xdb\x70\x56\x51\x04\xc4\x9a\x83\x1f\x91\xc0\x9a\x83\xbf\xed\x78\x75\x7d\x2c\xbf\x76\xe0\x7b\xe8\x8b\x53\xf8\xcc\x33\x5c\xc4\x69\x34\x0d\xa9\x0d\xae\xe6\x25\x92\x85\xcf\x16\xd3\x50\x06\x3f\xd0\xa3\xa9\xcd\x91\x1b\xee\x73\x16\xe6\x24\x8f\xf8\x1c\xd3\x76\xc2\xa8\xc8\xf2\xd2\x6a\xde\x4e\x29\x19\xfc\x74\xbe\x6f\x9d\xaf\x4a\x54\xfb\xd0\xd9\x7b\xb0\x9c\x93\x42\x9b\x20\xbb\x58\xfb\x40\x9d\x4b\xf3\x60\x39\x4f\xf2\x58\x4d\xf4\x86\xa3\xf1\x70\x48\x64\x67\xb7\x85\xf6\x0e\xd9\x7a\xaf\xaa\xb9\xf1\xd6\x44\x68\x70\x46\xaa\x41\x16\x51\x1b\x68\x86\x39\x4e\x15\x37\xe2\x19\x83\xd8\x11\x8b\xe6\x67\x3f\x0a\x88\xfb\x7c\x51\x55\x02\xac\x51\x04\x6e\x36\xad\xc5\xa9\x53\x1f\x3a\xee\x09\x20\x70\x27\xc2\x28\x57\x23\x30\x53\x72\x72\xa7\xf3\x3a\x40\xc0\x74\x01\xce\x4e\x4d\xe8\x48\x20\x5a\x0b\x8c\xa7\x73\xb8\x07\xed\xfa\x3a\xc7\x0a\x56\xa1\xf0\x06\x46\x24\x79\x5c\x24\x61\x51\xc4\xcb\x2f\x60\xdb\x6a\x85\x78\x2a\xc3\x3d\x40\xb8\x12\x71\x42\x22\x12\x64\x06\xb2\x20\x73\xec\x21\xe1\x58\x45\x64\x92\xce\xf9\x20\x45\x55\x43\x1a\x88\xcb\xb7\x09\xd9\x13\x44\x16\xf7\x7d\x9c\xb7\x3e\xb2\xf5\xa6\xfc\xf2\x43\x58\x5c\x23\xac\xa7\x5e\x7c\x01\x20\x82\xe3\x1e\x2e\xbb\x8a\x3e\x84\xeb\x79\xbc\xda\x66\xdb\xc2\xec\xec\xff\x46\x57\x1a\x1f\x74\xab\xdf\x98\x5d\x9a\x36\xf3\x6c\x36\x2c\x8d\xf8\xf6\x07\x0e\x50\xda\xeb\x15\xdc\x81\xc9\x33\xe2\xc5\xf4\xa0\x4f\xa2\xd5\x03\xbc\x6c\xe1\x22\xe7\x23\xa2\x80\x2c\x68\xe8\x2b\xb7\x10\x8a\x9e\x89\x9d\xfe\x03\x38\xcb\x9b\x59\x0b\x81\xb2\x92\xba\xd4\x58\x2a\x92\x5b\xa3\x5b\xb1\xf2\xa5\x70\x5d\x87\x88\xcc\x01\x31\x0a\x0f\x3a\xf9\xb1\x6e\x83\xe7\x6c\x79\x57\x22\x0b\xa0\x6e\x98\x48\xe7\x7e\x9c\xac\x40\x8a\xec\x05\xa4\x72\x24\xf6\x4c\x8a\xb4\x68\xcf\x3a\x47\xd6\x55\x7a\x99\x01\x44\x48\xe8\xd7\x37\xb4\xaa\x27\xd9\x46\x40\x6b\xaf\x7d\xf5\x74\x2d\x34\xc3\x41\xce\x01\xbd\xe8\xdb\xd3\xb9\x72\xd7\x27\x56\xc0\xeb\x6f\x2d\x9d\x22\x3b\x68\x8e\x1c\x11\x04\x70\xb1\x51\xab\x33\x0d\x2f\xb5\x88\x08\xd6\xed\x28\x66\xa8\x40\x6c\x66\x7f\x3b\xb2\x4a\x8f\x09\x88\xcc\x25\x8c\xf1\xbe\x76\x51\x74\x50\x56\xc0\x55\xba\x00\xc4\xd3\xb9\x72\x45\xa9\x5c\xa1\x29\x0c\x49\xb3\x57\xf0\x61\xd6\xd1\xa2\xf8\x12\xa1\xd6\xd0\xeb\x9e\x37\xd7\xdd\x81\xa3\x47\x20\x60\x91\x8c\x08\x25\x60\x0f\x11\x53\x99\x0c\xcd\x1e\xaa\xa8\xe7\x2d\xd4\x37\x51\xef\x44\xd2\xd9\xf6\x74\x9b\x2b\x36\xbc\xef\xe3\xa2\x73\x6e\x5e\xa8\x9e\x23\x38\xbd\xdb\x13\x83\x8c\x1d\xac\xd2\x38\x9a\x0a\x8f\x39\x70\xb4\xc6\x91\x57\x40\x8b\xa7\x59\x73\xec\xc9\xa1\x35\x6e\x3d\x39\xea\x68\xf2\xa4\x56\xda\xfc\x0f\x57\x5a\x77\x0e\x3e\x20\x95\xa5\x4d\x61\x72\x56\x64\xc9\x67\xf6\x41\x6a\x60\xbd\x09\xd7\xf3\x28\x04\x82\x53\x93\xef\x83\x99\x09\x95\xcf\xce\x72\xbb\xf9\x6e\x9b\x24\xca\xe3\x83\xa0\x14\x32\xd7\x14\x22\xd4\x44\x7a\xde\xb4\x9a\x63\x27\xb7\xb4\x08\x70\x07\x9c\xff\x56\x67\xe1\xeb\x40\xde\xfc\x2f\xb0\xd6\x7f\x3c\x5a\xe1\xfb\x34\xf9\xd2\xf4\x33\xf8\x4b\xb6\xed\x15\x1b\xb6\x88\x97\x31\x8b\x7a\xed\xbc\xa4\x37\xdf\x96\xbd\x2d\x78\x85\xbf\x66\xbd\x6d\x0a\x19\x64\x04\x8b\x1e\x1a\x9e\xf0\x3d\xa1\x0b\x15\x0e\x7b\x47\xe6\xd2\xcd\x2a\xde\xef\xa5\x2b\xaf\x23\x52\x4b\x73\x17\x9d\xe3\xa9\xb1\x41\x86\xb3\x83\xfd\x91\xef\xa0\xf5\x36\x1b\x1e\x6e\xb3\x73\x45\x06\x9b\x1b\x1a\x67\x37\x5f\x7f\x7b\xb8\xc8\x0f\x10\xeb\xf8\x3a\xd2\x39\xea\x75\xd8\x5c\xf2\x49\x96\xdd\x6c\x37\xef\x53\xa3\x84\xca\xd8\x41\xfa\x34\x36\x1a\x7c\xa6\x23\xb8\x17\x63\x29\x34\xb9\xcd\x66\x4b\x75\x03\x61\x80\xf7\xc2\xbd\x57\x07\x05\x14\x88\x11\x85\x65\xc8\xe9\x33\x88\x48\x71\xa4\x1d\x39\x72\x9e\x2e\x96\xb1\x24\x9a\xc8\x22\xbe\xf7\x78\xc1\x5e\xce\x96\x2c\x67\xe9\x82\x15\xbd\x30\x67\xcd\x80\x27\xa0\xa8\x58\x7b\x65\x3c\xc0\x11\xd1\xd9\x6f\xc3\x32\x04\x86\xbd\x5e\x10\x5f\xc5\x60\x1f\x0c\x59\x0c\x56\x7a\x52\x3b\x4a\xf0\xeb\x6d\xb5\x41\xed\x95\xdb\xb5\x7b\xcb\xbd\x89\x4b\x96\xf3\x5d\x67\xae\x3c\x2c\xe2\xbd\xf6\xd2\xf6\xb5\x25\xe7\x59\x96\xc0\xce\x04\xee\x76\x9a\x8e\xf9\x44\x91\x63\x55\x49\x4d\xdf\x9d\xcc\x35\x27\x5c\xfa\xf5\xfc\xa0\xdb\x99\xbc\x83\xf7\x78\x4f\x22\xb6\x48\xc2\xfc\x3e\x09\xb4\x59\xa9\x3e\x31\x21\x7c\x5f\xf5\xe6\x04\x8e\x43\xbc\x90\xd7\xa5\x96\x44\xa3\x7f\x10\x19\x4f\xed\x7c\x82\x6d\xf7\xe7\xc1\x60\x70\x62\x35\x53\x68\x5f\x6a\x5d\xfc\xff\xd8\xfb\xb7\x35\xb7\x8d\xa3\x61\x14\x3e\xd7\x55\x70\xf0\xfb\x1d\x11\x21\x86\x9a\x91\x1d\x27\x2f\x69\x58\x91\xa5\x91\xa3\xcf\xb2\xe4\x48\xb2\xf3\x7f\x8b\x66\x26\x20\xd1\x9c\x81\x05\x02\x34\x00\x4a\x9a\x70\x70\x15\xeb\x74\x5d\xdd\xba\x92\xf5\x74\x55\x6f\xaa\x37\x00\x39\x92\x95\xf8\x7d\x9e\x4f\x07\x1a\xa2\xbb\x7a\x5f\x5d\x5d\x5d\x5d\x1b\xca\xf9\x43\xd3\x0b\x08\xb8\x4e\x77\xbb\x97\xbd\x90\x3e\x52\x00\x21\x4c\xef\xc3\x51\x6a\xdc\x83\x95\xb7\xda\xd4\x24\xa3\x06\xc5\x9d\x3f\xe0\x58\x3f\x49\x1d\xc2\x08\xb7\x81\xa3\x33\x1d\xde\x20\x79\x20\x09\xcb\x64\xf9\x40\x73\xa6\x81\xe2\xd8\xf1\xc1\x0b\xe9\xbb\xd1\x75\x8d\xc6\x0b\x45\x00\xa7\xc9\xc9\xc9\x34\xe4\xb7\xe5\x78\xa1\x3c\x8b\xf8\x78\xca\xf0\xf7\xcc\x52\x4a\xad\xc7\xac\x9e\x2d\xc5\x15\x7b\x19\x82\xd6\xa3\xef\xd0\xa3\xd8\x77\x27\xd1\x41\x11\x16\x86\xef\x6c\x3d\x89\xc3\xf4\x63\x58\x12\x8c\x37\x26\x0e\x80\x84\x23\x18\xfc\xb1\x28\x2d\xb9\x7a\x68\x1f\xfa\xe0\x30\x54\x45\x70\x89\xed\xa3\x5d\xd9\x14\x2c\x6e\x6e\xa4\xa4\x4f\xbf\x11\x43\xdc\x45\xe2\x4c\xf4\x88\xcf\xdd\xc3\x57\xaf\x0d\x87\xa2\xce\xa9\xcb\xd9\x4c\x08\xb9\x32\x48\x06\x58\xe5\xa0\xa4\xd1\x57\x07\x0f\x5f\xbd\x1e\x34\x25\x49\x21\x3d\x1c\x0f\x78\x15\x22\x60\x4b\x30\x5a\x84\xd3\x44\x04\x27\x0c\x38\x75\x0e\xb2\x62\x90\xdc\xdc\x0c\x13\x49\xe4\x39\x99\x5d\x2a\xdf\xa5\x53\x21\x18\x58\x2a\x21\x2d\x95\x0a\xa8\xa8\x46\x02\xe6\x7f\x25\x6f\x93\x57\x10\x89\xd1\x0f\xcd\xe7\x6e\xef\xc4\xdd\xf9\xcf\xce\xdc\x07\x4f\x1b\xe0\xab\x13\x9c\x84\x45\x97\x18\x50\x47\x04\x2d\x58\x91\xc9\x8d\x56\xdd\x93\xbb\x8a\x12\x92\xdf\x37\xb1\xab\x28\x89\x84\x91\x0a\xef\x46\x1a\xeb\xc0\x11\xc3\x95\x12\x06\xa7\xd4\xa3\x79\x74\x19\xda\xee\x71\x37\x3d\xc1\x2d\xc5\x61\x00\x64\x3e\x4e\x68\xe0\x4a\x21\xc7\x4f\xe2\xdc\x13\x32\x6a\x19\xe7\x4e\xc8\xa8\x28\x8d\xf3\x71\x5e\x5e\x4e\x17\x54\xd0\xcf\xcf\x91\x67\x70\x46\xd3\x97\xfd\x3b\x92\x08\x44\x6c\x8a\x41\x4f\x21\x6e\xe1\x8b\xd5\x10\xef\x7d\x01\x04\x36\x84\xb9\x67\xf1\xbd\x7f\xe0\xb3\xcf\x67\x22\x3a\xf9\x32\x7c\x90\x8c\x82\x59\x30\x5a\x8e\x82\x79\x30\xe1\x67\xc3\x4f\x49\x9e\xa5\x7a\x26\x7f\x4a\xaa\x2c\x59\x60\xb0\x50\x01\x3e\x0e\x46\xcb\x09\x2f\x76\x17\xca\xdd\x9d\x07\x6a\xdf\x3f\x08\x86\x10\x3f\x73\x70\x7c\x3c\x08\x46\x6c\x14\x84\xc1\x84\xb5\x66\x78\x1a\x37\xb8\x88\x21\x4f\xe3\x30\x83\x78\x30\x83\x7a\x22\xde\xc4\x2c\x99\xf3\x56\xa6\x3f\x17\x41\x1b\xe1\xbd\xee\x75\xf9\xcd\x76\xb5\x32\x42\xcc\x99\x6a\x16\x24\x0c\x93\x12\x17\x3e\x08\x04\x04\x54\x3d\x0d\x26\x3b\xab\xb2\xa3\x53\x75\xcd\x4d\x22\x19\x18\xcf\xd3\xdf\x05\x80\x0f\x46\xb1\xac\xa9\x6d\xdb\x28\x2b\x32\x7e\x91\xce\xfe\xc5\xec\xae\x99\x3d\xfb\x75\x5b\x36\x2c\x15\x61\x71\x41\x7b\x90\xaf\x6b\xbd\x49\x96\x6c\x12\xe8\x1d\x16\xb8\x22\x6f\x0c\x1f\xc3\x04\x9e\x91\x11\xc6\x77\x12\x53\xa6\x8d\x71\x49\xd2\xa1\x8c\x28\xe7\x4c\x09\x79\x28\x42\x9d\xc2\x9f\x0b\x29\x1e\x00\x0f\xe0\x4e\x81\x42\xc9\x22\xb2\xfa\xd1\x55\x96\x93\x68\x11\x32\x76\xc0\xf2\xe6\x66\x47\x43\x31\x91\xe2\xf0\x9d\xe4\x59\x52\xb3\x7a\xb2\x6b\x65\xc4\xd7\x8a\x25\xd8\x03\x15\x3a\x64\xf9\xe6\x55\x5e\x36\x52\x25\x1f\x12\x7e\x4a\x2a\x2d\xdb\x97\x21\xfa\x1c\x69\x3e\x3f\x97\xe8\x1b\x00\xce\x9d\xd0\xd1\x9f\x4b\xc7\xff\x79\x56\x58\x69\x02\xf0\x91\x10\xb1\xa2\x21\x42\xa2\x9e\xb8\xc4\x81\x9a\xc5\xa7\xe2\x59\x23\x31\x14\xde\xb2\xaf\xc4\x1c\x64\xa3\x51\xb8\x88\x13\x54\xe7\xc9\xcc\xe7\x32\xf9\xac\xf3\x40\xc8\xd1\xf9\x54\xce\xe3\x05\x12\x8a\x89\x48\x44\x90\x39\x0d\x4a\xb4\x80\x37\x99\x30\x5a\xe8\x67\x20\x31\x2b\x55\xb6\x79\xce\xde\x37\x8a\x35\x54\x29\xa0\x62\xa6\x58\x80\x57\xe5\xb6\x5a\x32\x8e\x63\xea\x52\xac\xa6\x58\x08\x81\xc9\x94\x28\x53\x3a\x67\x02\x5d\x7f\xfa\x57\xc3\x40\x50\x58\x88\xd5\x95\x33\x15\x94\x51\xec\x9f\x41\xce\x56\xcd\xa0\x2c\x44\xfc\x60\x43\xc2\x2e\xc3\xfa\x09\xb4\x16\xcc\xd6\x90\x85\x6d\x24\x31\xc2\xd5\x2e\x9b\xe9\x8b\xbd\x40\xc0\x30\x11\xaf\x8f\x81\xb8\xa7\x93\x17\x4e\xb5\xa3\xa2\x65\x2c\x58\xce\x7a\x10\x63\xeb\x10\xbc\x6b\x28\x03\x5b\x61\xd0\x24\x19\xe7\x2a\x9c\x0a\x2b\x0f\x8a\xfa\x5a\xf8\x06\x0c\xed\x72\x14\xc8\x88\x4b\x56\x9d\x2a\xea\xa3\xa8\x54\x07\xcc\xd2\xa2\x37\x7d\x53\xe4\x95\x8d\xe2\x00\x2f\x7f\x31\xfe\xb9\xb9\x19\xf0\xa3\x33\x9c\x8a\xb1\x2d\x45\xc8\x01\x2f\x35\xbb\xa3\x27\x60\x22\x7f\x46\x03\x41\x9b\x38\x69\x12\x2b\x6c\x92\xa5\xa1\x14\xcd\x60\x0c\x1d\xdc\xba\x72\xbf\x01\xc2\xc4\x49\x1b\x79\x97\xc8\x63\x26\x61\x6e\x53\xe9\xbb\xd2\xdc\xaa\x70\x41\x09\xa7\x3a\x50\xb1\x8a\x98\x03\xcd\xcd\xce\xe6\xb1\xf9\x39\x0a\x60\x06\x89\x11\x24\x46\x81\x35\x56\x5f\xbd\xac\x0e\x32\xad\x59\x07\xea\x64\x82\xce\x84\xbe\x44\x3b\xea\xef\x32\x3c\xac\x33\x4b\x78\xd2\xf6\xd5\x38\x5b\x4a\x21\xaf\x2a\xe2\x56\x19\xf0\x9e\x4a\xad\x4b\x99\x2a\x74\xec\xf8\x31\x70\x3f\xe4\xa7\x48\x68\x10\x58\xa9\x7f\xad\x7b\x12\x83\xee\xf7\x1d\xa3\x17\x92\xe0\x92\x47\x6c\x50\x11\x0f\x5d\x3c\x96\x88\x23\x76\x38\xa5\x10\xf2\xcd\x0e\x30\x64\xaa\x1e\xfd\x64\x57\x1e\xcc\xa4\x08\x39\x42\xb6\x6e\x3e\x99\x19\x47\x95\xce\x96\xb1\x58\x23\x19\x73\xa6\x56\x65\xa6\x4b\x41\x45\x89\xde\xb8\x71\x26\xb9\x0f\x59\xcb\xaf\x18\x3c\x21\x0b\x4b\x35\xc1\xd0\x8c\xfa\x8a\xc2\x7a\x88\x47\x28\xd8\x96\x62\x8c\xce\xe4\x9a\x0f\x55\xc0\x76\x0c\xc3\xd1\xd2\x54\xd1\x5d\xc8\x7d\x18\xc9\xbd\x60\x50\x68\x7e\x54\x28\x7b\x6e\xa5\x81\xcb\xa9\x0f\x06\x2d\xe1\xdc\x90\xc2\x63\xfe\x1d\x0e\x76\x3f\x17\x03\x44\xa8\x36\x20\x27\x74\xa2\x0e\x61\xfd\x12\x47\xba\xef\xd3\xe6\x48\xe2\x3b\x41\xc0\x59\x82\xf8\x54\x5e\xdb\x11\x57\xf4\xec\xa5\x5a\xe1\x80\x19\x78\xbd\x9c\x4f\xd9\xd8\xe4\x7e\x1e\x2c\xe2\xc5\x83\x05\xef\xc6\x60\x30\x18\x8c\x38\xfb\x36\x96\xdc\x90\xfe\x35\x5c\xa0\x59\x85\xc1\x03\x2d\x46\xc1\x14\x86\x15\x2d\x84\x21\x78\x18\x25\xa3\x98\x61\x65\x81\xe2\xae\xe5\xeb\x22\x5c\x90\x1d\x13\x16\x7b\xab\xba\x2f\xe9\x8a\x96\x7b\xf2\x02\xf1\x82\xa8\x50\x55\x1c\xf0\x70\x91\x16\x97\xe1\x53\x75\xe3\x15\xfa\x23\x70\xbc\x0d\xa9\xa0\x01\x8d\xbd\x96\x6c\x78\x16\x9d\xf2\xf5\x95\x1c\x9f\xd3\x1e\x5e\x14\x82\x51\x62\xd8\x6a\x87\x41\x4b\x5f\x1c\xbe\xf9\x74\xa3\xbd\x73\xe0\x70\x09\x9d\x46\xd5\xe4\xe5\x9b\x21\x3f\x5f\xcc\x61\x3a\x14\x21\x5b\x0d\x86\x47\xd2\x64\x3d\xa9\x1b\x6c\x1d\x10\x58\xc4\x19\x8c\x07\x07\x4f\xca\x74\xd0\xc2\x43\x0c\x7d\x21\x72\x15\x9a\x79\x66\x56\x5c\x8a\x7c\x88\x04\xee\x49\x1f\xa9\x48\x63\x9a\x0d\x82\x98\xe1\x4a\x61\xf3\x1f\x3f\xd7\xa3\x7b\x51\xa0\xde\x20\xcc\xf2\xfc\x74\x43\xf7\xd5\xf6\x8a\x38\xed\xfb\x4a\x7b\xd2\x88\xaa\x68\x3d\xfa\x8c\xb6\xac\xf9\x32\xa1\x1d\x21\xe7\xc0\x69\x7b\x95\x6f\xeb\xab\xa7\xc0\x8c\x0d\x0d\xbd\x81\x8d\x5e\x33\xcf\x1a\x0d\x83\xd1\x1d\x7e\xdb\xba\xb9\xc1\x9b\xc8\x20\x8e\xe3\xc1\x29\xae\x11\xca\xba\x8c\x2d\x3e\x4c\xc2\x51\xc0\xd7\xa2\xfb\x70\x10\xd2\x29\xda\x0c\x08\xa8\xba\x6a\x0c\xee\xde\x0d\x44\xa5\x72\x70\xe2\x41\x6e\x2f\xc6\xdb\xd1\x6e\x63\xbc\x07\xda\xc9\x81\x33\x70\x6f\x3f\xec\x62\x43\xd1\x5f\x3d\x81\x7c\x77\x86\x61\x1b\x69\x01\x9f\x8b\x83\x84\x29\x3a\x8a\x63\x15\xa7\x8b\xf2\x4a\x49\xd8\x46\xd6\x33\x84\x07\x97\x95\xd9\xb6\xbe\xb4\x9b\xc7\x17\xa9\x32\x4a\xa2\x60\xa9\x1e\xce\x50\x06\xea\xd4\x4c\x2a\x86\xf1\x08\x39\xb8\xaa\xf4\x8e\x5d\x6b\xd8\x46\xde\x57\xb7\xbd\xeb\x22\xf3\x5f\x5f\x6f\x58\x7c\x57\xbb\x2b\xb9\xdb\x47\x3a\x13\x7d\x99\x47\x49\x94\xc6\x47\x5a\xdf\xe0\x01\x66\x88\x53\x14\x69\x57\x38\x98\xf0\xd4\x56\x4d\xac\x3b\x9f\x9d\xf4\x5a\x9e\xd3\xd0\xd6\xa0\xd8\xe6\x39\x6e\x86\x85\x6c\x3c\xe1\xd8\xfb\x40\xa4\x4c\x24\x16\x93\x55\x59\x18\xd3\xaf\x3b\xf1\x18\x02\x1d\xef\x9f\x7e\x78\x74\x91\x96\x1a\x4a\x22\xec\x38\xce\xe9\x5b\x3b\x67\xe9\x08\xca\x23\x83\x08\x8f\x76\x20\x47\xc6\x47\x82\x21\x51\x8f\xbc\xa3\x2c\x6b\xec\x52\x2a\xfa\xbc\xdd\x30\x98\x7a\x2a\xb9\xed\x01\xa3\xdc\xb5\xf6\x15\x86\x0a\xd8\x15\xad\x04\x26\x8d\xc3\x46\xd6\xb7\x98\x20\x6f\x6b\xfc\xea\x2e\xc8\x0e\xde\xe2\xc9\xee\x01\x71\xb3\xbe\xe1\xc7\x3b\xb8\x34\x83\x38\x81\x8f\x1a\x7e\x88\xb5\xe3\xbf\x5b\x30\x10\xb2\x5b\x21\xe4\x54\x47\x91\xd4\xf1\x25\x65\xa3\xe5\x66\x78\xf8\x18\xf9\x19\x27\x1b\xa6\x0c\x9e\x3d\x76\x0e\x07\x3d\xb5\x80\xc8\x12\x0f\x83\x1d\xf2\x5c\x4a\x67\x56\x01\x8b\xf4\x10\x19\xa9\xd6\xc4\x33\x3f\xd5\x31\xd6\xad\x71\x04\x4e\xb0\xf2\x77\x38\xa0\x5b\x9c\x0a\x03\xa4\x87\x23\xcd\xb9\x91\xc7\xb7\x03\x5a\x4e\x44\x57\x1d\x2d\xba\x24\xdc\x09\xbd\x8a\x07\x3d\x7d\x16\xd7\x1a\x42\xce\x93\xb0\x0b\x99\xc1\x81\x4a\x1b\xd1\x77\xf2\x89\x1d\x3a\xda\x7f\x17\xf4\x73\x5b\x57\x26\xa3\x05\x45\xb7\x35\x7b\x29\xee\xb3\x43\xf9\x86\xa5\x9d\x43\x29\xfe\x88\x28\x2c\x60\x02\xb4\x8f\xaf\x05\x07\x9f\x06\x0b\x42\x8e\xa6\x0b\xd9\x2f\xb8\xd1\x4b\xf5\x6a\x41\xe3\xa6\x89\x78\xf6\x79\x5a\x64\x9c\x61\x59\x8c\xe2\x20\xe2\x50\x3a\xd5\xc0\x33\xce\x2e\x2c\x46\x81\x50\xba\x18\x3c\x10\x7a\x07\x9a\x6b\xe3\x3f\x10\xdd\x39\xa7\x37\x19\x5c\xf9\x99\x3b\x23\x59\xc1\x87\x41\x38\x95\xca\x85\x06\x3f\x23\xd7\x86\xa8\x59\x78\x83\xa7\xfb\x26\x8f\xf6\x7f\x29\x46\x2f\x3b\xb2\x34\xfb\x1b\xa8\x86\x94\xde\x8c\x8f\x0a\xdf\xf2\xb8\xf3\xaf\x3c\x72\x2a\x92\x80\x0a\x96\xcd\x33\x82\xd3\x88\x37\x2c\xaf\x67\x36\xa2\x50\x6c\x50\x17\xe7\x24\x52\xcd\x44\xec\x70\xac\xa1\x87\x98\x74\x1c\x54\xb0\xf7\x8d\xe4\x1e\xef\x2c\x0d\x5c\xb1\x79\xaa\xa5\x1f\x67\xe8\x75\x80\xe0\x61\x2a\x2f\x02\x2b\xb8\x08\x98\x68\x64\x2d\xcb\x54\x33\x9c\x1e\xae\x92\x54\xca\x46\xc1\x54\x55\x29\xce\x34\x99\xed\xb2\x11\xbd\x6d\x2a\xd4\x15\x37\x0f\x43\xd5\xcd\xa0\x45\x89\xb0\x48\xa6\x53\xac\x25\x17\x89\x12\x63\x04\x61\x14\xdc\x05\xd6\xe5\x6e\x10\x59\x8c\xa5\x57\xea\x31\xf7\x49\xfc\xa4\x98\x0e\x99\x86\xa9\x17\x1f\x6b\x96\xaf\x90\x15\x0e\xe8\xde\xe5\xc9\x66\x60\x79\xcf\xe5\x93\xf3\xe0\x44\x07\xd1\x23\xb0\xbb\x63\xf7\x7d\x29\x8d\xfe\x3b\x0e\xbd\xd4\xbe\x87\x44\x4b\x3b\xc5\xf0\xf6\x01\x27\xec\xf2\xf8\x98\xe9\xe3\x51\x79\x55\xe3\xb3\x07\xb1\x57\xc3\x69\xca\x21\xf0\x60\x74\xb2\xd3\x70\xca\xe4\x41\x68\x65\x0e\x81\x8f\x0b\x51\x21\x51\x98\xbd\x2c\x22\x4b\x88\x6f\xed\x7a\x6d\x83\x91\x28\x55\x6a\x30\x7a\x59\x41\x60\xda\xa5\x14\x97\xac\xbe\xba\x9c\xae\x46\xa3\x70\x97\xc6\xcb\xd9\x6a\x3e\xc5\x58\xe0\x86\x90\x68\x8a\xd6\x2b\x28\x5c\x4a\x9a\xe5\xd5\xf9\xfb\xac\x6e\xf8\x74\x09\x4d\xe6\x34\x9c\xe2\xf3\xec\x95\x50\x3c\x76\xe4\x74\x52\x64\x2b\x1d\x79\x39\x00\xd2\xef\x0c\x3e\xe3\xc5\xfc\x17\x3c\xc9\xa8\x38\xeb\xa3\xab\xc8\x5b\x72\x76\x35\x8f\x99\x7a\xef\x4c\xa3\x85\x01\x26\x75\x55\x65\x29\xfa\x3a\xc3\x4b\xa6\xe1\x64\xd8\xd7\x66\xd8\xb6\x91\x6f\xc8\x06\x8e\x69\x43\xa3\xd3\x68\x19\x77\xb6\x27\x67\x7c\xf1\xd5\x72\xba\xb0\x2c\x62\xbc\xfd\x5b\xa0\x3d\xcc\xf1\x71\x2a\x0d\x47\x92\x50\x89\xe8\x5a\x65\x69\xa0\xd9\x05\xaf\x41\x79\xe7\x36\x53\x8f\xea\x52\xee\x87\xbb\xad\x28\xcb\x4d\x40\x05\x28\xf4\xc2\x4c\x94\xf2\xa7\x89\xa9\x67\x4f\xac\x7e\x66\x0b\x9c\xd2\x08\x9f\x7d\xa4\x28\x34\x42\x25\xe9\xc4\x56\x92\x5e\xc4\xc9\x2c\x9d\x47\x10\x15\xf8\xc1\x92\x0a\x3d\x4f\x83\x70\xb2\x34\xa5\xa0\xc3\xc5\x89\xd6\xad\x19\x9e\x52\x97\x36\xd8\x7f\x31\x2b\xc3\x60\x72\xc7\x48\xf8\x7b\xd6\x5c\xa1\x06\x4c\x10\x8e\x96\xb6\xfc\x2a\x92\x82\x7b\xdf\xe1\x49\x4f\xc3\xc4\xa5\xea\x70\xe5\x13\x02\x41\xf0\xdb\xa2\xc1\x7d\x77\x3a\xf1\x40\x30\x4b\xe6\x52\xd8\x4d\xd3\x94\x9e\x93\xf9\x92\x20\x59\x53\xc5\x0b\x6b\x56\xb0\xf3\x35\x18\x8a\x40\xd0\x7a\x52\xd0\x12\xac\x76\x8a\xa1\xa8\x64\x55\xdf\x4c\x2c\xf9\x83\xcb\x69\x7b\x2a\x0b\x43\x79\x39\x30\x85\x4a\x42\x66\x3a\x4d\xa4\x6e\x10\x69\x2c\xa1\xe3\x74\x7b\xeb\x0a\x8e\xa4\xe8\xbe\x58\x56\xea\xec\x4f\xdc\x03\x7f\x21\x96\x2a\x21\x2f\x0f\xc6\xa3\x9f\xd0\x28\x23\xf6\x3c\xf4\x12\xee\x39\x5a\x82\x40\xee\xf9\xac\x96\x3d\x42\x3a\x3b\x5d\x3e\x70\xce\x91\xa3\xd3\x30\x4a\x07\xc4\xb5\xe3\x25\x87\x49\x91\xee\x47\xab\xf8\xe8\x34\x9c\x0c\x59\x7c\x24\x04\x69\xe2\xd9\x32\x5a\xc4\x47\x42\xaf\x59\x4a\x33\x41\x31\x41\xdc\x0d\xc8\xa0\xa3\x45\x1c\x28\x19\x10\x0e\x45\x8c\x98\x33\x2f\x51\x20\x79\x32\x2d\x14\x0d\xc3\x89\x93\x06\x4f\xc1\x46\x54\xfd\xe5\x83\xe1\x4a\xbe\xa0\xe8\x33\x51\x69\x75\xc9\x8e\x9e\x9c\x44\x26\xe3\xbd\xe0\x33\x1d\x82\x35\xc8\xbd\x7f\x00\x98\x50\xc1\x48\xc3\x9b\x1b\x39\x3b\x84\x61\x23\xd7\x48\xb1\x62\x29\xf4\x5f\x55\x35\x0d\x42\xa2\x6f\x15\xa9\xa2\x5d\x7a\x07\x0a\x89\x38\x43\x7e\x47\xcd\x94\x73\x1d\x57\x43\x90\x9e\xd4\x54\xc2\xd7\xfa\x13\x5e\xfb\xe4\x6b\x9e\x95\x2c\xf8\x15\x78\xf8\x1d\x99\x35\x98\xef\xc0\xe6\x0a\x4a\xd7\x19\xf8\xed\xd1\xba\xf0\xd6\xd8\x46\x64\x07\x74\x5c\xfa\xc9\xbd\x16\x1e\x77\xe4\x7b\xb6\x73\xeb\xa5\x36\xaa\x78\x84\x25\x1d\x47\x55\xc2\x8f\x24\x0b\x7d\x3b\xb6\x50\x6a\xdf\x5b\x87\x69\x08\xfa\x22\xb5\xdb\x69\x3a\x3b\xee\xd3\xbc\xf4\x7e\xe2\xdd\x7d\xf6\xc6\x5b\xc6\xc3\xc5\x03\xbb\xa2\xc9\x1d\xa7\x93\xa1\x10\x7c\x64\xab\xe1\x51\x72\x7c\xbc\x34\xc6\x14\x2a\x1b\x59\xd8\x96\x00\x84\x9e\x1d\xad\x7d\x69\xea\x06\xc8\x58\xfb\x90\x3d\xd8\x94\x9b\xc0\xd6\xf0\x38\x39\x51\xe6\xb7\x7a\xdd\xf7\x8f\xca\x1d\x90\x33\x9e\x68\x61\xb9\x3d\x16\xa6\xa4\xc9\xf1\xf1\xc2\x5c\x2f\xa9\x81\xb1\x68\x23\x4a\xb8\x3d\x87\xc8\xdd\xe0\xee\x28\xa1\x1e\x21\xee\x5d\x46\xe8\xfa\x84\xf8\x89\x00\xdf\x12\x3f\xff\x1c\xdc\x75\x3c\x84\x81\x79\x32\x49\xac\x30\xb1\x32\x12\xb7\xf7\x4f\xef\xff\x19\x33\xe0\xa7\x93\xf9\xdf\x3a\xf3\xbf\xd1\xda\x59\x68\x89\x76\x88\x3c\x10\x51\x67\x9c\x3b\xb9\xa3\xef\xa5\xe2\x69\x28\x89\xd2\x68\x69\xf0\xed\xde\xbb\xe8\x42\xdf\x45\xc5\x3c\xee\xf0\x9a\x38\x49\x23\x7d\x5f\x9c\x24\xa8\xe2\xcc\x22\x7d\x09\x9b\xe8\x87\x29\xa9\x15\x90\x86\x84\xd5\x88\x3c\x32\x84\xc9\xf2\xf8\x58\xbf\x34\xbb\x27\xea\x22\xf4\xd7\xd5\x8a\x89\x78\x21\xfc\xe0\xf8\x64\x0b\x33\xf0\x47\x2e\x7c\x91\xaf\xa2\x4b\x69\x1e\x1e\x80\xc5\x9b\xf3\x56\xd0\x2f\x08\xa4\x65\x5f\x83\x18\xd2\xad\x20\xa2\x40\x8f\xa4\x88\xd2\x85\x0b\xa7\x2b\xe7\xa5\x27\x5b\x0d\x87\x97\xce\x2d\xeb\xe6\x66\x15\x5e\x4a\x46\xa9\x87\x9d\x8d\x2e\x63\xc2\xbf\x86\xd1\x9d\xd5\x21\x85\x56\x66\x21\xd9\x7b\x61\xda\x39\x09\x46\x2b\x9d\xb8\x2a\x26\xc1\xe8\x12\xad\x2a\xd0\xc0\x3c\x01\xa3\x72\x67\x24\x91\x78\x3f\x5f\x85\xdd\xda\xd9\xc7\xc7\x43\xca\x57\xd1\x29\x4c\xfd\xe9\x87\x2d\x8e\x16\x0b\x6b\xbb\x7f\x90\xbe\xce\xc9\xf0\x84\x10\x39\x18\x31\x0b\xc2\xab\xb0\xb3\x24\xd7\xf7\x89\xb8\xc3\x6b\x32\x46\xf6\x97\xb3\x19\x93\x38\xd8\xc9\xa3\x8b\xa0\x2a\x60\xa8\x29\x19\x46\xf3\x6f\x7a\x10\x18\x12\x28\xd1\xa1\x40\x4d\x2d\x49\x91\x3f\xe3\x60\x94\x4c\xef\x2c\x2c\x19\x6e\x10\xb4\x2d\x51\xbf\x08\xc0\x05\xd0\x00\xc4\x30\x9c\x6c\xc3\x36\x49\x6a\x36\x58\x65\x45\x92\xe7\xd7\xc2\x2d\xd9\x00\x78\xd3\x25\xbf\xf8\x0d\x56\x65\x35\x40\x17\x50\x83\x77\x57\xa8\xfb\x55\x34\x59\xb1\x65\x4a\x36\x03\x1d\x46\x45\x30\xe1\x4c\x7e\x90\xad\x84\x4b\xdf\x94\xe5\xac\x61\xa0\xad\x53\x5d\x0f\xd2\x92\x12\x63\xf9\x82\xb1\xa8\x9b\x2a\x59\x36\x03\x56\x6c\xd7\x83\xac\x68\x06\xf5\x55\x59\x35\x83\x05\x46\x87\x1d\xb0\xf7\x1b\xfe\x99\x15\x0d\xab\x56\xc9\x92\x81\x17\xef\x6c\x39\x58\x5c\x37\x6c\xc0\xde\x37\xac\x48\xeb\x41\x5e\x16\x97\x83\x7a\xbb\x61\xd5\x60\x79\x95\x54\x38\x9e\x41\x91\x34\xd9\x5b\x36\xa8\xaf\x8b\xe5\x55\x55\xa2\x37\x34\xb0\x94\x18\xac\xf2\x32\x69\x06\x9b\x64\xf9\x26\xb9\x14\xee\x87\xeb\x01\xa8\x50\x0f\x2e\xcb\xa6\x1c\x6c\xaa\xec\x6d\xd2\xb0\x41\x53\x25\x45\x9d\xb1\xa2\x19\x80\xca\xc6\x25\xab\x06\xf0\x62\x0a\x37\xd4\xc1\xa6\x2a\x1b\x74\xaf\xfe\xb6\xcc\x93\x86\xcf\x4e\x5a\x6e\x17\x39\xe3\x40\xbc\xd3\x9b\xed\x22\xcf\x96\x83\x9c\x35\x83\xeb\x8c\xe5\x69\x20\xfc\xb9\x06\x9c\x18\x6e\xe2\xc5\xf8\xe5\xf9\xab\xf3\x97\x3f\x9d\x3f\xbe\xf8\xfb\x8b\x97\x8f\x5f\xc5\xbb\x16\xe4\x13\x55\xcc\xb4\x7c\xa2\x02\xf9\xc4\x66\xc6\x66\xab\xf9\x1c\x2d\x41\x7b\xf5\x75\xe3\x3b\xee\x59\x76\x64\xb7\x34\x4b\xe6\xc7\xc7\xf7\xfe\x31\x4b\x4e\xfe\xf5\xf0\xe4\xff\xba\xf8\x6c\x3e\x3b\x3d\xf9\x6f\xf5\xf1\x07\xa9\x29\x9c\x84\x0f\x8e\x4e\x27\x47\x67\xad\xbe\x10\x0c\xff\x15\x6d\x42\x47\x95\x3b\x8f\xae\xa2\xcb\x08\x8c\x63\x90\xf4\x5e\x0a\x7f\xcf\x51\x2a\x7f\x82\x7d\xb0\x54\xd1\x86\xc1\x8b\x13\x1c\x7c\x90\x68\xa5\xfc\xa8\x8a\x73\xa1\x2d\x38\xbd\x8c\x2d\xe6\x6e\x11\x57\xc3\x70\xba\x70\x35\xe5\x41\x4f\x5e\xf4\x6a\x23\xcc\xac\xdb\xe9\xc2\x6b\x8e\x40\x61\x57\x04\xf6\xe1\xab\xd7\xf1\xd5\x54\x77\x32\x66\xd3\x85\x47\xbd\x3c\x4e\xa6\x0b\xe9\xdd\x65\x89\x46\x6b\x35\x8b\x53\x3d\x45\xd3\x3c\xbe\x1c\x86\x53\x39\x8a\xf8\x52\x66\xe5\xed\xf0\x3a\x7a\x1b\x3d\x8c\xbe\x89\x36\x21\xb8\x8f\xb9\xf7\x87\xa3\x3b\x83\x3f\x0c\xfe\x52\xbe\x65\xd5\xdb\x8c\xbd\x1b\x0c\xce\xd7\x0b\x56\x0d\x4e\x06\xba\xdd\xc1\xc3\xcd\x26\xcf\x96\x09\xec\xb5\x27\x55\xb2\x66\xef\xca\xea\x0d\x14\x5b\x96\x9b\x6b\x70\xcb\x30\x78\xa4\x7e\xdd\x3f\x3d\x3b\x3b\xb9\x7f\x7a\xf6\xc5\xe0\x75\x96\xa7\x6c\xf0\xb4\x58\x8e\x07\x49\x91\xc2\xc6\xad\xb2\xc5\xb6\x29\xab\x9a\x97\x26\xff\x7e\x28\x2b\x20\x22\x46\x35\xa7\x5f\xf2\x6a\xce\x06\xaf\x9a\xaa\x5c\x60\x3d\x07\x15\xfb\x33\x16\xe3\xbd\x16\xad\x3f\xcc\xf3\x01\x64\xd7\x83\x8a\xd5\xac\x7a\xcb\x52\xa8\xea\x2f\x79\xb6\x64\x45\xcd\x06\x83\xc1\x33\xfc\x95\x0e\xb6\x45\xca\xaa\xc1\xf7\x4f\x5f\x0f\x44\xa6\xd5\xe6\x2b\xc6\x06\x57\x4d\xb3\xa9\x27\xf7\xee\x55\xc9\xbb\xf1\x65\xd6\x5c\x6d\x01\x21\xee\x31\x3e\x75\xbf\xd4\xf8\x77\xfc\x4b\x7d\x6f\x9d\x70\xfa\x79\xef\xd9\xd3\x47\xe7\xcf\x5f\x9d\x43\x8b\xfc\x60\xe3\xf3\x38\x18\x9c\x8d\xff\x34\x3e\x3d\x59\xb0\x26\x19\x9f\x8d\x96\x49\x91\x54\xd7\xe3\xcf\xd3\x3f\x9f\xfd\xf9\xcb\x3f\x25\x77\x06\x7f\xb8\x77\x67\x30\xb4\x90\x0f\xfd\x1a\x46\x15\xfb\x75\x9b\x55\xec\xfb\x32\xdd\xe6\xea\x4b\xfe\xfd\xa5\x8e\x60\x05\xa7\xb4\x30\xa4\xe0\x31\x69\xff\x04\x9d\xed\x6c\x35\x14\xc4\x10\xb3\xe3\x98\x78\x51\x94\xc5\x77\x10\x1a\x81\xc2\x8d\x2f\x2e\xf2\x32\x49\xdd\x02\xbc\xb3\x28\x3f\xa9\xae\x39\x4d\xa9\x19\x2b\xe2\x5d\x3b\x45\x08\xbd\x11\x40\x3a\x95\xb2\x4d\x0d\x3c\xdc\x82\x5f\x0c\x76\xb2\xdc\x0c\x35\x96\x77\x3c\x7b\x62\xc0\x4c\xe4\x0f\xb0\x93\x10\xa3\x8e\xc5\xaf\xd8\x98\x1d\xb3\x29\xb8\x43\xf0\xbe\xd8\x0a\x99\x90\xa9\xb6\x24\x87\xc0\xd6\x5b\xfd\x33\xc6\x69\x3a\x32\xbb\x27\x83\xd3\xf0\xb3\x4c\xf8\xc9\x7c\x54\x6e\xf3\x14\x0c\x29\x57\x59\x91\x0e\xd6\xd0\x8f\x41\x30\x82\x36\xc0\x22\x63\x5d\xa6\xb1\x59\x0d\xcc\x41\xbc\x2e\xc1\x5c\x53\x0f\x14\x52\xe4\x47\x54\x31\xb0\xee\x05\x7e\x12\x8e\x24\x6d\x67\x99\xc5\xa7\x51\x1e\xf3\xb2\xca\x61\xce\x57\xf9\x34\xe3\x37\xc7\x6c\x35\xe4\xe9\xb3\x6c\xce\x17\x49\x14\x0c\xf8\x58\xa1\x36\xe1\xb8\x08\x93\xe3\x5d\x1b\x82\x77\x50\x33\xd7\x98\xd1\xa1\x50\xef\x90\xb5\x86\x61\xd8\xc2\xa8\xd0\x02\x45\xf6\x96\x2a\x2c\x8a\xca\x14\xd1\x26\x93\x2a\x1a\xbe\xb9\xc1\x9b\x9e\x3a\xd1\x65\x23\x20\xef\x84\x41\xc0\xaf\x31\x3f\x5b\x1f\x36\xc3\xd3\xf0\x28\x8e\x83\x71\xa0\x96\x0c\x72\xa1\x1b\x60\x1f\x18\x23\xb4\x38\xeb\xee\x05\x78\xe7\xd8\x24\x15\x2b\x9a\x6f\x92\x9a\xc5\xbc\x75\x92\x4d\x22\x20\x84\xd6\xa4\x1a\x36\xbb\x6a\x56\x65\x4b\x98\x3d\xcb\x40\x52\x0c\x09\xbc\x5f\xbc\x63\xba\x31\xe1\x0e\x14\x78\x1e\x0a\x15\x84\x3b\xc9\xca\xe0\xa4\xd3\x22\x7c\xde\x39\x64\x28\xe3\x21\x90\xde\x0b\xd6\xed\x5e\x10\xd2\x0d\x30\xbe\x60\xc9\x9b\x0b\xd8\x69\x12\xb9\xa6\xd6\x2e\xdd\xe1\xfe\x9b\x98\x74\x64\xa2\x29\x08\x16\x9b\xc8\x1f\x2d\xf6\x4b\xec\x5a\xb3\xb2\x31\xa6\xee\xdd\x80\x56\x29\x91\xd9\xb6\xe1\x30\x14\xe4\x60\x18\x70\x84\x59\x6c\xab\x82\x55\x41\x34\x23\x5f\xf7\xb6\x4d\x06\xaa\xbc\x24\x29\x65\x2b\x56\x55\x2c\xbd\xc0\xf8\x2a\x17\xbf\x6e\xd9\x96\x71\x18\x89\xda\xf3\x48\xed\xf9\x8b\x8b\x94\x6d\x58\x91\xb2\x62\x79\x7d\x76\x71\x11\xd1\xef\xfb\xf0\x2d\x0a\x5d\x5c\x84\xbb\x60\x5b\x33\xb0\x43\x5b\x36\x28\x7e\xff\x91\x37\x1e\x5b\x75\xf0\x9b\x22\xb0\x98\xc1\x1c\x80\x1e\x8b\xee\xa0\xef\xd3\xbf\x41\x67\x62\xab\x9d\xb1\x0f\x08\x4a\x03\xda\xc5\xd2\x02\x38\xda\x94\x1b\xfe\xb1\x29\x37\xe0\xba\x29\x86\x1e\x8c\xf9\xcf\x28\xab\xf1\x3a\x2a\xd2\xe4\x67\x94\xd5\x52\x45\x58\xe5\xc8\x84\x28\xab\x9f\x43\x04\x24\x95\x83\x9f\x51\x93\xad\x19\x58\xb7\x44\x97\x79\xb9\x10\xde\x80\xa2\xe7\x3f\x7e\xff\xcd\xf9\xcb\xf8\xde\xcf\xe9\xe8\x1e\x74\xae\x60\x2c\xad\x9f\x9e\xbf\xae\xae\x1f\x71\x46\xfc\x49\xf6\x3e\x26\x96\x73\xef\xc3\x5d\x53\x5d\xef\xde\x0f\xc3\x16\xf8\xf4\x21\x0b\x77\x32\x74\xc7\x11\xe3\xbc\x85\xda\xcc\x59\xfd\xa8\x64\xd5\x12\xf8\x43\xe8\xc1\x10\x23\x33\xa9\xdd\x2b\x7b\x26\xd3\x6f\x6e\xb0\x33\xc8\x03\x8a\x44\x6d\xda\xf6\x8d\xc2\x86\x21\xac\x3e\x67\x3a\x6b\xe9\x8f\x56\xc8\xd7\x74\x46\xac\x7f\x9a\xe6\x4a\xe2\xaf\x3c\x00\x4d\xdf\x1f\x62\x95\x61\xad\x6c\x83\x7b\x92\x45\x2a\x9f\x9d\xce\x5b\x21\x28\xc2\x1b\x86\x69\xf2\x73\x91\xb2\x45\xb9\x2d\x96\x8c\xd8\x0b\x5d\xf0\xc3\xa3\x69\x72\x5c\x8d\x56\x8f\x8b\xda\xdf\xe9\x16\xd0\x39\xb2\xf4\xbb\x0b\x1f\xc2\xc3\xf0\x53\xd1\x24\x26\x1a\x1d\xc0\x24\xcb\xdf\x31\x12\x30\x39\x11\x74\x74\x51\x59\x7c\xc3\x61\x63\x15\x53\x4c\x0e\x5b\x64\x44\x9b\x8a\xbd\xcd\xca\x6d\x2d\xdb\x14\x0f\x68\x66\x47\x80\x1c\x5a\x80\x4a\xf2\x49\x7a\x27\x08\x9d\x0d\xd9\xfa\xea\x84\x87\x51\xdf\x56\x1a\x5a\x2b\xae\x50\x81\xf7\x42\x74\x3b\xdc\x89\x1f\x43\x5f\xd5\xce\xa0\xc2\xb6\x8d\x2c\x8d\xd9\x9e\x19\x3b\x2f\x52\xdf\x7c\x9d\x17\xa9\xbd\x40\xde\xc9\x02\x29\xba\x1e\xe5\x36\xcf\x61\xff\x89\x2b\xf1\xc3\xbc\x62\x49\x7a\xfd\x28\xc9\x73\x96\xc6\xa0\x59\x38\xe5\x3b\xcf\xaa\x04\xdf\x64\x86\x61\x2b\x8a\x81\xb8\xd4\x57\x45\xb8\xf3\x56\xdc\x54\x5b\x61\x6a\xe7\x4c\x3b\xef\x90\x32\x83\x32\x56\x4f\x8a\xb4\x8d\x01\xf8\x56\x59\x6b\xb9\xb9\x8b\xaa\x8b\xb6\xb0\x5e\xe7\x45\xca\x57\xeb\xbc\x48\x87\x7d\x13\x15\xb6\x2d\x78\x9c\x25\x68\xdd\x24\xd5\x25\x6b\xa2\x35\x6b\xae\x4a\x61\xd2\x5b\x16\x18\xc6\xee\x92\x35\x2f\xf0\xa7\xe1\x56\xc5\xf0\x52\x8c\xe2\x68\x59\x1a\xff\xc6\x58\xe7\x14\xff\xc0\x5c\xf0\x5e\x4a\xfa\x3b\x14\xd0\x16\xf8\x0c\xbf\xe6\x68\x80\x5b\x5d\xd6\xb1\xd7\xc5\xc3\x7d\x61\x98\x9c\xa5\x4f\x70\x49\xc4\xf2\xe2\x34\x40\xac\x3d\x20\xb2\x82\x4c\x62\xa5\x92\xb3\xc2\xb1\x82\xb1\x9e\xa4\xc0\x58\x42\x14\x15\x9f\x06\x3e\xe8\x96\xc2\x1d\x69\x55\xaf\x3d\x2b\xd2\x21\x9f\x58\x38\xf7\x0f\x6a\xfa\x83\xaa\x6f\x23\x38\xc6\xf5\xca\xa9\xcd\x1b\x59\x6b\xf8\x49\x56\x04\x1e\x04\x10\x4f\x1f\x9f\x7f\xf3\xe3\xb7\x0f\x14\xfb\x3e\x51\xb7\x18\x18\x5e\xac\xd6\x4a\x86\x84\xf8\xfc\x81\x77\x25\x3f\x0f\x75\x49\x7d\x98\x58\xe8\x1b\xee\xf0\x3e\xfe\x90\xdf\x80\xb7\x48\x89\x94\x95\x8a\xaf\xc0\xb8\x5e\x5e\x31\x60\xba\x3b\xe6\x07\x3a\x19\x01\xd2\x44\x30\xa8\x50\xcc\xec\x8b\x82\x3e\x32\xff\x9f\xd9\xfd\x88\xd9\xe5\xd8\xab\x26\xb7\x66\xcd\xeb\x6c\xcd\x4a\x4f\x3c\x98\xae\x5d\x1e\x46\x22\xf8\x0f\x71\x86\x2a\x1b\x78\x97\x64\x8d\xd9\xe6\x8b\xea\xb5\xf9\xf9\x77\x0e\x22\x3f\x1e\x56\x97\x35\x9f\x00\x15\x4e\xe8\x54\xf2\x50\xea\x7a\xa1\xb2\xce\xd4\x1a\x41\xc3\xf5\x55\xb6\x6a\x86\xe1\x94\x37\x19\x9f\xba\xe0\xf7\x25\xb8\xec\x01\x14\x9b\x9d\xce\xa7\xb4\x27\x98\x88\x61\x3d\x35\xa7\x39\xa4\x20\xe1\xcd\x8d\x27\xe7\x35\xc5\x13\x04\x9c\x87\xe1\xae\xd1\x4d\xa9\x1e\x1e\xd0\x6b\x97\xa3\x34\x7a\xd0\x33\x72\x9a\x82\x54\xae\xa7\xb9\x56\x59\xf8\xe6\x49\x2d\xc6\x4e\x56\xf1\x44\xce\x83\xdd\x19\x0e\x1d\x86\x3b\xdd\xa0\xbe\x01\xee\x44\xd5\x7b\xe6\xfa\xa1\xd8\x1e\x3d\x73\xcd\x41\x60\xae\x8d\x9d\x29\xd2\x8f\x8f\xcd\x06\x8e\x62\xd8\xca\x3a\x99\x43\x0d\x32\x49\xd8\x25\xd8\xc1\x0b\xd2\x39\x75\x28\x0b\x60\xef\xd9\x72\xdb\xb0\x87\x4d\x3c\x02\xa6\x2d\x69\xd8\x08\xa4\x94\x4f\x8b\x66\x08\x48\x7f\x76\x1a\x4e\x6f\x49\x57\xf6\x1e\xe5\xea\x82\xb0\x12\x61\x89\x8c\x43\x74\xef\xe9\x49\x4e\xce\xb0\xa5\x03\xf4\x95\x69\x51\x42\x50\xb3\xa4\x5a\x5e\x71\x92\x50\x0d\xd5\xa0\xc5\x05\x2b\x9c\xe2\x5f\x69\xf4\x96\x45\xa7\x91\x86\x59\x15\xe1\x74\xbb\x49\x93\x86\x3d\x4b\x1a\x56\x61\x15\x70\x11\xd3\x30\x7c\xa6\xb4\xa8\xbb\x68\x23\x79\x5f\xe8\x65\x79\xe0\x7d\x0d\x6a\x32\x89\x6c\x94\xad\xd7\x2c\xcd\x92\x86\xc5\x9b\x72\xa3\xa8\x54\x1d\x0a\x32\x24\xef\x22\x11\xea\x8e\x41\xe7\x71\x8d\x04\x5a\xab\xf2\x14\xed\x74\xa2\x40\x78\x95\x30\xd5\xed\x71\x1a\x4a\xd0\xdf\x6c\xbe\xc5\x34\x17\x3d\x40\x2b\x70\x95\x15\xe9\x6b\xd9\x35\x73\xb8\x91\x7d\x89\x42\x94\xe2\xc5\xbe\x3e\x39\x33\xf5\x1a\x08\xd4\x0c\x20\xe6\x2d\x0c\x30\xc6\x2b\xf0\x58\x13\x76\x2a\x37\xe5\x67\x8d\x1e\xe0\x0e\x9e\x2a\xab\xad\xb4\xc6\xe5\x9f\x02\x1d\x00\x1b\xf6\xf6\x17\xca\x77\xf7\xd7\xce\x56\x88\x03\xeb\x71\xc6\xef\x24\x88\x11\xbc\xd4\x21\xbd\x52\x55\xc5\x33\x6b\xe2\xf8\xd0\xdd\x4b\xa8\x7c\xf8\x14\xdf\x44\x6f\x46\xa4\x70\xee\x02\x6f\xb1\x9f\x02\x03\x71\x9c\xea\x9e\xfc\x9b\x62\x20\xf0\x48\x1f\x81\x82\x8f\x65\xaf\xbc\x28\xa8\xef\xf6\xd6\x92\xaa\x8c\xd8\x06\x14\x58\xe8\x08\x07\xec\x45\x9f\x2e\x73\x96\x54\x12\x37\x15\xdc\xec\xfe\x3c\xfc\x84\x18\xdc\x35\x5c\x44\xd1\xce\xe1\xda\xd9\x07\x61\xf0\xf1\x31\xb6\x1b\xc7\xaa\x0a\x6f\x0f\xf5\x5c\xfa\xb1\xd9\x69\x1c\x15\xa1\xe4\xb7\x56\x5b\x93\x29\x6d\xb4\xe4\x7c\x60\x0e\xb4\xb7\xb6\x19\x3a\x98\xf7\xa7\x0d\x5b\xd7\x5a\xec\x95\x35\x6c\x1d\xee\x8c\x15\xe1\x49\xb0\x18\x53\x96\xc8\xb8\x72\x64\x4b\x45\xba\x9a\xd0\x27\xf4\xa1\xa5\x74\xd7\x3d\xa5\x4c\xf1\x91\xbc\x8e\x5f\xe4\xea\xf0\xb0\xfa\xe5\x64\x4f\xed\x14\x64\xee\x95\x30\x50\xd7\x99\x20\x07\xed\xad\x50\xe6\x4d\x8d\x4f\xac\x0a\x1c\x39\xbb\x93\x29\x85\x82\xe2\x34\x94\x0e\x5f\x8e\x8e\x1c\xd4\xb7\xb3\x08\x65\x32\xdc\xc4\xc8\x66\xe5\x02\x12\x62\x84\x33\x01\x11\xf2\xf9\x4f\x30\xaf\x91\xe1\xee\x25\x39\x81\x1f\xc7\xc7\x1a\x20\x8e\x83\x72\xf1\x0b\x5b\x36\x81\x48\x45\x61\x92\xfc\x90\xa4\x4d\x52\x43\x0d\x31\xc6\xf6\x45\xb3\x8a\x3d\x35\x6a\x56\xa6\x3d\x5a\x51\x1d\x5f\x16\x8c\xf9\x10\x4f\x0b\x9c\x0d\x97\x15\xd4\xb3\x6c\x74\x36\x8f\xe3\x58\x0c\xca\xe6\x26\xee\x6b\xfa\xcc\x8f\xd7\x56\x35\xff\x02\xc6\xa2\x65\x88\x63\xe9\x54\x4a\xe8\x94\x42\x75\xbc\x6b\x33\x1c\x35\xc6\x37\x9f\x07\xd6\x89\x89\x63\xe3\x48\x38\x34\x0e\x35\xe7\xd8\xc5\x0d\x18\xca\xc5\xb1\xca\x3d\xd6\xf4\xdc\xc6\x72\x32\x6d\xf2\x1a\xd3\x46\xa4\xbc\x5e\x57\x5e\xd1\xf7\xf2\x52\x56\x25\xd7\x11\x59\x68\xbe\x03\xf1\xec\x50\x8b\x2b\x26\xf5\xab\xcf\xf5\x33\x3b\xd0\x7f\x4d\xe0\xb0\x32\x84\x9e\x9d\xce\xb1\xbe\xd9\xd9\x1c\xab\xb7\xc8\x1a\x6f\x21\x86\x0c\x49\xb5\x79\x36\x6e\x7c\xb9\x3e\x9c\x06\xec\x00\xa6\x9f\x82\x2b\x60\x73\xf1\x8c\x6e\xb6\x53\x9f\x28\x58\xdd\x57\x63\x6f\x2e\xdc\xfb\xfb\x0b\xbe\x28\x96\x7d\x85\x79\xb6\xbf\x02\x20\x1a\xfe\x92\xfa\xd8\x01\x83\x06\xe7\xcd\x40\x88\xe1\x84\x0f\xd9\x97\xdb\xc2\x5f\x4d\xb5\x2d\xfc\x4d\x73\xea\xf2\xae\x4a\x36\x4f\x0b\x59\xe9\x90\x54\x86\x02\x34\x99\x70\x5e\xa4\xfe\xda\x59\x91\xfa\x6b\x67\x45\xda\x55\xfb\x79\x91\x92\x37\x07\x0b\x88\xa7\x6b\xdc\x22\xba\xcc\x5a\x64\xc6\x53\xe9\x2b\xa8\x16\x08\xe8\x0b\x07\x3e\x1e\xf3\xbd\xab\x5d\xfa\xe9\xdb\x8d\x7a\xd1\x10\x35\x12\xc9\x32\xcf\xbf\xb9\xb1\x12\xf0\x0e\x67\x48\xa0\x75\xf2\xcc\x4a\xfd\x5e\xdc\xac\x54\xc3\xa6\xf4\x44\xbf\xb8\x85\x3b\xfd\x5b\x09\x4a\x49\x92\x3a\x03\x7a\xf9\x10\x5f\x01\x10\x2c\x93\x0c\x94\x0e\x92\x49\x77\xee\x47\xc0\x0d\x58\xf7\x23\x60\x71\xf0\xec\xd7\x67\xdb\xcd\x8d\x82\xfa\xca\xce\x3b\x7f\xbf\xc9\x2a\x56\x3f\x6c\x24\xbf\x42\x8e\xc4\xde\x31\x38\xd0\x30\x80\xce\xea\x31\x5b\xf4\x03\x8f\x45\x18\x40\x28\x99\xa0\xee\x92\xaa\xf3\x04\x31\x3c\x15\xc1\xd6\x2a\xca\x77\xfa\x96\x0d\x74\x2c\x5a\x15\x75\x94\x45\xa2\x6b\x7c\x35\x29\x43\x68\xdc\x59\x8b\xf2\x9d\xba\xad\xae\x8a\x3a\x36\xcf\x98\xd3\x28\xc3\xe7\xf0\x2c\x3e\x8b\xf2\x78\x55\x78\x4e\x2b\x68\x43\x49\xd2\xe0\xcb\xf7\x50\x16\xc1\x33\xd4\xaa\x00\x95\x81\xb6\x0d\x15\xa9\x56\x41\x84\x76\xfe\xd5\x16\x47\xa1\x24\xd1\xfc\xd7\x49\x51\xbe\x0b\xc9\xcc\xf4\x31\xac\x84\x55\x55\x1b\x33\x2b\x52\x38\x9d\x3a\x21\xcd\xaa\xbb\x6f\x9f\xea\x1e\xb7\xa7\x6a\x02\x69\x56\xed\x81\x5d\x96\x79\xce\x00\xc2\x3e\xdd\xe2\x93\x33\x4b\x37\x41\xc3\xba\x6a\x1f\xfc\xc8\xd2\xf9\x42\x43\x01\xce\xac\x53\x38\xb3\x04\xad\x80\x14\xe0\x32\x94\x4c\x18\xda\xca\x30\x58\xa3\x3a\x98\x20\x55\x77\x9e\xe2\x10\xa0\x9c\x40\xa2\x9d\x10\x00\x57\x4d\x7c\x1a\x71\xe2\x6a\xac\xf1\xc9\xfd\x68\x9d\xa5\x69\xce\xa2\x7c\x0a\xba\x9c\x43\x00\xfd\x8a\x15\x69\xb8\xcb\xe3\x21\x2b\xd2\x13\x48\x09\xef\xdd\x9f\x22\x64\x0c\xdf\xa3\xfc\x24\xff\xaf\xfb\x12\x67\xbe\x16\xb5\xce\x10\x64\x1e\xee\xb0\x45\xfc\x1c\xdd\x47\x86\x82\xb7\x8e\x29\x6a\x10\x46\x61\x28\x33\x7f\x80\xf5\xdf\x9f\xc0\xdf\x96\x68\x04\x8c\xf5\x81\x41\x0e\x95\xd6\xa7\xb5\xd0\xa9\x94\xb0\x4f\x99\x01\xe0\xfe\x63\xba\x0b\xf8\x82\x6d\x2b\x2b\x40\x2a\xea\xe8\x1f\xa6\x83\xa0\xe5\x6e\xde\xc7\x59\xdf\x13\x3d\xaf\x1d\xe7\x28\xd6\x6f\xb7\x75\xbc\x13\x6e\x35\xbd\x8f\xf7\xe4\xe7\xcd\xcd\x6c\xee\x7d\xcb\xc7\xdb\x14\x69\xd1\x7d\x02\x09\xf1\x41\xbd\x9e\xa9\x94\x39\x3c\x2c\x43\x6f\xf1\xa4\xd6\xcf\x01\xb2\xc3\x6d\xd8\xfa\xc6\xd6\xf7\x4c\x8f\xad\x78\x9e\xec\x25\xad\xdc\xfb\x3c\x83\xcf\x0f\x65\xb1\x64\x4f\xf2\xe4\x52\x3c\x41\x74\x4c\x1d\x36\x17\x3b\x43\x83\xd7\x92\x5f\xa5\x12\x83\xa5\xa9\xf6\xbf\xcb\xed\x20\x69\x1a\xb6\xde\x34\x2c\x1d\x34\xe5\x40\x76\x6d\x90\x14\x83\x44\xe8\x6e\x14\x83\x04\xdb\x1b\x0c\x83\x91\xaa\x78\x14\x84\x83\xe6\x2a\x69\x06\x69\xc9\xea\xe2\x6e\x33\x60\xef\xb3\xba\x09\x42\x7c\xc1\xc5\x1e\x2b\xaa\x88\x57\x25\x7e\x1b\xff\xb1\xc8\x7e\xdd\xda\x24\x1a\x86\x29\x1e\x58\xc8\x55\x80\x14\xeb\x29\x20\xad\xec\x3b\xe4\x51\x08\x7b\x01\x4c\x02\xff\x79\x7c\x4c\xe4\xf7\x5f\x9f\x86\x3d\x12\x5e\x2a\x00\xc6\x7b\x13\x8a\xc8\x55\x93\x7f\xcf\x9a\x2b\xc1\xaa\xf5\xb6\x6e\x48\xa1\x7f\xcb\x7e\xf4\xbd\xfa\x0a\x0b\x35\x5b\xa8\xd1\x85\x39\xb8\xc3\x6c\x3d\x0a\x8d\x98\xf0\x0b\xff\x07\xa9\x44\xb4\xa9\xb2\xb2\xfa\x9b\xcc\x7f\x0a\x57\x9d\x5f\x8d\xcf\xf8\x34\x42\xcd\x9d\x17\x2b\xa1\x16\xa5\x6b\x96\xcf\x60\x5d\xfa\x14\x20\xe7\xff\x14\xec\xae\x58\xba\x58\xa4\x4a\xcb\x2e\x7b\x39\x49\xf2\xb4\xdc\x36\xac\xca\xcb\x72\x33\xc1\x23\xcb\x1c\xe5\x57\xe6\x18\x43\x4d\x07\xa8\x6a\x90\x59\x66\x3e\xed\xda\xad\x7a\x82\x31\x73\x8c\x27\xc9\x37\x2c\x2b\x2e\x9f\xf0\xf5\x64\xa9\x91\x21\xf4\x16\xc3\x29\x4d\x8c\x67\x48\xde\xe1\x43\x98\x7c\x88\x52\x72\x8a\x17\x6c\x55\x56\xa2\x03\x2f\xa4\xe2\x0a\xfd\x1a\x23\x44\x94\xac\xf8\xc5\xaf\x07\x0e\x00\x7c\x74\x0b\xf6\xa7\xc0\x18\x1f\x3a\x90\x51\xc2\x4f\x12\xe9\xd1\x85\x3b\x3e\xc6\xfe\x84\x3b\xfc\x3b\x0c\x5b\xb2\x18\x9e\x85\x40\xd1\x99\x7c\xcd\xd2\xad\xcc\x74\x01\xf9\xd8\xe6\xcf\x1d\x9d\xcd\xa7\x20\xbc\xf6\xe7\xde\x9f\x4f\xf1\x99\xdb\x9f\xfd\xf9\xfc\x36\x8f\x5b\xd9\x6a\xa8\x99\x2f\x8e\x73\x7d\x54\xa4\x25\xcd\xc4\x5f\xb4\x9d\x68\x22\xb5\x76\x7c\x93\x09\x8b\x16\xee\xe0\xcf\x10\x68\xf6\xd0\xb3\x9f\x63\xe1\xd1\xfd\x07\x95\xc5\xb7\x08\x9e\x7f\xb5\x75\x52\x42\x81\x30\x3c\x42\x19\xae\x45\x08\x3c\x75\x4f\x95\x11\x8f\xda\x5e\xad\x59\x6a\x34\x6a\xdb\x96\xe8\x10\xf6\xf5\x25\x4d\x7e\x95\x8a\x56\x7f\x53\xb3\x43\x08\x9e\x26\x61\x36\x03\x6d\x17\x9a\x66\x5f\xc5\x82\x83\xd6\x1b\x39\x4d\x7e\x25\x54\x91\xb3\xd2\xb8\xcf\x54\xba\x7d\xe2\x1a\x5b\x54\x5e\x6f\x24\x23\x2d\xb9\xd1\x93\x33\x83\xdb\xf4\x2a\x92\xfa\x12\xfd\x1c\xa8\xe0\x24\x67\x7e\x56\xb2\x8b\x55\x54\xd3\x8b\xdc\x0f\x9f\xc7\x82\xf2\x3d\xa8\xb1\x97\x26\xbf\xf2\xb1\x12\x47\xed\xda\x2f\x3b\x5e\x98\x5f\x58\x6c\x98\x8f\x37\x43\x8d\x6f\x21\x37\x96\x84\xaa\xfd\x1b\x1e\xf2\x9a\x8f\x4a\x93\x5f\x91\x4f\x02\xe3\x4e\x97\x7d\x12\xfb\x00\x3f\xb0\x1e\xfc\x6d\x7a\x17\xeb\xe4\x18\x34\x56\xc4\xa4\x2b\xd3\x43\x98\x0d\x69\x8c\x8a\x8d\xc2\x06\x40\xd8\x89\x51\x64\x82\x7f\x5a\xf4\xa0\x80\x2c\xcf\x07\x77\x4c\xe2\xb5\xd0\x0a\x11\x5f\x42\x14\xca\xef\xf8\x78\x3d\xe7\xc8\x4c\xd1\x4d\x5e\xd0\xbf\x08\x77\x46\x05\x08\xc4\x51\xd8\xa8\x49\x26\x8f\x50\xdb\xc0\x2c\xa2\x2f\x8b\x66\x19\x7d\x65\x94\xa5\xef\xcf\x41\x17\x60\x2a\xbf\x3f\x9f\xc7\x30\xb6\xdb\x4e\x5c\xfb\x49\x56\xa3\x9b\x21\x32\x26\xdc\xc4\x68\x17\xc9\xfd\x4c\x8b\x38\x51\x1d\x2d\x50\xe3\x1c\x75\x72\xf1\xf4\x54\x8a\x0d\xb4\x19\xcd\xf6\x78\x93\x25\xf3\xd3\x93\x39\xf3\xe6\x49\x46\xa8\xf3\xc8\xce\x1c\x54\x5a\x0d\x73\xcf\x01\x2c\x10\x8f\x60\x5a\x63\xa1\xd8\xda\xc1\x2d\x7d\xa2\x02\xb6\xd0\x33\x14\xd0\x65\xda\xc5\x1e\x7f\x62\x65\x0e\x19\x71\xcf\xd7\x86\xc1\x73\xef\xad\xdd\xe4\xd0\x5b\x9c\x3b\xf7\xbc\xa5\x13\xfc\x75\x2e\xe8\xec\x05\x61\x0b\x05\x67\x97\x8b\x87\x36\xa9\xdc\x8b\x7a\x99\x1a\x58\x54\x11\x9f\xb6\xee\x5b\x18\xde\xe0\x5e\x97\x8f\x20\xfd\xf7\x4c\x5f\xcc\x9e\x8e\xbb\xc8\x8d\x05\x66\x50\x1f\xfd\x2c\xf6\x85\xf5\xb2\xe2\x0c\x99\xb2\x49\xf4\x7e\x2c\x5e\xa0\xfe\x87\x0c\x18\x1f\x07\x81\xcb\x33\x5f\x01\xdb\x29\x65\x2b\x50\xc6\x03\xff\xfb\x19\x07\x21\x95\xba\x25\xe3\x40\x72\x88\x54\x29\xde\x41\xc4\x71\x55\x5e\xcb\x1f\x89\x7d\x1f\xe1\xc0\xa6\xd9\x57\x1e\x11\x26\x67\xbe\x24\xf8\xd0\x10\x61\xc2\xdd\xbb\xb6\x1d\x66\xd4\xdb\x7a\xc3\x96\x8d\x7e\xbd\xc4\xe7\x5e\x91\x1c\xc7\xb1\xf4\x5a\xdb\x12\x6b\x99\xdb\x14\x57\x2f\xb8\xad\x32\xa9\xb9\x4d\x71\xe4\xc0\x83\xb6\x25\x0b\xc0\xd9\xdf\x24\x13\x06\x4f\xea\xe3\x1e\x49\x3e\x4c\x26\xd8\xb5\x3e\x68\x75\xf5\xfd\x8b\xc7\xe7\xcf\x2e\x9e\x3c\x7c\xf4\xfa\xc5\xcb\xff\x7d\xf1\xf4\xf9\xff\x3a\x7f\xf4\xfa\xe9\x8b\xe7\xaf\xb4\x9a\x39\xc2\x9d\x3f\xff\xe9\xf8\xd8\x30\xec\x3c\x7f\xfe\x53\x67\xe9\x23\x9f\x75\x68\x77\x5b\x47\x47\xfb\xab\x04\xed\x93\x47\x72\xf0\x7d\x72\xcb\x0e\xc4\x53\x65\x7d\x73\x7c\xaf\x63\xb6\xb3\xe2\x8a\x55\x59\x93\x15\x97\x17\x29\x9f\xb5\x8f\x9c\x73\x3e\x86\xa7\xaa\xca\xc7\xd9\xb2\xe9\x1b\x88\x62\xbd\x55\xd7\x87\x68\xe1\x27\x1d\x82\xc1\x47\x8c\x7f\xcc\x88\xec\x24\x2e\x11\x58\x49\x56\x02\xea\xf8\x18\xff\xaa\xf4\x9b\x1b\xc2\xed\xb4\x34\x96\x51\x75\x0d\x42\x4f\xb3\xbb\x43\xa7\x1a\x04\x95\x96\x1b\xc9\xf2\x8a\x1d\x50\x0c\xe0\xe4\xb9\x95\x2c\x9b\xb2\xba\x7e\x74\x60\x51\x0a\x1e\x1a\x63\x3c\xb4\x06\x0a\x2e\x6a\xe0\x88\xfd\xb4\xf8\x05\xa9\x48\x7d\x40\x1d\x66\x01\x19\xc2\x43\xd7\x20\xa7\x52\xf4\xf6\xf5\x6d\xeb\xf7\x96\x33\x27\xec\xa9\xdb\xda\x85\xe4\x3b\xf7\x37\x70\x61\x5a\xb7\x5c\xf0\x01\xbd\x38\xbc\x34\x01\x0f\x5b\x85\x9e\xf4\x92\x86\x90\xc2\x04\x4d\xfa\xbf\x84\x2f\x89\x7a\xf2\x4b\x58\x94\x22\x24\x84\xe3\x86\x9f\xe6\x14\x4b\xb3\x35\xf3\xfb\xc2\xb8\xf7\xd1\x5e\x91\x86\x1d\xad\x2d\x45\x44\xf8\x40\xf5\xde\x02\x6b\x00\x73\x1b\x09\xf7\xbe\x12\x44\x3b\x55\x51\xb4\x24\xaa\x19\xd1\xf3\x47\x65\x99\xe8\x0d\xbb\xc6\xa0\xaa\xe1\x0e\x53\x66\x6f\xd8\xf5\x3c\x86\x24\x9f\x1b\xc3\xd5\x36\x87\x98\xea\x91\x58\x5a\xfa\x0a\x92\x67\x29\x04\x3c\x42\x08\x05\x0a\xaf\xa3\x02\x3c\x8e\x63\x45\x6c\xa9\x0c\x9f\x63\x8f\x90\xe3\x3f\x44\x19\x7e\x56\x5c\x0e\x9a\x72\x20\x7b\x30\x48\x0a\x15\xe9\x59\xd4\x35\x19\xfc\x33\x18\xc9\x46\x46\xc1\x3f\x03\x54\xfb\x2b\xca\x6a\x9d\xe4\xd9\xbf\x58\xfa\x5c\x45\x61\x53\x69\x66\xa7\x34\x21\x18\x5f\x25\xf5\xd0\x2c\x19\xfa\xac\xe1\x93\xa2\x28\x9b\x41\xc5\x4e\xd4\xcc\x58\x9d\x88\x06\x49\x3d\xc8\x9a\xc1\x55\x52\x0f\x12\x34\x49\x1b\x2c\x18\x2b\x06\x79\x59\xbe\x61\xe9\x60\xbb\x19\x07\xc2\x20\x50\xa2\xd3\xb8\x66\x8d\xd5\xb6\x9c\xdd\xd0\xdc\x2c\x3e\x48\x62\xf7\x19\xb6\xd1\xb6\xe8\x5e\xb2\xde\x25\xba\xcd\xcc\x99\xbd\xaf\xd8\xba\x7c\xcb\xec\xc9\x23\x44\xb6\x17\x82\xd2\xc8\x5e\x40\x4a\x0a\x7b\x01\xd5\x64\xf9\x81\x54\x44\x87\x4f\x38\x41\xe8\x07\x68\x79\xc5\x84\x4b\x42\xa3\xef\x97\xce\x1a\x02\x2e\x22\xbc\x76\x01\x00\x9f\x2d\xba\x9e\x80\xd2\x66\x5d\x95\x5d\x87\xd0\x57\x53\xcb\xe2\x6b\xc6\xed\x8c\x07\xa1\x64\x73\x8a\x82\xc8\x84\x36\x4a\x59\xbd\xac\xb2\x85\x77\xea\x94\x9e\x10\x26\xb4\x91\xaa\xf6\x20\xe8\x75\xf2\x86\xbd\x76\xa2\x45\x4a\x22\xe3\x16\xc4\x0c\xa5\x0b\x38\xf4\xc4\xbd\x50\xa4\xea\x10\x12\x25\x5d\xca\xa0\xf7\x36\x94\xbf\x74\x2c\xaf\x7e\x47\x15\x4d\x3e\x11\xf4\xe8\x76\x08\x65\x8e\xe4\x89\xb0\xff\xe8\x6c\x35\x04\x7d\xd4\x0f\x6b\x83\x13\xb7\x7d\x95\x8b\x41\x3d\x29\x41\xd5\x93\x48\xf8\xae\x37\x64\x06\x25\xd1\x94\xcc\x5d\x96\xe7\xec\x32\xc9\xc1\x6b\xf4\x8b\x0d\xab\xc0\xab\x8e\xf2\xa7\x25\x2a\x93\x04\x8f\x1e\x7a\x80\x79\x46\xdd\xaa\x0b\x5d\x6d\x53\x09\x95\xa8\xd9\xae\xc1\x38\x88\xad\x7a\x36\xc2\x3d\x4a\x74\xd0\xcc\x1d\x38\x50\xa3\x41\x71\x00\xc9\x4a\x40\x65\x56\x7e\x48\xf7\x1c\x93\x20\x9c\x9d\xc2\x2d\xda\x00\xc3\xe0\xc3\xdd\x27\x0e\x72\x13\x83\xc4\x3a\x6d\x06\x65\x31\x28\x9b\x2b\x06\x81\xf1\xae\x37\x6c\x14\x0c\xeb\x70\x3c\x90\xae\xce\x06\xcd\x15\xb3\x4b\xf0\x73\x69\x90\x66\x2b\x08\x94\xdf\xc0\x05\x0f\xdc\x19\x6d\x58\xb5\x2a\xab\x35\x14\x31\x46\xc5\xcf\xab\x24\x4d\x0d\xfe\x6e\xe8\x61\x45\xa3\x8e\x59\x6e\x35\x2b\xe4\xd9\x9b\x0a\x5e\x01\x3d\x97\xae\x6d\x0e\x99\xff\xcc\x98\x7b\x6b\x35\xcd\x2a\x2d\x0a\xfe\x94\x66\xda\xa4\xdc\x2a\x49\x56\x4b\x07\x06\x9e\x04\xa1\x50\xf2\x37\xfc\xb1\x1a\xd3\xe4\x0e\xb3\xa3\x03\x9e\xde\x7f\xd8\xd1\xf3\x21\x5c\xcd\x43\xaa\x35\x41\x19\x2e\x35\x0d\xe0\xb6\x2e\x41\x64\x01\x45\x89\x1e\xf6\x66\x30\xbc\x1b\x8c\xcc\x46\x47\xc1\xdd\x68\x70\x37\x18\xc9\x59\x90\xdf\xc6\x34\x8f\x82\xbb\x21\xa2\x9a\x85\x66\x9a\x93\x8e\xac\xa3\x6a\xff\xac\x46\xbe\xdb\xc9\x7e\xc2\x70\x20\xf6\xf9\x2a\xef\xdc\x2d\xde\x7b\x92\xb5\x69\x7a\xe8\xb3\x7d\x95\xfa\xd4\x7b\xe9\x76\xdc\xce\x87\xed\xab\x7d\x3b\xf6\x16\xfb\xce\x37\xbb\x36\x67\xf3\x51\x9b\x50\x4e\xa2\xc1\xb0\x7e\xd4\xfe\x1a\xd8\x4b\xfa\x1f\xdd\x65\xce\x55\xfd\x03\x36\x5b\xca\xea\xa6\x2a\xaf\x7d\x81\x36\x85\x91\x88\x71\x63\xb5\xb5\x3c\x8d\xdc\x59\x36\x1f\x8b\xfa\x86\xd2\x83\x0a\x91\x18\xb1\x64\x79\xf5\x18\xb3\x93\x45\x2e\x54\xdd\x2c\xcb\x26\xfe\x3f\xa9\x43\xba\xda\x47\x51\x94\x36\xc1\x47\x22\x53\x8b\xda\x84\xf3\x10\xb8\x26\xb0\xe6\x43\x87\x02\x85\x01\x47\x86\xf6\xa8\xc2\xd6\xca\x0c\xa9\x66\x00\xc7\x28\x75\x65\x37\x29\x92\x4a\x26\xc4\x5d\x53\x88\x1d\x95\x9b\x4b\x23\x25\x5d\x44\xba\x20\xd3\xc7\xb2\x6a\x52\xf0\xbc\x6e\xab\x9a\xf5\xea\x70\x32\xd4\xdb\x23\xfd\x2e\x58\x67\xc5\x65\xce\x9a\xb2\x38\x8a\x51\x56\xab\x6f\x39\x56\x05\xfc\xd2\xa2\x7b\xa8\xfd\xb0\xa1\xff\x95\x26\x4b\x1a\xe6\x9b\x1d\xde\x17\x04\x34\xc4\x0b\xe2\x09\x04\x75\x57\x64\x1f\x7c\xe5\x7b\xbb\x6a\xf7\xb1\x26\x7d\x14\xa2\x13\xa9\x91\x8b\x52\x13\xad\xe5\xe1\xa5\xb3\xa5\xfc\xe5\x52\x0a\x95\x35\x0a\x06\x59\x0d\x5e\xf7\xc4\x23\x4a\x7e\x3d\xa8\xb7\x9b\x4d\x59\x71\x2a\x52\x0a\x0f\x71\x7a\xfa\xea\x80\xac\xe7\x9e\xc1\xa2\x52\xb3\x84\x10\x4b\xea\x5b\xfd\x40\x01\x69\x17\xbd\xce\xfc\xe8\x66\x17\xdb\x2c\xd7\x14\x81\x62\xb1\x3e\xc0\xb1\x71\x8c\x42\x87\x6e\xaa\x68\x9e\xbe\xad\x5c\x09\x03\x4e\x91\x27\x6a\xe0\x1b\xdd\x52\x79\xd1\xc5\x5d\x9d\x71\x99\x45\x80\x40\x71\x5c\xd5\x15\x3b\x98\xaf\x20\xc7\x06\x6e\xe9\x22\x47\x06\x82\xf1\x9e\xce\x74\x19\x49\x21\xe7\xb1\x2e\x20\xdf\x38\xfd\x47\x82\x10\x72\x49\xee\x5e\x8b\xb8\x34\xcb\xcc\xf9\x77\xb7\x5b\x28\xee\x6a\xe9\x8c\xa9\x85\xe8\x5e\x51\xcc\xd1\x58\x20\xb7\xb5\x46\x71\x25\x3c\x31\x76\x22\xb8\xf0\xb1\x5e\xfb\x67\xba\xb2\xf9\x91\x67\xdb\x0d\x3c\x70\xb0\xaa\x4d\xcf\xb5\xc8\xd3\x21\x7a\x67\xbc\x14\x77\x46\xda\xa1\xde\xf6\x88\x7d\x82\xbe\x66\x77\xed\x09\xd0\x05\x92\x49\xe8\xb3\x4a\x08\x2d\x5d\x32\x5a\x28\xce\x07\xd7\x86\xa5\x42\x08\xa0\x65\x3f\xa4\x14\xe5\x19\xa6\xfb\xe6\xa0\x4b\x58\xaa\xa9\x59\x1f\xf9\xf7\xd1\x51\xf0\x9d\x85\x55\xde\xdc\x88\x87\x31\x29\x40\x41\x8f\xcf\x47\xf4\x5d\xf0\xe6\xe6\xa8\xff\x11\x0c\x5f\xd7\xe2\x38\x0e\xd6\x65\xca\xf2\xc0\x96\xca\x68\x47\x23\xe4\x99\x41\xff\xec\x58\x03\x3a\xe3\xe4\xc1\xc0\x49\xe9\x2a\xee\x00\x8e\x2f\xa4\x74\x88\x2c\x05\x95\x33\xb9\xe2\xa5\xa9\xb5\x9a\xb1\x39\x4d\x43\x42\xad\x6c\xd0\x71\xc5\xca\x0d\x2b\x1e\xe5\x49\x5d\x0f\x9d\xbe\x84\x53\xcf\xe1\x61\xd5\xa0\x88\xac\x95\x4e\xb0\x78\xef\x24\x22\x71\xe7\xf8\xf4\x9c\x62\x33\x41\x31\xb8\x71\xc4\x0a\x64\x76\x3a\x27\xf4\x19\x0c\xa7\x7d\x6b\x26\x63\x06\xe8\x89\x34\x2f\xff\x7a\x6b\xde\xdc\xcc\xe6\xe1\xa1\x95\x10\xca\x2c\xbb\x3a\x77\x2a\x38\xe8\x60\x21\x05\xc0\x28\x77\x7b\xa9\x5e\x4b\xbe\x63\xd7\x7a\x5b\x9b\xbd\x11\x8f\x2b\xea\x97\xb9\x02\x1c\xca\xa1\x20\x7b\x11\xf1\x83\x96\xc0\xc5\xfb\xd9\xdc\xc5\x68\x77\x33\xb8\x53\xea\xbd\x66\xda\xcb\xf3\x31\x35\x3f\xed\x5c\x33\xb7\xd6\xee\xa5\xf3\xec\x10\xcf\x06\xee\x59\x48\x93\xe4\x3c\xf5\x2c\xd8\x1e\xa6\x71\x47\x29\x7c\xff\xf1\xa0\x8f\x1b\x2f\x9f\x44\x1a\x82\xbb\xa9\xc9\xe3\x4a\xa2\xa8\xe9\x3a\xde\xc8\x7d\x74\xd8\xb2\xb0\xb7\x84\xdd\x68\xd3\x3a\x34\xed\x4a\xac\xcc\xbd\x14\x22\xa4\xe6\xb9\xf6\x2d\x4a\xc3\x6b\x0d\x17\x9b\xff\xe5\x65\x9e\x95\xcb\x24\xd7\x76\x98\xe4\x11\xd1\x37\x53\x3c\xbb\x7f\x92\x5a\xa5\x21\x23\x18\x6a\xc2\xce\x92\xdb\x92\x7e\xdd\xfc\xf7\xf4\x0a\x4a\x1b\x37\x48\xbb\xd9\x34\x5b\x36\xf1\x8e\xcc\xa8\x23\xfb\xa9\xb6\x39\xeb\x94\x8d\xda\x87\x24\x00\x9b\x6c\x8e\xc1\x21\x9b\x94\x1a\xa1\x95\x20\x9d\x00\xb6\x84\xcc\xc1\xbb\xf0\x4e\xb6\x3d\x71\x3a\x31\x51\x8f\x30\x78\xe3\xfa\xe9\xe1\xb3\xa7\x8f\x2f\x9e\xfc\xf8\xec\xd9\xc5\xf3\x87\xdf\x9f\x5f\xbc\x3c\xff\xf6\xfc\xff\xff\x43\x7c\xef\x1f\xb3\x7f\x4c\xe6\xa3\xf1\x68\x02\x7f\x3f\xbb\xa7\xef\xac\xdd\x52\x13\xb0\x66\xf6\x57\x88\xde\x70\x09\x03\xe3\x7d\x0c\x96\x51\x90\x78\xd5\xa0\xcb\x3d\x60\xef\x37\x70\x38\x4e\x06\xff\xe4\xa3\x9e\xf0\xd4\x7f\x0e\x2e\xcb\x66\x32\xd0\x82\xee\xd0\x5c\x11\x7b\x35\xc4\x9e\xe9\x15\x9a\xf9\x56\x66\x46\x0a\xce\x3d\x49\x60\xc9\x77\x9b\xa9\x37\xda\x6c\xc3\xf6\x83\xf4\x81\x1c\xc5\x9f\x0f\x55\x9b\xf7\x2a\x52\x74\x2b\xf0\x48\xdc\x37\x8b\x75\x29\x56\x70\x68\xfc\x75\x49\xc5\x2a\x6f\xd8\xb5\x88\x06\xc0\x6b\x53\xf5\x42\xa8\x4a\x5e\x9b\xe5\xda\x9e\x83\x2b\xba\xc8\x01\x40\x5d\xa1\xb5\x25\x9c\x46\xcc\x36\xd4\x03\xe1\x9b\x8a\x97\x6e\x2d\x3d\x08\x42\x25\x54\xeb\x96\x0e\xc4\xba\xa4\xaf\xc5\xd0\x63\x11\x88\xc5\x2c\x61\xbd\xd0\x7d\xcc\xd0\x40\x8a\x73\xc0\xa8\xf8\x25\x00\x46\x65\x78\xdc\x88\x14\x35\x24\xda\x8b\xd2\xf1\xfe\x22\x83\xb8\x89\xde\xae\xc9\xcb\x35\xc7\xd4\x41\x86\x33\x8c\x4e\xf7\x3d\x1d\xe6\x40\xa1\x56\x6e\x44\x65\x61\x51\x3b\x6c\x2b\x58\xf3\x19\xff\x35\x0f\x6d\x55\x4e\x8a\xde\x26\x02\x11\x1c\x87\xc8\x13\x27\x89\x8e\xd7\x01\xb8\x0d\x89\x6b\xd6\x24\xf9\xbd\x65\x59\x81\xc1\x31\x24\x55\xdb\xa2\xc9\xd6\xec\x5e\x7d\x5d\x37\x6c\x7d\x2f\x4f\xfe\x75\x0d\x7e\xda\x15\x00\xa9\x48\x02\xa5\xc9\x65\x5f\xb6\x7c\x6c\xef\x83\x31\xba\xe7\x01\x63\xef\x1b\x50\xd9\xab\xca\x3c\x67\xd5\xed\x8c\xa2\xf5\xf7\xe7\xd6\xf7\x17\xd6\xf7\x1f\xad\xef\x2f\xbd\x0a\x7d\x18\xfa\x62\x8f\x21\x75\xb5\x2d\x9e\x95\x49\xfa\xd7\xb2\x7c\xe3\x3a\x7f\xa7\x99\xe8\x32\xfe\xe1\xb7\xb1\xd5\x51\xbb\xc2\x97\x52\xb1\xcf\x1a\xc0\x58\x66\x48\xdf\xf3\xbc\x4c\x27\xb0\x95\x0f\x65\x48\x28\x97\xd8\x9a\x0d\xda\x09\xbc\xce\x52\x60\xf2\x5b\xe4\xf2\x71\x3c\x7e\xf8\xad\xf8\x52\xbd\x50\xcd\x09\x28\xab\x93\x76\xa7\xe8\xf4\x0c\x03\xa7\xdd\x20\x22\x1f\x61\x1f\xa6\xdb\x68\xd3\x87\xf8\x98\x24\x4f\x97\x8b\x4b\xd6\x74\x65\xd5\x4e\x16\x18\xd8\x5a\x69\xd2\xb4\xdf\x6c\x70\xbd\xd9\x36\x2c\x75\x76\x9b\xee\x63\x6d\xf4\x57\x82\x95\x5b\xbe\xb1\xe5\x66\xd1\x10\x17\xab\xf2\x60\xbd\xe0\xdf\x74\x5b\x18\xdf\x7f\xb2\xbe\xff\xbc\x57\x27\xf6\xa0\x2d\x74\xc9\x1a\x67\xe7\x5c\xb2\x06\xa3\x24\x58\x79\x9f\x5f\x5c\x70\x1e\x4e\x57\x8e\xe6\x33\xd6\xa8\xec\x16\xb2\x02\x35\xb2\xad\xc1\x8e\x45\x3a\x8a\xa1\xc4\x9a\xc5\xd6\x0c\x8c\x65\xc6\x54\x2a\x2a\xe3\x92\x7c\x9f\xbd\xcf\xcc\x7d\xf4\xa7\x8b\x8b\xb1\x95\x0f\x65\x38\x4e\x38\x4d\xf3\xc4\xa9\xd4\x5a\xc4\x12\x4f\xac\x81\xfc\x19\x1a\x27\xb9\x84\x89\x64\x55\xb6\xba\x7e\xce\x58\x5a\x3f\x96\xf0\x19\xc3\x2b\x23\x82\x47\x9a\x77\x07\xc7\x4c\x32\x8a\x90\xac\x3c\xca\xa2\x3c\x5a\x63\x30\x44\x19\x85\x14\xa5\xc4\x00\xee\x08\x88\x75\x49\x04\x10\x5e\x45\x74\xb2\xef\xcd\x91\x14\x0a\x74\xd7\x26\xc1\x48\x67\x80\xbc\x4d\x5f\x14\xf8\x11\xad\x33\xc3\x70\x27\xba\x28\x1d\xfa\xa9\x1c\xb0\xaf\x91\x99\x3a\xbc\xaa\x92\x1c\x2b\xdc\x18\x8a\x45\x26\x73\x13\x8e\x02\x8c\x70\x31\x98\x0d\x82\x91\xac\x84\x46\xa5\x1e\xcc\x07\x8b\x6d\x33\x08\x46\x56\x13\x5f\x9f\x3d\x08\x9a\x2b\x76\x1d\x4c\x82\xac\x01\xc0\xa5\x0a\xf9\xb3\x60\x83\x55\xb9\x2d\xd2\x40\x78\x88\x15\x28\xa8\x31\xa2\x7e\x24\x30\x49\x32\x05\xb1\x44\x2d\x3b\xd8\x93\xee\x2a\xb0\x1b\xd2\xdc\x0d\xfa\x3c\xe1\xbc\x19\x59\xe7\x00\x52\x83\x50\x2f\xb8\x03\xa1\x75\xe0\xc3\x48\xc8\xcc\x65\x17\xa8\xc1\x86\x2c\x40\x84\xbc\xbc\x6a\x19\x28\x98\xa5\x75\x64\xe2\xcf\xc7\x23\x4d\x1c\xc7\x76\xbb\x86\xd7\x6e\x85\x17\xe2\xf1\xc1\xc4\x22\xab\xa8\xf0\x3f\x8c\x96\x6e\x75\x9d\x5c\xc2\x53\x98\xbb\xf6\xff\x3f\x5c\xfb\xb4\x64\xf8\x6a\x94\x15\xcb\x7c\x9b\x82\xee\x8f\x59\xe3\x28\xf8\xe7\x78\xf0\xba\x1c\x24\xcb\x25\xab\x6b\x50\xf6\x71\x41\xc8\x62\x0d\x56\x55\xb9\x1e\x04\x23\x6f\xab\x51\x57\xc6\xa0\xbe\x02\x1c\xba\x4a\xde\xb2\x41\x32\xf8\x27\xf4\xee\x9f\x03\x79\x0c\xe1\xe3\x76\x56\x83\x63\x8e\xaa\x4a\xae\x07\xe5\x0a\xba\x42\xce\x12\xa5\x43\x2b\x3a\x5a\x8e\x83\xa9\xde\x0b\x2f\x19\xa8\x2f\x2d\x19\xf1\x12\x21\x26\x08\xdd\x9a\xff\xd8\x85\x13\x06\xbb\xef\xf1\x20\xb2\x44\x7d\xab\xf2\x2d\xab\xde\x55\x19\xb0\xf8\x0c\xdf\xf5\x78\x27\xff\x49\x7a\x38\x0e\x46\x6f\xd8\x35\x28\x61\xad\xfc\x13\x11\x82\x91\x8c\x45\x3f\x85\x9c\x78\xb8\x43\xf9\x1a\x2b\x12\xbd\x7d\x32\x88\xa3\x89\xd8\x3f\x47\x22\x37\x99\xcd\xa3\xac\xc8\x1c\x07\xed\x88\xc7\x20\x29\xb8\xca\x6a\xbd\x65\x84\x05\x1d\x68\x7f\x02\x7e\x07\x98\x12\x84\xda\xd3\xba\x30\x41\x34\xf1\x31\xdc\x75\x51\x60\xad\x39\x68\x13\xe0\x56\xb7\x4f\x26\x46\xa9\xfb\x41\x00\xc9\x0e\xa7\x71\x91\x71\x0c\x74\xef\x59\xf2\x50\xac\xa0\x87\x66\xb3\x92\x0e\xd8\x7b\x87\x24\xd4\x93\xfd\xa4\xab\x0d\xfb\xcc\x71\xc8\x0a\xf6\xb2\x6d\xbe\x4b\x81\xc1\xba\x7d\x24\xd7\xf6\xb1\x97\x1c\xab\x7c\x91\xac\x59\xbd\x49\x96\xee\x2d\x6a\xcd\x87\x5a\x2b\x5f\x50\xb7\xba\x25\x89\xfe\xe7\x49\xb3\x2a\xab\xb5\x95\x5c\x6d\x8b\x8b\xbc\x2c\x37\x1d\x4c\x67\x87\xf9\xd8\x6d\x78\x4e\xc1\xd9\x16\xdb\x35\xab\x92\x45\xce\x2e\x4c\x86\xd6\x57\x0b\xda\x3e\x5c\xf8\x18\x58\x0f\x34\x10\x2d\x1f\xf0\xdb\x8c\xbd\xab\xe5\xb4\xb0\xb7\xac\x68\x2e\xd2\xac\xde\x24\xcd\xf2\xaa\x0b\xea\x97\x5f\xb7\xac\xba\xee\xe2\x97\xf9\x27\xeb\xcd\x74\x59\xed\xbc\x14\xcb\x73\x95\xd4\x57\x17\xf2\xab\x07\x2c\xab\x9b\xb2\xba\x3e\x00\x32\xd9\x36\xe5\x01\x60\x45\x59\x30\x17\xec\x2a\x29\xd2\x9c\x2d\x92\xaa\x3e\x11\x21\x44\x7f\xb7\xfc\xbf\xfe\xfe\x6f\xeb\xfb\xec\xd4\x4e\xb0\x7b\x78\x66\x77\xf1\xcc\xee\xe3\x99\xdd\xc9\x33\xbb\x97\x67\x76\x37\xcf\xec\x7e\x9e\xd9\x1d\x3d\xb3\x7b\x7a\xdf\xee\xe9\x7d\x67\x2e\xed\x9e\xde\xb7\x7b\x7a\xdf\xee\xe9\xfd\x3f\xfe\x67\xef\x47\x9d\xa2\x89\x2f\x0e\x11\x4d\xfc\xd1\xed\xc8\x73\x49\xff\xec\x3b\x52\x57\x64\x3c\xef\x1d\xc9\x03\xdc\x29\xca\xf8\x73\x87\x28\x43\x04\xb7\xb5\x90\x4f\x46\xee\x15\x83\x8f\x6d\x5c\xb4\x5b\x5e\x26\xc5\x53\xf4\x09\x65\x23\xe9\x58\x65\x4d\x7b\xcc\x53\xef\xbb\x55\xea\xd3\x2f\xb6\xd1\x9a\xdc\x0d\x71\xed\x15\xc9\xf5\x78\xec\xf3\x5c\x62\xd1\xb5\x73\x57\x03\x9e\xe5\x02\xd7\xce\x5d\xf0\x9e\x55\x3b\xe7\x24\xf8\xb1\xa2\xc0\xb1\xbd\xa7\x6c\xf8\x5f\xfe\xc6\x89\x71\x6c\xef\x34\x47\xa0\xc5\x09\x6f\x6c\x6f\x3f\x2f\x94\xd9\xe6\x7d\xcf\x92\xfd\x35\xa9\x41\x56\xeb\x08\xb1\xee\x7b\x36\xce\x5f\x91\x56\xfb\xe1\x3d\x8b\xf7\x70\xdb\x94\x7e\x60\x8f\x9c\xee\x79\x59\x30\x3f\xb0\x67\xed\x60\x9f\xff\x55\xd1\xf4\xd8\x26\x13\x36\xfc\x77\x22\x76\xe6\x77\x26\xfa\x3d\x66\x8b\xed\xe5\xc3\x34\xd9\x34\xac\xa2\xae\x17\x37\x15\xe3\xdc\x71\xaa\x6d\x1e\x09\xa7\x2a\x3c\x73\xbb\xef\xf7\xad\xa7\xe0\x38\x95\x69\xda\xf3\xbd\xe5\x03\xbd\xd3\xea\xd2\x6a\xc8\xb1\xa9\x94\x4e\xaf\x04\x93\xab\xf9\x63\xc2\xe9\xb6\x53\x5f\xa7\xc8\x2b\x89\xae\x1f\xdf\x47\x84\x1d\x53\xef\x50\x86\x01\x42\x05\xa1\x32\x67\xdb\x03\x2f\xc0\xa0\x80\xb0\x10\xdc\x5b\x02\xe1\x82\xb0\x75\x84\xad\x8a\x6e\x4a\xcd\x18\x83\x3e\x46\xbb\xaa\x2c\x9b\x73\x8c\xeb\x3e\x09\x16\x65\x7a\x1d\x44\xcc\xdc\x8b\x32\xe2\x63\xdd\x94\x6b\xd8\xa6\xd2\x32\xb6\x62\x49\x9a\x15\xac\xae\xb1\xca\x24\xaf\x27\x67\xce\x15\x48\x85\xcd\xfa\x4c\x60\xc3\x67\x31\xee\x5d\x71\xf5\xd0\x73\x7a\x71\x81\xab\x08\xaa\x08\x1a\x9b\x84\x32\xb0\xd8\xa3\xf8\x02\x22\xa8\x32\x24\x49\x00\xbc\xc4\xc8\x2f\xe9\x52\xf2\x69\x91\x35\x19\xaa\xb4\x87\x42\x32\x9c\x67\x8b\x2a\xa9\x32\x26\x4d\xf0\x58\xf5\xa8\xac\xd8\x33\x48\xbd\x1e\x06\x7a\xa7\x04\x91\xb5\x75\xc6\x3f\x9d\xbf\x7c\xf5\xf4\xc5\xf3\x03\x6b\xc2\x71\x06\x11\xfe\x1d\x86\x63\xe4\x20\x43\xed\x00\xe1\xd9\x8b\x6f\x2f\x64\x9d\x3b\x27\x49\xb8\x4b\x90\x1a\x6f\xcf\xe0\x4a\x58\xc7\x16\xed\x1e\xaf\x93\xcd\xd0\xea\x8f\xad\x5f\x2d\x76\x03\xbf\x8d\x81\x5f\xdf\x00\xe2\x10\xcb\xfb\x66\x8b\x1a\x5d\xeb\xe4\xfd\x73\xd5\x4c\xfc\x7d\xd2\x5c\x8d\xd7\xc9\x7b\x7a\x2b\x24\xbd\x70\xa7\x00\x5c\xa0\x9a\x11\xb6\x45\xcc\x71\xa9\x68\x93\x2c\x19\xda\x81\xc3\xe1\x30\x34\xda\x3b\x21\x3d\x1a\x9d\x85\x42\x20\x36\xe0\x9d\x6b\xdb\xc8\x44\x89\x6e\xdb\x6b\x0f\x4a\x91\xbd\x60\x63\x16\xda\x66\xbb\xd6\xd7\x06\x7a\x59\xb8\x4c\x71\xd1\x52\x42\xb8\xd3\xee\xeb\xcc\xd4\xac\x80\xea\x46\x68\x73\xe0\x61\x80\xb7\x85\xc9\x3a\xc9\x8a\x80\x2a\x32\xf8\x21\x22\x5a\x63\xeb\xa8\x6b\x1b\x86\x8f\x56\xdd\x6d\xe4\x6e\x13\x7b\x72\x55\x4c\x1d\x1d\x00\xef\x33\x61\xc1\xfa\xd9\x38\xab\x5f\xb2\x24\xbd\x0e\x77\xd5\xb6\xd0\xce\xb8\x03\xf4\x1f\x53\x07\x10\xb6\x25\x0a\x2e\x32\x55\x7b\x40\x5d\x09\x7d\x36\x0c\xc7\x60\x32\x31\xd4\x2a\x24\xdb\x82\xee\x58\x5e\xef\xd0\x57\x49\x28\x43\x39\xbe\x94\x34\x88\xf6\x1b\x67\xde\x25\x4f\xa3\x51\x1b\x25\xe9\xdb\xa4\x58\xb2\x5b\x95\x3b\x39\xd1\x41\x4a\xdc\x5c\x11\x0e\x6f\x5b\x8c\xcb\x62\xc9\x88\x10\x26\xcd\xd2\x6f\xd8\xb2\x5c\x33\x9c\xa4\xd6\x67\xa5\xbf\x1f\x83\x3d\x08\xd0\x77\x88\x09\xed\x88\x0f\x6c\x41\xeb\x2f\xf7\x37\xe1\xc3\x96\x36\xba\xf0\x67\xa8\x18\xae\xda\x72\x83\x2a\xc9\x1a\x3b\xe2\x16\x7d\xfd\xad\xb6\x0c\xda\x5a\x53\xc4\xab\xea\x61\x68\x3d\x10\x1a\x62\x22\xe2\xd4\xc1\x46\xa7\x21\x09\x5e\x95\xd5\x1e\xdb\x94\x4e\x2c\x3a\xa3\xa6\x25\xfc\xc4\x79\xc9\x8b\x8a\xe5\xab\xc8\xe9\x67\xcc\x87\x12\x4e\x9b\x33\x80\x5f\xe3\x0a\xab\x98\xca\xb8\x94\x66\xd9\x28\x10\x0a\x53\x81\x0c\x47\x6b\x9f\xbc\x1d\xdb\xda\x34\xe1\x91\x63\xca\xc8\xc6\x6d\xc3\x96\x97\x05\x2a\x0e\xd0\x64\x48\x21\x44\xcf\xa5\xb3\x6d\x23\x6b\x46\xf2\x94\xe4\x74\xbc\x2c\x8b\xba\xa9\xb6\x9c\x90\x45\x01\x05\xa1\xef\x0f\x9e\x29\x8a\x2e\xab\x64\x73\x85\x51\x9c\x1f\x7e\x1b\x29\x41\x5a\xac\xce\x34\x82\xd0\x15\xbc\x2b\xf0\xc4\x41\x56\x18\x1d\x09\x77\xe4\x2b\xa6\x39\xc2\xc3\x24\x34\x33\x4e\xd2\xf4\x3c\xbd\x64\xf5\x90\x40\x8c\xed\x46\xc6\xfa\xb7\x91\x2c\xbc\xf6\xd1\x24\xf4\xe1\xd6\x62\xe5\x4d\xb9\xa9\xcb\x8a\x04\x87\x78\xcb\xaa\x46\xba\x1c\xa5\xdd\xc3\xf4\x31\x88\xc3\xa7\x24\x83\x6c\x68\x35\x0f\x7c\xb1\x22\x93\x56\x39\x08\x5b\xb3\x66\xbb\xb1\xee\x68\x43\xe5\xa6\x80\x93\x70\xc9\x77\x35\x49\x05\x27\x27\x98\xfa\xc3\x99\x81\x8c\x42\xc3\xea\x06\x94\x59\xf0\x53\xb3\xa5\x9b\xaa\x5c\xb2\xba\x7e\x98\xe7\x8a\x43\xfb\xe6\xc5\x8b\xd7\xe7\x8f\xd1\xba\x8b\x7a\x42\x10\x46\x58\x91\xaf\x37\x0e\xc1\x23\xfc\x2a\x91\xbe\xd3\x64\xce\x61\x6b\xee\x97\x00\x91\xd4\x20\x8c\xb4\x5c\xb0\x6f\xff\xd9\x32\x44\xb9\x13\x6b\x55\xab\xc5\x56\x07\xa4\xe2\x70\xaa\x7f\xe3\x5c\x0f\x69\x47\x69\x37\xf9\xf0\xc9\x1c\xdb\xc3\xbe\x2d\xa1\xe0\x0b\x54\x09\xda\x2b\x48\xb2\xa0\x1d\xe6\x4a\xb6\x62\x07\xff\xf8\xf2\x99\x6e\x72\x5b\xe5\x1f\x45\x9e\x54\x95\x50\x13\x27\x96\x1c\xf7\xbe\xb3\x9c\xf9\xbc\x34\xbe\xde\x65\x79\xfe\xd8\xb5\x5e\x34\x10\x47\x04\x2b\x3f\xb0\x37\x8a\x4a\x7a\x0a\x68\x8d\x52\xba\x29\x89\x6f\x1e\xc3\xe5\x01\xa1\x50\x63\xba\xe9\x94\xdb\x83\x36\x9c\x52\x7e\x94\x1a\x22\x50\xea\x52\x4f\x76\x1d\xed\x91\x44\x7d\xae\xc2\xc5\x67\xc9\x6b\xa1\xad\xd6\xd4\xd6\xe7\xf8\xb8\x0f\x32\x8e\x65\xf0\x74\x4a\xee\xc4\xce\xeb\xea\xa2\x50\x63\x76\x0b\xb6\xe2\x48\x35\x48\xa4\x4d\x0d\xe7\x94\x82\x76\x33\xf8\x9a\x48\xf5\x79\x59\x9a\xd2\x5b\xb1\x7a\x3d\xd2\x80\xfd\x42\x0a\xc2\x2e\xd4\xac\x89\x6b\xd6\x4c\x1d\x33\xa2\x2a\x96\x3f\x9e\x88\xe3\x01\x7b\x45\x20\x95\xb1\xad\x6b\x84\x44\x32\x49\x01\xe9\xa3\xc5\x07\x2f\xf3\xa6\x7e\x7b\x18\x5f\x11\x9a\x4f\x8a\x59\x6e\x38\x82\x65\xb9\xde\x94\x05\xa7\x6c\xd1\x4e\xd9\x08\x4e\x50\x1b\x31\xec\x29\xf7\x36\x63\xef\x6e\x59\xa4\x61\xeb\x4d\x9e\x34\x2c\x88\x76\x44\x7b\xfb\x80\x82\x57\x2c\xdf\x70\x02\xb9\xa7\x98\x66\xee\x08\x77\x26\x38\x3c\xb5\x44\x87\x57\x42\x9e\xf7\x17\x49\x9d\x2d\x83\x48\xcb\x2f\x3f\xa8\x16\x11\xdb\x2f\xb2\x85\xa7\x1f\x54\x19\xbc\x64\x05\x91\x25\x57\x3d\xbc\x2a\x20\x79\x72\x60\xc0\xfa\x1e\x5e\xd6\x7f\xb6\x45\xd6\x09\x7c\x00\xdf\x2d\x58\x6e\xdf\x85\xc3\x82\x0c\xe8\x7b\xa7\xb3\xbc\xfe\xa6\xe4\x43\xd6\x24\xd9\x36\x65\x10\x51\x89\xea\x9e\x02\x57\x49\x7d\x15\x44\x54\xbe\xbb\xaf\x00\x4a\x77\x83\xc8\x12\xf3\xee\x29\x56\x94\x05\x0b\x22\x2a\xbd\xed\x98\x0b\xe3\xc5\x12\xdd\xb4\x06\x51\xe7\x2d\xa7\xab\xe0\xc1\x73\x68\xaf\x82\x6a\xeb\xb0\x46\xc9\x0b\x22\xe7\x54\x7e\x7c\xf9\x2c\x88\x82\x13\x99\x7a\x52\xb3\x06\x58\x15\x9e\x77\xb2\xad\xf2\xae\x1b\x9a\xa0\x64\x27\xab\xb2\x3a\x01\x7b\xa2\x4b\x5e\x0a\xf1\xc1\x43\xf0\x2e\x2e\xe4\xcf\x8b\x8b\x7d\xb8\x6c\xcd\x10\x24\x62\x1b\x27\x09\x8a\xb4\x25\xde\x91\x27\xf2\xbe\x0e\x75\x54\x9e\x26\x4d\x62\xd7\xb8\xf4\x49\xd0\x69\xba\xaf\x23\xc8\x99\x79\x85\xef\xe1\xce\x9b\x1c\x57\xec\xd7\x6d\x56\xb1\xef\x4b\xbc\xad\xe1\x5b\x2e\x08\x7d\x6b\x58\x05\xb4\x4a\xd7\x8f\xf5\x68\xb3\x75\x21\x9a\x0d\x42\xf2\x0e\xd0\x76\x11\xa3\xee\x89\xf3\x77\xd5\x95\xae\xb5\x24\x5e\xba\xff\x4c\xe5\x7c\x8d\xfa\x02\x6b\x00\xbd\x28\x61\xb8\x6b\xa9\xa2\x32\x30\x26\x71\x27\xf4\xcd\x8d\x95\xf5\x92\x64\xf9\xde\xf6\x2a\x5b\x9b\x18\x1a\x90\x26\x5b\x3b\x55\xdb\x44\xfd\xf2\x8c\xc7\xf5\x9e\xa6\x70\xd6\x75\xee\x20\x52\x34\x37\xd0\xed\x83\x4d\xd5\x82\x6c\xec\x63\x28\xb1\x31\x61\xdb\xa9\xac\xd0\xe0\x17\xf6\xfb\x69\xf3\xf2\x11\x2e\xb8\xae\x5f\xf3\x3b\x9e\x1e\x67\xab\xa1\xcb\xfb\xb8\x6d\x79\x9c\xd4\x98\x26\x73\xd2\xe0\x49\x37\x4b\x77\xbd\x62\xca\x2c\x07\x78\x5d\xd6\x39\x84\xf7\x3e\x44\x35\x08\xb4\x71\x66\x7e\x25\xec\x8f\x75\xd8\xdb\xa1\x3f\xdc\xe5\xac\xf7\x6d\x56\x67\x8d\xb8\xed\x47\xab\x22\x82\x6f\x96\x46\x9b\xa4\xb9\x22\x36\xf1\xe2\xda\x2f\x85\xef\x4d\xb6\x64\xb5\x4c\xcc\x8a\x65\xb9\xce\x8a\x4b\x64\x8d\xec\x54\xb8\x8f\x47\x39\x2b\x70\x33\xc9\x40\x49\x19\x90\x21\xd1\x5a\xb8\x13\x3f\xe2\x1d\x68\xc0\x1e\x61\xeb\xfc\xff\x78\x06\xa6\x3d\x22\xdf\xb6\x3f\x29\xa8\xe1\x7b\xcb\xe1\x51\xa5\x56\xd8\xe6\x63\x21\x94\xa2\xc0\xa5\x7f\x4a\x7c\xfc\xb3\x02\xd5\x39\xf5\x0c\xf0\x41\x01\x70\x3d\xcb\xe6\x73\x67\x36\xda\x95\x14\x8b\xe0\xf7\x14\xdb\x2b\x37\x43\x62\xaa\xf8\xf8\xe1\xb7\x52\xb4\x81\xd3\x21\x5d\x1b\xab\x59\xdb\xb5\xed\xe3\x87\xdf\x92\x90\xad\x49\x9a\xc6\xc6\xbd\x04\xdf\xb6\x0a\xb2\x89\x94\x34\x53\xd6\xd2\x3b\x11\x03\x03\x14\x87\x8f\x9e\x54\xa0\xf7\xf1\x0e\x23\x91\xa0\xe8\x08\x57\x09\xef\x85\x64\xc5\x26\xb3\x79\xc4\xdb\xd8\x36\x97\x25\x48\x03\xf8\xc9\x87\x6a\x93\x70\x5d\x6e\xa7\x9e\x46\xc4\xda\xeb\xb8\x2a\x35\x5d\x0e\xe9\x21\x05\x60\xda\xa9\x39\x09\xeb\x64\x13\x5b\x6f\x3c\xc4\x22\x2b\x49\x53\xac\x04\x05\x4f\xc2\x2e\x6b\xea\xcc\xe3\x79\x7a\x49\xa9\x46\x55\xae\xc1\xc0\xaf\x29\xb5\x29\xa2\x4c\xbc\xb9\x39\xc2\xe4\x9b\x1b\x99\xc4\x6f\xab\x25\xa5\x5d\xe8\xcb\xaf\x2a\xd7\xb1\xea\x85\x84\x0d\xa3\xa6\xd4\xa9\xa2\x18\x08\xf3\x4b\x85\xfa\xf6\x22\xa9\xb2\xda\x35\xbf\x44\x9b\xe5\x15\x5b\xbe\x79\x74\xbd\xcc\x99\x81\x62\xbc\xc7\x64\xeb\x91\x0e\x7a\x95\xc2\x83\x25\xaf\x61\x90\xb2\x46\xd8\x47\x06\x23\x84\x1f\x05\x83\xaf\x4e\x06\xc1\x08\x30\x56\xbc\x80\xf1\x84\x30\x6c\x5b\xc4\x7f\xde\xb7\x48\xf7\x22\x9c\xf2\x84\x31\xc1\x00\xdc\x3f\x64\x74\x33\x39\x9c\x79\xcc\x7f\xd1\xac\xe7\x7a\xe9\xd5\x98\xed\xd5\x12\x12\x47\xb2\x5a\xe2\x39\x4f\x93\x02\x4d\x69\x0c\x5c\x13\x74\x46\x23\x99\x87\xba\x44\x02\x13\x7d\xfb\x1d\x37\x81\xbb\xe1\x91\x22\xe1\x6c\x93\x81\x53\x0a\x61\xd0\xc8\xb0\x6d\x3b\x50\xb0\xf6\xa1\x72\x44\x23\xa7\x08\xc1\x2a\xee\x94\x75\xb2\xa1\x28\xcf\xfb\x21\x83\x93\x68\x2b\x71\x11\x8f\x45\x3b\xff\xd7\x5b\x83\x37\x89\x15\x88\x62\x78\xd4\xe9\xb1\x63\xb2\x11\x8f\xa0\xab\x2c\x06\x25\xe0\xf4\x46\xf4\x53\xf7\x00\x43\xbe\x74\x76\x00\x43\xbf\x14\xfa\xa8\xd5\xed\x43\x56\x77\xf3\x90\x3d\xcb\xe6\xa2\x70\x8f\x99\xe0\xe3\x87\xdf\x1e\x72\xbe\x6a\x56\xfb\x63\x4c\xa6\xf2\xf2\xf2\xd2\xa3\x05\x2a\xda\x10\x93\xd0\x91\x2b\x6f\xe8\x87\xaa\xdc\x5e\x11\xdd\x80\xdf\x87\x42\xe4\x27\x55\xf0\x7b\x06\x53\xbb\xcf\x68\x10\xe4\x89\xd9\xea\xda\x51\xf3\x93\x19\x42\xdf\x6d\x93\x35\xc8\x2f\x3a\x70\x2a\x6b\x8a\xb6\x2b\xcb\x64\xcd\xbc\x90\x3a\x4b\x0f\x10\xa5\x2b\xbf\x99\xfa\x60\x9f\xb6\x94\x47\x0f\x4d\x69\x0e\x92\xbe\x48\x4d\x1b\x7a\x5d\x80\xc8\x62\x7d\x7e\x96\x1d\x1b\x07\x69\x50\xbf\x4c\xf2\x7c\xd0\x94\x83\x7f\xf6\x71\xcd\xff\x1c\x0f\x7e\xc8\x59\x52\x33\xb0\x87\xa8\xb2\x14\xcd\x21\xee\x2a\xd0\xbb\x03\x54\x80\x1a\x64\xc5\xa0\xde\x2e\x60\x69\xc0\x4e\xc2\xb4\xa2\xfc\x27\x6f\x69\x53\x81\xc0\x67\xb0\x4a\xf2\x1c\xfc\x5e\x5d\x55\xe5\xf6\xf2\x8a\x67\x71\x82\x80\x56\x2e\xe3\xa0\xdf\x41\xf7\x2d\xc6\x23\x2f\x45\x9b\xa4\xaa\x85\x6f\xc6\xae\xf1\x08\xd0\x4f\x33\x1a\x68\x5f\x38\x5a\x10\xe3\x21\x5d\xfa\x80\x11\x7d\x03\xce\x5d\x6e\x31\x2e\x2c\xf0\x69\x46\xe7\x5c\x1a\x3f\x72\xd5\x7a\x2e\xa1\x5d\xa3\x74\x8a\x7c\x9a\x91\x1e\xea\xa1\xfc\x16\x83\xf5\x5e\x8a\x07\x7b\x07\x4c\x8b\x7d\xd2\x1d\xf8\xa2\x31\x9e\x40\x3f\x0e\x6d\xa1\xb2\x5b\x60\x2d\xc0\x7f\x9a\xe1\x5d\xe4\xe5\xe5\x33\xdb\x5b\x7c\xb9\x2d\xd2\xe8\x03\x87\xa8\x2b\x14\xf5\x0c\x0e\x18\xa7\x2e\xf4\x49\x46\x69\xda\x33\x79\x2c\xda\x7d\x9a\xea\x1f\x7b\xde\x28\xdf\x57\x1e\xbf\x57\xd1\x7d\xea\xf9\x6a\x76\x8a\x2c\x9f\xf8\xc2\xc8\x62\x3c\xfb\x28\x8e\xf5\x1b\x8f\x78\x08\x66\xf5\x36\x6f\x30\x4e\x27\xca\x80\xb6\x79\xa3\xad\x73\xc7\x41\xf8\x35\xfa\x03\x06\x30\x91\x5d\xb1\x4d\x9e\x2c\xd9\xf0\xde\xcf\xe3\xe1\x38\xbc\x77\xa9\xf9\x29\xad\xba\xb8\x1e\x2f\xaf\x92\xea\x61\x33\x3c\x0b\xc7\x4d\xf9\xe3\x66\xc3\xaa\x47\x49\x8d\x9a\x26\x42\x5e\xa8\x9b\xb9\xe8\x6f\xe6\xe2\x83\x5a\x21\x71\xb6\x46\xc1\x24\x18\x61\xad\x1d\xe2\xaa\xfe\xd0\x15\x15\x41\xba\x58\x3a\x09\xc1\xa3\x87\x04\x2f\x10\x55\x60\x54\x36\x00\xd5\xa5\xc6\x4e\xa6\x8a\x06\x01\xf7\x23\xb2\x7b\xe1\xf2\x05\x41\x76\x64\x02\x78\x2c\xda\xe3\xc6\x47\x39\xbe\x71\xa2\xa6\xac\xb7\x35\xd8\x1b\x0b\x4b\x50\x70\x45\x4f\x1d\xfc\x60\x30\x76\x3e\xaa\x99\xd3\xc9\x39\xac\x89\x8e\x91\xe1\x81\xa0\x74\x07\x84\x4c\x2a\xca\xc5\xce\x1b\x5e\xc3\x21\x56\xbc\x10\x9d\xa8\xb2\x6c\x8c\xd1\xf3\x04\xd0\xb2\x7d\x79\xfe\xea\xc5\xb3\x9f\xce\x5f\x4a\xfd\x25\x4d\x19\x64\x43\x94\xc8\xb4\x4e\x8c\x0d\x0f\xbb\xe0\xba\xa9\xfc\x21\xa9\x9a\xba\xdb\xb5\x9c\x02\x01\xd7\x72\x02\xea\xef\x59\x73\x55\x6e\x9b\xd7\x26\xc0\x99\xd8\x85\x1e\x28\xa2\xd3\x44\xec\x4c\xd5\xed\x05\xd5\x5c\xb4\x94\xdc\xbb\x7f\x8f\x8f\xcd\x3d\x74\x2f\x90\x51\x95\x05\xbe\x36\x28\x67\x97\x43\xb8\x17\x84\xd3\x42\x20\x65\x53\xcf\xe0\x7f\x71\x77\x3c\x39\x9b\x2b\xa5\x65\x68\x10\x90\x57\x73\xf9\x43\x04\xc6\x48\x93\xa7\xd1\x89\x52\xf7\x1d\x07\x61\x38\x85\xbe\x6a\xf5\xa0\x05\x38\x6c\x1a\x1a\x75\xc9\xc5\xd8\x39\x9e\xb1\x60\x56\x27\xe0\x64\xcb\x33\x4f\x93\xae\xb9\x43\x29\x1b\x6f\x19\x1e\xa9\xdc\xad\x37\x51\x5a\xf9\x23\x79\xab\x41\xc7\x5f\xed\x81\x8c\xd5\x81\x9b\x7e\x6a\x22\xaf\xf4\xde\x49\xa8\x2c\x8e\x5c\xa5\x0c\x92\x06\x04\x46\xaa\x88\x67\x88\x94\xc0\xde\xbb\x8c\xf8\xd2\x09\x27\x01\xaa\xcb\xb1\xb5\x41\x46\xc1\x98\x8c\xd4\x22\x26\xbe\x5e\x1e\x11\x1f\xa3\xa4\xde\x51\xec\xab\x04\x67\x4e\xfa\x86\xd2\xd0\xbf\x49\x70\x99\x6d\xcd\xf0\x99\xf9\x79\xb2\x36\x6a\xa1\x1c\x83\x35\xa2\xd8\xfa\xb6\x67\xec\x22\xb0\xc7\x2c\xe4\x7c\x01\x3e\xa8\xbb\x15\x06\x81\x3e\x04\x5e\x8b\xb5\xf2\x77\x05\xbc\xcc\x0a\x08\x9b\xca\x1f\xb6\x98\xda\x9e\xe0\xf5\xf9\xf7\x3f\x3c\x7b\xf8\xfa\xfc\xd5\x8c\xd6\x38\x57\xf3\xd5\x0b\xd5\x1a\xbd\xd0\x57\xed\x21\x4d\xff\xcd\x1a\x53\xb3\xf3\x53\xc6\xde\x75\x71\xae\x59\x3d\xb6\x96\x93\x02\x50\x4d\xdb\xee\xe3\x40\xb6\xa3\x95\x26\xfe\x1d\xad\x41\x2d\xff\x8e\x86\xbe\xe7\x9b\xae\x1b\xb3\x60\xfb\x21\xfd\xed\xda\xcd\xd2\xc9\x1e\x9c\x1d\x16\x1d\x88\x54\x79\x1a\x1b\xce\xf1\x98\xa9\x7a\xf3\x57\xd0\xdc\xf1\x77\xe7\x90\x61\xdd\xdc\xd8\x26\x37\xa8\x0b\x04\x07\x4c\xcf\xae\x98\x1f\x72\x13\x3a\x70\x3e\xbc\x74\x0f\x48\xd6\x6f\x32\x53\x87\x5d\x69\x80\x3d\xbf\x5e\x2f\xca\x3c\xda\x24\x69\x9a\x15\x97\x50\x2b\x87\x0b\x77\x98\x11\x07\xb3\xff\xf7\xff\xf9\xbf\xe7\x01\xb2\xa0\x2a\x6d\x30\x0f\x2c\x16\x48\x71\x1f\xc2\xa9\xc4\x97\xa7\x9c\x5e\x41\xa5\x71\x30\x16\xe5\x65\x82\xb6\xcf\xf9\xf2\xf4\xa4\xbb\x12\x72\x64\xb7\x28\x26\x1c\x67\xc5\xaa\x1c\xaa\x3e\x3b\x05\xe5\x38\x50\xf9\xde\x95\x1e\x78\x8a\x84\xce\xdd\x68\x8f\x57\x2f\x47\xea\xec\xa8\x3f\xf4\xca\x9a\x5d\x65\x89\x34\x69\x12\xa5\x21\xd1\x0d\xd6\xa5\x53\xf1\xe1\xa2\xe1\x0f\x15\xe7\x3e\x4e\x9a\x44\x2a\x84\x58\x4d\xf8\xcc\x85\x5d\x2d\x92\x1e\x61\xaf\x70\xac\x46\x5a\x20\xbf\x45\xae\xbf\x52\x6f\xea\xfe\xc5\xea\x9c\xd7\xfd\x0f\x06\x7e\x47\x12\x07\x3d\x0a\x74\x7b\xda\x70\x5e\x0d\xfe\x1d\x2f\x00\x1f\x2d\xe1\x07\xbf\xfc\x2b\x47\xc8\x8f\xc9\x28\x71\x4f\xea\x2b\x56\xd9\x02\xf7\xcf\x2f\x2e\xc6\x2a\xa7\x5b\xd2\xff\xb9\x2d\xe9\xf7\x8b\xda\xbb\x0c\x93\x0f\x13\xdf\xfb\xd1\xca\x27\x03\xb1\x4c\x74\x4d\x55\xf2\x65\x52\x3c\x4a\x9a\x24\x2f\x2f\xcf\x8b\xa6\xca\x58\x8d\x02\x57\x33\xcc\x94\x7a\x4c\xd3\x7e\xf3\xd1\x19\xbf\xc9\x89\x53\x3f\x9e\x46\x28\xf4\x68\x79\x40\x13\xc6\xfd\xa8\x16\x16\xd7\x0f\x87\xfa\xde\xf3\xfc\xe1\xf7\xe7\xaf\x7e\x78\xf8\xe8\xfc\x15\x5e\x15\x35\x4c\x18\x69\x9b\x3c\xb9\xbe\xaf\xb6\xab\x55\xf6\xfe\x25\xbb\x64\xef\x63\x74\xbb\x74\x79\xfe\x7e\x33\x34\xef\x2a\xa3\xe0\x33\x71\x69\xc3\x56\xc7\xab\xb2\x3a\x77\xac\x36\x3d\x4a\x58\x47\x31\x36\xae\x23\xeb\xbc\x61\xd7\x83\xac\x18\x98\xf0\x47\x5a\xd9\xca\xeb\x31\x95\x2f\x4d\x56\x08\x77\xa9\x66\xa7\xd1\xc7\x30\x82\x41\xfd\xa6\x5e\x17\x38\x6d\x95\xd7\xd6\x17\xab\x21\x64\x87\x7c\x3d\x60\x84\x41\xb8\x83\x29\x12\x8e\xda\x24\xce\xf2\xfa\x14\xbb\x6c\x35\x18\x05\x41\x08\x6e\x9f\xf8\x09\x43\x44\x3b\x75\xdb\xef\x5d\xe8\x43\xa8\x98\x79\x88\x7c\xcc\x5b\xa7\xe3\x91\xe7\x53\x11\x36\x7f\xf1\x26\x7b\xcb\x2e\x84\x22\xf2\xc1\x6e\x56\x7f\x0f\xaf\xa4\xff\x56\xb7\x91\xb6\xf7\x0f\xcf\x93\xa9\x9f\xe0\x7e\xe1\x10\x5c\x3f\x29\xf5\xd0\xc7\x2e\x52\xea\x79\xe0\x84\x75\x7b\xe8\x38\x8f\x7c\xd8\xeb\xa6\xf5\xcf\x07\x45\xc3\xf7\xd1\x63\xdb\x1f\x80\xc7\x56\xbf\x62\x20\x74\x47\x69\x4b\x1d\x63\x07\x87\xc2\x2d\x18\xa1\xe5\x5e\x45\xda\x89\xb2\x71\x89\x92\xa6\xa9\xb2\xc5\xb6\x61\xcf\xb2\x75\xd6\x4c\x3e\x8f\xcc\x8a\x27\xb2\xe2\xe8\x92\x35\x4f\xb2\xbc\xb1\x2c\x0f\x05\x15\xd0\xcd\xbf\x4b\x9a\xe5\x15\xdc\xaf\x38\x05\xb7\xa2\x9d\xd6\x0f\xd3\x94\xa5\x48\x9a\x7f\xdc\xa4\x09\xea\xc7\x25\xd5\x60\xad\x0a\xa0\x94\xe7\x92\x35\xba\x0e\x4a\xbc\xb1\xec\xeb\xf2\x15\x2b\xd2\xa8\x63\x0e\xa6\x04\x26\xd6\x35\x83\x2e\x8a\xe7\x44\x41\xb2\x09\x3a\x2e\xf0\x13\xd6\xf4\x5d\x95\x6c\x36\x2c\x8d\x79\xc3\x63\xfe\xa1\xba\x83\x74\x14\xfa\x31\x96\xca\x5f\xb4\x1b\x48\x4f\xa1\x5c\xb9\xa8\x59\x25\x6e\x9b\x56\x51\x35\x7c\x45\x48\x45\x8b\xad\xe8\x3e\xcc\xd4\x90\x8c\x24\x14\xba\xb6\xd0\x56\x6c\x2c\x81\xd1\xbc\x73\x3e\xad\x8a\x70\xb7\x2a\xc0\xbf\x3f\xf4\xca\x82\x47\x07\xe0\x88\x80\x43\x91\x17\xb6\x3e\x24\x83\x91\x59\x80\x5a\x89\x14\xbe\xdb\xe8\x82\xcf\xc9\xeb\x12\x54\x80\x3b\x58\x84\x72\x35\x90\x9c\x81\x56\xb7\xe1\x09\x5e\x17\x92\xca\x0a\x1f\x56\x72\x82\x91\x60\x8d\x97\x05\x81\x74\x2f\xd9\xb2\xac\x52\x3b\xbe\x6e\x85\xa9\x88\x78\xe2\x43\xcc\xbd\xfc\x7c\x09\x33\x90\x5a\xa6\xfb\x5d\xd8\x25\x4b\x29\x44\x15\xed\xe2\x18\x65\x29\xb1\x58\x3c\x47\xb4\xa6\x97\x6c\x8b\x09\x58\x8e\xaf\x1f\xed\xd4\x70\x66\x64\xcf\x85\x77\x12\x01\x24\x90\x5a\x7c\x99\x18\x5d\xa9\xfa\xfa\xd1\x11\x2b\x16\xe0\x91\xd1\x47\x8d\x8d\x0a\xef\x0d\x68\xe9\xf5\x82\xaf\x11\x98\xb1\xa4\x8f\xae\x92\x82\xea\x25\xc2\x41\x17\x65\xe9\x7b\xe1\x58\x3e\x7d\x54\x6e\x8b\x26\x4a\xf8\xf4\xc3\x4f\x1a\x68\x30\x4b\xdf\x4f\xb3\xaf\xb2\xf4\xfd\x48\xe7\x0b\x45\x36\x35\xe4\x18\x6a\x1c\xe3\x29\xfb\xb0\x19\x66\xa1\x7f\x7f\x9a\xfd\xdc\xbb\x27\xf7\x4d\x82\x46\x9a\xe1\x4c\xb4\x35\x87\x57\x12\x3a\x2c\xb5\x76\x02\x83\x86\xf6\xb8\xc3\x16\x57\x4f\x34\x5a\xc5\xbb\x54\x4e\xd9\xc4\x9e\x43\x30\xd2\x14\x79\xc2\x97\x50\x2b\x3b\x32\x4e\xd2\x14\xe4\x0b\x2f\x44\x45\xe8\xdf\x41\x56\xab\x86\xfb\x81\x64\x41\xb6\x82\x5d\xef\x6d\xe8\x16\x14\xc4\x98\x44\x03\x7f\xbd\x47\xd8\x41\xd4\xa5\xc3\x90\x75\xef\xf9\xd8\x37\xfc\x36\x42\xa5\x52\xe2\x45\x15\x38\xe5\x9d\x19\x74\x60\x59\xe6\xdb\x75\x47\x04\x71\xcf\x39\x68\xd3\x7e\x8b\x2c\xb9\x47\x20\x25\x3c\x3d\x04\x06\xf1\xa9\xb0\xf7\x9d\x60\xe6\x15\x11\xf1\x9c\x5b\x50\x5c\xd2\x13\x1f\x46\x52\xe4\x21\x3e\x0c\x5e\x14\x4b\xc7\x8f\x81\xec\x40\xd8\xde\x0e\x6d\xb1\xb0\xc2\xa6\xce\x13\xed\x50\x7c\x6c\x5d\x0c\xa1\x63\xb6\x26\xbd\x50\x52\x42\x01\xbe\x87\x96\xf3\xff\x05\xab\xa1\x6f\x8f\x3a\x91\x28\x9b\xe3\x5d\x97\x3c\xa9\x44\x4b\xbe\xff\xc1\xb1\xb3\x68\x43\xbb\xaa\x95\xa8\x34\x11\xe7\x1d\xc5\x2b\xd1\x32\x92\x3b\x78\x93\x6b\xe9\x4d\x0b\x1b\x6e\x23\x83\x3f\xb2\xcd\xd9\x01\x13\x08\xcb\xe4\x65\x01\xd5\x90\x87\x1d\xb6\x56\xa1\x11\x02\x95\x66\x8d\x3b\x24\x02\x43\xf9\x98\x25\x90\x31\xee\x2a\xdd\x53\x54\x78\xba\xd1\x9c\x20\xbf\xd0\x21\x55\xa8\x5f\x14\x8a\xb5\xaf\x87\x61\x8b\x40\x62\xc7\xc1\x47\x68\x1e\x88\xd4\xca\x60\x07\x7b\x7a\x02\xdb\x82\xb2\x28\x08\xa4\xdf\x33\x5b\xc9\x7f\x59\x15\xaf\x80\xf5\xb5\xd9\x47\x7a\x58\x22\x11\x19\x6a\x3e\x32\xd4\x97\x64\xa3\xae\x36\xea\x18\x93\xe3\x04\x59\x8b\x3a\x44\x05\x7d\x92\x0e\xc5\x9f\x68\x54\x3d\x50\x6a\xf1\x9b\xc9\x27\x8e\xe8\x44\x98\x72\x08\x0a\xa9\x2c\x6f\x0c\xa1\x03\x1a\xef\xe9\x62\x22\xc0\xd9\x92\xb3\x8b\x34\xac\x04\xbe\xb9\x63\x8f\xf4\x7e\x0b\x61\x2f\x6a\xe1\xc7\x28\xb8\x17\x8c\x60\x41\x89\x90\x43\xe8\x60\x5b\xb2\x8b\x48\xef\xfb\xbd\x54\x5d\x73\x1a\x13\x87\xef\xd2\x3c\x8b\x24\x0f\x62\x17\x63\xa2\x3c\x41\x7e\x4a\xf2\x2d\x98\xca\x90\x85\xa2\xc5\xc6\x06\x98\x49\x98\x1e\x91\x2c\xc2\xea\x90\xc2\x35\x4b\xaa\xe5\xd5\x77\xec\xfa\x9d\x87\xae\xc9\x64\x7f\x51\x44\x71\x6f\xbb\x4f\x48\x96\xbf\xf0\xb2\xcc\xcb\xca\xed\x6d\x59\x11\x70\x41\xa8\x75\x29\x32\xf5\x74\x64\xee\xd4\x8a\x3d\xdc\x92\x02\x72\x2c\x5d\xc0\x64\xd1\xbc\xc3\x38\xa8\x11\x18\x41\x67\x0b\x60\x2b\x14\x19\x0c\xa5\x0d\x6b\x71\x96\x1e\x8f\x8c\x6d\xdb\xba\x91\x52\x5c\x71\x98\xe1\xba\x27\x9a\xcd\xa9\x27\x21\x2a\x8d\x71\xaa\xf2\xfa\x25\xf6\x8b\xd3\x7e\x13\xf3\xbc\x3e\x21\x90\xbe\xff\x21\xa7\x90\xd4\x35\xab\x1a\x7e\x0f\x54\xf2\x88\x40\x7a\x25\x11\x79\xc6\x4c\xd9\xe5\x9f\x9c\x3f\x7c\xfd\xe3\xcb\xf3\x57\xfe\x1a\x54\xee\x2e\xab\xcf\x8b\x64\x91\xb3\x74\x62\x4e\x3c\x32\x42\xe0\x67\x00\xdd\xd3\x0a\x31\x0c\x5a\xae\xde\xdc\xd0\x07\x51\x08\x51\xa5\x6c\x9a\x9e\xf0\x0a\x9e\x10\x37\x97\x22\x72\x98\xc4\x0c\xf6\x6e\xf0\x04\x19\xad\x9f\x32\xf6\x2e\x7a\x24\xfd\x47\x08\x97\xa8\x4a\x51\x1e\x7b\x9a\xad\x61\x52\x8f\x8f\x8d\xcf\xb1\x86\x43\xdf\x71\xc2\x1f\x89\x4e\x06\x8a\xa9\x3f\x31\x70\x6d\xb9\x1a\x08\xa3\x66\x2b\xdc\x22\x69\x56\x00\x0c\x03\x62\x9b\x81\xea\x2d\xb6\x26\x3f\xf6\x88\x24\xd0\xf9\x1a\xea\x74\xe1\x85\xc8\x79\x83\xf6\x1b\xbe\x41\xdc\xbc\x8c\xbd\x0b\x77\xfc\x7f\xbf\x11\x36\xba\x11\xd7\xff\x07\xe1\x2c\xe0\xd0\x01\x18\x4d\x1e\xa9\x29\x0d\x77\xea\xe7\xfe\x8a\xb4\x23\x0f\xc3\x72\x3b\x5b\x0d\x79\xd5\xf2\xe8\xc2\x5e\x0a\x3c\x22\x43\x92\x66\xdd\xf8\x60\x8f\x23\xb2\x61\xd6\xc9\x1b\xd0\xce\x10\x30\xa2\x2a\x64\x6b\xba\xea\xfb\xa6\xdc\x16\x29\x16\x10\x2e\xe4\x40\x74\x67\x78\x59\xed\x6f\x47\x4f\x33\x4f\x7b\x64\xde\x5f\x1c\xbf\x3b\x54\xd7\xc4\xd5\x1a\x18\xf3\xa9\xc2\x70\x67\xc0\x3e\xaa\x1a\x23\xed\x92\xa7\x63\xb5\x3b\xd1\x43\xe6\xbb\x68\xf2\x48\x10\x25\x63\xa7\x73\xc4\xf6\xc0\xb8\x2b\x22\x73\xc8\x4e\xec\xea\x81\x0b\x1a\xb6\xfb\xab\x1b\x4b\xa2\x19\x77\xc1\x3a\x23\xfa\x5f\xc9\xdb\xe4\x15\xbc\xd0\x1f\x32\x36\x17\xda\x1d\xa5\x0b\x73\xc0\x78\xfb\x0a\xb9\xcb\xd0\x07\xdd\x3d\x07\x6e\x29\x67\x4a\x7b\x2b\xd6\x2a\x98\x81\x4d\x68\x82\xdb\x75\x51\x9f\x8f\xdf\x6c\x57\x2b\x73\xca\x85\xf6\xdf\xdd\xbb\x81\x8b\xb7\xbd\x95\x26\x1b\x7e\x90\xbd\x2e\xed\x2a\x51\x6a\xa9\x2a\x4e\x93\x26\x19\x2f\x00\x06\xf9\xcc\x60\x84\x10\xa3\x20\x9c\x06\x78\x0c\x3c\x7e\xf1\xfa\xe2\xd9\x8b\x17\xdf\xfd\xf8\x03\x06\x08\x8d\xef\x89\x1d\xf1\xf3\x78\x38\xfe\xc3\x83\xf0\xe7\xf0\x5e\xf4\xcd\xcb\x87\x8f\xbe\x3b\x7f\x7d\xf1\xea\xf5\xcb\xa7\xcf\xbf\xed\x00\x9f\xdd\x05\xf8\xbb\xf7\xa2\xa7\xcf\x7f\x7a\xf1\xe8\xe1\xeb\xa7\x2f\x9e\x5f\xbc\xfa\xe1\xd9\xd3\xd7\xaf\x79\x21\x01\x3d\x1c\xff\x61\x91\x97\xcb\x37\x48\x1d\xbe\xc7\x90\x48\x3f\xc3\xa6\xfe\x79\x38\xfe\x43\x38\xac\x9b\x64\xf9\x66\x76\x7a\xf2\xdf\xf3\x51\x38\x8c\xc6\x7f\x08\xef\x1d\x32\x35\x38\xac\x6c\x75\xfd\x2c\xa9\x9b\x6f\x9c\x06\x9e\x16\x6f\xa5\x7f\x6d\x3d\x57\xe5\xb6\x92\x9e\xa8\x70\x0c\x04\x0a\x33\x67\xf8\x47\x2b\xc2\x46\x08\x08\x1a\x47\x43\x7b\xe6\xc6\xec\x3d\x5b\x0e\xed\xaa\xc2\x9b\x9b\x9e\xe9\xeb\x28\x13\xce\xce\xe6\xd1\x1a\x1c\xf1\xd4\x71\xf7\x74\x76\x94\x9e\x76\xf4\x3e\x16\x35\xce\xce\xe6\xa3\xe0\x6e\x30\xd2\x83\x81\x4f\x99\xfb\xf9\x1c\x31\x43\xcd\xa9\x3b\x9f\x07\xec\xb7\xc3\x97\x04\xc5\x3e\x55\x76\x99\x15\x49\x0e\x80\xc0\x08\x1f\xd2\x86\xde\x11\x0b\x55\xee\x76\x3b\x49\x97\xa3\x1b\xd3\xed\x8d\x3f\x9c\xce\xb4\x67\x8e\x84\x37\x37\xc4\xb2\xd6\x18\xe4\xc3\xf5\x22\xbb\xdc\x96\xdb\xfa\x43\x47\x9b\xb8\x15\xdc\x92\x80\x78\x7a\xe0\x19\xbf\xa7\xa3\x1f\x3d\x11\x07\x1c\x6d\xeb\x2d\xa7\x02\x57\xd4\x71\xbc\x48\x41\x0e\x4d\x7d\x8e\x37\x49\x95\xac\xa5\xa6\xfa\xcd\x8d\x4a\xbf\x4a\xea\x2b\xa1\x7c\x90\xa5\xa0\x43\x41\x5a\x7c\xf8\xea\xf5\xf8\x69\xfa\xbc\x4c\xd9\x70\xb6\xdb\x24\x55\x33\x09\x2e\x9a\x2a\x4b\x2e\xd9\xf7\xa2\x7c\xd0\xce\xf1\xd6\xaf\x2a\x64\xf5\x32\xd9\xf0\x8b\x92\xd1\x44\x6c\x7c\xdd\xdc\x78\x1a\xfa\x6b\x52\x5f\x61\x53\xf3\x70\x6a\x80\x8f\x37\x49\x56\x09\x01\xc0\x2c\xd8\x16\xa2\x89\x20\xf2\xd4\x82\xd2\x04\xa8\x27\x68\xaa\x2d\x0b\xc2\x79\xd8\xaa\x69\xf2\x14\x90\x23\xc1\xa6\xb3\x74\x2e\xe3\xca\xcf\x54\x1f\xb2\x74\x1e\x46\x46\x8f\x22\x77\xbc\xf2\x39\xeb\xb0\x05\x23\xcc\x99\x5a\x31\x77\xc5\x37\xfc\xee\x09\x75\xd8\x27\x57\x94\xd4\x78\xd3\xc1\xa5\x4b\xea\x26\xa6\xe5\x92\xaa\x66\xf2\x8c\xc3\x0d\x85\x7c\x5f\xbc\x83\xa8\x63\x88\x75\xf5\x64\x87\x22\xe1\x09\x9f\xa8\x68\x5b\x2c\x38\x13\x8b\x1f\xc1\x22\x2b\xd2\x93\xa4\x69\xaa\x00\x13\xa4\x02\x10\x7e\x71\xfe\x12\x7f\x59\xf8\x30\x41\x55\x20\x7e\x9e\x62\x3e\x76\xe2\x07\xc0\x3e\xcc\x9c\xca\xae\xc7\xea\x07\xf1\xd8\xf8\x80\xc3\x4c\x64\x0e\xbe\xdc\x17\x6f\xb3\xaa\x2c\xc0\x59\xe9\x50\xf9\x94\xf0\x31\x97\x92\xcd\x19\x26\x75\xa3\x58\x5d\x71\xa3\xf3\x96\xf4\xb0\x6e\xaa\x0e\xd2\xac\xac\x2b\x22\x8f\xee\x72\xfe\x6d\x6e\x50\x14\x77\x59\xc0\x8e\x95\xbc\xed\x02\xf6\x4e\xed\x6f\x31\x5d\x54\x31\xff\xd5\x86\x2d\xfd\x95\x7c\xf8\xcc\xf1\x9e\x9a\xad\x38\x24\x5d\x66\x0c\x69\x3f\xc2\xa9\xfc\x1a\x67\x35\x3e\x0a\xc5\xa6\x16\x9a\xc8\x6e\xbb\xfc\x20\x59\xcd\xf4\x08\x5a\xb4\x7c\xa5\x23\x28\x54\x97\x2a\xd3\xde\xe8\x67\xba\xbe\x7b\x3c\x9d\xd4\x46\x72\xd8\xfb\xc6\x97\x6c\xa9\x39\x91\x1c\xc1\x5a\xde\xab\xaf\x12\x1a\x0a\xcd\x03\x21\xc2\x5f\xf7\x81\x2c\xcb\x3c\x47\xc7\x6e\x7d\x50\xe8\x18\xb3\x3b\x5f\x90\x93\x3e\x10\x50\x6e\xed\x03\x60\xc9\xf2\xaa\x2f\x5f\x7b\xda\xec\x86\xe1\xc7\x56\x46\xa2\xda\x79\x40\xae\x33\x96\xf7\x76\x34\x2f\x97\xbe\x6c\xe1\x74\xb0\xbe\x07\x9e\x69\x16\xe5\xfb\x5e\xa0\x9a\xe5\x54\xcb\xcc\x07\xd2\xb0\xf7\xcd\x45\x52\xb1\x64\x3f\xd4\xaa\xab\xcf\x26\x98\x52\xff\xee\x06\xf4\xe7\x09\x21\xcb\x85\x88\xe2\xe2\x81\x41\x71\x8c\x4e\xb8\x80\xf5\xbe\xe8\xc2\x0b\x04\xe7\x5b\x66\x5d\x56\x9b\x2b\x05\xf7\x7b\xd4\x93\xfb\x3f\xe1\xd5\xfa\xc3\xab\x91\x84\x2f\x0f\x93\x29\x77\x78\x16\xf1\xa8\x18\xba\x22\x68\x8f\x0e\x7f\x67\x98\xb5\xcf\x7d\x61\xd6\x16\x65\xd9\xd4\x4d\x95\x6c\xf6\x69\x66\x2b\xcb\xf1\x1f\x92\xe6\xca\x09\x1f\x6d\xe4\x9a\x07\x98\x0d\x2a\x33\x44\x80\x99\x37\x8c\xc8\x07\xdd\xb0\xd4\x66\xbe\x78\x52\x77\xe4\x8a\x4e\x39\x0f\x0c\x75\xe6\xc8\xf9\x69\x4f\x19\x95\x47\x61\x91\x89\xe8\x82\xc6\x5c\xa9\x00\x7a\x8e\x0c\xaf\x03\xac\xb3\x00\x52\x6f\xfd\x6f\x99\x1b\x05\xdc\xc8\x45\xb6\xe5\x6d\x92\x6f\x93\x86\xfd\x88\xe7\x46\xc7\x98\xbd\x50\x53\x2d\x99\x10\x37\xa9\x8e\xd2\x1e\x18\x44\x10\xe7\x2a\xd6\x51\x41\x17\xa0\x39\x97\xcd\xd5\x5e\xff\x39\xfc\x18\x76\xa2\xee\xf1\x44\xc8\xb5\x98\x6a\x4f\x67\x38\xb8\x17\xca\xc0\x00\x7f\x39\x23\x57\xf5\xa6\x03\x58\x67\x89\xad\xb4\x2d\xd2\xa7\xab\x2e\x60\x9a\x0b\xf0\x82\x0b\xe8\x2c\x61\xe5\xa3\x62\x58\xd6\x5c\x75\x80\xeb\x2c\x8c\x31\xdf\x55\x6d\x66\xf6\x21\x67\x75\xdd\xd9\x01\x9d\xa9\xe6\xe2\x61\xd3\x54\x3d\xf3\xa1\xb3\x3d\x25\xb4\xd3\xf5\x3d\x65\x35\xa0\xaa\x05\x64\xf4\xac\xf6\x16\x14\x79\x42\x79\x4f\x72\x68\x9e\x5e\x7a\x02\xfd\x91\x57\x06\xfb\x30\x1b\xeb\xbc\x29\xfa\xb7\xeb\x06\x7d\x6b\x82\x6e\x3b\x77\xea\x99\x87\xae\xe7\xa5\x6f\x53\xf1\xd3\x72\xac\xb2\x84\x1f\xac\xc5\xf6\xf2\x92\xf9\x16\x00\xa0\xcd\x7c\x3c\x33\x92\xe5\x15\x3c\x43\x39\xf1\x1f\x65\x0e\x80\x7d\x5b\x95\xdb\x0d\x4b\x79\x9a\x0b\x49\x32\x91\x1e\x25\x4b\x1f\x16\x02\xac\xce\x33\x8e\x01\x1f\xb8\xe7\x94\x11\x1c\xa9\x0f\xda\xa3\xe2\x0e\xcc\xa9\x0f\xd6\xa3\xe3\x9e\x97\x4b\x1f\xa4\x87\xfe\x3c\x12\x1c\xeb\xde\x48\x92\xaf\x80\x6b\x75\x42\x49\x8e\x31\x9d\x80\xbc\xd8\x38\xda\xf3\x04\x10\x73\x4d\xf0\x4b\x3e\xe3\x3d\x05\x20\x1f\x8a\xbc\x66\xef\x9b\x87\x15\x4b\xf6\x86\xaa\xe4\x80\x4f\xf8\x84\xed\x8d\x53\xc9\x21\x5f\x21\x73\xbc\x37\x46\x65\x56\x6c\xb6\x8d\x67\x62\x39\xbf\x34\x26\x99\x02\x19\xde\x37\x9c\x85\xef\x82\x37\xf3\x85\x95\x97\xe0\xb6\xd1\x3e\x76\x6f\x64\xcb\x0b\xcd\x4d\xc1\xd9\xef\xa0\x3e\x67\xd3\xc6\x3e\x28\x5c\x80\x6c\xbd\xc9\x99\xce\xf5\x17\xf7\x41\x61\xeb\x98\xf3\xbd\xe4\xe4\xdd\xe2\x5f\xf2\xd6\x3d\x50\x58\x7c\x5f\xc1\xbe\x22\x7d\xe0\x8e\xf4\x4c\xb3\x7d\xea\x97\x03\xa3\x38\x38\xc5\xb1\xf9\x5e\x69\x29\x17\x66\x73\x6b\x07\xbc\x08\xc7\x3e\x4e\xcd\x2d\xa7\xb9\x36\xca\xa5\x75\xc0\x09\x8e\xcd\xe4\xd0\xba\xea\x94\xbd\xa0\xe7\xbe\x0d\x7b\xc9\x9a\xd8\xe4\xca\x3c\x10\x92\xf7\x23\xbc\x9e\x0d\xe5\xe7\xe3\xfc\x7c\x9b\xb3\x62\x9c\x2b\x02\x2e\xc8\x97\x23\x4f\x47\x7a\x1a\xda\x70\xea\x24\x50\x84\xdf\x86\xa0\x87\x00\xa5\xf9\x9d\xf3\xcc\xb9\x39\xfa\xe1\x40\x92\xd3\x95\x1c\xa6\x36\x94\x79\xb7\x30\xef\x12\x8e\x8a\x86\x55\x58\x19\x19\x9b\x74\xc2\xfa\x16\x50\x17\xde\xfd\xed\xdd\xce\xa2\x80\x97\x9c\xf8\xa8\x87\xd1\x80\xb5\x8f\x7d\xfb\x5d\xc0\x5b\x90\xfd\x30\xb1\xbd\xa3\xc7\x94\x54\x93\xdf\x72\x52\xe4\x49\x26\x7f\x88\x74\x71\x70\x89\x73\x8a\xa6\x89\x93\xca\x38\x98\xac\x7c\x3c\x9a\xac\x93\x48\xf7\x06\xce\x22\xf9\x83\xa4\xe3\xd1\xa3\x7e\x1d\xd2\xff\x6e\xdd\x94\xc0\xb8\xad\x04\x91\xe7\xf2\xe2\x2a\x01\xd8\x75\xb8\x17\x96\x20\xea\xba\xc4\x1c\x50\x5b\x56\xa4\x41\xa4\xaf\x04\x07\x94\x40\xee\x3e\x88\x0c\x36\x7f\x7f\x39\xfb\x99\xc9\x7e\x67\x38\xb4\x1e\x75\xbf\x08\x22\xeb\xaa\xb1\xbf\x2c\xbf\x6c\x04\x91\xbe\x72\xec\x2f\x91\xad\x82\x28\x3b\xb8\x7e\xbc\x7a\xf0\x8e\xe9\x2b\xc8\x61\x6b\x80\x0f\x33\x91\x79\x9f\x38\xac\xe8\x43\x4f\x49\x7d\x13\xd9\x5f\x07\x15\x0e\xdb\xd7\x90\xfd\xa5\xf3\xf2\x32\x88\x14\xbb\xbf\x1f\x5e\xf2\xfa\x41\x64\x72\xfd\xfb\x4b\xa2\xe8\x58\x33\xea\x87\xf4\x6d\xc9\xfb\xb6\x3c\x14\x5e\x09\x96\x0d\x7e\x7e\x7f\x39\x2d\xb4\x36\xef\x0d\xfb\x4b\x0a\x39\x35\xb9\x11\xec\x2f\x83\x62\x56\x7d\x73\x3b\x78\xcb\xa8\x0d\x73\x30\xf2\x73\x46\x38\x88\x08\x3f\x7c\xc8\x5c\x20\x33\xcc\xe7\x82\xb2\xc5\x76\x18\x52\x47\xb5\xc8\x56\xda\xeb\x34\x5e\x3f\xfc\xcd\xc7\x23\xf4\x9e\xfd\x16\x8e\x30\xf6\xca\x46\x3d\xf6\xcb\x9e\x0b\x8b\x7d\xf8\xfb\x8c\x8e\x0d\x73\x4b\x33\x9a\x5c\x44\xa2\xd3\x7b\xe2\xd2\x8b\xd0\xc6\x3a\x90\x3c\x6f\x52\xfa\xa3\x89\x75\xf4\xb4\x09\xaa\xe4\x2b\xd4\x7d\xa2\x40\xd4\x03\xb1\x82\xad\xef\x59\xc0\x2f\xc5\xea\xb3\x54\x37\x7c\x7c\xac\xad\x45\xaf\x92\x7a\x68\x57\x8c\x51\x0b\x9c\x0a\x68\x0c\x69\x1d\x87\x48\xf9\xdc\x09\xf2\xe4\xba\xe4\xd8\xe8\x54\xd7\x1a\x73\x19\x77\x99\xaa\xae\xfa\x9b\xbf\xb9\x21\xca\xab\x96\x2e\xab\x27\x86\x90\xea\x97\xc5\xc7\x85\xd3\x5b\xf4\x44\x2a\x18\xa8\x22\x6d\xaf\xcf\x06\x03\x5b\xfa\xd1\x5e\xbe\x03\xb9\x6f\x9e\xb7\x7c\xe2\xba\xcd\xcb\x94\xf1\xcc\xe5\x79\x49\xed\x78\x78\xfd\x4f\xbb\x9e\xf1\x0b\x4e\xcc\xed\x7a\xa7\x47\x14\xe1\x97\x44\x38\xc2\x0d\x8f\xf3\x04\xf7\x61\xa4\xcb\xb7\x4c\xc7\x63\x8b\x47\xb8\x24\x75\x7e\x3b\x74\x81\x75\x20\x1e\x42\xd5\xb5\x12\x32\x8a\xf9\xeb\xab\x58\xa4\xa0\x6a\x0c\xda\x32\xd1\x24\x30\x71\xc3\x83\x01\x9c\x7b\x82\x4e\x0f\x98\xf3\x95\x05\x04\xd3\xc3\x94\xb2\x98\xa6\x2c\x67\x0d\x1b\x28\x00\x23\xa1\x2c\xf8\x66\xd4\xd5\xc4\x71\xa0\xb0\x52\x69\x44\x77\x68\x40\xcb\x65\xd3\x0a\xd0\xa0\xce\x4d\xeb\x0b\x77\xaa\xd9\x58\x25\xb6\xa2\x65\xec\xa6\xf8\x7b\x73\x13\xb0\xa2\x61\x55\x30\xed\x6f\x54\xa1\x00\x51\xbb\xa6\x5e\xbd\xa8\x5c\x89\x8a\x91\xd4\xac\x9b\x87\xe2\x07\x4e\xfc\x01\x9d\xe4\xe8\xa7\xfb\x48\xbb\x68\x49\xb3\xcc\xcf\x43\xa8\x0a\x21\x1c\xb3\x43\xdd\xbd\xa8\xac\x9a\x64\x39\xc6\x04\xbf\x11\x31\xe8\xdb\xec\xb6\xbb\x93\x33\xe2\xee\xa4\xf6\xb8\x42\xa9\x45\x9e\x23\xd9\xfa\x5c\x08\xda\x4d\x12\x02\x06\x0b\xda\x61\x48\xdd\x54\xa0\x24\xf8\x38\xab\x37\x79\x72\x3d\xb9\xbb\xdb\x01\x56\xa0\xab\x05\x8d\xeb\x6d\x7b\x57\x7b\xdd\xab\x27\x72\x5a\x55\xfe\x3c\x6a\x92\x4b\xf4\xde\x2a\x78\x32\xe5\x21\xe4\x1b\xd4\xfe\xe0\x85\x78\xa5\x41\x84\xb5\x82\xca\x48\x56\xa4\xac\x61\xd5\x3a\x2b\x50\xa3\x22\xcd\x6a\xb0\xb8\x81\x48\x8c\x0b\x70\x90\x2b\x62\x2b\x06\x51\x90\x6c\x9b\x72\x55\x2e\xb7\x35\xc4\x0b\x04\x93\x0d\x0e\xb8\x2a\xab\x35\x6f\xff\x7a\xc3\x26\xba\xc3\x91\x68\x44\x84\x69\x92\x15\x8b\x4f\xa3\x5d\x95\xb6\xd7\x7b\x0a\xc4\x34\x04\xa3\x65\x61\xd0\x8c\x30\xe8\x7a\x41\x04\x8d\x06\x3d\x4c\x8c\xf2\xfd\xb4\xa8\x59\x25\x83\x49\x77\x57\xad\xfd\x08\x33\x19\x08\x7b\x6c\x74\x30\x3e\x3a\xd2\x30\xe6\x94\x85\x6d\xe4\x69\x9e\xb6\xa5\x83\x62\xab\x69\x87\xe6\x3f\x1b\x86\x63\x8e\xf4\x43\x95\xee\xb8\x00\x34\x0e\x77\x31\xb1\x07\xed\x3f\xa9\x76\x72\xb8\x42\x13\x2b\xb6\x6b\x56\xf1\x25\xba\x30\xdd\xc9\xfd\x76\x1b\xd7\xc9\xd0\x57\x49\x53\x81\xc4\xe7\xd5\x0e\xd3\xb2\xfa\x02\xc3\x8a\x5a\x2c\xc4\x7a\xb3\x6d\x88\x0a\xd4\x21\xce\x9c\xb0\xe8\x3a\x7b\x9f\x15\xfe\x01\x65\xec\x77\x13\xf8\xe6\x13\xa8\xaa\xfc\x96\xca\x1b\x0a\x75\x7e\xe4\x4b\xb6\x8f\xf5\xb1\xe9\xeb\xe7\x3d\xf4\xf5\x8b\x3e\xfa\xfa\x47\x83\xbe\x2a\x5c\x72\xe0\x3c\x6f\x66\x59\x0d\xde\x09\x1c\xc7\x50\x22\x5d\xc0\x3c\x2f\x0b\xd6\xe7\x19\x0a\x5f\x65\x11\xf7\xec\xd7\xd8\xb1\xcc\xe8\xf2\x43\x05\x8f\xab\x0f\x4d\xa7\x0e\xf6\xc2\x49\xaf\x27\xf2\x8d\x94\x6f\x7b\x69\xc7\xed\x7b\x23\xa5\xf9\xe2\x11\x0b\x3c\x9c\xc7\xd6\x12\x49\xcf\xe7\x40\x86\xdf\xb3\xba\x0b\x82\xe7\x44\xc2\x04\xdd\x81\x10\xe9\x91\x70\x3a\xe7\xe4\x8b\xf4\x48\xeb\x33\xbf\xee\x52\xfd\x14\xf9\xee\xc3\xe2\x9e\xc3\x32\x70\x25\xbc\x81\x3e\x07\x4b\x91\xe0\x3b\x08\xc1\xbe\x2f\x88\x02\x24\x94\x2c\x0d\xe6\x91\x58\x57\xd7\x81\x35\x78\x7c\x79\xaf\x95\x65\x77\xa6\x5a\xae\xe4\xbd\xf8\x47\xc4\x19\xb0\xc9\xae\xdb\xd0\x0e\xde\x34\x90\x11\x93\xd5\x82\xb4\x66\x9c\x27\x0b\x96\x07\x9a\x1f\xf3\x9f\x86\x00\xf5\x43\xd2\x5c\x29\xf7\x33\xf2\x64\x84\x01\x79\x73\xe4\x31\x07\x86\xeb\x18\x84\x4f\xe2\xe6\xd0\xf2\x5c\x20\x7c\xdb\x10\xc7\xfa\x22\x25\x08\x45\x61\xbe\x28\x3a\x17\xad\x67\x61\x91\x54\x36\x3a\xa0\xf0\xc2\xac\xb7\x79\x93\x6d\x72\x16\x84\xd4\x05\x03\x16\x3b\x3e\x96\xde\xf8\x55\x52\x24\x1a\xc7\xb1\xbd\x58\x0d\xc3\xf0\xeb\x93\x33\x23\x08\x85\xec\x70\xac\x0a\xb5\x2d\x9e\xaa\xe0\xea\x40\x75\xbf\xab\xab\x91\x3b\xa1\x13\xb9\xe7\x86\xb4\x0c\xae\xcb\x33\x09\x1d\x44\xd6\xcc\xa9\x7a\xfc\xb3\x63\x17\x47\xf3\x09\x55\x48\x05\x5f\x34\xb7\xb0\xa8\x47\xa0\x86\x6f\xd1\xc4\x34\xa8\x36\x75\x8d\x74\x1a\x74\x6a\xd8\x86\x91\x8b\x29\x7d\x43\xfe\x49\x42\x3b\x43\x56\xf5\xf4\x0d\x59\x17\xc7\x21\xab\x42\xfd\x43\x16\xdb\xf3\x90\x21\xeb\x1a\xe9\x90\x75\x6a\xd8\x4a\xef\x57\xd6\x43\x8f\x79\x62\xdc\x82\xca\x40\x71\x93\xce\x88\x24\x1f\xa5\xc1\xd5\x9b\xeb\xfd\x23\xf2\x26\x7e\x94\x8c\xe4\x26\xf1\x81\xa9\x0d\x14\x59\x08\xe5\x03\x76\x50\xd6\x5a\x91\xee\x32\x64\xcd\xb3\x86\xad\x95\x21\x71\x4f\x09\xce\xbe\x19\xd3\x7c\x2b\xd2\x4d\x26\x53\x72\xae\x9e\xbb\x8e\xc8\x72\x29\xb5\x2d\x28\xd6\xa6\x04\xea\x52\x9d\x14\x65\x71\xbd\x2e\xb7\x35\xb1\xda\x88\x52\xb6\x69\xae\x4e\xc5\x1b\x5b\x2d\x45\xfa\x35\x18\xb2\x08\x82\x2b\xb9\xe5\xa7\xc5\xaa\x8c\x67\x5f\x44\xc1\xd7\xf1\xe0\x6c\x7c\x3a\x3e\x0d\xe6\x53\x29\x47\xc1\x80\x99\xac\xba\x64\x43\x59\x95\xd3\x23\x65\x47\xcd\xeb\x8e\xf9\x7f\x37\x37\x3b\x34\xdd\x40\x0b\xd4\x38\x08\x22\x30\xee\x3c\x8b\xd0\xb8\xe8\xfc\xfd\xa6\x62\x75\xcd\x09\x2e\x34\x60\xa7\x12\x37\x24\x6a\x94\x9b\xaa\xbc\xac\x92\xf5\xd9\x50\x8c\x0c\x07\xe2\x6b\x64\xea\x18\xbf\xde\xfd\x0a\x97\x12\xf7\x75\x1c\x04\x5f\xdf\x0d\xa7\x08\x1c\xcb\xc3\xcb\x7a\x8f\xc3\x73\x4c\xb4\x85\xc7\xd8\xa6\x2a\xd7\x9b\x26\x88\x76\xe2\x20\x8c\x94\x44\x42\x7e\x3c\xc2\x63\x0f\xbe\x97\xf2\xf7\x0c\x2b\xc1\x4b\x24\x5f\xf1\xa7\x8f\xf9\x3a\xf3\xe3\x95\xff\xd7\x02\xf1\xc0\xce\xdc\xdc\x88\x4e\xc5\xf1\x69\xb8\x73\x86\x81\x99\x61\xeb\x1a\xf7\x7e\x75\x0f\x07\xf8\x75\xa0\x9c\x9a\x60\x7e\x6b\xcf\xdf\xe7\xee\xfc\x89\x59\xb3\xe6\x83\x25\xcb\x2b\xcf\x24\x5c\xa2\x86\xc1\x23\x79\xf8\x1c\x36\x19\x59\xf1\x96\x55\x35\x43\x5f\x47\x45\x59\x6e\xa2\x55\x81\x1f\xa2\x5b\xc3\x2f\x22\xf1\xeb\x0b\xec\xd9\xa7\x9c\x3f\x38\x65\xdd\x49\x0c\xc2\xd6\x99\xae\x2f\xcc\xe9\x72\x0a\xd9\x98\x3b\x74\x85\x52\xee\xf4\x01\x45\x91\x33\x27\x8e\xf1\x89\x3e\xcf\x81\xaa\x4e\x04\x71\x35\x26\x56\xc1\x3e\x7d\xac\xc0\x9e\x3e\x0e\xec\xf9\x96\x60\xa2\x65\x04\xc4\x8f\xdb\xe0\x65\x18\x3a\xd3\xf1\xe5\x47\x62\xcf\xf2\xb7\x46\x9b\x3f\x49\xb4\xf9\xd3\xef\x0a\x6d\xfe\xf4\x1b\xa3\x0d\x39\x89\x1c\xbc\xe9\x46\x91\x7e\xbc\xb8\x25\x2a\x98\x0b\x3c\x0b\xb2\x55\x30\xff\x68\x22\xb9\x7f\x81\xcf\xe4\x02\x9f\x7d\xfa\x05\x3e\x70\x88\xb8\x18\xa0\x6a\x85\x8c\xc4\x07\x8c\x55\x0e\xef\x4b\x39\xbc\x2f\xc5\xf0\xec\xf1\x7f\x2e\x01\x3e\xff\xf4\xe3\x37\x4f\x8e\xd0\xcb\xf2\x69\x36\xad\x5f\x9e\x4a\x64\xa8\x54\xb4\x0a\xf2\xd4\x28\xa8\xb3\x7f\xb1\x60\xae\xf8\x41\xbf\x1c\x55\x56\x21\x3e\x25\xf6\x82\x1f\x1a\xc5\x54\xe2\x27\x06\xca\x77\x59\xea\x37\xec\x9a\xf8\xf7\x51\x46\xeb\xc2\x6a\x3c\x8e\xe3\xfb\x8a\xe9\xc6\x18\xf7\x5d\xcc\xbf\xc3\xf1\xeb\xf0\x4d\xff\x10\x1d\xfb\x79\xfc\xe0\x5e\x14\xe8\x03\x58\x55\xf3\x40\x57\xa3\xba\x3d\x0e\x46\x9a\x8d\x9f\x78\x00\x02\x83\xe5\xa7\xe9\x11\x6e\x31\x1c\xb8\xc5\x08\x93\x53\xc4\xea\xb1\x93\xa3\xf0\x17\x2b\x52\x07\xd3\xc4\xbc\x0b\x44\xe6\x81\xdf\x79\xbd\xbe\x94\xd5\x39\x93\xa6\x37\x0a\xf2\xd0\x66\x85\xda\x43\xf6\x9e\x4b\xfa\xcd\xcd\x6c\x3e\x95\x2e\x03\x45\xaa\xbe\xb6\x71\x5e\x9e\xdc\x56\xa1\x02\x9e\x16\xa9\x7e\xa9\xab\xbb\xd9\x3e\xbf\x82\xd6\xc2\xf3\xa1\x10\x54\x84\x47\x71\x0c\xbf\xc2\x9d\x09\x4b\xdd\xc1\xee\xf0\x54\x85\xff\x15\x6a\x2a\xff\x6e\x61\xbb\xa7\x25\x35\x2c\xdc\x81\xd0\x7d\xed\x04\xd0\x2c\x68\x20\x82\x43\x7c\xe4\x0c\x8d\xff\x02\x1a\x42\x61\xa4\xcf\x8a\x09\x15\x1e\x45\x17\x4b\xc7\xa5\xaa\x21\xcc\xa0\x12\x0c\x14\xae\x60\x81\xef\x45\xfa\x50\x3a\xc2\x24\x79\xaf\xb2\xe2\x12\x72\x5a\xbd\x23\x7d\x57\x6f\x8d\xf7\xd8\x4b\xfb\xbe\xed\x13\xc0\x74\x4a\x5d\x68\x47\xf9\xbd\x5b\x08\x36\xb5\x70\x25\xa4\x0f\x13\xe4\xfa\x29\x96\x67\xa6\x92\xe6\xca\xb9\x74\x2b\xc4\x49\xce\x20\xfc\xa3\x77\xe1\xf4\x4c\x08\x29\x84\x6f\x1a\xc4\xd5\xff\x16\x92\x29\xbc\xb0\xe8\x1c\xac\x81\x08\x3a\x3e\x8c\x46\x29\x71\x19\xfa\xff\xf8\x58\x52\xa5\x17\x9f\xaf\x14\x40\x1f\x49\xb9\x95\x68\x83\x2f\x89\x5c\x63\xd1\x99\x07\x12\x73\x57\x59\x41\xe8\x49\xb9\xf8\xc5\x24\xca\x71\x1c\x0f\xcd\x1e\x96\x8b\x5f\x88\x6c\x64\xc2\x4b\xb4\x21\xd0\x31\x14\x0b\xf2\xd5\xa7\x0b\xaf\x31\x83\x2f\x0f\xbf\xe9\x5d\x5e\xb2\xca\x75\x31\x7c\x08\x2a\xaa\x13\xc2\x5d\x95\x29\x62\xe3\xf3\xb2\x60\x06\x32\x8a\x3e\xd9\x28\x33\xc4\xb8\xa8\xa2\x80\x74\xf0\xa6\x25\x9e\x14\x90\x6e\xba\x61\xd8\x46\xc6\xfe\xf3\x0f\x81\xa5\x4f\xf9\x91\x1c\xcb\x07\xb9\xd9\xe9\x7c\x6c\xe4\x44\x7d\x88\x87\x87\x0c\x15\x7f\x21\x63\x87\x83\x14\x70\x37\x37\xf0\x76\xb8\x54\x04\x4e\x78\x13\x56\x02\xb0\x6c\x35\xc4\x72\xc7\xc7\x66\xa7\x80\x11\xf1\x6e\x52\xbe\x8a\x6a\x57\xaa\xf2\x12\x7d\x44\xf9\x93\xf8\xac\xf5\x96\x96\x28\xa5\x7c\xb3\x1b\xc5\x42\x3d\x73\xdf\x2b\xd6\xc3\x9c\x3b\x29\xff\x16\xb3\x26\x36\xd5\x44\xc9\xd2\x7b\x66\x26\x2a\x57\xab\x9a\x35\x31\x7e\x3f\x38\x9b\x9c\xf6\xce\xf0\x01\x34\x4f\xce\x33\x9d\x4f\x43\x67\xc2\x18\x1d\xd1\x95\x30\x7c\x0e\x9b\x11\xfb\x80\x4f\x3b\xc1\xae\xb6\xe1\xb8\x29\x91\x78\x22\x62\x17\xec\xdd\x2b\x7b\x9b\x8a\xb9\xac\xed\xc9\x64\x35\xf4\xd1\x47\x7d\x25\xdd\xd1\xe2\xee\xd3\x88\x0f\x52\x7f\x6b\xc7\xd3\xb4\x49\x41\x63\xfd\x78\x61\xc0\xb5\x6d\xd4\x49\x84\xed\x25\x65\x39\x71\x2c\xad\x5e\xc1\x61\x7e\xf9\x19\x2f\xa6\xf6\x43\xde\x08\xbc\x24\x10\x11\x5c\xd2\x38\x29\xf9\x97\x7b\x44\x4f\xd3\xe4\xe4\xac\x7f\x97\x99\x98\x2f\x6b\x1e\xc5\x67\x1c\x0d\x78\xcf\x59\x6e\x6e\xe8\xd8\x84\xf4\xcf\x51\x17\xe2\x7f\xfc\xd8\x35\x1a\x1a\x83\x67\xb5\x7f\xf8\xb3\x93\xb3\xf9\xad\x36\x93\x7f\x6b\x06\x61\x94\xa4\xbf\x6c\xeb\x06\x23\x66\xdb\x0f\x59\x20\x89\xa0\x7b\x41\x02\xc7\x7a\x37\x7c\x7d\x72\xf6\xc0\xd9\x1b\x93\x93\xb3\x29\x21\xdc\x2c\x8d\xcd\x47\x1c\x35\x5a\xd5\x3c\xbc\xe0\x70\x56\xe8\x40\x65\x0f\x5b\x89\xc3\x50\xfb\x30\xce\xa8\x7e\x0d\x91\xa5\x70\x7b\xdf\xad\x5f\x21\x6c\x46\xa8\x1e\x94\x69\x4d\xe2\xe6\xf8\x6c\x4a\xbc\x50\x3e\xcb\x92\x83\xf4\x38\x88\xd2\xe4\x01\x8a\x54\x7e\x8f\xa9\xb7\x76\x17\x62\x69\x46\x7c\x0a\x05\x88\x0f\xd5\xbf\xd2\x9a\xb3\x07\xe8\x57\xfa\x2c\x3d\x3d\x2a\x96\xde\xd7\xf7\x2f\xe8\xe3\xfb\x3e\x75\x5b\xf9\xcc\x41\x1a\x8d\x7c\x4f\x1e\xbb\x9d\x54\xa5\x6b\x5b\xef\x0b\x07\xcf\x3e\x81\xe5\x26\xea\x5c\x5a\x5d\xde\x27\x6b\xa8\xca\x77\x35\x5c\x70\x40\x57\x46\x08\x16\x14\x05\x39\x07\x5f\x3c\xea\xf3\x55\x93\xc0\x3a\xbf\xab\x92\x4d\x30\x8f\x78\x59\x19\x6d\x2a\x17\xbf\x7c\xca\x4c\xfb\x98\xf3\x2e\x06\xfc\x33\x79\xaa\x7c\x36\x04\x62\xfd\x19\xcb\x8f\x8f\x25\xe7\xfb\x19\xcb\x39\x0b\x37\x0c\xc3\x9d\xfc\x89\xec\x1d\x67\x3f\x7f\x0b\xea\xe0\x53\x0a\xf3\xf8\xec\xde\xa7\xd2\xfc\xdb\x29\x30\x7e\xd8\x96\xfc\x3d\x6d\xbf\x3e\xf5\x47\xff\xd6\xf4\xec\xb7\xae\xad\xf9\xc5\x41\x61\xd7\x6e\xbb\xe9\x2c\x7d\x4a\x3e\xbb\x5d\xba\x94\xb0\xfb\x70\xd5\x6f\xa5\x4d\xa9\x74\x49\xb2\x7f\x31\xd0\x34\x68\x1a\x56\x15\x7a\x37\xae\x81\x8e\xae\x93\xf7\x41\x14\x24\xcb\x25\xdb\x34\x42\xe0\xc7\x11\x22\x67\x8d\x54\xad\xac\x93\xb7\x4c\x88\xff\x12\xe9\x89\x8b\x7f\xb0\x62\x29\x5a\xe2\x5f\x6b\x70\x82\x26\x3e\x8a\xf2\x6d\x92\x67\x29\xea\x6e\xf2\x84\x26\xa9\x10\x33\xaf\x58\x76\x79\xd5\x80\x86\xe7\x66\xdb\xac\xcb\x94\x43\xe4\x59\xcd\x93\x88\x7c\xb2\x6e\xd8\x86\x13\x84\x2c\x6d\xae\x82\xb9\x90\x11\x06\x81\x50\xe6\x84\xd9\x8a\xf8\xb8\x90\x38\x88\xa1\xe1\xc7\x3a\x93\x3f\x92\xf7\xf0\xe3\x36\x9b\xab\x23\x42\xf1\x6d\xb7\x97\x4f\x89\x4f\x2a\xff\x41\x6a\x7d\x0f\x67\xe4\x02\x67\xf4\x7f\xe2\xc6\xfa\x9e\x8f\xc3\xd1\x98\x83\x54\xdc\x4f\x30\xc0\x87\x48\xe0\xf7\xef\x2b\x7b\x0b\x42\x45\xc2\x75\xfe\xd0\x53\x57\xb4\x53\x48\xe1\xdb\x03\x70\x89\xb9\x2a\x73\x74\x6a\x47\xc4\xdd\xeb\xe4\xbd\xb8\xbf\x18\xa2\xef\x8a\x25\x69\x59\xe4\xd7\x1d\x32\x6f\xcd\x8a\x57\xca\x1b\x5d\xbd\x61\x79\x0e\x3a\xb2\xa6\xcc\xbc\xc9\x9a\x5c\xee\x9d\x65\xb2\xc9\x1a\xb0\xad\x56\x7b\xab\xaa\x50\x5b\x80\xf4\x10\xf1\xd5\x12\xa1\xab\x8e\x62\xee\x81\x47\x0f\x74\xfc\xc5\xd6\x3c\x72\x18\x39\x6c\xd4\x65\xa2\x9f\x31\xdd\x57\x64\x93\xd4\xcd\xed\x4a\x2c\x6f\xd9\x29\x41\xe0\x6e\x51\xe2\x0d\xbb\xfe\x71\x43\x4b\x64\x45\xc3\xaa\x4d\xc5\x9a\xef\xd8\x35\x18\x4b\xd4\x61\x1b\x25\xe4\xed\x41\xd8\x50\x4c\x84\x09\x45\xb4\xd8\x2e\x16\x39\xab\x95\xe2\xb7\x5d\x5c\x2f\x00\x7b\x0b\x77\x7b\x74\xa9\xb5\xa1\xa6\xd4\xe3\xef\xce\xff\xf7\xc5\xf9\x4f\xe7\xcf\x5f\xbf\x42\x8f\x5b\xe8\x1d\x72\x9d\x6c\x66\x50\x68\xfc\x86\x5d\x3f\x2a\x53\x36\x9f\xf6\x8c\x0a\x19\x13\x2c\x6a\xc8\x00\x66\x98\x36\x17\x1d\xe0\xf7\x44\x6f\x05\x7e\x4d\x6f\x71\x24\x28\x3d\x6f\x64\x74\xf8\xad\x87\x73\x2b\xcf\xd9\xbb\x3c\x2b\x98\x33\xc8\x9a\x15\x29\xee\xbd\xa1\x9c\x28\xa8\x0e\xb3\xa7\x34\x1b\x2b\x3a\x29\xb0\x26\x03\xae\x8d\x96\x49\xb1\x64\x79\x7f\xf5\xf0\xb8\x7a\x02\x6f\xab\x56\x69\xc0\xec\xa7\x45\x6f\x71\x80\x39\xe1\x44\xd7\x2d\xfa\x62\xdb\x1c\x50\xb6\x54\x38\x27\x0b\xbf\x61\xd7\x3f\xf0\xee\xf4\x16\x7e\xc3\xae\x7d\x9d\x6e\xc3\xa9\x1f\x33\xe2\xdd\xd9\xe7\x93\xc0\x98\xf6\x20\xba\xff\xa7\x49\x80\x73\x14\xb4\x5a\x79\x86\x34\x03\xb5\x82\xed\x1e\xe7\xdc\x22\x82\x83\x89\xbe\xe2\xeb\x2c\xb0\xd4\x8b\x68\x72\x20\x10\xde\x90\x4e\x63\x0e\x91\x83\x96\x45\x1c\xc7\xaa\x86\x9b\x1b\xf8\x0e\xe4\x3c\x04\xc7\xc7\x2a\x4f\xa4\x8b\xa1\x87\xbb\xb7\xa8\x34\xa6\xe7\x45\x32\x0c\x82\x85\xb6\xf3\xc9\x80\x00\x80\xb7\x8e\x45\x44\xab\x7a\x1c\xf0\x5c\xa0\xbb\x2b\x76\x6a\x10\x86\x3b\xdc\x55\x75\x53\x6e\x7e\xa8\xca\x4d\x72\x99\x20\xda\xb7\x9d\xae\x57\xc9\x92\xf4\x71\x06\xc0\x64\xf4\x44\x8a\xee\x8f\xfb\xbc\xdf\xb4\xa1\x87\xa9\xb0\x1d\xa3\x0a\x5b\x88\xaa\x2a\xed\x4a\x7c\x86\x02\x59\x7d\xc1\xd6\x9b\xe6\xfa\xf7\x6a\x26\xf0\xd1\x91\x9f\x57\x6b\x97\x2d\x59\xad\x9b\xbd\x46\x02\x1e\xae\x7f\x9f\xd1\xa1\x8f\x43\xfa\x82\x70\x48\x59\xfd\x6d\x5e\x2e\x92\xdc\xeb\xa4\x91\x66\xea\xce\x9d\xf3\x65\xdc\x67\x09\xf0\xf4\xd5\xc5\x37\x4f\x9f\x3f\x7e\xfa\xfc\x5b\xc7\x18\x40\x67\xb9\xfe\xf5\xa2\x4e\x4f\x49\x59\x7d\xce\x71\x62\x9f\xdd\x40\x9d\x67\x4b\x16\xcf\xe6\x63\xf8\x11\x49\x97\xf2\x9d\x2a\xf2\xca\x55\x91\xa2\x57\x86\x37\x99\x61\x55\x96\x0d\xe7\xcf\xaf\x88\xda\xd1\x1b\x19\x4e\x8c\x27\x1d\x1f\x83\x4e\x83\x4c\xbb\xb9\xd9\x01\xc9\xe5\x1f\x51\x56\x8b\xb0\x5c\x53\x91\x12\xf3\x9a\xc6\xf5\x26\xcf\x9a\x61\x30\x0e\xa2\xb3\x70\x76\x0a\x71\xa0\x64\x71\x4f\x50\x39\x9e\x1e\x86\x3b\xde\x91\x58\x82\xcd\xc4\x8f\xf9\x54\x35\x11\x37\xd5\x96\x81\xe8\x36\x01\xed\x02\x59\x72\x07\xdf\x41\x80\xe2\x6d\xf8\xc0\x4e\x6c\x17\x75\x53\xc9\x06\x84\x56\xc2\xe8\x2c\x6c\x85\x2a\x06\x34\x38\x51\xc3\x9f\xc0\x1c\xa8\xd6\x26\xea\x17\x51\x40\x32\x3c\x1e\x91\x99\x33\x9e\x0d\x40\x51\x53\xa4\x1c\x1f\x1b\x4a\xfe\x6a\xe6\x53\xd7\xad\x8f\xbd\x10\x48\x70\xf9\x78\xcd\xe8\x56\x63\x15\xdc\xca\x17\xf1\x2b\xd9\xd4\x27\xc2\x1f\x01\x3e\xe0\x52\x0c\x87\x99\x03\xf7\xfd\xf2\x64\xc1\xaa\xb1\x00\xb4\x2d\x1e\x09\x34\x84\xd9\xe5\x31\x74\xd2\x4a\xc3\x72\x42\xbd\x9e\x2f\xa2\xa7\xcc\x74\x63\x0c\x58\x17\x9c\xea\xa6\xd4\x04\x84\xea\xa1\x93\xfa\x7a\x3f\x3e\xe6\x00\x47\x71\x4c\x3b\x7d\x7c\x7c\xeb\x01\xb6\x86\x4e\x8a\x5a\x5b\xed\xa4\xaa\x6b\x61\x2b\x56\x6f\x73\xcb\xed\x95\x07\x76\x0a\x41\x83\x01\x34\x8e\x39\x13\x7b\x73\xa3\x3e\xd5\x60\x38\xcb\x08\x69\x02\x6f\x07\x10\x7f\x01\xd3\x68\x20\x44\xb2\x91\x5f\x25\x2b\x86\xf1\x0a\x42\x55\x5a\x44\x43\xc4\x2f\x7c\xf1\xa4\x16\xbd\x63\x15\xfd\x40\x95\x20\x15\xa2\xb5\x8d\xa3\x2d\x27\x2b\x53\xf1\xfb\xf8\xa7\x61\xe6\xeb\x77\xed\xa5\x66\xd2\xf0\x32\xa6\xac\x55\x30\xa4\x84\x33\xa3\x1c\x32\x15\xee\xc9\x66\x73\xcb\x2a\x19\x03\x9b\x42\x49\xc8\x99\xea\x50\xd2\xa7\x51\x1e\x1b\x51\x2a\xa6\xd9\x57\x39\xc6\x92\x86\x64\x91\x39\xcb\xe6\x53\x0c\x35\xce\xab\xe2\x5f\x22\xa6\x1c\x67\x8c\x9e\x3e\x06\x4b\x70\xda\x07\xd4\x18\x31\x97\xd8\x18\x81\x1a\x40\x28\xed\x49\xdc\xe2\x00\xa8\x11\xcd\x04\x31\x66\xb2\xcf\x3d\x9b\x3d\x9f\x7f\x4d\xea\x2b\xd5\x17\x30\xe1\xf6\xce\x25\xb8\x84\xdb\xb5\x9d\x86\xf5\xc6\x3c\x8a\x08\xa0\x10\xd6\x03\xf8\x37\xc0\x9a\xfe\xb8\x9f\x64\x3a\xdf\xb0\xeb\xee\x09\xe5\x1d\x01\x88\xd8\x3f\x9d\x57\x32\xdf\xb2\xb2\xf7\x95\x17\xbf\x9c\x29\xe5\x30\xbe\x09\x75\xfc\xe2\x69\x12\xee\x7a\xb2\x42\xaa\x01\xc3\x37\x8e\x6a\x35\x14\xe5\x11\xcf\x13\x6c\xae\xc7\x69\x7e\x38\x0b\x8c\x0a\x82\x39\xbc\x83\x02\x93\x08\xf7\x83\x38\x08\x8c\x68\x0d\x4a\x85\x6e\x66\x2b\xd3\x9d\x9c\x51\x66\xc8\xf4\xcd\x37\xa4\x47\xcc\x58\x69\x02\x83\x77\x10\x4d\x4e\xaf\xd4\x90\x88\x79\x3f\x0d\x3a\x03\xec\x04\x2a\x64\xaa\xd6\xa3\x33\x8e\xe6\xc0\x0d\x05\xff\xf5\x17\x42\x8c\x70\x10\x93\xc1\xa3\x72\x9b\xa7\x83\xa2\x6c\x06\xab\xac\x48\x07\x92\x61\x1e\xdc\xfd\xaf\xbf\xdc\x1d\x94\x85\x08\xb6\x38\xf8\xaf\xbf\x8c\x03\xf2\x7e\x38\x16\x9c\x06\x9f\x02\xa7\xf3\x6d\x73\x55\x95\xef\x06\x2a\x8a\x04\x30\x63\xc3\xd5\xba\x19\xe2\xc4\xcd\xe0\x7a\x01\x14\x97\xf7\x7b\x1e\x9a\x2e\x08\x7c\x8e\x9d\x7d\x8e\x9c\x15\x42\x74\xf9\x37\xfb\x37\x63\xc5\xef\x1c\x07\x88\xe9\x9c\xd4\xa6\x36\x66\x95\xb8\x88\x10\xa7\x2c\x5d\x94\x4e\x8f\xd9\x9d\x1e\xb2\x09\xf1\x73\x9c\x61\xa2\x87\xa2\x55\x21\x0c\x54\x74\xc6\xc3\xea\xb2\x8e\x3b\xc6\x80\x2e\xe5\x9e\x14\xb6\x47\x4e\x3a\x7c\xab\xaa\xbd\x0e\xa9\xa0\x1f\xa2\xde\xd0\x22\x43\x87\xb9\xf5\x54\xc3\xb4\x7a\x05\xd1\xea\x39\xea\xf9\x6e\x0b\xe1\xce\xeb\xb3\x71\x1f\x22\xf6\x45\x60\x08\x67\x81\xaf\x4e\x81\x9b\xf2\x3e\xd2\x7c\xc7\xae\x3b\x27\xd8\x26\xb1\xe2\x89\x4f\xdb\xc4\xfb\x0b\x9e\x46\x27\x67\x61\x54\x6c\xd7\x3f\x68\x40\x5d\x46\xa0\x7e\x74\xd0\xee\xa0\x7c\xa9\xae\x6c\x86\x6a\xdb\x06\xa1\x11\x87\x23\x6c\x96\xac\x16\x5e\x46\x1f\x90\xfe\x99\x0c\xc8\x59\x38\x31\x13\x5c\x6f\x2a\x40\xcb\xd4\xe6\x53\x7a\xe4\x0a\x48\x26\x44\xcb\x6d\x55\xb1\xa2\x11\xba\xeb\xb1\x4c\x47\xc7\x56\xfc\x97\x18\xcf\x03\xf9\x3d\x3b\x9d\x4f\x70\x5f\x55\x6c\x95\xbd\xe7\x6c\xee\x93\xb2\x7a\x6c\x2c\x49\x00\xae\xe8\xa2\x9c\x15\xd0\x35\xa1\x93\x0a\xa3\x12\xbf\x25\x65\x26\x73\x84\xda\x89\xbe\x65\xa7\x01\x1b\x4d\x70\xed\xd5\xfd\x85\x58\x11\x60\x18\x8c\x94\x5d\x0b\xec\x85\xee\x88\xc1\x61\xe8\xbb\xf1\xb8\x61\x75\x43\xc0\xc2\x70\x47\xeb\x99\xe9\x1c\xbc\xea\x0e\x4f\xa3\x93\x3f\x85\x82\x1b\xd0\x99\x73\x0c\xeb\xfb\x0e\xa2\xec\x99\x0b\x8f\xb6\x6a\x1b\x23\x89\x77\x2d\x2f\x97\xf1\xe9\x34\x2f\x97\x5f\x19\x78\x37\x1d\x8d\xf2\x72\x29\x54\xf8\x09\x0e\x22\x4f\xa7\xbe\x67\x79\xb9\xc4\x30\x66\xc8\x04\xf1\x4f\xc5\xfc\xbc\xa5\x71\x21\xa0\x37\xd6\x2d\xcf\x5c\xff\xc8\xaa\x16\xaf\x7e\x53\x1f\x22\x8b\x88\xe6\x46\x4e\x38\x75\x86\xed\x05\x53\xee\x8b\x4c\x8c\x0f\x77\xdd\x0d\xed\xf0\x4e\x6c\x76\xaf\x15\x35\xf5\xf4\x6f\x9b\xe7\x61\x0b\x91\x9b\xed\xb6\x64\x98\x6e\x9f\x6f\x5f\xa4\xbf\xab\xc2\xbb\x85\x35\x7f\xf8\x56\x78\xbe\x07\x7a\xc7\x39\x04\x1f\xf6\x62\x2c\x5d\xf8\xaf\xe3\x32\x14\x19\x7c\xc8\x54\xd6\x68\x23\x7b\x6c\x69\x2b\x24\xfc\x78\x99\xcd\xe9\xbe\x02\x74\x22\xdf\x1c\xd5\x29\x12\x23\x11\xa7\x29\x36\x73\x4d\xf2\x28\x93\x2d\xf7\x6b\x3f\xf6\x18\xfb\x85\x7c\x48\x3c\x52\x23\x43\xa9\x88\xa8\x13\xef\xdd\x46\xde\x4b\x7e\x6d\x57\xf9\x70\x61\x87\x6d\x46\xeb\x8c\xad\xe9\x41\x4a\x29\xab\x09\xdb\x03\x76\x96\x3b\x2a\xb2\xcc\x80\x61\x42\x35\x0f\xa0\xc2\xdd\xc7\xf4\x9f\xaf\x96\xbd\x19\x7c\xfd\x16\x28\xad\xc1\xed\x9d\xde\xb6\x3a\xcf\x8a\x12\x37\x58\x15\x82\x7f\xb0\x16\x86\x97\x08\xdb\x29\x30\x62\x18\x54\xf6\xd1\x55\x96\xa7\xba\xd5\x83\x10\xe7\x70\xbc\xd9\x47\x06\x3e\x00\x79\xc2\x56\xaf\x28\x3f\x59\x62\xb7\x0d\x71\xf1\xe6\xcb\x9d\xb3\xc2\x59\x64\xa7\x00\xae\x30\x4c\x8a\x64\x86\x5e\x48\x0d\x21\x63\xf1\x22\x63\xa9\x23\x39\x6b\xea\xc7\xb8\x62\x15\x3f\xfe\xaa\xb0\x55\x64\xf8\x74\x7e\x84\x44\xf8\xe6\xc6\x4b\x9e\x94\x55\xd2\xa9\xa1\x95\xaa\x61\xfd\x48\x79\x3a\x8f\x14\x82\x69\x80\xb1\x12\xfb\xd0\x44\xc0\x4b\xd4\x3a\x07\x51\xae\x14\x47\xf5\x9c\xdc\x1c\x62\x14\x8c\x83\xd6\x94\x6c\x18\x1c\x97\x23\xe0\xe8\x98\x41\xd1\xcd\x1e\x46\x61\x64\xd4\x3b\xcb\xe6\xbd\x53\xdb\x8a\x0b\xc2\x45\x95\xbc\x7b\x22\x48\x61\xbc\x2a\x4c\x0f\x71\x5a\x80\xe6\x27\xec\xf2\xb6\xbf\x8f\xb6\x1b\x14\xd6\xe5\xaf\xfa\x79\x0e\xc1\xcf\xf5\x30\x70\x8a\x3f\x52\x8c\x90\xfc\xf1\xfa\x7a\xc3\xfe\x2d\x24\xdd\x25\xa8\x7e\xb9\x48\xf7\xbe\x54\xe7\xa0\xb9\x31\x7b\xd0\xbd\x73\x6f\x76\x13\x60\x3a\x2f\xb1\xe6\x70\x28\x61\x7e\x4d\xc5\x3d\x9a\x38\x9a\xc3\xe9\xdb\xd0\x96\x0c\xcd\xa1\xbd\xd7\x52\xa6\x7c\x08\xe5\x35\x48\x2e\x71\x86\x28\x3c\x39\xd4\x1b\xb6\x44\xec\x6a\x62\xfb\xb1\x04\x33\xa7\xcd\x38\xab\x5f\x97\x1b\x7c\x60\x90\x4f\xf9\x96\x63\x43\x3b\xf0\x03\xcd\xed\x73\xd6\x4f\xe1\xf6\x05\x87\x30\xe4\x18\x46\x40\x2c\x33\xd4\x02\x85\xbb\x45\x00\x85\xbe\xa7\x54\x27\xe0\x63\xcf\xb3\xea\x47\x3d\x9c\xf6\x68\x63\x99\x7e\xdb\xfa\x1f\x6f\x45\x65\x79\xd2\x08\x05\xa0\xfd\xce\xde\xf6\x38\xaa\x33\x9d\xbc\x75\xba\xa1\x43\xe0\x6a\x5b\x5c\xe4\x65\xb9\xb1\x92\xa5\xbe\xeb\x9e\xc7\x62\xac\x56\x0c\xec\x97\x5f\xb7\xac\xba\xde\x17\xd7\x53\xce\xc6\x1b\x76\xed\x0d\xc1\xb8\x27\xbc\xe2\xef\xf1\x91\xf9\x37\xf0\x45\x67\x06\x5a\xfa\x54\x61\x13\x3f\xfa\x35\xbc\xef\xc5\xfb\x37\xf4\x73\x07\xf4\xd0\x79\xe2\x86\x54\xef\xa3\xfc\x97\xe4\x51\xbe\xbc\x40\x45\x3e\xe7\x2d\x1b\x93\x6f\xe1\xd7\xae\xcf\xa9\x9f\x27\xd8\x98\x74\x12\xe7\x78\xb8\x13\x19\x7e\x0f\x7e\xe0\xe3\x4e\xbd\x9c\x57\xdb\xc2\x71\x6a\xe7\xc4\x80\x64\xeb\xf2\x2d\x7b\xe1\x75\x98\x07\x61\x20\x8d\xfc\x7e\xcd\x01\x8e\x5b\xae\xea\x00\xec\xc9\x6f\xec\x48\x7d\x00\xab\x42\xf5\xfd\xf2\x37\xbe\xd9\xf7\x46\xf1\xf2\x79\x19\xfc\xa3\xe5\x65\xd0\x38\x12\x7c\x51\x16\x39\x7e\xdb\x61\x16\x39\xf9\xd8\x1b\xed\x6b\x6f\xc0\xa8\xb3\x3f\x7f\x54\xc0\x28\x28\xde\xa9\x06\xd1\x1d\x55\x13\x06\xe4\x86\xd5\xec\x0e\x1d\x09\x05\xdc\xd8\x91\x1d\x51\x29\x7d\xf3\x75\xb9\xcd\xd2\x27\xa5\x1b\xd9\x51\xa4\x63\x08\xaf\xeb\x0d\x7b\xb1\x72\x83\x7a\x42\xf2\xc1\x2a\x2c\xfa\x75\xd7\x01\xd3\x59\x5a\xc6\xca\xde\x67\x75\x53\x0b\xc3\x07\x71\x9f\x31\x8d\x5d\xe1\x76\xf3\xf7\xac\xb9\xea\x0c\xd0\x43\x9c\x6c\x99\x9a\xab\xd2\x62\xad\x2a\xf3\x9c\x55\x53\x22\x21\x27\x3a\xad\x91\x92\xc0\x86\x53\x43\x67\x04\x60\x24\x9f\xf4\x98\xaa\x8e\x50\x38\x50\x4e\x33\x40\xff\xca\xb9\x7a\x92\x4b\xa1\x01\x17\x3a\xa1\x15\x2a\xe8\x4e\x77\x54\x4f\x46\x85\xc2\x69\x06\xfb\x5d\x4a\x63\xa1\x80\x95\xc8\x19\x5f\xb3\x5e\x29\xd8\x66\x6f\xb3\x72\x5b\xdb\x65\x69\xe2\x54\x17\x8c\x1b\x23\x62\x82\xe5\xb6\x3f\xd0\x80\x93\x60\x64\x35\x27\x75\xac\x77\xe8\x3d\xed\x91\x06\xb5\x9a\x8b\x50\x65\xdd\x4e\x6e\xa5\x3f\xc7\x4b\x56\xb0\x2a\x69\xd0\xf7\x81\xe8\x16\x99\x11\x7e\xaf\xb1\x06\xaf\xcc\xab\x1b\xda\x45\xb4\x04\xc6\xdf\xd4\x8b\xe4\x73\xb9\x37\x2b\x7e\x5d\xd4\xe2\x33\xa1\x51\xb0\xd3\xa5\xb0\xc6\x75\x99\xb2\x3c\x88\x44\xf6\x94\xb8\x66\x44\xa8\x56\x2a\xa3\xd0\x95\x05\x54\x40\x3a\x3a\x66\xef\x37\x49\x91\x96\x23\xb1\x1d\x87\xb4\x5b\x4a\x93\xc8\x2c\x3a\xa7\x23\x56\x24\x5b\xa9\x27\x45\x26\xf4\x28\x18\x8b\x4e\x12\x54\x53\x75\x43\x57\xcc\x02\x2d\x5a\x55\x5b\x93\xe8\x69\x87\x20\xba\x51\x77\xdb\x46\xef\xb2\x3c\x7f\xcc\xea\xa6\x2a\xaf\xbb\xf5\xc9\xb3\xd5\xb0\x73\x51\x25\xac\x27\x6b\x9c\x62\xc5\xa0\x7d\x49\xde\x6c\xf8\x09\xa5\x6e\x5f\x2a\x0c\xbf\x35\x90\xa8\xbe\x2a\xb7\x79\x2a\x2c\x64\x22\x6b\xcd\xa3\xe5\x55\x96\x93\xeb\xa4\xab\x0d\x85\x6f\x2f\xab\x42\x7d\xaf\x0a\xe9\xb8\x47\x25\x89\x6f\xfb\x41\x45\xdf\x57\x23\xc9\x64\x47\x19\xee\x79\xf3\x41\x85\x8f\xfc\xe6\xe6\x5d\x56\xa4\xe5\xbb\xa9\x4f\xb8\xd3\x23\x85\xbf\x16\x62\xd3\x6c\x35\x0c\x44\xd4\x96\x38\x86\x3b\x70\xb9\x02\xdd\xee\x50\xcb\xd0\x8b\x3a\x4b\x19\x78\x0a\x09\x77\xca\x10\x90\xac\xd6\xbb\xab\x2c\x67\xa0\x0a\x3b\xbe\x10\x57\x54\x7c\xbb\x83\x81\x39\xe9\x6d\xb5\x2d\xc6\x65\xb1\x64\x42\x7b\x56\x4a\x61\x82\xb0\x35\x82\x86\xca\x97\xa5\xc8\xab\x8c\xd4\x35\x2c\x72\x79\x86\x52\xd6\xca\x3d\xb0\xbe\xe5\x86\x9d\xe0\xdf\xa9\x68\x33\xb6\xd0\xe1\x81\xd9\x9c\x84\xce\x56\x43\x03\x4f\x64\x6d\xe1\x4e\xdd\xa2\x57\x85\x52\x7a\x12\xeb\x4d\x32\x45\x4a\xab\x6e\xf0\x72\xc8\xae\xd7\xdc\x36\xd4\x14\xe2\xad\x74\x36\xe9\x0f\x46\x27\x41\xd4\x2b\x95\x35\x98\x49\x2f\xae\x73\x7a\x36\xe9\xc5\x7e\x80\xb0\x77\x44\x8a\xb0\xda\x33\xb0\xc2\x77\x95\x24\xf1\x9d\x3e\xb7\x5c\x2b\x91\xe3\xc4\x59\x51\x83\xb2\xdb\xd9\x59\x2d\x98\x97\x49\xd7\xcb\x07\x3d\x97\x4d\x07\xc4\xf4\x9c\x9c\x18\xb2\x37\x64\x53\xc0\xa8\x4d\xa5\xab\xa4\x96\xea\x75\x64\xf5\xdf\x75\xfc\xb3\x9d\x5e\x11\xc9\x86\x98\x0f\x38\xa8\xa6\x00\x67\x1b\x48\xc7\xe1\xf1\x46\x15\x8a\xc8\x6a\x85\x7d\x92\x74\xdf\xee\xe3\xbb\xa9\x5e\x5e\xb1\x74\x9b\xb3\x17\x7c\x57\x05\x62\x3b\x69\x81\xa7\xda\x62\x4f\x57\xcf\x19\x4b\x59\x1a\x84\x40\xbc\x2d\x79\xee\x51\x1c\x07\x41\x97\xc8\xd5\x16\x08\x5b\x65\x15\xa9\x02\x92\xe2\x90\xc7\x55\x59\x0d\xb3\xf8\x74\x9a\x7d\x65\x65\x29\x81\x6f\xb7\xb0\x77\x4f\xcb\xa3\x60\x1c\x8c\xac\x5a\x67\xd9\x5c\x77\xa8\x6d\xdb\x0e\x97\x7b\xbe\x7b\xc5\x5e\xc2\x42\xbd\xf4\xd5\xc0\xd9\xc3\x69\xb7\xaf\x58\xc7\x09\x71\x00\xed\x57\xc2\xee\x72\xdb\x6c\xb6\xcd\x87\x52\xfa\x2e\xd1\xbe\x54\x33\xe6\x79\xc7\xc7\xee\x61\x20\xf3\xfe\x33\x07\x02\x8e\x39\xfe\xa0\x95\x72\xfd\xb7\x62\x6d\x84\x92\xee\x7f\x61\x55\xb5\x5a\xad\xdd\xf2\xbd\xf5\x42\xbb\x03\x86\x09\xf8\x94\xbb\xfc\x53\xee\x6e\xb1\x95\x3e\xcd\xb2\x90\x8d\x45\xcf\x1f\x19\x98\x52\xb8\x31\x53\x3c\x36\x30\x0b\xd5\xb6\xb9\xba\x8e\x31\xe9\xf8\x18\x74\xab\xe1\x77\x14\x64\xf5\x6b\xc8\x0c\x94\x02\x03\x67\x6d\x10\x3e\x8e\x83\x45\x59\xe6\x2c\x29\x74\x80\x24\xcc\x6a\x89\x2b\x1a\x75\x9a\x13\x7f\xda\xb2\x76\xe9\x77\xe6\x28\x8e\x4f\xa9\xce\xd8\xd1\x91\xd0\x22\xd6\x83\xf1\x46\xe8\x74\x38\x50\x11\xbc\x08\x85\xda\xbd\xf1\x8a\xfb\x35\xe0\xe4\x8b\x72\xb7\x16\x9c\xd6\x5f\x53\xaf\x2c\x96\xbe\x9b\x76\xc0\x2f\xd4\x71\xac\xae\xb6\x8e\xc2\xae\x7e\x01\xc3\x6e\x14\xd2\x4c\x4a\x3a\xc1\xe4\x09\x73\x3b\x18\x15\xa6\xb6\xd2\x43\x91\x08\xb8\xc7\x13\x65\xf4\x85\x61\x70\x12\x84\x71\x1c\x9f\x9c\x19\x4f\x99\x62\x9a\xec\x3b\xa6\x0c\x0d\x2b\x82\xf1\xa1\x6f\x1e\x39\x09\x6f\x45\x24\x0a\x1a\x2b\xd0\xad\x40\x41\x08\xdb\x82\xc9\x3a\xc9\xa4\xbb\x2e\x1a\x93\xce\xa8\xc7\xba\xe2\x5a\x61\x05\x79\x2f\x48\x18\xbc\x8e\x25\x5e\x27\x6f\x98\x8e\x92\x4c\x0a\x4c\x3d\x71\xf3\xcc\x71\x0a\xb6\x45\xab\x61\xdb\xef\x95\x3a\x30\x6d\x07\xda\x49\xb6\xd7\xd6\xe1\xd2\x46\x1d\xb6\xce\x96\x9d\x2e\x75\xb7\xa6\x54\x31\x7f\x55\xe8\x20\x06\xe4\xa8\xec\xa2\x0c\xad\xcb\x73\xc5\x18\x5a\x57\x39\xa3\x76\x22\x43\x38\x17\x39\x34\x97\x45\xa1\x11\x41\x54\x23\xc4\xad\x9e\x05\xa9\x5a\x29\x27\x60\x55\x90\xb1\x93\x0f\x39\x6c\x92\xa4\x46\xbc\x2a\x68\x87\x8d\xaf\x9b\x1b\x15\xe8\xf7\x80\x21\xac\x8a\xa8\xa9\xb6\x2c\xea\xa3\x7e\xfd\x99\x33\x4d\xf5\x14\x89\x9a\x93\x59\xb0\x42\xfd\xfe\xa6\xf3\x80\xba\x87\xab\xc2\xe4\xb1\x79\x02\xb9\xfb\xae\x0a\x75\xed\x25\xbc\x8e\xec\x06\x28\xad\x88\xfb\x5e\x0f\x9f\xd3\xc1\xe0\xd0\x4a\x3a\x1e\x9c\xe9\x78\x01\x53\x7b\x0f\x1a\xa3\xc6\xf0\xf0\x7b\x9b\xb8\xaf\xa9\x59\xd7\x91\x92\xdd\x38\x29\x92\x0b\x21\xd7\x1e\xe3\x6e\xa6\x65\x2e\x11\xdd\x15\x10\x82\x79\xea\xf7\x45\xfb\x85\x61\xd9\x06\x62\x17\x38\xc4\xf9\xc9\xce\x27\x90\xce\xbc\xe8\x0f\x88\x15\x5d\xcd\xd3\xcf\xe7\x53\x2a\xc3\xd4\x19\xf7\xe7\x68\xe5\xa4\x53\xd0\xf4\x0d\x15\xc9\x75\x47\x47\x71\x30\x08\x46\xc8\xa6\x0f\x92\x7a\x10\x8c\x48\x7d\x40\xc9\xf3\x72\x89\x5d\x91\xb7\x55\xf9\x3c\xa3\x9f\xc1\x6d\x90\x31\xb2\xd1\x16\x9c\xe0\xb8\xbc\xc0\x4a\x2c\xeb\x2f\x65\x18\xfc\x09\x67\x74\xae\xa5\x15\x99\x2a\xd0\x65\xb1\xf5\x03\x2d\x2c\x55\x0a\xe2\x16\x4b\xe8\xd5\xa4\x91\x4b\xe3\x30\xe7\x64\x4f\x7e\xc7\xae\xbb\x84\x81\xb2\xf8\xbe\xe1\xcf\x74\x55\xf3\x58\x16\x9a\xda\x03\x7b\xa0\xa1\xe0\x72\x05\xf7\x75\x9d\xd6\x3a\x6d\x5c\x59\xe2\xec\x98\x8a\xb6\x7b\xa1\x95\x58\x51\xe2\x20\xd9\x0a\x18\xb7\x41\x09\x64\x28\x86\xda\x75\x4e\x1d\xe9\x76\xb5\x65\xb8\x3e\x36\x2e\x8a\xfa\x8c\x86\x3c\x67\x99\x53\x23\x1c\x2b\xbe\x03\x4a\xff\x9c\xfa\x64\x03\x86\xa6\x85\xa6\xfd\x74\xcb\x5b\x34\xc1\x21\x01\xce\x59\x26\x23\xa9\x77\x46\x5d\xa2\xfd\x73\x93\x6e\x6e\x82\x6c\x45\xa6\xc2\xb2\x56\xf1\x28\xb2\x4a\xbe\x50\x1d\x1f\xa6\xe6\x11\x99\x37\x7b\x30\x7e\x7b\x8a\xdb\xd7\x42\x8f\x30\x1d\x14\xde\x4f\x4e\x0f\x93\xba\x52\x6a\x2a\x02\xce\xcb\xf7\x0f\x10\x64\x77\x20\x4e\xab\xab\x96\xc7\xc0\xd4\xaa\x3a\x5e\x15\xd3\x03\x17\x82\x20\xcf\xff\xac\x55\x30\xe3\xe4\x9b\xce\x44\x93\xa6\xa9\x4c\x73\x3c\x25\x92\x74\x6d\xa0\xc4\x8b\x75\x13\xcf\x44\xac\xb8\xe6\xbd\x29\xd8\x96\x72\x93\xa7\x69\x3c\x1a\xa1\x8d\xeb\x76\x9b\xe1\x9b\xe5\x92\x44\xdc\xa9\x63\x68\x77\x16\x40\x62\x00\xc7\x91\x91\x7f\x04\x16\xaa\x82\xcd\xe1\x19\x2f\x81\xcf\xa8\x63\xd8\x8b\x3c\x81\xd5\xc3\x65\xf3\x3e\x32\x4a\xa1\x77\x0b\xec\x00\x15\x2e\x37\x22\x22\x0c\x00\xc7\xc1\xdd\xd1\x7e\x6b\x53\xda\xe8\xf8\x97\x32\x2b\x86\xc1\x20\x08\xc3\xd1\xdd\xe0\x6e\x28\xe3\xf9\x9a\x63\x68\xe5\x74\x82\x02\xe5\x1b\x76\x5d\x0f\x01\x20\x94\x0e\xcc\x85\x89\x89\x80\xd0\x2a\x2f\x3c\x45\xbc\xdd\xc1\x31\x0d\xb5\xf2\xff\xa9\xe5\x48\x0f\x87\xd5\xbc\xf7\x1d\x5d\xda\x8f\x9d\xb0\x4b\x0f\xf8\x4a\x05\x0f\xac\x43\x6b\x62\xf1\x5e\x56\x65\x61\xa4\xcc\x2a\x5f\x08\xdb\xe7\xd0\x70\x32\xe8\x0a\x40\x54\xd6\xb0\xc7\x3c\xd9\x69\x07\x55\x15\x72\xb6\x46\x91\xd3\x67\xc3\x60\xc6\xc7\x71\xc2\xd7\x9b\xcf\xc5\x49\x30\xc2\x75\x1d\x05\xf1\x5d\xfd\xfb\xee\x5c\x39\x75\x65\xeb\x9b\x1b\xfe\xbf\xa5\x51\x4b\xd5\x27\x6e\x21\x18\x15\xf7\xd7\x9f\x84\xe4\x27\xbf\x7e\x68\xfb\x8a\x1a\xf2\xc6\xc0\x85\x94\x7c\x29\x6c\x25\x57\x75\x24\x67\xfb\xf8\xf8\x88\xb6\xa9\x6c\xf7\x8f\x8f\xad\x96\x63\x10\xf8\x7c\xbc\xc4\x87\x18\xbd\x0a\xcd\xb4\x9b\x1b\x99\x50\x6c\xf9\x86\xe4\x7d\xca\xea\xe7\xc9\x73\xe5\x7c\x5a\xed\x0f\x3e\x96\xd1\xdd\xc3\xf6\x07\x16\x86\xed\xa0\xde\x4c\x20\xed\xf8\x58\xb6\x67\x08\x6d\xec\x16\xf0\x17\x2f\xdd\xc2\xeb\x3d\xd9\xa6\x41\xc7\xc2\x43\x39\xf9\x9b\x6f\x43\x41\x22\x41\x1c\xa8\x74\x11\x86\xbc\x1e\xbd\x61\xbb\xa8\xe0\x63\xb6\xa9\xd8\x32\x69\x58\x3a\x74\x04\x1d\x70\x8d\x3d\xe1\x8d\x07\x73\x6a\x87\xa7\x35\x0b\xee\x98\xd5\x2a\x82\x24\x99\x04\x97\x28\xc9\xd6\x09\x61\xda\x69\x6a\x1a\x15\xea\x75\x01\x6e\x55\x1c\xb5\x34\xd1\xc4\x81\x3d\x29\xf1\x8d\x59\x3f\x5f\xa3\xae\x77\x55\xa3\xdb\x02\xb3\xde\xb7\x49\x1e\x09\x9f\x13\x12\x40\xe9\x81\x1b\x04\x01\xbc\x12\x00\x7f\xa9\xd6\x51\x23\x24\xe4\x69\xfe\x8c\x7f\xed\x73\x33\x20\xc5\x1a\x28\x49\x35\xfb\x0f\x77\x33\xa8\x3e\xc2\xfe\xa9\xae\x29\xef\x85\x34\x91\xb3\x71\xd7\x8f\x64\x4e\xd8\x9a\x84\xd4\x98\x64\xe9\xda\x63\x10\x84\x9a\xb0\x0a\xfd\x46\xe1\xe3\x3b\xc7\x65\x32\xa9\x17\x52\x5d\xd9\x62\xac\xc4\xbf\xb5\x0a\xe0\x07\x34\x56\xd6\xe4\x9d\x52\xad\x88\x2f\xd7\x9f\x90\x6d\x42\x11\x82\xe3\x63\x83\x38\x84\xdd\xf7\x11\x6d\xda\xef\xbd\x92\x78\x9f\x06\x7c\x77\x95\xd6\x27\x9e\x96\xb8\x16\xbb\xc8\x45\x7d\x0a\xd8\x68\x35\x05\xea\xac\xf1\xf8\x41\x27\xa1\xd6\x30\x48\xac\xe9\x37\x27\xd8\x13\x51\xf2\x36\x94\x5b\x5b\x11\x98\x04\x4f\x5a\x90\xc9\xe5\x0d\x77\x50\x13\x96\x86\x14\x9d\x05\x82\x76\x31\x78\x01\x97\xa4\x98\xa7\xd3\xa7\x12\x3c\x96\x49\x42\x8a\xae\x92\xb7\x79\xde\xb6\x6d\xff\xca\xee\x33\x85\x30\x07\x81\xe7\xf4\x2d\x97\x43\x12\x5c\x42\x5e\xc5\xf9\xac\xba\x8a\xae\x44\x74\x88\x91\x8a\x99\xea\xe3\x7c\x61\x60\x45\x0d\xd5\x6d\xaf\x08\x3c\xf6\xa6\x4e\x7d\x3e\x0e\x3c\x76\xe0\x53\xbb\x55\x69\x67\x9d\x79\x95\xcc\x0d\xb9\x57\x6c\x7c\x19\x70\x96\x84\x2c\xb6\xbe\x0d\x58\x2d\xd7\x89\xf5\x4f\x03\x42\xde\xd4\xe2\xcc\xdf\x96\xbe\xca\xc4\xf4\xc3\x19\x9b\x3e\x64\x62\xf3\xb3\x07\x52\x1f\x47\x71\x57\x86\x53\x5a\x9c\x3a\x94\x25\x3e\x44\x95\x5e\x07\x29\xef\xd5\xa6\xf7\xe9\xbe\xf7\x69\xd8\x1f\xa4\x17\xef\xd3\xbf\xef\xd0\x2c\xf7\xf4\xdc\xa3\xf0\xee\x44\x4a\xdf\x13\x8e\xfd\x7f\x82\xc2\xf9\x47\xeb\x75\x67\x45\xbd\x61\x4b\xd7\xd3\x99\x48\xff\x54\xde\xce\x6c\x3d\xee\x2f\x88\x1e\xb7\xad\x3b\xfe\x47\xa2\x3b\xde\xad\x28\xeb\xd7\x93\xd5\x0f\x2f\x8e\x56\xb8\xce\xea\x8e\x65\xfe\x67\x3b\x96\x79\x4f\xa4\x75\x8f\x62\x78\x92\x67\x49\x1d\xcb\x0a\xc6\xf0\xa9\xf5\xd5\x34\xca\x11\x6f\x1d\x9a\x33\x13\x67\x06\x1e\x17\x63\xf4\x62\xa6\x7e\x8e\xb3\xfa\x25\xbc\x09\x3f\x06\x37\x24\x52\x7e\x06\x5c\x1b\x1c\xee\xca\x4b\x13\x9e\x48\xad\x23\x3f\x99\x7a\xf5\x16\x04\x4e\x78\x25\x2b\xfb\x2e\xfb\x44\xa2\xad\x5e\xb6\x44\x86\x1c\x28\x72\x55\x4a\x9e\x4c\x54\x4b\x0d\x71\x26\xd5\x71\x55\x55\x11\x2d\x45\xf4\x34\x20\xb4\x01\x75\x5b\x56\x3b\x16\xfb\xe9\xc8\x6d\xc3\x9b\x9b\x4e\x5d\x56\x3e\xa8\x09\x4a\x48\x05\xdf\x60\x57\x6e\x62\x02\x3e\x5e\x3a\x26\x7f\x59\xc3\xd6\xd2\x99\xd1\x3a\x69\x96\x57\xd6\x7c\xfc\x20\x9d\x14\xc4\x56\xf5\xe8\xbe\x60\x18\x9a\x31\x88\xe1\xe9\x37\xa9\xaf\xc6\x32\xf5\xc3\xa7\x90\x4c\x9b\xd1\x84\xf3\x72\x6a\x4f\x89\xd9\xbe\xba\x07\x18\xc9\x82\x6b\x32\x2b\xb6\x1f\x6e\x9c\x39\x88\xdc\x3a\x2c\x39\x97\xdd\x53\xa7\x0a\xb3\x74\x2b\x64\x2f\x6e\xbd\x53\x5f\x8e\xf2\x28\xc5\x8f\x1e\xc3\xe1\x83\xcf\xa3\x14\x07\x0a\xc3\x1d\xac\x2a\x98\x6d\x8f\xe1\xe7\xf0\xde\x3f\x78\x7d\xc3\x71\x38\x1c\xff\x21\xfc\xec\x1e\xba\xd8\xe5\x39\xc7\xc7\x1c\x8a\xf3\x7d\x1c\x40\xab\xb3\x06\x38\x51\xe0\x2a\x0a\x00\x67\x67\xf3\x71\x53\x3e\x2b\xdf\xb1\xea\x51\x52\xb3\x61\x38\xc2\xe4\xfb\x73\xe1\x38\x82\xd7\x33\xa7\x43\xc0\x14\x74\x59\x00\x5e\x57\x44\x7d\x63\xf2\x58\x27\xe1\x35\x05\x40\x4f\x4e\xeb\x4d\x73\x6d\x20\x98\xd8\xed\xc7\xc7\xe2\x87\xf4\x56\x47\x28\xf9\x4f\xdf\x43\x2c\xce\x70\x67\x96\x8e\x2f\x3b\x16\x36\x30\xe1\x82\x70\x6a\x15\x34\x3f\x95\x52\x7f\x63\x6b\x18\x4a\xc7\xf4\x7a\x80\x98\xd0\x5a\x88\x68\xd6\xe7\xf4\xd3\x43\x18\x3c\xc5\x34\xf2\x65\xab\xa1\x5d\xa3\x09\x6f\x0d\xa0\x95\xfd\x50\xfe\x1d\x55\x87\xa5\x7e\x14\xc8\x42\x35\x56\x9b\x79\x70\x50\xe8\x00\xfe\x68\x07\x41\x35\x3f\xf5\xd9\x45\x9c\x7c\x3c\xa9\xca\xf5\x5f\x5f\x7f\xff\x4c\x00\x0d\xf5\x9b\x25\x8c\x4e\x4d\x9a\x14\xa2\xb8\xdb\x22\x36\xbe\xe4\x32\x18\x4a\x8c\x87\x3e\x44\x10\xce\x71\x6a\x89\xa7\x75\x08\x5b\x98\x79\x8b\xf2\xe9\x59\xef\x70\xac\x6b\x1f\x9b\x87\xf0\xb1\x29\x5b\x6c\xfb\x0d\x42\x7d\x2c\x2c\xa6\xe5\xe5\xe5\xe5\x61\xd6\xa1\x2e\x77\xfa\xef\x60\x21\xff\x2d\x2c\xe0\x33\x98\x84\x7d\x9c\x5f\x9f\x0f\xdb\x6e\x9b\xa8\x3f\xde\xd2\x24\xea\x8f\x5e\x4e\x2f\xb9\x30\xbd\xca\x6a\x3e\x2b\x2f\xa5\x3b\x34\x29\x39\x07\x4f\x85\xa2\x80\xdf\x99\xd3\x61\xce\x9a\x10\x35\x62\x9c\x9c\x71\x5e\x5e\xa2\x48\x0e\xec\xff\x93\x3c\x2f\xdf\xfd\x50\x65\xeb\xac\xc9\xde\xb2\x1a\x9f\x0b\x89\x87\x84\x69\xf6\x95\xe5\xfb\x11\x34\x65\x85\x31\x96\xe9\x3e\xd2\xf5\xf9\x78\x73\x73\x64\x35\x70\x5b\x7d\x9f\x59\x36\xbf\xb9\x81\x0d\x78\x80\x64\x49\xb8\xa1\xb4\xc4\x4b\xae\x2e\xa2\x29\x29\xdc\xba\xae\x7c\x40\xfc\x44\x1d\xb4\x7a\xed\xee\xf7\xca\xb0\xb5\xca\xae\x53\x93\xea\x6c\xd8\xb6\xb8\x3e\x42\x2c\x8b\x1f\x62\x85\x88\xac\x17\x68\xc3\x25\xf3\xbe\x78\xc9\x03\xc8\x78\xb9\xd6\x06\x73\xaf\xad\x6c\xb1\x63\x86\x56\x31\x4e\xa0\xb0\x0d\x43\xa2\xa2\xf0\x32\x56\xbf\x8c\x7b\xbb\xd9\xb1\xd8\xfc\x3c\x84\xea\x61\x24\xd5\x0f\xb4\x82\xff\xe0\x3b\xfa\xc1\x01\x81\x9c\x0b\x77\x8f\xb9\xb9\xec\x8d\x66\x60\xeb\x7b\xd4\x98\xab\x07\x0c\x8c\xe2\x2f\x7a\x80\x45\xac\x14\xd3\x78\x5e\xd7\xb4\xb9\x3e\xcc\x70\x1e\x3c\xc4\x7b\x0d\xdb\xa9\xa8\xa2\x43\x14\xd1\x61\x7b\xef\x58\xc7\x73\xb8\x75\x59\x6d\xae\xfe\x47\x49\x29\x7e\x2f\x66\xf1\x1f\x7d\x54\x7e\x27\x1c\x37\x7f\xf7\x21\x36\xf1\x1f\x22\x17\xf9\xbc\x47\x2e\xf2\x45\x8f\x4d\xfd\x1f\x8d\xe0\x54\x9d\x32\x0b\x8f\x4f\x78\xf1\x4a\xe2\x88\x4b\x44\xba\xa8\x51\x6e\x26\x37\x3e\xcf\x9f\x2f\x2e\xc6\x56\x3e\x94\x01\xcd\x6b\x62\xb4\xb9\x47\x74\x02\x93\xe4\x5a\x90\x73\xfc\xb1\x41\xf9\x16\x75\x2c\xeb\x1d\xdb\xf9\x03\xec\xeb\xcb\xc2\xb5\xa9\x2f\x8b\x7d\x06\xda\x5f\x78\xd9\x11\xaf\x38\x89\x23\xaa\x29\x4f\x4a\xd2\xd4\x6f\xcf\xff\xe5\xc5\xc5\x98\x64\xee\xb5\xff\xff\xd2\x6f\xff\x9f\xa4\xe9\x37\x6c\x55\x56\x3d\xa5\x1c\x10\xd2\xd6\xbe\xb2\x3e\x28\xb4\xbf\xff\x5e\x12\x2a\xc7\x54\x7f\xac\xf3\x2c\x50\xd7\xca\xde\x04\x57\x46\x70\xe7\xc9\x12\x81\x4d\xd4\x96\x17\x16\x5d\x22\xf2\xda\x85\x9b\xf7\x6f\x12\xbb\xcf\xbe\x98\x4f\xa5\x12\x27\x47\x7c\x7e\x35\x36\xf2\x6d\x23\x73\x2b\x32\xaa\x2d\x67\x09\xc2\x1e\x83\x69\x3c\x7c\xb4\x99\xf4\x45\x56\xff\x94\x55\xcd\x36\xc9\x27\xa0\x39\xec\x98\x4d\xfb\xda\x0a\x50\x5c\x44\xa0\xcc\x4f\x69\x5b\xdd\x51\xf6\x82\x89\x69\x05\xad\x5f\x69\x71\x2d\x02\x46\xfd\x7f\xec\xfd\x6b\x77\xdb\x38\xb2\x28\x0c\x7f\xdf\xbf\x42\xe6\xda\xcb\x2d\x6e\x33\x8a\xed\x4c\xcf\xc5\x1a\x76\xde\x74\xec\xf4\xe4\xe4\xba\x63\xf7\xf4\xcc\x51\x6b\x74\x68\x09\xb6\x99\xc8\xa4\x86\xa4\xe2\x78\x64\xbe\xbf\xfd\x59\xa8\x2a\x00\x85\x0b\x25\x39\x49\x77\xcf\x3e\xeb\x7c\xb1\x45\xa0\x70\x2b\x14\x80\x42\xa1\x2e\xa4\x3a\xab\x26\xb9\xee\x07\x43\xff\xa8\x1b\xab\x65\x5c\x4d\x08\x04\x53\x1c\xda\x45\xcc\xdd\x36\x89\x74\xb3\xc0\x55\x9e\x96\xcb\x6a\x2a\xa2\x78\x50\x16\xe2\x27\x08\x3b\x4c\xc5\x25\x22\x0b\xc9\x5c\xb1\xaa\xdb\x78\x68\xda\x9e\x64\xf6\x0e\x63\x75\x82\xc5\x66\xdf\x62\x40\x1b\x7a\xbc\x5d\x3f\xe1\x92\xdd\xea\x37\x6e\xcb\xf4\xb9\x4d\x26\x59\x5d\x8b\xaa\x81\x1d\xee\x65\xfe\x81\xc5\x43\xa2\x76\xe2\x55\x9b\x74\x74\x95\xc1\x66\xf3\xf9\x79\x36\xfd\xa0\x9e\x40\xed\x95\xe8\x4e\x0a\xf8\x93\x8c\x26\xf4\xfd\x53\x3e\x9f\x63\x18\xa7\x28\x1e\x3a\x2f\xa8\x6b\x0b\xea\xf0\x4f\x51\x3c\x54\x1d\x30\xf7\xf9\x78\xe8\x6d\x28\xf7\xe8\x07\xdb\xf2\xb6\xee\x44\x6b\x0b\x49\x8f\xec\x0d\x23\xb1\x45\x33\x6e\xae\x63\xbb\x69\x50\x0b\x9a\x18\xa8\x94\x85\xe6\x6d\x7c\x02\x59\x26\x77\xf1\xc0\x76\x00\x4a\xa1\x3d\x84\x3a\xcd\x22\x21\x69\xd9\x0e\x0b\x2c\xc2\x6c\x09\x0d\x20\xb7\x76\x8d\xd0\xc6\x2a\x95\x27\x5e\x1f\xef\x60\xb6\x16\x34\x8a\x56\xe6\x65\x21\x48\x79\xa8\xee\xe3\x12\x09\xd4\x95\x04\x2a\xd0\x21\x4b\x54\x84\xe6\x36\xd7\xa1\x99\xc9\xbd\x6f\xd1\x0c\xf2\x9a\x6f\x82\xb5\x35\x26\xbe\xf6\x20\x3a\x95\x8a\x54\x91\x8b\x9b\x36\x99\xf9\x2e\x01\xf2\x8b\xfe\x8e\xb5\x36\x2c\x7b\x20\x67\x4d\x33\x04\x7b\xcb\x1d\xe3\x3a\xd9\x89\xf1\xca\x49\x60\xbe\x03\xd8\xba\xb4\xdc\x08\x4c\xb2\xd9\x4c\xd3\xc8\xd3\x2b\x31\xfd\xd0\x8f\x57\xea\xc4\x19\x54\xa2\x5c\x88\xa2\xbf\x9a\x40\x4c\x3e\x0d\x77\x14\x8e\xc8\xca\xc6\xd9\xca\xbd\x80\x38\x91\xe7\xc5\xb1\xbc\xcc\x19\x45\x8b\x8b\x78\x75\xd1\x27\x33\x79\xb0\xbf\x14\x33\xf0\x28\xe4\xb2\x8a\x3c\xcf\xde\x30\x3e\x85\xa2\x7d\xd4\x62\x7e\x91\xba\x77\x7c\xb7\xce\xad\xb5\x49\xb4\xf7\x0f\xe6\xf4\x19\x13\x75\xc0\x1a\x0a\x93\xa7\x34\xfe\x49\x89\xdb\xf2\x61\xc2\x9f\xa0\xb8\x3f\x91\xbc\xb8\xfc\x6b\xf8\x6d\x09\xa0\xcc\x00\x82\x0a\x2d\x0e\x8c\xab\x72\x6f\xfa\xa6\x56\x22\x7c\xe0\x79\xac\xac\x42\x68\x84\xd9\x6c\xe6\x9d\x0d\x26\x0b\x36\x6c\x2f\xc3\x1e\x03\xc4\x09\xbc\x91\xdb\xda\x5c\x64\xd5\x3b\xb2\xe7\xb4\x0e\xcc\xf9\x05\xa3\xc4\xb8\x1d\xb2\x89\x35\x9e\xab\xd3\x95\xb7\x45\x7a\xce\x34\x70\xe3\x76\x7b\xd5\x26\xee\x36\xe9\x15\xdc\x0a\x11\xe1\xd1\x2a\x7b\xd4\xa7\xd6\xa8\x59\xab\x50\x8c\x75\xfa\x85\x95\xd1\xdd\xa7\xee\x8a\xad\x0e\xf2\x72\x4a\xb6\xec\x49\xf4\x1d\x8a\x49\x02\x14\x92\x70\x6a\x8d\xdb\xc4\x1b\x70\x70\x9f\xd2\xe7\x33\x6d\x53\x3c\xd1\xc3\x19\x6e\x56\xab\x1b\x83\x8b\x28\x8c\xa3\x28\x99\x69\xb4\x44\x41\x6c\x45\x6d\xdc\x26\xa1\xe9\xbe\x7f\x2f\x03\xb5\x7c\xed\x8e\x06\x56\xd1\x91\x15\x64\x3f\xc4\x23\x6c\x3b\x67\x09\x1f\x8d\xe9\x9a\xcf\x3e\x7c\x56\x85\x26\xea\xa7\xc2\xf7\xba\x91\x74\x32\x5e\x5b\x13\x60\x60\x1c\x01\x76\xec\xbe\xd5\xd9\xa3\x90\xab\x6a\x2b\x3a\xe1\xdc\x0a\x07\x50\x2b\xf8\x25\xaa\xdd\x5d\x2a\xdb\xbb\x82\x99\x4c\x6b\xa9\x39\x5f\x57\xa1\xc8\x05\xda\x13\x29\x3f\x18\x86\xcc\x07\x01\x1c\x70\x01\x89\xb9\xd5\x09\x23\x31\xb7\x0e\xa5\xa2\x19\xa0\xaf\x83\x27\x4d\x3f\x37\x0f\x56\x36\x9f\x53\x06\x6c\x96\xc6\xe6\x50\x5b\x6b\xfe\x27\xf1\x19\xda\xa7\xdc\x6b\xa6\x3e\x7d\x87\xdd\x46\xfe\xe8\x33\xde\x9e\x17\x7e\x3a\x88\x19\x9d\x16\xce\x09\xa3\x7a\xd0\x87\xb0\xee\x21\xbe\x8a\x9d\x0e\x81\xe3\x4c\xb9\x5e\xd2\xd3\xbf\xee\x30\xc1\x6b\x93\xea\x10\xea\xf8\xb2\xd8\xa1\xf2\xfe\x16\xd4\x60\x21\xb3\x0f\xcb\x22\x07\x64\xd2\x5b\xdb\x37\xda\x76\x88\x41\x3b\x46\xc7\x5c\xf1\x70\x3c\x74\x0d\x7c\x58\x7d\x7b\x51\x2f\x2f\xc8\x70\x71\x68\x6b\x2f\x63\x04\x3e\x78\xbc\x68\x43\xd4\xc1\x6d\xdf\xf4\x63\x73\x60\x10\x07\x21\x6d\x1c\xaa\x37\x68\xb8\x86\xba\xb7\xbc\x45\x73\xbf\x54\xc2\x38\xa8\xc9\xb3\xa0\xf9\x0a\xb6\x48\xc6\xe3\xc7\xee\xae\xed\xf9\xe2\x12\x39\x92\x77\xe5\x4d\xed\x66\x39\x6a\x1e\xf2\x96\xcc\xf8\x17\xdf\x5e\x63\xa0\x69\x35\x64\xad\x64\x1e\x02\x48\x57\xbb\xf9\x94\x44\x28\x66\x65\x5c\xaa\x62\xc0\x23\x66\xb4\xc4\x1f\x4b\xb4\x48\x48\xfd\xb0\x9e\x52\x38\xdf\xcc\x7e\xdb\x5e\x88\x35\x19\xa7\xe6\xe7\x36\xcf\x2c\xf3\x72\x6a\x5e\x59\x3a\x9f\x4d\xb6\x91\xd3\xaf\x93\x4f\xcf\xcb\xa9\x17\x41\x7d\x5e\x4e\x87\x1d\xaf\xe4\xec\xf5\x73\x4a\x8b\xb3\x6e\x8c\xc7\x88\x79\x39\x85\xef\x76\x9b\x01\x2e\xb2\xaa\xc9\xb3\xf9\x16\xef\xe7\xae\xd7\xe2\xed\xf5\x35\xd9\x83\xcf\xaf\x1d\x9b\x7e\xbb\x47\x72\xdf\x71\x2c\xbc\x91\x43\xf2\x06\x11\xf1\xa3\xa0\x84\xf8\xdc\x75\xb3\xaa\xbd\xac\x6e\x9a\x52\x9a\x0f\x1e\xc1\xe9\x97\x72\xfa\xb0\xad\xba\x87\x22\x11\xbe\xc3\xa8\x98\x06\xda\xcd\x3a\xb3\xb0\xf4\x2e\xaf\x17\xc5\x1b\x3e\x04\xaa\x0f\x0d\x71\x83\x16\xff\x14\x40\xeb\x8d\xb1\xdc\x93\x7b\xcc\x5b\x2c\xc7\x9f\xae\x55\x3d\x0c\xb8\xed\xf6\xd9\xc0\xb1\x89\x4e\x1b\x94\x95\x2e\xed\x5d\xa1\x56\xac\x29\xb0\x8e\xc6\xcd\x2e\x4e\x99\xc7\x95\x8d\x55\x63\x68\x9e\xec\x5a\x48\xa8\x3a\x05\x7f\x2a\x64\xcc\xf2\x30\x8a\x93\x79\x56\x37\x32\x27\xd5\x20\x23\xfd\x8b\x05\x60\x5b\x9b\x9b\x46\x93\x68\x4f\x55\xb4\x46\xe3\x33\x59\xca\xde\xd6\x72\x0f\xc0\x93\xda\xd4\x85\x06\x55\xb2\x43\x9a\xd1\x03\xb9\x94\xfa\x7a\x56\x02\xd5\xf4\x9d\x1a\xe2\x64\xa6\xf5\xd7\x75\x24\xe0\x1d\x55\x68\x77\x37\x58\x07\x7a\x83\xf1\x5c\xdb\xdf\xdd\xf9\x75\x75\x71\x75\x8e\x33\xbe\x6d\x36\xc4\xfa\x2a\xab\xc4\xcc\xec\x87\x9f\xa7\xf8\xb3\x6e\x4f\x5a\xf3\xde\xe4\x6d\x26\x9b\xb6\x0b\x1d\x92\xb3\xb9\xaa\xfb\x21\x83\x32\xb5\xea\xfd\x48\x5f\x55\x59\xb2\x64\xf8\xf2\xf9\x79\x27\xa2\xa9\xb3\xb7\x98\x90\x1f\xda\xf4\xc4\x37\x0b\x03\xe5\x12\xa6\x99\x62\x31\xdc\x2c\x8c\x6b\xb3\xd5\xf4\xa8\x89\xfe\x1c\xdd\x87\xcf\x39\x7c\x7e\x6d\xe7\xea\x9b\x1e\x92\x37\x11\x84\x76\x93\x18\x3a\x40\xb6\xdd\xf1\x35\x92\x5d\xf5\x3e\xda\x72\xc3\xc6\x90\x5b\xcd\x1f\x99\xe6\x84\xd6\x97\xaf\xa7\xb2\x9e\x97\xf8\x05\xf5\xf2\x36\xce\x7a\xc7\x84\x06\xe6\x7f\x1b\xcd\x00\xdb\x62\xca\xe5\x43\x6c\x0b\xaa\xcf\x61\x47\x1c\xed\xb9\x4d\x34\xb4\xb4\x22\xe4\x78\xee\x86\xb6\xd3\x9f\x33\x8a\xe9\xeb\x3c\x9f\x21\x16\x8c\xd3\x82\x65\x93\x4c\x9b\x4f\xfa\x3a\x14\xba\x4c\x7e\x77\x68\x08\xd9\x76\xba\x80\x52\x85\x60\xfc\xd1\xa9\xef\x6b\x4d\x5d\x9e\x9c\x48\xa1\xc3\x72\xd9\xa4\x56\xe8\x51\x79\x69\xe9\x8a\x3c\xea\x6a\x5e\xdb\x1d\x52\xcb\xa7\x5c\x36\xad\x62\xdc\xee\xe9\xa4\x49\x62\x23\x28\x07\xd5\x5c\x10\x9b\x9e\xad\x56\x20\x2a\x17\xad\xd9\x3d\x9d\x6b\x0e\x39\x97\xfc\x1a\x11\x54\x40\x1b\x6b\xab\x30\x23\x1b\xe2\x9b\x6c\xde\x05\xbe\xfc\xc2\xf6\x6f\xa7\x58\xf5\x75\x8e\xa2\x37\x30\x9d\xbf\x54\x8c\x0f\x13\x3e\xd3\x53\x59\x32\x59\x5d\xa1\x26\x02\x1a\x4b\x9e\xda\xc8\x1f\x78\x60\x8d\xce\x08\x18\x7f\x0c\x05\xc0\xe8\xd6\x52\xfe\xd3\x3d\xb5\x94\xff\x14\xdc\x65\x01\xbd\x14\x23\x61\x93\x5e\xd3\xcb\x37\x3f\x9d\xbc\x7b\xfa\xe4\xf4\x64\xf2\x64\xf2\xbf\xd3\x87\xff\x18\x65\x0f\xfe\x35\x7e\x98\xfc\xf5\xf9\xc9\x4f\x93\xb7\xef\x4e\x9e\x3d\xff\x5b\xfa\xf0\x1f\x92\xf0\x7f\x1e\x3c\x74\xa2\xf0\x2a\xb7\x13\x72\x7f\x7c\x1a\x72\xa5\xe3\x9b\x2a\xa9\xe8\xea\x7e\xb8\xf5\xf5\x76\x31\x12\x04\xed\x4f\xac\x00\xa2\x1f\xc9\x59\x9b\x36\x57\x09\xc4\x4d\x25\x13\x1a\x12\x8b\x29\xd0\xbd\x88\xba\x1f\x8d\xd1\x28\x79\x68\x35\xc3\xb3\xa3\xd3\xb3\x77\xcf\x5f\xff\x10\xf9\xb6\x30\x3c\xc5\xf4\x10\x2d\x64\x42\xd6\x3c\x51\x3e\x53\xd5\xc6\x64\xdc\x91\xcf\x02\x76\x22\x0a\x99\x04\x41\x65\x8c\xa1\xb5\x6a\x4f\x96\x0e\xf5\xce\x94\x71\x7b\x68\x72\x30\x18\x2c\xb3\x5c\x64\x6b\xd2\xc4\x51\xe8\x32\xfb\x30\x32\xe0\x0d\x13\x1e\xb6\xfd\x03\x15\xaa\x3a\xc7\x20\xb8\xe8\x9c\x42\x60\xb4\x3a\xed\xbc\x26\x99\x2d\x17\xe8\x36\xcb\xd8\xa3\xcd\xe2\x95\x29\x39\x10\xf8\xfe\xfd\x7c\x96\x52\xee\x50\x16\x01\xb9\xb1\x2a\xd1\x64\x97\x56\x11\x32\xe4\x49\x55\xa6\x55\x82\xba\x11\xaf\x54\x7f\xe8\x3f\xf3\xe4\x30\x64\x75\x69\x07\x11\x1a\xd0\x6f\x9f\x7b\x84\xb0\x3a\xa2\x0b\x6b\xf7\x43\x1e\x3c\x6f\x36\x5c\x31\x2f\x0f\x2b\x65\x6d\x03\xa9\xb1\xd6\x8c\xd7\x02\x8e\xc6\xc1\x61\xea\xfc\x75\x99\x92\x63\x98\x66\x4d\x47\x27\xd9\x90\x02\x63\xca\x5c\x7f\x36\x16\xc6\xbc\x5c\x70\x7b\x60\xd5\x32\x5b\x2e\x70\x55\x19\x47\x77\x68\xe1\xd5\xc2\x4a\x8a\x9d\x25\x62\x7d\x02\x31\xb0\xf5\xad\xfd\x40\x71\x20\x3e\x3d\xad\x72\x8f\xd4\xbd\x71\xed\xac\xb1\xe8\x9b\xaa\x60\x87\x5d\x3b\x16\x7a\xad\x29\x2f\xd8\x76\xc3\x7c\xe8\xd0\x4b\x02\x57\x96\x58\xc2\x99\x41\xbd\x03\x2d\x0b\x53\xd2\x84\x6b\x20\x17\x8b\xa6\x4e\x78\x18\x80\x1d\x6b\xdd\xbc\xa2\x0f\x76\x10\x28\xca\x21\xae\x07\x05\x15\xe3\xe5\x7c\xbe\x96\x52\x46\xe7\x63\xe6\x58\x19\xc0\xf9\xf0\xb6\x74\x83\x22\xcb\x91\x53\xc4\xf5\xb8\x70\x3d\xa4\x38\x08\xd9\xd0\x53\x8c\x3e\x1a\xf2\x0e\x53\xb7\xad\xf6\x9b\x6b\x53\x1d\x6c\x7f\xa6\x5e\xa5\xb7\x10\xe8\x9c\xd9\x4c\x4d\xd7\x9c\xf8\xd8\x8e\xcd\x0c\x68\xa9\xd9\xe3\x08\x39\x75\x52\xc2\xc0\x28\x18\x64\x88\x7c\x33\x9a\x00\x13\x01\xaf\x95\xca\xa1\xd1\x72\x3e\xf7\x9c\xf1\xc0\x6b\xd3\xdd\x1d\x7b\xdd\xa2\xd6\x98\xb7\x72\x35\x21\x11\x7f\x94\x09\x01\xa8\xce\xb4\x74\x11\x33\x38\xe1\x07\xa2\xff\xf2\xb7\x29\x6a\x4a\x21\x6e\x80\x49\xdb\xc8\xb0\x40\x2c\x13\x22\x3f\xdb\x7d\x3d\x36\x84\xba\x21\x5d\x92\x67\x3a\x84\x77\x77\x2d\x76\x8a\x96\xb3\xac\x63\x77\x77\x87\xb1\x54\x2c\x23\x5e\x61\xcd\xdc\x29\x28\xf6\x79\x0d\x63\xb0\x70\xfd\xae\x50\x77\x55\x49\xbe\x92\xa8\x7a\xca\x82\x95\x8e\x49\xb1\x6e\x28\x70\x1f\xee\xb0\xcb\xa6\x92\xad\xdd\x51\xe8\xba\x6b\x3d\x4a\x61\x9e\xba\xec\x46\xb5\xf4\xdb\x0c\x2b\xe6\x61\x6a\xec\x8e\x0d\x59\xcd\x56\xc8\xac\x54\xf3\x14\xd4\x19\xb0\x07\x56\xa3\x45\x2d\xa7\xc7\xd6\x57\x3f\x3e\x52\x44\x41\x86\xcc\xa1\xba\xd3\x8b\x02\x1c\x8b\xf3\x5a\x07\xdc\x37\x40\x57\x0e\x11\xd9\xee\xee\x0e\xaf\xd6\x2a\x19\xce\xd0\x6c\x02\xcf\xb6\x0c\x79\x55\x94\x2a\x46\x83\x46\x58\x66\x97\x5b\x2b\x57\x6b\x19\x8a\xad\x20\x02\x34\x24\x2b\xa0\x88\xbc\xc9\xf3\x07\x4c\xc6\x31\x32\xdf\x16\xfa\x62\xf0\xd1\xf8\x20\xff\x9a\x8e\x26\xd6\x48\x6e\x82\x94\xaa\xee\x38\x41\xa7\xe0\x41\x49\x23\xdc\xed\x87\xcc\x55\x18\x59\x3e\x23\x50\xc0\xaf\x83\xf5\x30\x6c\x86\x9d\x9a\x9f\xdb\xc8\x40\x6e\x73\x31\x9f\x6d\xf1\xe6\xe9\x8a\x39\x7e\x13\x09\xb2\x7b\x17\x3f\xa4\xbb\xf8\x26\x31\x1e\x0c\x32\x64\xf9\xd8\xe1\xe7\xc3\x44\x00\xd9\xdd\xdd\x31\x4a\xca\xf3\xec\xb6\x5c\x36\xf2\xea\x94\x5f\xdc\x23\x3e\x08\x1a\x6f\xca\x3c\x53\x15\x3b\x81\xa2\xb8\x6d\xb1\x10\x74\xd3\x09\x6d\xb0\x6e\x0e\xe7\x65\x06\xea\x35\x81\x07\x1a\xed\xe1\x7f\x82\xd4\xb9\x95\xa8\x89\x2c\xfc\xaa\xaa\xec\x34\x90\x9c\x67\xff\xba\x9d\xc8\x76\x7f\x89\x17\x86\xaf\x69\x13\xfe\xd4\x09\x95\xb0\x81\xb2\x02\x32\x98\x80\x2c\x08\x88\xf4\x44\xe2\x67\x93\x8d\x78\x59\xbc\x2c\x33\xff\xe1\x1b\x93\x37\x0a\xcf\x9d\x40\xa3\x2c\x0a\x40\xd9\xd4\x4d\x95\x2d\xfa\xd3\xe6\x93\x56\xbf\x12\x72\xe3\xa9\xd3\x6f\xea\x69\x95\x2f\x9a\x11\xe8\xd4\x46\x92\xfa\x1e\x7e\x62\xb3\x13\x8d\x93\x5e\x08\xa2\xca\x6e\x2c\xa8\x6f\x86\x88\x8b\xbe\xae\x39\x91\x8d\x81\xe2\x48\xdf\xd5\xfd\x82\xfa\xe8\xb6\x43\x76\x11\xca\x2c\x2c\x9f\x8b\x14\xf3\xe1\xea\xd4\x8f\x64\xab\x10\x0c\xa3\xa3\xe5\xc7\xc4\xbe\x2e\xaa\xf2\xd3\x6d\x9f\xbd\x0f\x50\x6d\x89\x49\x8a\x8f\x2c\x58\xf7\x41\x41\x15\x70\xd2\xcd\x4b\x2d\xec\xc2\x56\xe7\xc0\x61\x9f\xca\x7e\x50\x64\xd7\x22\x8a\xef\xee\x2c\x90\x7c\x26\x93\xa2\x6c\xb1\x98\xe7\xd3\xac\x01\x6f\x61\xfa\xb4\xa6\x26\xfb\x54\xe2\xaa\xb9\x9e\xf7\x63\xe0\x8c\x50\xc7\xe7\xec\xe4\xd5\xdb\x97\x4f\xce\x4e\x4e\x47\xbc\x0f\xe3\x1d\x7e\x29\x5e\x35\x57\x55\x79\x03\xce\x3b\x0d\xa1\xf5\xbf\x51\x2f\xbb\xf0\x24\x3e\xeb\x45\xdf\xec\xf1\x2a\xf6\xbe\x89\x7a\xd9\xbc\x12\xd9\xec\x96\xde\xe1\x07\xdf\xc4\xed\xda\x46\x4d\x68\x74\xea\x2d\x2a\xc4\x81\x8a\xb6\xb1\x0f\x30\xb4\x16\xaf\xcc\x6f\x9a\xea\x59\x39\x05\xc9\x7f\x6c\xbd\xec\xa3\x6f\x3f\x67\xe5\x99\x07\x07\xbc\x74\xba\xa1\x40\xc2\x11\x4b\x12\xa7\x96\xb8\xc5\xa5\xd3\x27\x9d\xa9\x27\x7c\x16\x34\x55\xb2\xd4\x78\xc5\x3e\x06\x79\x91\x37\x79\x86\x21\xf3\x56\x12\x8f\x47\xd1\xac\xbc\x56\x98\xad\xa3\xc4\x00\x1c\x99\x91\xb7\xf1\x70\x43\x25\x1d\x63\x8e\x92\xec\xa2\x11\xd5\x9a\x46\x3a\x0a\xb6\xb1\xcd\xed\xf0\xd3\x8c\x77\xab\xf3\x48\x50\x82\xfd\x5f\x5c\x51\x8b\x89\x78\xfd\xe8\xd1\x07\x1d\xfb\x97\x5c\x16\xa7\xd9\x85\xb0\x94\xb4\x24\xbd\x07\x63\xe8\xa2\xea\x96\xdb\xd0\x40\x55\x92\xaa\x1f\x66\x95\x9d\xfc\xed\xec\xe4\xf5\xf1\xe4\xed\xbb\x37\x67\x6f\xce\xfe\xfe\xf6\xe4\x54\x5e\xa4\xaa\xa5\xb8\xbb\xeb\xc8\x1f\x60\xc5\xf1\x0a\xff\x1b\xa3\x04\xd3\x4a\x40\x0b\x5f\x8d\x02\x6d\xdf\xba\x3c\xb8\x28\xb0\x75\xd3\xb5\x36\x18\xfc\x36\xef\xc2\x9d\xfc\x9a\x7d\x8a\x7f\xd1\x53\x95\xa8\x2e\xdd\xda\x3b\x9c\x03\xac\xf5\x3d\x68\x3d\x5e\xf1\x8c\xba\xc1\xe5\xb1\xbd\x37\x80\xdf\xd0\x0f\xcd\x6f\xe0\x24\xe0\x2b\x3e\xc1\x6f\x17\xbb\x3a\xcc\x8f\x07\xf8\x21\xdb\x51\x80\x31\x86\xae\xc4\x3f\x97\x79\x25\x5e\x95\xb3\xe5\x5c\xf4\x23\x3d\x81\x64\x27\xb8\x3d\x1b\xf5\xb9\xce\x00\x80\x66\x37\xbd\xa8\xb9\xc6\xf2\x81\x00\xeb\xdb\xb9\x4b\x0c\x39\x49\x34\x4f\x73\x60\xa8\x78\x0a\x34\xee\xc7\xce\x67\x99\x38\xa8\x0e\xb8\xda\x80\xc8\x45\x40\xd5\xb1\xd4\x75\xf6\xe5\x07\x61\xfb\xf2\x35\xda\x57\x87\xde\xb3\x9e\xde\xc3\xc3\x61\x06\xb9\xd3\x67\x13\xdc\xd4\x0a\x62\x4a\xda\xf7\x8e\x15\x9d\x76\xde\xac\x7e\x60\xb2\xae\x22\xd5\xbf\x6c\x03\x3b\x90\xbd\xf0\x0f\xcc\x46\xfa\xd3\x63\x55\xb6\x5c\x80\xa8\x34\x5a\x54\x82\xec\xd4\x30\x79\xb9\x98\x65\x8d\x78\x3e\x43\x51\x3e\xda\x67\xb2\x48\x87\x26\x15\xc3\xfd\xa1\xa3\xe3\x10\x02\xb8\x35\x9b\x63\xd3\x9e\xd7\x68\x6c\x2e\x7f\x87\x0d\x43\xad\xae\x60\xac\xc4\x69\x56\x4c\xc5\xdc\xc9\x09\xf4\xb9\xd5\xc1\xa5\x4d\xb7\x55\x4c\x69\x26\xe3\x24\x03\x09\x90\xb1\xe0\xa1\xc5\x90\x65\x46\x49\x58\xd2\x36\x10\x51\xab\x75\x2a\x2c\x33\x37\x95\x68\x4c\xdc\x5e\x30\xd3\x4b\x70\x69\xee\x5a\x89\x18\x09\xb9\xed\x1f\xdc\xa2\x01\x8a\x1a\x60\x51\x8d\x63\xbf\x40\xa1\x13\x54\x09\x32\x78\xb7\x68\xc2\xa5\x92\x61\x30\xdc\x82\xed\x78\x1a\x15\xf1\x78\xa9\x96\xe9\xe3\x41\x40\x44\x32\x2f\x3a\x2b\xbf\x07\x5a\x30\x03\x44\xda\xa0\x0b\x11\xee\xad\x51\x34\xc4\x5f\x7b\xa9\x41\xb4\x44\x6f\xd5\x9c\x65\x97\xfd\xd8\xce\x55\x76\x03\xa1\x32\xa2\x98\x61\x09\x1e\x70\x12\xe1\x82\x16\x4f\xf0\xb8\x09\xeb\x25\xb5\xd7\x91\xd2\xae\x92\x98\x70\x8c\xaa\xd0\x07\x3d\x5c\x56\x08\x20\x05\xa2\xb8\xbb\xd3\x9f\xec\x92\x42\x69\x51\xa4\xe5\xf1\x3b\x54\xac\x97\x17\x75\x23\x09\xb7\xbc\x60\x07\x4d\xac\x8b\xe8\x68\x04\x18\x1a\x22\xbf\xe8\x63\x4f\x35\xc0\xe6\x18\x0b\xaa\xac\x37\x35\x3e\x26\xea\x9b\xbc\x99\x62\x1c\x2b\x24\xec\x78\x35\xcd\x6a\xc1\xf6\x80\x23\xf8\x36\xd4\x7e\x74\x5e\x89\xec\xc3\x10\x52\xf3\x02\xa7\x39\x3a\x0a\x5e\xca\xa2\xd3\xf2\x5a\x34\x57\x79\x71\xd9\xbb\x2d\x97\xbd\x59\x3e\xeb\x35\x55\x2e\x66\xbd\xa6\xec\x55\x62\x31\xcf\xa6\xa2\x97\x15\xbd\xd5\x4a\xe8\xbe\xb7\x6d\xef\x1c\xcc\xe7\x7a\x79\xd3\xbb\xc9\x6a\x89\x2d\x51\x35\x62\xd6\xcb\x8b\xa6\xec\x35\x57\xa2\x77\xfc\xe6\xd5\x00\xbc\x0d\xd4\x22\xba\xca\x6a\x65\x5f\x7d\x44\x3d\x3a\x7e\xf3\x2a\x3a\xb2\xf7\x80\x0d\x26\x57\x11\x02\x46\xf1\x10\x86\x66\x19\x83\x27\x98\xe7\x19\x53\x05\xf6\x44\x24\x45\xb8\xd3\x5a\x04\x1b\xb7\x49\x53\x65\x45\x9d\xcb\xf2\x67\xa5\xa9\x8a\xf0\xcd\x36\x15\xf8\xdb\xb6\x43\x3a\xdf\xd8\xb1\xd7\x37\xe7\x59\x3c\x84\x73\x1b\x8b\xd7\x83\x09\x9d\xc5\xc9\xca\x0d\x00\x7d\xf4\xa2\x75\x60\x01\x3b\x01\x40\xcb\xd1\x81\x91\xdb\x79\xc4\xbf\x93\x92\xe0\x6e\x9e\xd5\xcd\x6b\x3b\x57\xfb\xae\x37\xc6\x68\x2d\x32\x32\xa1\xf8\xe5\xa9\x7d\xd2\xea\x37\x60\xb9\x38\x2a\xb8\x34\x83\x6f\x4f\x0c\xac\x68\xca\x47\xc9\x04\x87\x72\x84\xff\x02\x51\xcd\xf1\xd1\xcd\x09\x86\x8e\xf1\x22\xdd\x68\xe3\x00\xea\xc6\x34\x87\x44\x37\xaa\xb9\x7e\xc9\x33\xbf\x20\x9c\x39\x7c\x6d\xb3\xa9\x1b\x5f\x05\xf2\x33\x8a\xcd\xde\x6e\xe7\xc8\xa4\x28\x76\x83\xb1\x33\xa0\x40\x98\xf6\x28\xfe\x2a\x47\x82\x69\xc3\x71\x33\xf1\x85\x27\xc3\xfd\x82\xf3\x9b\x6d\xca\xa7\x4e\x65\xad\x8e\xef\x22\xb0\x1a\x06\x2e\x34\x9d\xdc\xde\xa6\xcf\xcf\x1f\xda\xfa\x99\xaf\x1f\xb5\xff\x13\xeb\x6d\x51\x15\x83\xf3\xa8\x4d\x4e\xa4\x13\x43\x8e\xcd\xa7\x9d\x13\xc5\xea\x69\xd9\x86\xe1\x24\x49\xed\x3b\xe4\xc7\x7b\x6a\xe7\x44\xb1\x4b\xbf\x0c\xd6\xc9\xa1\xba\xd7\x9f\x6e\xc8\x14\x05\x96\x37\x45\x5f\x96\x54\x65\x61\xc1\xc4\x4f\xae\x3d\xfa\x89\xdc\xce\xe1\x53\xbe\x8d\x16\x5e\x50\x3d\x08\x44\x0a\x53\x26\x4e\x87\x5b\x53\xb0\x94\x3a\xf8\x54\xa1\xff\x29\x07\x35\x67\x5b\x28\x4d\x05\x92\x6a\xcd\xc3\xbf\x3d\xf5\x61\x84\xbb\x40\x9f\x89\xf0\x75\xc8\x75\x21\x4c\xe3\x9e\x10\x28\x8a\xc2\x3e\x8f\x68\x31\xba\x8f\x96\xe1\x83\x22\x90\x68\x95\x0a\xdd\x34\xd2\x50\xe2\x66\x11\x93\x2b\x43\xb9\xf7\x7b\xdf\x7d\x9c\x5e\x06\xd4\x94\x6d\x7d\x67\x5f\x88\xf4\x5b\x88\x6e\x7e\xb1\xe7\xc8\x90\x74\x22\x20\xdc\x78\x5a\x56\xc2\xbb\xac\xff\x0e\x1c\x0b\x62\x46\x58\xb8\xf0\x3b\x2e\x5c\xf0\x3d\x13\x7e\x3b\x99\x0c\x8c\x3f\x42\x57\xc6\x11\x10\x83\x6c\x25\xb6\xd1\xd7\xff\xa2\x6c\xf2\x8b\xdb\x57\xcb\x06\x64\xe2\x2f\xf3\xba\x11\x05\xd8\xcf\xc3\xbd\xb5\x94\x3c\x28\x86\xf3\xef\x00\x24\x37\xdf\xc7\x6f\x5e\xbd\xca\x8a\xec\x52\x54\x29\xf9\x96\x70\x59\x35\xe0\xb9\x90\xf3\x54\xef\x13\xc3\xce\xc6\xe5\x45\x15\xc6\xe8\x78\xb6\x92\x3c\xab\x55\x15\x81\xf5\x21\x63\x5d\x7d\x28\xc0\xdf\x50\x1b\x00\x6d\xae\x4b\x02\x6c\xaa\x0a\xb8\xeb\x8d\x35\xd1\xdd\xc2\xc3\x55\x56\xf5\x70\x0a\x4d\x8d\x43\xb4\x24\x64\xfc\x79\x9f\xdd\x7d\x62\xcb\x5b\x43\x87\xa7\x06\x32\xd6\xb4\xf8\xd9\xbe\x61\xa2\xf3\xfa\x18\xef\x4e\x20\x41\x57\x9e\x35\xd0\x37\x97\xf6\x08\x24\x50\xb5\xa3\x12\x45\x9f\x1c\x0d\xa2\x28\x85\x58\x6a\x7e\xa5\x96\x00\x50\x6f\xf1\xb1\xfc\x20\xde\x89\xe9\xb2\xaa\xf3\x8f\x62\x7e\xdb\x0f\x91\x86\x2f\x99\xe8\x47\xa4\x91\x1b\xc5\x6d\xac\x86\x9f\x5f\x5e\x8a\x8a\xd7\x05\x2e\x8b\x6c\x07\x56\xf1\x50\xd1\x19\x60\xf7\xa7\xbc\xb9\xa2\x8d\x7c\x80\x57\xed\x7e\x1c\x87\xd0\x89\x57\xb2\xcf\xea\xb5\x16\x9d\x6c\xd9\x69\xcf\xe9\xd6\x3a\x32\x89\x5b\x74\x07\xb7\x66\x49\x01\xb9\x45\x6b\x6b\x69\x5d\x17\x97\xb0\xab\x68\xd5\x6c\x47\xcc\xa5\x62\x16\x44\xf2\xa4\xb6\x6f\x3a\x66\x1f\x49\x5c\x3f\x95\xfc\xe8\x8c\x3b\x24\x78\x6d\x82\xf7\xe6\x77\x1d\x7c\x2f\x67\x31\x82\xd2\x16\x4b\x78\xf2\x66\x21\x8a\xbc\xb8\x84\x0c\x5a\xe5\x5b\x54\xfc\x74\x5e\xd6\xaa\xd4\xb0\xa3\x41\x25\xaa\x89\x5b\x72\xb7\x47\x53\xe5\xde\x9a\x68\x01\xb0\x9b\x34\x5b\x00\xe8\x53\x66\xd9\x88\xea\x2f\x67\xaf\x5e\xa6\x0e\x15\x92\x1b\x2e\xb9\xba\x54\x89\x36\x99\x95\xd7\xb4\x95\x1e\x99\x5d\xd5\xe5\x3f\x98\xa3\xd2\xb5\x7e\x49\xc3\x0e\x46\xbb\x2a\x0b\xdc\x77\xb1\x52\x64\x52\x6c\x38\x75\xaa\x6d\xac\x3e\x54\x38\x94\xe8\x71\x3d\xc0\x56\x6c\xc1\xdb\x84\x5e\xb4\x0c\xd1\xd2\xa3\xf2\xc6\x88\x09\xa1\x17\x36\x51\x2c\xaf\x45\x95\x9d\xcf\xc5\x24\x54\x44\x72\x93\x17\x65\x75\xed\x24\xdb\x3e\xb9\xef\x1b\x8f\x21\xe8\x97\xdb\xf6\xb4\x1d\x78\xd5\xd3\x55\x05\x0b\x1a\xb5\xc9\x7b\xbc\x13\x66\xee\x73\xe0\xa5\x68\x26\x9d\x35\xd5\xeb\x32\x6f\xb2\x66\x7a\x35\xf9\x20\x5c\xac\x4c\xaf\xb2\xbc\x08\x03\x83\xf4\x21\x90\xe1\xfb\x73\xc7\xf0\xf3\xdd\x8d\x6f\xeb\xb6\xbc\x9b\xb3\x75\x8d\xf2\xd6\x3e\x9a\xce\xf3\xf3\x2a\xab\xfc\x6e\xb8\x5e\x46\x74\x2a\xec\xed\x7e\xf2\xf9\x3c\x2b\x3e\xfc\x5f\xfc\x0c\x6a\xbb\xac\xfe\x4a\xbe\xd2\x59\x82\xdb\xd1\x03\xb7\xa7\x87\x6e\x4f\x0f\x3d\x5c\xba\x3d\x3d\x74\x7b\x7a\xe8\xf6\xf4\xd0\xed\xe9\xa1\xdb\xd3\x43\xb7\xa7\x87\x6e\x4f\x0f\xdd\x9e\x3e\x72\x7b\xfa\xc8\xed\xe9\xa3\xaf\xa4\x91\xe9\x3f\xb4\x06\x9e\x89\xcd\xde\xea\x59\x52\x9a\x2c\xbc\x35\x2d\xcf\xeb\x69\x95\x9f\x0b\x0f\x50\xe7\x00\xdc\xb2\xe8\x86\x64\x79\x4a\x2c\x14\x30\xe1\x84\x54\xba\xc5\x15\xa2\xca\x1a\xf1\xc3\x32\xf7\x15\xf6\x78\x26\xfa\x2d\xfd\xf1\xf9\xf1\xe4\xc5\xc9\xdf\x3d\x48\x95\x61\xa0\xc8\x7a\x31\x08\x88\x79\xd8\xfe\x32\x9f\x3d\x73\x9e\xc2\xa1\x69\x4c\xc7\x3b\xda\xc9\xd9\x93\xc9\xf1\xc9\xe9\x53\x0f\x4a\xe7\xe0\x9c\xbd\x7a\x7b\xf6\xf7\x89\x4c\xf3\x00\x4d\x16\x4d\x5c\x93\x79\x30\x32\x51\xdd\x6c\x5f\x85\x00\x28\x5d\xdd\x70\x83\x30\x35\x83\x91\x15\x7a\x36\xa6\xaa\x25\x6d\x5e\x1a\x0a\xcd\xf3\x3b\x27\x34\x0f\x86\x22\xf1\x40\x30\x19\x21\xaa\xdb\xa7\x72\xc3\x7f\x96\x17\xd9\x7c\x7e\xeb\x83\xda\xf9\x64\x36\xeb\x3b\xdf\x87\x96\x31\x1d\xc7\x90\x7d\x10\x61\x28\x9d\x83\xef\xfc\x59\xf1\x1c\xee\x00\x1e\x9c\xce\x51\xfd\xec\x80\xd3\x39\x0a\x6e\xcd\x50\xf8\x28\x6e\xaa\x6c\xe1\xc1\xc8\x44\x74\x8e\xbf\x58\x04\xaa\x80\x54\x93\x7f\xda\xf8\x04\xa8\x32\xd6\xe9\x6c\x7c\x1b\x50\x92\xd5\x3c\x90\xaf\x18\x16\x10\x3f\x20\xaf\xec\x59\x36\x63\x32\x40\x28\xae\xc9\x83\x51\x19\x34\x4d\x0b\x4f\x4b\xe3\x9a\x50\x40\x51\xb2\xbd\x7c\x4a\x47\x98\x7c\xde\x38\xfb\x1d\x80\x40\x32\x91\xe9\x4c\x7c\x72\x68\x10\xcc\xab\x31\x7d\xf8\x1f\x1f\xc3\x21\xa4\x02\x71\x1f\x5c\xc9\x11\xe8\x78\x5c\xea\x0d\xa9\x91\x57\xd0\x63\x2c\x11\x84\x63\xf9\xb6\x41\xf7\xd9\x72\x31\x17\x7e\x11\x3b\x1f\x79\xf4\x4b\xd1\x78\x4b\x13\x80\x55\x4e\x30\x5a\xc4\x81\x89\x16\x91\xcd\x66\xea\xbe\xe8\xc3\xb0\x4c\x16\x69\xa1\x1b\xde\xce\xa7\xc3\xa0\x96\x20\xdd\x65\x1c\x80\x50\xa1\x7a\x63\x29\xd2\xbb\x11\xc5\xec\xe4\xa3\x7b\x42\x21\xbc\xca\x22\xa5\x99\x7a\x4d\xdd\x3c\x17\x97\xa6\xdc\x71\x04\x96\x0f\xc0\x5b\xd9\xe8\x00\x4f\x15\x77\x8f\x04\x80\xe7\xb9\x36\xf8\x71\x7e\x71\xb1\x06\x5e\x66\xdb\x05\x7e\x2c\xf2\xd0\xdc\xda\xf9\x50\x44\x39\xc9\x3c\x0d\x68\x09\xb9\x84\xed\x4b\x65\xfc\x60\x23\x3e\x8c\x55\x54\x8b\x46\xba\x4b\x6a\x10\x24\xd1\x8f\xa2\xaa\xf2\x99\x78\x0a\x97\x83\x40\x70\x13\x2b\x1f\x85\x50\xe2\x32\xd7\x26\xb1\x58\x55\xa0\x60\x08\x0a\xcd\xc7\x8b\xd9\xc6\xc2\x3e\x0c\x6e\x77\xf0\xfb\xad\xbe\x7b\xf8\x05\x5d\x08\x28\x76\x2c\x50\x57\xdb\x25\x0a\xb9\x4f\x9b\x3c\x00\xc5\x3b\xb1\x6a\xdb\x07\xb7\xf3\x83\xc2\xea\x03\xae\x4b\xd7\x54\xb7\xde\xcc\x7f\x8b\x87\xd0\x29\x81\xbc\xa9\x40\xd2\xe7\x81\xfd\x7e\x32\x19\x98\x3c\xe4\x64\x9c\x6d\x1a\x60\x5e\xd1\x3e\xfd\x2a\x5b\x74\xee\x7c\x04\xe7\xee\x7c\x72\xaf\xea\x40\x66\x40\x9f\xaf\xee\x86\xfe\xa3\x0f\x0d\xab\xf3\x85\x70\x70\xf8\x27\xb5\x6e\x5f\x88\x5b\x62\x46\xbb\x01\x4d\x1e\x1e\x32\xf3\x65\x7d\xf5\x56\xc0\xed\x30\x40\xae\xf2\x86\x31\xf0\x61\xd8\x06\x0a\x09\x3f\xc1\xae\x51\xf9\x45\x7d\x18\x7c\x68\x90\x09\xaf\xcb\x99\xf0\x4b\xe8\x2c\x3a\x03\x8b\xbc\xbe\xea\xec\x18\xcb\x35\xf8\xf1\xce\x90\x43\xbd\xb1\xe9\x43\x84\xb0\x10\x06\x65\x99\xa6\xd6\xd4\xbd\x56\x61\x8d\xc4\xb4\xfd\x44\x17\x7b\x1f\xca\xe4\xf1\x86\x7d\x38\xca\x20\xcc\x76\x00\x51\x06\xad\x2a\x10\x75\xfb\x40\x94\x41\x6e\x25\x16\x99\x5e\xf6\x2e\x85\x1d\x06\x9f\x80\x50\xd4\x10\x5c\xad\x87\xf8\x16\x64\x43\x74\xab\xa5\x02\xb8\xa5\x97\x3a\xcd\xa6\x57\xc2\x3d\x47\x10\x8c\x72\xd4\x39\x1e\x8c\x7d\x24\xaf\xa6\x5e\x74\x26\x25\x05\xf1\xce\x27\x80\xe6\xb9\x8c\x6a\xbb\xab\xbf\x77\x30\x27\xd5\xa9\x50\x34\x26\x3a\xd9\x37\x95\x0e\xc3\x59\x55\x6c\x2e\xbc\x45\xcb\xf5\xb6\x4d\xd7\xc1\xb6\xd7\x14\xb7\x0b\x9e\xdb\x95\x05\x27\xc6\x87\x61\xd3\xb3\x09\x61\x9d\xf1\xaf\x3a\x7c\x1c\x1d\xfe\xde\x77\x72\x74\xed\x3d\x54\x02\xd4\xb5\x7e\xa9\xf4\x5f\x32\x01\x80\x3d\x65\xe2\xeb\xe4\xcc\x87\x51\x39\x48\x3e\xf3\x3c\xab\x5f\x89\xe6\xaa\x0c\x40\xb2\x4c\x8b\x9a\x7d\xc8\x92\x8f\x33\xbf\xbe\x16\xb3\x3c\x6b\x3a\x70\x24\xe1\x3d\x90\xc0\xd4\xf8\xa5\xce\x7d\x9c\x86\x22\xd3\x1d\xba\xa1\xe9\x3a\xdd\x3d\x01\xa4\xe7\xef\xc9\x73\xc2\x0b\x60\xe0\x85\x17\x79\x7c\xf1\x93\x73\xbd\x05\x00\x4c\x0f\xbe\x23\x1f\x06\x8e\x4b\x2d\xc8\x4c\x5d\xe1\xd4\x16\x6e\x86\x1f\xed\xdb\x7e\x86\x8b\x20\x40\xa1\xb2\xf3\xfa\xe4\x7a\xe1\xec\x97\x8f\x0e\xa0\x0a\xc8\xc0\xed\x38\x0c\x22\x34\x40\x5e\x7f\x3f\xcf\x8a\x0f\xa9\x2b\x19\x0b\xda\x7d\x3e\xb7\x5f\x08\xc8\xf4\xc1\x4d\x5d\xb5\xc3\x10\x34\x13\x74\xa5\x4c\xe6\x15\x04\x35\xa2\x2d\x23\xc8\x0a\x02\x72\x29\x18\x97\x7a\x05\x81\x51\x0c\x86\x62\x2f\xec\xfa\x9a\x2e\x75\xf7\xc1\x92\x88\xa5\x96\x78\x0c\xf3\xb5\x80\x4c\x0b\xc4\x58\x3a\x89\xc4\xb8\x08\x0c\x73\x49\x0a\x40\xb7\x7e\x4c\xd3\xf7\x7e\xeb\x9e\x6f\x42\x26\xbe\x2d\xe7\xb7\x17\xf9\x7c\x4e\x1e\x25\x07\x4e\xa2\x9a\x09\x3b\x79\x70\x9d\x2d\xd2\xeb\x6c\x11\xcc\x53\x72\x02\x25\x17\x08\xc2\xa0\x9c\x80\xe4\x02\x21\x08\x25\x27\x50\x72\x01\xb2\x3d\x03\xd9\x89\x11\xa3\x28\x74\x92\xf4\x4f\x49\xfb\x30\xd5\xc8\xfb\x8c\x7c\x8f\xaa\x31\x12\x3e\x26\xd1\xc3\x3c\x90\xe9\x81\x0c\x4f\x4d\x15\x4a\xe8\x94\xd4\x8e\xa6\x96\x52\x6b\x2b\x55\x4b\xea\xb4\x64\x4e\x13\x09\xc8\xe6\x94\x2c\x0e\x53\x49\x1a\x47\xd2\x37\x4a\x73\xe4\x6f\xae\xbc\x8d\xea\x23\x89\x9b\x92\xb0\x51\xeb\x5a\xc6\x66\x64\x6a\x44\x18\x5a\xaa\x66\xa4\x68\xba\x3d\xca\x31\x72\x33\x9d\xc3\x3a\x61\xb7\x0f\xb2\x32\x90\x8d\xe1\x37\x4a\xc7\x50\x1a\xc6\x52\x4e\x9b\x2a\xd5\xf2\x2f\x4c\x7f\xc9\xc3\x60\x1b\x0c\x4b\xec\x9a\x2f\x7e\x7d\x71\xe4\x34\x08\xe3\x48\x6a\x1c\xc1\x0c\xc2\x18\xd1\x8c\x92\xc4\xd0\xdc\x3b\x92\x35\xe7\x9b\xa0\xca\x22\x2d\x0b\x35\x16\x26\xa2\xe1\x12\x19\xcc\x75\x64\x32\x8e\x08\x86\xfa\xe2\x4a\x61\x5c\xa1\x4b\x18\xac\x76\xe1\x6a\x4d\x7d\x4a\xd0\x62\xe4\x2a\x98\x63\x49\x56\x2c\x41\x0a\xcd\x9c\x25\x4a\xb1\x25\x27\x08\x61\xc9\x4e\x2c\x51\x89\x93\x0f\xc2\x12\x5b\x36\xe2\x40\xa0\x74\xc4\x11\x86\xd0\x50\xb9\x3c\x84\xfd\x56\xbb\x96\x2f\x01\x09\x08\x3c\x6c\x58\x23\xf2\xf0\x25\x1c\x34\xa9\xb6\x8c\xc3\x11\x69\x20\x4c\x50\xa8\x11\x94\x61\x20\x7c\x40\x8a\x11\x10\x5a\xd0\x32\x74\xc5\x16\x9e\x94\x02\xe1\x98\x9c\x82\x89\x25\x30\xcf\x11\x4c\x38\x72\x08\xbd\x39\xa5\xe6\x84\x22\xd1\x03\x49\x1a\x30\x8d\xc9\x1a\x98\x68\x81\xb6\xcd\x6c\x91\xbe\xd2\x4b\xdb\x91\x26\x38\xc2\x03\xbd\x64\xd9\xa0\xac\x2f\xd3\x23\x06\x51\x07\x20\xf4\xed\x5f\x5f\xf5\x31\x9d\xc9\x05\x98\x18\x00\xf3\x02\x82\x80\xc0\xbd\x9f\x2f\x53\xeb\xe6\x1f\xb8\xe8\x13\x71\x9a\xbb\xbe\xb9\xda\x53\x93\xfc\x72\x6f\xdd\xe5\xd9\x30\x60\xdb\x31\xf7\x71\x6b\x20\x90\xc7\x6f\xeb\xac\x1c\x96\xd1\x7b\xbc\xbe\xa0\xb3\xfb\xb8\x55\x97\xaa\x47\x0f\x11\x53\xd5\x8d\x5b\x11\x0c\xde\xb9\xd5\x15\x9b\xc8\xd6\xbd\x64\xbb\x09\x04\xe7\xdd\xad\xbd\xab\x34\x91\xb6\xba\x4c\xeb\xbb\xb3\x3a\x79\xe8\xf6\xac\x2f\xcb\x7a\x4f\xd5\x0c\x3d\xbf\x1d\xd3\x42\xe5\xd7\x30\xeb\x3a\xcc\x27\x53\x57\xe0\xdc\x7f\x75\x0b\xce\x95\xcc\xbf\xf0\xda\xdb\xae\x7b\x83\x0b\xdf\x70\xd7\x95\xa9\x3b\x0a\xd5\x4e\x29\xaf\x8d\x8e\xda\xfd\x7a\xdd\x1a\x03\xd7\xd6\xc0\x2d\x95\x63\xcd\x19\x65\xf0\x5a\x4a\x5c\xb9\xb9\x98\xb2\x7b\xa8\xaa\x8b\xee\x91\xfa\xda\x48\x58\x67\x17\x47\x7e\x4f\xb4\xe7\x55\xcf\xa9\xa2\x75\xef\x6a\xe8\xdf\x04\x43\xe3\x75\xc6\xaa\xf8\x20\xb8\x04\xe3\xa5\x98\x36\x31\x48\x79\xc5\x52\xe8\xb6\x46\x97\x33\xaa\x5b\x5e\xf0\xe0\x3e\x87\xdf\xea\x12\xa9\xee\x8c\x6a\x5d\xb2\x5b\xa3\x75\x49\x24\xcc\x2c\x8b\xb4\x5a\x16\xfa\x2c\x54\xd7\x39\xfd\xcb\xcd\x19\x18\x37\x16\x95\x78\x09\xa9\xb7\xe4\xa1\x23\x42\xef\x2b\x83\xbf\x9e\xbc\x3b\x7d\xfe\xe6\x75\xac\xbb\x00\x37\x3f\xba\xe8\x29\x96\xa8\x90\x8c\x90\xfe\x56\x77\x3b\x75\x95\xa3\x65\x0f\x69\x82\xa5\xa8\xdb\x1b\xfd\xd7\x8c\x6c\x75\x29\x52\xf8\x6b\x10\x06\xbc\x37\x18\xb4\x69\x5f\x11\x93\x09\xba\x4f\xa2\x31\x54\xb7\x4a\x6d\x6c\x26\xce\x97\x97\xd1\x38\x5e\x39\xea\xd0\x3c\x37\xee\x72\xfa\x00\x75\x87\x15\xd3\x94\x9a\xd7\x28\xac\xa1\xb3\x4e\x15\x03\x2f\x18\xda\xc4\x18\x3e\x8d\xc9\xb1\xba\x52\x67\x4d\xfe\x51\x3c\x5b\x16\x53\x16\x71\x75\x59\x4c\xb5\xdf\x0a\xf9\xb1\xbb\xfb\x8c\xf2\x98\xaf\x8b\xa6\x24\xf7\x17\xe0\xd5\x1d\xca\xa8\x4b\x4c\x3f\x1a\x15\x50\x6f\x6f\x5a\xce\xc4\x38\x8a\xbf\x7b\x70\xd0\xea\xf7\x56\xde\x68\xdf\xee\xa4\xbc\x67\xc5\x8f\xfd\xb4\x23\xde\x37\x6d\xfe\x9c\xa6\xe9\xc7\x32\x9f\xf5\xf6\xef\xee\xe8\x53\x4e\x16\xf7\x88\x73\x76\xbb\x10\x70\x6f\x02\xf5\x71\xc9\x78\xbd\xd7\xe1\xa7\x51\xfa\x20\x8a\xb4\x51\x8e\xf1\xbf\xfb\x6e\xdf\x72\xee\x59\xec\xa4\x69\xa4\x5a\x8e\xba\xeb\xad\x44\x0d\xe1\xb0\xa1\xdf\xfd\xb9\x28\xb0\x6e\xd9\xca\x82\x79\xf9\x3f\x18\x3b\x11\xfb\xe6\xa2\xc0\xe8\x1f\xf9\x45\x3f\xef\xe5\x45\x0f\x42\x0d\xd6\xa3\x1c\x9c\x90\x99\xb0\xd1\x8b\xa4\x19\xe5\xe3\x24\x4f\x9a\xb8\x65\x46\xac\xad\xf5\x4a\xbd\x0e\xab\x04\xe3\x61\x96\xd2\xff\xbd\xb1\xfb\x59\x68\xec\xc6\x5f\x6b\xbd\xca\xaf\xc3\x1a\xc1\x78\x58\xa3\x74\xe6\x4c\xfa\xfc\x7d\x72\x51\x95\xd7\xcf\x65\x06\x74\x43\x7f\x69\x5b\x2b\x9e\xc2\xcc\xad\x4c\xf2\xbe\x36\x6c\xd2\x69\x7f\xde\xe7\x00\xaf\xb2\xe6\x6a\x70\x9d\x7d\xea\xef\x63\x2c\x4b\x44\xeb\x9e\x69\xb8\x35\x68\xd1\x89\xc9\xfb\x94\x01\x0f\xf3\x3f\xbf\xd7\xa8\x92\xe9\x92\xd4\xd2\xb4\x3c\x7f\xaf\x97\x7b\xae\x28\x4c\xad\x58\x92\x5c\xac\x25\x2f\x00\xf1\xa9\x0b\x92\x19\x71\x15\xda\xaa\x0a\x54\x9a\x73\x34\xeb\x24\x43\xaa\x74\x34\x4e\x28\x50\x20\xef\xb1\x1c\x93\x9e\x66\x1d\xd8\x52\x39\x30\x70\xbc\x14\xe7\xb1\xac\x79\xbe\x44\x33\xf6\x51\x3e\x46\x5f\x99\x76\x14\x2b\x6c\x34\x07\x24\x6a\xeb\x35\xd4\xcb\xa6\xb0\x53\xad\x63\x29\x6e\xb6\xff\xd3\xbf\x3c\x7f\x35\x39\x39\xfd\x16\x1d\x25\x07\xf6\xae\x95\x9f\x96\x5e\x67\x8b\x36\x00\xae\x16\xa5\x5b\xc4\x11\x27\x05\x8b\x22\xc2\xbd\x92\x5c\xc8\x14\x2a\xa7\x28\xda\x2d\xe8\xc8\x9e\xec\xe8\x81\x4a\xf4\xc5\xd3\x5c\x91\x97\x95\x67\x89\xba\x78\x8e\xdb\x4c\xf8\xc0\xd3\x6a\xb0\x5f\xdd\xda\xac\x5b\x2b\xdb\xd7\x42\xee\xd0\xdb\xfd\xad\xad\xcf\x2c\x55\xa6\xdf\xc0\x1a\x6d\xdd\xfb\xfe\x23\xfb\x79\x7f\x2b\x0d\x45\xe7\x5d\xff\x5b\xf6\xac\xdf\xf5\xc0\xf8\xfb\xc0\xfb\xe2\x9a\x07\xc3\xdf\x87\xdf\x0b\xd7\xbe\xd9\xfd\xbe\xeb\xc9\x6e\x83\xf3\x1f\x12\xf9\xbd\xf9\x41\x5d\x1e\x4e\x31\x16\xc0\xdd\xdd\xce\x0e\x09\xe3\x5e\xff\xd5\xca\x57\x0f\x62\x3f\xbc\x7c\xf3\xfd\x93\x97\xe9\xc3\x7f\xf4\x47\x4f\x1e\xfc\xef\xff\x1c\xdf\xf5\x47\xfb\x0f\xfe\x34\xc6\x8f\x38\x66\x31\x2c\x7c\x7f\xd7\x6a\xeb\xd6\xd5\x30\x3f\xcd\xc6\xd1\x1e\xc9\x15\xb1\x70\x0d\x67\x96\x55\xfa\x52\x34\x01\x5f\xda\x8f\x89\x77\x47\x27\x7b\xba\x50\xcb\xdf\x9c\x8c\xcf\xeb\x12\x22\x2d\xcb\xc3\xe7\x2d\x54\x8d\x86\x3a\xb3\xbc\xc2\x18\xa6\x69\x74\x71\x33\x23\x27\x3a\x13\x09\x95\x2a\x50\x4a\x6b\xca\x14\xeb\x18\x3a\x25\x49\x44\xa3\xcc\x88\xe2\x76\xa8\xc2\x0d\x58\x01\xe1\x17\xb7\xae\xd9\x8c\x4c\x03\xde\x8c\xe0\xfb\xaa\xa1\xc4\xf4\xc2\x44\xfc\x9d\xe0\xf5\x28\x86\xaa\xd4\x17\x3a\xea\x27\x2c\xc9\x8c\x16\x46\x68\xbb\x3f\x57\x63\x85\x51\x81\x9f\x22\xcb\x6b\x46\x53\x86\xc1\x9b\x32\x00\x8c\xcd\xfa\x06\x4f\xac\x3b\x6e\xed\xc8\x89\xbb\x83\x57\x05\x58\xe9\xc7\xd1\x08\x7f\x8c\xa3\xa3\x48\x39\x0e\x8e\xac\xeb\xdf\x9f\xa3\x3d\x5a\xa2\xc8\xc9\xed\x45\xdf\xf5\xa3\x3d\x33\xbc\xbd\xa8\xf7\xe0\xbb\x9e\x4a\x69\xca\xbd\x28\x8e\xf6\xb0\x52\x70\x16\x5f\x88\x69\x63\xf1\x46\xe4\x5a\x9f\xa6\x3a\x35\x35\x25\x38\xd9\xa9\xaa\x69\x88\xbb\x07\xd0\x26\xd1\x52\x80\x6a\x35\x79\xd9\x21\xcd\x79\x16\x8b\x5b\x2e\x93\x4c\xb8\xef\xa1\x8e\xed\xad\xa7\xda\xad\x83\x1a\x36\x35\x34\x25\x0b\x17\x8e\x65\xc1\x71\xe6\x59\x79\x7a\x5b\x4c\x03\xd3\x31\xcb\xeb\x6e\x34\x34\x37\xa5\x9c\x13\xab\x13\x6e\x48\x73\xe8\x06\xc3\xd2\x9a\xc1\x60\x75\x2a\xd2\x7a\xa0\x06\xa2\xf4\xad\x86\x82\x71\x4b\xac\xb1\x58\x2d\x32\xef\xf6\x59\x75\x29\x1a\x6d\x89\x47\x06\xa1\xb2\x12\xca\x4a\x60\xa9\xc7\x92\x36\x3f\xaf\xf8\x79\x36\xfd\x20\xcb\x5b\xb9\x36\xcb\x3d\xcb\xc9\x7f\x85\xb5\x4d\xf8\x3b\x07\x29\xd9\xe4\x75\x93\x17\x97\xc7\x79\x95\xf2\x4c\x79\xd8\xc1\xec\x00\x69\x30\x28\x34\x4d\x36\xb6\xae\xf5\x6d\x31\x8d\x18\x2e\x27\x32\x21\x81\x92\x56\x7d\x35\x11\xb0\xec\x1d\xc6\xa7\x30\x0d\xa7\x29\x8e\x6b\x77\x77\x86\x5f\x80\xa4\x55\xb0\x3c\x21\x50\x62\xc0\x1d\xb9\x72\xed\x4f\xee\xf8\xec\x03\x25\xbf\x90\x20\xc6\xcc\x56\xcc\xee\xee\x76\xbc\xb9\xb6\x62\xda\x6f\x83\x3f\xb3\x89\x87\xb1\xb7\xed\x12\xb7\x4a\x93\x89\xb6\x42\xbf\x69\x43\xa3\x46\x55\x8b\x3e\x37\x02\xbb\x81\xb3\x8d\xcf\xcb\xcb\x78\xc5\x5f\xde\x06\xf3\xf2\xb2\x1f\xf5\x22\xb5\x00\xc8\x4b\x45\x9c\x44\x0f\xbe\x8b\x12\x5d\x35\x4c\x64\xeb\x9d\x03\xfe\x86\xa4\x4b\x90\x67\x08\x97\x4d\xd8\xb8\x87\x70\xaf\x10\x6b\xab\x8f\x8d\xab\x0b\x0b\x31\xb8\x32\x70\x33\x29\x35\x5e\xac\x25\x7f\x5f\x54\xfc\xf9\x41\x94\x50\x5d\x88\x88\xe0\xa8\x36\xed\xae\x81\x91\x59\x0c\x85\xde\xb8\x7d\xa6\xc2\x54\x5d\x9a\xd1\xb3\x58\xc1\x20\xdb\x34\xb2\xfa\x7e\x53\x42\x11\x13\xdf\xe5\x83\xb8\x95\x37\x7f\x4c\xa4\x3b\xb4\x7b\x3b\xfc\x20\x6e\xe3\x78\xd5\x94\xa3\x0f\xe2\x76\x0c\xac\x07\xfc\x6a\xdb\xd6\xad\x5e\x85\xae\x5a\xd9\x07\x3d\x22\xfd\x29\x10\x73\x42\xd7\x14\x60\x2e\x9e\xf2\x98\xc9\x92\x2b\x81\xe6\x31\xfa\x21\x25\xf1\x38\x9f\x16\x3b\xb0\x7d\xa5\x4d\xb9\xa6\x4a\x97\x69\x80\xc5\x77\x31\xcf\x2e\xbb\xeb\xc7\x78\x2c\xb8\x74\x9c\xa6\xb0\xb6\x3e\x94\x6f\x5b\xe6\xc8\x41\x02\x10\xbd\xd2\x0c\x30\x7f\xbc\x9a\xc7\xa2\xbc\x01\x1d\x83\x7d\xa4\x29\x76\x13\x34\x92\x67\x5d\x33\x35\xb9\x75\xdd\x04\xbf\xa6\x11\x5b\xe4\xcd\x73\x5c\x41\xb7\x75\x49\xed\x12\x77\x77\x5c\x57\x95\x71\xe9\x97\xdc\x56\x43\x57\xd2\x90\x79\xaf\x65\xe0\xfa\x5b\xfb\xca\xff\xe2\xeb\xe5\x1a\xf3\x93\xc3\xb0\xf5\x89\x67\x7e\xf6\x88\x9b\x9f\x81\xd2\x8b\x6b\x64\xf7\x48\x59\xbb\x29\x23\xbb\x90\x55\xcf\xef\x1c\xab\x9e\xa0\x66\xf6\xb7\x5b\x6a\x70\x7f\xeb\x2b\x70\xcb\x2e\xca\xab\xb0\xfc\x9f\xdc\x64\x95\x52\x03\x93\x3f\x93\x67\xcf\xdf\x9d\x9e\x41\xbf\xe5\xed\xef\x1f\x3f\x0f\xc6\x7b\xfc\xbe\x77\x91\x57\x75\xf3\x42\xdc\xda\x77\xbd\x05\x0a\x03\x9b\xe9\x55\x5f\x97\x8f\x47\xfb\x63\x8c\xef\x85\xcf\xc1\xff\xbd\x14\x4b\x91\x8e\x98\x27\x6d\xff\xb1\x18\x1d\x73\xf0\x02\x24\x78\x4b\xd3\x74\xdf\x62\x12\xfe\x09\xb5\x71\xc8\xa1\xd7\x0e\xa2\x10\xc5\x6d\x00\x6f\x68\xf3\x9f\xf1\xea\x9f\xa3\xfd\xb1\xbc\xb9\xf7\xff\x39\x3a\x18\xc7\x6d\x3c\x94\xc3\xef\x47\xea\xa9\xb7\x97\x15\x3d\x2d\x19\xed\x5d\xc2\xba\x4b\x90\xca\x7a\xe2\xd3\x42\x4c\x9b\x5a\x19\xc6\x50\x6e\xdd\x6b\xca\xde\xb9\xe8\xd5\xa2\x59\x2e\x7a\xe7\xb7\xe0\x0e\xb1\xc9\xaf\x05\xfc\xa8\x96\x45\x6f\x5e\x96\x8b\x5e\x5e\xe3\xc0\xc5\x2c\xe9\x4d\xaf\xc4\xf4\x83\xa4\x81\x5e\x73\xbb\x28\xeb\x28\xe9\x1a\xba\xb5\x93\x6c\xf7\xee\xae\xd1\x9c\xcd\x66\xfc\x91\x1d\xf6\xb4\x0f\xe2\x16\x02\xed\x17\xe5\x4c\xa0\xf4\xb0\x3c\x7f\x7f\x77\x17\x51\x74\xd8\x1d\x1d\xbb\x89\x09\x63\x01\xef\xd7\x29\x51\x0f\x6c\x70\x50\xbe\x4e\xaf\x07\x53\xd6\x00\x84\xf9\xdd\xf1\xce\xbb\xc8\x82\x89\xe2\x78\x15\x2c\x9c\xae\x5a\x8c\x19\x24\x33\x47\xd4\xcf\x31\x01\xeb\xef\x74\x34\x6e\xed\x14\x14\x99\xc2\x78\x86\x8a\xda\xad\xa1\x5e\x5b\x6e\xfe\x5d\xd5\x83\x2f\xc5\x4a\x79\xfe\x7e\xa4\x16\x36\xc8\x79\xaf\x77\x77\xb7\xc1\x01\xab\x84\xd0\xb1\xbb\x1b\x40\x27\xe4\xed\xee\x06\x91\x92\xda\xa9\x4e\x8c\x77\xc8\xf4\x02\xbc\xab\x2a\x51\xe2\x8e\xe3\x45\xc8\x7a\x31\xcf\xa7\xa2\x9f\x27\x07\xca\xe1\x66\xdb\x9a\xfd\xa3\x13\xa3\x5a\x51\xa3\x8f\x2e\x7b\x25\x10\xca\xb6\x6d\x57\xbe\x29\xfe\x23\x89\xca\x07\x71\x9b\x7e\x10\xb7\xf4\xa5\x5c\x1d\x60\x2c\x51\xfe\x32\x41\x00\x98\x8e\x91\x46\x55\xa5\xcd\x15\x68\x49\x6a\x5e\x59\x55\xa2\xc5\x14\x18\x20\x17\x9b\x1d\x7c\x34\x6e\x62\x79\x36\xdc\xbb\x2d\x72\xe0\xb9\x89\xee\x2c\x4a\xe9\x5b\xd7\x63\xf1\xee\x2e\xff\xc2\x61\xa5\x69\xf4\xff\x13\xd9\xf4\x2a\xa2\x8e\x50\xcb\x18\x31\x54\x63\xcb\xbc\x87\xea\x24\xf6\x26\xaa\xb1\x3b\xcf\xfe\x75\xfb\x03\x71\xd5\x92\x6f\x54\xb4\x19\xd3\xfe\x6b\x10\xa5\xcf\x25\x9f\x20\x45\x93\xed\xee\xca\xbf\xd8\x02\xbd\xb4\x78\x35\xe4\x17\x7d\xbb\xff\x4c\x22\xa7\xda\x57\xd6\x24\xd3\x94\xd5\x2a\xbf\x81\x0c\xa1\x39\xf9\xb5\xbb\x2b\xff\x0e\x26\xa0\x7c\x92\x9d\xcf\x71\x51\x11\x73\x0c\x65\x20\x47\x1f\x23\x26\x09\x59\x61\x16\xee\xce\x74\x50\x3f\x87\xf0\x0e\xb5\x3e\x46\x11\xe3\x69\xc0\x4d\xf5\xc4\xa3\x2f\x35\x81\x86\x78\x50\xb1\x9e\x9e\xab\x26\x0e\xf5\xf0\x5a\xf8\xd4\x68\x3a\x71\xdc\xea\x01\x64\x3b\x0c\xf4\x51\x69\x07\x85\x7a\xd9\xd5\x19\x24\x4a\xba\x59\x2b\x59\x8b\xb7\x97\xb9\x34\xeb\x2c\x31\x10\xae\xb4\xc1\x3e\x81\x90\xd2\xbf\xe0\x57\xa2\x41\x46\x5d\xaf\x74\x74\xaf\x2a\xff\xc0\x59\x80\x6b\x91\xad\xcb\x44\x47\xf6\x94\x3f\xe4\x9c\x43\xb2\x0e\x63\x56\x8f\xe4\xdf\xf1\x9f\xe5\xd1\xae\x43\x79\x56\xa2\x81\x53\x19\x05\xbb\xfa\xe5\xab\x09\x76\x35\x9b\xcd\x52\x47\x92\x49\xb8\x4a\x1a\xc9\xa6\xc1\x2e\x54\x57\x53\xec\xdb\xd0\xeb\xe1\x90\x75\x23\xe5\x7d\xba\xbb\xdb\x8f\xf7\x0e\x86\x1a\xe9\x7a\xe6\x03\x0a\xaf\x46\x78\x0d\xdb\x8a\x4c\x1a\xed\x8f\x77\x77\xd5\x2f\xf5\xa4\x89\xee\xc3\x21\xf1\x60\x3c\x94\x6b\xcc\x66\xa6\x86\xda\xab\x3c\x06\xf6\x97\x0b\x45\x3d\xab\x1e\xc4\xc6\x01\xa6\xaa\x37\x5e\x59\xdc\x02\x9c\x7f\xa3\x46\x85\x58\x1b\x53\x67\x15\x17\xb1\xaf\x5c\x56\xa2\x7f\xc8\x6a\x9a\xaa\x7a\xa0\x2b\xac\xd9\xfd\x64\xff\x41\x5f\xf5\xd3\x74\x40\x45\x08\xa5\x8c\xd6\xa9\x1d\xbd\x3a\xc9\x29\x92\xfd\x46\xbf\xb3\x75\x35\x8d\x83\xf3\x86\x34\xfb\x65\x53\x67\x13\xd1\x77\xfb\x88\x60\xfa\x7c\xf0\xa0\xfd\x82\xb9\xfb\x8a\x33\xf6\x4b\x61\x7a\x59\xd8\xb8\x0e\xe3\x79\x5a\x2e\x8b\x26\xdd\x0f\x66\xc9\x24\x33\x03\xd6\x9c\xad\xc8\xc8\x37\x57\x11\x28\x27\xf8\x01\x8c\x11\x70\x77\xf8\x1d\xaf\x02\x40\x92\x81\x93\x70\x29\x7e\xea\x03\x61\xc7\x70\x19\x3c\xcb\xd9\x53\x80\x7e\x69\xea\x63\xa8\x07\x07\xb1\xb7\x67\xe2\xcc\xde\x77\x22\x86\x58\x8d\x83\xaf\x20\xc2\x08\xad\x3e\x5e\xd6\xe3\xc4\x1d\x2b\x0b\xd2\x48\xea\x26\x07\x9f\xdb\x6d\x7f\xa2\x0d\x52\x1e\x3c\x50\xbc\x21\x7e\xc3\x4e\x4a\xb1\x96\xa9\x47\x90\x39\x81\x7e\xc1\x4f\x3a\x70\xfa\x1d\xe3\xbf\x31\x0a\xdf\x1a\x05\xe8\x5c\xab\x13\x01\xb2\x0b\x8a\x1c\x1c\xf9\x97\x4a\x36\x14\x13\x16\x82\xe9\xcd\x9f\xa1\x91\x75\x45\xf5\xc0\xe3\xbb\x6c\xd6\x92\xb8\x66\x53\x8c\x49\xc7\x25\xf6\x0e\x12\x5d\x4f\xe7\x82\xf8\x29\x30\x7e\xc8\xa0\x40\xc1\x62\xd1\x5c\xa9\x6a\xcc\x49\x0d\x2c\x99\x89\x0e\x21\xbf\xf7\x22\x15\x8c\xf7\x33\xfa\x6c\xda\xda\x33\x9d\xd6\xae\x96\x65\xba\xa4\x27\xcc\x60\x2e\xfc\x68\xa3\x23\x32\x81\xfe\x40\x7c\x61\xea\xc9\x90\xf5\xc4\xda\x37\x37\x54\xb4\x06\x5d\x46\xe7\xff\x57\xc4\x96\x71\x3b\xf9\x3f\x06\x59\x33\x1f\x4f\x1e\x5a\xb6\xe4\x3d\x91\xed\x93\x57\x51\xeb\xfe\x12\xe0\x02\xd7\x5d\x61\x86\xd6\xe5\xa8\x3c\x7f\x3f\x0c\x49\x09\xc2\x3c\x24\xf2\xbd\xd6\x85\x61\xfb\xcb\x90\x75\x17\xfa\x95\x77\x14\x3d\x0b\xd6\x86\x82\xbf\xb5\x3e\x21\x71\x49\xf7\xa7\xc3\xf0\x46\xc3\x04\x67\xc6\x58\xc1\x30\xd5\x8e\xe0\x20\x21\x6c\x18\x21\x80\x85\x0c\xfd\x53\x61\x70\x87\x18\x15\x2e\x93\xa1\x72\xa9\xf5\x0f\x98\x7a\x94\x49\xc3\xd2\xa0\x54\x83\x11\x18\x7c\x6b\xab\x5a\x75\x1b\x5b\x70\xa8\xed\x2c\x3b\x78\x89\x80\x79\x47\x97\x34\x5b\x7b\x31\xfc\x15\xb5\xaf\x3e\xcf\xff\xe5\x67\xfa\x69\x5c\x13\xe2\x6e\x8d\xe3\xca\xa0\xbf\xcb\x6e\xaf\x8a\xca\x05\xe3\xbf\x83\x8a\x98\xe5\x76\xea\x17\x72\xaa\xf8\x9b\xa9\xa1\xad\x77\x48\x17\x7c\x11\xf8\x9d\xfb\x22\xb0\x8d\xa2\xda\x66\x47\x72\xdb\xb8\xa3\x5b\xe7\xe4\x2c\xe0\x13\x2d\xe0\xe4\xec\xf7\xb6\x93\x33\xdf\x05\xc9\x1f\x2c\xa7\x27\x21\x4f\x26\x7f\x70\x1c\x99\xac\x75\x3f\x12\x30\xd8\x37\xc6\xc8\x9b\xfc\x95\x75\xb9\x1f\xda\xbf\x9f\xfb\xa1\xfd\xb0\xfb\xa1\x4d\x4e\xa3\x0e\x3e\xdb\x69\xd4\x41\xa7\xd3\xa8\x90\x03\x81\x90\x43\xab\x80\xab\x02\xf0\xd2\xc4\x5c\x15\x58\x6f\x42\xd9\x04\xae\x23\xe9\x68\x8c\xf7\x92\xa4\x9c\xd8\xb6\xed\xfa\x54\xfb\xf1\xf5\xf1\xc9\xb3\xe7\xaf\x4f\x8e\xfb\xf1\xaa\x25\x1d\xfb\xcb\xe6\xea\x6d\xd6\x34\xa2\x2a\xd2\x87\x3f\x0f\xfa\x98\x72\xf7\xf3\xe8\xe7\x71\xfc\x9f\xec\x25\xe9\x83\xb8\xad\x9f\x95\xd5\xb1\x58\x48\x2e\xad\x7e\x25\x1b\x9e\x89\xc5\x0b\xc9\x1d\xd2\x89\x5f\xa7\x2a\x67\x84\x39\x78\x91\x94\x39\x70\x9d\xf2\xf3\xe5\xe5\x53\x0b\x4a\x54\xa6\xcb\x22\x50\x2b\x5d\x55\xa8\xc1\xf6\xa1\x1d\x25\x82\x92\x1f\x46\xdc\x4d\xe8\x3a\x16\x8b\x1a\x04\xab\x5a\x84\xc9\x46\x05\xa8\x8c\x64\xf5\x11\x13\x94\x67\xb3\xd9\x31\xcd\x82\xbc\x08\xd6\x20\x28\x4d\x2c\xb1\x3a\xd4\x87\x64\x28\x7b\x24\xbb\x58\x4f\x07\x7a\xf2\xa0\x58\xa2\x71\x96\xcf\x3e\x25\x73\x51\x10\xee\x64\x2d\xf8\x00\x43\x85\x49\x7c\x3b\x54\xf0\xa9\xd7\x75\x54\x6a\x9f\x7d\x4a\xf7\x65\x3d\x29\x95\xd3\x4f\x06\xb3\x4f\x68\xd2\x30\xfb\xb4\xb7\x27\x6f\x97\x32\x57\x01\x8d\xf2\xd9\x27\x90\x6a\xd4\xe9\x9a\xe9\x04\x00\xf3\x74\xd3\xb7\x3e\x49\xd2\x06\x1b\x00\x6a\x2a\xe1\x38\xa0\x6b\xad\xfb\x64\xf3\xff\x50\xe7\xa0\xee\xc1\xc1\x90\x76\xcf\x75\xc8\x73\xad\x46\xc1\x3e\x2a\x29\x17\xf2\x02\x22\x7f\x0e\x26\x13\x60\x19\x26\x59\x95\x37\xb7\x93\x09\x5c\x53\xd4\x30\x50\xb5\x46\x99\x64\xd1\xcd\x41\x8b\xf4\x53\x59\xcb\xee\xae\xfc\x3b\xd0\x89\x3c\x24\xf8\x63\x3b\x0b\x3c\xed\x2b\x85\x5a\x3e\x2d\xbc\x22\x2b\x63\x68\xd4\xc5\xde\x14\xf3\x5b\x82\xeb\x03\xa0\x4a\xe4\x0d\xde\xdd\xed\xec\x58\x99\xf1\xdd\x1d\x8a\xbb\x5d\x34\x30\x75\xdd\x42\xdc\xf4\x9c\x43\xc0\x85\x66\x6f\x35\x9d\xf5\x0c\x3b\x0b\xb9\xa3\x35\xf7\xa7\x35\x45\x48\xef\x49\xcc\xb6\x03\x07\xf6\x63\x1b\x48\x33\x7b\x9a\x13\xcc\x9e\x81\x76\x8e\x3b\xbb\x90\xbc\x93\x06\x94\x31\xd7\x54\xff\xb1\x9c\x67\x4d\x3e\x0f\xc5\x9d\x46\x31\xb1\xaa\xbe\x0f\xd5\xc6\xeb\xea\xd2\xd3\xae\xeb\xd2\xd3\xba\x72\x08\x43\xff\x70\x88\x41\xa5\x6f\xdb\x7d\x75\xd8\xa6\x8e\x56\x54\x56\x5d\xd6\xca\x16\xe0\x49\xc5\x34\xcd\x55\x81\x78\x25\x41\x50\x36\xa0\xd3\xda\xa1\x4c\x24\x85\x04\xf6\x30\xab\xd5\xa5\xbc\xc7\x59\x97\x05\xea\x1b\x6b\xb3\x7c\x9c\x60\xe3\xea\x32\x6e\x13\x15\xf4\x70\xcb\x51\x02\xb1\xe8\x21\xe0\xce\x99\x5f\xf4\xdd\x6e\x71\xcd\x0b\x7a\xce\x92\xb0\x77\x77\x74\xd2\xae\x4c\x1a\xba\x6d\xe1\xcd\xaf\x6b\x3f\x20\x13\x61\x5b\x39\x13\x8c\x68\x6a\x51\x92\x05\xbd\x2a\xd4\xf5\x57\xb3\xde\xfc\x1e\xac\xde\x3c\xcd\x83\x22\x6c\x9a\x3b\x96\xc1\x5b\x00\x80\x2d\xa0\xd0\x99\x03\x77\x7d\xef\xcc\x69\x3b\xaf\xfa\x53\x75\xc5\x65\xc2\x0c\x24\x00\x93\xe3\x51\x80\xc9\x1a\xe5\x63\xff\x96\xde\x8d\x54\x79\x71\x09\xa3\x93\x9e\xf0\x12\x18\x2c\x74\x3a\x31\xad\x0c\x7d\x64\x23\x6e\x6c\x8c\x42\x66\x6a\x70\x46\xc6\x2e\x60\x2f\x67\x23\xd1\x8a\xc3\xaa\x99\xc4\xd8\x7f\xcc\x55\xcc\x1a\x02\xef\x38\xc1\xdf\xb8\xd9\x5b\x25\x28\x2c\x1e\x9c\x4d\xa0\xd4\xc3\x07\x88\x2d\x3a\xe1\xe3\x9c\x99\xd5\x1d\x21\x21\x88\x9d\x5b\x89\xa6\x35\x28\xa1\x61\x72\x45\x0c\x7a\xe7\xb6\xd2\xac\x11\x5b\x73\xdd\x41\x04\xad\xc7\x00\x76\x50\x94\x7a\xfc\x5e\x37\x68\xfb\x7d\xb4\x93\x2a\xea\x0e\xaa\x50\x0a\x1a\x1f\x95\x9f\x45\xd8\xf2\x1d\x42\x00\x61\x81\xe9\x44\xe2\x92\x45\x62\x48\x26\x29\xe7\xb3\x53\x7d\x64\x39\x8b\x35\xb9\xca\x66\x4f\x25\x28\x45\x2c\xc4\xa0\x9f\x2e\x49\x41\x6b\x4f\xaa\xcb\x97\xb0\x22\x30\x1b\x0b\x24\x95\x68\x0c\x9d\xf2\x43\x20\x10\xdb\xf6\x9b\xa7\x59\x51\x94\x8d\xbc\xac\xf7\x24\xe8\x83\xb2\x98\xdf\xea\x8b\x56\x2f\xfa\x66\x8f\x50\xb0\xf7\x4d\xd4\x2b\x8b\x1e\x0a\x42\x8f\x7a\xdf\xec\xd1\x05\x19\x08\x5e\x6d\xb2\xe6\x18\x2e\xcf\xdf\x0f\x9b\xea\x16\x24\x71\x66\x5b\x5a\xb7\xc3\xb0\x11\xb8\x6b\xc4\x41\x08\x18\xf6\x58\xc3\x47\x36\xec\xa6\xca\x16\x0b\x31\x53\x36\xef\x8f\x43\x89\x2e\x03\x77\x14\xe2\xea\xc0\xfc\xd4\xaa\x3f\x4d\x1f\xc1\x32\x4b\x83\xe4\x45\xb6\xa9\x6c\x04\xe6\x15\xda\xad\xe7\x70\x63\x3d\x44\xd1\xf6\xd5\xd9\x56\xbb\x5a\xce\xe7\x56\x6b\xc3\xda\xa8\x78\xb0\x8a\x86\x46\x46\x6b\xa3\x90\x66\x82\xf0\x99\xca\x15\x6d\x69\x58\x91\xbe\x1e\x92\x9b\x12\xd8\x59\x2b\x98\x20\xe2\x55\x20\x32\x97\xb5\xf0\xbc\xb6\xbd\xcd\xc6\xec\x71\x9c\x58\x50\x74\xed\x16\xdd\x76\x4f\xf8\x2a\x7b\x5c\x1b\x1a\xa7\x11\x66\x5b\xc3\x6c\x2f\xd0\xf1\xd8\xca\x5b\x08\x6c\xa5\x6f\xb9\x0b\x35\x22\xab\x66\xe5\x4d\xb1\xe6\x80\x0a\x1e\xe2\x04\xe1\xeb\x0c\x6d\x7d\x38\x87\x4e\x37\x7a\x26\x0d\x30\x00\x6a\x38\x10\x9b\xde\x9c\xea\x4a\x16\x4d\xfe\x28\x34\x43\x18\xe0\x99\xbe\x3b\x40\x4e\x30\x25\x41\x0a\xae\x08\xa3\x1f\x0f\x95\xa6\xc8\x2b\x96\x8b\x3e\x76\x50\x3b\x22\x98\x76\x7a\x22\x60\x1b\x5c\xa4\xf0\xdc\x53\x88\xee\xcd\xc4\x74\x9e\x55\x62\xd6\xbb\xc9\x9b\xab\x72\xd9\xf4\x32\xb3\xe1\x99\xea\xf0\xd1\x65\x81\xcf\xee\xa1\x6b\x61\x4c\x23\xaa\xe3\xd5\x74\xa1\x79\x61\xd2\xf5\x9f\x2e\x12\xc8\xd2\x06\x88\x0b\x73\xc9\x54\x2e\x86\x8c\x96\x5a\x58\x19\x8d\xed\xf9\xea\x44\x85\x9d\x5f\x52\x36\xfc\x62\x1b\xea\xd8\x1c\xeb\xeb\xb8\x08\x46\x80\xaa\x17\xf6\xa1\x87\x2d\x30\x9d\xc4\xfc\xa2\xef\x69\x81\xb1\xb5\xd4\xbd\x8e\xc6\xa8\x7f\xd8\xb6\x43\xdd\xd2\x65\xb0\x25\xa3\x35\xf5\x05\xa3\x31\x8d\xb8\x2a\x33\xac\x1d\xd6\x37\x53\xc9\x90\x9b\xda\xb2\xbb\x44\x2d\xe6\x17\x89\x9a\x55\x49\xef\xb5\xe9\xe8\xaa\x75\x7c\x59\x58\x70\x03\xee\xf2\xa0\x12\xcd\xc8\xca\x1d\xe5\xe3\x31\x58\xfe\xf8\x0d\x8c\xf2\xb1\xc5\xa9\x30\x99\x8e\xf2\xbc\x43\x4b\xab\x80\x35\x9b\x4d\xab\x32\x5e\xa9\xf5\x36\x2a\x60\xe7\xd2\x03\xe7\x37\x1e\xb3\x0c\x3b\x97\x9a\xb6\x94\xa5\x26\x78\x71\x3f\x24\x6e\x0f\x1a\x27\x62\x87\xdd\x04\xc9\xdd\x96\x44\xd9\xbd\xfe\x29\x6f\xae\x18\x82\xb7\x19\x03\x85\x1e\x37\x42\xee\xae\xde\x7f\x64\x8e\xb2\xc1\x2b\x8e\xb5\x0b\x6d\xe8\xfa\xc8\x9e\x79\x7c\x2d\xd7\xdf\x31\x28\xbd\x3b\xe8\x91\x6d\x78\x6b\x9e\xe5\xf1\xf2\x6d\xab\x72\xc8\xaf\x51\xc7\x14\xad\x9b\x81\xbd\x88\xa8\x2a\x10\x9e\x58\x89\xb7\xfb\x3a\x66\xb6\x55\xaf\x9c\x94\xa1\x47\x41\x51\x51\x36\x27\xf8\x0a\xb6\xb6\x3b\x3b\x1b\x2b\x0f\xd6\x5d\x88\x0d\xf5\x92\xac\xfd\x9e\xd5\x36\x9b\x7a\x1b\xae\x2e\x58\xdb\x79\x59\xce\x37\x55\x77\x9f\xfa\xc0\xac\xa3\xa3\xc2\xa4\x12\x97\xe2\xd3\x02\xc9\xf9\xa3\x36\xfe\xf3\x6b\xd6\x52\x01\x3c\xe5\xd4\xd6\x1b\x61\x50\xc8\xe8\x31\xd6\x83\x9e\x02\x70\x87\x3e\x42\x91\x5d\xa8\x47\xe2\x9f\xcb\xac\x6b\x88\x6a\x7f\x67\x3a\xc2\x7e\x6f\xd2\x94\x36\xf1\x50\xed\x97\x5d\x93\xb1\x55\xd5\xdf\xad\xab\xb8\x8b\x78\xb6\xab\x79\x4d\x9f\xe7\x5f\xd4\xe7\x3f\xaf\xab\xf8\x8b\xfa\xfc\xe7\xce\x3e\x3b\x9b\x66\x94\x15\x33\xd6\x10\xdb\x65\x5c\x0d\x10\x9e\x05\xd1\xd3\xd5\x67\x48\x11\x64\x77\x77\xc7\x00\xc0\x09\x69\x1c\x89\xa1\x02\xb4\xa2\xcb\x6a\xab\x5e\x96\xd5\x2f\xd2\xc9\xae\x3e\x42\xaf\x5a\xab\xc3\xdb\x60\xf2\xf6\x57\xed\xa4\x93\xde\x5a\xec\xf3\xe6\xee\x4e\xcb\xf9\x5c\x4c\x9b\x8e\x2e\x2b\x7f\x66\x4c\x7a\xfa\x39\xbd\x47\x67\x5c\xb8\x33\xbb\xe3\x00\x9f\x4b\x64\x3d\x04\xe2\x35\x12\xbc\xd8\x72\x5c\x0d\x6e\xb9\x63\x6a\xe3\xa1\x3e\x03\xc1\xdd\xe2\xe7\x9c\x81\x89\xa5\x6c\x6a\xf8\xd3\xd0\xad\xa2\x0e\x2d\x33\xfb\x5a\xdc\xb1\x14\x2d\x63\x8a\x0e\x10\x79\xa2\xea\xf1\x90\xbd\xea\x17\x0d\x68\xc3\xf6\x20\xdb\xd3\xce\xac\x9e\x9d\x3c\x39\xfb\xf1\xdd\xc9\xe9\x20\xaf\x4f\x0a\x79\x47\x9b\xf5\xa3\x7f\x2e\x45\x75\xfb\x60\x91\x55\xd9\x75\xfd\xa0\x10\x37\x51\x6c\x78\x2a\x78\x19\xa8\x53\xa7\xbf\xad\x95\x6d\x3f\x1c\xfc\x22\x23\xd0\xed\xf4\x39\xf2\xe8\xfd\xfd\xac\xe4\xad\x43\xd2\x5b\x6e\x37\xe9\x73\x73\x92\x04\x0a\x71\xf3\x57\x4f\xf2\xd2\x21\x9b\x3f\x08\x75\xd0\x34\xd4\x1a\x9b\x65\xa8\x66\x07\xb4\xdc\x1e\xab\xcf\xa3\x70\x21\x7b\x24\x8b\x4a\x4c\xb3\x26\x2f\x2e\x9f\xfc\xbb\x50\x38\x1e\x2a\x5b\x12\xb4\xa5\x79\xb6\xd1\x9d\x2e\x87\xf6\x9d\xea\x5a\xb9\xae\x6b\xdd\x4e\x1d\xb6\x4a\xdc\xdb\x61\x66\x7e\xd1\x8f\xf4\x5d\x2e\x4a\xb5\xe1\x21\x2c\x15\xf2\xa3\x90\xae\xd0\x98\x2c\xbf\x86\x3a\x52\xe5\xcb\x35\xf0\x85\x3e\x13\x95\x7e\x0d\xcb\x0f\x7e\x31\x68\x74\x8a\x90\x72\x0f\x09\xd6\x07\x81\x52\xc1\xc1\xc9\x75\x6a\x7e\xca\x2e\xc2\x5f\xe3\x36\x55\xde\x06\x17\xd9\x14\x65\x9d\xca\x3f\x36\x79\x7e\xf0\x1f\x0b\xc9\x09\x2b\x85\x40\x50\x5e\x58\xd3\xe8\x60\xf0\x87\xc1\xfe\x83\x73\xd1\x64\x83\x83\xbd\x69\x56\x64\xd5\xed\xe0\xd1\xec\x8f\x07\x7f\xfc\xfd\x1f\xb2\xc8\x6c\x28\x27\xaf\xff\x1a\xaf\xb4\xc0\x92\xa1\x73\xc7\x46\x27\xc0\xe9\x22\xa9\x4a\xdb\x50\xd2\x29\x44\xf0\x2c\x69\xd5\xb6\xca\x37\x73\x71\x91\x2b\xe7\x28\xf8\x71\x77\x87\x26\x8b\xdd\x73\x0c\xae\xb9\x8e\x9f\x9f\x3e\xf9\xfe\xe5\xc9\xe4\xdd\x93\xd7\x3f\x9c\x4c\x9e\xbc\x7d\xce\x9a\xf4\x33\x51\x80\xdc\x55\xab\x8e\x3a\x0e\x3d\x57\xb3\xc4\x53\x65\x8f\xf9\x77\xa0\x85\x35\xad\x0f\xed\x5d\x9c\x81\xaa\x24\x18\x74\xd7\x5e\xcf\xdc\xbd\x8a\xac\x59\x56\x24\x10\xa4\x0f\x14\xe8\xda\x65\x47\x94\x37\xb6\x66\x7c\x70\xf2\x1a\xfa\xf5\xe4\xe5\xcb\x89\x82\xb4\xf9\x29\x2d\xc1\xe6\x55\xa7\x80\xbc\xbb\x3b\x27\x91\xdc\xa5\x39\xa9\xfe\x13\x15\x07\xd0\x0d\x78\x7d\x7a\xf3\xf6\xec\xf9\x9b\xd7\x4f\xd6\x75\xcc\xe1\x4e\x55\xcc\x84\xbf\x9d\x9d\xbc\x3e\x9e\xbc\x7d\xf7\xe6\xec\xcd\xd9\xdf\xdf\x5a\xd8\xf5\xf2\x98\x57\xd3\xae\xd2\x69\xca\x48\x44\xd3\x94\x07\x06\xbd\x32\x3e\x7d\x4e\xcf\x9e\x3c\x7d\x71\xf6\xee\xc9\xd3\x93\xc9\x9b\xd7\x93\xe3\x93\xb7\xef\x4e\x9e\x3e\x91\x23\x4a\x6d\x67\x72\x9d\x70\x5a\x8d\xc0\xf6\x5e\xc9\x8a\xeb\x24\x82\x7c\x0c\x7f\x8f\x3a\x3a\xc8\x1c\xdc\xa9\xbd\xc1\xee\x89\x4a\xb5\x6b\x63\x7b\xcf\x8b\x0e\x0d\x85\x4d\x8b\x33\xab\x6b\x51\x35\x0a\x73\xf8\x45\x6d\xbf\xe8\x5c\x81\xc6\xc9\x82\x2a\xc8\x7c\x2f\x6c\x2a\x06\x2e\x9b\x55\x39\xf8\xd8\xb2\x60\xb5\x2c\x9e\x17\xc7\xbc\xb4\x49\xd9\xba\x6d\x64\x01\x84\x69\x9f\x12\xee\x5b\xc1\x33\x10\x9d\x07\x12\xcd\x3c\x4c\x92\x0b\xd7\xdf\xb3\xda\x48\x97\xcb\x7c\x96\xee\x0f\x3f\xc3\x6b\xb5\xaf\xd2\x3d\x0a\x7b\x37\xd9\x46\x43\x7a\x9d\x76\xb1\x1b\xc0\xf7\x60\x43\x00\xdf\x03\xc7\xd5\x47\x28\x3c\xef\x01\x0b\xcf\xfb\x31\x1c\xe4\xf7\xc0\x0e\xf2\x8b\x36\xfc\xae\x8b\x6d\x32\xed\x47\x4d\x5c\x50\xf8\x5d\x59\xbe\xac\xf1\x2d\x77\x3e\x3f\xcf\xa6\x1f\xc0\x9a\xe1\x49\x75\xa9\xe7\xa1\x3c\x7f\x2f\x07\xf2\x98\xfe\x9b\x37\x3e\xaf\xc4\xd1\xfa\xec\x36\xf1\xdc\x3c\x6f\x6c\x98\x4a\x3c\x66\xbf\xd7\x75\x60\x33\x48\x9b\xb8\xde\x80\x37\xf7\x01\x0a\x3c\x36\x3f\xd7\xf6\x60\x13\x44\x9b\x04\xdd\x36\x8b\xb9\x90\xfc\x30\x66\x5a\xcd\x13\xf8\x63\xf6\xdb\x54\x6f\x17\x3b\xda\x90\x4f\x6d\x8b\xba\xa3\xf5\x5a\x37\xac\x12\xf8\x99\xf7\x78\x34\x3e\x02\xea\x91\x64\xd0\x57\x10\x66\xbd\xe4\x8d\x30\xae\x92\x10\x50\xb9\x61\x97\x6d\x40\x76\x1b\xb7\x09\x38\x3a\x7c\x6f\x79\x25\x84\x55\x88\x10\x2b\xbd\x18\x52\xbb\x0e\x06\x23\xf7\xe8\x9c\x7c\x58\x3f\x80\x17\x37\x20\x77\x79\x69\xc7\x56\xda\x44\xf9\x21\xfc\x3a\xed\xec\xf0\x76\x94\x9f\x0c\x70\x6b\x7d\x00\x9e\xf1\x2a\xb1\x98\x67\x53\xe1\x35\x34\xfb\x94\x64\xd7\x4d\x82\x3a\x06\x35\x7b\xb3\x18\x8d\x25\x3f\x38\xcd\xe0\x91\x1b\xf2\x92\xe9\xd5\xb2\xf8\x00\x4f\x61\xa3\x71\x52\xe7\xff\x12\xe9\xef\xc5\xef\x92\xba\xc9\xaa\x26\x95\x15\x89\x62\x56\xa7\xb2\x36\x30\xf8\x1c\xde\x5c\xe5\x73\x01\xaf\x75\x74\x85\x92\xf7\xe3\x65\xd1\xa4\x12\xee\x3b\x59\xfe\xb1\xfc\x73\x24\x3f\x41\x43\x45\x9b\x89\x92\x69\x70\x0b\x0d\xe2\x5b\x24\x0d\x69\x1f\xda\x8d\x87\x98\x33\x82\xb6\xb1\x39\xdd\x5d\xc8\x8a\x87\x90\xb5\x97\x4a\xf0\xa1\x6c\xe1\x41\x8a\xbd\xaa\x20\x48\x5b\xa3\xa0\xb1\x5e\x7a\x4d\x40\x9c\x60\x05\xd6\xab\x50\xb2\x2d\xfa\x72\x9a\x9d\x01\x15\xd0\xd4\x66\xa5\xf6\xdd\x72\xb6\x37\x09\x98\x6c\x35\x63\x1d\x2d\xfd\x47\x2b\x97\x4a\x23\xaa\x1a\xdd\xdd\x39\x3d\x3b\x48\xe0\xdf\xa1\x22\x22\x03\x98\x8e\xc6\x43\x6c\x81\xb6\x22\x55\xc0\x58\xff\xe1\xba\x81\xc1\x04\x08\xef\x50\xad\xc5\xf8\x3b\x39\x57\xbc\x6e\x24\x70\x95\xdd\x9a\x27\x1c\x0e\xd4\xb6\x5d\xa7\x24\x34\xd6\x75\x4a\xa2\x2d\xd2\xa8\xd3\xdc\xe9\x4b\x4f\xc7\x80\x05\xc9\x81\x6d\x41\x02\x5d\x90\x97\xf1\x3a\x95\xbd\x46\x7d\xdc\xbc\x2c\xa2\x24\xba\xc8\xe7\x42\x5e\x20\xa3\x24\x9a\xe7\x85\x78\xbd\x84\xcb\x61\x12\x5d\x8b\xba\xce\x2e\x65\x72\x81\xb9\x85\xca\xa9\x9b\x6c\xfa\x21\x62\x0e\xa7\xd8\xfb\x39\x79\x2c\xbc\x5e\xa4\xf0\xed\xbc\xf8\xa9\xe7\x37\xc9\xc5\x43\xf6\x34\x5b\x48\x06\xff\x54\xd6\x78\x56\x01\xd1\x75\x64\x60\x1d\xc4\x87\x4a\x10\xe6\x08\x7f\xf6\x29\xdd\x07\xad\x70\x33\x4c\xa6\x2b\xbe\xb7\x87\x1a\xad\x23\x93\x0b\x4a\xe2\xe3\xb4\xb9\x5e\x78\x89\xc4\x14\x61\x2f\x8c\x1e\x33\x99\x2e\x38\xc9\xf1\x5a\xa6\x09\x83\x1b\x74\xd0\x04\x59\x9a\x6d\xb4\xbf\xdb\x64\x2a\xf7\x35\x6c\xcf\xbe\xd8\xae\xcb\xb3\xcf\x3a\xdc\x68\x9f\x75\xe8\xda\x67\xb1\xc0\x7c\x2e\x1c\x0b\xd4\x07\x7b\x3c\x84\xe5\x73\x81\x30\x4c\x9f\xce\x3f\x6d\xaa\x30\xc8\x69\x53\x75\x2d\x9a\x47\xf6\xa2\xf1\xcc\x75\x2c\x63\x9e\x37\xaf\x9f\x9e\xa4\x07\xc9\xe9\x8f\xa7\x6f\x4f\x5e\x1f\x9f\x1c\xa7\x87\xcc\x7b\xb7\x75\xda\x91\xb3\xdb\x6b\x08\x19\xc4\x8f\xc6\x07\x07\x4c\x2f\x00\x77\x59\x24\xdb\x07\x8f\x86\xf9\x77\x92\xa6\x1f\xa4\x8f\x50\x63\x17\xaa\x48\x53\x84\x1a\xe5\x63\xd0\xf0\xb8\x2a\x67\x26\x69\xef\x60\x2c\x77\x34\x59\x6f\xae\x3c\x4c\xe9\x2d\x6c\x26\x3e\x31\x53\x19\xf8\x57\x2b\x95\x12\x20\xc5\x6e\x5d\xa1\x44\xde\xeb\xe2\x84\x0a\xa1\x0f\x32\xd1\x64\x26\x1c\x1e\x69\xfb\xea\x6f\xe5\x69\xec\x3a\x60\x22\x14\x69\xa8\x28\xf6\xca\xd1\x1a\x73\x6a\x6f\xa9\xe5\xd4\x4e\x1f\xe9\x6e\x83\xa0\x82\x80\x76\x77\x9d\xce\xb9\x1d\x30\x83\x8d\x57\x1b\x2b\xee\xce\x21\xbf\x12\xcc\x7b\x0c\x55\xb6\x4d\xad\x23\xad\x0a\x45\xb0\x66\x6a\xec\xa0\x82\xf6\xf4\x24\x65\x73\x25\xaa\x27\xaa\x9d\x0e\x25\x20\xde\x3c\xa9\x01\xe9\x4a\xdd\x6f\x07\x87\x66\x0c\xa4\xdb\xc7\x88\x13\x73\x82\xe4\x09\x8b\x17\xe9\x93\xc0\x46\xf9\x98\xa8\xdd\xa4\xec\x1d\x8c\xc1\x51\x69\xcd\x92\x0e\x55\x77\x31\xf4\x89\xe6\x67\xd9\x38\x9d\xc5\x63\xa6\xfa\x39\xe3\x50\x79\x01\xf2\x20\xc0\x4b\x61\xbb\xae\x15\xf6\xfa\x70\x8e\xfe\x8c\x1c\xe7\x17\x17\xbf\xe2\x84\x24\xb3\xfc\xe2\x82\xea\x96\x7c\xcf\xff\xc8\xf9\x21\xce\x5e\x7b\x0d\xd8\x6e\xa2\x86\x6c\xe8\x6b\xa6\x93\xd6\x10\x03\x0e\xcf\x6f\x20\xa0\x27\xb7\x1a\x54\xa1\x44\x9d\xb9\xb5\x9b\x2c\x8b\x29\xa9\x98\x62\xc2\xee\xae\xd1\x24\x34\x52\x19\xe5\xf0\x9c\x70\x8b\x9f\x43\xc2\x3d\xbc\xdb\xc2\xb1\x42\x93\xda\xb9\x0d\x07\x91\x9e\x05\xf1\x4d\x53\x06\x21\x97\xa0\x8f\xf0\x7d\x97\xca\xc3\x29\x3c\x17\x44\x3a\xd9\xc6\x49\xc8\x2f\xfa\xa1\x31\xca\x8b\xf2\x2c\x9f\x3d\x31\x88\x8b\x57\x7e\x5a\xbf\x03\x91\xb1\xbd\x06\xbb\x42\xd0\x3a\xd6\x89\xdb\x4c\xd1\xd7\x98\x1d\xdd\xec\xc4\x69\x37\x70\x82\x7f\xcd\x59\x0c\xef\x6a\xce\x4c\xd1\x2d\x92\xc1\x25\x8f\x36\xcd\xd2\x3b\x6b\x18\x7a\xa2\xec\xe4\x35\x73\x85\xa6\x3e\x30\xe6\xf5\x28\xc1\x4b\xe0\xbf\xcd\x91\xe4\x76\x96\xed\x7b\x7c\xc3\x93\x47\x82\x9e\x73\x27\x26\xf1\xda\xed\x40\xc9\x9d\xfe\x1d\xb7\x84\xf0\xb2\x57\xc3\x66\x39\x7b\x87\xe3\xbb\x54\xb3\xaf\x06\x11\x4d\x75\x0b\x36\x84\xe6\xed\x99\x46\x4b\xa1\xd6\x70\x44\x2d\x37\xcb\x02\xc7\x6f\x15\x3a\x59\xdc\xb6\xed\xdd\xf4\xff\x6f\x1a\x37\xfa\x42\x8a\xd3\xef\x53\x37\x12\x5d\xbd\xed\xac\x77\x53\xe8\xe9\xae\x79\xad\x6d\xcc\xd6\xbf\xf0\xcc\x6a\xcd\x7e\x73\x94\x2b\x12\x94\x3d\x92\x9f\x86\xc8\xd4\x84\xe6\xc9\x5c\x45\x44\x4b\xe6\xa9\xe9\xab\x6f\xd1\xa8\xb2\x18\xd0\x28\x1f\x0f\x37\xd2\xd3\xd0\x50\xdd\x2f\x48\x53\x43\x77\xf4\x78\xdc\x30\xf8\x78\xc8\x90\xc1\x73\x6b\xae\x19\xfc\x25\x14\x69\xdb\x06\x7a\x1d\x72\x31\xea\xe2\xc5\x2d\xc0\xb0\x2b\xbb\x3c\xca\xc7\xbf\x28\x59\x07\x42\xa5\xeb\x51\x5a\x51\xce\x59\xc0\x10\x5d\xd4\xda\x85\xcd\x16\x4b\x52\x50\x08\x1e\x61\xee\x70\x0a\x4f\x9a\x46\x7a\x39\x63\x7e\x61\x39\x84\x36\x69\x98\x12\x92\x9d\x69\xea\xe2\xba\x5c\x8d\x35\xbc\x75\x71\xda\xcd\x8a\x55\xc1\xdf\x9d\x3d\x18\xf5\x95\x12\x7d\x24\x68\x97\x5d\x20\xa3\x08\xaf\x52\x79\xe2\xe9\xfa\xf0\x00\x34\xd5\xbb\x55\x83\xc1\x88\x39\x72\x3a\x7c\xfe\x7e\xe6\x71\xd6\xfe\x36\x1c\xfc\xd0\xec\x63\x8c\x11\xcf\x2f\x20\xea\x43\xbd\xab\x69\x35\x94\x29\xb9\x48\x65\x10\xb4\x15\x0f\x06\x63\xd4\x61\x7f\xb0\xc7\xe5\xf9\x7b\x78\xc6\x24\x95\x64\x33\x35\x8c\x6f\x23\xf4\xaf\x94\x80\xc6\xe1\x48\xd5\xec\xa0\x5d\x34\x64\x8d\x30\x6b\xdc\xa7\xf8\x29\x5e\x2d\xeb\xaa\xc0\x34\x7b\xf3\xb0\x55\x56\xad\x25\xa9\xe8\x25\xd5\xbf\x0c\xad\x5e\x65\x75\xc7\xc9\xf2\xd5\x6f\xe8\x4a\xc7\xdc\xc8\x3a\x6c\x9a\xb1\x37\x12\xde\xb1\x94\x7f\x04\xae\xb6\x1d\x92\x20\xda\x27\x7e\x79\xae\x0e\xad\x57\x6c\x2b\xfe\xd0\xfe\x7c\xaf\xb5\x30\xd4\x1b\xd3\xc8\x22\x05\xdb\x66\x26\x78\x63\x7c\x56\x56\x29\xff\xe0\xe1\x4b\x48\xc2\x8d\x96\x66\x41\xeb\x92\xe4\xc1\x41\x3c\xda\xa7\x73\xbd\xcb\x04\x25\xd9\x97\x60\x43\xcb\x9c\x14\x9b\xac\x27\x13\x3c\xcd\xb5\xc7\x01\x78\xab\xb7\x43\x9e\xa4\x65\x11\x70\x16\xa7\x99\x21\xfb\xb3\x4b\x04\xed\xbb\x50\x1b\x6d\xf4\xa1\x16\x72\xe2\xf6\x39\x22\xe8\x8d\x22\x67\xdf\xf5\x54\x40\xee\xbc\xce\xd3\x56\xc0\x5f\x93\xd2\x14\x70\x8a\xa9\xd7\xa4\xe4\x7b\x50\xae\x39\xf9\xdb\xdb\x27\xaf\x41\xbf\xe5\xe1\x3f\xfa\xfd\xc7\x47\x10\xac\xe3\xbf\x7e\x1e\xc4\xff\x15\xff\xbc\xea\x0f\xfe\x2b\xfe\xb9\xfd\xcf\x87\x5d\x82\x7f\x4d\x29\x9e\xb3\x89\x05\xfa\x6e\x62\x1c\x26\x2a\x36\x34\xd3\xab\x64\x51\x89\x8b\xfc\x53\x22\x09\x80\xdc\xdc\x4a\x50\x13\x67\xbb\x07\xb1\xb5\xbb\x4c\x16\xbf\xaf\xb2\xa9\xa0\x06\xc5\x8c\x69\x70\xf7\xa6\x68\xad\x2d\x77\xf6\x2c\x2f\x7a\xa0\x23\x58\x27\xbd\x68\x2f\x12\x83\xcb\x41\xef\xff\x2c\x6b\x51\x0d\x56\xe0\x3c\x17\x76\xf3\xde\x3c\xc3\x5f\xed\xff\xe9\xd5\x57\xe5\x72\x3e\xeb\x9d\x0b\x1f\xcc\x40\x45\xb0\xe5\xc3\x20\x52\x07\x7b\x03\xf1\x49\x4c\xd5\x50\xe2\x78\x85\x63\x4c\x01\x76\x74\x30\x1e\xca\xc1\xd2\xd7\xa1\x0e\x2a\x02\x3c\x06\x5c\x75\x9b\x7e\x94\x44\xb1\x21\xa9\x7a\x79\x71\x91\x7f\x8a\x57\x0a\x7d\x7d\xac\x6f\x8f\xd2\x5b\xe5\x80\x51\x67\x53\xc3\x6d\xdb\x41\xfe\x97\xa2\x59\x43\xfb\xdb\x84\xf1\xf9\xda\x74\xef\x7a\xc7\x3b\x60\xde\xf1\x02\x9e\xe9\x0e\x8d\x67\xba\x4d\xc4\x68\x1b\xac\x59\xae\xe7\x57\xad\x6d\x54\x68\xfc\xa7\x24\x79\x7a\x10\xb2\xc2\x4d\xd3\xf4\x70\x77\x17\x5b\xee\xf3\x80\xdd\x71\x9a\xa6\x11\xaa\xfc\xc4\xab\x3c\xdd\x1f\x76\x54\x3c\x3a\x18\xeb\xdd\x7e\x2e\x8a\x34\x6c\x0d\x69\x02\x7e\x77\xdb\x44\x82\x97\xf1\x75\x26\x91\x1d\x73\x9f\x17\x75\x53\x41\x67\x32\xe0\x17\xef\xf1\x0c\xf7\x8b\x6c\x76\x9b\xf6\xb9\xa6\xba\x7d\x2a\x57\xca\x9a\x07\x32\x9e\x8f\xca\x4a\xcb\xf3\x7a\x5a\xe5\xe7\xf2\xfc\x1f\x29\xe3\xe0\x15\x46\xfb\x5e\x94\x8b\xe5\x3c\x6b\x84\xe1\x10\xf4\x68\x0a\x7d\xfc\x9b\x8b\xc4\x68\x9c\x98\xda\x86\xee\x8d\x4a\x37\xe3\x5d\xa6\x4c\x1e\x07\xa3\x80\xdd\x26\x65\x00\x56\x6a\x68\xa4\x56\xe0\xd3\x8c\x79\xbf\x81\x13\x9c\xc1\x92\x63\xde\x16\x0d\x92\xc9\x00\x54\x83\xab\x23\x53\x27\xe0\x78\x9b\xfc\x5a\x78\x56\xa2\xa2\xba\x48\x83\x3a\xc8\x37\x79\x31\x2b\x6f\x1e\xe3\xbf\x81\x84\x2b\xab\xeb\xac\x98\x8a\xbb\xbb\x55\x7b\x44\x28\xbc\x28\x52\x99\x33\x28\xca\x9b\xbb\x3b\xf8\x75\x5d\xfe\xeb\xb5\xfe\xb8\x11\xe7\x1f\xf2\xc6\x7c\x5f\xd7\xe6\x77\xf9\xba\xbc\xd1\x67\x7b\xf1\xf8\xa2\x80\x40\x69\x7d\x99\x17\x1f\x79\x8a\x93\x7b\xe0\x42\x2b\x6b\x44\xdb\xf6\x63\xfe\xc4\xa8\x48\x18\x2d\x63\x17\xd9\xed\xbc\xcc\x8c\x00\x43\x05\x81\x73\xe7\x92\xa1\x2d\x91\x68\x81\x0d\x9d\x5c\x80\x90\xfe\xe8\xd9\xbb\x1f\x9f\x9e\xfd\xf8\xee\x04\x74\x42\x9f\x3d\x7f\x79\x12\xaf\x14\x64\x2a\x0b\xee\x45\x47\xbd\x68\x8f\x1a\xa4\x09\x19\x4e\xcb\xa2\x2e\xe7\x62\x20\x21\xfb\x0a\x1c\x2f\x04\xec\x16\x69\xfa\xe1\x91\x20\x4e\x7d\xcb\xef\x99\xae\xab\xa4\xd4\xbe\xf7\xab\x11\xae\xef\x3a\xef\xd8\x49\x31\x63\x7d\x63\xfb\x84\xc4\xd1\xb9\xb8\x28\x49\xd7\x18\x48\x5e\x75\x03\xc5\x31\xbe\x2c\xc2\x48\x68\xdc\x0e\x9b\x15\xa0\x72\x0c\x88\xa4\x7e\xde\xd2\x28\x37\xe4\x3b\xc0\x0c\x9c\x50\x40\x64\xac\xe6\xd5\x78\x06\x08\xa2\x80\x7b\x0b\x68\xa6\x57\xd0\x43\x11\xaf\xa8\x70\x4a\xff\x41\x53\x5c\xcd\x9b\xf8\x34\x15\xa0\x03\x92\x8a\x6e\xc9\xc9\xe7\x8d\x4f\x8f\x27\xbb\x68\x44\x15\x1a\x4e\xe2\xa0\x00\xe6\xfd\x73\xe6\x90\x49\x58\xf8\x0e\xa8\xc5\x2c\x1a\x1d\x5d\x02\x17\xb3\x8e\x52\xf3\x93\x4b\x0f\x69\xe7\xd1\xfc\x9b\xf2\x0c\x0e\x7b\x08\x44\xcf\x50\xec\x1a\xb1\x2d\x83\x08\x9d\x96\xa3\x11\xaf\xef\xa0\x0c\x0a\x79\x98\xd4\x21\x0b\xd4\xfe\x08\x09\x69\x1a\xfd\x57\x24\x69\x5f\x6e\x90\xb0\x15\x46\xa3\x7f\xfc\x2c\xf9\xd1\x48\x2b\x5e\xe9\x2c\xf2\x94\x8e\xcd\x62\xfa\xfb\x32\x2f\xfa\xd1\xcf\x3f\x0f\x22\xb0\x18\x54\xe9\x7b\x51\xff\xe7\x9f\x07\x83\xff\x8a\x1f\x47\xce\x59\x91\xae\x68\x34\x47\x6a\xbc\x50\xe0\x48\x6e\x42\xef\xc4\xe5\xc9\xa7\x45\x3f\xfa\x47\xb4\x47\xb5\xfc\x67\x14\x13\x3e\x8e\xf0\x5f\x3b\xe4\xe7\x81\xb3\x77\x2b\x47\x57\xab\x56\xed\x7e\x26\xcf\x11\x82\x51\xb2\x39\x36\xcc\x8c\x2c\x0b\x33\x27\xac\x6e\xa3\x56\x71\x8f\x03\xca\x3a\x86\x28\x68\x17\xaf\x93\xd4\x29\xda\x96\x57\xe2\x68\x28\xea\x41\x59\x43\x60\xbd\x4c\xd9\x6f\xfe\xb2\x55\x8b\xa6\xcf\xcf\x48\x78\xe6\x0d\x56\x06\xb0\x29\xfc\xed\x62\x68\xea\xc9\xf9\x3c\x2b\x3e\x6c\xc1\xc9\x70\x77\xd6\xbf\x09\x33\x13\xf2\xae\xeb\x5c\xd6\x36\xf1\xb3\x79\xfd\xbd\x1c\x6d\x9f\xc5\x8b\xd3\x5e\x0d\x64\xda\xdd\x9d\x11\xff\x31\x73\xf8\xdd\x5d\x54\xb3\x6e\xa6\x57\xfd\x87\x3f\x9f\x3e\x8c\xc9\x3b\x7d\x27\x9b\xa8\x51\xf5\x25\x6e\xd2\xbf\xb2\xa3\xf0\x5f\xd4\x09\x77\xc0\xa3\xf1\x23\xbb\x06\x36\x07\x06\xdf\x8e\x93\x06\x9c\x02\x89\x6b\x73\x80\xe3\x8d\x01\xa7\xc4\x72\xc4\xe3\xce\x15\x05\x05\xdc\xdd\x55\x0c\x7e\x44\x9e\x2c\xe4\x6c\xed\xc3\x49\x8d\x6e\x31\x02\xe6\x0e\x7d\x8a\x71\x0f\x00\xbd\xbc\xee\xe9\xdc\xd9\xa0\xf7\x76\x2e\xb2\x5a\xf4\x24\xce\x94\xe1\xdc\x09\xc2\x15\x75\x23\xb2\xd9\x20\x4a\x28\xc5\x52\xeb\x23\x27\x1c\xf0\xb7\x8b\x30\xa9\x9c\x13\x61\x16\xc9\x3c\x94\xc7\xaa\xec\x26\x3d\x24\x9a\x30\xe5\x7d\xa9\xc6\xe8\x46\x42\x61\xd3\xac\xa7\x94\xe9\xcd\xd3\xc2\x81\x49\xe6\x5a\xec\x14\x70\xb1\x10\xeb\x66\x47\xe6\x6f\x31\x39\xaf\x01\x8c\xcd\x8d\x4c\xb0\xa7\x06\x5a\x92\x7f\xba\x27\xe6\xb5\x93\x4b\x15\x53\x4e\x07\xf6\xe7\xf9\x79\x95\x55\x21\x91\xd8\x67\x8a\xbf\xd6\xce\xc5\x1a\x21\x56\x60\xf9\x6e\x12\x62\x29\x53\x17\x37\x9f\x9b\xba\xe8\xf1\xb9\x97\xa2\x89\xc9\x21\xc9\xaf\xa4\xb8\x97\xf9\x39\xbe\x86\xed\xab\x0d\xe4\x25\x80\xdd\xba\xd7\x46\xdb\xcb\x91\xa9\xcc\x72\x71\x94\x5f\xf4\x4d\xce\x28\x1f\x0f\x64\x59\x49\x50\x50\x05\xd1\x98\x05\xd1\xb6\xed\x90\x55\xa6\x5c\x1f\xd8\xad\x27\x1f\x45\x55\xe7\x65\x81\x2f\xb7\xa6\x8f\xea\x4a\xc9\x2a\x00\xbe\x64\x25\xd3\x8f\x78\xc9\x23\xfa\xdf\xc6\xe1\xf6\x9e\x22\x2a\xfc\x81\xdf\xa3\x69\x62\x1e\x38\x56\xf7\xf6\x92\xfd\x64\xfb\xde\xcc\xc4\xbb\xe0\xf8\xd5\x45\xef\x3c\x75\x3b\x80\x2f\x7d\xe7\xb1\xdf\x0d\x25\x60\x34\x39\x89\x04\x4c\x0e\x62\xab\x49\x21\xe9\x8d\x79\xc8\x52\x02\x4c\x25\xb4\x63\xc5\x35\x94\xac\xc7\x48\xe3\xe6\xf9\x39\x4c\xb3\xac\x7e\xa0\xb0\x85\x8e\x86\x9c\xe9\x96\x97\xdc\x8e\xc5\x6c\x60\x3a\x56\x2d\xc4\xbf\xdf\xe2\xb0\xd6\x82\xed\xdf\x84\xff\xe9\x10\x6f\x1f\x76\x6c\xc0\x74\xf7\x79\x05\x8f\x17\x6c\xa6\x29\xfd\xcd\xf9\xfb\x64\x5e\x5e\x9e\x95\x4f\xf1\xdb\x5c\x86\xc9\x46\x7d\x40\x80\xfa\x16\xf5\xe6\xfc\x7d\x1a\x84\xd0\xca\xac\x74\x20\x53\xf2\x8e\x63\xd6\xca\xaa\x51\x05\xe9\x89\x08\xf4\x20\xac\xb2\x6f\xac\x33\xfd\xb1\x49\x45\x09\xc4\x91\x3c\x44\x86\x4c\xcb\xc8\x34\x4e\x6f\x74\xa8\xeb\x6d\x3b\xee\xe3\xc3\xe5\x1b\x18\x2f\xd2\x67\xe8\x61\x01\xf4\x87\xbc\xec\x60\x96\xd7\x8b\x79\x06\x92\xc3\x34\x52\x77\xcc\x68\x4f\x76\x4d\x0b\x92\x18\xbc\x6d\x49\x6c\x6f\x9c\x64\x2d\xe1\xd9\x06\xca\x0b\x98\xfb\xf4\x13\x25\xbd\x28\x1e\x62\x6f\xfb\x54\x30\x6e\xb9\x2e\x12\x5a\xbe\xbe\x2d\xe7\xb7\x17\xf9\x7c\xde\x6f\x44\xdd\x24\x0a\x10\xf6\x18\x99\x12\xaf\x9a\xea\xb6\xe3\x49\x00\x2b\x80\x1b\x7d\x96\xcf\xc5\xec\xa8\x17\xed\xe9\x96\xe0\x4e\xdc\x87\x45\x00\x7e\x21\xce\xf2\x6b\x51\x2e\x1b\xee\xfa\x0c\x6b\x05\x90\x36\xd9\x77\x54\x67\xf9\x9a\x94\x93\x71\x64\x93\x68\x34\x2f\x2f\xa3\xf8\xee\x8e\x6c\x58\x21\x12\xba\x0b\x22\xd3\x38\x0c\xb4\xe4\x02\xe1\x32\x65\x50\x79\x71\x51\xba\x40\x32\x8d\xc3\x80\x0d\xaf\x0b\x04\x89\x12\x6a\x43\x61\x44\x9b\x5b\x1a\x53\x25\x9c\x3d\x2f\x5d\xd7\x86\xeb\x6c\xd1\xf9\x9c\xb0\x5d\xa8\x24\x6d\x37\xfb\x0b\x1a\x7d\xb8\x01\x87\xd6\xed\x6b\x6e\x6c\x9e\x03\x16\x9b\x27\x14\x57\xe7\xd0\x89\xab\x13\x32\xbf\x7d\xe4\x98\xdf\x06\xec\x31\x7e\x67\xec\x31\xd8\x76\x48\x01\xb7\x30\x9c\xdb\xb2\x59\x2c\x2d\x07\x8b\x12\xd3\xbd\xbc\xc0\x50\xe2\xa8\x21\xe2\xda\x00\x48\x90\x38\x5e\x61\x59\x78\x59\x18\xc3\xdb\x36\xfc\xd2\x12\x25\xcc\x6e\xad\x86\x5f\x65\x8b\x7e\x59\xe5\x97\x79\x91\xcd\x93\x42\xdc\xbc\x61\xb2\x20\x08\x39\xa1\x32\x07\xf2\x0b\x83\x83\xc5\xe8\x64\xa5\x4e\xb1\xe7\x0a\x00\x13\xe3\xa1\xae\x65\xa0\x63\x56\xb0\x34\x2a\x8a\xff\x58\x3a\xdd\xab\x74\x6d\xc4\x5f\x19\xaf\x34\x08\x67\x7a\xff\xa6\x9a\x89\x4a\xcc\x4e\x41\xe6\x80\xc1\x02\xe6\x22\xab\xfa\x71\x6b\x72\x08\xd7\x01\xdb\x7d\xb9\xbd\x18\xb8\x76\xc8\xca\x18\x13\xa9\x15\xd4\x78\x64\xed\x22\x79\x3d\x58\x54\xa2\x16\xc5\x54\x9c\xa2\x23\x4c\x48\x9b\xa3\xea\x1b\x58\xab\x5a\xb6\xb2\x88\x4a\x49\x3a\x29\xd1\x0f\xc6\xc3\xe7\x95\xb8\xb5\x82\xa0\x36\xd5\xf5\xca\xe3\x44\x96\x45\x67\x56\x1a\x4a\xab\xdc\xb0\xb4\x91\x84\x1b\xa3\xd3\x94\xb9\x56\x40\x83\x68\x6e\x64\xe2\xfa\xd5\x3b\x47\xee\x71\xbd\x4e\x98\x65\x92\x5a\x66\xc6\xb2\x50\xa2\x3c\xf6\x42\x0e\x3c\x04\xeb\x67\x52\xdb\x54\x96\xee\x9a\xfe\x23\x42\x4f\xf7\x80\x5d\xc9\xdb\xe4\x2a\xab\xbf\x78\x84\xda\x3d\x96\x8f\xf3\x80\x4d\xfa\x45\x91\xd4\x62\x7e\x61\x5e\x25\xb0\xbe\xa6\x84\x83\xb3\x1f\x5b\xc2\xbb\xf7\x29\xeb\xf1\x30\xff\xf3\x7b\xbc\x40\x5c\xd0\x89\x0a\x1e\x51\xe7\xa8\x85\x27\x47\x4f\x95\xac\x1d\xbd\xb2\xdb\x49\xe4\x6a\x3c\x72\x0e\xf1\x9a\x42\x71\x1b\xf2\x1e\xd6\x40\xe2\x66\xf4\xb0\x88\x5d\x14\x80\x43\xed\x41\x68\x34\x4a\xce\x29\x1a\x1e\xc8\x40\x6e\x23\xb4\x3a\x60\xd1\x7b\x4b\x50\xc5\x42\xa7\xe5\xaf\x5d\xde\xbc\xca\x16\xe9\xab\x6c\x31\x7c\x95\x2d\xd6\x2f\xd6\x57\xd9\xa2\x05\x28\xb6\x3c\x11\x8d\x47\xfb\xc9\xa5\x60\x46\xdb\xda\xa3\x2e\xb5\xc5\xda\x4d\x2c\x42\xf8\xc0\xdc\x4d\x62\x3e\x52\x6e\x9b\xd4\x4e\x7d\xdc\xfd\x3d\x8c\x4f\x8f\x34\xd9\xaa\x11\xd8\x3b\xb3\xd9\xac\x4f\x21\xf1\x4d\x5b\xb8\x11\x0e\xb5\x2f\x2b\x25\x1a\x82\x10\x43\x9c\xbc\x03\x0b\xf8\x83\x15\x00\xeb\x9e\x5d\x52\x6e\x8d\x3d\x7b\x32\x09\x45\x11\xaf\x48\x09\x07\x0b\xd0\x3a\xe7\x9d\xdf\xa6\xdb\xc3\x0d\x8e\x6b\xec\x15\xfb\x05\x73\x17\x1c\x47\x60\xbd\xea\xe7\x44\xb3\x6a\x37\xe2\x0f\x27\x50\x5d\x0e\xfd\xde\xfa\x5d\xb3\x1f\xb5\x60\x5d\x6b\x3a\x22\xec\x81\x73\x03\x77\xd1\x6a\xe7\x68\x78\x34\x03\x72\x89\xfc\x63\x67\xc1\xfd\x94\x37\x57\xc7\xc8\xb6\xf6\xcb\x05\xa9\x9f\xbd\x52\x2e\x35\x58\xf0\x56\xe2\x6d\xd1\x29\x11\x41\x5a\x89\xad\x5d\x9b\xb7\x10\x75\xed\x92\xfb\x58\xd8\x8a\x6e\xd4\xb9\x50\x67\xac\xe9\x56\x6b\x18\x16\x31\x6f\xcc\xb3\x48\xb6\x16\x79\xdc\x09\x6e\x3b\xd3\xd6\x53\x71\x95\xd5\x14\x24\x41\x0e\xfd\x2a\xab\x35\xb9\xab\x1c\xdd\x75\xab\x21\x59\x9d\xc1\x1c\xb8\xcb\x36\x26\x20\x16\x06\x3d\x9c\x62\x0b\x90\x2c\x17\x84\x9c\x67\x9e\xad\xe9\xd4\x42\x79\x37\x1e\x80\xc9\x0a\xec\x82\x21\x9a\xe0\x68\x5f\xf1\xfa\x8f\xbc\x5e\xb6\xb1\xe3\xe2\xce\xec\xd1\x6c\xbb\xb6\x20\xd4\xe6\xec\xa4\xb1\x46\x53\xfb\xb3\xeb\xfa\x20\xaa\xcb\xfb\x7b\xb6\xdb\xf4\x64\x02\xb5\x1a\xe6\x75\xb9\x98\x65\x0d\x77\x5e\xaa\xf8\x66\x9d\x21\xaf\x99\xf4\xd1\xc1\x40\x1b\xb3\x3e\xaa\x95\x78\x69\x2a\x45\xfc\xb4\x62\xa7\x09\xa6\xf3\xd2\x94\x7f\xca\xb7\x51\xc4\x21\xec\xdc\xeb\xba\xb4\xe1\xb6\xb5\x29\x96\x6c\x67\x86\x09\xa3\x6b\x25\xd3\xa3\xbc\x93\x5a\x9e\xd7\xa2\xfa\x28\x3c\x85\x4a\x1d\x72\xf6\xff\x8e\x28\xb2\x5f\xc1\x97\x40\xe5\x44\xea\x0c\x68\x72\xba\xfe\xa0\x1e\x31\x7f\x50\xdb\x5c\x36\x43\x3e\xa3\x1e\x39\x3e\xa3\xd6\x5f\x48\xbb\xae\xbe\xdf\x3a\x57\x5f\xcf\x35\xc2\xb7\x1b\x5d\x23\x7c\xeb\xba\x46\xb8\xa9\x9c\xe1\x4a\x08\x99\x48\xb8\xf8\x20\x80\xdf\xf4\x9b\x51\x39\x1d\x6e\x13\xbe\xb5\xdc\x26\xac\x8d\x10\xfb\xfb\xad\xe3\xbe\xfe\xe1\x5e\x61\x5f\xff\x10\x8e\xfa\xea\x39\x14\x75\x48\xd3\xf3\x38\x0a\xa5\xbe\xc7\x85\xe7\x06\xac\x1d\x50\xba\x8a\x31\xf7\x86\x56\xa2\x1f\x7f\x96\x65\x52\x0c\x2e\xf4\x73\xd4\x05\x6f\xe7\xab\xfa\xbf\x07\xdd\x96\xb5\xad\xd8\x20\xac\xad\x4d\x65\x43\x50\xaa\x5d\xad\xfe\xed\x85\xb9\xe5\xb6\xb5\xa6\xad\x6e\x78\x3b\x1f\x8a\xbc\x3b\xf9\xef\x1f\x9f\xbf\x3b\x39\x4e\xb2\x89\x5c\x7c\xd7\xd9\x22\xc9\x26\x6a\xa9\xd1\xff\x24\x9b\xa8\x85\xa5\x5e\xa3\x36\x85\xbc\xb5\x7c\x6a\x70\xb5\x9b\x85\xa8\x9e\xd9\xb7\xb3\x4a\x34\x2c\x66\xd6\x64\x52\x88\x4f\xcd\xa9\x84\x53\xf1\x97\x54\xe0\x42\x93\x03\x8f\x94\xe0\x36\x89\xf9\xa1\x91\xa0\xdc\x19\x8d\x57\x08\xf4\xed\x43\x71\x35\xe0\x8c\x82\x38\xa2\x3c\xd2\xbc\xef\x2b\x43\x36\x78\x3d\x40\x68\xb0\x77\x50\x01\x93\x74\xaa\x15\x4f\xf7\xda\xf3\x92\x81\x40\x51\xec\x14\xd2\x11\x74\x65\x7d\xc1\x1e\xe6\x45\xde\xbc\x92\xc0\x7d\x28\x82\x51\x36\xc8\x25\x70\xbd\xbb\xcb\x1c\x5a\x7d\xb7\x1f\xaf\x00\x46\x55\x0e\xf3\xaa\x45\xd5\xec\x25\xe7\x13\x54\xf0\x09\x9e\x62\xb3\x62\x0a\x4e\x4f\x65\x11\xcd\x6a\x7d\x42\xf9\xbf\x4c\x83\xeb\x33\xe4\x0e\xb1\x72\x16\x8b\xe3\x93\xe2\xec\x20\xa7\xd5\x03\xc0\x4f\xf6\xe0\x4c\x72\x57\xf6\xe4\xdc\x61\xd9\x85\xfa\x1c\xaa\x80\x72\x83\x09\xa9\x3b\x69\xfa\x7d\x59\xce\x45\x56\xa8\x4f\x94\x88\xa9\x2f\x74\x73\xa4\xbe\x60\x93\x54\x1f\xc7\x59\xa3\xeb\x40\x17\xba\x30\xbe\xa7\x6f\x5e\x9f\x3d\x7f\xfd\xe3\x09\x08\x1b\x2d\x8a\x60\xaa\xd5\x86\x42\x92\x6b\xc4\x91\x3a\x27\xe0\x95\x43\x26\x05\xf0\x68\x5d\x88\xb0\x9c\x06\xc7\x18\xca\x78\x05\x52\x08\x57\x5d\x69\x5d\x88\x14\x12\x2c\x3c\xb3\x19\xb0\x6e\x18\x88\x75\x2e\xde\x2c\xa6\x59\x23\x8a\xac\x11\xb3\x57\xce\xa8\x30\x4f\x26\x80\xb6\xb5\xba\xf3\x25\xe7\x59\x6d\x1e\xa3\xa6\x59\x53\x0f\xe9\x3f\x09\x2c\x47\xa6\xe0\xf8\xee\x4e\x42\xf3\x94\x21\xb9\x97\xb7\xc0\x80\xab\x84\x2a\xe8\xff\x63\xfa\xaf\x9c\x9e\xf9\x25\x8e\xbc\x24\xad\x2b\x89\x45\xcd\x20\x2f\xf3\x8f\xc2\x9c\x4d\xb0\xda\x31\x9c\xb4\xbc\x85\x28\x19\xbd\x1a\xdd\x4c\xd4\x53\xb2\x02\x84\xed\x48\x1f\x35\x5a\x18\x80\xb1\x81\x2c\xc7\xb5\x16\x24\x44\x49\x26\xf7\xfd\x76\x86\xf5\x75\x77\x07\xd6\x52\x06\x18\xf6\x0c\x07\x64\xa7\x6f\x25\x70\x2a\x72\xcf\xc2\xd8\x8d\x21\x70\xdb\xea\xd0\xab\x7a\x0b\xd1\x71\x54\xb5\x96\x3e\xc6\x22\x96\x6c\x45\xdf\x4a\x4a\xac\x86\x21\x49\x5f\xd2\x74\x03\x16\x8a\x71\x3d\x22\x7a\x29\x68\x95\xb2\xc3\xeb\xc0\x2d\x96\x90\xe3\x36\x58\x08\x20\x16\xc1\x52\x86\xfd\x96\xa7\xb3\xdf\xa0\x99\xa2\x91\x69\xf6\x0f\xa3\xe5\xcd\x80\x4d\xa8\x1f\xf8\x54\xe4\x03\xa8\xa0\x7e\x73\x68\xf6\x4e\x27\x4f\x95\xa7\x6c\xe5\xd8\x56\x16\x46\x88\x41\xe3\xc6\x11\xcb\x85\x80\x97\x63\x36\x10\xbb\xc3\x1a\x04\xf6\xde\xd0\xf6\xa7\x21\x68\x61\xe8\x31\xb8\x19\x7d\x1e\x25\x50\x87\x34\x22\xc6\x90\x35\xe4\x80\x77\xc0\xab\x5c\x1b\x05\xaf\x24\xcf\xfe\xd5\x06\xbf\xc3\x46\x6f\x79\xa6\x07\xe5\x22\x71\xf3\x7d\x56\x8b\x14\xef\xb3\xab\x36\x31\xc0\xc9\x55\x56\x2b\x9e\x81\x3c\x22\xbb\xb7\x5b\xe3\x23\x7f\x07\x7e\x6e\xba\xd9\xaa\xb2\xac\xc7\x78\xad\x05\x71\xbc\x3a\xa9\x34\x44\x1c\xaf\x78\x1f\xe0\x61\x81\x3a\x4c\x77\xe3\xd0\xf2\x58\xa8\x8d\x15\xa3\x13\xe8\x01\x25\x2b\x65\xd5\x64\xd7\xa1\x41\x5b\x0c\x97\xa8\x1b\x8c\x15\xe0\x60\x02\xf4\x9a\x5a\x6c\x14\x8b\x59\x20\x61\xac\xd0\xf9\xaf\xcb\xea\x1a\xb4\xa3\x4d\xcc\x3a\xd9\x0d\x36\x87\xd7\x18\x3d\xbd\x9e\xea\xdd\x9f\x76\xd7\x44\xce\x44\x5e\x10\x9f\x01\x79\x7c\x73\x32\xdb\xad\x15\x1c\x4e\xb1\x93\xbb\xbb\x66\xc1\xfb\xe7\x9b\x2a\x80\x9b\xce\x8a\x22\x21\xad\xdb\xc4\x39\xc1\xd1\x2e\xd3\xb2\x2d\x05\xe5\xc7\x7c\xf7\xb6\x43\xe6\x42\x00\x52\x1c\xd7\xee\xae\xe6\x6f\x91\x2b\x52\xe3\xfd\x00\x41\x83\xf6\xef\xee\x3e\x08\xd0\x4c\x98\x06\xd7\x7f\xa4\xf3\xaf\x9d\xc5\x11\xa9\x81\xac\xdb\x3d\x1c\xec\xd3\x0a\xd2\x3c\xa3\xc2\xb9\xd7\x49\x95\xa1\x7a\x69\xb5\xe5\x2d\xd3\x0d\xad\x68\x02\xff\x48\xc4\x6d\x26\x80\xd3\x70\xb0\x96\x00\xf2\x4d\x00\x68\x3e\x01\x14\xf6\xcf\x16\x54\x01\x07\xa2\xd8\xa9\xe4\xda\x26\x3c\xd5\x9e\x32\xd1\x07\x4e\x17\x19\x13\xd9\x0b\x97\x2e\x13\xfb\x6a\x81\x77\x1b\x08\x6b\xa9\x63\x64\x92\xb4\x5e\xf7\x15\x2d\x95\x6d\x19\xbe\x0e\x63\x69\xab\x97\x63\x17\x3d\xcd\x72\xe4\x86\x31\x73\x94\x8f\xe1\x90\xad\x53\x8f\x5d\x4c\x0c\xb7\x87\x10\x69\xaa\x88\xdf\x36\xc8\x87\x5c\x27\x76\x34\xb0\x5f\xea\xb4\x18\xdc\xe4\xf3\xf9\x2b\x8d\xbb\x78\x15\x48\xa4\x5a\x5a\x9b\xc5\x0a\xf3\x7c\x5d\x64\x1d\xe0\x00\x87\x0a\xd3\xeb\x2b\xf4\xd6\x41\xa8\xaa\x0b\x7c\x12\x50\x91\x88\x48\x0e\x09\x3f\xc3\x01\x88\x34\x92\xe0\xd1\x01\x1e\x70\x41\xc0\xbc\x61\x53\x43\x9e\x51\x12\xe0\x36\x3b\x9b\x9e\x01\xef\xa6\xa6\xa2\x6c\xc8\xbb\x1a\x60\x5c\x87\xdd\x40\x78\xf5\x69\xae\x7b\xfc\xd2\x25\x27\xd4\xa1\xf6\xc1\x26\x9a\xd7\x37\x83\xc1\x84\x02\x92\xc6\x2b\x7d\xef\xa6\x4d\xc0\xca\x4e\x0c\xc5\x83\x96\x91\xa4\xdd\xe7\xa7\x93\xef\x9f\xbf\x3e\x7e\xfe\xfa\x87\xf4\xe1\x3f\x06\x7b\x24\x20\xf9\xcf\x87\x66\x99\xcc\x44\x23\xa6\x0d\x65\x38\xe7\xf9\x35\xcc\x8a\xa9\x03\x4d\xf7\x70\x3e\xe0\x8c\xc7\x52\x75\x7a\x3d\x50\x3f\xf1\x5c\xa7\x8f\x78\x15\x80\xd8\x70\x25\x56\x60\x80\xe8\x40\x69\xcd\xd8\x9a\xb4\xb8\x55\xbf\xc2\x3b\xcd\xb4\x2c\x0a\x33\x46\x64\x5a\xae\x3b\x47\x00\xe3\xa7\x8f\xa4\x29\x61\xdd\xe9\xf1\x30\xb2\xf5\x06\x99\x5a\xbd\x60\xe5\xe2\x55\x53\xa6\x1f\xc4\x2d\x3d\x4a\xef\x27\x0f\xfe\x10\xb3\x6c\x7e\x8a\x7e\xaf\x4a\x38\x75\x92\x8a\xc9\x50\x7d\x36\x65\xbf\x29\x89\x69\x50\xa0\xf2\x4a\xae\xe6\xb1\x29\xb5\x5d\x60\x6b\xaa\x00\x34\x60\x5c\x60\xc5\x87\xa9\x06\xda\xd6\x9e\x21\xcb\x54\x2c\xaf\xaf\xde\x66\x55\x93\x67\x73\x85\xbb\x20\x4a\xf1\x7e\xa3\x94\x09\xf4\xdd\xa1\x3c\x7f\xcf\x6a\x2b\xe7\xf3\xf2\x06\x22\x21\x41\x21\x49\xfc\xce\x1a\x20\xe7\x3c\xf3\xe6\x85\xc0\x9b\xd5\x00\x79\x73\x13\xc1\xda\xdc\x1f\x10\x6a\x7c\x77\x47\x9b\x37\x7d\xab\x13\xcc\x4e\x1d\xca\x32\xa9\x55\xd0\xac\xd6\x81\x95\x2e\x8f\x8a\x7a\x9a\x3a\xa9\x78\x9e\xb9\xac\x04\x40\x3a\x67\x1e\xe8\x19\xa9\x36\x10\x0f\x00\x77\x04\xe3\x05\x90\x23\x97\x4c\xf1\x39\x45\x09\xfb\xea\x27\xae\x2f\x2b\x49\x97\xea\x71\xe1\x4d\xa5\xf2\xc0\x04\xad\x7e\x21\x6e\xe9\xa9\xe7\x15\xf3\x5d\x87\x66\x6b\x7e\x99\x91\x2a\xa3\x0d\xd0\x6a\xd7\x81\x52\xd8\x78\x8d\x37\x81\x2c\x2d\x19\xb2\x61\xec\x71\x78\x1e\xb4\x22\xbd\x82\x7b\xf0\xfb\x0e\x49\x45\x77\x15\x1f\xd3\xf0\xe5\xce\xdc\x8e\x24\x90\xea\xd6\xfa\x66\x24\x64\x12\x29\x17\x1c\xd4\x68\x8d\x02\xd6\xc9\x24\x4a\x42\x02\xd7\x78\xf8\xf9\x35\x9b\x3a\xbf\xa4\x36\xed\x2a\x44\x55\xa6\x71\xd4\x76\x7a\x04\xf4\xd1\xf9\x99\x94\xb5\x06\x5b\x9e\x68\x7b\xbb\xc1\x6d\xd3\x08\x55\xff\xf5\x2a\x66\x38\x64\xf2\x71\xff\x6e\x0b\x9c\x13\x6c\x64\x78\x32\x2f\x70\xcb\x8b\xe9\xad\xbb\x9e\xca\x8d\x31\xd1\xaa\x3a\x89\x25\x11\x8e\xd9\xb1\x09\x6b\x1c\xb4\x27\x46\x63\xb9\xd1\x06\x6f\x69\xc3\x10\xff\x6b\xcb\x9d\x6d\xce\x80\x86\x5a\xc7\x8e\xdd\x23\xea\x96\x38\x0b\x55\x5e\x49\x64\x06\xd9\x98\x9a\x1b\x4c\xdd\x54\xcb\x69\x53\x56\xd1\xdd\xdd\x4e\x58\x43\xc4\x61\xb7\xd8\x9e\xf9\xc1\x6c\x81\x8c\xb1\x57\x9b\x31\xbb\xec\xb1\xe2\x18\x60\x41\xe6\xe3\x0d\x90\x1f\x76\x70\x0a\x90\x9b\x1d\x38\x16\xc4\x2c\xdd\xe6\x7c\xc0\x7d\x5c\x15\x81\x2d\x9a\xba\xa5\xd3\x70\x6f\x35\x3d\xd3\xdb\xf3\xee\x6e\x28\x6c\xb9\xea\xed\x56\x1b\x16\xc5\xd2\x5b\xcf\x38\x0d\xed\xc7\x2e\x9d\x6f\xf6\xff\xe4\x1a\xad\xe6\x35\x99\x85\x0e\xda\x36\x74\x86\x5e\x2b\x4a\xdd\x18\xbe\x3b\x39\x88\x87\x0e\x71\xa3\xcc\x3f\x9b\xd7\xc2\x3a\xa0\xb9\x32\x03\xbb\xd3\x74\xa9\x1b\xa0\xe8\xdf\xe8\xdd\x40\xf5\xc6\x3c\x50\xbf\x4e\x38\x01\x01\xda\x57\x4a\x54\xad\x94\xd5\x8c\xd4\x1a\x6c\x04\x68\x09\xe0\xef\xf2\xa6\x10\xd5\x53\x43\xb3\x90\xda\x0e\xb1\x8e\x09\x3e\x73\x9a\xd1\x51\x3a\x24\x10\x12\x53\x5f\xe7\x71\x03\xb2\x94\xbf\xee\x00\xce\xe0\xc9\x47\xb5\x6e\xcd\x55\x6a\x7d\x51\x68\xac\xac\xb8\xfd\xb1\x58\x54\xe5\x54\xd4\x35\x5d\x92\x6a\x12\x56\x61\x15\xbe\x5e\xdf\x9a\x82\x20\x61\x82\x87\x64\x78\x15\x1b\x7a\x88\x86\xf7\x18\xcb\x02\x02\xa0\xe9\x6e\x46\xd8\x76\xb0\x3f\xb4\xb3\x07\x95\x28\x17\xa2\x70\x4d\xc5\xf0\xda\xdd\x5c\x2f\x20\x30\x1a\x6a\x44\x9a\xd0\xb1\x48\x2b\x7c\x44\xfd\xd8\x7f\x12\x72\x8a\xa9\x1b\xb7\x9b\x0c\xdf\xf4\x4c\x35\x82\xff\x86\x41\xdb\x61\x99\xf4\x00\xa8\x20\xc7\xad\xf2\x30\xe3\xba\xb0\x21\x72\x4a\x19\x78\x92\xcf\xd0\x72\xdc\x44\x93\x00\x07\x34\x18\x3f\x02\x87\x63\x3c\xd8\xe4\xb3\x4f\xe3\x75\x2f\x3a\x24\x15\x80\xeb\x28\x5e\xf1\xc9\x79\xdd\xf5\xc2\x45\x4a\x73\xbd\xe0\x28\xb9\x36\x8f\x67\xca\x3b\xf3\xf5\x82\xf9\x39\x80\x28\x6a\xce\x04\x21\xc9\xdb\x44\x1d\xa6\xd8\x91\x2c\x3f\xa6\x75\x1e\xae\x27\xbc\x46\xd6\x56\x47\x4b\xc0\xb8\x4f\xc6\x3d\xb0\x3f\x5d\x56\xaf\x90\x4a\xc0\x01\x1b\xfe\xae\x85\x28\x02\x7a\x80\x0a\x16\x6e\x40\x12\xc6\x79\xf3\x42\x05\x48\x93\x81\xa4\x9f\x5f\xe8\x82\x92\xd5\x31\xcd\xd8\x21\x00\x35\xbd\xd6\xa9\x02\x57\xd3\x3e\x2f\xa7\x24\xa6\x79\x6c\x89\x72\x8e\xf6\x29\x08\xd0\x83\x07\xf3\x72\x8a\xe1\x62\x2e\xfa\x6a\x64\x24\xd8\x99\x97\xd3\xb1\x3f\xb8\x75\x71\xa6\x1d\x8c\x63\x75\x0e\xae\x25\x55\x73\xa4\x63\x49\xb4\x65\xe8\x7e\x85\x55\x5d\x83\x67\x68\xb9\xbd\xae\xda\x18\x07\xee\x38\xee\x23\x44\x5c\xef\xee\xf2\x37\x6a\xb5\x82\x94\x97\x41\x1a\xa1\x9a\x1e\x50\x90\x1c\xdb\x63\x71\xc9\x87\xe4\x0d\xee\x46\x51\x91\x56\xb5\xd9\xf9\x61\x3f\xd5\xf2\x89\x8e\x6d\x57\x6f\xba\x95\x68\x38\x6d\x49\xf6\xa5\x5f\x89\x06\xc7\x41\xe4\xc4\x69\xc6\x3c\xa2\x6a\xea\x69\x43\x99\x9a\x82\xdc\x6d\x49\xdd\x33\xb4\xc4\x8e\xef\x45\x81\x70\xd9\x26\x52\x76\x07\xd3\x54\x89\x06\x2f\xd5\x48\x10\x1d\xa2\xa0\xa0\x10\x87\xa8\x94\x3f\xc6\x1b\x0c\x7c\xc2\xd1\xb7\x71\xeb\xd2\x15\x70\x99\xce\x3c\x40\xda\xaa\x85\x32\xf2\x3f\xb9\x77\xc4\xea\x40\x95\x17\xc8\x06\xaa\x74\x87\x89\xd2\x56\xe4\x18\xbb\x07\x69\xc4\x6f\x96\x03\xd8\x21\x5f\x70\x81\xb3\x77\x33\x81\x32\x97\xb5\x3b\x36\xa1\x5a\xae\x23\xa9\xb3\x0a\xc2\x68\x25\x10\x31\xeb\x07\x26\x7f\xc6\x75\xef\x69\xb7\xb6\xfa\xaf\xf8\x57\x20\x63\xa6\xdb\xa4\xd2\xd7\xc5\xda\xed\xbf\x13\xff\x5c\xe6\x95\x98\xf5\xf4\xf3\x6c\xd4\x72\x69\x34\xe6\x1a\x26\x49\x55\xea\x78\x00\x41\xb0\x54\xfd\x30\x35\x20\x4f\x6c\x44\x21\xea\x10\xd4\x09\xa9\xf9\xd9\x02\x30\xe3\xb3\x9c\x01\x99\x9b\x8f\x84\x7b\xa5\x2c\x14\x4d\xd5\x4c\x3d\xd9\x6b\xd7\xf6\xec\x6f\x2a\x48\xd9\x6f\xe6\x49\x93\x78\xe9\xad\xfd\x69\x0e\xb5\xe4\x42\xe9\x3b\xfd\x84\xee\x83\xf5\xa3\xba\x46\x3e\x38\xc2\x59\xa1\xa8\x82\x79\xc6\x81\x72\x13\x14\x7e\xac\xf5\xca\x69\xac\x50\x65\x95\x3b\xb6\xf5\x29\xf6\x54\x73\x02\xfb\xe3\xe1\xfa\x2a\x0f\xe2\x16\xf3\x6d\x47\x40\xc3\xfc\xcf\x13\x4b\x98\xb2\xb7\x97\x43\xfc\x60\xdb\x6b\xe4\x44\x4b\x52\xfc\x01\xc3\x3d\xa1\xbb\xa3\x8e\x65\xe8\x80\x4c\x43\xf1\x43\xa1\x1f\xfc\x49\x89\x59\x8f\xf6\xe2\x5e\xd6\x33\x35\xc0\xcd\x62\xe0\xdf\xc3\x51\x08\xd4\xed\x9d\x54\x29\xaf\xa9\x1f\xcc\x99\xc4\xf5\xb5\x98\xe5\xec\xd6\xee\x39\xe8\x76\x39\x35\xc7\x33\x77\x75\xc9\x99\x30\xa3\x5c\x4c\xd5\x85\xc3\x8d\xd9\xfe\x9e\xdc\x2e\xa4\x5e\x8a\xe9\xef\xb9\x25\xcb\xf8\x7f\xa4\xfa\x9b\x90\xaa\x3d\x09\xf7\x27\x58\x25\x9d\xda\x40\xb6\x76\x33\xa9\xfd\x69\x29\xf5\xb3\xc7\x13\xf3\xd3\x56\xfb\x37\xb7\x9f\x0e\x75\x77\xa3\x0d\x6e\x6b\xbc\x83\x4b\x74\x5f\x79\x3c\xa4\xe1\xfe\x75\x35\xc7\xd7\xe9\x6d\x43\xa7\x3c\x03\x60\x48\xc5\xa8\xb7\x45\x18\x82\xd2\x83\x1a\xdb\x87\x4c\x63\xdb\x72\xbc\xec\xaa\x64\x5b\x8e\x98\xd7\x69\xba\x3e\xba\x9f\xa2\xeb\xa3\xb0\x9e\xab\xe7\x80\xdf\x2d\xe3\x39\xe4\x0f\x94\xda\x54\x08\xca\x3c\x79\x76\x76\xf2\x6e\xf2\xe6\xfb\xd3\x93\x77\x7f\x3d\x79\x77\x9a\x46\x47\xd3\xab\xac\xb8\x14\x88\xf3\xef\x4f\x9e\xbd\x79\x77\x62\x65\x23\x49\x46\xcc\x16\x1a\xe0\xd1\x97\xbd\x7e\xcb\x26\xfa\xa6\xef\x3d\xa7\x95\xd6\xd9\xdb\xd6\x17\x76\x3b\x61\xe9\x8c\xe8\x6d\x51\xde\x38\x60\xf1\xbb\x11\x79\xdc\xe8\x4a\xbc\xbf\x50\x20\x76\xe3\x4c\x00\xbd\x98\x0a\x8d\x3d\x9c\xbc\xf6\x3a\x91\x83\xf4\x52\xe5\x5a\xdb\x1e\x7f\xa1\x9d\x9b\xe3\x4e\xeb\xfa\x07\x55\xb9\xbc\x6b\x00\x19\x07\xcf\x34\xa0\x50\xfe\xe1\xea\x15\x6c\x46\x0a\x2d\x0a\x7b\x90\x9e\x87\xfd\xcd\xa8\xea\xc2\x8c\xa3\xb3\xee\xa8\xa8\xf3\x09\xb4\x25\xf5\xdb\x4f\x23\xa7\x9c\x2f\x9f\x46\x47\xe3\xdd\x57\x8e\x37\x57\x3f\x5a\x45\x81\x7e\xfb\xdd\x66\x7e\xb6\xb5\xb3\x41\x3f\xc0\x0f\x1f\x4a\x60\x24\xa6\x12\xab\xd7\xe1\x8e\xa4\xe1\x64\xbf\xff\x5f\xa5\xe7\x1e\xc1\xde\xab\xe7\x5e\x9f\xb7\xc5\x76\x6d\x9e\xf7\x3a\x7b\xfd\x51\x85\x11\xa9\x53\xad\x52\x8e\x25\x18\xba\x8d\x6d\x74\x67\x7c\x9e\xce\x16\xb6\x98\x8c\xba\x63\x36\xea\xee\xe9\xf8\xb2\xa1\xb1\xf9\xf8\xea\x43\xf3\x07\x15\x18\x8e\xcd\xb0\x6c\xb9\xed\x79\xf4\x1f\xaf\xe1\x89\x60\xf3\xf3\x93\xdc\x2d\x70\xdb\x6d\x65\xbb\x8d\x70\xf3\x66\xb3\x7e\x23\x74\xd6\x68\x28\x71\x03\x8b\x86\x3e\x5b\x46\x9b\xcd\x08\xbf\x88\x1f\x5b\xeb\x18\x3e\x60\x67\x76\xe0\xd8\x99\x99\x28\x25\x2e\x97\x65\xa2\x96\x74\x3c\xda\x28\x3c\x9c\x0a\xe6\xf8\x96\x25\x7a\x1e\x43\x4c\x16\xb3\xc3\xcd\x66\x33\x73\xad\x91\x6d\x8a\x2a\x21\x3e\xc2\x0d\x2c\x52\x9a\x0a\x50\x04\xcf\x12\xf4\x93\x6d\x6d\x67\xd5\x09\xd6\xf9\x03\x17\x1a\x63\x12\xbc\xb1\x9e\x42\xa8\x19\x5d\xcd\xc8\x40\x8f\xd1\x25\x1e\x08\x7e\x10\x30\x5e\x75\x40\xa6\x54\xd1\xaa\x6d\xd1\x17\x07\x7e\x1b\x95\x40\x16\x1a\x9f\xbd\x13\x62\x92\xee\x29\xf9\x97\xc3\x7a\x8f\x6c\x54\x1c\x79\x28\x39\x32\xc1\x74\xf4\xf2\x3c\x1a\x8d\xdb\xf8\xc1\xc1\xf0\x3f\x9c\xf6\xd1\xd0\xca\xbd\xf5\xd6\x23\x48\x66\x21\x9e\xda\x61\x78\x8e\x2e\xe6\xcb\xfa\xca\x95\x0b\x76\x22\x3c\x4f\xe6\xa2\xd0\xf3\x41\xf8\x1f\x72\x52\x30\x51\xca\x44\xc1\xc6\x6f\xb9\xf0\x87\xcb\xa2\x27\x13\x80\x17\x68\xac\x51\xa7\x0d\xa8\x05\x10\xe6\xca\x5f\x83\xbc\x3e\x16\x75\x53\x95\xb7\x79\x71\x79\x77\xe7\x26\x5a\x4f\xb4\x26\xaa\x13\x21\x5c\xd7\x6a\xf0\x3b\x72\xb3\x14\x5e\x4d\x0a\x8b\x3b\xdc\x85\x44\x18\x7b\xea\xba\xb9\xe1\x34\xad\xdc\xdc\x18\xcc\x8e\xc6\x5d\x76\xcf\xc6\x4e\xf9\x37\xf2\xf4\x09\xb2\x0a\xea\x84\x8a\x0f\x40\x6f\x90\xe4\x6c\x88\x2c\x5e\xf3\x8b\x3e\xfe\x02\x41\x30\xbd\x5f\xad\xb2\xa3\x83\x36\x59\x65\x47\xa8\x59\x75\x74\xd8\xb6\xf1\x20\xdb\x49\xd3\xc3\x78\x45\xb5\xa0\x87\x5d\xb9\xfa\x30\x41\xb9\xdb\x3a\x79\xfd\xd7\xc1\xe9\xd9\x8f\xdf\x4f\xde\x7c\xff\xbf\x4e\x9e\x9e\x4d\x9e\xbe\x3b\x79\x72\x76\x82\x34\xf9\x82\xe3\xb7\x1d\x7a\x2e\x16\x48\x6b\xbe\x8e\x57\x2f\x98\x34\xb3\x3c\x7f\x3f\x2c\xcf\xdf\x83\x54\xf3\xc5\xd0\x68\xcd\xba\x30\xae\x55\x80\x0f\xc6\x34\xed\xc9\x8e\x9d\x54\x07\x74\xf5\x2d\xaf\x54\x99\x19\xaa\x57\x73\xea\xf0\x20\xaf\x4f\xf3\x6b\x70\x73\x3f\x4b\xf5\x43\x94\x63\x0d\x4b\x48\x0e\x18\xc1\x4e\xb3\xe2\x9d\xb0\xd2\x73\x51\x27\xd3\xac\x38\xb6\x60\xdf\x14\xc7\x6f\x5e\xa1\xb6\x05\x4f\x46\xf7\x70\x8e\xba\xc1\xaa\x4d\xa2\x2c\x4a\x56\x96\x0b\x98\x78\xd5\xb6\xda\x2b\x5c\xec\x14\x31\xd3\xe7\x56\x1f\xec\x9e\xbf\xb9\xbc\x97\x44\x15\xd0\x7a\x80\x7e\x4c\xcb\xe2\x22\xbf\x5c\x82\x9b\xd2\x23\x89\xa1\xc4\x78\x58\xc5\x6f\xb7\xa7\xb6\xb7\x19\xe8\xfa\x17\xd4\x7e\x53\xe5\x8d\xf9\x42\x12\x86\x89\xe2\x4a\x10\x83\x2c\x4d\x71\xfa\xfa\xf1\x30\x8c\x7e\x6b\x3b\xf0\xd1\x3e\x2b\xa7\x20\x62\xa3\xa5\x74\x32\x17\x10\xb8\x21\x9a\xe5\x1f\xa3\x38\x89\x66\x7e\x85\x51\xb2\x6a\x6d\x6f\x30\x7a\x7e\xec\x47\xb8\x3e\xc8\x00\x77\x82\x93\x11\x9e\x4b\xfd\x72\x1e\x1e\x8a\x57\xc8\x5a\x75\xea\xf8\x9a\x89\x7a\x4a\x3e\xd7\xeb\xd7\xe5\x4c\x30\x41\xa4\xfc\x64\x4e\x1f\xe3\x15\x42\xa4\xce\xeb\xa5\x4c\x23\x9b\x0b\xcc\xef\x70\x03\xcd\x02\xf9\x15\xe5\x4c\x9c\xc9\xf5\x96\xa6\x51\x01\x06\x9c\x7e\xfe\x6b\x74\x26\xab\x5c\x7e\xb7\x60\xc6\x20\xeb\xe7\xee\x8b\xcd\x81\x0a\x7a\xa4\xb8\xb4\xb9\xc1\x53\x70\x51\xfa\x08\x68\xdb\xb6\x55\x7b\xa7\x03\x9c\x3a\x0b\x5a\x83\x5d\x65\xb5\x4a\x7c\x32\x9d\x8a\xba\x2e\xab\x5a\x3f\x45\xee\x74\xd4\x16\xaf\xd6\x97\x47\x05\x92\xae\xae\xac\x99\x41\xd9\x26\xe0\xe0\x12\xd9\xa2\x30\x6a\xda\xae\xaa\xfd\x1d\x4e\xbb\x1f\x95\xdb\xfb\xab\x27\xaf\x8f\x9f\x9c\xbd\x79\xf7\xf7\xc9\xe9\xc9\xd9\xd9\xc9\xbb\xdd\xdd\x9d\xb5\xe3\x50\xba\x2e\xa1\xb2\x38\x46\x8b\xc3\xb7\x2c\xc9\x2d\x01\xac\x3e\xd0\xd4\x8f\xae\xd3\xb7\x33\x00\xd4\xba\x18\x40\x9b\xdd\x8c\x68\x7f\x8f\xe6\x52\xb0\x9d\xb3\x78\xd7\x51\xe4\x6f\xe1\x14\xe4\x8b\xd9\x89\xa0\x57\x8b\x43\xd7\xab\x85\xe7\x19\xe3\x90\x7b\xc6\xd0\x33\xe8\x8a\x52\x55\x06\x40\x95\x1f\x45\x55\xe5\x33\xf1\xf4\x2a\xcb\x8b\xda\xf3\xd5\x61\x67\x07\xbd\xdf\x7f\xcb\xbc\xdf\xbb\x6e\x2e\x7f\xcf\xdc\x5c\x72\x3f\x05\x14\xf3\xc2\xde\x3c\xd3\x8e\x25\x82\x18\x71\x89\xb9\x9b\xce\xcd\x15\xcc\x3c\xcc\xca\x73\x8e\x93\x37\x73\xbd\xe1\xb8\xda\x70\x6b\x9b\x3c\xfb\xf1\xf5\xd3\xb3\xe7\x6f\x5e\x53\x8b\xdd\xf9\x9a\xc0\xc8\x46\x12\x39\xc1\xe3\x93\x67\x4f\x7e\x7c\x79\x36\xf9\x21\x58\x5b\x57\xae\x19\x42\x18\xa0\x6f\xf9\xfa\x76\x15\xcb\x24\x5d\x48\xfe\x99\xc5\x5c\x35\xf6\xb9\x2a\xd6\x24\x69\x9a\x82\x1b\x61\xee\xea\x6b\xc3\x96\x9d\xcc\xb2\x26\x03\x93\x1f\xa6\xbf\x9b\x88\x4f\x79\xdd\xe4\xc5\xa5\x44\x66\xa2\x9e\x60\x8c\x4d\xc1\x0e\xc0\x5b\xb6\x57\x60\x2c\x81\xca\xbf\xc6\x78\x7b\xc8\xeb\x49\x6d\xa3\x6e\xbc\x3f\xaa\xba\x31\x53\x7d\xe9\xfc\xef\x20\x90\x3f\xaf\xa5\xcb\x94\x92\xc3\x0c\x1a\x91\x55\xb3\xf2\xc6\xda\xdf\x63\xa5\xe5\xda\x55\x03\xea\xbb\x82\x92\xac\xdd\x49\x4c\xcb\x2f\xfa\xfe\xee\xad\x3a\x0c\x27\x85\xb7\x02\x2c\x64\x7f\x26\xf3\x65\x6c\x28\x48\x63\xce\x3a\x92\x4c\xae\x31\xb1\xa8\x03\xd9\x46\xf7\x58\x72\x3c\x7a\xac\x59\x93\x6d\x1a\x17\xa7\x2d\x83\x10\x59\xf0\x6b\x8c\x58\xf2\xae\x9d\x2b\x10\x58\xdd\xae\x05\xa3\x67\x35\x84\x16\xd9\xbf\x56\xf9\x5f\xd3\xb3\xba\xb1\xc3\xc4\xc2\xe4\x17\x7d\x36\xaf\xd6\x8e\x69\x81\xc3\x22\x20\x35\xb4\xc1\x2c\x9f\x1d\x3b\x1c\x4a\x30\xd9\xaa\x81\x8c\xc7\xbb\x04\x76\xeb\x19\x28\xb6\xc2\x29\x6c\x04\x6f\x43\x4c\x9b\xc4\xc4\x93\x78\x21\x6e\x93\x42\xdc\xbc\x10\xb7\xf8\x08\x6e\x97\x93\xbb\xa9\xbc\x1c\xae\xe7\x44\xfc\x8d\xc4\x6f\x63\xfd\x94\x03\xc3\x62\xdf\x57\x68\x6f\x65\x5d\x01\xaf\x90\x54\x39\x76\x59\xa1\xc9\xbd\xfa\xf0\x42\xca\xe7\xaa\x5b\x36\x96\x37\x39\x07\xa9\x0e\xb6\x52\x2f\x65\x3d\x6f\x64\x78\x98\xfb\x88\x40\x3b\xe5\xa8\xbf\xfc\x6b\x75\x90\xfb\x38\x70\xb9\x8f\x6d\x64\xaa\x26\x6c\xbb\x07\x66\xb2\xb6\x96\xbe\x5a\x2f\xdd\x3f\x16\x79\x59\x78\xc0\x76\xb6\x5d\xe2\x38\xbf\xf0\xe3\x7f\x5a\xb9\x00\xcf\x64\x56\xeb\xc2\xf8\x7c\xd4\x01\xef\x78\x01\x70\x7e\xcb\xa4\xc1\xae\xb0\x36\x94\x3f\x13\x17\xa2\xaa\xc4\x2c\xdd\x37\x4b\x54\x91\xce\x4f\xf9\x7c\xfe\x14\x1e\x46\xac\xa3\x29\xa8\xf5\x67\x8e\xc6\xdd\xdd\xeb\xd0\xd1\x08\x06\xf5\xea\x7a\xa7\x3c\xa8\x82\x0c\x06\x8b\xc0\xcf\x04\xed\xf3\xe4\xb7\x73\xf4\xca\x73\xdc\xec\x73\xa4\x17\x8a\x32\xa2\xa6\x4c\xd3\x94\x69\xdc\xaa\xa3\x13\x4d\x53\xc0\x88\x1a\x47\x81\xe6\x7f\x2c\xc1\x3e\x71\x15\xb6\x9b\x17\xe2\xb6\x0e\x8f\x3d\xb9\x8e\x87\x53\xd8\x5b\xbb\xf3\x8b\xb2\xc9\x2f\x6e\x43\xef\x6e\xba\x25\x0f\xd3\xc7\xf9\xec\xdf\x08\xd1\x9b\x71\x3a\x53\xfd\x25\x94\xce\x82\xfd\x6f\xf9\xa4\xed\xee\x52\xf2\x8e\xe9\x96\xae\xdd\x42\x7d\x10\x19\x06\xf3\x1d\xd9\xca\xfa\x05\xd1\xdf\x81\x78\x89\xd0\x9f\x9e\xbf\x7c\x39\x39\x3d\x39\x79\x9d\x1c\x3f\x3f\x86\x1f\xd6\xe1\xd4\x49\x02\x33\xb1\x78\x81\x9e\x70\x32\xed\x9a\x9e\x4b\xb8\xf5\x60\x70\x47\x11\x45\x6a\x5a\x6a\xca\x45\xba\x23\xd3\x40\xd0\x52\x2e\xe2\x95\x0d\x00\x4f\x16\x8d\xa8\x8e\xc5\xa2\xee\xfb\xcb\x2f\x61\xed\xcb\x82\xd8\x09\x5d\x97\xa9\x06\xa5\x7d\xe1\xe1\xd8\x78\xbb\xff\x68\x14\xb6\xba\x06\xa3\xf2\x83\x63\xd1\x8d\x6f\x18\x8a\xae\xc4\x19\x89\xae\x90\x5e\x5c\x83\xb5\x84\xdd\x9f\xa3\x3b\x26\x63\x92\xc0\x8c\x10\x56\xad\x6d\xae\x30\xc2\x2a\xc7\x31\x8e\x7d\xe8\xe7\x18\x93\x9d\x99\x58\xe8\xcb\xc3\xa2\x1e\xc2\xa7\xfc\x23\x57\xc8\xa2\x56\xf0\xc8\xca\x2e\x98\x21\x2e\x69\x39\x63\xa2\xba\xc3\xa4\x01\x17\x52\x6c\xb9\xa9\x77\x63\x31\xa3\x55\xa9\xde\x4d\x54\x18\x12\x22\x72\xcb\x4c\x77\xc3\x3e\x05\xb2\xa3\xbe\x6f\xa9\x0f\xc5\x50\xff\xaf\xaa\xa3\x58\xee\x10\x56\x92\xde\x29\x62\x8b\x44\x8a\x72\x26\xea\xb4\x0b\x56\x45\xd3\x1f\x8d\x31\x1c\xab\x8e\x4d\x0a\xc5\x3c\x65\x51\x48\x1d\xe5\x63\xbe\x55\x63\x0d\x71\x6b\xca\x62\x8a\x5d\x38\x3d\x8c\x57\x81\xe3\x0b\x41\x47\xb9\xea\xc8\x28\xdf\x3b\x18\xc7\x1e\xb2\xba\xb6\x96\x7a\xb9\x58\x54\xa2\xae\x4f\xb0\x0f\x84\x3a\x89\x9a\x5f\x15\x7b\x76\x37\x1e\xcb\x25\x72\x74\x5f\x8c\x9a\x9d\x5a\x21\x14\xa2\x68\xda\xe3\xa3\x9e\x6d\x8f\xea\x63\xa7\xd6\x35\x98\x5e\x77\x45\x89\x57\xeb\xe7\x01\x2d\x95\x98\xce\xc4\xa5\xf6\x51\x72\x8b\x05\x6a\xe0\xb4\x91\xa5\xd9\xdb\x33\xa0\x42\xeb\xba\x06\x00\x1f\x3c\xa0\xf7\x17\xf8\xfa\x73\xba\x1f\xaf\x3c\xe6\x4a\xbf\x99\x32\x86\x0a\x1f\x64\xfb\x0e\x1d\x15\x97\x82\x3b\xdf\x3b\x37\xa1\x9c\xc3\xfd\x1d\x1a\x66\x54\x42\xfb\x3d\x4d\xfc\x30\xc1\x9b\x79\x8c\x8d\x7b\xba\x7e\x57\x4d\x95\xba\xa0\x56\x51\x34\x2f\xd9\xc9\x4c\x32\xa6\x0c\x39\x3c\x06\xb4\x8f\xa3\x6c\x36\xb3\x66\xcc\x28\x0e\x0c\x65\x45\xa9\xc5\xef\x1a\x75\x1a\xfb\xf5\x3c\x1e\x9a\xc7\x60\x1b\x64\xc4\xea\x1e\x43\xd7\xe8\x3a\xbd\x55\x01\x3e\x4d\xeb\x98\x84\xcf\xc2\x1c\xe9\x7e\x9a\x51\x74\x21\xad\xdc\x0e\x5d\xf6\x55\xa2\x13\x55\xf7\x1b\xbe\x25\x62\xf7\x36\xc9\xd4\x4f\x1a\x86\x4a\xe8\xc5\x99\x7a\x29\x16\xbc\x23\xdc\x75\x84\xb9\xb6\x9e\x92\xbf\x2e\xd2\x50\xa2\x1d\x85\xd3\x5b\x28\xa9\x9f\x64\x95\x70\x17\x67\xea\x26\x6c\xba\x4a\x5f\xfa\xaa\x44\x5b\x3e\x34\x7c\x51\xcc\xba\xaf\x1e\x43\x76\x3b\x09\x7f\x47\xa4\xbb\xc0\x55\x54\x49\xe0\xef\x23\x27\x27\x3f\x46\x3f\xbc\x7c\xf3\xfd\x93\x97\x93\xb7\x4f\xce\xfe\x92\x3e\xfc\x47\x7f\xf4\xe4\xc1\xff\xfe\xcf\xf1\x5d\x7f\xb4\xff\xe0\x4f\x63\xfc\x88\xe3\xc1\x7f\x8d\x7e\x1e\x8c\x1f\x42\x91\xbf\x3c\x39\x9d\x9c\xfd\xe5\xf9\x69\x1a\x81\x8e\x06\x0e\xfa\xd9\xf3\x77\xa7\x67\x30\x20\x59\xc5\x3f\x7e\x1e\x8c\xf7\xe2\x87\xfa\xbd\xc0\x38\xb7\xa4\x90\xb4\x7c\xa5\xb3\xbb\x52\xc4\xdf\x18\x5b\xd2\x37\x92\x99\xbb\xbb\xea\x3d\xd2\xf2\x5f\x0b\xfe\x18\xa0\xb0\xd6\x5c\x90\x4c\x2b\x6e\x1f\xa9\x12\x5e\x2a\xfb\xce\x4b\xd1\xbc\xcd\x9a\x2b\xff\x3e\x02\x82\x69\xfb\x8e\xa7\x59\x42\x92\x96\xdb\x57\x34\x15\xef\xdf\x77\x82\x40\x10\xca\x57\x3a\x04\x33\xdf\x49\xd3\x07\x07\x1b\xba\x41\x95\x69\x28\xf5\xa4\x68\x43\x29\x0f\x7b\xbe\x00\x96\x75\x35\x70\x21\x25\x37\xc8\x01\xd1\xac\x7e\xb4\x4d\xb9\x40\x54\x76\x47\xa6\x59\x43\x53\x2f\xca\x8e\x07\xe1\x1d\x35\x81\x2a\x68\xd8\xee\x6e\x87\xb7\xe1\xc1\xb2\xf8\x50\x94\x86\x57\xe3\x93\xed\xe6\x19\x79\x2d\xb3\x23\x6c\x4d\x6c\x46\x94\x1b\xea\x1d\xce\x7b\x00\x95\x54\x27\xd7\xc4\x7a\xe8\x7e\x3c\x94\x80\xba\x08\x3f\x9e\xc8\xf5\xd9\xd9\x72\x31\x17\x7d\xd2\x98\x44\x5d\xd0\x8f\x18\xf7\xe3\xec\x2a\x87\xd0\xf5\x57\x7a\xb2\xd5\xca\x80\x40\xcb\x49\x5e\xff\x30\x2f\xcf\xb3\x79\xba\x43\xc0\xbb\xbb\xf6\x6a\x43\xaf\x5f\xa8\x92\xf9\x41\x80\x5b\xdc\x1d\x6c\xe8\xee\x4e\x15\x8e\x31\x81\xba\x38\x2f\xcb\x0f\xcb\x05\x45\x17\x91\x55\xc6\x3a\xea\x3d\xf9\xc0\xfa\x16\x2f\x72\x58\x28\xb5\x8a\xa1\xf3\x12\x80\xc5\x08\xde\x7a\xcd\x82\xc9\x15\x95\x91\x34\x47\xa3\x05\x37\x70\x6e\x03\x1f\xc4\x2d\x31\xa1\x7b\x07\xca\xcf\x46\x73\x75\x77\x07\x20\x26\x34\x56\x1c\x0e\xab\x28\x09\xbf\x37\xcd\x8a\xa2\x6c\x7a\xe7\x02\xe3\x50\x47\x4a\x1a\x3b\x62\x58\x1e\x9b\xa9\xd0\x0b\xa6\x2a\xcb\xc0\x14\x80\x3b\x99\x3a\x69\xe4\x3c\x25\xf9\xec\x53\x32\xc7\x6b\xb1\x84\xa6\x2d\x60\x77\xd7\x9a\x26\xb9\x26\x53\x6b\x4d\xca\x41\x73\x54\x61\x2b\xed\xe6\x49\x46\xe7\xe4\x65\xd9\xdc\xdd\xa9\x19\x59\x41\x4f\x52\x87\x80\x4c\xdf\x87\xd0\x31\x00\x92\x68\x07\xfc\xe2\xd7\xc1\x78\x08\x3f\x14\x1a\xf7\x5b\x18\x1a\x61\x7f\x31\xcf\x1b\xe8\xfa\x70\x2e\x8a\x14\x72\xd4\x6d\xc0\x78\x5d\x90\x75\xef\xd0\x98\x1d\x0f\x0c\xd0\xac\x1c\x28\x75\xa5\x22\x2f\x0c\xc8\xd2\x2b\x8c\xed\xee\xca\xbf\xb6\x8a\x20\x21\x89\xbd\x1d\xa9\x35\x59\x96\x6c\xc9\x5c\x8a\x86\xc7\x87\x81\x66\xbc\xe0\x34\x26\xda\x92\xe9\x8b\x15\x20\xca\x56\x0c\x0d\x85\xb2\xb1\x3c\xda\x72\xe6\xc2\xee\x40\x6a\x7f\x76\xe9\xee\x5e\x3a\x41\x68\xd4\xc6\x61\x47\xc9\xe6\x73\xe9\x4c\xad\x05\xa9\x68\x35\x55\x3f\x36\xf1\x33\x01\xd5\xe8\xfb\x05\xc7\x0f\xea\x54\x6c\xa3\x3c\xe1\x47\x63\xf9\xaa\x1c\xd2\xaf\xae\x33\xa1\x31\xef\x30\x54\x6a\x26\xba\xd9\xae\x47\x2e\xdb\x15\xe0\xcc\x5d\xc5\x88\x00\xa7\xce\x4b\x1a\x0e\xbd\xab\xa0\xe1\xd8\x03\x2a\x8d\xae\x7e\x45\x40\x21\xa2\x83\x35\x0c\x84\x19\xf9\x6c\x96\xb0\x93\x1b\x7c\xa8\x95\x3d\xf4\xe2\xaf\x6d\x56\x85\x3c\x31\x35\xe5\x5c\x54\x59\xd1\xf0\xb8\xc4\xa4\x9e\x46\xec\x9c\x7a\x5a\xa6\x72\xc3\x2e\x7e\xce\xf2\xe7\x51\xfb\x1c\x94\xdb\xe0\x67\xf2\x75\x79\xfd\x23\xf2\x21\xc9\x74\x59\x55\xa2\xc0\x2d\xe7\x73\x59\xbd\x6d\xfa\x49\x55\xef\x58\xdb\x1e\x70\x7f\x41\x94\x1a\x1e\xb0\x43\xdb\x0f\xc3\x2e\xe0\x09\x00\x25\x76\xac\x4e\x5b\xcf\xde\x69\xfa\x31\xe0\x24\x5c\xe3\x20\xdd\x96\xe3\x43\x5f\xde\x54\xaa\x9b\xfd\xab\x45\xf3\xa3\xcb\x01\x86\xd3\xfb\x81\x31\xa3\xd7\xe6\xf5\x5c\x6e\x80\x35\x8e\x57\x7c\x26\xd7\xf0\xc0\x16\x98\xcb\x0c\x2b\x4c\x72\xa0\xa0\x98\x93\xb3\xeb\x21\x55\x09\x54\xfd\xe6\x4d\x59\xd3\xe3\xa1\xf6\xee\x4e\x52\xbe\xde\x35\x9e\xd7\x27\xfa\x79\x5c\xb3\xc8\xa1\xa7\x76\x4d\x35\xe0\xf0\x8b\x93\x4e\x50\x41\x83\xb4\x14\x7d\xcd\x08\xcc\x58\xff\x48\xd6\x5d\xce\x3e\xab\xb7\xe7\xde\xe5\xd6\x52\x6f\xc3\xbd\xd7\x9a\x35\xae\x39\xf7\x5e\xbb\x1c\xa3\xb7\x1f\xd1\x3b\x80\xb5\xe7\x30\x2e\x17\xb9\xd9\xac\x6e\x9e\xb3\xc5\xbd\x77\xc0\xd8\xe1\x34\x55\x7b\xd6\x63\x65\x99\xc2\xca\xef\x27\x8c\x1f\x7e\xa0\x66\xca\x30\xce\xb1\xf2\x0f\xba\x93\xe2\x35\x3a\x32\x0c\x9a\xc3\xeb\xf2\x6b\xb0\x7e\x58\xe4\x9c\x76\x47\x04\x73\x1d\xe8\xa2\x16\x8d\x0e\x62\xfe\xf7\x72\xd9\x5b\x64\x75\x2d\x66\xbd\xac\x40\xf6\x1b\xfc\x2c\x44\xd8\x8c\x6c\x15\xf7\x6a\x8d\x28\x92\xba\xa1\xf3\xad\x50\x43\xdf\x04\x1b\xc2\x9d\x03\x6c\x03\x24\xcb\x1f\x7d\xb3\x27\xff\xef\x7d\x13\xf5\xa6\xe5\x72\x3e\xeb\xd1\x05\xe0\xa2\x5c\x16\xb3\x5e\x59\xf5\x6e\xb2\x5a\xde\x79\x91\xe5\x1c\x7c\x63\xfc\xc7\xd4\x8c\x4b\xe4\x5b\x82\x9e\xeb\xa6\xba\x3d\x35\x5c\xad\x9a\x6a\xbe\x07\xfb\x64\x00\x42\x6c\xce\xb7\x61\x25\x29\xfe\xb3\x38\x3a\x22\xc5\x0e\x3e\xae\x5a\x16\x93\x79\x59\x7a\xe1\xca\xb7\x94\x49\x05\xe3\xee\xf9\xcc\xdb\xaf\x1d\xad\x7c\x2b\x7e\xcb\x8f\x86\x76\x68\x45\x43\xdb\x26\x8a\x5c\x50\xec\xe8\x72\x4c\x41\x31\x24\x48\x81\x7d\xf1\xa3\x5b\x36\x20\x8e\x34\xcf\x20\xc5\xf7\xb2\x66\xb5\x1b\xc7\xab\x6a\x59\x0c\xe8\xe3\xdd\xb2\x78\x59\x96\x0b\xb5\xdf\xb3\xb7\x93\xe2\xa4\x98\xa9\x22\x49\x21\x3e\x85\xcb\xc9\x0c\x60\x41\xbe\xcf\xa6\x1f\xce\x97\x55\x01\x96\x93\xe0\x79\xe8\x55\x39\x5b\xce\x45\x3f\x3a\xd7\x39\x51\x3c\x30\x60\x88\x17\x53\x0a\x9c\x4f\xeb\xcf\xfe\x28\xaa\x6f\x8b\x69\x94\x44\x19\xf4\x47\x92\x07\x2d\x9b\x68\x9c\xac\x64\xde\x11\xbd\x9c\x1c\x85\xf0\x96\x64\x17\x8d\xa8\x8e\x7c\xb4\xb4\xea\x9a\xf6\xdf\x4b\xb1\x14\x47\xa6\x7a\xc2\xd2\x11\xfd\x4f\x00\x01\x47\xf0\x57\xfe\x96\x5b\xc0\x19\x5c\xdb\x8f\x80\x6a\x54\x1a\x7a\x2b\x3a\x8a\xca\x02\x6f\x15\x6d\x8c\x3c\xa3\x15\xcb\x0c\x8d\x74\xc0\x57\xbc\x4c\xc3\x5f\x5d\x17\xb5\x6a\xc9\xfc\x62\x56\x4b\xe6\x15\x13\x7d\xd6\x18\x9c\x25\xe6\xe7\xa0\x5a\x16\xdc\x91\x8d\x9c\xaa\xf7\x65\xce\x7c\x31\x3a\x36\xb5\xb0\x0b\x7a\xf3\xe9\x34\x85\x23\x75\xaa\xd6\x4e\x30\xc3\xbe\xd8\x20\x72\xd8\xb2\xa8\xaf\xf2\x8b\xa6\xaf\xd1\x4b\x5e\x44\xfb\xb2\x2e\xd9\x6c\x3d\xbd\x12\x92\x3c\x30\xee\x58\x3b\x94\x69\xe7\x79\x31\xeb\xec\xef\x86\x56\x7d\x05\x61\x6b\x20\xaa\x59\x89\x12\x68\x52\xc5\xb0\x09\xd6\x16\xc7\x2d\xf5\xc8\x90\xa7\xf9\x39\x0c\x2d\x03\x30\xeb\x5a\x16\x83\x7f\x4a\xaa\xaa\x19\x34\xa6\xc8\x0d\xbd\xc6\x2a\x25\x71\x71\x23\x20\x06\x0a\x79\x7d\xc2\x86\xe0\xc8\xb0\xc0\x44\x31\x53\x40\x0a\x8d\x06\x12\x9a\x73\x0d\xa8\xa7\x57\x62\xfa\xe1\xc9\xb2\x29\xdf\x49\x72\x1a\xae\xa3\x23\x3e\x31\xda\x13\xa8\x6c\xea\x2a\xab\x4f\x29\x6f\x76\x96\x5f\x8b\xaa\x0e\xc4\xd2\x65\x15\x5d\x65\x35\x82\xa9\xbe\x4e\xb3\x62\x2a\xe6\x7e\x51\x56\x86\x83\xe8\x21\xde\x16\x53\x0e\x0e\x51\x2c\x4c\x09\x9c\x87\xe7\xa4\xb9\x6c\xd7\x66\xe7\xd1\xdc\x40\x85\xe6\x39\x15\xda\x98\x67\x8d\xa8\x3a\x49\x6f\x8b\xd5\x07\x15\x78\x28\x2b\x8b\xa9\xe8\xac\xd5\x99\x93\xcf\x5c\x55\x5b\xf4\x4d\xcd\xe8\x9b\x62\x6a\x2d\x37\x9e\x7e\x3f\xfa\xf9\x8c\x46\x2d\xbc\xc8\x43\xc3\x35\xff\xdb\x34\x76\xb0\x94\x3e\xd8\xaa\x6d\x3d\x19\xb5\x45\x79\x6c\x26\x24\x81\x85\x68\x16\x01\x29\x1f\xcb\xce\xc4\x79\xb9\xb4\x30\xb4\x15\x41\xa8\x62\xde\xd8\x25\x6b\xd9\x34\xf3\xfb\xd6\xa7\x8a\x59\xf5\x31\x55\x00\x3e\x3f\x9d\x7b\x7b\x0b\xc7\xc2\x24\x9b\xcd\xe0\xf0\x33\x5d\x28\x24\xbf\x09\x27\x26\x14\xb6\xe2\x04\x99\x5d\x2d\x01\x5b\x0c\x25\x50\xd6\xc9\x20\xb1\x9d\x8a\xce\x52\x58\xef\xde\x41\xb2\x8f\x15\xb4\x5d\x06\xce\xb5\x68\x26\xdd\x66\x56\x5b\x1a\x4a\x7d\x81\xea\xf0\x3a\x4e\xd1\x7b\xcf\x75\xd5\x7c\x5d\x80\xa0\x99\xd0\x21\x99\x09\x6d\x0a\xc1\x2d\xaf\x75\x46\xaf\x03\xa2\xdc\x5f\x65\xf5\x15\xe8\xac\xd8\x3a\x1f\x8c\x8a\x5c\x5b\x65\x2c\x81\x4f\x28\x57\x1d\xe1\xcb\xe4\xa5\x01\xaa\x87\xc8\x62\x12\x10\x6d\x98\x71\x92\xf4\xcd\x62\x7e\xd1\x35\x67\xc4\xec\x6f\x16\xec\x86\xad\xdf\xf4\xbd\xe0\xdf\xe2\xad\x3a\x68\x49\x76\xe8\x5a\x92\x05\xa2\x3d\x1f\xda\xd1\x9e\xb7\x89\x19\xfd\xc3\x8f\xcf\x8f\x27\x6f\xdf\x9d\x3c\x7b\xfe\xb7\x14\x51\x82\x1d\x2d\x27\xb3\xed\x8d\xc5\x9c\x10\xb9\x90\x86\xe6\xae\x4f\xb3\xe9\x95\xe4\x3f\x91\x0c\x41\x04\x89\x49\x64\xad\xb5\x5c\xe6\xb3\x74\xff\xb3\xc4\xa6\xd0\xf3\x17\x27\x7f\x4f\x55\x7c\x84\x68\xaf\xb7\x07\xee\x41\x55\x17\x00\xe2\xf8\xe4\xf4\x69\xba\xd2\x96\x3b\x68\xe2\x60\x59\x41\x60\x92\x67\x06\x81\xe6\x3d\xe8\xa9\x9d\xbd\xb9\x14\xa2\xca\x1a\xf1\xc3\x32\xa7\xb8\x21\x95\xb8\xc8\x3f\xa9\xa0\x4f\xf0\x1b\xff\xa5\x0c\xb3\xe4\xd9\xad\x49\x31\x6b\x4f\x8e\x7a\x6f\x6f\x88\xcf\xe6\x4a\xfb\x66\xa4\x06\x34\xd6\x0f\xe9\x76\x6a\x25\x1a\x14\x0b\xe8\x71\xa1\x58\x49\x66\x0c\xdd\xf9\x82\xce\xa9\xb2\x89\x2e\x61\xfb\x89\xb5\xdf\x61\xcc\xc8\x52\xfe\xc1\x06\xcf\x54\x4c\x57\xfa\xcd\xdf\x88\x51\x95\x03\x59\x93\x12\x0d\x6d\xd5\x00\x05\x01\x1f\x91\x42\x0b\x9a\x2e\xdc\x2e\xb8\x45\xf5\xb0\xbe\xc9\x9b\xe9\x15\x48\x5d\xe3\xd5\x34\xab\x85\x32\xa0\x3e\x02\xf7\xcc\x86\xba\x46\xe5\xf9\xfb\xb1\x0e\x5a\x1c\xca\x4c\xa3\x62\x19\xed\xc9\x4a\xcd\xd8\x87\x50\x25\x09\xc5\xa1\x4a\x46\x9d\x7e\x95\x6e\x66\x1a\xd5\x4d\xa4\xe6\xd1\xad\xf5\x1c\xe3\xf8\x42\xb5\xf4\xdc\xfe\x38\xea\x83\x10\x24\x3a\x8a\xfa\xa8\xb5\x1d\x0d\x69\xd1\x1f\xb9\xd3\x1f\x33\xb3\x6f\x9d\x68\x10\x89\x96\xde\x1a\x95\xf4\xc9\x30\x0d\x71\x2f\x75\x3e\x7e\x45\x10\x53\x9a\x16\xb8\x4d\x7f\xbf\x12\xdd\x71\xb5\x02\x8b\xee\xc8\xac\x85\x9b\xb1\xc0\xf3\x81\xb3\x70\xc1\x56\xe9\xbe\xeb\xd6\x7a\x82\xd2\x71\x54\xe4\x9e\x3f\x99\x20\xf9\xe5\xb5\x6d\xfe\x65\x8c\xc3\xb7\x30\x20\x67\x71\x23\x74\x88\x6d\xd0\xd1\x51\x41\x56\xd0\xab\x8a\xb6\x5f\x50\x09\x53\xb5\x05\x9a\x2f\x59\x81\x4e\xa9\xcb\x65\x35\x05\xa1\x78\x2b\xd3\x79\x98\x09\xa8\x19\xa3\x4a\xcc\xc4\x82\x7e\xa9\x06\xf0\xcb\x38\xe5\x81\x4f\xa8\x9e\xfd\x94\x35\xe2\x27\x36\xe3\x87\xab\x50\xe1\xb3\xa8\x10\x68\xaf\xb1\xdf\x4a\x59\xf7\xc8\x88\xba\xe9\x37\xf4\x93\x50\x0f\x4f\x14\x1d\xb8\x8d\x57\xf6\xb0\x06\x93\xc9\xa2\x02\x7e\xea\xed\x3c\xcb\x0b\x24\xe9\xc9\x04\x35\xcf\x1d\xd0\xa6\xfc\x5f\xa7\xdc\xf8\x57\xb2\x93\x70\xb2\xbe\x7a\x7b\xf6\xf7\x89\x9c\x6c\xf4\xdd\x2e\x27\x04\xa8\x39\xfc\x2a\x60\xc0\x07\x3a\x10\x0e\x0f\xe9\x88\xd3\xa9\x2d\x3e\x8d\x63\x78\xeb\x79\x4b\xd6\xad\x40\x52\x8a\xe6\x1d\x1b\x4a\xbf\xbb\x33\xcd\x98\xb0\xea\xf2\x47\x37\x6a\x82\x0b\x4a\x35\x98\xe8\x95\x01\x5c\x91\x19\xa9\x7a\x15\xf2\x07\x5a\x89\x86\x8d\xd0\xea\x3d\x2c\x60\x99\x0f\x44\x35\x60\x41\x75\x6c\xbf\x1b\x12\x04\x69\x65\x87\x2c\x64\xbe\xe2\x10\xac\x10\xf1\xa6\x37\x56\x3a\x26\x61\xae\x5e\x4c\x16\x80\xb6\x93\x02\x18\xbd\xbe\xf4\x87\x5a\x5e\x66\x28\xf0\xe2\xb9\x09\x63\x56\x1b\x2a\xd8\xa8\x87\xc3\x60\x60\xfb\x4b\xd1\xa8\x99\xd1\x81\xba\x91\x8a\x26\xda\x2e\x1b\x32\xed\x10\x36\x90\x39\x52\x05\xc6\xae\xbe\x05\x8c\x83\xfe\x0f\x39\x9f\xee\xb5\xa5\xc4\xf2\x81\x16\x51\x01\xc5\x69\x89\x22\xcd\x76\x2a\x7b\x50\x1b\x69\xed\x36\x2e\xab\xd1\xaf\xae\x20\xf4\xb7\x17\x8d\xd3\xb8\xce\xb4\x1f\x18\x86\x7e\xd4\xb6\x50\x2c\x28\xfd\x6e\x34\xca\x55\x04\x27\x1c\x87\x65\x35\xc7\x82\x26\x9b\xbe\x78\x5a\x35\xa1\xe2\xe9\x4a\x1d\x12\x48\x25\x93\xc9\x91\xdc\x85\xf5\x52\xc0\xe0\xbe\x2e\x0c\x5f\x16\xf7\x6d\x50\x93\x18\x45\x63\x0a\xb7\x00\x67\x01\x62\xf2\xe3\x7a\xa5\x1c\x35\x1d\xa9\xfa\x61\x66\x0a\xc2\x83\x5f\xe8\x00\xe9\xcf\x20\x44\xb1\x21\x22\x99\xf6\x53\x95\x2d\x16\xda\x71\x78\x25\x1a\x09\x8a\x6e\xd6\x26\x93\x42\x7c\x6a\x20\x80\xee\xd0\x4d\x30\x11\xc1\x60\x4d\x33\xa7\xe6\xd0\x1c\x13\xa2\x84\x4a\xf2\xb8\x19\xbc\x17\x83\x1b\xf8\x3f\x33\x21\xb2\x65\x03\xeb\x20\x34\xde\xb2\x2a\x6f\x6e\x27\x13\x28\xa1\xe8\xc8\x2a\x18\x70\x12\xdf\xe1\x3c\x7e\x7d\x39\xed\xab\x7b\xad\x27\xef\x70\x1d\x3a\x9e\x9b\x5d\x58\x27\x1b\xaf\x9c\xa6\xb0\x35\xd7\x72\xf4\x10\xff\xde\xdc\x2d\x81\xdd\x63\xfe\xeb\x6b\x8c\x82\x6e\x42\x57\xc0\x6b\xc8\x5b\xf0\x6e\x79\xbb\xe0\x5e\x90\x4c\xf1\x34\x4d\x23\x4d\xb5\x51\xbc\x32\x65\x88\x83\x7c\x50\x2d\x8b\x26\xbf\x16\x0f\x91\x6b\xa0\xeb\xb3\x79\x6e\x9e\x4c\xe6\x65\x36\x13\xd5\xa0\x12\x97\x79\xdd\x54\xb7\x23\x53\xc5\x98\xde\x9c\xb1\x25\x0f\x1e\x9e\x6c\xfa\x06\x3c\x66\x97\xe3\x56\x29\xa6\x40\xf4\x75\xb9\x23\x3d\x2f\x1a\x51\x7d\xcc\xe6\x7e\xe4\x19\xa8\x7e\x40\xc3\xdf\xdd\xb5\x3e\x01\x1b\x76\xcc\x1b\xd5\x75\x02\x37\xbf\x07\x26\x48\x8d\x53\x44\x5f\x58\xde\x5c\xe8\xe3\x37\x42\x4c\x90\x1a\x86\xd7\x84\xec\x35\x12\xe3\xce\x3a\x4d\x5f\xbb\x9c\x35\x32\xb3\xeb\xea\x00\xf7\xf6\x6d\x4c\x1e\xdc\x80\x9e\x90\x5e\xdf\x48\xc7\x1f\xe0\x98\x78\x5c\x9e\xbf\x3f\x82\x5b\x8d\xbd\x91\xa8\x16\x52\xfd\x8b\x49\xfa\xb2\xe2\x79\xf1\xb1\xfc\x80\x8a\x09\x7e\xc0\x8d\x9d\x9d\x3e\xa8\xae\x98\x0b\xdd\xc8\x00\xc9\x8b\x46\xe4\x38\xc1\x57\x4f\xcb\xc1\x5a\x51\x88\x0a\x9a\x1c\x5d\xed\x1a\xe9\x65\x75\x59\x3f\x86\x0d\xe8\xb4\xa9\x82\xf5\x1c\x75\xe4\x3a\xe6\x22\xba\x33\xa9\xfe\x85\x82\x0d\x21\x66\x35\x59\x2f\x3d\xcb\x3f\xb9\x02\xe4\x69\xb9\x2c\x9a\x74\x7f\xd8\x54\xb7\xe0\x58\xad\xbd\x40\xd0\x15\x64\xec\xed\x0d\xd9\xa3\x3e\x2a\x0e\x38\x15\x9e\x89\xba\x89\xe2\xd6\x77\x9f\x06\x15\xec\xa4\xe9\x41\x4b\x72\x7a\x66\xd2\x9f\x5f\xf4\x9d\x6a\xc0\xad\x9b\x72\x06\x60\x44\xce\xd5\xad\x3c\x9c\x12\xe8\x54\xfe\x2f\x51\x19\x53\x2d\xdc\xf0\xeb\xe5\xbc\xc1\xdc\x77\xec\x37\xf4\x74\xe8\x84\xf2\xbd\xbb\x83\x08\x6e\x72\x90\x58\x2e\xa5\xda\x51\xf4\x6a\x4c\xb8\x08\x01\x12\x90\xd5\x9c\xea\x3e\x38\xf0\x7a\xe0\xa6\xe9\x54\xc0\xda\x37\x09\x4a\x09\xc3\xa4\xe8\x75\xc2\x5a\x60\x4b\xe0\x31\x76\xf1\x88\x65\x93\x1a\xcd\x57\x41\xd3\x97\xe2\x66\x1b\xbc\x7c\xc6\x00\x89\x4a\x9e\x4a\x8c\x6e\x20\x15\x0e\xe3\x23\x02\xe6\xe4\x57\xa7\x1c\xa2\x04\x9c\x70\x82\xd4\x3d\xb1\x60\x13\x04\xfa\x1f\x40\x6b\x5f\x1d\xcf\xbf\x3e\x72\x7f\x41\x62\x3d\xfb\xfb\xdb\x93\xc9\xab\x27\x6f\x95\x7c\xb8\x49\xa3\xef\x51\x9a\xd6\x7b\x0d\x52\xbd\x1e\xc6\xad\xea\x3d\xd3\xd1\xa4\xe4\xc1\x04\x32\xdf\xde\x3b\x71\x79\xf2\x69\x41\xae\x10\x23\xa5\xc1\xdf\x8b\xc0\xeb\xaf\x89\x53\xd6\x24\xd6\x83\x53\xbc\x52\x8d\x8e\xa2\x11\xa9\x51\x45\x7b\x05\x18\x39\x8e\xa3\x71\x2a\x7f\x0d\x9a\xf2\x65\x79\x23\xaa\xa7\x59\x2d\xfa\x31\xe9\x56\xe8\x18\x5a\xe4\x7b\x91\xcb\x28\x30\xc7\xb0\x65\x08\x62\xce\x4f\xe2\x1b\xf2\x46\x5c\x1b\x56\xdb\x70\x3d\x2e\x5b\x86\xc5\xb7\xe7\xcb\xea\xdb\xba\x11\xd7\x0f\x89\xad\xb8\x1f\x63\x46\x6d\xdd\x93\x33\x93\x6c\xbf\x1c\x8d\x66\x41\xe8\xc3\x4c\x39\xa2\x04\x87\x7c\xa4\x51\xae\x50\x85\x53\x03\x99\xe3\xbb\xbb\x88\xf5\x1c\xed\xa2\x78\xf0\x1d\x35\x1c\xec\x29\x71\x6b\xda\x01\x26\xb0\x6b\x50\x11\x48\x6e\xa3\xe9\x3c\xab\xeb\x88\x0b\x33\x6c\x5f\x9f\x38\x0b\xdc\xe9\x18\xae\x7a\x14\x98\x82\x32\xcd\x50\x15\xb6\x9a\xf5\x8a\x99\x4c\x2c\xac\xf2\x4c\x79\xb7\x88\x24\x5b\x84\x9d\x65\x8d\x88\x82\x82\x84\xbc\xa8\x17\x8a\x03\x5d\x59\x92\x72\xc6\x78\x36\xe4\x64\x14\xf9\x4f\x1d\xcb\x6d\x04\x62\x6f\x49\xc7\x2a\x9c\xd1\x0e\x1f\xbb\x11\x34\xef\x45\x11\xac\xbf\x8f\x2a\x70\x9d\xe3\xbb\x81\x31\x99\xe1\x60\x7a\x76\x84\xf3\x8f\xb2\x2f\x6a\x6a\x23\xe6\xf4\x9a\x7a\xf1\xe6\xa2\xff\x31\x76\x66\xf5\xa3\xf9\xea\xc7\xbd\x55\x6f\x30\x18\xf4\x5a\x40\x89\x8e\xd2\xb7\x17\x1d\xf5\xa2\xbd\x8f\xfa\x11\x23\x5a\x45\x7b\x32\xff\x7d\x99\x17\xfd\x28\xe9\x45\xf1\x5e\xd4\x46\x76\xf4\x2c\xc4\x5e\x4a\xff\x59\x38\x11\xbc\xa3\x26\xd7\x09\x79\xd1\x98\xa7\xd9\xee\x6e\xa6\x85\x0e\x17\xfd\x9d\xec\xee\x6e\xc7\x5c\x2d\xae\x69\xf7\x88\x5b\x7a\x9a\x98\xe3\xbb\x44\xef\xe0\xc8\x81\x48\xb2\xd1\xfe\x38\x86\xb7\x80\xde\x61\x30\x33\xc9\x46\x07\x0a\xe2\x51\x37\x44\x92\x8d\x0e\x15\xd8\xef\x36\x80\x25\xd9\xe8\x91\x82\xfd\x76\x1b\xd8\x24\x1b\xfd\x6e\x1c\xeb\x57\x08\x5d\x42\x21\x26\x73\xf8\x61\x16\xa6\xd8\xc1\xa2\x64\xa5\xef\x81\xc8\x66\x74\x3d\xee\x77\x63\x11\xb2\x43\x18\xd4\x19\x41\xec\xd9\xb9\x41\xcc\x05\x40\x82\x58\xeb\x82\x0b\x63\x4c\x42\xaf\x47\xda\x69\x53\xa5\xea\x87\xa5\xeb\xaa\x9f\x30\xd5\x0f\x3f\x97\x9e\x66\xf9\x63\xa2\x15\xb7\x4b\xbf\x94\xe8\x5f\x56\x3e\x93\x8a\x33\x51\xb4\x57\x83\xec\x83\xb6\xc8\x71\xa5\x49\x20\x49\xb2\x52\x71\x09\xd3\x1e\x34\x74\x2e\x4d\x16\x83\xe3\x32\x9f\xd6\xd2\xc4\x3b\x68\x4a\xff\x6d\xbb\x75\x75\xcf\x4b\xf5\x2f\xb7\x1d\xd6\x04\xfd\xec\xd0\x0d\x00\xd9\xf0\xe4\x83\xb8\xfd\x0a\x1e\x73\xff\x2d\xf4\x03\xd6\xfb\xa1\xa5\xc9\x71\xf3\x69\xb2\xb6\xf7\x54\xcb\xfd\xc7\x7e\xd6\x03\xfd\xd6\x2a\x04\x46\x40\x29\x67\xea\x85\xb8\xf5\xbd\x38\x3a\x76\xeb\xe4\x4c\x0b\xe5\x0b\x74\x0c\xfa\xc7\x1f\x05\x13\x96\x15\xdc\xdd\x71\x3f\xa8\xcc\xa3\x98\x7e\x39\xb0\xdc\xad\x19\x9f\x35\x2b\x2f\x29\x3d\x00\x49\x4f\x87\xcd\xcd\x4d\x3e\x9f\xc3\x03\x99\x6d\x72\xe3\x25\xf7\xb9\x25\xba\x6f\x5e\xee\x58\xa5\xac\xae\x3d\x0b\x12\x6e\xfd\x11\x7e\x85\xdd\xce\xcd\xe7\x46\x6b\x17\xf0\x07\xb9\xc1\x17\x6f\xa2\xf5\x91\xbb\x3c\xec\x72\x7f\xa0\x78\x17\xf2\x11\xdb\xf7\x92\xee\xee\xf6\xe3\xbd\x03\x7b\x4b\x55\x44\x92\xaa\x1f\x86\x7e\x28\x40\x4f\x98\x82\xee\x4b\x0c\x7e\xff\xd2\xf4\x20\x44\x0f\xfb\xeb\xe8\x61\x96\xcf\x7e\xc4\x5e\x79\x7e\x47\x9d\xf4\x7b\x52\xc4\x2f\x3e\xe5\xdc\x05\xe8\xfd\x9b\xb3\xdf\xed\x5d\xb7\xb2\xf8\x46\xff\x31\x9b\xc3\x96\x0d\x21\xf4\x3d\x0a\x6f\x3f\x83\xa8\x7a\xa1\x79\xfb\x2e\x34\x6b\x0f\x1e\xd8\x54\x65\x48\x27\x35\x3f\xd7\x1e\x28\x60\xc6\xb3\x85\x8b\x51\x7c\x3f\xff\x25\x94\x01\xbd\x73\xe0\x60\xc3\x39\x70\x60\x9f\x03\xe0\x97\x06\x22\x19\xb8\x87\x85\xce\xf1\x4f\x02\xc7\x7f\x98\x8a\xcb\xb5\x61\x8d\x81\x3b\x0c\xf4\xf5\x55\x9b\x97\x70\x9e\x0a\x6f\xd9\xba\x5d\x78\xba\x47\x5b\x3a\x59\xde\x7a\x8a\x06\x3a\xe9\xc7\x3b\xc6\x5b\xa3\xa9\x04\x1e\x7c\xcb\x05\x0a\xb6\x83\xd7\x29\x5c\x73\xcc\x4a\x14\xde\x42\xf8\x21\xf3\x16\xad\xcd\x7e\x95\x43\x86\x2e\xde\x5e\x52\x7a\x30\x74\xf0\x1b\x83\xef\x24\xca\x8f\xfd\x2d\x14\x8b\xf5\xbd\xa4\xce\x2d\x14\x86\xa9\x7f\x79\x9b\x68\x07\x8a\xbe\x64\x17\xc5\x2e\x7a\xbb\x28\x26\xef\xfb\x03\xc6\xd0\x67\xf6\x98\xdd\x15\x0e\x85\xdd\x15\x0e\x89\x1d\x2b\x1c\x86\xcd\x7e\xaf\x5b\xe3\x10\xd6\xf6\x3e\x2b\x3c\xcc\x75\x76\x6e\x1e\xbf\xbe\xa5\xd9\xfa\x2d\x63\x3b\x47\xc4\xfa\xd6\xe2\x42\xe9\x5b\xcc\x76\xdb\x8f\xa5\x71\xe8\x79\x35\xe6\x1a\x88\x1f\x75\x60\xdc\xa7\x4c\x01\xc9\xdb\xb5\x7c\x10\x54\x83\x9d\x2f\xeb\xab\xb7\x02\x04\x93\x81\xb0\x0b\xb2\xa4\x0f\x62\xc2\x08\xcb\x23\xc1\x65\x94\x35\xeb\xf1\xd1\x04\x13\x0e\xc1\x99\x2c\x53\x9f\xe7\x34\xe1\x77\x7c\x45\xf2\x1a\x83\x90\x2c\x6f\xcd\xe6\x9c\xd7\x2f\xf0\xa0\xeb\x5b\xe1\x14\xc3\x6e\x59\x9c\xcd\x11\xe3\x1b\xea\x65\x0f\xdb\xe2\xe4\xfe\xfb\x22\x28\x80\xa9\x5e\xa8\xf2\x31\x2d\x54\xc5\xa2\xb1\x66\xd8\x96\xa6\xf7\x1e\x9e\xed\xef\x60\xb8\x7b\xf1\x41\xff\x44\xab\x56\x7b\x07\x5d\x85\xdd\x12\xd0\xcb\x7a\x97\x7d\xfb\x38\xfe\x6e\xdf\x96\x22\xe9\x9a\x53\xf3\x13\x63\x23\x58\xb4\x93\x06\x08\xc9\xdd\x58\x7f\x61\xf4\x3a\x3c\xb0\x87\x60\x77\x7b\xef\x44\xb1\x8a\x91\xad\x62\x62\xb3\xa0\x99\x7a\x1c\x61\x7f\xcd\x74\x16\x5f\x6b\x57\xa0\x70\xe4\xab\xdd\x81\x38\xd8\xdd\xdd\x9d\x80\x30\x51\x01\xc5\xf1\xca\x55\xb5\x06\xbe\x18\xab\xdb\xdd\xc5\xff\x2e\x2b\xa0\xd9\x00\xca\x36\x9c\x80\x13\x67\x13\x47\x46\xff\x61\x19\xbd\x7e\x73\x7c\x32\x39\x3d\x7b\xf2\xf4\x05\x48\x3f\x8d\x3b\x61\xb0\xf5\x64\x63\xf5\x5d\x5c\x14\xe5\x4c\xc0\x9f\x1a\xdc\xef\xc8\x5f\x24\xee\x27\x0f\x0a\xa8\x50\x6b\x54\xc6\xc0\x4a\x4f\x82\xa1\x77\x04\x83\xa2\x02\xa2\x3e\x99\xae\xa0\xe0\x13\x52\x87\x37\x57\xf9\x5c\xf4\x59\x1e\xd2\xc9\x77\xfb\xe8\xe9\x34\xe5\xa5\xca\x45\x3f\x1e\xa2\x83\x55\xf9\x77\x30\xb1\x9b\x20\xd7\xbc\x24\xda\xa5\x14\x95\x17\x16\xef\x86\xfa\x84\x7e\x7b\xe3\x16\x9e\xcb\xb0\x1d\xe3\xae\xdc\x60\x81\xba\x50\x6a\x94\x98\x2c\x49\xcc\xee\x96\xcd\xb2\x13\x2c\xa9\x90\x0a\xc1\xab\xdc\x58\x01\x30\x3d\x29\xfd\xf7\xce\xf2\xaa\x5c\x36\xd6\x21\x7e\x95\x15\xb3\xb9\x38\xcf\x2a\xef\x0c\xe7\xb2\x20\x2a\xf6\x50\x7c\x6a\x98\xc5\x79\x20\x73\x5a\x16\x4d\x55\xce\xe7\xa2\x0a\x66\x7f\xcc\xc5\x8d\x97\x71\x25\xe6\x0b\x51\xd5\x0f\xeb\xab\xac\x12\xb3\xce\xec\x79\x5e\x7c\x98\x34\xa5\x97\x3f\x2f\xa7\x99\x24\xcd\x87\xd9\x22\xef\xce\x2c\xca\x42\x4c\xd4\x57\x37\xd8\x55\x56\x5f\x6d\x03\x96\xd7\x4d\x59\xdd\x6e\x01\x99\x2d\x9b\xb2\x1b\x8c\x9e\xa5\x0c\xd6\x26\x17\xa5\x8f\x39\x82\x9a\xd5\xf3\xae\x2c\xf9\x19\x40\x39\xcf\xed\xc4\x6b\xb9\x6c\xe6\xcc\xa9\x93\x9b\x5d\x41\xc0\xcd\xce\x6c\xb4\x78\xfc\xad\x7c\x36\x99\xef\x3f\x38\xdf\x7f\x74\xbe\xff\xe4\x7c\x1f\xec\xbb\x09\x6e\x0f\x0f\xdc\x2e\x1e\xb8\x7d\x3c\x70\x3b\x79\xe0\xf6\xf2\xc0\xed\xe6\x81\xdb\xcf\x03\xb7\xa3\x07\x7f\xda\x4e\x26\xfa\x17\xbd\x70\x37\x49\x47\x7d\x11\xea\xa1\x0f\x54\x89\xba\x9c\x7f\x84\x77\xcc\xda\x8b\xa0\xc5\x33\x6d\xe8\x2a\xbb\x5e\x03\x2e\x73\x95\xa3\x74\x8a\xb9\xf2\x32\x2f\x3e\x9c\x95\x7f\x01\xea\x49\x9d\x09\x1c\x84\xc1\x28\x88\xc6\x9a\x72\x73\x17\x5a\x16\xff\x6b\x2e\x6e\x3c\x48\x95\x61\x10\xf3\x92\xd6\x66\xea\x50\x8f\x8b\xa0\xd7\x65\x21\x82\xb0\x7f\xf2\x61\xff\x92\xd5\x57\x41\x58\x49\x75\x1e\x30\xee\x25\x61\xf8\xc0\x74\x3e\x59\x36\x65\x18\x38\x30\xad\x66\x67\xf1\x22\xa5\x48\x76\xdc\xca\xb6\xee\x20\x4f\x4d\x4e\x36\x95\xfd\xf3\x0b\x77\x82\x76\x54\xb4\x4d\x0d\x50\xf4\x1d\xec\x66\xc7\xa7\x2f\x53\x77\xb5\xb9\xc3\x43\xc8\xd4\x5d\x83\x41\xb0\xd4\x5d\x98\x2e\x14\x6e\x84\x01\x12\x93\x8b\x76\xc0\x73\x31\x4c\x0b\x24\x78\x54\x06\xc0\x26\x8f\x96\x8b\xdc\x43\x43\x35\x07\x08\xed\x09\x6c\x9e\x21\xe0\x3f\x4d\x26\x03\x9e\x8b\xb6\xe9\x6b\xc1\x79\x2e\x39\x33\xd2\xb4\x63\x91\x3f\x65\x5a\xc4\xc5\x3f\x28\xdf\xa2\x6c\xfe\xa1\xf2\x1d\x62\x76\xbe\x09\xca\x5a\x4b\xfc\xc3\xf8\x5b\x62\x54\x6b\x13\xa9\x72\x95\xda\x45\xa6\xdd\x54\xd9\x55\x32\x50\x84\x60\x0d\x21\xea\x5f\x56\x0e\x25\xf3\x34\x4c\x52\xa8\x56\xdb\x90\xde\x76\xb0\x80\xbd\x43\xa6\xf6\x7e\xe9\x82\xc8\x0d\xd9\xda\x80\x9d\xed\xdf\x22\x89\xf4\x89\x37\xe1\x0c\x92\x91\x2c\xa3\x50\x17\x0a\x55\x61\x14\xbd\xf6\x23\xc5\x01\x70\x2a\x8e\x37\x96\x52\x8c\x01\xa7\xc0\x78\xf8\x1f\x9b\x8a\x29\x6e\x84\x2f\xb7\xcd\x8d\xc9\x03\xe0\x81\xe4\x0d\xf9\x49\xb0\x5d\xb1\xb3\x32\x4a\xc2\xe7\x4e\xdc\x65\x0e\x0e\xd5\x76\xb1\xd6\x1e\x1b\xfc\x25\xbe\x35\x5d\xeb\x79\x96\x65\x5e\x10\x26\xb6\x08\x4e\xa9\x3c\x99\x3e\xd4\x0e\x5b\xfe\x6b\x70\x6a\x5f\xc3\x9b\xa6\x27\x95\xea\x8a\xf2\xf9\x88\x45\xf9\x34\xaf\x37\x3f\x4a\xb4\xb8\xe2\x22\xef\xe9\x38\x5b\xa4\x4e\x91\xc1\x35\xd9\x0f\x98\xfd\xe0\x55\xfe\x29\x2f\x3c\xa7\x98\x4e\xfe\xd0\xf9\x1e\x54\xa2\x5c\x88\xa2\xbf\x6a\xaa\xac\xa8\x73\x89\xe8\xb3\x12\x56\xf7\x91\xa3\x22\xcd\x3d\x1f\x5f\xe5\x75\x12\x61\x42\x14\x93\x32\x76\x8a\xdf\x03\xaf\xa2\xbb\xbb\x40\x0e\x0b\xb5\x79\x55\xce\x94\x26\x06\x3a\x0e\x61\x5e\x2a\x12\x5e\xe6\xc8\xf7\x7a\x01\x86\x29\x5e\x8b\x03\x66\xca\xc2\x2b\xab\xc4\x62\x9e\x4d\xc5\x17\x0d\x8f\xd7\xa1\x47\x46\x89\x3f\xe5\xcd\xd5\xb6\x03\x63\x45\xba\xc6\xc5\x9b\xea\x18\x52\x1b\x1b\x35\xc1\x67\x27\x4f\xce\x7e\x7c\x77\x72\x3a\xc8\xeb\x93\x42\x12\xca\xac\x1f\xfd\x73\x29\xaa\xdb\x07\x0b\xd8\xb4\x1f\x14\xe2\x26\x8a\xe3\x55\x17\x05\xa0\x53\x23\x51\xc8\x2d\xc6\x38\x89\x38\x1a\x61\x25\xb8\xf1\x47\xe3\x84\x7d\xa1\xfd\xe8\x84\xb4\x49\xf3\xe2\xf2\xbf\x59\x1e\xda\xf5\x4e\x0c\x38\xf9\xd0\x3a\x5e\x56\x79\x71\x79\x0a\x81\x82\xea\xbc\x2c\xd0\xf2\xd4\x72\x34\xc7\xf7\x31\xa7\xb7\x6b\x77\xb4\x2e\x3f\x73\x3a\xbd\x7b\x37\x09\xec\x00\xd5\xb2\xd8\xb4\xfe\xc9\x61\x93\xf1\x57\x32\xb4\x7c\xa4\xf4\x23\xbc\xf3\x9e\x69\x02\xad\x99\x4f\xb2\x78\xed\x58\x50\x0a\xd1\xe1\xc5\xe4\x5e\x9b\xb0\x27\x0b\x91\x55\xd7\x0f\xcd\xdf\xdf\xe2\x49\xc3\xdd\x39\x0f\xd6\xec\x9c\x87\x6c\xe7\x74\x27\x25\x10\xe4\x01\x56\x83\xc7\xf2\xfe\x6e\x32\x19\x18\x4e\x42\xfe\xd2\x84\x9f\x17\xb9\x15\x01\xb3\xd6\x7b\xc0\x04\x4f\xf8\x1a\xc3\xe4\xa3\x15\x1c\xd8\x75\xf5\xe3\x36\x99\x96\x45\x21\xa6\x0d\x32\x29\xa6\x3c\x16\x41\x1b\xc9\x5c\xdc\xa0\xa3\x48\x28\xb9\x40\x09\xf3\x71\x5e\x53\x51\x49\x06\xf1\x8a\x9e\xd2\xd7\xc0\x8c\x4c\x9d\xe0\x67\x15\x41\xaf\xb2\xfa\xe4\x9f\xcb\xfc\x63\x36\x17\x05\x30\x49\x5e\xd3\xf1\x4a\xfe\x53\xf2\x36\xed\x7b\xa9\x35\x17\x89\x9a\x6d\x78\x7a\xb0\xb1\x1c\x5a\x93\xe5\x05\xb0\x9d\x2a\x5b\xa7\x45\x71\x82\x64\x9d\xea\xa4\xdd\x5d\xfd\x93\x7c\xc3\x2b\xd2\x3f\xba\xce\xf2\x42\x96\x00\xbe\x4c\x80\xc9\x0e\x54\x2a\x7b\x96\x44\x3c\x39\xa2\x20\xa5\xd8\x8b\xc4\x1d\x0c\xfa\x5e\x97\x75\xee\xee\xf2\x62\xf1\x0a\x53\x07\x13\xc2\x98\xe4\x2e\x3f\x0a\x40\x08\x87\xc3\x5a\xda\x36\xf1\x11\xb7\x66\xf2\xc0\x83\x22\x05\x41\x06\x9a\xf2\xf1\x35\x88\xf6\x4c\x31\x6d\x12\xcc\x0b\xed\xee\xf2\x2f\xcb\x64\x3b\x4d\x3f\x3a\x49\x0e\xb0\x6c\x2f\x6a\xc4\xf5\x62\x9e\x35\x02\x9e\x7e\x3e\x06\x92\x43\x85\xe4\x94\x88\x4f\x8d\x53\x46\xa7\xb6\xc9\x4c\x13\x59\x37\x0d\xa3\x79\xec\x5a\xfa\x5d\x93\x99\xae\xda\x76\x4b\xba\x46\xb7\x01\xca\xf1\x99\x42\xf1\x45\x5e\xe4\xf5\x95\x5d\x4a\x76\x3d\x98\x71\x64\x3b\x7a\x83\x86\xb9\x8b\x7e\x0a\x96\xb7\x89\xfa\x51\xdb\x2e\x38\x9c\x35\x63\x19\xae\x43\x03\xbc\x1d\x28\xe5\x6c\x33\x68\x70\xfc\x1a\x46\x6a\xc7\x4a\x00\xdf\x08\xe0\x5e\x69\x1d\xdb\x2f\x69\xa0\xf3\x70\x71\x85\xa2\x5f\xc2\xfa\x87\x3c\xb3\x76\x1c\x37\x24\xe6\x75\xae\x01\x6b\x25\xc4\x01\xb1\xbf\x49\x92\x87\x64\x28\x59\x0d\x6f\x4b\x29\xfe\xff\x48\x81\xf0\x2f\x7a\x6f\xd9\xc6\xff\x94\x7b\x0a\x07\xee\x2c\xe0\x70\x65\x31\x17\x4f\xe7\xf9\xf4\x83\x77\x2b\xb1\x72\x4d\xbf\x03\xa2\xb2\x80\x0c\x6c\x9d\x68\xf9\x0f\x3e\xb8\x21\x8e\x1f\x9c\x61\xff\x71\x32\x19\x58\xb9\x00\x2f\x29\x27\x20\xaa\xfa\xd3\x64\x32\x30\x59\x1b\x24\xcc\x72\xa2\x02\x22\x66\x26\x22\x59\x03\x4e\x3a\x02\xa7\xd9\x85\x20\x5b\x25\x57\x46\x60\xb2\x50\xbc\x36\x41\x8f\xb1\x68\xfb\x6c\x2c\x9a\xd0\x7d\xac\x51\xfb\xaf\x2e\xeb\x7e\xb9\x80\x1d\x86\x44\x1e\xaf\x75\xf8\x5e\xb2\x20\xc9\x2f\xfa\x3c\x47\xdb\x71\xb0\xc4\x56\x29\x8a\xd4\x29\x55\x36\x50\xff\x21\x95\x9c\x7b\x1f\xc4\xc9\x2c\x6b\x32\x0f\x06\xa2\xdc\x1b\x1d\x2f\xe5\x4b\xd5\x42\x96\xea\xe5\x80\x4e\xab\x44\x7d\xe3\x4d\x26\x59\x41\x43\x47\xf0\x17\x5a\x39\x82\xd8\xf4\x31\xf6\xcd\x92\x35\xad\x94\x3c\x45\xcc\x9e\xd0\x31\xb1\x6a\x5b\x4b\x2d\xbd\x5b\x36\x45\xb6\x34\x75\x3a\x8a\xb2\xb9\xdc\x6e\xc0\x85\x66\x94\x44\x72\xab\x8b\x92\x68\xda\x54\x73\xa2\xb2\xb7\x6f\x9e\xbf\x3e\x3b\x79\x37\x39\xf9\xeb\xc9\xeb\xb3\x09\x58\x4a\xbd\x3b\xf9\xe1\xe4\x6f\xe9\xc3\x7f\x4c\x25\x91\xdf\x5d\x97\xcb\x5a\xdc\x35\xe5\x72\x7a\xf5\x90\x56\xc8\x93\xf9\xbc\xbc\x11\x14\xd1\x5b\x6f\x40\xe0\x52\x27\xc9\x30\xef\x85\xb8\xad\x79\x5c\x08\x96\xec\x1a\x96\xe5\x17\xfd\xae\x4e\x60\x0c\x25\xa8\x18\xe6\xc8\x18\x5e\x5b\x0b\x11\x21\x48\xe5\x80\xb7\x14\x45\xf0\x5c\xcc\x92\x8c\x3e\x4a\x56\xdc\x46\xf1\x77\xe9\xbe\x6d\xff\x0e\x64\x89\xe0\x78\xb2\x5b\xc6\x7c\x12\xa7\x66\xc7\x05\x95\x8f\xfc\x02\x5b\x1f\x81\xc5\xd0\x0b\x71\x1b\x8d\x77\x77\x43\x0d\x4a\x68\x72\x23\xa9\x1a\x40\x2b\x7b\xe3\x73\x90\xd2\xdb\x21\x9f\x4c\x2d\x58\x7b\x62\xdc\x52\x40\xf3\x86\xb4\xdf\x54\xa0\x53\xa1\x97\x08\x9f\x02\x23\xc6\x7e\x3e\x4b\xf7\xf6\xf0\xca\xbd\x5c\xe6\xb3\x70\x23\x9a\xda\x46\xaa\xd0\x38\x5d\xe9\x88\x87\x47\x8a\x9e\x4d\x0c\x44\xdc\x87\x2a\xcd\xc3\xd0\xb6\xf5\xce\xa9\x8f\xa6\x88\x7c\xf9\x70\x02\x0a\xd0\x8d\xef\xca\x40\x2d\x23\xf4\xdb\x44\x41\x7f\x76\x94\x0f\x24\xec\xa0\x93\xdb\x8f\x79\xc9\xf3\xe5\xf9\xf9\x5c\xd4\xa9\x53\xa4\x6e\xca\xc5\xdb\xaa\x5c\x64\x97\x19\x32\x60\x2d\x93\xa9\xe8\xdd\x41\x05\xae\xaa\xb2\x6b\xd1\x40\x90\x49\xbe\xac\x21\x89\xed\x4b\x26\x44\x17\x95\x8c\x57\x54\xa1\xb5\x67\x2b\x18\x70\x5f\x6f\xc1\xab\x2f\x6a\x85\xe8\x9a\xea\x60\xa5\xac\xf1\x95\x4b\xe3\xf5\x3b\x5e\x99\xde\xd8\x02\xf0\xbe\xe9\xb1\xde\xa3\x46\x2e\x21\x8d\xd5\x3e\x35\x8a\x9e\x1f\x47\x63\xdc\xa8\x58\x41\xbe\x23\xb6\x10\x5d\x8c\xad\x73\xd3\xb0\xb5\xcc\xef\xee\x82\x00\xcc\x22\x8f\x65\xb8\x1d\x42\x57\x1c\x7c\x7f\x5f\x07\x5c\x2d\x8b\x3e\x77\x25\xee\x91\x22\xee\x4b\x88\xc7\x5a\x14\x33\x35\x3f\xf0\xe1\x49\xbe\x38\xce\xf8\xe9\x63\x4d\x0b\xc3\xe1\x78\x6d\x0d\x71\xdc\xb6\x71\xdb\x0e\x15\x0e\xe1\x82\x53\x16\xfd\x08\x22\x31\xcf\x45\x56\xbd\xa3\x17\x01\x76\x29\xa0\x9b\xf6\xb6\x0b\x96\x6d\x28\x94\xc4\x7c\x4a\xf2\x27\x83\xbe\x7b\x98\x52\xaf\x52\x2d\xa9\x1b\xe9\x5f\x2a\xda\xc5\xc1\x38\x21\xc2\xa9\x53\x3a\xbf\x1d\xdf\xc5\xc9\x41\xf2\xe0\x20\x26\x16\xa6\xbe\xd2\x8b\x45\x7e\x24\x46\x58\x9e\x72\x32\x1a\x7c\x10\xb7\x37\x65\x35\xab\xd9\xf3\x14\x7b\x81\xe3\x5b\x10\x38\x76\x2d\x8b\xbb\xbb\x08\xce\xa7\x88\xad\xcb\xa3\x15\x75\xed\x08\xee\x46\xd4\x80\xda\xb4\x10\xb0\x3e\x52\xdd\x6f\xe1\xaa\x7c\x64\x75\x03\x6e\xf7\xb4\x57\x60\x4b\xf4\x91\xd8\x9b\x0b\xe6\xd9\x69\xb4\x6c\x8f\x56\x4e\xbb\x6d\x62\x2d\xce\x23\x8b\xe9\x18\xed\x83\x7f\x92\xe7\xc7\x51\x3b\x54\x5e\x6b\xd5\xae\x81\x63\x1f\xb0\x15\x0f\x17\xb9\xa1\x9d\xae\xf7\x16\x5d\x52\xab\x2e\x1b\x5c\x06\x2b\x33\xd9\xad\x75\x4a\xac\x39\x7d\x18\xc5\xd0\x5a\x00\xff\xb9\x03\xbe\x7b\x2b\xe2\x2b\xc4\x0d\xe3\x05\xfb\xdf\x48\x04\x3f\xc0\x7b\x0d\xcd\x6a\xf4\xcd\x9e\x6a\x74\xef\x9b\xe8\x1b\x3b\x68\x87\xf5\xf6\xca\x3f\x36\xde\x10\xb5\x32\xd3\x2f\xf4\x3a\x74\x2d\xaa\x4b\xb7\x26\xef\xf6\xa8\xda\xbc\x5e\xfc\x7f\xec\xfd\xfb\x76\xdb\xc8\xb1\x28\x0e\xff\xbf\x9f\x82\x42\xce\xc7\x21\xb6\x20\x5a\xb2\x27\xc9\x44\x1c\x78\xb6\xc7\x97\xc4\xdf\xf8\x76\x6c\x27\x39\xfb\x30\x3a\x0a\x44\x80\x12\xc6\x24\x41\x03\xa0\x25\x85\xc2\xbb\xff\x56\x57\x55\x77\x57\x5f\x00\x92\x92\x9c\x99\xec\x95\xe5\xb5\x2c\xa2\xbb\xba\xbb\xfa\x56\x5d\x5d\x5d\x97\x55\xcd\x15\xaf\x4c\x9b\xf9\x59\xf2\x8f\x6b\x30\x7a\x6f\x03\x20\x9f\xa1\x2d\xb9\x64\x5b\x6d\xe7\x0a\x36\x65\x9b\x6b\x2c\x17\xa8\x0a\x4c\x8b\x45\xb6\xf0\x5d\x4e\x77\xbe\xaf\x76\x6b\x4e\xfd\x0f\xb9\xcd\xfe\x73\xd4\x9b\x7e\xb1\xb7\x3e\x58\xe5\x9b\x6e\xcb\xf6\x85\xda\xa3\x1f\x22\xb7\x80\xa3\xc9\x24\x33\x50\xb0\xb5\x78\x55\x24\xa9\xa3\x52\x84\xc9\x78\xbf\x9f\xbb\x97\xe0\xe9\xbc\xb6\xbd\x5e\x6c\x52\x1f\x82\x6b\xd1\x26\xb5\xa1\x76\x21\x80\x98\xea\x36\x29\xc0\x53\xb9\x85\x36\x6a\x0e\x75\x2a\x99\x79\x9e\x06\x5a\xae\xf6\x62\x11\xd9\x77\xfb\x36\x79\x84\x4f\x75\xa7\x43\x0e\xe0\x57\x35\x6b\x55\x64\x3b\xf2\x6a\xb2\x59\xf1\x60\xac\x10\x39\x0e\x95\x09\x99\x2b\xef\xb7\xd3\xa7\x74\x4c\x3f\x99\x4c\xb2\x65\x9d\xa5\x3f\x5e\xe3\x80\xb1\x90\x15\x74\xf7\x90\x77\x90\x97\x8b\x69\x51\x49\xa9\xc0\xe7\xf8\xd0\xf2\xf2\xc8\xa1\x1c\x6f\x8f\xa2\x40\x99\x7d\xde\xe7\x40\xe3\xfc\x64\xb8\x48\xe6\x59\xc5\xbc\x0b\xd8\xf9\xf4\x1d\xc7\xb2\xfa\xf0\xac\xcc\x92\x4f\xcd\xce\xaf\x9b\x12\x81\x23\x6d\x47\xf6\x19\xbd\xd2\xb0\xc7\xc9\x98\x3b\x1f\xc9\xae\xea\x6c\x91\x0e\xd6\xcc\x27\x6e\x13\x32\x8b\x39\xdc\x5e\xac\xf4\x60\x46\x9a\x32\x91\x20\x22\xcb\x67\x2c\xec\x2a\x0d\x1b\x52\xe6\x77\xfa\xa2\x23\x4b\xf0\x9b\x0e\x7b\x48\xa5\x2d\x77\x9e\xd5\xba\xee\xc0\xc9\x0f\xc2\xa8\x5a\x2d\x97\xb3\x3c\x4b\xa9\x1b\x6b\x60\x76\x1c\xc0\x70\x0d\x44\x67\x60\x42\xbb\x0d\x2a\xe7\xa8\x6c\x4d\xca\xaa\x4d\x5c\xcc\x4c\xfd\x02\x64\x41\xe1\x39\x45\xb9\xfc\xd6\x44\x05\xc7\x87\x27\xc4\x3d\xbe\x28\x70\x73\xc5\xf2\xf1\x86\x21\xf7\xa2\x28\x07\xaa\x86\x30\xfa\xbc\xac\x62\xb3\xd0\xf0\xf3\xb2\x62\xf5\x64\x93\xe2\x7c\x91\xff\x23\x2b\xc5\x78\x18\x6b\x35\x5b\xc4\x9f\x97\x7c\x91\x66\x8b\xd1\xfe\x7e\x8e\x93\xf4\x79\x29\x32\xd1\x25\x29\x04\x3e\xf8\x92\xa7\x59\xfa\xf1\x7a\x99\xc5\xda\x47\x32\x8c\xef\x72\x28\xc3\x22\x98\x23\x2a\xc3\x72\x9a\xa9\x63\x82\x3f\x19\x19\x75\xba\xa3\x8f\x8c\xab\x82\xa6\xdb\x49\x4b\x65\x8a\x19\xfd\xbc\x1c\xae\xca\xd9\x4f\x68\x06\xb0\x2d\x3e\x58\x62\x7b\x8c\x24\x7c\x2b\x4e\x04\x20\xf6\x27\xaf\x13\xae\x84\x46\x23\xc8\x94\xe3\x88\xab\x90\xc0\x29\x48\x40\x6d\xa9\xa6\xca\x06\x33\x17\x7b\x0f\xa9\x7b\x36\x46\xa7\x73\xb2\xf9\xfd\x83\x1c\xb2\x3a\x2d\x88\xe5\x6a\x22\x81\x62\x03\x2b\x0d\xfc\xe1\xb6\x35\x10\x92\x47\xd8\xcf\xcb\x21\x2c\xd2\x61\x95\x95\x39\x14\xd6\x24\x02\xdd\xc2\x46\x6a\x9c\xc4\x2f\x90\xbb\xe1\x5d\x57\x55\x50\x51\x2c\xd1\xe9\xc0\xa5\x24\x14\x98\x34\x8e\x01\x30\xcd\xa6\xcc\x21\x8f\x67\xed\xb3\x49\x31\x9d\xcd\x7a\x60\xb5\xe9\x18\xf4\xe0\x49\x79\x5e\xfd\x35\xaf\x2f\x8a\x95\xbc\x82\xf9\x88\x1d\x1d\x08\xb2\x80\x26\x69\xf0\xac\xa8\xd2\x83\x90\xa2\x7d\xd3\xf7\x58\xfd\xd2\x37\xdf\x21\x5b\x79\x4a\x46\xa5\xe0\x1a\xdd\x86\x2e\x8b\x32\xe5\x70\xd4\x59\x6f\xbc\xe6\xca\x29\x5d\x84\x1b\x63\x1b\x8e\x9c\xa6\xb9\x23\xe8\xf7\x8a\x74\xd5\x17\x4a\x22\xad\x9d\x39\xb5\x48\xbf\xb7\x11\x7a\xeb\xe3\xfd\xb6\x82\xee\xc6\x50\x20\xb7\x14\x39\x4d\x26\x4a\x9d\x6f\x75\x72\x0e\x17\xff\x20\x09\x64\xdc\xde\xbf\x5e\x64\xa8\x7f\x13\xd5\x79\x3d\x23\xa7\xf2\x65\x36\xc3\x1f\x09\x3c\xa4\x3f\x9d\x25\x55\x85\xa1\xee\xbe\x64\x41\x24\x2e\x59\xf9\xe2\x9c\x52\xe9\x2b\x88\xd2\xbc\x82\x43\x99\xd2\xe5\x67\x10\x9d\xe6\xd5\x33\xfa\x20\x95\x20\x52\x6b\xa2\xaf\xa4\xae\xcb\xfc\x6c\x55\x67\x3f\x4a\xff\xf5\xe3\xe0\xa2\xcc\xa6\x41\x14\x00\x4e\x81\x38\x7c\x66\xc1\x49\x04\x1e\xc1\x44\x07\x18\xa0\x44\x4a\xe3\xa1\x5b\x3e\x89\xb4\xac\x43\x8a\x38\x6c\x4d\x0f\xa6\xd1\xe1\x57\xb0\x82\xa3\x41\xd5\xc3\x9e\x8b\x55\x5a\x40\x7a\x21\x52\x34\x0b\x57\x7a\x80\xc1\xca\x73\x70\x83\x13\x36\xd1\x29\x4e\x29\x6a\x41\xa5\x0e\x16\x8b\xa2\xce\xa7\xd7\x66\xbc\xc1\x81\x73\xee\x36\x91\xb8\x47\xaf\x96\x62\xf1\xbc\x45\x77\xc5\x65\x65\xab\xb2\x39\xdc\x07\x34\xc0\x38\x0f\x50\x29\xcd\xae\x30\x12\x78\x2b\x21\xe5\x50\xe0\x22\x1c\x98\x02\x73\x57\xd8\x85\xc3\x88\x42\xae\x02\x3c\xed\x4c\xf4\x2f\x9e\x5b\x54\x56\x90\x09\xde\x44\xb8\xbe\x9f\xe3\xc1\x40\x7b\xc3\x29\x41\x6a\x76\x28\x99\x91\xe3\xb9\xf5\x09\xa1\x67\xb9\xcc\x50\xd3\x24\x6c\x04\xfb\x91\xc7\x87\xc8\x6b\x00\xd3\x21\xb8\x62\x15\x0f\x17\xd8\x8d\x7c\x0a\x8e\x12\xe2\x38\x46\x33\x5f\x45\xd6\xef\x67\x00\x3a\x4f\xaf\x7b\xee\xb8\xb9\xa8\x91\x2c\xb9\x7c\x2d\x80\x3a\xc9\x2d\xac\x2b\xdc\xd3\xd0\x91\x7f\x1b\xc3\xaa\xfd\xdc\x09\x1e\x88\x98\xd8\xb5\xf2\x21\xef\x5a\x43\x86\xa6\x33\xbb\x36\xc6\xe7\xd3\x89\x62\x57\xee\x91\x55\x11\xf5\xfe\x52\xf3\xd1\x34\x0d\x86\x50\x43\x69\xf8\x6e\xb4\x8f\x20\x1c\x7a\x33\x40\xdd\x21\xa4\xe9\x52\xfa\x30\xb0\x2f\x4c\xf2\x38\x92\xd4\x7f\xf0\x29\x53\xe1\x0d\x58\xac\x70\xe6\xee\x1a\xa3\xa8\x08\x6e\x82\x1d\x1a\x81\x0c\x65\xcc\x7d\xe7\xff\xa0\x09\xb1\x71\xf0\x04\x21\x9e\x2a\x4d\x48\x87\xd7\x66\xf4\x50\x5b\x0c\xdf\x32\x74\xad\xf2\x3c\x09\x2d\x1f\xe5\x8a\x05\xe2\x9a\x71\xe6\xb5\x07\x18\x17\x2b\x13\x19\x23\x2d\xf0\xb7\xf9\x9a\xa3\x30\xf2\x5c\xbf\xa8\x02\xfb\xea\xc5\xce\x6e\xdc\x59\x2c\xe1\xe6\x46\x33\x48\x87\x27\xd1\x3c\xb9\xca\xe7\xab\xb9\x14\x01\xc4\x1b\x65\x02\x03\x56\x17\xdd\xf1\x86\xf2\x8f\x62\x1f\xe5\x65\x1d\x2e\x6a\xac\x00\xc6\xeb\x96\x9d\x94\xa6\xce\x16\x0e\x21\x47\x9f\x23\x2b\xdf\xc4\x61\x3e\xe4\xb5\x50\x7e\xd3\x0a\xc5\xd4\x68\xcc\xea\x90\x01\x71\x55\xbb\x21\x05\xda\xc7\x82\x6a\xfe\xf4\x80\x32\xb6\x26\x08\x9b\x26\x54\x5e\x95\x9c\xe3\xd6\x9c\x3d\x5a\x13\x9b\x97\xd4\x2b\x04\xa4\x58\x8a\xde\xa5\xe0\x41\x8b\x33\x56\x0e\x5e\x0c\x0d\xd2\xab\x74\xb0\x18\x78\xea\x64\x26\x15\xe1\x70\x83\x8a\x66\x13\x46\xc4\xac\x1c\x9b\xaa\x08\xf2\xb1\xd9\x55\x14\x70\xde\x97\x91\xd1\x68\x79\x5c\xee\x14\xe5\x18\x92\xed\x03\x71\x86\xd7\xc5\x01\x3e\xb2\x1c\x28\x16\x51\x8c\x9b\x7e\x57\x7e\x22\x93\x3d\x4a\xfb\x70\x07\xb1\xc0\xa4\xb6\xbe\x2e\x17\xc7\xc1\x69\x95\xcd\xa6\x41\xeb\xcb\x37\xde\xd7\xda\x32\x65\x8f\xb7\x7e\x14\x37\x68\x0c\x27\x72\x36\x9d\x69\x23\x46\xd2\x3a\xee\xfc\x3c\x2b\x87\x97\x49\xb9\x18\x04\x1f\x2f\xf2\xaa\x47\xb6\x45\xbd\xbc\x12\x27\x62\xb2\xe8\xe5\x0b\x5c\xe6\x3d\x2a\xdc\xab\xea\xa4\xce\x7a\x67\xd9\x24\x59\x55\x59\x2f\xa9\x7b\xb3\x2c\xa9\xea\x5e\xb1\xc8\x7a\xc5\xb4\x97\xd7\x55\x4f\x33\x88\xbd\x65\x99\x55\xd9\xa2\x9e\x5d\xf7\x2e\x92\xaa\x97\xf4\x04\xbb\xf2\x40\x51\x6a\xa4\xc1\x51\xaf\x28\x7b\xf5\x45\xa6\x24\x27\x48\x18\x7b\x0b\x50\x6c\x14\x78\x7c\x49\x66\x79\x3a\xd4\x71\x66\xef\x81\x84\x92\x07\x7d\xa9\x4e\x3f\x32\xc6\x89\x2e\x16\x62\x9c\x34\x48\xac\xc8\x97\xb2\xb7\x30\x89\x89\xaa\x5d\x3e\x44\x3b\x45\xb9\x7d\x49\x6b\x59\xf0\x00\x53\xce\x62\x93\x68\x4a\xab\x3d\xa3\xd8\xd0\x2e\xdd\x7e\xf9\x16\x1d\x0b\x43\x27\xe2\xae\xd7\xb0\x80\x71\x01\x59\x72\x9e\x95\x7f\x5e\xa6\x49\x9d\xfd\xb9\x9c\x31\x23\x9a\x68\x55\xce\xc4\x25\xc2\x04\x38\x66\x1e\xcd\x15\xa4\xb8\x84\x91\xf6\xaf\x4a\x54\xf4\xf8\xe6\x86\xa7\xae\xca\xd9\x6b\x23\xdc\xb1\x58\xbf\xa2\xbc\xd6\x12\xfa\x0d\xa8\x21\x1f\x86\x6b\x91\x1c\x43\x9e\x3c\xfa\xd8\x8a\xf8\xd9\x99\x76\x39\x58\xb8\xa5\x7d\x6d\x82\x7e\x04\xf4\x24\x90\xaa\xe0\x3f\x57\x43\x4c\xf9\xf3\xfb\x57\x80\x87\xf6\x42\xd5\x56\x83\x5a\x3b\xba\x0a\x4a\xd2\x75\xb0\xb2\x68\xdd\x83\xa1\xca\x1a\xeb\xec\xf6\x92\x66\x10\x31\xb6\xdf\xc8\xa4\xc2\x80\xab\x1d\x12\x99\xb2\x06\x8f\x8c\x01\x64\x0b\xf9\x94\xab\xa4\x20\x17\x48\x27\x30\x8e\x3b\xbc\x4c\x2f\x97\xcc\xa2\x14\x79\x07\xe7\x50\xd0\x67\x06\x84\xdc\xc8\xc9\x2b\x84\xdc\xc5\x63\x31\x41\x46\x45\x51\x20\x43\x05\x4b\x99\x6d\x10\xa2\xb8\x72\x6d\x4b\x3c\xda\x54\x67\x1c\xd4\xdb\x05\x1f\xee\xb9\x58\x8a\x99\xe4\xa4\x63\xf3\x09\xfd\x5e\x82\xaa\x90\x49\x5b\x32\x5f\xb4\x68\x0f\x0d\x01\xb8\x45\xc2\x04\x01\x4c\x49\xb8\x6d\x4b\xbf\xe1\x5c\xd2\x00\x86\x3b\x3a\xc9\x55\xc5\x5b\xf1\x5d\xac\x92\x91\x47\xb6\x2a\x41\xc7\xf2\x07\x93\xbe\x51\x12\xdc\x43\x55\x2d\x7b\x71\x6c\x56\xc1\x34\xff\x39\x8f\xc7\xb8\x74\x96\x1c\xb0\x5e\x87\x0d\x1b\x81\x6d\xf0\x70\x46\x29\xd6\x15\x34\x5a\x9e\x7f\x04\xf2\x7c\x13\xb8\x45\xb4\x0f\x8b\xc8\x1e\x7d\xbc\x79\x63\x96\xf4\x77\x4f\xca\x54\x32\xd1\xd0\xa7\xa4\xa9\xb9\xcd\x13\x94\x81\x22\xe8\xcf\x1a\x92\x49\xbd\x68\xb8\x69\x5d\xd8\x30\xdf\x87\xbc\x86\x6e\x16\xd5\xa8\xc2\x7d\xe3\x41\x51\x9e\x47\x2e\xda\xbe\x3b\xf8\x01\xa4\xf8\x12\x8f\x34\x15\x43\x85\x01\xc7\xd3\x81\xe2\x70\x7c\x12\x84\x70\x9a\x6c\x6e\xf9\x4f\x65\x36\xb5\xaf\x62\x24\xb6\x0c\xc2\xbd\x38\x0e\x12\xd3\x83\xe3\xed\xf9\x08\x43\x46\xdd\xce\x8d\x0b\x84\x82\xf0\x16\x4b\xc0\x15\x61\x6f\x38\xe4\x1b\x2e\x8b\x6e\x61\x1c\x38\xbf\xd1\x76\x3d\x60\x88\x1f\x07\xbf\x09\x9a\x70\x24\x07\x57\x05\xb8\x70\xa3\xc7\x07\x12\x06\xb5\xa7\xee\x81\x4d\x57\x8d\x4a\x23\x3b\x9f\x9c\x97\xb8\xf5\x13\xa9\xf1\x45\x96\xa0\x6a\x75\x70\x43\x79\x8a\xfa\xc1\xb5\xeb\xbc\x4a\x73\x07\x47\xa1\x7e\x65\xf4\x83\x1c\x0a\xa0\xc8\xd1\xa9\x53\xd4\xa1\x1a\x1b\xe7\xe7\xc1\xd1\x09\x0b\xfe\xf0\xbf\xf9\xd3\x05\xe8\x6c\xb9\xf2\x2e\x2a\x0e\x1e\xbd\x1a\x80\x91\x52\x0a\xea\x7c\x6c\x24\x0a\x02\x0a\x0b\x52\x62\x33\x5d\x90\x4f\x7e\xd1\xff\xbc\x9e\x65\xb2\x46\x50\x3f\xa7\x38\x52\x90\x79\xbd\xcc\x62\x4b\xf9\x9e\x81\xd0\xf1\x8a\xda\x6e\x52\xdc\xca\x1f\xe5\x7c\xa2\xde\x58\xb5\x3a\xd2\xf8\xb8\x4b\xc6\xd6\xbd\x18\x9e\x67\xf5\xf3\x6a\x92\x2c\xb3\x74\x60\x88\x62\x45\x4d\x91\x7a\x3b\x43\xbe\xa0\xb3\x62\x55\xaa\x69\x70\xf0\x18\xdf\xb4\x95\x62\x22\xfe\xd1\xba\xa1\x28\x7b\x03\x01\xbe\x9b\x74\x73\xa3\x1c\x33\xa8\x30\x9a\x4a\x13\x84\x02\x31\x88\xb6\xe4\x82\xd6\x5d\xd9\x99\x28\x6c\xf2\xf4\xc0\xcb\x68\xbd\x55\x2e\x4f\x25\x48\xf5\x16\x45\x08\xb3\x35\x49\x91\xe4\x95\x36\x83\xa1\x34\x8a\x3c\x15\x4f\x12\xab\xa1\x6a\x42\xbe\xe9\xfc\x7e\x26\xac\xe9\xa1\xd4\x16\xab\x74\xae\x7e\xe8\xba\x17\x31\x5d\xc1\x79\x7d\x2e\xb5\xf8\x58\xe2\x25\x0d\x5f\x4b\xfc\x63\xa3\x5a\xa3\xf4\xde\x71\xef\x5a\x8d\x1b\x75\x12\x4d\x3d\x41\x62\xbc\x4f\x0d\xcd\x3f\xa6\x19\x88\x70\xa2\xbd\x79\x51\x2e\x2f\x5a\xe1\x6c\x0d\xc2\x5f\x83\x12\xe0\x2f\xa6\x6d\xe7\xd1\x7f\xfb\xd6\xd4\x7f\x7b\x2a\x07\xde\x31\x11\xf7\x68\x76\x9d\xbe\x96\xc3\xef\xa8\xdd\xe9\xac\x2e\xd5\xb2\xdf\xbb\x9a\x65\xcc\xc1\x8d\x81\x8b\x7c\xa8\xd5\x15\x1b\x56\x9e\x2d\x8e\x71\xd4\xbe\xe5\xce\x68\x06\x2a\x9e\xb0\xf1\x6c\x8d\x20\x1f\x20\x3a\xad\x3a\x20\xa0\x7d\xd5\x05\x30\xbc\x90\x1f\x20\x8b\x54\x5f\x2f\x56\xb3\x99\xb4\xcb\x90\xf5\xf7\xfb\xf2\x17\x5c\x43\xad\xcf\x61\x5e\xe1\xbb\xc3\xb3\x04\xfc\x69\xca\x4b\xae\x0c\x21\x21\x7f\xc4\x01\x88\x20\x1b\x6d\x76\xee\x28\x93\xeb\x8b\xea\x88\xf7\xc2\x05\x24\x97\x9b\x7b\x1c\xca\xb4\x96\x1e\xe6\xd5\xc7\x62\x29\x08\xb2\x59\x93\x53\xe0\x74\x99\x94\x64\x21\x1e\x84\x8d\x1c\x1d\x83\x67\xc0\x26\xf3\xe9\x40\xe6\xa2\xc9\xbd\x1c\xaa\x38\x00\xd5\xf8\x60\x5f\x66\x37\x6a\x58\x63\x99\xf4\x83\x7d\x05\x27\x57\x50\x03\x5e\x51\x78\xec\xb4\x0a\xb5\xdc\xdc\xb0\xa5\xe0\x0e\x1a\x5c\xd3\x78\xc7\xa4\xcf\x22\xfc\x0a\x47\x46\xad\x74\x9f\x13\x75\x49\x3e\x25\x38\x45\xc3\x0a\x3e\x36\xcc\xee\x5d\xcd\xe4\xb6\x47\x2d\xd1\xde\xce\x93\x56\x75\x4e\x1f\xb5\x7c\x1b\x18\x1e\xd0\xf8\xc7\x46\xc2\x2f\x7d\x44\x6d\x24\xfc\x18\x3f\xec\x5e\x0f\x03\x5b\xff\x7c\x2b\xdf\x9a\xbb\x5b\x3b\xff\x1a\x68\xbf\xad\x00\x7e\xe7\xb3\x00\x80\x30\xca\xe3\x06\x07\x91\xf6\xa9\xf1\xa8\xe3\xd4\xf8\x96\x9d\x1a\x93\x64\x9e\xcd\xf2\x7f\x64\x8e\x9d\xb2\xcc\xd8\xc1\xed\xe0\xef\xee\xea\x75\xd0\x5f\xc1\x06\x53\xe6\xdf\xef\x62\xca\xfc\x9d\x79\x28\xb5\xb8\x12\x60\xae\xa3\xb5\x4f\x35\xb8\x86\xc9\x87\x4c\xbc\x4e\x9a\x67\x0c\xc9\x1c\x6d\x7b\x27\x7e\x1f\x79\x47\x0f\x06\xb1\x92\x4f\x3e\xd2\x1e\x47\x48\xb0\xc6\x0c\x9c\x80\x20\x44\xea\x4e\x01\x34\xf2\x2d\x36\x39\xd2\x27\x86\x64\x8a\x6f\x6e\x0c\xe4\xc2\x56\xb3\x28\x76\xa2\xd8\xee\x4c\xfc\x0f\x64\x70\x83\x92\x18\x3f\xd4\xc7\x99\xd1\xde\xc8\xf8\xd2\xaf\xdb\x4a\x00\xad\xfb\x1c\xca\xcb\x8c\x65\xcf\x68\xa9\x84\x55\x63\x6d\x2a\x66\x0d\x38\x3d\x58\xe8\xd0\xc4\x6a\xa3\x0c\x82\xff\x2e\x56\xbd\xf9\xaa\xaa\x7b\xcb\xa4\xaa\x7a\x49\x4f\x9e\x7e\xe0\x77\xa2\x2e\x68\x52\x03\x14\xd6\x61\xb8\x4c\x12\x78\x0f\x1e\xfc\xed\xc1\x83\xf3\x28\x18\x06\xe1\x48\x0c\xbd\x67\x5c\xe8\x54\x83\x2b\x39\x0e\xb8\x27\x5f\xae\xa4\xd0\x72\xf2\xe9\x1e\xa2\x3a\xef\xe6\x66\x21\x19\x10\xe6\x51\x51\x9d\xa6\x4c\x36\x1d\xec\x9b\x35\x8e\x98\x11\xa7\x55\x69\xb8\x6e\x48\x28\x98\x2d\xea\xa7\x3b\x18\xce\xa9\xe9\x7a\xfc\x10\x17\xf7\x94\xf6\x7b\xdb\x91\xed\xe2\x1c\xde\xdc\xb4\x12\x83\x81\x5e\xf4\x66\x5f\xe4\x74\x87\x23\x66\xe6\x47\x6d\xab\x0b\xde\xbc\x48\xb3\xd9\x31\x93\xa0\x1b\x9d\x3b\xb6\x13\xa4\x8c\xc5\x4e\x6f\x70\x92\x87\x85\x38\x37\x2f\xf3\xd9\x8c\xfc\xa5\x3c\x9f\x65\x73\xb0\x62\x62\x17\x74\xb6\x79\x94\x4f\xa1\x86\x56\x21\xc3\xd4\x59\x0f\x5b\x0e\x4b\xeb\x78\xf0\x71\x10\x34\x5b\x7b\x27\x1b\xac\x5b\xba\xb5\x79\x40\x1a\xf9\xf0\x54\x68\x0b\x65\xb6\xe5\xd0\xdd\x50\x51\x93\x0f\x25\x47\x37\x07\x94\x71\xcc\x6d\xe9\x1f\x29\xe0\xc1\x60\xb2\x82\xc8\xdc\xe8\x9e\x2a\xe4\xce\x16\xc3\xea\x70\x7c\xb0\x07\xe4\x89\x84\xf2\x30\x7c\x0f\x65\x5b\x3b\x56\x6c\x2e\xed\x4f\x93\xc5\x93\x99\xee\x1c\xf1\x4a\x6c\xbe\xd0\x9c\x5a\xbd\x39\xa4\x3b\xa6\x3d\xb9\x5e\x3b\x5c\x31\x2d\xb4\x0b\xa6\x2d\x99\xc5\x6f\x90\x44\xf5\x82\x6f\x30\xae\xef\x37\xc1\x37\xa3\x56\x86\x91\x49\x98\x36\xb1\x81\xd2\x5c\x6e\x6b\xdf\x6a\xa6\x97\x9b\xad\x2d\x0f\xdb\x7d\x5b\xee\xe4\xfb\x46\xb2\x7e\xbf\x04\x6b\x77\x5b\x0f\x6e\xf3\x64\xe9\x86\x3a\x24\x87\x95\x9e\x1b\xfa\x23\xf7\x86\xde\xe6\xd2\xf2\x5b\x8f\x4b\xcb\x2e\x73\x2d\xcf\x9d\x5e\x0f\x2d\xe9\xb2\x6e\xe1\x1b\xbc\x9d\xf1\xfa\x9d\xc3\x78\x31\xbe\x89\x3f\x7b\x1a\x6f\x9d\xfa\x6e\xa3\x02\xd5\x26\x4b\x5c\xd2\x86\x7a\x78\x4b\x21\xbd\x06\x50\xb5\x16\x03\x41\x70\x9d\x52\x43\xf9\x7f\x9c\x9b\xef\xb1\x26\x19\x32\xf4\x46\xd9\x36\xb2\xa2\x6f\xb4\x3b\x03\xf6\xc2\x39\x1e\x81\xdd\x61\xe9\xe8\xa0\xf1\x2a\x1b\x3b\x33\xd6\x3a\x2e\x9e\xc7\xf2\x51\xcb\x00\xa7\x7a\x10\xd1\xfc\x97\x86\x11\x55\x41\x73\xad\x0a\x4a\xe5\x57\x8b\xcb\x32\x59\x4a\x58\x35\xb0\xa1\x31\xb2\xf0\x82\xc1\xad\xc7\xec\x52\xf4\xae\xba\xa4\xb0\x31\x5c\x41\x8b\x87\xfb\x69\xf2\xe9\xc0\xf6\xd3\x49\x41\xb2\xb1\xaa\xd0\xc6\xeb\x3c\x93\x59\x11\x9d\x36\x21\x34\xf7\x83\xf8\x6f\x3f\x18\x62\xda\xb1\xcc\x33\xb0\x86\x16\x9b\x76\xca\x69\x46\xaf\xb8\x4f\xb9\xe9\xaf\x22\x32\xeb\x6d\x64\x8d\x2d\x77\xa6\x35\x72\x67\xcc\x93\x1e\x5f\xd0\xa0\x40\x27\xb8\x2a\x74\x2a\x4e\x79\xfd\xbe\x5c\xaf\x66\xfe\xc8\x2d\x82\x92\x23\x74\x6c\x67\x64\x54\x63\xf3\x5b\xc6\x4a\xf2\x95\x27\x0e\x92\x64\xf7\x1e\x00\xcb\x4f\x2d\x32\x3e\x2f\x0d\xb8\x63\x23\x18\x7f\x64\x56\x42\x3a\x02\x36\x86\x0b\x70\xf3\x67\xa6\x36\x56\xd1\xea\x78\xdd\x44\x2a\x14\xc9\xf1\x65\xbe\x48\x8b\xcb\xa1\xfc\x8e\xc4\x8a\xfa\x53\x52\x5d\x38\x16\x0f\x65\x36\x8d\xc9\x2d\xa6\x04\xbe\xb9\x81\x6f\xf9\x19\x0e\x05\x10\xbc\xfa\xbd\x5c\xa4\xd9\x55\xec\xe8\x27\x49\xbf\x11\x98\x8d\x1e\x86\xe8\x79\x34\x30\xc9\x27\x68\x2f\xad\xce\xaa\xba\xd4\x05\xc2\xed\x36\x90\x19\x69\xe5\xfe\x9f\x20\x76\x8a\x37\xb3\x7d\x84\x98\x2d\x43\xce\x38\x01\x6c\x7e\x0d\xf2\xa8\x5f\xce\xcb\xf7\xbc\x2d\x74\x87\xc7\x03\x40\x57\x84\x0d\x0f\x13\xd3\x1a\xbd\xc3\xe3\x2f\xaf\x35\x2a\x88\xe5\x2c\xaf\x95\xa6\x25\x8b\x49\x36\x43\xe6\xea\x43\x56\xaf\x96\xd2\x90\xab\x28\xea\x3f\xbf\x7f\x75\x1c\x3c\x08\xa2\x53\xdc\xaa\xb4\x63\xbb\xb6\x30\x2d\x3a\x99\x41\x9f\xd1\xa9\x35\x00\xc7\xd6\x77\x74\xca\xbb\x7c\xcc\x3f\xa2\x53\xde\xc3\x63\xfe\x01\x14\xe3\x6d\x99\x9f\xe7\x0b\x9b\x66\x48\x8c\x62\x93\x6c\x44\x05\x40\xc7\xf2\x7b\x88\xdf\xf8\x3e\x0f\x3f\xc3\xb5\x0d\x02\x1e\xf7\x26\xc5\x6c\x3f\x78\xf0\x20\xd8\x57\xc9\x17\x45\x55\x2f\x48\x34\xa1\x61\x8b\xb2\x96\x35\xec\xc7\xc1\x31\x83\x17\x59\x8d\xd4\x03\x41\x88\x06\x3a\xf0\x61\xb5\x84\x79\xa1\x21\xb1\x7b\xb2\xaa\xb2\xf2\xc9\x79\xb6\x20\x43\x1b\x9a\x8a\xe1\x22\xf9\x92\x9f\x27\x75\x51\x0e\x15\x80\xc0\x44\x7d\x68\xe2\xf7\x64\x91\x96\x45\x9e\xf6\x1e\x82\x92\xcd\xc1\x51\xbf\xef\x01\x7a\x5d\x9c\xe5\xb3\xac\xf7\x21\x99\x26\x65\xde\x05\xf8\xf4\xa2\x2c\xe6\x59\x10\x1a\x24\x94\x94\x7f\xf1\x63\x6f\x4f\xba\x30\xc6\x0e\xf5\xfb\xc1\x72\x55\x5d\x7c\xa8\x93\x3a\x0b\x72\xf2\x7e\x2e\x33\x43\x6b\x0c\x92\xea\x02\xcd\x5b\xec\x61\xa0\x7e\x1b\x83\x10\xa5\xc5\x04\x8e\xb2\xd7\x10\x30\x97\x46\x46\x26\x0e\x79\x2e\x9d\x98\x41\xb1\x10\xc4\x6e\x02\x4d\x08\x64\xa8\x50\xbf\x3f\x30\xea\x62\x96\x2b\x37\x37\x3c\xe7\xf1\xef\x05\xc6\x24\x4b\x13\x4c\xee\xb1\xc1\xac\x4b\xc3\x1b\x35\xeb\x52\xea\x86\xc9\x6a\xb9\x0e\xc2\x7d\x00\xc7\xde\xbf\xa7\xad\xd6\xe6\x29\x1e\xb3\x11\xd6\x6c\x53\x2a\xc4\xd5\x17\x20\xe8\xb3\x1a\x97\xe9\x23\xe2\x49\x41\x0e\x38\xb9\x48\xca\x27\xf5\xe0\x10\x34\xae\x1e\x04\x68\xbe\x06\xa5\x83\x07\xc1\xbe\xfc\x68\x18\xf3\x08\xdf\xfa\x74\x36\x08\xdf\x50\x26\x43\x3e\xa8\x2a\xb4\x75\x43\xe3\x55\x65\x49\x39\xb9\xc0\x2a\x5f\xac\x66\x33\xbb\x4f\x46\x29\xea\xf3\x20\xdc\x57\xdf\xd0\x0c\x4f\x10\x08\x0c\x68\x30\x69\x1b\xf9\xc6\x89\x06\x32\x56\xe5\x68\xe0\x07\xc8\x4c\xc7\x56\x83\xa8\x44\x64\x35\x82\xca\x76\xb1\x8d\x8b\x24\x97\xc8\x5e\x18\x31\x3d\x29\x87\xb4\xd6\x60\xac\x44\xc5\xef\x92\xb2\xae\x94\x37\x2b\x62\x38\x0e\xa3\x87\x10\x58\xf2\x37\x62\x62\x14\x54\xcc\x41\x8e\xc2\x61\xb5\x9c\xe5\x35\x72\x35\xaa\xce\x58\x41\x2b\x25\x21\x9a\x75\xd2\x6a\x3d\x38\x82\x9a\x1f\x48\x25\x68\x28\xa4\x7e\xe9\xda\x1b\xb8\x52\xe8\x9c\x11\x7e\x43\xb7\x25\xba\xd8\x0e\x4a\x4f\x71\x01\xed\xc7\xc1\x6f\x82\x7d\x9d\xf7\x73\x91\x2f\x00\x43\xd2\x09\xe2\x95\xe0\x6f\x01\xcb\x57\x99\x5e\x61\xb7\x99\x3a\xca\x8f\x2e\xf4\xec\xb3\x99\xd3\x89\x03\x9a\x06\x54\xa3\xd5\xe9\xb2\xff\x54\x8f\xec\x9b\x92\x83\x09\x18\xb1\x61\xd0\x13\xa7\x4a\x72\x77\x93\xae\x5d\x6c\x27\xf5\xd5\xe8\x41\xd2\x69\x46\xef\x5b\xef\x16\x5a\xf4\xad\xef\x12\x72\x4d\xad\x39\x81\x88\xad\x5c\xd4\x3b\xd6\x7d\xa4\x65\x57\x5f\x44\xce\x99\x8f\xa6\x2d\x51\xeb\x7d\xc4\x38\x83\xa5\x8d\x9a\x39\xc8\x72\x23\xe3\xc2\x53\xc9\xd6\xe9\x36\x08\xc3\xf5\xe6\x39\x02\x4b\x33\xd6\x48\xcc\xa7\x2a\x5c\xb7\xa3\x69\xb1\x15\x24\xbc\x76\x7a\x0b\x3e\x4b\xb1\x04\x23\xe5\x03\xde\x88\x0e\x5e\xef\x76\x45\x1d\x52\xd0\x1b\x1a\x54\x93\x50\xb4\xf6\x83\xf2\x6e\x6e\xcc\xf4\xe0\x41\xd0\xef\xab\xaa\xc4\x37\x90\x80\x8e\x9e\x32\x16\x69\xd7\x6e\x52\x33\x61\xd3\x78\xee\xad\x77\xbc\x53\x42\x97\x6d\x4c\xd0\xe3\xb9\x59\x30\x0a\x1c\xb0\x80\x3c\x37\x78\x6f\xb7\xdb\x5c\xc0\xac\x8b\xcc\x57\x89\xaf\xe1\x8b\x39\xbe\xc1\xe1\x5c\xd7\xb5\xcd\x70\x3c\xf7\x33\x10\xc8\x7f\x85\xab\xd5\x57\x8c\xf0\x71\xbe\xca\x53\x3b\x54\xe0\xb7\xa2\x7a\x4c\xef\x74\x65\xe6\xb9\x4b\xb5\xdf\xd3\x3c\x97\xa9\x9f\xe1\x38\xbf\xc5\x35\xca\xe7\x72\xca\x5c\xbf\xc7\x81\x58\x9d\xae\x97\x8a\x8a\x69\xa5\xcb\x85\xcb\xcc\x08\x55\x62\x78\x73\x63\xdd\xb6\xc2\x26\xda\xc0\x93\x9d\x67\x5d\x7c\xa5\xe2\x69\xd8\xe1\x1f\x55\x56\x11\xe4\x6a\xcf\x5d\x24\x43\x78\x3e\x02\x56\x67\xc4\xfa\x90\x54\xf5\x07\xa8\x22\x88\x88\xc3\xd5\x96\x56\x5b\xd5\x2a\x39\x66\x71\x54\x02\x58\x77\xed\xc5\xe2\xcf\xd2\x18\x4c\x57\x3f\x49\x66\xb3\xb3\x64\xf2\x09\x79\x87\x2a\x9b\x4d\x51\x4b\x5a\x2e\xaf\x98\xd6\x12\x2a\xe7\x8f\x70\xd6\x07\x38\xbc\x21\x38\x9a\xd5\xb7\x84\x21\xee\x53\x89\xe1\x41\xb0\x2f\x0a\xf3\xe7\x40\xee\x4a\x97\x71\xe4\xb1\x68\x77\x88\x53\x80\x47\x81\xe8\xaf\x48\x34\x3a\x12\x5a\x52\xfd\xa6\xf2\x41\x61\x6c\x88\x91\xec\x18\x0e\x20\xa8\xf6\x46\xd3\xa2\x9c\x27\xe6\xa4\xad\xca\x99\x92\x6e\xfd\x26\xd8\x5f\x95\xb3\x26\x62\xaf\xbf\x36\x73\xb5\xc5\x90\x4c\xa7\x9b\xc7\x04\x9e\x15\x36\xd3\x68\x47\x2c\xf5\x95\x1c\x90\xee\x42\xa2\x7f\x45\x54\xf8\x17\x13\x68\xdd\x33\xdd\xf5\x90\x52\x0f\xc1\x5d\x16\x4b\xb0\x5d\x7e\x91\x97\xd2\xd5\x3b\x22\x6a\xb2\x8d\x20\x3c\x88\x4d\xa1\x52\xbf\x1f\x54\x52\xa6\x60\xe6\xdc\x89\x48\x63\x15\xbb\xd2\xe9\x2e\x32\xcd\x08\xd8\x59\x52\x65\xb0\x9d\x69\x7f\x41\x42\x10\x0e\x93\xba\x2e\x07\xe8\x19\x29\xbc\xb9\x09\x82\xb0\x81\xf6\xa1\xdb\x7e\x24\x14\x9e\xe7\x4e\x92\x46\x41\x0a\x59\xa4\x07\x12\xa0\xac\x50\x29\x72\xb5\x8a\x74\x0c\xe4\x81\x00\xb4\x2a\x14\x54\x9b\x89\xff\xdc\x63\x84\x5f\xc9\xb8\x09\x56\x81\x24\x2d\x52\xe2\x37\xdf\x08\xe1\x8d\xcd\x91\x52\x44\x34\x38\xac\x8c\x1c\x2e\x71\xcf\xc5\xc6\xe4\xfd\x8c\x69\x33\xfd\xaf\x07\x51\x10\x84\x23\x59\x9a\xfe\x7a\x20\xa4\x11\x37\x5c\x8a\x65\x36\x81\x0b\x00\x95\x26\x2f\x93\x41\x70\x8b\x00\x7c\xb8\xcd\x92\x72\xc2\xba\x88\xdf\x62\x62\x47\xab\x72\xb6\x1f\x93\x00\x44\xbe\xf1\x09\xf2\xec\x3f\x77\xa1\x32\x58\xfb\x72\x82\x70\xf6\xc2\x91\x16\x58\xe8\x49\xc4\xe3\x32\x9f\x0e\xf6\xa0\xcc\xcd\x0d\xfc\x81\x01\xde\x93\x87\x0c\xda\x26\x4b\x79\x1c\x9d\x23\x5d\x87\xf4\x57\x42\xc1\x58\x8c\x12\x0b\x59\xb9\x87\x63\xf1\x11\x84\x1f\x3c\x6b\x7f\x08\x0d\x1e\x1b\x42\x46\x00\x6e\x22\xd5\xeb\xf6\x2e\x82\x9c\xe2\x18\x2e\xe4\x23\x5f\xe5\x7a\xe0\x00\x1e\x4e\xe5\x88\xf5\xd9\x83\xa4\x14\x09\x72\x5c\x62\x28\x2d\x83\x67\x95\xd9\x97\xbc\x58\x55\x4a\xbc\x21\xb7\xa1\x9a\x95\x3b\x22\x6d\x0c\xf5\x3f\x05\xef\x2d\x98\x32\x97\xe7\x88\x34\x9f\xe6\x61\xc8\xe4\x41\xb1\x89\x1d\xa3\x98\x66\xc6\xb9\x12\xae\xcd\x63\x06\xee\xc5\xf9\x74\x60\x30\x68\x71\x8c\x0c\x1b\xef\x97\x36\x13\x56\x8c\x97\x51\xa6\x93\xff\xda\x44\x23\xbb\xc8\x5d\x3e\x15\x75\x90\xc0\xe9\x1e\x68\x9f\x12\x66\x48\x88\x79\x52\x4f\x2e\x06\x0f\xfe\xdf\xdf\x1e\x3c\x08\xfb\x7d\x59\x33\x4f\x0d\xd7\x9b\x6b\xa5\xbd\x49\x00\xfb\x54\xcd\x7d\xf1\x9b\xdd\x53\xbe\x1d\xb7\x69\xbd\x59\xde\x4d\x22\xd0\xca\x43\x7e\x6d\x45\x87\xdb\xde\xb6\xdb\xd8\xb5\x47\xf7\x76\xa7\x15\xe3\x8b\x77\xb1\xe3\xc0\xc7\x28\x38\xa6\xd7\x02\x34\x68\xbd\x67\x56\x26\xdc\x96\x97\x3c\xa0\x3e\xe8\x13\xe4\x29\x25\xc6\x32\xb7\x21\xb5\x4c\x77\x7f\xda\x6d\x89\xc4\x91\xa7\xaa\x01\x7a\x55\xe9\xbe\x66\xc1\x21\xde\xb1\x20\x5b\x4c\x41\xee\x72\xf5\x51\xf7\x9b\xaf\xb9\xfa\xfe\xe3\x5e\xae\x1d\x79\x05\xc1\xcb\x9c\xab\x07\xa5\x73\x77\xdc\x2c\xd0\x7e\xbb\x06\xb5\x61\x26\xc0\x9c\x18\x74\x78\x3b\xb1\x35\xca\xad\x3a\x0c\x75\xb8\xae\xe0\xff\x1c\xae\xdd\x64\xa4\xdd\x44\x84\xf9\xa0\xbd\xb5\xe2\x38\x10\x51\x82\x8e\xa6\xa4\x74\x1d\x49\x33\x76\x70\xd6\x11\x91\x42\xb9\x2a\x87\xd5\x7c\xbc\x5e\x66\xcc\x8d\x5b\xbf\x4f\x33\x20\x13\x42\xae\xdc\x0c\xc6\xe4\x01\xea\xc7\x1a\xd1\x52\x00\x07\x1b\x8e\xa8\xa1\xad\x2f\x8e\x99\x67\x49\x95\x4f\x82\x86\x21\xd5\xaa\xee\x0f\x28\xbe\xd8\xa0\x8a\xcf\x2a\x0a\x35\x6d\xaa\xfe\x48\x63\x9a\x1e\x8b\x23\x3e\x92\x2e\x11\x5c\x82\x14\x0c\xe4\xf0\xa7\x3d\x7b\x65\xec\x07\x6c\x19\x86\x01\x2a\xfc\x6d\x63\xa3\xa0\x91\x95\x6a\x55\x03\x35\x39\x84\xb8\xf2\x96\x45\xdf\x4d\xc7\x72\xd8\x62\x1d\xdc\xc5\xf8\x00\x2c\x1e\xb6\xea\x17\xec\x60\x5a\x5c\xae\x6a\xb9\xac\x43\x49\xb8\xd4\x3a\x0c\x20\x2c\xc0\x32\x99\x64\xc3\x57\x6f\xff\x78\xfa\xe4\xe9\xc7\x97\x7f\x79\x7e\xfa\xc7\xe7\x6f\x9e\xbf\x7f\xf2\xf1\xe5\xdb\x37\xe2\xb6\xa4\x64\xfd\x54\xa8\xe9\xde\x5f\x9e\x8d\xb5\x89\xe4\xa6\xd5\xac\x8d\xce\x6e\x43\x38\xef\x24\x8e\x51\xb3\xfb\xec\xc3\x2b\x72\x71\x21\x7d\x43\x65\x8b\x1a\xec\x72\xf0\xc4\x01\xc6\x2b\xab\xe2\xf1\x49\x5b\xa4\xf4\x67\x1f\x5e\x8d\x9e\x7d\x78\xa5\xe3\x3f\xc6\xe0\x89\x66\x55\x4e\x32\x4b\x5d\x4f\xfa\x4b\xd0\xe7\x63\x3e\x1d\xd8\x16\x5b\x71\x1c\x3f\xec\xf7\xc9\x41\x8e\xb4\x75\x32\x43\x8d\xc9\xf2\xf2\x59\x51\x9a\x0d\xc4\x6b\x0c\x17\xe8\xd6\x78\xa4\xcd\xa6\x10\xc6\xac\x5f\xde\x02\x03\x32\x97\xd4\x1e\x2a\x96\xf2\xbd\x14\x54\x0d\xc0\x3e\x08\x5e\x9c\x3e\xac\xce\xe0\x79\xa8\x22\xc9\xd0\x0e\xde\x4b\x26\xc5\xa2\x12\x7b\x70\x51\x1f\xc8\x71\x02\xcf\x8c\x76\xc5\xe0\xdc\x10\x68\x16\x3c\x5c\xc9\x21\xf3\x82\x89\x2e\x59\x19\x48\x8b\xd3\x6a\x16\x2f\xb2\x4b\x3d\xcd\xf8\x2e\x3f\x48\xab\x19\x73\xf0\xc7\x13\xc9\x08\x15\xaf\x6e\xc1\x83\xd3\xd5\x62\x55\x65\xe9\x69\xba\x9a\xcf\xaf\x4f\x21\xf3\x54\x64\x9d\x42\x91\x53\x1c\x98\xfd\xe0\xc1\x31\x96\x6b\xe8\x99\x4d\x61\x4b\xbf\x50\x05\x3a\xad\x66\x61\xa3\xee\xf9\x03\x3e\xc8\x78\x36\xa4\xd5\x4c\xed\xad\x81\x0a\xd1\xd6\x51\x00\x3d\xa1\xed\x30\xfa\xe0\xe2\xe9\x00\x9e\x15\x92\x1a\x07\x5e\x5b\xa2\x91\xfa\xc2\x50\xdc\xa7\x8b\xa5\x74\xfb\x8e\xbc\x18\xf6\xf3\xd4\x1e\x33\x9e\x77\xd7\xa1\x6b\x50\x12\x60\xb0\x71\xd8\x4d\xf3\x86\xba\x04\xd5\x0b\x0b\x63\xba\x99\x89\xad\x12\xdc\xdc\xd0\xaf\x07\xc1\xcd\x0d\x40\x8f\x97\x4c\x31\xe2\xe0\x08\xb4\xcc\x41\x0d\x24\xa0\x8d\x9f\x5d\x2d\x67\xf9\x24\xaf\x51\x4d\x04\x16\x15\xdf\xff\x38\xfe\x63\x07\xa1\x13\x10\xc8\xad\xea\x96\xad\x4e\x5a\x07\x7a\x94\x54\xc6\x2e\x3b\xc6\x33\x67\xff\xf4\x89\x91\xab\xd2\xbe\x31\xa6\xd5\xec\x35\x91\x48\x3e\x5e\x23\xe5\xc4\xcc\x18\x58\xa5\x16\x21\x30\xa4\x09\x50\x68\x05\xda\x11\x97\x6a\x04\xaa\x0b\xd7\x66\x24\x1c\xdd\xa6\x13\x07\x87\xa3\xc4\xe0\x64\xb4\x11\xa8\xee\xed\xd9\xcf\x31\xde\xa7\x25\xc0\xf8\xf0\x24\x1c\xd6\x85\xfe\x3e\x3a\x89\xd4\xef\x87\x27\xa0\x63\x3c\x32\x83\x37\x00\xb1\x30\xa7\x5a\x52\x58\x65\x11\x8b\x61\x62\x6e\x47\x6a\xf3\xa9\x68\x81\xce\xa3\x7e\x5f\xff\x06\x77\x5c\xdc\x41\x20\xee\x5f\x0d\xb0\x1f\x0c\xa9\x0e\x48\xeb\xa2\x1b\xe2\xd8\x9a\x27\xcb\xb8\x45\x12\xc4\x88\xe7\xc8\x25\x64\x92\x61\x4a\xab\x59\xbb\x02\x00\xb7\xb2\xfa\x27\x79\x00\xc0\xac\xf3\xac\x3e\x5d\x2a\x7b\x45\xbb\x99\xc5\x6a\x9e\x95\x62\xaf\x9d\x9a\x6f\x51\x98\x9d\x57\xa7\x78\x7b\xee\x8e\x85\xe7\x7b\xcc\x6a\x51\x4d\xf0\x46\xb6\xd3\x06\x6b\xcb\x56\x33\xb7\x5b\xc5\xcf\x9b\xe7\x57\xf9\x42\x46\x9a\x3f\x25\x77\x7f\xdb\xfb\x40\xf8\x35\x68\x38\xd8\xce\x0c\x8c\x98\x68\xff\xc2\xd1\xec\xbe\xbe\x4f\x85\x73\x6e\xa7\xbb\x51\x05\x43\x6d\x84\x3f\x8b\x65\xbc\xe9\x4d\x30\xaf\xde\x14\x8b\xcc\x71\x80\x80\xc9\xed\xd1\xf2\xbe\xb3\xa3\xe5\x09\x92\xf8\x76\xea\x84\x79\xc7\x64\xaf\x36\x8a\x2f\xca\x9d\x1b\x0a\xcf\x33\xe0\x62\x73\x6d\x8c\x67\x07\x31\x4e\xf2\xe9\xb5\x13\xc8\x6e\x28\x73\xbc\x21\xfc\x00\x62\x53\x0c\xbf\x23\x8f\xd1\x01\x45\x28\xa5\xd8\x6b\xf6\xc2\x73\x57\x42\xa7\xdf\x8a\xa3\x0e\xc7\x15\xc9\x29\xc5\xff\x8e\xad\x99\x1e\x52\x3a\x41\x91\x00\xd9\x81\xa2\x74\x80\x42\xc7\xa2\x1e\xd1\xa3\xd1\x9b\x68\x9d\x5d\x99\xcf\xb3\x3b\xbf\xd3\xd5\xc5\xf9\xf9\x8c\x79\xbc\xd4\x01\x10\xb4\xab\x65\xe6\xa6\x82\x3c\x61\x42\x72\x9a\x81\xfb\x6d\x7c\x05\x83\x94\x3a\x4b\xca\xb4\xb8\x5c\xfc\x25\xcf\x2e\x21\x82\x42\xb6\xa8\x3d\x01\x19\x74\x31\x0c\xab\x0b\xe1\x6b\x30\x42\x0f\x33\xd0\xc6\x14\xf3\x12\x8e\x69\xa7\x48\x6c\xab\x63\xee\x70\xf4\x59\x9e\xda\x2a\xf3\xa8\xa5\x91\x46\x75\x51\x27\xb3\x77\xe8\xee\x3b\x2a\xb3\x79\xf1\x25\x4b\x6f\x31\x54\xb0\x99\x44\x55\x14\x79\x22\x16\x7b\x42\x36\x12\x4a\x17\xfd\x90\x28\x1b\x09\x9d\x50\x6d\xbc\x82\x16\xc7\xae\x18\xe1\xca\x80\x1c\xe7\x27\xca\x7d\xb2\x14\x22\x73\x9f\x8c\x11\x96\x09\x25\x1b\x74\xae\x5d\x6c\x44\x41\x99\x4d\xcb\xac\xba\x78\x8d\x46\x91\xea\xe1\x11\x12\x07\xa1\x32\xc6\xc0\xbb\x5d\x34\xcd\x17\x56\xa0\x2f\x7b\x58\xc9\x1e\x15\x00\xa9\x79\xed\x35\xfa\x96\xe3\x3a\xf1\xb8\x6c\xa6\x25\x87\x03\x5c\x31\x01\x24\x0f\xa4\x87\xc8\x55\xcf\x56\xe2\xe8\xfe\xb0\xaa\x96\xd9\xa2\xca\x8b\x45\xf4\x79\xf9\x3a\xab\x13\xf6\xaa\x74\xfa\x79\x89\xf7\x16\xcc\xb1\xd8\x5c\x08\xa2\x27\xd2\x87\x1b\x62\xe9\x49\x18\x31\x23\x9f\x97\xca\xcb\x8b\x11\xb0\x6e\xa9\x6d\xaa\xd1\x8b\x7c\xa5\xc2\xec\x51\x67\xfa\x7d\xa3\x00\xa5\xca\xd0\x76\xe7\x64\xb0\x4c\x03\x40\xd1\xf1\xc2\x11\x56\x13\x93\x73\xe2\x5d\x03\xb2\x41\xd7\x25\xc2\xe1\x9a\x2a\x5b\x3a\xe1\xf3\x58\x23\x69\xe6\x6b\xa6\xea\x6e\xa7\xd2\x91\xdf\xd2\x6c\x3a\x52\x5f\x69\x36\x6d\x1a\x8a\xb5\xe7\xb6\x9a\x4f\xa9\xde\xbd\x58\x07\x8d\x33\x5d\xa1\x7a\x17\xbe\xaa\x42\xad\x7d\xee\xb4\x1d\x1d\x67\x08\xca\xd1\xef\x5b\x7b\xc2\xe3\x46\x5f\x7a\x3c\xd7\xb9\x8d\x42\x25\xa6\x39\xfc\xbc\xc4\xf8\x3c\x18\x7f\x8e\xfb\xec\x38\xa5\x9d\x93\x2f\xce\x79\x14\x4e\x78\x65\xad\xbc\x33\x1a\xc9\xca\xc2\x2d\xea\x41\xdb\x22\xb6\xe9\xc8\xe7\x32\x54\x70\xac\xf0\x8c\xbe\xe4\x55\x7e\x36\x63\x29\x7b\x2a\xb8\x5e\xf4\x29\xbb\x3e\x56\x03\xd6\x84\xcd\x4e\x5b\x0a\xbc\x49\x9b\xc4\xa2\xc1\xf0\x63\x18\x4f\x34\x82\x78\x9c\xa9\xe6\x87\x8e\xc7\x18\x41\x4c\x70\xb7\xfa\xac\x40\x25\xcd\xe1\x4f\x91\x93\xc0\x43\x10\x58\x37\x7c\x43\xe4\x4f\x9e\x8c\xf4\xe5\xb6\x1c\x99\x7e\x85\xdb\x63\x19\x70\xa3\xdf\x5c\x9c\x4d\xf3\x2c\xcd\x93\x3a\xfb\xe8\x6d\xba\xbd\x39\x0a\xdc\xd2\x52\x43\x7b\x9b\x44\x75\xdb\x4d\x9c\x4c\xa7\xe8\x48\xa2\xd1\x75\x72\xc4\x82\x3b\x6c\x83\xa2\x31\x22\xad\x81\x21\x38\x72\x55\xb6\x48\x37\x60\x26\x40\x98\x3f\xd4\xa1\xb7\x16\x30\x9e\x54\x67\x30\x39\x31\xe0\x27\x84\xc7\x55\x92\x45\xf4\xd1\x39\x8a\x6e\xc2\x7a\xbf\xb1\xc1\xe5\x2b\x19\x13\xf0\x83\x0a\x3d\x90\x03\xee\x23\xc9\xae\xa2\xe5\xb9\xc1\xf3\x50\xd0\x58\x4d\x5a\x5e\x62\xee\x95\xe9\x62\x94\x02\x2d\x01\xa4\xf9\x05\x8c\xad\xc6\xb5\xd2\x8e\xea\x8d\x64\x4e\x6a\x14\xfe\xf2\x0c\xd8\x0d\xd3\x2d\xe9\xdb\x6e\x84\x64\xdd\x8c\x7c\x78\x7b\xd0\xe6\xcb\x66\x6b\x1a\xa9\xe5\xb8\x9b\x1b\x60\x01\x6e\xd0\x13\xcf\x47\xe2\x40\x2b\xc5\x27\x19\xa9\x03\x73\x3c\x3d\x20\xfe\x46\xa2\xb3\x6c\x5a\x40\x38\xeb\x6c\xa6\x29\xe0\xb4\xce\x4a\x33\xa9\xcc\xd2\xbc\xcc\x26\xb5\x4a\xa0\x2a\x3c\xdc\x2d\x21\x48\x06\x34\x50\x8d\xde\x17\xd9\x55\xdd\x44\xe8\x3d\xcb\xe6\xdb\xec\x9d\x08\xd2\x39\x14\x54\x55\xc9\x25\x1d\xab\x78\xba\x7d\x31\x23\xdd\xed\xbe\xd0\x59\x61\x93\x15\x1b\xce\x93\x65\x10\xaa\xc0\x07\x32\xf4\xf0\x92\x7c\x8e\x93\xf7\xd5\x38\x8e\x0d\xd7\xff\x37\x37\xec\x0b\xfd\xb0\x8a\x52\x46\xa4\xd5\x09\x8b\x81\x07\x5d\x03\x57\xac\x4a\xa7\x67\x30\xfc\xcf\xf0\x34\x4f\xff\xd7\x03\x29\x8b\x9f\x93\x0c\x72\x64\xf0\x43\x18\x8e\x58\x8d\x47\x2c\x83\x3f\x41\x5c\x8b\x7e\x5f\x65\xb0\x57\xf7\xe5\x35\x8d\xb0\x56\x33\xda\xc3\xc7\x2e\x33\x24\x0b\xb9\x66\x01\x11\xed\x5e\x1c\xb3\x1c\x54\xf3\xf1\x84\x1e\xd7\x26\xc6\xcc\xc9\x1b\xcd\x78\x57\xf1\x71\x4b\xb3\x07\x47\x27\x72\x95\x8c\xb4\x13\x1d\x59\x67\xc3\x09\xff\x34\x5f\xa4\x90\x4a\xce\xad\x30\x4e\x5d\xc4\x38\xc3\xce\x05\x76\x8b\xb8\x12\xba\x6d\x58\xbf\x83\x5a\x85\x91\xa9\xa4\xa2\x94\x3e\x14\x42\xde\x9a\xe1\xc0\x82\xd5\xe0\xe2\x85\xf7\x1c\xec\x98\x7d\x98\x56\x75\x51\xf2\x70\x5b\xf0\xad\x03\x3c\xc1\x27\x0c\x0b\x1d\x84\x90\x60\x1e\x81\x22\xa5\x35\x42\x8e\x76\xe7\x58\x1b\xc1\x69\x46\xea\x24\xd7\x27\xa2\xfa\xc4\xf0\x27\xf2\x21\xd9\x0d\x20\xa4\xb2\x14\xa2\x6b\x81\xa2\xc5\x46\x31\xa6\x1a\x46\x06\x2d\xe9\xda\xb4\x0b\xd0\x8d\x8e\x74\x81\x08\x67\xa9\x2e\xa5\x16\xa4\xf4\x3c\xa4\x72\x60\x6c\x06\xb4\x50\x9a\x26\x8c\x3c\x2b\x05\xa0\x23\xbe\xdb\x79\x30\x82\xef\x8f\x78\x8c\x25\x6c\xd4\xd8\x00\xb0\x71\x97\x32\x92\x4a\x84\x92\x59\x0a\x14\xff\x00\x76\xf7\xb0\xce\xaa\x1a\x1f\x21\xfb\x7d\x3b\x52\xd0\x51\xb8\xc6\x22\xe4\xae\x45\x8c\x26\x62\x14\xe4\xa9\x74\x1b\x54\xa8\x70\xf5\xcc\x13\x9f\x81\xb7\xf2\x62\x00\x90\xc4\xf9\x30\x67\x7c\x06\x0f\xd4\x7e\xae\xad\x49\x9d\x04\x21\xfa\x7d\x02\x31\xc3\x46\x5a\x17\x08\xe9\x6b\x8f\x1d\x30\x06\x37\x64\xcd\xfb\x69\xf5\x29\x5f\x3e\xa9\xaa\xac\xac\xbb\xd7\x20\x3e\xaf\xb5\x39\x09\x95\x4b\x21\xf2\x78\xc8\xeb\xf7\xe1\x8f\xc5\xc3\x11\x8d\xf5\x65\x35\x5d\xce\x14\x4d\x45\x0c\x7a\x4b\xd6\xea\x4d\xa4\xf2\x10\xb9\xec\x9b\xd5\x71\x5a\x3a\x9d\xdb\x0e\x60\x62\xf8\x9f\x58\x4e\xf8\x2d\xe3\x0f\xa9\x86\x3b\x55\x53\x58\x6b\x74\xee\x3a\xb3\xc0\x58\xf5\xb6\xb0\x54\xe6\x28\xb3\x20\x6d\x8c\xd9\xfe\xc1\x73\x53\xc0\x30\x78\xfa\x0a\x02\xf7\x31\x33\x96\x18\xdb\xf5\xaf\xa0\xb5\x37\x6a\x62\xe4\xd4\x29\x62\x43\x0e\x4a\xbd\xc7\x16\xd2\x4c\x27\xfa\xac\x55\x31\x8f\x9a\xd8\x52\xc3\xd8\x2a\x72\xd2\x18\xd1\x61\xd4\x7a\x62\xec\x8d\xb8\x03\x71\x56\xcb\xbb\xc3\x68\xca\x19\x67\x86\x2a\xe4\x66\x68\x58\xf3\x31\x51\xd2\x94\x77\x49\x55\x65\x69\x4c\x8f\x88\xb0\x74\xf5\xe3\x61\xbf\xbf\xb7\xa7\xc6\xc5\x84\xa0\xa7\xa1\x7e\x7f\xcf\x79\x9f\x84\x12\x0b\x97\xa0\x37\xbe\x07\x4c\xdb\xd1\xa5\x8c\x5e\xc5\xd5\x06\x3c\x0e\x6c\x0d\xdf\x98\xf0\x18\x09\x14\xcc\xd3\xaa\x09\x4a\x32\x5b\x9d\x82\x13\x0f\x24\xd6\xf1\x04\x2f\x12\x30\x1f\x47\xa9\xdf\x5f\xe8\x4b\x9a\x84\xb6\x5c\xdb\x7a\x49\x4c\xb7\xbb\x5d\xe5\x63\x5e\xc9\x82\xc1\x89\xfc\x0f\x5f\x54\x14\x7e\x99\x1e\x84\x6a\x99\xef\xc9\xb4\x70\xdd\xee\xfc\x93\x3b\x0d\x35\x1c\x81\xc2\x21\x23\xea\xef\xf7\x59\x45\x2c\x3e\x93\xbc\xe6\x5a\x9a\x5c\x7f\x79\xf9\xfc\xaf\xa7\xaf\xde\xbe\xfd\xe9\xcf\xef\x3e\x30\x25\x2e\x35\xb3\x2a\xd4\x18\x69\x57\x32\xc5\x04\xd9\x8c\xd6\x50\x80\x51\x81\x13\x04\x3c\x89\x2a\x77\xd0\x38\x66\x5c\x91\x41\x85\xdd\x07\xb7\xf0\x62\xf9\xa1\xeb\x66\x5c\xf2\xb3\xa4\xaa\x31\x1e\x41\x96\xca\x7d\x82\x6b\x22\x59\x2e\xb3\x45\x0a\xb5\xd7\xae\x47\xd1\x28\xcd\x2b\x72\x68\x8a\xde\xf6\xfd\x2e\x18\xf6\xd4\x72\x75\x95\xa6\xd4\x23\xfb\x17\x15\x86\x81\xaf\x20\xa6\x38\x35\xb2\xfa\xa0\x81\x1b\xfd\x7a\x2e\xdd\xf4\xc7\x6e\xd2\x0f\x6e\x92\x67\x5f\x90\x37\x5c\x75\x31\x43\x15\x7b\xbb\x69\xe3\xf3\xe6\x06\x07\x73\xa4\xd9\x6c\x40\x81\xd3\xdc\x53\x5c\x4f\xcc\xed\xab\x8b\x0d\x79\x1d\x51\x9f\x6b\x86\xa8\x3d\xd0\xd6\x84\x8a\xb3\xbc\xc5\x68\xc0\xff\xc6\x62\x24\x58\x6f\x41\x46\x89\x8f\xc5\xf2\x55\xf6\x25\x9b\x21\x46\xad\x59\x03\xf4\x19\x2c\xb3\x74\xec\x85\x2a\x36\xca\xb0\x8c\x9b\x9b\xf1\xc9\x48\x3d\x7f\x0d\x3c\x10\xfa\x79\xdb\xcd\x14\x9b\xd6\x4e\x1b\xa0\x0e\x39\x08\x8b\x5b\x31\xf5\x02\xb0\x46\x8d\x7c\xdf\xc6\x68\x9a\x5b\x58\xb6\xbd\xc7\xc3\x92\x42\x7e\xf1\xa0\x73\xeb\x26\x3a\xfd\xbc\xec\x64\xfc\x77\x14\x79\x29\xcd\x54\x8b\x61\x50\xa4\xa5\x53\xb9\x9b\x33\x6a\xcc\x69\x46\xab\x36\x31\x57\x61\xdd\xb3\x8a\x1a\xfc\xb7\xce\x7b\x57\x16\x75\x11\x5b\xb0\xa8\x9d\x39\x30\x02\xf5\x59\x8f\x1a\x50\xce\x8a\xeb\x07\xcd\xb2\x14\xe3\xb6\x6f\xc4\xf9\x64\xa8\x7c\x5e\x56\xf1\xf8\x24\x9a\x27\x4b\x41\x57\x9c\x37\x1d\xa7\x02\xe7\x51\x47\x41\xbc\x4e\x96\xcb\x7c\x71\xce\xcb\x8c\x73\x08\xb2\x56\xf3\x28\xfd\x04\x26\x95\xe1\x8e\x83\x30\x5a\x96\x05\xb2\x53\xa8\xfd\x76\x78\x42\xcf\x71\xf4\x7d\x74\x72\x73\x23\x41\x22\x7a\x6d\xfe\x8b\xe7\xa1\x07\xc7\x44\x42\xa2\x9f\xd7\x18\x9f\xe9\x07\xbc\x58\x68\x54\xf2\x41\xde\xae\xd2\xf6\x87\x21\x0e\x4f\xb8\x41\xed\x61\xf4\x79\x19\xaf\xd3\x6c\x7a\x6c\x40\x54\x76\x8a\x6e\x03\x8a\x41\xc4\x52\xaa\xe7\x98\xaa\x13\x68\x1f\xab\x5e\x4e\xea\x12\xdd\xb6\x33\x49\x2a\x3e\x54\x98\x0d\xb9\x69\xac\x29\xe4\x86\x45\xa7\x9a\xd1\x3c\x59\x8e\x65\xed\x27\xb1\xf8\xa2\x87\x23\xf8\x6d\x6b\xae\x1f\x63\xd4\x16\x04\xfe\xbc\x1c\x7d\x5e\xd2\x6b\xc9\xe7\xa5\xbc\xb5\xad\x3f\x2f\xab\xe3\xcf\xcb\x4a\xac\x9c\xe3\x79\xb2\x14\x17\x55\xcf\x03\x06\x5f\xa0\x32\xe0\xde\x9d\x39\x7b\x1d\x98\x51\x2e\xe5\x35\xfa\xa0\xf1\x73\xfc\x6d\x5c\xbe\x74\x0c\x6c\x49\xe8\x38\xcf\xbf\x94\xd2\x2b\xc5\x84\xd3\xad\x19\x2e\xbe\xc0\x73\x7e\x36\x64\xb9\x0a\x8e\x25\x23\x37\x69\x19\xc0\x9a\xa8\x41\xc6\x48\xc6\x23\x24\x5b\xd7\x8e\x86\x10\x84\xb7\x81\x7b\x59\xbd\xd9\x42\xbd\xec\xd1\x76\x4f\xbe\xda\x1a\x3e\x9f\x15\x05\xd0\xef\xb2\x40\x09\xe8\x73\x9e\x2c\xa3\xcf\x4b\x97\x28\x78\x5f\x78\xe1\x75\x17\x74\x17\x9d\xc7\xc9\x58\xbe\xd3\x29\x79\xa5\x7e\xba\x35\x64\x8f\x02\xd1\x81\xce\x9b\x27\xcb\x90\x09\x24\x61\x04\xe9\x39\x94\xd1\x18\xf9\x02\xfa\x79\xc9\xd7\xb5\x7e\x10\xa5\x38\xae\xa1\xf5\xb0\xda\x2c\x8d\xe2\x74\xc7\xee\x7c\xb1\xb5\x9f\x6b\xcd\xb1\x8c\x3c\x25\xf5\x3a\x37\x6a\xe0\x1b\xf6\xa3\xa8\x4a\xf4\xdc\x4e\x14\x2c\x21\x5a\xcd\xa8\x59\xfb\xff\x7f\x78\xfb\x66\x88\x6c\x62\x3e\xbd\x96\x32\x22\xe9\x7f\x76\x1f\xc7\x38\xf2\xf6\xe1\xae\x98\x9c\x15\xc5\x2c\x4b\x16\x1a\x17\x39\xb6\x41\x5d\xae\xb2\xe0\x07\xf1\xff\xb1\x7e\x3f\xe8\xb5\x54\xb3\x58\x09\x5e\x41\xd7\xf2\x06\xbe\xa9\x27\xb8\x48\xde\x4e\x07\x61\x67\x1d\xd6\xa0\x20\xf7\xf1\x64\x00\x83\xb3\x4c\xca\x2a\xa3\xea\xd4\x04\xd1\xb8\x9c\x7e\x5e\x92\x3a\x88\xf7\xe2\xab\x0e\x0e\x29\x3d\x7f\x03\x3a\xdb\xe0\xf5\x4e\x7d\x92\x3c\xf9\x11\x38\xc1\x83\xa8\xb5\x6b\x7d\x7a\xa9\x32\xd2\x0b\x9f\x5b\xcc\xde\xa7\x4c\xb7\x22\xfa\xcc\x37\x9e\xa6\xd6\x23\x43\xbe\xd5\xf2\x74\x43\x1c\xd2\x6d\x54\x3d\x98\x5a\x45\xb8\xa6\x1f\x7c\xf3\x82\xe8\x9e\x71\x0c\x38\xf1\x20\xaf\xb7\x14\x2d\xd4\x08\x4a\x4f\x11\xc4\xf0\x7f\x5e\x65\xab\x2c\xfd\xdf\xef\x9e\xea\xca\xe1\x7d\x80\x74\x00\xca\xd5\x62\x58\x2c\xc8\xbb\x25\x05\xa7\x9f\xe6\x25\x5b\xbc\x1f\x99\xe4\x39\x6a\xcd\x73\x59\x7d\xf6\xa6\x6c\x72\x9a\x5d\xe8\x35\xdd\xd8\xc7\xeb\xa6\xe1\xa1\x30\xf1\x66\x02\x4c\xed\x80\xce\xa4\x2f\x3a\x50\x37\x3c\x23\xc4\x4c\x3e\x64\x92\x7c\xe3\xb5\x01\xe8\x34\x4f\xf0\x3c\x5a\x48\xa7\x79\x26\x51\x8e\x3d\x6f\x1e\x5a\xcd\x9c\x8a\x18\x40\xe3\xdc\x08\xf1\x2d\x41\xe2\xd8\x38\x56\xa9\xd1\x86\x0c\x8d\x08\xaa\xb1\x3b\xaf\x6e\x88\xac\xff\x54\xc4\x1d\x1d\x75\x77\x87\xee\x62\x3e\x17\x57\x2b\x01\x04\x66\x79\xef\x1d\x5a\x3a\x26\x2f\x22\xa6\xa7\x7a\x03\x29\x6a\x82\x61\xed\x08\x16\xf0\xb4\xf4\x4b\x16\xbc\x9a\xf2\xca\x19\xfb\xa2\x2e\x62\xfe\xf1\x03\xff\xd8\xe2\x4e\x8d\x63\xb2\xe5\xa5\x5a\x26\x2b\x61\x96\x4a\x51\x83\xa6\x06\x57\xe6\xd8\x82\x16\xcd\x1d\x6c\x25\x95\xb1\xa2\x2c\x19\x41\x70\xb8\xc0\x50\x65\xa0\x84\x1f\x8c\x40\x9e\x1a\x52\x6e\xb7\xa4\xa1\x4e\xe0\x66\xab\x33\xc0\xaa\x8c\x49\xc3\x37\xc9\xbc\x8d\x16\xac\x6a\x9c\x88\x44\x3e\x21\xfb\xcd\x8d\x25\xda\x65\xe6\x68\xac\xa8\x2d\xbc\xb1\x6e\xaa\x4c\xdc\xef\x6d\x6f\x6b\x6b\x63\x57\x21\xa3\x3d\xae\xd7\x12\xa4\x8c\xbd\xbf\xb3\xea\x7a\xdf\xb8\x46\xaa\xdf\xfc\xbd\x27\x96\x6a\xaf\xbe\xc8\x7a\x7f\x47\x29\xef\xdf\x7b\xa8\xc7\x15\xf5\xce\x56\x75\x6f\x51\xf4\xaa\xd5\xe4\x82\xf5\xa9\x37\x29\x56\xb3\xb4\x77\x96\xf5\xa6\xc5\x6a\x91\x0e\x03\x54\x02\x20\xc1\xf1\xc4\x1f\xd5\x88\x64\xfb\xee\x34\xf3\xd1\x91\x0f\x42\x08\xa4\x37\xec\x46\xb9\xde\x9a\xa2\x6b\x72\x37\xa7\xce\x6a\x0e\xd7\x8d\x66\xc5\x25\x63\xc1\x05\x64\xb0\x81\xcd\xb8\x64\xc7\xf8\x59\x17\xcb\x59\xf6\x25\x9b\x05\x2d\xc1\xce\x58\x6d\x86\x8c\xd1\x87\x82\x98\x42\xb1\x09\xa1\x2b\x01\x97\xa4\x06\x21\x3e\x54\x99\x39\x41\x64\xef\x72\x74\x05\x85\x50\xa7\x69\x76\xb6\x3a\xff\xc8\x6b\x89\x38\x9d\x08\x1b\x0d\x5b\x12\x19\xf5\x40\xb1\x1a\x27\x2c\x0c\x91\x67\xd3\xf2\xb0\x9c\x7a\x86\x98\x70\x14\x89\xa9\x21\x1d\xe5\xb3\x22\x06\x99\x1f\x11\x30\x03\xc6\x01\xd9\x2e\x20\x84\xb2\x23\xbf\x74\x4d\xd9\xf4\x62\xd2\x47\x02\x60\x52\xc4\xc8\x12\x14\xea\x6b\xa4\x4f\xf8\x45\x66\x6b\xbe\xac\x78\x7c\xd2\x28\x35\xf4\x41\x2b\x58\x74\x18\x1d\x46\x63\x37\xe3\x24\x1c\x31\x71\x66\x97\x2c\x93\x62\x61\xa9\x45\x5b\x16\x45\x4d\x31\xd7\xf8\x2d\xcf\x7e\xc3\x1e\x32\xb8\x40\x3b\x1f\x6e\x11\x64\xb6\xe7\x0d\xc2\xc6\x9c\x18\x37\x62\x17\x5f\x44\x88\xed\xa8\xbd\x3e\x35\x45\x32\x51\x4d\x12\x96\x84\x37\x0a\x5c\x49\x1f\x8b\x01\xeb\x04\x3f\xbc\xbb\xeb\x58\xdb\x36\x79\x14\x9a\x4d\x87\xa2\x73\x6b\xea\x58\x30\xb8\x50\x3c\x95\x76\xca\xa3\xa5\x1c\x5a\xb5\xd4\xae\xaf\x86\x33\xc8\x4e\xd3\x0c\x44\xa7\xb6\x6c\xcd\x16\xff\x59\x92\xbf\x28\x17\x17\xf3\x08\xc9\x76\x8c\x55\xfc\x10\x24\x69\x2a\x1b\x0a\x8e\x03\x54\xa9\x57\x09\xc0\x40\x6e\x2f\xe6\x03\x6d\x22\x53\xb2\xc7\x24\x78\xe3\xc3\x13\x76\xb2\x8d\x11\x8f\x13\xb8\x35\xa1\x14\x0a\xff\x1f\xea\x1b\x58\xd8\x06\xbf\x0f\xb7\xaa\xb6\x52\x4d\x9b\x5d\x3b\x70\x98\x5b\x19\xf6\xfd\xb3\x62\xfb\xfa\xc2\xc2\x19\xe0\xae\xa5\x5f\x8b\xd1\x1e\x88\xd5\xb6\xf3\x27\xdc\x6a\x2b\x78\x8f\x96\x7a\xa0\x93\xcc\x90\xf4\x39\x4a\xf0\xc4\xb2\x37\x22\xd3\x77\xfa\x32\xde\x22\xbc\xfd\xbf\xad\xfe\x5a\xad\xfe\x58\xc2\x3d\x85\xb6\xf9\xfa\x66\x80\xd2\xee\xcb\x9a\x04\xc3\xee\x0b\x77\xb6\x54\x98\x70\xc2\xeb\x99\xd9\xed\xe6\x7d\xbf\xb7\xcd\xfb\x60\x77\xd9\x16\x80\x76\xc7\x6c\x0b\xbf\x3f\xec\x66\x9d\xe8\x33\x08\x74\xec\xf3\x8e\xb6\xb1\xcf\xf3\x0c\xfa\x73\xdc\x8f\x8e\xb1\x9f\x77\x1a\xd1\x4d\xfa\xb3\x0f\xaf\x36\x9a\xfd\x01\x38\x9c\xda\xf6\xaa\x1b\xc2\xdb\xe1\x97\x4e\xa7\xd8\x47\x1e\x83\xcc\xd3\xd7\x72\x1f\xbb\xd5\x8a\x69\x31\xf3\xb5\x19\x5f\x19\x97\xd9\xe7\x55\x0e\xda\xbf\xab\x59\x26\x23\x2e\x07\xa1\xdd\x80\x16\x05\xf9\x4b\x3c\xd0\x02\xa1\x20\x1c\x6a\x68\x5c\x9f\xb3\x7c\x92\xc5\xe3\x13\x94\xf8\x19\xcb\xb2\xcb\x1c\xf1\x19\xbb\x47\x78\x3a\xc0\x43\x4e\x7a\xac\x11\x69\xee\xa2\xb5\x0a\x85\x44\xee\xbd\xb9\xdf\x54\xdb\x85\x2c\x93\x4e\xa9\xe7\x92\xaa\x2e\x57\x93\xba\x90\xd2\x25\x7a\x08\xe5\x19\xf3\x64\x49\x0f\xb5\x3f\x91\x80\xeb\x34\x51\x7c\x5c\xa5\x74\xca\x4f\xe1\xae\x25\xe7\x54\x1a\x26\x8a\x23\x38\x99\x5c\x64\x1a\xcc\x95\x8a\x8d\x98\xc6\x87\x2d\x54\xf8\xf8\xfe\xc9\x9b\x0f\x2f\x3f\xbe\x7c\xfb\xe6\xc3\xe9\xcb\x37\x1f\x9f\xbf\x7f\xf3\xe4\x95\x36\xa5\x43\xee\x72\x56\x9c\xe3\x10\x0d\x5f\x15\xe7\xe7\x10\x3e\xf8\x6c\x75\xde\x34\xd1\x0a\xde\xc2\xdc\x37\x61\xc7\x29\x1c\x73\xff\xad\x9c\x48\x86\x51\x55\x27\x25\x48\xa0\x2c\x17\x4e\xce\x30\x6e\x37\x74\x7e\x7b\x91\x0d\xae\x6a\x5b\x95\x79\x94\xb3\x4a\x98\xe5\x3c\x99\x99\xae\x1c\x75\x62\xa0\x1c\x23\xa9\x20\x54\x9e\xc8\x07\x4a\x6f\xac\x61\x93\x89\x00\x03\x0b\xd1\xd0\xe7\x68\xca\xbc\xfc\x46\xcf\xf8\xb5\xb6\x15\x5c\x5d\x8e\x23\x45\x33\xe4\xfa\x0e\xc3\x91\x8e\x91\xa5\xbd\xef\x0d\x6c\x17\x7a\xb3\xe9\x50\xf9\xd7\x43\x47\x79\x21\x53\x13\x63\x43\x13\xc7\x81\xd2\xea\x0c\xc2\x35\xcb\x51\xed\xa8\xa9\x87\x21\xd0\xd5\x6a\x58\xd0\xd6\x49\x7d\x82\xe3\x1c\xc5\xae\xe8\xb9\x0f\x83\x8f\xa2\xd6\x0b\x0e\x27\x0e\xf8\x2b\x74\x5e\x02\x7b\x57\x6e\x90\x45\x51\xe7\xd3\x6b\x79\xfc\x50\x58\x8f\x60\x55\xce\x82\xd0\x27\xdf\xae\xcb\x5c\x2c\xf1\x28\x30\xf0\xd0\x73\x6c\xed\xa1\x20\xb4\x77\x51\xb8\x36\xb6\xca\xac\x38\x1f\x04\xba\xa2\x2c\x45\xa1\xce\x37\xc1\x3e\x23\x40\xc3\x53\x15\x33\x86\x3a\xba\x1f\x7c\x13\x84\x4d\xbb\x6f\x43\x23\x82\x52\x5a\xe8\x06\x06\x81\x2a\x12\x44\xe3\x55\x39\x3b\x09\x9b\x16\xfb\xb3\xce\x5a\x78\x91\x60\x67\xeb\x32\x4e\x3d\x36\xd8\x92\xf9\xad\xad\x46\xee\x44\xa3\x97\xb2\x69\x51\x19\xcf\xb4\x24\xf9\xfe\x93\x25\xad\xbf\xf5\x54\xbd\x64\xd8\x1e\xd4\xb7\x9e\xb7\x16\x93\xb6\x8e\x01\x67\x25\xcc\xf1\x6e\x73\x99\xb3\x2a\x67\xc6\x48\x48\xb8\xee\x71\xe5\x18\xa8\x8d\xa9\xdd\x3b\xa3\x2b\xcc\xbc\x42\x41\x82\x6e\x52\x9b\x25\x6c\x67\x96\x27\x6b\xd8\xd6\x26\xcf\xb4\x85\xe4\xdd\xa2\x0d\xb9\xc1\x36\xef\x22\xa9\x60\x4a\x2c\x8c\xbd\xa6\x7e\x12\x96\x40\xc4\x64\x55\x59\xdb\x39\x3e\x84\x4c\x88\x3d\x66\x0b\xbf\x8e\x99\xe6\x17\x53\xba\x84\x01\xc2\x03\x3c\x76\x4e\xf3\x31\x07\x55\x61\x5e\x11\xa0\xdf\xc7\xbf\xe3\xc3\x93\x26\x72\x25\x3a\xfe\xe6\x50\xb4\x03\x6d\x66\x57\x79\x25\x8e\xd2\x8d\xad\xe6\xd3\x81\x84\x0d\xd7\xf2\xd7\xf8\xf0\x04\xbd\xf2\x32\x15\x3d\x29\xa9\x02\xd2\x18\x29\xc8\xa3\x13\xf6\xca\xa6\x85\x2c\x4c\xf8\x14\xae\xb9\x82\x5a\x3b\x2a\xcd\x86\xfc\x78\x0c\xd2\x4a\x5f\x1b\x27\x28\x94\x2a\x16\x59\x07\xca\xbe\x82\x62\x2a\x0d\x56\xaa\x35\xb4\xa4\x97\x61\xe8\xf0\xf8\x8c\xf2\x3c\xf8\xe8\xf7\xf7\x2c\x7d\x99\x8b\xa4\x1a\x04\xda\xc7\x71\x95\xd5\xc0\xf6\x08\xf8\x03\x38\x8d\xa4\xd5\x9b\xe7\x30\xef\x28\x26\xf1\x89\xd6\xe8\x61\xb1\xce\x81\x54\xc0\x73\x3f\xe8\xff\xca\xf7\x8f\x38\x96\xda\xdf\xb2\xb2\x7e\xdf\x6c\xd0\x0c\xdb\xfd\xca\x08\xb0\xe9\x3e\x86\x68\xbe\x78\x5f\x33\x2e\xa2\x3d\xcd\x05\xec\xa9\x26\xed\x4a\x43\xc5\x56\xc7\xbe\xb0\x0b\x0e\xb8\x16\xb4\x2a\x55\x5b\xcb\x51\xb1\x2c\xdc\x8c\x3a\x6b\x36\xe3\xe8\xa0\xaf\x3f\xa5\x06\x8c\xaf\x25\x6a\x06\x25\xee\x34\xe1\xfc\x29\x49\x87\x7f\x34\x5d\x77\xb3\x47\x28\x05\xa2\xe2\x3c\x58\xee\x17\x5d\x80\x81\x38\x39\x30\xb6\x0f\x9c\x66\x2f\x08\xd8\xb1\xe3\xca\xb2\x45\xbc\x6e\xda\x79\x57\xe2\x0e\xdf\x7b\x4d\x5e\x94\x11\x14\x6a\x6e\xa1\xe7\x56\xee\x9c\xdd\x96\xa9\x5a\x8a\x60\xe8\x4f\x94\xab\x7d\x11\x97\xe2\xb1\x76\xd1\xc7\x06\xba\x63\xcf\x16\xa8\x36\x15\x9a\xb1\xec\xcb\x46\x67\x29\xe7\xed\xf2\xc1\x1d\x1f\xae\xac\x2d\xa1\x15\x49\x79\x5f\x19\x73\xbb\x25\x4a\x3a\x62\xcf\x36\xbe\x4c\x1b\xaa\x55\xbf\x3a\xe2\x63\xaf\xd5\x19\x49\x60\x90\x49\xb0\x8e\x24\xc6\xe7\x23\xb5\x49\x2a\xd8\xbf\x19\xbb\x8f\xe2\x34\xc8\x63\x5d\x2e\x07\x1e\x80\xce\x58\x1f\x03\x64\x8e\xd2\x42\xb1\xf1\x31\x5b\x31\x2c\x48\x05\x1c\xf1\xd4\x60\xd8\xc8\x16\x56\x6e\x29\x74\xd6\x4d\x90\x18\x02\x4a\xf1\xca\xac\x99\xb0\x31\x82\xe3\xea\x18\x13\xe4\xf8\xad\x78\xaf\x52\xbc\x18\xe9\x02\x2e\x56\xa5\xa7\x68\x37\x5a\xba\xb1\xb0\x69\xa8\x16\x83\x8b\x8f\xed\xdb\x04\x1b\x73\x13\x92\x00\xc4\x4c\x72\x2e\x8d\x99\xf9\xe1\x3b\x6c\x52\x9e\x57\xe1\x5a\xfc\x1f\x83\x70\x02\xdd\xda\x41\xea\x48\xfc\x3f\x3e\x3c\x89\xe9\xef\xcd\x4d\xf0\x20\x50\xc6\x8e\x32\x95\x5f\x33\x2b\xa6\x35\xf4\x76\x31\xbb\xa6\x98\x8d\x77\x32\x53\x86\x17\x82\xa2\x02\xc7\x19\xba\xfa\x27\xe5\x39\x22\x20\xfe\xd3\xde\x2c\x41\xb5\xdf\x07\xdc\xef\x7b\x93\x6d\x53\x29\xf3\xe9\x43\xba\xa5\x35\xcd\x13\xdd\x5e\xc2\x7e\x47\xc5\x89\xd5\x6c\xd6\xf0\xa7\x15\x0f\x8e\x86\x6a\x25\xbc\xd8\x3a\x35\xa2\xfd\x8e\x1b\xb9\x53\x40\x3b\x4a\x8d\x9a\xb8\x19\x7a\x41\x9c\x03\xb4\xb5\x53\x7f\xe8\xca\xf4\x68\x0f\x19\x3a\x4d\x1e\xe5\x22\xe8\xbb\xa1\x02\xe4\x35\x94\x3e\x81\xa7\x3c\x58\x56\xc3\xd5\x02\x63\xc0\xe2\x3b\x32\x6a\xae\xa1\x18\x48\xc9\x80\x64\x37\x95\xb5\x5f\x84\xea\xa4\x00\x36\xfc\xbc\x44\x2f\x3e\xcc\xeb\x0a\xd7\x32\xff\xd4\xa2\x02\xca\x9f\xa3\xac\xc9\xff\x94\x5d\xdb\x2a\xa1\xf9\x62\xb9\x22\x7d\x70\xfe\x40\xf5\x29\xbb\x3e\x41\x95\x3a\xc4\x65\x9e\x2c\x21\x8d\xb4\x61\xdb\x54\x27\xfe\xbc\x28\xb3\x49\x71\xbe\xc8\xff\x91\xa5\x88\x19\xea\x77\xf6\x82\xfd\x4f\xd9\xf5\x7e\xd0\x5b\x92\x07\xa0\x5e\x52\x31\x7d\xe3\x9e\xbc\x26\x04\x21\xf7\x31\x63\x29\xc1\xe2\x7b\x96\x4f\xc3\x54\x77\xc2\xe7\x17\x68\xc3\x0a\x8d\x59\x8b\x96\x1e\xf4\xbb\xb2\x98\xe7\x95\xa1\x73\x2c\x9f\xdb\xfc\x77\x9d\x2a\x1c\x39\xa5\x87\xf5\x45\xb6\x18\x80\x8f\x1a\x1d\x20\x45\x0c\x17\x4e\x17\xfc\xbc\xb9\xc1\xbf\xa8\x4e\xc0\xf4\xb9\x74\xaa\xe0\x4c\xf8\xf0\xfe\xf9\xfd\x2b\x18\x74\xb1\x69\xa4\xae\x8f\x09\xad\x17\xfc\x93\xb3\xa2\xac\x41\xe4\x23\x1d\x47\x88\xc9\x03\x68\xa9\xe5\x89\x1f\x51\x00\xb3\x79\xdc\x7b\x57\x16\x93\xac\xaa\x30\xb9\xea\x4d\xcb\x62\x4e\xe2\x64\x6d\x8b\xee\xf4\xb4\x89\xac\x45\xad\x69\xf1\x2c\x4b\xa6\xef\xf5\xfd\x54\x45\x74\xa5\xf5\x35\x36\xf2\x4f\xac\x4b\xb8\x1f\xa8\x41\xf7\x11\x4b\xc1\x65\x91\x1d\x86\xb5\xc1\xbc\xc5\xe2\x35\xe9\xdc\x47\xa4\x83\xdf\x30\xa1\xe4\xcf\x06\x55\x89\x60\xb4\xff\xe4\xe8\x22\x96\x3f\x57\x43\x35\x11\xa5\x24\x14\xb0\x8b\xcd\x7e\x3a\xca\xdf\x4e\x85\x2d\x0f\xc6\x1c\xce\x2d\x34\xce\x4f\xc8\x54\x5a\xa1\xa3\x19\x8e\x01\x07\x97\xb8\x85\xd1\x36\xda\xed\x8a\x30\xc0\xab\xce\x00\xc7\x48\xaa\xd4\x86\xca\x8e\x81\x96\xfe\xe7\x65\x15\x69\xcd\xf7\x76\xcb\x86\xe8\xb4\x9a\x5c\x64\xe9\x6a\x96\x71\xd1\x1f\xbb\x29\x6b\x93\x02\x8c\xc8\xff\x1e\xa5\x02\x9b\x84\x86\xd2\x0d\x32\xb0\xe5\x1f\xf3\xb9\x18\xa9\xd5\x62\x28\x1b\x7b\x2b\x18\x0e\x7a\xba\xd0\x3b\xa1\xa2\x4b\x67\x00\x7a\xb0\xbc\xda\x20\x6a\x41\x84\x74\x66\x77\x43\x5e\xf9\x44\x6e\x39\x82\xb4\xa4\x99\xb9\x0b\x43\x29\xca\x00\xc2\x26\x28\x8f\xe5\x1d\x68\xb9\x63\xe3\x33\xc0\x73\xc7\x09\xa2\x65\x0e\xb1\x74\x2b\x4c\xd3\x36\xc8\xc0\x01\x40\x3c\x06\x27\x5e\xc8\x5b\xb4\x22\xf2\x38\x44\xd2\xf7\x1e\x74\x69\x20\xb5\x98\x94\x89\xd9\xce\xd6\x65\x23\xd2\x04\x83\xca\xd0\x6f\x01\x96\x9f\xc0\x81\x25\xae\xf2\xca\xa4\xac\x3d\x3a\x89\x02\xd1\xb7\x57\xdb\x6a\x6d\x2b\x83\x35\xab\x90\xba\x98\x7a\x6d\xd3\xac\x4b\xa6\xe3\x5a\xc0\x30\x63\xe3\xca\xb9\xeb\xa6\x61\x7a\x31\xf4\x90\x06\xcb\xe1\xc9\x59\xf1\x25\x1b\xb0\xf5\xc1\x97\x8d\xe9\xea\xd9\xe4\xa1\xba\x98\x22\xbe\xde\x5e\x14\xab\x85\x8c\x0d\xa9\xa9\x9a\x97\x09\x1a\xe5\x8f\xe3\xc3\xd1\xc1\x41\xee\xb4\x67\x2b\x51\x13\x15\x63\xa9\x5c\xad\x7a\xcf\x6e\x1e\x35\xe1\x74\xa2\x56\xb8\x76\x10\x05\xb5\x7b\xee\x8c\x47\xc5\x0e\x43\xea\x67\x22\xb2\x7f\xa4\xf4\xb9\x43\x70\x8a\xb3\xd2\x52\x49\x14\xd3\x18\x9e\xe7\x98\x06\xa4\xe1\x10\xb5\x8a\xd7\x97\xf9\x6c\xf6\x1e\x25\x23\x96\x7b\x97\x36\x4a\xc1\x3e\x94\xa6\x98\x8f\x60\xb6\x55\xd0\x44\x70\x46\x1f\x9b\xbc\x45\x1b\xd5\xe0\x92\x61\xb7\x65\x54\x0e\x2c\xaf\xa5\x76\x58\xbc\xf5\x12\x33\xef\xcf\xd1\xe4\x22\x9f\xa5\xac\x45\xf8\x06\x76\x45\x1d\x8e\x82\xed\x4a\x9f\x2a\x38\x91\xe4\x14\x96\x21\x1a\x70\x8b\xb9\x75\x90\xfa\x5d\xfb\xfb\x85\xaf\x10\x8e\x97\xe4\x62\x8c\x89\xc5\x67\x33\xdd\x7f\x58\x70\xd0\xc4\x9f\x92\xea\xc7\x2c\x5b\x3c\x43\xa9\xd9\xc0\x1d\xba\x88\x7b\x6a\x27\x2f\xfc\xe1\x66\xfc\x3c\xa5\x2c\xfc\xf8\xfe\x87\x95\x07\xd9\x4f\xc4\x75\x76\x1c\x40\xcf\x7a\x97\x17\xf9\x2c\x13\xac\xb5\x60\xd9\xf2\xc5\x39\x4e\xf0\x71\x2f\xd8\xf7\x3a\xa3\x44\xe1\xb2\xe2\x40\x91\x69\x9c\x67\x55\x95\x9c\x67\xe1\x5a\x55\x8f\x36\x8b\x66\xae\x66\x49\xab\x1a\x08\x8a\x17\x1a\xf3\x98\x9c\x0d\x92\x0d\xe1\x9c\xaf\x5c\xd8\x34\xc6\x5b\x0f\x56\xa6\xf9\xec\x48\x15\x0a\x9b\x88\xce\xa5\xcd\xfb\xeb\x17\x5c\xf0\xb4\x7d\x77\x5c\xf2\x3a\xba\x83\x5c\xf4\x76\x3d\x5b\x2e\x7b\xa7\xd8\x88\xd9\x89\x30\x9b\xcc\xfc\x4b\x21\x99\xc7\x3d\xdb\x84\x05\x3d\x6d\xde\xdb\xbe\x50\x7d\xdb\x71\x67\xb0\x88\x17\xb4\x2b\x78\x94\x06\xcf\xb0\x32\xcb\x19\x5a\x0e\x49\x9d\x2f\xce\x35\x54\xb4\xb0\x1f\xca\x58\x11\x89\x3b\x0c\x23\x3a\x74\x84\xdd\x63\x36\x12\x7b\x2b\xd6\x72\x47\x27\xc6\x4a\xa4\x5d\x68\x39\x8d\xbd\xa1\x4b\x1b\x8f\xf7\xf0\x43\x10\x1c\x7b\x01\xf7\x83\x61\x70\xc7\xa8\x22\xaa\x6b\xb1\x42\x6a\xdf\xd7\xc9\xfd\x80\x82\x84\x8c\x5a\xa6\xdc\x1e\x2a\xc6\x6c\xc9\xa4\xa6\xf1\xb5\x76\xe7\x4a\xcd\x28\x1d\xfe\x1a\xf4\x2c\x6b\x41\xbc\x7c\x95\x56\x3e\x98\xcc\x67\x51\xf5\xf4\x48\xfe\xbb\x06\xd6\xfb\x10\x73\xe4\x02\x10\x37\x37\x16\x00\x17\xbb\x87\xec\x15\x8e\xf8\x7b\x3c\xcd\x0d\x3e\x2b\x3f\x5f\x14\x65\xf6\x22\xc9\x67\x2b\x74\xe6\xc6\xbc\x02\x81\x80\x6d\x88\xa2\xa4\xd0\x63\xe4\x96\x4f\x07\x46\x71\xa6\xc3\xe2\x93\xd0\x3c\x4d\x16\xdf\xd4\x12\x95\x1e\xba\x32\xef\x7d\x23\xe3\xc0\x7c\xd3\x3b\xcb\x26\xc9\xaa\xca\x7a\xd7\xc5\xaa\xec\x25\xcb\x65\xef\x22\xa9\x44\x89\x69\xbe\xc8\xab\x8b\x2c\x65\xb7\x7e\x71\xd2\xc0\x83\x7b\x5e\x57\xbd\x69\x5e\x56\x35\x0e\xe1\xb0\xf7\xb1\xd0\x2d\x2c\x64\x23\xc5\xa2\x97\x66\x55\x0d\x1b\x46\x4e\x5a\xd5\x4b\xc1\x9e\xb2\x97\xb0\x7a\x23\xd1\x78\x6f\x92\x2c\x7a\x82\x69\xeb\xfd\x1d\xfc\xbe\x0e\xc2\xbf\x8b\x1a\xc0\xd0\x46\xd3\x89\xbf\x93\xfb\x33\x69\xaf\x23\x4d\x71\xc0\x5e\xe6\x01\xf3\x7a\xf9\x40\x7b\xbb\xfc\x7b\xef\xa2\x28\x3e\x55\xc3\x00\x85\x72\xa0\x90\xfb\xd7\xa4\x42\x0a\xb8\x13\x8b\x9b\x1f\x1c\x6c\x66\x71\xe5\x23\x47\x0b\x93\x2b\x5f\x2b\xa4\x57\xf9\x7e\xdf\x4e\x91\xaf\x31\x1e\x60\xcc\xa2\x23\x92\x32\x71\xf9\xc4\x92\x8b\xb5\xbb\xa7\x43\x6d\x29\x4a\xaa\x0d\x85\x4d\x6e\x56\x36\xdc\x91\x49\x4d\x83\x70\x0b\xc5\x5f\xcc\x73\x9e\xd5\x74\xbf\xbf\x67\x2d\x54\xff\x0a\x7d\x53\xd4\x17\x62\x49\x60\x7f\x52\x98\x50\x67\x9d\x0e\x7b\x2f\xa7\xb0\x4c\xd2\x3c\x25\x48\x06\x18\x81\xe0\x08\xd9\x0e\x58\x48\x67\x59\x0f\x96\x75\xda\x3b\xbb\xee\x21\x8a\xa2\x09\x31\x18\x28\xdb\xd2\xcb\x94\x86\xb1\x97\x2f\x7a\x09\xbb\x93\x45\x50\x01\x14\xd2\xf8\xd4\x45\xef\x6c\x75\x76\x36\xcb\xc0\x8a\x4b\x6d\x74\xae\x17\x83\x44\x85\x14\x0e\x96\x4b\xdb\x10\xaf\xec\x36\x61\x33\xa2\xff\xc0\xe6\x37\xea\x30\x4c\x5c\x73\x26\xa0\xea\xd0\xbc\xc1\xc0\xef\x9d\x0a\x32\xd0\xd0\x20\xa0\xc2\x22\x23\xc8\x17\x26\xf6\x21\x2c\x0b\xa6\x33\x3c\x30\xb2\x23\xa3\x30\x5a\x51\x75\x00\xb0\x28\xd8\xaa\x59\x75\x02\xdd\xba\x6d\x5d\x43\x17\x02\x1a\x2a\xca\x71\xcf\x7a\x24\xfa\x61\xc3\x07\x0c\xbd\xef\xc0\x2d\x7d\x40\x7c\x0c\xf9\x20\x4f\x96\x6d\xa1\xb6\x3d\xda\x38\xca\x80\xaa\x94\xdc\x10\x84\x60\x7a\xaf\x72\xb7\x3d\xde\xc5\xa5\xf3\x00\x6d\xcf\x0f\x80\xb6\x31\xfe\xea\x54\x64\xa2\x46\xdd\x53\x54\xdd\x81\xf3\x27\x0e\x74\x3a\x86\x66\x20\xa2\x40\xa5\x88\x7c\xff\xd5\x2e\x4c\x3a\xa6\x3f\x8d\x3c\x80\xaf\xb2\xe4\x4b\x26\x01\xe4\xe3\x9e\x1c\x85\x2a\x1e\x9f\x8c\x4c\x75\x21\x44\x84\x7f\x90\xe9\xb8\x67\x78\xf1\x4f\x83\x24\x3b\xad\x66\xb1\xa9\x8f\x0d\x4a\xa6\x8e\x72\x10\x85\x1c\x34\x58\x49\x1e\x83\x2c\x62\x25\x98\xa4\x76\x94\x7f\x6f\x23\xaf\xc4\xb4\xfb\xfb\x6a\x64\x55\xe6\x38\x3f\xc1\x37\x45\xd0\x81\x6b\xcc\xf0\x59\x98\x16\x36\xe1\xc8\xa9\x13\x6e\x3e\x6a\x95\xc8\x7c\xd1\x13\x2b\x36\xa0\xc9\xa0\x34\x91\xde\xb0\x7a\xb5\x99\x4c\x01\x1a\x08\xd6\x17\x62\xd0\x15\x59\x02\x56\xbb\xca\xe0\x83\x82\xa5\x0d\x92\xa3\x28\x79\xe8\x46\xa3\x48\x8e\x3c\x82\xe9\x7c\x3a\x48\x8e\xc6\xf9\xc9\x5e\x1c\x27\x0f\xc7\xf9\x49\x97\x88\x44\x57\x78\xb4\xc9\xc0\x5e\x31\x3a\xb6\x85\x3d\x46\x2f\x03\x97\x7f\x9e\x20\x80\x51\x81\x7c\x20\x66\xb2\x97\x5d\xa4\x25\x70\x27\x1e\x70\x18\x6a\x18\x39\x26\xcf\x50\x70\x58\xdd\x6c\x18\xae\xcf\xca\x2c\xf9\xd4\x18\x55\x11\x3b\xd6\x88\xb6\xb8\x4c\x5c\x45\x5d\x23\x30\x70\x7f\xe1\x43\x82\xb9\x3f\xa9\x2f\x86\x3f\x17\xf9\x02\x3a\x25\xae\x5a\x5d\x81\xc0\xdf\xd3\x36\xb0\x2d\xb5\xd0\xc6\xc8\xb2\xcd\xf2\x44\x1f\x63\xb6\x5a\x1b\xe2\x94\xcd\xc5\xc5\x63\xa7\xf8\x65\x5a\x89\x73\x37\xc3\x28\xca\xad\xcb\x64\xf2\x29\x4b\x4f\x4d\x9b\x2f\xdb\xf2\x6a\x75\xd6\x99\xaf\x0e\xd3\x36\x00\x83\x12\xb4\x80\x88\x06\x4e\x97\x65\x71\xd5\xda\x0c\xf6\xa4\x1b\x46\x0c\xf6\x69\x77\x97\xb3\x64\x72\xd1\x5d\x89\xe0\x95\xbf\x64\x1b\xc6\xa4\x3d\x38\x7e\xb7\xa1\x5a\x9a\x4d\xb3\xb2\xe4\xb6\x68\x66\xfe\x2c\xf9\xc7\x35\xdc\xbc\x5b\xa3\xce\x79\xd1\xa2\x4c\x5c\x42\xe2\xbc\x6a\x87\x58\x5e\x77\xe5\x6b\x73\xbc\x36\x88\x69\x99\x65\xff\xe8\x02\x28\xc0\x60\xb3\x0b\xa2\x2d\x72\x9e\x09\xd5\x3a\x54\x94\x3f\x5f\xd5\x60\x36\xb8\x19\x65\x09\xd9\x39\x76\x78\x11\x27\x2e\xff\xb4\x5a\x2d\x05\x3d\xd8\xda\xa2\xd0\xcc\x5e\xe2\xdb\x6c\xcb\x3a\x23\xa0\xaa\x28\x6b\x2f\xd6\xd2\x72\x84\x76\x85\x63\x63\xe9\xc0\x95\x59\xba\x9a\x64\xbb\x03\x9e\xce\x93\x49\x59\xf8\x28\x91\x0a\x2c\xa1\x70\xd0\x16\xf6\x1d\xc0\xb4\x47\xb7\x84\xee\x00\xcb\xae\xea\x07\x65\xf5\xc5\x8d\xf0\x28\x32\x5a\x76\x98\xc8\x52\x2f\x3c\xff\xb6\xb8\xdc\xc9\xe2\x92\x25\xd8\x88\x1e\xd9\x98\x3e\xb4\x31\x7d\xe8\x8c\xa5\x8d\xe9\x43\x1b\xd3\x87\x36\xa6\x0f\x6d\x4c\x1f\xda\x98\x3e\xb4\x31\x7d\x68\x63\xfa\xd0\xc6\xf4\x91\x8d\xe9\x23\x1b\xd3\x47\xce\xb4\xdb\x98\x3e\xb2\x31\x7d\x64\x63\xfa\xc8\xc6\xf4\x91\x8d\xe9\x23\x1b\xd3\x47\x36\xa6\xdf\xda\x98\x7e\x6b\x63\xfa\xad\x8d\xe9\xb7\x8f\x3a\x6d\x65\xff\x63\x6b\x63\xd9\xbc\x7a\xfe\x79\x95\xcc\x6c\x4b\xd9\x21\xa5\xfb\x63\x41\x7a\xac\x35\x89\x7f\xb1\x4d\x66\x37\x46\x8c\xf4\x84\x64\x7c\xa3\x64\xb6\x1b\x22\x66\xb6\x59\x9d\xfe\xde\x05\xfd\x88\xbc\xce\x13\x41\xcf\x36\x19\xcf\x7e\x58\x9d\xb9\x70\x1e\x0b\xda\xa7\x4a\xbe\xb9\xc9\x76\xf6\x89\xe6\x81\x36\xc6\xd4\x84\xa6\xdf\x89\xa3\x63\xa3\x25\x2d\x76\xdd\x03\xeb\x99\x9f\xa7\x45\x99\x6d\x19\x40\xf3\x79\x32\xb9\x70\x07\x00\x2c\x69\x55\x96\x02\xf4\xb4\x2e\x01\x21\x8b\x66\x54\x30\x55\x9e\x3a\x3d\x93\xfa\xc1\xb2\xbb\x3e\xf2\xcc\x26\x4c\xfc\x07\x38\x08\x3c\xc6\xcb\x9e\x29\x7d\x46\xdc\x44\x6c\xd3\x36\x1b\xb0\x58\xbc\x2a\x12\x13\x4c\x50\xbc\x21\xa6\x4b\xdb\x6a\xf1\xfb\x4f\xe2\xda\xef\x02\xf2\x5c\x8d\xab\xdb\xf5\x87\x9e\xa9\x7f\xaa\x18\xb8\xd8\x26\xa8\x2e\x28\x72\x72\xb1\x4d\x68\xdb\xcd\xbc\x63\x9b\x04\xdb\xa0\x2f\x24\x6f\x17\xdb\xb4\x79\xa8\xb2\x10\xf0\xfd\xdb\xff\xfb\xfc\xcd\xe9\xf3\xf7\xef\xdf\xbe\xf7\xc0\xb2\x5c\x5a\xa6\x92\x25\x8c\x6d\x1a\xbf\x7d\xec\xd6\x87\x9e\x65\x20\x67\xf5\xb5\x60\xa9\x62\xfb\x74\xb0\xa1\x5f\x23\x1f\xd8\x36\x20\x9e\xc5\x40\x25\xdc\xc9\x7b\xe4\xd9\xe3\x1f\x81\x83\xc4\x0e\x7c\x40\xfe\x31\xb6\x4f\x9f\x6d\x4c\xe1\x1f\x79\x66\x9b\xb4\xfd\x60\x43\xb9\x9d\x7d\xe4\x99\xf6\x0f\xc4\x5e\x7a\xa0\x3d\x33\x0f\x6c\xde\x53\x9f\xfb\x01\x71\xde\x0d\x8d\x6c\x4d\xa4\x64\x8a\xd7\xc7\x01\x14\xf4\x82\xe1\x26\x02\x5e\xd4\xdf\xe4\xef\xc4\x36\x32\xf2\xd1\xb6\xde\x48\xf2\x37\x2a\x8a\xfa\xe1\xd0\x66\x7e\x35\x8f\xed\xb3\x7a\x58\xad\xe6\xe8\x58\xc1\x1e\x28\x91\x39\xcf\x17\x14\xdb\xfe\xca\x93\x99\x5c\x8d\xa4\x4a\xa4\x27\x73\x89\x6d\x3a\x0b\x01\x1a\x2d\x4a\xe5\x66\xe2\x59\x3e\x9d\x7a\x20\x30\x43\x36\xf0\xe3\xb5\xb7\x89\x1f\xaf\x25\x80\x7f\x40\x08\xcc\x18\x85\x69\x3e\xab\xad\xdd\x05\x70\x98\xce\x40\x7c\x6d\xca\x1c\x06\xd6\xde\xb2\x99\x0f\x45\x56\x8b\xfc\xb3\x0b\x28\x52\x65\x76\xe1\x99\x06\x48\x26\x5b\x57\x92\x23\xb9\x40\x2a\x8b\x2f\x51\x6f\x54\xe7\x47\x1e\xf2\x80\x87\x63\x5b\x81\x96\xe3\xdf\x03\x2a\x98\xb9\xa1\x15\x29\x5a\x7f\xba\xfb\xd1\x82\x07\x00\x5c\xef\x1f\xfe\xf2\x2e\xb6\xb9\x42\x8e\x04\xca\x7d\x25\xe3\x45\x7f\x55\xea\xf2\x1a\x7c\x9e\xd2\xb7\x64\xf3\x24\x5b\x87\xa9\xc0\xd8\x89\xff\xe8\x1b\x29\x9d\x3e\xb1\x28\x99\x9d\x4b\xfa\xa7\xca\xa3\x83\x48\xfe\xa0\x74\x93\x00\x19\x5f\x04\xa1\x8f\x1b\x7d\xba\x50\x0e\x3f\x5f\x8c\xe3\x04\xf3\x4d\xba\x6f\x7c\x11\x84\x4b\xeb\x9d\x14\x13\x12\x7b\xce\x3f\x28\xdf\x47\xd6\x3d\x69\x04\x2d\x09\x3a\xfd\xa5\x54\x97\x7c\x3b\x29\x04\xc9\x8e\x4a\xfd\x93\xf2\x4c\x22\x6d\xd2\x64\x36\x7d\x0e\x81\xf4\x13\x61\x2c\x61\x91\x61\x8b\xea\x22\x4c\x0b\xdd\xed\x20\xb3\xcf\xe7\xaa\x46\xbd\x46\xa9\x46\x99\x23\xc8\x6e\x2c\x48\x2f\x4b\x12\x14\x78\x0e\x63\xa1\x93\x92\xab\x58\x90\x59\x23\x09\x1c\x67\x1b\x75\x89\x59\xa9\x70\x1a\x74\x22\x51\x56\x49\x48\xcd\x2a\x7e\xbc\x8e\x91\x7c\x9a\xc9\xaa\x7b\x9c\x68\x32\x10\xa2\x9d\x44\x2a\x9d\x8c\x1f\xaf\x63\x45\x20\x9d\x4c\x55\xb7\x45\x16\x19\x20\x50\x47\x20\x86\x66\x62\xb1\x88\x91\x04\xb2\x64\x4d\x09\x35\xe1\xa3\xbd\x07\x9c\x71\x6c\x73\xc9\x6a\x8d\xc1\x2d\x80\x5d\x9e\xe4\x52\xe7\x77\x24\xfe\x21\xab\x95\xf7\x22\xf9\x43\x91\x00\x79\x0f\x52\xbf\x28\x47\xdf\xe4\xd4\x2f\xb9\x51\xf4\xce\x74\xb6\x24\xbb\x01\xe9\x9f\x06\xf2\x98\xc9\x7e\xcb\x92\x06\xfb\x68\x7c\x29\x5c\xd5\x35\x48\xff\x94\x38\xa9\x7b\x8f\xbe\xe6\xe8\x1c\x6c\x53\xdf\x6b\x64\x0f\xf5\xcd\x86\xfd\x96\x23\x96\xd5\xf1\x87\xac\xb6\xc8\x96\xa2\x58\x94\x4e\x77\x0e\xba\x62\xd0\xc6\xe4\x97\x0c\xe3\x4e\x61\x6c\x75\x75\x02\x59\xdf\xc6\x68\x31\x30\x3b\x81\xcd\x20\x41\x74\xe4\x21\xe9\xb2\x8f\x2a\x22\x12\xe2\xb0\x12\xff\x75\x3e\xa6\xb4\x3d\xa3\xe8\xd7\x8f\x8d\xae\xee\xfc\x6e\xe2\xbc\x12\xf0\xfb\x10\x01\xde\xd9\x19\x19\xc6\xf3\x70\xc4\x2b\x98\xdc\x75\xeb\x7b\xe4\x3b\xec\xdf\xbe\x7f\xf6\xfc\xfd\xe9\xb3\xe7\x2f\x5e\xbe\x01\x67\x1d\x44\x5f\x9f\xbf\xf9\x8b\x93\x75\x73\x33\x66\x46\xe7\x51\xb0\x58\xcd\x66\x41\xa4\xfc\xe2\x47\xd2\xb5\x7d\x14\x28\x89\xaa\x94\x90\xab\x37\x14\x34\x9e\x87\xf7\x25\x26\x5b\x9d\xcc\x92\x4a\x4c\x41\x9a\xd4\x59\x70\xd2\x36\xe1\xcc\x58\x01\xe6\x76\xf0\x25\x42\x77\xb7\x5f\xe2\x38\xd6\x8e\x2f\x0f\x1b\x39\x4a\x47\x32\xf6\xc9\x97\x50\x8d\xdc\x43\x99\x86\x6e\x6a\xf5\x50\xa1\xb1\x05\x94\x8a\x63\x8d\x67\xbf\xaf\x41\x86\x69\x56\x67\x93\x7a\xf0\x85\xfb\x46\xd2\x6a\x6d\x46\xf2\x90\x23\x29\xd5\x68\x1f\x6e\xac\xfa\xd2\x5f\xf5\xd1\xc1\xa5\xb7\xf2\xcb\xe8\x4b\xd8\x48\x23\xaa\xa5\x22\xd1\xce\xd4\x9d\xbe\x7e\xf2\xee\xdd\xcb\x37\x7f\xc4\x10\x9c\x08\x4a\x51\xb6\xca\x54\x3a\xe6\x72\x4a\x8d\xb6\xab\x34\xa6\xb8\x73\x79\x7a\x15\xcd\xb2\x05\xfa\xd5\x4c\xaf\xe8\x19\x1a\x1a\x50\x0f\xc6\xe9\x95\x7c\x8b\x4e\xaf\xc2\x35\xd5\x3f\x06\x98\x71\x9e\x5e\x9d\x9c\xc4\x79\x7a\x25\x63\xfc\xfb\x9b\xd5\xd3\x0b\x91\x68\x63\x59\x09\x24\xe9\x2d\xf2\xd0\xcd\x7d\x78\x22\x5d\x2a\x61\xd1\xef\x35\x9c\x1c\xe9\x83\xa3\xc6\x00\x79\xec\x82\xf4\x8e\x9a\xea\x32\xaf\x27\x17\x08\x16\xae\x27\x49\x95\xa9\x5d\x70\x0c\x5f\xb4\x13\x8e\xc5\xe2\xfc\xfe\xd2\xac\xfc\xcb\xe3\x4b\x56\x95\x5c\xb4\x23\x28\x47\x1b\xe7\x58\xca\x3f\xe3\x2f\xe0\x3c\x66\x96\x3d\x95\x13\x4e\x96\x2a\xf3\xe5\xf7\x87\x66\xb5\x22\xed\xf1\x61\x6b\xcd\xb8\x13\xa1\xe2\x2f\xaf\xb2\x85\xa8\x18\xa7\x44\xa4\x5c\x8a\x94\x4b\x9e\x32\x8b\x5f\x27\xf5\x85\xe0\x9f\x06\x02\x3c\x12\x10\xe4\xf9\x2b\x3e\x1c\x49\x25\x0b\x7c\xa0\x2f\xe3\x38\x3e\xec\xf7\xf3\xef\x67\xe1\xba\x8c\xd5\xba\x1f\xe7\x27\xd1\xe5\x38\x3f\x09\x47\xf9\xfe\x3e\x38\x7c\xd8\x63\xa1\x97\x7a\x25\x8c\xc5\xab\x6c\xf1\x3d\xd4\x6d\x0e\xd1\xab\x6c\xf1\x98\x27\x3b\xdd\x51\x9b\xe8\xd8\xd8\xc4\xde\xdd\x6a\xee\x50\xb6\x2b\xcd\x2a\x81\xf8\xe0\x00\xbd\x59\xcd\xe3\x2f\xc3\xf3\xac\xfe\x98\xcf\x33\xb2\xfa\xbf\x14\x89\x97\x2c\x51\xe0\xf9\x66\x35\xff\x5e\x64\x58\xe8\xbf\x59\xcd\x1f\xf3\x64\x8e\x3e\xd1\xb3\x63\x45\xad\x9a\xce\x33\xcc\xfb\x70\xd7\x71\xa6\x6d\xfd\x98\xb7\xc1\x5d\x2a\x39\x6a\x9d\x25\xf5\xb4\x28\xe7\x56\x72\x21\x7d\xe8\xb6\x38\x8d\xfd\x25\x9e\xca\xee\x7c\xae\x76\x08\x90\x1e\xde\x5a\x7e\xf4\xb0\x5b\x7c\xd4\xe5\x32\xd3\xf7\x24\x02\x7e\x54\x1c\x27\xa2\x98\x8c\x72\x37\xed\xf1\xd8\xf1\x25\xca\xf2\xba\xbc\x9a\x7a\x84\xa8\xc9\xa9\xc7\x37\x64\x71\x4a\xe8\xb0\xe6\x37\xf9\x8b\x54\x47\xb8\xf7\x0a\x29\xa3\xdc\x2d\xd1\x31\x87\x7f\xdc\xb8\x31\x09\xf3\xb7\x05\xda\x62\xa2\x7a\xed\x7c\x02\x67\xec\xc5\x6a\x31\x71\xfd\x57\x4b\x87\xc5\xca\x94\x79\x6f\xb2\x1c\x9e\x5e\x24\xd5\x4b\x22\x2c\xaf\xb3\x3a\xc1\x46\x0c\x50\x50\xb3\x82\x10\x85\x02\x5e\x0e\x5a\xfd\x53\x76\xcd\x02\x14\xf2\xe4\x70\xcd\x86\x1d\x2b\xe4\xd9\x5c\x7d\x6d\xb2\x04\x8b\x64\xe8\xee\xdb\x85\x54\x85\x72\x71\x68\xc2\x26\x42\x95\x34\x49\x4a\x55\x47\xfd\x83\xd3\x34\x03\x35\x3c\x86\x67\xb2\xc6\x3b\x0d\x68\xb5\x08\xb1\xe3\xe4\x1c\x0f\x5a\xe6\x42\x41\x86\xa3\x0d\x55\x0d\xc9\xf9\x20\xba\x29\x70\x5d\xb5\xc9\x18\x46\x61\xb3\xb1\x26\xf0\x14\x66\xd5\x03\x14\x32\x5c\xc3\x9f\xe1\x64\x96\x25\xe5\x40\xf5\x14\x12\x37\x57\x9b\xe6\x29\xaa\x49\xea\x5a\x8b\xb3\x9f\xa3\x4f\x19\x2d\x12\x52\xd3\xd5\x6b\xd8\x10\x98\x0c\x8c\x50\xc0\x49\x79\x0e\x4e\x44\xd4\x1c\xd0\xd9\xfa\xf8\x88\xbc\x98\xd0\x8e\x52\x7e\x4c\x10\x2a\x3a\x8c\x0e\x8e\x54\x2c\x94\x36\xa0\x83\xa3\x70\x7c\x78\xc2\x4c\xb3\x08\x7e\x4f\xc7\x11\x6e\xd3\xcb\x86\x31\xe8\x49\x9c\x7b\x72\x14\x7a\x69\x36\x99\x25\x65\x96\xf6\x2e\xf3\xfa\xa2\x58\xd5\xbd\x44\xc5\xa0\xe8\x81\x3b\x56\x54\xda\x9c\x2c\x41\xbb\xd5\xbf\x79\x79\x84\x59\x34\x7f\x98\x60\x94\x23\xb6\x6b\x27\x4b\x54\x31\x97\x2b\x77\xb2\xe4\xee\xcc\x3b\x05\x52\x1c\x6e\x07\xb1\xd4\xe6\xc3\xd5\x39\x20\x37\xde\x18\x6f\xe7\x08\xdd\x77\xbe\x76\xba\x59\x07\xa5\x20\xa7\xc4\xd5\x32\x59\xa4\xa7\xad\x1e\xd4\x5b\x8e\xe6\x96\xe3\xbf\xe5\x7c\xdf\xd6\x89\x7a\xb7\xbe\x9f\x57\xc3\xac\xc5\x79\xbb\x5f\x1f\xee\xdf\x2a\x37\x52\xe5\xe6\xce\xdc\x4d\x76\x6a\xbb\x26\x7f\xd8\xe1\x9a\xfc\x11\x73\x4d\x7e\xbe\xca\xd3\x17\x16\x8f\x20\xb8\x0e\x4a\x27\x17\xe2\x75\xe2\x83\x11\xe9\x5d\xbc\x86\x47\x57\x43\x2e\x7f\xad\xb6\xee\x78\x3a\x77\x41\x8c\x92\xcf\x14\x21\x6f\x2b\xa8\x20\x70\x68\x60\x4b\xe9\xa0\x9d\x9b\x34\x3f\xda\x78\xac\xef\x3c\x3c\x96\xdc\x8e\x95\x3d\x3a\x02\x98\x67\x12\x0b\xca\x23\x54\x38\xf0\x66\xb6\xc4\xe5\x47\xb0\x90\xea\xc2\xc8\x84\x60\x2d\x6d\x28\xea\x03\x52\x02\xa6\x56\x96\xf7\x0f\xf0\xfa\xe4\x61\x76\xc1\xa9\x83\x3d\x0e\x02\x5a\x66\xb4\xf1\xb8\x62\x63\x71\x26\xb7\xd3\xd1\xbc\x67\xed\xb7\xaa\xea\x78\x9d\xc9\xfb\xb5\x2b\x7c\x1a\x30\xb6\x4f\x7c\x9f\xea\x8b\xa3\x7c\xe2\x59\xf2\x79\xe5\xb6\xf7\x2d\x68\x4c\x69\xcd\x18\x18\x23\x51\x99\x1c\x2c\xb5\x3f\x21\xe1\x8f\x3c\xe7\x9c\xe7\xbc\x87\x49\xd4\x99\x38\xa9\xf7\xcb\xd6\xc3\x2e\x42\x39\x36\x4c\xf7\xbb\xa4\xae\xb3\x72\x11\x3f\xf8\x7f\x83\xe1\x7f\x86\x7f\x1b\xfe\x97\xc8\xfc\xdb\x50\x7c\x3c\x20\x17\x7a\xab\xb3\x59\xf6\xdc\x57\x64\x30\xfc\x4f\x2a\x10\xae\x1f\x46\xcd\x03\xad\x4e\xf0\x23\x4c\x63\xad\x20\xff\x36\xfc\xdb\xf8\x6f\x27\xff\xeb\xc1\x88\xc5\xb3\xa9\x25\xcf\x06\x4c\xfd\xa7\xec\x3a\x8e\xe3\xe0\xbf\x04\xaf\xab\x9d\x74\x14\x67\x3f\x2b\x8f\x49\xa7\xbc\x88\xb6\xfe\x7a\x26\x59\x74\x98\x80\x4a\xf1\xef\xca\xf0\x23\x9a\x2c\xa3\x9c\x5d\x15\xa4\x4f\x5d\x83\x53\x8f\xaa\xd5\x79\x52\xa2\x5f\x1e\xf4\x1c\xa9\x0c\x69\xd4\x2f\xbc\xb8\x4c\x96\xf1\x64\x89\x3f\x79\xad\x31\xff\xc0\x6c\xe3\xca\xf1\xe3\xf5\x1f\x57\x79\xaa\x5c\xd2\xd7\x6c\x9d\xdb\x79\x15\x44\xbb\x4c\x95\x71\x24\x36\x8b\x41\x65\x5e\xd6\xd9\x5c\xfb\xbf\x67\x89\x4f\x8b\xd5\xa2\x8e\x0f\xf5\xb8\x88\x44\x39\x63\x72\x50\xc8\xaa\x48\xdf\x7a\xa0\xfd\x28\x5f\xa4\xd9\x55\xc4\x51\xa2\x41\x30\xe1\x62\xf3\x53\x8e\x41\x9a\x5d\xc5\xf0\x3f\x25\xd4\xd9\xdc\x82\x1c\x22\xab\xfb\xa4\x1e\x00\x5c\xe8\x0e\x41\xcc\x3f\x30\xfb\xcc\x24\x78\x8b\xd5\x6c\x86\x19\x85\x9b\x44\x01\x93\xe4\x88\x35\x2d\x6b\x82\xdd\x96\xd6\xf2\x5e\xc2\xfc\x2d\x67\x97\x18\x71\x7b\xed\x4c\xee\x50\x42\x2b\xa0\x08\xcc\x3d\x9b\xe8\xdc\xa9\xc6\x74\xa6\x65\xd4\x22\x81\x07\xe0\xeb\xb9\x5e\x2d\x55\x68\xa5\x63\xf7\x42\x8a\x53\x63\xde\x4f\xdb\x96\xd5\x98\x0e\x78\xab\x74\x78\x12\x73\xe0\x91\x35\x2b\x49\x8a\xe3\x6d\x5e\x79\xd7\xda\x52\xed\x38\x30\x4b\xe8\x43\x3c\x88\xd4\x15\xcc\x06\x52\x07\x76\x40\x7e\x0c\x70\xd3\x0c\x4f\x73\xb6\x20\x05\xea\x63\x8e\xdb\x09\x75\x0e\x86\xc5\x5e\xb6\x95\x71\x4d\x8f\xb6\xad\xb1\x69\x22\x15\xcf\x6c\xc7\x81\x06\x52\x6f\xd5\x1e\x6f\xd9\xee\xcd\xcd\xf8\x64\xc4\x7d\x3d\xef\x32\x61\xb4\x35\x08\xed\x0d\x03\x61\xe3\x11\xda\x33\x8c\x07\xc8\x57\x9e\xe4\x26\x22\x82\x65\xb4\x53\xb9\x96\x99\xd1\x59\xbe\x48\xf5\x6b\xc6\x2c\xfd\xa0\x08\x9d\x49\xf7\x6c\x32\x08\xee\x30\x4d\x3b\x3f\x59\x95\x0d\xca\x6b\xa5\x4d\xe6\x0c\xa2\x67\x0d\x78\x47\x93\x42\x2f\x1a\x24\x50\xba\xb8\x36\x37\xb6\x3c\x51\x8c\x45\x14\x91\x8f\x4f\x51\xc4\x5a\x6c\x01\x66\x05\x61\x54\x98\x94\xb9\xd2\x97\xf6\x01\x99\xae\x49\x23\xcd\x2a\xab\xc1\x10\x1f\x1d\xd3\x43\x24\x58\x03\x7d\xbb\x26\xf0\x86\x07\xe2\x2f\xab\x71\xed\xf1\xb5\xce\xe6\x48\xfb\x69\x46\xcc\x1a\x68\xbd\x03\x6b\xb1\xdb\x41\xd2\x72\xc0\x59\xdb\x73\x64\x63\x3c\x86\xe2\x27\xb1\x95\xae\xfa\x61\x4f\x50\xe4\x88\x08\xa5\x10\xcf\xe4\x83\xb1\xa3\x0c\x06\x7d\xd2\x59\xcd\x58\x07\x4e\x38\xe2\xc2\xc0\xed\x6a\x90\xdf\x4a\xe8\xa7\xfe\xb4\xed\xe7\x3b\x2c\x45\x75\x32\x62\xa0\x0e\xe3\x30\xdd\x6a\x02\x22\xb3\xc3\xaa\x37\xd0\x3a\xbc\x3e\x9a\x1c\x81\xf6\xa0\xa7\x12\x49\x54\xc4\x84\x70\xe6\x8c\x46\xc5\x74\x5a\x65\x75\x24\x7a\x42\xfe\x9d\x21\xb8\x26\x7d\xc5\xb1\xa1\x69\x32\x7c\xf6\xfc\xd5\xf3\x8f\xcf\x55\x4b\x72\xde\x9d\x5a\xdb\xda\x0b\xd7\xf6\x8c\x68\xc6\x00\x68\x88\xc5\x53\x74\xaf\x00\xb5\x3e\x1d\x38\xf9\x3d\x02\x5e\xc7\xce\x85\xe1\xdb\x71\xcd\xfa\xae\x6f\xee\xa2\xf3\x2f\x80\xc8\x5e\xb8\xe6\xdd\x73\xeb\x6a\xf4\xea\xc5\x7f\x51\xe7\xd6\x6f\x3d\x48\x7d\xcc\xa4\x8f\xba\x08\x42\x77\x37\x1e\x75\xd4\x41\xa0\x9c\xa5\xa1\xc2\xf5\x9a\xe9\x6d\xbd\x3c\x6e\x5f\x63\x1b\xb6\xa2\x4d\xd6\x6c\x46\xb6\x4b\x62\xdd\x52\xef\x90\xaf\x22\x7d\x3e\xf3\x1a\x1c\x5a\x64\x0d\x9f\xdd\x8b\xc6\x41\xb3\xb8\x2f\x04\x15\x6f\x70\x27\xfc\x28\x04\x89\x75\xe4\xb5\xd0\x4b\xe7\xec\x5b\x6f\x47\x02\x61\x11\x72\x12\xe4\xd0\x1a\x8c\x14\x34\xf9\xf4\x24\x4d\xdb\x68\x35\x2c\xcc\x45\x76\x09\x57\x33\x5c\x1e\xb7\xa0\xc6\xe8\xf2\xcb\xb8\x81\x19\x84\x36\xc5\xab\xdf\xc0\x6a\xae\x21\xfc\x50\x74\xd0\x89\x22\x92\x85\x14\x2e\x8a\xf7\x88\xa6\xf6\x4e\xac\xb1\xc5\xa6\x38\xc2\x46\xe3\x74\xa5\x1f\x9f\x34\x11\xfa\x6e\x01\xa5\x8d\xac\x32\xbc\xcb\xa9\xda\xa2\x44\x13\x11\xc6\x52\x25\x26\x27\x35\xba\xd3\xb9\xa4\x7f\x91\xfe\xc8\x0e\xc7\x14\x07\x45\x45\x16\xd0\xb1\x68\x2d\xfe\xfe\xf9\xc7\x27\x2f\xdf\xf4\xfb\x36\x52\xda\x27\x3c\xfe\xe8\xf7\x11\xcb\x98\xa9\x62\x6c\x71\x26\x4a\x5e\x94\x18\xbb\x89\x3c\x95\xf4\x3d\x7d\x1f\xeb\x45\x22\xdf\xc6\xfc\x6f\xa0\xef\x7c\x3e\xa3\x24\x4d\xd5\xba\x92\x37\x3e\xc5\x92\x1b\x4e\x73\xa8\x98\x58\x19\xb1\x29\x66\x19\xb2\x2c\x94\x88\xa1\xb3\x14\x29\x95\x16\x17\xa6\xb8\xe5\xd6\x34\x32\x48\xf2\x4f\x19\x2d\xe6\xb6\x7b\x17\x49\xf2\xee\x72\xbd\xb3\xd6\x62\x1b\x7b\x8f\xb1\x0d\xa4\x83\xdd\x14\x57\x87\xfa\x86\x4f\xda\x1f\x58\x22\x3a\xb4\x8b\xe0\xbe\x46\xe1\x8e\x4a\x65\x89\x03\xab\x76\x59\x91\xb1\xdf\x54\x7f\x81\xb5\x43\x38\x90\x22\xe2\x4f\x7b\x2d\x39\x8c\x39\xa3\x0d\xd8\xb4\x49\x5e\x6c\x14\xbc\xd8\x33\x07\xc6\x26\x7f\x52\x99\x9c\x90\x73\x29\xd0\x88\x9e\xd8\xec\xdc\x76\x5c\x93\x8f\x55\x37\xab\xdd\x95\x81\xda\x5c\xa3\xe6\xa5\xa6\x45\x39\xd0\x39\xb1\x77\x6c\x0e\x8e\x46\x1a\x04\x9d\xf9\xea\xef\x70\xad\x26\x2d\xb6\x46\x7a\x5f\x43\x09\xba\xac\xe0\x1e\xc7\xd2\xf7\x0a\xfa\x52\xe9\x16\xc9\xc9\x52\x61\x3b\xd3\x6a\xcd\x18\x5e\x6b\x46\x7a\x87\xc2\x39\xfa\x54\x7d\x3a\x24\xc3\x5c\x7a\xee\xfd\xd9\x90\xc4\xd2\x3e\x6c\x5b\x46\x52\x4c\x84\x92\x34\x46\x35\xb4\x0e\x86\xff\x72\x0e\x39\x5a\x04\x87\x58\xe9\x3e\x78\xd0\xd2\x32\x61\x71\xce\xb6\x48\x40\xbe\x0e\xa1\x04\x48\x1f\x99\x54\x19\x5f\x87\x2a\x76\xc8\x23\x18\xf2\x77\x22\xa0\x5f\x8d\x78\xda\x08\xb2\xb9\x6d\x13\x29\x58\x9b\x02\x1d\x08\xb5\xd3\x33\xdc\x75\xac\x1d\x4b\x98\x62\xec\xda\xa9\xb3\x8f\x1c\xea\x66\xdf\x1d\x0d\x22\x72\x0b\xf9\x4b\x3b\x7d\xd8\x5a\x28\xf3\xaf\x2b\x6c\xd9\x8d\x1c\x6d\x1a\xaa\xcd\xf4\x89\x2f\x37\x93\x28\xa9\x3d\xfa\x75\x49\x12\x91\x61\x3d\xb3\x4f\xd2\xb4\xfb\x64\xf6\xdc\x6e\xfc\x57\xcb\x63\xdf\x25\x10\x19\x71\xe7\xaa\xb6\x76\x08\x51\x71\xf6\x33\x7a\x17\x74\x5e\xae\x90\xd2\xc8\x27\x36\x27\x23\x46\xad\xb0\x63\x6f\x43\xc7\xd6\x77\x54\x9c\xfd\x7c\x2c\xd0\x5b\x96\xd9\x97\xbc\x58\x55\x30\x8a\xd5\xf1\xba\x69\x9a\xfd\x7d\xef\xfb\x98\xfb\x94\x86\xed\x0e\xcd\x2a\xc6\xd4\xe1\x93\x98\x3d\x39\xa2\x3e\x5f\xe4\xbd\xe9\xee\x34\x5c\xf9\x74\x70\x70\xe0\x7f\xbe\x03\x4e\x1f\xf5\xff\x66\xab\xea\x82\xc2\x55\x43\x0c\x3c\x9e\x60\x07\xbf\x33\xde\x06\x9d\x2e\x0a\x7c\xa2\x09\x5b\x56\xa0\xf5\x4f\xe1\x8c\x38\x60\xb8\x9e\xc4\xc6\xd8\xc8\x08\x44\x93\x61\xab\x5c\x8d\x45\x31\x81\x86\x8d\xfb\x9c\xa7\xa0\x71\xb1\xf3\xd5\x6b\x1e\x61\xed\x7b\x7a\x82\x1a\x68\x50\xc7\xcf\x9e\x9a\xf2\x5d\xb6\x32\xef\x35\x5d\xc3\xa2\x89\xb5\x28\xec\x4d\xde\x7e\x7d\xd9\x75\xd7\x53\x17\xb6\xdc\xf6\xdd\x68\xdc\x9a\xf4\xec\x86\x44\xe3\x7b\x93\xe6\x3e\xc2\xbb\xce\x69\x29\xbc\x78\x0b\xd7\x50\x72\x10\x98\x66\x57\xda\x4c\xa2\x87\x16\x0d\xc9\xd5\xe0\x90\x0a\xed\xe3\x75\x56\x85\x5e\xc2\x02\x92\xcd\xa5\x52\x90\xc8\xbd\xed\xf6\x94\x65\x04\xf9\x17\x35\x9b\xa6\x3b\x32\x73\x25\xeb\xbd\x62\xe5\xad\x17\x2b\xa7\x19\x83\xdb\xa3\x36\xa9\x11\xd5\xc6\x26\x3e\x19\x5a\x33\x96\xa9\xfc\x90\xeb\x14\xab\xb7\x96\x27\xd2\x0d\x54\xc4\x44\xb0\x1d\xde\xeb\x41\x66\x0d\x9f\xbc\xe1\x98\x7f\x98\xd9\x2a\xcb\x20\xa9\x48\xc5\xf8\x07\xc4\xcf\xf3\x21\x6a\x26\xc6\xe6\x27\x9b\x11\x25\xf8\xb2\xc6\xca\x50\xef\x30\x46\x6b\x0e\x4a\x1c\xbb\x3c\x7e\xcd\x8d\x27\xfe\xce\xcd\x04\xb5\x3b\x47\xf6\x36\xd7\x1f\x77\x5a\x27\x4b\xeb\x4e\x21\xbd\x55\x62\x23\xee\x51\xcf\x5c\xb0\x43\x04\x66\xab\xe7\x74\x18\x68\xc5\x95\xe5\xf0\x54\x7d\x0d\xb0\x56\x20\xe7\x5b\xaa\xcf\x0b\x78\xa8\x24\xef\x86\x1c\x59\xe3\xb7\x64\x6a\xdf\x03\x6b\xbc\x42\x0a\xb0\xb3\x6d\xdd\x0d\xe2\x4b\x0a\xcb\x52\x33\x3d\xff\x47\x06\x2a\xcb\x6e\x72\xc7\x4c\xad\x65\xc5\xc7\xd6\xb8\x1d\xf3\x8f\xc6\x1e\x7c\xb6\x16\x97\x49\x29\x9a\x99\x5d\xbf\x97\xba\xff\xc4\xed\x58\xda\x03\xa0\x55\xed\x68\x41\x0d\xeb\xac\xaa\x4d\x83\x03\xcb\xa5\x2b\x18\x34\x81\xb2\xbc\xe4\x3b\x0c\xe8\x11\xd7\xbf\xc7\x05\x23\xed\xa6\x40\x6f\x45\x23\xea\x37\x01\x30\x26\xdc\xab\x04\xc5\x15\xff\x59\xec\x65\x71\x53\xa1\xbf\x5b\x11\x09\x50\x60\x8b\x49\xd1\x54\xb6\x14\x62\xf2\xc8\xa3\x58\x54\x31\xd5\x27\x1a\x76\x95\x62\xd8\x22\xf0\x8f\x66\x73\x27\xb9\xbe\x8f\x4f\x51\x47\x8f\xb7\x54\xcc\x1b\x68\xfc\x23\xa7\xa7\x68\x47\x26\xe0\xf7\xe2\x58\x59\xd7\x6a\x8b\x35\xc0\x8a\x9f\x3e\x4e\x07\x1a\x50\x49\x68\xd1\x3b\x8a\xc8\x35\xb3\x12\xb3\xc0\x42\x92\xb9\x71\xbc\x25\x92\x5c\x2e\xed\xd6\xe8\xea\xe3\x0e\xf8\x34\x7b\xea\x6b\x4c\x24\x58\xbf\x99\xce\x62\x37\x4a\x38\x28\x52\x2d\xb2\x13\x36\x52\x5a\x58\xdd\xf8\xeb\x47\xa6\x4d\xe8\x37\x8d\x61\x8f\xb0\x9b\x43\x8b\x0d\x3b\xca\xb4\x24\x91\xc6\x50\xa8\xa5\x46\x86\x21\xf4\x97\x62\xe8\x19\xc2\x17\xa6\xc0\xe6\x88\x4c\xd4\xfa\x3f\x95\x27\xe3\xcb\x36\x88\x32\x4b\xd2\xb7\x8b\xd9\xb5\x0c\xd4\x07\x23\x9b\x9c\xcd\xb2\x81\xd2\x1d\x61\x96\x4a\x71\x8b\x5d\x95\x0a\x1a\x0c\xb4\x53\x15\xb1\xa8\x31\x29\x24\x53\x66\x5b\x5d\xb6\xe0\x09\x8f\x22\xd3\x02\x6b\xdb\x03\x20\x6a\x3d\xcf\x46\x70\xca\x30\x82\x6f\x1f\x87\x78\x2e\xa5\x2d\xba\x80\x5e\xa5\xa5\x81\xe9\xa2\x7c\x37\xeb\x31\x71\xe3\xf5\x1f\x11\xb5\x6d\x4b\x16\x1a\xc2\xbe\x16\x1d\x23\x4b\x9d\x48\x2e\x04\x53\xb9\x31\xf6\x75\xd2\x7d\xb3\xb3\x9a\x88\x63\x7f\x6d\xd0\x09\xd1\xe1\xb6\x55\x67\x2b\xed\x91\x9e\xdb\xf6\x45\x36\x4c\xca\x16\xea\x7f\x5b\x69\xfe\x29\x26\xa3\x7b\x68\x6c\x16\x99\x71\xab\xf6\xc0\x74\xe2\xed\xe8\x19\xb6\x54\x63\x4e\x69\xe3\x4c\xcc\x86\x66\x4c\xa5\xd1\x4e\x15\xc6\xa6\x31\x95\x90\x46\xbf\xb2\xe5\xec\x2e\x4a\x10\x26\xe2\x15\x5c\xef\xe9\xdd\xb8\x7e\xd5\x67\x9f\x8d\xa9\x45\xef\x64\x87\xda\x4c\x37\x47\xca\xee\x6d\x23\x8d\xe2\x8a\xbd\x2d\x6c\x89\xcf\x50\xb3\xcb\x44\x53\x1d\x3c\x64\x7e\xf0\x54\xc6\x53\x94\xd6\x61\xc4\xa3\xa9\x60\x96\x2c\x75\x23\x0a\x8c\x8c\xc6\x66\x04\xd3\x3d\x53\x9c\x40\x9a\x3b\x74\x94\xf1\x73\x6d\x64\x02\xc6\x6b\x26\xff\x38\x96\x6c\x39\x4b\xbb\xb9\xb1\x3a\x12\xa9\xcb\x95\x02\x57\x29\x0e\xb0\x0e\x76\x60\xb4\xda\xb4\xd9\x1d\xb3\x9e\x5a\x17\x9d\xd8\x79\x27\xb7\x97\x85\x68\x67\x6f\xcf\xcf\xbc\x8a\x1a\xc6\xbc\xc0\xc9\x36\x28\xe4\x3b\xb4\xaf\x6c\x41\x00\xb8\x1d\x0b\x3a\x3f\xfd\x48\xa1\xeb\x10\xb8\x06\x77\x81\x61\xf8\x93\x5b\x5e\x15\x1c\xde\x76\x10\x76\x1f\xb8\xd0\x5a\x9b\xb1\x06\xb2\x3a\xfc\xb2\xaa\xae\x70\x7e\x73\x0d\xfb\x92\x46\xeb\x43\x24\x6f\x31\x25\x6d\x06\xce\xda\x4e\x97\xaf\x75\x13\xdc\x1b\x4c\xb6\x15\xdc\x0c\x28\xdb\x0e\xd7\x6c\x81\xb5\xcf\x98\xfa\x8b\x41\x06\x3c\x93\xb2\xcd\x68\x98\x87\x69\xdc\xf2\xa0\xe9\x51\x4c\x95\x51\xa3\xdb\x8f\x63\x59\x92\x5e\xb3\xb6\x81\x04\x05\x8b\xad\xa1\x31\xac\x8b\x8d\xd7\x16\xbd\x06\xcb\x73\x87\xa9\x6e\xef\x3b\x8b\xf0\xbc\x05\x5a\x72\x64\x36\x33\x45\xb7\x18\xa1\xed\x47\x27\x1e\x9f\x6c\xb3\xb2\x94\x54\xcf\x7e\x58\xc0\x1b\x4d\xd4\x61\x07\x1f\xaa\x7d\x09\x31\x52\xc5\x26\xff\x90\xd5\xd1\x3c\xa9\x27\x17\xd1\xc6\x05\xa4\xb8\x12\xd1\x42\x07\x23\xd2\x6a\x84\xe6\x15\xaa\xb4\x04\x3a\xcb\xaa\x3a\x4b\x7b\x60\xaf\xd6\xd3\x46\xd9\xbd\x45\x51\xf7\x28\xe6\x43\x96\x1e\xf7\x82\x7d\x93\x8f\x92\x12\x67\xe8\x51\xec\x31\x9d\x1b\x66\x57\xd9\xc4\x46\xc1\xe9\x79\x0c\xe5\xc7\x47\x5e\xe5\x23\x69\x27\x87\x30\x0f\x4f\x22\xe2\x84\xbc\xbb\xd2\xd9\x83\x93\xa5\xbd\x85\xb7\xd8\xb9\xcd\xc8\xb6\xa5\xb5\x2b\x26\xa4\x3c\xb8\x84\x23\x3e\xe7\xe2\xdc\xf6\x6c\x17\xa4\x7b\xed\x80\xc8\xa4\x2a\x36\x6b\x8b\xd5\xc9\x3d\x66\x18\xf5\xd6\x05\x6a\x28\x84\x61\xc3\xb5\x8c\xf8\xa2\xff\xd7\xf0\xf9\x80\x1b\xf5\x76\x4e\x1f\x30\x9a\x1b\x27\xfe\x41\xae\x80\x5a\x37\xc5\x4e\x2d\x52\xe5\x28\xe9\x32\xfd\x4c\x6c\x90\x8f\xdc\xc1\xd1\x44\xa7\x97\xd2\x9d\x5d\x46\xa8\xb8\x27\x1b\x3d\x47\xcc\xb3\xf2\xfc\x9f\xeb\x4d\x62\x83\x83\x27\xc7\x11\x43\x8b\x17\x89\xaf\x16\x4b\x66\x87\x68\x4c\xad\x81\xa3\x36\x85\xbf\xfa\xb7\x1b\x89\x7b\x73\x23\x01\x0b\xd8\x76\x23\x61\x03\xd9\x9e\x26\x1e\x75\x78\x9a\xf8\x96\x79\x9a\xf0\xd9\xc1\xff\xd6\xb2\x83\xf7\x79\xa3\xf8\xad\xe5\x8d\x62\x7b\xc7\x56\x5d\x9e\x04\x3c\x9e\x1f\x6c\x83\x7f\x8f\xd3\xef\x36\xe7\x10\x7f\xf0\x38\x87\x68\x77\x92\x0f\x1e\x0f\x5c\x27\xf9\x1d\x2e\xca\xc4\x22\xf1\xf9\x28\x6b\x8d\xe8\xe1\x99\x37\x6f\x98\x12\x9f\xe3\x03\x27\x7c\x8b\xcf\xf3\x81\x2f\x7e\x8b\xcf\xfb\x81\xd7\x0b\xc1\x36\x1e\x07\x3e\x64\x49\x29\x7d\xe7\xaa\x13\xba\x5a\xcd\x2d\x4e\xcf\x70\x92\xa5\x8e\x6e\x43\xfa\xb7\xe6\x27\xdc\xf1\x21\x13\x23\x68\x07\x53\x93\xc9\x6a\xbe\x9a\x25\x52\x1e\xe2\xa8\x55\xf1\x0b\xb9\x6a\xd4\x2e\xb5\x2f\x4a\x35\x11\x97\x6b\xdc\x73\x0b\x07\xd0\x42\x13\x1a\xc7\x9d\xf4\x8c\xad\x46\x69\x9e\x5c\xdd\x75\x94\x0e\x5e\x2e\xa6\x22\xe1\xfa\xfe\x46\x4b\x29\x68\x78\x8b\x87\xf7\x33\x6e\xa4\x42\xf9\xbd\x5d\xac\x75\x44\x1b\x7b\x34\xa5\x07\x71\x3d\x9a\xb9\x7d\xbb\xd8\x79\x34\xbf\xd6\x60\xe6\x2d\xc5\xef\x77\x30\x1f\xdf\x61\x30\xc9\x43\x3b\x5b\x9a\x4b\x4b\x34\x6f\xc4\xe0\x95\x7c\xf2\xda\x37\x50\x5a\x33\xa2\x15\x63\xe9\x2b\x37\x4b\x63\x37\xc8\x2b\x0e\xcd\x08\xbd\xc8\xe5\x8b\x2a\x2b\xeb\x27\xf5\x40\xd7\x45\x0a\x60\x58\xde\xf2\x2f\xd7\x32\x9e\x5b\xa0\x94\x70\xb3\x7a\x4f\x73\x47\x56\x4b\x8d\xf1\xe9\x5f\x5d\x92\x47\xb6\x16\x2e\xfa\xb9\xe7\x63\xfd\xe3\xb5\x59\xd0\x50\xc4\xe5\xaa\x1f\xe6\x5d\x51\x4d\xf0\x79\x56\x3b\xba\xb5\xa1\xc2\xd0\x9e\xcc\xfd\x00\x5d\xbb\x0c\x83\x7d\xae\x8b\xab\xa6\xd8\x46\x57\xf9\xd4\xff\x62\x85\x24\xc1\x54\x0b\xda\xeb\x6a\x5f\x75\x16\x7d\xe4\x6f\xb5\xb6\xb4\xea\x87\x3d\x93\xed\x3b\x81\xab\x08\x60\x53\xa4\x91\x48\x7a\x8b\x28\xc5\xa0\x13\xb6\xf1\xee\xf3\xad\x97\x6f\x3d\xb9\x88\xf7\xf6\xda\xd6\x6f\x84\xcd\xbf\x24\xa5\xac\x0d\x78\x49\x2b\x40\xdf\x32\xaf\x27\x18\xd1\x1b\x7f\xad\xad\x7d\xc1\x9a\x21\x9a\x72\x4f\x1b\xe2\x8b\x0a\x04\xb3\x6d\x1f\xb4\x6d\xa0\xd3\x0d\xe8\x00\xab\xed\xf1\xc1\x91\xb3\xe5\x58\xb6\xd5\x89\x5b\xef\x35\x33\xac\x83\xb5\x08\x3b\x36\x5d\x44\xc2\x57\xbe\xf5\x7c\x52\x85\x38\x8e\x1f\x86\xeb\x5b\x6d\x4e\xa9\x39\xb1\x7b\xd1\x38\x8e\x51\x21\x45\x0e\x92\x67\x4f\xed\xb4\xc5\xdd\x18\x17\x5f\xdc\x20\x40\x2a\xcf\x2d\xd9\x16\x00\x43\x87\xf1\x5f\xe4\x9f\x07\x5a\x3e\xd3\x26\x6f\x1c\x89\x4c\x94\xfa\xde\x79\xf3\xe7\x52\xf3\x1a\xd4\x57\xef\xb2\xd1\x0d\xfd\x77\x3c\x9a\xf2\xe9\x60\xaf\xa5\x35\xa9\x06\xdf\x99\x1d\x1f\xe1\xec\xef\xef\x77\x82\x35\x89\x34\x10\xc6\xfb\x03\xb5\xbe\xdb\xfe\x3e\xdd\xaa\x4b\x11\x1b\xaf\x16\x9c\x46\xa0\xdd\xee\x74\x05\x14\xdb\xf9\x4e\xe6\xb8\x5a\xdb\x38\xf4\xee\x63\x12\x16\x41\xdc\x7f\x14\x17\xf1\x25\xa6\x43\xa7\x7c\x51\x71\xa4\xe0\xd3\x02\x52\xa1\x54\xdc\x28\xed\xb4\xf4\xce\xb3\xfa\x19\xdb\x22\x7f\x5c\xe5\x29\x7b\x15\xd0\x6b\x40\x7b\xc3\xb5\xae\x3d\xe2\x1c\x65\x84\x4d\x09\xbb\xb6\x7b\x74\x97\x5b\xda\x36\xe9\x02\x6a\x40\xfa\x37\xff\x7a\xbb\x43\x40\xfc\xd1\x5d\x4e\xaa\x77\x38\xca\xbe\xa1\xe7\x23\x6e\xc2\xab\xba\xd8\x60\x73\xed\xe7\x30\x42\xcf\xfe\x6f\xa7\xd6\xa3\x63\xbc\x79\x76\xa4\x0d\xc0\x76\xeb\x7d\x8f\x2d\x77\xd9\xd3\x13\x34\xdb\xb4\x53\xc5\x40\x12\x23\x6e\x67\x8d\x8d\xde\x9d\x98\xaa\x76\xdb\x14\x38\x14\x35\xef\xef\x6f\x57\xf7\x51\xbf\xdf\x36\x3c\x31\x04\x05\xf3\xe2\x18\xaa\xa0\xfe\x5e\xa2\x73\x9f\x4c\xc5\xbf\xea\x92\x91\x35\x60\x41\xd1\xf7\x27\xcb\x65\x96\x94\xd5\xcb\xc5\x96\xcb\xe9\xeb\x2d\x0e\x83\x30\x77\xd4\x7d\xa8\xf4\xba\xb6\x80\x1f\x75\xf4\x78\xf3\x4a\x12\x1d\xee\xaa\x60\x13\x32\xcd\x57\x3c\x54\x7c\x31\xb6\xb4\xf0\x0a\x03\x8b\x0d\xaa\xac\x7e\x22\x79\x99\xa8\xca\xea\x1f\xe5\x07\xa9\x81\x9b\xac\xe0\x1e\xb0\x82\xfe\xa7\x18\xaa\xb1\x57\x66\x9f\x57\x79\x99\x55\xbd\xec\x2a\x99\xd4\xb3\xeb\x5e\x7d\x59\x68\x9d\x2a\xec\x40\x35\x0c\xcc\x1e\x2a\x76\xb7\x15\x9f\xe8\x2e\xd7\x70\x51\xab\x56\xe4\xe2\x6d\x84\xd0\x88\x91\xa7\x87\x00\xac\x0d\xfc\x7b\x2d\x8e\x63\x51\x0d\x6a\x1d\x89\x42\xa0\xc3\x9b\xe4\x0b\x5c\x2f\x61\x1b\x89\x41\x9e\x68\xbb\x59\xbf\x1b\x05\xfa\x5a\x7d\xfe\x11\xfa\x2c\xea\xfb\x0a\x5d\xb6\xa5\x89\x56\x18\x3c\xb5\x7c\xcf\xf2\x45\x52\x5e\xa3\x58\x96\x8f\xc8\xac\xb8\x8c\x2e\xf2\xf3\x0b\xba\xbe\xe6\x69\x34\xcf\x61\xfc\xa2\x32\xab\x22\x41\x3f\x5f\xe7\x29\xfc\x7d\x49\x5e\xc2\xec\x25\xfe\xfd\xb7\xe1\x5a\xd4\xe0\x73\xd2\xd2\xf8\xe0\x1f\x85\xeb\x59\x71\x89\x14\x4a\xfc\x88\x63\x44\x80\xfa\x35\x2b\x2e\x9b\x79\x9e\xc6\xb3\xe2\x72\x1f\x04\x65\xd3\x59\x51\x94\x83\x81\x00\x3a\x98\x15\x97\xe1\x83\x87\xe1\x88\x90\x44\x3f\xf4\xda\xb7\xc1\x3c\x4f\xc3\xd1\x7f\x10\xd6\xf1\xa9\x24\xff\x04\x1d\x8e\x64\x3f\x74\x96\x62\xdd\x65\xa1\x38\x96\x40\x0a\xa3\x79\x9e\x36\x65\x26\xf5\xe1\xca\x34\x53\x35\x46\xaa\xb8\xc8\x27\xbf\x2d\x55\x4c\x75\x7d\x2f\x6b\xfa\xe1\xe0\xe8\x18\xa2\xcf\x94\x59\xc5\x8c\xde\xa0\xbe\xb6\x89\x99\xe7\xe9\xfe\x11\x4e\x8d\x52\x49\x28\xb3\xea\xf1\x96\xc5\xc5\xbc\x8a\xd1\x68\x74\x1f\xf4\x62\x30\x7b\x2f\x56\x27\x93\xd7\x93\x8d\x89\xd4\x08\x93\x4b\xd5\x62\x54\xd5\x1d\x34\x00\x75\xad\x45\x1d\x84\xaa\x2d\xa3\x76\x0c\x81\xc5\xea\xe7\x91\xfc\x86\xd9\x55\x9d\x2d\xd2\x01\xd3\x7f\xac\x8a\x12\x6b\xae\xc4\xd5\x54\x7c\x3d\xcb\x40\xfe\x0a\xde\xe4\x80\x53\x58\xe4\xf5\x8b\x05\x64\x69\x65\x86\x9f\xb2\xeb\x91\x7e\x81\x37\x8b\x59\x2a\x5c\x58\x3e\xbe\x15\x8b\x8c\x21\xb9\xcc\xea\x47\x06\x04\x9f\x90\x98\x7f\xd0\xb6\x76\xd0\x76\x6b\xdb\x09\x3d\x7e\x40\xad\x96\x1f\x8c\xda\xe9\x8a\xc3\x9a\xbc\xd6\x0d\x55\x8c\x9e\xd9\x38\x85\x3c\xe9\xda\xca\x37\x79\x19\x2b\x6f\x7c\x62\x14\x7d\x52\x4d\x32\x70\xdc\xd9\x5a\x88\x81\xac\x9b\x28\x4f\xaf\xa2\xa4\x9a\x8c\x7c\xfc\x97\x57\x81\x4b\x2d\x15\xad\xf0\xdc\xd2\x5d\x7d\x03\xf3\x03\xc0\x3e\x80\xe0\x68\xfe\x7c\x14\x59\xbd\x9d\x0e\x82\xe3\x20\x0c\xf7\xe2\xf8\xe0\x28\xe4\xb3\x79\xdd\x56\xae\x5a\x9d\x61\xec\xb0\xc1\xa1\xe8\x5f\x38\x4a\xaa\xc9\x66\xd8\x3c\xbd\xda\x3f\x0a\x87\x75\xf1\xaa\xb8\xcc\xca\xa7\x49\x95\x0d\x44\xa3\x41\x9a\x55\x93\xc0\x59\x4a\x6d\x8d\x43\x5b\x75\xb9\xca\x1a\x73\x9e\xf0\xc6\xc8\xcb\x84\x23\xef\xa4\x8c\x79\xea\x49\xdc\x36\x37\xb6\x3e\x92\xb1\x81\x55\x13\x8d\xd9\x08\x9b\x1c\xfe\xfe\x3a\x08\x40\x48\x15\xa0\x4a\x28\x1a\x98\x9b\xeb\xfa\xed\x62\xc2\xad\xdf\xda\x40\x06\xb6\x95\x8b\x0f\x30\xf2\x74\x07\x6d\x5f\x3a\xeb\xb7\xb4\xcb\x3d\x9b\x4f\x8b\x7e\x43\xef\x90\x6d\x17\x4f\xc8\x89\x50\xe4\xec\xd5\xf6\x11\x1a\x6d\xc0\xca\x43\xd9\x0c\x81\xe3\x13\x38\x4a\x7e\x24\xaa\x5b\x21\xf5\x86\xa4\x9e\x2c\x5a\x4c\x39\x69\x37\xa9\x46\x99\x55\xab\x59\x0d\xdb\x79\x5a\x94\x83\x2f\x14\x98\x2e\xff\x1e\x2d\xff\x4c\xb4\xe8\x76\xb0\xbf\x9f\x5b\x9b\xca\x03\x3c\xce\x4f\x46\x58\xb9\x8a\x68\x27\x8f\xa3\x27\xe6\x82\x8b\x08\xeb\x1f\x00\x6b\x73\x2d\x1f\xcb\x32\x3f\x9a\x65\xe4\x71\xbe\x9a\xd5\x18\x14\x0f\xb6\x90\x85\x45\xdb\x06\x51\xb7\x8e\x6a\xf2\x03\xd6\x71\x7c\x70\xf4\x9f\xf8\x4b\x49\x66\x0f\x9b\xad\x8f\x0c\x2f\xcb\xaf\x36\x17\x97\xf8\xd0\xa9\x78\x17\xa1\x8d\x2b\xd0\x6f\xe1\x2e\x9c\x67\xb8\x5c\x3f\x34\xdc\xd7\xcb\x1b\x45\x0d\xb9\xba\x66\x5b\x15\x9b\xa9\x00\x1d\xc9\x8e\x1a\x5b\xcb\xb4\x3b\xb7\x8a\xc7\xa0\x20\x33\x58\x13\xc3\x72\x8c\xef\xfd\xed\xe5\x47\xba\xa1\x98\xf3\x47\x64\xcd\x61\xd5\x4e\xfa\x8f\xac\x0c\xd4\xbf\xdd\xa0\xea\x52\x72\x68\xd5\xfb\x07\x3d\x94\x74\x32\xfd\x32\x20\x76\x87\x76\x9c\x0c\xe3\x5b\x29\xed\x30\x99\xf2\xd5\x82\x2a\x6d\x1b\xa9\x08\x11\xf2\xab\x97\x51\x9c\xa2\x8a\x22\xca\x7b\x34\xc9\x74\xc7\x78\x97\xb6\x09\xb0\xf4\x8b\x86\x44\xdc\x55\x07\xed\xce\xda\x61\xb7\x0d\x31\xd4\xa5\x86\xe5\xd1\x2c\x02\x99\x8e\xab\xd2\xe4\xd1\x2d\xfa\x40\x73\x8a\x81\xa6\x37\x28\x83\xd9\x71\xa9\xad\x01\xb4\xe3\x56\x2b\x25\x27\x47\x17\xeb\xbb\xd3\x53\x1d\xa0\xbe\x43\x21\xed\x0f\x2e\x0e\xdb\xe8\x3d\x95\xd9\x72\x96\x4c\x32\x07\x86\xd2\xdb\xc2\x27\xeb\x51\x93\x37\x22\xab\x43\x91\x31\x5a\x11\x89\x00\x25\xc8\x31\x08\xb4\x66\x45\xf1\x69\xb5\x7c\x69\xe6\x70\x47\x45\xd9\xa4\x36\xde\x10\x81\x9f\x08\xcc\xaa\x82\xb0\x89\xe4\x75\xfa\x29\x11\x4a\xcd\x14\xa4\x57\x8e\x5b\x56\xac\xc4\xf0\xe1\x26\x36\x34\x3a\x04\x81\xf2\x0c\xcc\xca\x21\x78\x6c\x2f\xb6\x32\xfb\x7d\x2b\x81\xb9\x30\x14\x5c\x34\x4e\xb1\xc4\xfb\xe9\x2c\xa9\x50\x9a\x9a\x5e\x3d\x86\x90\xb7\xa9\x76\x17\x63\x81\xe1\x69\xee\x1b\x2e\x39\x4a\x18\xc8\xd7\x28\x64\x5e\xbb\x75\x26\xa2\x43\x63\x16\xd9\x85\xd4\x09\x8e\xf9\x4d\x64\xf5\xc9\xe3\x51\x4a\x5a\x92\x54\xab\x65\x56\x4a\x93\xee\x53\xb0\x05\xfa\xb0\x3a\xd3\xb8\x56\x83\x10\xab\xbb\x6e\xaf\x4b\x60\x26\x5d\xd4\x28\x77\x84\xd2\x1b\x70\x65\xd4\x16\xcb\x56\x79\xa2\x18\x07\x33\x45\x3d\x08\xb8\x35\x7c\x2c\x28\x9e\x91\x55\x02\x9d\xec\x09\x54\xc4\x9d\x46\xa3\xc3\x6e\x6c\xde\x7a\xd8\x85\x8d\xe7\xa3\x34\xcd\x4c\x31\x3e\xa5\xb3\xaa\x01\x99\x1b\xc0\xce\xb3\xda\x88\xac\x91\xb1\xbd\x1e\x2e\x6a\xe9\xf3\x88\xe6\xa1\x6d\x24\x1b\xf0\xa1\xb1\x69\xf6\xac\xa1\x1e\x9f\x34\xd1\xbc\x48\xb3\xd9\xb1\x24\x45\x83\xae\xa8\x9b\x61\x74\x9a\x57\x7f\xc9\xcb\x7a\x95\xcc\x8e\xc1\x73\x48\xc4\xd7\x9f\x39\xdd\x2d\x0b\x11\x15\x37\x56\xb3\x19\x05\x3f\x62\xf8\x44\x82\x83\x5e\xd4\x3a\x41\x6d\xad\x24\x5f\x64\x25\xdb\xbe\x2a\x8d\x36\xee\x5d\x56\xd0\x63\x20\x26\x46\x96\xb5\x70\x20\xe8\xb8\x53\x5e\x8d\x8f\x91\xda\x34\xb2\x6f\x71\xa0\xbb\x7e\x1c\xec\x7b\x28\xc4\x9e\xea\xc6\xf0\x22\xa9\x06\xb2\x60\x9b\xc9\xc4\x37\x4f\x8b\xd5\x2c\x05\xab\xa1\x32\xab\x8a\xd9\x17\xf9\x30\xa1\x5a\xe9\x05\xdf\xd8\xed\xec\x7f\x13\x7c\x83\x1e\x2d\xd0\x72\x4b\x4e\x5f\xb8\xb6\x07\x9b\x0d\xaf\x9d\x15\x48\x9b\x1a\xbb\x88\x00\x6f\xcc\xa1\xd3\x7d\x42\xba\xf6\x22\x99\xd4\x45\x79\xad\x7b\x27\xd9\xd6\x75\x9d\x94\xe7\x59\x7d\x6c\x57\xea\xac\x02\x17\x02\x97\x2c\x51\xb2\x70\xe4\x99\x2d\x73\x06\x47\xde\x99\x8a\xac\x15\x82\x87\x97\x8f\xc0\x39\x6e\xef\xcc\x15\x7a\x37\xfa\xc5\xae\xa4\x32\x70\x8b\x17\x72\x24\x97\xeb\x28\xdf\xdf\xe7\x47\x89\xb3\x5a\x4f\xcc\x53\x83\xc3\x72\x92\xe4\x6d\x25\x3e\x6c\x9a\xe8\x32\x9f\xcd\x9e\x21\xa0\x4b\x50\xbc\x07\xc0\xc8\x20\x36\xe2\x5e\xb0\xcd\x0d\xe0\xee\xbc\xbf\xd7\x42\xc4\xb6\xa7\x11\x9c\xca\x26\x4e\xdc\x8e\x47\x0a\x7d\x3e\xbd\x48\x16\xe9\xcc\x63\xe1\x42\x50\x1a\xff\x53\xba\xcb\x9d\xc2\xd2\x3c\x4d\x66\x79\x52\x09\x26\xae\xcc\x26\xe0\x8a\xfd\xd7\xc2\xdd\x7f\x55\xee\x1d\x2a\x40\xa1\xfa\xa6\x20\xe5\x2e\xf3\xfc\xed\xe9\xe9\x70\x03\xcb\xfc\x5b\x9b\x65\x7e\x02\xc3\xf8\x27\x9c\xa4\xed\x39\x77\x62\x53\x5e\x8b\xa9\x7a\x22\x66\xea\x99\x9e\xa8\x4d\xd6\x1d\x36\xff\x0f\xff\x4b\x92\x66\xe0\x13\x6d\xd7\x60\xb4\xce\x2b\x46\xeb\xea\x72\x95\x45\x44\x19\x81\x1e\x29\x7a\x8a\x9f\x0e\x71\x84\xd4\xaa\x2e\xca\x0c\x7f\x22\x6d\x54\x45\x05\xdb\x3c\x51\x8f\xce\xa2\xed\x41\x00\x20\x01\xa8\x28\x00\x16\x59\xfa\x21\x5b\xa4\x88\x76\xc5\xd5\xbc\xc5\x1f\xd3\x3b\x81\xd8\xe6\x63\x9d\x71\xd2\x58\x95\xf8\x4b\x2b\xdd\x21\x69\xbe\x61\x5b\x2e\x1e\x21\x01\xe1\x35\x5b\x51\xca\x2b\x29\x79\x10\xac\x94\x39\x11\x31\x5b\x77\x2d\xb7\x96\xd0\x50\xc7\x62\x45\xd9\x19\xe1\x87\xc0\x59\xb6\xbe\xb7\x22\x6e\x64\xad\xe6\xa3\x71\x5b\x0a\x0d\x36\x98\xbf\xdd\x86\x9e\x74\xed\xff\xae\xab\xed\x51\xcb\xd5\xb6\xcd\x72\xc8\x32\x1c\x6a\xb9\x6d\x7a\x1e\xe0\xec\x89\xeb\x18\xea\xe5\xb5\x7d\x6a\x6c\xb0\x63\xec\x14\xfe\x58\x47\x87\x43\xe9\x97\xd7\x86\xdc\xc7\x0d\x8d\xfd\xcf\x20\xef\x9d\xe4\xbb\x2b\xe0\xad\x4b\xc8\xea\xeb\x65\xf6\x76\xea\xd0\x72\x4c\xde\x95\x9c\x3f\xa5\xe1\xd9\x24\x94\xf1\xc4\xed\xfd\xad\x19\xb6\x97\xde\xb6\x1c\xb9\x05\xa5\xb3\xa7\x63\x31\x25\xe4\xaa\x30\x5b\x46\x55\x96\x2d\xa2\x49\xb1\xcc\x33\xba\x62\x94\x59\x1d\xcd\x8a\x49\xf4\x09\xdf\x63\xa5\x01\xf4\x5e\x1c\x4b\xe3\xe8\xb3\x9f\x6f\x6e\x8a\xb3\x9f\xe3\x18\xdc\xa1\x85\xfa\x7e\x8c\x1e\x82\xb2\x65\xbf\x3f\x98\x15\x93\x58\x3e\xb7\x41\x13\xc5\xd9\xcf\x61\xf8\x38\x3e\x0c\x95\xff\x1b\xd1\xe4\x78\x56\x4c\x4e\xe4\xb3\xef\xdb\x29\xf8\xa1\x8e\xe3\x38\x40\x53\x54\x20\x9f\x71\x71\xf6\x33\xdd\x40\x43\xd9\x40\xb8\x16\xf5\x97\x59\x2d\x59\xbc\xcb\x8b\x7c\x96\x0d\x0e\x0e\x66\xc5\x84\xda\x80\x9a\x63\xec\xac\xfc\x74\x7b\xdc\xa8\x97\x79\x39\x13\xfd\xbe\xfc\x25\x5d\x35\x02\xe6\x0a\x13\xa8\xd0\xad\x47\x56\x53\x9c\xfd\xcc\x9f\x56\x9e\x25\x35\x1e\x02\xe8\x4b\x45\x9c\x75\xa2\x92\xf3\xac\xfe\x98\xcf\xb3\x41\xa8\x7d\x8d\xc4\xeb\x86\x7b\x79\x16\x8d\x82\xa2\x8d\x00\xbf\x48\xaa\xb7\x3a\x14\x9d\x00\x09\x43\xe9\xc4\x79\x84\x91\x78\x8d\x37\xca\x87\x30\x86\xa7\xa7\x81\x86\x12\x43\xf0\x09\xdd\x67\x65\xcb\x1f\xd4\x1a\x80\x34\x77\x58\x8e\x65\x56\xd3\xa8\x11\x17\xf9\xf8\xe8\x08\xce\xc2\x11\x12\x13\xca\x4c\x45\x08\x12\xcb\xa7\x69\xa1\x5a\x6a\x09\x1a\x2b\x10\xba\xb9\xeb\x2a\xdb\x30\x5b\x1a\x58\xcf\x97\x92\xc0\x5b\x1b\x00\x06\x64\x7c\x82\x27\x3f\xff\x00\xe1\x43\x1b\x0d\x15\x5c\xf6\xd8\x4f\xbb\xba\x68\x4d\x5e\x3d\xff\xbc\x4a\x66\x7a\x28\x28\x61\x90\x44\x67\xa8\x7e\xd6\xef\x6b\x4d\x87\x58\x8d\x46\x32\x24\x40\xd9\x35\x95\x30\x38\x43\x53\x7d\x7b\xd5\xf5\xfb\x67\xde\x85\x88\x85\xd5\x02\x8c\xe3\xf8\x4c\x7f\xa9\xd7\x2a\x91\x6c\x7a\x61\x94\x98\xd3\xdf\xd6\xa1\xc9\xae\xea\x07\xaa\x03\x9b\x2f\x27\xe8\xd2\xe2\x54\x3b\xf7\x68\xbb\x6f\xdc\xfe\x78\xb8\x75\x50\xff\xae\xc8\xf5\x1e\x03\x5f\x2f\xeb\xfd\xc8\x66\xbd\xa5\x41\x2e\x7a\x83\xd5\x2e\x33\xb4\x75\xee\x0b\xea\xe7\x3b\xe5\x7f\x4c\xa6\x68\x70\x31\xe5\x28\x5e\x7a\xfe\x7f\x3e\x3e\x7f\xf3\xec\xf4\xdd\xfb\xb7\x1f\xdf\x7e\xfc\xef\x77\xcf\x3f\x88\x45\x53\xae\xb2\x9b\x9b\x96\xfc\xa1\xac\x2d\x5c\x3b\x2d\xb5\xba\x95\x11\x04\x4a\x49\xba\xf0\xed\x59\xef\x77\xdb\x3d\x84\x38\x41\xb4\x7e\x7b\x33\x72\x9b\x21\x0f\x08\x95\xdd\x4c\x92\xa6\x7f\x4d\xea\xc9\x05\x73\xf3\xc9\x23\x82\x85\xeb\x4b\xcc\x95\x74\xa8\x22\xfd\x7a\x4a\x8e\xc7\x27\xd6\x43\xb5\xad\xba\x86\xcf\xd3\x8e\x1f\x15\x05\x36\xce\xc1\x93\x8b\x85\x84\x14\x24\x9e\xc2\xca\x3c\x95\xd8\x9f\x9e\xc6\xd4\xf0\x88\x49\x96\xbb\xfa\xfb\x72\x3e\xcf\xd2\x3c\xa9\xb3\x99\x31\xc2\x86\x24\x23\x76\x70\xce\xbf\x9f\xa1\xe8\x82\xae\x03\x31\x47\xd7\xf0\xb3\x26\xdb\xb1\xee\x00\x5b\xcc\x04\x86\x04\xf9\xd7\x9e\x0f\xec\xc3\x0e\xb3\xb2\xb0\xfb\x9b\x7d\x11\x8d\xb6\x5a\x6a\x18\xad\xce\xf2\xaa\xce\x16\x62\x11\x60\x29\xa3\xb5\xf6\xa3\x43\xd0\xc7\xb2\xfa\xb2\xdc\x82\x36\xce\x8a\xf3\xf3\xec\xd6\xef\x9b\x77\x96\x58\xbc\x82\xe6\x37\x51\xbd\xf7\x1f\xfe\xf2\x2e\x26\x05\xe8\xd7\x45\xba\x9a\x65\x83\x00\xfa\x87\xb7\xcd\x8f\x59\x55\x47\x75\x56\xd5\x98\x87\xf2\x5d\xec\xa4\x48\xcd\x17\xe7\x0f\xc4\xdf\x60\x24\xea\x19\x16\x0b\x78\xd2\x7d\x86\x2d\xe8\xd9\x81\x54\x38\x1f\xe1\x17\x3f\xd8\x9e\xab\x2c\xa4\x77\x54\x2b\x32\x4f\xa2\xf5\x7e\x1f\x33\x4e\x4f\x67\x45\x92\x66\xe5\xb0\xcc\xce\xf3\xaa\x2e\xaf\xc7\x26\x5a\x27\xe1\x5a\x80\x5b\x7d\x31\x61\x42\xd6\x7b\xc1\x19\x61\xfd\xe2\xff\x61\x92\x26\xcb\x3a\x2b\xb1\x12\xf9\x35\xcc\xae\x26\xd9\x92\x75\x01\xd9\x3d\x94\x52\x43\x8a\x66\x40\x11\x4b\x1a\x81\x70\x6d\x7c\x1a\xa5\x71\x5e\x86\x2c\x63\x58\xd5\x60\xfc\xd7\x34\x72\x18\x07\x01\xbd\x8d\x7b\x86\x35\x6c\xbb\x55\x0a\xd8\xce\x75\x8b\x0c\x66\xe7\xca\xb5\xbd\xca\x60\x89\xed\x17\xee\x6d\x17\xeb\x74\xee\x8a\xd7\xa6\x73\x14\xaf\x5d\x3a\x39\x97\x18\xd1\xaa\x98\x38\x39\xb3\x62\x82\x87\x79\x32\xcf\x66\xf9\x3f\x1c\x6f\x2c\x43\x99\x41\xb1\xba\x5a\xe1\x74\x16\x42\x26\xd5\x45\x56\x7a\x01\x65\x0e\x19\xc2\xa5\x59\x59\x89\x21\x75\x00\x75\x16\x61\xb8\xcc\xeb\xa4\x05\x47\x99\x85\x90\xb3\xa4\xaa\xf2\xa9\x23\x68\x18\xca\x0c\x7c\xcd\x87\xa9\xd2\x4c\x07\x7e\xdf\x0f\xcb\x81\x75\x85\x6b\xab\x0d\x31\x43\xb1\xfb\x6e\x36\x9d\xd7\xee\xd1\x65\x17\xbd\xf4\x14\xbc\x1c\x90\x2f\x59\x1b\x58\xcc\xb4\x0b\x3e\x2b\x26\x9b\xdb\x51\x13\xec\x96\x97\x59\x6d\xad\xb2\xd5\xe1\x16\xd6\x99\xad\xc5\xd5\x92\xf1\x94\x96\x79\x6d\x85\xd9\x3a\x72\x4b\xeb\xcc\xb6\xe2\x6a\xc9\x78\x7a\x4d\x59\xad\x45\xf5\xba\xf4\x0d\x99\xcc\xa4\xe2\xed\x07\x25\xfa\x9d\xda\x49\x4e\x75\x57\xa9\xd2\x3d\x4a\x89\x3c\x02\x9b\x87\xa6\xc0\x06\xdc\xfc\x90\xf0\x55\xfc\x86\x87\x4d\xf1\xe3\xe6\x06\xa1\x86\x79\xf5\x21\x27\xf7\x1e\x4a\x9b\x0e\x07\x99\xab\x6b\x07\x93\x62\x51\xd5\xe5\x6a\x52\x83\x2e\x94\x29\x2b\x08\xa2\x00\x14\x28\xb1\xd8\xdb\x69\x10\x05\x92\x59\x7f\x59\xe9\x2e\x05\x51\x00\xa6\xe7\x00\x50\x17\xaf\x8a\x49\x32\xcb\x3e\x10\xb5\x0f\xea\xe2\x83\x24\xe3\x82\xcf\x7b\xc7\xd4\x5b\xcd\xd0\xd3\xa8\x0a\xf7\x89\x3c\x40\xb6\x4b\x25\x70\x31\x90\xe4\x02\x12\xe1\xfd\x8b\x67\xb4\x88\xb1\x06\xba\x09\x2d\x4b\x62\x66\x03\xae\xb4\xc4\x30\x1d\xe8\xf7\x5b\xe5\x29\x54\x15\xea\xee\x01\x3b\xfb\x09\x7c\x6d\x7c\xe2\x3e\x46\x61\xd2\x40\xc4\xa0\x6e\x45\xe3\x13\x90\x94\xd9\xa2\x1b\x7b\xa0\x60\x7c\xc4\xc5\x08\x6a\x35\x19\x7e\xcf\xb4\x3a\xac\xbf\x18\x28\x0f\xdc\x38\x3f\x19\x75\x37\xc5\xc4\x32\x6d\x72\x19\xd1\xa9\xd6\x6d\xd8\xf2\xae\x37\xde\xe8\x79\xcf\xf7\x7a\xd8\xa1\x86\xa8\xf6\xf3\xd7\x10\x07\x77\x6d\x6c\xd7\xe9\x9a\x67\x3b\xbb\x82\xfd\x87\xc6\xb3\x5b\x97\x53\x36\x8f\xc0\xf8\x5b\x53\x60\x6c\x3e\xc7\x19\x2f\x63\x6b\x40\x8f\xdd\x8d\x8e\xc7\xc1\x29\x4e\x86\x18\xa3\xcb\x7c\x36\x7b\x2d\x20\xa0\xd0\xb1\xe1\x39\x9d\xe4\xb9\x17\x49\x75\x01\x81\x5e\xc0\x3b\xbc\x48\x1f\xca\x0a\x94\xfb\xe4\xb7\x53\x2c\x31\x94\x19\x31\xf7\x7c\x29\x6b\x88\x03\xd9\xb0\x62\x5a\x8d\xc2\x78\x0f\x6a\x2b\x8b\xb9\x81\x60\x9b\x65\x22\x06\x07\xd1\xf8\x90\x7e\xaf\x99\x78\x73\xb3\x6e\x40\xa5\xbe\x1a\xcb\x72\x27\x61\x43\x06\xa6\x56\x3a\x44\x6b\xb9\xc3\x63\x1a\x3d\x20\x8e\x94\xda\x07\xe1\xd0\xef\x1b\x9f\xfc\xb9\x8d\x39\x19\xf6\xe4\x3a\x8f\x71\xc4\x2a\x85\x6b\xee\x64\x5a\x5f\x02\xf6\x90\x83\x7a\xf1\xfc\xc9\xc7\x3f\xbf\x7f\xfe\x61\x98\x57\xcf\x17\x82\x08\xa6\x6a\x5b\x16\x2b\x71\xbd\x39\x48\xcb\x62\x79\xa0\x9f\x10\x0f\xb0\xcd\x83\xaa\xbe\x9e\x65\x41\x48\xf8\x9a\x4f\x8c\xde\x44\x7a\xbc\xec\xca\xe3\x83\xa8\x7b\x6b\x82\xf2\x7e\xb6\x0c\x6f\xd8\xd6\x77\x51\x23\x0c\x3b\x53\xa4\xc1\x84\x20\x0c\x49\xd9\x65\x58\xb1\x46\x20\x85\x33\x6d\x82\x89\x68\xd3\xcb\xe4\x5b\x6b\x23\x91\x43\x07\x98\x5f\x49\x9b\xba\x45\x89\x39\xaf\x4e\x17\xc5\xc2\xbd\x41\x11\x4e\x19\x3f\xa4\x77\xe0\x85\x3a\xc9\x2f\xed\x45\xab\x42\x5f\x22\x88\x52\x90\x0d\xf8\x55\xe8\x61\x6c\xd2\xb2\x36\xbd\x3c\xfa\x3c\x7d\xfe\x62\x7a\xd8\x5e\xf9\xf0\xb7\xb6\x7c\x18\x3c\xff\xdb\x3e\x38\x01\x8a\x32\xe8\x1d\xe1\x4d\xb1\x70\xdf\x03\x31\x99\xc2\x30\x7b\xf2\x17\x32\x57\xb3\x57\xf7\xec\xc4\xd3\x3d\x28\xbf\x33\x0e\x4a\x92\xae\xb8\x2a\xdd\x32\x63\x44\x8c\x2e\x2c\x54\x1d\xf3\xca\x71\xf7\xe9\x82\x18\x25\x95\x2a\x6d\x6b\x41\x05\x21\x3d\x8b\xbe\x02\x81\x9e\x3d\xff\x87\xe8\x5a\x54\x66\x52\x27\xe6\xc5\x97\xac\x1d\xde\xcc\xa7\x85\xb1\x48\x9f\x8b\x0d\xe6\x42\xab\xac\x11\x1d\xd7\xb2\x60\xe5\xc2\xf2\x5c\x5a\x08\x7f\xa5\x1d\xea\x3a\x2c\xd5\x79\xd2\xc3\x9b\xf3\x3a\x3c\x4f\x96\x6d\x94\xd3\x60\x43\x74\xb9\x68\x8d\xac\xe9\xb1\x9c\xb0\x41\xa8\xd4\xcd\x2d\x3d\x73\xd4\xe5\xfe\xfe\xf0\xe6\x06\x54\xba\x5d\x5d\xf3\x90\xdd\x47\xc1\x33\xc6\xc8\xd6\x6d\x17\xf5\x48\x75\xf6\xca\x68\x00\x7d\x93\x49\xbb\xff\xd9\x14\x03\x79\x31\xcf\x78\x04\x11\x99\x38\x49\x85\xc6\x6c\x36\x35\xb5\xd1\x9b\xb0\x89\x16\xd9\x55\x8d\x37\xb2\x63\x6f\x29\x92\xb1\xf3\x52\x51\x30\x3e\x09\x3c\x4a\xc0\x9f\xb4\xb3\x31\x6f\x08\x3a\x0a\xf3\x85\x9a\xcd\x87\x91\x3b\x36\x54\xda\x90\x2a\x87\xd1\x34\x2f\x2b\x89\x62\x87\xe6\xb1\x89\xe8\x61\xd8\x84\xd1\x2c\xd9\xbd\xa0\x8b\xd5\xc1\x91\xa8\x4b\x3a\x41\x30\x6c\x13\xec\x90\x16\x78\x5f\x13\x19\x8f\xe3\xc3\x06\x03\xad\xeb\x02\x67\xd9\x79\xbe\x40\xef\x76\xd9\x22\xa5\x00\xec\xf2\x4e\xa5\x14\xa7\xed\xc0\xf3\x96\xa9\x82\x58\x60\x40\xf1\x58\x75\x61\xa8\x7f\xc7\x87\x0c\x44\x35\x73\x73\x23\x7f\x3e\x26\x55\x52\xf9\x1d\x6b\x0f\x27\xba\x92\xef\x0f\x79\x8d\x14\xdb\x56\xa7\x08\x60\x59\xfe\xfb\x43\xbb\xaa\x7d\xf9\x4d\x1a\x0a\xac\x5a\xdd\xed\x32\xab\xc7\x5a\x97\x81\xa2\x4a\xa8\x49\xd0\x45\xf6\xf7\x8d\xeb\x5c\x44\x63\x6c\x5b\x88\x44\x55\x9d\x94\xf5\x13\xb2\x11\xc8\x53\x08\x84\xdb\x32\x7c\x04\x6a\x78\xa7\x91\x69\x87\x0c\xe0\xfb\x43\x99\xbc\x2f\x7a\x06\xd7\x5d\x30\xb4\xc6\xc4\x11\xd9\x6a\x88\xbf\xe2\xb6\x2a\x99\x44\x63\xaf\xc4\x71\x4c\xc6\x19\x32\xf8\x6f\x7a\x45\xfd\x39\x38\x6a\x60\x81\xbe\xfc\x2a\x3d\xba\xb9\xa1\xc4\xc7\x02\x77\xd5\xbf\x59\xb6\x38\x38\xda\xad\x8f\x8f\xc5\xa0\xa4\x57\x07\x07\xb7\xeb\x62\x92\x9a\xc1\xeb\x74\x3f\x89\xa7\x2d\x96\x35\x91\xb4\x4b\x7d\xf2\x89\xc4\x7e\x5f\xfc\x3f\xd4\xa9\x37\x37\xa8\x23\xa3\x8f\xbf\x20\x4a\xd5\x99\xc7\x8a\xa8\x44\x59\x42\x9d\x7b\x81\x3c\x6f\x54\x78\x32\x36\xa4\x17\x49\x65\xc6\xd9\xc3\xd1\xdd\xe3\xe0\x61\x4b\x68\x4a\x7f\x69\x76\x88\x12\xd4\x7f\x61\xe8\xf8\x33\x78\xb6\x0b\xe8\xee\x15\xe9\x3e\x76\x94\x99\x50\x97\xa9\x8c\xea\x64\x07\x92\x66\xfc\x49\x3f\x8e\x9c\xd8\x92\xb1\xc8\xbf\xf8\x84\xdd\x7e\xbe\x4c\x26\x66\xeb\x29\xeb\x2a\xd6\x39\x6b\xf7\x33\x69\x0e\x40\xd7\x69\xc7\xb9\x29\x2f\xa6\xe1\xcd\x4d\x3b\x0c\x0d\x82\x38\x10\xb9\x11\x97\x1e\x5c\xbd\x5a\x80\x84\xbc\x54\x06\x48\x4f\xe6\x60\x7f\xf4\x64\x8e\xa1\xd4\x65\xae\xe9\x23\x4c\xa5\x1e\x8e\x54\xa9\x18\x4b\xc5\x07\xe4\x68\x12\xec\xdc\x65\x1e\x2f\xad\x53\x91\xc4\x51\x39\x0e\xa2\xab\x82\x33\x52\xb2\x8a\xb2\x8f\xe0\xc0\x21\x0c\xd7\x7a\x85\x51\x52\xa3\xf8\x55\xff\x9a\x18\xa3\x93\x83\xb6\x1e\x9f\x84\x9a\x85\xce\x17\xe7\xd1\x2c\x9f\x8f\xd8\x18\x80\xe5\x9f\x2a\x03\x5f\xc6\x1a\xd7\x8c\x28\x5b\x02\xe1\x5a\x56\x17\x8f\x4f\x46\xb3\x7c\x1e\xcb\xea\xf6\x55\x55\x5a\x11\x41\x92\xf4\x97\xe9\x15\x9e\x5b\x02\x03\x38\xb7\x64\x2d\x28\xff\x75\xc9\xbb\xd2\xd6\xa3\xc6\x54\xe5\xa8\x8f\xa0\x6f\xe4\xce\x52\x18\xa8\xfe\xd2\xbc\x9b\xab\x76\x83\x11\xe0\xaf\x7b\xf9\xd0\xf5\xa9\x6d\x32\x11\x70\xeb\x99\xc4\x9a\x9c\x79\xc4\x5a\xb6\x99\x44\xac\x60\xc3\x14\x52\x2b\x58\x6b\xcb\xec\x69\xda\x63\x0c\x7b\xbe\x38\x0f\x47\x2d\x7b\x40\x12\xb8\xed\xf6\x40\x2b\x63\x1b\xc1\x5d\x3f\x7d\x21\x98\xfd\x58\xde\xfb\x09\x86\xdd\x00\x14\xe0\xab\xc4\x85\xd3\xfc\x3e\x1e\x04\xf6\x95\x60\x8f\xa2\x53\x63\x2b\xad\x61\xa6\xad\x06\x47\x6d\x84\xd9\x80\x6a\x9c\xf6\xb0\x67\x07\x47\xba\x59\x81\x73\x47\xab\x06\xfa\x6d\x8d\x72\xa0\xc6\xd8\x50\x44\xac\xbc\xc4\x5f\x05\xcd\x3c\x3d\x15\x40\x78\x7c\x53\xa0\xb2\xab\x6b\x5b\x97\xc5\xab\xd6\x20\xca\x91\x3d\x41\x38\x0e\x54\xd9\xe0\x64\xc4\x2a\x06\x95\x5f\x95\x47\xef\x9d\xfc\x8e\x84\x60\x4d\xd8\x61\xf4\xa5\xb4\xe8\xe7\xcb\x84\x84\x80\x63\xbf\x98\x6f\x1b\xe1\x5c\x97\xe8\xcb\x6f\xba\xb0\x41\x70\x73\xc4\x05\x37\xdb\xc8\x11\xd6\xe4\xee\x45\x4b\x0f\x94\x36\xe2\x36\xa3\xb0\xbd\xd5\xd8\x5d\x64\xb8\x3b\x8d\xe9\x26\x81\xe7\x57\x15\x37\xba\x93\xf6\x48\x4d\xda\x56\xd3\xb1\xe1\xfd\x88\x19\x27\xfa\x55\x0a\x51\xb0\x24\x26\xe1\xc3\x32\x9b\xe4\xd3\x3c\x4b\xe3\x3d\x7a\x65\x82\x64\x8c\xcf\x2c\x3e\x27\xd2\x29\xc0\x9e\x09\x2f\x1f\x81\x20\x35\x36\x60\x47\xc6\x2b\x8f\xf2\x53\x77\xd2\x74\xd9\x49\x3a\x86\x27\xe3\x7b\x90\xdd\x9b\xd2\x74\xab\xa9\x69\x99\x65\xff\xf0\x3a\x37\x31\xb5\xa0\x7e\x45\xce\x4b\xba\x56\xa5\xbd\xe0\x8e\x3a\xe4\xdb\x0f\x99\x7c\xdb\x4b\x21\x1e\xd9\xa2\xdd\x17\x72\xb0\x1c\x01\xb7\xca\xd9\xb8\xb4\x7d\x0a\x5f\xbf\x65\x0a\x5f\xdb\x85\xa8\xda\x92\x5e\x2d\xaf\x3d\xc4\x2a\x9a\x96\xc5\x3f\xb2\xc5\x53\x91\x6b\x1e\x2d\xaa\x17\xfd\xbe\xfa\x29\x6d\x13\xe0\x08\xf0\x39\xf0\xa8\x5e\x40\x75\x41\xf8\x83\x48\x38\x26\x07\x15\xcb\xeb\x41\x38\x84\xc5\xa5\x82\xd2\x7a\xed\xdb\xa7\xf3\x7a\x10\xfc\xff\xfe\xab\x97\x16\x66\x6c\xcc\x1e\x94\x45\x8d\x3d\x51\xe5\x49\x18\x6e\xb3\x73\xd2\x6c\x9a\x95\x65\x96\xde\x13\x11\xdd\xfc\x02\xe6\x84\xc9\x73\x75\x65\x7f\x7d\xbb\xe4\xab\xd2\xee\xed\x9f\x8b\xec\xa0\x69\x1e\x37\x3d\xa0\xa1\xbb\xe1\x95\x27\xa9\xae\x17\x93\x0f\x82\x5f\xb5\x82\x2b\xa3\x28\x96\xeb\xd1\x9a\xda\xae\x6e\xda\x50\xd7\x35\x08\x9b\x46\x57\xff\x7c\x91\xde\x53\xe5\xcf\x17\x29\x54\x0d\xca\xad\x93\x62\x31\xcd\xcf\x57\x65\x36\x08\x20\x33\xd0\x2b\x44\x86\xc5\x88\x96\x65\x31\xcf\x2b\xa9\x03\x20\xa0\xe2\xbd\x72\xb5\x18\x4e\x56\x65\x99\x2d\xea\xf7\xab\xc5\xab\xa2\x58\x8e\x6c\x25\xe2\x7e\x1f\x60\xc3\xb5\xd1\x25\x51\x50\xd4\x7a\xb6\x2a\x17\x59\x39\xac\x04\x37\x0b\xac\xa2\xd4\x8e\x88\x7c\xbd\xf4\x56\x89\x1d\x91\x68\x0e\x24\x9a\xb0\x47\xa1\x73\xef\x30\x85\xd9\x89\x4c\x93\x7c\x16\xbb\x3d\x9c\x25\x67\xd9\xcc\x10\xc1\x8f\x83\x89\xb8\xd2\x07\x27\x36\x50\xb3\x1d\xe5\xab\x2f\x32\xc6\x10\x90\xe3\x8c\xa8\xcc\x40\x20\x4b\xcd\xa1\x0e\x2c\x92\x0b\x39\xc8\x51\xb6\xa8\xf3\xfa\x7a\x84\x7f\xf0\x59\x46\xc2\xb0\xbb\xce\xa9\x22\x33\xc0\xdf\x8b\x92\xb1\x4c\x1a\x52\x02\x8b\xec\xb2\x9a\x4d\xf3\xd9\x4c\x30\x1d\xf4\x96\x3f\x60\x49\x30\xcc\xec\x3b\x8e\x63\x35\xe3\x4a\x60\x0e\xf8\x0f\x10\x2b\x33\xc4\xb7\xcc\xe3\x35\x2a\xb7\x3f\x54\xd1\x50\x0c\x87\x1c\x85\x7e\xdf\xc5\xc7\x1c\x99\x26\x22\x50\x3d\x82\x2c\xf4\x8c\x3d\x64\xb7\x1e\x1f\xf9\xb4\x14\xc7\x30\xce\xe1\x5a\x41\xc8\x3e\xa9\x25\x05\x1d\x76\xb2\x11\xa9\xa6\x21\xec\x1d\x6c\xbd\xf8\x0c\x11\x58\x16\x8e\x54\x56\x97\xac\x0d\x96\x33\x00\x0e\x02\xd8\x11\xc7\xbd\x67\x54\x0c\xd6\x5d\xef\xa0\x17\xec\xe3\x1d\x69\x8b\xab\x00\xd7\x8a\xf8\x4a\xea\x1a\xdb\x2a\x55\x6c\xd0\xc3\x68\x39\xf3\x76\x52\xc5\xf8\x9f\x12\x75\xf5\x17\x53\xbd\x80\xbb\x8b\x73\x90\x42\x6a\xcb\x59\xfc\xdb\xcd\x97\xdf\xdf\xda\xac\x2d\x5c\x43\x5f\x67\xf5\x45\xe1\x02\xb2\xbc\x8d\x6a\x15\x9e\xf3\xd9\xcb\x0c\xfc\xde\x66\x06\x36\xa8\x4d\x7c\x77\x5b\xb5\x89\xef\x76\x56\x9b\xf8\xc3\x6e\x5a\x13\x7f\xd8\x45\x69\xe2\x0f\xdb\xeb\x4c\xfc\xc1\xa7\x32\xe1\x0d\x9d\x7a\xd8\x1e\x3a\xb5\xdd\x52\x33\x39\xdd\x64\x75\xff\x85\x9c\x1e\x65\x57\x75\x05\xd6\x70\xf2\x40\x5b\x16\xcb\xa7\xf5\x15\x53\x8c\x27\x20\x1d\x80\xec\xf0\x87\x75\x73\xac\x92\x97\xc5\x72\xc0\x1c\x1a\x2f\x57\xd5\x85\x28\x3f\xa9\xaf\xd0\x4b\x11\x02\xad\xaa\x0b\x48\x92\xd2\xe5\xc5\x6a\x36\xd3\x85\xf2\x3a\x2b\xb9\x62\x82\x40\x0e\x7e\xbe\x2b\x8b\x2f\x79\x9a\xa5\x8e\xe9\x61\x1c\xc7\x0f\x59\xe0\x25\xf2\x36\x0f\x9d\x5a\xa1\xdf\x2b\x70\x01\xfb\x29\xbb\x56\x4d\x1a\x15\xfe\x20\x4f\xa7\xc9\xaa\x3c\xde\xdb\x9b\xac\x4a\x79\xac\xe6\x6d\xca\xc8\x26\x13\xc2\x34\x32\x7c\x97\xb0\x0d\xda\x10\xf9\xd4\xa3\xc2\x00\x4e\xfe\x1d\xc5\x13\x36\x51\xb1\x9c\x9b\xa8\xcc\x6a\xd1\x2d\x7c\x90\xd7\xa8\x0c\x0e\x23\xed\x26\xe6\xaa\x0e\x47\x6a\x36\x64\x02\x7b\xa5\x0f\xd5\xce\x19\x04\xe3\x93\x60\xa3\x22\x06\x09\x86\x5b\x5e\xb7\x45\xce\xf6\xf8\xe7\xe9\x55\x7c\x18\x4d\x56\x25\x34\x0a\x76\xf4\xa3\xb4\x58\xc3\xc7\x64\x55\x8e\xc4\x24\xda\x7d\x03\x21\x3a\xc0\xab\xfe\x35\xa8\xbb\x30\x59\x95\x86\x0a\x4b\x6b\xb7\x45\x61\xb7\xdf\x5b\x28\x8d\x4c\xf3\x05\x1b\x0b\x23\x62\x9e\xf8\xc0\xd7\xf5\x26\xe4\x58\x34\x11\xb9\x20\x3c\x76\x79\x62\x7c\x66\x54\x4a\xce\xc5\x54\xc5\xfc\xdb\x33\xe2\x09\xe8\x4b\xf5\xc7\xeb\x65\x06\x77\xea\x51\xfb\x34\xe8\xb1\x8c\xec\x01\x1f\x69\x55\x56\x43\xd7\x07\x93\x60\xf8\xf9\x03\xc6\xa1\xad\x36\x01\x7a\x7b\xa2\x42\xcf\xa4\x98\x53\x32\xb2\xc2\x53\xe2\x83\xaa\x28\x01\x7e\x11\xd1\x42\x1b\x11\xcd\xae\xea\x46\x4f\xbf\x42\xb9\x65\xee\x50\x7c\x7e\x9e\xd5\xe6\x98\x7e\x62\x91\xce\x00\x39\x0c\x6e\x0a\x16\x06\x51\xe5\x81\x96\x34\xc6\x98\x5e\x72\x16\x69\xcd\x70\xc5\xc8\x08\x15\x6b\xc2\x26\x9a\x27\xcb\x8e\x39\x75\x55\x85\xfc\x4d\x80\xcb\xca\x28\x47\x25\x1b\x70\x70\xe7\x1d\x39\x09\xd6\x18\x7b\x37\x82\x5e\x76\x8f\x82\x6e\x4a\x8c\xb4\x21\xdc\x81\xe9\xf8\x84\x61\xe0\x22\x16\x35\xf5\x98\x31\x03\x83\x00\xda\x08\x64\x5c\xd1\xfb\xec\x72\x3e\x1d\x74\x76\x36\x04\xdb\x7d\x71\x66\x5c\xd9\x1d\xb7\xaf\x03\x0e\x32\xe6\xb6\x85\x38\x95\x0e\xcf\xbf\x67\xe8\x6b\xab\x2a\x98\xe2\x76\xd8\x44\x32\xfe\xe4\xe6\xd5\x83\xad\x30\x31\xb4\x38\xcf\x58\x6d\xaa\x32\xff\x38\xcb\x86\x82\x90\x7a\xd7\xd2\x26\xd8\x81\x5f\x25\x93\x1a\x9c\x88\x6f\x0a\xe0\xf9\x89\x07\xee\x8c\x2e\x92\xaa\xa3\xd4\xde\x9e\x51\xac\x89\x56\x55\xe6\x3d\x72\x7f\xd0\xed\x1f\xcb\x2a\xf9\x06\x95\x17\xb0\x95\xb8\xd8\x51\x6f\xfc\x9d\x96\x3d\x85\xf5\xc5\x0d\x23\xbc\xab\xab\xfd\xdc\xd9\x40\xd5\xa0\xb0\x22\x8b\xb0\xee\xa7\xc5\x6a\x91\xc6\xe8\xeb\xb4\x54\x1a\xd0\x16\xbd\xf4\x52\xc3\x7e\x7f\x0f\x0a\x4b\xaa\xb8\x25\x45\xcc\xa7\x03\x6c\x73\x0b\xd2\x18\xa2\x47\x9e\xab\x9a\xd1\x48\x68\x66\x7b\x42\x09\xdb\x44\x8c\xe9\x56\x4b\x77\x91\x6e\x5a\xb8\xca\xff\x81\xb3\x6c\x45\x13\x41\x18\x65\x5f\xb2\xf2\x7a\xe3\x8e\xdc\xf3\x1c\xa4\x9c\x06\x0a\x90\x0d\x14\xb0\xc1\xa6\x7e\xb4\x10\xc9\xab\xe7\x22\x59\x62\xe2\xc7\x56\x03\xd1\xaf\x8d\x63\x03\x95\x75\x0f\x4e\xb2\xe8\xea\x77\xc7\x49\xed\x30\x44\x7c\x51\x5a\xeb\x35\x4f\xaf\x5a\x16\xfa\x9a\xad\xf4\x46\x2a\x05\xde\x75\xb5\x6e\xbd\x54\x6f\xbf\x42\xa1\x89\x26\xaa\x8a\x79\x66\x4e\x52\xb2\xc0\x09\x7a\xb2\xd8\x3c\x3d\xc9\x62\xf3\xe4\xb8\x2b\xe5\x09\xb4\x20\x5a\x6e\x5b\x26\x08\x81\x21\xfc\x3d\x93\xcb\xc3\xf7\x13\x54\x69\x84\xe9\xeb\x64\xe8\xd6\x1e\x8e\xae\x91\xc7\x27\xaf\xba\xe5\x04\x05\x12\x8d\xfb\x45\x4d\x11\x78\xb5\xc1\x0c\x0c\x6b\x63\x63\xd5\xd0\x7c\x99\x1a\xba\x5f\x8a\x4f\xac\x7f\x73\xe8\xbf\x69\x8e\x16\x99\x67\xba\x27\xde\xda\xe3\xa3\xb0\x23\x80\xac\xf4\x01\xd9\xc2\x08\x50\x58\x38\x94\x4a\x5c\xf5\xfb\x57\x63\x8d\x04\x78\x5e\xf3\xb9\x9b\x42\x10\xc6\x34\x89\xf6\x7f\xc0\x75\x70\x15\x61\x2e\xda\xb3\x1d\x1b\xf5\x0d\xc2\xc6\x37\x0c\x75\x01\x77\x68\xdb\x1b\xf0\x36\xcc\x4c\x11\x49\x05\x7c\x44\xa4\xb0\x18\x15\xb8\xcc\x4f\x0c\xf7\xdd\x5d\xac\x89\xb9\xc2\x49\x2d\x1f\x36\x76\xd8\x44\x97\x79\x7d\x51\xac\x5c\x21\xa8\x52\x18\x51\xc1\xff\x30\x23\x64\x2d\x8d\xb6\xed\xd0\x27\xb4\x8d\xde\x23\x9e\x21\xb4\x95\xbf\x3f\x59\x1d\x5c\x2d\xf2\xcf\xb7\x19\x38\x6c\x47\x49\x28\x60\xf9\x7e\x0a\xbf\x3f\xd4\x4c\xdf\x27\x9b\xe9\xdb\x6c\xca\x60\x1a\x23\x24\x69\xea\x2a\x71\xdd\x4d\x45\x56\x0b\x53\x77\xd2\x93\xd5\xc5\xb6\x56\x96\xf5\xaa\x9f\xed\xa6\xe2\xec\xaf\xc2\xa3\xb3\xac\xd1\xdb\x51\xd9\x99\x15\xbc\x1f\x8d\x67\x3f\xca\x1e\xb5\xe7\xff\x81\x13\x7b\xc7\x79\xf5\x2b\x36\x6f\x37\xb5\x1b\xcb\xde\x8b\x66\xf4\x16\x93\xeb\x87\xda\x55\x47\xda\x45\xbc\x45\x51\xda\x1d\x9d\xb0\x09\xa3\x0e\x3d\x59\xfe\xe0\xa8\x15\x66\xc1\x77\x8c\x16\x21\x53\xf8\x06\xf1\xe7\x22\xa9\x9e\x65\xb3\x3a\x81\x83\x0c\xa3\x12\xb3\x63\x4c\xd6\x11\xaa\x72\xb1\x4c\x1a\xe9\x88\x9c\x0e\x8c\x58\x4e\xaa\x79\x7d\x0d\x82\x12\x6e\x4d\xa4\x22\xeb\xb6\x4e\x88\x23\xa6\x31\x7e\xa9\x66\xcd\x4c\x08\xbc\x8a\x2a\xb4\x56\x7b\x46\x69\xd1\x94\xec\x71\x8c\x39\xdf\x1f\xde\xdc\x28\x9c\xc4\x07\x26\x1f\xa8\xb4\xbd\x18\x0d\x79\x14\xba\x10\xf6\x50\x7d\x01\x27\xa9\xf0\xc1\x4c\xfa\x0d\x59\xad\xfb\x64\x7c\xa2\x76\x15\xe0\xd3\xbe\xa3\x54\x87\x1c\xa5\x59\xcf\xe6\x19\x13\x6f\x65\x4c\xfe\x89\xb5\x8a\xdb\x55\x75\xff\xbd\x7e\x7e\x65\xeb\xa7\x6b\xce\x4d\x6d\x69\x77\xce\x7d\xab\xcb\x51\x01\x96\xbd\x6d\x03\x80\x75\x6a\xac\x9e\xaa\x28\x0d\xd9\x8f\x0e\xb1\xfa\x53\x76\x5d\x69\x81\x8c\x21\x71\x21\x16\x76\x10\x42\xac\x36\x4d\x27\xc1\x6f\xab\xe9\xe3\x50\xd6\xa4\x7c\xb8\x48\xd1\xee\x27\x0a\x15\x2b\x32\xc7\xf9\x09\x38\xb5\xc0\x78\xd5\x09\x08\x84\x20\x01\x83\x54\x9f\xe1\x9b\x0a\x7b\xae\x42\xb9\x92\x8c\x96\x08\x45\x11\x9e\x42\x1d\x69\x20\xf6\xa6\xa4\x13\x59\xe8\xc2\xce\x28\x13\xf2\x7d\x5d\x4c\x99\xab\x02\xe6\x7d\xff\x56\x6f\xd5\xf7\xed\x72\x69\x93\x4a\x72\xdb\xe3\xe3\xc3\xdd\x1e\x1f\x1f\xfa\x1f\x1f\x5b\x1f\x15\x1f\xfa\x1e\x15\xfd\x4f\x95\x0f\x8d\xa7\xca\xad\x5e\xbc\x0a\xa6\x74\xb3\x48\xe6\x32\xa6\x41\x24\xaf\x64\x0e\x97\xe8\x01\x32\xd7\x7b\xb1\xc8\xba\xab\x14\x0c\xa4\xfc\x4d\x17\x45\xf2\x83\xc2\x25\x1f\x5b\x34\x1c\x81\x7b\x0f\xb3\xf5\xba\xcc\xcf\xcf\x39\xf7\xb8\x50\xb7\x5f\x12\x78\x3a\x3e\x41\x95\xa3\x16\x1d\xd3\x49\xd9\x0f\x30\x7f\xa2\x47\xa3\xfc\x7b\xbe\xc5\x44\x91\x71\x7e\x70\x74\x62\xfa\x47\xb5\x28\x10\x60\x0d\x57\xd7\x26\x2a\xa6\xd3\xee\x91\xf1\xf1\x6d\x1b\xc7\xfb\x22\xa9\xec\xde\xb6\xf2\x52\x90\xbd\xc5\x7e\x64\x2a\xc6\x9b\x77\xe4\x0e\xfa\x2e\x5f\x53\xc3\xfd\x3f\xb6\xd9\xc3\xb7\xd5\xe8\xd0\x6a\xc4\xe6\xf6\x91\xaa\xb4\x14\x65\x0b\xb5\x67\x8f\xdb\xde\x84\xb5\xe2\xad\x71\x97\xaf\x5c\x00\xcf\xd2\x36\x9d\xce\x68\xf5\xe5\xd8\x54\x64\x7e\xf1\xfe\xed\xff\x7d\xfe\xe6\xf4\xf9\xfb\xf7\x6f\xdf\xc7\x01\x56\x47\xc1\xe4\x7a\x93\x64\xb1\x28\xea\xde\x59\xd6\x9b\x17\x29\x68\xc3\x0f\x03\xb3\x52\x5e\x98\x7f\x6c\x5a\x30\xf3\x15\x04\x1b\x3c\xf5\xba\xb4\xb9\x3f\x85\x28\xa5\xc4\xbe\xad\xae\x3c\xe1\xd3\x8d\xb4\xc7\xe7\x4d\xa7\x57\x9c\x5f\xa3\x32\x54\xd7\xc1\xf6\xf6\xcf\x1f\x4f\xdf\xbe\x38\x7d\xff\xe4\xcd\x1f\x9f\x9f\x3e\xff\x3f\x4f\x9f\xbf\xfb\xf8\xf2\xed\x9b\x38\x00\xf3\xf7\x5e\xb1\xaa\x7b\x82\xf9\xd4\x97\xdd\xe7\xaf\xdf\x7d\xfc\xef\x78\xec\xd7\x81\xda\x56\x3d\x3f\x47\xc3\x58\x67\x47\x51\x7a\x97\xe2\xbc\x27\x20\xc5\xfd\x68\x4c\x41\x7b\x2e\x5a\x1e\x05\xa8\xd7\xb8\x34\x5a\xfc\xd6\x78\x1c\xd1\xb4\x40\x7e\xb7\xbb\x0d\x80\x46\x32\x72\xb0\x88\xd6\xe4\xc3\x83\xbb\x43\x81\x30\xf7\x36\x7f\xb9\xb5\x4e\x07\x50\xa0\xda\x74\x0f\x32\xcb\x16\x11\x2c\x02\xeb\xa8\x91\xe1\x9b\x7d\x01\x04\xa5\xff\x95\xc7\x1e\xbf\x2b\x5e\x33\x02\xff\xaa\x0c\x4d\x5c\x44\xfd\x87\xd1\x18\x9b\xb0\xef\x65\x32\xe4\xb1\x65\xb9\x2a\xd0\xc7\x28\x0f\xce\x1d\x07\xf2\xb5\x15\xab\xb8\x80\xc0\x0f\xaf\xb7\x18\xbf\xf5\x43\x0b\xda\x8d\x1a\x59\xfd\x92\x23\xbe\x8f\xcc\xfe\x28\x04\x69\x7c\x4d\x33\xc2\xe5\xaa\xba\xb0\x1d\xc2\x80\xd6\x4a\x8d\x3e\x4e\x28\x78\xb6\xe7\xe9\x09\x62\x64\xe8\x30\x14\xbc\xaa\xca\x76\x6f\x81\x7e\xf8\xf6\x98\x93\x1d\x16\xcc\x02\xf2\x6f\x6e\x68\x97\xaa\x94\xd0\xfb\xc8\x31\x08\x5e\xaf\xaa\xba\xb7\x4c\xaa\x8a\xa2\x4f\xea\x3a\x7b\x75\x41\x69\xb4\x8a\xa1\xc2\xdf\x30\xbc\x02\xf2\xab\x2e\xc7\xc6\xd3\xad\x43\xe9\x8b\xc7\x9a\xf9\x65\xb1\xb4\xc7\x69\xc7\x65\xaf\xde\x91\x95\xc2\x15\x37\x1e\x3d\x38\x52\xeb\x90\xa2\x6a\x43\x62\x74\x64\x4a\xb0\xab\x8b\x7c\xea\x78\xf0\xd9\x42\x0f\xac\xa3\xf1\x43\xbb\xe1\x43\x5b\x3e\xef\x6d\xd4\xb3\x4a\x0e\xdd\x45\x61\x14\xf6\xad\x0b\x8b\x0e\xb4\x0d\x7f\x99\x7d\xc9\xca\x2a\x73\xea\xb9\x0d\xe9\xf9\xa2\xe2\xf9\x52\x44\x46\x7d\xf5\xa5\x66\x06\xa1\x8f\x3e\xf9\x31\xab\xb2\x8e\xde\x61\xbc\x1c\xf1\x9b\xa9\x3d\x72\x64\x86\x40\x4a\xb5\x1f\x20\x5f\x37\xb6\x46\x05\x67\xd0\x3b\x51\x5f\xc8\x1b\xb8\x5b\xfd\xcd\xcd\xa1\x1d\x5c\x48\xea\x3f\x52\x84\x27\x6b\xad\x16\x13\xbc\x90\xab\x7c\x50\x5a\x0b\xad\xc5\x5b\x4c\x2c\x4a\x93\xa4\xa9\x17\x33\xf7\xed\x09\x02\xdc\x40\x92\xde\xba\x03\xbe\xb2\x88\x39\xdd\x96\x43\x6c\x57\xa5\xdf\x18\xfe\x7d\x93\x8b\xc2\x2d\x7d\x10\xfe\xb3\x3d\xbe\xee\xe8\xca\xb9\x85\x93\xf0\xc4\x42\xd8\x64\xd2\xb5\x9d\x85\x24\x38\x7c\x92\xcf\xca\x28\xcb\x72\x82\xb6\x0f\x7d\x40\x50\x3a\xd3\x8a\x24\x6d\x65\x5d\x10\xb4\xa8\xdc\x10\x1d\x7d\x57\x3f\x71\x7a\x49\x7b\x54\x77\x55\xa6\x8f\x2e\xf8\x3a\x47\x51\x67\xe4\x3b\x27\xc1\x46\x1e\x82\xab\xaa\x86\x34\xf9\x1e\xed\x76\xda\x8c\x63\xe3\xa1\x11\x1e\xb4\x79\xfe\xee\x98\x93\xe0\xc2\xa4\x79\x07\x47\xa3\x1c\xfc\x4a\x1d\x1c\x28\x7a\xaf\x1b\x91\x55\x8f\xf3\x93\xb0\xd9\xaa\x0f\x9b\x77\x3e\xc6\x4b\xf9\xa7\x1b\xcf\x9c\x67\x75\x7b\x9c\xa7\xaa\x2b\xb3\x5b\xec\xb8\xb5\x55\x0d\xc5\x89\xb1\xef\xab\x9b\xfd\xb2\xfe\x1a\xef\x97\x1b\x8d\x6d\x4c\x67\x90\x66\xc2\x3d\x45\x88\xe9\x12\xde\x9c\x67\xf5\x5f\xf3\xfa\x42\x86\x72\xf1\x80\xb1\xec\x3b\x1b\xf0\x9c\x67\x75\x4b\xa0\x2e\x8f\x41\x6c\xd5\x0a\xec\xbb\x78\x3a\x34\xfd\xf7\x06\x4d\x6f\x15\x13\x7f\xe7\x13\x13\x6f\xa4\xed\x7f\xe8\xa2\xed\xff\x7c\xb7\xa8\x1b\x4e\x93\x3f\xb4\x9f\x26\x40\x85\x71\xbf\x79\x1d\xaa\xca\x4c\x09\x8c\xc1\x9b\x3a\x8b\x98\x20\x4c\xac\xdf\x5e\xca\xcc\x27\xde\x96\x5e\xbd\x6d\x27\xbb\x50\x80\xe7\xb6\xfb\xe3\x05\xf7\xaa\x9b\x1c\xf2\x8a\x5d\xc6\x3d\xf2\x76\x59\x13\x6d\xf5\x34\x70\x9e\xd5\x86\xbe\x1e\x8f\x30\xac\xbd\x09\xc8\x0c\xd0\xe2\x67\x7e\xe3\xdd\xa7\x7d\xd4\xe7\x02\x15\x48\x03\x94\xbc\x05\x08\x96\x73\x92\xd4\x03\xbf\x33\x6f\xd4\xfb\x77\xf0\x91\x9a\x42\x95\x85\x8e\xcf\x9d\x69\x54\xf9\x11\xbc\x48\xaa\x0b\xe6\xa9\x95\xc1\x60\x95\x90\xdf\x44\xbe\x6d\xc2\x7b\xe9\x3d\x8b\x9d\x97\x64\x7b\xf1\xf2\x1a\x3c\xe7\xad\x7d\xef\x75\xb6\x9b\x67\x86\xda\x5e\xc6\x25\x80\xbf\x4a\xcf\x9b\xb6\x53\xa3\xf5\xd8\xe9\xaf\x70\x51\xd4\xf9\xf4\xda\xec\x88\xa7\x4e\xbc\x52\xb8\xa8\xaa\x4a\x0d\x00\xdd\xb2\xbf\x51\x67\xbb\x9a\x9a\xa6\xee\xa3\x96\x09\xad\xfa\x63\x41\xd2\x45\x69\xbb\x2a\x37\x57\x66\x92\x87\xce\xfa\x4c\xd0\xf6\x2a\x99\xb2\xce\x8b\xa2\xf4\xdb\x8e\xb8\xef\x40\x9f\xb2\xeb\xfd\x40\x29\xd3\xc0\xd6\x65\xc7\xa3\xbb\xcb\x88\x44\x98\xef\xbd\x66\x21\x73\xfb\x19\x05\x9a\x28\x5f\x4c\xca\x4c\xec\x64\xa5\x9f\xeb\x34\xa1\x40\x50\x90\x88\x4e\x74\x75\x62\xb8\x56\xbf\xe3\xa3\xc6\xd9\xee\x83\x65\x52\x56\xd9\x8b\x59\x91\x30\xf1\x98\x5c\x2a\xe2\x56\x1d\xee\xeb\xba\x1c\xb7\xcf\x9a\x86\xa5\xd9\x46\x44\x15\x08\x47\x54\x27\x86\x6b\xf5\xdb\x8b\xa8\xd3\xa8\x40\xee\x40\x97\xef\x40\xae\x2e\xce\xcf\x67\x59\x2b\x66\x1e\x2a\xb8\xe7\x8e\x45\x47\xfd\xf2\x84\x69\xa7\xfa\xa6\xd3\x37\x5d\x92\x1f\x63\x3f\x65\x3e\xd4\x94\x18\x4a\x03\x5a\x95\x6c\xbe\x48\x90\x73\x01\x19\x59\xfd\x3e\x1e\x99\x5a\x98\x71\xef\x0d\xe0\x9f\xe9\x40\xe9\x6b\x38\x4c\xda\x2e\x60\xac\xcb\x80\x7e\x6b\x30\xa0\x2d\x6f\x36\x1e\xbe\x77\x51\xe8\x20\xae\xc3\x45\x81\x48\x14\xa5\x4e\x2b\x4a\x6d\xec\x5b\x27\xcb\x01\xcc\xab\x76\x9e\x22\x56\x33\x26\x05\x79\xf5\x02\x3d\x60\x88\x99\x82\xa7\xd6\x70\x64\x64\xbf\x07\xc3\x23\x96\xeb\x73\xa7\x61\x2b\x5a\xb7\x35\x80\x6f\xaf\x2c\x57\x7a\x02\xb3\xb8\x0a\xb2\xc2\x62\x3a\x60\x49\x55\x2c\xac\x7a\x35\x66\x4e\xb5\x08\x1f\x44\x54\x6e\x84\x12\x76\xfc\x6a\x22\xe9\xb6\x82\x7c\xb2\xa0\xc7\xbf\x70\x3b\x3b\x66\xac\x03\x63\x4c\xe7\xd5\xbb\x6c\x91\xe6\x8b\xf3\xe3\x45\x51\x0f\x82\xbc\xfa\x90\xd5\xf5\x8c\x1c\x6b\x24\xe9\xdb\xc5\xec\x7a\x10\x46\x2a\xf9\xb8\x28\x07\x06\xda\xc6\xd8\x58\x65\x24\x14\x3d\x7f\x33\x48\x4a\xa1\xf1\x6f\x51\xf3\x56\x53\xed\xb1\x42\x88\xe3\xf8\xa1\xd6\x00\x4f\x96\x48\x2d\x4c\xff\x22\xde\x07\x9a\x80\x0f\xd8\x37\x95\x5c\x02\xbd\xf9\xaa\x82\xa7\x6f\x41\x04\x04\xb5\x89\xc0\xe3\x0c\xe5\x3e\x99\xe5\x49\x35\x08\x44\x52\x10\x46\xe4\xca\xc6\xca\xc4\xc4\x30\x0a\xa6\xf9\x22\x99\xcd\xae\xed\x7c\x99\x2c\xe8\x98\xb6\x9c\xe7\x20\x86\x76\x86\x25\x35\x97\x4e\x57\xb4\x4c\x98\x52\x02\x7b\x31\x8f\x17\x2c\xd4\x8f\xf4\x82\x63\x85\xa7\xe9\xa4\xa3\x55\x51\xd6\x5f\x55\x1c\xb3\x53\xac\x98\xdd\x1f\xe5\x99\x5f\x92\xdd\xc4\x2d\xff\x0a\x82\x95\x5f\xcc\x69\x49\x97\x98\xfa\x16\x2f\xf2\xdd\x2f\xe8\x2d\x3e\x47\x6c\x3f\x19\x9e\x87\xf6\xb6\x8b\xfe\x77\x9e\x7b\x7e\xc7\x75\xfd\x3b\xff\x6d\xdd\x7b\x46\xfe\xc1\x3e\x23\xcf\xda\x85\x07\xbf\x05\x81\x8a\x23\x38\x28\xda\x60\x0b\x0e\x75\x1f\x22\x71\x8f\xce\x80\xd8\xef\xec\xe2\x0b\xa7\x82\x48\x7b\x52\x4d\xe8\x64\x10\x47\x13\x24\x49\xd1\xf3\x31\xcd\x46\x54\x94\xa9\x69\x2e\x9d\xd7\xd9\xfc\x08\x2c\xd3\x1e\x4a\x25\xe7\x6a\x35\xab\xe3\xc3\xc8\x6c\x86\x11\x32\x33\x03\x2c\xf5\x58\xe3\x16\xa0\x4a\x27\x38\x89\x91\x05\xf6\x42\x59\xdf\x29\x19\xbd\xd9\x4c\x64\x38\x17\x95\xc1\x0a\x43\x74\x42\x0d\x18\xc7\xf1\xa1\x20\xc6\xf0\x9b\x57\x49\xd6\x91\xa2\x29\x69\x40\x7d\x14\x19\x95\xa8\xf4\x87\x66\x7a\x38\x52\xb5\xef\xc5\xf1\x61\xbf\xbf\x67\xf4\x48\xb5\x76\x70\xf4\x9f\xf8\xab\x71\xed\xd7\x20\x39\x4a\xb3\xaa\x2e\x0b\x47\x6b\x98\x18\x11\x36\x16\x92\x35\x09\xb7\x1f\x7e\x54\xe0\x25\xef\xa8\x66\x26\xe8\x16\xc3\x60\x12\x40\x64\x59\x96\x6f\x1a\x6b\x96\x7e\xed\x5c\x62\xc1\x9c\x91\x43\x44\x46\x1f\x5e\xd6\xd9\xfc\x03\xcb\xd5\x26\x38\xf2\x55\x45\xfe\x31\xbc\x1a\x83\xbb\xd8\x81\xb8\x64\x56\xa2\x34\x73\x0b\x36\x3c\x2b\x8a\xd9\xc0\x5d\x7e\x49\x09\xca\x4e\x29\x69\xf3\x6b\xe6\x44\x33\x7a\x56\xa1\x21\xfa\x77\x8e\xda\x0c\xf8\xbb\xe6\x45\xa2\x15\x73\x3d\x40\x4c\xda\x65\xd6\x22\x1d\x75\x88\xcf\x9f\xac\x8a\xdc\xf2\x2c\x04\xcb\x0d\x7f\x51\xd2\x37\x08\x47\xea\xdb\x50\x24\x37\xb6\xb1\x11\xa5\x08\x37\xbc\x01\xd0\xe8\x4d\x76\x2f\xeb\x82\x0b\x4b\xee\x6b\x51\xc8\x1d\x24\x0d\x15\xa9\xbc\x5a\x2c\xf4\xdd\x84\x91\xf4\xe6\xcc\x84\x68\x26\xc5\x66\xeb\xe0\xdf\xfb\xcf\xb7\xff\xcc\x8d\x67\x77\xbd\x63\x5c\xad\xa1\xe0\xc3\x8b\x75\xce\x92\xaa\xfe\x60\x9c\x0e\xda\xf5\x8e\xdd\x8e\x96\x58\x16\xf7\xd9\x80\xca\xd9\xd0\x0f\x7d\x50\x6d\xd3\x4a\xeb\x21\x67\xb7\xda\xd6\x2b\x7f\x73\x2a\x18\xa8\xd3\x22\xf7\x5a\xc4\x43\x21\x58\xcd\xef\xa1\x2b\x47\x4f\x05\xd2\x64\xdc\xa0\x95\xac\x1f\x56\x4e\x10\x8e\xac\x94\xa1\xa9\x26\x34\x80\x4b\x17\xad\xb5\x27\x66\x6c\x1a\x16\x41\x15\x14\x1f\x73\x15\xc5\x20\x7d\x5a\xac\xd0\x7e\x8a\x7e\x52\x50\xa6\x2e\xa2\x8a\x51\xb8\x24\x5d\xdc\xb5\x17\x9a\x71\x94\x2a\x03\x31\x46\x69\x46\x82\x0a\x6e\x2b\x54\xa4\x0f\xc2\x69\x24\x4d\x7a\xb6\x23\x00\x72\x17\x9b\xcd\xd8\x7b\xdd\x1d\x4e\xf6\x4e\x0f\x20\x1b\x59\x9f\x5f\xec\x38\xde\x3c\x8d\x8d\xb1\x14\x3c\xaf\x0f\xf7\xb1\x12\x76\x23\xca\xd6\x9a\x11\x0d\x75\xad\x00\x86\x89\x9a\x08\x5e\xc8\x9e\x4f\xa6\x9e\x27\xc7\x36\x4b\x6f\x35\x91\x5f\xe3\xfc\xbc\xed\x2c\xda\x1d\x3a\xb6\x7a\x7d\x9b\xed\xc7\x22\x95\x58\x00\x4c\x11\x4f\x3a\xf2\x41\x84\xcf\xf2\x45\x52\x5e\x7f\xc8\x92\x72\x72\x81\x63\x02\xba\x79\xe7\xf5\x85\x4b\x97\x94\x8a\x24\xcc\xa4\xc0\x52\x2d\xc6\xd6\xe1\xba\x63\xb7\xa2\x62\x46\x81\xfa\x5c\x64\xd0\x61\x02\x54\x1b\xcd\xb2\x29\xe0\xe0\x80\x29\x8d\x3f\x59\xd1\xc1\x51\x18\x95\xf9\xf9\xc5\x96\xe0\xfb\x47\x58\xf9\x7b\xbc\x81\xc8\x76\x28\x10\x33\x67\xfa\x14\x0e\x54\x3f\x95\x50\x6d\xf9\x8a\xa8\x4c\x52\xf3\x94\xed\x80\xb9\xa7\xae\xe4\xf1\xe1\x56\x54\xad\x63\xa3\x34\x4d\x64\x4c\xb5\x39\x2d\xd1\xac\xb8\x8c\x2e\xf2\x73\x0a\xb2\x32\xcf\xd3\x68\x9e\xa7\x2f\x01\xc3\xac\xb2\xf9\x7e\x40\xb5\xb8\x8c\xe3\x18\x8b\x48\x77\x82\xc5\x65\xb3\xcb\x82\x9d\xe7\x69\x3c\x2b\x2e\xf7\x5f\x27\xf5\xc5\x70\x3a\x2b\x8a\x72\x30\x10\x15\x1e\xcc\x8a\xcb\xf0\xc1\x43\x00\xe8\x9e\xa3\x79\x0e\x36\x5d\xa4\xff\x2a\x07\x56\x62\x9e\xcb\x61\x2d\xb3\xea\xfb\x43\xd3\xdf\x88\x67\xd9\xcf\xf3\x74\xff\x08\x07\xa1\xd1\x46\xc3\xd5\xe3\xcd\x25\xc5\xe0\x09\x54\x24\x25\x98\xe7\xe9\x16\x8f\x32\xf8\x20\x49\xc1\xc8\x4f\x29\x14\xc0\x2f\xee\x25\xf9\x97\x96\xfa\xfd\x62\x52\xbc\xcd\xd1\xff\x37\x09\xee\xbc\x22\xb0\xdf\xd9\x22\xb0\x8f\x30\xed\x18\xee\xfc\x03\x4e\xba\xed\xd0\x1d\x20\x50\xda\x84\xab\x83\xff\x7e\x8a\xde\xa3\x30\x09\x41\x37\x78\x29\x6d\x0d\xda\x3e\x22\xff\x4c\x6f\xa5\x3b\xad\x30\x8e\xe3\x80\x82\xa0\x30\xb7\xb3\xba\x28\x81\x71\x7f\xe6\xcc\xff\x96\x06\xc6\xbb\xe4\xac\x28\x3e\xad\x96\xb2\x50\x63\x3c\xfe\x70\xbf\xee\x08\xd0\x18\xae\x48\x25\x8e\x66\xaf\x37\xf4\xd4\x80\xe5\xb4\x87\xa7\x1b\xfd\x36\x72\x36\x76\xdf\x84\xde\x6d\x14\xcc\xb2\xed\x83\x61\xc0\x99\x63\x62\x75\x43\x9a\xec\xe2\x5a\x62\x4a\xae\xe0\xef\x45\xfc\x0f\xde\x5a\x6e\x6e\xd6\x14\xdc\x01\xc5\x81\xe0\xbb\x05\x7f\xdf\xdc\xd8\x63\x24\x6a\xc5\xe5\x02\x60\xf8\x9b\x83\xf1\x15\x67\xcf\x0e\xaf\x9a\x92\xf4\x7b\x4e\x52\x9e\x57\x02\xb5\xbc\x58\xc8\x81\xd4\xfe\xb5\xca\xac\x8e\xc7\xe0\xe5\x8a\xe7\x28\x0f\x48\x2c\x91\x05\xd6\x95\x7a\x4f\x54\x29\x46\x33\x23\x97\x0c\x06\x5a\x71\x1c\xa8\xf9\x09\xc2\xf5\x56\xab\x44\xf6\xf0\xe6\x06\xf4\x64\x94\xc7\xb9\x7e\x1f\xc1\x14\xde\xda\x19\x1d\x58\x90\xa3\x33\x32\x96\x30\x34\x9c\x6b\xc2\x28\x18\x0d\xd1\x58\xe8\x98\x85\xb2\xf4\x18\x33\x4e\x36\x55\x10\x42\xc7\xcb\xac\xde\x8b\xd1\x63\x1e\x38\x4d\xac\x4b\xed\x8a\xb2\xcc\x6a\x63\x89\x01\x54\x63\xd9\xc5\x72\xb9\xb8\x87\x46\xb5\x9e\x66\x14\x3a\x49\x20\x99\xdb\x41\xbd\x2c\x98\x45\x32\xcf\xaa\x65\x32\xd9\x5a\x57\xb7\xeb\x30\x78\x23\x2b\xeb\x3a\x10\x5a\xfa\xa7\xca\x0e\xb3\xab\x3a\x83\xd8\x1e\x9b\xba\x27\x18\x7a\xbf\xfe\xc4\x57\x3d\xa2\x77\x50\xb3\xd8\x10\xa9\xc0\x30\x00\xb6\x7a\x87\x0c\xd5\xa6\x87\xc5\x4e\x93\xe0\x8e\x57\x47\x27\xb8\xd6\xbf\xc2\x6b\xe2\xaf\x4d\x4d\xbb\x8b\x75\xf1\x59\x0c\x7f\x6b\x59\x0c\x6f\x52\xcc\xf6\x32\x2f\xbf\xdd\xe1\xfd\xee\x77\x3b\xbc\xdf\xfd\xce\x7e\xbf\xdb\xa8\x6e\xfd\xfb\x3b\x98\xd2\xfc\xbe\x5d\xf9\xb9\x45\x27\xe7\x3b\x8f\x71\x91\x80\x24\x4b\x31\x6b\xb5\xb4\x98\x40\xbb\x73\xe2\x0b\x5e\xd0\xf2\xcc\x7b\xe4\x59\x1e\x76\x24\x35\xd0\x5b\x96\xa1\xd4\xee\x64\xaa\x0e\x3e\x3f\xb5\x7a\x11\x7c\x42\xc6\x4f\xe4\xbe\xf0\x27\xf8\x82\x1e\x61\xf0\x4d\x36\x1c\x92\x86\xf2\x6e\x47\xf2\x51\x85\x38\x57\xeb\xdd\x28\x21\xbd\x10\x7d\xc9\xa7\x1b\x9d\x04\xe0\x66\xd2\x9e\x38\x6c\xce\x5d\xd2\x8c\x1d\xdb\x44\x64\x66\xe8\xab\x2e\x4a\xe6\xb5\x32\x3c\x5c\x7b\xde\x23\x0c\x13\x6a\x0e\xdc\xdc\xf6\x01\x04\xef\x8d\x75\x96\x94\x69\x71\xb9\x20\xa4\x40\xfe\x6f\x27\xee\xf0\x6c\xc9\x1e\x43\xd4\x13\xd6\xd0\x13\x0a\x1d\xcb\xad\xb5\x97\xbb\xe3\xc0\x2f\x4a\x66\x5e\xfe\x4c\x10\x2d\xf9\x6a\xc2\xa6\x69\x13\x44\xff\xf4\xff\x91\xf7\xa6\xeb\x6d\xe3\x4a\xc2\xf0\xff\xb9\x0a\x9b\x6f\x46\x21\xc7\xb4\x62\xe7\xec\x52\x98\x8c\xdb\x71\x9f\xce\xd3\xd9\xc6\x76\x77\xcf\x19\xb5\x8e\x86\x16\x21\x8b\x1d\x9a\xd4\x21\x29\x2f\x47\xe6\x25\x7d\x37\xf1\x5e\xd9\xf7\xa0\x0a\x4b\x01\x04\x25\xd9\x49\x2f\x33\x6f\x7e\xc4\x22\x50\x00\x0a\x5b\xa1\x50\xa8\xa5\x43\x2c\xf9\xad\x1a\x35\x97\x80\xfe\x11\xef\x45\x22\x74\x6b\xc5\xea\xe5\xc2\x18\x4b\x9a\xf2\xb9\x03\x19\x27\xc9\xcf\x3b\x8a\x13\x6b\x0d\xaf\x59\x52\xf6\x6a\xb7\xc7\xea\x21\xd2\xb4\x8c\xe5\xb6\x38\xe5\xd5\x5a\x69\xe1\xe0\x00\xc7\xdb\x02\xb0\x7a\x8d\xed\xa1\x51\x2f\x09\x3c\xe1\x2a\x69\x15\x92\xd3\x29\x37\xc2\x91\x09\x6d\x23\x06\x13\x6d\xa5\xb9\xd6\xd5\x6f\x62\xcc\x70\x45\xda\x3d\x72\x0f\x8b\x69\x21\xe0\x86\x31\xd7\x91\x1c\x73\x35\xde\xe0\xbe\x41\x6d\x04\xab\x59\x7b\x43\x3c\x44\x50\x07\x4a\x86\xe6\x34\xb4\xa4\x91\x5b\x6c\x98\xf5\x4b\xc8\xd8\x38\x6b\x3b\x2e\x36\x50\xc7\x8a\xf9\xb9\x3b\xba\x1d\x89\xfd\xb2\x7d\xed\xa6\x15\xdf\xda\x79\x94\xf0\xca\x43\x71\xd3\x71\xaa\x48\xa1\x94\x50\x9b\xa7\xb1\x38\x53\x71\x75\x77\xcb\x5e\x1e\x30\xce\x52\xd4\xf1\xb0\x4d\xc5\x97\xb6\xf4\xe2\xd2\x7d\xa2\x3f\x80\xda\xd7\xc4\x23\x01\xe9\xab\x51\x9f\x6d\x76\x6c\x35\x6f\xf9\xac\x68\x75\x35\x8a\x5c\x48\x04\x2b\xe2\xaa\x1d\x49\x85\xa8\x99\xaa\xa3\xae\xd1\xd4\xfd\xae\x4a\xf3\xcb\x1d\x51\x66\xa7\xc8\x77\x62\x3d\x9a\x84\x4d\xdb\x49\x31\xce\x6c\x9c\x65\xc5\x0d\x4b\xfa\x1e\x6c\x9c\x07\x3a\xa3\x91\x47\xe2\x67\x38\xa5\x99\x6c\xe5\x95\x66\x23\x5e\x8f\x18\x67\x43\x72\x6f\x3c\x5f\x89\x7a\x37\x8f\xb2\x2c\xf5\xc0\x61\x7e\xb4\x8f\x9d\x4d\xea\x32\x0f\x39\xba\xd2\x3c\x49\xa7\xac\x8a\x46\xe3\x30\x1d\xfe\xa2\xce\x7b\x20\xfe\x42\x04\xcd\x0c\xd3\x17\xf0\x77\x0f\x22\x28\xed\xed\x05\x2b\x81\x96\x88\x83\x66\xbd\xe7\x75\xbe\xf6\xa4\x41\x10\x34\xb2\xa8\xc3\xbb\xa7\x98\xeb\x8b\xfd\xb8\x09\x86\x1d\x46\x85\x88\xd6\xc1\x30\x7d\x21\x2b\xa2\x9e\x09\xad\xc5\x8a\x10\xa3\x74\x1c\x1e\x4a\xaf\x43\x2e\x4b\xc3\x87\xb8\x22\x9a\x38\x7c\x11\xd9\x1b\xec\x7f\xb4\x4f\xa2\xc9\x23\x9c\x12\xfd\x42\xbe\x67\x26\xdb\x38\x9f\xd9\xe8\x26\x68\xf2\xf9\x7e\x82\x26\x9b\x1d\x05\x81\xc2\x84\x83\x95\xb1\x3c\xfd\x90\x93\x14\x75\x2c\x84\xb0\x38\x2e\x69\xf4\x8f\x16\x03\xd1\xa9\x44\x84\x71\x33\x88\xda\x82\x52\x5a\xe0\xac\x90\xe2\x49\xef\xda\xbc\x7c\x57\x21\x77\xdb\x1d\xda\x01\x0f\x68\x5a\xb3\xc1\xdd\x2d\xa7\x79\x6a\xb0\x83\x86\xf6\x9d\xf3\x1a\xb9\x96\x6f\x6f\xc0\x55\xfc\xeb\xb6\x82\xf1\xfa\x1b\x8c\x7d\xc3\xd1\xf5\x75\x0b\xe0\xf5\xd9\xb2\x49\x30\x2d\xdc\x0d\xb1\xb2\xd3\xac\xef\x01\x1e\x44\xd7\x49\x30\x6d\x01\xa4\x43\x40\x75\x2c\x71\x89\x84\x47\x96\x77\x05\x06\xdc\xd6\x48\x06\xb4\x8c\x82\xef\xf3\xca\x2b\xd6\xe9\x79\x57\x01\x6e\x1e\x8d\x92\x4d\xa4\x34\xfb\x17\x14\xd3\x2f\xb2\xb8\x9e\x15\xe5\x95\x95\x7c\x13\xd7\xd3\xb9\x10\x7a\x53\x54\xe6\x71\x9a\x6f\x08\x25\xfc\xe8\x38\xc6\x6e\x41\xff\x27\x76\xd7\xe9\x16\x4a\x68\x20\xcc\x31\x3e\xb6\x7b\x20\xda\xbe\x5e\x2e\x52\xa1\x54\xb9\xcd\x7b\x45\xb9\xcc\x27\x59\x51\x2c\xfe\x17\x4b\xff\x49\x82\x8d\xe3\xa1\x8d\xe4\xa1\x8d\xe5\xa1\x8d\xe6\xe1\x9f\x7e\xdd\x27\x85\xcb\x65\x9a\xd8\xce\x34\x7e\xcf\xcb\x62\xfa\x76\x4f\x0a\xa0\xcf\xd0\x7e\x50\x80\x64\x81\x5d\xce\xca\xb8\x66\x7f\x5d\xa6\x49\xbb\x29\x92\x09\xd0\x7f\xfd\xee\xcd\xeb\xc9\xb7\x27\x7f\x6b\x41\xca\x0c\x80\xe2\x0b\xae\x05\xc1\x13\x51\x36\x7f\x72\x7e\xe4\xac\x43\x66\x60\x1d\xf1\x27\x87\xf8\x1e\x2a\x92\x39\x42\xdb\x15\x76\x78\xeb\x6d\x43\xa4\xa3\xd4\x3e\xcd\xd3\x6a\x7e\x0c\x5b\xbe\xf5\x2c\x41\x33\xd7\xb8\x27\xff\x73\x2b\x92\xf2\x9b\xb3\xc9\x57\x6f\xde\xbf\x7e\xf3\xfe\xaf\x2d\x83\x2b\x9d\xd5\xa1\xb5\xf2\x97\xcd\xbe\xce\xfe\xd2\x72\x00\xbb\xce\x15\x9b\xeb\x59\xc3\xfd\xb0\xe2\x7a\xd6\x90\xb4\xb3\xb5\x50\x64\x06\x40\x71\x02\xd6\x7a\xfd\xb0\xab\xc2\x17\x6b\x11\xe8\x3f\xb2\xf7\xa4\x0d\x8d\x27\x89\x64\xe7\x23\x7b\xc7\xf6\xcd\x7c\x28\xf2\x15\x12\xbd\xc8\xde\xcc\x7d\x91\x21\x8e\x41\xa4\x81\xee\x9a\xf9\xfa\xb0\x21\x70\x22\x96\x96\xff\x6d\x87\x0d\x9f\xb0\x6e\x6a\x2d\x38\x91\x8e\x2f\x6e\x13\xb1\xf1\xc8\x46\x2b\x26\x56\x67\xe5\xd8\xba\x3a\x59\x4d\xe7\x8c\x9f\xdb\x51\xb9\xcc\xfb\xf2\x43\xef\x78\x5c\x50\xa8\xb2\x34\xd1\xbb\x1d\x97\xf2\xc7\xb8\xac\xd3\x38\x13\xd9\x46\x9a\x58\x6d\xc5\x82\xc9\xd2\xda\xb9\x0e\x26\xe3\x7a\x3d\x7a\xff\xfa\xe8\xfc\xc3\xe9\xdf\x26\x67\x27\xe7\xe7\x27\xa7\xe2\x05\xea\xe4\xfd\xf7\x7d\x3b\x0b\x1f\x3f\xb7\x88\xec\x6d\x3e\x63\xa9\xab\xea\x6b\x56\x4d\xcb\x74\x51\x17\x65\xb4\x9a\x16\xf9\x2c\xbd\x5c\x62\xc0\x0b\xb0\xea\xbb\x29\xd3\x5a\x7f\x91\x70\x18\x68\xa0\x0d\x9a\x3b\x03\x6d\x03\x81\x96\xfb\x4b\x60\x10\x3f\xb7\x56\xf0\xe3\xaf\x55\x67\x38\xd1\x39\xae\x8b\x52\x5c\x03\x6e\xe2\xea\x68\xb1\xc8\x52\x26\x23\x24\x72\x3e\x17\x46\xb4\x82\x9f\x5a\x0d\x1a\x97\x63\x16\x57\x55\x64\x4a\xac\x76\x75\x1d\xc1\x0a\x00\x70\x32\xfc\xa0\xb1\x97\x0a\x5e\xa5\x24\x89\x0d\xcd\x1e\x06\x43\x37\xb8\x37\x99\xe4\xec\xb6\x3e\xe3\xac\xb6\x17\x3a\x06\x1c\x6f\x6b\x57\x11\x27\xcc\x28\xf1\x0e\x01\x81\xe8\x0a\x11\x19\x8a\xbf\xca\x6e\x4b\xf7\x51\xaa\xa8\xf2\xdf\x91\x4e\x1e\xea\x9f\x18\xd1\xc4\x16\xb1\xe1\x1a\x0b\xb1\x20\x48\x2e\xcc\xc1\x52\xd6\xe4\x0b\xac\x96\x0c\xa3\xf9\xa9\x43\xa9\xa2\x02\x12\xcb\x63\xbd\x97\x53\xa9\x8d\xea\xce\x23\xde\x05\x0f\xc2\x2c\x82\xd6\x94\x08\xe2\x45\xa6\x63\x90\x68\xbe\x0b\x81\x46\xe9\x78\xa8\xf5\x9b\x74\xee\x6e\x14\x79\x82\xe1\xed\xf5\x8c\x64\x1a\x18\xd3\x29\xde\xc2\x3d\x21\x1e\x71\x91\x58\xec\x14\x79\x76\xb7\x13\x4f\xa7\x6c\x51\x57\xd2\xbb\x6c\xdf\x83\xd1\xda\x5d\x90\xa1\xe2\x1c\x7d\x9a\x2f\x59\x23\x68\x33\x68\xd4\x44\x9c\x48\xfb\x04\x4c\xf5\xf6\x27\xde\xdb\x2c\x92\x80\xb2\xc7\x3f\xbd\xc8\xb2\xe1\x4f\x24\xec\x0a\xcf\x55\x50\xa3\x9f\xa0\xcb\xa4\xdd\xfe\x3c\xae\x3e\xdc\x28\xb1\x8e\x72\x92\x62\xe1\x83\x1a\x78\xba\xd8\x48\xc0\x41\x75\xfa\x78\xec\xd7\xac\xaa\x49\x1d\xa0\x88\x80\x74\xbc\x8a\xae\xfa\xf2\x27\xe0\x20\x3f\x82\x95\x03\x22\x5a\x35\x4a\x63\x78\xf7\xca\x46\xd2\x93\x60\x5e\xe0\x2e\x2d\x09\xb6\xaf\xd3\x82\x46\xfe\x52\xb8\x8b\xd0\xc5\xe2\x14\x98\x46\x9c\x74\x57\x53\xb3\x6f\xee\x35\xd7\xeb\x49\xd1\x9a\x3b\x5f\x79\x92\x51\x4e\x73\x2f\xe2\x4a\xc4\xb1\xe1\x4b\xd9\x68\x42\x65\xa1\x10\x53\x92\x15\x22\xc6\x54\x10\x62\x0b\x48\x8d\x48\x3b\x5d\x38\x13\x41\x01\x2c\x82\x28\xee\x8a\x34\x63\x41\xbb\xc1\x65\x66\x3a\xf3\xf9\xa8\x04\x2b\xfe\x7f\xbf\xc3\xb7\x19\x56\xa1\x37\x13\x6c\xd7\x8a\xd5\xdf\xe5\x9f\xf2\x42\x4f\x5c\x44\x43\x95\xf6\x7a\xbb\x72\xa5\xec\xa4\x28\xa4\x09\xc4\xc5\xbf\x5d\xd2\x77\xb4\xc7\xd7\x86\x7d\x7e\x71\x34\xdb\xb4\x53\x16\x06\xcd\x09\x8a\xb1\x31\x17\x62\x39\xf0\x7f\xc6\x29\x8b\x75\x5c\x05\x2d\xf2\xc7\x69\x18\x91\x09\x29\x02\x8b\xe4\x96\x32\xa2\xe2\x05\xd2\x8e\x08\xc5\x2b\xf0\x82\x66\x88\xc7\x45\x5d\x9c\x81\x3e\x57\xeb\x28\x97\x19\x02\xee\x26\xcd\xb2\x53\x3c\xf4\xcd\x23\xa8\x7d\x02\x7d\x94\x75\x50\x0e\x43\x6c\x0d\x17\x44\xd0\xd8\x27\xa1\x44\x6e\x42\xce\x02\x62\x16\xc5\xb7\x2f\xc9\xe1\x09\x46\x09\x42\xc2\x1d\xa5\x48\x2e\x2d\x89\xa3\x68\x07\xa9\xe2\x07\xdf\x14\x0e\x5e\x84\xd2\x09\x20\x86\x57\x5f\xc1\x4a\xff\x56\x47\xb0\x7d\x40\x93\x6e\x82\x5a\xa7\x6b\x30\xf0\xde\x25\x17\x01\x41\x8d\x43\x04\x43\x71\x23\x69\x65\x18\xc6\x4b\x2a\xb9\x91\x72\x45\x00\x6f\x90\xa9\x2d\x85\xad\x49\xa4\xd9\x91\xa1\x4e\xd5\x0b\xa2\xe5\xbf\x50\x1c\x34\x1a\xd6\x6b\x68\xc1\x75\xd3\xbe\xc2\x43\x9b\x0a\xdb\x34\x0f\x2a\x74\xb2\x55\x7c\x5d\x47\x50\x23\x5b\x02\x08\xda\x2b\x0e\x12\x28\x1d\xfe\x08\xe1\x1e\xf1\xcb\x23\x52\xd2\xfc\x52\x24\x39\x1c\x0c\x48\x5b\x52\x0a\x2d\x3b\xdf\xb4\x72\x70\x0e\x25\x5f\x2d\xb5\xba\x2b\x2f\xd4\x7b\x95\xc8\x19\x03\x02\x29\x9a\xa6\x90\x13\x99\x9b\x28\x78\x63\x00\xa8\xc4\xf2\xdb\xb0\x05\xbd\xb6\x17\x2c\x51\x9d\x10\x2d\x53\xdd\x04\x02\x06\x3d\x6a\xc2\x0b\x23\x70\x7d\x5d\x84\xb3\xb2\xb8\x12\xcf\x13\xfc\xe7\x4e\x9a\x57\x75\x9c\x4f\x39\xcd\x15\xf7\xa5\x20\x58\xf1\x9c\x48\x7c\xf6\xf9\x07\xc0\x06\x0d\xff\xbf\x5f\x17\x7e\x5d\xc0\x11\x90\xb3\x69\x6d\x3a\x51\xe6\x00\x4d\x28\x97\xdd\x40\x3b\xc4\x12\x29\x62\x2b\xce\xe3\xea\x5c\xa4\x9c\xdc\xd6\x2c\xaf\xd2\x22\x8f\x28\xe5\xaf\x5b\xb9\x94\xf0\x87\x4c\x25\xbb\x6a\x7a\xe5\x0d\xbc\x3d\x77\x35\x7e\x30\xf0\x3c\x15\xac\xc0\x7b\x21\xe0\xa6\x45\x5e\xd5\xe5\x72\x5a\x17\x65\x5f\xa3\xba\xc7\xeb\x11\xc2\x15\xec\xe6\x9e\x6a\x78\xcf\x7b\xe9\x0d\x8d\x36\x60\x0b\x4a\x5c\xfc\x92\x99\xd1\xee\x9b\xa0\x7b\x7b\xf5\x8b\x9b\x9c\x95\xc7\x1a\x87\x48\x83\x9a\x17\x0e\xa3\x7a\x87\xeb\x25\xda\x60\x3a\x13\xb6\x0e\x78\xdf\xe9\x17\xd7\xac\x2c\xd3\x84\x59\xf4\x7a\xb5\x05\x90\xdf\x89\x7a\xd0\x90\xac\x09\x8a\xf1\x27\x13\xcd\x8c\x03\xad\x72\xd1\x10\x9d\x41\x83\xbf\x98\x95\xd3\x9c\xb4\x82\x12\x78\x43\x4b\x45\x2c\x74\xb1\xfb\x51\xd7\xd1\x7e\x98\xc1\x2b\x96\xa6\x8b\x78\x97\x11\x74\xba\x0b\x2f\x98\x51\x9d\x19\x38\xc9\xba\xa3\x88\x35\x2a\xad\x56\x1c\x53\x0c\xe7\x8e\xf3\xd4\xe8\x80\x45\xb2\x2b\x1e\x93\x5c\x05\x29\x27\x61\x9f\x70\x78\x67\x13\xe7\xaa\x9a\x27\xf3\x84\x19\xe2\xb1\x69\x1d\x47\x9a\x15\x36\xa1\x03\x04\xa7\x7b\x47\x20\x4a\x85\x84\x3e\x00\x05\x43\xb8\x53\xe2\x6f\x83\xc7\x69\x0d\x14\xe9\x5e\x60\x9e\x78\x21\xa2\xf1\x43\x5a\xcf\x91\x59\x68\xcd\xb8\xba\x98\xb6\x82\xc0\x1f\xe8\x87\x42\xc9\x6a\x10\x7f\xbc\xf2\xc0\xe5\x97\xb1\x63\xd9\xce\x63\x6b\x27\x0e\x77\x3b\x5b\x68\x9f\xa0\xea\x88\x41\xbe\xcc\xa7\xbc\xa2\x3d\xcd\xe2\xd2\x4c\x66\xdb\xd2\x87\xe1\xd9\xb8\x5d\xec\x33\xda\x5e\xe0\x8e\xba\xba\xcf\x72\xd3\x19\x21\x36\x86\xef\xda\xed\xb8\x1b\x9a\x58\xef\xaa\x4b\x08\xe4\x19\xe6\x2e\x18\x1c\x44\x96\x29\x2e\x7e\x8a\xd0\x81\x83\xd6\x11\xe1\x87\x18\x4f\x2f\x2e\x7e\x22\xab\xb9\x31\x6a\x11\x48\xbc\x11\x27\x99\x85\x8c\x7e\x0a\xa6\x67\x1d\x62\xcf\x57\xe5\xd7\x45\xe9\x74\x42\xaa\x62\xff\xc7\x64\x9b\xf8\xc1\x48\x0a\xa5\xc7\x21\x5e\xf9\x58\x1d\xf7\x7a\xfc\x7f\x7d\xf7\x1b\xcb\x31\x82\x1b\xcf\x84\x67\xde\xdf\xaf\x9a\x26\x64\xf1\x74\x6e\xcb\x19\x75\xa3\xd3\x38\xcb\x2e\xe2\xe9\xa7\x50\xdc\x33\x95\xd0\x41\x88\x5c\x24\x0a\xd0\x70\x15\xd1\x2d\x05\x29\x21\xbb\x5a\xd4\x77\xd1\x4a\xbb\x41\x56\x77\xfd\x5c\xdc\x91\x00\x4e\xbb\x40\x8e\x10\xe5\x5c\x5e\x24\x65\x3a\x1d\x29\x1b\xdf\x60\x25\xf1\x44\xd7\x52\x02\x59\xb4\xc9\xc2\x00\x8f\xb2\x1a\xd9\x75\xc0\x2b\x68\xc0\xba\x69\x2d\x4d\xd4\xc7\x5e\xd7\xe9\x45\x68\xb3\xfb\xe4\xd2\x00\x3e\x81\xa5\xc7\x14\xa1\xfd\xfa\xe7\xb0\x4d\x82\x54\x89\xce\x17\x61\x0d\xb2\xe9\x0d\x34\x61\x33\x56\x96\x34\x26\xac\xf5\xde\xa7\x01\x36\xbf\x86\x76\x1a\x0a\xfd\x9c\x01\x29\xf9\x2a\x7a\x2d\x90\x74\xc6\xa5\x7c\xc8\x2b\x57\x97\xe1\x86\xe3\x41\x40\xb6\xe9\xb2\x6e\x30\xf0\x09\x86\xf2\xb3\x4f\x28\xa0\xbf\x92\x4e\x3b\x37\x6c\x33\x39\x01\x91\xaa\x45\x9c\x7a\xc1\xd0\xb9\xde\x43\x59\x20\xd0\x9b\x1d\x13\xd6\xa8\x10\xc8\xba\x37\x2d\x17\x4e\x27\x7e\x05\xc3\xb6\x0d\xaf\xd8\x6b\x6d\xcd\xdc\x99\x6e\x5b\xb6\xb5\xcf\xd2\x1d\x9e\x2f\xd7\x85\x2c\x69\x3f\x84\xff\x42\x81\x92\x7e\x8b\x4f\xdc\xbf\xe9\xe7\xe9\x75\x4f\x96\x0e\xa7\xcb\xf2\x1d\xc9\x7e\x5a\xa3\xef\x48\x1d\x61\x30\x5d\x51\x2d\x3b\xa8\x8e\xc3\xb2\x6c\x3b\xcf\x99\xbf\x64\x98\x8e\x4d\x65\x5d\x50\x8f\x8d\xf2\xb1\xd9\xed\x02\x08\xae\x18\x8a\x22\xab\x76\x74\x0f\x23\x7b\xe3\xbb\xee\x73\xf7\xbb\xee\x46\xfb\x43\xbe\xe0\x37\xc7\x7b\x71\x47\x6d\x81\xb2\xee\xb0\x2d\x1b\x02\xc5\x18\x25\xad\x48\x31\x1b\x8c\x1e\xa1\x68\x87\xd5\x23\x86\x2f\xe8\x08\xad\x03\x05\x6d\x88\xad\x9c\xac\xc2\xba\x8f\xa7\x73\xdc\x20\x8e\x33\x94\x04\x68\x5d\x99\x92\x39\xe9\xb4\x4f\xca\xbe\x81\x5d\x73\x2b\xec\x59\xaf\x44\x22\x15\x0a\x44\xf0\xbf\x48\xb1\xbc\x3a\x36\x5d\xd6\x10\xb0\xf7\x6b\x76\x15\x19\xc5\x4c\x83\x42\x79\xec\xa6\xe0\xc5\x47\xfa\x30\x0d\x0d\x84\x36\x5b\x48\x48\x8c\x8c\x86\x86\xa6\x97\x45\xb0\x81\x98\xba\x6c\x1f\x9a\x40\x2a\x7e\x7c\xf8\xea\xec\xe4\xf4\xfb\x93\xd3\xe8\xd9\xdf\xfb\x7b\x03\x1f\xcd\xc5\xee\x71\xca\x82\x27\xcf\x88\xcb\x05\x4d\x16\xbe\x2e\x4a\xa1\x77\xf8\x2d\xbb\x6b\x0d\x37\xba\x55\x4f\x93\xdb\x30\x2b\xa6\x88\xac\x8c\x2c\x09\x59\xfd\x89\x0c\xe3\xc6\x09\x2c\x3c\x88\x49\xb5\x55\x37\x5c\xb4\x6a\xcc\x68\x8c\xe6\x50\xb7\x06\x59\x46\x63\x14\xfe\xdb\x5a\x51\x46\x60\xb8\x4d\x6c\xa5\xda\xf4\xb7\x8c\x1a\xd6\x04\xc3\x96\x8b\xaf\xce\x62\xc4\xa3\xd7\xf0\x5f\x78\xc7\x22\x29\x80\x53\x9e\x83\x64\x37\x47\x3c\x67\x1c\x18\x5f\xd1\x68\x3c\x34\x12\x50\x9d\x1d\x42\x46\x36\x8d\x9a\x04\x93\xe6\x7d\xa1\x79\xd8\x72\x0a\xc4\xb9\x96\x4e\x53\x26\xa6\xee\xf1\x93\xe2\x22\xfa\x0f\x99\x17\x97\x0f\xbd\xad\xa6\xc6\x35\x33\xa2\x4f\x91\x31\xfe\x2a\x79\x24\xce\x6c\x64\xa2\xd5\x00\xf0\xfe\x8c\x41\x5e\xd8\x34\x8d\x24\x56\x9d\xe6\xcc\x6e\x0a\xe5\xa6\x49\x16\xad\x19\xae\xb5\x22\xd5\x3e\xeb\x8c\xa3\x4b\x68\x41\xa8\x06\x81\x9b\x24\x11\x7f\x92\x34\x39\x4a\x12\x19\x8e\x86\x64\x2b\x6f\x74\x4b\xf3\x15\xb2\x33\xe4\x93\x10\x49\x73\xca\x13\x81\x4e\x80\xa4\xd9\xbe\xd1\x1b\x35\x3b\x88\xf4\xc6\xa7\x4a\x10\x43\x43\x0d\x70\x4e\x62\x9f\xd3\xfc\x92\xac\x77\x3b\x04\x11\x04\xe6\x8d\xbb\x94\xd1\x25\x1e\x9d\x4a\xe1\x4a\x2f\x4c\x11\x62\x0c\xf5\x93\xa5\x57\xc3\x2c\xbd\x8a\x74\xa1\x97\x07\xaf\xa8\xeb\xc9\xbc\x1e\xec\x1f\xba\x4d\x44\xd4\x0c\x71\x64\x77\xd2\x1c\x1a\xc0\x47\x0c\xfe\xcb\xa1\x81\x40\xb5\x0f\xd2\x99\x9f\xa5\x57\xe8\x32\x6c\xab\x6d\x8f\x4f\x39\xb0\xe3\xd3\xab\xa0\x59\x13\x81\xaa\x33\x53\x4f\x98\x87\xce\x96\xbb\x63\x68\x8a\xc1\x76\x68\xdf\x3f\x6a\xac\xe5\x38\x4b\x28\x31\xca\xf2\x93\x8f\xb1\xcd\x48\xd0\x33\x51\x0a\x8c\x3e\x6f\xa0\xb7\x39\xe4\x3a\x46\xb9\x1d\x95\xab\x2b\xaf\x3d\xc6\x6a\xd7\x99\xfb\x72\xe0\xda\xbf\xa8\x75\x22\x8f\x6d\x54\x3b\xd1\xd9\x62\x7f\x77\x6e\x1a\x05\x29\xbc\x68\x1e\x84\xfb\x7f\x0a\x82\x06\x5a\x3e\x85\xa9\xfa\xfc\xc6\xab\xba\x58\x3c\xa8\xed\x2e\x6c\x1d\x01\x8c\x1c\x2b\x67\x28\x67\x39\xb0\x32\xf8\xa1\x25\xf3\x94\xaa\x43\xb0\x32\x3e\xa3\xc3\x61\x27\x37\x15\x4a\xfb\x9f\x16\x0b\x35\xdc\x9a\x19\xaa\x95\x29\xbb\xd0\xbb\x30\x5a\xdf\xdb\x6b\x9a\xb0\x63\xb8\xb6\xef\x3c\xff\xdb\xeb\x19\x15\xbf\x3c\xe8\xf5\xf6\xf7\x8d\xa4\x17\x2a\x88\xf5\x03\xfb\xfa\x10\x9e\x83\x76\x57\x39\x77\x30\x0e\x6f\x43\xc8\x1d\x6e\x1d\x2d\x8f\x56\xe6\xa0\x38\xce\xba\x3a\xe2\xe4\x59\x62\xae\x3e\xb9\x65\xc8\x5f\xad\x7c\x71\xb0\xcb\x5f\x9b\xc4\x60\x59\xfc\xcf\xbb\x49\x56\xc4\xc9\x16\x52\xb0\xb5\xf2\xa7\x3c\xae\xd3\x6b\xe2\x2c\xe9\xe7\x16\x94\x6e\x25\x67\x91\x57\x37\x5b\xd6\x42\xaf\x6e\xbc\xf3\xdf\x14\xc5\xa7\x8a\x68\xdc\x9e\xbc\xfb\xea\xe4\x74\xf2\xf6\xc3\xd1\xeb\xc9\x37\x1f\x3e\x7c\x7b\xa6\x7c\xc9\x71\x60\x96\xf0\xed\xaa\x18\xdd\x22\x7f\x5b\xc4\x09\x84\xea\x09\xa5\x18\x93\xf2\xb0\x43\xd5\x00\x3e\x02\x44\xd6\xf7\xfd\xbd\xf4\x40\x1f\xd8\xa0\x34\x82\xba\xaa\x7a\xa8\x2c\x03\x23\xc4\x06\x61\xf5\x9b\x81\x2f\x4d\x7c\x69\xe8\xa7\x3e\xa2\x19\xe1\x1f\x8d\x7d\xb9\x84\x04\x68\x14\xfb\x20\x0d\x8f\x69\xe5\x82\xe1\x24\x9a\x98\x37\x69\x9e\x80\x2b\x54\xad\x85\x69\xe4\xf4\x93\xb4\x5a\x70\x3e\x0f\xb5\xfa\x4d\x9d\x32\x01\x79\xbc\xac\xea\xe2\xaa\x0d\x80\xa3\x07\x34\x18\x18\x35\x02\x87\x28\xae\x12\x56\xc7\x69\x36\xc0\xa6\xe1\x41\x64\xc0\xff\x6b\x82\xa1\xab\x75\x24\xe7\x68\xb4\x6b\x0e\xb0\xf2\x8f\x8f\x2c\xb3\x95\x1b\xb6\xe4\xd9\x8e\x41\xb6\x86\x99\x8e\x67\x44\x3f\x36\x6d\x44\xe2\x24\xee\x73\xc4\xd1\xe6\x1e\xdd\xd6\x07\xea\xcf\xfa\xdc\xf1\x50\x89\xee\xcf\x2a\x5d\x75\x89\x3b\x7f\x67\x89\x3b\xb7\x33\xb8\xd9\x46\x16\xbb\xc9\x75\x6a\x97\xb8\xd4\x11\xed\x48\xfb\xfd\x73\x5e\xda\x2a\x95\x2f\xf4\x37\x2c\x0d\x30\xed\xfa\xef\xfd\xd1\xbb\x93\xb3\x8f\x47\xc7\x27\x67\x78\x71\x47\xce\x5f\xe7\x7f\x3c\xfd\x70\x7c\x72\x76\x76\xf2\x5a\xe8\x16\xb6\x55\x8d\x84\x5c\x87\xaf\x58\x62\x74\xcc\x3f\xd1\xcf\x84\x11\xb5\x0c\xf6\xe5\x2c\xcd\x13\xd5\x82\x15\xa4\x76\xc4\x11\x82\xd7\xde\x06\x76\x32\xbc\x29\x99\x71\x6e\x17\x65\x31\x65\x95\xee\xa2\x3f\x32\xd4\x82\xfc\x60\x8c\xc7\xf9\xaa\x09\x3a\x23\xe1\xa8\xfd\x55\x45\xae\xb1\x50\xbd\x8c\xac\xaa\x81\xe6\x89\x2f\xf9\x1e\x8a\xae\x4d\x47\x32\x79\xac\x75\xce\x87\x09\xcb\x58\xcd\x76\x5c\x4d\x4c\xbe\xfa\xdb\xe4\xcd\x6b\x5d\xaa\xd1\x28\xf5\xab\x05\x7a\x8a\xa7\x17\x78\x9d\x8d\x3c\x77\x78\xa8\xec\x74\x45\x20\x8d\x86\xce\x9b\xf1\x22\xa7\x5b\x1d\x8c\x00\xe7\x71\x68\x23\x32\x58\x35\xa1\x9a\x6b\x1d\x7d\x8f\x0f\xf4\x51\x96\x0d\xf4\x4f\x3d\x71\xe1\x05\xf0\x25\x7a\x68\x73\xc9\x6a\xef\xe2\xc0\x7c\xf5\xe1\xc3\xf9\xc9\x6b\x35\x61\x46\x61\xed\x30\xa0\x35\x24\x40\x6d\x1b\x21\xe9\xb3\x73\x9d\xd3\x85\x59\x43\xa1\xe8\x26\x2e\x4c\xd1\xaa\xb1\xae\x4f\x46\x58\x3d\x73\x09\x2d\xe2\x7a\x5e\x85\x65\x51\xd4\x61\xc5\x98\xf0\x6b\x9a\x26\xb7\x11\x64\x48\x4d\xfd\x16\xaa\x98\xfb\x53\x91\xe6\xbe\xd7\xf7\x82\x71\xc4\x6b\x18\x5a\x57\x3a\x9e\x86\xc3\xa2\xd1\xc1\x39\x85\xf6\xac\x3b\x9d\x60\x15\xa0\x26\x54\x6d\x80\x46\x46\x69\x72\x3b\x8e\x3e\xb1\x3b\x71\xe0\xf7\x7a\xc5\xc5\x4f\x5a\x15\x2e\x8a\x40\x4d\xe3\x5c\x2d\x4d\x23\xd7\xd0\x64\xb3\x70\x0e\x86\xc5\xc5\x4f\x7a\xd7\x45\x56\xb6\x52\xdb\x56\x6d\x12\xe2\x02\xbd\xe2\xe3\x35\x92\x92\xa9\xe2\xe2\xa7\x60\x4c\x7a\xd3\xce\x44\xc5\xcf\x8e\x09\xe0\xec\x30\x8c\x7f\xd3\xd0\x81\x8f\xd2\xe4\x16\x06\xe6\xec\xfc\xe8\xf4\xfc\x6c\xf2\xc3\x9b\xf3\x6f\x26\xdf\x7d\xfc\x78\x72\x7a\x7c\x74\x76\x12\x3d\xfb\xfb\xe8\x68\xff\xbf\xc6\x44\xe6\x6b\x53\x98\x15\x72\x6b\x7c\x9f\x46\x86\x3f\x62\xde\x20\xe9\x10\x1f\x5c\x07\xed\x53\x1a\xa0\x72\x66\xf9\x91\xcb\xa7\x16\x6b\xc1\xc9\x75\xe2\x86\x37\x4d\x0e\x6e\xdf\xdb\xa1\xa4\xb5\x40\x7b\xbd\x5d\x67\x7a\xab\x82\xba\xbc\xe3\x33\x1c\x09\xd2\xc3\xb3\xc7\x43\xd2\x8f\xc8\x35\x5b\x0d\x44\xa0\xf4\x99\x89\x88\x31\x9d\xd6\x52\x28\x8b\x85\x10\x12\xca\x44\x31\x7a\xea\x53\x9e\x81\x7b\xde\x04\x28\xbe\x9e\x02\xa0\x4a\x40\x7f\xc4\xba\xbb\x42\x1d\x12\x4b\x31\x1c\x52\xd7\x28\x86\x1b\x9f\x1a\x37\x1d\x74\xca\x91\x69\xb8\xf9\x6d\xe1\x41\x6a\x6f\x28\x24\x91\x56\x1b\x7b\xc9\x6f\x93\xb4\x5e\x6f\xd7\x3c\xab\x3a\x69\xdc\x35\x71\x8f\x6c\x95\x00\xff\xc4\xe6\x89\x27\xf7\x9a\x70\x95\xa0\x36\xb3\x04\xd5\x69\xd2\x00\xa4\xe4\xfc\x50\xd4\xea\x23\x9e\xe2\xe0\xea\xa6\xc4\xe2\x9e\x5f\x2d\x2f\xa0\x5f\x3b\xc5\x6c\xc7\xdb\xab\xea\x72\xcf\x0b\x3c\xed\x6e\xd9\xf3\x85\xe4\x14\x8d\xca\x02\xaf\xd9\xa0\x6c\x4b\x7c\x50\x37\x36\x61\xb5\x86\x61\x85\x06\x87\x22\x93\x91\xad\x19\xed\x3a\xb6\x5b\x48\x40\x85\x95\x02\x8e\x7e\x9c\xdf\x7d\x67\x67\xf1\x5e\x3a\xab\x0e\x56\x2d\x3e\xc3\xc5\xd6\x80\xc2\x5b\x57\x1d\xf7\xf7\x2d\x54\xb6\xe3\x1f\x54\xbe\x65\xea\x46\x0e\x79\xdb\xde\x4d\x65\x11\xa0\x51\x3a\x6e\x93\xca\x91\xca\x37\x78\x1e\x95\x0a\x8c\x4f\xf7\x80\x09\x46\xae\x79\xb4\x9e\x73\x97\xad\x8b\x79\x04\x6d\xf4\x3a\xbd\xf9\x0a\x44\x45\x08\xbf\xc1\x50\xb3\x6b\xb5\x73\xb6\x72\x17\x8d\x9a\x37\x4e\x77\xd1\x02\x62\x5a\x2c\xee\xd6\xe5\xcf\x4a\xc6\xfe\xd9\x11\xe5\x76\xf1\xc5\x24\x2f\xbf\xbe\x16\xce\xff\x96\xb0\xb6\x1d\xba\x33\x8e\x1b\x5e\xa7\xff\x64\x87\x9e\xcd\x07\xb5\x8e\x36\xa9\xd9\x1c\x8b\xf5\xb4\xc9\x7b\xf3\xd7\xa7\x1f\xfe\xeb\xe4\xfd\xe4\xe4\xf4\xf4\xc3\x69\x5b\x83\x85\xe6\x0a\x31\xf4\xe2\x6e\xa3\x8b\x03\xe1\xef\xa9\xa5\x39\x21\x1d\x41\x6d\xad\x5e\xf1\x1e\x28\x03\x8e\x8c\x2b\x78\x2d\x2a\x57\xe8\x41\x09\x65\xaf\xc3\xd5\x25\xab\x2d\x9d\x63\x94\x43\x47\x51\xa4\x04\xc7\xd4\x18\x4c\x10\x69\x79\x30\xb7\xdd\xd5\xf1\x3a\xe8\xf5\x15\x38\x76\x00\x77\x04\xc4\x82\xb7\x95\x0d\x0e\x29\xa1\x16\xce\xec\x3b\xfc\x2c\xb6\xdc\x3c\x6a\x6b\xa5\xaf\xcb\xe2\x9f\x2c\x17\x5e\x09\x5b\xf3\x93\xb1\x5c\xbe\x12\x83\x6e\x85\x54\x64\x70\x3a\xb8\xed\xf0\x6b\xc5\x1b\xce\x58\x2e\x42\x34\xe5\x18\xff\x16\xdf\x4d\x16\x2a\xb0\x59\x7c\x55\xab\x10\x0e\xe8\xdd\x4b\x3d\x3a\x19\x4e\xa4\x37\x78\xb2\x52\x6d\x59\x5e\xc9\xba\x9f\x76\xed\x67\x5d\x19\x95\xc4\x8c\x63\xc8\x19\x1d\xc3\x26\x5c\x31\x61\x7c\xde\x84\x35\x29\x7d\x96\x15\x57\x70\xdb\x87\x59\x08\xae\xfc\x8e\x6a\x75\x4f\x84\x67\x08\xba\x62\xa4\x9b\xc1\x23\xb3\x41\x99\x76\x80\x6b\x44\x7e\x8a\xbf\x2f\x0e\x5e\x41\x18\xa8\x29\x4b\x33\x59\x3c\x18\x90\xc8\x50\x32\x8d\x54\xff\xe2\x40\x56\xba\x17\x65\x2c\x47\xdf\x7e\xc9\xad\xac\x72\x98\x26\xb7\x2f\xc0\xe5\x60\x72\x0b\x4e\x07\x05\x23\x0a\xd7\xc9\x48\x2c\x0a\xb9\x82\xf9\x35\x0b\x7f\xee\x1f\x36\x61\x16\x57\xf5\x9b\x9f\xa9\xff\x19\xcb\xf7\x0f\x7f\xc9\x31\x78\x19\x1d\xf0\x3f\xfb\xfb\x0f\x1a\x02\x4e\xd7\x74\xdf\x13\xc6\xf0\xae\x87\x3f\xe8\x06\xbf\x8a\x17\xbe\x15\xe2\x4d\xa9\x34\x2d\x44\x94\x33\xb0\xcc\x6c\x4c\x63\x53\x11\x65\x57\x4a\x3b\xd2\xcb\xbc\x28\x59\x34\x92\xfb\x72\xac\xb4\x24\x08\xcd\xeb\x83\x83\x01\xa2\x24\x71\x05\xb6\x59\xea\xa1\x13\x81\x14\x7f\x36\xd2\xd9\xe3\x00\x1b\x40\x51\x1f\x29\xd6\xa0\x8a\x0b\x66\x6a\x1b\x1b\x4a\x68\x29\x02\x37\x69\x3d\x2f\x96\xb5\xd0\xdb\x27\x39\x21\x56\x81\xf7\x9e\x23\x6a\x3f\x5c\x02\x6a\x71\x59\x9a\xfb\x8f\x27\x8c\xc6\x0d\x0d\xbe\x8b\x4d\x08\xf7\x8d\xbc\xe0\xab\xb8\x2c\x07\xb4\x79\xe5\xdd\x2f\x68\x86\x46\xfa\xb4\x4e\xaf\xe3\x9a\x45\x86\xa4\xd3\x2e\x67\x0d\x4f\x30\xb4\xf1\xd4\xde\x04\xef\xef\x47\xe3\xa6\xd1\xa6\x11\x27\xff\x79\x7e\xf2\xfe\xf5\xe4\xe3\xe9\x87\xf3\x0f\xe7\x7f\xfb\x78\x72\xc6\xcf\x81\x72\xc9\xe4\xa3\x4d\x2b\xbf\x0f\x8d\x59\x58\x08\x2c\x7d\xc9\xa4\x1f\x45\x47\xc6\xbb\x9d\xfd\xdd\x31\x0b\xdd\x0c\xb6\x02\xd9\xc4\x62\xdb\x3e\xe2\xd6\xf9\x91\xdb\x86\x83\x7d\x0c\xaf\xb9\x8e\xb3\x23\xe6\xd6\x1b\xd8\xbb\x0e\x0e\xc8\xe1\x1d\x89\x0a\xd9\x89\x8d\x8a\x10\x9d\xeb\x7a\x82\x21\x95\xac\x6f\xb4\xeb\x56\x36\xdd\x1d\xb3\x42\x2a\xdb\x6e\x56\x7e\x05\x6b\x84\x0e\x43\x80\xf5\x21\x75\x3a\x8c\x0a\x3a\x0d\x05\xd6\x3e\x35\xe9\xe8\x38\xbf\xbd\x87\xa8\xff\x45\x97\x9a\xf5\xde\xe1\xba\x94\xec\xff\xe0\xd0\xb1\x5f\xa3\xeb\xfe\x07\xb7\xaa\xfb\x7a\xad\xfc\x3f\x3c\x5e\x29\xff\x0f\xeb\x74\xf2\x37\xa8\x98\xff\xb1\x5b\xc3\x7c\xbd\x56\xfb\x1f\x3b\x95\xda\x9d\x06\x0d\x7f\xb2\x0d\x1a\xd6\x68\xe9\xff\xd9\xad\xa4\xef\x0c\x25\xf4\x17\x3b\x94\x50\x2b\x4a\xce\x01\x89\x92\xd3\xf5\xce\x68\x5f\xda\xb4\x3c\x14\x79\xf4\x8f\x6d\x5d\x17\xa9\x47\xa3\x95\x5c\x94\xb6\x4f\xa4\xd3\x04\x9b\xf3\xe7\x40\x68\xfd\x28\xe7\x31\x52\xf4\xba\x56\xe3\xaf\x0b\x0d\x7d\x65\xf8\xc2\x58\xb8\x34\xe2\xf0\x90\xe1\x43\xd6\xad\x2b\x6b\x44\xfb\x79\x68\xbc\x97\x26\x08\xd3\xea\xbc\x5c\xd6\xf3\x3b\xa5\x3b\xdf\xbf\x28\x8a\x8c\x46\x08\x9a\x24\xec\x62\x79\xa9\x1c\xc1\x7e\xcb\xee\xb0\xb1\x9b\x34\xcb\x7e\x88\x6b\xd0\xf2\xe9\x32\xac\xd5\x03\x11\x29\x67\xdb\xde\xde\x27\x76\x37\x6c\x6b\x9a\x43\xbf\x75\x01\x54\x6d\xed\x5c\x05\xa6\xba\xf9\x36\x65\xd5\xa0\xa0\xea\xe0\x77\xf9\xcd\xa3\x91\x77\x6a\x64\x3f\x14\x7f\x4b\x2d\xfb\xa1\x5d\x58\x77\x31\x7d\x58\xe4\x1d\x12\x95\x82\xa8\xa8\x05\x0d\xb8\x07\xff\x6e\xcb\xfb\x2f\x75\x28\xc7\x6b\x97\x4e\x8e\xa4\xa9\x77\x87\x12\x33\xf5\xb5\x34\x34\x22\x73\x6e\xea\x81\x7c\x6a\x31\xb1\x96\x6e\x9b\xba\xad\x33\xc9\x86\xda\xc4\x14\x01\x07\xf3\x0b\xf2\x42\x69\x35\xc9\x8b\x7c\x8b\x30\x7e\x8f\x64\x9c\xa5\x7c\x78\x4d\xc4\xc0\xcd\x31\x05\x1f\x2d\x24\x76\x39\x49\xde\x86\xd9\xfb\x2d\xc6\x4a\xfe\x35\x4c\x3e\x4d\x1f\xa9\x2e\xaf\xc6\xbf\x69\xa3\xd0\xb4\x7a\x5f\xe4\x6d\x9f\xc4\x98\xec\xe4\x1f\xfe\x48\xd8\x87\x8e\x5b\x99\x43\x2e\x2d\xe4\xb1\x1d\xd1\xfd\x5c\xf1\x05\xdd\x90\x0e\x01\xb5\x53\x90\xed\xf2\xc1\xfb\xb5\x5c\xfc\x6d\xa3\x49\x95\xb5\x41\xe4\x7d\xe8\x12\x79\x77\xf9\xf6\x75\x5c\x39\x3f\xc3\xbe\xf1\xd1\x36\x95\x10\x5c\x10\x9d\xf6\xb4\x7d\xfa\x92\xcc\x6e\x5e\xf5\xd0\x88\x7b\xb9\xd1\x21\x83\x15\x00\x51\xcf\xa4\x96\xbe\xab\xf1\x0e\x57\xc2\x48\xf0\x20\x84\xb0\x15\x6e\x07\x5c\x42\xa4\xed\xf6\xdb\x49\xe7\x03\xb9\xb3\x8e\xa0\x17\x54\x5a\x4d\xa5\xc9\x72\xaf\xa0\xdc\x5b\x13\xd9\xb6\xf0\x3b\x63\x79\x78\x00\xce\x77\x9c\x3c\xaa\x37\x4b\xcb\x4a\x45\x4a\xee\x06\xcb\x62\x02\x45\x5e\x85\x87\xe9\x0b\x15\x12\xc6\xb0\xf2\x42\x21\xe5\x38\x90\x5a\x64\xf0\x8d\x36\x5e\x34\x25\x1d\x37\x95\xdd\x6d\x8a\xaf\xc5\xcd\x76\xa0\x6b\x43\x19\xd8\xba\x87\x48\x17\x11\x23\x64\x3a\x9d\xab\x4e\xfe\xb1\x8c\xb3\xb6\xa3\x9a\x5d\x67\x90\x96\x20\xa0\x1e\x66\x84\x76\xf5\xb4\x63\x42\xc5\x13\x86\x4e\xdc\x8d\xa2\xac\x98\x9a\x55\x18\x46\x7e\x07\xd8\x74\x71\xf1\x53\x5f\x84\x61\x40\x63\xa0\x51\x56\x4c\xc7\x66\xdb\x0d\xf5\x84\x13\xc6\x49\x32\x20\xdb\xc5\xf7\x80\xd5\x15\x71\xbf\x91\x6d\x34\xf3\x25\x2b\x29\x40\x16\xc5\xa2\x33\x4e\x96\x5c\xe2\x5d\xd1\xa4\x8c\x35\x3e\x94\x8a\x61\x44\xca\xfe\xf2\xe0\x15\x74\x82\x24\xed\x1f\x8e\xe1\x4a\x80\x73\x86\xc8\xf8\xce\x50\x3a\xdd\xdd\x82\xe8\x2d\x66\xf6\xa2\x58\x78\x81\x0c\xec\x62\x65\x2d\xab\xb9\x17\xf0\x81\x3a\x89\xa7\x5d\xb5\x56\x6a\xb4\xda\x40\x74\xc4\x2a\x08\xd7\x44\x95\x55\xd3\x9a\x5d\x55\xb6\xc1\xa1\xb0\xc7\xac\x30\x78\x99\x6e\x45\xa4\x36\x61\xae\xc3\xe4\x6f\x7a\x65\x23\xfb\xc1\x69\xb4\xdc\x7e\x0e\x94\xc3\x7e\x30\x26\x9e\xaf\x83\x50\x6f\x99\x07\xd6\x63\x4d\x1f\xad\x53\x75\xad\xbd\x8f\x1e\xbb\x8e\x50\xe7\xab\xc8\x99\xb1\xed\xc0\xd5\x96\xa4\x89\x11\xd5\xd8\x0b\xd3\xe4\x36\xd2\xb4\x27\x74\xd3\x59\x34\x92\x1b\x8a\xb8\x69\xd1\x41\xaf\x27\x1e\x9e\x30\x9a\x1e\x79\x6c\x31\x5a\x84\x52\xd1\xa8\xb8\xf8\x69\xbc\x99\x10\x63\x14\x5d\x5e\x62\x5b\x32\xbb\x26\x10\x92\x30\x5f\xe6\xa4\x17\x09\x01\xcb\xc1\xb0\x61\xd8\x26\xa6\x19\xcb\xf7\x0e\xbf\x10\xa9\xa4\x7d\xb0\x9c\x88\xe9\x5d\xf0\x9b\x9f\xec\xb4\xfa\x9a\xef\x9a\x88\x43\x47\xd1\x41\x98\x56\x6f\x63\xf5\x09\x6f\x7b\xb0\x1b\xa4\x11\xe5\x56\xcb\x42\x18\x8b\x6e\xbd\x1a\x04\x38\xdc\x5a\x45\x47\x01\xa9\x6e\x9b\x2c\xf3\xe8\x43\xe5\x47\x8e\xf7\x9a\x12\x74\x6e\x1b\xec\xc5\x0b\xe8\x5f\xb0\xe2\x59\x91\x5c\x3a\xfb\x87\x88\x31\x76\x88\x67\xe9\x45\xc6\xc7\x96\xa7\x04\x63\xd0\x63\x5d\x7f\x9a\x8b\xba\x9c\x8b\x70\xff\xd0\xdd\xcf\xb5\x27\xbc\xab\x9b\xeb\x56\x70\xb3\x69\x05\x1b\xe3\x6e\x46\x7d\x93\x47\xab\xdb\x21\x9c\x31\x20\xa0\x0b\xfc\x32\x3a\xb0\xdf\x58\xa9\xeb\x3f\xea\xe9\x30\x94\x76\xda\xc7\x61\x07\x5f\xc0\x87\xac\x64\x35\x19\xb1\x62\x1a\xb4\xb8\x80\x92\xd5\x70\xe6\x47\xea\xf4\xe7\xdb\x70\x64\xf0\x5c\xc0\x13\x8c\x39\x47\x61\xe8\x02\x74\x59\x3e\x58\x4f\xdf\xa8\xec\x00\xaf\x75\xa3\xb1\x7a\x8a\x3e\xb0\x1f\xe2\x01\x02\x97\x8b\x3e\x8c\x24\x1f\x72\x55\x4b\xc7\xf4\x67\xac\x7e\xf1\xaf\xff\xfe\xd2\x0b\x47\x50\x40\x28\x66\x87\x5e\x30\x0e\x1a\x70\x87\xb1\x5e\x6a\x22\xc4\x14\x1b\x05\x27\x4a\x04\xf2\xa5\x9f\xf0\xb6\xba\xeb\xba\x42\xf7\x3f\xb7\x42\xf7\x03\xb6\x6f\xf2\x6a\x61\xdf\x3b\x01\x10\xd3\x87\xa8\x23\x7e\xfa\xe6\xfd\x5f\x27\xaf\x8f\xce\xbe\x39\x39\x7d\xf3\x5f\x27\x93\xd3\x93\xbf\x9e\xfc\xe7\xc7\xe8\xd9\x68\x67\x32\x7e\x76\xe9\x86\x39\x3e\x3a\xfe\xe6\x44\x3a\x8b\x90\xb9\x27\xc7\x47\xef\x4e\xde\xd2\x2a\xfc\x51\xbc\xff\xcf\x1f\x93\x71\xe0\x83\xc6\x79\x60\x56\xd7\x06\xff\x71\xff\x7e\x72\xff\x63\xff\xfe\xc7\x2a\xd8\xf3\xfb\xc1\x2b\x13\xfe\xbb\xf7\xaf\x4f\x4e\xcf\x8e\x3f\x9c\xca\x12\x93\xc3\x56\x13\x7b\xc1\xa6\x32\xcf\xa3\x67\x3f\xee\xdf\xff\x58\xed\x3d\xbb\x24\x0a\xf0\x57\xb5\x5f\xd5\x65\x38\x2b\xca\xab\x58\x86\x47\x94\x11\x10\x65\xe2\xfd\x7d\xcb\xb1\xe6\x73\xb0\x81\xe3\xb9\x91\xf5\x4e\x2e\x22\xeb\x81\xdd\x82\xf6\x50\x79\x88\x77\x2f\x5c\xe1\x52\x0c\x58\x97\x2a\x7a\xfc\xb3\x7f\xfd\x77\x7f\x74\xb0\xff\x97\xf1\x1e\xef\xbc\x5e\x54\xe0\xe5\x12\x94\x4b\xf8\x4e\xc0\x5f\x91\xfc\xf1\x6a\x11\x97\x15\x7b\x03\x71\xaf\x31\x25\x3c\x3c\x08\xf6\x0f\x07\xb0\x75\x86\x55\x24\x50\x1c\xc9\x6c\xe5\xfe\xb1\x8a\x22\x70\x6d\xf1\xca\x83\x83\x36\xf0\x06\x15\xd5\x37\x78\xe5\x79\x03\xba\x8e\xfc\x2a\x68\xc8\xfb\x42\x56\x4c\x7f\xa9\x41\xab\xea\x52\xe8\x34\xe3\xbc\x9e\x8d\xaa\xba\x1c\xdf\xdf\x57\x75\x39\x24\x44\x80\x62\xa3\xf1\xbc\x51\x6a\xdd\x72\xb8\xab\x45\x96\xd6\xfe\x33\xbe\x08\x08\x5c\xc2\xa6\xf1\x15\xcb\xd2\x7f\xb2\x56\x01\x39\x3f\x5d\x4b\x3d\xf4\x9e\x1c\x4e\x9e\x3c\xf7\x82\x7e\x5d\xbc\x2d\x6e\x58\x79\x1c\x57\xcc\xa7\x75\xc7\xd5\x9c\x95\xaa\x6a\x90\x22\xc4\xd3\x39\x8b\xdc\x5b\x2b\x9c\xa7\x75\x04\x00\xb6\x69\x03\x2f\x1e\x0a\x8d\xad\x79\xaa\x45\xe0\x00\x0c\xa3\xa2\x75\xd4\xad\x0e\xb5\x7a\x61\x6d\xf9\xd0\xdb\xf7\x82\xa1\xae\x28\xe2\x64\xdc\xa5\xb5\xbe\xed\x30\xd9\x83\xa4\x35\x70\xe2\x7a\x3a\x0f\x2b\xb6\x88\xcb\x98\x1f\x56\xd3\xb9\xae\x67\x3a\x2f\x5f\x4d\xe7\x65\xbf\x2e\xbe\x5b\x2c\xe4\x40\x0e\x3c\xaf\xd1\xf8\x3f\xfb\xbb\xa4\x27\xdb\x55\x09\x79\xd6\xcc\x04\x96\xf9\x42\x3a\xbb\xd3\x53\xb3\x88\xcb\xba\x8a\xf4\x4a\xf1\xfa\x5e\x10\x16\xcb\x5a\x9e\x50\x5a\x41\x1d\x20\x9d\xb1\x58\xe4\x20\x25\x91\x1a\x2e\x00\x06\x11\x45\xb1\xac\x45\x1c\x5b\x09\xd5\x9f\xce\xe3\xf2\xa8\xf6\x0f\x02\xb3\xe7\x7b\x1a\xa2\x5a\x5e\x54\x75\xe9\x1f\x06\x8a\x8d\xe0\xd5\x68\xd3\x23\xd5\x21\xbe\x81\xcb\x8a\x1f\x5b\x9b\x66\xc8\x41\x52\xf5\x52\xde\x08\xfb\x3c\xf4\x26\xdd\x4b\x7e\x1a\x2f\xd2\x3a\x76\xae\x93\xae\xbe\xc2\x88\xcb\x5e\x36\xc6\x86\xe7\x87\x4d\x87\x50\x6d\x35\xbb\xaa\x07\xb3\xab\x9a\x73\x30\x83\xac\x98\x86\x37\x83\x9b\x50\xaf\xfd\x81\xfe\x19\xaa\x6d\x38\x50\xbf\x42\x05\xa7\xa0\xe4\x82\x18\xc8\x1f\xa1\x1e\xd1\x81\xfe\x19\xea\x1e\x0e\xf4\x4f\x03\xcd\xfe\xec\xaa\x8e\x66\x57\x46\x8c\xca\x3e\x67\xc8\xb2\x62\x6a\xa4\xdd\x44\x37\xc6\xb7\xc6\x99\xec\x62\x13\x42\x76\x20\x52\xbf\x8c\x7c\x55\xde\x59\x5a\xf6\x2c\x92\x3f\x8c\x5c\xdd\xc7\x48\xff\xb4\x6a\x97\xfd\x8d\x48\xd7\x37\xb1\x57\xcb\x0b\xa7\x79\xc2\x9a\x67\x28\xd7\x9b\x8b\xcb\x08\xe1\xe7\x76\x98\x60\x3f\x2f\x1c\xda\xce\x62\xdb\xa2\x6d\x97\x32\xd5\x1a\xed\x78\x87\x6b\xd9\xd3\x93\xf3\xa3\x37\xef\x23\xaf\x44\x1c\xbe\x7e\xf3\xf6\xfc\xe4\x34\xf2\x66\xc4\x6c\xec\xc3\x82\x95\x31\x86\x4e\xb8\x5b\xb0\x70\x5a\x2c\x95\xbb\x29\xf0\x8d\x0e\x6e\xd3\xc5\xe5\x60\x09\xce\xa6\x96\x79\xdd\x74\x6c\xa4\xb3\xe5\x05\x32\x90\xaa\x7a\x99\xe2\x23\x85\x13\x4a\x89\xe6\x79\xfe\x82\x5f\xee\xd0\xee\xf0\x40\x84\xf6\x36\x7c\x8e\x17\x12\xc5\x2a\x1a\xf1\x1b\x89\x46\x19\xfb\x27\x3c\xe0\x05\x63\x1d\xb0\xc6\x2c\x34\x6e\x1a\x89\x07\xf1\xfa\xbe\x8a\x93\xe4\x4d\xcd\xae\x88\xc0\x0a\x58\x1f\x20\xf6\x4a\xb1\x79\x59\xe6\x18\x93\x68\xff\x30\x4c\x6b\x76\x75\xce\x8b\x02\xc8\x2b\x6c\x7d\x80\xa3\x1a\x56\x2c\x9b\xa1\x03\x75\x44\x60\x96\xe6\x89\xc6\x14\xab\xd6\xd7\x34\x99\x11\xaa\x5f\xc8\x77\x41\x10\xdf\x33\x08\xd9\x0e\x3f\x4f\xf2\x04\x0c\x34\xdf\xe4\xb2\x07\xc2\x1e\x8a\xdd\xa8\xca\x43\x38\x63\xd4\xa7\x14\xd6\x01\xa6\x51\xa4\x1a\x80\xf9\x0c\x56\x7b\x7b\x3a\x05\x27\x53\x2a\xdb\x03\x8e\x51\x14\x69\x1c\x82\x15\xef\x15\x1d\x4c\xa9\x7b\x6e\xa1\x7d\x10\x9a\x13\x23\xdb\x0f\xf9\x59\x03\xb3\x42\x11\x8e\x3a\x81\x87\x66\x57\x2c\x40\xb3\x2b\x6a\x80\xf6\x01\xf1\xbd\xc3\x60\x68\xf5\x2c\x82\x8c\x7d\xdd\x9f\xe1\x76\xdd\xd9\x3b\xc4\x0e\x75\x8d\x30\xdc\xf1\xc5\x32\x49\x67\x16\x5a\x51\x14\xe1\xc2\x90\x07\x16\x2e\x1f\x73\x12\xf7\x7c\x1b\xb5\x80\x9a\x46\xba\x8a\x34\x0d\x22\x3f\x2d\xae\x16\x45\xc5\x8e\x6a\x0b\xe9\xa0\x21\xdc\xbe\xb5\x62\x5a\xdd\x06\xd6\xa1\x7b\xca\x86\xba\x7f\x6b\x10\xb2\xf1\x69\xb5\x22\x45\xac\xfc\xda\xac\xd9\x40\x59\x9d\x14\xc1\x39\xf6\xa0\x73\xf7\xfd\x72\x1b\xec\xcb\xcd\xa9\x51\x13\xac\xc9\x97\x87\xc1\x6a\x7f\xdf\xb5\x05\xb7\xdd\x6b\x7c\x97\x6c\x58\x09\x4d\x68\x04\x5e\x70\x85\xe1\x3b\x8e\xf3\xa7\xb5\x50\xf2\xdb\x89\xd1\xc9\xe8\x4e\x3d\x8f\xeb\x9d\x79\x5c\xed\xe4\xec\x9a\x95\x3b\x17\x8c\x81\x3b\x4f\x96\x70\xee\xd0\x3d\x87\xe6\x34\xd8\xb4\x74\x56\x2c\xf3\xe4\x58\xba\x23\xcf\x8b\xfa\x6b\x9a\x20\xfc\xf4\x98\xdd\x83\x20\xf9\x6a\xf6\x36\x4f\x57\x74\x00\x1c\xb5\x59\x0b\xa1\x61\xd1\x81\xb6\x95\x68\x2f\xce\xa1\x59\x0e\x04\x46\xa4\xac\x6c\x73\xef\x30\x24\x74\x53\xdc\xa3\xd5\x77\xab\xf2\x91\x09\x3a\x1e\xca\x7a\x08\x5e\x36\x19\xde\x3f\x1c\x4a\x1a\xfc\x92\x80\x89\x30\x7a\x2f\x14\x2a\xfc\xee\x4b\xc6\xf0\xb3\x56\xba\x98\x51\xed\x73\xa0\x6b\xd5\x5b\x2b\x3d\xb2\xd7\x6f\x63\x4f\xad\x4d\x82\x9a\x50\x2f\x57\xe7\x66\x2f\x16\xed\x51\x84\xec\x71\x58\xd4\x73\x56\x7e\x58\xa0\xf7\x51\x65\x07\xd2\xa8\xd1\x3a\x08\x56\x02\xa4\xa3\x8a\xfd\x43\x88\xfd\x20\x80\x64\xdf\x8a\x85\x38\x11\x8b\x05\xf6\x62\x2f\x92\x10\xf0\x39\x6c\x2d\x19\xea\x26\x64\xff\x90\x6f\xc4\x7d\x3c\x7b\x1a\x85\xcc\x8b\x8e\x75\xb6\x7f\xb8\x09\xc9\xbd\x9f\x01\xc9\x3d\x8e\x64\xd3\x74\x8b\x52\xab\xba\x8c\x3c\x6f\xd8\x61\xfc\xe7\xdb\x95\x3b\xe8\x6b\xb0\xaa\xea\x72\x2f\xf2\x76\xbc\x3d\x73\xf5\x40\x6c\x29\x7b\x9d\x04\x54\x66\x85\x17\xb5\x34\xbf\xf4\x01\xc9\x0d\xbc\x7f\x5d\xc6\xd3\x4f\x2c\x71\xdb\x27\xaf\xbb\x00\x7c\x21\x66\xff\xd1\xcc\xfd\x1a\x96\xdd\xc1\xe1\x6f\x63\x8f\x69\xb1\xf5\x6f\xde\x9f\x9d\x9c\x9e\x47\x5e\x2a\x62\x58\x9c\xbc\x3d\x39\x3f\x89\xbc\xc4\xeb\xba\xef\x9e\xe3\x50\x5a\xac\x3a\x4d\x95\xaf\xc0\x1d\xdc\x3a\xe4\x72\xbe\x5a\x88\xe3\x39\xeb\x2e\xfd\x53\xb7\x75\x41\x80\xef\x77\xb3\xf2\xe8\xa7\xd6\xcd\xcf\x87\x88\xc3\x3a\xae\x9e\xa2\xdc\x17\xa3\x82\x7f\x86\x46\x96\x18\x21\xfc\x63\x66\x89\xd1\xc2\x3f\x66\x56\xfb\xaa\x50\xd9\xe7\x5b\xce\x6e\xde\xe0\x48\xa1\x5a\xcf\x52\x28\x6c\xca\x74\x73\x2c\x20\x9f\x8f\x9f\xa0\x60\xa0\x3b\x0a\xa1\xdc\x35\x47\x63\x8d\x08\x52\x48\x7c\xde\xd0\x6c\x31\xca\xa3\x34\xe5\x37\xb3\xf1\x04\x44\x18\x44\xd3\xcc\x3f\xd5\xe7\x1b\x02\x91\x93\x42\x10\x69\x3c\x41\x80\xeb\xa5\x3f\xa1\x4b\xf0\xd3\x44\x93\x8f\x83\x99\x32\x6c\xa5\x44\x8e\xf9\xc6\x09\xc1\x4b\xa7\x1e\x4b\x8c\x40\x45\x01\x51\x32\x8c\xc8\x42\xf3\xed\xf5\x24\xe9\x9e\x63\x28\x90\x99\x37\x9b\x0e\x86\xb4\xa7\x91\xa3\x14\x5d\x76\x28\xc4\x73\x55\x8d\x67\x41\xd7\xf8\x3e\xa6\xdd\xbd\xc3\xc6\xbd\xe2\x15\xd3\xfe\xe0\x9e\xd4\xc2\x81\xa7\x00\xab\x58\x59\xfb\xb4\x50\x40\x59\xf1\xd6\x1a\x17\x22\x81\xff\x19\xeb\xb7\x35\x3c\xc6\x8a\xde\x6e\x55\x22\x2d\x10\xfd\x1e\xfe\x3f\xb5\xf2\x0c\x1b\x7a\x01\xff\x1a\x5e\xcb\xed\x05\x03\xb6\x9d\xed\x90\x43\xda\xb3\x3b\xa7\xd0\x61\x31\x9b\x55\xac\x46\x16\x7d\x03\x47\x61\x22\x14\xda\xcc\xb6\xf2\xfc\x68\xc2\xf5\xf1\xc8\xc1\x76\xac\x75\x82\x52\x02\xab\xa2\x36\x71\x01\xb0\xdd\x48\x1c\x01\xc1\x0a\xeb\xda\xb3\x46\x48\xb0\x5b\xd8\x33\xf8\x5f\x86\x88\x76\x21\x04\x4a\xf8\x0f\x39\xf2\xb0\x46\xeb\xe0\x0b\x1d\x3b\xca\xc9\x3c\xbb\xd6\x07\xbf\x47\xc1\xea\x11\xe1\xfa\xad\xf1\xed\x5c\x38\x8e\x8c\x93\x3c\x81\x3b\x96\x6b\x9b\x76\x6e\xcd\xf5\xd7\x2e\x47\x55\x70\xf7\xda\xdb\x73\xe4\x88\xc7\xfb\x0f\xdd\xf7\x2d\x47\xa1\x71\xc7\x4c\x47\x7a\xa6\x95\x5b\x2e\x77\x9f\x3b\xfb\xb6\xe7\x5a\x1a\xe4\xfe\x16\x45\x9d\x45\x83\xd5\x45\xc9\xe2\x4f\xa6\xcc\xed\x65\x17\xb4\xba\xfc\xb9\x11\x0c\x56\x38\xc1\xe0\xe1\x4d\xd7\xbb\xea\x9c\x13\x77\x35\xfc\xc4\x21\xd1\x1b\xcd\xf5\xf6\x0e\x7c\x98\xad\x5d\x3c\x84\x43\xe8\x5c\x56\xfc\x02\x08\x10\x83\x8e\x0d\xdf\xe2\x38\xda\x04\xcc\xb1\xd4\xb7\x5c\x09\x70\xd5\x51\x1c\x8c\xbd\xb3\x71\xef\xa1\xb1\x9a\x46\x20\xd0\xa5\x36\x1f\x19\x2e\xc2\xa3\x1b\x94\xfb\x5a\xa7\x04\x43\xd7\x12\x8a\x74\xeb\x76\x7e\xba\x09\xf1\x83\x90\xa2\xfe\x80\x33\x4a\x0a\x3b\xad\x63\xd3\xd1\x71\x72\x89\x47\x26\xc2\x49\x8b\xda\x47\x6c\xd7\xbd\x3e\x63\x33\x7b\x68\x3b\xef\xef\x61\x99\x5e\xce\xb7\x83\xde\x3b\xc4\xaa\x3f\x2c\xa2\x76\x0b\xbd\x5e\x3b\x4d\x48\x93\x79\x03\x1f\x16\x91\xa3\xa1\x5e\xcf\x91\x08\xa5\xf0\x86\x03\x6d\x45\xe2\x7a\x11\xac\x1c\x2d\x88\xab\x7b\x6b\x6c\xc4\xa9\xe2\x28\x81\x13\xde\x95\x21\xcf\x9e\x76\x85\xa9\x62\xa1\x65\x87\xb6\x41\xcc\xd5\xbf\xcf\x44\xcd\x55\xa5\x40\x6e\xad\xcc\x22\x7c\x1e\x74\xf0\xbf\x06\xd4\xa1\x70\x26\xb8\xe3\xec\x69\xc7\x40\xaf\xeb\x68\xc7\x50\x3a\xe6\xec\x8b\x74\x53\x88\x66\x42\x93\xcb\xda\xe2\x74\xef\xdc\x4e\xa8\xd5\x58\x9d\x17\x7f\x2d\x9c\xbc\xcb\xc3\xf6\xdb\x23\x76\x50\xce\x6e\xdb\xf7\xc2\xdb\xfa\xc3\x02\xfe\x1c\x03\x0e\x78\xcf\x78\xcf\x6e\x8e\xf2\xe4\x3d\x64\x0a\xf6\x44\x68\x39\xbe\x11\x9c\xa3\xb1\xb1\xe4\x79\x6d\x0d\x44\x1b\x8f\x21\xa2\x1f\x1d\x36\x5a\xc9\x42\x8c\xf6\x90\x0c\xcf\xcb\x83\xe1\xde\x5e\xca\x57\x89\x8d\xb0\x63\x40\xc6\x43\xec\x44\xd4\x86\x46\x12\xa0\x3a\xe7\x82\x10\x5c\xe3\xcc\x17\x95\x74\x75\x46\x53\x08\x51\xd9\x90\xfa\x0c\x55\xa9\x2f\x49\x2f\x94\x02\x2f\x8e\x19\xfd\xd0\xe4\xa1\x85\x90\x38\x33\x16\xe2\xd0\xa0\xf5\x05\xc3\xae\x0e\xec\x47\x04\x6e\x98\xee\x47\x87\xa4\xd7\x34\x8b\xae\xc1\x03\xdc\xc6\x14\xfd\x28\x8a\x1c\x1d\x30\x56\x03\x58\x81\x3c\xba\x63\x01\xc5\x60\x5f\x8f\x66\x43\x67\x40\x12\x09\x27\x17\x47\xca\x34\x6d\x06\x12\x9f\x70\x1c\x2f\xd3\xf6\xde\x4e\xf7\x0f\x51\x34\xbc\x15\x31\x6b\x8f\xc3\xab\xe7\x83\x43\xe2\xf1\x53\x8f\xc0\x46\x59\xee\xaf\x21\xbb\xd5\x42\x44\x8b\x2f\x2a\xc8\x35\x9c\x6f\x7f\x6a\x5c\x82\xa1\xd7\xd5\xd6\xb5\x75\x0c\x30\x81\xdc\xb7\x9a\x8e\x46\x90\x43\xd5\x2d\xa5\x84\x1d\xa5\x4f\xd9\x50\x9f\x7e\xb3\xb1\x5a\x46\xc6\x1d\xfe\xc7\x04\x64\xad\xe1\x7f\x61\xdb\x63\x3d\x0b\xc1\xcf\xb6\xd8\xba\x66\x55\xbd\x49\x07\x58\xc0\x3c\x4b\xf3\xb4\x4e\x41\xf3\xa5\xac\x5a\x99\xd5\x72\xb1\x28\xca\xba\x9d\xce\xea\xe5\x62\x32\x2b\xca\x89\x6a\xca\x82\xe0\x7f\x5b\x89\x71\x12\x2f\x6a\x56\x56\xf2\x47\x37\xc0\x3f\x96\x79\xda\x2e\x3f\x67\xd9\x82\xa3\xf9\xdb\xb1\x35\x7e\xac\xf6\x33\x0c\xe0\xd7\x45\x79\x8e\x3d\xdb\xe4\x62\x92\x83\x6d\x0a\xe3\x7a\x84\x63\xb7\xc9\xc7\xe4\x7f\x7c\x97\xa7\xb5\x0b\xd6\xb2\xe5\x45\xc5\x35\x68\x98\xff\x47\xbe\xfb\xb2\xb4\xf8\x4b\xb3\x8c\xda\xe9\x87\x00\xb2\xfb\x6d\x7d\x77\xad\x64\xc7\xca\xd9\x5e\xbd\xfd\xe7\x77\x2b\xf4\xf9\xca\xf0\x5b\xe8\xb8\x3f\x20\x9c\xb7\x9c\x00\x97\xc3\x92\xb8\xba\xcb\xa7\x40\x37\x06\x38\x25\xdf\x86\x90\x74\x92\x27\x2a\x81\xdd\x4e\xd9\xc2\x94\xf4\x80\x0e\x9b\x7c\xc8\x87\x8f\x35\x3e\x1e\x44\xfb\x9b\x67\x53\x6c\xf3\xd1\xb6\x74\xe2\x67\x36\x5c\x70\x6d\x8b\x47\xcc\xd6\xfa\x51\x71\xcd\x04\x39\x46\x61\xd3\x40\x58\x32\x3f\x68\xf4\xd4\x38\x20\xe2\xb2\xe6\x20\xdd\x93\x55\x7c\xf2\x91\xb1\x15\x88\x89\x74\xa7\x11\x89\x4d\x62\x3f\x4f\xbb\xb1\x5c\xe6\x93\xac\x28\x16\x2a\xf9\x3a\x65\x37\x95\xdc\x7c\x3f\xfd\x63\xc9\xca\x3b\xf7\x91\xf1\xf3\x91\xf6\x9f\x4d\x21\xb2\x5c\xe6\x9b\x36\xe4\x4f\xff\xc1\x7b\xfc\x25\xa8\x3c\xce\x0f\x90\xe4\x7e\xc9\x2e\xd3\xaa\x66\xe5\x37\x90\x86\x2e\x00\xf8\x7a\xf9\xc6\x01\x73\xa4\x33\x86\xea\x9d\x10\x12\xa3\x03\xe2\xf4\x69\x59\x96\x2c\xaf\x4f\x8b\x65\xcd\xde\xc7\x57\xcc\x8f\x17\x0b\x71\x01\x5c\x2c\x8e\x8b\xbc\x2e\x8b\x2c\x63\x65\x14\x2f\x16\xfd\xc9\x64\x2a\x7d\x12\x81\x3e\x70\xf1\x69\xb9\x40\xbf\x45\x08\x34\x88\x17\x9c\xbf\x04\xfe\x46\xfb\x8b\xb9\x64\xb5\x6f\xd4\x15\x7a\x76\xa3\x54\x0b\x5c\xe4\x7d\x8c\xeb\xf9\x2f\x89\x0b\x6f\xcf\x81\xc6\x77\xa7\x6f\x35\x16\x25\xc7\x77\x5d\xf3\x08\x30\xb8\x8a\x53\xab\x4d\xcc\x08\xbd\xac\x90\x18\xf1\x55\xc7\x2b\x27\x4d\x5e\xa7\x55\x0a\xe8\x85\xcb\x32\x7b\x5c\x8b\xf0\xd5\x97\xad\xf0\xb3\x97\xb7\xc1\xab\x03\xb9\x34\xaf\xa6\x64\x71\x92\xe6\xac\xaa\x5e\xb3\x19\x2b\xcb\x38\xab\x20\x84\x27\x94\x1c\x79\x82\x37\xfc\xee\xf4\xad\x37\x8e\x96\x65\x36\x2c\x97\x39\xa0\xe4\xc5\xc9\x75\x9c\x4f\xd9\xa9\x2c\xee\x29\x8f\x05\xae\xb2\x42\xaf\x50\x14\xe6\x0d\xcf\xe3\x3c\xc9\xd8\x77\xa7\x6f\xa1\x77\xf2\x92\x71\x13\x63\x97\x0d\xbb\x86\x74\xfa\x09\x8a\x55\x2c\x63\x60\x15\x08\xee\x86\x6e\x85\x1f\xda\x27\x2c\x8b\x66\x69\x9e\xfc\x90\xd6\xf3\xa3\x0a\x9e\x15\x9d\xc0\x80\xfa\x13\x96\x85\xde\x55\xb1\xac\x58\x52\xdc\xe4\xf8\x20\xfe\x84\x65\xfd\xb4\xf2\xbd\x41\x9a\x2f\x96\xb5\x17\x60\xb5\x70\x31\xe0\x59\x9c\xf0\xf9\x1e\xff\x44\x70\xf1\x50\xe3\x4d\xe7\x6c\xfa\xe9\xa2\xb8\x15\xb1\xcc\x78\x52\x19\x27\x69\x41\xbe\xe7\x69\x92\xb0\xdc\x0b\x56\xb2\x69\xd3\x27\xc0\x6e\x52\x4c\x41\xab\xa1\x3f\x8f\xab\xaf\x8b\xe9\xb2\xba\xbf\x6f\x25\xf9\x32\x4e\xe5\x0c\xbf\xc8\x4d\xae\x2e\xd3\xcb\x4b\x56\xfa\x1e\x64\xf1\x19\xe7\x74\xbd\x31\xfb\xb9\x5c\x78\xa4\xeb\x30\x98\x7a\x2d\x3a\x86\x5b\x54\x8a\x41\xd3\x5c\x03\x19\x8a\x07\x2d\xb8\xcf\x39\x95\x33\xa2\x28\xfa\x5d\xb0\x82\x01\x14\x65\x86\xe2\x2f\x46\x20\xd6\x11\xe4\x44\x2d\x51\x14\x79\xca\x5c\xcb\x0b\x56\x32\x79\x85\x61\x48\xb6\x9e\xe1\x6b\x15\x32\x0e\xc9\x6d\x1f\x7b\x61\x20\xac\xc7\x42\xf4\xd4\x0b\x31\x34\xdc\x9a\x31\xf9\xc4\xee\x36\x8d\xc7\x27\x76\x77\x5c\x24\xe8\x8a\x57\x3b\x09\xe7\x49\x76\xe7\x64\x32\xea\xb4\x77\x0e\x92\xf2\x47\xb1\xd5\x74\xc8\x5a\x07\xe2\x6f\x78\x33\x4f\xa7\x73\xf9\x45\xcd\x84\x66\x69\x96\xbd\xc9\x3b\xaa\xa2\x9b\x8a\x04\xfa\x03\xac\xac\x6e\x40\x9a\x13\xf3\x07\x6d\x48\xb2\x23\xf8\x66\xbb\x8e\x33\x1f\x32\x45\x18\x7e\x9f\x68\x7c\x3a\x26\x66\x9b\x66\x0c\x22\xd1\x81\xc9\xbf\x08\x32\xa0\xd6\xef\x41\x97\xc6\xea\x49\xc6\xf8\x52\xdf\xf1\xf6\x64\x2d\x7b\xde\x4e\x5e\xd4\x3b\xa0\x0f\xd9\xf7\x14\x25\x7b\xc2\x32\x13\xcf\xf5\xd8\xa9\x21\x14\x7f\xef\xef\xc5\xd9\x14\x7a\x65\x51\xd4\xa2\x59\x2f\x18\xf2\x9e\x70\xfa\xf9\xc4\x77\x0c\xa8\xa3\xe9\x38\x4f\xce\xe7\x0c\x27\x5c\xbf\x8f\x5b\x43\x1a\xea\x87\xed\xc5\x22\xa0\x46\x87\x12\x40\x38\x9a\x13\xe5\x80\xb1\x58\x94\xc5\x55\x5a\x31\x3d\x85\x25\xab\x8a\xec\x1a\xf7\xc0\xde\x1e\xe1\x2f\xa2\xe8\x30\x58\x41\x19\xc1\xce\xf7\x35\xe7\x2b\xc2\xe5\x60\x3c\xf0\x92\x5f\x07\xdf\xe4\x35\x2b\xf9\x42\xb0\x44\x4b\x78\xae\xbc\xa9\xde\x16\xfc\xc8\xb9\x8c\x76\x77\xb7\x3c\x07\xfb\xe2\x1c\x04\x1f\xcc\xec\xbc\x8c\xf3\x2a\xad\x85\x8d\x82\x55\x29\xd5\xeb\xc4\x4e\xb2\x9c\xa7\x1f\xfd\x14\xdf\x9e\xb2\x7f\x2c\x59\x55\x57\x14\xa6\x5c\xe6\x9c\x52\x9f\x4d\xe7\x2c\x59\x66\x2c\x39\x4f\xaf\x58\x59\xf9\xc1\xfd\x3d\xcf\x91\x7c\xcd\x32\x7f\x5b\x98\x3a\xa3\x50\x37\x1f\x5c\x56\x56\xbd\x1e\xfd\xea\xc7\xf9\x9d\xee\x39\x26\x12\x6f\x82\xb7\x75\x84\x69\xa3\x03\x64\x07\xe5\xcc\xc9\xe4\x43\x69\x16\xbb\x2b\x73\xd0\x10\x55\x2e\x92\x26\x50\x78\x80\x17\x26\x35\xda\x62\x06\xe0\x8c\xdb\xdf\x37\x66\xef\xc0\x35\x7b\x27\x79\xe2\x07\x70\xd8\x88\x10\xe8\x30\xf9\xd2\xfd\x5f\x78\x78\x10\x34\x41\x43\xb8\x51\xdf\x03\x86\xc6\x0b\xe1\x4f\x30\x34\xb2\xf0\x5c\x0a\xe1\x8f\x95\x25\x89\xaf\x17\xca\x5f\x16\x00\x52\x34\x2f\xc4\xbf\xc1\x70\xae\xd2\xf3\x84\xa7\xe6\x89\x99\xa6\x09\x06\xe6\xea\x6f\xab\x62\x3e\xa2\x5e\xc8\xff\xb7\x32\xc4\x9e\xf2\x42\xf1\x43\xd7\xdf\xe2\x64\x43\x3b\xa5\x05\x0b\x9c\x66\x48\x3e\x5a\x10\x9c\x83\x0a\xf5\x6f\x0b\x19\x7a\x42\x78\x21\xfd\xea\xbe\xe3\x99\x22\xbf\x0e\x47\xe0\x3a\x2c\x70\xf7\x95\xcc\x71\xa5\x12\x41\x66\xed\x5b\x95\x08\x3a\x7b\x2d\x83\x46\xf2\x5b\x0d\x2b\x15\xfb\xb8\x93\xe6\x3b\xff\x2d\xd0\xfb\xef\x9d\xab\x22\x61\xde\x50\x44\xd5\x15\x3e\x11\x8e\x08\x03\xaf\xf1\x21\xa9\xc8\x53\x91\x84\x3e\xed\xa6\x0c\xf6\xda\x91\xef\xaf\x54\x04\xd9\x50\x27\x9b\x41\xe2\x81\xc8\x84\xb1\xd5\x22\xf9\xee\x8b\x0e\x04\x2b\x9a\x68\x76\xd4\x07\x2d\xe3\x75\x17\x70\x87\x68\x75\x0b\x29\x6e\x87\xe0\xb4\xe3\xda\xfd\x9b\x90\x79\x75\x0a\x22\x1d\x57\x6c\xc7\xfd\xd9\x71\xcb\xe6\x54\x2a\x2c\x05\x9d\xd6\x97\xda\x34\x9f\x96\x70\x7e\x72\x32\xfe\x11\x29\xba\xa4\xe6\xfe\x24\xbc\x45\x23\x6b\xfc\x46\x05\x47\x9e\x34\xec\x3a\x00\x22\x05\x8b\xfc\x82\x61\x7b\xbf\xb1\x21\xd3\x09\x9c\x55\x15\x1a\x5e\xa7\x33\x8e\x40\x14\xa9\x86\x46\xe9\x98\x60\x28\x5f\x6d\xe0\xed\x76\x6b\x24\x3b\x64\x52\x3a\x74\x9f\x29\x88\x15\x57\x14\xfe\x85\xd4\x1f\x2a\x4c\x4b\xf6\xae\xe0\x27\x9d\xbd\x68\x41\x74\x13\x90\x8a\x85\xdd\xb3\xc8\x47\xed\x20\x59\xa1\x3c\x48\xcc\x63\xc5\x90\x16\xcb\xe0\x3e\x9c\x9f\x12\x1d\x1a\x8d\xb7\x9e\x91\x21\x2e\x17\x5f\xde\xa6\x82\x7e\x31\x9b\xf9\x5e\xfc\x53\x7c\x7b\xc6\xf8\xa9\xb0\x6e\x45\x04\x6b\x4a\x1f\x17\x57\x0b\x7e\xc9\xf5\xc2\x75\x53\xed\xaa\x21\xff\x9c\xe6\xf3\x07\xb5\xde\xf9\x1c\xa4\x5f\x73\xd6\x10\x14\x17\xc5\xd8\x9e\x4e\x3c\x96\x16\x38\xf6\xb7\x83\x0a\x3c\x11\x17\x3b\xbd\xb5\x79\xcf\x8e\xc5\x4d\xfc\x18\x24\x05\x28\x58\x28\x83\xd5\x13\xff\xe9\x0b\xb8\xd2\xe3\x5d\x5e\x5f\xd8\x5f\x3e\x0d\xfa\xd3\xaa\xf2\x57\x8b\x02\x19\xc1\x81\x17\x5f\x54\x45\xb6\xe4\x23\x9b\xb1\x59\x3d\xf0\xf6\x0f\x0f\x0e\x0e\x16\xb7\x5e\x58\x17\x0b\xfd\xd5\x04\xfd\x78\xc1\xd1\x3b\x2f\x7c\xef\xa2\x48\xee\x3c\x9c\x1b\xc1\xbd\xc8\x96\xf5\xc5\x5c\x5c\xb7\xa5\x47\xbe\xa0\x79\x42\x99\xda\x36\xee\x96\x7c\x00\x5f\x23\x39\x04\x4b\x7a\xbd\xdd\x27\x7d\xb8\xa9\xf6\xab\x05\x9b\xa6\x71\xd6\x47\x6e\x69\xe5\x4c\x8e\x56\x02\x09\xcb\x0f\xe1\x93\x7e\x5e\x24\x28\xd9\x13\x9e\xc5\x50\xe8\x81\x9e\xb9\xa4\x6e\xa2\x21\xdc\x00\x24\xb0\x29\xfd\x5b\xc7\x6f\x16\x81\x05\xc1\x76\x66\x6d\x8f\xf8\x91\xd7\xb9\x32\xf1\xb5\x70\xe3\x93\x4e\x4b\xac\x2c\x84\xd3\x59\x5c\xcf\x8a\xf2\xca\x11\x0f\xef\x6a\x11\x97\x6d\x1f\xc9\xec\xb6\x7e\x56\x56\xd7\x8b\x07\xbc\x6b\x92\x23\x5d\xee\x0e\x2a\x53\xfc\x8d\xf8\x41\xfe\xec\x43\x19\x3a\x7b\x6a\x09\xb4\x1d\x5b\x11\xe9\x73\xcb\x21\x31\x26\x2b\xff\xb2\x71\xc9\x36\xc9\xbc\x4f\xcf\xbe\xff\xb8\x49\xe6\xbd\xee\xb1\xd4\xf1\xc2\x89\x11\x85\xf4\xe4\x6c\xf2\x58\x0c\xca\x8b\xd1\x68\x8c\x5a\x8c\x44\xca\x5e\x49\xe7\x50\x69\xfe\x13\x9b\xd6\xc8\x72\x57\xd2\xbc\x10\x8e\x24\x25\xb6\x5f\x99\xc2\x78\x33\x40\x76\x88\xf5\xa1\xf3\xcb\x60\x25\x6a\x47\x9e\x34\x5a\x61\x4c\xa6\x01\x85\x09\xf9\xc2\x1e\xac\xf8\xe5\x63\x20\x77\x58\xe8\x10\xe5\x7f\xc1\x66\x40\xe9\xa5\x69\xc2\x65\xbe\xae\x27\xc1\x4a\x88\x79\x8d\xca\xa5\xec\x17\x0e\xe8\x8f\x28\x18\x20\xc1\xa8\x30\xb8\x77\x58\xe4\x6f\xe8\x38\xba\x14\xf7\xdd\x03\x2d\xbd\xcc\x08\xa8\x26\x14\xb2\x87\x81\x2d\x7b\xd0\x0e\x5a\x72\x76\x63\x60\xa3\x21\x9a\x50\x30\x1c\x03\x7a\x71\xd5\x55\x5d\xc7\xd9\xb6\x82\x0e\xa5\x1a\x03\xdf\x50\xb2\x09\xf4\x3c\xfd\x00\x57\x72\xf3\x12\xc1\x6e\x6b\x22\x87\x71\x4b\x4f\x0f\xb5\xa5\x41\xa7\x04\x15\x0f\x07\x21\x34\x10\x94\x59\x7c\x09\x1f\x53\x47\xbe\x70\xeb\x27\x25\x0b\x30\x88\x23\x1b\x89\x71\x40\xa7\x7c\x33\xca\xe8\x59\x28\x2d\x87\x6d\x24\xb4\x7c\xe3\x31\x9d\xe2\x95\x46\x6d\xf4\x86\xce\xae\x19\x1d\x9b\xa5\x59\xcd\x4a\x3d\x3f\x2c\x23\x1e\xa5\x90\x0a\xf1\xb4\x90\xb7\x10\xec\x46\xd1\x41\x13\x18\xfa\x42\xe2\xbe\x1d\x2f\x16\x21\x2e\x71\xb0\x81\xcc\x23\x63\x89\xf7\xaf\xf4\x8e\x69\xe7\xc4\xc3\x76\xf8\x5c\x54\x9b\xbc\xac\x22\x97\x3f\x30\xf4\x1c\x2b\x16\x27\xbe\xd4\x91\x84\x21\x2f\xd7\x17\x9e\x77\x41\x28\x87\x26\x40\xac\x8e\xa1\xd7\x3a\x5a\x6f\x2e\x03\xa3\x2d\x16\x21\x2f\x04\xe6\xfe\xbb\xa4\x2a\xf4\x59\x29\x1b\x72\xc0\xab\xa7\x19\x82\x7a\x0b\x37\xb9\xc4\x69\xc5\xfd\x7a\xce\x72\x87\xb3\x5b\x47\x1b\x24\x02\x1e\xa9\x81\x84\x23\x86\xf6\xc5\x15\x5e\x1e\x41\x2d\xf9\x99\xcc\xe0\x90\x88\xf6\x2c\xe7\xf7\x69\x9b\xde\xf7\x4b\x56\x2c\x58\xee\x03\x87\x25\x89\xcd\xaa\x09\x8b\x32\xbd\x4c\xf3\x38\x43\xda\x07\x49\xe2\x94\x47\x1a\x1b\x5a\xe7\x0c\xe5\x9d\x5a\xd7\x23\x5c\x97\xc6\xfd\x06\x52\x4e\x51\xd8\x28\x51\x90\x8f\x6f\x03\x0f\x22\x4b\x70\xf2\x80\x8b\x47\xc5\x73\x19\xdc\xa4\x79\x52\xdc\x84\x48\xfa\xce\x09\xca\xaa\x79\xab\x04\x0c\x53\x2b\x0d\x5a\xb7\x52\x23\xeb\xbb\x51\x48\x7f\xa3\x0f\x38\x79\x23\xe5\x8b\x79\x27\x95\xdb\x41\x12\x15\x6b\xd0\xc4\x61\xe2\x6a\x4c\x1c\x05\x76\x13\x1b\x4b\x08\x24\x91\x21\x85\x0d\x38\x84\xa3\xe3\x87\x32\x5e\xf8\xee\x13\x25\x24\xa7\x1d\x29\x17\xb6\xf7\x25\x6e\x97\xc6\xf4\x77\xd6\x71\xca\xd8\x0e\xd0\xdc\x60\xa3\x74\x8c\x51\x56\x1a\x69\xb1\xe8\x9c\x33\x7d\xd3\x77\x8f\xab\x7b\x28\xba\x87\x9c\x3a\x8c\x6d\x0f\xaf\x91\xeb\x2c\x0f\x0c\xba\xda\x6f\x7a\x80\xe1\x17\x8e\xa7\xa4\xb9\x61\x5a\x01\x8b\x01\xbe\x63\xeb\x42\xa0\xe6\xa2\x6c\x8a\x9c\xa1\x8b\x5a\x51\x4a\x39\xf3\x13\x02\x68\xa4\x06\x30\x4d\x94\xe4\x10\x33\xbf\x0e\x4a\xd2\x5d\x43\xd0\x08\xd1\x87\x22\x6c\xba\x30\xe7\x28\xd5\x92\x31\x4b\x0a\xda\x3b\xb4\xe9\x2d\x8c\x7b\x33\x74\x2f\xb6\x48\xc8\x22\x8c\x7a\x49\x28\x49\x77\x29\xea\xc7\x36\xa2\x20\x28\x25\x15\x53\x74\x3e\x67\x79\xe4\xae\x18\x06\xa5\xab\x72\x9e\xa7\xfb\x5c\xe4\x67\xcb\xe9\x94\x55\x55\x58\xe4\x5f\xc7\x69\xb6\x2c\x35\x73\x42\x5b\xc2\x33\x08\x06\xc3\xc9\xee\xa4\x55\x91\xf1\x9e\xea\xfa\x80\xa5\x21\xb5\x92\x53\x53\x02\xcf\x72\x80\x82\x45\x01\xd2\x7f\x7a\xb2\xb5\x47\x1a\xfc\xd4\x03\x5c\x34\xc3\xd6\x87\x6b\x4f\x42\x19\xd3\xb7\xd7\x83\x3f\x3b\x69\x5e\xd5\x71\x3e\x65\xc5\xcc\xe0\xef\xee\xef\xcd\x43\xcf\x08\x65\xf4\xc5\x8f\x38\xac\x96\x3c\x4e\x1a\xa7\x5a\x97\xc7\x03\x56\xb5\xc3\x40\x82\xb8\xa5\x25\x83\xdf\x4a\x6d\xca\xc8\x33\x95\x1d\x8d\xac\x92\xdf\x7c\xca\xc9\xc5\x72\x36\x23\x9a\x74\x06\x08\xbb\xb5\x45\xc6\x22\xbb\x8e\x6b\x66\x57\xab\xff\x77\x66\xe8\xf7\xb8\x35\x20\x59\xc6\x60\x48\xd7\xc1\x5c\x2d\x8a\x1c\x1e\x35\x9c\x18\x5f\xb3\xbc\x9e\x24\x69\xb5\xc0\x77\x2b\x0b\x4a\x04\x41\xe2\x1f\x93\x3a\x2e\x2f\x59\x3d\x89\xb1\x41\xa2\xd1\xfc\x5b\xb8\xb0\xff\x0c\x81\x8b\x3e\x5b\x06\xb0\x9d\x30\x0e\x9e\x6a\x73\x56\x7e\x73\xfe\xee\xad\x2b\x30\x91\xca\x14\xde\x9e\xcf\xd2\xab\x45\xc6\x40\x2c\xd4\x02\x37\x72\x51\x2c\x00\x8b\xf6\x2b\x58\xb3\x9b\x44\x08\xd3\xac\xc8\xd9\x19\x2c\xd5\x56\xfc\x22\x92\x87\x58\xbb\xc1\x2a\x0d\x71\x5c\x94\xec\xfb\x94\xdd\xb4\x62\x38\xca\x0c\x80\x72\x42\x18\xb9\xc7\x6a\x91\x3b\xe1\x74\xb6\x68\x55\xec\x9a\x56\xc5\xce\x80\xfe\xb2\x6c\x0b\xda\x19\x35\x49\xec\xa4\x8d\x61\x93\xe0\xd9\xf0\xb5\xda\x53\x1b\x83\xfb\xf3\xd6\xcf\x61\x77\x1d\x01\x36\x67\xb8\xb7\xd6\xc6\x46\xc2\x1b\x9c\x92\xe4\xe2\x67\x57\x45\x1d\xe9\xa2\x94\xb1\x46\xe8\x87\x42\x0e\xbd\xdd\xe8\x36\xf0\x7b\xd5\x0c\xd5\x87\xb1\x52\x23\x63\xd9\x6a\x18\x73\xf1\x9a\x8b\x15\x2b\x57\x8b\x46\x2d\x12\xdd\x68\x64\x7d\x8b\xc5\x16\x89\x35\x47\x32\xe8\x42\xa6\x0b\x17\x41\x26\xd6\xaa\xb2\x56\x91\x44\x84\xae\x23\xe3\x4b\x41\x18\x8b\xc7\xfc\x54\x30\x72\xc9\xa8\x5f\x22\xc7\x5e\x22\xd6\xf7\xda\x48\xc8\xee\xc3\x4f\x07\xb4\x13\x2d\x4d\x6a\x76\xb5\xe0\xac\x05\x5f\x45\x25\x93\x02\xd6\xcf\x89\x03\xa8\x42\xd8\xfd\x26\x1e\x3e\xd7\x45\x79\x7b\xc7\x31\x6d\xd1\x47\x48\xed\x1a\x5b\xc8\x94\x0f\x66\xab\x9b\x34\xcb\xde\xb1\xf2\x92\x41\xb2\xbe\x8f\xf0\xd1\x31\x43\xea\x74\xf0\xc6\xd7\x10\xa1\x16\x07\x9e\x25\xd2\x65\x77\x28\xfc\x28\x5f\x91\x68\x98\x61\x16\xdf\x15\xcb\xfa\x6c\xc1\xa6\xe9\x2c\x65\x49\x04\x6d\xf4\x31\xf5\x7d\x7c\xc5\xee\xef\x69\x0a\xea\x34\xc9\xe0\x13\x12\x06\xb5\x2a\x11\x4e\x4e\x3c\x4f\xef\xf5\x76\xad\xea\x83\x55\x1b\xad\xc8\xa3\x65\xbc\xa1\x03\xcb\x88\x36\x36\xb4\x51\x8c\xda\x2d\xcb\xbb\x14\xe4\x8c\xcc\x06\xc6\x4d\x0b\xd9\x87\x22\xba\x16\x49\x13\x41\x0b\xb9\x0e\xc4\x10\xa9\x76\x93\xc1\xaa\x71\xe9\x19\x6c\xcd\x20\x8d\xb6\x08\xe1\x2d\xaa\xe9\x64\xb1\x7e\xc6\x90\x91\xeb\xb6\x61\x7b\x17\x1d\xaa\x5d\x04\x12\xfb\x0d\x87\x96\xeb\xc1\xc3\x15\x2e\xef\x77\x76\x68\x67\x88\x71\x15\xa9\x50\xbe\xf0\xb9\xd5\xbe\x75\x60\x14\xae\x70\x58\x31\x70\x16\xd5\x66\xf7\x82\x10\x87\xfa\x18\xa5\xa5\x14\x82\xb3\xf2\xae\x97\xb6\x0d\xdc\xf3\xcf\x14\x65\xd5\x8e\xa8\xba\xf6\x19\x6f\xad\xc1\xd6\xb6\x51\xe2\xb7\xbc\x36\x99\x97\x98\xff\x91\x37\x81\x5f\x2d\xda\xa8\x23\x92\xe8\xef\xcd\x48\xa2\xb6\x45\x8c\xe3\x4d\xaf\xbe\x5b\xb0\x0f\xb3\x16\x23\x8e\xc9\xce\x70\xa4\x7f\xda\x22\x9a\xb9\x83\x59\x76\xdc\x66\x1c\x4c\x72\x8b\x91\x86\xe0\xe9\x8a\xa1\xc7\x8d\x29\xcc\x67\xd6\xf1\x38\x96\xb1\x1d\x06\xd4\x1d\xac\xea\x62\x39\x9d\x83\xc5\xd6\xc0\x83\xdf\xa0\xfc\xea\x85\xf0\x1b\xe2\x09\x62\xf2\xbb\xe2\x9a\x89\x54\x96\x27\x22\xf1\x24\x4f\x44\xda\x34\xce\xa7\x2c\x13\xc9\xc7\xf0\x01\x7a\x91\x49\x71\x93\x0f\xbc\x4f\xec\xee\x75\x71\x93\x43\xca\x72\x01\xdf\xdf\x2d\xe0\x6b\x51\xb2\xaa\x82\x84\x8f\xfc\x97\x17\x2a\x1b\x88\x01\x9a\x09\x60\x39\x61\x31\x20\xd2\x78\x59\x41\x51\xae\x58\xbe\x1c\x48\xf2\xf2\x8e\xe5\x4b\xa1\xab\x39\x90\xba\x0f\xc9\x45\x26\x12\x92\x62\x79\x21\x78\x63\x51\x21\x76\x0f\x7e\x62\xf7\x84\xbd\xc2\x00\x0d\x17\x40\x77\x93\xff\x28\x96\xb5\x48\xfa\xb0\xac\x45\x59\x96\xd7\xac\x14\x85\x4f\x72\xb0\x04\x84\xdf\x19\x8b\x55\xa5\x6f\xf9\x6f\x2f\xac\x96\x17\x57\x69\x3d\xf0\xf0\xaf\x17\x82\x66\xc3\x40\x28\x38\x84\xa8\x4f\x3e\xf0\xf0\xaf\x17\x26\x65\x7c\x29\xe6\x83\xff\x14\xd3\xc1\x7f\x62\x02\xfe\x16\xcd\xf3\x9f\xa2\x75\xfe\x53\x34\xce\x7f\x8a\xb6\xf9\xcf\xe2\x5a\x82\x7e\xb8\x46\xc8\x62\xc1\xbf\x39\x99\xc3\xba\x12\x59\x53\xe2\x35\x21\x51\xeb\x1e\xa0\x32\x09\x3e\x3f\x10\xdf\x44\x49\xc2\x12\xe0\xaf\x2b\x0a\x8d\x92\x36\x58\x58\x68\xba\x50\x91\xc0\x58\x22\x80\xb3\x54\x22\x92\xeb\x10\x93\x43\x52\xe3\xfd\xfd\xaa\xc1\x47\x25\x11\x2a\x8e\xb6\x00\xcf\x1d\xa2\x46\xaa\x7e\x6e\xa0\xd1\x90\x0f\x71\x9b\x23\x11\xeb\x0c\xad\xf5\x60\x48\x3e\xfb\x71\x92\x1c\x67\x71\x55\xf9\x6d\xcd\x0a\x11\x24\x15\xd0\xdd\x49\x73\xec\x25\x5a\x99\xe0\x4f\x3b\x90\x0c\xda\x6e\x08\xb6\x16\xc6\xef\x1b\xd4\xc2\xa1\xfd\x09\xe9\x60\x8d\xe0\xcf\x18\x3c\xd2\xd2\x02\xe4\x2d\xd9\x5d\xf2\xbd\x7a\x1a\xd4\x4e\xc0\x69\xb7\x8a\x1c\xb1\xd9\xf3\xfa\xd0\x2f\x2f\x14\x3f\xf6\xf1\x94\xd1\xcf\x93\xd7\xb5\xd4\xd3\x4d\xf3\xcb\x77\x71\x1e\x5f\x4a\x1d\xef\x6b\x79\x5d\xec\xc3\xf9\x84\x41\x22\xd3\x64\x1c\x96\xac\x5a\x66\xe8\x64\x2b\xbc\xc2\x12\x28\x49\x95\x1f\xe8\x8d\x7b\x96\xe6\xc9\x7b\x16\x97\xac\xaa\x61\x9a\x45\xe5\x3e\xaf\x8d\xf4\x02\x5d\xab\x43\x56\xaf\x27\x7e\xec\x46\x91\x03\x29\xd1\x2e\xd6\x2e\xf9\x05\xb4\x46\x11\xe5\x42\xde\x1d\x55\x75\xc8\x5b\x0a\x94\x53\x1c\xf8\x32\x2b\xb9\x58\x5e\x5c\x64\x0c\xab\x10\x68\xd1\x01\x46\x59\x2d\xbb\x46\x0b\x58\x3e\xcf\xf1\x25\xba\x71\x20\x9e\x28\x78\x75\x4d\xb0\x69\xf4\x47\x49\x5c\xc7\xfb\x62\x8d\xc1\xd0\x8f\xcd\x59\x10\x1a\xc3\x84\xb4\x07\x2b\xfa\xe5\x56\x79\x2c\x8b\x25\x35\x94\x7d\x86\x55\x7b\xc1\xc8\xa3\x65\x3d\xf4\x4b\x8b\x99\x6f\x12\xb9\x41\x78\xc7\xc4\xb3\x26\x72\x7c\x41\x3f\xae\xeb\xd2\xf7\x5a\xb8\x2a\x1e\x2f\xa2\xd5\x2a\x73\x4e\x96\x60\x72\x35\x92\x4d\xa0\xaf\x39\xf8\xe8\xf5\xf0\x6f\x5f\x8d\x6b\x14\x45\x64\x11\x8b\x81\x14\x40\x42\x6f\x0d\x46\x84\x5f\x18\xc2\xae\x65\x44\x74\x24\xcc\xf5\xb4\x42\x27\x9c\x64\x59\x62\x04\x3e\x9c\x7e\x99\xc1\x89\x03\x14\x44\x2a\x25\x2a\xf5\x9c\xab\x71\xa4\x2a\x1f\x4b\x6f\x75\xb0\x37\x74\x1d\x8b\x98\x0f\x22\xdf\x2b\xda\xe8\x46\x14\x6e\x42\x73\xa9\x1a\x91\x09\xd9\xb4\x76\x2d\x59\xe1\xec\x5f\xed\x32\xd4\x02\xc2\x91\x89\xb0\x18\xc1\x49\x1a\x47\x7d\x98\x29\x7d\xc3\x28\x8a\x3c\xd9\x8e\xa7\xd6\x7c\xb9\x54\x8d\x0a\x40\x68\x1c\x9a\x1c\xba\x57\xb9\x78\x1c\x43\x4c\xe0\xb6\xbe\x69\xcb\x98\xfb\x22\xa4\xf0\xad\x29\x33\x88\x99\x2c\xb8\x14\xd9\xfc\x3f\xb1\x1c\x4e\x4c\xc2\x17\xc2\xe2\x08\x13\x56\xd5\x65\xd1\x8a\xdc\x48\x4f\x82\x8e\x23\x40\x6a\xb5\xd2\x13\x04\xf5\x6a\xd5\x7e\xfd\xb7\x7f\x53\xaa\x92\x6b\xce\x07\xc3\x3b\xa8\x08\x0d\xdc\x7d\xcd\xa5\xef\x1b\x23\xf7\x1d\xe4\x41\xd6\x0d\x36\x63\xeb\xe0\xaa\xff\xb1\x64\x4b\x56\xf1\x99\xef\xe3\xcf\x21\xff\x39\x89\x93\xe4\x3f\xf8\xa7\xef\xe1\x7b\x8c\x17\x7a\xb8\xff\x2a\x34\xd0\xa4\x10\xf1\xac\x66\xe5\xa9\x04\x13\xf0\x1b\xba\x28\x6f\x39\x6b\x2e\x72\xeb\x6f\x54\xbf\x5e\x58\xa2\xad\x2e\x2b\x37\xad\xab\xca\xcd\x63\xa2\x11\x6d\xe3\xda\x5c\xdc\x18\x50\xe0\x99\x5e\x01\xe2\xbd\x9e\xf1\xd9\x47\x98\xfb\x7b\xbe\x0e\x85\x92\xac\x90\x68\xf3\x33\x05\x7f\xa2\x25\x70\x31\xdb\x11\xe7\x88\x45\x22\x44\x33\x22\xd3\xf7\xc4\x0c\x82\x06\x0f\xe6\xe1\xee\x02\x9e\x11\x19\xbd\x1b\xdf\x53\x8c\x2b\xa4\xef\x28\x2e\x75\x47\x71\xa6\x3b\x92\x1b\xdd\xe1\xcc\xa7\x80\x48\x90\xb5\x02\xaf\x4c\xba\x42\x7a\x1c\x2a\xaa\x20\x59\x47\xd0\x2a\x9e\xa5\xb7\xdf\x14\xc5\xa7\x8a\x10\xbf\x08\x42\xca\x56\x83\x11\x1c\x5a\x60\x4f\x37\x83\x03\xaf\x09\xba\x9e\x3e\xb1\xca\xf5\x0b\xd8\x7a\xa6\xfc\xe2\x02\x89\x6d\x9f\x4b\xbf\xac\x95\xcc\x26\xa9\xc0\xaf\x76\x89\xef\x7c\xbe\xfb\xbd\xeb\xf9\xce\x71\x89\xb6\xee\xf4\x4a\x2f\x00\x68\xf7\x19\xab\x7d\xc5\x95\xb3\x3c\x5a\x35\xa8\x17\x94\xa5\x55\x1d\x8d\xc6\x8d\x04\xb2\xfc\xdb\xeb\x83\x05\x89\x13\x70\x68\xf8\x93\x5f\x07\x54\x7d\x4a\xd7\x50\xa5\x8c\x10\x6a\x4c\x34\xb1\x78\x5b\xa8\xf4\x28\x2a\x6b\xc2\xba\x78\xfd\xe1\xdd\xa0\xfd\x9e\xaf\xe1\x31\x10\xe1\x8e\x17\x34\xa8\xf9\xfb\xd5\xd1\xeb\xc9\xf9\xd1\x5f\x27\xef\x8f\xde\x9d\x4c\xce\x4f\xce\xce\x75\x64\xd9\xbf\xc7\xfb\xff\x3c\xda\xff\xaf\x83\xfd\xbf\xfc\xb8\x3f\x7e\xd6\x86\x3e\x3d\xf9\xf8\xf6\xe8\xf8\xa4\xab\x00\x09\xdc\xca\xf1\x5b\x9c\xc7\x97\xa8\x97\x8f\x7f\x85\x09\x80\xfc\x90\x88\xe2\x37\x28\xf9\x75\xa1\x06\xda\x41\xaa\x9a\x56\x51\xf3\x53\xc5\x47\x5c\x83\x7a\xe8\x79\x68\xa5\xcb\x61\x8e\xbf\x39\x3a\x3d\x53\x7d\xea\xf9\xaf\x76\x7f\xbc\xd9\x1b\x06\xf7\xa3\x17\x2f\xbd\xa7\xff\x2d\x63\xed\x7e\xfc\x70\x76\xf6\xe6\xab\xb7\x27\x16\xf8\xa8\x27\xa0\x74\xdf\x59\x35\x8d\x17\xec\xa8\xae\xcb\xf4\x62\x59\x33\x5f\x58\x1a\xc3\x1d\x17\xb2\xa2\x95\xf7\xc2\x1b\x78\xbd\xac\x1e\x7a\xa1\xf7\x92\xff\xbc\xe4\x3f\x9f\x7a\x4f\x07\x5e\xef\x1f\xcb\x02\xd2\x9f\xf2\xf4\xff\x73\xfb\xfc\x4f\xfc\xe3\xbf\xf1\xe3\x8f\x07\x43\x0f\x67\x11\x6b\x3a\x9e\xc7\xa5\x56\x9a\xa1\xb1\x35\x31\x7f\x34\x9d\x97\xe3\xfb\x7b\xaf\x17\x5f\x2d\x64\x49\x5c\x3a\x11\x60\xd5\x97\x5e\xef\x7c\xbc\x39\x3b\x3b\x89\xa3\x2f\x56\x1c\x8d\x17\x99\xe6\x97\x8d\xf1\x65\x0c\x3d\xad\x22\xd4\xe8\xe2\xb8\x4f\xe3\xfc\x8c\x01\xf1\xfd\x90\xbf\xc9\x17\xcb\xba\xb2\xb5\xb1\x92\xf4\x3a\x52\xbe\x23\x50\xa4\x2c\xb8\x2c\xdf\x4b\xd2\x6b\x2f\x08\x59\xd6\x09\x20\x6c\x40\x86\x2c\xe3\x1b\x5f\x4f\x85\x97\x83\x09\xab\x37\x2b\x0a\x2f\x18\x26\xe9\xb5\x30\x7f\x39\x9e\xa7\x59\xe2\xb3\x4c\x32\x63\xbb\xbb\x3c\x2f\x95\x04\xa3\x0f\x9e\xea\x7d\x2c\xd6\xf8\x9d\x4e\xa2\xd4\x12\xa0\x4f\xb7\xbe\xbd\xe2\x73\x76\xb3\x33\x71\x42\x10\x5d\x24\x37\x80\x70\x93\x81\x5f\x55\x34\x12\xbf\xee\xef\xf9\x15\x45\x28\x2a\xe2\x71\x13\x79\x5e\x63\xd4\x41\xe9\xd2\x84\x09\x31\x0d\xe8\x8b\x4f\xe6\x71\x25\xe5\x36\x70\x1d\x17\xb9\x40\xd1\x58\x85\x40\x53\xfa\x21\x00\xde\x24\xc6\xa7\x1a\x66\x13\x4a\x48\x36\x52\x2b\xf9\x3c\xbe\x34\xbe\xcf\xea\xbb\x8c\x61\x0a\x5e\x84\x10\x6d\x91\xb2\xac\xe6\x6d\x4a\x4a\xba\xbb\x17\x61\xe2\xd0\x08\xe4\x2e\xe5\x32\x44\xfb\x9b\x7f\x92\xa1\x34\xbb\x1a\x39\xd2\xee\xef\x21\x5c\xbb\xa0\xee\x43\x07\x44\x3f\x4e\x12\x52\xb1\x70\xb9\xd8\x5d\x23\x90\x65\x13\xd1\x8a\xa9\xd1\x6e\xa3\x5a\xb9\x71\x15\x6a\x67\x18\xb8\x5d\x03\x2b\x6f\xf7\x18\xb3\x1d\x6c\x32\x21\x5e\xfb\xde\x9e\xa8\x47\x49\xab\x74\xa1\x51\x3a\x0e\x9a\x26\x4c\xc9\x71\x95\x26\x66\xb3\x6f\x92\x28\x4d\xac\xe1\xad\x6b\xdb\x5c\x83\xd0\xba\x58\x2d\x07\x63\x10\x8e\x36\x25\xdf\xdf\xaf\x9a\x61\xa7\xc6\xbd\xbc\xe8\x2b\x70\xa1\x0b\x8a\x1e\xda\xad\x54\x24\x72\x66\x70\x7f\xbc\x8e\x1d\xb5\x50\xdf\x12\x69\xc0\x4c\x7d\x29\xdb\x91\x16\x3e\x46\x9b\x9c\x7b\xeb\x1e\xa8\x85\xda\x20\x46\x9b\x1f\x37\x25\x6f\x35\x50\xba\x72\x3a\x50\x76\x6a\xf7\x40\x7d\x6c\xa1\xbe\x25\xd2\xf2\x0d\x1c\xbf\xd4\x40\xb5\xf0\x31\xf7\x01\x10\x01\xe7\x48\xd1\x56\x80\x56\x44\xad\x14\x18\x90\x56\x2a\xed\xa1\xb9\x7e\x2f\xd8\x25\xd5\x27\x70\x13\x59\xe4\xb7\x0c\x42\x1b\x98\xd5\x70\x80\x0f\x0b\x96\xa7\xf9\x25\x27\x6a\xd6\x39\x26\x4a\x22\xb6\x4a\x50\x86\x8c\x11\x1e\xba\xd6\xf9\x00\xde\x84\x40\x16\xa0\xe9\x72\xaf\x87\x86\x29\x92\x70\x8b\xfb\x19\xd2\x3e\xcb\xc9\x0b\x01\xc3\x46\x2f\x59\xce\x4a\x72\x3a\xaa\xf8\x74\x1c\x3d\x71\x5a\x90\xea\xc2\x34\x89\xcc\x8d\x1f\x1a\xc4\x4c\x7c\xc0\xee\xef\xda\x25\xb0\xe2\xbb\x56\x06\xce\x72\x7b\xfa\xa0\x46\x28\x39\x94\x44\xdd\x7b\xe1\xed\x39\x59\x49\xd0\xce\x4e\x82\x95\x04\x7c\xba\x93\x26\x91\xf7\x74\xcf\xe6\xbd\xd2\x24\xd8\x7b\xea\x3d\x1d\x5a\x94\x4c\xda\x1c\x89\xbe\xd0\x7a\x20\xc9\x55\x95\x80\xd5\xfc\x34\xa9\x79\x4a\x69\x72\x17\xb1\x6e\x80\xf3\xbf\xcb\x18\x6d\x0e\xc7\xc2\x7b\x0a\xd4\x9a\xf7\x9d\xdf\x0a\x04\x94\x84\xb7\x9f\x08\x38\x58\xa0\x2b\xe1\x9f\xe0\x5a\xd8\xc6\x18\x0a\x8f\x78\xf6\x38\xd8\xf3\x86\x5e\xd3\xa8\x76\xad\x21\xc1\x0d\x25\x91\x84\x99\x45\x6d\x7f\xfe\x93\x63\x24\x92\x64\xa6\x8d\x11\x4f\x24\x18\x79\x3b\xde\x1e\x4f\xda\x7b\xea\x1a\x48\xa8\x61\xc4\xff\x1f\xc3\x10\x36\x4d\xc7\xf9\x20\xf1\x11\x8a\x3e\x74\x84\x44\x92\x52\x5d\x71\x8f\x90\x52\xe0\x46\xb5\x13\x1c\x0a\xa5\x7f\x7d\x7f\x2f\x84\x19\x08\x12\x45\x5e\xbe\x04\xc1\x1d\xd4\x2b\x13\x39\x47\x64\xf6\x0c\xc6\x1b\x7a\x86\xbf\xbc\xa7\x48\x54\xdd\x30\x76\xef\x09\x26\xa2\xf7\x66\xff\x09\xd9\x87\xfe\xab\x5a\x5f\x7a\x06\x7f\x87\x7f\x90\xfa\x1c\x67\x45\xb5\x05\xf5\xd1\x24\xad\x58\x20\xed\x31\x49\x9e\xde\x75\xcf\x3a\xb6\xdd\x9e\xf7\xd2\x6b\x9a\xd0\x24\x63\x5d\xb7\x4f\xd9\xdc\xc8\x6c\x5c\x46\x6e\x1c\x37\xa1\x45\x99\x1e\x80\xfc\xaf\x47\xa4\x20\xfd\x2b\xc9\x63\x6b\x9a\x15\xd6\xf1\x25\xde\xa5\x24\x8b\x50\xf5\x7a\xb8\x59\x72\x54\xfe\x6a\xdf\x79\x82\x95\x2a\xd4\x4d\xea\xf6\x9e\x0a\xff\x32\x1d\x3b\x09\xaa\xe7\x4b\xe9\xa5\x58\x87\xba\x4e\x79\x41\x86\x0b\xa3\x38\x12\x3a\xae\x4c\xaa\x50\x10\x3e\x61\xe6\x13\xa8\xf8\x54\x34\x57\xe6\x8b\x77\x9e\x34\xf1\xc2\x34\x09\x36\x92\x58\xab\x18\xa4\x7b\x61\x9b\xaa\x3e\x8e\xa2\x3e\x9c\x7c\x92\x89\x24\x34\x94\xd0\x4c\x24\x99\x16\xda\x90\xef\xd1\x55\x10\xfc\x1c\x94\xd4\x6c\x15\x16\x19\x25\x9b\x3f\x1f\xc9\x54\x0d\x83\x97\x48\x58\xd8\x94\x62\xad\xa7\x55\x52\xf6\x80\xb9\x8d\xbc\xda\xd9\xfb\x7a\x5e\x5f\x65\x91\x70\x0f\x9f\xb3\x92\x4a\x20\x78\x96\xcd\xc4\x50\xd1\x9d\x6f\x64\x85\x00\x6e\x86\x57\x53\x8d\x57\x2d\x77\xfe\x4e\xc6\xca\x28\x25\xe8\xce\x3c\x95\xf9\x06\x01\xf0\x83\x10\x4c\x21\x41\xc0\x48\x80\xfa\x2a\x95\xb8\x18\xd4\x90\x96\x9f\x41\x81\xad\xd8\x5c\xde\x8b\x24\xbd\x7e\xf6\xd2\x93\x8e\x38\x7c\x52\x6f\xd0\xe7\xfd\xd3\xcf\xc4\xaa\xca\xb6\xb9\x99\x31\x90\xfc\x26\xa7\xbf\xbb\xc8\xb3\x38\x40\xda\xbe\x55\x5c\x62\x65\xb7\xec\x7a\x1b\x71\xf2\x67\x8b\x83\x73\xc6\x92\xea\x6c\x7e\x17\x89\x81\x95\x04\x6c\xd7\x18\xd7\x5e\xcf\x3e\x3c\x58\x55\x9f\x74\x4b\x88\x40\x84\x34\x44\x20\x2d\xe8\x89\x60\x3a\x5e\xbe\x78\xc6\xff\xf7\x64\xf6\x2c\x2d\xab\x1a\x44\x44\x06\x64\x35\x2d\xd3\x45\xfd\xf2\xc5\x33\xf1\xc3\x53\xd7\x82\x35\xc5\xa2\xc8\xf3\x1a\x1f\x75\x92\xf9\xfd\xaa\xfa\x61\x9e\xd6\xac\x5a\xc4\x53\xf6\xcb\x74\xf0\x9c\x55\xf5\x60\x47\x20\x8f\x8e\x64\x9e\xd6\xec\xb6\x7e\x76\xbb\x0f\xb2\xbb\x79\x91\x25\xac\x7c\xaa\xbb\x05\x11\xc9\xed\xbe\x4d\x79\xb7\xde\x17\x09\xab\x46\x07\x63\xf0\xc0\xf2\xbd\x64\xa2\xa0\x01\xaf\xd7\x6b\x43\x3e\xb7\x20\x77\xb0\x6a\x39\x1c\xb3\x54\x08\xe2\xbe\xba\x7b\x93\x44\xc4\xf6\x1d\xf7\x3a\x3f\x7a\xd2\x99\xfc\xec\x5f\x1a\x72\xbd\x34\xf1\x82\x28\x8a\x38\x8c\x45\x84\xa4\x84\x44\x96\xd3\xf8\x28\x49\x49\x72\x1b\x72\xbc\x30\xac\x3a\x8a\x4d\x92\xdb\xe8\x60\x98\x26\x18\x3d\x2f\x4d\x6e\xf7\xf6\x82\x15\x87\x71\x54\x33\x4a\x93\xdb\xf1\x10\xca\x46\x1c\x04\xfa\x78\x8e\x6e\x67\x0e\x7b\x3d\xa3\x57\x3e\xb4\xc3\x4f\xcb\x74\xe6\x43\x11\x6d\x63\xce\xbf\x1a\x21\xa3\xa7\x24\xef\x87\xb4\x9e\x17\xcb\xfa\xeb\xf4\xb6\x3d\x26\x48\x2e\x21\x0a\x0b\x6e\x92\x60\x05\xc4\xd5\xeb\x55\xf3\xbb\xa1\xb7\xc7\x3f\x74\x3c\x51\x26\x43\x00\x59\x0b\x4f\x14\xe2\xff\x29\x09\xee\x33\xff\xc7\x6a\x2f\xf0\xe5\x3a\x49\x93\xe8\xa9\x3f\xfa\xfb\xd3\xf1\x5e\xf0\x34\x78\x76\xa9\x37\x3c\x54\x1c\x42\x35\x15\x67\x81\x60\x9a\x44\x6b\xc2\x3f\x43\x9a\x88\xfc\xb1\xbe\x38\xc7\x97\x4d\xd0\xc8\xb1\xd4\xab\x93\xa3\x80\xca\x13\x58\x01\xce\xd0\xcb\x03\x5c\xf1\x7c\x1a\xcd\x1c\x3e\x77\xdd\x13\x06\x23\x09\xf8\x47\xe6\x2c\xc8\xe1\x13\x95\xc1\x0c\x8e\x0e\xc6\x01\x2c\x03\x7b\x47\x9d\xb3\xdb\x9a\x4f\xb4\x6f\x40\x1f\x8e\x83\x21\xd6\xdd\x47\x71\x25\x07\xe9\xa7\x10\xc0\xed\x2b\x36\x2b\x4a\x86\x73\x8d\x30\x41\xd3\x18\x93\x04\x98\xcd\xef\xe4\x21\x23\x07\x42\x53\x0c\xa1\x6e\xa2\x61\xac\x55\xb5\x6b\xe5\x20\x17\x4f\xaa\x24\xf9\xba\x56\xe0\x97\x9c\x55\xfe\xae\xd7\xb3\x32\x60\x6f\xf6\xa7\xf3\xb8\x3c\xaa\xfd\x03\x50\x06\xf9\xbf\xff\x9f\x47\xdb\x20\x9b\xd9\x59\x16\x23\xe8\x41\x10\x72\xe1\x72\x46\x4c\xf3\x79\x7c\xa9\xfc\xd0\x20\x53\xac\xdf\xed\xda\xd2\x18\x08\xe7\x48\x4a\x4a\xa1\xf7\x78\x37\x8a\x14\x79\xd4\x06\xbf\x4e\x50\xf2\xe6\xa0\x1c\xb7\xc9\xe7\xa2\xba\x78\x5b\xdc\xb0\xf2\x38\xae\x98\x0f\xdd\x44\x37\xb4\x9e\x78\xb1\xe9\xa6\xb0\x12\x6e\xe8\xde\xad\x3e\xcb\xc2\xa7\x2f\xd0\x4b\xb3\xb8\x62\x7a\xe0\x14\xea\x25\xa7\x90\x2f\x9e\x61\xce\xcb\xa7\xc1\x50\x20\xc6\xb2\xbe\xf0\xe9\x4c\x04\x79\x8d\xbb\x43\x11\x96\x19\x2a\xb3\x72\xfe\x45\x9e\x0f\x0c\x9e\xc9\xa4\x16\xf4\x66\x25\x17\x9e\xf8\x86\x68\xda\xe6\x84\x90\x57\xb7\xce\x6e\x52\x5e\x0c\x38\x13\xb0\x07\x57\xfc\x0f\xb3\xb9\xa4\xfb\x7b\x3f\x67\x37\x3b\xff\xf9\xee\xed\x19\x2b\x85\xbb\xca\xa0\x5f\xc9\xdf\xe7\xf2\x4d\x4a\x5d\x3c\x84\x99\x63\xc9\x6f\x9c\x91\xaa\x46\xbc\xca\xf0\xaa\x4e\xd9\xe5\xc9\xed\xc2\xe7\x77\x28\x81\xef\x9e\xe7\x8f\xfe\xfe\x72\xfc\x6f\xc1\x4b\x2f\xf4\x52\x2f\x08\x46\x07\xe3\x90\xe5\x09\xaf\x01\xee\xb7\x0a\xee\x25\xf2\x22\x37\x25\x67\xc0\xca\x0d\xe7\x69\xc7\x18\x88\xc2\xa1\x44\x12\x08\xef\x1e\x36\x17\x0c\x25\x23\x2b\xa0\xda\xdb\xdc\x9a\x86\xdd\x28\x52\xab\x9f\x59\x24\x22\x67\xb7\xf5\x59\x7a\x91\xa5\xf9\x65\x63\xf3\xdb\x84\xd9\x5a\x63\x04\x48\xcc\xdd\x89\xd5\x9f\xd0\x3b\x45\xbd\xb7\x22\x49\x67\x29\x2b\x23\xe1\x86\x6d\x9e\xce\xea\x6f\xd9\xdd\xfd\x3d\x7e\x73\x1e\x90\x7c\xc6\x19\xcd\x9c\xd6\x65\xf6\x2d\xbb\x0b\x2b\x36\x2d\xf2\x24\x2e\xef\xd0\xc2\x10\x33\xc1\x87\xf7\xcb\x43\xf9\xc8\x26\xdb\xe1\xe4\xcc\x00\x37\x7a\xb2\xc6\x54\xb1\x83\x75\xed\x30\xc9\xde\xac\x7f\x61\x3b\x5d\xc3\xe4\x8b\x14\xbc\x11\xda\x06\x78\xac\xbc\xfc\x5c\x05\x8e\xf5\xea\x4b\x0f\x34\x41\x37\x32\xb6\xb0\x70\x82\x18\x6c\xff\x63\x4d\x45\x5a\x46\xe3\x9f\x7d\xcf\x70\xf8\x7f\x7b\x6e\xfa\x7f\x4b\xab\xbf\x66\xc5\x45\x9c\x7d\x8c\xeb\xb9\xc3\xe0\x5b\x67\x22\x77\xcf\x17\xc8\x26\x43\x6f\x5b\xd7\xe5\x0f\x6b\x74\x5d\xfe\x48\x74\x5d\xd6\x59\x92\x3c\xd0\xf0\xda\x61\x1b\xfe\x97\x8d\xb6\xe1\x7f\xa1\xa6\x24\xc5\x45\xc5\xca\x6b\x7b\x84\x0f\x26\x93\xbe\xcc\x01\xb0\x0b\x60\x8b\x3e\x74\x02\x9b\xf9\xc4\xef\x1d\x5f\xa8\x1b\x2d\xb7\x5b\x46\xc0\x64\x10\x94\xf1\x0a\xd8\x7b\xc8\x77\x6f\x76\xb5\xa8\xef\xc0\xe4\x18\xde\x88\xbf\x07\x75\x52\x99\x86\x20\x69\xcd\xae\x2c\x88\x34\x4f\x5b\x02\x8d\x92\x49\xc5\x56\xa1\xbe\x29\x82\x94\x8a\xe6\x5e\xa7\xc9\xb1\x70\xfe\x3f\x54\x9a\xad\x35\x04\x29\x85\xfc\x1f\xd2\x2c\x43\x80\x81\x39\x06\xc2\xfe\x2d\xaf\xbd\xd0\x6a\x51\xa4\xcb\x07\x9e\x5a\x43\xc2\xd5\x42\x7c\x04\xb2\xc3\x42\x09\x15\x23\xfc\xc9\xca\xd1\xe5\x8f\x7a\x41\x46\xc8\x57\xbc\x32\xf1\x3b\xf4\x90\x0f\xf1\x82\xc1\x01\xf6\x08\x68\x86\x46\x57\x01\x42\x54\xf2\xa0\x09\xc2\x56\x97\x07\xc5\xd6\x7d\xd1\x7a\xb6\xee\xbe\xe0\x98\xc6\xe0\xd8\x1c\x7a\xf2\x36\xfd\xa4\x50\x08\x86\xb2\xab\x71\x92\x7c\x99\x7e\xea\x69\xd3\xdd\x84\x55\x21\xfb\x6a\xa1\x62\xf9\x98\xe3\x28\x3b\xf5\x8b\x95\x9b\x39\xb9\x5a\xd4\xcb\xdf\x43\x46\x63\xf3\xcc\x2a\x71\x17\x92\xb0\xe4\x44\xae\x6d\x39\x94\x76\x7a\x5f\x20\xeb\x07\xe6\xab\xac\x35\xeb\xad\x7e\x22\xdb\x23\x63\xcd\x42\x94\x4f\xc1\x3c\xcb\x9a\xa9\x3d\x8f\x4c\xc3\xfe\xa8\xcf\x5e\x4f\xfd\xa4\x1e\x71\x10\x5f\x95\x25\xba\xfb\x75\x59\x5c\x7d\x84\x6b\x97\x88\xb6\x00\xd7\x71\x0e\x20\xe4\xf9\x13\x9d\x10\xaa\x9f\x70\xd3\xe7\xf7\x43\x1d\x42\x5f\x83\x49\x5f\x59\xb8\x9f\xaf\x8a\xeb\x34\xbf\x3c\xca\xb2\x88\xf6\x2a\x8a\x22\xb8\x5e\xce\x7c\x02\x21\x9d\xc8\xe2\x9b\x08\xf8\x37\xe8\x03\xbe\x38\x0d\x32\x0e\xe6\x75\xf1\x89\x9d\xb2\xe9\xb2\xac\xd2\x6b\x96\x91\x88\x08\x42\x59\x5f\x77\x2e\xe1\xbd\x7b\xfd\xe1\x1d\x06\x6d\x0d\xc1\x91\x1b\xfa\xfb\xe2\xb7\x5c\x18\xeb\x3d\x8a\xd5\xfe\x21\xbf\xf0\xbe\xc4\x1c\xfe\x73\x7f\x3f\x58\xa9\x8e\x45\xba\x8b\x28\xa9\x50\xdf\x64\xba\xc5\x1c\xeb\x5d\xbb\x7e\x8a\xd1\xec\x4a\x68\x4c\xf0\x9f\x38\xf2\xa3\x31\xe8\xdb\x03\xd5\x94\x63\x6d\x92\x50\x4d\x5f\x87\xdb\xec\x45\x88\x56\x9c\x07\x2b\xa3\x0e\xb2\x96\x8c\x74\x5c\x4f\x9e\x60\xa2\xa2\x48\x8a\xd3\x0c\xa0\x5e\x8f\x9e\xd3\xbe\x91\x17\xb8\x1a\x32\x21\xee\xef\x8d\x6f\x73\x52\x40\xfc\x80\xd3\x03\x83\x22\xc5\x10\xbc\x88\xec\x6a\x1f\x4d\x27\x8e\x6a\x5e\x2c\x18\x82\x05\x08\x2e\x1f\xd8\x8b\xc7\x72\x6e\xcc\x76\x43\x75\x70\xc1\xd0\x8a\x0f\x88\x33\x3f\x48\x93\xdb\x26\x18\xea\x59\x40\xa1\x0b\x1a\x2d\x09\xd3\xa3\xcd\xbb\x70\x97\x69\xda\xa0\xb5\x10\xda\x63\x49\x76\xab\x31\x8e\xba\x78\x60\x35\xa7\x73\xee\xef\xd5\xef\x46\xc3\x38\x3b\xaf\x0b\xb5\x3a\x46\xb2\x2a\x47\x6f\x42\x92\x9f\xce\x7c\xc9\xc4\xf4\x13\x56\x43\xb4\x40\x82\xa7\x9b\x06\x46\x1a\x49\x7c\xea\x90\x02\x31\xdc\x00\x07\xa1\x46\x28\x68\x42\x0b\x71\xcb\x36\x45\x3c\xf5\xe8\x49\x16\x04\x9f\x64\x22\x5f\x59\xb3\x2b\xf1\xea\x47\xcc\x81\xc4\x15\x10\x27\x88\x82\x44\xf0\xd8\x82\x4b\x51\xa7\x11\x51\x08\xcd\x30\xd9\xa2\xfe\xf1\x87\xf7\xe7\x47\x6f\xde\x9f\x9c\x4e\xde\x1d\x7d\x1c\xe9\xf5\xa0\x1a\x1b\xc3\xb0\x9a\x18\x84\xa4\x42\x75\x34\x5c\xc3\x10\x05\xc3\x75\x0d\x44\xab\x65\x36\xf0\xb2\xd4\x0b\x0b\xf1\xb7\x8e\x2f\x32\x36\xf0\xea\xd2\x0b\xeb\x39\x8b\x13\xf1\xf3\xa2\x48\xee\xc4\xcf\x59\x51\xd4\xe2\x67\x39\xf0\xea\xc4\x13\x21\x86\x06\x1e\x0a\x47\xbc\xa6\x4b\xfb\xd2\xc4\x64\xc3\xdd\x50\xb9\xe2\xda\xe8\x38\x7e\x4b\x67\x2e\x8f\x71\x23\xb1\xe1\xfa\xf6\x25\x1d\x14\x7c\x69\x5f\x15\x5f\xfa\xc2\xf7\xd9\xd7\x37\xe5\xd6\xe7\x5c\x4c\xcf\x6b\x3d\x3b\x9b\x3c\x61\x6c\x72\x9e\xe1\xb0\xba\x69\xdd\x88\x7e\x4f\x6f\x44\x8f\xbd\xd6\x39\xfc\x10\xfc\xc9\xf4\x43\xe0\x74\xda\xf1\xe7\x96\xd3\x8e\x09\x7a\x00\x07\xb6\x90\x38\x59\xd4\xee\xc0\xb5\x3f\x24\x7a\x41\x72\xf9\xec\x58\x37\xb0\xe1\x2a\x05\x97\x90\x57\xc2\x92\x66\xe0\x91\x9d\xa5\xb3\x5e\xa7\xd5\x22\x8b\xef\x06\x12\x47\xdf\xf5\x28\x9b\xb0\x8b\xe5\xa5\xba\xb6\x7d\xcb\xee\xe4\x51\xe4\xad\x56\xde\x5e\x07\x0c\xc6\x13\xf7\xbd\x81\x17\x8c\x0e\xc7\x7b\x5e\xd3\x78\x4d\x13\xb4\x2e\x69\xe6\xe5\x4c\x1f\x1c\x45\x99\x5e\x0a\x8f\x23\x5e\x68\x71\xdc\xb7\x60\xe6\x5d\xb5\x12\x43\x64\xeb\xcc\x0c\xe1\xc5\x04\xf3\x38\xd7\x0f\x6b\xe5\x2d\xf8\xbc\x69\xfb\x9e\x56\xb1\x06\xd1\x02\x0b\xed\xb5\x2f\xe2\x52\xfa\x50\xad\x46\xde\x5d\xca\xb2\xc4\x1b\x1b\xa1\xae\x54\xb9\x26\x94\x34\xc8\x31\xa4\x9f\xd8\x9d\xd4\x99\x94\x6a\x4c\x4e\x49\x39\xaa\x7c\xe2\x4b\xa2\xf6\x07\x44\x78\x04\xc3\x4d\x50\xa0\x9a\x14\xea\x38\xe2\xeb\xeb\xa2\x44\x6d\x15\x02\xac\x8b\x12\xeb\x46\x91\x42\x5d\x26\x89\x51\x3a\x57\xc0\x4d\xd0\x97\x84\xcd\xef\x6a\x1e\x96\x99\x50\x49\x2f\x72\xf6\x2d\xbb\xbb\x29\xca\xa4\x6a\xbf\x72\xc3\xb9\x3b\x80\x96\x48\xd4\x54\xb8\xd1\x34\xe1\x04\xc6\x77\xcd\xcc\x28\xdb\x75\x29\x92\x4f\xe2\x3a\x06\x1b\xf6\x50\xdb\xe9\x8a\x53\x5d\x27\xe8\x41\x6a\x0f\xa3\x08\xb6\x29\xbe\x04\xc7\x4f\xcd\x0f\xa0\x82\x55\x5a\x7d\x9f\x96\xf5\x32\xce\x50\x17\x5f\x9c\xc1\x03\xcf\x13\x77\xeb\x5b\x68\x68\xe0\x68\x73\x20\x7f\x48\x1f\x17\x03\x03\xf7\x34\xaf\xd2\x84\xfd\xb5\x2c\x96\x8b\x57\x97\xce\x1d\x10\x0c\x78\x3a\xa9\x59\x6f\x04\x3a\x84\x2e\x20\xe5\xc5\x47\xe2\xf0\x3a\xae\xe3\xc1\xea\x93\x9c\x1d\x0d\xdf\x37\xa6\xcd\xe7\x7b\x55\xe1\xd5\x89\x30\x04\x98\x0a\xf1\x30\x45\x7f\x24\xee\x85\x2f\x9d\xb9\xab\x09\xd2\x1d\x9d\x50\xf3\x6a\xb9\x2a\x75\xda\xab\x75\xbd\x82\xf5\x66\x2c\x4e\xa3\xb6\xb0\x62\xb9\x30\x5e\x27\xbe\x2e\xe0\x8f\xb8\x23\xc1\x6f\xd8\x1a\x62\x44\xab\x48\x90\x68\xcb\x89\x7a\x78\x18\x68\xa3\x77\x93\xab\xd3\x95\x90\x5e\x49\xcb\x7a\xa1\xff\xee\x00\x11\x78\x34\xaa\xd6\x36\xbf\x48\x2d\xcf\x84\xc7\x04\xec\x8d\x2f\x6a\x1c\x90\x0e\x98\x6e\x9a\x64\x77\x20\x00\x58\x37\x63\x26\xce\x84\x0d\x3c\x99\x29\xe2\xde\x28\xae\x37\x25\xf0\x16\xe3\x75\xb5\x04\x56\x73\xa2\xa4\xdc\x9f\x6d\x67\xb9\xc1\x49\xac\xe5\x58\xb6\x3b\x90\xb8\xcb\x1e\xb9\x83\x51\xdb\xec\x60\x4a\xab\xd3\x3f\xc4\x53\xee\xba\xd7\x01\x51\x30\x8f\xeb\xf4\x9a\x0c\xdf\x6f\x91\x67\xfc\x02\x9e\x65\x49\x82\x8d\xe3\xa1\x8d\xe4\xe1\x17\xb2\x6f\x6d\x3f\x0c\x38\x58\xd2\x77\xb8\x7e\xdb\xb2\x6f\x07\x2f\x6a\x73\x9b\xbf\x5f\xc3\x6d\xfe\x81\x70\x9b\x2d\x1e\xf6\x8f\x5b\x7a\x7c\xfd\xa3\xdb\xe3\x6b\x97\xd7\xda\x3f\x39\xbc\xd6\xc2\x48\xf1\x3a\x3a\xe0\x2b\x0b\xb4\x1d\xb6\xde\xf1\x98\xb1\xce\x72\xde\xe1\x21\x6b\x1b\xcb\x79\x27\xbf\x0d\xcf\x15\x06\xc3\xdd\xf2\xa2\xe0\x98\x77\x24\x7d\xca\x3f\xa2\xbd\x1a\xfb\x66\xbe\x10\x44\x76\xf8\x0c\x3e\x74\x2c\x03\xf7\x33\xcc\xef\x1f\xf2\x0c\xf3\x7b\xf7\x33\x0c\x50\x88\xa3\xc8\xde\x0c\xfd\x23\xea\x80\x98\xcc\xb0\x6f\xcd\x6e\xe0\x78\x97\xa2\xd7\x0e\xba\xd8\xc3\xd5\x04\x2b\x1c\xe0\x9f\x0d\xbc\xbc\x25\xfc\x25\x3c\xbc\x4a\xf4\xe4\xa9\xa3\x74\x5d\x5b\x10\x21\x72\x26\x2a\x41\x39\x9c\x84\xfa\x27\x6b\xa4\xcb\xca\x05\x01\x11\x38\x1b\x52\x20\x38\x34\xd3\xe4\x56\xb3\x94\x6e\x31\xa5\x84\x15\xf2\x22\xd5\x11\x95\xbe\x46\x58\x78\x6d\xca\xc3\x54\xb3\xda\x75\xd1\x6a\x7d\x61\x94\xec\x4c\x2c\x51\x71\x04\x32\x1e\x71\xdf\x81\x81\x46\x19\xb7\xc5\x59\x91\x54\xf1\x46\xa1\x13\xf0\xb5\xa3\x2d\x66\x0f\x56\xeb\x06\xb5\x2d\x9c\x47\x5d\x22\x03\x45\x61\x98\xe5\xea\x12\x45\x00\x83\x5a\x80\x0c\x8f\x1a\x37\xde\x1a\xcf\x15\x54\xaa\xa7\xa5\xda\x28\xf3\xd7\x59\xc0\x23\xea\x4f\x43\x54\x6d\x7a\xd1\xd2\x8f\x48\xc7\xf6\x13\x5f\x47\xdb\xf8\x6a\x22\x74\xdf\x55\x1f\x49\xb1\xd6\xb3\x86\x5d\x0f\x32\x8e\x1a\x6f\x62\x0e\x46\x07\x52\x84\xda\xb4\x0b\x6b\xc5\x1d\x08\x83\x31\xb2\x01\xc6\xfd\x69\x91\x4f\x63\xda\x7f\xdd\x20\x9d\x59\x65\xaa\xe6\x98\xf3\xed\xe7\xb9\x03\x6f\xe2\xe0\xd7\x18\x0b\x0c\xa1\xd1\x1a\x75\xfd\x82\xb7\x76\xd0\xff\xc5\x1a\x75\x5d\x6c\xe3\xa0\x1b\xf5\x18\x8f\x66\x52\xd0\x6f\x2c\x3a\x53\x03\xdb\xde\x6f\x4d\x88\x03\xe5\x94\x93\x74\x14\x94\xc1\x50\x83\xfe\x75\x91\xc5\x75\x9a\x31\x3f\x08\xf1\xd8\xd0\x2d\x23\xfb\x27\xc6\x5f\x10\x2c\xbd\x5b\xdc\x2f\x51\xbc\x86\xf3\x42\xd8\x9f\x8b\x0a\x9a\xa0\x09\xdb\x02\x1f\x41\xd5\xbd\xd0\xb5\x6e\x4d\x91\x78\x65\xbe\x23\x09\x8c\x24\xd3\x4d\x56\xbb\x49\xbe\xe5\x83\x1b\x4b\xa4\x2a\x28\x3a\x3d\x14\xab\xe8\x9a\x2c\x1d\xac\xdf\x78\x24\x93\xbb\x8a\x3e\xd0\x75\x6e\xb1\xd0\x85\xa6\x7c\xc3\x93\x51\x94\xa1\xa0\x4f\x71\xc0\x87\x61\x30\x0e\x55\x41\x74\x60\x84\x89\x88\x81\x7f\x8a\x1e\x23\x00\xde\x64\x45\x86\xb9\x7a\x1c\x8b\x71\xed\x48\xca\x17\x39\xb9\x23\x1f\x34\x4e\x58\x76\x8b\x4e\xc2\x00\xb5\x25\x1b\xfc\xae\xaf\x0d\x77\xdc\xc3\x6c\xee\x29\x63\x94\xb1\xf9\xc6\x58\x0a\x1a\xdc\x58\x09\x4d\x68\xe1\x67\x0f\x8a\x43\x2c\xc2\xb1\x03\x4b\x18\x38\xa6\xaf\xdb\x27\x34\xfa\x86\xc4\x27\x0f\x7a\xaf\x27\x95\xe1\x23\x19\xec\x0c\xb5\xde\x7b\x3d\x92\x4f\xaa\x20\x1b\x82\x4a\x3d\x54\x58\x2b\xf0\x74\x42\x9e\x79\xcc\x41\x24\x15\x19\x39\x66\x77\xc0\xa9\x1d\x39\xe5\x84\x23\x07\x92\xb2\x4e\xa7\x84\x9c\xd7\x2d\x5d\x8c\x47\x9c\xf0\xe4\x83\x3e\x29\x07\x06\x3e\x4e\x85\x90\x2f\x8c\x08\xae\xa0\x65\x35\x97\x1b\x8b\x64\x02\x3e\x2c\xaf\x96\x25\xee\xcb\x92\xe5\x47\x25\x7b\x93\x5b\xde\x73\x1c\x4f\xf9\xce\x32\x32\x5e\x56\x30\x84\xdb\x9c\x8f\xbc\x6a\x7f\x22\x38\xf2\x70\xe5\xa4\x85\x28\xee\xfd\xd6\xb9\xbb\x65\x5e\x07\x8e\x22\xdb\x6e\x30\xcd\x91\x42\xd3\x06\x1d\x14\x83\x6c\x8b\xf6\xce\x5b\xd5\xf3\xb2\xb8\x01\xb7\x24\xfa\xaa\xe5\x7b\x7f\x2b\x96\x3b\xd3\x38\xcf\x8b\x1a\x15\x42\xef\x90\xcf\x06\x46\xb5\xda\x01\xc5\x55\xf4\x60\xc4\xff\x20\x16\x78\x15\xf0\xda\xe3\xa2\x0d\xae\x3a\x46\xc6\x7c\x38\x75\x1e\x15\x3a\xe0\x99\x78\x6d\x7f\x61\x50\x79\x74\x70\x81\x4e\x46\xd3\xb1\x0e\x50\xbc\x05\x2d\x75\x8d\x49\xb9\xcc\xfb\xd5\x74\xce\x92\x65\xc6\x3e\xe4\x53\xe2\xe4\x4e\x10\x0a\xf7\x3c\x71\x12\xb5\x69\x95\x69\xef\x8c\x84\x13\x02\xda\x62\x70\x1a\xa0\x3d\xa1\x75\x57\x16\x25\xbb\x4e\x8b\x65\x15\x0a\x2b\xfd\x6b\xf3\x7a\xce\x67\xcf\xba\x92\x0b\xff\x1f\x21\x68\x5a\xb4\xf4\x5c\x88\x57\x10\xb7\xae\x08\x58\x8a\xec\x4a\xd6\x41\x58\x1d\xd3\x0b\xa9\x1f\x08\x3b\x7d\x6a\x50\x17\x61\x6c\x57\xbe\x35\x95\x9e\x89\xc9\x4c\xbc\x99\xbd\x67\x2c\x61\x89\x64\x2a\x70\xd2\x34\xde\x22\x34\xaa\x2c\x6d\xba\x5e\x25\x60\x92\xa9\x44\x9b\x0b\xb3\xef\x7a\x5a\x75\x9a\x3d\x82\x12\x7b\x34\x31\x95\x99\x7a\x08\x86\x56\x7b\xd3\x8c\xc5\xa5\xf4\x66\xd9\x06\x07\x0b\x8f\x2f\x8d\xa2\x19\xe2\xee\xd1\xd5\xd8\x23\x2c\x84\xbc\x54\x1d\xc9\xbb\x49\xb3\xec\x0d\x34\xa0\x3d\x5c\x82\xad\x28\x56\x15\xa8\x2e\xf7\x93\xe2\x4a\x78\x3a\xed\x83\x5b\x47\xdf\x6a\xae\x5f\x09\x3b\x44\x72\xf5\xa4\x85\x16\x25\x48\x11\x10\xf3\x56\x11\x0b\x55\x79\x6e\xeb\xdd\x13\xac\xae\xfb\x75\x19\xe7\x18\xe9\xfc\xbc\xf0\xbd\x14\x77\xde\xf0\xda\xc5\x3e\x30\xd5\x9b\x6b\x67\xbf\x93\x34\xb1\xba\xdd\xed\xf4\xcf\x90\x60\xac\x15\x66\x4b\x69\xf0\x68\x1b\x05\x73\x53\x90\xdd\xae\xe6\x99\xc4\x60\x0d\xc8\xa2\x64\x13\xe5\x86\xb3\x13\x2a\xcd\xdd\x41\xd3\x0c\xa0\x79\x5c\x49\x7b\xd8\x0d\x75\x25\xc5\xd5\x7a\xb4\x81\x19\x10\x3a\xed\xbf\x45\x09\xf2\x3a\x59\xae\x43\x1f\xfc\xd0\xd4\x07\xdf\x4a\x90\x2b\x59\x82\x4d\x42\xdc\x45\xc9\xd0\x5d\xd7\x26\x95\x71\x79\xd8\x6e\x0a\x47\x40\x68\xb2\x35\x30\xed\x1a\x5f\x7f\x78\xb7\x29\xa4\xb8\x9e\xcc\x75\x52\x58\x45\xab\xa8\x34\x70\x56\x16\x57\x78\xe0\xa5\x79\x5d\x44\xab\x66\xc8\xff\x2a\x66\x49\x25\xe8\x21\x10\x21\x44\x0c\xb0\x00\x81\x08\x1e\x6b\xa0\xd4\x20\xad\x81\x21\x03\xb4\xb6\x26\x3e\x38\x14\x40\x97\x0b\x54\xa4\x59\x58\xf1\xef\x45\x58\x54\xec\x2f\x3f\x3d\xf9\x2f\xdb\xd0\x5e\x81\x06\xa8\xc4\x9b\xe6\x4b\xd6\x20\xb7\xc4\xab\x1f\xa9\xfc\x71\xc8\x8b\x93\x6f\xa5\x7b\xc5\xe1\x0c\x1b\x99\xae\x30\x5b\x44\x3c\xbb\x92\xfd\x1a\x28\x26\x55\x8d\xf7\x40\xfd\x0a\xa1\xbb\x03\xf8\x3f\x94\x83\x38\x50\x5c\x26\xf1\x14\x47\x58\x3a\x3d\x25\x03\xfd\xd3\x50\xd3\x32\x03\x84\x6d\x41\x39\x35\xc9\xfb\x99\xc2\xb8\x74\xbc\xa7\xa9\x07\xbb\xff\xd5\x9e\x52\xed\xd7\x0a\x07\x95\xe9\x78\x74\xb1\xe8\x4c\xc7\x39\xb9\x22\x6a\x0d\xe6\xed\x6a\xcd\x45\xe3\x69\xbd\xc3\x07\x81\x14\xdd\x29\x96\x75\x95\x26\x6c\xa7\x98\xc1\x35\x03\xcf\xb7\x34\xbf\xdc\x59\x94\xc5\x94\x55\x20\x10\x78\xe2\xf0\x6f\xa0\xde\xb6\x9b\xf0\x92\xd5\x0e\xef\x32\xd2\x13\xe3\x32\xcb\x9a\x90\xb8\x07\x77\xf9\x4a\x00\x25\x6c\xb1\xae\x5b\x55\xd9\xf2\x03\x75\x6e\xa2\x9f\x30\xc1\x12\xf6\x27\xf2\x2a\x21\x78\x0d\xbc\x5f\x60\xec\x93\x0e\x88\xa1\x33\xd9\xf0\xb3\x81\xe2\x79\x37\x77\xed\xe8\x09\x72\xe6\x61\xc9\x84\x78\x50\xde\x38\x51\x37\x5d\xca\x07\xd4\x4d\x73\xbb\x5d\xaa\x4f\xf8\xd1\x66\xf3\x38\x9b\xfd\xd9\xde\xfe\xad\x83\x11\xfa\x8d\x6d\xda\x36\x43\xf0\x28\x3b\x33\xdb\xb8\xeb\x77\xc4\xb8\xcb\xc9\x4e\x3c\x7a\xff\x9a\x07\x3b\x82\x93\xfd\x38\x8d\xb3\x6c\xe7\x5f\xff\x7d\xa7\xc8\x77\x62\x58\x6d\x3b\x17\x8c\x6f\x3f\x51\x84\x25\x9e\xcd\x1a\x88\x73\x52\x9f\xa1\x78\xb0\x69\x88\xf0\x41\xb4\x61\x76\x55\xfb\x16\x7e\xe1\xc8\x23\x35\x78\xe3\x20\x20\x4b\xfa\x71\xf5\xc9\xe2\x58\x59\xd7\x56\x7f\x50\x95\x66\x25\x58\x31\x68\x96\x3f\xb2\x3e\x28\x8b\xd5\x54\x4e\x8a\xf6\x80\xba\x38\xb5\x7a\x2a\x08\xd5\xd3\x70\xa7\xdf\xef\x07\x72\x18\x1f\x46\x49\x52\x7a\x6f\x22\x12\xaa\x8e\x53\x81\xf0\x06\x5b\x90\x16\xe3\x16\x32\x7a\x28\x49\xe8\x38\xde\xb7\xa2\x4a\x1d\xbe\xd3\x37\xa8\xf5\x3c\x80\x0d\xf9\x9f\x76\x13\x72\xd2\x1c\x07\x65\xb3\xd9\x0a\xc7\x6d\xa8\x4d\x21\x1d\x57\x21\x07\x85\xfc\xbd\x49\x21\x37\x3b\x6f\x5f\x43\x03\x1d\x37\x20\x9b\x91\xfa\xd3\x1a\x46\xea\xcf\x84\x91\x6a\x5f\x21\x6c\xca\x47\x25\x9f\x4f\x2c\xb1\x63\xc5\x32\xe9\x64\x82\x5d\xd1\x60\x32\x4a\x64\x21\xbd\x6b\xb3\xec\x95\xf0\x17\x55\x31\xf4\x98\x1c\x0c\x88\x77\xb6\xc0\xcd\xe7\x68\x41\x23\xca\x7f\x3b\x62\xcd\x80\x98\x07\xbe\x83\x15\x01\xc4\x9f\x04\x9b\x86\xc0\x11\x0e\xa4\x3f\x4b\xf3\x44\xb4\xfd\x26\x47\xab\x3c\xe9\x35\x41\x80\x37\x96\xcf\xab\xff\xe3\xed\xb5\x7a\xfb\x26\x41\x27\x0d\x6e\x02\x87\x52\x2e\x53\xab\x59\x18\xc2\x88\x17\x4b\x53\x24\xa4\x2e\x34\x52\x35\x72\xa3\x8c\xbb\x62\xf5\x4e\xac\x7c\x29\xec\xd4\xc5\x4e\xbc\x93\x17\xf9\x3e\x6f\x02\x75\xa5\x77\x6e\xe6\x0c\xe5\xdd\x12\x28\xad\x76\xe2\xac\x64\x71\x72\x27\x25\xe1\xaf\x3f\xbc\xeb\xeb\xe8\x3d\xa8\x62\xed\x38\x9e\xc8\x4b\x6b\x97\x2c\xee\x38\x63\xb1\x8c\x98\x22\x98\xc1\xa9\x4e\x62\x89\x94\x2f\xfb\x22\x93\x08\xd8\xa4\xc9\x12\xaa\x85\x18\xcc\xe2\x7a\x3e\x16\x59\xce\xbc\xa8\xd3\x19\x3c\xc6\xbe\x36\xa0\x9d\x2d\x81\x94\x5d\xeb\x9f\xfc\x6a\x5c\xb0\x75\xb8\xea\xa5\x3f\x59\x27\x64\x07\x03\xc5\xe4\x96\x63\x48\x92\x83\x55\xc6\xf2\xc8\x61\x1b\xda\xe9\x69\xc8\x7e\xc9\x5f\x37\x88\x4d\x63\x8f\x22\x5a\x8b\xa2\xb2\x8e\xfb\x36\x72\x6d\x44\xa7\x0a\x65\xa4\xaf\x6b\x8c\x6e\x54\x91\x58\x27\xe6\xd6\x14\x8b\xcb\xb7\xa2\x1e\x19\xee\xe3\xf8\xfd\xa6\xb1\x2f\x01\xc4\x0d\x4f\x79\xc9\xea\x50\x3e\xda\x05\x2b\xf9\x0b\x15\x97\x31\x7b\x9d\xf2\xaf\x26\x80\xdb\x9c\xfa\x44\x40\xf9\xe0\x33\xdf\x75\x2a\x6f\xef\xe5\x43\xb1\x06\xbf\xf6\x25\x62\xdb\xd3\xb6\xe3\x74\x73\x1c\xba\x6d\x59\xc2\xa3\x0e\xdd\xf6\xd9\xed\x38\x73\x6d\xc1\x9b\x7d\x1e\xea\x07\x4b\xf7\x69\x88\xef\x45\x48\x2f\xb5\xbb\x04\x11\x62\xdf\x77\xf2\xfa\xd7\xe2\xf1\xd7\x45\xe0\xcf\x8a\x2b\x56\xcf\xf9\x9d\xe5\xae\x58\xee\x24\x69\xb2\x33\x8d\x97\x15\x4b\xe4\x7d\xa6\x2e\x76\x4a\xb6\x8f\x35\xee\xc0\x6b\xc6\x4e\x5a\x0b\x41\x03\x4b\x76\x2e\x96\xb5\xd0\x97\xe4\xc9\x37\x71\x25\xde\x60\x58\x02\x32\x38\x4a\xf2\x43\xe7\xbd\x06\x7a\xa6\x1f\xf1\x0c\xf3\x12\xf1\xfc\x04\x5d\x16\x8f\x7a\xeb\x88\x95\x36\xdc\xc6\xac\x96\xd2\x5b\xab\x95\xe1\x36\xba\x77\x76\x33\xd1\x56\x6a\x77\xfa\x79\x6e\xd8\xf5\xce\x27\xdf\xf7\x90\x84\x6f\x50\xec\x50\x8e\xac\xd4\x73\xda\x36\x47\x15\x1c\x88\xea\x31\x52\xea\x57\x92\x57\xd1\xad\x0e\x34\xe3\x61\xcc\xcd\x44\x08\x23\xfc\xe1\xba\x23\x27\x58\x6d\xbe\x41\x91\x27\xaf\xf5\x97\xa9\x07\x08\xcd\xb0\xa0\xc1\xbb\xcc\xe3\x9a\xb3\xa6\x8a\x39\xb9\x60\x2c\x57\x8b\xda\xeb\xb8\x43\x7e\x36\x8b\xe5\x9a\x92\x76\x31\x7d\x1e\xb4\xf8\xa4\x9f\xed\x0c\x92\x44\x67\xcb\x13\x08\x9e\xb5\x1e\xeb\x2d\xca\x75\xc5\x34\x4f\xa6\xcd\x4f\x6e\xbf\xf6\x11\xf4\x85\xfc\x25\x6d\x75\xd9\xeb\x38\xc6\x1c\x22\xad\x8e\x07\x2d\xe7\x21\x44\xde\x6c\xe8\x73\x8d\xb4\x6b\x50\x87\xd1\xeb\x0f\xef\xc2\x15\xc6\x44\xb6\x08\x0c\xa7\x9d\xa8\x56\x04\x24\xd7\x19\x38\xf5\xda\x36\x0c\x0a\x46\x1e\xdc\xa9\xc6\x8d\xd2\x17\x53\xf6\x7c\x58\x91\x08\x83\x0b\x59\xea\xe6\x23\x34\xad\x21\x31\x4e\x92\xaf\x2c\x85\x2d\x7d\x43\x0a\x37\xd2\x05\x20\xae\xfc\xbc\xc3\x03\xee\x69\xb5\xa3\x4a\x8b\xf3\x0d\x86\x05\xfd\xbf\xed\xf0\x8b\x4f\x9c\x65\xc5\x0d\x90\x85\xa0\x09\xd9\x6d\xda\x22\xb5\x5f\x60\x24\x50\xb5\x50\x8d\x84\x88\x05\xd2\x3d\x1e\x9d\xe4\x10\x88\xd4\x2c\x7f\x0c\x55\xa4\x07\x76\x07\x89\x94\x87\xbb\xb7\x9e\x98\xbc\xfe\xf0\x6e\x1b\x4a\x42\x9f\xe4\x1f\xcc\xcc\xfe\x12\x5c\xea\x97\xe0\x42\xbf\x10\x15\x68\x3d\xfd\xda\x7c\xa3\x7e\xa1\x5c\x6d\x5a\x1a\x84\x3b\x22\x07\x7d\x07\x73\xc0\xff\xfb\x26\x65\x65\x5c\x4e\xe7\x77\x44\xad\xc6\xc1\x1a\xe0\x55\xca\xa9\x28\x33\xcb\xf1\x28\xc2\x8b\xf0\x35\x71\xb7\x0f\x8d\x80\x83\x2e\x46\xd5\x6a\x94\x97\xc9\x8b\x22\xb9\x93\xca\xa1\x95\xf2\x78\xe9\xd0\xd8\x69\x2b\xbc\x48\xa6\xa4\x0b\x51\x87\x66\xcb\x03\x39\x94\xeb\x35\x5c\x9d\xf1\x3c\x86\xac\x90\x7c\x50\xda\x96\xbb\xd8\x5d\xc3\x5d\x74\xb3\x09\xdd\x3b\x53\xad\x91\xb5\xbb\xf3\x7a\x3b\xeb\x52\xf3\xcc\xb6\x5e\xaa\x50\xb9\xbf\xcb\xf6\x14\x6e\xdb\xc4\x82\xd3\x76\xbc\x88\xce\x40\x44\xf4\xe4\x87\xdb\x6d\x3e\xee\xc1\xbb\x62\xf5\xc4\x61\x2d\xba\x56\x5c\x2e\xf9\xac\xcd\x46\xa7\x98\xf1\x00\x7b\x56\xd3\xf8\xd4\xf6\x5c\xa2\xb4\xa5\x9f\x11\x6d\xea\xed\x0c\x55\x69\x7d\xca\x54\xc1\xed\xa3\xe5\xa1\x51\x83\x8d\xc2\xd3\x62\x61\xb7\xe7\x76\x14\xaa\xe6\x04\xa3\xf5\x6f\x63\x3c\xbc\xee\x05\xc2\xc8\x03\x7f\x14\xbf\xcd\x07\x85\x5f\xc7\x38\x97\x24\xd8\x68\x1e\xda\x78\x1e\xda\x88\x1e\xda\x98\x3e\xb7\x31\x7d\xde\x1a\x4b\x1b\xd3\xe7\x36\xa6\xcf\x6d\x4c\x9f\xdb\x98\x3e\xb7\x31\x7d\xfe\xa7\x2f\xc3\xa1\x3f\x50\x42\x84\x5a\xf3\x1b\xf9\x75\x24\x6e\x9b\x98\x75\x11\xe2\x5f\x84\x9b\xdf\xc0\xaf\x77\x9a\xb9\x7e\xc1\xa7\x9a\x8a\xd1\x70\x25\x1b\x2c\x83\x5b\xe6\xbc\x07\x6d\x98\x38\x49\xdc\x46\xb4\x87\x93\x49\x9f\x64\x6a\x8f\x82\x1d\x46\xb7\x1c\xde\xcc\x7f\xac\xb9\xb0\x74\x48\xb5\xb6\x94\x05\x82\x83\xba\x4c\x93\xaf\x8b\xb6\x89\x71\x5f\x64\x08\x46\xae\x8e\xdb\x10\x3c\x75\x8d\xa5\xf4\xef\x6d\x4b\x69\xb7\x95\xf2\x1f\x6c\x2b\xe5\xfa\x6e\xc1\x3e\xcc\xda\xcd\x61\xba\x70\x96\xe4\xf0\x0c\x8b\xae\x78\x21\xa3\xcb\xa3\x12\xa7\x0c\xd4\xa5\xd2\x3b\x7e\x14\xb5\xd1\x81\x64\xd3\x70\x39\xb2\xe9\x89\xbd\x26\x5c\x86\xd2\x7f\x56\x86\xd2\xfa\x3c\x8a\x6c\xb2\xd3\xd7\x79\x38\x93\x71\x35\x67\x65\xfa\x4f\x8b\xb3\x3e\xe0\x33\x28\xb3\x36\x9a\xbc\x3f\x77\xd0\x84\x78\xb2\xc1\xea\x3d\x8c\x27\xb0\x78\x81\x16\xd8\x30\x2a\x27\x8c\x27\xd4\x86\xad\x05\x48\x33\x37\x5a\x9d\xff\xc1\x6d\x75\xce\x4f\xd8\xc8\x26\xb6\xad\xab\x7e\x97\x4f\xe6\xe7\x4e\xa7\xcc\x6d\x53\xc3\xc8\x26\xd6\x0e\x73\x44\xa3\xa8\x92\x60\x76\x97\x54\x20\x6b\xdd\x22\xf0\x83\xa0\xe5\x17\xa1\xea\x80\x23\xfe\x10\x1c\x8f\xdf\xcf\x1d\x84\xd2\x50\x56\xd7\x8a\xb9\x9c\xe3\x06\xa1\xab\xe0\xe7\x89\x38\x95\xd8\x43\x34\x44\x91\x97\xc5\xe5\x71\x3c\x9d\x33\xf9\xc8\x2b\x8a\xf0\x8d\x8f\x3f\xfb\x53\x9e\x2d\xaf\xef\xda\xb3\x8c\xe5\x99\x55\x11\x25\x97\x79\xeb\xf5\x06\x27\xae\x25\xab\x23\xdc\x5d\x7e\x00\xe6\x0e\x68\x68\xad\x96\x73\xa7\xfd\xbd\x61\x4e\x76\xac\xa5\xe9\xf2\xf9\x8c\xc8\x67\xb4\x3d\xd9\xb1\xe9\x51\x00\x5f\x35\xa9\xbc\x1a\xa4\xb7\xc4\xd6\xac\x6a\x97\x94\xee\x37\x25\xa0\xf4\xc9\x09\x57\x27\xf9\x46\x1b\x6d\x67\x92\x9e\xce\xfc\x5d\x63\x3e\x83\x95\xe9\x4d\x61\xa3\x50\xc6\xf2\xae\x13\x90\xd5\x22\x0d\x57\xa8\xdb\x5d\xab\x31\xfa\xa6\x28\x5f\x97\xd7\x21\xdc\xb8\xc5\x33\x7a\x04\x77\xd2\x6a\x27\xbd\x12\x4e\x7a\xbc\xa0\xa1\x7e\xb1\x83\x21\x5e\x24\xcf\x4f\xde\x7d\x7c\x7b\x74\x7e\x72\x26\x63\x85\x28\x5f\xe5\x84\x5d\x91\x2e\x24\x04\x5b\x12\x1a\x7c\x07\x7a\xd3\x62\x37\xe8\x4a\x4b\xfa\x95\xa0\xaa\xe9\x98\xb4\xc9\x61\x9c\xf0\x8c\xd4\x21\xfd\x16\xce\xbe\x79\x53\x55\x7a\x91\x51\xf7\x4c\x2a\x0d\x7c\x50\x58\x27\xaf\x80\x51\xbc\xbf\xc0\x6f\x13\xa8\x82\xf4\x82\x86\x58\x98\x6a\xa3\x71\xd3\x88\xd5\xda\x63\x42\xc1\xc3\x76\x5c\xa6\x75\x40\xa4\x59\x2b\xdd\x18\x62\x72\xa8\x56\x08\x55\x20\x31\xde\x93\x31\x03\xcc\x2d\x01\x4b\x61\x9a\x4a\x10\x45\xe7\x6d\x45\x3e\x2d\x59\xcd\x2c\xd4\x3b\x30\x77\xc8\x10\xa9\x41\xbc\x81\x80\x1e\x7d\xd3\xfc\x56\x35\x07\xd2\x3d\x87\x1d\x7b\xc9\x84\xe7\x29\xe2\xb8\x90\xd5\x71\x9a\x11\x2b\xe3\x79\x5c\xcd\x83\x15\xff\x5f\x78\xf2\x15\xde\xf0\x74\x18\x7d\xc8\x9b\x12\x17\x85\x51\x87\xeb\x42\x84\x54\xa4\xcc\x16\xcd\xd8\xc6\x9b\xe2\xd9\x14\x69\xf4\x87\x05\x2b\x63\xed\x5f\x0c\xe3\x43\x62\xf9\xbe\xf0\x95\x68\xf6\x2f\x4c\xb0\x27\x91\x8c\x90\xdc\xea\xa3\x2f\x20\x94\x64\x47\x43\x60\x1c\x66\x91\x1f\x52\x73\x34\x01\x70\x6a\x8a\x88\x2c\x67\x05\x96\x00\x69\x6d\x77\x1a\xe9\x41\x71\xf2\xf8\xd1\x70\x85\x0d\x25\x01\x7f\x94\xff\xdc\xda\xe5\x3b\x57\x26\x42\xbc\x97\x8e\x08\xc9\x11\xc5\x41\xee\x17\x11\x65\x1f\x62\x4a\xab\xa0\x39\xf7\xf7\x86\xc1\xa4\x8a\x5e\xec\x20\x28\xf2\x8d\x4a\x89\xf5\xb0\x41\x60\x8b\x70\x7c\x95\xe8\x4d\xb8\x10\x68\xa7\x81\x80\xdf\x02\x16\x53\x21\xc3\xc5\x0a\xe9\x60\x07\xad\x23\xfe\x35\x42\xe5\x93\x0e\x05\x9a\xb0\xc6\x54\xda\xe8\x40\xea\xf3\xd5\xf3\x02\x43\xb1\x62\x9c\x6d\x88\xde\x05\x89\x2a\x66\xd7\x65\x3d\x8f\xec\x18\xe5\x43\xe5\x69\x84\x9f\x11\xc0\xae\xfb\x32\x30\xac\xb6\xaa\x49\xa3\x43\xb4\x53\x05\x83\xd5\xbd\xbd\x60\xc5\x8b\x8c\xd2\xfd\xc3\x31\x41\x25\x55\x41\xc4\xb1\x61\xab\x13\xfc\x20\x0e\x15\x45\x4d\xce\x58\x9e\xe0\xf1\x50\xd9\xce\xfa\x68\x14\xee\x5d\xa0\x37\x23\x9d\x31\xb6\x2b\x71\x97\xd6\x1e\x54\xc6\xfd\x2e\x07\x7f\x76\xcd\x2d\x84\x65\x80\xee\x70\x1e\x57\x76\xf0\x75\xb9\xb5\xe0\x1e\xe4\xeb\x81\x87\xd0\x55\x12\xd6\xbb\xbf\xa7\x27\x18\x94\x74\xc6\x22\xd8\x70\x24\x74\xc4\x29\x50\x39\xa6\xc3\x7a\xb1\x94\x12\x5b\xe1\xa9\xa5\x5f\xd8\x27\x0e\x32\x84\x25\xbd\x63\x47\x50\xe3\x02\xf3\xfd\x5d\xf8\xc8\x70\xa9\xc3\x29\x21\x74\x5b\xaf\xce\x32\x78\x70\xe5\x50\x04\x54\xa2\xa5\x88\xa0\xf5\x9c\xaf\xdb\x5e\xd2\x34\x3b\x87\x7e\x2a\x04\xff\x26\x5f\x1f\x04\x63\x8b\x3f\x29\xc8\xfd\xfd\x68\x8c\x7b\x58\x6c\x98\x6b\xea\xdc\x65\xf8\xbd\x65\x21\x2d\x1d\xfa\x46\x2b\xe1\x31\xe6\xa0\xbd\xb1\xb5\x4e\x98\xb3\x79\x60\xa2\xc9\x4e\x3b\x08\x33\xa3\x51\xbe\xf1\xb4\x4d\x3d\x66\x09\xa3\x70\xaa\x5a\x66\x6a\x31\x92\x46\x9b\xa6\x71\xcd\xc1\xb6\xe8\x6d\x8d\x19\x58\xfb\x3b\x94\x28\x29\x26\x8e\x19\x57\x78\xcc\xf2\x2f\x3b\x3e\xb3\x5c\x32\xfa\xe6\x6a\x52\x0d\x02\x57\x84\x3a\x41\x25\xeb\x68\xfc\xa1\xbd\x27\xdb\xc6\xaa\xbe\xc1\x08\xe1\x2d\x7a\x8f\x95\xed\xb9\x09\x73\x0b\x1d\xc2\xff\xa3\x02\x90\x20\x59\x38\x52\xfa\xa4\xd8\xca\xed\xd1\x75\xaa\x1d\x1e\x89\xdb\x1b\xf1\x92\x13\x67\xd9\x45\x3c\xfd\xd4\x31\x2e\xa2\x1e\x7d\xed\x43\x0c\x54\x29\x41\x15\x3a\xba\x1b\x89\xf0\x2e\x74\x3c\xa3\x03\x11\x9e\xf0\xe4\xdd\xc7\xf3\xbf\x4d\x8e\x4e\x4f\x8f\xfe\x16\x8d\x88\x93\x6f\x15\x43\x80\x04\x11\xe2\x87\x40\xce\x0f\x02\x2d\x52\x1c\x8c\x30\xa4\x35\x04\x29\xf7\x42\xfd\xf1\x15\xbe\x0a\xf0\xb4\x58\x06\x2c\x55\x69\xe3\x90\xde\x50\xda\x3e\x8e\x33\xf0\x20\xad\xbf\x1f\xe6\x53\x1b\xbd\x49\xd3\x63\x4d\xfb\xd2\xd6\x79\xca\x6b\x76\xdb\xa9\xb4\xe9\x84\x39\xfc\xdf\xe1\x63\x9a\xfa\x32\xde\x74\x69\xfa\xd9\x7d\x0a\x8b\x19\x5e\xe7\xce\x58\xaf\x01\xd2\xb4\x4e\xf4\x64\x1d\xee\x41\xd3\x80\xb2\x90\x46\x15\xbf\x1d\xc3\xf5\x56\x00\x1a\x3e\x8f\x8d\x26\xb7\x72\xa0\xfd\x00\x6f\xd8\xf2\x57\xdb\xd7\xb9\x76\x76\x2e\xba\x64\x72\x44\x21\x3f\x07\xf1\x86\x48\x19\x24\x15\x4b\x09\x05\xb7\xe8\xd7\x47\x7e\xde\xdf\x1f\x6b\x2f\x4e\xea\x67\x5f\x74\x5e\x25\x28\xa5\x44\x0d\xac\x7e\xf6\xb3\xa2\xf8\xb4\x5c\xe8\x1d\x32\xf0\xf6\x04\x9b\x35\x55\xbe\x91\xd7\xbb\x66\xb7\x49\x6f\x14\x45\xcf\xd1\x96\x54\xac\x2e\xe5\x71\x1e\xcb\x0c\x8d\x4d\xe5\xbe\xf2\xaa\x32\xfc\x8e\x4b\x5d\xc2\x4d\xd6\x62\x65\xaf\x71\xb2\x45\x64\xd0\x29\xfc\xb2\xc2\x52\xc9\xc5\xac\x36\xbc\x4e\x6c\xd6\xb8\x49\xd7\xd2\x06\x43\xbc\x64\x6f\x17\xd2\x19\x6a\xb0\xab\x3b\xd3\x19\x65\xec\xb6\xb6\x54\xa5\x80\x57\x95\x5a\xc5\xfc\xf6\x2f\x05\x33\x48\x78\xb5\x60\x6a\xd0\x96\x57\x52\xad\xdc\x01\x39\x25\x68\xfa\x3a\x77\x5b\xc4\xcd\xa8\x83\x46\x13\x89\x46\x27\x9d\x71\x5b\xeb\xe0\xd8\x39\x9c\xe7\x19\x24\x87\x7a\x4f\x43\xa7\x5c\x0e\x77\x48\xc5\x2f\x8d\xad\x56\x03\x5e\x8b\x6c\xce\xe2\x92\x55\xf5\x1b\x21\x98\xfc\x30\xd3\x7b\xff\x13\x04\x64\xd2\x7e\xfa\x3b\xda\xc7\x00\xab\x4a\x91\xcd\x96\x73\x8a\x5a\xa8\x5e\xaf\xaa\xed\xba\x65\x29\xd5\x34\x12\xa3\x0f\xb3\xf3\xbb\x05\x7b\x28\x36\x61\x5a\x61\xc1\x08\xe0\x29\x22\xf0\xda\xf4\xca\x92\x5c\x0b\xb4\x00\x58\x86\x30\x42\xe6\xd2\xd6\xd1\xeb\x82\xe4\x34\x8f\x73\x0c\xd3\xba\x28\x83\xc6\x1e\x0d\x89\x0e\xa6\x3c\x62\x18\x7e\x48\xeb\xb9\xdc\x26\x44\x44\x23\xbd\xe7\x3e\x74\x76\x64\xc1\x9d\x14\x91\x78\x04\x46\x70\x0f\xfc\xfc\x75\xe2\x6e\xe6\x73\x16\x0e\x21\x7f\xae\x7d\xd7\x25\xb3\xd5\x1b\xef\xb5\xba\x0e\x3b\x3d\xf6\x53\xd9\xa9\x6a\x00\x37\x60\x97\x44\x54\x91\xef\x5e\x6f\xb7\x8b\xae\x43\x13\xa8\x40\x2f\x27\x5a\xe9\xef\x13\xc0\x46\x52\x65\x4c\xe8\x22\xcc\x32\x4c\xca\x83\x3a\x48\xcc\x41\xb6\x77\x60\xea\xb2\x37\xa0\xf8\x02\x1f\xd8\x15\x40\x84\xf2\x2e\xaf\xe3\x3a\x76\xf0\x2f\xe8\xae\x11\x6e\x09\x32\xc8\x45\x44\xf3\x5e\x4d\x8b\xc5\x9d\x4f\x53\xfa\x12\x2e\x18\xac\x1a\x30\x96\x93\x09\xa1\x87\x72\x67\x93\xc2\xbe\x92\xd9\x70\x5d\x19\xd4\x2a\xea\x8c\x2e\x36\xd1\xe5\xec\x2c\x3a\xda\x1d\x73\x2b\xf9\x09\x59\xa8\xe9\xf4\x1b\xdb\xc1\xcb\x49\x76\x92\x32\x90\x9d\xd1\x4e\x64\x68\xcb\xdb\x56\x68\xcb\xdb\xba\x35\x90\xc0\xad\x99\x71\x42\x50\x79\x60\x59\x2f\x96\xf2\x85\xbc\x8e\x23\x12\xe3\x05\x71\x1d\x08\x43\x9a\xb4\x42\xc1\x10\x84\x21\x81\x23\x5e\x85\x22\x51\x63\x44\x03\x8f\xb8\x27\x98\x86\x20\xf1\x82\x66\x88\xcd\x47\x2d\x5e\x75\xc5\x91\x19\xf0\xff\x1a\xe8\x36\xc2\x99\x37\x22\xe1\xe8\x0c\x5e\x02\x31\x1f\x44\x24\x2e\xd7\x05\xf4\xb2\x6c\xf8\xa2\x54\x3b\x41\x08\xc9\xdd\x12\x30\x6b\x21\x23\x73\x89\x3a\xe5\x11\xb9\x0c\x7f\x45\x44\xcb\xc2\xf1\xf0\xd1\xac\x96\xbc\x32\x49\x40\x10\xdb\xd3\xba\xfd\x42\x4b\x44\x16\xa4\xec\xfe\xe1\x30\x7d\x19\xd1\x06\x87\xe9\xfe\x3e\x3e\xb5\x52\x5f\x83\xc4\x09\x21\x88\x34\x88\x1f\xd1\x26\x9c\x80\xb0\xe1\xd8\xbe\x50\x93\xcb\x07\xcf\x92\xc9\x62\xad\xa9\xbb\xb8\x5c\x4d\xf2\x1b\xcc\xa7\xc3\x5c\x86\x56\x54\xea\x14\x09\x7c\xd3\x17\x65\x5a\xab\x26\x59\x42\xcb\x0f\x9b\x29\x32\x51\x4c\x70\x43\x15\x4b\x40\x13\x01\x48\xec\x04\x12\x24\xd9\x84\x40\x89\xb2\xb0\xa9\x0a\x43\x66\x4c\xe2\x25\xc7\x97\xff\xc6\xb7\xa5\xaf\x8b\x52\x3d\x07\xaa\x6a\xc0\x72\x1c\x40\x9f\xf8\xb8\xf4\x04\x42\x18\x39\x5e\x0a\x5a\x79\x8a\xce\x1a\xea\xc1\x30\x3d\x11\x2b\x88\x26\x9d\xf9\x12\x13\x51\x53\x9c\x60\x9e\x4e\x1f\x4a\xf0\x48\x26\xe1\xa5\x44\x27\x73\x6e\xbd\x19\x5a\x23\xbc\x65\xcf\xd2\x99\x6f\x15\x0c\x56\x44\x35\xc5\x27\x13\x6a\xc3\x69\xc4\xac\x1c\x79\x9e\x5c\xa6\x55\xcd\x4a\x23\x5c\x6e\xa8\x27\xaf\xbf\x88\xeb\xb9\xb6\x36\xc2\x43\xa7\xc8\x59\xdb\x2e\xdb\x3a\xc7\xf4\xd8\x6f\x1c\xe0\xa1\x35\x48\xe4\xe1\x6b\x99\x57\x0b\x36\x4d\x67\x29\x4b\x8e\x6c\x79\x91\x78\x4c\x85\xfd\xd0\xce\xb4\xe8\x76\xd8\x12\x37\x89\xe7\x09\x99\xfc\x3d\xbf\x48\x86\xeb\xda\x13\x73\xf5\x99\x20\xf7\xf7\xab\x86\xec\xab\x16\x5a\x1d\x7b\x0b\x42\xbb\x45\x22\x89\x04\x7a\x0b\xe5\xd9\x1e\x41\xda\xe8\x60\xac\x7b\x0a\x52\x12\x4c\x3e\x1c\xdf\xdf\x4b\xc8\xa1\xc5\x5c\xc2\x58\xcb\x87\x2f\x56\x2f\x17\x36\xce\xb8\x36\x62\x83\x9d\x35\x5b\x09\x86\xe6\x38\xea\x53\x4d\xb1\xbf\x20\xb6\xef\xbb\x27\xab\x35\x47\x18\x5c\xc9\xa8\x52\x3c\xac\xaf\x1b\xda\x91\x6c\x6c\x1c\x19\x35\x35\x32\x6c\x03\xf4\xb1\x62\xf5\x77\xf9\xa7\xbc\xd0\x5e\xe8\x22\xd5\x77\x2b\xa3\x09\x37\x0e\x48\x9b\xd1\xb7\x46\xc6\xb5\xca\x38\x0d\xe9\x24\x7a\x26\x15\xfb\xbc\x71\x05\xea\xbe\x7e\x54\x87\xeb\xc8\x80\xec\x92\xda\xff\x60\x2d\x69\x8d\x92\xd8\x87\x8e\x0c\x97\xac\xc7\x18\x0e\xfd\x34\xbd\x76\xcf\xf4\x7a\x9b\x61\x46\x9f\xd8\x1d\x3c\xc8\x58\xc3\xbf\xe5\xba\xe6\x18\x9a\x25\x1b\x57\x9c\x94\x4f\xec\x8e\x38\x22\xa9\x55\xa2\xe8\x5d\x13\x76\x90\xf2\xae\xfb\xe0\x16\xa7\xe4\xc2\x08\xbf\xc2\xc9\x71\x64\x91\x67\x7c\xa6\x88\x33\xb2\x3a\xe2\x7a\x8e\xae\x26\xe2\x8c\x3e\xe9\x5b\x91\x8a\x01\x8c\x23\x82\x45\xf1\x31\x0f\x65\x79\x58\x85\x14\x35\x21\x6e\x66\xd7\x60\xfd\x40\x15\xbc\xf3\xf4\xc8\x50\x04\x9f\x26\xce\xe2\xac\xd2\x6c\x4b\xd0\x84\x42\x43\x6e\x1b\xa9\xf3\x56\xe2\xf5\x36\x87\xa8\x4d\x6f\x84\x9f\x7d\x42\x47\x3a\x0b\x5d\x9a\x85\xe0\x32\x47\xac\xf3\xc1\x30\xbf\xb3\xf0\x13\x6c\x88\x03\x35\xe1\xd5\xb2\xa6\x36\xe9\x55\xd7\xbb\xce\x3a\x4d\xbf\x34\xb9\x6d\xbb\xab\xc6\xd7\x38\xbc\xa4\xef\xef\x43\xb8\xf3\x03\xf1\xf2\xd6\x8a\x6f\x2e\x5a\xd2\x81\x06\x20\xfc\x8e\x19\xd2\xde\xbe\x43\x3e\x02\x51\x78\x1f\xa7\x4e\x43\x68\x03\x82\xf1\xee\xe8\x08\xf8\x1c\xe9\x74\x26\xb2\xbe\x57\x28\xff\x31\xe3\xf3\x83\xe7\x01\xfa\xc6\x28\x4c\xa2\x05\x25\x30\x0c\xe6\xde\xc6\x35\x2b\x7d\x5b\x38\xfa\xc4\x0f\xfa\xb2\x1a\x65\x50\x6d\xbd\xb7\x0b\xc5\xbf\x37\xf9\xe3\xda\x11\xce\x7f\x44\x11\xe1\xf4\x44\x1c\x50\xdb\x34\xef\xa8\xde\x7c\xc5\x15\x64\xcf\x72\x15\xd3\xed\xc8\x5d\x48\xcc\x8d\x6a\xbd\x70\x96\x07\x76\x5b\xdb\x34\x03\x4e\xc4\xdb\xbb\xc3\xa8\x07\x57\x24\x34\x80\x9d\xed\xba\xf4\xa9\xa1\x30\xcc\x04\x03\x19\x58\x64\xe0\xd2\x8c\xdb\x4e\x15\x03\x45\x0c\xf6\x6b\xb8\x2d\x41\x91\x6f\xfc\xce\xfb\x25\xf5\xbd\xd0\x76\x46\x04\xac\xac\x32\xe4\xc5\x73\xb2\xdb\x41\x94\xad\xd6\xc5\x93\x85\xa7\xe0\x24\xf2\xfe\x8f\x78\xaa\x54\xd5\x0d\x4d\x3f\x52\x69\x12\x8c\x0e\xc6\xf7\xf7\xea\x33\x24\xb5\x80\x2b\x29\xc3\x0a\xd4\x1a\x36\x12\x0c\x5f\x1a\x1a\xb6\xf7\x30\x55\xfe\xb2\xf4\xd8\x8c\x00\xf4\x72\xf5\x88\x5b\x3e\x93\x03\x6e\xad\xe1\x96\xed\xa8\x56\x32\xb1\x8c\x35\x55\x86\x75\xe7\x58\xa3\xc4\x42\x56\x69\x98\xe6\xd3\x6c\x99\xb0\x33\x96\xcd\x5a\x84\x8c\xe4\x45\x11\xfa\xeb\x7f\x65\x13\xb7\xc1\x88\xa7\x8c\xed\xa8\x5f\x82\x9e\xb6\xb5\xa9\x91\x32\x3b\x5c\x8d\xd0\xc2\x51\xdb\xb3\xc8\x90\xe0\x35\x1a\x5b\x6a\x0f\xb4\xac\x5b\xeb\x82\x42\x8c\xd2\xf1\xb0\xad\xbe\x7d\x6d\xb9\x37\x79\x65\x27\x08\x4c\x0e\xf0\x41\x56\xa9\x6f\x0c\x5d\xca\xe0\x54\x4a\x41\xd5\x20\xc8\xe9\xe5\x52\x03\x7f\x98\x26\x0c\x1d\x11\x98\x84\xf0\xff\xa9\x09\xd8\x5a\xbf\xe8\xcb\x4e\x50\x87\x1d\xb8\x2d\x4c\x23\xfd\xdd\x1c\x81\xc3\xc7\xf9\xa3\xfa\x8c\x07\xc3\xf4\xc5\xb5\x2b\x48\x84\x88\xc4\x41\xa2\xde\x58\x60\x52\xb1\xc6\x4f\xed\xc0\x37\x7d\xc3\x75\xd9\x75\x3b\x98\x06\x51\xd6\x21\x41\x22\xba\x6a\x68\xa8\x63\x35\x0d\xbf\xce\x31\x6a\x27\x73\x68\x9d\x3f\x42\xc4\x71\xd3\xf2\xc4\xa3\xa8\x5a\xa7\xaf\x1e\x7b\x22\xac\xc1\x57\x6a\x3d\x0f\xb7\xe5\x6f\x3b\xda\xeb\x82\x34\x31\xf2\x0c\x77\x40\x74\xa0\xa4\x2b\x17\xd7\x2b\x88\x3a\x29\x6c\x0e\xac\xf5\xaa\xd1\x36\xbc\x09\x9a\x20\x74\xbd\x22\xe9\x23\xc1\x54\x69\x7f\x88\x36\xfb\x1a\x55\x0d\xd4\xf8\x10\x56\x0e\xa8\x0a\x0a\x05\x1f\xad\xa4\xdd\x21\x84\x6e\x47\x03\x24\x2a\x69\xf4\x20\x16\x48\xac\x6d\x64\xe8\x96\x62\x77\xb6\x61\xa9\x49\x6f\x72\x93\x60\xf9\x70\x72\x89\xea\x9d\x31\x6f\xc8\x53\x45\xd0\x84\x54\xbb\xbb\x23\x5a\x9f\x29\xe5\xa8\x5a\x6e\x18\xc8\xb3\xc2\x87\x05\xcb\xd3\xfc\xf2\x3c\xbe\xf4\x39\x87\xa9\x3b\xdd\xae\x9a\x94\x3a\xce\x8a\x8a\x94\x72\x37\xe7\x7e\x12\x6a\xa9\xb8\xd1\x97\x9d\x96\xfa\x1b\x92\x2d\x3b\xd9\x8a\x0d\xe9\x96\xf4\xb7\x8b\x05\x8d\x21\x54\x71\x20\xd0\xd6\xb5\x0b\x0c\x51\xc9\x3a\x04\x36\x4b\xeb\x34\x1e\x32\x80\x0d\xab\x01\x6d\x56\xf9\xd6\x7b\x83\x9a\xa3\x14\xa7\x5f\xb3\xb3\x28\xde\x28\x0b\xc3\x64\x28\x2e\xd3\xf8\xb4\xc8\xc4\x03\x1a\xcf\x54\xd3\xc5\x5b\xf7\x3d\x9e\xe4\x85\x90\xd1\x18\x6c\x2c\x31\x36\x92\x7c\x9d\x2a\x5a\xd5\x77\x19\xf3\xbd\x04\x95\x06\xbd\xd0\x03\x47\x0b\x18\x54\xff\x52\xab\x17\xca\xc6\x85\x8d\x8e\xea\xc3\x80\xfa\xaf\xf1\xc6\x61\x6b\x3e\x0c\xbd\x98\xd6\x28\x19\xb9\x4e\x53\x2b\x35\x26\x91\xf9\x79\x7f\x2f\x2c\x90\x7d\x22\xce\x34\xed\xb2\xb6\x89\x27\x3a\x34\xe7\x44\x2d\x17\x61\x51\xe8\xce\x95\x85\xed\xd2\x1d\xc5\x34\xfc\x3a\x5f\x80\x4a\x3f\xae\x93\x72\x90\xb2\x44\x84\xa1\xd4\xe1\xdc\xc1\x25\xd5\xbd\xad\xfb\x2d\xbd\x23\xc8\x21\xba\x68\xdd\x24\xeb\x30\xcd\x7d\x29\x3f\x85\xdc\x72\xbd\x45\xf0\x46\x5b\x9a\xc0\xeb\x3b\xca\x32\xd7\xbb\x25\x1d\x1c\x5b\xa6\xe4\x5b\xa7\x8c\xe2\xc5\xa4\x75\xc1\xf7\x68\xa5\xa8\x2d\x0c\x50\x64\xa2\x0d\x20\xbe\x6c\xa3\xd7\x66\xdc\x43\x35\x43\xfc\x26\x8e\x97\xdd\x6d\x0d\x2e\xc8\x3d\xde\x77\x78\x65\x76\x58\x4d\x18\x23\xda\x61\xde\xb1\x4e\xd6\x96\x17\xb9\xd0\x36\xf8\xb8\x49\x93\x4b\x45\x95\xd6\xbc\x16\xc8\x3b\xa1\xb6\xb7\x2c\x0f\xd3\x35\x06\x23\x12\xc8\x11\x87\x0e\xa3\xd4\x49\x00\x7c\x2f\x3e\xc0\x47\x62\xf3\x49\xd8\x14\x70\x44\xe0\x78\x48\x5c\x16\x38\x22\xbd\x9e\xab\x33\xc1\xca\x95\xda\x97\x7b\x01\x7a\x80\x51\x5b\xbf\x04\x8a\x7a\x15\x98\x86\x2a\xa6\xa7\x4e\x8b\x22\x70\x6a\x29\x4c\x7c\xaf\x2d\x4f\xa6\xe7\x77\x0b\x26\x4d\x67\xcd\x3a\xaa\x9d\x59\x5a\x56\xf5\x8e\xd4\x21\xdd\xb9\x5a\x56\xf5\x0e\xbb\x4d\x2b\xe1\xa8\x5b\xd9\x36\xb3\x9b\x5e\xef\x5a\xca\xd9\xe5\x14\x47\x30\x89\x22\x43\x6b\xc9\x46\x96\x9e\xac\xa9\xdf\x04\x88\xc2\x33\x93\x78\xd1\xe3\xbf\x8c\x6a\x79\x69\xbe\x0a\x94\xca\x3c\xd5\x59\x0b\x56\x58\xc0\x50\xac\x69\x27\xb9\x94\x49\x84\xb2\x0d\x02\x77\x29\xf5\x0e\xaf\x2d\xd7\xa8\x3e\x8e\xac\xba\x51\x5e\xab\x08\xeb\x7c\xfa\x0d\x25\x14\x62\x1b\x1a\x1a\xb0\x22\x84\xba\x8a\x41\xe8\x8e\xdb\x8e\x1b\x6d\xb6\xcc\x32\xb4\x1d\x04\xad\x14\x6f\x0f\x64\xd6\xd2\x8e\xe0\x5b\xfd\xf6\x6d\x2b\x11\x7f\x1d\x4f\xeb\xa2\xbc\xf3\x65\x05\xb2\xa7\x5b\xaa\x20\xc9\x68\xfa\xd0\x82\xd9\x77\x14\xfc\x6f\x18\xb7\xf5\xf1\x68\x1f\x80\x4a\x63\xf8\x58\xa1\xab\xdb\xf4\xd5\x7d\xc1\xa6\xf1\x15\x93\x0a\xb8\xf2\xf6\x82\xa9\xdf\xa4\x49\x42\xac\xb8\xb4\x55\xb5\xeb\x32\xa5\x39\x1e\x97\x46\x19\xb1\xc8\x8e\xdc\x36\xd9\x8a\x3e\x6d\x10\x12\x63\x75\x75\x71\x79\x99\x21\xda\x69\x96\xd6\x77\xfc\x3a\xd6\x4a\xb4\xa9\xef\x13\x96\x19\xfa\x19\xbb\x4f\xf4\x6b\x4a\x83\x0e\x2c\xd6\x9b\x8d\x3b\x7b\xa3\x7e\xab\xaa\x9e\xb0\xac\x8f\xb8\xf8\x3a\xb3\x65\x99\xae\x7e\xd1\x6a\x8f\xf2\x29\xab\xea\xa2\xc4\xa1\xd7\x54\xfb\x5f\x1a\x50\x11\x55\x2d\x21\x3c\x5e\xd0\xbf\xa2\x53\xe8\x2b\x1f\xfb\x36\x80\xac\xb2\x69\x42\x57\xc1\x16\x1b\xa8\xae\xdb\xc6\x12\xf1\xb6\x55\xfc\x6b\x0d\x27\x2e\x69\x6b\x38\xd5\xe7\xfd\x3d\x1d\x53\xe2\x8a\xae\xa3\x93\xfc\x6c\x77\x74\x6f\x53\x2f\x10\xea\xd7\xed\x84\x9e\x08\x78\xdd\xb0\xe6\xbc\x83\x41\x59\xab\x2a\x2b\x79\x13\x71\x05\x91\x7e\x01\x9c\x97\x10\xea\x2b\xd0\x11\x61\xc2\xd0\x94\x35\xbd\x22\x13\x77\xc2\xad\x61\x6e\x3f\x63\x58\xbe\x4d\x82\x87\x98\xe0\x2d\xca\xb4\x28\x81\x03\x8f\x5a\x3c\x79\x48\x3f\xda\xd9\x52\x2a\x01\xee\x1b\x30\x5e\xdf\x78\x48\xd2\x30\xec\x1d\xea\xa0\xc8\x46\x7a\x3d\xfd\xbb\xcf\x6e\x53\xce\xe5\x99\x09\x82\xc5\xd3\xb2\x3e\x19\x8f\xba\xe6\x07\x73\x3b\x4d\xc3\x63\xa3\x51\x24\x03\xa3\xa2\xab\x16\xc8\xee\x74\xd5\x22\x15\xf2\x4a\x96\xef\xaa\x79\xdb\x6e\xc1\xb6\x9c\x37\x42\xfb\x9c\x13\xee\x88\x66\x60\x05\x32\xe8\xbc\x09\x91\xc2\xb8\x0e\xad\x30\x06\xa1\xad\xc2\xa1\x9b\x28\x8b\xa2\x86\xf7\xfc\xb0\xe5\x3c\x9a\x13\x61\xf9\xd5\xeb\x69\x93\x69\x7d\xa4\xcb\x57\x4d\xa5\xaa\x82\x09\x43\xfc\x83\x1a\x5b\xbc\x16\xde\xc8\xfd\xbd\x28\xc4\x3f\x76\xa3\xc8\x13\xae\x21\x0d\x1a\x7f\x2d\x99\xa3\xb0\xc2\x6b\x05\x9b\x7e\x62\xda\x7b\x18\xdd\x7d\xc0\xbe\x98\x2f\x88\xd4\x29\x36\x8e\x03\xd5\x4d\x91\xef\x90\xae\xda\x36\x1c\x6b\x2e\x64\x82\x66\x48\x7c\x97\xb5\xc7\xb1\xd5\xde\xb6\xfa\x71\xa6\x87\xb3\x6d\x2a\x6e\x02\x23\xfa\x31\x92\xb3\x77\x4b\x74\xe6\xf8\x96\x4f\x7c\xce\xca\x4a\x74\xb3\xe0\xdd\x43\x2b\x92\x0e\x40\x0f\x65\x46\xaf\x3f\xbc\x13\x71\x37\xa2\x95\x88\x44\x6c\x31\xe4\xf3\xfa\x4a\xd2\xd0\x27\x7e\xa0\xc2\x15\x43\xf2\xb0\x13\x0b\x21\x71\x5b\x5f\x17\xc6\x4b\xde\x58\x13\x07\x58\x5f\x11\xff\xdc\x5c\x8f\x78\xb1\x77\x85\x45\x91\x14\xc0\x15\x75\xa8\x33\x90\x0b\x9e\x2b\x5b\x3d\xf3\x4b\x4f\xb6\xd2\x5d\xd0\x0f\x69\x3d\xf7\x1d\x8d\xad\xc3\xdf\xf1\xe0\x4d\x48\x0e\x1f\x06\x75\x59\x5e\x33\x08\xee\xc8\x30\xb2\x06\xa9\x86\xd0\x5d\x01\x5a\xdf\xf7\x4b\x56\x2c\x58\xee\xaf\x74\xdc\x96\x81\x5e\x4a\x4d\x40\x81\x50\x4f\x76\xd5\x56\x6c\xa2\x02\xf2\x7a\x4e\xb5\x1c\xf9\xb7\x4b\xc5\x11\xd4\xa4\x94\x9a\x23\x11\x41\x79\x9e\xfe\x0a\x4d\x45\x23\x7e\xd0\x40\x11\x71\x7f\x7d\x79\x48\x14\x52\x95\x72\xa4\x0d\x15\x45\xd1\xef\x82\x95\x59\x93\x00\x7e\x3e\x6e\x68\xcb\x03\x6f\x6f\x4a\xdb\xb2\xd4\x9c\x88\xf2\xeb\x1e\x00\x9b\xf9\xf2\x79\x69\xc5\xbb\x3c\xa0\xfd\xa4\xf2\x46\xa2\xdd\xab\x7e\xea\x44\x7e\xb6\x79\xaf\xd4\xe1\x35\xe8\x1a\x89\x81\xdd\xb4\xad\xab\x06\x0a\x5d\xe6\xac\x80\x66\x57\x57\x85\xc2\x6a\x0a\xfd\x95\x5c\xc7\x19\xd1\x24\xe3\xc5\x3c\x1c\x4a\x2f\xd8\x8d\xa2\x83\x86\x8a\xbb\xef\xef\x1d\x15\xa9\xdc\x5e\x6f\x77\xf7\x9a\xf8\x34\x52\x19\xea\xde\x69\x96\xee\xf5\x0c\x70\xab\x97\x54\xd9\x0b\xb5\x8b\x55\x04\x7d\x50\x8d\xe3\x6c\x98\xe2\xf3\xea\xca\x58\x7b\x7d\x2d\xa6\x53\xba\xd3\x3e\x80\x8d\xe0\xff\xbe\x74\xd2\x32\x0e\x68\xad\x92\x65\xe8\xf5\xe0\x03\xb9\x50\x6d\xae\xea\x40\x49\xb8\xcf\xb8\x12\x1b\x6e\x8d\x4b\xaf\x40\x5e\x69\xa5\xde\x67\x92\xd8\xdb\x34\x72\x68\x6f\xc9\x9a\xfb\x45\xee\x7b\x53\xb4\x86\x22\x7e\x02\x86\x44\x4a\xf8\xb0\xea\x66\xb3\xee\xfa\x3a\xa8\x08\x3d\x93\x55\x45\xea\x96\x20\x2a\x93\x75\x80\x73\x82\x68\x25\xbe\x5c\xee\xf3\x5a\x49\xeb\x14\x62\x75\xdb\x68\xf7\x00\x42\x0d\xad\x97\x0a\x5e\x44\x84\x33\x19\x61\x66\x9c\xce\xc0\xb0\x9a\x33\x33\x90\xe2\xf5\x7a\x3e\x80\x45\x91\x14\x7f\x20\xd7\xc3\x13\xf2\x25\x9f\x38\xaf\xd7\xdb\x4d\xab\xf7\xf1\x7b\x51\x47\x60\x28\x2e\xa2\xfd\x40\x5d\x0b\x47\x34\xd2\xa0\x40\x26\x48\x25\x45\xb5\xa0\x72\xb1\xc5\xb1\x75\xdd\xd6\x45\x51\x64\x2c\xce\x3d\xb1\x0b\xdf\x73\x9e\x03\xcb\xde\xdf\xcb\x70\x25\x82\x73\x25\xc6\x0f\x47\xaa\x61\xb0\x96\x00\x29\x35\xb6\xeb\x79\xc6\x22\xd6\xb8\x2a\x10\x89\xab\x2e\x63\xe3\xba\x2b\xc6\xd2\xd9\x60\x63\x06\xc1\x56\xfe\xeb\xe4\x0f\x23\xf7\x7b\x29\xc7\x69\xa5\x92\x77\x6e\xf3\xd3\xf6\x73\x6e\xb9\x35\xb7\x7d\x56\xab\x6f\x64\xac\x2f\xe2\xd2\x72\x39\xad\x0b\x14\xcb\x9a\x7a\xb2\xe6\x4b\x2b\x9d\x9a\x5e\xb4\x61\x97\x56\x69\x91\xef\x57\xcb\x05\x47\xf7\x57\xf4\x3f\x6d\x79\x48\x4e\x67\x42\xb1\x77\x32\xc9\x8a\x38\x81\x40\x75\xfc\xa6\x50\xde\xc9\xf1\xa9\x59\x05\x1d\x1c\x73\x32\xe5\x70\x9d\x28\xf3\x03\xed\x08\x13\xc4\xb2\x9c\x8d\x79\xc7\xaa\x2a\xbe\x64\xfe\x55\x75\xa9\x49\x30\xbd\x9b\x1a\xae\x0f\xfb\x28\xc0\xe5\xc0\x8d\xae\xec\x92\xd3\x85\xb8\x66\xa7\xc2\x81\x22\x70\x0c\x53\x7d\x3a\x00\x6d\xac\x2e\x23\x0f\x82\x54\x40\x70\x0a\x00\xc4\x28\x16\xf1\xce\x22\x5b\x5e\xa6\xf9\x60\x67\x5e\xd7\x8b\x6a\xf0\xec\xd9\x65\x5a\xcf\x97\x17\xfd\x69\x71\xf5\x0c\x3a\xf0\x53\x85\x7f\xf7\x85\x4f\x41\x41\xd4\x57\x48\x5a\x07\xad\xbe\xa8\xa6\xf7\x38\xa2\x42\x62\xbd\x09\xac\x69\xb0\x87\x70\x51\x91\x4c\xb5\xb3\x67\x5e\x1b\xd0\x93\x6e\x1e\xf1\x0a\xbd\xb1\x98\x17\x90\xd5\xce\x97\xf7\x55\x51\x2e\xe6\x5e\x38\x1a\xd3\x5b\x46\xcb\x51\xf6\xb7\x94\xf6\x36\xe1\xe5\x32\x4d\xa2\x83\x30\x49\xab\xf8\x22\x63\xa7\xe0\xc6\xd5\x14\x1d\x7a\x8a\xad\xf0\x76\xd5\x8d\xf0\x9d\x6c\xef\xe4\xfd\xf7\x6a\xce\x69\x62\xff\xf5\x9b\xb3\xa3\xaf\xde\x9e\x4c\x4e\x8f\xde\xff\xf5\x64\x72\xf4\xf1\x8d\x16\x19\x1b\x15\xd2\x0a\xba\xcb\x99\xb1\xa1\x1a\x3f\x08\xc5\x1e\xab\x10\xe5\x5d\xda\x81\x5e\x4f\x60\x29\xb5\x45\x39\xe5\xd6\x8d\xf6\x7a\xe2\xf1\x00\x80\xbd\x34\x57\x70\xaa\x20\xe4\xd8\xa5\x20\x51\xbb\x9a\x92\xf1\xc6\xd0\xe4\x71\x19\x67\x5f\x97\xf1\x25\xc4\x35\xcd\x19\x4b\xaa\xb3\xf9\x5d\xb4\x01\x8d\x96\x81\x6d\x55\x9f\x64\x91\x52\x71\x35\x23\x76\x80\xff\xbd\x60\x88\x40\xfd\x34\xcf\x59\xf9\xcd\xf9\xbb\xb7\x91\xf7\x22\x49\xaf\x5f\xbe\x78\xc6\xff\xf7\x64\x36\xbc\x85\x80\x80\xc2\x80\xac\xa6\x65\xba\xa8\x5f\xbe\x78\x26\x7e\x78\xda\x51\x4c\x77\x31\xce\x5a\xf2\x01\xe7\xcb\xb0\xfa\x61\x9e\xd6\xac\x5a\xc4\x53\x16\xe9\x41\xfb\x32\xfd\x38\x67\x55\x3d\xd8\x11\x38\xe2\x31\xfc\x94\x8f\xec\xb3\xdb\x7d\xb8\x30\xcd\x8b\x2c\x61\xe5\x53\x8d\x3d\xf0\xaa\x76\x17\x80\x17\x78\x5f\x24\xac\x1a\x1d\x8c\xfb\x79\x91\x08\xa3\x99\x48\x34\xe0\xf5\x7a\x6d\xc8\xe7\x16\xe4\x0e\x56\xdd\x08\x23\x5b\xb5\xae\xf5\xce\x10\xb7\x4f\x70\xa3\x9e\xcd\xa4\xf0\xd8\xf0\x5f\x20\x0b\x05\x2b\x0e\x82\x2e\x2d\x61\x29\xc3\x27\x27\x87\xdf\x36\xfc\x27\x19\x03\x5e\x2b\x72\x81\x77\x7f\xe5\xfb\x52\x6f\xeb\x7d\x6f\x8f\xef\xd4\xbd\xbd\x21\x14\xa9\xea\xb8\xac\x23\x84\xda\xf3\xf6\xe1\xd3\xc3\x2c\x96\x27\x3a\x83\xe5\x89\x47\x62\xe6\xce\x9a\xe1\xb7\xc4\x57\x9a\x42\x51\xa7\xa1\x02\x06\x5f\xe8\x5f\x17\x25\xdc\xb1\xbf\x5e\xe6\x53\xf9\x80\xcb\x7f\x16\xcb\x1a\xb1\x85\x2f\xa9\x98\x8d\x1f\xfc\x32\x0f\xbf\x84\x88\x00\x7e\x03\x72\xe7\xf1\x25\x7c\x70\x60\xfc\x39\x34\x2a\x8a\x3a\x9e\x9d\x65\x61\x3f\x90\x4e\x3c\xc5\x58\x09\x45\x68\xa8\xce\x0f\x9a\x21\x6d\xa5\x5d\x99\x5c\xfa\x3b\x69\x12\x3d\x15\x4a\xd4\x50\x62\xcf\x7b\xba\xcd\x52\xf3\x9a\xa1\xc6\x7c\xbb\xea\x59\x9e\x6c\x5f\x39\xbf\x7a\x52\x7a\x16\xac\xe4\x1c\xe8\xc6\x60\xa6\x70\xf8\xcf\x8b\x02\x17\x1f\x40\xd9\x3b\x0d\x6a\x10\x4b\x17\x15\xaa\x34\x84\xb6\x6c\xf9\xea\xee\x4d\x82\x75\xe2\x48\x20\x3c\x4c\xe1\x06\x70\x96\x27\xd2\xa8\x5b\xa0\x02\x68\xf4\x2b\x56\x9f\xf1\x9a\x50\x85\xcd\xc7\xa6\x83\xa1\xca\x3c\xc9\x13\x50\x3c\xf3\xa1\x11\x69\x83\x63\x14\xc5\x7c\x57\x49\x51\xa9\x28\x2a\x9d\x23\x73\x80\x66\x28\x97\xa9\xb9\x3d\x9d\x43\x25\x87\x55\x88\x0d\x25\x84\x68\x0a\xc3\x70\x01\x45\xcf\x6b\x69\x62\x3f\x13\x64\x1d\xcb\x76\x52\x7d\x21\x7c\x42\x20\x94\x08\x71\xe2\xe2\xcb\xe2\xe0\xd2\x59\xee\xa2\xc8\x22\x99\x2e\xe4\xe0\x56\xda\x81\x58\x33\xa4\x1b\x4f\xd7\xc6\xa9\xd8\x16\x2b\xc3\x1c\x74\x2c\x25\x12\xa7\x45\x96\xc5\x8b\x8a\xf9\x32\x96\x92\x18\x81\x4d\xbd\x47\x99\xa7\xdc\xd2\x3e\x88\xb1\x12\x53\x77\x87\x57\xc3\x31\x97\x54\xc2\x45\x4d\x37\x2e\xe8\xf5\x0b\x54\xee\x3c\xbb\x8b\x74\xdd\x75\x2e\xc8\x2f\x3c\xdb\x84\x06\x3e\xaa\xa7\x48\xe3\xd7\xf6\x54\x6c\x5c\x57\x5f\xed\x2c\xd5\x57\xb2\xd9\xbf\x58\x5f\x45\xb8\xcb\xb8\xdc\xb9\x29\xe3\xc5\xbb\x78\x11\xf1\x43\x8e\x4d\xeb\xc1\xe8\x30\xf4\x5e\xe0\xef\x9d\xab\x65\x56\xa7\x8b\x8c\x45\x4f\xe5\xaf\xa7\x2f\xbd\xd0\x7b\xf1\x0c\xf3\x5f\xf2\xeb\x52\xca\xb2\xa4\x62\xa2\x9c\xfc\x42\x28\xfd\x35\x0e\xc1\x4b\x3a\x02\xc1\x4f\x84\x10\x3f\xc7\x61\x7d\x51\x24\x77\x83\xd1\x73\x95\xfd\x02\x52\x04\x14\xfc\xa4\xd0\xe5\x60\xf4\x3b\x1b\xf4\x45\x5d\x0a\xf0\xf2\xa5\xa3\xcc\xb4\xc8\x2e\xc1\x4f\x46\xbb\x11\x05\x2d\x61\xb0\x1e\xf5\x45\x6a\xb9\x8a\x17\xd8\x89\xab\x58\x40\xc1\x8f\x71\x28\x83\xbd\x0d\x46\x07\xa1\xe7\x85\x9e\x37\x46\x97\x8c\xb3\x54\x6c\x26\xbe\x06\x4c\x41\x06\x67\x3c\xd3\x04\x38\x76\xf1\xc9\x97\x8c\x92\x7e\xf8\x5e\x9a\xc0\x0b\x64\xaa\xad\x25\x05\x9c\xb2\xcd\x93\xe5\x34\x67\x24\x6d\xf4\xd2\xe4\x36\xe4\xfb\x39\x9c\x15\xcb\x3c\xe9\xb6\xd4\xe3\x30\x8e\x6a\xd0\x62\x0f\xca\x46\x40\x16\xf8\x7f\xe7\x28\xc4\x38\xec\xf5\x8c\x5e\x01\x35\xe2\x3d\x01\x49\x2a\x2f\xa2\xef\x94\xfc\xab\x11\xde\x29\x2b\x56\xbf\x51\x8c\x53\x6b\x24\xf4\x3e\xbb\x8a\xeb\xe9\x9c\x81\x2d\x47\x3a\xf3\x2d\x26\x36\x58\x71\x40\xe0\xbb\x94\x1b\xff\x67\xfe\x8f\xd5\x5e\xe0\xd3\x23\xdd\x1f\xfd\xfd\xe9\x78\x2f\x78\x1a\x3c\xbb\xd4\x77\x2b\xa8\x38\x84\x6a\xaa\xb0\x8e\x2f\x61\xf4\x45\x6b\xe8\xd5\x64\x94\x26\x22\x7f\xac\x75\xfd\xe2\xcb\x86\x1f\x7d\x38\x44\x16\xeb\xc7\x11\x14\x15\x08\x49\xf5\x81\x72\x59\x12\x99\x39\x1b\x2c\x26\xf9\x00\x01\xfe\x91\x39\xb8\x72\x7c\x44\x65\x30\x31\xa3\x83\x71\x00\xb3\x6b\x53\xa3\x73\x76\x8b\x3b\xdd\x80\x3e\x1c\x07\x43\xac\xbb\x8f\xef\xd4\x1c\x44\xd0\x05\x71\x4a\xc3\x14\x22\x4c\x20\xe7\x0b\xee\x16\x1c\xd4\x60\x6a\x74\x0d\x64\xca\xe2\xb2\x8c\x04\x21\x19\x91\x26\x84\x62\x6e\xbf\x2e\xde\x16\x37\xac\x3c\x8e\x2b\xe6\x07\xe3\xfb\x7b\x01\xda\x97\x9b\x46\x46\xfe\x01\x2f\xdb\xe5\xe8\x60\x8c\x2c\x28\x7c\x1c\x8e\x39\x0b\x0a\x3f\x9f\xc3\x82\x90\x77\x35\xb1\x12\xbc\x5e\x35\xbf\x1b\x7a\x7b\xfc\xa3\xa1\xcf\x42\xeb\x6f\x33\x74\x31\xaa\x31\x46\x06\x93\xd7\xb4\x07\x47\x92\x69\xf4\x12\x01\x86\x68\xe5\x22\x1b\x91\xcb\x42\xdf\xc3\x1a\x03\x45\x98\xd6\xb9\xb4\xb7\x90\xe0\x42\xff\x40\x67\x58\xdb\x6b\xd7\xca\x11\x2a\x5f\xba\x1e\x92\x6f\xb6\xec\xae\xf2\x77\xbd\x9e\x95\x01\xd7\xa5\xfe\x74\x1e\x97\x47\xb5\x7f\x00\x8e\xb7\xff\xef\xff\xe7\xd1\x36\xc8\xfd\xca\x59\x16\x35\x85\x0f\xb5\xad\x8d\xa4\x4d\x22\x58\x54\x9c\xf1\x25\x10\x51\x85\x85\xb2\x0e\x56\xa2\xe7\xfc\xa3\xdf\x5e\x29\x70\x75\x0d\x56\x38\xfb\x36\x90\x6c\x08\xd2\xe5\x12\xbd\x45\x95\xc8\xf8\xd2\x6e\x8a\xaf\x1a\xa0\xad\x76\x35\xbb\x51\xc4\xf2\x84\x24\x04\x2b\xf3\xdb\xdc\x19\xaa\x32\x0a\xa1\x07\x3d\x68\xb6\xe4\x66\xb1\x4f\x72\x5c\xfc\x2d\xb8\x04\x11\x85\x33\x4f\xb6\x60\x9e\xb4\xca\x0b\x8c\xba\x89\x2e\x3a\xbf\xe7\x3b\x36\x67\xb7\xf5\x59\x7a\x91\xa5\xf9\x65\x98\xc5\x55\x3d\xa4\x03\x48\xc6\x0d\x58\x41\x31\x01\xa4\x8c\x58\xb7\xc8\xb3\x92\x74\x71\x44\x10\x40\x5e\x39\xa4\x46\x30\xda\x7c\xdf\xf2\x24\xf4\x31\xa3\xc6\x85\xa9\xd3\x45\x17\x45\xce\xe4\xa2\x64\xf1\xa7\xa6\x81\x4c\x32\xee\x54\x7d\x18\x79\x60\x55\x31\x96\x80\x26\x69\x6d\x90\x40\x29\x59\x6b\x3d\x20\x19\x33\xaf\x47\xad\xf5\x49\x1b\xc6\xd9\x69\xb6\x1e\x8b\xb5\x34\x57\x8f\x36\xc5\x7a\xdd\xcd\xe3\xe7\x5d\x48\xf0\x0b\x9e\xe6\x3d\x4e\x25\x37\x8f\xc3\xd0\xda\x1a\x14\x82\xd7\xd8\x75\xf1\xa1\xfb\x4f\xae\x4f\x73\xa2\xc8\x14\xb5\xef\x2a\x50\xe4\x31\x2b\x93\xa0\x4a\xaf\x3a\xb8\x9a\x1c\x13\xb1\xf6\xf2\xb3\xfd\xe6\xa4\x33\x0f\xdb\x93\xe2\xb4\xc5\xee\xb5\xa0\x39\xa2\xc3\xb5\x43\x86\xab\xfa\xcb\x2c\x52\x9a\xe2\x1c\xa4\x0d\x37\xa7\xed\x2f\x46\xd6\x48\xd8\xeb\xef\xb3\xc6\xa2\x35\x0d\x9f\x41\xdf\x3e\x6b\xb8\x1a\x87\x18\x0f\xf6\x9c\x3d\x76\xa8\x4f\x36\x67\xd3\x4f\xe2\x4d\x01\x15\x70\x01\xb4\xd3\x99\x8a\xe2\x50\x1b\x79\x2e\x61\xfc\x0e\x10\x51\xe0\x48\x98\x70\xc0\xc9\x36\x43\x17\x52\x44\xf3\x65\x1b\xdc\x3a\x1a\x44\xc1\x48\x57\x0b\xbc\x70\xa4\xc9\x9d\x13\x4a\x6d\xfd\xc8\x90\x41\x3a\x61\x25\xb9\x89\x28\xdd\x71\x43\x82\x64\x42\x6d\x70\x27\x8c\x58\xd9\x11\x59\xe1\x4e\x38\x29\xcd\x8c\xa8\x58\xd3\x09\x89\x62\xc9\x88\xc8\x55\x5d\x50\x69\x25\x86\xd5\x26\xff\x1b\xe4\x83\xf6\x66\xda\x5a\xfa\x82\x21\x63\xb0\xf6\xfb\xfb\x5d\x28\xe7\x9e\x32\x3a\xe9\x91\xd3\x0d\xaa\x5a\x11\xc6\x53\xa2\x88\xee\x1f\xe7\x79\x51\xef\x2c\x58\x39\x2b\xca\xab\x9d\x42\x9a\xbb\x56\x3b\x45\xbe\x13\x6b\x21\x3c\xc6\xb7\x17\x01\xfe\xc1\xdf\x19\x84\xbd\xef\x7b\x41\xa3\x42\xad\x29\x60\xf2\xae\x56\xf2\x15\xb2\x5f\xb2\x69\x71\x99\xa7\xff\x14\x0f\xca\xae\xe8\xc2\xeb\x62\xd3\x82\xc3\xaa\x38\xab\xa2\x91\xf7\xcc\x0b\xbd\xbe\x17\x7a\xff\xe6\x85\xde\x9e\x17\x7a\xaf\xbc\xd0\xbb\xf7\x42\xcf\xf7\x42\x2f\xf0\x42\x6f\xe4\x85\xde\xd8\x0b\xbd\x95\x17\x7a\x8d\x17\x7a\x3f\xfe\x28\x03\x69\x56\xd3\x78\xc1\x4e\xd9\x25\xbb\x85\xb7\x83\x53\x76\x79\x72\xbb\xf0\x3d\xff\xc7\x1f\xbd\x3d\xd9\x40\xff\xa7\x22\xcd\x7d\xef\xfe\xc7\x1f\xbd\x60\x0f\xea\xbb\xf4\x88\xc2\xa0\xd4\xd3\xa9\x59\xa5\xb5\x4c\x85\x8a\x89\x9e\x10\x19\xba\x4b\x6c\x3b\x0e\xcb\x19\xe9\x11\xea\x71\x62\x68\xa2\xb1\xa7\x5f\x6e\xcf\xea\xb8\x4e\xa7\x67\x0c\x65\x45\xa8\x0f\x21\x36\x34\x7e\x44\xf8\xa7\x31\x00\x69\xc8\x16\x06\xda\xb4\x34\x48\x85\xe9\x73\x48\x54\x43\xaa\x0c\xa7\x73\xcb\x33\x03\xa6\xb7\x7c\x32\x4c\xe7\x32\x47\xdc\x4e\xd2\x40\x7b\x0e\x5a\x5d\xc7\x19\x18\x51\x94\xd5\x60\x3a\x6f\x30\x1a\xfc\x25\xbb\xed\xb2\x81\x13\x35\x49\x41\x01\x99\x12\x3e\x51\x4f\x0e\xbd\xa0\x09\xe5\xb3\xed\xfa\x3a\x9a\x46\xcf\xca\xeb\xbb\x3c\xbe\xd2\x03\x98\x6b\x8f\x65\xa0\xf6\xc1\xff\x6b\x4c\x98\x6d\xc7\x4e\x77\x34\xcd\x49\x57\xf9\x22\xe4\xf4\x27\xae\xc1\x11\x2c\x6a\x15\x3a\xbb\xed\xf9\xa3\xbf\x3f\x1b\xef\x05\x9e\xab\x5f\x8b\xb8\x8c\xaf\xb4\xdd\x26\x7e\x8e\x14\xe2\x63\xda\xc7\xb3\x3a\x2e\xd7\x76\x90\x00\x7c\x6e\xef\xb6\xef\x5c\xff\x0b\xf4\xec\x64\x51\xa5\x59\x91\xcb\xce\x05\xab\xc6\x4c\x59\xdf\x9b\x60\xd5\x8d\x9e\x13\x35\x92\x4b\x90\x00\xbd\x4a\x1f\x68\x15\xe8\x33\x55\x10\x03\x02\x6d\xe8\x20\xd5\xbc\x9b\x3f\xf3\x82\x15\x24\x47\x98\x59\x2d\x2f\xaa\xba\xe4\xb7\x6f\x14\xac\x01\xe2\x95\xcc\x44\x3d\xb8\x67\x5e\x10\x96\xac\x5a\x66\xb5\xc3\x2d\x8a\x2c\xd2\x76\x89\xa2\xeb\x53\x40\xa3\x74\x8c\xe2\x27\x25\xee\x92\x59\x7d\xf8\xf2\x9f\xfd\x7d\xe0\x8f\xfe\xfe\x23\x5f\x78\x4f\x9e\x81\xf1\x0d\x34\x8b\x32\x35\x4e\xfb\xac\x1d\x03\xa5\x46\x87\xe3\x20\x18\x42\xe7\x11\x50\xa5\x0e\x61\x2c\xfa\x09\x16\xaa\xf6\xf6\x94\x22\x82\xbb\xf1\x1f\xff\x6d\x7d\xeb\x74\x2d\x6f\xd7\x34\x3f\x40\x69\xbb\x72\x44\x50\x3c\xd1\x6a\xc0\x5c\x40\xca\x57\x5d\x1b\x0d\x4a\x76\x05\x30\x69\xb2\xc6\xce\xaa\xb7\x32\xac\xc0\xa4\xdb\xcc\xe7\x0b\xe3\x6c\xf1\xff\xb3\xf7\x77\x5b\x6e\xdc\xc8\xa2\x20\x7c\xef\xa7\x60\xe5\x51\x53\x99\x26\x8a\x45\x96\x24\xb7\x9b\x74\xaa\x8e\x5c\x92\xba\x75\x5a\x7f\x2d\xc9\xed\xed\x4d\xb1\xeb\x64\x31\xc1\x22\xac\x64\x26\x9d\x99\x54\xa9\x9a\xcc\xb5\xce\x9b\x7c\xdf\xed\x5c\xcd\xdc\xcd\xe5\xac\xb5\xf7\x8b\xcd\x02\x02\xff\x40\x92\x2c\x59\xee\xdd\x3d\x33\x5e\x5e\x25\x26\x7e\x03\x40\x20\x10\x11\x88\x08\xe0\x99\x64\xc1\xe0\x33\x16\x3f\x80\xbb\x63\x0c\x27\x3c\xc4\x3b\x99\x36\x60\x87\xaf\x21\xf6\x15\xd6\x9c\x19\x54\x8b\x92\xbd\x86\x9a\x56\x4b\x16\x0e\xa9\x0c\x2f\x16\x31\x65\xb2\x56\x68\x42\xc4\x73\xc7\x4f\x7e\x59\x27\x19\xd8\x00\x4a\xf0\xfb\x8a\x20\xc4\x71\xec\x49\x1d\x8b\x7a\xfc\xdf\x6e\xd7\x6a\x40\xa7\x29\x7a\x13\x7a\x3a\xb8\x1d\xb1\xfa\xca\x52\x95\xe9\xce\xd8\x23\x53\xad\x73\x22\xbd\x5f\x2a\xe5\x2c\x73\x85\x6b\x55\x4a\xb6\xc6\x0a\x34\x50\x4c\x2c\xba\xb6\x66\xf6\xe2\x00\x76\x80\xb7\x09\x0b\x2e\x21\xa0\x06\x8a\xc8\x34\x11\x35\x6e\xa9\xd0\x18\x7d\xc2\x16\xd5\x47\xb0\x6f\x3d\xc1\x7d\x08\x89\x3e\xd9\x8f\x8a\xab\xef\x68\xc3\x38\x75\x09\xc7\x8e\x45\xf7\x2d\xb8\x86\x9d\xfa\x62\x31\xf3\x0b\x66\x6a\xc3\x46\x5c\xf9\x16\x3c\x32\x8d\x6f\x78\xc0\xed\xa4\xa4\x92\x4b\x8a\x3f\xbd\xa2\x5f\xb4\xcc\xf1\x50\x4c\x3e\x4e\x61\x76\x66\x5c\x31\x27\x76\xaf\xbf\x27\x1d\x2f\x0e\xea\x2b\xde\xd5\x97\xda\xb4\x90\xab\x13\xfb\xaa\x28\xeb\xb7\x45\xb6\x66\x6c\xae\x78\xaf\xd7\x40\x98\xaa\x4f\xcb\x28\x1f\x84\x04\x5d\xc2\xfb\x3a\x7d\x8d\x1e\x1d\xc5\xf1\xa5\xfe\x2d\x9b\x30\x4a\x1d\x1b\x65\x1a\xbb\x11\xbb\x59\x4a\x73\xcc\x86\x69\x8a\x6c\xda\x4a\x3f\xb6\x6a\xea\xcd\x0b\x72\xad\xb5\x26\x92\x9c\xe6\x44\xc6\xb1\x5d\xb9\xb9\x6d\x8b\x76\xd9\x63\xbb\x64\xf3\x45\xc7\xcb\x8b\x0d\x1a\xcd\xaa\x52\xca\x1a\x14\x95\xf8\xf2\x22\xcf\xee\x73\x0f\xe1\x76\xe2\xa9\x39\xdd\xb1\x7d\xa4\x35\xa3\xed\x40\x78\xc6\x0d\xba\xe4\xa7\xe1\x6c\x11\xa9\xa7\x86\x64\x49\xc6\x26\x14\xe7\xec\x22\x24\xe6\xf2\x03\x5c\x8b\x6c\xb7\x7a\x8c\xdb\xba\x88\x36\x72\x5c\x4f\x29\xb3\xf3\x54\x3b\x35\xd8\xaf\xb1\x6c\xfc\xba\xf3\x54\x43\xf2\x37\x62\x16\xde\xc0\xb1\x15\xfe\xb2\xc6\xe5\xcd\x6b\xce\x98\x31\xca\xa3\xa5\xc4\xda\xef\xed\x76\xd3\x34\x76\x75\xad\x5b\x0e\x77\xb8\xa1\x8c\xcd\x0c\x8f\x98\x3c\xa3\x8b\xde\x2c\x19\x55\xfe\x4c\x96\xc7\xde\x0f\xb4\xb3\x68\x22\x92\x8f\x4f\x6a\x00\xf1\x77\xcd\xd4\xd8\xe6\x44\x3c\xb8\xca\xd7\x17\xdc\xbe\x8c\x11\xd2\x19\x06\xa3\xe4\xb2\x82\x85\xeb\x8b\x4f\x60\x18\x79\x22\xfb\x0d\xc1\x4a\x92\x55\xbd\x2e\x31\xf7\x5e\x80\xe5\x63\xb9\x91\x8c\xf0\x06\x25\xe2\x21\x27\xca\x74\x66\xb8\x2c\xb9\x63\xb2\x2d\x2c\x13\x50\x78\xf1\x8c\x67\xca\x42\x94\xd5\x63\x7c\x91\x48\xe9\x03\x77\x0a\x1c\x75\xbc\x69\x64\xe3\x3f\xc7\x03\xb4\x8c\x81\x87\xe2\x2d\xff\xfc\xdd\x72\xfc\x33\x6d\x99\xf3\xdf\x2c\x73\xf2\xf3\x74\x1a\x8b\xa1\x4e\xcc\x81\xf5\x7a\xd3\x06\x46\x05\xc4\x74\xc3\x3b\x1d\x89\xce\xf9\xbf\xbc\xfb\x11\xfc\x83\x48\xc5\xf9\xc9\xd1\xd1\x91\x0e\x40\x13\x99\xac\x93\xda\xa2\x49\x9a\x0a\xbe\xcb\x70\x8a\x15\x4c\xd8\x46\xb0\x94\x82\xe1\x0f\x9d\x63\x14\x58\x00\xc3\x67\xd6\x70\x72\x5c\xad\x29\x3b\xa0\x85\x7c\xd5\x73\xd9\xfe\x7b\x43\xb9\x73\xb9\x72\x86\x97\x23\x84\x4d\x29\x0a\xde\xb0\x64\x1c\xc6\x52\x84\xa1\x73\xdf\x8c\xad\x26\x74\x8e\x2e\x49\x53\xdd\x77\x74\x4d\x89\x90\xf1\x92\x9d\xeb\xee\x2b\x3b\xe4\x08\x1a\xfc\x2d\x00\x31\x24\xde\x70\x7a\x37\x1a\x20\x41\x47\x47\x03\x76\x3d\x5a\x8d\x06\xc2\x25\xb6\xa4\x24\x0d\x25\x59\xf6\x56\xc8\x1f\x13\x40\x1e\xc1\xe6\x2d\x57\xf5\x0d\x73\xd5\xb1\x30\x12\xa0\xf3\xe2\xa3\x26\xe4\x68\xb8\xc8\xdf\xb2\x94\x72\x8e\x26\x3d\xc1\x4b\x07\xba\x08\x35\xd6\x21\xd2\x7e\x4b\x6a\xc9\xbf\x23\x0b\x95\x6d\x91\x48\x62\xb3\x57\x24\xfa\x19\xbc\xcf\xe0\x53\xb7\x22\xb5\x64\x81\xcd\xac\xc8\x6b\x92\xaf\x71\x23\x26\x84\x99\x69\xed\x41\xa4\x8d\x29\xfc\x33\xa4\xba\xc2\x9f\x7a\x54\x12\x34\xab\xee\xc3\x6c\x51\x51\x20\x38\xfb\x0c\x41\x6e\x14\x9b\x5f\x6e\x3b\x98\x51\xb1\xe9\xd8\xa4\x8e\xd8\xdf\x66\x2c\xa9\x08\xdb\xa8\xfc\x2b\x82\xf0\x0a\x6c\x5c\xa6\x3f\xf7\xed\x86\xd4\x78\x7c\xa6\x4b\x49\x82\xaa\xb1\x15\x96\xce\xd2\xa8\x41\x3b\xc1\x9d\x20\x32\x0b\x02\x2a\xb3\xbf\xc2\x21\x28\xe6\x3b\xa2\xdb\xe5\x3f\xfa\x49\xa5\x69\x36\xf8\x3b\xd4\xb1\x20\x07\xd5\x48\xc3\x1f\x89\xf5\x82\x3a\x55\x4d\xa3\xb6\xc2\xd3\xa2\xb4\x9f\xb9\x56\xf8\x6c\x77\xc0\xe5\x72\x6e\xe1\x72\xc4\x0a\x79\x54\xa5\xef\x16\xb8\xc4\xa0\x02\x85\x86\xd8\x0b\xe6\x69\x47\x3c\xd3\xe8\xd9\x55\xfd\x56\x6a\xaf\xd3\x59\xb3\xe8\x84\x4c\x6d\xc2\x89\x16\x49\xc5\x68\x8d\xff\xe9\x6e\x78\x59\x5c\x1f\x91\x4f\xf3\x91\xf3\x58\xf2\xf2\x78\x6c\x99\x0c\xfe\x24\x51\x10\xfc\xaa\xc9\xf0\x29\x42\xf8\xe7\xaf\xd4\x7d\xdc\x76\xa3\xc3\x78\x60\xaf\x8a\xdf\x62\xfb\x89\x59\x12\x1a\xab\x46\x3e\xb5\xa4\x14\x3e\x47\x5c\xe1\x23\xe6\xe5\x24\xe8\xc1\x4f\xfe\x0a\x79\xb2\xac\xd8\x8b\xfd\xc9\xd2\x60\xa9\x44\x85\x9e\x10\x4f\xa1\x27\xe6\xcb\x0c\xfa\xe1\xd0\xad\x84\x4c\x54\x90\x78\xc0\x3b\x44\x9e\x56\x6c\xad\x9b\xdc\x02\xc2\x21\x93\x94\x92\x62\x7f\xc0\x37\x06\xdf\xfb\x01\xb3\xb7\x4b\x04\x52\xc8\xf1\xf4\x17\x49\xf5\x4a\x3d\x41\xc1\xde\xf3\x8c\x36\xb4\x36\x20\x2c\xfd\x6e\x1a\xf6\xcd\x04\x25\x8b\xc7\xc1\x79\xcc\xf2\xd4\x82\xe2\x1c\x96\xf4\x03\xbe\x61\x59\x42\xf9\x00\x3e\x76\x9c\x3f\x11\x6f\x4f\x70\xc7\x3b\x70\xf9\x94\xcb\x28\x06\x43\xeb\x8f\x4d\x9f\xd9\x35\x8e\xa2\x8d\x7e\x7a\x64\x31\x4b\x55\x47\x47\xa6\x8e\x8e\x84\xd6\x7a\xcd\x1b\xea\x05\x93\x69\xd0\x0b\xe2\xa0\x87\xf3\x59\x91\xe2\x1f\xde\x3c\x3b\x2f\x96\xab\x22\xa7\x04\x9c\xb5\x31\xf9\x79\x1a\x8d\xd9\x24\xc2\xd0\x65\x75\x61\xb4\x49\xf3\x7a\xf1\xae\x26\x8c\xfa\x2b\xa8\xca\xa6\x9a\x94\xda\x43\xad\x03\x4d\x33\xc9\x7f\x9c\x05\x3d\x28\x04\xb7\x12\xdd\x20\x6a\xe0\x31\x08\xef\xf2\xff\xa2\x12\xf5\xa5\xd7\x92\x85\x2a\xb2\x1b\x44\x3a\xb3\xac\xb3\x91\x60\x5a\xa5\x83\xa6\xf6\x22\x9b\x7d\x96\x35\x21\x53\xd1\x56\x1c\x44\x88\xae\x6a\x8a\x9d\xc1\xd3\xa2\xcc\x34\xee\x03\xbe\x79\x0e\xc3\xfc\x80\x6f\xa4\xf9\x1d\xac\x1f\x9c\xbf\xe0\x04\x39\xe6\xb3\xa2\x26\x65\xc8\xbc\xa1\xd7\x38\x0e\x28\xdf\x12\xc0\x8c\x93\x79\x28\x5b\x7c\x78\xda\xed\xd2\x46\xc1\xfc\x49\x26\x1f\x9f\xc2\x95\xcb\x34\x88\x36\xa2\x23\xc6\xf9\x70\x04\x14\x11\xa2\x91\x5e\x83\xd1\x3b\x6d\x5e\x18\x42\x46\x1b\x3b\x25\x9e\x4c\x9b\x46\x20\x2e\x29\x27\xc3\xe9\x59\xdb\xe0\x87\xd3\x68\x14\x04\x8d\xc2\x56\xb7\x35\xc0\x0a\xfd\x51\x0d\xa7\x3f\x4f\xeb\xc2\x67\x94\x93\x07\xad\x4a\x83\xa4\xfc\xeb\x8d\x0d\xc0\x65\x5f\x93\xe1\x9c\x32\x01\x8a\x85\xdc\x43\x19\xe2\x18\x93\x94\xb5\x85\x25\x88\x54\x6f\xb3\xa4\x5a\x3c\x2e\x8b\xd5\x0a\xa7\x9c\x75\x62\x8f\xa9\x48\x18\xa1\xaf\xb1\x6a\x03\xc4\x29\xa1\xb7\x09\xce\x20\xd8\x90\xca\xe7\x2a\x23\x0a\x9c\x86\xaa\xdc\x85\x1c\xf4\xea\xaa\x70\x6f\xc8\x20\x15\x11\x56\xc7\xfc\x21\x17\x55\x74\xa0\x41\xcf\xa1\xe0\xe0\x43\x3c\x49\x6b\xf7\x18\x9b\x06\x36\x65\xbd\x70\x49\x3f\xeb\x86\x12\x7e\xfa\xa3\xe1\x73\x15\x6b\x90\x8c\x79\xd5\xe7\x38\x7f\x38\xa4\xa7\x81\x6a\x85\x27\x1f\x0f\xe5\xcd\x81\x07\x68\x55\x68\x6c\xcd\x31\xbb\x83\x81\x70\x81\x94\xae\x19\x7d\x8a\x83\x92\x2f\xaa\x57\xf1\xa1\x83\x42\x22\xc0\x71\x43\xd1\x21\x4c\xb5\xe0\xc4\x16\x6a\x31\x71\x4a\xec\xd4\x8c\x08\x05\x2c\xa3\x07\xea\xd8\x91\x8d\x68\xca\x51\xe0\x6a\x1a\x0e\xa9\xa5\x81\x13\xbf\xa4\xd9\x7e\x8d\x63\x99\x38\x19\x4c\xa5\xa6\xb7\xdb\x35\x25\x79\xee\xb6\xad\x4f\x98\x28\xc2\xb8\xd0\x7e\x55\xac\xcb\x99\x30\x8e\x3c\x7e\xc0\x96\x20\xec\xf7\xa2\x3b\xfa\x32\xf4\x28\xcb\x2b\x2c\xa4\xf7\xab\x16\x1a\xd3\x07\x7b\x22\x5e\x38\x0f\xa6\xb1\x25\x0f\x2a\x8d\xc5\x3b\x16\x91\x06\xa2\x41\x80\x2d\x70\x89\x52\x9c\xe1\x2b\x78\xa9\x1c\x50\x93\x83\x03\x42\x26\x2f\xc5\x8d\x96\x4b\x48\x14\x55\x62\xf1\xa3\x81\x86\x75\xc1\xb3\x76\x1e\x6d\x41\xe6\x65\xb0\x6c\xc4\x68\x92\xbd\x8e\xc7\x7f\x77\xbb\xe2\x57\xff\x9a\x64\xd9\xa3\x34\x7d\xc3\xb9\x40\x08\x57\xe4\xcd\x0d\x75\xb0\xfb\xbc\x67\xf1\xf0\x8a\x91\x97\xa4\xdc\xd2\x41\x0b\xd6\x03\xda\x76\x09\xa7\xf6\x61\x9c\x90\x0e\x1b\xfa\x53\xb1\x86\x40\x95\x8b\xe4\x23\xee\x24\xb9\x0a\x5f\xc9\x6d\x14\xb4\x2b\xbe\xaa\xc2\x69\xa7\x2e\x3a\xff\xb3\x2e\xfe\x67\xe0\xc2\xa4\xa2\xa0\xea\x80\xc9\xc9\x43\xc6\x74\x99\xf1\x38\x35\xbd\xdb\x0b\x68\xd0\x7c\xc7\x06\x04\x68\x7a\xce\xf2\x3b\x22\x08\x8b\x25\x13\xf8\xbc\xc2\x3f\x0d\x6f\xa2\x55\x9b\xc0\xa0\x13\x22\x9f\xde\xc1\x84\xe6\x4c\x85\x9c\xd6\x20\x31\x28\xab\xaa\x3d\x30\x85\x88\xca\xdc\xbf\x64\x12\x9d\x35\x18\x13\x7a\xde\x9b\x40\x50\x59\x57\x3a\x5e\xb3\xda\x2d\x38\xdf\x82\x6e\xfc\xf9\xd3\x27\x79\x8d\x4b\x9c\x46\x9b\x96\x0c\x81\xd8\xac\xd9\xa8\x91\x17\xd9\xfc\x5b\x5b\x0e\x13\x16\x66\x88\x43\xf2\xab\xd7\xfe\x7d\x68\x7b\xde\x83\x2e\x03\x57\x35\x4e\xcf\x8d\x2d\x34\x5f\x67\x19\xc4\xd1\xd1\x1a\x64\x87\x03\x58\xc4\x9b\x35\xcc\xef\xd0\x04\x49\x34\xe5\x82\x63\xbe\xb1\xc5\x82\xb7\x02\x15\x71\x3a\x75\xeb\x36\x8d\xa1\x6c\x83\x0d\xca\x90\x84\xb1\x21\xc8\x44\x21\xe1\x20\x31\xf0\x29\x86\x40\x4d\x6b\x93\xfe\x0c\xe7\x3d\x2d\x9f\x1e\x00\xda\xd1\xd4\x38\x47\x5c\x86\x73\x11\x9b\x9c\x0a\x9d\x3c\x54\x8f\x06\x85\x90\xe2\x9b\xb1\xd6\xab\x92\x8e\x35\xfd\x3e\x4e\x66\x0b\x18\xd0\x65\x52\x61\xf6\x4b\x4e\x80\xc4\x69\xe3\xd9\x47\xbe\xfd\xc4\x5e\x87\x4f\x39\x56\x0a\x05\xa5\x16\x90\xac\xae\xfc\x1d\x29\x48\x3e\xf4\xc6\x5b\x04\xb6\x52\x02\x21\x23\x83\xb7\x4e\xb8\xbe\x4b\x23\xe5\xab\x52\x5a\x5b\x2a\xda\xa8\x21\x6a\x4d\xf8\x0b\xbb\x43\x06\xb4\x91\xe4\x93\x19\x21\xf1\x3c\xa4\x9a\x63\x6f\x94\xb4\xea\x2f\xfb\xcb\x64\xe5\xc6\xac\x41\x62\x64\xe6\x6e\xf0\x50\x0c\x65\x22\x64\x62\x7b\x10\xc8\xa5\x32\xc9\x69\x34\x56\x63\x9e\x4c\x65\x21\x53\x83\x0a\x97\x65\x0e\x0c\x76\x0a\x58\x3a\x72\xb4\x51\x61\x44\xe9\xb1\xc3\x13\xc5\xd3\xa8\xb6\x9d\x5a\x79\xc2\xb1\xf0\x98\xe4\xf3\x22\x40\x93\xa0\x7f\xb2\xae\x49\x56\x05\x28\x28\xab\x8f\xab\x93\x55\x59\x2c\x49\xc5\xc2\x9e\xf8\x6c\xd8\xf6\x45\x28\xd9\x65\xe3\x46\x97\x28\xb6\x9a\xe8\xd3\x44\xa0\xac\xb8\xbc\xc2\x4e\x36\x4b\xe5\xba\xd8\x92\x24\x19\xf9\xbb\x5b\x46\xe6\x80\x31\x2f\x0c\xe0\x79\x72\x89\x33\xa7\xa8\x9e\xc9\x4a\xbf\x86\x84\xd8\x1a\x89\xc6\xf2\x28\x4a\xcb\xb9\xa6\x67\xf9\xbc\x08\x2f\x56\x65\xb1\x12\x0a\x08\xfa\x33\x86\x14\x16\xe4\x99\x01\xad\x9e\xc6\xac\xa4\xfd\x2b\xa9\x01\xd0\x10\x92\x1b\xad\x45\xfd\x2c\xcc\xe5\xdb\x02\x82\x74\xb0\x8f\x95\xba\x2b\x42\xfc\xb4\xe0\x6f\x85\x41\x2c\x64\xf8\x50\xbd\x98\x36\x44\x59\x61\x28\x52\x6e\xb2\x22\x49\xd1\x12\x62\x94\x70\xc5\x08\x4b\xeb\x67\xc5\x15\x65\x1d\xe5\x47\x28\xf5\x67\xbd\x60\xd4\x09\x7a\xa2\x4e\xd3\x20\x7d\x3a\x55\xe3\x19\xfd\x54\xa6\x51\x5a\x99\x30\x10\xae\xef\xd0\xdc\xdd\x4e\xd0\x83\xd2\x0d\xba\xc2\xf5\x0f\x79\x89\xab\x22\xfb\x88\xdb\x1e\x79\x6b\x90\x5c\xeb\x36\xe3\xb9\x95\xba\xe1\x43\xbc\x35\x2d\x86\xe9\xa2\x58\x67\xe9\x39\x57\xb8\x20\x3e\x48\x61\x3d\x82\x67\x1f\x9e\x16\xe5\xa3\xcb\xa2\x84\x17\x74\x43\x15\xc7\xd8\xc8\x44\x66\x33\x11\x7f\x92\xe4\x45\x91\xe2\xcc\xae\x58\xae\xf3\xef\x55\xee\x9f\x8a\xe2\x83\xec\x15\x2d\x7d\x15\xae\x70\xcd\x8a\xaa\x62\xcc\x30\xb6\xad\xf1\x47\x32\xd3\x6c\xfb\x12\xcf\x8a\x25\x7e\xc3\xa7\xd3\xae\x68\xe6\xca\x5a\xe2\x22\x89\x6f\x8a\x3e\x9f\xbf\x50\xda\x29\x40\x6d\x73\x45\x99\x20\x2a\x34\xfb\x41\x14\xf5\xeb\x05\xce\x43\x73\xc2\x18\x62\x7a\xea\xb2\x38\x9a\x9d\x79\x51\x76\x12\x5a\x4e\xd6\xd6\x26\xb4\xb5\x2e\x4c\x6b\x87\x4d\xe2\x67\x75\x4b\xe6\xd0\x2b\x4e\x3b\xe9\x9a\x8a\xc7\x9d\xbb\x5a\xbf\x77\x3b\x8b\xa2\xf8\x20\x1b\x5e\xee\x84\xe5\xc5\x97\x00\x82\xe4\x9d\xbb\x4b\x4f\xd7\x6a\xfd\x5b\xdb\x62\x58\xf0\x65\xa6\x82\x42\xa1\x7a\xb4\x40\xb1\xf0\xa6\x7d\x69\x68\xb1\x8e\xd8\xcc\x41\x14\x35\xc8\xdd\x08\x0e\x35\x32\xa8\x90\x7c\xca\xcc\x4a\x08\xeb\x72\x8d\x11\x8b\x9a\xca\xe1\x80\xc9\x17\x48\x0c\xf0\xc8\xeb\x22\x9d\x34\x94\xeb\xfc\xed\x22\x29\x71\x2a\x41\x90\x74\x30\xd0\x56\x3e\x40\x93\x29\x00\x6c\x6e\x2e\x97\x7a\x8a\x01\xb2\x22\xdc\xfa\x42\x3e\xf6\xc0\xee\x25\x85\x71\x7c\xb5\x78\xa3\x97\x6d\x69\x61\x7c\x28\xb4\x6a\x81\x02\x34\x31\xda\x98\xf2\x95\x72\xa9\xa3\x98\x47\xa3\xb8\xbc\x4c\x69\x5b\xca\x67\x57\x39\xdd\x65\xf3\x75\x36\x27\x59\xc6\xc4\x4e\xa6\x99\xeb\x24\x79\xca\x4d\x8f\x00\xef\x20\x59\x2c\xb5\x05\xb9\x3b\x75\x14\xad\xe0\x9d\xe9\xf2\x4a\x5c\x88\xd1\xb3\x46\x0e\x91\xb2\x57\x74\x4f\x06\x3d\x51\xb4\x17\x70\x64\x94\x71\xd8\x8d\xbb\x08\xda\x10\xb0\xd3\x4e\x5e\xa3\xf2\x24\xa9\xd3\xaf\x23\x75\x94\xd1\x0d\x1f\x78\xd2\x44\x40\x30\xed\x76\x9d\x24\xfe\x4e\x9c\xb8\xc2\x64\xc3\x61\x8f\x10\xb1\x26\xba\x5d\x7e\x0b\x46\xaa\x77\x32\xda\xb3\xb8\x1a\x83\xa0\xc8\x2d\x34\x17\x8a\xb4\xae\x0b\x47\x27\xbe\x18\xc2\x06\xac\x33\x2f\x8b\x65\xa7\xc8\x71\xa7\x98\x33\xdd\x00\x2c\x0d\x05\xb6\x62\x4b\x23\x4e\x17\xce\x44\xe8\x24\xa2\xfd\x94\x84\x8e\xe1\x1d\xf0\x4d\x0b\xb8\x66\x9d\x30\xba\x0d\xb5\xf7\xe0\xaa\xd6\xe5\x67\xe2\xa6\xb8\x55\x61\xc3\x76\x77\xe0\xde\xcd\xec\xdf\x2e\xb1\x3f\x99\x71\x7d\x2d\x1b\x4c\xd9\x84\xc7\x46\x4e\x63\x9d\xd1\xed\x10\xf1\x70\x1b\x32\xfc\xa8\xd4\xf5\x4a\x66\x28\xb4\x8b\x8e\x15\x25\x95\x7e\x16\x7b\x89\x90\xac\x2c\x46\xc2\xfb\x32\x3f\x8d\xb1\x3a\x76\xef\xfc\xa6\xcb\xa0\xbb\x9c\x3d\x0d\x03\x79\x20\xa0\x8d\xe0\x5f\xad\xbe\x99\x09\xc0\x48\x36\x27\xf9\x5f\x7d\x87\x9a\xb6\x39\x0d\x5d\x5e\x86\x7c\x6f\xd7\x2b\x5c\xce\x70\xaa\xf1\x7b\x45\xbd\x90\xd1\xcb\xe1\xa7\x1e\x55\x9f\x71\x7d\xd0\x6f\xc5\x84\xb7\x98\x15\x12\x9a\x18\xfd\x65\x17\xfc\xa9\x16\xc4\x19\xca\xf0\x60\x9f\x12\xd2\xed\x96\x83\x68\xc8\xd3\x01\xaf\x1b\x44\xdd\xee\x91\xd1\x55\x4b\x79\x18\x13\x2b\x0e\x3f\x41\xa8\xd4\x38\x5b\x04\xfd\x8b\xdb\x5c\xd3\xc2\x5f\x56\x10\xe6\x9c\x47\xc9\xdf\x8e\x2e\x23\x33\x32\x1e\x4b\x36\x67\x42\xde\x96\xd2\xe3\x3f\xe1\x16\x9b\xf6\x0d\x69\xd4\xed\x26\x93\x0f\xd3\xa3\x38\xbe\x9c\x7c\x98\x5a\x8d\x36\x7a\x73\x2d\xba\x63\x4d\xda\xd9\x2d\x96\x9e\x70\x8c\xa1\xe2\xa9\x2f\x5b\x20\xcd\xb1\x29\xcb\x7a\xcb\xae\x73\x6f\xe9\xe3\xcb\x9b\x63\x1e\x75\xfe\xd6\xf5\xd8\x44\x7f\xae\x80\x6c\x87\xf0\xdc\x25\x30\x8b\xed\xaa\x4d\x9c\x2d\xd1\xea\x82\x2a\xad\xa2\x44\x28\xad\xd2\xf7\x37\x60\x81\xb9\x4b\xca\xdd\x51\x99\x9d\xa2\xb1\x05\xba\x5e\x77\xa1\x4a\xf3\x67\x79\xfa\x1f\xe0\x5d\xbf\x78\x23\x25\x3a\xcf\x60\x60\x27\x8f\x76\x75\x8b\x60\x91\xda\xca\xc0\xb8\xb4\x4d\xe0\x82\xc2\xad\x42\x94\xb8\x7e\x5e\x17\xd2\xfc\xd0\x03\x32\xb7\x11\xd1\x0a\x30\xb5\x0f\xad\x15\x4a\x11\x3f\xd2\xc7\x2c\x08\x9c\xa7\x51\x41\x34\xb4\x9c\xb6\xdd\xe1\x56\xde\xb3\x49\x5a\x76\xc1\x24\xe8\xf7\x4f\xfc\x1b\xe3\x4b\x2a\x7a\x6e\x83\xc7\xb7\xc0\xdf\x6a\x7d\xc9\xe2\xa5\xda\xa8\xda\x17\x19\xbb\x75\x3c\xa7\x87\xea\x78\xee\xb9\x5d\xfb\x76\x9b\xe8\x35\xd4\xb1\x76\x73\xb0\x5e\x41\x9d\xc2\xdd\xae\x9f\x3d\x68\x63\x34\xf4\x23\x55\x3f\x85\xda\xd8\x45\x25\xdb\x7b\xf9\x44\xc1\xfc\xed\xd5\xb0\xa8\xc3\x9a\x53\xb9\xcd\x2d\x4e\x64\xed\x98\xa2\xc7\x32\xa9\x24\x6f\x03\x7e\x76\xad\x97\x8a\xee\xcc\xef\xc1\xfd\x03\xa8\xfa\xbf\xf6\x3e\x70\xb5\xa1\xa7\xa6\x36\xf4\x37\xd8\x27\xa4\x72\x29\x3d\x2d\xc8\xd3\x6f\xb3\x97\x76\x1f\x43\xfe\x5d\x25\x65\x13\x57\x2f\xe0\x88\x87\x86\x4a\x12\xba\xa2\xc2\xe2\xaa\x2c\x3e\x92\x14\xa7\x42\x15\xd2\xa6\xd0\xd2\x77\x14\x45\x54\x8f\xca\x94\x1f\x18\x9a\x39\x34\x4b\x81\xdf\xdb\xed\x84\x3f\x56\x24\x78\x45\xc8\x14\x9b\xd4\xa7\xa6\xbc\x58\x2a\x2d\x01\x68\xfe\x20\x85\x73\x82\x33\x8d\x01\xae\x34\x93\x45\xd4\x2a\xa4\x02\xa2\xc7\x9b\x06\x6c\xc5\xd8\x1a\x81\x9e\x2a\x8a\x36\x90\xc9\x0d\xe2\x07\xd3\x69\xcc\x32\x24\x0f\x0b\xc7\x26\x99\x0b\xb9\x55\x89\x12\x92\x1a\x38\x39\x42\x07\xc6\xde\xe7\x6d\xb8\x7d\xab\x30\x99\x38\x62\x96\x4c\xda\xf3\x3d\xd2\x6f\x57\x98\x37\x9c\x5c\x90\xf4\xce\x49\xbf\xc6\x55\x2d\xc2\xc4\x6b\x40\x72\x00\xfb\x24\x85\xfb\x0c\x37\xab\x31\x61\x6f\xa7\x26\xbb\x59\x85\xcf\xa6\x2b\x9c\x1e\x1e\x40\x56\xbe\xf8\xc5\xc9\x3f\x39\xdd\xd8\xc9\x36\xfa\xf7\xfa\xbe\x1d\x27\x24\x4f\xb6\xab\x74\x95\xfe\x0e\x22\xa1\xae\xad\x0d\x6b\xa8\x64\x59\x8d\x7d\xe7\xb0\xa1\x3c\xd2\xea\xc9\xfb\x1b\x95\x86\xb4\xb6\xa2\xb1\x4a\x37\xfc\x8b\x3c\xed\x82\xcd\x3b\xd7\x14\xc9\x87\xb2\xb4\x7d\xdc\x4f\xb1\xba\xd6\x8a\x63\xf5\xae\xd6\x59\xa0\xe5\x04\xa3\x00\xe8\xd9\xa1\xfa\x41\xa9\x5c\x9b\x28\x58\xa7\xd1\xed\xb7\x0c\xab\xe9\xee\x18\xf8\x47\x0a\x67\x46\xe8\x0b\xfb\x4c\x55\xb7\x8b\xfd\x13\xf5\xde\x19\x44\xd8\xb7\x12\xed\x32\x84\x45\xb2\x3d\x61\x46\xd7\xc7\x4e\x7a\x4b\xe9\x75\x99\xb5\x94\xb5\xf6\xec\x17\x39\xec\x7f\xd5\xfb\x0b\xc6\xf7\xb7\xfb\x85\x41\xcb\x99\x67\x0f\x21\x38\xe0\x62\x93\x16\xe3\x5a\x75\xfb\x3c\x17\xda\x76\x56\x26\x2b\xae\x9c\xfc\xac\x80\x50\x48\xcc\x22\xc0\xc9\x65\xa9\x10\x2f\x0f\x1e\xc2\x73\x4a\xf0\xf4\x16\x9a\x75\xef\x80\x9b\xdf\x7b\xce\xcd\x2f\xfe\x54\x97\xc9\xac\xfe\x8b\xb6\x29\xed\x0a\x6e\x11\x56\xf3\x0a\xd7\xf0\x4e\x6a\x46\xaa\xda\xa9\x64\xe4\xee\xa6\x8f\xf7\x7c\xf4\x51\x69\x7e\xc1\x53\xc5\xc2\x1b\x7b\x49\xb2\xe2\x0a\xee\x20\x2d\x7c\xea\x8b\x0c\xab\x51\xa7\x9c\xca\xb2\x4a\x3e\x82\x3b\x9e\x1d\x15\x78\x09\x56\x8f\x52\x90\x54\x65\x3d\x63\x5b\x29\xb6\x90\xda\x61\xfc\xde\x3c\xdf\x59\xe5\xf7\x87\xc9\x5d\xd6\xd6\xe8\x7b\xca\xc0\x42\x14\xab\xd8\xf1\xb2\x2c\x56\x9a\x93\x28\xa3\x55\xd2\xe1\x4d\x6d\x1f\xe6\xce\x63\x19\x33\xf2\x32\x15\xae\xc3\x08\x2c\x47\x0c\x13\xb5\x65\xb2\xf2\x05\x19\xb1\x5a\xee\xb7\x58\x1f\xda\xc5\x96\xc9\x4a\x99\x9d\x28\x2b\x10\x59\x00\x09\x6b\x1d\x65\xb1\x64\xb8\xb1\x1d\x0f\xd1\xaa\x2c\x66\x98\x5b\xd0\xb2\xf7\xb5\xbb\x5d\x9e\x34\x3e\x3e\x26\x5e\xff\xb6\xb1\x06\x81\x34\x17\xa9\xd0\x26\xa9\x4c\x5f\xac\x26\x1a\x8b\xd6\x95\xd7\x1b\x98\xf7\x6e\xb7\x66\x8a\x4c\x90\x1c\x23\xd8\xa2\x7e\xc3\x6c\x51\xc1\x2e\x3a\x60\x6f\xa8\xba\x3e\x3e\xdc\xe8\xc5\x38\xd7\x14\x80\xa2\xbc\x30\x6a\xd1\x5e\x26\xfd\xfe\x06\x90\x4b\x35\x05\xa4\x1e\x91\x8a\x66\x94\x4b\x9c\x12\x69\xf0\x77\x9d\x68\xb7\x2f\x24\xbf\x8a\xb9\x3b\x51\x32\xab\xc9\x47\x6c\x6d\x97\x22\x4b\x61\x9b\xda\xb5\xce\xbc\x75\x98\xa3\x36\x17\x90\xc1\x63\x13\x9c\xb0\xaf\xad\x66\xe1\xd0\x84\xd7\xbe\xeb\xf2\x86\xbb\x6a\x5f\x43\x57\x00\x3b\x5c\x25\xbd\x2b\x20\x82\x83\x80\x03\x59\xb3\x22\xcd\x04\xf8\x5e\xb0\x47\x3c\x56\x5c\x3d\xdd\x26\x10\x7b\x22\x14\x5d\xf5\xf5\x2c\x24\xfa\x30\x52\x23\xcd\x54\x9d\xd1\x48\x8d\x34\x1a\xa4\x50\x82\x68\xf8\xf7\xc8\x9e\x0c\x0f\x61\x61\x10\x6f\x35\x28\x1e\x48\x86\xe7\xbc\xd2\xbf\x78\xfd\xb5\x55\xf1\x3e\x2f\x37\x36\x14\xd6\xde\x92\xfc\xe5\x7b\xa6\x83\xd9\x55\xc0\x55\x73\xb7\xc3\x34\xf9\x30\x85\x3b\xbb\x46\x5e\x46\x2f\x88\x36\x62\x63\x6e\xd9\x3d\xf5\x24\xd0\x66\x41\xbe\xc6\x1d\xa0\x5d\x83\xf3\x67\x26\x59\xe6\xcf\xe0\xe3\x98\x8a\x87\xab\x3d\x53\x49\x61\x66\x66\xf1\x36\x4a\x77\xbb\x5e\x9c\x36\x37\xa4\x9d\x0b\x02\x9a\x81\xe1\x8c\x9a\xaa\x4f\x78\x36\x77\xec\x43\x8f\x78\x4e\x72\x76\x62\xff\xc5\x1a\xcb\xae\xa9\xf4\xa1\x14\x32\x00\x88\xc6\xc6\xa7\x38\x83\x63\x6f\xaa\x75\xeb\x08\x37\xad\xd1\x66\xbd\x4a\x93\x1a\xff\xf0\xe6\x79\x68\xd4\x42\x6a\x23\x96\xfc\xa5\x37\xd8\xcb\xfd\x94\xa4\xc6\x9c\x79\x52\x45\x51\xee\x26\xfa\x27\x7d\x9b\xd9\x1e\x90\x60\xe3\x65\x68\xef\x54\x43\x9d\x59\xb1\x5c\x65\xb8\xc6\x41\x14\x69\x01\x11\xb4\x55\x69\x74\x33\x5a\x6b\x29\xc0\x3f\xc7\x24\x8c\x15\xae\xd7\x2b\x7e\xed\x56\x99\xb3\x2f\x7a\x68\xf6\x2e\x32\xe2\x54\x57\xd5\x14\x77\xf3\x2e\x4e\xf9\xc9\x27\xbb\x0a\x0e\xa3\xaf\x1a\x6f\xb6\xb9\x80\x5f\x60\x91\x95\x13\x04\xc3\x42\x6d\x38\xe6\xa2\xf3\x6b\x7b\x1e\xf6\xc6\xb7\x36\x6f\x71\x5d\x67\xb8\xa3\x8e\x24\xc1\x15\x76\xae\x17\x38\xd7\xd3\x49\x25\xfb\x4b\x03\xee\xa0\x62\xef\xc4\x68\x03\xcf\x20\x3e\xf9\x44\xd8\x23\x6a\x1c\x53\xac\x85\xb1\x90\xbe\xf1\x22\xc2\x8c\xdd\x00\xaa\x53\x75\xd7\xb2\xd1\x61\x61\x08\x6a\x57\xe9\x01\x9a\x54\x6c\x45\x98\x81\x0d\xe7\xd7\xb5\x34\x73\x8b\xaa\x58\x9d\x2a\xd5\x1b\xf0\x81\x5d\x98\x08\x35\x96\xa6\x80\x82\xe7\xbc\xf5\x2f\x78\x78\x5d\x75\x68\xe1\x9f\x16\xae\xc0\xb3\xbb\x80\x4e\x23\x1b\x9f\x74\xab\xca\x1f\xde\x3c\x57\x03\x5e\x97\x32\xb0\xfc\x55\x15\x33\x0e\x06\xec\x8a\x85\xb7\x05\x9c\x61\xeb\x32\x73\x7d\xa7\x68\x95\xc9\x60\xca\xdc\xa7\xd6\xa5\x54\x54\xa5\x85\x3d\xeb\xcc\x38\xa4\xbf\xc4\xf5\xa2\x48\xd9\xbb\xeb\x51\x83\x24\xd5\x19\xf9\x9f\xc3\x03\x27\x10\x59\x4a\xc6\xa7\xa4\xd4\x60\xc9\xde\xfa\x0c\xd4\xa3\xc5\xee\x90\xd8\xfc\x28\xca\x46\xd3\xda\x1e\x78\xd7\xfd\xad\xfd\xc0\xf3\x89\x68\x18\xfa\x08\x4a\xf2\x6e\x47\x63\x3b\x5a\xe1\x21\x5a\x51\x89\xe7\x25\xae\xf4\x57\x7e\xc9\xc7\x42\x2c\xa5\x1e\x9a\xc6\x4b\x1f\x6e\xc3\x93\xe9\xf8\x1a\xbb\x28\x3c\xd6\xac\x2b\x4c\x77\x51\xe6\xee\xab\x17\x35\xdd\x7e\x7b\x3d\x62\x60\x3a\x13\x60\xf4\xe2\x94\xed\xe6\x86\x12\xfa\x26\x00\xdd\xa6\x9e\xa2\x29\xba\x84\xdd\x2d\x02\xfb\x4a\x92\x5f\x75\x92\x0e\x9f\x2b\x8d\xb6\x04\x22\xc8\x30\x13\xb4\x28\xc2\x78\xa5\xb6\x10\x6e\x71\x0c\xa0\x3c\x03\x3a\x1e\x4e\xe1\x92\x47\x5f\x83\x91\xfe\xb1\xdd\x1a\x6d\x0c\xa4\x53\x9c\x30\x48\xae\x46\x93\xa9\x11\xd9\xa6\x8d\x29\xd9\x6e\x2b\xfb\x48\x67\x03\x37\x8d\xe0\x5c\x86\x5f\xf0\xf9\xf0\xf6\x90\xc4\xfc\x1f\x89\xfe\x52\xf4\xc1\xa8\x2c\x36\x63\xc0\x9b\xf1\x87\xe7\xe4\x63\x54\xaf\x4c\xae\xe8\x92\xd0\x2c\x9c\x3e\xa2\xf4\xc2\x55\x2b\x84\x3e\x12\x82\x86\x11\x3c\x4a\x98\x11\x9c\x4a\xb5\xa1\xd1\xd4\x64\x60\x4c\x9f\x93\x3d\x9c\x7e\xc6\x82\x33\x5d\xa0\x5c\x20\x13\x80\x46\x77\x49\xf4\xc9\x21\x6a\x17\xed\x93\x44\xa2\x3d\x5b\xc8\xdd\x73\x07\x6c\x24\xb7\x92\xf0\xac\xe7\x69\x7c\xa2\xf4\x7d\xa4\xae\x2c\x22\xae\xcb\x35\x03\x07\x08\xb3\x40\x37\x3a\x81\x1e\x25\x6a\xdc\x22\x95\xca\x88\x0a\xfa\xec\x0a\x7b\x1c\x44\xaa\x47\x8c\x1a\xfd\x46\xd8\x23\x56\xf1\xf6\x78\xc3\xcf\xc2\xbf\xd8\x0e\xc3\xce\x36\x04\xbd\x20\x73\xc4\x32\x4e\xd4\xd6\xa3\x9f\xbd\xd9\x03\x4e\xee\x70\x65\x05\x57\x34\xba\x09\x85\xf8\xfd\xea\xf2\x67\x44\x10\x0b\x96\x30\x0f\x8f\xdc\x4e\xa4\xc7\xae\x61\x5c\xe4\x00\x14\xbb\x35\x27\xad\x8d\x09\xaa\xc6\x2d\x3b\x67\x85\x64\xae\x62\x57\xe1\x00\x19\xec\x81\x35\xbd\x3d\x41\x66\x53\xfc\x89\xfb\x90\x51\x84\x36\x1a\x93\xb8\x4c\x0b\x09\x7c\xa6\xbf\x25\x57\xc3\xf0\xd9\x03\x39\x2b\x35\xb5\xe4\xf6\x3e\x7f\xd0\xd9\xc0\x1e\xee\xc7\x4c\xb9\x79\x06\x4a\xec\x05\xc1\x33\x7b\xed\x0c\x94\xbb\xa0\x1e\x10\x65\x30\x01\xd6\x6d\x6f\x18\x8d\xcd\x79\x34\xa1\x70\x0a\xdf\x82\x62\x19\x7d\x2b\x9a\x25\x7e\x34\xe2\x1d\x06\xaf\xe2\x44\x32\xcd\x15\x8f\x31\xa5\x41\xe5\xa8\x4d\xcc\x9e\x98\xb4\x0e\x02\x1e\xe3\x02\x61\xaf\xbc\xae\x5e\xe5\x2f\xf1\xb5\xc0\x3a\x79\x35\xe4\xcd\x46\xde\x90\x68\x3c\x00\x89\xb3\xf9\xc0\xc8\xce\x4e\xf5\x85\x25\xe9\x76\xbd\xdd\xf9\x23\x98\x78\x8b\x42\x90\x05\xa7\x33\x96\x2c\xe5\xc6\x43\x75\x46\x2e\xc2\x44\xdd\xee\x91\xa9\x18\xda\x3f\x3f\x94\x09\x65\x2a\x14\x5f\x0c\xa3\x1d\x3c\xb8\xa1\x78\x69\x63\xfe\x81\x39\x00\x76\x1b\x1c\x9f\x18\xdb\x7f\x71\x4d\xb2\x0c\xa0\xe4\x72\x2f\x7b\x2d\x7f\x14\x38\xe9\x01\xba\xe0\x1d\xfd\x68\x67\x39\x74\x5d\xaa\x28\x0c\x59\x57\x07\xd3\xa3\x16\x02\xae\xc8\x0f\x8f\xd9\xd6\x34\x6a\x0c\x60\x9e\xe3\xc4\x73\xb8\x78\x80\x40\x19\x4e\x3e\x92\xfc\x8a\x59\x5d\x33\x37\xea\x3d\x30\xb1\x69\x60\xcd\x07\x3b\x5b\x9a\x1a\x56\xa7\xa6\x1a\x01\xd4\x1d\x4a\x5e\xad\xb5\x39\x31\x8e\x3e\x75\x40\xc9\x4d\xcb\x55\x25\x95\x10\x74\xb9\x42\x41\x48\x9e\xb2\x02\x13\x0e\x71\xfa\x99\x22\x27\x3c\x93\x29\xad\x1b\x84\x71\xef\x7e\x49\xd4\x54\x0e\x73\x60\xed\x6f\x90\x36\xf4\x8f\x58\x8c\x04\x22\x30\x7a\x24\xd5\x76\x15\x91\x9a\xa4\xfe\x3a\xe7\x2c\xb4\xf4\xc1\xad\xcb\x9b\x8d\x3b\x37\x20\xea\x49\x73\x6a\xff\x1c\x99\x3b\x9e\x7b\x9c\xbf\x2a\x7f\x80\xba\xa1\x6f\x47\xe9\x67\x39\xec\x2e\x6d\x69\x1b\xef\x2a\x41\xb3\xbf\x0d\x08\x9c\x5c\x6b\x10\x68\x6a\x0f\x7d\xf6\xc5\x02\x8d\x77\xcc\xb2\x57\x0b\x3e\x06\x19\x1c\x37\x7a\x73\x87\x69\x32\xf9\x26\xf0\x8d\xc1\xab\xc9\xd4\xc7\x61\x1b\xb2\xde\x7a\x66\xd8\xb4\x3b\xfb\x6e\xc7\x8e\x10\x87\xac\x91\xa7\x6d\x0b\xd6\xa0\x74\x7c\x81\x65\xd5\xb6\x07\xfd\x0c\xf5\x11\x90\xb9\xf6\xd9\xed\xaa\xdf\x7d\x52\xf1\xeb\x45\x5d\xc1\xe1\xdc\x3d\x36\xd6\xd6\x8c\x3d\x5b\x94\x27\x49\x85\xba\x82\xc7\xce\x09\x23\xd3\xca\xa9\x5e\xaf\x54\x61\xf6\x19\x0a\xcb\xab\x2f\x3a\x08\xcf\x32\x19\x81\x0c\xd9\x2e\x18\x1b\x36\xf8\x9a\x1d\xbf\x45\x19\xa5\x06\x5a\x52\xc5\x0d\x27\x46\x92\x03\xf3\xe3\x30\xe7\x95\x64\x29\xef\x89\xae\x0b\x53\x55\xbc\x31\x29\x08\x15\xe7\x81\xde\xb2\x5f\x80\x8d\xf4\xa7\x24\x48\xa3\x09\x7f\x78\x94\x37\x71\xce\x6f\x31\xf8\xb4\x9e\x3b\x97\x1a\x95\x48\x22\x28\xd3\x22\xf0\x68\x70\x7a\xe3\xe4\xa9\xd1\xc6\xda\xc0\x59\xc8\x4e\xc5\xa1\x69\x8d\xf0\x38\x7a\x47\xaa\xf0\x76\xab\x7e\x8b\x19\x38\x8a\xb5\x3a\xd2\x6d\x70\x63\x8e\x05\x42\x14\x29\x3c\xe2\xc9\xb2\x58\x25\x88\x9d\x0c\xbd\x2f\xc5\x06\x32\x0f\x55\xa7\x7a\x05\x36\xa7\xfd\x75\x5e\x2d\xc8\xbc\xd6\xcb\xa8\x28\xe2\xe6\x0c\x1a\xd0\xf3\x2c\x13\x7a\x9e\xb8\xdd\xba\x73\x1d\x6d\xcc\xc6\xe0\xca\x58\x42\x63\xae\xb9\x33\x0a\xb8\xf1\x51\xa5\xe5\x59\xc4\x0a\x1a\xb0\xc3\x7a\xba\x6b\x89\x32\x7d\xd5\x9c\x05\xde\x3f\x2f\x46\xd0\x48\x51\x5c\x6d\x1a\xa5\xe2\x54\x7b\x15\x58\x55\x44\xf2\xd5\xba\xfe\x41\xe8\x77\xd7\x65\xf6\x82\xe9\x7c\x62\x6d\x53\xcb\x44\x86\x31\xf2\xcb\x30\x68\x14\x17\xb8\xaa\x16\xa7\xf3\x7b\xf4\x8a\x48\x93\xe0\xe2\xc3\x35\x70\x1e\x2d\x8a\xb7\x3c\xbb\xf7\x57\xd7\xfd\xbb\x74\x90\x3e\x55\x88\xa6\x77\xb4\x6f\x8e\xe5\x7d\x3e\xc9\x93\xd9\x0c\x57\x15\xb9\xcc\xf0\xf7\x37\x3f\xbc\x79\x1e\x6d\xd4\x2c\xc2\x7d\x28\xa8\xc6\xc5\xac\x79\xf4\x2a\xda\xb4\x5d\x7c\x24\xac\xa9\xdd\xca\xc0\x31\x5f\x2c\xc1\x1e\x1d\xa8\x80\x19\xeb\x90\xc4\x71\xac\x14\x7b\x1b\xd9\x90\x50\x95\x83\x36\x1c\x42\xd0\x40\x9e\xa5\x28\xd7\x42\xcc\x78\x2e\x8c\x34\x44\x53\x74\x99\x72\x65\x4c\x77\xeb\xa0\x89\x96\x52\xe1\x5f\xd6\x38\x9f\x61\x24\xcc\xf3\xd3\x4e\x92\x65\x60\x15\xcc\x5e\xa5\x4a\x71\x55\x93\x9c\xbd\x52\x05\x78\x37\x16\x00\x90\xfc\x4a\x53\xff\xf6\x83\x68\x7c\x38\x6e\xb6\xc8\x73\xf8\x97\xd8\x03\xdb\xf8\x60\xc6\x7e\x6c\x1c\x96\xfa\x01\x69\xb0\x4e\x8b\xc3\x78\x5e\xd7\x64\xfb\x67\x3c\xab\x43\x61\xfb\xa4\xb3\x1a\x51\xe3\xdd\xf5\x1e\x18\xfb\x5c\x4f\x40\x57\x75\x6c\xc2\xca\x24\x55\x1e\xe7\x8f\x43\xe5\x5e\x42\xae\xb3\x4c\x4a\x9e\x7c\x26\xda\x47\x20\xc4\x29\xe3\x22\x38\x98\x7e\xc9\x9b\x63\x8a\x61\xbb\xd0\xea\xdd\x9b\x47\x2f\xdf\x3e\x7b\xf7\xec\xd5\xcb\xce\xf9\xab\x17\xaf\x9f\x3f\x79\xf7\xa4\xaf\xac\xe1\x0f\x21\x42\xc2\x0c\x48\x72\xd5\x94\x30\x86\x58\x0f\x47\xeb\x30\x3d\xdc\x70\x84\x80\x12\xc9\xba\x8d\xb1\x98\x6b\x95\x6b\xfa\xf5\xe3\xb2\x2c\xca\x00\xe9\x8b\x87\x08\xd7\x92\x79\x21\x34\xd6\x93\x5f\x26\x37\x82\x77\x57\xfb\xd7\xb8\x04\xe0\x53\x97\x94\x57\x95\xd7\x5e\x88\xa9\xde\xf8\xad\xde\x76\x1b\x9c\x80\x01\x66\x96\x54\xf5\xa3\xf2\x0a\x32\x98\x47\xb9\x04\x66\x6c\x1a\xcc\x54\xdc\x28\x9f\xd7\xe8\x76\xf9\x0f\xc7\xdd\x53\xab\x12\x44\x46\xe4\xcc\x78\x55\xac\xa4\xf2\xa3\x8a\x1c\xab\x62\x40\x68\xda\x89\x06\x09\x44\x90\xd3\x90\x23\x60\x52\x03\xa5\x19\xac\x7e\x47\xb8\x97\xba\xf7\x61\xad\x5b\x75\xfc\xa5\xef\x96\xda\x2e\x8a\xf4\x11\x46\x92\x07\xa2\x55\xdc\x97\xa9\xf4\x21\x3e\xaa\x6b\xbc\x5c\xb1\x41\xfe\xf0\xe6\xb9\x7e\xef\x5e\x17\x22\x56\xb3\x3e\x08\x8f\x85\x62\x48\xcf\x33\x16\x77\x9c\xf7\xdc\xd6\xc1\xde\xc6\x77\xcd\x10\x47\x28\xed\x22\xc6\xd0\x70\x55\x68\x18\xed\x98\x10\x61\x2c\x02\xeb\xd4\x7e\x2f\x66\xe1\xb3\x23\x50\x6a\xfa\x3d\xd3\x14\xac\x5e\xe0\xd2\xa0\x32\x1b\xcb\x90\x4c\x79\x7a\x38\x65\xfd\x8a\xe7\x5b\x5e\xa1\x5a\xdd\x4d\xc8\xd4\xd7\x15\x65\x03\x77\xb8\x1e\x3b\x07\x76\x9b\x74\x6e\x19\xbc\x33\xd1\xfc\x2f\x7e\xa1\x7c\x63\x58\x9b\x99\xe5\x18\xd8\x66\x92\xcf\x71\xda\x2c\x31\xf9\x30\x8d\x45\xf4\x67\xae\x8f\x72\x0a\x40\xb4\x52\x36\x0a\x2d\x03\x02\xb2\x4d\xa6\xce\x69\x64\x8f\x86\x9f\x41\x6d\xb3\x10\xd8\xc3\xf5\x76\xa4\x4d\xc2\xd4\x3a\xe6\x29\xa7\xb3\x8b\xa3\x8b\x37\xfe\x01\xf8\xee\x05\xbd\x7d\xb7\x5c\x0d\xfe\xb2\xf2\x17\xa7\xfc\xad\x9d\x31\xf9\x65\xd5\x67\x9a\xef\x5f\x56\x7d\x19\x7d\x59\x17\xeb\x69\x3a\x40\x7e\x14\x03\x0b\xb0\x6f\x58\x4e\x93\x4d\xa3\x5b\x14\x69\x25\x15\x26\xb6\x18\xf6\xd8\x1c\x95\xa5\x41\xb6\x05\xfc\x56\x02\x8d\x98\x30\x46\xf2\xab\x78\x32\x15\x9a\xda\x67\xec\x76\x88\x29\xbd\x79\x8a\xa5\xc3\x45\x04\xa9\xc6\x35\x01\x5a\xc8\xe3\x63\xf2\x9d\x4f\x5c\xa3\xa2\x5a\xab\x1c\x3e\x36\xe5\x70\x97\xd5\x14\x12\xb9\x2a\x67\xc8\xb4\x3c\xa4\x82\x26\xd0\xc2\x8d\x80\x31\x26\x32\x86\x3b\x30\xb3\x9d\xbe\x72\x35\x8d\x36\x62\x3e\x3c\xd2\x29\x3d\x93\xb5\xd6\x8e\xc4\x26\xe4\x89\x86\x88\x0a\x7a\x56\xbd\x38\x72\xa7\x24\x1a\x9b\xf3\x1a\x5b\xb7\x19\x02\xd5\x17\xf1\x60\xbc\xf8\x8e\x97\x15\xd3\xb9\xe0\x11\x86\x79\xf2\x64\x31\x15\x97\x7e\x86\xfd\x02\xa3\x6b\x8d\x41\xf2\x04\xa7\xea\x5c\x0c\x88\xb6\x76\x5f\x05\x34\xf0\xd8\x18\xcc\x12\x00\xf3\x70\x20\xd9\xd0\xd6\xab\x0f\x59\xc7\x36\x43\xb3\x88\x91\x36\x4d\xfa\xd5\x82\xc6\x0c\x3b\x57\x1c\xbb\xa2\x0d\x97\xae\x07\x92\xc7\xc3\x47\x0f\x64\x78\x90\x6f\xcf\x2e\x5f\x9b\x5d\xb1\x08\x55\xc4\x63\xfb\x98\xd7\x1d\xd8\x9c\x58\x7f\x3c\xbc\x71\x52\x27\xb1\xfc\xc5\x0c\x5e\xec\x66\x74\x8f\x03\xcd\x4d\x8e\x6d\x66\xdd\x30\x03\xde\x8c\x6a\xf3\xe8\xb2\x5b\x3d\x60\x0e\xdb\x3d\xad\x98\xcf\xa3\xd7\xab\xca\xef\xd4\xd5\x6f\x89\xe6\x41\x73\x7e\x95\x93\xe4\x3e\xff\xab\x5d\x6b\xba\xd3\x2d\xc5\xe3\x40\xb5\xcb\x6b\xc7\xe3\x48\xa5\x11\x3a\x1e\xbe\x61\x9f\x8f\xb4\xcf\xdd\xfa\xbe\xe5\x6e\xbd\xc7\xa5\xe9\x7e\xbb\x4b\x93\x8b\xc2\xf7\xf7\x3b\x82\xde\xd7\x1d\x41\x5b\x30\x4b\x3a\x74\xda\x13\x8a\xb4\xb8\x95\x86\x01\x99\x1e\xb0\x92\x87\xaf\xb4\xdf\x3e\x3b\xc8\x05\x5b\xf3\xc0\x86\xdd\xa4\xf7\x22\x7c\x45\xb5\x24\xc3\x43\xbb\x32\x5d\xb4\x35\x17\x6e\x43\xea\x62\x65\x8c\xc7\x06\x8c\x3d\xa7\x22\x0b\x09\x95\xbc\x66\x0e\xd5\xee\x93\x71\xa8\xd9\x8f\x16\xf5\x41\x3c\x1e\x65\x8c\x21\x8a\xd0\x6a\x5d\x62\x56\xfd\xf6\x06\x40\x52\xc7\xdf\x62\xf1\x22\x9a\x9e\x0c\xa6\x91\x66\x04\xc4\x88\xb0\xae\xbd\x94\xf2\x9d\x47\x1c\x37\x8c\xa6\x6c\xb3\x0c\x39\x69\xa2\x3e\x72\xec\x31\x64\x67\x8e\x20\x83\xac\xd6\x3c\x6b\x71\xfb\x66\x21\x04\x1a\x3d\xe0\xe7\xa0\x09\xe2\x2a\x0c\xd3\xca\xc4\x67\x37\xa3\x3c\xf0\x2b\x23\x40\x87\x34\x7f\x11\x66\x2f\xec\x15\xaa\xa4\xc6\xc0\xbf\x2c\x6c\x96\x8a\x9b\x59\x9b\x56\xaf\x8a\x0b\xb3\xcb\x0b\x49\x49\x8d\x30\x5c\x28\x16\x4c\x2a\x45\x44\xec\x2a\xb3\x59\x1b\x18\xc1\x4c\x01\xab\xae\x97\x7d\xca\x6c\xba\x8e\x9c\x36\x38\x7f\xe8\xac\xbf\xa5\x85\x36\xe3\xe7\x49\x8b\x3d\xb6\x89\xb9\x65\xbd\xc0\x17\xfd\x76\x52\x1b\x14\x48\xd6\x26\x13\xcc\x94\xda\xde\x8b\x2e\xd9\x81\xe4\x08\x21\x6e\x0f\xf7\x7b\xe1\x5d\xea\xf1\x0a\x28\xbf\x43\xe6\x21\x79\x18\x5b\x93\x12\x6d\xac\x46\x60\x71\xd9\x83\x90\x6c\x6b\xe9\x51\x80\xf5\x88\x28\x48\xef\x85\x9b\xc0\x55\xc8\x84\x3e\x92\xbe\x33\x4e\x0f\xa6\xc5\xd5\xd3\xa2\xf4\xbc\xf9\x7e\x9b\xae\x5c\xc4\x17\xcf\xf9\xfc\xa6\xe3\x63\x9c\xa5\xbd\xa5\xec\x65\x31\x3e\xad\x60\xb4\xcc\x2e\x1e\x59\x45\x44\xa8\x0e\x81\x10\x9c\x21\x8d\xcd\xde\xbb\x5d\xf3\x5b\xbf\xc5\xf6\xa2\x00\x93\xcb\x3d\x15\xe2\x38\x56\x9d\xd8\xe0\x8b\xd8\x04\x7b\xfa\xe6\x61\x70\x5a\x3a\x50\xcd\xeb\xef\xe2\xbd\x2b\x7e\xa8\xb0\xd5\xf0\xd8\x8b\xa5\xdb\xad\xd5\xb0\x15\x02\x2f\xb4\xd6\xc5\xdd\xfb\x2f\xd8\x13\xa0\x24\x0f\x09\xb2\x77\xc0\xd8\x00\xc7\xec\xc8\xf5\x24\xea\x76\x8f\xdc\x15\x37\x5a\xd0\x3f\xbc\xab\x6d\x14\x90\x61\x59\xbc\x32\xa4\xbc\x19\xd4\xeb\xc0\xa3\x66\x80\x91\xda\xfe\x76\xbc\x28\x5e\x14\x25\x16\x11\xff\x04\xf1\xee\x5c\xe3\x12\xcb\xa7\x33\x16\x09\x7b\x53\xa3\xc4\x9d\xa4\xc4\x1d\xfe\x12\xa5\x7c\xe5\x8d\xc5\xae\xac\x17\x18\xb4\x70\xa3\x4e\xd0\xb3\x36\x19\x03\xe4\xc8\x3e\xfc\xb9\x40\x20\x26\xf9\x9c\x47\xb7\x6f\xb1\xaf\xb3\x57\xa3\x81\x6b\x3b\xaf\xe5\x88\xcf\xc3\x4e\x98\x3c\xfb\x4d\x4d\x2c\x86\x07\x62\x99\x29\x47\x21\x78\x3b\x14\xb9\xc0\xb6\x58\x9c\x39\xc4\x53\xe9\x76\xac\x2c\xf5\x2e\xac\xad\xff\x3b\xcc\x81\xc2\xfa\xb6\xf3\xfb\x46\x70\xab\x30\x82\x50\x21\xbb\x28\xaa\xf5\x6c\xa0\xa0\x72\xb7\xa4\xa9\x70\x5f\xb0\x5e\xbe\x64\x61\x7b\x8c\xc7\x69\x15\x87\xc0\x90\x74\xec\xc5\x51\xad\x40\xcc\x73\x27\x66\xa9\xe3\xe1\x54\x0f\xf0\xa3\x55\x88\x4c\x3f\xcd\x43\x68\xf8\x01\x87\x93\xe8\x7d\x55\xac\x42\xcd\x18\x61\x0f\xb9\xf3\x29\x2e\xcc\x22\xf2\x65\x33\x1e\xa5\x0c\x5b\x1c\x95\x88\xa5\xaf\xa5\x3b\xc7\x94\x5b\xcb\x61\x03\xf4\x09\x6d\x6b\xac\xdb\x6d\xcb\x91\x11\x9c\xf4\x87\x49\xac\x71\x78\x0c\x66\x45\xa8\xc1\x40\x04\x1f\xe3\xa2\x90\x1e\x30\xcd\x32\xb7\x1a\x69\x80\x1a\x0f\x9f\x46\x0d\xf2\xaf\xe4\x67\x20\xac\x11\x32\x76\x03\x66\x3a\x7e\x64\xbd\x5e\x90\x0c\x87\x22\xef\xf8\x58\x2a\x20\x5f\xfb\x4f\x3b\xbe\xde\x1e\x2c\x68\x39\x09\x59\xd8\x58\x06\x0d\xc6\x1f\x76\xa0\xba\x04\xf8\xa5\x0a\x20\x25\xc0\x32\x36\x02\x6d\x27\x92\x2f\x3f\xcb\x2a\xd3\x38\x08\x7a\x26\x0e\x0b\xc4\x93\xa3\x71\x9f\x3d\xe1\x95\xbd\xed\xc9\x6a\x5a\xa2\x78\x74\xc3\xf3\x56\x53\x4a\xd2\xfc\x6e\x2d\x42\x91\x75\x70\x5e\xac\xaf\x16\x4c\x13\x91\x5f\x9d\xe4\xeb\x25\x2e\xc9\x0c\x46\x88\x6b\x5c\x56\x9d\xba\xe8\x54\x49\x4d\xaa\xf9\x0d\x33\x02\xe0\x81\x9b\xbd\x47\x0f\xbc\x42\x2a\xde\x1f\xdd\x89\x88\x46\xf4\x3e\x2f\x1e\xda\x51\x74\x9b\xe8\x10\x1d\x51\x4b\x7c\x9d\xff\x4f\x43\xf4\x5b\x68\x88\xc4\xfb\xf9\xb6\x8a\x86\xa7\xff\x97\xe9\x79\xd8\x6d\xe9\x21\x5a\x9b\x75\x99\x71\x95\xca\xba\xcc\x3e\x4f\x95\x12\x6d\x0e\x12\xc5\x81\xbf\x37\x54\x1b\xf2\x67\x28\x60\xb1\xdf\x04\xd5\x5c\x91\x78\x7d\x9d\x69\xa4\xec\x04\x6f\x21\xfd\xe1\xcd\x73\xd8\xe2\xb2\x29\xe5\x56\x53\x3d\x26\xf3\x39\x2e\xb9\x0d\x89\x34\x68\x64\xfe\x41\xac\xd1\x96\xab\x2c\x2e\x24\xf3\x42\x9f\x2d\x23\x6b\xe6\xad\x1e\x43\xad\x5b\x0d\xc7\x92\xd3\x7e\x15\x5d\x11\xaf\x3f\xeb\x4e\x86\x87\x8a\xf2\xf2\xd5\x45\x98\xd9\xdb\x0b\x3b\xc6\xba\x30\x53\xc7\xb6\x0b\x29\x5b\xbc\x11\x12\xb2\xbf\xb0\xcd\x09\xec\xe0\xb4\xc5\xda\x1b\x9c\xb9\xcd\x68\x37\x91\xba\x4e\xf0\xae\x8f\x7c\x9f\x87\x2d\x14\xff\x8a\xf9\xbf\xdb\x6d\xe0\xab\x14\xa8\x37\xfc\x63\x7f\x01\xcf\xab\x50\x2e\x91\x9e\xb8\x31\xd3\xbe\xec\x53\x51\x5f\x38\x12\x76\x6b\x8c\x28\x5f\x08\xb2\x53\x2b\x04\xd9\x17\x0f\x28\xec\xb9\x25\xe2\x61\x7d\x20\x0e\xbd\x1e\x05\x10\x2c\x70\x7c\xea\x68\xf1\x7a\xa2\xe4\xe0\x1a\x9b\xfd\xd5\x2e\x8b\xf4\xd6\x5a\xb4\xec\xfa\x0b\x52\x3b\xdf\x6e\x52\xda\x5f\xc6\x86\x05\xc1\xd8\x08\x00\x61\xc8\x80\x7e\x07\x0f\xca\xe8\xcb\x06\x8e\xe2\x38\x08\xc4\xe3\x9a\xec\x2d\x8f\x38\xe8\x07\x8d\xfe\xbd\xb0\xd8\x48\x25\x96\xba\x0f\x48\xa9\x6a\xc1\xdd\x91\xf6\x84\xd4\xad\xde\x7b\xaa\x70\x36\x87\x70\x4c\x1f\xad\x67\x15\x78\xd0\xc8\xdb\x8e\xf8\xb6\x2e\xfe\xf2\x9d\x05\x11\x3a\xd2\xf7\x8a\xc4\x33\xee\x72\xaa\x39\x0f\xbd\x95\xe1\x10\xc6\x3c\xb8\x95\x88\xeb\xc6\xad\x18\xfd\x31\x6f\xdb\x5e\xd1\x80\xf7\x9b\xf4\x90\x02\xfc\x59\x0e\x5e\xf1\x55\x8e\x75\x11\x78\xdf\x83\x24\x7c\xb0\x41\x14\x4d\x02\x66\x3c\x18\x4c\xf9\x34\x31\xda\xe3\xab\x0a\xcd\x77\xc0\xf4\x2f\xd2\x48\x22\xc9\x73\x5c\xbe\xb5\x5e\x16\x39\xf8\x05\x92\x96\x87\x8e\xa0\x9c\xfe\x3e\x88\x02\x54\x0b\x17\x93\x54\x45\x1e\x6d\xb4\xc9\x65\xc7\x88\xdf\x38\x95\x97\x6e\x90\x77\x5c\xe2\xb1\x13\xdb\x14\x0b\x28\x3c\x1b\xb5\xa3\xfe\xa8\x62\x7d\xb1\x5d\x77\x0d\x56\x4b\x2e\x0b\x45\x11\x1f\xde\x3c\xf4\xa9\x5c\xce\xbc\xc6\x79\x23\x5f\xfd\x96\xe1\x6e\x58\xef\x23\xf6\x57\x1c\xff\x3f\x92\x7a\xc1\x06\x34\x6a\x05\x7c\xe2\x00\xad\xa2\x47\xa8\x79\x1e\xa9\x9f\x60\xbf\x6f\x34\xd8\x68\xb3\xc8\xe3\xd3\x85\x9e\xd0\xa5\x32\xec\xdb\xa3\xac\xc4\x49\x7a\x23\xdf\x41\x6b\x07\xce\x37\xfe\xa9\x66\x57\x32\xbe\x5d\xd5\x5e\x4f\x3d\xf7\x62\x69\x73\x8f\x5c\xb8\x4c\x27\x2d\x4f\x3d\x4f\xc4\x1c\xe5\x92\x55\xe2\x94\x94\x78\xa6\x39\x2d\x8a\x14\xdf\xdc\xc8\x48\xd3\x82\x1a\x4a\x39\xd2\xbb\xdd\xf6\xd2\x82\x7d\x64\x40\x2d\x98\xb7\x91\xd0\x78\xf5\xcb\xa0\x7a\x71\xfb\x72\x59\x06\x87\x1c\x23\x19\x3c\x1e\xa4\x69\x6c\xe5\xe2\x2d\xd1\xc0\x63\x38\x2d\xc9\x8e\x67\xd2\xe4\xcc\xc2\xdc\x71\x3c\xf5\xcd\xd6\x6b\xc8\xa2\xb3\xd4\xfe\xe4\xb6\x75\xe4\xef\xe2\xdd\x58\x4c\x5e\x3b\x00\x6f\x2b\x13\xf7\x9b\x73\x6d\x3e\x3e\xc9\x23\x47\xef\x63\xee\x4e\x77\x30\x77\x87\xc4\xaf\xdd\x17\xa3\x76\x57\x7c\xdb\xc3\x23\xbd\x7a\x38\x3e\x61\x10\xc5\x4d\x73\xc1\x1d\x49\x23\xf8\x6a\xe1\x78\x5c\x48\x15\xeb\x8a\xfd\xe5\x81\x35\x85\x5b\x31\xbf\x47\x60\xaa\x09\x6e\xff\x0d\x01\x2c\xc0\xfb\x03\xfe\xb1\xed\x8c\xa0\x20\x0f\xf4\xc7\xdd\x20\x84\xed\x91\x0c\x78\xaa\xbf\x70\x25\x92\x5d\x73\x76\x0e\xb9\x7e\x82\xc7\xd6\xd1\x00\x45\x44\xf8\x38\x21\xc7\x99\x41\xbd\xc1\x84\x91\x33\x59\x4e\x57\x7e\x47\xa0\x3d\xe1\x63\xe6\xec\xf5\x65\xe8\x45\x63\x5b\x3d\xb1\x63\x5a\x1b\x11\xf6\xe9\xba\xd5\xf2\xed\xe3\xd2\x50\xf2\xae\x53\x09\xdd\x2e\x11\xee\xda\x5d\xc3\x15\x8f\xcb\x15\x8f\x7a\xc6\xfd\x39\x34\x0a\x20\xdc\x41\xde\xf2\xac\x5e\x6f\x6c\x2c\x07\x40\x25\x68\x93\xf9\x04\x24\x8b\x04\xe8\xe5\x75\x20\x34\x9e\xba\x25\x55\x47\xf0\x76\xdb\xe2\xd9\x73\x0b\x27\x1d\x50\x95\xba\x0e\x1f\xc2\xd7\x83\x77\x0a\xec\x44\xed\x84\xe0\xb3\x19\x0c\x9f\xc3\x47\x2b\x5f\xa6\x5a\xb6\x9f\xab\x95\xec\xd9\x23\xc1\x9e\xa9\x77\x94\x5d\xe4\xd6\x9e\x8d\x00\x8c\xb6\xe5\x32\xb9\xfb\x8d\x39\xe7\x71\xf4\x6e\x31\x85\xea\xa9\xd5\xd6\x48\x90\xe2\xa5\xce\xe3\x0e\xd4\x81\xd3\xa3\x1d\x47\xe2\xc1\xd8\x0c\x8f\x28\x04\x46\xb5\x53\xe0\xe4\x94\x7e\x73\x23\x1e\x6f\x2e\xe0\x94\xcb\x23\x3c\x3a\xf6\x5d\xfa\x81\x39\x1a\x20\x57\x18\x35\xc9\x0c\xd7\x1f\x8a\x60\x49\xcc\x4c\xb4\x92\x66\x8d\x48\x7f\x2e\x11\x32\xf9\x74\x40\x36\x25\x60\x23\x2e\x89\xe8\x77\x93\xd5\x9a\xe9\xbf\xd0\x3c\x21\xd9\xba\xb4\x02\x0b\x1b\x81\x21\xed\x92\x0d\x4a\xcc\x47\x10\x55\x04\x44\x77\xcd\x68\xb2\x8c\xd0\x26\xfd\xfb\xf4\x2d\x8b\x2c\x52\xd4\x0b\x46\xba\xf3\xc8\x75\x52\x89\x65\x0c\x22\x9d\xae\x7b\x6e\xb8\x62\xad\x13\xe3\x20\x30\x25\x13\x91\xa6\xfb\xb3\xe9\x35\xfd\x4e\x6d\xc6\xdb\xca\x25\xae\xcb\x1b\x33\x0c\x21\xa9\xec\x2d\xa6\xb7\xe9\xf1\x42\xd1\xc6\x22\x43\xb4\x41\x8c\x35\xd5\xf0\x92\xbb\x89\x0a\xe5\x23\x77\xd6\x84\x64\x13\x24\x27\x48\x0c\x61\x6f\x3e\x3e\x15\xeb\xbb\x3f\x62\x23\x7f\x75\xc1\xa8\x17\xc7\x71\x70\x59\x14\x19\x4e\x72\x1e\xbe\xb1\x0f\x46\x05\xe2\xae\xc8\x28\x0c\x26\xd7\x7a\xf4\x14\x73\xc9\xdd\x13\x45\x04\x40\xd2\x8f\xd7\x67\x3c\x18\x12\x32\x1a\x17\x31\x6a\xe6\x45\x96\x15\xd7\x6f\x38\xdb\x5e\xe9\x8b\xf0\xd1\x0c\x1e\xcd\xfb\x1e\x7b\x30\x7b\x87\x1c\xab\x5c\x0f\x5b\x63\xfd\xb6\xe4\xf7\x2d\xd0\xc2\xc8\x7d\x82\xca\x10\x82\xa3\x06\xd5\xc5\x5b\x76\xdd\xe5\xbe\x31\xa5\xd3\xb1\x50\x6c\x96\x0e\x7f\x13\x5c\x7c\xf7\x82\x28\xb0\xde\x2b\x97\x7a\xd0\xdd\xbb\x4e\x3d\x4d\xee\x25\x79\xfd\x0a\xe7\x69\xec\xcd\x11\xfc\xa2\xa4\xe3\xbe\xb3\xec\x36\x9e\xbd\x29\xae\xf1\x8c\x92\x69\xb6\x7f\x34\xef\x4b\x7f\xbc\x08\x0f\xf7\xc8\xb3\xf6\xea\x80\x9d\x1a\x86\x02\xd8\xcd\xd5\x8d\xed\xb5\xd0\xff\xda\xbc\xe8\x92\x88\x7c\x75\x20\x96\xcf\x0f\xf8\xeb\x0b\x6a\xe4\x8e\xcd\x11\x58\xb8\x00\x32\xf1\x4b\x20\xbb\x24\x0a\x60\xe5\xed\x88\xff\x8a\x95\xbf\x20\xe0\x0e\xc4\x18\x31\x28\xc6\x53\xa2\x8d\xc8\x53\x3e\x1a\x9f\x24\xf2\xc3\xe3\x40\x3a\x3e\x70\x14\x06\x92\xf2\x89\x79\x1e\xf2\xdb\xea\x0e\x6b\x65\x1a\x70\x73\x3a\xd9\xac\xd1\x1d\x38\x69\xf2\x1c\x09\x95\x3e\x73\x22\x53\xe4\x49\x0c\x80\x4b\x85\x45\x52\x2d\x10\x57\x16\x0b\x96\x74\x55\x16\xab\x0e\xe1\x4f\x90\xb2\x4d\x0d\x8f\x81\xda\xd7\xd9\x65\xb1\x8a\xa2\x0d\x6d\x61\x42\x7f\x4f\xc1\x8b\x0e\x7e\x73\x63\x4f\x71\xb5\xc8\x07\x0e\x16\x07\xdb\xad\x7e\x8b\x57\x17\xd1\x46\x02\xf5\x34\x8c\x36\xcd\x53\x8d\x7b\x60\xbf\x74\x9c\x7e\x6a\x08\xb0\xe2\x8e\x32\x16\x77\x95\xb2\x25\x8f\xd9\x73\x02\x0b\x24\x18\x7d\xf6\xd9\xed\x26\x9a\x1b\x18\x5a\xe0\xc4\x88\x21\xc2\x79\xfe\x6e\x37\xc3\xf9\xc3\x01\x2f\x3c\xc9\x70\x7e\x3c\x9c\x9a\x5f\xb7\x71\xba\x35\xea\xe9\xbd\xd1\xee\xcd\x33\xa6\x4c\x6e\x10\xbb\xe5\x3b\x1e\x8a\xad\x3d\xb1\x81\x9c\xea\x66\x24\x13\xa8\x43\x8f\xdd\x69\x63\xec\x41\x8f\x91\xbf\xc7\xa8\x5f\x71\x98\x05\x2e\x67\xba\x53\xda\x3b\x8e\xab\xa1\xf9\xa4\x91\x19\x80\xee\x17\xcb\x67\x91\x9f\x8b\xbf\x58\xe1\xe0\x28\x9e\xe7\xeb\xe5\x25\x2e\x03\x63\x6a\x20\x33\x08\x7a\x76\x9a\x34\x10\xe2\x78\x1c\xda\x05\x22\xdd\x28\x6c\x80\xb2\xd8\x2e\xe0\x04\x03\xb1\x0b\x4c\x88\xb7\xe7\x09\xa1\xc8\xdc\xe8\x14\x5b\x08\xdc\xea\x40\xa8\xae\xc0\x75\x9d\x9f\x6e\x59\x71\x25\x83\x7a\x80\xef\x34\xb0\x0a\xca\x81\xfa\x9e\xf4\x83\xa2\xed\xe9\xe7\xd5\x7f\x0b\x7a\xea\x84\x1a\x75\x82\x1e\x6d\x1c\x56\x78\x59\x5d\xc5\x32\x70\x82\x56\x9d\x95\x68\x2c\x6a\x4a\x09\xa9\x5a\xcd\x4b\x92\xa7\x32\x04\xd1\x9c\x3b\xfe\x5d\x16\xeb\x1c\x9c\x04\x24\x84\x62\xab\xc9\x1d\xfa\x11\xde\xe3\xf6\x71\x40\xb2\x3a\x3a\x8d\xc6\xea\xed\x73\xa8\x21\x1b\xca\xf9\xd3\xe5\xa2\x73\x60\x45\x0c\x68\x29\x70\x31\xfd\xa3\xe9\xe4\x0d\x3b\x34\xc5\x12\x03\x3a\xf1\x37\xe9\xe2\x38\x00\x83\x97\x60\xbb\xe5\x44\x53\x0b\x1c\x00\xd8\xba\xdd\x3a\x75\x38\xe2\xf9\xea\xbc\x64\x59\x9a\x7b\x2f\xbf\x9c\x81\x4d\xa5\x1e\x63\x31\x51\x2d\xb1\x3c\x49\xbb\x5d\xc6\xcc\x1d\xc5\xb1\xa8\x01\x0d\x4c\xc8\x34\x02\xdc\x33\xc7\x2f\xae\x0e\xc5\x55\xa1\xec\xde\xf2\x78\x33\x6d\x22\x5d\x06\x4f\xe3\xbf\x78\x4d\x16\xe9\x4f\xa2\x9a\x9e\x18\xee\x6b\x6c\x6c\xbf\xb2\xa7\x33\xb0\xb6\x06\x02\xfa\xb6\xb8\x66\xde\x80\x63\xbe\x74\xce\x6e\x46\xf2\xa2\x16\xe3\xeb\x60\x0a\x51\xe7\x2e\x98\x1c\xf5\x82\xbb\xfd\xce\x3b\x69\x1d\x9b\x17\x3c\xaa\xa5\x0c\xc7\x13\x80\x19\x01\xab\xf4\x63\x52\x81\x7c\x98\x6a\x86\x11\x7b\xe3\xd8\x10\x61\x79\xb6\xc3\x14\x54\xbe\x88\xe8\x51\x9c\x18\x71\xfc\x28\x18\x95\x16\xb9\x8c\x7d\xc3\x93\x82\xba\xb7\xb9\x91\xe1\x7b\xce\x3f\x8e\x99\x88\x15\x6d\xec\x81\x31\xcf\x4c\x8d\xc4\x37\xcc\xc3\xf4\xc8\x2a\xd6\xed\x1e\x59\xf3\xef\x4c\xfc\xcb\xa2\x5e\x90\xfc\x8a\x8f\x3a\x65\x16\x60\xce\xd4\x07\xd6\xe6\x14\xaa\x4f\x87\x75\x75\x1e\x69\x81\x43\x1e\xe5\xf8\xfa\x15\xdf\xb5\xfc\x60\x30\x4c\x67\x36\x49\x96\x8d\x36\x0d\x12\x71\xbd\x36\x54\x22\x64\x6f\x8b\x8c\x36\x8d\x88\x7c\x2a\xcc\x1a\x12\x30\xd2\xe7\xed\xb1\x76\x52\x11\x73\x8d\x2f\x78\xfb\x39\x25\x41\x8a\x76\x14\xd2\x5a\xa7\xa8\xc3\x8f\x31\x55\x95\x5b\xf4\x71\x06\xc6\x1b\x0c\x95\x3b\x09\xef\x2a\xa2\x80\xe6\xf7\x7b\x30\x3c\x3e\x70\x38\xf5\x64\x2f\x3c\x60\x6a\xa3\xc1\xa3\xcd\x29\x04\x02\xd8\x03\x8f\x38\x25\xcd\x36\xa3\x6e\x57\x64\xc8\x26\xc4\xe1\xa9\x0f\x53\x3f\x2f\xc1\x55\xda\x4d\xa7\xdb\x1b\x06\xc1\x17\x12\x06\x61\x96\x1d\x9b\xe3\x06\x24\x36\x69\xa7\xb7\x53\x75\x48\x3b\x60\x41\xbc\x06\xb3\x1b\x1e\xac\xe1\xd6\xe0\x34\x8d\x6e\xb4\xa9\x15\x74\x7a\xf8\xdc\xe6\x45\x6c\x78\x91\xd1\xed\xf2\x76\x8c\x2d\x66\xbe\x0b\x67\xbe\x03\xa7\xdf\x43\x2a\x45\x1d\xb7\x9f\xe0\xd2\x2e\xf8\x2f\x4b\x13\x05\xa3\x6d\xe3\x66\xc1\x7f\x93\x20\x4d\xf0\x56\x49\x89\xf3\xfa\xbc\xc8\xab\xba\x5c\xcf\xea\xa2\x44\x36\x7f\x7e\x2e\xec\xee\x9c\xa2\xc0\x12\xb0\xa0\xaf\xea\xf9\xf2\xe6\x5c\x63\xe5\x39\x8b\xee\xf6\xa2\xca\x08\xa7\x02\xad\x1a\x07\x41\xb0\x13\xe7\xc6\xe0\xa4\xd5\xa1\xcf\xca\x10\xac\x13\x63\xb0\x51\x34\x6a\x31\xe9\x0e\xa4\x39\x53\x54\x02\x4f\x59\xe1\x19\xab\xe7\xb5\x12\x90\xb8\x35\xc7\x11\x48\xc1\xd8\xc9\x7a\xdd\xf2\xd7\x7b\x91\xc3\xea\xef\xba\xfd\x3a\xd8\xed\xbd\xfa\xb8\x3a\x61\x46\xb5\x65\x9e\x64\xa6\xb3\x7b\xff\x84\xb0\x05\x5b\x8a\x87\x2e\x67\x45\x3e\x27\x57\xff\x88\xfb\x3d\x60\xd3\x5e\x95\x4f\x79\xf3\x8e\x49\x96\x5d\x80\xfb\x3d\xb7\x96\x57\x59\x60\x0b\x59\x5c\x3b\x45\xf2\xe2\x9a\x3b\x56\x8a\x41\xef\xb3\xbb\x85\xf9\x70\x2e\xef\x20\x79\xac\x85\xe9\x28\x56\x54\xc8\x65\x17\x97\x4f\x5e\x3e\x7e\xf6\xf2\x8f\xf1\xc7\x82\xa4\x1d\x30\xbe\x79\xfa\xc3\xf3\xa7\xcf\x9e\x3f\x7f\xf2\x38\x1e\xc2\xe2\x3e\xf9\x1f\x4f\xce\xdf\x3d\x79\x1c\x9f\xb2\xcf\x3f\x3e\x79\x77\xf1\xee\x4f\x4f\x5e\x5e\x3c\x79\xf3\xe6\xd5\x9b\x58\x9e\xed\x40\x85\x8c\xb3\xf9\x1d\xbf\x14\xa6\x1b\x1e\x02\xc6\x99\x86\x4e\x4c\x41\x2d\x02\x6f\xc1\x95\x9b\xd9\x3a\x5c\x68\xc4\xec\xaf\xd8\x7e\x66\x09\x4d\x2a\xaa\xcb\x1b\xd6\x21\x6d\x14\x31\x09\x00\xcd\xd7\xd9\x9c\x64\xd9\x52\x85\x15\x43\xa0\xc3\x53\xbe\x10\x00\x17\xad\x03\xe4\xe3\xf0\x8a\xce\xf3\x43\x7a\x14\x2e\xe0\x6f\x9e\x16\x25\x26\x57\x39\x05\x2b\xb9\xcc\xb0\x98\x0b\xa6\xcb\xa7\x09\xec\x07\x8b\x58\x39\x27\x57\xfd\xa4\xba\xc9\x67\xa1\xae\x98\xa0\x85\xef\x9c\x0a\x2b\xae\x44\xb1\x98\xd2\x32\x26\x36\x46\x2d\xdb\xb5\x65\x27\x32\x0f\xa1\xbe\x64\x89\x79\x73\xf0\xa0\xe2\x3c\x14\x35\x8f\xe2\x98\x57\x11\x57\x41\x12\x0c\x98\x53\x2e\x07\xf2\x09\x72\x73\x1b\xe4\x53\xc9\xee\xe8\x9c\x2b\x55\x55\x43\xd2\xc6\x88\x3f\x3c\x45\x0f\x15\x95\xdd\xbf\x60\x07\xcc\x76\x1b\x74\xd6\xf9\x87\xbc\xb8\x96\xd8\x24\x1e\x9c\x82\xc6\xbb\x5d\x8e\x51\x3b\xfb\xb2\x2f\xcc\x1c\xd3\xa5\x57\xd7\xed\xab\x17\x6d\x04\x1e\x5f\x14\x39\xac\x86\xf0\xc3\x15\x45\xfa\x17\x70\xc9\x1d\xc7\x72\x57\x45\xf6\xdc\x21\x55\x98\x5f\x50\x4a\x4d\x83\x6c\x5f\xb4\x22\xf6\x22\x9d\x49\x7d\x28\x2d\x6d\x6c\xaa\xf5\x65\x35\x2b\xc9\x25\x96\x10\x21\x75\xef\xe6\x41\x92\xbd\x68\xb0\x0b\x09\x76\xa0\x80\x05\xad\xd2\xa0\xdb\xf3\xfd\x22\xb9\xb9\xc4\xce\x8c\x2f\xf5\x54\x06\xa8\x91\xa2\x8b\xcf\x62\xca\x66\xea\x70\x17\xd6\x42\xbe\xb5\x34\x5b\x86\x61\x31\x83\x85\x05\xce\x63\x41\xc2\xcc\x42\x62\x7d\xe3\x38\x36\x69\x91\x33\x4c\x1f\x31\x53\x8b\xcb\xdb\x90\xeb\xe1\x22\x86\x07\x38\xd0\x3f\x89\xb3\x83\xb5\x11\x89\xf1\xb5\x51\x1b\xa3\x19\x20\x39\xfe\xf5\xb3\xfa\x6b\x1c\x83\x26\x6b\xa5\x37\x0a\x45\x63\x89\x30\x2d\x48\x21\xbd\xeb\xac\x83\x92\x23\x9f\x18\x83\x7f\xfd\x0f\x41\x3a\xc5\xa5\xae\x2f\x33\x52\x2d\xde\x08\x7a\xad\x4e\x20\x7d\x47\xf1\x1d\xeb\xee\x61\x55\x44\xec\x24\xde\x60\xe8\xd2\x08\x3f\x2c\x1b\x67\xe7\x1e\xc5\x31\x3f\x68\x25\x09\xb4\x7a\x81\xd9\x1b\x5b\x1b\x5e\x12\x8d\xb1\xd1\xa4\xd8\xd4\xa5\x19\x0e\x11\x02\x29\xd3\x93\x44\xb1\x0c\xd1\x46\xfd\x0e\x03\x0e\x2f\x4e\x03\x45\xf0\x60\x56\x8d\x23\x88\x0f\x58\x2b\xa3\x21\x82\x6f\x23\xdf\x6e\xc4\x30\x36\x41\xca\xc6\xf6\x4c\x40\x9b\x63\x1f\x44\x72\x4d\x3d\xf4\x5a\x91\x3a\xe0\xee\xd1\x6c\x41\xb2\x14\x15\xf9\x53\x75\x96\xa3\x22\x97\x4d\xf0\x53\x55\xcd\x65\x0c\xf5\x8c\xf9\x15\x26\x39\x74\x8e\xdd\x69\x1f\x8b\x1a\x06\xf9\xd7\xca\x4d\xa0\xdc\x34\x66\xb0\x78\x72\x7a\x72\x85\xa7\xb1\x01\xa9\xaf\xac\x98\x31\x5a\x54\x0e\x83\x5f\x0f\x70\x24\xe8\x76\xe5\x20\xc0\x1c\xc9\xbf\xae\xac\x8c\x67\xcf\xa8\xad\xe2\xcc\x8d\x07\xf9\xf8\x93\xe5\xf4\x8c\x4e\x63\x73\x75\xc7\x7b\x71\x51\xd4\xd3\x4e\xc6\x33\x0d\x3f\x47\x01\x60\x9a\x81\xaa\x94\x91\x68\xc1\x7d\x4d\x53\x08\xeb\x2e\x1f\x9c\x4e\x71\x9d\x90\x2c\xb6\xb0\x6c\x6c\x1a\x3f\x79\xd6\x96\xf4\xe2\x7b\xd1\x86\x35\xa6\x2f\xfd\x84\x4c\xc7\xa2\x6d\x33\xbd\xc7\x87\xc4\x6c\xa3\x58\x3d\x16\x8b\xa0\xf8\x80\xcf\x85\x0a\x96\x97\x40\x5e\x10\x39\x7d\x93\xfa\x5a\x91\xda\xec\xda\xf8\x03\xb5\x86\x1a\x17\x2e\x2c\x1a\x14\x56\xb2\x99\x79\xf7\xe6\xa7\x8b\xf3\x47\xef\xce\xff\xb4\x8f\x77\xaf\xcb\x9b\x73\xc6\xdc\xda\x20\xea\x4c\xbc\x03\xa8\xe4\x87\xad\x7e\x04\x17\x2f\x38\x78\x2b\x5b\x43\xc3\x96\xe9\x12\xd4\xc6\x81\x06\xf4\xa7\x95\xa8\x10\x6b\x27\xa3\x54\x94\x73\x51\x00\x8c\xae\x98\x31\x0c\x4e\x29\xf3\x93\x90\x0c\xa7\xa0\x45\x95\x0d\xd0\x16\xb3\x35\x8e\x5b\xc7\x4f\xcb\x43\x91\x38\xb6\x86\x11\x6d\xa0\x49\xe0\x34\x61\xc8\xac\x28\x0c\x7f\x0c\xd5\xd8\x5a\x70\xd6\x8c\x83\x22\x63\xee\x3b\x47\xa9\x45\x6c\xd9\x7d\xfa\xcd\x8a\x9b\xd3\x07\x8f\x04\xaf\x53\xc9\xa5\xe8\xcc\x92\x3c\x2f\xea\x8e\x34\x99\x48\xea\x4e\x95\x2c\xb1\xe4\x8a\xd4\x9b\xba\x8d\xe0\x75\x28\x54\x30\xba\x71\x2b\x48\x1e\xa2\x2e\x0f\x74\x6d\xfa\xba\x5d\xd9\xc2\x4e\xc6\x91\x56\x83\xc9\x72\xc6\x68\xf1\x48\x1e\x2a\xb1\x97\xc3\x50\x75\x5a\xb9\x65\x87\x67\x50\xee\x9d\xdc\xd6\x43\x3b\xe1\xd8\x30\x4a\x81\xfa\xf0\x15\xda\x9c\x91\xa8\xb6\x9b\x6b\x46\xd6\x39\x2a\x6a\xed\x65\x93\x35\x51\xd3\x9c\x2e\x4b\x53\x4e\x45\xfb\x98\xfe\x31\x34\x47\x1c\x1a\x61\x6e\x6f\xe5\xb1\x3b\x29\xf8\xc7\xc8\xe1\xd3\x1c\xf3\x7f\xc7\x96\xd6\x0b\x28\x91\x22\x81\x46\x3e\x3f\x4f\x62\xfe\xaf\x2f\x4f\x9e\x60\xb1\x9d\x60\x6a\xc4\xec\x95\x89\x9d\x14\xab\xbc\x4e\x42\x62\xf3\xd3\x28\xa9\xf4\x1c\x8a\xcd\xd2\xf3\xa5\xde\x43\xfc\xb0\xd5\x54\x49\x96\x1d\x73\x64\x03\x45\x15\x66\x4e\xef\x49\x5d\x94\x4c\x3d\xa5\x9b\xa6\xff\xc3\x2c\xd1\x9f\x48\x18\xf6\x19\xa3\x2f\x93\x0f\x18\x24\xec\xf4\x0d\x70\x5e\x4e\x18\x48\xbb\x44\xab\xad\xbb\x47\x19\x55\x5c\xcc\x5c\x9f\xee\x7b\x17\x17\x7d\x91\xa1\x8e\x9b\x47\x59\xc6\xbb\x09\x75\xcd\x2f\xce\xeb\x92\xe0\x0a\x71\x4d\x33\xbc\x24\x56\xad\x57\xb8\xd4\x4a\x79\x6b\xc0\xbb\x4d\xdc\x59\x4e\xb5\xae\x6b\x82\x39\x10\xa1\x9a\x2f\x5d\x07\xec\xab\xe3\xf6\x1d\xab\xca\x2d\x35\xe8\x0c\xf2\xc9\x75\x27\xd3\x5f\x85\xc7\x92\x21\x45\xce\xe8\x7c\xec\x58\x96\xe9\xd7\x69\x89\x6c\xa2\xb3\x5c\x57\x75\xe7\x12\xb3\xb3\x00\xa7\x9d\x6b\x52\x2f\x3a\x49\xde\x61\xb7\xbe\x41\xd4\xea\x73\x21\x17\x41\x35\x15\x5a\x13\xaf\x75\xab\xad\xd4\x6b\x41\x82\x8c\xc2\x42\xd9\xdf\x78\x36\x0b\x6c\x92\x5b\xfa\xd2\xb6\xe1\xfa\x57\x07\xba\x5d\x1c\x30\x6c\x7e\xb5\x6e\x8e\x56\xd8\xfc\xd9\xf9\xee\xc0\xaa\x64\xf5\x59\x16\x5e\x82\x83\xdb\x0f\x62\x95\xac\x14\x27\x92\x94\x57\xcc\x70\x64\x8d\x95\x74\x21\xc8\x9b\x9e\xdc\x1b\x4e\xe3\xa4\xbc\x1a\xf3\xaf\xf8\xd4\x90\x14\x4e\xa3\x4d\x35\x5b\xe0\x74\x9d\xe1\xa7\xd9\xba\x5a\x84\x51\x03\x41\x4b\x2e\xcb\xe2\xba\xc2\xe5\x1f\xb3\xe2\x32\xc9\x62\x6e\xb8\x70\x4d\xf2\xb4\xb8\x3e\x8a\xe3\x40\x6a\x2b\x82\x33\x48\x1c\xf1\x60\x27\xdf\x43\xbd\x17\xeb\x9a\xe1\xee\xab\xcb\x0a\x97\x1f\x71\x19\x1b\xed\xf5\xed\xec\xed\xd6\xcc\xff\x11\x5f\xfe\x99\xd4\x76\x29\xae\x4c\xff\xb1\x28\x3f\xe0\x52\xc0\xf4\x03\xc9\xeb\x6f\xcf\xb3\x64\xb9\xc2\x29\xbb\x50\x34\xc1\xeb\x76\x85\x3d\xec\x92\xce\xed\xdb\x59\x49\x56\x75\xd5\x52\xe6\x05\x98\x18\x9e\x2f\x92\x3c\xc7\x99\x59\x48\x91\xa9\x75\x85\x5f\xe2\x4f\xf5\x3b\x32\xfb\xa0\x36\xa3\xb6\x3d\x99\xfb\x53\x55\xf5\x73\x51\x68\x4e\x67\x56\x67\x33\xd6\x15\xb6\xc7\xc6\xed\x5e\x49\x4d\xe9\x08\x29\xf2\x8a\xbb\xc0\x16\x62\x02\xe9\xb6\x6b\x99\x5c\xde\x01\xbf\x41\x48\x71\x9c\x16\x33\x26\x5d\x71\x2b\xb7\x77\xf8\x53\xfd\xb2\x48\x71\x18\x04\xd1\x58\x34\xd8\xe7\x3f\x42\x5a\x03\x6d\x66\x8b\xa4\x4c\x66\x35\x2e\x1f\x27\x75\xc2\x0c\xd0\x95\x3f\xb2\x36\x36\x5a\x18\x7c\x6d\x34\x48\x7b\x3d\xf5\xf1\xbb\x53\x6b\x9c\xc6\x94\xf2\x51\xce\xe0\x8b\x8d\xc9\x2c\x30\xe6\x59\x7d\xba\x58\xc3\x7e\x91\x0b\xeb\x4f\x36\x44\x0f\x40\x7a\xf9\xd3\xfe\xaa\xa8\x6a\xde\x60\x38\xb0\x66\xfc\x2d\xae\xdf\x91\x25\x2e\xd6\xb5\x77\xd5\x2a\x95\xcd\xfa\x42\xc3\x08\x0c\x07\xd9\x66\x62\xa0\xc2\x7d\xf5\x10\xdf\xd3\x3c\x76\xe7\xb0\x6b\x36\x8e\x13\x0d\x97\x1d\xb9\xd6\x5e\x8a\x8a\xb0\x35\x79\xe8\x8b\xa4\xbc\x12\x09\xbd\xa1\x92\x27\x43\xba\xb7\xc7\xa2\xa4\xd2\x0c\x8e\x55\x59\x95\xd8\x48\x09\x90\x89\xe1\xfa\x66\xd6\xac\xc1\x39\x4e\xda\x78\xbf\x69\x2c\xbb\x4f\x5e\xce\xb0\xfe\xe4\x69\xd3\xc0\xa2\x15\xb1\xb1\x11\x24\xdf\xdd\x82\xa4\x9e\xca\xee\x1e\xd0\x74\x9b\xb0\xcb\x7d\xb5\x2c\x8c\xe2\x62\x94\x5d\x4c\x5f\x6e\x87\x58\x8b\x1b\x43\xc6\xad\x31\x63\x98\x2f\x71\xfd\xc9\xac\x99\xde\x31\x17\x88\x7d\x4c\x17\xbf\xa2\xd3\x34\x21\x23\x1e\xe8\x5c\x6b\xa4\xbf\x24\x9f\x48\xce\x15\x28\x91\x6e\x0f\x49\x13\xd6\x25\x86\xb8\x58\x4a\xdb\xc8\x63\x54\x05\x5c\x0f\x15\x48\xbd\x4f\x91\x4b\xe7\x23\xc3\x26\xae\xc5\x24\xf0\x54\x54\x04\x13\x21\x90\x43\x8d\x08\x61\x7a\xb6\x29\x7a\xf0\x91\xf1\xcb\x46\x37\x67\x5d\xe2\x58\xfe\xb2\xd7\x25\xc5\x73\x71\x39\xfd\x85\xf8\x83\x2f\xc4\x1e\x30\xc0\xf4\x58\x11\x2c\xa1\xc4\x69\xbc\x69\xc6\xe2\xb7\x74\xa3\xa2\xc4\x42\xc8\x74\xba\xd7\x19\x95\xba\xf8\x05\x62\xb4\x91\xb5\x6c\xb1\x4c\xcb\xd0\x64\xb2\x86\x33\x1e\x82\x06\x8a\x52\x0e\x6e\xeb\xd2\x87\x79\x6d\xae\xdd\xa7\x7f\x9e\x00\xb2\x6b\x92\xa5\xe9\xb7\x73\xc3\x0d\xd6\xde\x50\xc6\xd0\xeb\x7b\xca\x1a\xf9\xfc\x40\x2b\x56\x8e\x73\x2c\x13\x6d\xc1\x94\x8b\x4d\x91\x9d\xcf\xc5\x58\x16\x0c\x85\x8b\xaf\x4e\x30\x14\x2e\xce\x1a\x1a\x4e\xa7\x94\x12\x6b\xcd\x2b\x71\xbb\x9c\x12\x1d\x8d\xab\x72\xc7\xa9\x57\x28\xbb\xf5\x3b\x77\xbb\x10\x4f\x67\x65\x1e\x7d\xff\xea\xcd\xbb\x8b\x57\x2f\x2f\xa0\xe6\xb3\x57\x2f\x41\xaf\xa4\xef\x2b\x4f\x19\x37\x49\xb3\xb6\xb7\x05\x10\xfe\x78\xf8\xaa\xe0\x6e\x88\xda\x5d\xb1\x7b\x69\xc9\xdd\xcf\xc1\x73\x4d\xbf\x48\x60\xb5\x46\xfc\x89\x10\x8d\x54\x88\xa2\x4a\x8f\x0b\xea\x0c\x51\xd4\x20\x1e\xae\x2c\xea\x8a\x4b\x4a\xd1\x29\x11\xdd\x10\xfe\xd8\xeb\x87\xe0\xdc\xf6\x8a\xeb\xc7\x4d\xd1\x51\xdc\x12\xea\x12\x9c\xf6\xdb\xf4\x2f\xa5\x5b\x59\x17\x33\x29\xe6\x89\x9d\x08\xcd\x19\x3d\xc5\xc6\x97\x0c\x76\x7d\xa1\x22\x83\xae\xd6\x75\xc8\x40\x8c\x14\x3c\xab\x75\x1d\xb3\xbf\xd0\x24\xa7\xc3\x2c\x45\xa8\xa1\xa1\x68\x89\x97\x09\xc9\x49\x7e\xe5\xcb\x24\x39\xe1\xf6\xb0\x7a\x2b\x4c\x2d\x2e\x54\x65\xfa\xd0\x90\x68\x52\xbb\x27\xd6\x2b\x6a\xbf\xb7\xdb\x01\xef\x43\x10\x17\xac\x75\xa4\x41\x75\x68\x67\x12\x43\x98\x16\xcb\x53\xd0\x92\x7e\xc3\x28\x6a\x1a\x9f\x88\x6e\xcd\xac\x92\x92\x61\x8a\xc5\x71\x25\x6c\x0d\x21\xb5\x19\xef\x6c\xea\x30\x91\x9b\x35\xd8\x01\x4f\xbe\x4a\x4a\xdd\x3c\x08\x62\x4a\x45\xee\x47\x42\xe4\xf6\xf7\x46\x97\x2b\xb6\x7d\x0f\xc5\xe5\x97\x62\x37\xb5\x65\x68\x97\xde\x35\x05\x84\xbf\x33\xb9\x6e\xb1\xe5\x68\xe7\x2e\xb6\x1e\x05\x20\xd6\x97\x86\x5b\x21\xd1\x69\xd6\x10\xd7\xb8\x41\x71\x0c\x15\x38\x2d\xeb\x76\x35\x9e\xb8\x27\xc6\x8a\x93\xd9\xe2\x49\x5e\x97\x7c\x5d\x26\x64\xca\x62\x76\xb7\x0d\x41\x94\x56\x43\xc0\xf4\x53\xc4\xa4\x9d\xc5\xad\xdb\x1b\xa2\x68\x9a\x77\xca\xac\x2e\x58\x9b\xb2\x9f\xba\xa5\x40\x1c\xc7\xb3\x6e\x17\x92\x5d\x95\x37\x4f\x37\x2e\xfb\xb8\x52\x0a\x08\xd5\xa3\x3a\xd4\xeb\x22\x82\xf8\xa7\xbb\xd7\xd8\x8b\xf8\x40\xdf\x1e\xd5\xe1\x4c\x3a\x5e\x03\x74\x2a\x84\xb9\xb5\xd1\x8e\x8f\xc7\x3a\xba\x50\x29\x01\xbe\x95\xa2\x29\x94\x44\x5b\xf4\xdf\x3e\xb5\x12\x6e\x35\xb5\x02\x72\xcd\xe9\xc2\x8b\x13\x3e\xeb\x14\x39\x53\x2e\xd4\x92\x66\x18\x74\xb2\xdb\xdd\x6b\xd8\xa2\x5f\xfd\xef\x1d\xba\x09\x3c\xb3\x51\xdf\x49\xa9\x5a\x88\x54\xcb\x6c\x69\xca\xbc\xb6\xe9\xe2\xe4\x02\x8e\xb8\x96\x66\xf4\x95\x8f\x6d\x6b\x2f\x81\xd4\x8a\x99\x83\x80\x19\xda\xed\x36\x2f\xd8\x6e\xc7\xa3\xea\xea\x98\xa9\xa3\x85\x7d\x1d\x21\x2f\x20\xfc\x55\xc5\xe2\x20\xa2\x5b\xee\xd8\xec\x27\x17\xa7\x6e\xa9\x09\xd3\xae\x60\x52\xfc\xe9\xd5\x5c\x2a\xba\xaa\x56\x5f\x17\x59\xc2\x67\xaa\x2d\x33\x29\x82\x28\xef\x17\x75\x22\x08\x8b\xe8\xe3\xa1\x16\xca\x40\x54\x7a\x5a\x94\xd2\xdf\x47\x17\xdf\x2b\x1e\xc7\xb7\x7f\xc1\xa7\x5f\xdc\x28\x30\xf7\xbc\x23\x59\x2c\xda\xec\xaf\x11\x6f\xa4\x51\xb6\x2c\xdc\xf6\x2c\xd4\x86\x49\x82\x5a\x04\x51\x0e\x1b\x6f\x9b\x87\x53\xe9\x17\xf9\x58\xa4\xcc\xe7\x3c\x69\x3e\x17\x69\xd2\x7d\x82\x79\xea\x73\x1f\x8a\x56\xe8\x94\xd6\x41\x04\x85\xbe\x04\x31\xa4\xd0\xe0\x60\x8b\xcd\x02\x83\xcf\xb4\xab\xd3\xb2\x93\x64\x99\x6a\xc9\x98\x55\x16\x93\x43\x96\xae\xc6\x6a\x9e\xf4\x3a\x13\xd9\xf0\xb4\x7d\x62\x5b\x2a\xc4\x93\x29\x8b\xd9\xdf\x8e\x47\x71\x1c\x1f\x0f\xb5\x96\xc0\x59\x4c\x66\x37\x0d\x2a\xe6\xf3\x2f\x38\x48\xc4\x60\x31\x06\x12\x6d\xda\xa1\x17\xb2\xf9\x01\x53\x03\x8f\x9a\xb4\x8f\x74\x2c\x26\xe2\xc8\x1e\x72\xb5\x62\x2e\xfb\x2c\x93\xa9\xba\xdc\xc8\x03\x6a\xdc\xc5\x8a\xe9\xf6\x6e\x3b\x6c\xf1\xeb\xdd\x7a\x95\x69\xb7\xf6\x97\x24\x4f\x49\x7e\x35\xd6\x77\x69\xdb\x10\x6d\xc5\x9a\xbb\xe7\xe9\x7e\x97\xda\x35\x7d\xd7\x2b\x75\x9a\x00\xbf\xa1\xff\x59\xe4\x6a\x4e\xb2\xda\x55\x39\xfc\xca\x8b\xba\x2f\x10\x22\xaa\xc5\x66\xfc\xd4\xb5\x19\xdf\x25\x54\x9f\x7a\x84\xea\x7d\xaa\x0e\x98\x11\x71\xbe\x54\x08\xbe\x9f\xe6\x3b\x2e\x46\x64\x59\x7e\xf9\xc3\x02\x8e\x98\xc7\x11\xb8\xe5\x1d\x69\x96\x19\xa2\xdd\x48\x77\x0f\xd3\xec\x1a\x7e\x2a\xd6\xc0\x56\xaf\x92\xaa\xea\x24\x1d\xed\x1e\x84\xc3\x78\xb7\xea\x54\x78\x56\xe4\x69\x47\xe8\xb0\xfa\xdc\x21\x8f\x73\xb5\xd0\xb3\xce\xd7\x42\x45\x9c\x6a\x0c\xb6\x78\xd7\xb0\x45\x83\xdb\x8b\x36\xa2\x12\x3d\x4a\x04\xd4\x7c\x54\xfa\x1b\xfd\xfa\x8c\x88\x2a\xfe\x19\x11\xb9\xc2\xa6\x5b\x38\xa4\xb9\x40\xf1\x20\xc5\xcf\xc5\x1d\x91\x04\xf2\xce\x29\x05\xf3\xce\xa9\x04\xf4\xce\x29\x3f\xf9\x54\xe3\x13\x72\xe7\x54\xf9\x0b\x4d\x64\x3b\x5c\xa1\x57\xb1\xfc\xb1\x4c\xee\xf5\xe8\x81\xa4\x07\x70\x8e\x65\x9e\x38\x04\x84\xcf\x90\xef\xe4\x5f\x24\xd5\xc2\xbc\x08\xd7\x37\x94\xff\x52\xfc\x98\x56\xfa\xf2\x37\xe3\xb7\x09\x82\x7e\xe0\x86\xdc\x7d\x4d\x7e\xba\xef\x9a\xfc\x4f\x49\xb5\xd8\x17\xfd\xbc\xe5\xce\xfe\xd0\x4b\xf5\xfb\xde\x4b\x75\xda\xb1\xef\x56\x1d\x8e\xf3\x5b\x5c\xaa\xf3\x0a\xc6\x9d\xba\xd6\xb8\xef\x52\x5d\x1b\xbb\x7e\xab\xee\xad\xb5\xfb\x5a\xbd\xa5\xca\xce\x7b\xf5\x96\x3a\xb7\x92\xf2\x17\xaa\x8d\xb6\x9b\x75\xfe\x02\xc6\x01\x57\xeb\x5a\x63\xa1\x39\xfd\x5a\xc7\xfa\x7a\x89\xbb\x75\xa3\x70\xeb\xd5\x3a\x6c\x25\x7b\xdf\x39\x1b\xcd\xd8\x88\xff\x2c\x11\x11\xdb\x76\x89\x07\xf7\x3d\xea\x4e\xdb\xb4\xc4\xa3\xfe\x3c\x64\x6d\xda\x17\x45\x03\xef\x96\x8b\xa2\xbb\xaa\x4d\x74\x5f\xb5\xdf\x90\xc5\xf0\xf8\x7f\x0d\x95\xff\x97\xcf\xcf\xec\x54\xf3\x33\x83\xfb\xce\xc9\xfe\x3b\x11\xcd\x8a\x57\xb1\x8a\xd2\x46\x93\x1b\xbe\xce\xc3\x61\x1c\xc3\x25\x27\xb0\xd9\x10\x48\x5f\xab\x00\xa1\x43\x47\x9b\xab\x35\x49\x47\x52\x97\x40\xbf\xfe\x8c\x6f\x7a\x32\x81\xa4\x48\x56\xd2\xaa\x83\xc9\xe2\xc8\x32\xeb\x85\xee\xff\x48\x5b\x64\xbf\xba\x5d\xa7\x61\x96\xce\x9a\x65\x2b\xa8\x5a\x60\x9f\xa8\x26\x4b\xfc\xb6\x4e\x96\xab\x51\x5e\x5c\x87\x11\xaa\xea\x64\xf6\x61\xa4\x28\x83\x59\x3c\xea\xb3\xfc\xa6\x89\xcc\x8b\x64\x53\xd7\xc6\xb4\x30\x16\x9f\x01\x33\xa3\x73\x1b\xac\x94\xba\x27\xe6\x37\x78\x22\xfe\x02\x68\x92\xd8\xbd\x1f\xfc\x94\x41\x6d\xf5\x96\xe2\x41\x83\x1e\x0c\x22\x97\xdd\x5d\x82\x91\xca\x3f\x1b\xaf\xeb\x5e\x1d\x9d\x3a\x57\x47\x87\xf0\xc3\xfb\x50\x76\x99\xac\x14\xb3\xba\x4c\x56\x5f\x9e\xab\x65\x8d\x7e\x0e\x4b\xbb\x4c\x56\x9f\xc1\xcf\xb6\x73\x8e\xed\xec\xac\x7a\x7f\x23\x66\xd0\xee\x61\x65\x79\x71\x71\xe4\xbb\x7c\x5f\x5e\xa4\xf8\x5f\x0f\xa9\xf6\xdf\xf8\xd2\x71\x91\xf9\x0d\x33\x90\xa1\xeb\x8b\xc4\xaa\xb0\xa7\x99\xb8\x30\xcc\x7b\x31\xb2\x78\xf8\x0c\x30\xf1\xa8\xd8\x99\x26\x2e\x20\xcc\x26\xc6\x4e\x6f\x04\xa7\x4f\xbd\x0a\x7a\xfb\x96\x5e\x1a\xfb\xb0\xa0\x39\xb7\x59\x7e\x51\x89\xae\xbf\x6c\x75\x42\xa6\x0d\xf8\xbb\x51\x48\x99\x6c\x7e\xc4\xc7\xd6\xed\x1e\xc1\x20\xba\x5d\x6b\x02\x94\x79\xc9\xac\xc8\xab\x22\x03\xdb\x03\xce\x0e\x6d\x78\x5a\xff\x3a\x29\xf3\x30\x78\x8c\x57\x25\x9e\x31\xb6\x6b\xd4\x79\xf3\xf6\xaf\xaf\xfb\x6a\x82\xa3\x4e\x5a\xe0\x2a\xbf\x5b\x77\x92\x2c\x2b\xae\x99\x2f\x09\xc9\xaf\x58\x50\x90\xa0\x77\x37\xa0\x40\x05\x1d\xae\x36\xe8\x24\xf9\xcd\xb2\x28\x71\xbf\xf3\x43\x85\x3b\x37\xc5\x5a\xba\x90\xb1\xe0\x3d\x21\x4d\x79\xb7\x20\x55\xc4\xce\x27\x9c\xa4\xfd\xbb\x51\xc3\x87\x65\x2e\x93\x52\x26\xd3\x2c\x16\x7e\xd1\x83\xfe\x62\xba\xec\xfd\x2f\xd2\xa9\x0c\xe7\x72\x0a\xa1\xb4\x17\x1f\xdb\x26\xe2\xa5\x63\x09\xe0\xe8\x1f\x8d\xa5\xbf\x73\xea\x5f\xfc\xc4\xb7\xf0\x77\x4e\xa3\x56\x19\xf1\xce\xa9\x90\x12\x13\xb6\xfc\x77\x4e\x0d\x04\xb8\x73\x0a\x28\x00\xb7\x1a\x09\x3c\x8b\xcc\x7a\x02\xe7\x80\x04\x1e\x55\xd6\xe2\x22\x1b\x21\x90\xa5\xe9\x4e\x22\xc2\xcf\x89\xbb\x0c\x88\xd6\xc3\xd4\x4d\xc3\x48\x2f\x47\x91\x8a\x3f\xbb\x76\xf9\xb3\x78\xad\x8d\xc7\x29\x7d\x24\x00\x8b\x8d\xea\xf2\xc5\x20\xd8\xe3\x77\xee\xc1\xf3\x43\x77\xee\xb1\x91\xde\xfb\xce\x58\x60\x79\xac\xde\xb9\xc7\x10\x9f\x87\x0e\x52\x05\x26\xe4\xce\x3d\xf6\x80\x1e\xb7\x73\xb1\xfb\x66\xf9\x8d\x18\x47\x71\xf9\x73\x24\xee\x2d\x21\x45\xdc\x2f\x28\x5c\xb0\x54\x89\x63\x41\x3b\x78\x94\x1d\x8e\x6c\x48\x43\x9e\xa6\x89\x1a\xcf\xee\xef\x5f\x5c\x30\x99\xe5\xe2\x22\x16\x6d\x28\xcb\x0f\xa7\xb4\x43\x93\x4d\xae\xdf\x63\x94\xae\xdb\x82\xfc\x53\x9a\xa5\x1f\x62\x1d\x71\xa8\x3d\xc6\x2d\x6c\xd0\x75\x4e\xff\x4b\x88\xcb\x2c\x94\x2f\x3f\x3a\x5b\x8e\x1c\xad\xcb\xb1\x57\x62\xde\x67\xa5\xee\xad\xb4\x5b\x9e\x6e\xa9\xb2\xf3\x4e\x7a\xd3\x34\x6d\xf5\x0e\xbb\x84\xa7\x5f\xca\x1e\x97\x15\x55\x07\xc6\xbe\xb6\x0f\x93\xd7\x05\xe5\xa6\x78\xbf\x5f\x60\x6f\xe9\xb1\xf5\xb2\xfc\x16\xb7\xe2\x3a\x73\x36\x99\x8e\xad\xd8\x84\x7c\x62\x76\x5c\x9e\x76\xbb\x60\xe1\xe1\x0d\xab\x24\xb4\x74\x20\x50\x09\xc3\x9d\xd1\x07\x7c\x03\x42\xc1\x08\xee\xd3\x59\xf0\x26\x6e\xc5\xca\xd9\x08\xeb\x81\x36\xfb\x56\xd4\xe1\x2c\x3f\xeb\x76\xdf\x7d\xe7\xcd\xbe\xef\x17\x71\xca\xd9\xfd\xbd\x78\x38\x8d\x0f\xc3\x23\xb5\x48\xbe\xd2\x92\xa0\xa5\xe9\xa6\x13\x12\xc6\x6f\xf4\x26\x39\xd4\x93\x59\x52\xd5\x46\x02\xf3\x4b\xd0\xbe\xcb\x64\x86\xcd\x04\xa0\xf9\x56\x1a\x3c\x7e\xfa\xdb\x28\x2d\xd5\xf7\x03\xeb\xfb\x1b\xeb\xfb\xf7\xd6\xf7\xb7\xd6\xf7\x1f\xac\xef\xe1\xe0\x0b\xe8\x10\xda\xac\x5d\x3d\x2a\x9b\x96\xd0\x35\xbe\x07\x20\x77\x05\xd8\xb9\x7f\xcb\x00\x3b\xf7\xf7\x07\xd8\xb9\xaf\x29\x3e\x1c\x4b\xc3\x07\xa6\xa5\x21\x58\x69\xda\x05\x84\xd5\x66\x8b\x35\xe2\x83\xfd\xd6\x88\x0f\x0e\xb2\x46\x7c\xe0\x58\x23\xba\x2e\x71\x76\x79\xd7\x45\x0e\xea\x19\xae\x71\x6e\x25\xc3\x55\xae\xfd\x9c\x7d\xe0\x9c\xb3\x74\x57\xc5\x16\xa2\xda\x2b\x9c\x58\xa3\xff\xbd\x5b\x84\xee\xbd\xd8\xc2\xe7\x96\x27\x54\x62\x0b\xcd\xdd\x62\xce\x8a\x50\xe4\xb7\x8b\x71\xa5\x50\xcc\xc8\xcd\x45\xd0\x63\x3a\x9f\x5e\x70\x2c\xf6\xc2\x9a\xd2\x90\x78\xa0\xc5\x4e\xc2\x38\x15\x2f\x5d\x94\xe1\x81\xe2\xbe\x10\x00\x0c\xb9\x9f\x0a\x39\x73\x52\x56\xb5\x14\xfa\x3b\x75\xc1\x52\x39\x95\xe9\x68\x86\x49\x81\x16\xe8\x80\x81\xf0\x12\x5f\xb7\xf5\xfe\x94\x79\xd6\xd2\xc6\x64\x03\x9d\xbb\x1c\x0f\xee\x8e\x3a\xaf\x33\x9c\x54\xb8\x43\xf7\x3d\xed\xec\x6e\x8e\xaf\xef\x76\xe8\x29\x43\xf9\x03\xc4\x04\x41\xbe\x1b\x75\x00\x84\x67\xb1\x3a\x55\x13\x5d\x91\xd1\x0f\xf6\x71\x39\x0e\xa7\x25\x25\x25\xcb\x48\x33\x8d\xf9\xb4\x8b\x17\x3f\x40\xd3\x16\xb3\xbf\xc2\xde\x4a\x8b\x4c\x30\x99\xee\x0f\x36\x10\x00\x1b\x95\x06\xf0\x34\x48\x43\xe6\xcc\x9e\xf3\x28\x8e\x95\x7b\xaf\xa5\xcf\x91\x19\xd1\xc6\x5a\x73\x16\xf9\x92\x71\xf4\x7a\xdc\x19\x3e\x2a\x51\x9c\xad\x4f\xe3\xba\x15\xb3\xe8\x74\xb2\xed\xa6\x11\x7c\x0b\xdb\x41\xf4\xcf\x58\x93\x41\xe3\x24\xcb\xe4\x37\xdb\x1c\xf4\xcf\xd8\x7a\xac\x23\xe6\xa0\x8d\xcd\x30\xf5\x31\x37\x45\x15\xa9\xda\x73\x18\xda\xba\x8e\x84\x56\xfb\x82\xa4\x23\x65\x52\x24\xb4\xa5\x23\xfe\x2f\x82\x45\xd0\x4b\x80\x79\xaf\x96\x00\xc7\xb9\x51\x44\x2d\x93\x9e\xcc\x0d\xe8\x46\x8e\xf5\x91\xa5\xf2\x54\xcf\xa6\xf0\x80\x50\xe6\x13\x18\xad\x91\x3d\x90\x66\xae\x0f\xa1\x2e\xc0\x86\xca\x1b\xad\x43\x46\x8c\x60\x22\x35\x43\xaf\x59\x8b\xd9\xef\x47\xf1\x0e\x6e\x6c\x04\xd9\xd0\xb8\x26\x99\xc1\x99\xa8\x03\x10\x73\x91\x30\x97\x1c\xa4\x07\x2d\x89\x1a\x9f\x0d\x76\xb7\x6b\x8c\xb8\x2d\x6c\x98\x1b\x74\x82\x99\xa8\xf9\xa2\xa1\x08\x83\x37\x27\x58\xd4\x81\x11\x54\xa4\x19\x13\x2d\xd7\x20\xfe\x28\x83\xbe\x42\xce\x9a\xe8\x8f\x39\x30\xbd\x0a\x7b\xdb\xc4\x2d\xd8\xa0\x60\x4e\xf2\x24\xcb\x6e\xb4\xf6\xa4\x25\x89\xb6\xc0\xba\xf5\xa6\xbd\x7a\x63\xa7\x37\xdb\x54\x4e\x79\xb5\xc8\x48\x90\xf2\x49\x21\xa9\x93\xb1\x35\x40\x96\x99\x9f\xcf\x8e\xee\x33\xdb\x05\x7a\x0e\x8d\xd0\x76\x85\xcb\x69\x0b\x5f\x2c\x9d\x6a\x3f\xe7\x72\xef\xd7\x4b\xeb\x87\xb8\xd6\xb6\xbb\x12\x6b\x56\xfc\x8c\x28\x8a\x92\x9a\xe0\xdc\x7a\xb9\x66\x72\xf3\x2c\xa4\xa5\xe4\xd2\x7f\xf5\xe0\x7d\x0c\xdf\x61\x23\xe7\x35\xdb\xa0\x05\xd1\x62\xa2\xbf\xfc\xde\xff\xa7\x70\xce\x39\x34\x4a\xe5\x6f\xe1\xc6\xe3\xce\xf5\xe9\x7e\xe6\xda\x72\xf5\x39\xd4\x8d\x67\x9f\x6a\x69\x1f\x42\xd3\x05\xb4\x31\x9a\xb6\x7b\x6e\xd1\x20\x10\xc6\x0d\x7b\xfa\x5d\xee\x24\xc0\x79\x80\x36\x97\xb7\x1e\xed\x0b\xfe\x62\xb1\x98\xdc\xcf\x9f\x32\x7d\x14\x48\x2d\xce\x8b\x80\x40\x57\x06\xf0\x4e\x84\x32\x40\x8e\xcf\xa0\xf4\x7b\x42\x99\x68\x95\x54\xa4\xb5\x3d\x71\x4c\x3e\x47\xa7\xa0\x0e\xa5\x73\x0f\x31\xe5\x23\x99\x90\x69\xa4\x19\x44\xef\x3f\xb1\xf6\x11\x16\x21\xe0\x4f\x3e\x6b\x87\xee\xda\x91\xce\x7e\x18\xea\xfb\xe1\xc2\x83\xec\x43\x85\xec\x7b\x11\x54\x7f\xa0\x68\x17\x86\x1e\x8c\x9b\x17\xfe\xa5\xb4\x91\xab\x7d\x1e\x39\x59\xfe\x2f\x98\x48\x2f\x15\xef\x7b\x62\xe0\xb4\x4c\xa5\x54\xfe\x6b\xfa\x5f\xef\x5c\xca\xa8\x86\x52\xc7\xa9\x1e\x7a\xe0\x3a\xc7\x6e\x97\xdb\x5b\x9b\xce\x26\xe7\x7a\x90\x4a\xd3\xdc\xfa\x16\x0b\x64\xee\x4f\x6e\x22\xbe\x6f\x85\xe4\x61\xf4\x4f\xe6\x70\xcb\x68\xec\xae\x80\x1c\x4e\x01\x77\x68\x6a\xf3\xfe\xb3\x0d\xce\xb7\x3f\x77\x3d\x32\xd6\x3e\x44\xb5\xaf\xfe\xe9\xc6\xa8\xdd\x91\xb5\x8e\xd1\x2d\xe3\x19\x23\x63\x87\x6f\xed\x51\xb2\x1f\x40\xd6\xae\x3c\xac\xfc\x76\x3b\x26\x2b\x3e\x36\x3e\x6d\x48\x3f\xef\x95\x2f\x75\x82\xda\x21\x51\x3f\xd9\x8f\xcd\x7c\xa2\xa4\x44\x94\x0f\xe4\x7b\x32\x9f\x0c\x0a\xf3\xe9\x28\x86\xf0\x72\xc6\xe3\x54\xb6\x5e\xd5\xd1\xa3\x2a\xb3\xae\xea\x50\x00\x1a\x33\x64\xbd\x6c\x5b\x63\x17\xb5\x56\x4d\xf7\x3b\x7f\xd3\xbb\x07\x61\xf3\x9d\x3e\x3e\xf3\x5f\xf8\x3d\x34\xa1\x9f\x7e\x9c\xd4\xb8\x9f\x17\xd7\xda\xe3\x64\x02\xcc\x90\x1e\x01\x34\x3f\xea\x5f\x01\xba\x86\xa6\xdd\x29\xad\x17\x0b\x85\xb6\xbc\xf6\x6c\x7b\xf3\x4c\x77\x71\x2a\xf4\xcb\xae\x66\x5c\xe8\xd7\x8f\x10\x16\x52\x1c\x4c\xd6\xb3\x67\xa2\x13\xf1\xc3\xda\x15\x5c\x2e\xb3\xdf\xe8\x36\x7c\xc5\xc4\x37\x58\x12\x89\x2f\x71\x25\xe3\x06\x59\x13\x89\xf2\x92\x46\xb3\x7f\xd5\xbf\x3c\x35\x04\x31\x11\x09\x3c\xe2\x84\xf8\xd4\x2e\x97\x94\xbd\x9c\xaa\xac\xae\x80\x8c\x13\x46\x7c\x0b\x67\x12\x09\x34\x8b\x09\xf5\x2f\x7a\x3b\xa4\x25\xd8\x10\x0e\x6d\x10\x87\x36\x8c\x43\x1b\xc8\xa1\x0d\xe5\xf0\x9b\x2f\x65\xe9\x75\x8b\x8b\x28\x69\x73\xb4\xef\x1e\xca\xbe\xa5\xb8\xef\x2d\xc2\xed\xb4\xed\x5b\x91\xbd\xf7\x19\x9e\x6b\x91\x85\x6d\xf9\xec\xb9\x17\xd1\xec\xc7\xf7\x5d\x8f\x70\x3c\xdf\x77\x3d\xc2\xb0\x7f\xef\xed\x88\xef\x2e\xd0\xba\x0c\x54\xb1\x5d\x5a\x4a\xad\x4b\xcc\xdd\x28\x2c\x6e\xdd\xb3\x4a\x5e\x9e\xdd\xb3\x48\x3e\x21\xc9\xb3\x50\xb0\x2b\x63\x1b\x1b\x9d\xf5\xac\x6c\xd0\xac\x65\xd2\xf5\xac\x31\x2d\x3d\xd6\xee\x71\x6e\xf2\x99\x15\x9b\xcd\x50\xcb\x1a\x59\xba\xd0\x1c\x6a\x31\x7a\xd4\xf3\x74\x73\x72\x85\xd4\xab\xbe\x5a\xf9\xf9\x5c\xab\x30\x9f\xb7\xd6\x50\xa6\x79\xbe\x98\x6d\x52\x40\x81\xcc\xfe\xc5\xc5\xeb\x37\xaf\x5e\x3c\x7b\xfb\xe4\xe2\xd9\xcb\xb7\xef\xde\xfc\xf0\xe2\xc9\xcb\x77\x8f\xde\x3d\x7b\xf5\xf2\xe2\xc2\x30\xe9\xfb\x68\xb8\xc2\xee\xaf\x3c\x56\x91\x8a\x02\xfd\x82\x9e\x3d\x2e\x26\x4d\x0b\xa4\x31\x77\x87\x68\xae\xb0\xa6\x17\xaf\x6d\x07\x21\xeb\x44\xd1\xc6\xeb\xa2\x69\x38\x11\x5a\x51\x46\x04\x5d\xf1\xc5\x0d\xd5\x89\x89\xf6\xdb\x28\x23\xae\x64\xac\x34\xb1\x35\xd5\x4f\x33\xc2\xaa\xbc\xb8\xd1\x53\xd9\xbe\xa7\x7f\x9c\x54\xd1\x9c\xf6\xdb\x8a\xd8\x0a\x5b\x9c\xff\x6b\xe4\xc1\xbe\x66\x7f\xad\x74\x41\xff\xe4\xaf\x7d\x21\x9a\xcc\xc3\x3e\x8f\xad\xb8\xac\xc5\x7c\x1e\x17\xf3\xf9\x17\x88\x33\x2b\xf6\xd5\x4d\x3e\x33\xdf\x4e\x4a\x56\xf1\x32\x31\x23\xd9\xf2\x2d\x0d\xff\xb0\x40\x75\xbf\xac\x49\x89\x5f\x14\xe9\x3a\xc3\x61\x80\xe1\x39\xcf\x26\x0a\xa3\xf1\x57\x8a\x9b\xbf\x62\xc1\x05\x3d\x07\xcd\xc5\xf7\x49\x85\xbf\xb9\x1f\x43\x81\x3e\x7c\x81\xe9\x23\x2e\x2b\xca\xd2\x06\xa7\xfd\x61\xff\xf7\x50\xfa\x72\x3d\x9f\xc3\xc3\x7b\x7c\x17\x2d\x59\xb7\xf6\x16\x83\xd4\x3e\x07\x3a\xda\x40\xb5\x98\x83\x1a\x06\xf0\x1d\x44\xfd\xef\xd9\x0f\xc6\x2f\x5e\x7e\x73\x7f\xb6\x48\xca\x2a\x0e\x1e\x7d\x7f\xfe\xf8\xc9\xd3\x3f\xfe\xe9\xd9\xff\xf8\xf3\xf3\x17\x2f\x5f\xbd\xfe\xcb\x9b\xb7\xef\x7e\xf8\xeb\x8f\xff\xf6\xd3\xbf\x27\x97\xb3\x14\xcf\xaf\x16\xe4\xe7\x0f\xd9\x32\x2f\x56\xbf\x94\x55\xbd\xfe\x78\xfd\xe9\xe6\xef\x83\xe1\xe9\xbd\xfb\x0f\xbe\xf9\xfd\xb7\x7f\xe8\x9d\x70\x50\xbf\xb9\x5f\x27\x97\x8a\xb3\xbb\x24\x3c\xde\x7d\x1d\x6f\x9a\xb1\xe9\x4e\x7f\x49\x72\xdb\x91\xbe\x9e\xd0\x44\x0a\xd1\xa3\x3a\x24\xd1\x34\x26\xf2\x2a\xa5\x09\x05\xac\x70\x21\x36\x2f\x8b\xe5\xf9\x22\x29\xcf\x8b\x14\xc7\x9c\x73\xd6\xd3\xe0\x94\xb8\xbc\x58\xd7\x85\x06\xcf\x0c\x76\x39\xef\xf7\x3b\x11\x2c\x6f\x16\xcf\x58\xaf\xb4\xe2\xa3\x3a\x1c\x48\x2d\xc6\x6c\xf6\xdd\xf0\xf4\xdb\xb3\xd9\x68\x36\xfb\xee\x74\x70\xff\xdb\x33\xbd\x8b\x70\xf8\x87\xd3\xed\x6c\xf6\xf0\xe1\xc3\x6f\xa2\x9e\x99\x71\xfa\xed\x76\x36\xeb\x7e\x73\x2f\x1a\x19\xe9\xa7\xa7\xf7\xa1\xc2\xf0\xb4\x3b\x7c\xe0\xad\x44\x5b\xa3\x15\xdb\x1a\x54\x4f\x85\xcc\x66\xf1\x37\x0f\x1e\xdc\xfb\xa6\x17\x5a\xc0\x1f\x3f\x78\x70\xfa\x87\x6f\xa2\xaf\x87\x83\xd3\xfb\x56\xe6\x30\x3a\x7e\xf0\xcd\xbd\x53\x35\x40\x13\xbc\xfb\x03\x0e\xde\xb7\xdd\xdf\xb7\x41\x37\x3c\x6d\x03\x6f\x2f\xe8\x0d\x3f\x45\x61\x51\x4e\x26\xef\xd7\x8f\xbf\x1d\x0c\x8e\xdf\xaf\x1f\x7f\xff\xf4\xe9\x94\x7e\x9e\xc3\xe7\xd3\xa7\x4f\x9f\x4e\xb7\x93\xbf\xbd\xff\x44\xbf\x3f\xfd\xfe\xe9\xf4\x04\x8e\x7d\x73\x35\xd7\x52\x9a\x5a\xf7\x4b\xbc\xca\x92\x19\x0e\x79\xeb\x88\x2f\x7d\xd4\x08\x44\xc0\xf9\x8c\xa2\x8a\x42\x85\xd9\x4c\x5c\xd5\xa6\x19\xce\xe3\xc9\x00\x9d\xa2\xe1\x74\x32\x9b\x09\xf4\xf8\xdd\xbd\x29\x2a\xca\x34\xa6\x29\xc6\x04\x7f\xf7\xdd\xf0\x9b\x6d\xa8\x0a\x3e\x1c\x9e\x59\x65\x86\xd1\x88\x16\xfb\xd6\x28\x75\x6a\x97\x3a\xa5\xa5\x10\x6c\xc0\x89\x40\x6f\x81\xfe\x45\x99\xb2\x95\x88\x50\x4b\x0e\x5b\x07\x04\xd0\x3f\x8c\x4f\xcf\x82\x38\x18\xf9\x8b\x7e\x63\x94\x1c\xb6\x95\xa4\xa5\xa6\x12\xf3\x59\xe6\xcf\x05\xc9\xc3\x20\xe0\xb3\x78\x59\x17\x89\xa0\x59\xf4\xf7\x99\xda\xe7\x72\x25\xb4\xec\xf0\x32\x6a\x46\x9e\x22\x97\x72\xb1\x4e\x26\xef\xab\xf7\x6f\xa7\x9b\x21\xba\xd7\x9c\x5c\x21\xb9\x4a\xbc\x3f\xb1\x66\x40\xb9\xce\xdc\x75\x0f\xd7\x96\x62\x13\x4a\xea\x89\x67\x6b\xe6\x44\x05\x19\xe1\x3a\x8a\xa4\xa0\x1d\x06\x97\x8c\xee\x06\x3a\x94\x0a\xa5\xd8\x08\x28\x0a\xd1\x4a\x00\x8f\x8d\x42\x6b\xb4\x2e\x49\x95\xcc\xe5\x85\xee\x11\xff\x3e\xe3\x90\x87\xbc\xa7\x75\x14\x8d\xdc\x24\x6d\x1a\x7a\xef\x4f\xa6\x27\x57\x4a\x5c\x5b\xca\xa7\x25\x3a\xcb\x41\x1c\x07\xbd\xe0\x2c\x38\x0e\x46\xc1\x45\xd0\x68\xd5\xe2\x93\x2b\x24\x17\x07\x9a\xff\xe1\xcd\x33\xdf\xfe\xe0\x7d\xaf\x81\x13\x92\xfb\xf0\xb2\x2e\xd6\x4c\xcb\xfb\x06\x5f\x3d\xf9\xb4\x0a\x27\xc1\xe4\x3f\xff\xd7\xf1\x7f\xfe\xff\xa6\x93\xff\xf8\x5f\xc7\xff\xf1\x7f\x4d\x03\x14\x4c\xfe\xf3\xff\x7f\xfc\x9f\xff\xbb\x48\xd8\x9c\x36\x2c\xed\xff\x38\xfe\xcf\xff\x53\xa6\xdd\x6b\x82\x29\xc7\x94\x6d\x10\xa1\xe0\x2a\x88\xc4\xa6\x63\x1d\xe8\x5b\x6e\x16\x6d\xaa\x6b\xc2\x9e\x38\x50\x3b\x23\xda\xcc\x92\x0a\x77\xee\x8f\x58\xad\x55\x1c\xfe\xbe\x3b\x73\x36\x1d\xdd\x75\xdf\x6e\xc3\x6f\xee\x39\x79\x43\x96\x77\xea\xcd\x3b\xa5\x79\xdf\x6c\x3d\x39\xf7\x22\x54\xcc\xe7\x15\xae\xe3\xd9\xea\x98\x11\x52\x2f\x4d\x0c\xa1\x10\xdd\x70\x83\xa8\x07\x94\xb5\xe7\x2b\xd1\x1d\x0e\x4e\xef\x45\x3d\x4e\x5e\xd9\x80\xee\x8d\xbc\x2d\x0e\x1f\xb4\x0c\xcf\x3f\x84\x61\xeb\x10\x4e\x23\xa6\xfa\xa0\xe2\x82\xbf\xa7\x7b\x43\x7f\x4f\xde\xd6\x86\x91\x8c\xc5\x6c\xac\x9a\x6f\xe3\x72\xdc\x41\x7c\x89\x15\x95\x4d\xb1\x43\x65\x67\xea\xdd\x79\x6d\xcd\x39\x39\x8a\x33\x9c\xff\xee\x3e\xca\xe3\x90\x3d\x33\x7f\x06\x0c\xc4\x44\xc2\xc6\x20\x9e\xd2\xa5\x1f\x0d\xa2\x2d\x2b\x34\xf4\x15\x1a\xb2\x42\xa7\xb2\xd0\xa9\xaf\xd0\x29\x2d\xf4\x8d\x2c\x73\xcf\x57\xe6\x5e\x34\xd5\x88\xb2\x31\x9d\x39\x45\x82\x6f\x22\xe4\x24\x7e\xdb\x3d\x7d\xf0\xc0\x4e\x67\x69\xd3\x31\xd0\x51\xfe\x06\x33\x3d\x64\xf8\x31\x03\xc3\xdf\x49\x6e\x13\x7a\xd8\x71\x7a\x4a\x7f\x2b\x02\x98\xd8\xe4\x96\x66\x87\x89\x4e\xc8\x54\x91\xc4\x43\x6e\xef\x73\x72\x0b\xcb\x25\xc8\x2d\x5f\x3c\x9b\xdc\xca\xa6\xc2\x64\x3f\xb9\x4d\x74\x72\x9b\x20\x49\x63\x35\xba\xeb\x07\x93\xe2\x51\xc8\xc7\xc1\x01\xb2\x91\x49\x15\xe6\xa0\x0a\x62\x9a\xe8\xb4\xf4\xf8\x62\x27\x29\x3d\x0e\xce\x82\x5e\x30\x0a\x4e\x0c\x52\x3a\xf9\xdb\xa3\xe3\x7f\x4f\x8e\xff\x3e\x38\xfe\xc3\x7b\x4e\x8c\x83\x40\xc0\x91\x17\xe7\x45\x3e\xcf\xc8\xac\xb6\x0d\xf4\xbd\x7c\xbc\xf1\x15\x73\x5e\x5f\x2c\x34\x7c\x35\x56\xa1\xcd\x5f\x9f\xbc\x79\xfb\xec\xd5\xcb\x11\xe7\xff\x11\x9d\x88\x11\xfd\x83\xe8\x39\x34\xa2\x7f\x18\x7e\x41\xf9\x11\x0c\x1f\xd5\x05\xff\x06\xfa\x8e\xe8\x71\x35\x62\xec\x0f\x24\x88\x74\x79\x36\x8c\xe4\x2f\xda\xee\x7a\xc4\x36\x31\x34\x26\xda\x54\x83\x1d\xa9\x9f\x8d\x26\x7d\x70\xe5\x2e\x08\x1e\x42\x40\x36\xf4\xf4\x30\x37\x79\xf1\x24\x5f\x2f\xd5\x8c\x7d\x94\xc1\x3c\x79\xe8\x4e\xc4\x8d\x87\x2e\x33\x0c\xc1\x88\xd1\x75\x49\x6a\xf6\xc9\x8c\x71\x84\x48\x28\x53\x1a\x6b\xda\xfa\xf8\x53\x8d\xf3\x94\xbf\x46\xab\x2d\x8d\x17\x44\x8e\x2c\xda\xfb\xba\x81\x9a\xd1\x00\x01\xb8\x1e\x6b\x2b\x8e\x6a\x60\xc1\x19\x45\xe3\x43\x1b\x17\x8b\xe3\x36\x6d\x71\x0d\xe2\x74\x66\x26\x1c\x22\xef\x73\x7a\xfa\xe1\xcd\xb3\x1d\xe3\xd0\x7b\x01\x36\x20\x62\x26\x5e\x30\x32\x11\x29\x6f\x12\xbc\xc0\x35\x2e\xca\x60\x1a\x6d\x7c\xd8\xdd\x9c\x9c\x74\xce\x8b\xd5\x4d\x49\xae\x16\xf5\x48\xfd\xec\x9c\x0e\x86\xf7\x3a\x8f\x8b\xd9\x87\x9f\x92\x32\x45\x9d\xe7\xcf\xcf\xfb\x9d\x24\x4f\x3b\xb3\x22\xaf\x4b\x72\xb9\xae\x8b\xb2\xea\x7f\x75\xa4\xc1\xf5\x84\x4a\xcd\xfd\xbf\x4a\x77\x9b\x2a\x86\x14\xe6\x2a\xb7\x4a\x66\x98\x5f\x20\x84\x72\x77\x04\xc3\xfe\xa0\x3f\xe8\x5f\xe2\x3a\xe9\x9f\x06\x4d\xd4\x84\x11\xda\xd5\x60\x9f\x47\x73\xaf\xe2\x4d\x89\xf3\x54\x0f\x36\x55\x23\xd0\xf8\x40\x9d\x67\xc3\x6f\xf3\x88\xcf\x93\x4a\xe9\xd7\xdc\x16\xb4\xea\x07\x3d\x5a\x01\xac\x91\x74\x8e\x29\xd8\x6c\xc2\xfe\xd7\x67\x51\xd3\x04\x11\xc2\x71\x10\x88\x7d\x4e\xfa\x35\xae\x78\xa8\x51\x7e\x46\x57\x93\x7a\x1a\x75\xbb\x21\x8e\x49\x1f\x7f\xc2\x33\x37\x73\x32\x9c\x46\xc8\x4e\x95\x44\x8a\xa0\x6a\x82\xa7\x51\x83\x44\xe6\x68\x43\xf2\x59\xb6\xa6\x04\x63\x14\x90\xaa\x93\x17\x75\x87\xa5\xa4\x38\xed\x90\x9c\xd9\x59\x67\xa4\xaa\x03\x84\x3f\xe9\xe5\x4a\xcc\xe2\x9f\xa7\x01\x22\x39\xf3\x76\x62\xa9\xfc\x77\x00\xfb\xae\x5c\x82\xef\x6c\x20\x5c\x65\x97\x49\x3d\x5b\x74\x36\x9b\xa4\x86\xe5\xc4\x4d\x13\xa0\x64\x36\xc3\xab\x1a\xa7\xa3\x40\xf8\x3e\x89\x94\x00\xe1\xe5\xaa\xbe\x19\x05\xb3\x84\xd6\xbe\xc4\x1d\xf6\x1d\xa0\xcb\x2c\xc9\x3f\x68\xc9\xec\x3b\x40\x2b\x0a\x54\x5e\xab\x86\x78\x7a\x5d\x14\xcf\x8b\xfc\x8a\x41\x58\x17\x45\x27\x2b\xf2\xab\x4e\xb8\x4c\x3e\x91\xe5\x7a\xd9\x21\x55\x67\xb3\x61\x76\xdb\x4d\xd3\x91\x4f\x0a\x54\x11\xab\xf7\x76\x51\x94\xb5\xac\x58\xd1\xaf\x4e\xb8\x24\xf9\x9e\x9a\xd7\x65\x91\x5f\x41\x14\x22\xa8\xbc\xc0\x1d\x96\xc6\xcd\x98\x3a\x61\xb5\x28\xd6\x59\x4a\x81\x6c\x69\x22\x2f\xea\x47\x2f\xd7\x14\x8f\xe4\xba\x24\x9d\x9c\x25\x40\x66\xfe\x2c\xaf\xf1\x15\xcd\x96\xf3\x96\x77\x08\xa4\x05\xe8\x8a\xa1\x7d\xf9\x6e\x91\xe4\xaa\x00\x4f\xec\xd4\x8b\x24\x57\xfd\x1a\x85\x5f\x95\x4f\x7e\x59\x27\xd9\xbb\xa2\xa5\x56\x51\x76\x30\x2d\xd0\xa9\x0b\xbd\x05\x6c\x57\xf2\x15\xca\x70\x55\x99\x00\xd1\x14\x07\x1a\x51\xcc\x03\x8a\x2a\xdf\x02\x47\x51\x2f\xec\x41\xb3\x24\xa7\x93\x22\xd5\x10\xae\x48\x29\xae\x7d\xc4\x5a\x2d\xfa\x15\xa0\x75\x99\x69\xb3\xcf\x70\xbb\xf3\xc3\x9b\xe7\x41\xd3\xec\x25\x1b\xcc\xd8\x4d\x90\x23\x4e\x85\xe1\xac\x09\x37\xfc\xf5\x5f\x41\x8e\x35\x8a\x62\x5a\x19\x57\xb8\x0e\x6b\x04\x4d\x2c\x93\x0f\x18\xec\xec\x22\xbe\xbf\xaf\x68\x2e\xf3\xc5\x35\x61\x01\x5d\x19\xd4\x7a\x41\x3e\x91\x5c\xd2\x40\x52\x31\x08\x47\x2e\x61\x1f\xc4\x71\x2c\x1b\x0d\xb8\xfb\x62\x51\x56\x41\xd4\x9f\x15\xcb\x55\x32\xab\xc3\x88\x6b\x30\xbf\xbf\x09\x03\xde\x50\x80\x8e\x86\x11\x54\x01\xbc\x0e\xa2\x86\x1e\x2a\x70\xc8\x68\xcd\xf4\xff\x3b\x4e\x66\x8b\xbe\xa8\x16\x21\x52\x3d\xe3\x64\x03\xe0\xa4\x9d\xac\x6b\x9c\xf6\xf3\xa2\x56\xcd\x47\x4d\x84\xaa\x58\xa3\xb7\x44\xdc\xfb\xd6\xac\x57\x12\x8d\xeb\x7e\x89\x97\xc5\x47\x2c\xdf\x63\x20\xa8\x8a\x50\xdd\xd7\xfa\x5e\xad\xab\x05\x7f\x5b\x10\x3a\x13\x06\x8b\x45\x74\xa6\xce\x87\x65\x91\xe2\x6c\x54\x23\x01\xfe\x88\x50\x22\x56\xe3\xbc\xfe\x1e\x9c\xf8\x47\x01\x2b\xd2\x0f\x7a\xa4\x89\x46\x45\xd4\x20\x12\xeb\x0b\xc7\xac\x39\xe3\xba\xcf\x5e\xd2\x67\x21\x02\xc6\xc6\x69\xa0\x23\x87\x06\x5d\x56\xcc\x92\x6c\x52\x4d\xb7\xdb\x9d\xc5\xe8\x28\x6b\x3c\xa9\xa6\x0d\xc2\x7c\x6d\xd9\x20\x5e\x97\xc5\xa7\x1b\x81\x58\x35\xda\x08\xaf\x56\xcf\x1a\x9b\x51\xbd\xc3\xa8\x41\x17\xbe\xd2\x80\x3e\x0a\x19\xf8\x2c\x04\x11\xf7\xb2\x0a\x03\x59\x2d\x88\xfa\xd7\xa4\x5e\x14\xeb\x3a\x84\x47\xd8\xad\x21\xb3\x98\x09\x49\x96\x51\x34\x65\xef\x39\x90\x9c\xd4\x01\x7b\xd6\x90\x8f\xcb\x5e\xfe\x24\x23\x49\xa5\xf5\xd9\x44\x63\x77\x5a\x18\x52\xfb\x10\xbc\x46\x1b\xda\xc3\xc8\xf1\x06\x66\x6e\xc5\x21\xdf\x37\x58\xdf\x99\xee\x96\x15\x8d\xf1\xd2\xf2\x72\xad\x56\x45\xff\x8c\x6f\xaa\x78\xd3\x40\x01\x35\x98\xd8\xd9\xa9\x08\xa6\xc5\xb7\xb9\x68\x8f\x01\x3d\xca\xf5\x46\x18\x07\xb3\x69\x78\xd7\x97\x6b\x92\xa5\x7f\x95\xcd\x0b\x88\x34\xac\x98\x17\xe5\x93\x64\xb6\x08\x75\x3c\xac\xfb\x49\x9a\xca\xed\x20\x98\x8f\xc9\x14\x1c\x88\x90\x8b\xb2\x0e\xd4\xe3\xbd\xdd\x90\x68\x43\xe4\x46\xa7\xa3\x93\x1f\xdd\x6e\x58\xc5\xcc\x93\x61\x96\xd4\x21\xe1\x93\x1d\x45\x30\x59\x7c\x04\x94\xae\x69\x5c\x91\xac\x8c\x28\x77\xcc\x4b\x36\xc8\x1a\xbe\x83\xa3\xec\x2e\xa0\x06\x26\xc5\x9c\xc2\xc8\x4e\xa0\x2c\x90\x29\x76\x02\x41\x38\x53\xf3\xfc\x66\x9d\x61\xd9\x59\x58\x47\x23\x95\x05\x65\xf5\x4c\x0e\x9c\x51\x67\xe4\xcc\x2c\x03\xb0\xf2\x01\x48\x19\x35\x1f\x8c\xd6\x8d\x61\x15\x75\xbb\xf6\x5a\x68\xd4\x8c\x84\x55\x64\xd3\x2f\xba\xc4\x92\x84\xd5\x22\x0a\xea\xc8\xd3\x19\xa5\x25\x91\x18\x89\x35\x44\x63\x2c\x82\x68\xbe\x2c\x72\x60\xfd\xf9\xc9\x13\xc1\xec\xe9\xd8\x56\x03\x8e\x55\xd1\xa8\xe2\x42\x42\xd4\xa0\xdd\x44\x66\xdc\x42\x9d\x2c\x07\x13\x1e\xbb\x86\x70\xca\xcf\xb1\x27\x90\x04\x87\xa1\x5c\x9d\x90\xbc\x0a\x8f\x86\xd1\x99\x46\x7f\xb8\x51\x22\x89\x46\xa4\x39\x80\xe6\x69\x53\xfd\xa5\xe8\xdd\x01\x42\xc6\x2a\xa9\x6b\x5c\xee\x10\x5f\x98\x98\x4b\x66\x49\x46\xea\x9b\xd1\xc9\xdf\xc2\xe3\xed\xfb\x5e\x74\x16\x9e\x8d\xde\xa7\xbd\xed\xfb\x94\xa9\xbf\xc3\xb3\x11\x7a\x9f\x6e\xee\x35\x51\x2f\xa2\x39\xfd\xf7\xe9\xd7\xd1\xd9\x9d\x13\xce\x2f\x9f\xfc\xed\x7d\xf5\xf5\x9d\x93\x03\xa0\x71\x48\x9a\x03\x4f\x84\xf6\x1f\x6a\x9f\x59\x17\x4e\xba\xd6\xca\xb7\x00\x9e\x89\x9b\x7e\x0e\xcc\x7b\x4c\x68\x64\x29\x68\xe5\xba\x5a\xcf\x03\x97\xf8\x0b\x9f\xae\x94\xc5\x08\x48\xb2\x2a\xde\x04\x64\x1e\x8c\xd4\x59\xc0\xb7\x67\x9f\xcc\x83\x08\xad\x73\xca\xde\x7a\x72\x21\x23\xe0\x94\xb1\x0f\x6c\x88\xb1\xed\x78\x6c\x07\x20\xa2\xb0\xf1\x8c\xed\x14\x35\x48\x2b\x5f\x3d\x2d\xca\xc7\xfe\x51\xb8\x47\x67\xcb\x70\xfd\x47\x4f\x0b\x78\x2d\x20\x01\x9d\xd7\x19\x03\x4a\xdc\xfc\x90\xbd\x2b\x5e\x30\x02\xb7\x83\x51\x61\x1d\x07\xd1\x58\x9d\xb9\xad\xd0\x4f\x8c\x19\x9b\xd2\x53\xf8\xd0\xb2\xee\x3a\x53\x76\xf3\xc0\xca\x30\x2d\x14\x13\xab\x70\xe7\xf4\x9a\xd3\x32\x4b\xb2\x6c\x64\x1b\xf8\x06\x2f\xa9\xa8\xbe\x5c\x65\x78\x89\xf3\x1a\xa7\x47\x41\x83\x76\x09\x16\x9c\x3f\x75\xa6\x4b\x10\xd0\x33\x41\xd7\x47\x30\x81\x0d\x12\xe2\x82\xc5\xa3\x31\x21\x5c\x67\x2c\xa2\xdf\x86\xc4\x03\x22\x39\x84\xfe\x8c\x8c\x7c\xd4\xbd\x95\xb6\xeb\x9d\x73\x98\x67\x19\x4e\x24\x3b\x38\x4b\xf2\xbf\x4a\x90\xf8\x79\xcb\xec\x67\x05\x9d\xe2\xfd\x80\xd9\xb7\x9a\x3f\x29\xa4\x9c\x1d\x0d\x46\x47\x43\x7b\xc5\x64\xa3\x3a\x2c\x64\x1e\x0a\xcb\xa4\x23\xf1\x18\xa4\x43\x25\xb8\x12\xe9\x68\x20\x5f\x9e\xd0\x73\x27\x94\x84\x4c\xa1\x29\xa9\x2d\x8d\x5b\x1b\xe3\xc5\xf5\x49\x70\xb3\x43\xb5\x71\x91\x81\xb0\x4c\xa5\x17\x54\x4c\x5b\x78\x68\x27\x6d\x50\xb1\xe6\x27\x2d\x75\xa7\x67\x07\x94\x09\x39\x53\x06\x88\xc1\x90\xb5\x05\x12\xb0\x70\x20\xf3\xf0\xc8\x29\xc1\xa9\xa9\x31\xc9\x87\x4c\xa4\x55\xaf\x2d\xff\xd7\x4e\xa5\xd9\xcd\x2d\xe7\x92\x57\x9e\x9e\x1d\x1d\x52\x2a\x8c\x46\x47\xfb\xe6\x53\x80\xd3\xb8\x6a\x86\xfd\x0c\x40\xff\xd1\x65\x85\xf3\x19\xf6\x88\x5a\xd6\x21\xbd\xfb\x5c\x36\xc5\x37\x7e\x2a\xc6\x71\x7c\x34\xe0\xdb\xb5\xd2\x4e\xcb\x00\x51\xf9\xc9\x94\xbb\xc4\x41\xca\x55\xb9\x9e\x5a\x22\x2b\xf0\xf0\x26\x42\x01\xdc\x07\xfd\x6f\x18\x70\x3d\x63\x60\xc0\x43\x59\x69\x9b\x4e\x0b\xce\xf9\x09\xa3\x98\xbe\xb9\x96\xd8\x11\x6d\xb7\x3a\x85\xd2\xb8\x7c\xdf\x08\x3c\x5a\x9f\x43\x96\x83\xe9\x55\x93\xff\x07\xae\x88\xd2\x18\xef\x5b\x12\xa3\x77\xa8\x76\xb6\x73\x61\x8e\x2c\x88\xa1\x0e\x07\xf8\xc0\xd5\x1a\x05\xc3\x40\xb4\xd3\xd6\x4f\xb7\x3b\xdc\x5f\x64\x1f\xa4\x72\xfe\x7f\x4b\x34\x3a\xd7\x74\xfb\xbf\x16\x91\x8a\x92\x5c\x91\x3c\xc9\xe4\x1d\xa0\xcb\xca\x2a\x3d\x83\xf1\xd5\x0b\x74\x38\xf8\xc2\x9b\x78\xd9\xca\xbb\x3a\xd3\x62\x41\xe1\xc5\xeb\xd0\x87\xd8\xf2\x26\x63\xe4\x6d\xa8\xd1\x15\x1e\xaa\x16\x9f\xfe\xd1\x01\x98\x3d\x73\x07\x29\x9f\x06\x69\xc5\x6f\x0b\x43\x9c\xe1\x1d\x88\x68\xbf\x25\x12\x3d\x11\xb7\x49\xbf\x09\x29\xb2\x94\x3d\x3c\x26\xac\x6f\x29\x02\x92\x73\x81\x8c\xa7\xfd\xd6\xa4\x4a\x5e\xa3\xed\xa7\x55\x8c\x83\x46\xd5\xf8\x36\xc7\xc8\x99\x1f\x78\x16\xa4\xf6\xfb\x2c\xc9\x3f\xdc\x92\x72\xe9\xa9\x13\x3a\x59\xd3\xb3\x63\x4a\xa8\x00\xa6\x3b\x7d\x92\x6b\x4f\xfe\xb5\x41\x85\xdc\x56\x6e\x89\x63\x06\x1c\xfd\x32\xc9\xe9\x42\x84\x75\xec\x26\x4f\x06\x53\x54\xf9\xd2\x87\x53\xb4\x13\xc8\x87\x71\xbd\x87\xc0\x7e\x17\x57\xb7\x83\xfa\xf3\xb6\xc6\xd3\x82\xee\xf7\x7f\xc4\xbe\x80\x0b\xe8\x96\x8d\x71\x4d\xea\xc5\x3f\x76\x6b\xc8\xdb\xe3\x2f\xc9\x57\xfd\xb6\x1b\x82\x4d\xd2\xb4\xdb\x3d\xf2\x25\x6b\xd7\xf7\xed\xe0\x7d\xfe\x2e\xe0\xaa\x48\x0e\xbf\x95\x7a\x48\xdf\xff\x00\x32\xff\x2c\xff\x7f\x29\x99\x97\x56\x15\xff\xc2\x64\x3e\xfe\x17\x25\xf3\xbb\xa1\xfc\xae\xe6\xa2\x56\xeb\x41\x50\xdd\x12\xea\xcf\xdb\x1a\xfc\x7d\xac\xcf\xdf\x17\x02\x6f\xe6\x3c\x0c\x95\xda\x23\x01\xb7\x13\x31\x95\x06\x1c\x6c\xff\x06\x21\xd5\xad\xb6\x87\xaf\x15\x99\x07\x02\x5f\x1d\x0f\xc6\xf5\x77\x30\xd3\x90\x41\x79\xef\x30\x92\x71\x7c\x7b\xbd\x88\xaf\xa0\x91\x3f\xa9\xa7\xbc\x6f\x4b\xf4\x9a\x54\x53\x93\xd6\x4d\x2a\xfb\x56\x0f\xec\xda\x8c\x63\xdc\xd1\x93\xab\xca\x5e\xb5\xf4\xd8\x18\x6e\x5d\x7c\xc0\x39\xf9\xbb\x78\x81\xd2\x49\xd6\x1c\xd3\x35\xdb\x0d\xf6\x52\x61\xcd\xac\x70\x1b\x74\xfe\xa7\x27\xe7\x7f\x7e\x3b\xa2\x33\x1c\xc4\x71\x80\xb8\xf5\xd0\x28\x78\x48\x3f\xc0\x08\x69\x14\x7c\x17\x07\x0d\x7a\xf1\xe4\xed\xdb\x47\x7f\x7c\xc2\x0b\x6b\x46\x44\x5a\x2d\x61\x94\xa4\xd5\xe5\xf6\x4d\x41\x83\xae\x30\x15\x75\xd6\xb8\xd5\xa2\x44\x0c\xde\xb9\x0f\x85\x99\xf3\x8a\xc2\xaa\x4e\xb4\xdd\x0e\x46\x56\x5a\x83\xb4\xd5\xf3\xe8\x5d\x01\xbf\x3f\xd0\xa5\x65\x35\xc5\x18\x29\x21\x5c\xe0\xd9\x87\x03\xab\xc1\x2c\x46\x0d\x02\x02\xfb\x02\xfa\x7c\xea\xbb\x76\x45\x24\x06\x3b\x1f\x79\x95\xc2\xe6\x24\xac\xa3\xc6\xba\x91\x15\x44\x99\x4c\xaa\xa9\x8d\x6a\x63\xcf\xb4\x49\x0c\x9f\x18\x43\x99\xd4\x53\xaf\xf9\x86\x7d\x28\xd8\x95\x10\x91\xe3\x61\x34\x9b\x0f\xaa\x4d\x79\x2d\x2f\x8b\x2a\x58\x26\x7b\x26\xc2\x80\x54\x81\x45\x42\x39\xda\xb4\x55\xe0\xd9\x81\xd2\xf9\xb7\x1c\x4e\x88\x8c\xa5\xa1\xe3\x61\x27\x54\xb4\xff\x84\x0a\xad\x61\x71\xba\x6c\xc1\xbe\x87\x18\xbb\xf3\x17\x46\xd1\x98\x3d\xd8\xc0\x9e\x59\x90\x8b\xcd\x31\x88\x93\x1c\xf8\x9a\x90\xa9\x79\x68\x11\x76\x17\xc4\xac\x33\x65\x44\x91\x80\x2f\x42\xd0\xf3\xd3\x80\x3d\x13\xc1\xe9\x5d\x2f\xe8\x04\xbd\x8a\xfd\x35\xd1\x92\x44\x11\xaa\xc3\x3d\xfa\x3f\x67\xe9\x48\xf4\x99\xc7\xce\x4b\xed\x22\xf9\xd7\x1f\x3e\x88\x78\x8e\x1f\x7d\x9a\x98\xf2\xe4\xcc\x48\xd9\x34\xa3\x1d\x4c\x9c\x20\xe1\x21\x31\x10\x07\x59\x4d\xd8\xcb\x16\x1f\x0d\x22\x14\xee\x3e\xb3\xb6\xdb\xdd\xf9\x7d\xfd\x92\x3d\xb2\xf1\x53\xda\x01\xb7\xb4\x6d\xc1\xa4\xd9\x0d\x1b\x77\xf7\x07\xf0\x8e\xca\xf4\xd3\xd1\xf8\xf8\x4f\xc6\x7e\x91\x67\x37\xdc\x1c\xb4\xdb\xdd\x33\x48\xa3\xac\x7f\x88\x7a\x19\x0f\x8e\x78\x01\x16\xe6\xa8\x36\xbf\x8b\xc4\xcd\xb8\x43\xcb\x85\x91\xd0\x24\x60\xf6\x97\x01\x33\xb9\x9c\x0a\xc6\xa1\xd2\xf9\x04\x12\x57\x8c\x5e\x56\x2f\x93\x97\xa1\xb5\xf2\xd1\x61\xc7\x3d\xf1\x1f\xf7\x2d\xac\x06\xa5\x03\xbb\xe7\x11\x48\x85\x57\x17\x42\x50\xcb\x88\x1d\x9c\x62\xc7\x94\xdd\x73\xe4\xc7\x23\x8a\xe4\xfb\xd7\x82\x98\xd3\xdf\x82\x2f\xac\xdf\x6e\x37\xc5\x19\xae\x71\xc7\xcd\x8a\x14\xdb\x22\x2d\x7b\x63\xca\xbc\x18\x66\xc5\x0f\xdb\x2c\x87\x29\x67\xa3\x8c\x7d\xbf\xf3\x9a\xf4\x32\x86\xa7\xf5\xb4\x41\xf8\x37\x38\x6f\x6e\xc1\xd3\x5b\xb4\x60\x2c\x1e\x00\x6a\xb7\xdc\x31\x2a\x1c\x22\x7d\x47\xe2\x76\xd7\xb3\x89\x99\x2a\x7f\xbb\x3d\xf9\xdb\xa4\xf7\xfe\x78\x7a\xf6\x3e\xed\xdd\x39\xf9\xbc\x36\xd3\xb4\xdb\x5d\x25\x65\x85\x9f\xe5\x7b\x2a\xa3\xe1\x20\xfa\xdd\x69\x1c\xc7\x83\xe8\x56\x13\x55\xa4\xa9\x9a\x1f\xa3\x08\xdd\xd0\xb7\xeb\xfd\xe8\xd6\xbd\xd3\x3e\xb4\xe3\xbe\xb6\x8f\x7b\x6c\x1c\xf7\xad\xa2\x45\x4d\x37\xf3\x11\xd0\x17\x06\xf0\xd3\xac\x48\x5c\xfe\x37\xea\x76\x49\xf5\x94\x9e\x85\xd8\xc9\x3b\xab\xec\x26\x47\x66\x5f\xed\x6c\x35\x33\x9a\xdc\x53\x26\x42\x64\x27\x5b\xd2\x36\xb1\x8c\xe3\xc0\xc0\x7d\x44\x88\xec\x63\x34\x5c\x4e\x77\x2a\xd8\xa9\xdb\x61\x85\x42\xe6\xcf\xa9\x6e\xec\xbe\xcf\xe2\x73\x5e\xb3\x4b\xda\xdf\xf6\xaa\x33\xb4\x98\x92\xbd\x3a\x25\xef\x68\x0f\x39\x61\x85\x27\xcb\xe2\xcb\x29\x46\xff\x01\xda\xbf\x1f\xca\xec\x16\xd3\x5f\xe2\x2b\xfc\x69\x35\x62\x51\xd5\xe1\xf7\x05\xe1\x9f\xbb\x57\xc6\x63\x64\x6d\xab\xec\xa2\x5f\xab\xcf\x5b\x97\x99\xc3\xd9\xec\xe8\x97\x79\xd6\xcd\x8a\xac\xf2\xf7\xac\xb2\xd1\x24\x58\xd4\xf5\x2a\x40\xec\x9f\x2a\x98\x82\x83\x58\x1d\x07\xe1\xe9\x83\xc9\xe0\xf8\xc1\x74\x7b\x3a\x19\x1c\xdf\x9f\x4e\x06\xc7\x7f\x98\x6e\x27\x83\xe3\x21\xfc\xe4\xdf\x43\xf5\x93\xfe\x8d\x02\x54\xc5\x41\x18\xf4\xea\x5e\x10\xbe\x7f\xdf\x67\x3f\xa2\xcd\xbd\x26\x0a\x10\x89\x83\x70\x92\x1c\xff\xfd\xd1\xf1\xbf\x0f\x8e\xff\xf0\xfe\xfd\xf1\xb4\xf7\xfe\x7d\x3f\xea\x89\xc4\xe9\xe6\x14\xd1\x72\x38\x0e\x7e\x47\x1b\x4b\x8e\xe7\x8f\x8e\x9f\x82\xbf\x7e\x11\x07\xb2\xe6\x9d\xf7\xef\x8f\x2f\xfa\xbd\xa3\xaf\xef\x86\x11\x1a\x8f\xfe\x7b\x37\x0e\x50\x4e\xdb\x0e\x7a\x45\x2f\x98\x6e\x19\xb9\x89\xbe\x0e\x50\x19\x07\x7f\x0b\xc6\xee\xe4\xa4\xc5\x32\x21\xf9\xab\x3c\xbb\x09\x22\x90\x0f\xca\x5e\x4c\x46\x61\xd9\x03\xd0\x77\xcd\xa6\x0a\x12\xd0\x0b\xa2\xd1\xfb\xf7\x27\xef\xdf\x9f\x04\xc8\xad\xc2\xce\xfd\x1f\x2a\x5c\xbe\x4e\xaa\x8a\x77\xd3\xed\x42\x17\xda\x2c\x58\x63\xe9\xc6\x02\xfc\xde\x7f\x8f\xce\x82\x08\x95\x3d\xcf\xe2\xb2\xb6\x9f\xad\x04\xf0\x14\x66\xd2\x0b\xb6\x4c\xbc\x8b\x82\x11\xff\x8e\x5a\xc1\x7a\x5d\x94\xb5\x05\xd2\x88\xad\x5e\x4f\xf4\x49\xd7\xee\x24\x40\x7c\x42\xf2\x1e\x7c\xd3\x1f\xd1\xd7\xd1\x59\x20\x8a\x9c\xf1\x39\x3f\x39\x93\xb3\xae\xe5\xfe\xb7\xf6\x5c\xd9\xcf\x1d\x0e\x24\xec\x37\xdd\x2b\xb1\x8c\xf4\x9c\x0b\x62\x64\x56\x6d\x6a\xec\xdd\xf7\xca\x1e\x9e\x2e\x8a\x5a\x26\x89\xf1\x6c\xc1\x21\x46\x0d\xfe\x0d\x0f\xa7\xce\x46\xf0\x24\xfe\x05\xd4\x5b\x97\x03\xe5\x8c\x56\x24\x8c\xe6\xd8\x36\xff\x1c\x00\xb4\x66\x45\x9b\xbb\x0f\xdf\x96\x86\xb8\xf1\xd5\xf8\xe4\xa4\xf3\x3c\xa9\xea\xce\xac\x58\x2e\x49\x3d\xea\x0c\x2e\xe7\xf3\x07\x97\xb3\x4e\x78\x3a\x18\xde\x3f\x1e\xdc\x3f\x3e\xfd\xa6\x33\x3c\x1d\x0d\xbe\x19\x0d\x7e\xdf\x39\x1e\x3c\x18\x0c\xa2\xaf\xbe\xfa\xca\x74\xb6\xfd\x8f\xff\xed\x74\x30\x3c\x3d\x66\x9e\xb6\x4f\x4a\xf2\xa1\xf3\x7d\x79\x93\xa3\xce\x4f\xc9\x6a\xd5\x79\x96\xcf\xfa\x68\x8f\xc3\xad\x0c\xeb\x86\x43\x8c\x94\x72\x11\x77\xbb\x75\xb7\x8b\xfb\x9f\x98\xd9\xed\x27\xfa\x13\xfc\x42\x6e\x54\x20\xb8\x5a\x32\xf8\x39\x2a\xc5\x6d\x87\xf6\x9e\xc8\x47\x82\xaf\xfb\xeb\x15\x15\xcb\xce\x8b\xbc\xc6\x9f\xd4\xfb\x6a\x4f\xc0\xc8\xd5\x76\x61\x89\x36\x75\x4c\xc0\xd1\x20\xc0\xbc\x48\x84\x72\x6e\x28\xc2\xeb\x22\xae\xbb\xbd\x90\x09\x39\x03\x36\xc4\x61\x8e\xca\x68\xbb\xe5\x28\x59\xae\xf3\x7e\x35\x5b\x60\x08\xc7\x05\x74\x3f\xd0\x65\x46\x78\x59\xe4\xaf\x14\x4a\x16\xc2\xee\x5d\x99\xe4\xd5\xbc\x28\x97\xa8\x46\x79\xff\x13\xca\xfb\xe2\x0a\x44\x76\x15\xe7\xd2\xf3\x05\x62\xab\xf2\xe3\xf0\x0a\xd7\x7c\x02\x2a\x2c\x1c\xfc\x9e\x93\xaa\x7e\x56\xe3\x25\xed\xa0\xd5\xc3\xe9\x20\x1e\x25\xc7\x61\x90\x92\xf4\x59\x5e\xe1\xb2\x56\x53\x47\xf7\x6c\x96\x54\x15\xb3\xa9\x1f\x4d\x20\xe2\xd8\x71\x46\xaa\xfa\x98\xd4\x78\x79\x4c\xe7\x3f\x98\x22\x09\x3c\x1c\xbd\xb0\x20\xaf\x45\x9a\xec\x1a\xf3\xbe\xe5\x50\xb1\x35\x76\xde\x31\xf3\x33\xb3\xd2\x46\xb5\xc3\x4d\xe8\x78\x15\x6d\x70\xff\x9a\x64\x99\x31\x00\x8a\x52\x4e\x62\x18\xe9\xe8\xc5\x2a\xda\x03\xa7\xf5\xec\x34\xbd\x1a\xe1\x58\x49\x50\x81\x32\xb4\x18\x93\x38\x77\x30\x8a\x74\xbb\x61\x26\xd3\x67\x80\x9c\x01\x9f\x6e\xfe\xe4\xcf\x1b\x3c\x5b\x97\x15\xf9\x88\xb3\x9b\x30\xa0\x80\x9e\x67\x38\x29\xdf\x00\x1a\xf1\xa2\xa0\xd1\x78\x34\xaf\x31\xcf\x78\xa8\x25\x7f\x8f\xe7\x45\x89\x21\x5d\x70\x8a\x33\xd5\x06\x4e\xcf\x17\x24\x4b\x4b\x9c\x4b\xf3\x26\xf6\x76\x0d\x45\x17\xd1\x44\xdc\xd2\x5c\x84\xb2\xb3\xb0\xe0\xf8\x04\x49\x10\xc0\x2d\x8c\x50\x11\x6b\x0a\xc6\x77\x05\x4f\x2f\x22\xc4\x5b\x73\x7b\x79\x38\x40\x0b\x4e\x33\xc1\x43\x46\x1f\x3a\x46\x47\xc3\x08\x91\x3e\xc9\x73\x5c\xfe\xe9\xdd\x8b\xe7\x71\x01\xbf\xf9\x05\x83\xf1\x15\x46\xa3\x8a\x76\x55\x5a\x33\x8e\x88\x9c\xdb\x24\x07\xcc\x79\x57\x84\x01\xc9\x1f\xbf\x7a\x11\x44\x3b\x7a\xaf\x69\xef\xd1\x48\xef\x3e\xe0\xcf\x91\xe7\x6a\xeb\x21\xa1\xd4\xa2\x9b\x4f\xf3\x2f\xc5\xe2\x10\x9b\x4c\x11\x89\x71\x9f\x8d\x1c\x26\xa4\x32\x1d\x7d\xc0\xf5\xb2\xc8\x6e\xe6\x24\xcb\xa4\x2f\x04\x98\x8d\x13\x64\x37\x48\x62\xc7\xee\x17\x8f\xc9\x59\x0d\x6f\x61\xe2\x68\x84\xfb\x09\xdc\xae\x46\x4d\x84\x6a\x2d\x84\x8b\x4b\x19\x04\x3f\x4d\xa9\x10\x67\x9c\x5b\xc8\x07\xda\x18\xb4\x74\xe4\x0e\xd3\x41\xe8\xc3\x88\xb2\x41\x1a\x75\x52\x74\x14\xc7\x54\xc6\x29\xad\x66\x11\x8e\x10\xa6\xdb\x90\x54\xb4\x89\xb2\xc8\x32\x8a\xe1\x7a\x31\x48\xa3\x25\x95\xfb\x5f\x89\xed\x78\x0b\x42\xe6\xd0\x29\xf5\xab\x7c\x66\x53\x6b\x42\x29\x0e\xef\xfc\x31\x49\xcf\x17\x49\x2e\x6d\xed\x0a\xe5\x26\xac\xe0\xd3\x41\x70\x9d\xb5\x58\x60\x2c\x0d\x79\x6a\x85\x3c\x63\xb1\xa3\xd6\x55\x72\x99\xe1\xcf\x5d\xa7\x9d\x34\x7d\xac\xf7\x0f\xcc\x02\xf8\xfc\x0a\x87\xa8\xb1\x12\x2f\xf4\x19\xe7\xc4\x98\x16\xe5\x0b\x17\x63\xe6\xd2\x41\x2a\x72\x99\x61\xcb\xa9\x43\xd6\xed\x0b\xd7\x5b\xe4\xdc\x42\x1d\x1d\x29\x26\xc5\x2e\x4d\x11\xb7\x05\xdd\xb8\xcf\x76\x1e\x73\x95\x89\x01\x13\x52\xae\xbe\xe3\xfc\x28\x8e\x29\xa5\xe5\xfb\x5c\xc8\x55\xec\x91\x15\xbe\xe3\x57\x25\xa6\xa7\xf0\xd3\xa2\xa4\x73\x8e\x43\x4a\x27\x76\xb6\x4a\x29\x09\xe9\x76\x89\x85\x7b\xb5\x07\xf7\x08\xc5\x3d\xab\x03\x3e\x4b\x7f\xde\x73\x5c\x91\x79\xc8\x02\xc1\x12\xc1\x32\x62\x19\xa7\xb2\x66\x74\x84\x07\xa1\xea\xd7\xc5\x0f\xab\x15\x2e\xcf\x93\x0a\x87\x51\x0f\xcb\x27\xc2\x51\x19\x0f\xc6\xe5\x77\x32\x98\x65\xd9\xeb\x09\x87\x9d\x7c\x52\x4e\x7b\xec\x39\xb6\xca\xe8\x42\x3e\xfc\xce\x42\xce\x43\x57\x69\x31\x63\xdb\x96\xe3\x86\x38\xed\x82\x94\x7c\xa4\xa7\x58\x5c\xf7\xab\xfa\x26\xc3\x28\x8f\x27\xc1\x8f\xf8\xf2\x03\xa1\xc8\xff\xa2\xf8\x7b\x80\x82\x57\x01\x0a\x96\x55\x30\x45\x65\x8c\xc3\xa0\x16\xac\x4d\x10\xa1\x8a\x26\xac\x70\x59\xad\xf0\xac\x26\x1f\x71\x40\xcf\x0c\xda\xe9\x51\x1c\x97\x28\x13\x3f\x2b\x8d\x58\x51\xdc\xfe\x13\xce\x56\xb8\x8c\x37\xb2\xa9\xd7\x65\xb1\x1a\x95\xc8\x64\x9d\x3c\x77\x9d\x85\x8a\x1a\x85\x11\x73\xf9\xc7\x00\xf6\xa4\x9c\xc6\x00\x59\x46\x11\x9f\x89\xb6\xab\x4f\xa8\xc3\xa4\xad\xd5\xa7\x28\xd0\x62\x42\x99\x35\xfb\x75\xb1\x8a\x59\xa1\x00\x89\xa4\x0c\xcf\xeb\x98\xb5\x10\xb0\x60\x0e\x0c\xae\x7b\x8f\x77\x41\x96\x1d\x06\xd9\xbd\xd4\x81\x0d\x75\x06\x14\xbc\xff\x9a\xa1\xd9\xb1\x2a\x34\xdc\x15\xd4\x2d\xd3\x49\x36\xdb\x8c\x8c\x60\x27\x69\xca\x4e\x3a\xe3\x46\xc5\x66\xb9\x38\xfb\x00\x41\x18\xe0\x71\xfd\x08\xe1\x7e\x8a\xab\xba\x2c\x6e\x6c\x56\x4b\x51\xf0\x82\x52\x6e\xe8\xf6\xa2\xba\xc9\x67\xe7\x92\xcf\x30\x5e\x0c\x35\xc4\x8c\x2c\xc4\x12\xc8\x67\x79\x8a\x3f\x05\xd1\x71\x16\xd6\x76\x9a\xaa\x5e\x2a\x45\x15\xa5\xc4\x79\x51\x93\xf9\xcd\x8b\x75\xcd\xd4\x3c\x14\x55\x71\x8e\xcb\xaa\xdb\xb5\xc0\x52\x55\x50\xd0\x52\x47\xef\xa5\x72\x26\x92\xf9\xc8\xd1\xfa\x7c\x2a\xf5\xe7\x36\x55\xe3\x74\x8e\x61\xe6\x9e\x96\xc5\xf2\x35\x93\x2f\xf4\x09\x2b\xf6\xb5\xeb\x3a\x14\x61\x16\x1c\x28\x0b\x71\xb4\xdd\xd2\x75\xe0\x0f\x0b\x32\x7a\x20\x67\x98\xae\xd0\xc2\x69\x91\x9e\x1a\x00\xdb\x79\x51\x62\x36\x5f\x29\xae\x61\x41\x05\x43\xca\xdf\x4b\x48\x9f\x88\x5a\xb1\x38\x6a\xd6\x79\xb5\x20\xf3\x5a\xa2\x00\x70\x5d\x99\x76\x70\x2e\x34\xae\x6b\x16\xbf\x48\xea\x45\x7f\x49\x72\x94\xf0\x9f\xc9\x27\xb4\x86\x9f\xf3\xac\x28\x4a\x94\xc2\xc7\x0c\x93\x0c\x2d\xe3\x5d\x7c\x17\x9a\xf3\x6c\xf1\xe2\x3c\x1f\x04\xf3\x07\xc7\x25\x1b\x09\x53\x21\x85\x51\x3f\x2d\x96\x2f\x92\x3c\x61\x6a\xe9\x39\x3b\x4f\x70\x9e\xc6\xfa\xe6\xa2\x5b\xeb\x4e\x18\xf4\x35\xf1\x68\x26\x9a\x0a\x22\x51\x25\xac\x29\xdb\x1a\x35\xc8\xa4\x7a\x3b\x04\x37\x7e\xe6\x9f\x53\x11\x6c\xd4\xce\x38\x20\xb9\x20\x7a\x49\x96\xd3\x26\xbd\x71\xc1\x4d\xfa\x22\xf0\x80\x25\xb4\x14\x23\x08\xc1\x14\xa9\x61\x8f\xe6\xa8\x9a\xd1\x33\xef\x5d\xb1\x1a\x0d\xd0\x65\x51\xd7\x14\xf5\x52\x16\xe2\x64\x80\x2e\xb2\xa4\xaa\x9f\xb0\xfa\x6c\x33\x8d\x06\x68\x05\x99\xe7\xcc\xa4\x66\xb8\x47\x17\xcb\x25\x50\xaf\x00\x0a\x05\x6f\xf2\x19\x1d\xaf\x5c\x9e\x1f\x49\x5a\x2f\xa4\xb3\x74\xb6\x5e\xe6\xac\x27\xc9\xb9\x49\x71\xc7\x24\x12\x32\x39\x49\xd3\x73\xd8\xfd\x26\xad\xa2\x5c\x60\x4b\x1e\x9f\xd4\x4b\x26\x22\xc9\x0a\xda\x98\x30\xb0\xf2\x9c\x13\x55\x64\x11\xd9\x2c\x29\x13\x39\x19\x1b\x7f\xf7\xbb\x94\x7c\xec\xb0\x25\x8a\x03\x2f\xee\x3c\xbc\x1b\x19\x5e\x2a\x8c\x4c\xb2\xba\xc1\x77\x27\x29\xf9\xf8\x30\x88\x1a\xe4\x88\xb8\x96\xfb\xa8\xc6\x83\x2d\x30\xb9\x5a\xd4\x41\xb4\xdd\x6a\x89\x65\x71\xfd\x27\x9e\x1e\xa9\x27\x96\xf9\xcb\x7b\x8f\x3a\x02\x4f\x3b\x22\xce\x11\xdf\xcf\x9d\x6b\x52\x2f\x3a\x49\x07\xda\x64\x3a\xa0\xa4\x23\xdb\xea\x07\xd1\xd8\x58\xe6\x06\x31\xc4\x72\x98\x48\x0e\x12\x0a\xae\xe9\xa2\x06\x0e\x1b\x4d\x8f\x2e\x94\x8f\x15\x3d\x13\x63\x40\xb5\x4c\x82\xaa\x11\xca\xd5\xa9\x54\x55\x8c\x7d\x09\x02\x2a\x47\x84\xa4\x17\xf3\x7a\x23\xa6\xd6\x5c\x7d\x1a\xd3\x06\x78\x0e\xab\x3e\xe2\x27\xe8\x38\x50\x21\xfb\x4b\xca\x3e\xe5\x51\x6e\x07\xd9\x28\x23\xa8\x59\xf6\x82\x51\xd0\x63\xec\x56\x30\x56\xfe\xc6\xa4\x89\xe4\x86\x71\x7c\xb0\xf5\xc9\x65\x33\x5a\x7c\xc4\x65\x49\x52\xdc\xa9\x8b\xce\x0a\x97\x94\x91\x60\xc1\xbf\x3e\x92\x6a\x9d\x64\x1d\x68\x88\x4d\x2f\x9e\xcf\x81\x9f\xca\x6e\x3a\x29\xce\xf0\x55\x52\xb3\x5a\x17\x50\x86\xa3\xed\xbb\x82\x22\xc5\x85\x04\x80\xf3\xa3\xc8\x2e\xe5\x4a\x77\x74\xa2\x51\x89\x2a\x54\xa0\x05\x7b\xe6\x2d\x4e\xc2\x81\x14\x0c\x24\x09\x38\x8a\xe3\x02\x6a\xac\x59\x01\x31\xe7\x75\x51\x27\x99\xc0\xa4\x63\x7b\xb9\xa2\x71\x11\xcf\xc2\x02\xad\x23\xb4\x70\x99\x07\x54\xc5\x59\xb8\x40\x32\x26\x14\xe2\x6a\xe1\x8b\xaa\x4e\xca\x5a\x50\x96\xb0\x12\xc7\x8d\x23\x6f\x3a\x73\x80\x36\x8a\x66\x15\x22\x2e\xd3\x68\x81\x8c\x06\x47\x35\xc2\x1a\xe1\x9a\x85\x49\x58\x1d\x0f\xd1\x20\x42\x35\xdc\x29\x5c\xe4\xeb\xa5\x22\x20\x4f\x0b\x76\x32\xac\x8a\xb2\x0e\x23\xfd\x21\x5c\x2b\x06\x97\xe8\x38\x2e\x50\x19\xab\x26\xbd\x43\x62\xca\xc7\xbd\x9d\x21\x12\xcf\xc2\x12\xe5\xb4\x15\x2e\xe4\x30\xb2\xfb\x56\x6f\xab\xdb\x25\x46\xa6\x46\x93\xcf\x42\x5d\xf1\x14\x06\x00\xe2\x4f\x40\x2e\x53\x76\x8e\xf3\xf0\x24\x23\xa5\xdb\x0c\x1d\x71\x9d\x35\x5d\x52\x31\xc7\xd1\x2c\x39\xd0\xc4\x35\xf2\x82\x12\x13\xb4\x0f\x16\x79\x2b\x2a\x45\xfb\x06\x69\xd8\xe5\x17\x44\xf3\x9a\x8b\x42\x01\xd2\x48\x1a\xc5\x31\x79\x40\x04\x28\x30\x0e\xaf\x56\x6a\x23\x64\x32\x1b\x51\xfb\x1a\x7e\x8a\x2c\x8d\x7c\x22\xa2\x55\x50\xbd\xea\x84\xc9\xec\x3f\x42\x69\x88\x4f\x48\xf4\x75\xdd\xcb\x9b\x08\x5d\x70\x59\x92\x4d\xae\x14\x28\xad\x93\xc3\x92\x67\xe9\x5e\x57\x2b\xf2\xb4\x28\xcf\x35\xbe\x76\x64\x72\x29\xa0\xb4\x64\x7b\x7c\x4c\x5a\x36\x21\x67\xf1\xd8\x53\x63\xaf\xcb\x62\x4e\x32\x00\xb4\x34\x55\xe4\x4f\x8b\x12\xf0\xb7\xa6\x47\x92\xa9\xf1\x0d\x4b\xca\x2b\xda\x6c\x37\xaa\x23\x24\xd9\x66\x77\xff\xb6\x8e\x21\x40\xa5\xbe\x4c\x22\x2a\x54\x1e\x13\xfe\xdc\xdb\xa3\x5a\x07\x82\xcb\xf3\x61\x4e\x45\x73\x0b\xd8\x5d\x24\x4f\x1a\xef\xaa\x39\x80\xd3\xf4\x47\x38\x5c\xb6\xdb\xa1\xb6\xbc\xd7\x2a\x31\x6f\x59\xf3\xd2\x8b\x21\x55\x5c\x7e\xbd\x0e\xf1\x49\x4e\x45\x62\xfc\xbb\xfc\xeb\x1a\x6d\x6e\x46\x15\xfa\x34\x2a\x9a\x06\x29\xcd\x29\xb0\x4e\x2e\x7a\x1e\x84\x9a\x7b\xa9\xc9\x8c\xe1\x43\x83\x34\x88\x9d\x4d\xc5\xcf\x63\x73\x1a\xbc\x1b\xc6\x85\xc9\x9c\x3a\xcf\x49\x4d\x62\xdc\xed\xd6\x0f\xf1\xd9\x3a\xac\x4f\x70\x34\x1a\x36\x11\xf2\x71\x72\xb6\x0e\xce\xbf\x5f\xe5\xa1\x55\x69\xd4\xef\x5c\x35\x27\xa6\x44\x12\x66\x54\xec\xdd\xa8\xcb\xe4\xd3\x5b\x51\x3c\xd0\xcf\x2c\xa5\xe3\xf7\xf6\x15\x17\x14\xcb\x43\x1c\x57\x27\x05\x22\x71\xfd\x35\x46\x65\x3c\x0b\x73\xa9\xa0\x96\x27\xb3\xbc\x2f\x55\xe7\x45\x19\xa9\xd7\x8d\xa4\xea\x5c\x17\x35\xd5\x6d\x53\xa2\xae\x04\x8c\x2b\xa7\x16\x66\xb9\xb1\x47\xaa\x8f\xaf\x9d\x29\xd3\xcf\x74\xcf\xda\xbb\x2b\x6f\x30\x01\xda\xc2\x4b\xae\x8d\xb1\x14\xc7\x4c\x6d\x7d\x41\x2a\x86\xa0\x52\x32\x74\xf0\xdd\x2b\xc4\xaa\xfb\xc3\x56\x19\x79\x28\xcf\x41\xe7\x2a\xa2\xdb\x1d\xf8\x32\x09\xa5\x0f\xaf\xe6\x21\xa6\xf4\xb4\x6d\xe7\x78\xf6\xa3\xff\xb8\xf0\xf0\xa8\xfe\x63\x42\x17\x94\x4c\x06\xd6\x58\x2c\x7a\x4a\xd4\xd1\xd7\x79\x8f\x7c\x9d\x53\xde\xce\xe0\x61\x0e\x20\x6a\x55\x2c\x0d\x4f\xf0\x59\x1b\xe1\x18\x61\x77\x9f\x10\x2f\xfc\xed\x24\x8f\x6e\x67\x12\x7d\x9d\xa3\x42\xf1\x3d\x94\x71\x29\x18\xb1\x61\xfd\xfd\x48\xb2\xcc\xd8\xdc\xed\x32\x15\x9b\xe3\xb1\x47\xd7\x04\x97\x03\xa0\x07\xf1\xa9\x9b\xf4\xa2\xfc\xd7\x21\x24\x45\x97\xe1\x10\x69\x13\xe8\x72\x8c\xd3\xea\xad\x21\x59\x7a\xae\x0a\x6c\xb9\xc6\x9a\x2a\x2a\x67\x0a\xf9\xdd\x47\xe6\xd5\xa0\x0d\x2d\x80\x22\xef\x1e\xfd\x0c\x1c\xd0\x9a\x81\x00\x93\x03\x4c\x40\x9d\xae\x00\x57\x16\x68\x86\x12\xb4\x46\x29\x9a\xa3\x15\x7b\x54\x54\x76\x5f\x3d\x06\xb5\x1c\x4e\x83\xa8\xdb\x75\xd3\x19\x7b\xc0\x04\xcd\x75\xfb\x99\x94\xfa\x76\x32\x22\xf6\x3e\x64\xb3\x13\x4a\x1d\x94\x38\xbf\x5f\x95\xea\x36\xd3\x94\xe4\x6d\x0a\x12\x46\xdd\x6e\xa5\xaf\xe2\xac\x85\xe9\x4e\xe2\x59\x8f\xa0\x32\x26\x28\x8f\xb1\x7c\x1c\x22\x2e\x8f\x73\x44\x77\xc9\x4a\xd9\xa7\xae\x1e\x0e\x22\x2a\x10\x2e\xfc\x9c\x35\x9a\xc7\x83\xf1\xea\xe1\x7c\x3c\xef\xf5\xd0\xa2\xd7\x8b\xa4\x8a\x41\x2c\x6f\xb8\xe0\x8d\x2d\x01\x30\xcc\x7c\xbd\x66\x98\xf3\xf3\xc0\xcf\x8c\x6f\xc7\x5b\xcf\x5a\x78\x6b\x6f\x6a\x6f\x85\x42\x3a\xa8\xb5\xe6\xcd\xb0\x8e\xba\xdd\x42\xc7\x70\x8e\x2a\xee\xd1\xd1\x46\xf4\x0e\x38\xed\x4d\x94\x27\x31\xfe\xba\x16\xa6\x16\xed\xea\x32\x44\xba\xdd\xbc\xdb\xcd\xfb\xb3\xaa\x92\x5c\x08\x31\xd9\xdc\x12\xe7\x2d\x60\x09\x56\x80\xe1\xf2\x92\x49\xf2\x4b\x9b\xa8\xed\xe0\x9d\xa8\x44\x8b\x0d\x71\xed\x0a\xd7\x42\xe7\x66\xe0\x1f\x89\x45\x35\x31\x24\x07\xc7\x16\x71\xbe\x5f\xb0\xa3\xcc\xc1\x1a\x2d\xe8\x16\x99\x85\x0b\x94\xf7\x08\xbb\x2c\x19\xa7\x0f\x8b\x71\x01\xfe\x8e\x93\xe2\x77\xc2\xe9\xa8\x9d\x4d\x0e\x2b\x46\x64\xbd\xe0\xb6\x46\xf6\x55\x07\xa0\x62\x96\x9d\xcd\xd6\x56\xbb\x65\x66\xfa\x15\x1d\x18\x65\xbf\xd9\x0d\xb5\x43\xee\xff\x0c\xe9\x8a\x1e\xbb\x32\x4a\x8e\xca\xb1\xb1\x8b\xfd\xf7\x7b\x61\x58\x3f\x6c\x93\x85\xb7\x5b\xee\x48\x6a\x6f\x86\xa8\xdb\x0d\xf3\x78\x80\x96\xaa\xfd\x9d\x74\x46\x3f\x5d\xcb\xb6\xde\x7a\xf9\xde\xe5\xc1\xa8\x8c\x50\xde\xeb\x71\xf9\xc5\x3c\x5f\x58\x74\x7d\x46\x4d\x5b\x97\x8a\xab\xd1\xce\x5a\x94\xea\xfc\xb6\xd3\x49\x57\x97\x2a\xd0\xaf\xf0\xda\xdb\x77\x67\xed\xb5\x35\xd2\x6e\xa9\x4d\x55\xb9\x73\x5d\xad\x5d\x55\xcf\xaa\x6a\xb4\x91\x06\x42\x41\x89\xb3\x84\xdd\x09\xa2\xe2\x23\x2e\xe7\x59\x71\x3d\x0a\x92\x75\x5d\x04\x28\x38\xbe\x66\x17\x8c\xc7\x22\xe3\x18\xb6\x2c\x3d\x60\x46\x41\x5d\xac\x67\xf4\x18\xdd\x91\xd9\xd8\x37\x85\xbe\xeb\x45\xdb\x10\xeb\xc2\xd5\xd4\x09\x49\x39\xc6\x36\xcb\x3f\x26\xdd\x6e\x48\x34\x86\x9d\x1e\xb1\xb6\xda\xda\x6f\xe1\x88\x7c\xcd\xc1\x9a\x81\xe0\x0a\xdc\x38\xdd\x4d\xc0\x67\x85\xa6\xbc\x60\xd8\x9c\xd4\x1c\x04\xc6\xae\x72\x5f\xa2\x90\x44\x4c\x8b\x0e\x39\x81\x51\x99\x6b\x89\xf9\x89\xdd\x06\xe7\xb8\x76\x41\x94\xad\xd7\x51\xbf\x98\xcf\x5b\x9b\x87\x1f\xae\xad\x97\x14\x76\x70\xbf\x66\x4f\x8c\xaa\xc9\x93\xb5\xac\xb9\x77\x61\xb0\xe4\xa6\xda\x4c\x91\x3a\x3f\xc6\xf0\x68\x02\xc8\x21\x2c\x5f\x9b\x79\x48\x9b\x78\xe5\x5f\x2b\xca\x20\x9a\x92\x4f\x4b\x41\x77\xce\x5b\x48\x9b\x10\xe2\x5d\x06\xe7\x2c\x08\x46\xd8\x2f\x6d\xed\x3e\x58\xd9\x81\xba\xe1\x6a\xf0\xba\xf1\x39\x83\x9a\x36\x0a\x35\x18\xe6\xae\x2b\xfc\xe3\x02\xe3\x8c\xdf\x3e\x94\xec\xc5\xd9\xc7\xf0\x18\x88\x65\x4d\x07\x57\x61\x49\x9a\xb2\x37\x65\xc5\xc5\x67\xb8\x46\x75\x9f\x1d\x8e\xcc\xd2\xcb\x53\x20\x60\xbd\x5c\xd3\x5e\x02\x54\xf7\xd9\x0f\x5a\x56\xbf\x08\xe6\x8d\x03\xd3\xbf\xbb\x7d\x5f\x99\xfd\x5d\x30\xa4\xe5\xaf\xfd\x3a\x10\xa6\x08\xf7\x69\xa3\xe8\x68\x10\xa1\xb6\x42\x4b\x84\xfb\x38\x4f\x77\x96\x99\x23\x2a\x65\xe4\x33\xda\xfb\xc0\xb8\x76\x56\xbd\xfb\xe0\xf7\x01\xe0\x2b\xe7\x81\xc1\x57\xac\x0d\x8c\xca\xb8\x3c\xd7\x2d\x72\x6a\xce\xbd\x52\x5e\x4c\xbf\x6f\x56\x52\x27\xd8\xad\xe4\x57\x38\x7d\x47\xe9\x31\xae\x26\x83\x29\xd3\xd3\xc1\xce\x17\xc2\x68\xde\xed\x72\xe3\xe6\xbc\x5f\x27\x57\xec\x79\xe3\xb3\xd0\x35\x45\xf9\xc8\xb4\x83\x2f\xe8\xb2\x3d\x81\x17\xf4\x23\x54\xf7\x49\x4e\x6a\x95\x16\x06\xb3\x8c\xcc\x3e\x04\xe8\x68\x40\xff\xc7\xfd\x8f\x04\x5f\xa3\x21\x62\x34\x1a\xe3\xfc\xdf\xe4\xaf\x9f\xe8\x81\x9b\x11\x9c\xd7\xff\x26\x7f\xfd\x44\x27\xa1\x2e\xb3\x3f\xe3\x1b\x8a\x95\x59\x0d\x3f\xd8\xad\x34\xfc\x5c\xe2\x3a\xa1\xbf\x06\x28\x5f\x67\x59\x84\xf2\x7e\x4a\xaa\x55\x52\xcf\x16\xd0\x7d\x1d\xc9\x13\x95\xdd\x5d\x6b\x82\xd4\x92\x8a\x52\xf1\x09\xc9\x57\xeb\x7a\x5b\xe3\x4f\x75\x52\xe2\x64\x5b\xe1\x0c\xcf\xea\x13\x82\xae\xe2\xa0\xc8\xd9\xb9\xc5\x30\x37\x20\x39\x7f\xa6\x7a\xbb\xe5\xcb\xf6\x98\xcf\x07\x9b\xcc\x6e\x57\x4c\x8f\xae\xf3\xf0\x95\x1c\x5f\x9d\x85\xeb\x38\xd0\x9a\x46\x99\xc7\x60\x11\xf7\x6b\xb5\x48\x84\x05\xb2\x12\xeb\x44\xe4\x02\x11\xb9\x40\xdb\x6d\x08\xf7\x01\x9c\x7e\xe3\x92\x4d\xc0\x9f\x92\x3c\xcd\x70\x29\xa2\xf4\xd3\x43\xe6\x7b\x7c\x45\xf2\xb7\xfc\x78\x12\x9d\x20\xdc\xaf\xc9\x12\xbf\xad\x93\xe5\xca\x47\x45\xe8\x31\xca\x61\xa6\xb8\x1a\xa0\x45\xec\x1c\x25\x94\x94\x91\x7c\x8d\x77\xb6\xdd\xa0\x25\x6f\x07\xe7\x69\x80\x66\x6e\x33\x17\xa4\x7a\x2b\x58\x87\xed\x96\xe2\x2f\x37\x26\xdd\x39\x32\x9c\xa7\xaa\x5f\xad\xb7\x39\xef\x0d\xf6\x52\x80\x12\xa3\xc3\xcf\x6f\x38\x1a\xd1\x45\x64\x34\x2b\x2d\xae\x73\x7b\x0d\xc9\x3c\x1c\xc6\x71\x8c\xfb\xd7\x0b\x32\x5b\x68\x6b\x0a\x2b\x58\xcb\x15\xac\x7f\xe5\x0a\x4e\xf0\x74\xff\xda\xb1\xc5\x63\xb0\x1e\xba\x78\x76\xb3\x6c\xd9\x58\x0b\xeb\x95\xbd\x6a\xbf\x6e\x75\x58\xa3\xc5\xba\xb6\x97\x86\x9e\x12\x19\x65\x95\xe1\xe5\xf3\xed\x36\xfc\xec\x7e\xa2\x46\xc6\xa7\x27\x65\xbd\x4e\x32\x4a\x65\xdf\xea\xcd\x54\x07\x19\xe6\x1b\x91\x3b\x5a\xed\x21\x50\x70\x49\x04\x18\xa2\xf9\x40\xb3\xa2\x70\x19\x3d\x51\x6f\x9d\xb7\xd7\xf4\x8e\x3a\xde\x30\x02\x22\x5e\x66\xc8\x22\x44\xd7\x57\x7c\x2e\x22\x84\xf3\x54\x7c\xcd\x58\x04\xeb\x19\xce\x44\x42\x12\x21\x76\xc8\x8a\x6f\x11\xbe\x5d\xb7\x08\x60\x9d\x0a\x76\xd4\x8a\x19\x5e\xe4\xf8\xc7\xe4\x26\x54\x6c\x60\xbf\xc4\x49\xfa\x2a\xcf\xa8\x2c\xe3\x0e\xc4\xd5\x1d\xd7\xd2\xc2\xc1\xe8\x47\xe9\x9d\xbc\x63\x1e\xd7\x70\xc4\x21\xdf\x6c\xdd\xa6\x93\x7a\x57\x27\xc0\xce\xa0\xd2\xfb\x1a\x93\xc9\x85\xc9\x4b\xbb\x31\x8e\x31\x38\x03\xd1\x01\x84\x58\xb7\x7b\x60\x9f\x52\xeb\x5c\xc2\xb7\xc9\x1d\x62\x09\x0a\x95\xea\x1e\x93\x25\xce\x2b\x52\xe4\x55\x48\x1b\x27\x54\x3a\xc5\xf6\x9d\x2c\x2e\x55\x31\xc9\x4c\x73\xe3\xf8\x3a\x0e\xa5\x11\x96\x94\x1a\x23\x47\x6c\xd4\x76\xc4\xe7\x48\x8f\x7b\xb6\x15\xda\xe8\xd4\x7c\x74\x34\x44\x17\x8a\x5f\x05\x67\x94\x03\xc4\xcf\x05\x49\x53\x9c\x07\xcd\x21\x76\x4a\x15\xae\xd7\x2b\x01\x84\x91\xf8\x7a\x4d\x85\x93\x37\x78\x5e\xe2\x6a\x11\x2a\x13\x0c\x5c\x82\xd9\xd4\xc1\xb2\xa9\x66\x51\x8a\x8c\xee\x7c\x02\x1b\x88\x26\x72\x69\x99\xc7\x9d\x04\x4f\xd3\xac\x90\x68\xa3\x49\x1a\xd2\x42\xba\x9f\xe9\xfa\x3e\xe9\xff\x12\xd6\x7d\x1d\xfa\x98\xa0\xda\x95\xb6\x08\x65\xc7\xcc\x51\x85\xfe\x06\xd1\x00\x1d\x33\x5b\xe9\x8d\x14\xda\xff\x8d\x2e\x96\xfc\x3a\x2f\x96\xab\x0c\x9b\x81\xef\x6b\x1b\x1b\x49\x7e\x45\x91\x90\x17\x0d\xe8\xc6\x41\x5a\x21\x46\x2d\x49\x4d\x92\x8c\xfc\x1d\x8b\x29\xa0\x78\xcf\xc4\x42\x77\x89\x9c\x85\x5e\xe9\xb9\x52\xe3\x2e\xcd\x18\x09\x23\xc5\xaf\xed\x42\xca\xa8\x6c\x56\x93\x8f\x52\xe4\xc3\xa5\x85\x0f\x14\x21\x5a\x9a\xd8\x0f\x89\x5f\xe5\xbf\x03\x6a\x0e\x14\x74\xf8\xa8\x0e\x07\xc8\x5f\x58\xf8\x0a\xd0\xdc\xb1\xbf\x48\xcb\x51\xb4\x53\x86\xf6\xc9\xcf\xc6\x3d\x8b\x8d\x36\x92\x8a\x2a\xa1\x7f\x80\x8e\x87\x5f\x63\x17\x1e\x21\x71\xc3\xf3\x0d\x3b\x67\x7d\xd4\x66\xc2\x9c\x7b\x86\xc9\xdc\x21\x12\xb0\x57\x67\xd2\x53\xae\x70\x4b\xf4\x62\xb4\x1e\x44\xa6\xa3\xe2\xfe\x46\x87\x46\xa3\x29\xde\xdb\xac\x61\xfe\x1c\xb6\x8d\xe6\x28\xdf\x6e\x73\xf1\xc2\x84\x76\x5b\xe3\xa6\xb2\xbb\x1a\xca\x08\xaa\xb3\x60\x4e\x72\x52\x2d\x2c\x64\x45\xad\x63\x29\x21\x81\x19\xcf\x1c\x0d\xa3\xa8\x39\xac\x24\x9b\x4e\xc6\x4c\x88\x3e\x30\x5d\x3f\xf0\xf2\x50\xc8\x27\xa1\xf2\xce\x4c\x0b\xc2\x03\x42\x20\x30\x72\x3f\x40\x03\xae\x1d\xdc\x9a\x02\x7c\x32\x98\xea\x37\xcb\x42\x1f\xe3\xf4\x76\xe6\x5c\x1d\x0b\x8f\x8c\x91\xab\x53\x77\x8f\xd1\x97\x98\x4a\xc7\xb7\x50\x4b\x29\x9b\x77\xca\x40\xc9\xdb\x44\xef\x0d\x7d\xb4\x53\x17\xc9\xc0\xf3\x91\x67\x79\x23\xf3\xb0\xd3\xa2\x3a\x9a\x0c\xa6\xa0\x41\xd4\x44\x03\x4b\x6f\xef\xc8\x56\xf1\xd1\xd0\x6b\xe8\x05\x64\x9c\xa9\xcf\x6d\xe6\xb3\x9f\x16\x4c\x84\x65\x99\xd2\x44\x45\x17\x1c\xda\x0c\x9a\xc6\x4e\xf7\x67\xde\x96\x5f\x14\x1f\xc1\x0b\x79\x24\x82\x85\xe9\xe7\x9c\x1f\x1a\x59\x47\x5d\xf4\x68\x55\xc8\x51\x1c\xe7\xdd\x6e\x58\xca\x98\x4e\x5c\x31\x21\x0a\x55\x7c\xa4\x42\x91\x8a\x27\x83\x29\x97\xd3\x22\x39\x37\xa5\xba\xd0\xd4\x26\x70\x40\x4f\x0d\x29\x73\xb4\x29\x57\x15\xa4\x4f\xf2\x94\x69\x84\x5d\xb5\x2a\xcc\x96\x0c\x3e\xc1\x14\x8c\x74\x53\x9a\xcd\x48\x0d\xeb\x80\xed\xa6\x21\x15\xcb\x14\x3b\xe5\xb5\x33\x50\x66\x53\xb8\x0f\xea\xfb\xc7\xa4\xc4\xac\xdc\xb3\xfc\x23\x2e\x6b\x9c\x3e\x2d\x8b\xe5\x63\xfc\x91\xcc\x30\x53\x11\x31\xa1\xe0\x31\xce\xea\xe4\xa7\xaf\xc3\xfa\xac\xff\xed\xe8\xb8\xff\xad\x9c\x5b\x09\xcb\x85\xd4\xf7\xae\x7a\x04\xe5\x0f\xe3\x41\xb7\x9b\x7f\xe7\x14\xd2\xcd\x58\x64\xc0\x7d\x73\x3c\xdf\xdf\x84\x03\x44\x18\x0d\xc2\xfd\xaa\x2e\x56\xaf\xcb\x62\x95\x5c\x25\xb0\x2d\x22\x74\x34\x6c\x8b\x54\x02\xec\xfa\x65\xc2\x9e\x18\xbb\x22\x55\x8d\x4b\x60\xd4\x42\xcd\x5c\x3b\x70\x9c\x37\xe9\x5c\x2c\x92\x6a\xc1\x86\x4b\x7f\xbc\xbb\x59\xe1\x6a\x2c\x5d\xdf\xe2\xba\x4f\x6a\xbc\xac\x90\x08\xa6\xc5\x3f\x89\x2c\x40\xcc\x02\xe2\x53\xb6\xb0\xdd\x86\xaa\xb5\x80\x0e\x3a\xd0\x6a\x07\xcf\x1e\x6b\x46\xcc\x39\x8b\x6f\x14\x91\x79\x78\x72\xcc\x23\x42\xe5\x11\x00\x2a\x70\x96\xbf\xed\x3d\x4b\x96\x98\x32\x4f\x61\x1e\x8d\xeb\x49\x39\x8d\xeb\x49\x3e\x45\x84\xfe\x22\xf4\x97\x00\x57\xfb\x4d\xd3\x1b\xc3\xcf\x55\x9b\xb3\x05\x9b\x2b\x66\xa2\x9f\x01\x4a\xa8\x2b\x2f\x14\x98\x0c\x30\x98\x7d\xd2\x55\x08\xd6\x39\x3c\x3d\x9e\x2a\x17\x95\xac\x98\xb1\xe5\xda\x6e\x03\x16\x26\x66\x51\x54\x75\x70\x14\xc7\x22\xbd\x4f\x13\xf2\x64\x89\xbb\xdd\x60\x78\xfa\x7b\xf6\x5c\xf7\xd0\x5b\x40\x04\xdd\x7c\x5e\xd0\x7d\xd7\xbf\x4e\xca\x3c\x0c\x7e\x2a\xd6\x9d\xa4\xc4\x9d\x72\x9d\xe7\x24\xbf\xea\x24\x9d\x55\x59\xa4\x6b\x38\x61\xd9\x63\x87\x1d\x61\x60\xd4\x29\xf2\x8e\x04\x81\x59\x65\x5f\x17\xf9\xdd\xba\x53\xe2\x19\x26\x1f\x71\x27\xc5\x75\x42\x32\x9c\x76\x58\xbc\x86\x8e\x0c\x0a\xd3\x79\x36\xef\xdc\x14\xeb\xce\x75\x92\xd7\x9d\xf9\x3a\xcb\xac\x02\x9d\x55\x86\x93\x0a\x77\xd6\x2c\xec\x11\xee\xe4\x45\x7e\xbc\x24\x39\x99\x13\x9c\x72\x10\x56\x65\xf1\x91\xa4\x38\xa5\x20\xd0\x22\x00\xcf\x35\xbe\xac\x48\x8d\xfb\x41\x34\x3e\xf9\xfa\xe8\xab\xce\xd7\xe0\x50\x40\x70\xe7\x18\x7e\x75\x60\x19\xa4\x2e\xb7\xa2\x65\xe6\x65\xb1\xec\x5c\x16\xf9\xdf\x8b\x0e\x0b\x22\x33\x3a\x39\xb9\x22\xf5\x62\x7d\x49\xe5\xef\x93\x14\xa7\x27\x2c\x93\x16\xd5\x9a\xa4\xc8\x1c\x76\x28\x8b\x86\x3a\x77\x97\x37\xc7\x2c\xf9\x6e\x27\xea\x1c\x3f\xec\xd4\xe5\x1a\x9f\xb0\xf7\xf4\xf5\x0a\x49\x9a\xea\x15\x72\x7c\x2d\x2b\xe9\xc5\x40\x43\xad\x97\x5c\xe7\x74\xa6\x70\xea\x2d\x5e\x17\x57\x57\x19\xf6\x41\xf2\x55\xe7\xeb\x93\xaf\xbe\x3a\xf9\xfa\x67\xca\x78\xd4\x9d\xcb\xb2\xb8\xae\x70\x39\x62\xd0\xa1\x4e\x55\x97\x64\x56\x8b\x2f\x86\x67\xf0\x41\x6b\x9d\x7c\x0d\x2f\xce\x77\x00\xfb\x46\x1d\x36\x18\xd6\x5e\xa8\x14\xe1\x5c\xe5\xda\x89\x3a\x9b\xaf\xbe\xba\x4b\x57\x0b\x1a\xbd\x3b\x66\x61\x33\xfc\x33\x7e\xf0\x74\x7f\x25\xf9\x3a\xd6\xd0\x1b\x7c\x15\x76\xa4\x0b\x0f\xeb\xb3\xd3\x11\x5a\x74\xed\x35\xf8\xf0\x6f\xdb\xf7\xef\xab\x5e\x14\x74\x7a\x5a\xf1\x5e\x27\x08\x69\xf2\xf6\x4e\x14\x44\xe3\xaf\x1a\x05\x20\xdd\x74\x9d\x6a\xbd\x5a\x15\x65\xdd\x99\x17\x25\x07\x7b\xc9\xdc\x7d\x28\x47\x40\x4b\xfe\xdf\xdc\x7d\xe9\x76\xdb\x38\xb2\xf0\x6f\xfb\x29\x60\x7c\x3d\x16\x19\xc1\x92\x9c\xf4\x32\x1f\x65\xc6\x9f\xb3\xf4\x4c\x26\x4b\xe7\x24\xee\x99\x1f\x39\xf9\x01\x93\xb0\xc4\x36\x45\x68\x08\xc8\x8e\x3e\x5b\x6f\x75\x9f\xe0\x3e\xd9\x3d\x28\x2c\x04\x17\xc9\x92\x93\xcc\xdc\x7b\xfb\x9c\x8e\x29\x12\x4b\xa1\x50\x1b\x0a\x85\x02\xcd\xe5\x94\x2f\x26\x53\x24\x39\xba\x60\xe8\x92\x66\x25\x01\xba\xa3\xf3\x0c\x89\x45\x72\x25\xd0\x05\x4b\xa8\x42\x41\x26\x0d\x17\xe8\x9b\x6e\xd0\x6c\x91\xcb\x6c\x9e\x33\xdd\x2e\x13\x88\x4a\xa4\xec\x98\x7d\x25\x74\xa6\x54\xc0\x12\x85\x20\x9a\xa6\xe6\x49\xcf\x3f\xfc\x18\xef\xef\x67\x97\x28\x40\x3d\x07\x69\x4f\x09\x30\xb7\x39\x60\x1f\x8c\xed\x62\x90\x62\x1b\x45\xb1\x37\x55\x9a\x3c\x12\x53\xc4\x61\x4e\xbd\x1e\xb8\xd6\xab\x4b\x40\x55\xc9\xf1\x3e\x42\x2b\xf5\x8f\x85\x6d\x63\x83\x8d\x96\x80\xd8\xfd\x46\xbc\x61\xed\xd2\x8e\xe5\x86\xaa\xa9\xd5\x3e\x04\x10\xed\x3a\x52\x8f\x88\x50\xa8\x45\xbf\xd7\x97\xa6\xa9\xdd\x46\x0c\x53\x73\x60\x61\xf0\xbf\xdb\x12\xa8\xd9\x43\xdc\x7c\xd1\x47\x3d\xd4\x53\x94\x3a\x86\x0a\xab\x87\x63\xab\xb3\xfd\x41\xc9\xe6\x39\x4d\x58\x50\x1f\x3e\x81\x5e\x2b\x84\x56\xac\xa6\xa5\x49\x6b\x40\xaa\x33\x45\xaf\x97\x05\x8a\x51\xd7\x88\x4f\x6b\x10\x47\x0e\x81\xaa\x8b\x4b\x1f\x6e\xe8\x4e\x35\x65\x25\x73\x0c\x8d\x0f\x87\x5a\x11\x28\xb5\x24\xbc\x99\x8d\x2a\x16\xf1\xa6\xa5\x6a\x9f\xd4\x71\x15\xf9\x3f\xd4\x37\x6f\x3c\x91\xff\x83\xe8\x3e\xc5\x54\x71\xbd\xd7\x69\xab\xbf\xae\xae\xd6\xf4\x52\xeb\x60\x7f\xa5\x85\x20\x9c\x4a\x56\xb2\x45\x73\xb2\xd1\xe1\x5a\xac\xa2\x38\x8e\x51\xcf\xe2\xbe\x87\x0e\x0f\xcd\x87\x01\x9d\xa5\x06\xeb\xc3\x21\x3a\x7b\xfb\x62\x1f\x99\x2f\x81\xc3\x9b\xc2\x24\x72\x9c\x30\x1c\x5a\xf9\x8e\xb4\xe4\xde\x47\x76\x43\xac\x42\xb4\x79\x82\x29\x58\x85\x95\xf8\x1e\xef\x0f\x1f\x3d\x52\x3a\x05\xce\xea\x66\xda\x4a\xf8\xf5\xcb\xe0\x0f\x81\xae\x8f\x95\xfd\xa0\xbe\x29\x59\x1d\x0d\x87\x37\x37\x37\x83\x84\xa7\x25\x9f\x2b\x5b\x66\xb6\x8f\xa0\xe2\x9b\x2c\x61\x85\x60\x29\xe8\x91\x12\x24\xe3\xdb\x57\xe7\x28\xd7\xaf\x07\x8d\xfa\x7c\xce\x0a\xc1\x17\x65\xc2\x06\xbc\x9c\x0c\x4d\x29\x31\x9c\x65\xf2\xc8\x56\x99\x4f\xe7\xa6\x6d\x97\x7d\x09\x3d\x1e\x1d\xff\x48\xd0\x73\xdd\xfb\x46\x98\x86\xfb\xe3\x75\x7a\x6a\xaf\xa1\xa8\xf6\x14\x31\xa6\x3c\x51\x32\x14\xc5\x16\x69\xeb\x44\x2c\xd9\xdf\xdb\x53\xfa\xa0\xc8\xf4\x9d\x52\x88\x15\x29\x82\x2d\x20\xa0\xa2\xfd\xbd\x3d\xf5\xe9\x65\xa1\x37\xba\x0d\x4f\x62\xbd\x18\x38\xb3\x95\x5e\x16\x29\x56\x3d\x2b\xac\xef\xa1\x47\x48\xfb\x7c\x11\xbf\xf8\xc3\xc1\xac\xde\x0f\xf7\xf7\x2a\xd7\x86\x76\x0b\x23\x4a\xd0\x05\x8c\x63\x6f\x4f\xd9\xb4\xc0\x94\x57\x6c\xa9\xb4\x82\x7d\xbf\x97\x5d\x06\xe8\xa2\x79\x4c\x0f\x4a\x85\xb6\xc8\x1e\xfd\x74\xc5\x96\x9f\x51\x8c\x2e\xe0\x61\xac\x5e\xae\xf6\xf5\xff\x46\x60\xd2\xf1\xfe\xde\xca\x83\xf2\x5d\x8d\x38\xd6\x42\x5a\x2f\x16\x20\x93\x8f\xcb\xf4\xac\x77\x66\xcc\xab\xd8\x0d\xeb\x76\x45\x6a\x69\x74\x15\x4d\xee\xed\xd9\xaf\xfe\x17\x82\x6a\x45\xac\x3b\x32\x93\x41\xb8\x19\x5e\x53\xcd\x80\x5b\xff\xa8\x8f\x37\x2b\xde\xf4\x60\xbb\xd5\x53\x6d\x9c\x70\x4a\xf3\xc3\xfe\xa2\xb1\x48\xab\xea\xe8\x26\xcb\x73\x65\x15\xd0\x39\x5c\x97\x96\xea\x7a\xa9\xde\x12\x14\xaa\xa2\xaa\xe2\x28\xea\x82\xa7\xcb\xfd\xbd\xbd\x9b\x52\x95\x2f\x51\x54\xff\x62\x08\x4c\xd5\x30\xe6\xf0\xfe\xde\x9e\x79\x42\x11\xea\x2d\xf9\x41\xcf\x94\xc9\xe9\x92\x2f\x24\x88\x94\x08\x4d\x4a\x7e\x93\xdf\x51\x29\x69\x32\x65\xe9\xdd\x05\x2d\xef\xb8\x9c\xb2\x72\x7f\x6f\xcf\x94\x8b\x50\x0f\x0a\xd9\xea\xfa\x04\xa5\x00\x9b\x47\x75\x27\xe6\x2c\xd1\x26\xb6\xae\x10\xe9\x62\xea\x33\xd4\xb3\xaf\x91\x48\x68\xce\xee\x44\x9e\xa5\xec\x6e\xc2\x8a\x8c\xdd\xfd\xc1\xf2\x7c\x59\x15\xb7\x50\xb8\x1a\x97\x79\x36\xbf\xbb\xe0\x8b\x22\x59\xaa\xc7\xaa\x24\x80\xe8\x8a\x5d\xf0\x2f\x62\x0e\xa9\x87\xee\x12\x5e\x16\xac\x64\x5f\xe6\xb4\x48\xef\x72\x4e\xd3\xac\x98\x24\x59\x99\xe4\xec\x4e\x4e\x17\xb3\x0b\xe8\xbd\xd4\x0d\x0d\x06\x03\x45\x2c\x30\x1c\x35\x4a\xf8\x66\x47\xa9\x66\x2a\x61\x04\xa9\xc5\x4d\x56\x4c\x88\x5e\x6a\x10\x65\xb4\x25\x4c\x08\x5d\x08\x66\x90\xa6\xa9\xb1\xfd\x0a\x71\xa4\x90\x7a\xe4\xea\xd8\x17\x7a\x99\xc2\x4b\xf7\xa2\x6a\x45\xfd\x54\x9d\x43\x11\xdb\x79\x76\x09\x98\x5d\x28\xb1\x9c\x72\x26\x8a\xff\xfc\x0f\x89\x92\x9c\xbb\x75\x8d\x47\x45\x72\xca\x0a\x74\xc3\x8c\x6a\x41\x99\x34\x92\xe6\x52\x1a\x81\x7a\xc9\xf3\x9c\xdf\xa8\x25\x99\xcc\x40\xd2\x48\x99\xa3\x08\xfd\x3c\x1a\x8d\x4c\x77\x6a\x41\x79\x41\x93\x2b\x05\x0f\x2f\x9e\x43\x3f\x51\x25\x06\x43\x74\x6b\x8d\x21\x30\xe7\xc7\x68\x45\xa0\xe4\x6f\x73\x56\xdc\x53\x70\x7f\x6f\xe5\x4b\x2c\xc5\x70\x35\x09\x00\x6f\xf4\x76\x83\xce\x80\xa7\x08\x00\x09\x3e\x63\x4a\x44\xdd\xcb\x75\xc0\xc1\xbe\xa1\x13\x5a\xf6\xd3\x7e\x7e\xf4\xd7\xf3\xb7\x6f\x90\x4e\x73\xbf\x28\x99\x65\xfc\x42\x5e\xa2\x18\xad\x49\xdb\x82\x7a\x69\x76\xdd\xf3\xc4\x44\x21\x2f\x6b\xa6\x52\xaf\x10\x47\x17\xfc\x8b\x9a\x4c\x65\x82\xf9\x52\x66\x60\x78\x46\x99\x67\x85\x38\xd2\xb4\xd5\x2e\x65\x68\xce\x94\x02\x8a\x68\x95\x51\x6f\x15\x08\x90\x8e\x46\x96\x40\xde\xaa\x73\xff\xbc\xbb\x06\xe4\x08\xbe\xe1\xa7\x3d\x55\xdc\x15\xed\xc7\x9d\x77\x68\x34\xcb\xf4\xf4\x19\xf8\x56\xdd\xde\x89\x98\xd3\xc2\xeb\x08\xc8\x0f\x3f\x3d\x19\xaa\xf7\x4f\xbd\x5a\x0e\x47\x2e\xf9\x17\x8a\x1d\xc4\x6a\xf2\x81\x1c\x41\xc6\xc1\x32\x88\xa7\x4b\x64\x44\x87\x95\x91\x95\x08\xc9\x0a\xe4\x6e\xd4\xd2\x82\xae\x21\xfc\xed\x6b\xb3\x2d\xa3\xd3\xad\x19\x51\x5f\xc8\xcb\xba\x3a\x70\x85\x2f\xb3\x52\x48\xf0\x64\xab\x79\x35\x82\x36\x13\xb3\x4c\x08\xc3\x29\x9f\x1c\xde\x65\xfe\x79\x26\x2c\xe2\x59\xae\x28\x05\x9c\xeb\x16\x10\x53\x4f\x71\x51\x8c\x04\x93\xe7\xd9\x8c\xf1\x85\x0c\x9a\x44\x08\xfa\x54\x35\xa0\x1d\xf1\xcc\xe9\x50\x78\x67\x5a\x01\xed\x63\x54\x68\x03\x76\xd5\x81\x03\x16\xe8\x1c\xec\x05\x51\xd3\x5e\x7a\x0b\x57\xeb\xb0\x16\xa3\xd9\xf2\x5b\xf0\x90\x6e\xa7\xcd\x49\x1d\x48\xf0\x50\xe7\x0b\x22\x9f\x12\xfe\xb9\x60\xe5\xf2\x23\x44\x69\x29\x63\xa3\x37\xb0\xf4\xd3\x43\x61\x3b\x9a\x4f\x2d\x53\xb3\xe4\xaa\x47\xea\x92\xa4\x81\x26\xb4\x42\xad\x51\x8a\x29\xbf\x69\x49\xc4\xfb\xc6\x0b\x95\x5a\x03\x05\xd8\xcd\x44\xc5\xe0\xcf\x50\x63\x6d\xfa\x56\x2a\x32\x53\x42\x60\xaa\xf4\x85\x16\x14\x35\x5f\x4d\xbd\x94\xea\xcf\x17\x27\x55\xde\x79\x25\x3f\xdb\x53\x67\x91\xbb\xeb\xb8\x6c\xbd\x6d\xe6\xb0\x3e\x5a\x2d\xac\x61\x14\x8c\x96\x8e\x9e\x9b\xd4\x1e\xde\x8f\x11\x6f\xac\x9b\x38\xa3\x86\x2d\x98\xe7\x36\x4e\x55\x39\x4f\x37\xed\x5b\xc6\xa9\xd0\x07\x8a\x4a\x33\xd0\x8a\xa0\xc7\x3f\x55\xdc\xa2\x59\xba\x66\x6c\x0b\xab\x20\x95\xec\x07\x57\x92\xc2\xef\x8b\xdf\xde\x1a\x04\x81\x75\xed\x2c\xed\x5f\x8b\xfa\xea\xf9\xda\xb7\x91\xd9\xb5\xd9\x7a\x40\x07\x71\xec\xc0\x47\x61\x5d\xf7\xa9\xd2\x80\x9c\xae\xc8\x51\xd4\xb4\xf6\x49\x1b\x00\x2d\x19\x6a\x63\xb6\xe2\xcc\x2c\x23\x95\x3c\xd3\x33\xa0\x0b\x03\x19\x55\x5c\xd8\x66\xb4\x2d\x7b\xad\x91\xa3\x32\x6f\x24\x37\xab\x43\xbd\xe4\x9d\xd3\x84\x19\x6a\x34\xcb\x9e\x86\xcd\x1c\x37\x8c\xe8\xf1\xfe\xfe\x0a\xd5\x16\x8e\xa6\xde\xd9\x7c\x6e\x53\x0c\xcd\xe7\xb9\x29\xef\x62\xbb\x4a\xce\xdd\x1e\x1c\xfe\x3f\x74\x3e\xc7\x24\x59\x94\x25\x2b\xe4\x7b\x2a\xa7\x11\xc6\x2e\x66\xcc\xaf\x5d\x59\x14\x65\x70\xab\xe0\x8d\xb0\x60\x52\x66\xc5\x44\x60\x52\x7d\xf4\xc2\xe5\x09\x84\xb2\xc1\x86\x6b\x55\xf2\x6c\x3e\x1f\x7c\x34\xbf\x5c\xd2\xbf\x10\x5e\x4f\xfc\x92\xfa\x42\x22\xc8\x2b\xed\x9c\xee\x87\x87\xaa\x98\xe8\x28\x46\xb0\x8e\xb9\x50\xdf\x3f\xf0\x85\x64\xe5\x60\x46\xe7\x41\x73\x87\xb1\x64\x7a\x9d\x1b\xe0\x34\xc1\xe4\x76\x0e\xc3\x1d\x46\x69\x82\x57\xad\x5c\x12\x55\x59\xc1\xca\xeb\x2c\x81\x8b\xe0\x4c\x0d\xf7\xa6\xa3\x9a\xea\x3d\xc0\x8a\x63\xab\xf2\x8f\x14\xbe\xf0\x2a\x5c\xb9\x2c\xd4\xb6\xed\x82\xa7\x7e\xc3\xfa\xe7\x96\xad\x46\x6b\x5b\xbd\xba\xae\x4a\x5d\x5d\xaf\x6f\x2f\xd3\x49\x0c\x6c\x51\xec\x5a\xea\x1c\xc4\x15\x5b\x36\x4b\xb0\x34\x93\xf5\x12\x43\x78\xd5\x05\x14\x4d\x72\x6f\xa4\xf0\x6b\xdb\x81\x66\xa9\xdf\xa2\x2e\xa2\x1a\x48\x33\xd8\x4b\x4f\xeb\xcd\xba\xb7\x8d\x1a\x8b\x82\x2e\xe4\x94\x97\xd9\xff\xf7\x6b\xd4\xde\xb6\x7a\x59\x8b\x21\x8f\x3a\x2c\x69\x57\xd4\x61\xde\xa8\xd6\xc6\x9a\xe0\x81\x5e\x6a\x69\x2f\xdd\x45\x01\x97\x14\xf2\x58\x3c\x9f\xb2\xe4\x4a\x34\xf2\x23\x55\xc1\x27\xfa\xf3\xf3\x32\x93\x59\x42\x73\xc8\xf5\xed\xf8\x22\x6c\x1c\x7d\x6b\x97\xee\x37\x3f\xfd\x43\xaf\xa5\xb0\x1f\x64\xe3\x7f\xf7\xce\xb2\x0f\x2e\xb3\x5c\xb2\xf2\xd9\x32\xc0\x1f\x25\x95\x0b\x81\x09\x4e\x5c\xcb\xba\x92\x3d\xa4\xd8\xef\x2c\x7d\x63\x3b\xab\x17\x5e\xb9\x54\xea\x55\xaf\x64\xae\x54\x58\x17\x36\xd6\x8c\xf1\xbd\x2e\x5f\x47\xc8\xe9\xda\x52\x51\x7b\xa0\x5d\x10\xcf\x6d\xf9\x2d\x20\x86\x7b\xff\xd6\x5e\x76\x77\x70\x5c\xbb\x51\x61\x4a\xc5\xaf\xfe\x7c\xe3\xd0\x83\xb5\x36\x76\x1c\xf6\x31\xb2\x70\x78\x60\x5f\xd6\xab\xf7\x31\x32\x6f\x70\x27\x74\x20\x51\x36\xe2\xf1\x1d\xc8\x9c\xda\xd8\xcc\x2b\xd2\x84\xb6\x19\x07\x3b\x69\xc1\x43\x46\x21\xd1\xf8\x7c\xcd\x96\xcd\xe2\x34\xcf\xa8\x08\xb0\x52\x91\x90\x62\x55\xb1\x86\xea\x6a\x47\xbe\x58\x43\x09\x10\x85\x9b\x2e\x12\x16\xb4\x03\x31\xca\xea\xf4\x60\x20\x89\x9d\x67\x4b\xe3\x15\x39\xc7\x71\x5c\xde\xdd\x39\x82\x55\x3f\x4f\x59\xff\x38\x62\x2b\x32\xfa\x36\xf4\xfa\xbf\x9d\xde\x1e\x46\x32\xc5\x62\x66\x64\x64\xab\x82\x21\x1a\xfb\xb9\x3a\x0f\x2d\xb6\xab\x80\xb7\x20\x48\x9e\x56\x04\xf9\x9a\x2d\x3b\xe9\xb1\x7d\xab\x8a\x39\x44\x7a\x5d\xbd\x8a\x6e\x55\x27\xb7\x73\x73\x59\x4f\x74\x30\x5a\xad\x88\xbd\x9c\xed\x6f\x82\x17\xd1\xc1\x31\xb9\x62\x4b\x68\xa5\x09\x0c\x64\x1f\x08\xb0\xb9\x4c\xe1\x35\x5b\xe2\x50\xd5\x5d\xb0\x2d\x4a\xc3\xdd\x8b\x38\x24\xaa\xfb\x3a\xf5\x67\x97\xc1\xf1\x49\x33\x71\x4b\x78\xab\x96\x24\x45\x2c\xc7\xb2\x5c\x9a\xe7\x94\x25\x3c\x65\xbf\x7f\x78\xf5\x9c\xcf\xe6\xbc\x60\x85\x0c\xe0\x43\xb8\x4a\xa8\x4c\xa6\x41\x19\xde\xae\xdc\xde\x9d\xaa\xc0\x8a\x35\x15\xdc\x2e\xd7\xf0\x4f\x8f\x7f\x1d\x4e\x08\x1e\xe2\x2a\x18\x39\xc0\x50\x48\x0d\x8f\xe8\xe2\xfa\xcf\xaa\xc5\x2f\xae\x5c\x8d\x0d\x34\x5e\xae\xd8\xf2\x1f\xfa\x66\x70\x9d\x66\x74\x23\xe3\x41\x15\x07\x94\x4f\xfe\xaa\xaa\x6e\x10\x77\xf5\x92\x89\x5f\x79\xde\xc8\xd9\xdd\xdd\xfa\x41\xcd\x4a\xc5\x43\x5c\x63\x42\x0d\x80\x8e\xc5\x3b\x3a\xee\xec\xe8\x0d\x4f\xae\x58\xda\xc1\xce\x5e\x32\xc4\x8f\x4c\xc0\x15\xdc\xb5\x06\xdc\x4b\x92\x67\xc5\xd5\x39\x07\xeb\xb7\xdd\xce\x3d\x20\x9d\xe2\xab\x6b\x58\xc1\xe3\x48\x3d\x69\x1b\xae\x05\x26\x50\xe3\x0b\xa0\x93\xb4\x41\x66\x06\x2d\x6d\x52\x33\x87\xc2\x61\xe6\x35\x95\x12\x19\x12\x19\x42\x04\x7c\x0d\x24\x43\xc3\xa7\x18\x47\xc1\x33\x2a\xd8\xcf\x3f\x1a\xd6\xb3\x77\x68\x76\xbc\xb4\x11\xce\x7e\x03\x03\xb5\x0c\xd5\x65\x83\xb0\x86\x2b\xcb\x25\x99\x00\x96\x02\x86\x6c\xa5\x74\x51\x1c\x61\x0f\x48\x4a\x7e\x11\xb4\xda\x77\x29\x40\xe0\xa5\x8f\x13\x6c\x79\x45\x86\xb7\xac\x3d\xb2\x95\x6a\xda\x20\xea\x6f\x1f\x7f\x7b\x37\x80\xab\xd9\x02\x16\x92\x83\x51\x55\xd1\x8a\xf1\x55\x17\xe4\x57\x6c\xf9\x9e\x96\x9b\x0f\x7b\xc0\x5c\x8d\xbd\x69\x67\xd5\x3c\x43\xf6\x27\x36\x10\x8b\x0b\x9d\x69\x37\x18\x11\x9b\x61\xe4\xe8\x38\x84\x20\x34\x7d\xd7\xf3\xb0\x8b\x1f\x1c\xc3\x6c\xea\xde\x82\x88\xc3\x81\xe4\xfa\x06\x49\xcf\x96\x9c\xf3\x79\xa0\xba\xd1\x97\x02\x0c\x95\x3e\x19\x76\x50\xda\xa4\xa4\x45\xfa\xfe\xdb\x75\xb7\x5d\xb7\x46\x03\x9c\x25\x79\xb7\x45\x92\x89\x77\x5c\x9e\x15\x75\xaa\x31\x88\xa6\x05\x2f\x96\x33\xbe\x10\xf8\xc0\x27\xea\x57\x2f\xea\x88\x84\xdf\x61\x6d\x15\xdc\xdd\xd7\xa2\xb8\x2a\x78\xb5\x61\x58\x8b\x70\xb4\xe9\xa3\x79\x42\xf3\x8f\x92\x97\x74\xc2\x3e\xb1\xcf\x70\x90\xe0\xf7\xb5\xd5\x3c\x2e\xb5\x97\x16\xbd\xe3\x05\x0b\x64\x78\x6a\x02\xe6\x1a\xed\x45\x8d\xdf\x36\x69\xa2\xce\x20\x6d\x7b\x30\x59\x6d\x59\x48\xe4\x0a\x24\x79\xd9\x8a\xeb\xbd\x60\x93\xac\xa8\x97\x17\x41\x15\x04\xc8\xe2\x11\x91\xb1\xdf\x99\xcd\x1b\xcf\x4e\xe4\x98\xd9\xb4\x35\x4a\x82\xd4\x0a\x5d\xb1\x65\xc0\xc2\x70\x5c\x7b\x09\x10\x04\xd5\x91\xb8\x56\xb7\xab\x55\x38\x76\x9b\xa3\x69\xa6\x8f\xab\x9a\x03\xdc\x31\x1b\x3c\xe7\xbc\x4c\x89\x8c\xa5\x7e\xaa\x22\x15\xe3\x11\xe1\xf1\x68\xcc\x4f\xd8\xe0\xef\x2c\xb1\x10\x72\x9b\xd9\xbe\x8c\xe1\xfd\x27\xfe\xf9\x48\x9a\x87\x71\xd1\x8f\xcb\x47\xe5\x4a\x27\xbe\x87\x03\x49\xe2\x9f\x90\x7e\xa4\xcf\x06\x3a\x2a\xba\x2f\xcd\x03\xc9\x62\xd1\x67\x83\xb3\xf4\x8f\x85\x90\x4a\x7c\xf6\xa5\xf7\xc3\xd2\xf3\xe8\x24\x83\xbb\x15\xb3\x90\x40\x73\x25\x5f\x14\x69\x70\xcc\x7e\x7a\x24\xc2\xe1\xf1\x68\x54\x05\xe7\x5f\xf2\x72\x46\xe5\xef\x65\x0e\xf9\xd5\x0b\x37\xf3\x5a\xe8\x16\x90\x67\x04\x63\x25\xc9\x46\x27\xcc\x25\x18\xc3\xa7\x38\x3c\x55\x02\xa2\x8f\x0f\xd3\x24\xc6\x7d\x19\xf6\xf1\x21\x78\x58\x62\xdc\x2f\x22\xfd\xe9\xb4\xe3\xd3\x4a\x11\xb4\x92\xb9\xa0\x7e\xec\xd5\x2c\xea\xb9\xba\x0f\x8f\x73\xe0\x65\x8c\x49\xc2\x8b\x14\xe2\x13\xe0\x84\xc9\xc1\x31\x01\xc7\xf6\x7b\x5a\xd2\x99\x88\x6e\xb5\xb5\x16\xdd\x1a\x85\xad\x8d\xa8\x09\x33\x9a\xfe\xac\x48\xff\xa2\x84\xc3\xbc\xa1\xf7\x59\xed\xca\x2e\xd3\x99\x8d\xdc\xb5\x3f\x79\xec\x0b\xb8\x0a\xad\xdc\x25\x60\x0b\xb8\x91\x15\x32\xe6\x75\x69\x11\x92\xe3\xae\x72\x45\xbb\xdc\xad\x81\x4d\xfa\x62\x2c\x2a\x48\x26\x3e\x70\x2e\x23\xa3\x8a\x57\x2b\xa2\xfd\x8d\x2f\x16\xda\xc9\xd6\xb8\x72\xbe\x20\xbc\x9a\x36\x9b\x1b\xbc\xb1\xb4\x61\x9e\xc4\x8f\x63\x7e\x78\x58\xd8\xfc\x4d\x10\x21\x1d\x92\x62\x45\x68\x62\x4c\x53\x6d\x1f\xd4\x2d\xc4\xf0\x56\x6b\x88\x53\x13\x0d\xef\xdf\x4f\x63\x2d\x02\x65\x1b\x19\xa0\x3d\x4d\x72\x77\xe7\xce\x21\x18\xec\x6e\x6c\x83\x99\x95\x77\xeb\xb3\xf6\x20\x31\xb8\x15\x0c\xc4\x22\xa4\xa4\xd1\x64\x54\x23\x2a\x47\x48\x70\x1d\xdb\xda\x3b\xf6\x7f\x50\x28\x51\xda\x35\x48\x78\x21\x16\xf9\x5f\xb9\x90\x7d\x3c\xbc\x3e\x1e\x26\x54\xd2\x9c\x4f\x86\x29\x95\x34\x61\x85\x84\xac\xf7\x03\x39\x65\xde\xe9\x95\x4a\xb8\xb2\x55\xb8\x22\xe0\xf0\x7e\x5b\xef\x8f\x85\xb7\xfa\x78\x73\x6d\xa5\x66\x72\xdc\xd4\x87\x57\x39\x0e\xd9\xa7\xd1\x67\xe7\xa0\x7c\x91\xec\x30\x3c\x47\xd7\x6b\x3d\xa4\xf5\xbb\x7c\x3e\x7c\xfc\xfb\x7b\x08\xec\x0e\x6e\xd3\x24\x62\x83\x34\x21\x69\x62\xd7\x48\x3b\x22\xc7\x38\x0f\x9a\x75\x2b\xe1\xd2\x6c\x25\x53\x15\x0b\x9a\x0f\x17\x99\x71\x65\x12\x80\x40\x86\x1d\x88\xb6\x97\x13\x55\xda\xba\xe6\xb2\x85\x54\x32\x90\x4f\xdc\xba\x09\xac\xbb\x98\xc1\xa9\x66\x09\x69\x39\x79\x99\x66\x05\x95\x3b\x41\x59\xd5\xba\x1f\x48\x8f\x1a\xec\x49\xbd\xea\xe6\x95\xa8\xc9\x8d\xd5\xb5\x35\x70\xb2\x79\x90\x26\x60\x52\xa9\xb7\xa6\x27\x39\x80\x07\xf7\x3a\x4d\x84\x2e\x58\xbd\xf2\x06\x85\x21\xac\xde\xfd\x74\x45\x32\xf1\xa2\xe4\xf3\x94\xdf\x14\xe6\xfe\x1b\x38\xf0\x64\xe9\xeb\xf5\xf5\xbd\x3c\xa4\xf3\x1a\xbe\x6d\x72\xd2\x26\x0e\xf6\x59\xdd\xeb\xea\xe3\x94\xdf\x3c\x84\x9c\x41\x7f\x5b\xf9\x0c\x85\x7e\xe5\x25\xf8\xe5\x43\x35\x19\xfc\x01\xf4\x7e\xc5\x96\x91\x54\x26\xf2\x2e\xc4\x70\x75\x3d\x84\xec\xea\xa7\xaa\xde\xa1\x60\x73\x56\x52\xc9\xcb\x78\x88\x89\x92\xc0\x5f\x4b\xb7\xaf\x99\xbb\xda\x08\x7c\x03\x6c\x65\x89\xf7\x7e\x7a\x32\x27\xd0\x00\x51\xdc\xd9\x94\x5d\x6a\x10\x4e\x45\xc0\x05\xed\xb1\xb7\x37\x56\x53\x2c\x81\xfe\x4e\xe0\x8f\x47\x6b\x8e\x56\xd5\x57\xf7\xbe\x5a\x1a\x13\x3e\xd0\x3f\xdc\xb7\xba\x6d\xae\x0a\x78\x6f\x3c\x12\x55\xca\x4e\x7d\xd5\x4f\x15\x23\xb0\x1b\xa8\xd6\xc0\x4e\xe8\x0a\x18\x1a\x5b\x4b\x71\x2f\xd3\x4c\x7e\x17\x8a\xdb\x88\x61\x19\x92\xf2\x61\x32\xb8\x20\x50\x28\x2a\x15\x69\xee\x4c\x99\xa4\x20\xe5\x06\xc1\xd4\xc4\xa2\x42\xa1\xb1\x79\x33\x26\x02\xad\x77\x42\xcd\x14\xea\x9f\xf7\x25\x9f\x65\x82\xc5\x3b\x82\x61\x89\x60\x0d\x9f\x74\x42\xf8\x0d\xf9\xa4\x4b\x0f\x57\xcb\x19\xa0\x5d\x7b\x9a\x54\x3b\x52\x70\x78\xba\xfd\x08\x85\x76\xa1\x0c\xb3\xe2\x92\x2b\x94\x43\x73\xc6\xaf\x02\xb2\x99\x48\x3d\xcf\x1b\xe6\x41\x0e\x4c\x2b\xb1\x42\xb9\x82\x3b\x92\xdf\x92\xbf\x3d\x43\x6f\x6b\x56\x6f\x71\x6e\x9d\xdb\xff\x15\xcc\xae\x94\x93\xde\x1c\x6b\x08\x98\x6e\x26\x77\xd5\x8c\x53\x8b\x38\xb4\x3a\xfe\xb7\x6e\xdd\x9d\x2c\x44\xcf\x69\xd0\x66\xfc\xad\x4d\xab\x5d\x2d\x20\xcf\xfc\xfb\x06\x16\x90\x19\x78\xcb\x08\xda\xd2\x2a\xa9\x80\x91\x2d\x5c\x3e\x54\x87\xaf\x41\x68\xf1\x2d\x11\x3a\x65\x34\x97\x53\x8b\xcb\x21\xee\xb3\x41\x41\x67\x7a\x55\xfb\x5d\x8c\xca\xed\xb8\xf6\xd3\xe7\xb1\x6c\x35\x6d\xee\x8e\x63\x6e\xae\xce\xe9\x44\xc0\x5a\xbb\x18\x24\xbc\x48\xa8\x0c\xea\xdf\xa0\xcf\x22\x86\x02\x7a\xd9\xdb\x69\x7c\xfa\xde\xe5\x55\x18\x0e\x16\x45\xf6\xcf\xc0\xde\x1d\x4e\x10\xee\x60\x70\xf7\x4a\x52\xc5\x7d\x15\xff\xc0\xd6\xde\x37\x9c\xf0\x4d\xb3\x4d\xca\xf8\xff\xda\xff\x88\x88\x8f\xaa\x1f\x99\x46\xa0\x67\xdb\xb6\x57\xb8\x85\xbe\x89\x10\xa6\x3b\x8e\x0b\x80\x5c\x03\xc2\xe3\x62\xf0\x91\x4d\xc0\x35\x72\x4f\x23\x3a\x1f\x95\xae\x7c\x10\x33\xf8\x7b\x78\xc8\x6c\x75\x77\x5d\x8c\x8c\x9d\x2f\xa8\x20\x2c\x1c\x67\x9a\x4a\x6e\x95\xb5\x1e\xe9\x6a\xc4\x96\x88\x24\x11\xba\x7a\xc4\x57\x90\x25\xf9\xa4\x84\x53\xd6\x32\x24\xe2\x44\x82\x8b\x46\x33\x59\xa6\x13\xce\x76\x3a\xe1\x20\xb2\x0c\xda\x3b\x92\xee\x71\x05\xfe\x29\x18\x23\xa1\x71\x66\xb3\xf8\x26\xde\x4d\x62\x01\x1d\x3e\xf6\x5c\x17\xf4\x94\xc7\xf4\x4f\x8f\x4f\xb3\x4f\xc9\x67\xd7\x4c\x14\x64\x9f\x92\xa3\xe3\xea\x45\xbf\xf6\x39\x1c\x3e\x8e\x44\x5c\xc6\x3c\x1e\x91\x2e\x8b\x45\xeb\x3c\x30\x5a\x94\xf1\x32\xe3\x93\x92\xce\xa7\xcb\xe8\xd6\x36\x20\xa2\x8c\x14\x91\x03\x6f\x96\x15\x11\xf8\xb2\x5f\x15\x32\x38\x1e\x8d\x1e\x95\xe0\x8e\x22\x33\x96\x66\xb4\xf1\x89\x9b\x4f\xf4\x4b\xfd\xbd\xf1\x60\xc1\x92\xf3\x2b\x56\x9c\x9e\x80\x00\x51\x74\x8f\xe9\x54\x97\x00\xdb\x18\x1b\xbb\x9b\x15\x06\x2c\xbd\xf2\xd3\x94\xb4\xab\x51\x21\x62\xb6\x83\xa8\xf7\xd4\xbc\xea\xb2\xa9\x55\x85\xa7\x56\x2b\x85\x5c\x4d\x33\x06\xc8\xec\xaf\xba\xe0\xf8\x1f\xa0\x75\xed\x92\xfe\x7b\x39\x1d\xb6\x9c\x04\xbb\xde\x77\xf8\x3b\x4b\xf2\xff\xae\xe8\xa3\x49\x3e\xd4\xe9\x02\x1e\x8c\x35\x6f\xff\x03\x9c\x63\xaf\x5e\x9c\x4a\x7b\x89\x62\x60\x86\xef\xa1\x32\xf2\xb0\x5c\xff\x62\x91\xec\xdc\x96\xb0\xc3\xdd\xb5\xfd\xc1\x0e\x0f\x7f\x1c\x69\x57\x9c\x80\x38\x8a\x2e\x07\x64\x9a\x0c\x6a\x21\x61\x61\x04\xd5\x9e\x78\xd5\x3a\x5d\x77\x69\x32\xa8\x05\x86\xc1\x1e\xdd\x96\x53\xaf\x03\xdd\x6a\x2b\xde\xb3\x24\xc7\xa4\x31\xd8\xb0\x46\x1a\xff\x2e\x1b\xac\x21\xf9\x09\x4d\xf2\x1d\xc4\xaf\xa2\x1c\xb3\x6c\x62\x83\x2c\x5d\x67\x95\x79\x12\xd7\x9f\x6d\xbd\x38\x7d\x88\x5c\xa3\x49\xee\x59\xb1\x7a\x7c\x0f\xf1\x19\xb7\x90\x04\x61\xa4\x10\xb3\xe7\xc5\xbe\x56\x80\xd5\xf6\xea\xaa\xd7\xd5\xae\x9d\xbe\xe7\xc9\x8b\xa6\xf5\xfa\x74\xc1\xab\x5e\xb4\x2d\xf6\xf6\xaf\xfd\xd7\x61\xb8\xb2\xc9\x77\x44\xe3\x8b\xf3\x22\xb7\xc0\xea\x00\x08\x2e\x04\x89\x3e\x61\x5a\x8d\x06\x7f\x26\x2d\xff\x61\x74\x70\x4c\x60\x77\xd3\x45\x17\xbb\x0f\x23\x52\xf9\x84\xd7\xc4\xcf\x54\xf7\x8f\x40\xc6\x1f\x1d\xd7\x63\xa2\x80\x36\xc6\x4e\x68\x21\xb9\x26\x6e\xcb\xb2\x79\x5f\x76\x06\x22\x35\x23\xb2\x4c\x5b\x3e\x08\x26\xea\xef\xdb\x81\xd0\x08\x98\x5a\x07\xc2\xba\x08\xad\xe6\xde\x75\x1b\x5b\xd8\xbf\xdb\xa1\x56\xc0\x45\x30\x1a\xf6\x3d\x18\xdd\x17\xe7\xc5\xbc\x50\xad\x48\x7a\xc1\x5d\x6b\x41\xd6\xe1\x68\x1d\x41\x28\xf7\xf6\x85\x5d\x47\x78\x53\x2f\xdb\x04\x87\x75\x20\x85\x8c\xc2\x56\xfe\xc3\xb6\x78\xbb\x3e\x3e\xf2\xcf\x75\x1c\x99\xd4\x89\xe4\x60\x64\x77\x67\x8c\xaf\xa2\x83\xcc\xb5\xff\xbc\x52\x3a\xe6\x04\x79\xcb\x35\x0e\xaf\xdd\x21\xde\x0e\x3f\x7c\xb8\x22\xd3\x2c\x65\x7e\x17\x9d\x22\x60\x1b\xa8\xc9\x76\x40\xab\xfe\x14\x18\x2d\x68\x37\x6e\x15\xac\x42\xf2\xfa\x5a\x09\xca\xed\x85\x9b\x73\x4e\xbd\x66\xcb\x35\x61\x46\x1e\x63\x19\x9f\x90\x1f\x6f\x68\x9d\x3e\x7e\x14\xae\x17\x84\xb5\x22\xbe\x0e\x7e\xc7\x68\xc9\x44\x2b\xbe\xab\xa6\xf8\x48\x11\xcb\x46\xd3\x44\xd8\x57\xa0\x0a\xf5\x93\x13\x60\x70\xdb\xfb\x7a\xcd\x68\x15\x1f\xfd\x83\x7e\x09\x6e\x17\x65\x1e\xdd\xe3\x17\x65\xc6\x21\x8a\x89\x20\x3c\x24\x70\xf6\x17\xff\xe5\xe5\x39\x5e\x35\xb5\xa0\x4e\x1a\x59\x0d\xef\x83\x8e\x2f\xf7\x36\x48\x57\xe1\x40\x71\x51\x4d\x71\xfe\x38\xfa\xb1\x6e\xa9\x6c\x6c\xa3\x00\xeb\xc9\xce\xfb\x1b\x7d\x4c\xb7\xb1\x35\xa4\xec\x0c\x6f\xca\x9b\x34\x70\x6f\xb4\xa3\x55\x28\x69\x82\x3f\x93\x34\xd9\xa0\x11\x4c\x8a\xb1\x01\x78\x09\x1c\x38\x4a\xd3\x38\x36\xd3\x86\x40\x23\xc2\xc7\xa7\xdd\x6a\x0c\x23\xbd\x2c\x36\xf3\xce\xec\x24\x9b\xdd\x84\xb0\xa2\x04\x3f\xaa\x4f\xc4\x81\x79\xdb\xf0\x63\x2a\x34\x6d\x20\x92\xcd\x54\x52\xb4\xa2\xfd\x74\x9e\x35\x63\xa6\x80\x5b\xb3\xe8\xfb\x7b\xf3\x2e\xc3\xda\x0e\x94\xe5\x55\xf7\x89\xeb\xfd\xef\xe7\x18\x34\x72\xc4\xea\xc1\x65\x6d\x82\x03\xb1\xcd\x2c\x37\xea\x50\x46\xc5\x8f\x9b\xe9\xd0\x07\x3b\x5a\x57\xd6\xec\xda\xd7\x86\xd8\x4d\x78\x1d\x44\x6d\x0a\x82\x61\x6f\xb4\x24\x26\xf8\x83\xce\x52\x65\xb3\x53\xdd\x4c\xb3\x9c\xa1\x79\xc9\x13\xa6\x95\x38\x52\x38\xd1\x7c\x70\xce\xbe\x40\x92\x4d\x93\xe9\xab\x1d\xa4\xb9\x13\x09\xad\x91\x13\x8e\xa0\x5a\xa4\x23\x36\xd0\x86\x4d\xf2\xc1\x8b\xcb\xac\x9c\x05\xf8\xac\x64\x90\x5b\x4b\x2c\xcc\x03\x24\xd9\x92\x1c\xd9\x84\x65\xd3\x4c\xa0\x4b\x18\xc0\x29\x0e\xed\x75\x8a\x3b\xd0\x49\x9b\xea\xfb\xf8\xb4\x64\xc9\xa2\x14\x4c\xad\xe7\x84\x25\x9c\x17\x2f\xdf\xbc\x3c\x7f\x79\xbf\x60\xaa\xc9\xdd\xa0\xf8\xbe\x33\x58\xdf\xd5\xdb\x42\x2e\xdd\xd6\x04\xc9\x03\x85\x91\x93\x3f\xda\x5c\xdf\x45\xfe\xf8\xe6\xdb\x1a\xc2\xf1\x0d\x38\x58\x77\x60\x9b\x41\x70\x23\xe5\x3c\x74\xe6\x35\x4d\x7a\x13\x5d\x49\x08\xd9\x19\xa2\xda\x26\x80\x62\x5b\xce\x2d\xbe\x19\xe7\xea\x7c\xec\x6a\xd2\xb7\x41\x3d\x69\xad\xd0\x9b\x62\xab\xbe\x7b\x66\x0d\x94\x20\xac\x1b\x51\xb5\xf1\x19\xe9\xf1\x35\xda\xe7\x3e\xd1\x61\xa7\xdf\xd8\x24\x4d\xe0\xbe\xad\x2d\x52\xd4\xe9\x81\x7f\x1d\xe3\x8b\xef\xcf\xf8\xaf\x24\x9b\x75\x5a\xa0\x10\xc6\xbb\x61\x31\x9b\x26\x98\x34\x56\xb4\x7e\x04\xe1\x27\xac\xf7\x52\x30\xc1\xc2\x1d\x58\xb3\x21\x87\x3b\x09\x0a\x57\x4b\x2d\x83\xa7\x54\xbc\x84\x04\x28\xfa\xa7\xee\x43\x8d\x27\xc2\xbf\xc2\x33\xba\x58\xc2\x41\x5e\x6c\xbe\x45\x18\x13\x0d\x40\x84\x69\xb1\x44\x16\x18\xfd\x97\xc1\xb2\xdc\x7b\xed\x56\x4e\xc4\xad\xa6\xd4\x4a\x5d\x19\x6c\x59\x31\x51\xc8\xda\xb4\x96\xf4\x61\xa7\xfe\xa1\x5f\xdf\x75\x60\xa3\xc2\xd3\x44\x87\x21\x69\xe6\x51\x56\xc2\xdd\x9d\x7a\x69\x37\x09\xab\xf7\xfe\x2a\x6e\xab\x2e\xcc\xd8\x59\x6a\x92\xb1\x77\xdf\x38\x66\x56\xf4\x7a\x9a\xea\x01\xf5\x06\x1d\x2e\xeb\xaa\x36\x5f\x24\x9b\x55\x47\xa7\x3a\x37\xc9\xfc\x26\xf5\xe9\x06\xc9\xdf\xf0\x1b\x56\x3e\xa7\x82\x05\xe1\x60\xa6\x03\xec\xeb\x6f\xc3\x55\x38\x16\x37\x99\xfa\xc2\xc2\xdb\x84\x0a\xe6\x66\x21\xaa\x62\x2f\xdd\x79\xad\xd6\xca\x57\x09\x92\x31\x54\x73\x0b\xe0\xed\xaa\x8d\xc2\xb1\xc9\x48\xe4\x2a\xd4\x02\xfe\xdb\x14\x0c\x28\x18\xfc\x3f\x46\x93\xa9\xaf\xc2\x4c\x8e\x33\x47\xa8\xf7\x2d\x59\x2b\x46\xa8\xb4\xaf\xdb\x13\xdc\x7e\x2d\x58\x63\x45\xbd\xbc\x7f\x90\x06\xce\x0a\x7b\x3c\xca\x04\x5c\x74\x64\x12\xde\x2c\x8c\xd7\x09\xdb\x07\x2d\x00\xb7\x36\xdf\x2a\xb8\xb5\x09\x67\xf6\x53\x76\xb6\xe1\xec\x26\x91\xb9\x0a\x51\x19\xfe\x4d\x6b\xbf\x43\x70\x7f\xed\x5e\x94\xde\x0f\x85\x8e\x3a\xbc\xb5\xb2\xb9\x5d\xa4\x77\xc6\xfe\x05\x66\x20\x10\xa2\x47\x84\x6d\x0d\x51\xd9\x81\x8a\x1d\xd6\x90\x9b\x71\x37\x35\xa2\x1c\xbe\xbe\x5d\x17\x43\xe1\x9d\x14\x11\xdf\x4d\x7b\x7d\xde\xa0\x62\x10\x2f\xd1\xab\x17\x98\x08\x46\xcb\x64\xfa\x8c\x96\x4a\x23\xe9\x7d\x86\x67\x0b\x29\x79\xa1\x7e\x2b\x12\x52\xed\xe9\x0b\xc5\x30\xc1\x55\x12\xd5\xdd\xd6\xee\x1b\x50\x02\x7b\x1d\xa1\xa7\xf0\xd6\x2a\xac\x4a\xf5\xa8\x3a\x4e\xc3\xec\xa8\xc1\xbe\xb9\x3e\x2a\x3a\xf4\xd1\xb8\xed\xcc\x5a\xaf\x7f\x6c\x70\xa1\x3e\x4b\x0d\x47\x9b\x3b\x35\x4f\xd1\xd0\x3c\x63\xef\x48\xc6\x41\x1c\xcb\x53\x69\x57\xf4\xaf\x5e\x6c\xd9\xc4\x2a\xec\x54\x19\x6b\x34\x85\x76\xb6\x9c\x25\xed\x88\xdf\x75\x12\xb6\xb0\xe6\x6e\xe1\x9c\x2d\x67\x49\x0e\x4b\x9c\x62\xa3\x88\xfd\x56\xeb\x1c\x9a\xe4\x43\x0d\x36\x26\xb2\x6b\x85\x03\xc7\xe8\xf4\x51\xb6\xec\x72\x09\x5b\xf8\x6d\x79\x56\x74\xad\x1c\x2a\x22\x24\x6c\xf0\xea\x45\xe5\xa1\xd9\x65\xbb\x54\xc1\xb4\x69\xbb\x74\xe3\xee\x72\x6b\xdf\xd3\x2e\xc3\x80\xd6\x88\xf4\x5f\xdd\xbf\x32\x83\x43\x59\x41\xb7\xf0\x85\x5e\xb2\x62\x82\xce\x9e\xbf\x69\x8a\x5f\xf2\x67\xf6\x64\x6d\x3f\xab\xe6\x0e\xe5\x03\x0d\x04\x90\x12\x0f\x76\x17\x6e\x96\x63\x8e\xbe\x05\xdb\x6a\x2d\xe9\x2d\xe3\x89\xe3\x5b\x63\x3b\x8c\xd9\x26\xb2\x1e\x67\x97\xc1\xd6\x06\x82\x4e\x96\x9e\x09\x04\x74\x0f\xd9\x15\x97\x7c\x51\x7a\x86\x42\xd7\x6e\x80\xc9\x66\x23\x15\x45\x8e\x59\x17\xdd\x56\x3a\x68\xed\xca\x96\x58\x62\x78\xc7\x6f\xd0\x42\x40\x8a\x42\x08\xe6\x41\xb8\xaf\x5a\x26\x4f\xd8\x93\x70\xb5\x22\x49\xce\x8b\xf6\x1e\xc7\xb6\x6b\x5f\xcf\xb5\xf1\x60\x59\xd0\xe9\x5e\xf4\x46\xb8\xb3\xac\x50\x23\x02\xe7\xe9\xab\x17\xa4\xa8\x0b\x8c\x2e\xc9\xd0\xd9\x7f\x4b\x32\x74\x3a\x36\x1d\x92\x3f\xea\x9c\x93\x97\x8b\x3c\x5f\x22\x00\x20\x45\x66\x1a\x7f\x54\x78\xfe\x6e\x76\xd3\x3a\x87\xeb\x8a\x60\xed\xd9\xc0\xff\xd6\xb9\x7d\x90\x27\x14\x2a\xef\x6c\x44\xab\xa9\xf7\x0c\xe8\x6d\x26\xdf\x5e\xa3\xb1\x9b\xbc\x2f\xba\xe5\x3d\xbf\xf8\x43\xc4\x9f\x3e\x93\xad\xc2\x62\x54\xe1\x4d\x91\x31\xf0\x7d\x43\x70\x4c\x87\xb1\x04\x36\x98\x1f\x7b\xa2\xda\xe8\x72\xf4\xad\xa5\x77\x7c\x1f\x95\x9f\x3d\x7f\x63\x26\x2a\xb5\xb9\x5a\x81\xe2\xb1\x16\x26\xff\x16\x32\xd7\xde\xdb\x5d\x0c\x9a\xef\x41\xe7\xbb\x12\xaa\x86\x1a\x37\x29\x74\x5b\x7b\xc6\xa1\x75\xc3\x44\xe9\x2e\xba\x27\x6a\x47\xd3\x01\x9a\xda\x68\x3a\xac\x9b\x9e\x66\x78\xce\xf6\xa6\x83\xd3\xe8\x25\xdb\x5d\xa7\xaf\x93\x3b\x65\x5b\xf0\x40\xf3\x56\x2b\x6b\x20\x41\xf4\x04\x9d\x27\xca\x9b\x41\x48\x1b\x12\xd9\xad\xcb\x50\x57\xe9\x0c\xf3\x4d\x83\xa0\xa7\x66\xad\x3a\x0f\x41\x53\x8b\x8e\x68\x84\x36\x2f\xeb\x74\x65\x15\xf2\x5f\xaa\xa9\x7c\x28\xe6\xcf\xc1\x68\xd8\x18\xbd\xe0\x8d\x6d\x1d\x48\x5e\x64\x15\xb9\xa0\xc9\xd5\x5f\xf9\x6c\xd7\xa1\x8c\x75\xbc\x93\x77\x49\xa7\x7f\x37\xe7\xad\x64\xb3\x79\x4e\x25\x7b\x07\x49\x09\x95\xc1\xe9\xd2\x0a\x8b\x08\xa7\x26\xfc\x41\xa8\xd7\x59\x72\x55\x73\x30\xfd\xe0\xee\xfe\x0f\x07\x99\x08\xf0\xa0\x2a\x1d\x1e\x1e\xfe\x10\xe0\x45\xee\x5e\x1d\xcd\x58\xb1\xc0\xe1\x60\x9a\xa5\x2c\x70\x3b\xea\x6a\x99\xbb\x1d\x60\xca\xae\xc7\x0d\x9f\xc4\x76\x35\xab\x74\x83\xed\x73\x1b\x3b\xb5\xd0\x6c\xc0\x90\xd9\xf6\xf0\x0f\x4d\xee\x6f\xec\x3b\x6c\xb6\xab\x6e\x52\x1b\x36\x3c\x8e\xdb\xd7\xad\x55\xfd\x6a\xc0\x5f\x5f\x37\xae\x7d\xdd\x50\xff\xea\x1a\xbb\x65\x90\x22\x9c\x67\xb4\xdc\xae\xa2\x66\xa7\x0b\x5a\x56\xf5\xf3\x6d\x6b\xe6\x02\x37\xd6\x5e\x5b\xd7\xc4\x0d\xc9\xbb\x2d\x89\xb8\xac\x85\x55\x82\x0c\x23\xb0\x18\xa1\xa1\x4d\x8a\xe3\x47\x2b\x89\x7a\x24\xc4\xe8\xa4\xab\x8c\xcb\x99\xf0\x43\xd0\xf5\x39\x1c\xb0\x46\x62\x03\x1a\xde\xd2\x2a\x43\xb1\x39\x0f\x21\xe0\xfa\xd8\xc6\x6d\x06\xb7\x26\xfb\x76\x84\x4f\xe6\x4f\x21\x1a\xe7\x64\x38\x7f\x8a\x89\xc9\x60\x8f\x21\x51\x3e\x26\x3a\x2f\x78\x84\x21\x13\x3d\x36\x4a\x57\x67\xa2\xc7\x44\xca\x3c\xa2\xab\x70\xac\x6d\xfe\x20\x24\x5d\x40\x2a\xeb\xae\x73\x6c\x60\xa8\x09\xff\xb6\x4d\x17\x39\xff\x96\x2f\x04\xfb\xed\x9a\x95\xd6\x25\x40\xf5\x6a\xf3\x4c\xca\x32\xbb\x00\x19\xa7\x74\xfe\x11\x10\x77\xd8\xc7\xe8\x08\x99\xb0\x8f\x66\x09\x7b\xec\x42\x95\x9a\x09\x4c\x44\x77\x43\xe6\x50\x0a\x0e\xc7\x18\x1f\xc4\xb1\x38\x3c\x0c\x68\x3f\xc6\x28\x30\x87\x5d\x94\xfe\x16\x7d\x1c\xe2\x90\xb8\x1c\xed\x13\x66\x53\xc1\x3e\x5b\xbe\x4a\xfd\x63\x00\x00\xd7\x51\x56\x5c\x72\x1c\x0e\x24\xfb\x22\x8d\x03\x2d\xa6\xab\x35\xb7\xa9\x05\x78\x4e\x0b\x96\x3f\xa3\x65\xfb\xde\x39\x6a\xdd\x5d\x34\x76\x3b\x2c\x71\xcc\x4e\xf1\xc5\xe4\x68\x52\x32\x56\xe0\x48\x3d\xf2\x12\xae\x71\x26\x6a\xae\xbd\xf6\x3f\xd2\x4b\x66\x12\x3e\xd5\x12\xb5\x43\x7f\x47\x17\xb4\x44\xbd\x3e\xed\xf7\xb0\xcd\x9f\x5e\xdd\x7a\xde\x01\xa4\x32\xe5\xff\x85\x30\xc2\x7d\x95\x17\xb4\x3c\x82\x50\x72\x5e\x48\x9a\xef\x02\xad\xf1\x17\xbc\xd3\xfb\x8a\x1b\x20\xd6\x0b\x0c\x55\xee\x14\x43\x92\xf9\xa7\xb8\xef\xb5\xf7\xbb\xcc\x72\x31\x60\x22\xa1\x73\xf6\xf2\xcb\xbc\xd4\xcd\x06\xb0\xc2\x55\x6c\xa3\x6b\x44\x3b\x55\x85\xbb\xfb\x5d\x65\x74\x22\x66\x34\xcf\x77\xec\x56\x57\xd9\x80\x4c\xba\x0d\x7a\xde\x32\x49\x3b\xd0\x13\xd7\x66\x62\xc6\x24\x55\x8c\x82\x9f\xf6\xb6\x02\xf1\x19\x9b\xd2\xeb\x8c\x97\x8a\x37\x2f\xcc\xb3\x9e\x32\x6c\x37\x52\x31\x1c\xf7\x3b\x3f\x7f\xa3\x78\x2d\xa6\xfd\x35\xfd\x11\xb4\x5d\x8f\xe7\xe7\x6f\x54\x67\xe7\xe7\x6f\x4c\x3f\xe1\x83\x11\x43\x93\xbc\x49\x33\x4a\xb0\x5a\xb8\x15\xb1\x9c\xd2\x68\x7d\xeb\x5b\x80\x1b\xf6\x7b\x66\xce\x1d\x3f\x2e\xf2\xfc\x48\x5f\x0e\x54\xf0\x23\xd8\x17\xdd\x0a\xd7\xd4\xa7\x85\x8d\xc3\xd2\x6b\xab\x0f\x8b\x9c\x89\xfa\x7c\xd7\x06\x86\xdf\x71\x54\xaa\x32\xc8\x5e\xd7\x18\xb1\xcd\x22\x61\x96\xc9\x6e\x54\x21\x9b\x8d\xea\x29\x3d\xad\x27\x4e\x53\x40\x0f\x06\x83\x7b\x9a\x36\x96\xd7\x39\x9d\xb8\x25\x70\xf3\x70\xa2\x4e\x84\xc7\x4c\x16\x5f\x05\x3b\x1c\xda\xdc\xd4\x6a\x25\xa6\xff\xa2\xfe\x6d\x82\xae\x15\x66\x75\xde\x72\x5c\x1d\x36\xec\x3e\x23\x59\x7d\x7f\x2a\xe0\xfc\x62\xf5\xc2\x2a\xe0\x22\xa6\xc3\xc7\x47\x7f\x26\x32\xee\xe9\xbb\xd4\x4e\xc4\xf5\x04\xc1\x9d\xbf\x31\xd6\x02\x0d\xe9\x9b\x7f\xed\xcf\xa7\xc8\xfc\x77\x32\xb1\x04\xe2\x9d\x32\xd3\x57\x71\xa9\xf9\x8c\x31\x3c\x2a\x53\x24\xe8\xf5\xe9\xf0\x71\x1f\x13\x84\xe1\xa1\x17\x56\xad\xa8\x76\xbc\x1f\x08\x9d\xe8\x1b\x68\x6c\xdb\x6a\x71\x31\x81\x94\x58\x18\x95\x0a\x86\xa2\xdf\xc3\xc3\x4d\x35\xe8\x97\x4c\x98\xb2\x83\xc7\x3f\x3d\xda\xa9\xfc\x8e\xc5\x7f\xd9\xa2\xfc\x05\x2f\x53\x56\xae\x01\xfe\x64\x38\xa9\x61\xa2\x52\x2f\x05\x13\xf8\x69\x8f\x94\xde\x9c\x09\x92\xc5\xa5\xcd\x51\x96\x5d\x06\x4f\x7e\x1e\x9d\xb0\x41\xa1\x09\x23\x8f\x9f\xfc\x3c\x1a\xb2\x41\x31\x2e\xe3\xb2\xbd\xa3\xe5\x91\xfe\x28\x8e\xe9\xdd\x1d\x8d\xe3\xec\xe8\xf8\xee\x4e\xa7\x1c\xa3\x45\xca\x67\x41\x78\x92\xaf\x42\xaf\x13\x9b\xbd\xb3\xec\x4a\x54\x45\xc3\x5b\xd9\xb7\x54\x63\xe0\x57\x60\xfb\x14\x50\x72\xa9\xa7\xff\xc9\xcf\xa3\x47\x74\x98\xa9\x99\x47\xcb\xc7\x0a\x13\x47\xc5\xa3\xa0\x1a\xda\x50\x84\x8a\xd2\x9c\xe5\xa4\x4a\x6c\x23\x5a\xe1\x24\xa4\xab\x69\x5b\x53\xb5\xab\xb6\xdd\x67\x63\x49\x6d\xdb\xb6\x29\x0e\xcd\xf3\x02\xae\x25\xe6\xd7\xac\xf4\xc9\xbd\x32\x06\xd5\x7a\x37\x1c\xe3\xe1\xd3\xde\x2a\x24\x75\xbc\xac\x9d\x63\x7a\xc1\x72\x81\x37\xd1\xce\x9c\x67\x85\x04\xd2\xf9\xa9\x49\x64\x15\xf3\x65\xc9\xd5\x1a\xb6\x1b\x29\x0d\x75\x64\x98\x20\xac\xf7\x64\x67\xeb\xcb\xe3\x18\xff\x32\x6a\xb4\x8e\xd0\x89\xb2\x0d\xd1\x97\x18\xff\xf2\x13\x46\xcb\x18\x8f\x30\x4a\x97\x31\x1e\x3c\x79\xcc\x66\x4a\xfa\x07\xa3\x13\x71\xea\x8e\xfa\x3e\xb6\xb9\xea\xa2\x51\xd8\xef\xcd\xc4\xc9\x50\x55\xaf\x03\x3c\x9c\x3c\x78\x00\xdf\x1d\xfe\x9f\x46\xdf\x15\xfe\x5f\xbe\xfb\x00\x7e\xf9\xae\x13\x70\xfc\xbd\xc1\xaf\x8e\x8a\x2b\xf8\xf1\x16\xf0\xfb\xbf\xaa\xe7\x93\xa1\xb8\x9e\x6c\xb4\x3b\xa5\x52\x7c\xff\x15\x00\x00\xff\xff\x5c\x1a\x29\x19\x5a\xc4\x0b\x00") - -func web_uiV1StaticApplicationMinJsBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticApplicationMinJs, - "web_ui/v1/static/application.min.js", - ) -} - -func web_uiV1StaticApplicationMinJs() (*asset, error) { - bytes, err := web_uiV1StaticApplicationMinJsBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/application.min.js", size: 771162, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticBaseCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5d\xeb\x8f\xe3\xb6\x76\xff\x3e\x7f\x05\x3b\x8b\x20\xbb\x7b\x47\x1a\xea\x6d\x7b\xb3\x41\x6e\x82\x6c\x51\x20\xf7\x4b\x7b\xef\x97\x16\x2d\x40\x4b\xb4\x2d\xac\x2c\x0a\x92\x3c\x8f\x04\xfb\xbf\x17\x7c\x49\x24\x25\xd9\xb4\x47\x0e\x8a\x5e\xcf\x2c\xbc\x36\x45\xfe\xce\x83\x87\x87\xe4\x21\xc7\x67\x4d\xb2\x57\xf0\xc7\x1d\x00\xce\x33\x5e\x7f\xcd\x5b\x67\x43\xca\xd6\x69\xf6\x84\xb4\xbb\xbc\xdc\xae\x00\x2a\xdb\x1c\x15\x39\x6a\x70\xf6\xe9\x0e\x00\xfe\x38\xff\x1d\xaf\x80\x17\x57\x2f\xb4\x28\x25\x05\xa9\x57\xe0\x5d\x14\x45\x9f\xc0\xb7\xbb\x3b\xc4\xf0\x64\x29\x4e\x92\x74\x1d\x76\x4d\x9f\x71\xbe\xdd\xb5\x2b\x10\x43\xf8\x49\xa1\xda\xd6\xa8\x6c\xf2\x36\x27\xe5\x8a\xb7\x04\xd0\xf5\x1b\x80\x51\x83\x9d\xbc\x74\xc8\xa1\x65\xb5\xf7\xe4\x77\xeb\xaa\x8d\x6d\x4d\x62\x59\xd1\xa2\x16\xf8\x76\x07\x00\x5a\xed\xc8\x13\xae\x99\x16\x00\x68\xf1\x4b\xeb\x64\x38\x25\x35\xe2\x4d\x4b\x52\xe2\x4f\xec\x91\x54\x51\xb6\x89\xbc\x65\x2a\x1a\xbb\xcd\x61\xdd\x16\x58\xb4\x16\x55\xf2\x72\x87\xeb\x5c\xe0\xf7\x95\x34\x42\x03\x95\xd3\xbe\x48\x49\x86\xb5\xee\xc8\x62\x3f\x59\x04\x94\xfe\x1a\xa5\x5f\xb7\x35\x39\x94\x99\x23\x1f\xfe\x1a\xd3\x5f\xd6\xd0\xdd\xe1\xa2\x72\xd6\x05\x49\xbf\xb2\xf6\x6a\xbf\x87\x7a\xbf\x2f\x03\xfa\xcb\x5a\x35\x7b\x54\x14\x1a\xbd\x24\x49\xd8\x93\x9d\xf7\x00\x76\xfe\x03\xd8\x05\x0f\x60\x17\x3e\x80\x5d\xa4\x55\x93\xb6\x23\x8a\x99\xd2\x98\xbe\x37\xa4\xde\xaf\xc0\xa1\xaa\x70\x9d\xa2\x06\x0f\xec\x28\xe1\x76\x34\xc2\xcb\x2e\x74\xd7\x35\x46\x59\x5a\x1f\xf6\xeb\x86\xc1\x56\x28\xcb\xf2\x72\xeb\xac\x49\xdb\x92\xfd\x0a\x44\x5c\x90\x69\x6a\x4c\xdf\x06\x10\xd2\xbb\x46\x25\x59\xd5\x5c\xd9\x23\xaa\xa5\x7a\xe8\xf9\x7c\xde\xe5\xed\xa4\x2c\xaa\xaa\xfd\xea\x85\x77\xc7\x9a\x14\x59\xdf\x11\x6a\x0b\xf6\xb8\xa0\x9f\x47\x15\xef\x56\xa8\xc4\xbc\x4f\xd6\xa4\xce\x70\xed\x3c\xe7\x59\xbb\x5b\x01\x9f\x0b\x2f\x0a\x0d\x13\x98\x18\x9a\xa6\x60\x00\xba\xc1\xe9\x51\x6a\xd9\xaa\xb9\xa0\x11\x39\xbf\xcd\x79\x0d\x98\x05\x08\x1d\xf2\xff\x9c\x1d\x46\xd4\x8a\x84\x19\x08\x9b\x5a\x01\x0f\x56\x2f\x20\xe1\x4a\x1d\x33\x01\x46\xb7\x42\x35\x2e\x5b\x51\x65\xac\x3b\xa6\x3a\x44\xe5\x63\x17\x0a\x4e\xda\xbc\xf7\x14\x1d\x1f\x61\xf5\xc2\x79\xa1\x6f\x3a\x54\xc5\xa8\x7c\x28\x0b\x0d\x13\xd6\xca\xe8\x88\x54\xf9\xa9\x51\x96\x1f\x9a\x15\x08\x64\x63\x52\xa1\x34\x6f\x5f\x57\x00\xba\x0b\xe9\x98\xc6\x19\xec\xbd\x82\xc1\x89\xf4\x24\x9d\x9f\x9c\x1a\xf2\x5d\x3b\x63\xa8\xd0\x9f\x3d\xaa\xb7\x79\xe9\x14\x78\xd3\x76\x23\x5a\x51\x88\xd3\x92\x8a\x6b\xf7\x28\x8f\x6e\x49\x1c\x4a\xad\x63\xd3\xe4\x87\xb9\xed\xe3\x10\xfc\x43\x49\xda\x1e\x45\x30\xc7\x78\x50\x78\xdb\x14\x04\xb5\x2b\x50\x53\x61\x46\xe5\x8b\x7b\xf9\xc6\x3a\x69\xa8\x45\xcd\x3e\x82\x53\xf6\x21\xcd\x03\x5e\xc5\x3c\x0c\x2d\x05\xe7\x1b\xc3\xa0\x4f\x8f\x42\xfe\x9f\x51\xbc\x60\xa4\x5b\x53\x29\x5a\x17\xce\x41\xfe\x6f\x08\xa4\x36\xac\x4e\x29\xc7\x98\x33\x27\x60\xc4\x4c\x6a\xe2\x0c\x07\x82\xd6\x28\x74\xd3\x1d\x16\x53\xbe\xd9\x34\x3e\xd6\x54\xbc\xa5\x63\xa5\x6b\x6c\x4e\xb7\x5e\x34\xa1\x2f\x24\xd7\x30\xc2\x17\x7a\x10\x7e\xc7\xa5\xdd\x89\x6e\xe9\x8d\xd2\x72\x5a\xf2\x1a\x50\xe4\x25\x46\xb5\x68\x65\x31\x27\x0d\x9a\x9c\x9c\x90\xcc\x16\x27\x67\x23\xa3\x81\x75\x6d\x45\x69\x42\x67\x45\x5e\xca\x5e\x12\x23\x90\x6b\x59\x9d\x4e\xc6\x5a\x35\x2d\x38\xc8\xe1\xc7\xc7\xc8\x0a\x40\xbd\x5b\x8d\xba\x45\x6e\x0c\x2a\xda\x40\x14\x70\xd2\x1d\xc2\xa0\x5b\x9d\x1d\xa9\xf3\xdf\x49\xd9\xa2\x42\xef\xe1\xbe\x3f\xc5\x88\xa4\x43\x5d\xef\xf2\xa8\xab\x22\xc6\x72\xcd\xcb\xbd\xae\x3c\xcb\x9b\xaa\x40\xaf\x2b\xc0\x96\xa9\x23\xe2\x36\x3b\x52\xb7\xc7\xb4\x04\x27\xb4\x54\x7e\xd5\x96\xd6\xe9\xa1\x6e\xe8\x90\xab\x48\x5e\xb6\xb8\x9e\x9a\xe1\xdf\x6d\x10\xfd\xd5\x10\x51\xda\xe6\x4f\xd2\x2d\x8d\xda\xae\x32\xdd\xdb\xd8\xed\x89\xea\xcd\x39\xb5\xc9\x19\x95\xed\x6b\x1a\x0b\x98\x7e\x37\xa2\x98\x98\x50\xcb\x8f\xe3\x6b\xaa\xb3\x30\x06\x4e\xe4\x52\x1f\x71\x91\x97\xb8\xc4\x4f\x5c\xe0\x29\xce\xf0\x15\x52\x83\x43\xf3\x54\xf6\x85\x6e\x4b\x2a\x67\x5d\xa3\x92\x6f\x2a\xd4\xd9\x52\x0e\xcd\x1e\x40\x5b\xbb\x82\x43\x5d\xbc\xbf\x4f\x49\xd9\x1c\x0a\xa7\x20\x5b\xe2\x56\xe5\xf6\xfe\x03\x80\xa0\x24\x4e\x8d\x2b\x8c\x5a\x63\x77\xc9\xa7\x8f\x80\xce\x7c\x81\xc0\x16\xc3\x4f\x7e\x94\x43\x3e\x80\x72\xbb\xd3\x92\x4a\x76\x68\x37\x85\xca\xda\xda\xc2\xce\x33\x0a\xbb\xb9\x46\x94\x0b\xc9\x64\xb1\x14\x6e\x9f\x97\x8e\xa4\xba\x8c\xb4\x9d\x50\x87\x50\xbd\x80\x77\x18\x63\xd0\x90\x22\xcf\xc4\xa0\x16\x7c\xb9\xeb\xb6\xd4\x9c\xa8\xae\x3a\x8e\xdf\x4f\x66\x9d\x97\x51\x9a\x3b\x59\x4d\xaa\x8c\x3c\x97\xba\x63\x44\x87\x96\xe8\x95\x0f\x85\x2b\xab\x3a\x7b\x5c\x1e\xa8\x43\x46\x6a\x70\x61\x7a\xd1\x3c\xbe\xb2\x31\x97\x03\xda\xba\x4e\xec\x53\xcf\x19\x43\xc6\xfe\xca\x7a\x18\x8d\xb4\xb3\x19\x49\xc3\x66\x36\x83\x69\xd0\xea\xbc\x26\xd2\xf3\x1c\xeb\x93\x89\x68\x4c\x84\xe9\xef\x91\x61\xb9\x09\xe8\xaf\xd8\xe6\x0b\xbb\xb2\x0f\x80\xc4\xe3\x41\x83\xa9\xed\xbe\xd1\xcf\x96\xbd\x6c\x11\x8a\xb3\x6c\x75\xb2\x87\x4f\x06\xe8\xac\xda\x9c\x4f\xe4\xf4\xd4\x6c\xa3\x84\xd3\x2d\x8e\x4e\xd0\xa7\x85\x3f\x55\xff\x3c\xf0\xff\x5f\xd1\xd7\x3b\x00\xc8\xa1\xa5\xd3\x60\x1f\x65\x15\x05\x8e\x19\x78\x63\x6f\x9c\xa6\x42\x29\xab\xfc\x5c\xa3\x8a\x55\x7f\xc2\xf5\xa6\x20\xcf\x2b\xb0\xcb\xb3\x0c\x97\x5d\x78\xb0\x7f\x80\x8b\x22\xaf\x9a\xbc\x19\x28\x90\x8f\x54\xf6\xb6\x40\x2d\xfe\xcf\xf7\xf0\x83\xf0\xe4\xeb\xb6\xd4\xd7\x93\x23\xae\xe1\xa8\x63\x10\x18\x1b\x92\x1e\x1a\x81\x31\x90\x74\x5a\xd6\xd1\xca\x6b\xf2\xe2\x34\x3b\x94\x51\x91\xfa\xd8\x06\x25\xa3\xaf\x59\xe7\x02\xa5\x53\x5e\x55\xe7\x7b\x54\xbf\x1a\x5a\xe8\x43\xd2\x67\x84\xcd\x98\x43\xe3\x53\xf3\x60\x79\x68\x90\x33\xfc\xf2\x98\xa2\x97\x9b\x60\x93\x98\xfb\x6b\x35\x2c\xdf\x61\x3e\xa3\xba\xec\x17\xaa\xb2\xea\x97\x2f\x7f\xfd\x25\xfa\xf5\x2d\x22\x08\x04\x53\x04\x41\xce\x42\x84\xcd\x66\xb1\xf1\x4d\x11\x36\x9b\xa5\xef\xaf\x0d\x11\x9a\x43\x9a\xe2\xa6\x31\x44\x58\xc4\x3f\x87\x51\xf2\x16\x11\x04\x82\x29\x82\x20\x67\x21\xc2\x62\x93\x0d\x45\x88\xd3\x65\x14\x06\x86\x08\x19\x2a\xb7\x83\xd1\x94\x65\x21\x8e\x16\x6f\x91\x40\x20\x98\x12\x70\x6a\x16\x02\xa4\x1b\x6f\xe3\x0d\xcc\x08\xfa\x8b\x20\x9c\x1a\x5e\x57\x1d\x04\x9c\xd2\x1c\xf6\xaf\x01\x32\xa5\x94\x44\x93\x63\x70\x54\x35\x49\xcd\xac\x30\x94\x24\x4d\xcd\x51\xb7\xcf\x4b\x19\x85\x50\x17\x3a\xdd\x72\xbb\xdb\x23\x2c\xba\xa5\xb6\x6c\xca\xc2\x18\x36\x4d\x83\xea\x05\x44\x74\x8f\xc2\xff\x1f\x0b\x3d\x44\x46\x8c\xde\x08\x7a\xde\xa9\xeb\x7b\x37\x4f\x09\x5f\xcb\x29\x7b\x81\xc8\xdc\xf0\x04\xda\xee\x65\x05\xe2\xea\xa5\x0b\xa6\x0c\xc0\x9a\x27\xe9\x77\x86\x61\xb1\x4d\x5e\x14\x2b\x90\x1e\x6a\x6a\x23\xbf\x50\x4d\xcb\x83\xa1\xa6\x75\x68\x07\x54\x4e\xde\xe2\xbd\xbe\xa3\x82\x93\xcb\xc4\xc9\x98\xd2\xdd\x40\x78\x7f\x74\xa3\xe5\x45\x5a\x31\xdf\xab\x89\xb2\xdb\xc9\x52\x7f\xb2\x64\xf6\x8f\x59\x20\x23\x23\x0f\x53\x55\xf3\x92\x4e\xc2\x46\x44\x8f\x9d\xff\x50\x75\xf7\xef\x3e\x0d\xe3\xd1\x91\x88\x47\xf7\x61\x59\x0b\x12\x72\xa3\xcd\x63\xf3\x83\xb3\x82\x6e\xff\xa8\x0e\xb6\xe0\x04\x81\xa1\xb8\x63\x41\x3b\xdd\xdb\x61\x3c\x3c\x90\x90\xae\xca\x9a\x8a\x2b\xde\x38\x3b\x5c\x54\x8a\x8f\xbc\xd6\x31\xc1\x38\x63\xb6\xf1\xef\x51\x0c\xfe\x79\x9e\x90\xe5\x28\x74\x4a\xca\x0c\x97\x0d\xce\xfe\x3c\x22\x43\x63\x37\x6a\xe9\xe6\x31\x3c\xbb\x1e\xb8\xa3\xd0\x70\xe8\xcc\x1f\x75\x85\x52\xcb\xa1\x7e\x1e\x66\x9c\xb2\x8f\x99\xd6\x18\xf7\x6e\x46\x0e\xeb\x02\xd3\xf7\xf8\xa4\x24\x6a\xe5\xce\xfc\xba\x10\x78\xa8\x1c\xb9\x58\x50\x06\x6e\x89\xf6\xa7\x69\xf2\x6a\xa3\x67\x3c\x53\xe7\xa7\xca\xd9\xcf\x39\xac\x80\xa6\x42\xa5\x2d\x3f\xb4\x6e\xc7\xd4\xe4\x0e\x8d\xff\x8c\xed\xd3\xf8\xcf\x91\xdd\x1a\xff\xd9\xa3\x17\x39\xa1\x05\xd1\x77\x7d\xf9\xe0\x20\x02\xa8\x47\x0c\xdc\x07\xf2\x0b\x31\xfd\x63\xa9\x23\xb1\x3e\x08\x2f\xd5\xd2\x1e\x15\x85\xb5\x9a\xb4\x03\xd4\x73\x59\x5c\xf4\x1d\x3c\x72\x44\xde\x2b\x63\x2c\x46\x38\xe2\xed\xce\x32\xce\x3d\x6e\x51\x86\x5a\x64\x21\xa9\xac\xda\xc9\x69\x9c\xf5\x8c\x98\xae\x3f\x38\xe5\x55\xbb\xf2\x0d\x7c\x1f\x0a\xb7\x39\xac\x4f\x33\xcd\xeb\x4d\x1f\x96\x4d\x30\x3b\x3e\x7f\xf4\x16\xdc\x47\x84\xcf\xe4\x18\x14\xb9\x35\xd3\xca\x21\x9f\xb6\x3e\xbc\x84\xee\x6a\x25\x17\x78\x4d\x5a\x93\xa2\x58\xa3\xda\x96\x8f\x91\xa6\x63\x96\xde\x07\x1c\x80\x12\xa9\x46\x55\x85\x51\x8d\xca\x14\x6b\xc1\x87\xc9\x39\xf7\x2d\x87\x93\xfd\x0c\x3d\x72\x38\x39\x3e\xcf\xdd\x4e\x02\x8d\x1d\xea\x84\x82\xba\xfe\x19\x31\x1a\xb3\xca\xb0\x0b\x6f\x87\x7f\xe0\xf4\xe1\xdf\x86\xd4\x7b\xae\x56\xc0\xdf\xa7\xa4\x6c\x6b\x52\x68\x17\x81\xff\xe9\x23\xe1\x7d\x30\xd3\x56\xe4\x13\xf5\x4d\x81\x8f\x57\x37\xc5\x3d\x5a\xfb\x1c\xe0\x7f\xba\xfe\xe5\xfe\x78\xca\xe8\xb5\x0f\x53\x91\x26\x71\x9d\x46\x01\x71\x9f\x10\xdd\x88\x0e\xc7\x8f\xe1\xf4\x7e\xfe\xf9\x0b\x5c\x44\x3c\x6e\xd2\x07\xc7\x21\x80\x6c\xfb\x2d\x1f\x8f\x61\xa3\x16\xbb\x32\x56\x7b\x65\x32\xb8\xae\x49\x7d\x9a\x48\x1f\x61\x1d\x25\xd2\x87\x4f\x35\x65\xe7\x65\x75\x90\x5e\x1c\x65\x99\x88\x8a\x1d\xbf\x7e\x4e\x57\xf1\xa8\xc6\x68\xc8\x12\xeb\x95\x0d\xda\xe7\xc5\xeb\x0a\xec\x49\x49\xd8\x0e\x41\x0d\xaa\x79\xf2\xa2\x80\xcd\xe9\x8c\x60\x95\xdd\x7a\x5b\x93\x97\xd9\x0e\x5f\x8d\x78\x88\x76\xa1\x51\xd9\xcc\xeb\xc4\x99\xa6\xf4\x7b\x05\x4a\xe4\x91\x71\x5b\x36\x8e\x64\xb3\x22\xd2\xfc\x37\xf9\x0b\xff\xeb\x0c\xf5\xce\xc6\xbb\x98\xfd\x68\xe1\x45\xb9\xb2\x61\x1b\x85\x4e\x5f\x2e\xfb\xf3\x8c\xdf\x9d\xbc\xcc\xf0\x0b\x5b\xdb\x30\xa9\x94\xb8\x65\x08\xe5\x35\x0b\xbe\xd3\x77\xf0\x13\x2e\xdb\xa6\x5f\x89\x09\x71\xeb\xed\x1a\xbd\xf7\x23\xf8\x00\xfc\xc8\xa3\x2f\xd1\x03\x80\xee\x32\xfa\x30\xd0\xdc\xc8\x5d\x77\xb1\xf7\x34\xef\x15\x4b\x99\xe9\x7f\xcd\x8e\x3c\x0b\xd9\x75\x3e\xe4\x22\xb9\x53\x90\xf6\x47\x28\x4a\xc8\x59\x41\x4f\x46\x99\xd2\x40\x78\xb4\xe3\x41\x29\xe8\x8f\xe0\x3a\x24\x4f\x6b\x53\x29\x17\x6a\xc4\x0a\xda\x94\xe0\x41\x2d\x78\xca\x9b\x7c\x2d\x6e\xe9\x1e\x95\x2a\x2d\x88\xb8\x9e\x6c\x2c\x53\xcd\x60\x70\x6f\x17\x68\xdd\x90\xe2\xc0\xcf\xeb\x94\x2d\x2a\x35\x71\x25\xfe\x31\x79\xe6\x49\xed\xa1\x54\x16\xbb\x23\xe1\x1e\x39\xc4\xa8\xe1\x6d\x50\x8a\xb9\x38\x79\xc1\x14\xd3\xc3\x1d\x7b\xac\xc9\xa7\x2a\x9c\x17\x28\x0a\xd7\xce\x1b\xf5\x66\xab\x35\xde\x90\x1a\xab\x0d\x57\x68\xd3\x8a\x48\x15\xf5\x1f\x4c\x92\xef\xbf\x9f\x56\x90\x8c\x09\xe8\x4a\x8d\xb9\xe8\xfc\x1e\x31\x7f\x2f\x6e\x25\xf3\x0f\xea\x88\xe3\x67\xa3\x23\xf2\x8c\xb1\x27\x1e\xf4\x4c\x6a\x63\x77\xb3\xd9\x8c\x4b\x38\x5c\xa2\x19\x8e\xed\xbd\x13\xc1\xef\x1e\x00\x7d\xfd\x00\x6a\xd2\xd2\xa2\x30\xca\xf0\xf6\x43\x37\x69\xda\xb7\x30\x58\xe8\x99\x3d\x97\x03\xe7\x7c\x16\x1c\x85\x87\xc7\x8f\xe0\x5f\x6b\xf2\x5c\x38\x4d\xfb\x5a\x60\x50\x92\x36\xdf\xe4\x29\xfb\x83\xaa\x06\x7c\x7c\x64\x3c\x6e\x69\x05\xee\xbf\x69\x67\xc9\x49\x80\xf7\x56\xd0\x5d\x07\xeb\x83\x3f\xd2\xa7\x19\xe7\x19\xaa\xab\xe5\x98\xe6\x90\x1e\x3a\x50\x7e\x7b\xe7\xbf\xd2\x02\x35\xcd\xff\x7c\xbe\x2f\x1b\x07\x6f\x36\x38\x6d\x9d\xfb\xff\xee\x60\xe8\x9b\x5d\x9e\xe1\x07\x51\xef\xe3\xe7\x7b\x70\xb4\xa2\xa6\x68\x54\xe6\x7b\x26\xaf\x93\xe5\x35\x4e\xb9\xf9\xd6\xf8\x09\xd7\x7c\x5a\x3a\xfa\x5c\xa8\xf0\x3f\x0a\x8a\x2a\xd4\x25\xe8\x36\x85\xa4\xd4\x6b\x4d\x4a\xaf\x55\x39\x6a\xd2\xc7\x6b\x5a\xd8\xb8\x0a\xa0\x39\xfa\xa1\xfc\x25\xda\xe3\x15\x93\x97\xc9\xf3\x6b\x81\x9a\x36\x4f\x75\x1d\x4c\xd7\x19\xd1\xe7\x41\xfe\x65\x9e\xd7\x18\x9a\x34\x9e\x0c\xdb\xb6\xf9\x3e\x2f\xb7\xce\xe6\x50\x0a\x8d\xf7\xdb\xb0\xd3\x95\xa8\xec\x3f\x49\xcc\xaf\xf8\x75\x53\xa3\x3d\x6e\x06\x5c\x33\x35\xc0\xef\xc6\x02\x07\x7c\x14\xed\x51\x5b\xe7\x2f\x41\xf6\xde\x7b\x00\x50\xf9\x37\xfa\xd1\xa1\xb3\x7b\x57\xf4\x41\xd9\xd1\xcf\x00\xc6\xd6\x34\x9e\xcb\xd6\x1d\x89\x15\xc7\xee\xd2\x5f\x06\x81\x0d\xa9\x24\x58\xba\x7e\xbc\x80\x91\x15\xf3\x6f\xc3\x65\x72\x04\x6e\xc0\x7e\x2c\xe5\x88\x97\x8b\xa5\x0d\xbd\xc8\xf7\xdc\x85\x1f\x85\xb6\x72\xbc\x05\x97\xc9\x11\xd9\x09\x90\xc0\x25\xb4\xea\xf3\x20\xa4\x0a\xf3\x3c\x4b\x01\xde\x84\xcb\x04\x88\xcf\x32\xa8\xd0\x0f\x22\x1b\x72\xbe\xb7\x70\x03\x3f\x58\xd8\x49\xf1\x06\x54\x26\xc3\xe2\x2c\x63\xf2\x3d\x18\x5b\x91\xf3\xfc\xc0\xf5\x97\x8b\xd0\x52\x8a\x37\xe1\xf2\xc1\x6d\xe7\x88\x5c\xb8\xf0\xe2\xc4\xca\x6c\x13\x37\x5a\xfa\x49\x60\x27\xc0\x5b\x60\x39\xff\xe7\x79\x27\xe8\x59\xea\x2b\x74\x13\x3f\x48\x3c\x4b\x29\x2e\x47\xe5\x42\x9c\xe3\x9a\xa0\xbb\x5c\xc2\xc8\x46\x69\x9e\xe7\x7a\x7e\xb2\x0c\x6d\x84\x78\x13\x2a\x17\xc2\xca\x2f\x41\x77\xb9\x08\x93\x85\x05\x1d\x3f\x74\x17\x71\x10\x2c\x2d\xb9\xbf\x1c\x95\x73\x7f\x8e\x53\xa2\xe4\x12\xcf\xc6\x8b\x07\xd0\x0d\x61\x04\xad\x46\xc3\x9b\x50\xb9\x10\xe7\x78\x25\xda\xe3\x5e\x6c\x47\x2d\x89\xfc\xc4\x6a\x7a\x78\x0b\x28\x13\xc1\xb7\xf2\x47\x94\x4c\x14\xda\xcc\x42\xfe\xc2\xf5\xa0\x17\x5a\x0d\xe4\x37\xa1\x72\xee\xcf\xf1\x46\x94\x5c\xb2\xb4\x71\x1c\x7e\xe0\x2e\x17\xbe\x9d\x37\x7a\x13\x2a\x17\xe2\x5c\x6f\xb4\x0c\x6c\x7a\xdc\x5b\xba\x21\x4c\x22\xdf\x56\x88\x8b\x51\xb9\x10\x76\xab\x24\x1b\x0a\x21\x35\x8b\xc8\x6e\x46\xbe\x0c\x8f\x73\x7c\xde\xb2\x08\x42\xe8\x5b\x91\xa3\x93\x6c\x64\x37\x7a\xdf\x84\xca\x85\x38\x6f\x5d\x44\xc9\xf9\x16\xe4\x12\xba\x12\x86\x89\xbd\x0c\x97\x81\xf2\x6d\x82\xed\x8a\x08\x42\x2b\x4f\x17\xb9\x7e\x90\x04\xf6\xbc\x5f\x08\xca\x79\x3f\x73\x35\x04\xad\x56\xf2\x81\xeb\x27\xc1\xc2\x6a\x22\x7e\x03\x26\x17\xe0\xbc\x4d\x1a\x84\x10\xda\xb8\x3a\xcf\x5d\x84\x8b\xa5\xed\x9a\xf4\x62\x50\x2e\x82\xe5\xfe\x8c\x92\xb1\x31\x53\x48\x17\x2c\xb1\xd5\x22\xee\x2d\xa0\x9c\xf7\xb3\x7c\x90\x15\x1d\xdf\x87\x89\x9d\xe9\x5c\x04\xc7\xd9\x3e\xcb\xeb\x58\xd0\x71\xa0\xeb\xc5\xf1\xc2\x6e\xd0\x5e\x86\xc7\x18\x0f\xe7\x0b\x03\x41\x37\x48\xfc\x85\x9d\x99\x5c\x86\xc7\x39\x3e\xcb\xc3\xd8\x11\x0a\xa3\xc8\x6e\x93\x72\x21\x1e\x67\xfc\x2c\xcf\x62\x49\x28\xf6\x7a\x6f\x3d\x07\xe3\x06\x1e\x67\x7c\xb6\x95\x0c\xa5\xe0\x7b\xb3\x6a\x5a\x87\xe3\xfc\xce\xed\x43\xa8\x29\x46\xcb\xd8\xce\x7b\x5f\x86\xc7\x19\xbf\x82\x17\xf1\x97\x9e\xdd\xe6\xef\x42\x3c\x1e\x10\x9c\xd3\x8b\xf8\x7e\x38\xab\xdf\x33\xf1\x38\xc7\x57\xf0\x22\x5e\x1c\xfb\x73\xda\xb6\x89\xc7\x19\xbf\x82\x17\xf1\xbc\x24\x98\x95\x71\x03\x8f\x33\x3e\xa7\x17\x81\xc9\x22\x9a\x93\x63\x13\x8f\x73\x7c\x05\x3f\x02\xc3\x25\x9c\x6d\x31\x32\x82\xc7\x19\xbf\x82\x1f\x81\x7e\x62\x19\x52\xbd\x0c\x8f\xc7\xe5\xe7\xf4\x23\xd0\xf3\x97\x76\x9b\xce\xcb\xf0\x38\xc7\x57\xf0\x23\x10\x06\x81\x37\x27\xe3\x06\x1e\x67\x7c\x6e\x3f\x42\xe9\xf8\xb3\xe9\x7b\x80\xc6\x99\x9e\xcd\x87\x50\xfc\x28\x9a\x71\x5b\x60\xc2\x71\x7e\xe7\xdf\xcd\x40\x18\xcf\xb7\xc6\x1e\xc2\x71\xb6\xe7\xf6\x1f\x8c\xce\xd2\x2a\xf0\x76\x19\x1c\x63\x3b\x99\xcd\x7b\x30\x02\xc1\xbc\xfc\x06\x43\x7e\xe7\xf6\x1d\xcc\x0a\xed\xce\x2b\x2e\x83\xe3\x6c\x5f\xc3\x73\x84\xc1\x6c\xdb\x98\x21\x1c\x67\x7b\x56\xdf\x11\x58\xc6\xd3\x2e\x82\xe3\xfc\x5e\xc3\x77\xf8\xe1\xac\xd6\xa1\xc3\x71\xb6\xaf\xe1\x3b\xbc\x64\x56\xeb\xd0\xe1\xf8\x69\xfa\xac\xbe\xc3\xf3\x66\x0b\xd6\x0f\xe1\x38\xbf\xd7\xf0\x1d\x30\x99\x75\x66\xd1\xe1\x38\xdb\xd7\xf0\x1d\x30\x9c\xd5\x53\xeb\x70\x9c\xed\x59\x7d\x07\xf4\x66\x1d\x84\x3a\x1c\xe7\xf7\x1a\xbe\x03\x5a\x5e\x94\xba\x08\x8e\xb3\x7d\x8d\x7d\x0b\xed\xd0\xb9\xf8\x1e\xc1\x63\x8c\x2f\x67\xdd\xb7\x40\x08\x67\x73\x1f\x23\x78\x9c\xe3\xab\xec\x5b\xe0\xbc\xdb\x16\x38\xd8\xb5\x2c\xaf\x10\xfd\xf8\x33\xd8\x9e\x35\xf6\x01\xe1\xbc\x21\x04\x03\x8f\x73\x7c\x8d\xd8\xc7\x9f\x62\xd8\x57\xf2\x21\x73\x46\x24\x4d\x3c\x71\x0f\x6e\xbe\x25\xc8\x5c\xbc\x42\x8d\x49\xf0\xed\xee\xa7\xdb\xa5\xe2\x13\xa4\x6e\x97\x8a\xcf\xc7\xbd\x5d\x2a\x9e\x26\x77\xbb\x54\x7c\x26\xee\xed\x52\xf1\x11\x7d\xdd\x2e\x15\x9f\x81\x7a\xbb\x54\x3c\x45\xee\x76\xa9\xd8\x1e\xf4\x76\xa9\x78\x92\xdc\xed\x52\xf1\x19\xa8\xb7\x4b\xc5\x86\xbb\xbe\x5d\x2a\xb6\x04\xbd\x5d\x2a\x1e\xf7\xd5\xb7\x4b\xc5\x76\xa0\xb7\x4b\xc5\x43\x3a\xb7\x4b\xc5\xb7\x4b\xc5\x27\x08\xdd\x2e\x15\x4f\xe0\xdd\x2e\x15\x83\xdb\xa5\xe2\xa3\x78\xb7\x4b\xc5\xaa\x83\xbd\x5d\x2a\xbe\x5d\x2a\x3e\x4e\xe8\x76\xa9\xf8\x76\xa9\xf8\x14\xa1\xdb\xa5\xe2\xdb\xa5\xe2\x69\x3a\xb7\x4b\xc5\xb7\x4b\xc5\x47\xac\xf0\x76\xa9\xf8\x76\xa9\x78\xda\xa5\xde\x2e\x15\xdf\x2e\x15\x4f\xd2\xb9\x5d\x2a\xbe\x5d\x2a\x3e\x42\xe7\x76\xa9\xf8\x76\xa9\xf8\x04\xa1\x79\xb7\x2d\xb7\x4b\xc5\x53\xfd\x79\xbb\x54\x7c\xbb\x54\x3c\x4d\x02\xce\xc5\x2b\xd4\x98\x04\xdf\x46\xbf\xad\xf9\xc8\xb7\x55\x1b\xdf\xc4\x7c\xf4\x6b\x9a\x4f\x7d\x3f\x33\x74\xfd\x68\xf2\x2b\x9a\xf9\xc3\x53\xdf\xa9\x7c\xf2\xde\x33\x7b\x5b\xa0\x16\x07\xd9\x7b\x27\x80\xd5\x0b\x97\xff\x83\xfe\x80\xf6\x94\x78\x60\xd3\x75\x6a\x5b\xd8\xb7\x9b\xb8\xa2\x7d\x05\x1e\x4d\x13\xf8\xf3\xa4\x3c\x46\x59\x57\xc5\xbb\x27\xdf\x51\xbf\xd8\x9d\x11\x32\xb3\x8e\x8f\x64\x0d\x49\x52\x2f\x0b\x79\xa6\x88\x01\x04\xcf\x02\x31\x92\xf7\x57\x4f\x7a\xeb\x89\x2f\x3d\x1f\xb4\x67\x09\x39\x1e\x26\xca\xc1\x5f\xc0\x47\x86\xaf\xe7\x25\x9b\x06\x5a\xb1\x44\x1f\x38\x1b\x36\xe4\x49\xed\x46\x5b\xfe\x71\xa7\xa6\x05\x7d\x7a\xfe\xa4\x25\x30\xa8\x71\x81\xda\xfc\x89\xe9\x46\xcb\x4b\xa0\x25\x1c\x71\x22\xda\x70\x14\xbe\x40\x6b\xcc\xbf\x35\xdf\xcc\xee\x30\x5d\xfd\x48\x6a\x85\x61\x9a\x3e\x99\xac\xc2\xd3\xf3\x2a\x78\xb1\xe8\x88\xbe\x43\x7b\xa9\x44\x62\x5a\xe3\x79\x8d\x2b\x8c\x5a\xaa\x65\xf1\xd6\x78\x9e\xef\xd1\x16\xaf\xc0\xa1\x2e\xde\x7f\x9f\xa1\x16\xad\x58\xc1\x63\xf3\xb4\xfd\xcb\xcb\xbe\xf8\x94\xee\x50\xdd\xe0\xf6\xf3\x3f\xfe\xfe\xc5\x59\x3c\xfc\xd0\x3c\x6d\x39\x6f\x9f\xef\xbd\xf8\x5e\xf0\xc5\xdf\xbf\xec\x8b\xb2\xf9\x7c\xbf\x6b\xdb\x6a\xf5\xf8\xf8\xfc\xfc\xec\x3e\x07\x2e\xa9\xb7\x8f\x3e\x84\x90\xe2\xdd\xff\xf8\x43\x85\xda\x1d\xc8\x3e\xdf\xff\x2d\x71\x17\xcb\x10\x2c\xdd\x65\x14\x17\x4e\xe8\x7a\x7e\x04\xd8\xab\xe3\xb9\x30\xf0\x00\x7b\x75\x7c\xd7\x83\xe2\x95\x95\x88\x87\xb4\x62\xcc\x1b\x39\xa1\x0b\x17\xb1\x78\xf5\x5c\x18\x79\xec\xf5\x37\xdf\x4d\xbc\x85\x1b\x47\x51\xc1\x0a\x69\x6b\x4a\x00\x2e\x62\xf6\x9a\x00\xd9\xda\xf3\xa3\xdf\xbc\xc0\x85\x9e\x1b\x07\x49\x41\x49\xf9\xc0\x77\x3d\x85\x0d\x5f\x65\x4f\xc1\x88\x39\x28\x7d\x71\x7c\x17\xc6\xb4\x1d\x8c\x19\x8f\x11\x7f\xe9\x79\x4b\x7e\xbf\x67\xa9\xa6\x3f\xdf\x7f\xe7\x07\x5f\xbe\x7c\xe1\x9f\x9c\xfa\x50\xe0\xcf\xf7\xf8\x09\x97\x24\xcb\xee\x1f\x7f\xfc\x81\x6a\xe9\xc7\xef\x3f\x8c\x1b\x91\x9b\x92\xc2\xd9\x67\x8e\xe7\x83\x1f\x41\x96\x3f\x31\x43\xea\x72\xd4\x78\xd1\xd4\x68\xac\x06\xa3\x59\xa4\x8c\xd1\x92\xb8\x44\x22\x7b\x8d\x3a\x00\x8c\x6c\xd4\x22\x17\xca\x72\x8a\x10\x77\x1b\x4a\xfe\x9b\xa5\xe4\xe9\xa7\x3d\xce\x72\x04\xde\x2b\xcf\x92\x78\x51\xbd\x7c\x60\x2d\x86\x92\xd6\xe4\x99\xcb\xb8\x2a\xdb\x9d\x93\xee\xf2\x22\x7b\xef\x7f\x10\x3e\x54\x4f\xa5\x2c\x53\x07\x8e\xe1\xc8\x3c\x98\x4a\xfa\x0a\x0f\xc6\xd3\xf5\x4d\x0d\x6b\xd9\x43\x06\x83\x76\x3c\xbb\xe6\x78\x96\x94\x3e\x4f\x0a\x34\xb3\xe7\xf6\x25\x6a\xb6\x14\x3d\xe5\xae\xd3\xe7\x56\xd4\x3d\x94\x17\x74\xb9\xd5\x47\x47\xf4\x7d\x8b\x32\xe4\x56\xe5\xf6\x5e\xce\x9c\xb2\x27\x7a\x95\x24\x71\x62\xd1\x13\x42\x07\x83\x54\xcb\x1a\x3f\x22\x69\x27\x4b\x83\x83\x8a\x7c\x5b\xae\x40\x8a\xfb\x1c\xc7\x7a\x86\xcc\x63\x3d\xa6\x92\x39\xd9\xb9\x22\xc1\x88\xcc\xfb\x33\x2e\xe5\x72\xe9\x4d\x4a\x59\xa9\x49\x74\x87\xd3\xd2\x71\x0b\x2d\x50\xd3\x72\x13\x95\xf6\x39\x61\x01\x5a\x32\xf7\x2e\xb3\xd0\xa4\x2a\xfa\x29\xe6\x04\x24\xd4\xf0\x84\x1f\x00\xdf\xee\x76\xed\xbe\x78\x00\x6b\x92\xbd\x32\x14\x2d\x07\x27\x4b\x20\xf2\x5c\xa3\x4a\xa6\xef\xa6\x23\xd3\xcc\xd2\x29\x3f\x53\xbd\x82\x7f\xc9\xf7\x15\xa9\x5b\x54\xb2\xf9\xe3\xf1\x23\xf8\xfb\x2e\xe7\xf9\x13\x01\x2a\x33\xd0\xee\x30\x28\xf1\x4b\x2b\x4a\x6a\x96\x6d\x06\x94\x38\xc5\x4d\x83\xea\x57\x70\x28\x0b\xdc\x34\xe0\x95\x1c\x40\x89\x71\x06\xfe\xed\xd7\x18\x34\x87\x8a\x42\x82\x8f\x8f\x26\x7b\x77\x66\xb7\x02\x27\x16\x23\xe0\xf1\x23\xa3\xc5\x33\x54\x8b\x5a\x20\x6f\x04\x03\x5b\x36\xad\x83\x27\x54\x1c\x30\x20\x1b\x56\xba\x21\xa4\xc5\xf5\xf7\x8d\x20\x01\x3e\x3e\x8a\x04\x66\xb4\xf8\x01\xb8\xd5\xa1\xd9\x69\x1a\x52\x48\xf1\x87\xfb\x43\xd3\x82\x35\x66\x68\x0d\xda\x63\x89\x84\x58\x86\x39\x0a\x23\x40\x47\xfc\x9c\xe7\xd1\xb1\xcb\x0d\xcf\xa5\x1e\x04\xe5\x25\x36\x13\x97\x7b\x10\xca\x5e\x1b\x83\xf0\xe1\x69\x08\xff\x38\x44\x18\x2c\x4e\x42\x84\x3d\x04\x02\xeb\x43\xdb\x92\x72\xa5\xa4\x5f\x1d\x49\x24\xb5\x3e\x6c\x36\xb8\x76\xfa\xdc\xca\x5d\x0a\x6e\x38\xed\xf9\x95\x91\xe8\x8a\x05\x25\xf5\x1e\x82\x19\xa5\x84\xad\x30\x65\x7e\x3b\x9e\xc1\xfe\x93\xcc\x82\xaa\x36\x74\xa9\x5f\xc1\x99\xc3\xcb\x04\x8e\x39\x4f\x04\x9d\x6c\xb2\x3a\x1b\x30\xce\x3e\xcf\x32\x99\x47\x4c\xcf\xf9\xac\x24\xf5\x21\x8e\x30\xb4\x3f\x86\x49\xca\x9e\x70\xdd\xe6\x29\x2a\x1c\xee\xe9\x94\x2a\x22\x41\x34\xec\x70\x9a\x36\x4f\xbf\xbe\x8a\x24\xbd\xac\xa2\xe6\x13\xfa\x51\xce\x2b\xea\x65\x72\xeb\xd0\x3f\xeb\x33\x90\x71\x44\x4e\xa4\x26\xcf\x2e\x5b\xe4\x8b\x7c\xef\x63\x89\xe5\x97\x9b\x60\x93\x88\x2e\x64\x4a\x93\x75\x55\xe5\xfb\xd5\x0b\x57\xba\x96\x62\xd0\x5d\x6f\x9d\x2a\x2f\xbf\x4e\x61\xab\x09\x53\xd7\x5b\xa7\x60\x4a\x3e\xd6\x40\x63\x66\xeb\x90\x1a\x95\x5b\x3c\x55\xf9\xcb\x97\xbf\xfe\x12\xfd\xda\x55\xde\xd6\x18\x4f\xe6\x45\xec\x93\x37\xb2\xba\x19\xaa\xbf\x1e\x6f\xb0\x88\x7f\x0e\xa3\x9e\x93\x23\x0a\xec\x53\x36\x0a\x36\xd0\xeb\x54\xd5\x3e\x73\xb6\xa2\x8f\x63\x0d\x54\x5d\x23\x96\xfa\xc8\x91\xf9\x9c\x55\x27\x1d\xc9\xb4\x75\x6a\x32\x72\xcf\x28\x94\x79\xfc\xbb\x45\x92\x8b\xf7\x6b\xda\xc1\x79\xd3\x3a\x4f\x39\xe6\xc9\xa2\x8c\xa4\xd9\x93\x3b\x25\x61\xd5\x12\x34\x18\x03\xcd\x5b\xbc\xef\x91\x8f\xa6\x8c\xeb\x27\x22\x6e\xbe\x48\xe6\xf3\x1b\xf2\x23\x85\x5e\x40\xa8\xad\x48\x47\x58\x29\xf2\xaa\xcb\x63\x3f\xb6\x5b\x9c\xc8\xdc\x37\x91\x36\x7f\x2a\x2d\x3e\xa3\x95\x11\xa7\x20\x5b\xc2\x79\xee\x13\x24\xc6\x9f\x0c\x0f\xe0\x04\x92\xbb\x96\xec\xc9\xb6\x46\xd5\xee\x15\xb8\x7d\xd7\xf3\xf5\x79\x5e\x14\x46\xef\xab\xb5\xd1\x4b\xde\x28\xf5\x64\x02\xc9\xa6\xad\xc9\x57\xac\xa5\x41\xe7\x45\x4e\x86\x9a\x1d\xaa\x6b\x2a\x78\x08\xc2\x11\xf2\xbd\xb3\x9c\x80\x8c\xa2\x68\xd8\x8c\x6d\x73\x59\x2b\xad\x5e\x2f\x80\x3a\xea\xd4\x86\x74\xea\x10\xeb\x05\xad\xb5\x3a\x94\xc6\xeb\xf3\x7c\x68\xa3\x34\x85\xac\x72\xb3\x3c\xa6\x66\xea\x2d\x47\xc8\xaa\xc3\x72\x50\x9d\xf6\xfa\x60\xd3\x24\x53\x40\xb2\xb5\x6d\x99\xee\xe8\x60\x6d\x5a\x54\xb3\x44\xb9\x77\x8f\x1f\xdf\x81\x86\x1c\xea\x14\xff\x0d\x55\x55\x5e\x6e\xff\xf1\xef\xbf\x7d\x5e\xa3\x06\xbb\x69\xd3\xb8\x7b\x54\xd1\x55\xce\xff\x06\x00\x00\xff\xff\xc4\x3e\xd3\xaa\x36\xa6\x00\x00") - -func web_uiV1StaticBaseCssBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticBaseCss, - "web_ui/v1/static/base.css", - ) -} - -func web_uiV1StaticBaseCss() (*asset, error) { - bytes, err := web_uiV1StaticBaseCssBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/base.css", size: 42550, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticBaseCssMap = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3c\x59\x53\x23\x39\x93\xef\xfd\x2b\x26\x78\xa5\x76\xcc\x65\x8e\xf1\x53\x4a\xa5\xaa\x92\xcb\x05\xed\x81\x3e\xe8\x8d\x8d\x0d\x68\xc0\x65\xe3\x0b\x5f\x60\x36\xf6\xbf\x6f\xe8\xce\x52\xc9\x40\xcf\xf4\x7e\xd1\xf3\x05\x6f\x90\x4a\x49\xa9\xcc\x54\x5e\x95\xf2\xff\x7c\xd8\x5a\xdd\xce\xe6\xfd\xc9\x78\xeb\x8f\xdf\xf6\xa3\x0f\x5b\xa3\xab\xe9\xb4\x3f\xee\xcd\xb7\xfe\xf8\x6d\x0b\x00\x20\xe2\x00\x79\x8b\x01\x8d\xa3\x39\x01\x98\x93\x88\x01\xd0\xe8\x0b\xc0\x17\x01\x1d\xd2\xe8\x1c\xe0\x5c\x00\x99\x40\xe5\x02\x78\x17\xe5\x00\x79\xc4\xe8\x23\x19\x11\x05\x6d\x41\x3c\x23\x25\x8d\x28\x00\x13\x28\xcc\xa0\x74\x47\x24\x3a\x03\x78\x24\x2d\x16\x7f\x2c\x63\xb9\xb0\x5a\x2d\x05\x48\x5b\x8c\x7d\x1c\x92\xe8\x9e\x00\xdc\x93\x88\x25\x5d\x2e\xa9\x78\x20\x62\xe0\x89\x46\xb7\x00\xb7\x11\x4b\xce\x10\xf8\x74\x45\xa3\xef\x00\xdf\x23\x96\x14\x08\xdc\x59\xd0\xe8\x0a\xe0\x2a\x62\x49\x8e\xc0\xed\x31\x8d\x3e\x01\x7c\x8a\x58\xc2\x1d\x18\xd8\x33\x15\x54\x75\x5b\x1c\x68\x5b\xef\x62\x4f\xc8\x81\xce\x88\xa6\x5f\x00\xcf\x04\x71\x2d\x06\xe9\x11\x89\xba\x00\xe7\x02\xa1\x53\x1d\x3f\x6b\x71\x60\x37\x82\xae\x6e\xab\x10\x4b\xea\xd3\x77\xbe\xe8\xc3\xb7\x20\xfe\x34\x8d\x11\xb3\x35\xc2\x37\xc5\x9e\xb3\x16\x8b\xaf\x1a\x24\xea\x11\x80\x1e\x89\x18\x9d\x92\xae\x82\xb7\x20\x5e\x92\xb1\x14\xc8\xa5\x98\xf9\xe7\x4b\xf2\xd8\x25\x66\xb9\x16\xc4\x87\x62\x5a\x0e\x50\x08\x94\xc4\xa0\x34\xb0\xc8\xee\x69\x49\x25\xf3\x47\xa4\xb2\xce\x94\x22\xa4\xa5\x40\x62\x52\x58\x40\x0d\xef\xc5\xf6\x82\x10\x01\x7b\x26\x35\xa9\x02\x2d\x0d\x07\xe9\x13\x45\x44\xed\xd1\xb1\x5c\xe2\x56\xe0\x7c\x45\x8b\x99\x79\x63\x12\xde\x41\x70\x86\x09\xce\x5b\xcd\x6a\xd0\x5b\xbb\xec\x28\x1e\x53\xb1\x84\x64\x07\x38\x36\xce\xe2\xae\xe6\x52\x3c\x8f\x9b\x58\xa8\xb9\x96\xc4\xb7\x30\xed\x1e\x93\x5b\x00\xe9\x98\x20\x6e\x7a\x93\xc4\xf8\x94\x44\x85\x94\x24\xd0\xcc\xd0\x58\x32\xc7\x48\xd6\x29\x29\xc2\xb8\x04\xb8\xac\x6e\x3b\x20\x1a\x98\xe4\x97\x5a\x29\xe8\xe9\x80\xda\xdb\x41\x19\x8f\xfa\x14\xa0\x47\x5b\x2c\x8e\xc7\xb1\xd6\x5b\x4a\x11\x18\x86\xb1\xe6\x1f\x05\x04\xa6\x83\x58\xdf\x0e\x1a\x23\x30\x3b\x31\xb7\x83\x26\x0e\x0c\x6c\x1a\x47\x0f\x44\x08\x89\x0b\x21\x09\x52\x14\xa5\x5d\x7d\x65\x06\x4e\x53\x05\x58\x1a\x0b\x0e\xf4\x88\xf8\xa7\xe2\xf8\x54\x89\x56\x69\xc6\xf2\x06\x09\x6f\xa0\x56\x15\xd0\xe7\x9a\x0c\xb8\x53\xd0\xe4\x42\x8b\x9e\xb3\x4f\xfb\x46\xaa\xc9\xb7\x5b\x8d\xc8\xae\x9e\x88\x3e\x2e\xa6\x64\x48\xd0\x4e\x1a\xc8\xbe\x45\x7b\x44\x48\xb5\x10\x52\xf5\x76\x2c\xc4\x8e\x9e\x36\x16\x21\x7d\x2f\xa4\xce\xbc\x05\xc8\x81\x4f\x49\x74\x4c\xf4\x52\x1f\xd1\xf2\xfa\x90\xe9\x82\x48\x49\x5c\x8a\xf1\x3f\xb5\x78\xf0\xa2\x77\xbe\x16\x17\x01\x2d\x2e\xd0\x0d\x4c\x1a\xe4\x8b\x62\x57\xc1\x7a\x74\x55\x63\x2c\x83\x7c\xb5\x41\x1e\xb7\x1a\xf6\xf4\xa2\x34\x9e\xa8\x15\xc7\x9a\x3a\x79\xec\x53\x2b\x90\x03\x1a\x92\x08\x1b\x92\xd7\xb8\x5f\x63\x9f\xb8\x66\x3f\x99\x3d\xb3\xd8\xb2\x67\x1e\x87\xd8\xc3\x57\xca\x45\x5d\x8a\x53\xff\x19\x66\xcf\x44\xda\xa7\x42\xd8\xa7\xd0\x39\xf4\x56\xcf\xf4\x8b\x61\xc9\x9e\x98\x25\x98\x2e\xa9\xa9\xb9\x59\x0e\x6c\xac\xb8\x23\x15\xa5\x13\x1e\x3f\x24\x00\x57\x62\xfc\xc2\x57\x24\x06\xbc\x49\xa2\x3e\xd1\x57\xf3\x23\xe2\x8a\x91\xdf\x57\x61\x8d\x0a\x0c\x8b\x87\x09\xf2\xc6\x74\x94\x74\xa3\x03\x02\xb0\x47\xd4\x90\xb5\x38\xf7\x78\x60\x90\x0c\xac\xcd\xe9\xe3\x81\x32\x29\xad\xd5\xe9\xe1\x81\x06\x3b\xb2\x76\x67\x9b\xd9\x01\x06\xe9\x38\x96\x24\x5f\x09\xf2\x2e\xa2\x91\xf4\x4c\x15\x23\xc9\x35\xab\xe5\x85\xa6\xe8\x00\x14\x80\xaa\x59\x4b\xc7\x53\x6f\x58\xf2\xc9\x83\x31\xe0\x33\x22\x29\x98\x13\x6d\x24\x42\x9c\x7a\x0b\xf7\x84\x9e\x39\xfb\x67\x60\x15\xab\xa3\xbd\x4e\xaa\xb9\xfc\x5d\x20\x7c\x0e\x9d\x33\x6d\x12\x79\x90\x11\x51\x37\xcd\xed\xa5\xa3\x0d\x7a\x57\x31\xc1\x67\x00\x87\x86\x83\x57\x32\x46\x89\xa7\xd9\x57\x27\xca\x75\xd6\x8d\x1e\x09\xc0\x52\xf0\xff\x29\x3b\x31\xa1\x15\x7d\xc4\x03\xab\xec\xc8\x38\x78\xba\xc4\x03\x8b\xac\x69\xc2\x2b\x3a\xc7\x03\xb3\xec\xd9\x8a\xf2\x01\x0d\x00\xdd\xa7\xc6\xee\x37\xd3\xae\x8e\x82\x38\x5b\xa6\x4d\x2a\xcd\x5f\x8f\xa8\x8b\xa9\x71\x9e\x52\x6e\x71\x8e\x05\xce\xa3\xd4\xdc\x22\x6e\x66\x03\xa4\x91\x87\x99\xd5\x16\x31\xe4\x34\xf2\x00\x0f\xec\x67\x4e\x23\xf7\xf0\xc0\x6e\xe6\x34\x72\x07\x0f\x3c\x67\x4e\x23\xd7\x68\x40\x1e\xc3\xf0\x39\x29\x33\xb0\xe1\x5c\x7a\x33\x8d\xc5\x0c\x19\x25\x7f\x44\x76\xc8\x04\x65\x25\x41\xc0\x63\x0a\x70\x2c\x94\x8d\xee\xc6\x28\xdc\x34\xf1\xcd\x6e\x4d\xe9\x58\x40\xc1\x5a\x00\xbc\x24\x2a\x6e\x65\x22\xc8\x74\x7a\x65\xe6\x5c\x23\x43\x67\x60\x03\x52\xb7\x0d\x74\x8a\xcd\xb1\x01\x8e\x49\xf8\x1c\x0e\x53\x2c\x24\x02\x04\xe5\xe9\x73\x21\xe7\xd8\x9f\xc3\xbd\x00\xca\xe8\xfc\x54\x99\x3b\xad\xf3\xb5\xf3\x16\x1f\xa5\x35\xd3\x31\x9e\xe7\x75\x79\xc8\xeb\xfa\x1b\xf9\x7e\x29\x3b\x22\x67\x1a\x48\xdb\x27\x4e\x8b\xd8\x3d\xed\x11\x13\xed\xf0\x64\x40\x1b\x46\x26\xac\x5f\x19\x29\xe9\x89\xd1\x23\xd6\xab\x8c\x34\xc8\x91\x51\x24\xb6\x4d\xf0\xc8\x09\xd9\x35\x1c\x61\xc7\x78\x44\x46\x55\x23\xea\x65\x08\x2e\xbf\x28\x6c\x98\x5b\xbd\xd3\x2d\xa0\x2b\x3a\x66\x28\x75\x78\x7b\x04\x1e\x4a\x15\x82\x71\xa7\x22\xa6\x0d\x26\x5a\x65\x15\x86\xa5\xb9\x0b\x0e\xb3\xb6\x0d\x3c\x53\x8e\xc0\x99\x0d\x3c\xd3\x14\x81\x13\x1b\x78\xa6\x28\x7a\xcd\x62\x1b\x78\xa6\x28\x7a\xcd\x3a\x8b\xd8\x6d\x5a\x70\xa9\x10\x07\x44\x0c\x34\x8c\xc1\x12\xb4\x58\x70\xfb\xc4\x98\x2b\x41\x8b\x05\x8b\xcb\xac\x37\x4d\x11\x38\xd9\xb5\x9b\x32\x04\x3e\x1d\xa2\x4d\x51\xa6\x99\x9d\xda\x04\x34\x45\x99\x66\xd6\xb1\x09\x68\x8a\x32\xcd\xac\x6d\x13\xd0\x14\x65\x9a\x59\x66\x13\x50\x41\x8b\x4d\x40\xa9\x4a\x40\x6b\xd7\xd7\x5d\x35\x93\xa0\x4c\xb1\x6c\x0b\x9d\x80\x8c\x65\x26\xda\xad\x02\x2b\x37\xb5\xab\xad\xc4\x4a\x05\x01\x7d\xad\x53\x02\x41\x5c\xe0\x52\x52\xa5\xf3\x5f\x5f\x15\xf9\x06\x55\x54\xee\xc5\xcd\xf3\x0e\xc0\x03\x07\xe0\xf2\x00\x21\xc4\x9a\xa5\x49\xd5\x49\x75\x7a\xfd\xf7\xd6\xe9\xf9\x86\xa6\x3d\x23\x26\x46\xe5\x73\xb2\xbf\x31\x7f\x71\x26\xb7\xaf\xe3\x61\xb6\x22\x52\x6c\xfa\xda\x9a\x79\xed\x27\x02\x3a\x6a\xe4\x6b\xb2\x0a\xd5\x0b\xf8\x80\x06\x08\x59\x38\x42\x96\x6f\x26\x44\xba\x54\xd6\x08\x52\xa2\xb7\x54\xee\xea\x88\x56\x09\xd9\x11\x84\xe4\xcf\x21\x42\x66\xd4\x71\x84\xbe\x95\x90\x07\x49\xc8\xd1\x4b\x84\xec\x48\x42\x9a\x1e\x21\x8f\x92\x23\x2b\x79\xa3\x74\x78\xa7\xe9\xd0\x79\x3c\x6f\x71\xde\x8b\x9f\xde\x48\x87\x38\x0a\x5b\x28\x8f\x12\x26\x43\x99\xd4\xa9\x47\x46\x5f\xf2\xa3\xa4\x48\xd3\x34\x19\x63\x66\xd9\x31\x61\x3f\xaa\x20\xfd\x80\x82\x2c\x98\x55\x90\x25\x0b\x28\x08\x97\x05\xa5\x47\xb9\x4a\x51\x8d\x31\xd5\x34\xa0\x37\xfe\xa1\xce\xb4\x9b\x70\x54\x68\x8f\x9c\x9f\xc8\xcb\xaf\x63\xfd\x90\x4f\xf4\x52\x5f\x06\x69\xf9\xf6\x29\x28\xd1\x09\x66\xf8\x5e\x6a\xd7\x02\x28\x9e\x14\x57\x3e\x6d\x2e\x5a\x79\xe1\x8d\x2c\xc6\xd4\x42\x65\x7a\x23\x65\x2c\x29\x4a\x82\x21\xb7\xf8\x4b\xc1\x04\x69\xd2\x5f\x66\x5a\x8d\xa4\xb4\xe9\x35\x5a\x55\xc7\xfc\xf4\x73\xd8\x0f\x06\x22\xf1\x40\xe6\xca\x64\x54\xff\xa6\xf8\xa9\xdd\x41\x09\x15\x2f\x9c\xaf\x6b\x77\xac\x1f\xe5\xc8\xbd\xb6\xdb\xd6\x8f\x72\xe4\x5e\xdb\x99\xf5\xa3\x1c\xb9\xd7\x76\x62\xfd\x28\x67\x5e\x01\xe7\x91\x01\x2c\x65\x4a\x34\xc6\x89\xd0\xc8\x26\x15\xfb\xc4\x17\xb0\x4a\x3b\x0e\x5d\x02\x16\x94\xb5\x52\xd3\xce\x57\x93\xdc\xe7\x97\xf5\xea\x00\x93\xe5\xb2\x35\x05\x58\x13\x5d\x4f\xf5\x82\x48\x75\x9b\xf4\x5a\x43\x62\x17\x9b\x90\x27\x12\xad\x63\x97\x20\xfc\x60\x36\xdf\x99\xd9\x62\x47\x3e\x27\x9b\xb2\xf9\x1d\xa9\x99\x1c\xe8\xe9\x5b\x32\x3b\x75\x57\x7a\xd4\x38\xc7\x9b\x1f\x4a\xc7\x76\xa8\x0c\x34\xd4\xed\xf9\x91\x89\x0f\x0c\xe0\x51\x4a\x70\x6a\x72\xa9\xce\x33\xd5\x45\x34\x9e\xef\x08\x09\x06\xab\x5c\x5e\x51\x84\x03\xab\x5d\x36\x0e\x45\x8d\x8d\x1c\xda\x25\x89\x0e\x13\x21\x9e\x42\x5c\x91\xda\x9c\xbc\x24\x51\x3f\xf9\x91\x82\x4d\x01\xac\x24\xd1\x5e\x22\x44\xd7\x15\xc1\xab\x17\xcb\x74\x43\xb1\x4c\x37\x14\xcb\x74\xa1\x5a\xba\x92\xcb\x77\x85\x30\x3c\x09\x76\x71\x09\x4b\x31\x4e\xc0\xa6\x35\x66\x15\xb2\xd6\x76\x98\xe8\x2d\x13\x74\x1d\xcc\xa4\x59\x6d\x52\x57\x72\xd8\x3b\x65\x37\x14\x6d\x77\x5d\x26\xd2\x79\x66\x67\x46\x6c\x87\xc2\xb9\xac\x13\xa1\x7f\x85\xd0\x3f\xcf\xe2\x49\xab\xbf\xb9\x82\x84\x61\xc6\x63\x74\x06\xc9\x17\xb3\xfa\x24\xd9\x27\xd1\x28\x51\x9e\x22\xcf\x82\x15\x90\xcd\xab\x77\xf6\x13\x7b\x79\x0e\x92\x15\x16\x8c\x46\xfd\x78\x23\x69\x97\x47\xa6\xbe\x5d\x2d\xa0\x7b\x13\xad\x33\x19\x25\x74\xa5\xad\xf0\x02\xb6\xae\x30\xc6\xc6\x1a\xa2\xeb\x95\x4f\x69\xf4\x40\x75\x74\xe1\x6c\xcc\x4f\x29\xc1\x30\xe0\x0b\x55\x4b\x39\x6f\xf1\xf6\x10\x15\x45\xf8\x08\x15\x2c\xda\x43\x57\x14\xe1\xf7\x78\x60\xe0\x8a\x22\xbc\x8f\x07\x4a\x57\x14\xe1\x3d\x3c\xd0\x48\x6d\x51\x84\x6f\xa7\xc1\xa2\x48\x67\xe1\x8a\x22\xf9\x63\xda\xa4\xd1\x36\x93\xc6\xbb\x68\x2f\xb2\x85\xab\xf9\xf3\x65\x76\x69\xab\x11\x62\xc8\x3a\x8d\x39\x1e\x98\x65\x33\xeb\x36\x1e\xf0\xc0\x34\x9b\x5a\xc7\x31\xc1\x03\x63\xe1\x51\x34\x8d\x23\x34\x00\xb4\xe1\x2a\x1e\x9d\xdd\xd4\x55\x3c\x8a\x9b\x32\x8e\xd6\x32\xf6\x62\x1d\x28\x9d\x5b\xcb\x69\xd7\x66\x53\x1d\xb0\x6e\x2d\x07\x04\xa6\xd6\xad\xe5\x31\x02\x33\xeb\xd6\xf2\x04\x81\x53\xeb\xd6\xf2\x0c\x81\x63\x94\x1e\xe6\xac\x2b\xab\xa3\x3b\x72\x60\x60\x37\xa5\x08\x0c\xa5\xdd\x14\x10\x58\x9c\x50\x6f\x1a\x23\x30\x6b\xda\x4d\x13\x04\x4e\xa6\x68\xd3\x14\x51\x93\xb8\x93\x32\x4c\xa4\x3b\x69\x85\x2f\xee\xa4\x15\xbe\xb8\x93\x22\xbe\x00\x2b\xe3\x68\x8f\x02\x4c\x48\xb8\xca\x01\x90\x8f\x49\xb4\xad\x84\xe1\xa2\x99\xd3\x33\xae\x3f\xb1\x14\xa7\x2b\xec\x07\x6e\xe5\x52\x00\x45\x49\xa5\x3f\xaa\xce\x8a\xc1\xcc\x62\xe3\xd0\x2c\x71\x3d\x1f\x6b\xb3\x4e\x41\x85\xed\xac\x38\x2b\xbd\x59\xf7\x72\xd6\xae\xaa\xf4\x99\x6f\x8b\x46\xa9\x4e\x9b\x84\x9b\x0f\x77\x45\x4f\x44\x27\x0f\xaa\xfa\xca\x3c\xd3\x6a\xaa\x1b\x0b\xec\x36\x4d\x58\x78\x5d\x4f\x6b\xe5\x47\xb8\xf0\xd7\xc5\xbf\x52\x28\x51\xf6\xe6\xb4\x69\xbf\x85\xb2\xe2\x90\x36\x49\xbd\xc2\xc6\x06\xaa\x26\x5d\xa8\x18\xd5\x0b\x9a\x5a\x40\x67\xf1\x33\x2e\xdb\x39\xa3\x6a\x0e\x73\x87\xd8\x77\x66\x38\xd6\xa8\x99\x4f\xaf\xc0\x87\xe8\x0f\x21\xd6\x2a\x70\x02\x31\x58\x09\x74\x96\x75\x6d\x25\x71\xf4\x03\x9c\xf2\x52\x0b\x21\x87\x92\x08\x3d\xe8\x11\x15\xd5\x7b\xbb\x0a\x04\x15\x33\xca\xec\xe0\xd4\xcf\x7c\x64\xd4\x5f\xcb\x57\xea\x71\x9f\xfa\xea\xda\xba\x05\x6a\x36\xf2\x1c\x92\x40\xb8\x41\xfb\x78\xde\x50\x0c\x5f\xb7\xee\x09\x50\xa3\xa3\x6f\x27\x74\x63\x95\x56\xd2\xe1\x44\x6c\xea\x30\x95\xef\x0a\xe6\x44\x9f\xe5\x5f\x55\xd8\x9f\xe1\xca\x4e\xb0\xae\xeb\x45\x93\xf2\x08\x7b\xd2\x90\x57\xe7\x8f\x69\x25\xb3\x91\x60\x71\xb6\xc6\x06\xe6\xd9\xc3\x0f\x48\xab\x47\x80\xd6\xf3\x28\xa6\xfb\x3c\xbe\xbe\xfd\xa8\x8e\x58\x03\xfb\x1a\x3c\xbe\xcb\xe7\x0c\xec\x02\x5d\x0f\xa9\xcb\x82\xb4\x19\x69\xcd\x09\xd0\x25\x09\x67\x5e\xfa\x8b\x7c\x9f\xe8\x62\x0c\xbd\xa9\x18\x8c\x91\x08\xe6\x65\x26\x38\x8b\x91\x4e\x6b\xb0\x3c\x7a\x5c\x49\x21\xf1\xe4\x09\x05\x18\xc9\xc9\x0b\x3c\x59\x83\x5b\x00\x7c\x18\x4b\xe3\xbc\x2d\xec\x20\x6b\x60\x0d\x72\x27\x36\x72\xbc\x40\x27\x36\xb0\xcf\xe1\xdb\x5b\x4f\xb3\x45\x04\xeb\x5a\x43\x6a\xdf\xb6\xe8\xc5\x86\x3b\xb3\xa4\x40\x1f\x25\xc6\x94\x56\x54\xc6\x28\xd2\xb4\xaa\x32\xda\x5e\x03\x2f\x75\x6f\x10\x08\xf1\x61\x06\x79\x07\x53\x77\xab\xb2\x4d\x58\x42\x22\x38\x5a\xcb\x35\x66\x04\xb5\x20\xd9\x5e\x00\x91\x81\xe3\xae\x13\x07\x16\xbe\x4c\x7a\xe9\xaa\x4a\xa2\xc2\x35\x06\xeb\xcf\xea\x7d\x5a\xbd\x1a\xcf\x54\x1a\xbd\xb5\x7f\x35\x66\x54\x28\xc3\x71\x2c\x88\x3f\x8a\xe5\xc9\x44\x86\xa4\xeb\x3e\x46\x13\x0e\x62\x80\x83\x58\xc1\x9d\xc4\x34\x54\x58\xd1\xb6\x12\x7d\x6d\xe2\x52\x64\xe7\xcc\x9f\xa8\xa1\x0c\xe8\x6e\xe7\xaf\x4f\x0c\x93\xfa\xda\xc4\xf1\xa6\x1d\x45\x1a\xfa\x50\x9b\xa8\xa1\x82\xb1\x7f\x83\xd4\x54\x45\xed\xde\xc4\x39\x03\x98\xd7\x26\x6a\xa8\x30\x30\x1d\xf5\xe5\xed\x87\x49\x5d\xfd\x8d\x89\x61\x52\x5f\x9b\x58\xfe\x74\x52\x27\x0c\x60\x52\x9b\xa8\xa1\xe2\x16\xfd\x3a\xa4\xfe\x65\xae\x6e\xc7\x00\xdb\xb5\x6b\xa5\xa1\xc2\x98\xe4\xbf\x0c\x57\x5f\x9b\x78\xb2\x89\xd4\x11\x03\x18\xd5\x26\x6a\xa8\xba\x8f\xbf\x0a\xa9\xc7\x31\xc0\x71\x4d\x1c\x1a\x2a\x6c\xe8\xa6\x89\xaf\xc9\x71\x3f\xff\xd9\x0a\xf0\x86\x1d\x7f\x32\xa9\xaf\x31\x67\xf8\xeb\x90\xfa\x0f\xe2\xea\x3b\xa9\x2f\x90\x7a\x18\x03\x1c\xd6\x26\x6a\xa8\xb0\x72\x3f\x5d\x57\xff\xb2\x05\x78\xc3\xc4\x77\x52\xdf\x49\xfd\x25\x48\xfd\xd7\x5b\x80\x7f\x3d\x57\x7f\x49\xbb\xca\x55\x87\x87\x37\xf1\x31\x06\x78\xac\x4d\xd4\x50\x80\x74\xbf\x2d\x12\xd7\xf7\x0c\xed\x3d\x43\x7b\xcf\xd0\xde\x33\xb4\xf7\x0c\xed\x1f\xe2\xf3\xde\x33\xb4\x7f\x0f\xae\xbe\x93\xfa\x9e\xa1\xbd\x93\xfa\x4e\xea\x7b\x86\xf6\x9e\xa1\x6d\xce\xd0\x36\x7e\xdd\x3b\xd7\x1d\x19\x83\x0d\x2f\xca\xf1\x97\x3d\xf3\x05\x14\xbd\x85\x06\xfc\x29\xf8\x48\x3e\xe0\x4b\x45\x22\x98\x6c\xca\x03\xfb\xc2\xf6\xaa\x0f\xbe\x6c\xc3\x71\x26\x44\x77\xae\xa4\x65\x2c\xfe\x79\xd3\x82\xde\xe1\xdd\x36\x8d\xec\xe5\x6d\xfc\x20\x4f\x6f\x4e\x9f\xbb\x0d\x86\x3e\xac\xd6\x9e\xb3\xca\x4f\xf5\xb5\xb6\xf0\x16\x00\xdb\x27\xe8\x2d\xff\xe0\x4d\xaf\x7f\xc4\xb4\x31\x69\xed\x10\xa0\x7b\x44\x73\xbe\xde\x06\xc0\xee\xa2\x7b\xfb\xc9\x7b\x40\xfd\x96\x45\x81\x51\x92\x57\x69\x0e\x36\x0a\x84\x3e\xf6\xbb\x2f\xd6\x76\xf9\xa9\x52\x9e\xa5\xd1\x24\xaf\xf1\x41\xa0\x0c\x54\xe7\xf2\xb1\x44\x69\x92\x60\xaf\x42\xa8\xbb\xfc\xad\x2d\x1d\xb5\xaf\xe1\x6a\x1b\x2c\x59\xa3\xbe\xcd\xea\xeb\x81\x83\x4b\x80\x83\x4b\xd5\x16\x73\x25\x3f\x42\xab\xce\x83\xb2\xf6\x04\x48\xf3\xfa\x35\x21\x06\x1b\x73\x82\x0d\x22\x41\x71\xbf\xb8\x81\x66\xe5\x5a\xb7\xbf\xc9\xa6\xe5\x47\x0a\xb0\x96\x8d\xc8\x2b\xea\xb7\x57\xca\x6e\x73\xbb\x24\xf7\x96\x54\x02\x64\xf2\xa5\xf7\x9a\x02\xec\xc8\x55\x9e\xa8\x2f\x1d\x1e\x90\x8e\x6c\xb4\xf6\x94\x66\xf3\x03\xdd\x50\x27\xa8\xd7\x5d\xc2\xab\x0f\xc6\xcd\x26\x03\xe2\x6b\x9c\xda\x05\x8b\x50\xb6\xc7\xab\xae\x80\x0a\x67\xf6\x88\xe9\xed\xae\x3f\xe1\x94\x64\xb9\x95\xcd\x03\xe5\x1b\x44\x42\xa1\x9b\xc6\x2a\x6f\x84\x55\x6b\x12\x03\xf6\xad\xca\x55\x6f\x79\x81\x71\x5d\xc5\x70\x3c\x90\x0b\x83\x7c\x67\x5c\xa1\x77\x49\x54\xcb\xa9\x6c\x87\xf0\x95\x8f\x09\xe5\x9b\x53\xf3\x6c\x60\x46\xc3\xdc\xf7\x1a\x3d\xd0\x53\x9e\x0a\xf5\x9f\xcd\x8d\x55\xed\xff\xaf\x2c\x65\xb8\x53\x6b\xb1\x02\x5a\x26\x77\xf6\xa1\xed\x45\xe0\x4d\x6c\x7a\xa3\x7e\x95\x65\xf3\x3b\x5c\x37\x47\x3f\x73\x10\xee\x8d\x01\x6c\x4b\xb3\xf0\x94\x06\xef\xbb\x83\x5d\xaa\xfe\x1a\x97\x89\x8b\x4d\x9b\x89\x6d\x34\xbc\xae\xcf\x77\x4f\x7e\x05\xee\x49\x2c\xdd\x99\xb5\xb0\xda\x0d\x57\xf8\xa6\x25\xc6\x07\xe4\xff\x05\x37\xbf\x16\x67\xd7\x0d\x9c\x75\xab\xc3\x55\xa3\xfb\x77\xff\xe8\x88\xc7\x15\x3d\xba\xd4\x4f\x44\xb0\x82\xf7\x15\x82\xb2\x12\x7b\x44\xbf\x22\xa8\xf5\x63\x83\x7d\xc3\xff\x60\x5a\xb7\xbc\x97\x34\xaa\xbb\x0b\x3d\xae\x0e\xb5\xed\x55\x7a\x8f\x82\xed\x61\xa8\x11\x34\xd4\x74\x15\xec\xb2\x73\x40\xfd\xae\x4a\x1c\xd6\xc3\xd4\xcf\xb0\x2f\x6d\x4b\x97\x31\x14\x17\x63\x66\x1b\x5b\xcf\x97\x6c\x4c\x23\xd7\xf6\x55\x63\x93\x58\x65\x9f\x5a\xcd\xed\xb8\x55\x4e\x58\xd7\xf6\x5c\x9f\xf7\x93\x69\x8c\x0e\x62\x91\x06\x89\xfd\x7d\xa0\xf3\x49\xa2\xde\x98\x6a\x6e\x59\x9c\x23\xe6\x70\x7a\x49\x85\x1c\x8b\x33\x43\xeb\x3c\x26\x95\xdf\xe6\xb1\x38\x4f\x08\x67\x4f\xe0\xb8\x56\x56\x8b\xb3\xaf\x70\x84\xf0\xce\x8f\x93\x32\x78\xb0\x46\xea\xd6\xb9\xcf\xc2\x7b\x0d\x33\x87\xf3\x90\xa1\xdf\x3d\xfa\x1c\xbe\xda\x6f\x79\xee\xae\xdb\xe4\x70\x7c\xe2\xbd\x6b\x60\x01\x57\x13\x7c\xe4\xa5\x35\xcb\x35\x2c\x4f\x6b\x96\xcd\x6f\x80\x74\xdd\x70\xe8\x2c\xa1\xfd\x43\x3d\xce\xe1\xed\x9d\xe1\x09\x05\x34\xaf\xb4\x8f\xa2\x27\xc4\xde\x0b\x1b\xb1\xfa\x33\x41\xc6\x34\xd4\x82\x1b\x68\xe2\x1b\x5a\xbf\xa2\x18\xa2\x62\xba\x8b\xe7\xf6\x84\x38\xbd\x69\x8f\xa9\x54\x7d\xd3\x8c\x19\xea\x79\x54\x1c\xb8\x38\x69\xdf\x9b\x1f\xc5\x3a\xdf\x6e\x37\xaa\x9e\xd8\xc6\x31\xcf\xea\xb5\xde\x84\xe8\x13\xbe\xb0\xe0\x2c\xbf\xb7\xbf\xc2\x74\xbe\xcc\xbd\xdf\xbc\xd2\x48\x4f\x16\x89\x9d\xaf\xf3\xe6\x0b\xc7\xa8\x1c\x56\xcf\xde\xd5\x34\xcb\x2d\x0e\xda\x25\x45\xc1\xe8\xae\xc5\x6a\xa0\x3d\x7a\x9d\x66\x30\x3e\x9b\xe1\x50\x77\x6c\xa7\x0e\x3a\xf7\x8e\x8c\x51\x67\x4c\xab\x58\x2f\x87\x89\x42\x39\xb6\xa2\x0f\x5b\xf3\xc9\x72\xf6\xfd\x76\xbe\xf5\xc7\x6f\xff\xb9\xf5\xfb\xef\x8d\xf9\x62\x3d\xbc\x9d\x37\xfe\x7b\xb1\x9e\xde\xfe\x3e\xff\x3e\x9f\x6f\x45\x18\xbc\xba\x9a\xf5\xaf\xae\x87\xb7\xf3\xc0\xd8\xa8\xff\xd4\x1f\x87\x06\xa6\x57\xe3\xdb\x61\x68\x60\x7c\xb5\x0a\x40\xaf\x97\x8b\xc5\x24\xb8\xd0\xb0\x3f\x5f\x84\xe0\x77\x93\xd9\x28\xb8\xfe\x64\xd1\xbf\xeb\x7f\xbf\x5a\xf4\xc3\xeb\xad\xf6\xfe\x03\xa3\xd4\x31\xae\xaf\xe6\x9a\x0b\xff\x15\x7d\xd8\x1a\x5f\x8d\x14\xa3\xc4\x3f\x77\xfd\xe1\xed\xd6\x1f\xbf\x6d\x49\x14\x81\xf1\xe1\x7f\x3f\xfc\x5f\x00\x00\x00\xff\xff\x29\x54\x28\x3f\x5a\x4f\x00\x00") - -func web_uiV1StaticBaseCssMapBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticBaseCssMap, - "web_ui/v1/static/base.css.map", - ) -} - -func web_uiV1StaticBaseCssMap() (*asset, error) { - bytes, err := web_uiV1StaticBaseCssMapBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/base.css.map", size: 20314, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticBootstrapMinCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\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_uiV1StaticBootstrapMinCssBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticBootstrapMinCss, - "web_ui/v1/static/bootstrap.min.css", - ) -} - -func web_uiV1StaticBootstrapMinCss() (*asset, error) { - bytes, err := web_uiV1StaticBootstrapMinCssBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/bootstrap.min.css", size: 90287, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticConsulLogoPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\xba\xf7\x57\x13\xdf\xf7\xc6\x3b\xc1\x20\xa1\x08\xa1\x09\x0a\x52\xa4\x83\x74\xa5\x48\x49\x68\xd2\x7b\x97\x0e\x02\x22\xd2\xa4\xd7\x04\x08\x5d\x45\x69\x52\xa4\x4a\x15\x10\x90\x0e\x42\xa4\xaa\x14\xe1\x8d\x74\xe9\x4a\xe8\x84\x1e\x4a\xca\x5d\x7e\xbe\xf7\xfe\x11\x77\xcd\x9a\x35\xbf\xcc\xec\x39\x67\x9f\xd7\x7e\x9e\x73\x66\x4e\x92\x91\x81\xe6\x0d\xaa\xdb\x54\x00\x00\xdc\xd0\xd6\x52\x37\x01\x00\x32\xe0\xdf\x09\xb9\x0e\x00\xc0\x49\xc8\xe4\x25\x00\x00\x60\x77\x15\x7d\x15\x00\x68\x48\xa5\xc6\x3b\x91\x03\x00\xc0\xe5\xa2\x65\xa2\x0f\x00\x61\xfc\x00\x80\x44\x01\xc0\xbf\x5b\x90\x9b\x00\x10\x28\x01\x00\xdb\x8e\x00\xf0\x30\x1b\x00\x58\x7c\xdf\x77\x18\x2b\x02\x00\x70\xdd\x59\x57\x53\x1d\x20\xfd\x3b\x8a\xba\x2a\xd2\x01\x00\xa0\x08\xd0\xd6\xd7\xa0\x58\xbd\xc6\x09\x88\xb0\x54\x37\x0b\x48\x00\x00\x12\xd0\x56\x57\x31\x0b\x99\xdf\x25\xe0\xd2\x79\x2c\x0b\x56\x28\xa3\x96\xc3\xc5\x8a\xaf\x15\x6b\x6c\x3f\x49\xcb\xd1\xe3\xff\xa1\xf3\x19\xfc\x63\xc2\xce\xee\x41\x6d\x79\x85\x7b\x47\x75\x79\x85\xa7\x5b\x87\x7b\xde\xaf\x4e\x05\xcf\x16\x77\x17\xf7\xe0\x16\x77\xdc\x31\xe1\x86\xa5\x4b\x90\x7b\x70\x4b\x90\x9b\xc0\xf4\xae\x1b\x0e\xf3\x58\x6f\x34\xf3\x6e\x8a\x94\x50\xda\x13\x37\xa9\x66\xc8\x9d\x68\x64\xfc\x30\x6e\x89\x00\xc8\xf5\xae\xfa\x52\x40\xdf\xc2\xe1\xfd\x57\xd9\xa1\x64\xc5\x6f\x88\xec\xaf\x71\x53\xcb\xe2\x48\x38\x17\x14\x02\x26\x8b\xfe\xff\xc7\x85\x07\x7c\xfb\x8c\x12\x02\x8e\xe9\x3b\xc6\xe4\xf9\x28\x9f\xba\x9f\xbb\xc3\xae\x6e\x71\x9e\x3d\x04\x93\xf5\xfc\xc7\xc3\x04\x44\x3b\x82\x37\x13\xb8\x38\xaf\xab\x86\x42\x21\x83\xef\x1a\x16\x02\xc0\x31\x7e\x6b\x42\x71\x57\x95\x11\x8f\xe8\xf8\x36\xe3\x62\xb8\xa0\x2f\xc5\x3e\x7c\x6e\x87\x80\x5d\x46\x41\x71\x11\xad\xcb\x91\xf3\x85\x30\xd1\x45\x94\x0c\x22\x19\xed\x75\x37\xe3\x5a\xb4\x63\x1b\x84\x1c\xce\x25\xc7\xa5\x44\x15\x1e\xf0\x1d\x7b\xe7\x0c\x1b\x26\x9f\xd0\x07\x39\xb3\xef\x9e\xd9\x59\x3e\x7d\x41\xab\x2a\x09\x85\xbc\x86\x14\x03\x10\xf0\x9d\x4d\x95\xd9\x60\xc6\x95\x4d\x60\x8c\xee\xa8\xd3\xd8\x21\xf8\xd2\xba\x4e\x35\x87\xf3\x48\x1e\xd6\xef\x19\xa4\x20\x0b\x40\x75\xa2\xe1\x12\x10\x14\x19\x17\xf4\xfe\xe6\xdd\xdd\x4e\xeb\xd5\xca\x04\x6c\x71\x22\xf6\xf4\x52\x61\xb1\x7b\x66\xcb\x96\x70\x72\xf7\x3d\xdd\x51\x48\x36\x3a\x5a\x6c\xac\xaf\xdb\xfb\x2e\x13\x59\xf4\xca\x16\x3d\x15\x72\x65\xf6\x05\x10\xbd\xac\x5f\x49\xc1\x19\x3b\xd6\xd7\xbd\x7f\x1a\xee\x54\x37\xb7\x45\x7f\xb7\xfb\x2c\x91\xe1\xf3\x22\x38\xfc\xe0\x42\xa5\x9b\xe5\xf4\x01\xdc\x9d\xbc\xe4\xd7\x45\x0b\x77\x06\x59\xf4\x8a\x23\x84\x1c\xee\xfb\x7c\x93\xeb\xe0\x03\xca\x5d\x96\x9b\x93\xaf\xbf\x8f\x36\x62\xbc\x90\x31\xde\x68\x81\xff\xf3\xb6\x73\x89\x91\xba\x19\xcb\xb0\x24\x9b\x88\x64\xc2\xa6\x94\x86\x14\x26\x11\x1a\xcf\x3b\xa2\xf2\x4c\x91\x61\x64\x27\x35\x91\x27\x46\x5e\x2b\x9b\x67\x24\xda\x3f\x1e\xf9\x02\x9c\xc1\xf3\x93\x95\x6c\x08\x1a\xcc\xb6\xec\xc2\xe4\x37\xc3\xb7\x20\xf3\xc4\x6d\xf2\xc9\xb3\xc7\x0c\xfe\xb6\xbd\x55\xfa\x6d\x9e\x8c\x8f\x44\x93\xda\xe3\x47\x04\x07\xde\xab\x74\xd6\xe3\x38\x17\xa3\x96\xf6\x90\x62\x63\xc5\xc3\xc7\xfc\xaa\xb7\xa0\x90\x0e\x1e\x26\xa0\x47\x9d\x91\xfb\x24\x9c\xfe\x3c\x81\x79\xdf\x69\xcc\x86\x83\x99\x25\xbd\x54\x23\xa3\x54\xa3\xa9\x4d\xbf\xe9\x25\x77\x59\x7a\xd6\xfd\xb2\x36\x41\x6e\x53\x26\x01\x9a\x01\x3e\x7b\x04\x2f\x0d\x9f\x44\x82\x1c\x46\xf0\xf5\xad\x64\x17\xe0\x8e\x9f\x11\x80\xe4\x02\x68\xd8\x21\x40\x2f\x80\x34\x26\x9c\x76\x61\x5d\x96\x49\xd4\x46\x2c\x3f\x5f\x7e\x28\x7f\xf3\x09\x71\xe3\x2b\x20\x77\x0d\x2c\x46\x51\x2f\x4f\x96\x70\xcd\x8a\xc6\x2f\x96\x5b\x82\x75\xed\x41\xfc\x57\xc7\xec\x19\xdb\x91\x61\x31\x0c\x9f\x8d\x33\x9f\xa9\x73\x5c\x6e\xaf\x0e\xdf\xa8\xe8\xd4\x13\xb7\x5c\xa9\x46\x91\x64\x4f\x4b\x66\xcc\x2c\xc3\x07\x40\x94\x64\x38\xeb\x92\xd1\x0b\xc5\x73\xc0\xdd\xb1\xd1\x24\xc9\xf3\x2f\x49\x46\x10\x70\x4c\x10\x8a\x8c\x2b\x5b\x30\xac\xe9\x48\xc1\xfa\x64\x09\xd7\x7b\xef\x4c\x22\x7a\x29\x42\x4c\x52\x1d\xa2\x96\xed\xcb\xf5\x31\xb6\xec\xa5\xd0\x96\xb6\x69\xf2\x80\x57\x9a\x56\xce\x93\xc7\xc1\x5a\x16\x81\x87\x2f\x55\xff\x6b\x52\xff\xaf\xa9\x7f\xfc\xbe\x93\x60\x8a\xbc\x8e\x23\xad\x24\x60\x04\x45\xbe\x94\xd3\x3a\x9d\xd1\x00\x87\x92\x28\x28\x62\xce\x48\x63\x2b\x61\x97\x1a\xa6\x45\x2f\x80\xeb\x57\x43\x64\xeb\x00\x3b\xd2\x94\x76\x85\x8c\x2c\x8f\x5b\x42\x1e\x39\xb0\x43\xa5\x9a\xe3\x6c\x5f\x9a\xc8\xc2\xde\xeb\xdf\xd2\x1f\x44\x93\xe3\xf5\xce\xbc\xc3\x74\x72\x31\x42\xa3\xb8\x39\x66\x7f\x92\x26\x47\x9e\x06\x54\x96\x2d\x9d\x2c\x1f\x28\x59\xb1\x62\xfa\x68\xc5\x31\xb9\xd7\x49\x0d\xf2\x2f\xbb\xb7\x21\xe4\x70\x89\xb3\x13\xc7\xf5\x60\xc6\xf3\x7c\x70\xe4\x41\xbb\xc0\x66\x92\xea\xdb\xd2\x36\x2b\x9d\x59\x75\xdd\x5b\x26\x8a\x2e\x3a\x39\x2f\xb9\x45\x07\xbc\x3e\xd7\x74\x84\x68\xfb\xfd\xc7\xe0\xf4\xf4\xb5\x6f\xc6\x23\xf6\x00\x70\x11\xcf\x6b\x33\xf0\x0d\xd0\x58\x0f\xe3\x01\x64\xf0\xb8\x71\x93\xd2\x04\x63\xca\x2a\x48\xb1\xef\x0b\xbe\xa9\x66\xe4\x9a\xf8\x4e\x10\xd3\x49\x8b\xb1\x11\x5b\x55\xc8\xea\x6f\xf9\x48\xb5\xf8\x7d\x67\xff\x91\x4a\x70\xca\x45\xb6\x4d\x95\xd0\x64\x90\x44\xb0\x57\x52\xfb\x8d\x32\xa4\x4a\xa7\xc9\x78\x8a\x33\x30\xde\x59\x51\xf4\x2f\x73\xdf\x32\xfd\xfe\x15\x55\x2c\x15\xa1\x8f\x2a\x9c\x0c\xb0\x0a\x6c\x28\x95\xb7\x7a\xad\xa0\xae\xcf\x66\x12\xf1\x91\xdf\xd5\x24\xeb\x7e\x9e\xc4\x8f\xcf\xfb\x6b\xcc\x03\x03\xba\x52\x6a\xc3\xa8\x62\xeb\x11\xee\x24\xb9\x64\x6e\x40\x88\x6b\x25\x76\x23\x98\x7d\xe5\x15\x62\x3b\x4b\x99\x6c\x08\xc4\x6e\x4f\x27\xce\x64\x3b\x22\xfb\xbc\xd7\x42\x34\xa9\xd6\xc2\xfc\xb2\xad\xf2\xbf\xd3\x34\x0c\x86\xba\xc3\xe6\x63\xe5\xe4\xfd\x27\xcf\xd8\xa4\xfc\x55\x33\x62\x24\xc8\xb9\x87\x4c\x01\xe8\x27\x26\x70\xe1\x35\xa4\xd1\x75\xf0\xb7\x94\x3f\x2d\xdc\x94\x83\xd9\x62\xaa\x68\x16\x11\xf4\x68\x2e\x9d\xbc\xd6\x08\xff\x8b\x5e\xfe\x67\x13\xbc\x0d\xcf\xf5\x0d\x2a\xf4\x3d\xf8\xbd\xb4\x2a\xd6\x64\x94\x2b\xda\xcf\x6b\xd4\x0f\x29\x7b\xb9\x53\xe4\x92\xb9\x69\x9f\x25\x32\x8b\x2b\x5b\xe6\x53\xc6\xdf\xb6\xa5\x5d\x78\x02\xd1\x11\xc3\xd8\xd0\xae\x56\x67\xf5\x73\x64\x3d\xc0\x79\x1b\xfb\xcf\x1c\x49\xca\x5a\x8e\x2f\xbe\xb0\x2e\x7b\xa4\xed\x2f\x5a\xa8\x0a\x2d\x63\x3d\x49\x7b\xb3\x09\x4b\x5d\xf1\x2f\x86\x40\x5e\x93\x3b\x7f\x60\x78\xa9\xc8\x1d\x83\x7e\x57\xda\x55\x19\x12\x99\x12\x48\x07\xf0\x62\xa0\xae\xe5\x77\xbf\x49\xc5\x67\x8c\xb0\x9a\xc8\xb8\xea\x50\x53\xa6\xbc\xff\xef\x4e\x84\x41\xd9\x79\x86\xfa\x7f\x54\x18\xc1\x58\xb9\xa7\x95\xc4\x60\x22\xc9\x66\x1c\x96\xab\xda\x5a\xf0\xf2\xfb\x8d\x64\xa7\x6f\xdc\xbb\x6f\xf9\x0e\x13\xcc\xe3\x96\x44\xaa\xf7\xff\x94\x3c\x6a\xa5\xee\x30\x9d\x4d\xe9\xcc\xec\xca\x76\x69\xcb\xee\x1c\xff\x04\x0d\x18\x12\xdf\xfc\xcb\x0d\x40\x87\x90\x2b\xd9\x5c\x32\x92\x3d\x5a\x2f\xe0\xc5\x9c\x99\xa1\xcb\xfc\xbb\x20\x24\x34\xfe\x7b\x80\xfe\xeb\xd1\x77\x99\x01\x2d\xfc\xa3\x06\x53\x7f\xd3\x29\x53\x6c\xc7\x6d\x23\x2c\xca\x37\x4b\xfb\xc7\xef\x62\x04\xe7\xbe\xb7\xb0\x14\xbe\xfd\x0f\xf9\xe0\x23\x03\x95\xd8\x6a\xb5\x8c\x13\x9d\x27\x55\xa7\xdd\xc4\xc2\x55\x78\x47\x67\x41\x8a\x42\xfb\x5e\xa9\x9d\xd8\xb3\x4f\xe4\x81\xab\xd8\x3b\x51\x71\x45\x36\xdf\x01\xb8\xe0\xb5\x18\x17\xd4\xec\x02\x98\x47\x8d\xa2\x18\xab\x84\xa3\x26\x09\x16\x1b\xaa\x72\x24\xed\x3b\xba\x56\x55\x96\x6f\x08\x0f\xe9\xb5\xf0\xd7\xf2\x8a\x6e\xe9\x8d\x0c\x8e\x7d\x14\x53\x16\x97\x0c\x60\x90\xce\x78\xc6\xbb\x41\x39\x78\xed\x27\xbd\x15\xd3\xa1\x5d\xc2\x41\x42\x79\xff\xfe\x34\x53\x58\x45\x69\x3b\x1d\xce\x79\x1f\xe3\x36\xb4\x64\x67\x68\xed\xfa\x18\x47\x7b\x9e\x19\x5d\x5f\xaf\x22\x8b\x45\x92\xe8\x01\xd4\x5d\xae\x6c\x1a\x14\x19\x17\xeb\x43\x8a\xfa\xb3\xce\x81\xc3\x24\x52\xf6\xa7\xa1\x06\xd3\x50\xaf\xa0\x72\x61\xf1\x32\xbd\x2d\xbd\x05\xfe\x0d\x73\x96\xfc\x77\x42\xca\x7c\x92\xf7\x53\xe5\x9e\xf6\xd9\x77\x16\xf9\x48\xc4\x87\x0c\x0c\x44\xf4\x71\xe3\xdf\x0a\x35\x86\x9b\xc7\x2d\x2d\xa6\xb4\xe3\x66\x7e\x4d\xcf\xf7\x09\x49\xfb\xe8\x8e\xc4\x07\x61\xe1\x66\x53\xd1\x46\xd7\xc1\x8c\xa9\x46\x00\x58\x6d\x15\xa9\x0a\xd3\x3b\x68\xb5\x3a\x37\x6a\x5d\xd2\x1e\x7c\x73\x72\xdc\x79\xd9\x1b\x61\xad\x94\x27\x59\xaa\xdb\x11\x5b\x98\x29\xf4\x50\xd4\xb8\x49\x5d\x4e\xa7\x27\x8a\xc6\x41\xa2\xc7\x17\x78\xe7\xd4\xbd\x01\x25\xce\xa6\xcd\xee\x25\xab\xfa\xdc\x0c\xc0\xed\x3f\x1e\x0c\x3b\xe7\xf2\xfc\x4b\xd3\x5e\x45\x13\xc2\x11\x63\xb0\x14\x6d\x9f\x06\x89\xbb\xcb\xc5\xaa\x80\x22\xe3\x92\x33\xe9\x80\x10\x2b\x47\x08\x82\x22\x0e\x64\x40\x9a\x14\xdf\x1e\xfe\x53\x77\x9b\xad\x59\xa1\x76\xce\x44\x59\xf6\x2b\x71\x21\xa6\x42\x3e\x1a\x51\x67\xda\x87\x89\x57\xf8\xb6\x3e\x41\x0c\x39\xcb\xb1\xb9\xae\x33\xee\x99\x54\xa7\xf5\xe4\xa2\xb8\xa5\xf4\x74\x57\xa7\x74\xf3\x1d\x35\x37\xfb\x25\x78\x85\xaf\x4a\xc5\x7b\x10\x89\x07\x80\xb8\xc2\x25\x38\x12\x5f\x19\xfb\xf2\x82\xc1\x24\x15\x5b\xbc\x53\x56\x37\x53\x6b\xd2\xe5\x6e\xd0\x73\x8f\xf6\x4a\x7b\x2d\xb6\x09\xd7\xc5\x1e\x16\xe6\xe4\x31\x68\x3c\x86\xcd\xee\xb4\xbf\x4b\x14\x12\x2b\xd9\xaf\x2b\x86\xb1\x69\xe9\xe7\x9c\x7c\x72\x79\x61\xbf\x40\x38\x59\x6a\xf2\xbb\x22\x36\x35\x68\x4a\x06\x3b\x3a\xd0\x1f\x84\x53\x84\x1d\xd2\x00\x10\x0d\xb8\xc4\xa3\x44\x7d\x13\x09\x89\xb0\xfa\x33\xd0\x7c\xfa\xc5\xdd\x38\x65\x27\xad\xee\x7a\xc6\x3c\xa5\xd6\x6a\x18\xcc\x55\x4b\x7c\x87\xb6\x9b\xd7\x34\x22\x57\xe2\x7e\xac\x7c\xbf\xca\xc2\x58\x4c\x6c\x0f\xeb\x9a\x2b\xcb\xf1\x0d\xdd\xb5\x56\x91\x8f\x57\x3f\x2c\x26\x2e\x4e\xce\x9e\xef\x11\xc3\xe6\x85\x55\xec\x40\x07\xaf\x1d\xcd\x55\x32\xa4\x00\xee\x54\x55\x7a\xe8\x4b\x5e\xe7\x3e\xa6\x93\xfc\x6b\x1d\x17\x0a\x1d\x38\x10\xbc\xa0\x5a\x30\x29\xc5\xa6\xa1\x31\x85\xef\x34\xb3\x54\xdb\xde\x5c\xb0\x9b\x0b\xd5\x5d\x54\x78\xff\xc5\xf5\x64\x31\xcc\x4e\x56\xbf\x37\xf3\x83\x30\xaf\x07\x2e\x51\x47\xeb\xb6\x7b\xda\x2a\xc1\x9e\xe3\xfb\xcc\x9b\x0f\x1c\x00\xb8\x20\x59\x0c\xbd\xc6\xf3\x82\x98\x6e\x3f\xa0\x87\x93\x79\xe6\x9d\xe3\xf2\x40\x5d\xfe\xe8\x96\xbf\xfb\x8b\xf9\xcc\xad\x5c\x7c\x2e\x66\x45\x84\x41\x43\x37\xfb\x43\xa9\xe0\x0c\x23\x0d\xf4\x27\xfd\x2c\xcd\x61\x5a\xec\x05\xa3\x9a\x53\xe1\x6e\xff\x5e\x2b\x76\xe4\xb6\x83\xe2\x50\x6e\xb8\x8c\x93\x0c\x20\x07\xcd\x87\xcf\xea\x32\x47\x1b\x81\xc1\x3c\xd1\x46\x00\xd8\x50\x1f\xb5\x82\x9d\xcc\x19\xc3\xae\xbd\x03\x90\x5a\x34\x3f\xa4\x34\xb6\x6d\x35\xb4\xf3\x7f\x4f\x8d\x89\x66\x64\xd4\xf1\x89\x6e\x79\x4a\x69\x6c\x40\x34\x4d\x4b\x84\x52\x1d\x21\x07\x8f\x8e\x8b\xdf\x0b\x35\x8a\x53\x75\x5c\x4d\xff\x11\x3a\xee\xeb\x94\x1e\x7c\x66\xec\x7f\x23\xb9\xfd\x46\x6d\x41\x74\xe5\x67\xd5\xb7\x02\x5c\xac\xda\xfd\xf1\xc2\x72\xf7\x95\x20\xc4\xca\x4f\x11\xa2\x7e\x84\x52\x8d\x93\xf4\x50\xaf\xfd\xe7\x06\x88\xd0\x0e\x7e\x84\xae\xff\x41\xca\xab\x27\xca\x37\xd4\xe7\x0a\x1c\xcf\x7d\x69\xe1\xf2\x6b\xcc\x79\x07\x14\xe6\x99\xdd\x9d\x39\x4d\xcb\xdd\x30\xaf\x85\x39\x9d\xf9\xb8\x64\x1d\xfd\xa7\x63\x2c\x9b\x18\x66\x00\x9a\x8c\x74\xfc\xfe\xcf\xa9\x1d\xff\xc1\x54\xda\x7d\xb3\xa7\xae\xcd\x6a\x74\xba\xf4\xbc\xea\x4b\x4b\x84\x70\x5d\xa4\xa8\x8b\xd6\xb2\xb9\x1d\x5e\xd1\x4d\x70\x71\xb3\x55\x7c\x5f\xbf\x47\xb0\x57\x8e\xec\xdb\x40\xc4\x70\xc6\xec\xb7\x70\xc9\x0d\x59\xba\x46\xcc\xb7\xea\x5b\xfe\x9e\xe2\x18\x8b\x48\x73\x70\x17\x86\x0a\x48\x1c\x47\x3a\x6a\x25\xea\x5b\x8c\x4b\xdf\x01\x23\xac\x6e\x39\x8c\x8f\x8a\x83\x90\xa5\x0a\x56\x36\xf7\xaa\x72\x4c\xc3\xe7\x73\x06\xd2\x8e\x1e\x0f\x65\x74\x57\x19\x45\xf4\x58\x76\x08\xec\x6b\xf7\xc8\x7d\x05\x21\x8d\xfb\x75\xb3\x46\x94\xc5\x37\xf7\xff\x81\x79\x45\x57\x31\x22\x60\xa3\xdd\xb9\x4b\x4d\x77\xce\x1c\x6d\xb0\x0a\x02\xfe\x49\x1d\x6b\xc3\x1c\x55\xc7\xc4\x87\x81\x65\xc9\x2a\x71\x57\x9d\x06\x46\xf2\x40\x8c\x99\x7d\xb8\x77\xcb\x5d\x34\x7d\xeb\x77\xd9\x27\xf1\x86\x49\xb3\xdd\x8e\x64\x2b\x34\x2a\x53\x59\xb3\xef\xf8\x46\x09\x53\x61\x43\x51\x38\xa7\xe9\x90\xfa\x82\xcf\x5d\x67\x7d\xc4\x25\xb2\x7f\xac\xd0\x38\xff\x61\x0e\xe0\x2d\x8d\x36\x94\x18\x5c\xd6\x3e\x18\x16\x32\x9d\x28\x9c\xfb\xcf\xd2\x80\xa9\x49\x64\x2e\xf7\x64\x34\x5b\xdf\xfe\x2d\xeb\x63\x30\xfd\x6f\x16\x3d\x2e\xf6\x68\x57\xc6\xa0\xba\x92\x89\xd6\x56\xc6\x33\x1f\x4e\xb7\x51\x71\x4e\xc3\x9c\xce\xf8\x91\xde\x23\x30\xea\x2e\x17\xab\xb0\x2a\x08\x8a\x9a\x28\xf6\x77\xb0\x7a\x84\xc8\x5b\x49\xfd\xad\x8e\x6e\x63\x56\xf0\x93\xaa\xb3\x1b\x9d\xfe\x8b\xdd\xa6\x25\x52\x39\x3d\xbd\xdd\xaf\x24\x20\x77\xdd\x17\x98\xe1\xc6\x1b\xeb\x17\x63\xf7\x06\xf3\x5b\xf7\xc7\x58\x67\xb0\x3f\x59\x7f\xcb\x38\xdd\xdc\x0d\xff\xbf\x38\xce\xd2\x37\x9b\x0e\x9a\x62\x1c\x82\xeb\xcf\xf0\x6e\xf8\xbf\x55\x4a\x7b\x53\x42\x6a\xc4\xac\xfd\x95\x6a\xd5\x03\xea\xd7\x22\xec\x5f\x03\x29\x1d\xaa\x85\x4f\xf2\x17\xdb\x8e\x77\x14\x1a\x9b\x0d\xff\x3d\xfe\x8a\x3d\x3a\x56\x90\xac\xc4\x19\x3e\x1e\xdc\x5f\x7e\x0f\x40\x7e\x8a\x81\xdd\x1b\x14\xbf\xa0\xb5\x2e\xb6\x8a\x74\xe2\x89\xda\x0e\x30\xb8\xda\xce\xe0\x46\x98\x06\x1f\xfc\x73\x39\x28\x2e\x1b\xbe\x22\x44\x66\xf8\x31\x30\xf5\x6b\x9d\xcf\xa8\x25\x2c\xea\xcd\x83\xe0\xc8\x64\xb8\x84\x61\x91\x4d\xb0\x4a\x31\x18\x52\x70\xbb\x41\x9e\xba\x64\x0d\xaf\xb2\xca\xd9\x74\xee\x0a\xbc\xa1\x54\x1b\x4a\xd9\x49\x32\x75\x7f\x71\x39\x53\x4e\xb3\x65\x93\x1b\xeb\x90\xc1\x9a\x7b\xcd\xcf\x87\x12\xec\xe5\x0b\x7c\xe3\xc6\xfb\xe9\x17\x73\xee\xf2\xee\x3a\x2c\x66\xd7\x45\x9e\x38\xce\x7f\x07\x7d\x55\x51\x24\x03\x54\xe9\xa1\x27\xa0\x06\x6d\x4e\x97\x87\x56\x04\x27\xc6\x8b\xc7\x60\x18\x20\x38\xe6\x33\xf8\xae\xe0\x77\x32\x5a\xd2\x55\x6b\xf9\x3f\x76\xbc\xaa\xda\xc1\x1f\xa7\x3a\x5d\x2e\xd6\x40\x39\xb2\xe1\x1e\xbc\xb6\x7e\x31\xa7\x37\xff\x5e\x21\xa2\xc3\x96\xf8\x94\xc7\x95\xa5\xb8\xf1\x2e\xf4\xb9\x20\x98\x8b\x09\xd4\x63\xca\xc5\x84\x74\x49\x36\x3c\xd7\x1c\xb8\xe8\x7a\x48\xc4\x18\x15\x0c\x16\xd7\x30\x4d\x56\xbd\x9b\x4e\x73\xc8\x13\x17\x21\x69\x05\x1f\x58\xde\x8e\x71\x78\x72\x4a\x0d\xa6\x40\xf1\xd4\xb3\xf7\x72\x64\x31\x5f\xfe\x2b\x17\x2c\x4c\xd1\x9a\x58\xf2\xd1\xe8\xda\x63\x66\x10\xa2\x7a\xf5\xf5\x05\x48\x95\x12\xca\x0e\x2e\x06\xd8\xa5\x3b\xda\xae\xfa\x1e\xe2\x42\x63\x1c\x0a\x3e\x6a\xff\x78\x37\x93\xf6\xce\xf0\x6f\xf3\xb2\xee\xec\xdf\xc0\xa4\x12\x57\x33\x52\x0e\x9c\x4b\x4e\xf1\x3d\xb7\x7d\x33\x25\xda\x66\x72\x91\xf4\xc2\xbd\xe5\xec\x78\x47\x37\x93\x42\x66\xf5\x66\x93\x08\x99\x31\xc7\xff\x10\xa4\x4d\x34\x02\x5e\x53\x2a\x75\x5c\xc5\xc6\x38\x90\x01\x7c\xde\xe9\xb3\xc7\x79\x87\xd2\x1b\xc1\x27\x9c\xe5\xfa\x5b\x57\x54\x03\xee\x46\x5d\x86\xe8\x36\x04\x38\x86\xd8\x23\xb4\xa6\xa1\xeb\xe6\xb0\x3b\x98\x8f\xee\x92\x74\x20\x9c\x12\x6e\xf9\x0f\xf3\x8f\xa0\x0e\xd4\x55\xa8\xee\xf4\x92\xa9\x52\x42\x03\xd4\x9e\xaf\x7c\x43\xd2\x5a\xa0\x97\x17\x97\x6f\x6e\xcc\xdc\xa9\x29\xfc\xb1\x45\xcd\xd2\xba\xb6\x9c\x5b\x35\x84\xae\xeb\xd8\x64\xc0\x08\x82\xd6\xba\xe9\x21\xd7\xaf\x53\x14\xd1\x1c\x77\xe5\x8e\x28\x2f\xe8\x59\x93\x86\xdd\x53\xa6\xe8\x66\x26\xa6\xed\x3f\x38\x73\xd5\x0c\xd4\x43\xa8\x21\xb4\x71\xb3\xdf\x05\xb2\x39\x16\x09\xf6\xef\x97\x15\x98\x7a\xdf\x7c\xb6\x35\x6b\x7c\x27\xbb\x56\x77\x2f\x73\x12\x36\x71\x07\x6f\xde\x6b\x74\x5d\x3d\xa6\x10\xee\xfb\xc4\x17\x78\xc7\xd0\x6d\x6d\xb2\x58\xb8\x9c\x27\x49\xdc\x60\x3b\x6e\xee\xbc\xc8\x36\x8d\x26\xd4\x23\xaf\xad\xee\xc5\xc5\xc9\xc2\xc7\x19\x55\x41\xd9\x46\x1d\x56\x04\xa7\x53\x3c\x15\xf0\xdd\xf4\x81\x7c\xa8\x87\xc8\xd9\x48\xbb\x1d\x81\xce\xb4\xfc\xe4\x5a\xef\xb8\xe2\x47\x92\x2d\x17\x94\x5d\xe9\x3d\x4f\xbd\x68\xd2\xe2\x6c\x92\x02\xe9\x70\x3a\xe2\x74\x06\x57\xf1\x2a\x50\xcd\xed\x7a\x53\x3c\x39\xde\x25\xf1\xff\x8b\x23\x41\x9b\xfd\x77\xe6\xe5\xb1\x08\x93\xe7\x46\xf0\x49\xd9\x46\x8b\x4b\xdd\x98\x79\x06\xcc\xd8\x0e\xff\x85\x75\x92\x07\xfa\x92\xe6\xbd\x73\x41\x9d\xf0\x49\xed\xd4\xcb\x53\xd8\x72\x76\x5d\x54\x47\x6e\xc3\x59\xd1\x14\xdb\xb8\xd0\x3d\x80\xeb\x0b\x28\x06\x70\xf6\x2f\xe4\x0a\xab\xbf\x8c\xad\x0d\x67\x06\x8c\x6e\xea\xea\x60\x26\xdc\xf0\x71\x8c\xe4\x7b\x74\xe9\x37\x2f\x68\x9d\x04\xa9\xd7\x96\xa0\x90\x47\xb4\xb4\xf0\x3b\xbd\x9c\x37\x03\x36\x7c\xb0\x86\x79\xa4\x0b\x4c\xc4\x69\x94\x71\x70\x67\x1c\x39\x4a\x16\x0e\x4d\xae\x5c\x2c\x80\x92\x05\x12\x8c\x19\x2f\x73\x9b\xf1\x40\x91\x07\xed\x6b\x74\x5b\x81\x1c\xee\xe8\xf1\x11\x9d\x65\xf2\xbc\xc3\xa0\xd7\x51\x87\xd6\x11\x23\xe4\x11\x0b\x18\x49\xa9\x69\xbd\xc8\xfd\xae\xc2\x73\x62\xae\x3d\xb9\xf7\x56\xbc\xaa\xd8\xfe\xec\xf8\xc7\x93\x6b\x01\x17\xec\x0e\x5d\x61\xcc\x76\x9d\x41\x5e\xb3\xba\x0c\x34\xf4\x0d\xff\xa5\xca\x53\x34\x5d\x2a\x91\xc3\x95\x32\x67\xdc\xc4\x7c\xfa\x1d\xec\x04\xab\xd0\x9c\xad\x87\x9e\xd9\x1f\x26\xeb\x67\xee\x42\x21\xb4\xe0\x60\xc9\xe5\x7b\x1e\xfb\x30\xc5\x6c\x19\xd2\x2f\x81\xe1\xf5\x3c\xd7\x4c\x8e\x59\x36\x2e\x45\xd0\x37\x96\x62\xe0\xa5\x24\xfd\x22\xbe\x24\x0d\xff\x04\x30\xfa\x23\x93\xd4\xd5\x56\xd0\xe6\xcb\x5f\x41\x92\xf0\x7a\xc3\xf9\x9d\xa9\xf0\x51\x2f\x23\x2f\xf4\xa5\x28\x7b\xb4\xc7\xf7\x93\x3f\x7b\xa8\x63\x4e\x98\xdd\x47\x3c\xa6\xa7\xa9\xe1\x06\x60\xac\x8f\x2a\x79\x44\x4b\xad\xb1\xc2\x7a\x97\x09\x29\x59\xaa\x5b\x52\x88\x8e\xab\x83\x4d\xd7\x89\x65\x4e\x56\xd5\x29\x6a\x77\x77\x5b\x99\x10\x93\xf6\xdf\x58\x4a\x24\x9c\xff\xaf\x15\x97\x64\xc1\x10\x07\x11\x8f\xfd\x31\xac\x21\x1b\xa9\x30\xf5\x9d\x48\xeb\x33\xaa\x5a\xd5\x90\x34\xc7\x49\x24\x77\x31\x98\x5d\x1a\xb5\x2e\xeb\x16\xe0\x77\x71\x75\x75\x26\xf2\x4a\xcd\x54\x30\xd9\x61\x4e\xab\x20\xfc\x54\xfb\xc8\x70\x63\x78\xc8\xe1\xa9\x58\x7b\x0c\x68\xd2\xa9\x4e\x83\x0b\x7a\x72\x43\x5d\x4e\xc7\x43\x2c\x94\xdf\x53\xcb\x1d\x33\x2c\xcc\x4a\x35\xcc\x1c\x28\x7b\x4f\xb6\x68\x1d\x8b\x4f\xbd\x2b\xbe\x12\xc2\xcd\x84\x94\xbc\xbb\x72\x44\x37\x78\x41\xf8\x44\x2c\x3f\x30\xcc\x31\xb9\x7c\x45\x91\xe3\xa3\xd8\x7a\x87\x34\xdc\x24\x44\x28\x18\x39\xb8\xcb\x70\x23\x12\x1c\x93\x04\x06\x09\x32\x0c\x0c\x53\xe6\x29\xb6\x5a\x59\x94\x07\x50\x60\xf7\x78\xf7\xa4\x06\x96\x52\x6d\x38\x40\xdb\xd3\xb0\x23\x25\x2a\xbe\x15\x56\xee\xdb\x5f\x5e\x82\x28\xb4\x4e\x3c\xdd\x2e\x18\xe3\x9b\xa4\xc3\xe7\x7b\x87\xab\x7f\x20\xee\x9b\x66\x92\xb4\x8a\xcf\x23\x3e\x7c\x72\xe0\x82\xea\x49\x40\x90\xdf\x99\xf2\xdf\x7f\xd4\x46\x04\xb9\x2a\xf9\x89\xd9\xa4\x93\xb0\xd8\x02\x31\xa2\x4c\x5d\xa7\x6b\x25\x96\x25\x68\xc5\xd0\x6a\xc5\xd8\x57\x0f\xca\x81\xa4\xaf\x48\x39\xf0\x19\xde\xa7\x00\xf4\xfd\xfd\xd6\x76\x52\x27\xc4\xbb\x9b\xb2\xf0\xd5\xcf\xf5\x89\x02\x54\x03\x15\xea\xb2\xb0\xe8\x95\x90\x68\x40\x48\xaa\x6f\x58\x28\x45\xb1\xd5\xca\x8c\x4f\xd7\x8d\x4d\xe3\xd5\xe3\x2f\x0f\xa0\xe3\x32\xda\x50\x78\x08\xe8\x35\xb5\x2a\x88\xd5\x49\xd5\x96\xa8\xd2\x83\x0d\xbe\xa8\x46\x71\x47\x56\x95\xfe\x8c\xd8\x59\x9a\x4c\xfd\xb9\xbb\xe5\x33\xe8\x75\x74\x7b\x55\xf0\xc6\xdd\x39\x53\x2e\xb9\x2c\x2e\x40\x95\x75\x68\x90\xfd\x68\x41\xd5\x3a\x3f\x45\x3e\x24\x5c\x64\x9d\x49\x10\xd3\x23\x8c\x6c\xf9\x0b\x2b\x06\xeb\x29\xab\x82\x58\x8d\xef\xae\x11\x8a\xf3\xf1\x00\x9c\x87\x66\x40\xcc\x6b\xc0\x10\xb1\x67\x7c\x29\x8e\x11\x1e\x72\x10\x14\x53\x4e\x55\x69\xc3\x0b\x30\xef\x2f\xd7\xdb\xec\xc0\xdb\x48\x2b\xaf\x78\x0e\x08\xe3\x19\x12\xbc\x4c\x03\xda\xe4\x4e\xaf\x9d\x85\x07\xdc\x1b\x1f\x5c\x2c\x44\x58\x57\x65\x3c\xe8\xf0\x1a\x1a\x71\x12\x34\xa3\x7c\xba\x64\xa3\x0a\xca\x7e\x8e\xb2\x09\xe9\xdf\xe4\x5e\x5a\xb6\x58\xaa\x68\x97\x3b\x1b\xfa\x33\xb9\x4e\xad\x70\x69\xc8\x78\xf3\x22\x6b\x13\x23\x5b\xe0\x5b\x49\xed\x4e\xfb\x55\xfe\xa0\x03\xa8\xa3\x8b\x75\xa2\xf1\x1b\x84\x1a\x61\xff\x1b\x58\x08\xa4\x6c\xbd\xb5\x96\xc1\xfd\x73\x1b\x7d\xed\x25\xf7\x4f\xf9\xfb\x51\x9c\xd7\xfe\x00\xec\x20\x60\x0d\x29\xa9\xc9\xea\xff\x35\xf1\x9a\x2a\xbb\x13\x0d\x92\x52\x4d\xdd\x59\x8b\xff\x34\xd6\x91\x16\x3c\x45\x7e\x7d\x90\x1d\xe2\x96\x58\x14\xff\x38\x1a\x28\x1e\xf4\x2f\xbe\xf7\x92\x3b\x31\xf6\x93\xfc\xf9\x54\x3a\xb9\x97\xb2\xab\xb6\x08\xa7\xf8\x3b\x92\x83\xec\xcd\x8f\x6c\xf5\x0e\x0c\x89\x3d\xef\x68\x20\xdc\xf6\xa0\x9e\x27\xdc\xca\xfd\x3c\xea\xa8\x03\x3a\xb6\xdf\xbf\x03\xae\xc6\xcc\x33\xaa\x2c\x39\x04\x1c\x1c\x84\x9e\x92\x54\x83\x0f\x53\xee\xfe\xe7\xd3\xe4\x01\x09\xf8\x49\xef\xce\x8e\x94\xee\x17\x1a\x58\x31\x19\xb1\x63\xf1\xff\x96\x96\xed\xa1\x53\xe3\x36\x54\xe3\xa6\x33\xd2\xc4\xe7\xa6\x80\xfa\x9d\xd5\x7f\x2f\x45\xe2\x77\x46\x8e\xab\xf6\x42\x90\xa4\xbf\x90\xb7\x30\x98\x7d\xbb\xce\x1c\xe1\x55\x89\x56\xae\x86\xe1\xbc\x79\x51\x72\x5c\x23\xf4\x64\x00\x8a\xad\x1b\xe8\xa5\x1f\x64\xa7\xef\x05\x74\x69\xb4\xa9\x06\x3e\xaf\x39\x5b\x17\x6b\x19\xdb\xd5\x6c\xd3\x4e\x9b\xb1\x78\xe6\xc6\x06\x4e\x0d\xe4\xea\x34\x94\xb7\x69\x65\xb2\x9a\xf0\xc6\x3f\x49\xe2\x9e\x33\x65\x80\x6a\x06\xae\xab\xee\x8a\xf0\xa4\xaa\x9d\xef\x7d\x33\xc5\x90\x56\x11\xa1\x51\x38\x12\x05\x70\xbd\x49\xe6\xc6\x11\x0e\x02\xed\x02\xf1\xb3\xae\x82\x58\xe9\x3b\x02\x4e\x3d\xfd\xaf\x18\xe3\x9b\xfc\x3b\x2f\x27\x52\x76\x92\x38\x47\x2d\xfe\xc2\xcc\x05\x95\x6f\x94\x7c\xf1\x29\x5d\x01\xde\x3b\x19\xdc\x22\xd3\x91\xac\xa0\xc5\xb4\xa8\x65\x7b\x7c\xaf\x79\x6c\xfe\xb4\xac\xbc\xfe\x23\xf7\xaf\xc7\xe6\xc5\xcd\x1f\x7b\x3f\x32\x67\x4e\xdf\x4b\x9a\xa3\x75\x7a\xad\xd6\xd6\x07\xad\xa8\xe7\xac\x70\x65\xdf\x93\xf5\x5e\xbd\xba\xf5\x3b\xdf\xb9\x9d\xb8\x21\xf8\x37\x54\x77\xf9\xfc\x51\xe8\xd3\x5f\x3b\xa8\x90\x63\xa2\x1a\x8a\x5b\xdb\x59\x2b\x4d\x28\x8d\x37\x7e\x3d\xfb\x55\x73\x29\x1f\x1f\xc3\xcd\xa4\x6f\x5e\x69\x89\xbf\xe5\x3e\x29\xf0\x7e\x92\x97\x2b\x37\x2a\xfd\xc1\x24\xc2\xa0\x26\x85\x81\x4b\x68\x82\xfd\x8a\x99\x5e\x52\xd1\x1c\x3e\xd3\x28\xe3\x5c\xce\xad\x56\x42\x12\x22\x07\xe2\x36\xed\x41\x31\x94\x1a\x82\x00\x0f\x5c\xfd\x73\xe1\xcc\x94\xb8\x20\xde\x7c\x74\xa0\x81\x65\x9a\x91\xa5\xe0\xf7\x6b\xc2\xaf\x97\xdc\x04\x9e\xde\xf1\x93\xfa\x19\xdf\x85\x43\x54\x97\x4d\xeb\x5f\x51\x5d\xe7\x72\x3e\xbf\x0f\xe5\xe3\x2f\xac\xcb\xca\x3e\x6f\x67\xe9\xde\x16\x65\x0e\x6c\xb5\x35\xaf\x74\xd2\x1e\x29\xc9\xee\xbc\xa1\xc2\xb1\xfb\xf3\xe6\xee\xe4\xcd\x88\x13\x18\x05\xc4\x63\x87\xea\xbf\xfd\xdf\x46\xab\x74\x40\x22\x56\x24\xff\xb4\xce\xf8\x58\xde\x0d\xe5\x92\xe0\xfb\xfc\x3b\x12\x24\xb8\x94\x02\xba\x5e\x2f\x01\x38\x82\xe1\xbc\xc9\x4f\x72\x9c\xad\xfd\x1b\xb2\xa4\xb4\x15\xbd\xb4\xaa\x9a\x84\xca\xd2\x6f\x6a\x7f\x13\x4d\x9b\xb4\x65\x37\xb5\xab\x09\x2d\x88\x75\x7b\xaa\xe2\x5b\xea\x0b\xf6\xd6\x28\x9b\x81\x59\x8b\x91\x2a\x14\x1a\x9b\xa5\x26\x71\x99\xe5\x25\x2c\x72\xa8\x75\xd8\x2a\x84\xdc\xf1\x7b\xc0\xf7\x13\xba\xc0\x0b\x77\x1a\xa1\xd3\xa1\xf4\x49\x91\x8a\xb3\x26\xce\x99\x0a\x5c\xb4\xf2\xee\x03\x76\xcd\x90\x48\xe5\xce\x1d\xa8\xf7\xef\xc0\xea\x6e\x13\x63\x8f\x86\xca\xce\xb8\xae\xec\x74\xf1\x4d\xef\x86\x9a\x89\x64\x21\xd3\x5f\xfc\x0b\xf1\x91\xdc\x9c\xec\x3f\x19\x22\x14\x13\x19\xa0\x32\x98\x07\x52\xd5\x6c\xf3\x5d\x80\x0a\xdf\x57\x71\xb0\x44\x53\x42\x51\x2f\x6d\x2f\xa8\x5e\x4d\xce\x0f\xc2\xf7\x20\x6e\xad\x2b\xfb\x8f\xd0\x27\xf5\xf2\xca\x62\x26\xad\xa4\x97\xdc\x65\xbf\xe2\x33\x7e\x66\x4f\x98\x4d\xf0\x7a\x2c\x72\x53\x0e\x0c\x74\x2c\x18\x51\xa1\xde\x39\xd6\xfb\x02\x16\xe9\x5b\xe9\x79\xc7\xcd\xe8\xab\x80\xaa\xcf\xb4\xb5\x58\xbf\xec\x53\xf1\x0c\x24\xa5\xa6\x20\xa0\x56\xaa\x9b\xe3\xa0\xeb\xc2\x09\x8c\x5b\x50\x6d\x8f\x4c\x09\x54\x61\xc5\xb3\x32\x61\xa6\x77\xf0\x5f\x58\xd7\xfc\x9b\x8c\x46\xec\x74\x9d\xe3\xb9\x1b\x9e\xe9\x17\xaf\x7f\x7e\x44\x4d\x3e\x2a\xfa\xd7\xc5\x3b\x4a\x1c\xc3\x34\x24\x5c\xfb\x90\xa1\x31\x64\xe7\x80\x99\x74\x5c\xff\x21\x8f\xe1\x6b\x71\x97\x4f\xf8\xe4\x4b\x9c\x41\xef\x32\xcf\xbd\x49\x26\x45\x89\x93\x72\x30\xf4\x69\x97\x03\xc1\x41\x17\x80\x2b\x0e\x14\xd5\x98\x7c\xce\x6a\xe1\xad\x14\x21\xd7\x59\xe0\x3f\x7c\xae\x6f\x60\x38\x55\x5a\x25\xa4\x56\xa0\x93\xcb\x9b\x5e\xaf\xad\x13\xec\xab\x5a\x15\x4e\xf5\xd7\x09\xbd\x9c\x1e\x2f\xda\xb0\x46\xf0\xf8\xc3\x32\x63\x31\xe4\xa0\xba\x71\xf6\x35\xc6\x25\xc6\x08\x88\x57\x4f\x68\xe9\x2e\x58\x5f\x7e\xbe\xaf\xc6\x3a\x31\xb6\x7e\x52\xf6\xce\x92\x11\x21\x67\x6a\x4e\xcc\xd1\xfb\x2f\xc9\xa9\x90\xe4\x87\xe4\x59\x91\x71\x2a\x17\x6a\x7c\xa6\x51\x3c\x50\xb2\xbf\xbf\xee\x6c\x20\xc6\x12\xfc\xe2\x22\xdb\xa6\x46\xb0\x49\x47\x12\xc7\x50\xf1\x25\x36\x5e\x31\xd5\xe4\x7a\xd8\x21\x70\xe2\x4c\xb8\x16\x30\x06\x02\x36\xdf\x53\x8c\xeb\xd3\xcb\x25\x32\xac\xc0\x4a\x57\x3e\xa8\xb5\x99\x8d\x2f\x3a\xab\x04\xb7\x3a\xde\xe6\x1d\x79\xfb\xbe\x5e\x2b\x62\xe8\xcd\xc4\x2f\x73\xf9\xbc\xda\x1f\xd2\xb7\xd4\x86\x06\x45\xd3\xa6\xef\xb0\x5b\x0a\x4e\x4b\xb0\x5c\x88\x1a\xc6\xa6\xb4\xb7\xe7\x36\x2c\xa1\x83\x4a\xf0\x0d\xa2\x92\x14\x25\x99\x5a\xb0\xde\xcb\x42\x5f\x14\x99\x6f\x7f\xc0\x8f\x13\x9f\x14\x1c\x63\xfc\xc9\x70\xde\x61\xa3\x78\x8d\x00\xf1\xbe\x8b\x16\x5a\x5c\xf2\xbe\xc2\xee\x03\x3d\x29\x26\xff\x99\x0c\xab\xe6\x8f\x13\x26\xc6\xfe\xc7\xa1\x8b\x8b\xa3\x03\xf9\x0b\xf6\x23\x3f\x58\x02\x5b\x9f\x33\x7a\xab\x56\x7f\x0d\x76\x82\x85\x77\xb0\xf0\x71\xe9\x80\x36\x5b\x7f\xa3\x6d\x68\x91\xb8\x2f\x85\xc9\x70\x71\x1d\xf8\xef\x1e\xe8\x3b\x9d\x5c\x1b\x61\x8f\xfd\xfd\x0f\x42\xc7\x6f\xf5\xde\xe6\x4a\x95\x3d\x69\xe1\x77\x2f\xf7\x9c\x38\x31\xd3\x2f\x30\x60\x9b\x08\x98\xb8\x7b\x6b\xb4\xc7\xaf\xf7\xed\x41\xc4\x1d\x20\x1e\xe9\x2d\xb0\x6b\x33\x63\x31\x84\xbd\xf9\xa0\x95\x66\x15\xe7\x34\xd9\xc5\x97\xed\x88\x22\xf3\x45\x9d\x08\xe2\xf3\xc4\x10\xbd\x6f\x88\xdb\xe9\x7f\xcb\x36\x5a\xd6\x48\x77\x3d\xd2\xb0\xf4\xaf\x4d\xfa\xec\xfb\x78\x55\xe9\x2b\xe2\x7b\x85\x35\x46\x47\xd7\xd7\x7e\x4e\x7b\x2f\xcc\xfd\xf8\xf6\x3e\xc2\x3e\x38\xe5\x41\x9c\xc5\xad\x67\xb7\x2a\x6e\x9f\xb2\x2a\x76\xb4\x93\x0a\xf9\x97\xe8\x7c\x7d\x67\x10\xd0\xc9\xd5\x06\x4b\x0d\xae\x10\xd2\xa3\x50\x30\x2f\xc4\x12\xfc\xf7\xcd\xc6\x67\xb5\xb6\x8c\x14\x85\x01\xdb\x85\xb9\x0e\x6a\xae\x1d\x99\xa4\xd0\xa5\xe8\xb9\x64\xc5\x77\xb5\x3f\xfc\x3d\x4c\x87\xb6\x69\x0d\xa0\xf1\xfd\x1c\xd3\x71\x25\xfb\x35\x51\x1d\xb6\xa1\x9e\xd2\xae\x3e\xfe\xe0\x9b\x4d\xaf\x21\xb4\x4b\xa9\xaa\x07\x9c\x3c\xfd\x09\x1b\x89\x10\xa1\xe3\x63\x19\x23\x12\xff\x1c\x13\x51\x4a\xa3\x41\x96\xe3\x89\xbd\x52\x67\x35\xe9\xbe\x77\x7a\x5d\xca\x13\x34\xb1\x17\x5a\x11\x3f\xf2\x51\x63\x71\x71\x31\x49\x21\x4f\x81\x32\x3c\x5c\x76\xf5\x2f\x55\x87\x4d\x13\xaf\xdb\x01\xe1\x86\xd4\xae\xef\xb5\xb1\x3e\x14\xda\x01\xb4\xf9\xe0\x27\x27\xf3\x9f\x04\xda\x31\x50\x58\x23\x9e\x50\x94\x58\xc7\x23\x02\x5e\x59\x91\x27\x33\x2e\x06\x19\xae\x5c\x61\x43\xd1\x0c\x5c\x57\xdd\x02\xfe\x40\x7b\xf9\xf8\x0b\xfd\xe2\xf0\x1d\x0f\x4f\xf3\xc0\x86\x02\xc9\xd2\x80\x16\x61\x77\xf7\xea\xa3\x05\x3d\x8d\x82\x31\xd6\x23\xbd\x91\x41\xa1\xd5\x5b\x4f\x2b\x3e\x8e\x77\xb1\x1d\x37\x2f\x2f\x15\xca\x70\x48\xf5\x7b\x02\x8e\x32\xb4\xd4\xf3\x99\x48\x99\x1d\x87\x13\x20\xfb\x39\x8a\xcc\x17\xac\x0e\x41\x90\x1e\xcd\xa5\xed\xbe\xab\xd7\x3a\xca\xc3\x49\x2f\x2b\xbf\xb5\x44\x7c\xec\xfc\x4b\xfe\xdf\x42\x05\xcc\x17\x3c\x92\x61\xf5\x80\xd3\x3f\x28\x68\xed\x27\xc6\x62\x62\x69\x64\x20\xbf\x2b\x0d\x73\x53\x3f\xe7\x56\xc4\xb2\xd4\x91\x8d\x56\x7e\x06\x52\xb0\x67\x39\xa5\x79\x79\xb4\x19\xc1\x2a\x4b\x52\x91\xdd\xb1\x67\x02\x61\x25\xf5\x84\x36\x9b\x9f\x15\xe5\x59\x16\x0d\x5c\x03\xf6\x86\x90\x64\x37\x5c\xbf\x66\x58\xb9\x4a\x7b\xb0\xb4\xa6\x9d\x0d\x2a\xb1\x2c\x1b\xe6\xf0\x66\xd6\xfe\x98\x1b\x48\xfb\x2c\xe1\x60\x91\x25\x1d\xaf\x58\xdd\x2e\x17\xaf\xfe\x13\x98\x45\xcd\xec\x1b\xb2\x71\x2e\xbd\xaf\x5b\xf2\x85\x88\xab\x75\xad\xa6\x82\xae\xa8\x90\x37\xae\x70\xde\x12\xff\x99\x41\x88\x2e\x48\x23\xe0\xba\x5e\xaa\x6b\xd4\x68\x01\xb1\x91\x59\xfe\xea\x32\x76\x24\xf5\xa6\xee\x10\xcc\xd2\x16\xff\xf2\xfb\x09\xe2\xa1\x1c\x10\x4c\x19\xac\xf3\x31\xef\xb7\xc1\xbc\x67\xf5\xad\x9d\x1f\x06\xbd\x73\xa2\xd5\xde\x3f\x32\xac\x45\xd5\x37\x83\x4d\xc9\xc2\xe8\xf1\x4e\x59\x51\x68\xdb\x2b\x43\x91\x93\x3e\xf8\x9d\x6e\xe5\xca\xe0\x22\x16\xd7\xaf\xa6\x10\xde\xa7\x38\x9a\x00\x33\x32\x47\x87\x5b\x46\xf7\x92\xcc\x83\x18\x6a\xda\xf2\x7c\x5b\x38\xf4\x73\x52\x27\xca\x33\x72\x6b\xbf\x37\xea\x6a\x04\x86\x7e\x2a\xb9\x57\xa1\x97\x96\x29\x64\x91\xea\x82\x06\xc5\xb7\x75\x66\xc9\xa0\xcf\x9f\x57\x5d\x1a\x6b\x94\x85\x02\x95\x20\x38\xf3\x3c\x33\x30\x76\x8d\x4b\x15\xf8\xf6\xc6\x05\xd7\x23\xa7\x43\x6b\x84\xa9\x20\x43\x06\x3d\x33\xb4\x39\xdf\xfe\x33\x09\x2b\xa8\x16\x44\xf0\x9b\x36\x91\xad\x11\xe4\x99\x5e\xdd\xec\x1c\xc9\xb0\xe6\x63\x09\x96\xb1\xfc\x35\xfd\xa1\xf9\x65\xb3\xfd\xf8\x62\x8c\x50\xa3\xb0\xc6\xc2\x6f\x7c\x8c\x66\x06\x19\xf4\xe5\xa9\xa6\xeb\xc9\x15\x39\x49\x25\xfd\xbc\x17\x85\x57\x41\x11\x9c\x64\xbc\x03\x90\x85\x81\x7b\xbc\x10\x0a\x53\x48\x47\x1c\xa4\xb7\x97\x4c\x45\x83\x2b\xe4\x3b\x8a\x47\x3f\xd0\xf7\x9e\x8b\xce\x56\x5c\xda\x67\xdf\x92\xa2\x82\xdc\x5a\xc1\xe1\x8e\x57\xe9\xd9\x3c\x11\xec\x19\x20\xda\xaf\xc1\x0c\x67\x5d\xc1\x86\xef\x88\x44\x95\xe9\xb6\x3e\x7a\x26\x50\xae\xe6\x2d\x40\xd8\xc8\xf2\x3a\xbe\x18\xe9\xa8\x5a\xe4\x4b\xe2\xbc\x86\xa2\x70\x84\x9f\x08\xe2\x99\x9f\x42\x48\xc7\x9d\x97\x47\xd5\xa9\xa6\x88\x87\x76\x99\xa4\xaa\xfe\xf1\x85\xfa\x31\x04\xfb\x2a\x24\x3b\x36\xc7\x6e\xe2\xa9\xb7\xb4\x2b\x2c\x54\xd1\x55\x79\x5e\x67\x56\xe1\x41\x9c\x05\x7b\x6f\x57\xd4\xc6\x12\xbd\x19\x59\x49\x0d\xb1\xb2\xbf\xdb\xfb\x16\x5e\xa5\x87\x6e\x3c\x6f\x9c\x4e\x39\x81\xa3\x1b\xb1\xa9\x3b\xbd\xbe\x51\x39\x8c\xa3\xfd\xc8\xa4\xbe\x4e\x1b\x40\x45\x8f\x5a\x87\xa8\x0b\x83\x98\xfc\x9a\xcb\xc7\x75\xf4\x8b\xe3\xf6\x50\x5d\x81\xc1\x83\x6d\xb2\x96\x6f\xdd\x0d\xb1\x5b\x15\x2c\xba\x43\x55\x19\x42\xae\x6c\xfa\x09\xfc\x32\xea\x46\xd3\x0b\x7b\x6c\xd4\x53\xc1\x9c\xfa\x39\x74\xf2\x31\xc2\xf0\xe3\xca\x9e\x6e\x0a\xb8\x15\x29\xe6\xc7\x4c\x7c\x82\x0a\xcb\x2a\x76\xf9\xfb\x7d\x60\xbc\x60\xf1\x75\x7e\x5b\x47\x2e\xfe\x30\xc0\x9c\x28\x50\x52\x8b\xed\x71\x4a\x34\xd5\x5d\x1b\xb4\x1f\x99\x8b\xc8\x78\x80\x55\x7a\x2f\x55\xc8\x14\xd0\xba\xc2\xe0\x26\x31\xb9\xb0\x7b\x0f\xc2\x82\x8f\x22\xe7\xd2\x3b\xa0\xa8\x25\x18\x64\x75\xe3\xd8\x8b\x82\x45\x60\xdb\x3b\xde\xcb\x30\x9d\xb0\x53\xa6\x80\x1d\xe9\x15\xd2\x65\xd1\x10\xdc\x2a\x84\xab\x12\x52\xc9\x3d\x66\x3e\xa2\x92\x29\xf4\x5a\xff\x96\x09\x66\xb2\x20\xe8\x48\x5d\x45\x21\xbd\x56\x9b\xfa\x63\xac\x4b\x7a\x96\xdc\x53\x9d\x9a\x08\xff\xe2\xcb\x3c\x9c\x61\x56\x94\xe7\xf7\xe7\x2c\x67\xa2\x24\x86\x5d\x1b\x62\x14\xdf\xd7\xba\x71\xaa\x1d\x52\x36\x37\x13\x52\xf9\xd7\x87\x03\x9c\x8c\x20\x61\xc2\x0d\x7f\x32\xec\xf9\x83\xd3\xdd\x73\x82\x93\x31\x5e\xaa\x4f\x99\xe4\xd7\x3b\xb0\x20\xe9\x6a\x31\x97\xa4\xb0\x43\x57\xfe\xaa\x33\xb5\x7c\x44\x80\xf9\x55\x16\xab\x6f\xb5\xf1\xfe\x5f\x58\x8c\x0e\xd2\xfd\xf0\xaa\xa2\x88\x9c\x1c\x51\xa1\xde\xed\x7d\xe7\x22\xac\x76\x14\x76\xf2\xe8\x37\x56\xff\xa1\x51\x79\x18\x34\xec\x94\xe9\x64\xfb\xce\xe6\xa4\x03\xd7\x3d\x45\x68\x19\xa4\xb2\x5b\x4d\x85\xfd\xfe\xc8\xdb\x9b\xad\xda\x6b\xea\x2a\x76\xca\x79\xbf\xc6\xc6\x32\x33\x99\x17\x7b\x7e\x68\x6f\x2a\x6e\x3a\x7b\xc3\x46\x72\x67\x96\xe4\x4d\xf1\x1a\x62\x98\x1a\xb5\xea\x03\x9c\x2d\x49\x85\x0e\x99\x4d\x0c\x7e\x49\x4f\x05\xe7\x94\x47\x1e\xcc\x40\xd4\x2e\xcb\x6a\xcf\xe7\x58\x66\x18\x60\x39\x52\xa5\xb0\xbb\x7a\x93\xe7\x38\x55\x9e\xaa\xb1\x4f\xc2\x4d\x6d\x99\x4d\x85\x0b\x85\x32\xfb\x4a\x3f\xac\x3c\xe3\x55\x45\xd8\xe7\x51\xdd\xcb\x97\x74\xfe\x17\x9a\xed\x17\x74\x22\x27\x7d\x1c\xdc\x6b\x3b\x46\x83\x4e\xc7\x4a\xc8\x12\xdf\x6c\xe1\x58\xfb\xcc\xe8\x4a\x45\x10\x42\x8b\x4b\x8f\xde\x08\x04\x57\x03\x3e\x62\x56\xce\x93\x62\x5a\x02\x82\x2c\x61\x68\x23\x0b\x83\x41\xaf\xb4\x2c\x41\x93\x41\x49\x43\x24\xb7\xa3\x8d\xf6\xd5\x99\x42\x45\x0a\x82\x14\x32\xf4\x85\x6e\xb5\x77\x99\x1a\xa4\x4e\x89\x28\x06\xd8\xa5\x07\xf7\x1f\x71\x9a\x87\x31\x11\x85\x27\x3b\xaf\x06\x3e\x3d\xe7\xfd\xe9\x60\x9f\x4a\x4a\x11\x52\xbb\x54\x1a\x31\x76\x9e\xdd\x80\x6d\xfb\x02\xfb\x50\xb7\xcc\xfb\x1d\x9d\x05\x2d\x1c\x8b\x85\x32\xfb\x75\x15\xb5\xfa\x79\xf7\x3d\xf3\x08\xaa\xb0\x91\x4b\x2c\xef\xb9\x82\xf5\x55\x7e\x39\x16\x74\xe2\xbd\x25\x9b\xf3\xf7\x46\x0b\xc5\x7a\x91\xe9\xf7\x22\x9b\x1c\x27\xd9\x3a\xb8\x80\x46\x91\x06\xe8\x00\x51\x6b\xc4\xe4\x20\xfc\x91\x7a\xe3\xc5\x65\xfb\x40\x49\x98\xb0\xc7\xdb\x9a\x35\x67\x2f\x5b\x26\x10\xed\xd7\x94\x8e\xce\xa8\x3d\xf5\x8b\x8d\x42\x51\x0b\xe5\xb8\x8e\x71\x9c\x00\x21\xd3\xc9\xe1\x3c\x7c\x49\x1c\xbd\xe3\x00\x21\xb9\x0c\x59\x2d\xac\x7c\xf8\xa9\x82\x42\xeb\x19\xe3\x87\xc2\xd6\x7a\xd7\x47\xfb\x0d\x7f\xc5\x9f\xa8\x8d\x70\xcb\xec\x1e\x73\x06\x3e\xef\x1d\x29\x31\x08\x9e\xf9\x35\x1d\xab\x20\xdd\xdc\xc9\x26\x14\x9e\xe2\xbc\xef\xe5\x56\x8e\x95\x14\xc4\xc7\xfa\x11\x0d\xbc\x89\x7d\x8f\x2f\x7b\x36\x44\x13\x6f\x34\x57\x9b\x8c\xeb\xfe\x70\xb2\xa2\xf4\x12\xb7\x07\x21\x9e\x72\xe9\x50\x8e\x7f\xd9\x40\x71\x47\x36\x94\x8e\x14\xfe\x9e\x1a\xab\x65\x9a\x92\xf6\x50\xcb\x35\x17\x9c\x8e\x8f\x24\x74\x18\xa7\x7b\xac\xa6\x0c\x6c\xd7\x2d\xc1\xac\xc3\xbe\x71\x2b\xd2\xed\xf5\x2e\xa7\x5c\x5d\x79\x92\x34\x16\x1c\xb8\x98\x90\x15\xeb\x40\xaf\x43\xba\x50\x72\xd7\x97\xac\x2f\x01\x1e\xd2\x44\x71\xd3\xf2\x13\x85\xec\xbe\xef\x3e\x62\x7d\xfd\xfc\x0b\xf7\xb6\xf7\xf7\xc3\x86\xc2\x42\x7c\x06\xdb\x3a\x0b\x5a\x64\xec\x46\x3c\xc7\x85\x0f\xfa\xc0\x68\x87\x73\x0a\x51\xa2\x7d\x0d\xc1\x20\x06\x76\xfe\x25\x69\x16\x1e\x5e\x11\x6b\xe2\xfb\x26\x5a\xc3\xc9\x35\xce\xc9\xee\x7a\xec\x14\x99\x13\x15\xfc\xd8\xb3\xf7\x6d\xb7\x99\x19\xcb\xcf\xbd\xed\x8d\x77\x29\xdb\x5b\x1d\x77\x91\x8f\x8e\x1a\xb7\xa1\xde\x0b\x79\x32\xca\x21\x57\xcf\x57\x59\x5c\x33\xbd\x7b\xba\x7f\x2f\xfb\x13\xc2\xe7\x48\xc4\x52\x18\x3d\x8e\x05\x40\x1a\x01\x05\xc9\xb1\x10\x44\xaf\xf1\xee\xd4\xb7\x1f\xc3\xef\x64\xfe\x20\x32\x9b\x4a\x7d\xb8\xb9\xf1\x3c\x7e\x90\x56\xea\x8e\xce\xae\x82\xcf\x1c\xca\xd9\x32\xfb\xb5\x65\xb5\x37\x12\x9a\x9a\x24\x6f\x30\x12\x89\x21\x68\x74\x69\x5d\x7a\x1e\x7a\x86\x32\xbc\x67\x03\xe0\x92\x19\x8d\x62\x28\x86\x9e\x7c\xa4\x39\xf7\xbf\xde\xcb\x14\x5d\xa4\xf9\xb5\x90\xad\x48\xe3\x0e\x83\x5a\xc3\x7a\x49\x87\xaf\x4c\x45\xa1\x8d\xf0\x47\x77\xa9\xf8\xfb\x02\xa6\xf7\xa5\xec\xe4\x6f\xad\xed\x87\xcd\x77\x5f\x4c\xe7\xf4\x2e\xfb\x94\xef\x7e\x83\xde\xc1\xe1\x94\x79\x88\x63\xaa\xc3\x5d\x62\xfb\xeb\x7f\x92\x8c\x00\xda\x1f\x2a\x28\x18\xb0\x59\xa7\xa8\x6d\x17\xe1\xa4\x44\x9c\x11\xd2\xbd\xa4\x5d\x2b\xa2\xbd\xc2\x6b\xd2\x27\xb7\xdb\x4c\x2e\xe4\x0b\xdc\xda\x59\x8a\xf5\xf8\x43\x7c\x34\xb4\x54\xcf\x8b\x79\x70\xef\xf0\xf3\xbb\x0f\xf7\x48\x82\x96\x24\x95\x9a\x48\xe4\x26\xaf\x32\x00\x65\x5b\x37\xfe\x4f\x83\x7b\xf3\x81\x3a\x34\x53\x00\x9a\xc5\x09\x2d\x07\x6f\x02\x45\x0f\x5e\x80\x6f\x8e\x61\x4e\xfc\x45\xc8\x4f\x6d\xe7\x33\xdc\xe2\x95\x50\x89\x3c\x8e\xa1\x8b\xd6\x91\xb8\x80\x2d\xac\xf7\xd8\xb4\xb7\x6a\xdb\x01\x9d\xcc\x15\xbd\x1f\x42\x85\x5a\x15\x24\x07\xa6\x48\xba\xb8\x06\xdf\x2d\x6b\xee\x97\x16\xaf\xe5\x23\x55\x67\x08\x45\x3a\xd0\x9c\x7a\x24\xf0\xac\x30\xc7\x61\x66\xa4\xfe\xf7\xc5\xff\x77\xb5\x87\xe7\x62\x86\xf5\xad\xb3\xb8\x2f\xa0\x3d\x1d\xe4\xf2\xe2\xf2\xe8\x1a\x96\xf7\x1c\xf4\x10\x12\xd9\x20\x4f\x5b\xa8\x26\x7c\xcd\x78\x35\xba\x9e\xa1\xd7\xd1\x1b\x9e\x42\xb6\xa2\xf4\x8c\xd6\xa0\x40\xf0\xe9\xf0\xc6\x8b\x4b\xe9\x61\xf2\x53\xdb\x5e\xfe\x1c\xa7\xfb\x4c\x6b\xc0\x97\xf2\xf1\x2e\xc3\x2c\x11\x18\xe9\x69\x59\xc4\x2b\x67\x7b\xe4\x4f\x3f\x52\x91\xd4\x3d\x14\x1a\x00\x50\x64\xbe\x8e\x0f\x69\xce\x3c\x44\x4e\xaf\x01\x84\x8b\xd1\xf3\xb9\x6a\xc3\x34\x44\xa6\x64\x29\xa7\xf3\xeb\xb5\x3e\x65\x92\x71\x5f\x86\x75\xa0\xb4\x07\xac\x4d\xc1\xf4\xea\xe8\xbf\x8c\x8b\xb6\x9a\xff\xc8\x76\xa9\xaf\x24\x7a\xb0\x58\x17\x8e\x9a\x3f\xa9\x0c\xf8\xae\x27\x87\xb2\xf4\x79\x6b\x9b\x13\xb1\x52\x2b\x08\x8e\xa9\x27\x95\x79\x77\xa1\x65\xff\x92\xc1\xa7\x9f\x26\x9f\x39\x63\xf0\x7e\x78\x6b\x4c\x2c\x63\x52\x3a\x37\xf6\x8f\xa6\xb5\xa4\x23\xa3\x45\xe7\x03\x87\xf0\x9d\x45\xd3\xb2\xd6\x67\x54\x8b\xd1\xbe\xab\xd8\xf5\x21\xf5\x20\x3c\x23\xae\x1d\xde\x44\x16\xf5\x30\xe6\xd3\x23\xf1\x55\xad\x6b\x00\x61\x6e\x6f\xb6\xea\x9d\x65\x3a\xe2\xad\x4c\xd9\x32\x7d\x2f\x9a\x39\xc1\xd7\x53\x76\xbf\x66\x31\xaf\x6a\x31\xe2\xcd\x03\xce\xbf\x2e\x06\xaf\x8b\xcb\xc7\x53\x19\x88\x4e\x94\x51\xc6\x31\x68\x53\x7e\x18\xb8\x20\x65\xd4\x57\xef\x00\x6d\xa8\xec\xca\xb5\x1b\xa9\xf1\x6a\x03\xb2\x8d\x03\xc5\x5f\x76\xad\x2a\x75\x18\x91\x46\x1e\x1a\x91\x16\x2e\x6d\xd4\xc3\xe5\xf9\x1e\xff\x31\x4e\x20\x84\x1b\x89\x7b\x4e\x76\x34\x18\x89\xd6\x56\xec\x8d\x4a\xcb\xef\xfd\xd7\xfe\x9e\xb8\xf0\x5c\x43\x9e\xdb\xf4\xfe\xc1\x38\x87\xc6\x82\xdd\xb0\x95\xac\xb2\xf5\xa7\x08\x2b\xd3\xa7\x1c\x8f\x7f\xe3\xe3\x9b\x2f\xbd\x74\xcf\x19\x21\x8a\x28\x8a\x15\x00\x5c\x83\x40\xa7\x34\x8c\x1e\xc1\xde\xfd\xb2\xec\x3e\x93\x38\xfd\xb5\x95\x8b\xd7\x2c\xe9\x5b\x56\xa6\xf1\x7b\x3c\xb9\xf5\x93\xe0\xf1\x07\xb3\x98\x33\x9f\xbf\xd8\xd6\xf8\x07\xba\xdf\x2e\xd2\xc7\x84\x94\xa8\x86\xd5\x84\x8e\xa9\xac\x5d\x01\x5c\x28\x22\x2f\xfd\xda\x2d\x39\xad\x02\xb8\xd5\x85\xe3\x38\x4f\x51\xc2\x1d\x06\xb5\xc3\x9c\x64\xc5\x70\x27\x81\xb3\x91\xb9\xf7\x51\x42\xae\x69\xb7\x14\x8b\xce\x7a\x97\xde\x14\xb6\x8e\xdd\x24\x9d\xf9\x0d\x7e\xd9\x60\x3b\xfa\xe3\x4a\x08\x1f\x82\x4b\xec\x8b\xe7\x12\x20\xaa\xf4\x54\xf0\x54\x54\x3f\x81\x67\x91\x58\x71\x34\xbf\x26\xcb\x51\x4a\xba\xd0\x8b\xac\x37\x0c\x9a\xdd\x50\xa6\xf2\x05\xbc\x7f\xd4\x74\xe4\xb6\xec\x2f\x58\x55\x46\x75\x67\xb5\x4c\x7b\xf5\x0e\x45\x2c\x6f\xe3\x6a\x58\xd0\xeb\x9c\xf7\x76\xa8\x45\x36\x8e\x2f\x8f\x34\x6f\x2c\x1f\xc2\xc8\x90\xb3\x78\xfe\x1c\xb1\x64\x24\x6e\x93\x8e\x0e\xec\x4e\x17\x30\x44\x07\x89\xbf\xe6\xbc\xe4\x3f\xda\xf3\x23\xb3\xa4\x23\xc2\x4f\x84\xd8\xfb\xc2\x58\xa9\x82\x96\xeb\x9e\xd1\xc4\x42\x2d\x9d\x41\x16\x69\x1f\x13\x71\xea\xcf\x22\xbb\x43\x50\x5a\xc5\x62\x4f\x58\x2c\xb0\xe2\x28\x74\xd1\x8d\x62\xe0\x04\x4e\xb1\x8a\x2d\xdc\xae\x00\x21\xbb\x6d\xcd\x36\x1c\xc2\xdf\x10\xdd\x8f\x5d\xd7\x05\x18\xd4\x1a\xfb\x94\x71\xc6\x5f\x07\x16\x7e\x7c\x5b\x18\x15\xdf\x78\x36\x83\x1d\x99\xde\xcf\x30\x93\x1d\x33\x4e\xf9\x4a\x47\x85\xc0\x42\x86\x77\xb1\x03\x53\x74\x5c\x28\x62\x43\x85\x66\x1d\xbc\x1e\x25\x51\x09\x39\x17\xb9\x1e\xd3\x0e\x12\xd5\x01\x30\x50\x5d\xab\x89\x49\x69\x85\xcb\x0b\xf7\x56\x17\xcb\xcf\x0f\x42\x1b\x1c\xa4\xaf\xeb\x25\x65\xc2\x1c\x6a\x88\x6b\xf3\x49\x13\x57\xce\xdf\x53\x8b\x1c\x20\xe4\x45\xd4\xf4\xbd\xcb\x85\x5a\x93\x4d\xb4\x98\xe1\xa1\x91\x1d\xba\x09\xc4\x17\x2b\x13\x92\x6a\xf9\x53\xbf\xd9\x0d\xe5\xe7\x72\x64\x16\xe9\x1e\x5b\x3f\x32\x02\xaf\x8e\xe3\x86\x4e\x47\x33\xba\xb6\x9c\xf7\x6f\xf0\x56\xa9\xb4\x1d\xd0\xb9\xe1\x12\x06\x2e\xc2\x7f\x6c\x52\x00\x0d\xab\x94\xb4\x4c\x1c\x90\xe1\xad\xc3\x70\x70\xcc\x14\x99\x0a\x1f\xd7\xf5\xd3\x7a\xb8\xf3\xa7\x9a\x11\x18\xfa\x16\x3a\x42\xb8\x4e\x89\xa5\x55\xfb\xd2\xe3\x23\xb9\x20\xe6\xac\xcb\xe3\x0f\xa1\x75\x8c\x09\x61\x3c\xb9\xa8\xff\x94\x85\xe8\xa4\x16\x15\x73\x8b\x64\x1b\x71\x13\xac\xa2\xce\xe0\x48\xf1\x10\x82\x40\xf4\x16\x92\x01\x8f\xe7\x33\x26\xea\x94\x0d\x22\x11\xc5\xa5\xf8\x1c\x28\xf1\x54\x2c\xaa\xbd\xad\xf1\x6c\xdd\xf6\xf4\x72\x4f\xfe\x8f\xb7\x7e\xb9\xc6\x53\xe6\xcb\xa8\x1e\x4e\x26\xa2\xf1\xe2\x55\x18\x03\xde\xf9\x03\xe3\x39\xa5\x36\x3b\x0d\xff\x8d\xb0\x42\x9f\xb1\xbc\xbf\x71\x99\x5f\x9e\xa8\x90\x9c\x34\xd9\x47\xd9\x99\x59\xfc\xc3\x95\xbc\x72\xc2\x25\x05\xd0\xcd\x8c\x36\xe8\x36\x66\x84\x47\xb9\x70\x1d\x3b\xbf\xf6\x9b\x99\x04\xfc\x42\x7b\xb7\xd9\x45\x51\x65\x67\x27\xb4\xe0\x64\x83\xb4\x80\x6a\x27\x0c\x6c\xa8\x40\x93\x0f\x00\x75\xa8\xf1\x0e\xe7\xc8\x99\x25\x08\x3e\x73\xe7\x7d\x18\x41\x05\x73\xea\xdf\x79\x89\x9e\xba\x83\xc7\xd7\x8f\x45\x66\xfb\x82\x6b\x4a\xc6\xf1\x1f\x6a\x42\x77\x1a\x07\x86\xdc\x7f\x6b\x87\xa7\xb7\x52\x47\x61\x21\x83\x97\x84\x7d\xa2\xa3\x1b\xc2\xd2\x12\x0d\xc5\xc7\xd8\x53\x86\x90\x3f\x8c\xbb\xde\x9b\x4b\x49\x9e\x0e\xee\x5a\x00\xd0\x02\x5c\xd7\x01\x49\x30\x34\x4f\x5c\x88\xda\x52\x86\x41\xbc\x60\xc4\x73\x6c\x90\x6e\x56\x81\x8b\xd3\xdf\x12\x26\x67\x7c\x99\x60\x73\xdc\x2c\xce\xfa\x6c\xfa\x4a\x73\x80\xa0\xd1\xc8\xd9\x13\x0d\xe5\x40\x2e\x41\x3a\x88\x79\x7e\x88\x9c\x92\x73\x4b\x8b\x74\x4b\x03\xac\x07\xe2\x93\xc2\xf9\x44\xbd\x61\x40\xb6\x1c\xca\xa6\x3d\xbb\x31\xca\xb3\xfb\xf2\xc7\xe8\xc5\xbc\x97\xae\x33\xdf\x53\x96\x4b\x63\x31\x92\x44\x30\xc2\xcc\x0d\x86\x84\xe2\x63\x2a\xbe\x76\xba\x3f\x0c\x01\xe3\x53\xa3\x52\x91\xcb\xd2\x2b\x38\xb3\xb9\xee\x6f\x6e\xcd\x54\x14\xbe\x32\xa6\x2d\xa6\x93\xd4\x03\xee\xad\x7f\xf2\xc6\xbc\xbe\xd9\xbf\xff\x34\x34\xdc\x15\x72\xed\x19\xd5\xe8\x72\x41\x6d\x57\xb0\xcf\x60\x5b\x1f\x14\x17\x8c\x3b\xfe\x76\xd5\xf9\x98\xb8\x76\xcc\x9d\xa8\x1a\x02\xa8\x26\x0a\xe2\xa8\x83\x2e\x7e\x51\x6a\x36\x88\x78\x26\x6d\xd8\xdb\x1a\xe2\x03\xe7\xdf\x74\x27\xbc\x6e\x50\x35\x37\x7d\xea\xf7\xc0\x65\xb1\xbb\xdb\xea\xe2\xc9\x03\x97\x5a\x15\xbb\xf1\x2b\xbb\xcc\x9e\x87\xae\x08\x0f\x87\x3a\xbf\x28\x80\xfb\x9c\xfc\x5a\x91\x66\x2a\xdc\x2c\x0a\xee\xfb\x09\x9e\xc2\x02\x9c\x75\x81\x0e\xcb\x4a\x3a\x02\x42\x79\xa2\xd6\xd5\x55\xc2\x65\xbc\xdf\xea\x99\x95\x21\xf5\x43\xf6\x96\xf4\xf6\x16\x83\x0d\xde\x45\xd9\x4d\x2c\x88\xce\x72\x1e\xee\x70\x1e\x31\xea\x5d\x32\xaa\x45\x81\x29\xd6\x66\xa9\x6a\x04\xc3\x9e\x1e\x57\x03\x48\x1d\xb9\x89\x31\xec\xa6\x40\xe1\xf2\x4b\x92\xf5\x50\x46\x77\xa8\x6d\x1c\x6c\x60\x61\x74\x67\x1f\xb3\x38\x37\x7f\xca\x76\xdc\x9c\xc7\x37\xba\x18\x6b\xb1\x8a\x55\x0a\x6a\xbc\x54\x68\xde\x23\x87\xc6\x38\x48\xc0\xc3\x4e\x20\x21\x9a\x12\x86\x5f\x0b\x45\xa0\x27\x54\xf7\x87\x2d\xe5\x91\x8d\x59\x2d\xbb\x31\xfb\x37\xc5\xbc\x3a\x6c\x58\x82\x9c\xc5\x5d\x3d\x27\x18\x28\xcd\xa8\x24\xfa\x17\x6b\x4b\x03\x77\x2e\x4d\xd6\x63\xd3\x30\xfb\x5f\xa3\x4a\x0a\x11\x9f\x1d\x8c\x42\xcf\x6c\x48\x64\x2a\x86\x10\x3a\x64\x2a\xc7\x10\x41\x51\x14\xd6\x62\x62\xc4\x62\x8f\x78\x73\xb1\xe1\xcf\x7c\x31\x06\x51\xdb\x72\x2a\xbc\x92\xa8\xe7\xb5\xb0\x33\xb4\xc1\x79\x8f\xcc\x28\x77\xc1\xbc\x14\x4b\xb3\xdf\x71\x3f\x3e\x4f\xb0\x26\xe4\x0f\x5d\x02\x64\x94\x7a\xaa\x07\xd4\xaf\x93\xa1\xa9\x48\xf4\x69\xb0\xd5\x9c\xa3\x15\x16\x40\x64\xc2\x69\x80\xb5\x57\x9a\xf9\x12\x4c\xb0\xc6\x8a\xfc\x88\x28\x9e\xc3\x09\x13\xed\x50\x8b\x40\x3f\xb2\xa2\x25\x71\x17\xf1\xfd\x85\xab\x95\x27\x5b\x58\xef\xd1\x29\x6f\x95\xc5\x79\x5c\x4d\x14\x09\x05\xbb\x76\xc6\xfc\x72\x65\x43\xd3\x8a\x14\x53\x00\xa5\x82\xc7\x5e\xcb\xb8\x1a\xf8\xfc\x40\xfe\x2a\xbf\x33\x07\x66\x7d\xaf\x8a\x64\x52\xfe\xf4\xe6\xeb\xb9\xc0\xbf\xc0\x97\x9a\xf6\xce\x60\xf7\x97\x63\xde\xf7\xcc\xd0\xdf\x07\xde\x7b\xbd\xce\x6d\xd0\x46\x1f\xe0\xdc\x2f\x70\xce\xa7\x09\x2d\x7b\xcc\x6c\x39\x8e\x56\xea\x82\x64\xf9\xbd\x64\x3d\x69\x3d\x95\x6f\x90\xaf\xe5\x9e\x4a\x9b\xbb\x62\x8e\x1e\xe1\x2f\x1a\xe5\x09\x22\xda\x29\xf7\xcc\x98\x3b\x02\x23\xab\x8e\x5a\x39\x0b\x04\x11\xea\x92\x38\x06\x42\x2f\x0a\x4d\x6a\xe4\x45\xa1\x57\x8c\x68\x4a\x5d\xd7\xe5\x5e\x9c\x6e\x4f\xad\x24\x28\x08\xff\x81\x5d\xd4\x5e\xe5\x70\xd6\x30\x4d\x15\x0a\x33\x89\xf7\x48\x32\x12\x69\xfc\x3a\xf2\x7c\x39\x1c\x1c\x3e\x7e\xc1\x6d\x99\xac\x87\x69\x7f\x50\x40\x3e\x96\x11\xf2\xf9\x70\xd4\x79\x8f\xd0\xa0\x83\xf8\x22\xd5\xa4\x2f\x04\x59\x15\x67\xa5\xff\x64\xd7\x89\xd9\xbb\x11\x15\x83\xab\x22\x11\x4f\xc3\x1b\x62\x34\x3d\xef\x72\x93\xb5\x96\x8f\x0f\x05\x0d\xd9\x6f\x40\x82\x28\x35\xa7\xdd\x86\x88\xbb\xf3\x49\x47\xe1\x59\xfd\x54\xf5\x24\xf9\x23\xea\xa8\xb1\x14\x0c\x09\x9f\x58\x0a\xeb\x29\x96\xb3\xe8\x15\x49\x16\xd3\x46\xe8\xaf\xd2\x01\x87\xd8\x85\xd1\x2f\x67\xbb\x41\xf8\xe5\x2d\xda\xee\xd9\xf3\x2e\x97\x58\xb5\xb6\xf6\xac\x96\xfd\x88\x16\xb3\xf6\xb3\xa7\x43\x11\x7f\xa7\xed\x88\x2a\xc3\xcb\x0e\x6b\x2c\xcc\xd5\x34\x3b\x6b\x14\x5c\x60\xb4\x23\x6a\xeb\x8d\x20\xeb\xcd\x9b\x10\x7e\xc8\x65\x17\x68\xe9\x03\x2e\x52\xbb\x58\xeb\xa7\xc5\x7a\x9b\xa8\x9f\xbf\x38\xe6\x6f\x31\x71\x8e\x92\x7f\xe2\xf2\x37\x3e\xd9\x0d\x16\x53\x81\xb1\xe2\xff\x74\xb1\x95\x76\x32\x33\x81\xc1\x0d\x34\xf7\x4b\xbb\xfb\x5f\x1a\xde\x67\x71\x40\xba\xf0\xe3\x3d\xa5\x44\x17\x0b\x25\xeb\x1c\x1c\x3e\x46\x7c\x66\x6b\x95\xb5\x5e\x5c\xc7\x8a\xeb\x52\x51\x91\x8a\x86\x61\xf7\xa6\xc5\x17\x08\x31\x0d\xc5\x6a\x25\x5c\xb1\xd3\xea\x3d\x12\xc3\xcb\x85\xbc\x9b\xa1\xbd\x66\x95\x58\xc9\x34\x7d\xb9\x25\xbd\xb9\xce\xee\xe5\x06\xae\x2f\xc6\x16\x66\xa9\x88\xc3\x76\x7a\xf6\x6c\x97\x3d\xd0\x66\xda\xc9\xc6\x83\xab\x71\x10\x57\x90\x54\x9d\x68\xe4\x8e\x3d\xa6\xae\xf1\xc1\x16\x2e\xf5\xd7\x53\x87\xd7\x48\xe6\x07\xc1\x1b\x98\x88\xd3\x3e\x36\xea\x29\x36\xd7\x4c\x8c\xa3\xc3\xe6\xd5\x22\x5e\x85\xc5\xd5\xaa\xa4\xd0\x17\x47\xcd\x1f\x23\xe6\x1a\x6b\xdc\x0e\x22\xb6\x93\x3d\xfb\x63\xec\x8d\x5f\x08\xbf\x61\x68\x5d\xef\x44\x6a\xfc\x4b\x57\x48\x0e\x33\xec\x3d\x15\x97\xbb\xff\xcd\x02\xb4\x39\xbe\x35\x56\x78\x52\x01\x82\xdf\x73\xd5\x31\x45\xfb\x87\x6f\x1b\xbe\x4b\xde\x36\xe4\x8b\x77\x8b\x8f\xdc\xd7\x24\x1f\x58\x58\x4c\x52\x48\x55\xb6\xfb\xf4\xe5\x9f\x06\xb8\x33\x62\x38\x15\xd7\x84\x00\x27\x31\x52\xa5\x3a\xcc\xe9\x94\x9a\x3f\xf9\x1a\x2f\xe5\xf5\x0d\xaa\xf3\x38\xb4\xec\xdb\xf1\xe5\x80\xca\xda\x2a\x68\x93\xec\x0f\x86\x5e\x87\x03\x33\xf6\x2b\x28\x3c\xb6\x92\x12\x21\x8c\xd1\x22\x5d\x7e\x98\x64\x3b\x76\x5d\x4f\xe5\x8d\x2f\x4f\x88\x2c\xd1\x8c\x53\x6b\x6b\x2e\xf8\xbc\x1f\x11\xf2\x19\xff\xbb\xb9\xa9\x7d\xc8\x48\x57\xd5\x64\x7c\x8f\xf3\xfd\x12\xcb\xf4\x68\xdd\xe8\x36\x4b\x5e\x96\xe3\x42\x12\x84\x1a\x75\x4a\x0b\x39\xa3\xf3\x2d\x36\x3f\x0f\xe7\xd6\x40\x7c\x2e\x12\x38\xd1\xa8\x80\xf5\xc0\xe5\xb2\xa8\xe0\x09\xa5\xe8\x9b\xab\x74\xc0\xa5\x25\xa7\x40\xdd\xfb\x11\x4f\x92\x99\xdf\xa1\x87\x1c\x3f\x07\xa3\xae\xf3\x94\xa6\x29\xe6\x15\x9d\x61\xd6\xf2\x62\xd2\xef\xbc\x2f\x9d\x07\xd8\xbf\x47\x2c\x16\x68\xc7\xb5\x8b\xb9\xb1\xa8\x41\xb5\x17\xd7\x80\x79\x11\x30\x9e\x0a\xe9\x70\x1e\x1e\xae\x6b\xb6\xb3\x5a\xcf\x6f\xfd\xed\x36\x1a\xa7\xb1\x2b\x90\xf0\xc7\x0a\x72\x1f\x76\x67\x8d\x28\xea\x15\x05\xe2\x3a\x5b\x08\xda\xdd\xb5\xe4\x2c\x23\x56\xbf\xe4\x26\x89\x61\x8a\x6e\x5c\x2d\x50\xdc\xa0\x58\x89\x57\xd5\xc5\xb9\xbd\x34\x54\xb6\x15\x42\x18\x4d\x2c\x2c\xd2\xf6\xc2\xee\x2d\x71\x4e\xf5\x71\xc2\xad\x44\x62\x5c\x54\x1d\x53\x0f\x39\x08\x83\x8f\x0e\x0e\x64\x6f\x53\x99\xde\xc4\x17\xf2\x21\xd2\x6b\x92\x48\x8a\x71\x2f\x5f\x28\x43\xd3\xa3\x22\x0b\xb2\xfe\x7c\x04\x50\x03\x04\xa5\x61\x07\x0a\xe4\xac\xb3\x76\x0e\x09\x43\x18\x31\xc4\x0c\x0f\xa5\x52\xaa\xe5\x38\x15\xe2\x8a\x56\x21\x56\xd6\x81\xfe\xad\x98\x67\x9c\x51\x9f\x6d\x2f\x4a\xcb\xc7\x95\x2a\xa9\xc3\xeb\x26\xc5\xad\x66\xb0\x85\x2b\x33\x3f\xd6\xc5\x6b\xa2\x7a\x1a\x3e\xe8\x7a\xc3\x7d\xd7\x1c\xb3\xc9\xa0\xef\xa3\x6e\xd1\x7c\xd0\xdf\xdd\xa8\x8a\x1d\x87\x25\x7e\xa1\xea\x92\x49\x0f\x1b\xa5\x1d\x6e\x30\x01\xee\xda\x92\x88\xf4\x85\xb7\x81\x7e\x67\x19\x6d\xc4\x86\x37\x46\xb3\xe2\x78\xde\x41\x44\x4c\x59\x72\xf7\x98\xe3\x3e\x0d\x48\x74\xf3\xe7\xa0\x7b\xca\x14\xae\xdb\xaa\x26\xca\x89\xd1\x02\xbc\xf9\xf4\x42\x33\xf3\x3c\xae\x03\x3f\x90\x60\xe0\x6b\xbb\x55\x04\x41\x45\xee\xad\xe2\x72\xef\xe4\x41\x1f\x27\xae\x68\x2a\x29\xd2\xf5\x86\x87\x28\xbf\x9d\xc1\x4a\xb0\xb3\x91\x73\xf5\x9e\x62\x59\x88\xa3\x6e\xb0\x3a\x25\x2d\xf4\x11\xde\x0d\x8f\x4e\xfa\xfd\x77\xbb\x7e\x2c\x7c\x5c\xa2\x7f\x31\x1f\x75\x7c\x9e\xbe\x3e\xa4\x10\xec\xe6\x19\x6c\x3b\x12\xdb\xbb\x5c\xb8\xc5\xf9\x5c\x7d\xcd\x47\xed\x76\xd6\xae\x80\xf2\xd3\x18\x17\xc3\x84\x34\x15\x92\x0b\x94\xe3\x50\xce\xaf\xb0\x8a\xa3\xce\xd0\xc8\x98\xaa\xd3\xfb\x4b\x9f\x4b\xa5\x94\x84\xc7\xcc\x51\x11\x3b\x35\x79\x51\x42\x18\xc9\x6d\x81\x84\xff\x14\xb5\xbd\x43\xf7\x8b\xe4\xd6\xc1\x4f\x02\xad\x15\xd1\x5c\x2d\x50\x50\x0e\x2c\x2c\xea\xcc\xe3\x94\x1f\x0b\x91\xce\x54\xa6\xbf\x2c\xb3\x62\xfe\xf8\xac\xb3\x59\x60\x58\x98\xb1\xb0\x9b\x16\xc9\x70\x5f\xab\x0e\xab\x36\x63\xbd\xdd\x8d\xaa\x04\xfa\x11\x27\x0a\x94\xe2\xf5\xb8\xf0\x49\x10\xf7\x18\xc8\xf1\xe8\x93\x57\x1d\xbb\x2c\xf9\xd7\x94\xf6\x38\x83\xf3\xbc\x8f\xda\xbf\x96\xbb\x65\x4f\xbf\x89\x90\x9f\x8a\x0b\x74\xfd\x4d\x75\xde\x7f\x5e\xba\xab\xc0\x59\x9b\x81\xb8\x92\xf0\x54\x74\x84\x74\x50\x92\xea\x6f\x96\x8a\x7a\x69\xa9\xb4\xe1\xc9\x63\x3e\xb1\xdf\x6f\xf0\x9a\x50\x36\x54\x82\x44\xb1\x1f\xb2\x96\xd3\x9c\x53\x0e\x17\x42\x94\x39\xaa\xeb\x75\x64\xf9\xed\x41\x9b\x46\x47\x1b\xe2\xb8\x94\x2a\x31\x83\xc8\x3d\xe3\x6d\x4f\x96\xd6\x35\x52\xfe\xfe\xca\x46\x7c\xe4\x52\x6c\xff\xc0\x82\xbd\xa1\x8d\x43\x54\x93\x49\xd4\xc6\x61\xc6\xc5\xb8\x00\x5e\x89\xfc\x6b\xca\x45\x42\x33\xd7\x8d\x46\x3c\x08\x75\xc0\x02\xa1\xd5\x13\x70\x75\x64\x80\xe9\x2a\xc9\x18\x50\x29\x40\xd4\x05\x0c\xc8\x50\xd4\x44\xc7\x10\xa9\x7b\x66\xa1\x35\xcc\xd1\x49\x16\x40\x47\x06\xbe\xb9\x9f\x20\xee\x3d\x30\x86\xd8\x33\xde\x46\x1b\xb0\x4d\xe0\xc6\xc1\x86\xda\x01\x92\xad\x96\xd2\xd3\xa3\x74\x86\x19\x4b\xf6\xba\x36\xa9\xf2\xcf\xa8\x22\xd1\xa7\x9c\x16\x18\x96\xf7\x4b\x02\x6b\x04\xb2\xe8\x22\xf7\xbb\x1d\x75\xd7\xc9\x61\x94\x0a\x69\x37\x8d\x2d\xa8\x9e\x85\x55\x95\x8a\x95\xd2\x78\x18\x3b\x0b\xbe\x06\x24\xd6\xe0\x00\xf4\x85\x64\x9d\x85\x79\x47\x66\x8a\xbc\x4d\x9e\x50\x67\x7d\x7e\x7d\x75\x56\x7f\xcc\xd2\x50\x7d\x14\xd5\xb7\x87\x11\xa1\xb6\xb7\x41\x71\x42\xc0\xe8\x08\x29\xe7\xe3\xfb\xc8\x28\x69\x62\xa7\x76\x4a\x84\x4b\x5a\x1c\x5a\xad\xed\x94\xd7\x25\xea\x70\x35\xe9\xc8\x67\xe6\xd7\x34\x23\xf2\x1a\x25\xa9\x52\x8f\xe4\x72\xec\x44\x0f\x01\x27\x7c\xe8\x1b\x6f\x76\xec\xfc\xeb\x66\x1d\x34\xd2\x33\x94\x79\xda\x9f\xc4\x18\xba\xb7\xde\xa6\x5f\x60\x2a\xf8\x90\xcf\xb8\x09\x29\x3f\x54\xd2\x41\xc1\xe2\x88\x8e\x2d\xe9\x83\x66\x18\xf0\xd4\xc2\x25\x97\xa5\x9e\x04\x79\x2a\x78\x20\x42\x3c\x3f\x05\x5d\x1d\x66\x58\xc7\x4c\xd3\xff\x25\x12\x68\x54\xb4\x52\xe3\x64\x97\x23\x18\xef\x24\x44\x7a\x39\x2b\x01\x4a\x6d\xc4\x07\x40\xa2\x07\xad\x01\xfa\x90\x8b\xb0\xe7\x1e\xe4\x4c\xca\xdf\x5e\x4b\xef\x53\xc6\xaa\xac\x42\xbd\x95\x72\xa5\x60\xff\xfc\x70\xaf\xb6\xb4\xeb\xfa\x55\x0c\x3a\xfd\x00\x87\xe3\xa4\x9b\xca\x4a\xed\x4b\x50\xe7\x82\xb2\x17\x40\x0c\x9f\xcf\xbe\x07\x6b\x3b\x6b\xfd\x98\xfe\x7b\x3e\x30\x3a\xdb\x9e\x59\x72\x36\x5a\xaa\xb1\xf4\x46\xe8\x61\x82\xbc\xce\x5d\x5a\xe1\x00\xd9\x71\x39\x0a\x5f\xf9\x35\xf3\x64\xa7\x5f\x19\xb3\x1b\x1a\x8b\x84\xbd\xc5\x9c\xf9\x2b\xd9\x0d\x4f\xb6\xac\xfe\x98\xab\xc7\x93\x45\x9f\x5d\x1a\xd0\xfa\xa5\x64\xe3\x1f\x76\x60\xf1\xf2\x3a\xb6\x4b\x89\x30\xdc\xf6\x9f\x49\x92\xb0\xd3\x5b\x4b\xfe\xa9\xcb\x60\xc9\x56\x0e\xc3\x9c\x42\xb4\x7f\xc7\x79\x5e\x3e\xaa\x91\x76\xfc\xe6\x31\x96\x17\x4f\xf8\x11\xf5\xed\x23\x75\x0e\x9c\x2b\xe4\xe1\xbf\x79\xeb\xdd\x16\x30\x90\xbc\xef\x48\x38\x7a\xb4\xf6\xd7\xff\x77\x03\xe2\x7d\xd3\xf7\x60\xbe\x64\x03\xc7\xd7\x0c\xbe\xe7\x91\x39\xfe\x40\x82\x93\xbd\x04\xdf\xd9\x7f\x8f\x86\x88\x85\xca\x8f\x85\x10\xf5\x99\x4d\x29\x4c\xc7\xf5\xed\x7c\xdf\x7e\xf6\xc9\xbf\x25\xc3\x6e\x4f\x55\x3b\x59\x93\x88\xde\x88\xdb\xc0\x66\x23\xb3\xeb\x99\x67\xaa\x29\x49\xd1\x45\x6b\xb9\x07\xc9\xff\xf9\xef\xd8\xc0\x82\xfd\xb0\x55\xeb\x92\x92\xdd\xe5\x69\xd0\x67\xfd\xf3\x70\x3b\x22\x9e\x12\xd1\xf3\xc3\xe5\xee\x92\x38\x14\x42\xab\xc7\xb2\x8a\x95\x1d\x6c\xca\xf9\xf8\x3e\x94\xa0\x82\xd9\x19\xdb\xef\x27\xfe\x2e\xe5\x23\x44\xf7\x8f\x4b\x91\x95\xf6\x74\xa7\x90\x24\xb8\xc0\x70\x09\x4d\xbf\x9c\xb5\x5f\x42\xba\x61\x1e\xed\x95\x6e\xf7\x93\xfd\xc9\x17\x6b\xe7\x19\xb0\x1e\x74\x9d\x61\xa7\xc2\x1d\x41\x7b\xf3\xf5\xe2\x1b\xf0\x6c\x39\xf2\xa2\xd8\x1d\x74\xd9\x0c\x7a\x6d\xed\xaf\x2c\x47\x59\x77\x97\xed\x64\xd4\xdd\x29\x1b\x82\xc1\x7b\xd9\x52\xe3\xed\xe0\xab\x45\xd3\x32\x07\x2f\xbe\x3d\xf3\x4a\x01\x7c\x66\x51\xf0\xb0\x03\x04\x11\x0d\xf7\x75\x7c\x08\x41\xa0\xb9\xcb\xc9\x90\x67\xbb\x41\xcf\xb7\x9a\x13\x72\x60\xd6\xc2\x1f\x49\x16\x81\x87\xba\x6d\xde\x45\xa7\x81\xb0\x47\x40\xb6\x6f\xc6\xb4\xdd\x11\x3e\x40\x5f\xf9\x5d\x7d\xe9\x5e\x57\x5b\xba\xac\xeb\x60\xd8\x05\x9a\xdf\x9c\x32\xbb\x92\xf7\x2b\x6d\x12\xbf\x0a\x39\xbc\xab\x9e\x51\xa1\xd1\x64\x9c\xa8\x55\xf2\xf4\x26\xbf\xe9\x79\x67\x9e\xf6\xd5\xfe\x55\x45\x32\x7a\x5e\xcf\xba\xfa\x8b\xf9\x79\x70\x23\x5e\x2d\x0e\x0d\xc5\x93\x45\x17\xb1\xd9\xa1\xd0\xee\x17\x22\x40\x91\x52\x23\xa3\x4d\xc4\xa9\xdf\xb6\x78\x39\xcd\x56\x61\x5a\x18\x36\x53\x65\x7f\x00\xe2\x97\xb8\x25\x13\xba\xf7\xdc\x20\x95\xfe\x35\xb1\x2f\x5c\x20\x05\x8b\x71\xf1\x16\x5a\xc3\x09\x44\x6d\xaf\xfd\x6a\xb3\x7c\x94\xaf\x55\x2b\xed\xa5\xb3\xa5\x6b\xd3\xc0\x39\xf8\x3c\x22\x94\xe1\x0f\x91\xc6\x2f\x58\x61\x75\x01\x41\x7a\xb2\x65\xe9\xe9\xb1\x23\xa9\x66\x44\xc6\x8d\x27\x27\xeb\xf9\xef\xbf\x1f\x10\x53\x00\x0e\xeb\xaa\x10\xfd\x72\xc4\x7b\x91\x2e\xa4\x76\xe9\x8e\x2a\xbe\x25\x77\x57\x8d\x06\xa4\xd5\x11\x8b\x7e\xf1\xb0\x82\xd0\x39\xc3\x51\x8e\xce\x97\x29\x63\x9a\xec\xa2\xa5\xda\xdd\xe0\x6d\x7a\xf5\x2c\x6a\xfe\x07\xea\xc3\xf7\x7e\x08\x1a\x5a\xfb\xab\xf0\xc9\x84\x14\x06\xd7\x9c\xb0\x35\x63\x80\x69\x2e\xfc\x4e\x63\xf8\xfe\x74\x0c\x3a\x9e\x8f\x3a\x3e\x88\x4d\x2f\x73\x50\x1e\xca\xa5\xbb\xdd\x8b\x36\x4d\xe7\xfc\xf7\x3e\x15\x87\x4d\x93\x48\x3e\x35\xbb\xf1\x67\xba\x1a\x81\x67\x6c\xa9\x13\xa4\x80\x96\x12\xbc\xba\xf3\xd3\x20\x48\x45\x32\x6f\xbc\xdb\x1f\x19\xf9\xaa\xf6\xf3\x1f\x7f\x84\x3c\x53\x3e\xfc\xcc\x27\x03\xf1\x8b\x33\x49\x78\x70\x20\x0d\x72\xca\x0b\x86\xb7\xfa\xab\x94\xf6\x70\xcc\xc9\xef\x9c\x7a\x51\x30\x8a\x95\x70\x49\xf7\xd3\x0f\x99\x47\x3e\x1c\x6e\xa3\x57\xdc\xbd\xcb\xa6\x00\xbe\x17\x6d\x9a\x8f\x86\x12\xc9\xa2\x8b\x04\xc2\x20\x3d\xc2\x40\xd1\x10\xd3\x40\xdd\x27\x7e\xb4\xb4\x8d\x31\xd1\xcc\xf9\x69\x54\x62\xc5\x4b\xf3\xe4\x42\xa5\xcc\x99\xa8\x08\x0f\x91\xa8\xeb\x25\x5d\x80\x71\x6d\xc2\xb7\x82\x24\x23\xe0\xee\xbc\x6e\x4b\x33\xfe\x95\xbc\x9c\x5f\x28\x0f\xb1\x0b\xa5\xd1\x1d\x13\xd2\xf8\xb6\xbf\xdf\x68\x62\xb1\x76\x47\x37\xb3\x15\x6b\xc8\x16\x2c\x84\x21\x3e\x81\x61\xff\x2b\x3c\x60\xe1\xc7\xa7\xea\x5f\xa4\xc0\xb9\x58\x59\xf3\x8f\xea\x9a\xde\x4d\xa7\x8d\xfd\x7c\x97\x09\xcb\x10\x7a\x7c\xeb\x32\xe9\xc5\x9b\x3f\x37\x2f\x2e\x8f\xd9\x0e\x61\xb9\xb5\x82\xd6\xb3\x96\x64\x31\x4e\x80\x8f\x1d\x23\x33\x15\x6b\x38\x79\xd1\xb7\x7e\x18\x39\xd0\xf4\xce\x22\xdd\xd2\xad\xfa\x08\xc7\x66\x4d\x62\xd4\xd0\x28\x6b\x67\x3b\x9e\x0a\x46\xbf\xaf\x5e\x7c\x01\x11\x57\x0d\xaf\x2a\x44\xd4\xa7\xfe\xaf\x0b\x3e\xe0\x33\x27\x64\x62\x1a\xba\xfd\x73\x9a\x52\xde\x2f\x44\x91\xc2\x39\x39\x2b\xfd\x85\x9a\x9c\x8e\xdb\x8d\xad\xe0\x7f\xbd\x02\x2d\xfa\x83\xf8\x1f\x9d\x5f\x7b\xf9\x9d\x6d\x5c\xe0\x21\x15\xc9\x34\xd4\x6b\xf5\xb9\x01\xa9\x18\xf3\xc6\x5f\xc2\xc9\xa7\x84\xbb\x71\x22\x3f\x67\x3e\xa1\x50\xdc\xa2\xce\x86\x61\x58\xad\x73\x78\xb9\x11\x1f\xcb\x48\x78\xed\x8a\x13\x89\x86\x4b\x48\xe0\xe3\xad\x24\xc0\xd5\xf6\x4b\x2f\xd1\x8a\xe6\xe9\xdd\xfa\xac\x3a\xb4\x57\xea\x84\xef\x4c\xe2\xe2\x19\x19\xd8\xc2\xef\x9e\xfe\xd0\x7d\xf2\xa7\xf4\xc4\xf4\x35\x72\x56\x4f\xf2\xa2\x84\x47\x8c\x52\x40\x25\x83\xda\xe5\xfa\xab\xf3\x1d\x21\xd3\xcb\x87\xff\xe6\x0f\x5f\xae\x92\xf4\xad\xf6\x9c\xa6\xcf\xff\xfe\x5a\x1f\x6a\xfe\xa8\xea\x5f\x2f\x7e\x4e\x98\x23\x12\xdf\x76\x3b\xdd\x21\xfe\xf3\x03\xb0\xa1\xee\xf8\xa5\x4f\xd5\xd7\xc7\x82\x22\xbf\x8e\x5d\xd7\x3d\x85\x07\x2a\x12\x22\x4b\xbc\x04\x7e\xaa\x4c\xdf\x89\xd8\xea\x7d\x1d\x45\xbe\x5d\x9c\x5c\x2f\x81\x3c\x00\x5e\x72\xd9\x79\x12\x0b\x97\x13\x0b\x0b\xc5\x45\x96\x4d\x37\x8d\x18\x0d\x2e\x0d\x5c\x3e\x2f\xbf\x4a\xb5\x14\xc6\xb2\x04\x04\x53\x3c\xfe\x43\x20\x3e\x47\xa0\xd7\xc5\x51\x68\x38\xd7\x26\x9b\xdd\x8b\xfa\xdc\x7d\x52\x66\x4c\x90\xb0\xd3\xdb\xe1\xc4\x3e\xad\x20\xbb\x4c\xa1\xdc\xbc\x6a\xc1\x3a\x37\x1a\x21\xf2\x3d\x27\x00\x7d\x50\xc8\xca\xe7\xf8\x9c\x19\xc9\xe1\xfd\xf0\x16\x90\xd1\x24\x54\x36\xb6\x7e\x22\xbb\x26\x13\xca\xc1\xbf\xf9\xca\x25\xb1\xd3\x46\xfb\x6a\xff\x9b\x48\x66\x70\x0b\xe3\xd9\xf5\x80\x9f\x67\x74\x3b\x07\x02\xff\x0b\xcc\x92\x4f\x23\x69\xed\xef\xf7\xbc\xb8\xd4\xd6\xc4\x2e\xe2\xd9\xac\xc0\x6d\x72\x8c\x56\xea\xef\xbf\x6b\x39\x4a\x84\xfb\x4d\xc2\x40\x31\x07\x52\x1b\x72\xed\x65\x19\x99\x2f\xf2\x35\x62\xbe\x6c\xf4\x7c\x60\xeb\x23\xfe\xba\x93\xe0\x83\xdd\xe3\x7d\x16\x76\xe4\x86\xcb\xfe\xfc\x69\xd9\x90\x82\xa1\x14\xc6\x25\xf1\xf5\xc5\xd5\x0e\xfe\xc3\x1a\x51\xf5\x9c\x1a\x1c\x13\x05\xb5\x26\xca\x3a\x98\xb8\x49\xc5\x9f\xe0\x2b\x05\x1c\x45\xc4\x72\x0b\x6b\xbf\xbb\x17\xfb\xcb\xaf\xf4\xa3\xc8\x06\x4d\x40\x90\x15\xf4\xdc\x63\x06\x83\x9b\xba\xdb\x23\x3f\xbe\x9c\xe9\x2f\x72\xb3\xc4\x47\xa6\x11\x4a\x3f\x4e\x74\xd9\xf8\x37\xe3\xb0\x23\xd3\xfb\x5f\xbb\x57\x70\x9d\x04\xc2\x1c\xb1\xe4\x47\x2a\x9c\x8b\x15\xc2\x6d\xe1\xfb\xf4\x5a\x51\x93\x90\xbe\xa7\x18\x47\xd8\x9c\x83\x2c\x6f\xbc\x94\x87\xda\x43\x96\x46\x6d\xf6\xc7\xc7\x00\x5e\xe7\x6b\xbf\x44\x10\x15\x3c\x35\x09\x41\x85\xd1\xea\xac\xaf\x45\x4b\x98\xa7\xdb\xf7\x9d\xca\x4f\x30\x46\xf3\x35\x6c\xc7\xd6\x1c\x1e\xba\xa7\x64\x8e\xb1\x3e\x6b\xc4\xc7\x7a\x93\x0c\x6e\x91\xfe\xaf\x91\xf4\x4d\xaf\x95\x8a\x85\x40\xc8\xf7\xf5\xdf\x9b\xd4\xff\x9b\xac\x37\xfc\xcc\x96\xcd\x63\xee\x7f\x70\xf4\xdc\xfc\x67\x2f\x71\x37\x46\x82\x0e\x00\x5e\x22\x58\x1d\x77\x99\x00\x4e\xa7\xfd\xf2\xf2\x53\x44\x98\xa1\xcd\x43\xe3\xf1\xee\xda\x8e\xf3\xbf\xf5\x86\x4d\x0e\x6d\xd9\xbf\xd9\x84\xae\xa6\xbf\x89\x64\xd2\xe9\xe5\x30\x73\xcd\x1f\xd1\x0d\x9f\xb1\xf4\x3a\x70\x41\x69\x62\x0c\x1e\xdd\x7a\xcb\x6a\xe2\x4c\x9b\x93\xc5\xaa\x43\x77\xa5\x1e\x6e\x9d\xd2\xeb\x2b\xe3\xaa\x63\x5d\x39\xcc\x88\x3e\x85\xf9\x65\x02\x2e\x65\xc0\xc9\xf8\x73\xd5\xeb\x00\x1f\x66\xa5\xff\xe2\x0e\xa1\xac\x49\x28\x32\xd0\x24\x9e\x20\x01\x7e\x2e\x8e\x51\x24\x86\x94\xe1\x7f\x77\x65\x37\xde\xd8\xfb\x44\x2a\x3a\xc0\xd9\x10\xef\xae\x1a\x72\x41\xd9\xc9\xbd\xe4\x81\xdc\xd8\xc0\xc5\x1e\x69\x14\x4f\xe4\xac\xc0\x0c\x35\xaa\xc4\x6c\x61\xf0\x56\xe2\x19\x00\xe8\x25\x32\x48\x58\x50\xc1\x63\x5f\x7f\x42\x00\x46\x86\x7b\x1e\x22\xba\x7c\xa7\x9d\x47\xa8\x0c\x82\x1f\x60\x6f\xbc\xb8\x37\x96\xf5\x11\x1d\xf9\x5e\x92\x53\xc5\x7d\x78\x19\x7b\x46\xd7\x41\x8c\xfb\x07\x6c\x24\x77\x09\xc3\x30\x5a\xd6\xa5\x32\x1c\x78\xd2\xfb\x86\xd6\xe5\xee\x7d\x4a\x0a\xfd\x40\x3f\x86\x79\x17\x92\xca\x2a\xec\xe6\xce\x56\xff\xac\x20\xd0\x95\x45\x28\xd3\x13\x0a\x8c\x92\x3d\x6b\x2e\xd5\xb0\xe7\x38\x93\xc7\x51\xeb\x3a\x67\x8a\x6f\x3c\xc3\x2e\xe7\x56\x2f\xfd\x15\x34\x39\xbf\x4a\x27\xc6\x78\x23\xa2\xe1\x5c\x72\x54\xf3\x4c\xa0\x78\x40\xfa\xbe\xc5\xef\x37\xea\xac\x13\x45\x53\xa7\x30\xbf\x7d\x04\x52\xd2\x04\xb8\x8d\xf2\xc8\x19\x9d\x85\x61\xb4\x14\xba\x2a\xf2\xdf\x8b\x8b\x2c\xe7\x65\x7c\x86\x25\xb7\x37\xe6\x36\x28\x93\x9e\x37\x5c\x56\xa9\xb5\xa1\x3b\x1d\x32\x0e\x58\x9a\x89\x64\xd1\x8e\xac\x28\x0c\x99\x6f\x3f\xbd\xda\x1f\x97\x44\xae\xd7\x10\x27\xad\x68\xdf\x55\x98\xe4\x34\xec\x6b\xb6\x20\xd0\xf5\x98\x44\x99\xc2\x3b\x86\x39\xf1\xe9\x7f\x8e\xdf\xad\x1f\x6b\xe7\xf4\x05\x0a\x52\xe4\x53\x3f\x89\x9b\x2f\x89\x57\x7f\x42\x8f\xfa\x98\xd5\xfe\x4f\x12\x1d\xb3\x9b\x4e\x9f\x3a\x41\xa0\x6a\xef\x5f\x8d\x5d\xef\x0f\xed\x73\xa1\x37\xbf\x82\xd1\xf7\x2e\xdb\xac\xb4\x41\xdd\x08\xad\x19\x84\xfc\xa5\x5f\x06\xa3\x16\x7f\x7d\x9c\x5e\xf3\x97\x2c\x23\xf4\x8b\xc3\x65\x37\x3c\xb1\xb5\x15\xb5\x53\xf1\x3b\xcb\x3e\x17\x14\x7f\x88\x25\xd3\x0e\x5c\xd0\x97\xec\xb4\x4e\x93\x69\xd9\x3d\xf4\xc1\xf1\x91\x62\x5d\x70\x49\xab\x07\x71\xe6\x8e\x64\x76\x44\x95\x47\xf6\xa0\x4d\x47\x42\xf8\xad\xdc\xd3\x11\x04\x9b\xc0\xcf\xbd\xed\xba\x2d\xda\x82\x44\x0f\x04\xed\x2a\x26\xd6\xe3\xf8\xc3\x6f\xff\x66\x1b\x31\x4c\x4f\x8f\xb2\xf1\x7a\x54\xef\x11\x0b\x04\xcc\x13\xa7\x2f\x27\xea\x11\x30\xc6\xff\xe5\xfe\xae\xff\x16\x79\x42\xbd\x8e\x75\xe0\x70\x9f\x72\xea\x07\xc7\xbf\xcc\xc8\xeb\x4e\x0f\x48\xa3\x32\xe9\xd9\x3c\x7b\xcf\x0d\x60\x4a\x36\x99\x68\x79\xca\x69\x98\xe6\xd7\x96\xb4\xb3\xbd\x31\x16\xe1\x42\x33\xe6\xdc\x84\x83\x36\xf4\xf7\x73\x16\x08\xf8\x43\xf2\x32\x74\x95\x6f\x54\xf4\x31\x83\x08\xcd\x55\x69\x98\xbc\x8f\x9a\x5b\xbb\xed\xc2\x8f\xab\x9f\x08\xe7\x5b\x1e\xe4\x45\xdf\x84\x4c\x93\xf7\x57\xce\x2f\xec\x08\x81\xa3\x3d\xee\x8e\x64\x35\xa4\x12\x8c\xf7\x52\x76\x5d\x54\x7d\x7e\xc0\xf4\xbf\x85\x98\x24\x42\x7c\x9f\x73\x7a\x53\x93\x0b\x0a\x89\x07\xd1\xc9\xb3\x02\xf5\x69\x8f\x86\xe3\xf5\x82\x13\x22\x63\x16\x7d\x25\x65\x75\x73\x3b\xbb\xd9\x82\x75\xea\xd1\x15\x2d\x28\x33\xa7\x98\xb3\xb9\xb7\x16\xc0\x6d\x75\x6b\xd2\x8b\x3f\x46\x85\x73\xff\x8d\xfd\x34\x5b\x97\x85\x6a\xba\x2c\x1f\xcd\xa4\x59\xad\x13\x9b\xfc\xf6\x88\x4d\x7e\xa9\xdc\x1c\x4d\x78\x8d\x89\x42\x38\x17\xab\xeb\x3c\x0a\x06\xd4\xc7\xec\x67\x50\x75\x74\x6e\x3b\x7b\xd3\x5e\x81\x15\x9c\x74\x6b\x9a\xd2\x7d\x39\x14\x50\xbf\xc7\x0b\x0c\x1f\xf8\xe9\x7c\xfd\x2e\x0c\x28\xb9\x11\xab\x3b\x62\xff\x6c\x04\xb9\xf8\x3c\xa5\x55\x8e\x7b\x14\xa2\xd4\xf5\x95\xbe\x7e\xb4\x34\xf2\x6a\x3a\x62\xef\xf8\x51\xf5\xb2\xc4\x2a\xe7\x4d\x1c\x8b\x36\x82\x2c\x7a\x45\x8b\x72\xce\x3d\xa6\x77\xf9\xd8\xa0\x23\x7e\x64\x64\xea\x65\x60\x5d\xf9\xf8\xa8\x53\x61\x30\x13\x3b\x48\xa4\x3a\xe0\xf4\x30\xe3\x62\x56\xc1\x07\xb2\xec\x22\xe0\x86\xb8\x13\x18\x3d\x37\x7a\x69\x59\xf0\x3b\xb9\xb0\xf0\x93\x76\x5d\x31\x65\x22\xe1\x9d\x59\xf0\xce\xcf\xe7\x7b\x7f\xf6\x50\x5d\x94\x81\xc5\x9c\x7c\xf8\xbe\x5c\x02\x64\x55\x1c\x0a\x89\x8f\x5b\x96\x72\xeb\xee\x63\x2c\xfd\xf9\x6c\xf0\xf1\xef\x57\x0a\xc1\xb3\x89\x16\xd7\xe4\x50\xe6\xad\x69\x67\x7b\xb5\xa8\xfc\x58\xb1\x46\x33\x32\x4f\x0e\x9b\x47\x26\xff\x06\xb9\x35\x83\x58\x25\xf6\xba\x70\x78\xcb\xa7\x92\x56\x59\x7e\x7f\x1a\xad\xd6\x76\xf8\x64\xe8\x72\x97\xd8\x14\x4a\x37\x1f\x87\x06\xad\x6a\x23\x18\xcb\x5e\x51\x81\x63\x1a\xfa\xc5\xf1\xb1\x1c\x40\xab\x9f\x9c\xc6\xa8\x68\xad\x5b\x8d\xb8\xa7\xd4\xf0\x8d\x2b\xd4\xef\x9b\x48\x64\xa6\xd9\xe5\xdf\xfd\x97\x7e\xe9\x1f\x6e\x8a\xef\xa8\x87\x83\x1e\xd9\x3d\x8d\xa7\x24\x95\x5f\x91\xda\xf7\x66\xe7\xaa\x72\x4f\xa6\xfc\x6e\x49\xd1\x93\x53\xac\x74\xfa\x6d\xf4\xd4\xb6\x6f\x9f\xe6\xaa\x52\x8f\x3f\xde\xdf\xa0\x44\xac\x5e\xfe\x1b\x73\x1d\xab\x5d\xb4\x07\x41\x6d\x31\xa4\x81\xc3\x75\x94\xa2\x93\x72\x43\x37\xb9\x5d\x69\x97\xf1\xcc\x85\xd1\x22\x4a\xca\x35\xea\x92\xd7\xe5\x93\xec\xcf\x66\xd3\x82\xa9\x7e\x89\x17\x54\x70\xc7\x35\x87\x8c\x2b\x87\x1e\xf6\x26\x69\x79\x82\xf9\xe8\x80\x80\xe3\x88\x34\xc9\x93\x6a\x74\x31\x4f\x52\xd9\x7a\xd4\xca\xd0\xd1\xe1\x20\x38\xe5\x2a\xa5\x14\x16\x0d\x97\x78\x86\xb2\x26\x15\xc0\x9b\x5f\x48\x0a\x04\xfb\x77\x5f\xaa\xa8\x04\x73\x1e\xd2\xd3\x97\x33\xf9\xbb\x0b\xac\x2e\x10\x9d\x8b\x2f\x6f\x69\x7a\xf1\x4d\xab\xc4\x0e\xdb\xf0\x00\x2f\x49\xdd\x0a\x2f\xa8\x90\xa9\x95\x05\x24\x29\x40\x70\x23\xc8\x45\x64\x2e\xf7\x84\xca\x4d\x50\x72\x97\x31\xf2\xb6\xed\x48\xed\x69\x53\xe0\xf1\x70\xfb\xb6\xfe\x26\x3b\x8e\xae\x11\x0f\x72\xc4\xfb\xa8\x46\xc3\x25\x0a\xc0\x67\x05\xf5\x50\xe4\xbb\xc6\x27\x6a\x91\xe2\xd2\xd8\x91\xdb\x38\xec\x08\x2b\x76\x8a\xe9\xe1\x89\x11\xa0\xf9\x55\xe7\xb6\x5d\x67\xb7\x55\x68\xb8\xec\xfe\x2e\xa0\x2e\x0c\xf4\xbc\xd9\x51\xdf\x6d\xe7\x29\x03\xc0\x35\x08\x2c\x7d\x4f\x14\x06\x6d\x79\x55\x57\xb0\x3c\xe5\x30\x7d\xe7\x45\xd0\x7b\x17\x12\x3b\x92\x25\x30\x78\x0f\x13\xb1\xf7\xe7\xb3\x0e\xae\x68\xea\x88\x6e\x90\xc0\x53\xfb\x4f\x77\x58\xa5\xf2\x55\x01\xfd\x55\x3a\x80\x5f\xed\xcb\xd9\x9c\xc9\x7a\xa3\xc0\xad\x1d\x46\x1b\xe7\x29\xee\x02\x89\x3a\xe1\x00\xdc\xb4\xed\xe9\x5e\x67\x63\xfc\xbb\xf0\x75\xd9\x2f\x0f\x5b\xac\x0a\xc1\x8f\xac\x43\x2e\xe3\x10\xba\x7f\x0a\x33\x63\x1e\xca\xda\xbc\x75\x78\xcb\x3a\x44\x73\xc5\x5b\x78\x5d\xd7\x39\x33\xc1\xfa\xf8\xb2\xaf\xe6\x02\xda\x1b\x87\xf6\x25\x50\x83\x63\xfc\x7a\x7f\xe7\xe5\xf2\x21\x8d\x96\xfb\x14\xc9\xbf\x02\xc8\xc7\xe6\xc5\x17\xa9\x16\x43\x58\xc5\x9f\x56\x9c\x74\x6a\x94\x2b\xff\xfb\x85\x24\xbe\xf1\xcc\x07\xd1\x61\x7b\x81\xe2\xb6\x8f\x3e\x7b\xe4\x79\xc7\x1f\xe0\x77\xc2\xde\xd1\x20\xe7\x7a\xf6\xd7\x47\xfa\x02\x9b\x93\x3f\xfb\x6f\x2d\xa5\xc1\x5e\xea\x54\xb8\xeb\xe4\x04\xd9\xb4\x5f\x08\x0d\xf1\xfc\x74\x19\xfa\x61\xd5\x50\xdc\x0f\xf1\xf6\x44\x00\x0a\x79\x44\xb5\xac\xcc\x74\x8f\x9c\xc6\x14\xf8\x12\xf9\xa9\x23\xbf\x49\x76\x49\xc9\x0e\x3f\x45\xa8\xb9\x28\x16\x6a\xe0\xd9\xe9\x1a\x03\x85\x68\x94\x29\xb4\x62\x9e\xf9\x38\xd8\x08\x21\x1c\x75\x6a\x20\x7b\xda\x33\x2a\xe4\x5c\x35\xb7\xc6\x67\xa5\xa5\xc8\xee\x97\x9e\x88\xeb\x9d\x8b\x34\x32\xbb\x3e\x2b\xae\xf9\x72\xd7\x54\x51\x76\xd7\x3f\xea\xb6\x5e\xce\x4d\xac\x21\x5b\xe1\x3e\xef\x7b\x51\x08\x0b\xf1\xdb\x5d\x6a\x73\x2e\xa8\x1e\x53\xc1\x81\xe6\xf8\x47\x00\x5a\x89\xf5\x5a\xb2\x17\x03\x01\x73\xaf\x14\xd8\xb0\xf9\xc2\xc4\x41\xbe\x05\xf9\xf4\x5f\xf6\xaf\xe7\x78\x53\xae\x67\x4f\x8e\x42\x2b\x2e\xb2\x3b\xc3\x3c\x3f\x9d\xed\xbb\xa7\x64\xee\x94\x8f\x9c\x71\x85\xf5\x5f\xf6\x6f\xd8\xbd\xca\xa5\xe0\x92\x0b\x6f\xaf\xc5\x92\x2e\xec\x08\xaa\x13\x77\xc7\x5c\x68\x87\xea\x0d\xcf\xea\x8d\x46\xf2\xf7\x50\xfe\x1b\xc3\xed\xf3\xa2\xb3\xc1\x17\x57\x8b\x86\xbd\xa7\xe2\x50\xc8\x60\x3c\x54\x1c\x09\xa3\x2b\xe2\xa3\x84\x6e\xf7\xb6\xac\xdd\xb9\xc8\xee\x3c\x5d\xaa\x5a\xfb\xcd\x59\x97\x41\x1a\x76\x1b\xea\xd8\x7b\xd3\xd3\x44\x2d\xe3\x6a\x11\x95\xf1\x00\x16\x49\x7a\xb2\x05\x43\x7c\xb6\x25\xf6\x0b\xe0\x63\xa9\x90\x96\xcd\x12\x87\xa1\x96\x3c\xab\xa0\xcd\x86\xbd\xba\xf7\xf7\xb5\x5f\xb4\x57\x46\x69\x04\x1e\x1e\xd5\x8f\x5d\xd4\xfb\x02\xf6\xe9\xd6\xfb\xc3\xed\xf3\x9a\xdc\x49\x88\xbb\x3b\xff\x64\x5a\x21\x8a\x0f\xa9\x1a\x29\x8e\xfb\x02\xc8\xf9\x02\xc0\xc1\x67\x9d\x8b\x6f\xc3\xcc\xfe\x3c\xae\x3e\x0e\xb3\xaf\xed\x1e\x66\xce\x88\xf1\x8b\x4a\xe9\xb2\x86\x09\xdf\x1a\x00\xb5\x89\x36\xcc\xdb\x8f\xd8\x21\xee\xbb\x2e\x7d\x51\xb0\xe9\xec\x62\xf1\x6f\x61\x8d\x91\x9a\x24\x47\xe3\x36\x6f\xd8\x1c\xbf\xa8\xc3\xeb\x23\xf9\xc5\xce\xb0\x92\x0c\xff\x60\x7f\x8b\x96\x02\x2a\x37\x5e\x34\xfc\xf2\x50\x0b\x7b\x2b\xc1\xc4\x76\x96\xc4\x71\x33\xb9\xbd\x31\xab\xa1\x3b\x44\xc2\x4b\x11\x19\xb4\xe3\xf0\xe4\x1f\x25\x0d\x7f\xdd\x61\x57\xb7\x7c\x58\xfd\x7b\x6c\x01\x96\xed\xab\x8e\x1b\x57\x57\x9d\xad\x33\xb2\x22\x14\x82\x98\x00\x51\x2f\xf9\xd0\x45\xd1\x1a\xb7\x1a\x4d\x11\x8d\xd3\x93\x08\x6d\xf9\x4c\xc9\x52\xf9\xcc\x35\xd6\xb5\xae\xf0\x9a\x5b\x64\xcf\xbe\x37\x7d\x66\x0b\x2e\xa8\x71\xab\xb9\xaa\xbe\xb5\x73\xe8\xbd\xb0\x14\x04\x11\x57\xfb\x7a\x0d\x54\x3b\x8d\x98\x59\xa8\xd6\x76\xce\x60\x02\x10\x5b\x0e\xf5\xc7\x85\x77\x25\x4b\xc5\x58\x32\x87\x3b\x62\x0d\x6f\x5c\xa9\xd3\x51\xd7\x8d\x0d\xd8\xa3\xe5\x1d\x08\xb3\x19\x56\x94\xf3\xff\x2f\xac\x0d\x03\x15\x60\xa0\x09\x73\x2d\x44\x07\x19\x8c\xc4\x06\x3f\xbe\xbc\x3e\xc9\xf4\x6c\x39\xbf\xca\xdc\x42\x1a\xf3\x78\xfe\x8d\xb7\x58\x46\x66\x5c\xdc\xe7\x8e\xf7\x52\xda\x16\xc1\x5a\x26\xfe\xbe\xb6\xce\x5a\x2a\x5f\x88\x0f\xd9\x41\x1b\xc0\xc2\xc0\xc8\x27\xa1\x1a\x33\x63\x8f\xe2\xca\xce\xf6\x3d\x54\x57\x43\x4e\x93\x6c\x4a\x47\x5e\xb0\x24\x4e\xd6\xea\xf8\xb2\x16\x9c\x50\x4b\x7e\xa3\x3e\x69\x19\x91\xf0\x09\x08\xf0\x23\xc9\xe6\x91\xde\x7f\xf7\xa4\x36\x7d\x70\xf1\xb9\xdf\x28\x6c\x76\x23\xc2\xca\xb6\x77\x54\xd3\xfa\xf8\xd7\x69\x46\x33\xed\xab\x17\xac\x9b\xb5\xbf\x39\x01\xbd\xa5\x51\x01\x28\x84\xff\x26\xc9\x7e\x3d\x70\x5c\x8d\x1b\xcd\x38\x2f\x93\xcd\x53\x4f\x93\x73\x2b\xfe\xf9\xbb\x20\xc6\x9f\xd3\xf9\xd6\x7f\x5e\x6f\x3b\xdb\x05\xd7\x17\xd4\x6b\xdd\xf5\x4e\x97\x73\xd2\x5a\x4b\xf4\x4f\x46\x4a\x8d\xd8\xa9\xb9\x3d\xd2\x0e\x14\x79\x10\x67\xee\xd5\xab\x97\x70\x70\xbb\x36\x95\xb3\xa5\x68\xea\xf7\xed\xdd\x96\xdb\xf7\x3a\x95\x65\x8a\x67\x8a\x45\x80\x1b\x1d\x99\x44\xa1\x61\x8d\xd3\xe7\xbd\xfc\x63\x5f\xb3\x5b\x08\xeb\xc0\x97\xca\x76\xcf\x56\xf7\x57\x6c\x62\x18\xfb\x2f\x3f\x0a\x4f\x04\x6c\x49\x64\xd1\x8e\xbb\x94\x94\xe4\x21\x54\xc0\x29\xe1\x71\xbd\x9f\xd1\xf0\x08\x50\x89\x4d\xb9\x0d\x54\x8a\x61\x1e\x58\x16\x97\x7d\x54\x75\x05\xde\x48\x50\x50\xfa\xab\x17\x71\x4b\xcb\x01\xd7\xc0\xef\xaf\x55\xd0\xec\xd1\x71\x1e\x75\x65\xa1\x29\xa2\x57\xc3\x97\x3c\x48\x37\xb2\x88\xfa\xbc\x6a\xe6\x40\x58\xfe\xa5\xac\x79\xfa\x84\x3f\xf3\x45\xda\xda\x5a\x9c\x53\x01\xf6\xd7\x0a\x83\xb7\x72\xae\x54\xdd\xc6\xda\x4f\x19\x4d\xd1\xdc\x8a\xca\x0b\x16\x08\x98\x51\x83\x82\xef\xab\xe1\xe6\x24\xbc\x12\x9b\x70\x1b\xa8\x7c\xa5\x16\x4d\x90\x39\x60\x50\x83\xb3\xae\xd9\x73\x80\xce\xed\x61\xcf\x01\x63\x23\x4a\x89\xc8\xb1\xae\xc2\xc0\xdb\x0d\xca\xff\x5d\x61\x2b\x43\x01\xfc\x34\xc2\xff\x60\xcc\x44\xdb\x4e\x8f\x6d\xe2\x38\x3b\xf6\xe1\x2e\xa3\x12\xcd\xab\x2c\x74\x35\xce\xed\xa5\x0d\xad\x9b\xfd\xb7\xaa\xa2\x03\x3a\x7f\x25\xfd\xbf\xfa\xff\x52\x59\x48\xab\x03\xaf\xaf\x32\xb0\xfa\xc5\x45\x7d\xbb\x6c\xf9\x55\x9f\x34\x44\x69\x0e\x6a\x06\xc4\x2c\x52\xc4\xea\x20\x05\x76\x09\xaa\xcb\x67\x84\x4f\x2c\xc7\x30\x8b\xc1\x19\x41\x41\xc0\xf8\x07\x42\x0a\xf8\x2e\xa5\x31\xef\xac\x1d\xc9\x8f\x79\xd3\xd8\xa7\xfc\x5f\xdf\x5a\x23\x31\x58\xee\x61\xc8\x34\x89\x77\x19\x49\x16\xed\xf8\x62\x6b\x8d\x12\x82\x01\xc0\xee\x14\xdf\xa3\xfb\xa8\xa9\xc3\x5f\xdc\x1d\xb9\xb6\x12\xc7\x88\xd7\x41\x22\xb8\xde\xe2\x16\x48\x0a\x4e\xf1\x33\x0d\xb3\xe1\x09\xd3\x10\xc1\x5e\x02\xe7\x2e\x41\x7c\xec\x5d\xe6\xd6\x5c\x32\x3e\x46\xef\xbf\x49\xa3\xba\x49\x53\xa3\xf1\x45\x01\x5c\xc5\x2b\xf1\xda\xb0\xce\xe1\xfa\xa8\x5f\x4e\xfb\x02\x40\x36\x9e\xcd\x88\x0b\xaa\x27\x13\xcd\xaf\x12\x95\x02\xdb\xfc\xe4\xf3\x93\x0a\x49\x30\xe9\x92\x02\x32\x80\x22\x00\xd0\x00\xbe\x6b\xb2\x93\x2f\x1b\x3f\x67\xe7\x7b\x5a\x7b\x5c\x17\x2d\xf1\xe5\x31\x6b\x90\xc0\x57\xc7\x0d\xb4\xe3\x1e\xfa\xb3\x95\x89\x65\x5a\x79\x00\xe5\xe0\xfd\x8b\x31\xee\x85\x10\x45\xd7\xa8\x16\xb6\xe0\x16\xee\x87\x87\xbc\x52\x67\xbc\x50\x08\xf8\x8f\x41\x22\x03\x14\x73\x89\x13\x00\xae\x33\x47\x53\x4d\x92\x77\x04\x33\xa9\xd1\x62\xdd\x5d\x13\x3f\x1d\xd2\x89\x9c\x2a\x58\x78\x23\x60\x6a\xc6\x40\x07\x2f\xe9\x01\x33\xb2\x49\x88\x8f\x65\x68\x88\x6f\x54\xc3\xe5\xf7\x45\x5d\x91\x42\x2a\xe7\x93\x57\xbf\xb3\xfa\x85\xc7\xc5\xf0\x1f\xe6\xf5\xc9\xbe\x1e\xb6\x53\x92\x93\xf5\xfc\x65\x5c\xa5\x4c\x3c\xba\x0e\x96\xc6\x11\x4e\xaf\x32\x69\x35\xeb\x5b\xd0\x79\x3d\x81\xf7\x44\x11\xa9\xc6\xdf\x41\x40\x62\x25\xa1\xb0\xea\xbb\xf4\xdc\xc7\x08\x72\xff\xd2\x1b\x57\x60\xba\xff\xdb\xf8\xe9\x1d\x50\x4f\x8c\x95\x14\x74\xfa\x57\x70\x49\x7c\xbc\x02\x80\x23\x62\x4c\xcd\x68\x99\xa2\xeb\x3c\xea\xe0\xbf\x70\xda\xf1\x79\x23\xc1\x91\xce\x15\x21\x56\xa7\xd4\x9e\xc8\xb3\x59\xca\xa8\x54\x27\x61\xe0\x8e\x27\x89\x2f\xbe\x69\x20\xed\x85\xb0\xf7\x9f\xe3\xbe\x6e\xad\x84\xb2\xd2\xf6\x1d\x43\xa9\x69\x25\x53\x37\xd7\xcd\x2e\x0c\x27\xf0\x7a\x63\x54\x10\x0a\xe1\xe7\xf4\xf1\x49\x31\x02\x43\x9b\x84\xaf\xf5\x48\x48\xa2\x14\xc9\xfe\x1f\x12\xce\x2a\x2a\xea\xf7\xeb\xe2\xdf\x19\xba\x07\x04\x06\x74\x90\x6e\x49\x05\x06\x90\x16\x91\xee\xee\x10\x41\x90\x54\x69\x18\xe9\x90\xee\x6e\x45\x5a\x42\x9a\xa1\x1b\xe9\xee\x46\xba\x7b\x98\x77\xfd\xfe\xef\xc5\x73\xf7\x5c\x9c\x75\xd6\x3e\xeb\xb3\xf6\xc5\xde\x6f\x38\x41\xaf\xd7\x3f\x3c\x22\x85\xff\xdc\x1f\xc6\x72\x02\x62\x9f\x1f\xe3\x01\x49\x15\x3d\x26\x71\x43\xf5\xac\x78\xea\xbf\xc4\xf7\x0c\x34\xd8\xe1\x0d\xd5\x89\x35\xc7\xf6\xac\x07\xca\xb3\xd0\x47\xf3\x69\xbf\xa2\x67\x0a\x74\x10\x5c\x96\xd4\x98\x3f\xed\xab\x5e\x47\xd0\xb3\x4c\x4c\x09\xcc\xc7\x23\xba\xe8\x5e\x9d\x13\xaf\xef\xfe\x38\x6d\xc7\xdb\xb6\x8d\xe8\x6a\x01\xe1\x74\xbe\x42\xc5\xd0\x68\xa5\x94\x75\x49\x2d\x8a\xc6\xea\xb4\xdf\x47\x5a\x5a\x06\x81\x36\xfb\x12\x35\xdb\xe8\xfa\x95\x04\xf0\xb7\x55\x77\xc8\x09\x36\x50\x83\x6f\x8b\x0c\xa1\xb3\x81\xbf\x6d\xf7\x72\xe7\xbe\x9a\xc5\xee\x24\x2b\x6f\x17\x9a\x70\x44\x29\xf2\xcb\xce\x4b\xcb\x0b\xff\x5a\xd8\xbc\x88\xa9\x18\xc9\x5d\xc5\xb5\xe1\x3e\x5a\x34\x55\x35\x2c\x19\x6d\x59\x2a\xa8\x7c\xc4\x02\xb7\xff\xee\xe1\x89\xf1\x3a\xc1\xbf\xa8\x52\x0d\x7e\x8c\x82\x3c\x94\xc1\x7e\x81\x21\xeb\x8f\xd7\x23\x41\x0e\x8d\xe8\x2f\x21\x5d\xdb\x9c\x03\xcc\xa9\x91\x1f\x0e\x91\xf4\x13\x1d\x06\xf3\x8d\x99\x33\x4b\x62\x36\x99\x17\xac\x16\x68\xf0\x37\xc9\xd1\x6f\xb8\xef\x81\xd5\x18\xec\xb8\x59\xcd\x7c\xea\x1f\x38\x74\xa5\xd7\x48\x4c\xe0\x2c\x81\xfe\x3d\x7f\xf0\x67\x3c\x67\xba\xce\x56\xc9\x10\xc4\xce\x97\xeb\xb1\xf8\xef\x97\xb8\x06\x5e\x6a\x04\xff\x21\x00\x97\x58\x32\xe1\x84\x98\x0d\x5b\xba\x8f\x36\xce\x9c\x0d\x30\x37\x41\x58\xdf\x66\x77\xc5\x34\x6a\x69\xa9\xee\x09\x8a\x0b\x1c\x44\xb8\x52\xbd\x08\x4b\x14\xd2\xbc\x5a\x3a\x0c\x6c\x21\x2a\xa3\x41\x07\xfe\x47\x28\x4c\x1f\xc9\x83\x44\xd4\x5a\xdf\x53\xd0\xe5\xec\x83\x9c\x86\x71\x29\x4f\x42\xe2\x0e\x73\xf0\x04\x6f\xf0\x12\x7a\x80\x63\xc9\x33\x8e\xef\xd8\x75\xb2\x7a\xdf\x54\xef\xbf\xb1\xe8\xe0\x2e\xc1\xa9\xe6\xb4\x43\x8f\xc9\x80\x64\x56\xf9\x80\x66\xea\xbc\xbb\x35\x5a\x73\xe8\xb0\x25\xe5\xdc\xe6\xe5\x9c\xc6\x1d\xf4\x3d\x2a\x22\xeb\xbf\x8f\xbc\x1d\x98\x32\x44\x38\xe6\xb0\xab\x8b\x7c\xca\xaa\xf6\x1f\xc4\x5c\xd3\xc8\xae\x98\x46\x23\x2d\xd5\x7f\xc4\xe2\x41\x3d\xa3\x77\x42\xcc\x3a\xb3\x4a\x73\xd7\xca\xa9\xda\x39\x5f\x2e\x0a\x76\xef\x58\x21\xb8\x3d\x49\x9d\xf8\x1d\xce\x10\x7f\xb1\xf2\x73\xba\x7d\x92\x24\xc1\xa8\x83\x2f\x54\x3a\xc4\x92\x7a\x18\x74\xa9\xbc\x05\x43\xc9\x89\x11\x64\x32\xec\x54\x2f\xb1\x10\x8c\x66\xcc\x91\x0e\xa5\xd6\xa5\xbd\xa3\x69\xb7\xc7\xb4\x62\xec\x7b\xff\xad\xba\x6f\x42\x76\xf5\xda\x20\x44\x82\x52\x9a\xd7\xa2\x25\xf3\x8e\x38\xb0\x2c\x1b\xc7\x77\x59\xa3\x03\x5e\x3c\xb3\xf6\x8e\x1c\x11\x1a\xf1\xec\xe0\x91\xb5\x50\x29\x4e\x21\x75\x93\x1a\xd3\xe6\x60\x11\x4d\x6c\xdd\xa3\xd2\xd1\x8a\xcc\xac\x74\xcb\x11\xb8\xa2\x85\x49\x92\xce\x87\x6b\xfc\xe7\x08\xe4\x03\x47\x8f\x6b\x41\xaa\x27\x6e\xf3\x69\x27\xdf\xf3\x20\x84\xfd\xca\xa2\x7d\x96\x83\x77\xe0\x91\xce\xe6\x26\xae\x19\x73\xf2\xf2\x76\x75\xfc\xf9\xca\x71\x64\xd2\x0d\xda\x42\xde\x78\x94\xa6\xca\xff\x66\xb4\x97\x9c\x96\x4a\xc6\xda\xcb\xce\x76\xff\x79\x0d\x01\x3a\x67\x1f\x39\x8c\x41\x07\xc1\xc5\xec\xcc\x0b\xb8\x5c\x90\x3f\xf9\x52\xed\x9f\x2f\x72\x17\x19\x08\x39\xa0\xbb\x09\x18\x11\x1d\x66\xc0\x35\x14\x3d\x76\xaa\x31\x0a\x31\x37\xc5\x40\xac\x05\x03\xf3\x3f\xd0\x5c\x09\x89\xae\xfc\xb2\x9a\xbc\xd6\x47\x7e\xe1\x0d\x9a\xa3\x4b\xbd\xaa\xfc\xd3\x1c\x35\x86\x8f\xed\xa7\xf1\x1d\x28\x1e\x08\xee\x5b\x7f\x6e\x7f\x5e\x05\xaa\x3b\xbf\x19\xd5\x94\x4b\x51\x0d\xe9\xca\x90\xcb\x60\x65\x5a\x42\x5f\x9e\x7a\x5f\xb4\x41\x27\x0b\xc9\xd7\x0c\xe9\x9b\xed\x74\xc7\x3c\xf3\xfe\x6f\xdf\x0c\xe7\x49\xb7\xfc\x3e\xe1\x21\x1a\x03\x2e\x7f\xa5\x7d\xf6\x85\xc9\xa1\x45\x02\x75\x85\x34\xae\x96\xd2\xa4\x5b\x36\x25\xd4\xff\xdb\xf4\xdb\x24\xa1\x15\xef\x27\xb7\x57\xdb\x0e\xcb\xfa\x78\x4f\xdf\x1a\x6c\xa8\x89\xc0\x1e\x57\xce\x1f\x93\x6e\x88\x8f\x6b\x51\x1d\x17\xbf\xaa\x0e\x49\xaa\xac\x57\x92\xcd\x0b\x77\xdb\x2f\x39\x80\x1c\x30\x62\x5b\xf4\x33\x10\x2a\xf0\x1c\x15\x82\x76\x9b\xec\x59\x33\x26\x41\x0b\xe0\x96\xd3\xd2\x4c\xdd\x75\x52\x7d\xc5\xcd\xf1\x68\xdf\xe1\x18\xf8\xbc\xc8\xf2\xa1\xa7\xf2\x21\x7a\xc6\xaa\xf1\xde\x6a\xc0\x1b\xf7\x70\xda\x4f\x6b\x46\x02\x80\x4c\x23\x25\xe9\xe0\x9e\x60\xff\x15\x2f\x42\x83\xa6\x76\x0c\xa9\xc0\x93\x8f\x90\x57\x0e\x7a\x5d\xa4\x35\x71\x62\xd1\x6d\x92\x2d\x20\x52\x3b\xe2\xf2\x88\x37\xb0\x9b\x37\x52\xca\x59\xcb\x13\x3b\x9a\x2c\xa9\xda\xc6\x19\x2c\x84\xb6\x29\x01\x6f\xf8\xf4\x92\xba\xc2\x05\x52\xb7\x23\x44\x86\x1d\x0b\x4a\x1f\x74\xc6\xcb\x1b\x52\xee\xaf\x7d\xd1\xed\x4f\xa3\x97\xeb\x37\x72\x83\x31\xa3\x14\x66\xbf\xee\x3d\xb2\x82\x10\xcd\x5a\x5a\xaa\x45\xdc\x59\x32\x72\xb3\x19\x45\xb4\xaf\x16\xd1\xaa\x4f\x33\xd1\xcd\x55\x12\x23\x97\xb4\x35\x8f\xfa\x1b\x23\x81\xab\x50\x5c\x4c\x39\x05\x1c\x47\xfb\x94\xad\x15\x16\x08\x73\x70\x9f\xb7\x7e\xd8\x70\x62\xa2\xd6\x7c\xc2\x78\x5a\x84\x25\x0c\x3e\x1b\x98\x9e\xd4\xa5\x24\x63\xfe\x56\xca\xb5\x64\xdf\xb6\xc4\x42\x7e\xa8\xc4\x13\xff\x89\x6f\x16\xff\x2a\x9e\x54\xf4\xb7\xfa\x2e\xaf\x8b\xcf\x35\xee\x80\x16\x94\xf3\x83\xeb\xdd\xc5\x2f\xb1\xc3\xc5\x04\x7a\xe3\xef\x73\x9b\x79\xd2\x63\xec\x43\x63\xe4\xeb\x39\xf9\x8d\xef\xa3\x01\x04\x3f\x26\x36\x8e\x89\x39\xd5\x00\xb1\x4a\xa9\x36\x85\xa7\x0f\xa7\xad\x29\xda\xa5\xfc\xca\x4c\xd4\x56\xd7\x68\x08\x95\x68\x56\x73\xea\x77\x97\x88\x48\xb2\x73\x4a\xa0\xff\x66\xee\x0e\x48\x3f\x01\x3e\x14\x9f\x09\x87\xe5\x6e\x92\x66\xa9\x9a\x3a\xf1\x56\x7c\x62\x3e\xc4\x21\x5e\xc3\x7e\xe3\x05\x3c\x38\x56\xfd\xe7\xe0\x57\xdf\xfd\xb3\x00\xe1\x60\xb5\xee\x54\x5d\x61\x9a\x5f\xd9\xab\x78\x09\x1a\xc6\x57\x14\x71\x8b\xb3\x6a\xd6\x84\xc2\x99\x20\x74\x14\x00\x02\x03\x0e\x73\x7e\x06\xd8\x87\x7b\xfc\x4d\x98\xcd\xac\x52\x70\xfc\x54\x78\x20\x1a\xfd\x63\x68\xb8\xb6\x46\x3b\xf8\x4e\x7c\x17\xea\xbf\xbc\x56\x17\x98\x2e\x87\x0c\x34\xc3\x59\x5b\x61\xb9\x00\x49\xea\x18\x95\x8a\x23\xa9\x4d\x1b\x2b\x9f\xdc\xeb\xcc\x33\xad\xc4\xb1\x8b\x2b\x52\x59\x91\xca\xe1\x65\x8f\x3a\x7e\x73\xe7\x51\xfd\x56\x02\xa8\x0c\xb5\xaf\x8c\x4c\x17\x44\x56\x0b\xa3\xb6\x4d\x16\x6f\xb7\x3e\x44\x24\x5e\x3f\xb7\x1a\x16\x0b\x6f\x48\x26\x3f\x7a\x65\x12\x72\x67\x52\xd1\xcd\xe8\xa2\xa5\xd0\x26\xb9\x41\xfc\x2d\xe2\xd8\xf8\x33\xf5\xde\x29\x29\x0d\x40\x06\xc4\x0c\x50\x8d\x77\xd0\x7a\xf3\x9d\xaf\xa8\xce\x6c\x0a\x41\x70\x3c\x46\x23\x8e\xa0\x30\x04\xf4\xf3\x75\xfb\x48\xf6\xd2\x3d\xf2\x15\x07\x70\xf5\xff\x04\x2c\x02\x10\x3f\xc9\xdd\x07\x24\xcf\xdf\x42\x8f\xfc\xa4\x90\x70\xa5\x07\xb5\x45\xbf\xde\x10\xc8\x1a\xed\x41\xc7\x1e\xd4\x3f\xae\x2b\x86\x5f\x57\x87\x2c\xf9\xcf\x3a\x74\x7b\xf0\xac\xc4\x39\xbd\x39\xaf\xfe\x86\x7a\x68\xec\xd5\x7a\x4e\xde\xdd\x31\x96\x58\x6d\xf3\x69\xf4\x20\xa9\x1e\xec\x14\xff\x7f\xf9\xe5\x0f\xa2\x78\x3b\x48\xef\x56\xbd\xdb\x4d\xe7\x1e\x8e\x9b\x40\x33\x35\x6a\x5c\x9d\x77\xce\x88\x9f\x4d\xaa\x32\x81\x7e\x7a\xcd\xa6\xd8\x80\xfe\x97\xdf\x77\x43\x51\xad\x27\x8b\x5f\x1f\x22\xed\xb5\x1f\x63\x15\xc6\x28\x86\xd4\x9e\xd2\x2c\xbf\xdb\x86\x7d\x53\x26\x5d\x29\x63\xff\x5f\x86\x91\x56\xc2\x84\xdb\x74\xa4\x77\x31\xdc\x10\x89\x6d\x6e\xb2\xde\x5a\x8e\x84\x46\x29\x80\x4e\x4c\xdd\x79\x7e\x33\x60\x7f\xc1\xa2\x43\x3d\x58\x3f\x04\xcd\x3c\x2f\x40\xfb\x2c\xb2\xec\xe0\xf8\xa8\xa0\x02\x19\x8e\x5e\x67\x55\xf9\xde\xd7\x41\x5d\xd1\x24\x86\x16\x0b\x40\x4c\x48\x23\x58\x0d\x1b\xc1\x31\x49\x01\xf8\xd1\x22\xac\x87\xe4\xec\xdb\xfc\x03\x5c\xb4\xc2\xa4\xd7\x97\x33\x60\x8d\xf5\xc8\x85\xb8\x07\x8d\x1f\xe4\x4d\x55\x59\x70\x3f\xee\x9f\x68\xa9\x0e\x86\x15\x46\x42\x2e\x7a\xe2\x79\x7a\x2c\xfa\x1d\xdc\x17\xe1\x37\x7f\x72\x2b\xdd\xea\xc8\xae\x56\xfc\x5a\xf5\x6e\xdd\x05\x2c\xb7\x8c\x87\x02\x94\xc7\x19\x58\x0b\x9e\x6f\xfb\x1e\x30\x3c\xa0\xe4\x23\x15\x7a\x62\xc8\x2a\xc4\x55\x5a\xdc\x39\x2a\x50\x0d\x47\xab\x15\x96\xc1\xfc\xaa\xf4\x37\x0b\x3c\x60\xf0\x60\xfb\x83\xba\xba\x1b\x1a\x69\xfa\x42\xeb\x71\x23\xf2\x76\xbe\x98\x8b\x0f\x69\xbf\x7b\x7f\xe7\xb5\xc5\x26\x0d\xa8\xcb\x43\x87\x85\x2c\x5a\x4b\x33\xe2\xd8\xff\x76\x50\xe1\xf9\x01\x80\x42\x7d\x43\x66\xcd\xf1\x02\x59\x89\x94\xdd\x9c\xa9\xd6\x82\x29\x00\x79\x56\x9a\x23\x94\x95\xf7\xcc\x70\x76\xa4\x69\xc9\x55\xfd\xe5\x6c\x37\x4a\xe4\xc7\xc5\xea\xa3\x83\x75\x13\x27\xf7\x74\xd6\xdc\x14\x94\xfb\x53\x0f\xf2\xa5\x71\x22\x5a\xaf\xf0\x86\x6c\x3d\xa7\x73\xe2\xb0\x1f\xd7\x79\x94\x29\x4a\x85\x49\xa9\xaa\x68\x61\x5e\xa8\x4a\xe0\xdf\x71\x6b\x46\x09\x4a\x95\xb6\x42\xeb\x68\x21\x90\xba\xf2\x98\xf8\x3a\xdb\x4e\xb1\xef\x22\xe7\xe8\x84\xbb\x63\xc5\xb4\x3f\xa7\x9c\x7c\xf2\x80\x53\x55\x63\x45\xff\x05\xbb\x84\xb6\xd1\x83\xb7\x04\x96\xdf\x39\x83\x93\x1a\x45\x78\x56\x6a\xb9\x82\xdf\x65\xe2\xd4\x26\xfb\x12\x3d\x7a\xc7\x8e\x75\xc0\x74\x3e\xf0\x36\x9e\x03\x55\x33\x14\x46\xcd\x64\xa5\xc6\x03\x5b\x7f\xbc\x26\xf0\x19\x21\xc8\xb1\x24\x3e\x85\xce\xc4\xaf\xfc\x4d\x19\x27\x48\xc9\xff\xed\x82\xd6\xa5\x68\xbc\x3d\x55\xb8\x4d\x66\x8e\x3c\x92\x5c\x5a\xbf\x2e\xf5\x75\xc4\x55\x2b\x22\x73\x3a\x9c\xaf\x35\xcf\x6e\x35\x7b\xe3\x71\x3e\x2c\x34\x36\x55\xa2\xfb\xdf\x6b\x62\xb6\x0f\x12\x93\xd8\xbd\x16\x11\x90\xb4\x5d\xcf\x1c\x99\x2a\xd1\x8d\xad\x77\xeb\x0d\xe0\xee\x58\x79\xf2\xc0\x01\x14\xe1\x77\xff\xae\x10\x53\x31\x6e\xad\xca\x72\x7f\x69\xd7\xe7\x57\xae\xe6\x4d\x39\x75\xbd\xeb\x4b\x6d\x85\x0b\x82\x0c\xa9\x1b\x7c\xe9\x77\x9d\x10\xb8\xed\xd2\x52\xe6\x20\xff\x52\xa7\xa6\x49\x75\x89\xce\x3a\xf6\x88\x00\x0e\x2e\x97\xf7\xd5\x6f\x4a\x02\xe9\x51\xa9\x4b\xb3\xeb\x33\xcf\x0b\xd1\x9f\x5b\xf3\x1e\x9e\x05\xad\x7f\x18\x05\xb6\xcc\x51\x4f\xe9\xb4\x73\x6f\x86\xb4\x94\x0d\x14\x66\xad\xec\x5e\xda\x1e\x37\x04\xd6\x31\x4b\x61\x53\x6f\xee\x38\x50\x75\x22\x0c\x12\xbe\xd5\xb0\x33\xaf\x53\xea\xf7\x34\x67\xa9\xf1\x73\x3b\x75\xd9\xd2\x6f\x8b\xff\xed\xce\x84\xd5\x08\x3d\xe2\xed\xdf\xf3\x94\xb2\x49\xb1\x19\x1b\x54\x7e\xdd\xd7\xa3\xbc\x6c\x52\x7f\xf3\xc5\x8e\x40\x3c\xaf\x72\x85\x26\xe8\xe8\xbd\x3f\xc6\x13\x96\x07\x8a\xff\xe5\x4f\xfd\x0e\xd5\xf7\xb6\x5c\x9b\xee\x4c\xbb\x61\x67\x22\xeb\xbc\xa3\x3e\x54\xae\xa1\xbd\x9f\xce\x5a\x5c\x85\x7d\xf8\x1c\xe2\xd1\xa7\x2d\x9a\x85\xd9\x15\x3f\xcb\x60\x81\x6c\x59\x6a\x42\x59\xaf\x89\xd7\xf1\x76\x7f\x5c\xd8\x70\x62\x7d\x39\x4a\x64\xed\xa7\x55\xd5\xdd\x42\xd2\x11\xbe\x5f\x0d\x6d\x1e\x09\x0d\xa0\xac\xee\xaf\xcb\x9a\x1b\xb3\x4c\x69\x47\x9f\x26\xef\x10\x1c\xab\x0f\x75\x36\x7f\x59\xfe\x70\x92\x63\x27\x01\x91\xa3\x00\x87\x7e\x17\x1b\x4e\x4e\xd4\x9f\xea\x76\x0d\x25\xd1\xba\xdf\x13\x25\x0f\x68\xc9\xac\xa4\xd5\x23\xab\x68\x6f\x5d\xbd\x76\x43\x9d\x5f\xa3\xfe\x3b\xe5\x67\x62\x7f\xcc\x0e\xa7\x23\xb9\xc6\x5d\x42\xbe\xd2\x13\x43\xb8\x0f\x3a\x45\x12\xbe\xa4\xe9\xf3\x55\x75\x2a\x63\xd2\xb4\x54\x64\x51\x94\x02\x88\xb4\x9a\x77\x67\xb5\x38\xff\x1c\x33\xe6\x27\xd0\x0a\x6e\x27\x9c\x01\x4e\x7e\x72\x92\x5a\x50\x53\x13\x8e\x5f\x7e\xe7\x53\xbd\xec\x0f\xd3\x73\x1d\x2b\xc7\x3d\x99\xcd\xc7\x3b\xed\xbe\x60\xb1\x25\x53\xfa\xf7\x51\xcb\xf3\x28\x85\x68\x41\x53\x9d\x1f\xa6\x3e\x71\x77\x9d\xf6\xda\x8f\xa7\xea\xf8\x7e\x2b\x61\xfd\x8d\x32\x26\xc2\x2d\x3f\x75\x91\x55\x0a\x11\xb4\x19\x2f\x96\x02\xaf\x46\x72\xeb\xb6\xbf\xe9\x44\x13\x29\xed\x0a\x1a\xa5\xa8\x7f\xf2\x6b\x39\x52\xf8\xfd\xa1\xce\x32\x19\xaa\xb8\xf7\xcc\x52\x07\xdc\x47\x94\x7a\xe8\xd3\xaa\x87\x7a\x2f\xbe\x6d\x0f\xf6\xc7\x07\x26\x25\xeb\xd1\x58\x62\xab\x0d\xb7\xcf\x4c\xaf\xc6\x03\x99\xf5\xaa\x26\xe3\x6a\x69\x5c\xfa\x48\x57\xae\xd1\x3e\x86\xd5\xf1\x31\x8c\x1c\x56\xc0\xe3\x0e\xc3\x6b\x5e\x91\x37\xf5\x6d\x01\x49\x48\x16\x4d\x72\xbf\x43\xa9\xbb\x92\x0f\xae\xbf\x91\x61\xc2\x37\x53\xa0\x26\xa4\x0c\x3d\xec\xfd\x67\x9c\x0a\x26\xae\xaa\xea\xc4\xcf\x82\x5c\x61\x58\x21\x85\xb5\xa4\x5f\xb2\xbf\xe8\xb9\x4d\x1c\x92\x00\x9e\x1d\x0c\xbf\x1c\x97\x47\x1e\x8e\x2c\xe4\x51\x8a\xa9\xb9\xcc\x54\x1a\xcb\xd4\x60\x3a\x7e\x99\x73\xbc\x74\x88\x8c\xf5\xf5\xd5\xba\x0a\x51\x5e\x22\xb0\x6c\x7b\xa8\xda\xa9\xfe\x6a\x09\x8f\x13\xcb\xde\xc1\xcc\x56\xc6\x80\x01\xc6\x1c\xb5\xfa\xfa\x0e\x5b\xae\xad\x84\x63\x69\x51\x19\xde\x04\x93\x1a\x61\xa6\xf1\xdf\x50\x26\x39\xd4\x95\xb1\x8b\x37\x47\x0e\x17\xcf\x58\x4c\xae\x24\x4d\xda\x29\x3f\xc5\x40\x50\x59\x43\x58\xb9\x55\xdf\x09\xaa\x0e\xb0\xa8\xf6\xb3\xa8\x92\x26\xb3\xf2\x06\xc0\x2f\xa6\x3b\x6a\x34\x15\x67\x2a\xff\x3a\xb1\x59\xf8\xf8\xaf\x8d\x0d\x63\x95\x9b\xea\xab\xbe\x76\xe5\xa8\x40\xe9\xb9\x9e\x28\xf2\x76\x6d\xda\x4d\x75\x43\x75\xf0\xe7\x91\x9e\x97\xce\x67\x14\xc3\xdd\xce\xb3\x48\x1c\x31\xd9\xcb\x9c\x4f\xae\xa2\x4f\x33\x79\xca\x59\xb9\x79\x92\x26\xb3\xd9\xc8\x33\xa9\xb6\x1b\x41\x00\xaf\xdc\x69\x0d\x3d\x6a\x75\xc0\x73\x3d\x64\x42\x40\xf8\x49\xd5\x57\x97\xb6\x5a\xda\x94\x6f\xf5\xde\x0c\x46\xe9\x9f\xe8\x11\x29\xca\x17\x81\xb2\x49\x78\xcf\x2a\x1e\xd1\x30\xf8\x70\xef\x22\x6b\xb0\x52\xc9\xe8\xde\x63\xf4\xde\x3d\x09\xd0\xa1\xed\x69\x24\xbc\x0a\xc4\xf1\xee\x23\xb7\x62\xeb\x8d\xc2\x29\x6c\x94\x4a\x2a\x13\x2c\x4e\x6a\xac\xce\xc9\x9d\xdd\xb1\x35\x9f\xcb\x11\x6a\x75\x49\xc9\x66\x70\x86\x06\x74\x80\xa8\xe8\xac\x5c\x09\x29\xe5\xcc\x5c\x09\xb1\x13\xd5\x52\x07\x8a\x56\x8b\x8a\xac\xba\x9d\xfa\xdf\xc5\xc7\xc5\x76\xb1\xd4\x7c\xfd\x78\xce\x59\x25\x55\x28\x38\x3b\x57\x35\xf7\x77\xca\xb0\xa2\x7e\x26\x3a\x0b\x17\xea\x3e\x7a\x59\x91\xb9\x3c\x41\x99\xb5\x14\x85\x52\xef\x60\x70\x84\xe5\x2e\x48\xe0\x17\x08\xdf\x04\x69\x7a\x1c\xf6\x3e\x6b\xba\xba\x4b\x76\xad\xc5\x21\x3f\xaf\xbc\x6a\x8f\x0d\xd6\x22\x09\xf3\xc3\x07\x8a\x5c\x29\xde\xdf\x29\xa9\xa0\xc5\xa6\xba\xa1\x66\x6f\x44\xfe\x2a\x10\x0e\xff\xd5\xda\xa2\x35\x59\xfc\xbe\xe2\xbd\x6f\xbf\x86\x61\x73\x1c\x81\xa0\x17\x21\xbf\xbe\x40\xa3\x11\x33\xd0\x3f\xfd\x02\x65\x19\x73\xc5\x19\x53\x34\xfc\xd1\xbd\x45\xb7\x24\x00\x42\xa6\xfe\x77\x66\x25\x6d\x13\xbc\xe6\xd0\xd1\xa9\x1a\x13\xf2\x1c\x61\xa9\x18\xd2\xba\x2f\x56\x67\xc6\xcc\x9d\xfc\x44\x38\x4d\xe5\x60\x4c\xb6\xb6\x47\xc7\x2a\x3e\x9b\x85\xdb\xf4\x6d\x82\x2a\x23\xb6\x7e\x17\x7d\x24\x5c\xf5\x15\x59\xbd\x55\xd1\xce\x44\x1f\x51\x1d\xf7\xce\xa5\xd7\x38\x08\x93\x1b\xa7\x12\x44\x1f\x60\xc9\xe6\x8a\x89\x15\x65\x1e\x4d\x5a\x73\xc8\xb1\x1b\x56\xb6\x16\x62\x4d\x56\x41\xb1\x53\xc0\xf5\x32\x8c\x68\x77\x71\x70\x71\xa5\xb7\x45\x99\x14\xd2\xef\x2f\xc3\x78\xb0\xfc\xd1\x00\x2d\x1f\xc1\xc4\xe3\xc8\xb4\x9c\xc2\xbf\xb9\xd2\x09\xeb\x0e\xf1\xa9\x8a\x7c\xc2\xe2\x1c\xe1\x7d\xb8\xae\x73\xe0\x55\x42\xbd\x8f\xd6\x1f\x37\xf2\x23\xfb\x92\x02\x1e\x55\x0a\x17\x95\xac\x0d\xb8\x1a\x37\x58\x2f\x61\x8f\x68\x8e\x12\xfe\x9e\xd0\xfe\xab\xf1\x26\x75\x2b\xef\xae\xc7\x5b\xbf\x01\x99\x58\x93\x7f\xc7\xe0\x6e\x8c\x71\x9f\x06\x81\xbf\xc3\xa2\xe3\xa0\xcf\xbf\xdd\x1e\xd2\xd9\xf4\x08\xca\xb3\xa5\xaa\xe2\xdc\x46\x38\x69\x5a\x37\x1c\x06\xb6\xf4\xd3\xd7\xe4\x6b\x16\xe0\x48\x3a\x79\xef\x8e\xbb\x89\x0d\x1c\xae\x7c\x1f\x63\xc4\x76\xf1\x1c\xcc\x54\x71\x6c\x82\xd6\xe0\x7b\x65\xc1\x1f\x5e\x7f\xbd\x95\x1f\x32\x23\xe6\xcb\x92\x85\xad\x8f\x6e\xec\xd4\x79\x30\x2c\x7a\xfd\x45\xdd\x4e\xc1\x20\x75\x14\x18\x0a\x06\xa9\x87\x2c\xae\x95\xb1\xc6\x5f\x9e\x8b\x3c\x6d\xd4\x56\x8c\x1f\x39\x57\x3c\x63\x64\x0c\xb2\x1b\x9d\x5f\xe8\x38\xfe\xf7\xd1\x41\x69\x74\x7e\x02\x26\xc9\x06\x96\x7b\x5b\x81\xe7\xc4\x7a\x3e\x3f\xe0\xad\x7f\x9b\xab\x34\xd6\x51\x39\x32\x47\xb2\xc6\xc6\x67\xa8\xed\x7b\x7c\x3b\x7c\xf3\xe1\x38\x93\xc3\x67\x08\x42\xb2\xfc\x21\xab\x03\x0f\x52\xf4\x0e\xaf\x54\xf4\xd5\xf1\xda\x50\xd6\x9f\x7a\x2d\x2d\x3f\x3a\xcd\x66\xf8\x41\x2d\x76\x3b\xec\xe2\x3b\xbd\xcf\xc6\x43\xf9\xe3\xb2\xce\x38\xb7\xa4\x1d\x0f\x35\x7a\xbe\xf7\x2f\x06\x30\x6a\x8e\xe9\xd4\x13\x03\xb5\x0a\xd6\x90\x73\x22\xf6\x09\xc0\x90\x94\xff\x32\x13\x91\x66\x78\xd2\x8d\x16\xd5\x47\x03\x74\x82\x6d\x1b\x6f\x92\x6d\xed\x68\x36\x50\xbf\x19\x94\xad\x74\x33\xcf\x7f\x93\x79\xc9\x0b\xce\x0d\x76\x05\x11\x84\x9e\x62\x75\xd1\x81\x02\x6e\x9b\x19\x56\x73\x18\x88\xab\x03\x4f\xf5\x01\x77\x15\x97\x7a\xe6\xf4\x98\x99\xc1\x03\x79\xcf\x05\x54\x47\xf8\x5a\xf4\xc0\xcb\x4d\x4f\x5f\xf9\x65\x27\x8a\xcd\xe3\x55\xca\x0b\x62\xcc\xfb\x46\x8c\xd0\xca\x36\x75\x32\x2d\x7e\xc3\x40\xb3\x0e\x86\xfe\x97\xc2\xa8\xa9\x94\x80\x0a\xc2\xfb\x37\x9d\x7f\x8d\xbf\x9c\xce\x55\x0b\xa3\xe4\xdc\xac\xed\x48\xbe\x6e\xa8\x24\xa8\x6f\xe9\xc2\x03\xec\xae\x9f\x2f\x78\xfe\xcd\xe8\xff\x97\xfc\x19\xc7\x14\x36\xa5\x73\x5e\x1c\x31\xc2\x0d\x9d\xaa\x18\x4e\x4c\x14\x5d\x90\x17\xb5\xd1\xb2\xc0\x55\x47\xdc\x49\xad\x08\x25\x10\x27\xa9\x0e\xf6\xb0\x6a\x16\x30\x71\x55\xbd\x9b\xb5\xa9\xcf\xf5\x0c\x32\x3f\xda\x5c\x3f\x7a\x62\xb8\x6e\x02\x2d\x51\xc9\x44\x77\x05\xbb\x7d\xdf\x35\x9f\x4f\x5b\xe9\x5e\x19\xf7\x17\xf8\x2d\x37\x31\xa1\x9a\xc1\xf9\x9b\x01\x55\x6e\x75\x5a\x61\xd6\x93\x4c\x1a\xf0\x8a\x30\x5f\x17\x07\x87\xc8\x55\x0f\xb3\x07\x5a\x39\x68\x1a\xa3\x7c\x15\xa0\x17\xbb\x9c\x6e\xe0\xb6\xc2\x3d\x1c\xb7\xb2\xa9\xc2\x41\x02\xa3\x48\x1d\xf5\x3c\xc6\x69\x01\x4b\x45\xb7\xc5\xaa\x08\x8b\xaa\x7c\x4e\x71\x5d\x59\xc7\x36\xe5\x2e\x26\x70\xa5\xd8\x6a\xb2\x7a\xc3\x59\x0e\xc1\x61\x7e\x1f\x57\x91\xd5\xff\x0f\x5d\x09\x75\x55\x24\x3c\xad\xcc\xfd\x98\x19\x88\x34\x6d\x5f\x3e\x76\x79\xa7\x6e\xdf\xc8\x81\xa4\xe3\x7b\x25\x76\x20\xf0\xf6\x9b\x70\x11\x5e\xc4\x6b\x09\xdd\x58\xe8\x9f\xf8\xaf\xad\xce\x47\x52\xcc\x39\xc7\x1e\x82\x72\x5b\x20\x9b\x6a\x6f\xfe\xe0\x84\xc9\x4f\xaf\x43\xe6\xdc\x05\x80\x2a\x3c\x9e\x63\xa6\x03\xed\x10\x27\x82\x0e\x21\x64\xce\x2a\xf4\xd9\x32\x5f\x4e\x27\xcb\x81\xbe\x85\xb9\x4f\xdf\xd6\x66\x79\x7a\xa6\xef\x7a\x33\x8c\xf3\xf7\x4a\xec\x0b\x5f\x0a\xbe\xd6\xc9\x10\xca\x52\x14\x98\x9e\x58\x24\xaf\xd2\x9f\xdd\x94\x89\xbb\x25\x6f\x72\x96\x64\x7c\xe1\x62\xa6\x90\xfa\x6c\x70\x51\xfe\x36\xab\xcc\xd2\x8f\x96\xf0\xb8\x7a\xd5\x03\xfc\xf0\x1c\x04\x90\x92\x51\xbd\x52\x3f\xf4\xa5\x18\x6e\xff\x3d\xe1\x35\x9f\x98\x12\xc9\xd3\x6e\xb3\x68\x98\xbb\xc3\xa3\xf9\x0a\x69\xa4\x65\x7a\xe7\x5e\xe8\x1d\x4f\x8f\xeb\x99\xde\x21\x0d\x52\xdf\xf2\x1b\xc6\x6c\x9b\xf0\xba\xd3\x18\x67\x18\x21\x0d\xb6\xe8\x34\x31\x63\x7d\x05\xcd\xce\x28\xef\x67\x05\x56\x9f\x1f\xe8\xae\x04\x6a\x4b\x7f\x2f\xc7\x69\x93\xd3\x8b\x27\x73\xe4\xd3\xf8\xc3\xa2\xca\x4e\xfe\x61\x2c\xd4\xca\xf2\x2a\x9c\x7e\xc2\x48\xca\xed\x5a\xba\x46\x53\xfd\xd1\x4d\x29\xec\xdd\x1b\x7c\x2e\xaf\xa0\x9e\x1f\x05\xda\x7a\x16\x57\xb1\x3e\xc2\x0d\x8a\xe8\x77\x55\x37\xfb\xa1\xa7\x1e\x5d\xf7\xf3\xbe\xb5\x2b\x90\x2e\x33\x05\x8b\x07\x0e\xe7\x7f\xd5\xe1\xed\xad\xd9\x43\x63\xc8\x05\xc3\x24\x34\x3d\xf2\x45\x99\x06\x9e\x47\x7e\x25\x5f\x8d\x2f\x0b\x60\xd0\x02\x62\x60\xe2\xa5\xea\x48\x43\xbb\x5f\x67\xe4\x35\xc2\xb3\xca\xfa\x47\xa2\x8b\x2f\x91\x48\xdc\x02\x6b\xc2\x7f\x85\xb7\x55\x67\x24\x76\xb6\x83\xcf\x52\x36\x96\x74\xa5\xe8\x67\xb9\x40\x6a\x60\xc0\xe3\x57\x51\x96\xb6\x71\x33\x61\xfe\xfd\x1c\x18\x00\xc2\xd6\xff\xfd\x4a\xf3\x16\xfc\xa4\x30\x13\x9e\x66\x27\x59\x0f\x5e\x2d\xab\xe3\xc9\xce\x94\xc2\x5b\x29\xaf\xfd\x8b\x17\x61\x65\x15\x3e\x8e\x71\x87\xc6\x79\xab\x6d\x2e\x4a\x11\x94\x44\xbf\x78\xc9\x33\x80\x8e\xa2\x16\xb3\xa6\x17\xfa\x60\xfa\x4e\x50\xf5\xaf\x78\xcd\x48\x76\xb3\xc3\x63\xc9\x50\xe3\x3d\x32\x99\xe8\x8a\x35\xe5\xec\x49\x24\xe1\x63\xec\x72\xce\x53\xb3\x2e\x7a\x59\x98\xaf\x2c\xcf\x04\x32\x15\xf9\x01\x75\xac\x62\x22\xe4\x17\xb3\x58\xe8\x1a\x2a\x45\x78\x75\x8f\xf7\x79\x8f\x96\x37\x26\x6d\x7b\xe3\x5d\x48\x65\xfc\x0a\x7e\x52\xb5\x80\xf0\xb3\xea\xfe\x5b\x75\xa1\x7a\x08\x4e\x9e\xe8\xcd\xe2\x3f\xb1\xc3\xd7\x07\x33\x5d\xf7\x58\xe6\x6a\x54\x7f\x1e\x84\x6b\x84\x40\x1a\xeb\x82\xfa\x4c\xde\x35\x14\xb4\x00\x30\x24\x25\x6f\xb0\xe9\xdd\x13\xc3\x3f\x7a\x04\xb2\x31\x74\x93\x10\x97\x90\x9b\xc2\x2d\x2a\xc3\x91\xec\x60\xd1\x1c\xaf\xef\x46\x93\xba\x29\xa6\x35\xd9\x2a\x0e\x05\x36\xae\x1e\x27\xa0\x78\x52\x9c\x88\xe9\x1e\x04\x80\xd1\x0d\x0f\x91\xea\xb3\xa0\xdb\x96\x86\xfb\x2b\x74\x4e\xf2\x2e\x92\x99\x1b\x09\x7f\xeb\x2f\x81\xfb\x96\x90\xbf\xaa\x1b\x99\xb9\xf8\x05\x1d\xb2\x95\xbe\xed\x57\xed\x34\xd3\xf8\x42\xf8\x35\x5e\x99\x72\x90\x88\x83\x95\x34\xde\xee\xb3\x58\xae\x19\xe6\xe0\xc9\x86\xf0\xe6\x82\x46\x1b\x8f\x59\xd6\xb9\x41\x11\xa6\xe0\xf1\x09\xed\x39\x4d\xc0\xca\xe6\x50\x67\x4e\xf1\x8b\xf2\xc4\x3e\x8b\x66\x41\x31\xf7\x80\x60\xb3\x1d\x63\xf4\xfa\x7a\x43\xbd\xec\x78\xeb\x17\x39\x65\xc2\x03\x02\x1f\x6d\xc0\x53\x19\xe8\x82\x15\xd4\xcb\x5a\xf7\x70\x81\x62\x2c\x78\xcf\xf9\x3e\x4c\xd0\x2f\x2a\x22\xf0\xa7\xe5\x70\xc4\x00\x69\xd2\x14\xb5\xc6\x1a\xa3\x4b\xd5\xe6\x49\x48\xc0\xec\x45\xb1\xab\xe7\x6d\xd2\x65\xfc\x24\x31\xca\x74\x90\x12\x2d\xb8\x1e\x13\x78\x4a\xfe\x20\xc5\xa4\x64\xae\x5f\x56\x95\x6d\xa5\x9b\xe9\x87\x7c\x08\xba\xcd\xd4\x8b\x55\x91\x69\x19\x34\x53\xc3\xc3\xb5\xe3\x7b\x91\x80\xf8\xf9\x53\x13\x2f\x27\x10\xce\x36\xa1\x7d\xab\xd4\x89\xff\xfc\xd6\x2e\x12\xde\xd7\x28\x43\x29\x80\x63\x37\x7a\x24\x8b\x6f\xa7\x48\x04\xa1\xb7\xd3\x82\xda\xf1\x77\x53\x0f\x8d\xe9\xb1\x01\x81\x32\x46\x65\x6e\x6f\x08\xed\x26\x68\x6a\xaf\x64\x5e\x92\x93\x20\x8e\x20\xca\x6e\xa7\xaf\xd6\x36\xa6\x40\xa3\x09\x7a\xb9\x45\x63\x62\x50\xd7\x8a\x19\x64\xe5\x63\x34\xbd\xb1\x48\xb4\x47\x07\x72\xd9\x75\x69\xbd\xbf\x7b\x61\x7a\xd0\xf5\xfa\x10\x39\xa6\x78\x51\xc1\xb7\xf5\xc1\xac\x6b\xa9\x32\x04\xe4\x3c\xfa\x3e\x02\x19\x3b\x9f\x8b\xf6\xbd\xfd\x71\xf9\x61\x4e\x60\x87\xa9\xb8\x8e\x36\xea\x0c\x13\x97\x39\x07\x1d\x18\x04\x30\x0d\xc5\x96\x6a\x64\xc8\x5a\xf2\x3b\xd0\x80\x18\x8a\x23\xac\xbf\x84\x74\xe5\xd4\x72\x39\x24\xdc\x4b\x0c\x10\xd0\x31\xdb\x93\xc5\x53\x29\x44\x0d\x56\x0a\x77\xa8\x19\xfd\xe8\x43\x1e\x15\x55\xca\x99\x8a\xf3\x04\x0c\x81\x42\x2f\x00\x2b\x42\xf6\x5f\x22\x70\x51\x6e\xc7\xf0\x90\xdc\xd1\xa5\xb8\x6d\xca\x5c\xd7\x2b\x64\x28\x5a\x95\xb7\xe5\x0f\x0d\x16\x60\x5c\x56\x35\xb4\x9e\x3c\xfd\x6c\xee\xcb\x0e\x52\xd7\xee\x20\x9b\x0e\x3b\xd5\x3c\x1b\x8d\x68\xef\xda\xda\xb1\x94\xbd\xdb\x5e\xf4\xb9\xaf\xb0\xa6\x9d\x1b\x79\x95\x00\x10\x05\x92\x8d\xba\x79\x9e\xd4\x5b\x00\x74\xb8\x92\x1d\x84\xff\x2c\x5d\x9d\x85\xcd\x86\xd4\x95\x8a\x75\x43\x83\xf0\xd0\xab\xa4\x1e\x44\xe4\x50\x3b\x77\xa5\x45\x34\x00\xa4\x30\xa6\x3a\x15\x58\x2c\x3b\x2f\xa1\xee\xd1\xd8\x95\xc1\x2a\x34\x00\x1f\x10\x93\xc0\x5e\xa8\x1d\xfe\xf3\xae\x25\x45\xaa\x03\xe4\x2e\x9b\xbb\xf0\x63\xc8\xdf\x78\xac\x63\x11\xed\x8f\x57\x10\x70\x72\x9d\x7c\xf5\x0b\xc8\xf9\xf7\x5e\xb0\xf6\xa2\xf0\x52\xf4\xdf\xa7\xeb\x15\x79\x4a\xb4\xc8\x77\x1b\x8c\x38\x29\x04\x95\xd5\x14\xc7\x7d\xfc\xbf\xde\xbf\xff\x89\x5f\x2c\xda\xf8\x88\x1d\xf4\xb8\x29\x99\x8b\x49\x18\x2c\xa8\x48\xe5\x1c\xd3\xb7\x9b\x90\x74\xf5\x07\x97\x98\x7f\x7b\xec\x5a\x9e\x64\xbf\x07\x40\xb0\x6f\xb7\xf5\xda\xa8\x5a\x87\x6a\x86\x0b\x1f\x3b\x0f\xab\x0e\xd3\x19\xc7\xc6\xf6\x53\xe3\x45\x14\x30\x89\xdc\xe9\xa7\xfa\x52\x6d\x7f\x95\x72\x13\x52\x0e\xa3\x1e\x35\xbe\x21\x90\x35\xeb\xd8\x65\x78\x30\xf4\x8c\xea\x25\xf8\x6c\x7d\xaa\xb8\x7f\xfd\x44\xf8\xce\x31\xac\x93\xa7\x93\xea\x53\x33\x0a\xec\xfc\x8e\x0d\xfb\xbe\xe5\x20\xed\x7e\x86\xe0\xfa\x20\x39\xb4\xf3\x09\xdd\x6b\x50\x00\x8b\x16\xee\x00\x39\x67\xa4\x2f\xa7\xa5\xab\xb1\x30\x58\x81\x8f\xe4\x69\x4c\xe6\x0b\xf4\xaa\x2b\x26\xd0\x97\x90\xa2\xc8\xe7\xd6\x23\x8b\x57\x89\xc7\xa3\x4d\x6e\xf0\xbe\xe8\x53\x26\x86\xc7\x31\xf6\x14\x4e\x8e\x25\xc1\xa4\x7b\x0b\xd8\xac\x94\x1c\xc0\x39\x37\x90\x77\x75\x15\x34\x7f\xc4\x96\xcc\xbb\x46\xf3\xe5\x84\xa4\xf8\xb9\x0e\x15\xeb\x58\xa7\x06\x2d\x4c\xd3\xf6\x44\x1c\xfc\x9c\xdd\x62\x35\xff\x2e\xb8\xe4\x1b\x00\xb7\x09\xef\x6f\x15\xaa\x3d\xb2\x01\x4e\x68\x05\x47\x38\xb3\xf9\xc9\x3c\x84\xe7\xe7\x3f\x10\x10\xbf\x29\xe0\xcc\xa0\x8f\x82\x3f\xcd\xb7\x8b\x40\x08\x07\x3e\x53\xf1\xe1\x58\x35\x7f\xb1\xb6\xbd\x53\x5b\xac\xd6\xcb\x52\x3a\x40\xaa\xd6\x25\x27\x71\xdd\x13\xa7\xd7\x5a\x3a\x66\xe0\x44\xf3\xad\xb7\x75\xac\x8e\x60\xdc\x9c\x57\x26\x02\x47\xf2\xc7\xbb\xa8\x39\x77\xcf\x45\x05\xe0\x53\x18\x45\x09\x3e\xa7\x33\x79\x1a\xea\x98\x36\x76\xfe\x4d\x17\xba\x37\x3b\x40\xe9\x99\x26\x61\x92\x41\xe3\x27\x14\xaf\x8e\x15\x7a\xbd\x9e\x00\xcd\x02\x23\x9f\x5b\xaf\x78\x2f\xb8\xe8\x27\x76\xdf\xe7\xf1\x77\x86\x93\x0e\x7e\xde\x52\xb8\x28\xef\x0e\x22\x7e\x23\x57\x57\x2f\x03\x77\xc5\x7d\xd9\xd3\x8d\xbf\xdd\x96\xca\x3e\x26\xad\x9c\x7b\x94\x6b\x9a\x77\x6a\x33\x30\xf4\xab\xd8\x3e\xda\xc2\x81\xd8\xcb\xb8\xc5\xac\xaf\xd4\x4c\x61\x92\xb8\x9c\xf1\x64\x56\x08\x9b\x06\x7c\xf2\x18\xfd\xe3\xde\xd4\x2d\xf4\x47\xc3\x86\x66\xd2\x9a\xb9\x7c\xa9\x96\xa6\x0d\xd6\xfc\xcf\xdc\xb0\x31\x64\x6f\x48\x65\x3d\x12\x0c\x3c\x75\x76\xb7\x38\x55\xdc\x6f\x3a\x7d\x8d\x62\x77\xbe\x65\x87\x74\xf8\xd1\x12\x87\xdb\x57\x39\x5a\x67\xc3\xd1\x1f\x3d\xa7\x84\x43\xf4\xac\xc2\x72\x70\xb1\x08\x81\x28\xb8\x90\x95\x0e\xe6\xea\xc5\x3f\xd3\x4f\x27\xbc\x98\x0e\xb2\x85\xc2\x21\xb0\x3d\xef\x00\x73\xbd\x56\xa8\xab\x20\xac\x83\xa3\xd3\x44\x77\xe6\x89\xdc\xea\x34\x79\xa3\xae\x66\x0a\xd6\xe1\xf3\xad\x6f\x7d\x89\x52\xcc\xa0\xb7\xc1\xc0\xba\x60\x14\x3b\xf9\xcf\x9e\x76\x9a\x8d\xde\x18\xfd\xe5\xbd\xe7\x68\xa8\x42\x1b\xe6\x98\x65\x19\x12\x1b\xb8\x5b\xff\xb4\xbf\xdf\x0f\x43\x11\xac\x9f\x9c\xf3\x7e\x7b\xef\xab\xaa\xc8\x08\x3b\x59\x4a\x95\xbb\xca\xfe\xf9\x75\x91\x39\x54\x05\x9f\x3c\xd2\xff\x8e\xe0\x27\xae\x9e\x94\x9b\x1b\x1b\xf6\xfd\x3f\x53\x87\x13\xde\xa1\xc3\xb8\xb7\xae\xa3\xf7\x59\x4f\xff\xa0\x05\xc5\xaa\xd3\xe5\xbd\x26\x62\xe6\x8e\x2a\x67\xa6\x88\xa0\xae\xf9\x05\x0d\x4d\x3f\xba\x5e\xc0\xf3\x2a\xcf\xd4\x87\xc0\xb8\x57\xc0\xe8\x7b\x91\xe7\x44\xec\xaf\xa9\xc0\x06\x9a\x7a\x7f\x63\x52\x41\x65\x1d\x2b\xe9\x9e\x2c\x71\x68\x96\xef\xcf\xed\x50\xda\xc0\xa8\x35\xed\x3c\x54\x43\xf4\xa2\x37\xae\x33\xdb\xf1\xc1\x08\x02\xb6\x88\x51\xb3\x3b\x70\xfb\x40\x3b\xbf\x60\x0d\x46\xaf\x94\xc2\xaf\x1c\x27\x1f\xf3\x2b\x30\x54\xb1\xdb\xcd\x29\xe2\x41\x41\x58\x9d\xd8\x31\x02\x24\xc1\xf0\x05\xf9\xd9\x05\x41\x73\xac\xd4\x38\xcc\xef\x37\xcb\xfb\x16\x26\x0b\x11\xc2\xc2\x36\x24\x15\x57\xfc\x56\xc3\xf7\x3e\x8e\x7e\x3f\x0c\xe5\xbd\x2a\x4a\xc7\x23\xbf\xd3\x1b\xd3\x31\xbe\xf6\x2e\xff\x31\x7a\xb8\x54\x5f\x2d\xcf\x77\x3c\x69\xd2\x5a\x71\xad\x8a\xa4\x40\x54\x16\x60\x1d\x78\x75\x15\x47\x7c\x09\x8b\xd2\x7d\xc8\xa6\x77\xd0\x26\x77\x1b\x29\xb6\xb3\xce\x6c\x44\xe3\xb1\x44\xab\x5c\x3e\x1a\xf0\xcb\xed\x54\xdb\x1d\xd1\x0e\x52\x7a\x5d\xc2\x13\xef\x68\x28\xbb\xcc\x14\x78\x7e\x4b\x18\xd5\xdb\x49\x78\x5c\xe4\x5d\x65\xe7\x7e\x89\x27\x21\x28\x8c\xec\xa2\x5a\x23\x06\x23\xa1\xe6\x03\xf9\x26\x3f\x47\xf6\xf1\xf1\xf1\xb1\x81\xef\x8c\x39\xa2\x78\x1f\x2a\x72\x9a\x48\x2c\x05\xf5\xdf\x32\x96\x02\x4e\x80\xc3\x13\x13\x8e\x5d\x07\xd2\x3c\x2c\x33\x35\x52\x49\x88\xde\xcb\x1b\x72\x40\xd1\x62\x5b\xa5\xc3\xb7\x5e\x4d\xc3\x84\x5a\x1b\x0b\x81\x71\xe2\x7f\x24\xbe\x28\x0f\x6f\x1a\x35\x0c\xf3\x30\x3d\x4a\x67\xbc\x06\x6c\x88\xa3\xa2\x0d\xc1\x39\x32\xee\xb5\xc5\x95\x71\x15\x18\x66\xbd\xdb\x12\x00\x03\xc8\x29\xe3\x5f\xee\x32\x72\x6e\xcb\xf1\x2a\x17\xe5\x53\x3b\xe0\x8b\xc3\xf7\x8e\xf0\xbe\xb9\x17\xf3\x8d\x91\x2f\xff\xef\x9d\xc7\xea\x5b\xaf\xab\xbb\x69\xe1\x2d\x91\x37\xba\x13\x35\x4a\x10\x18\x36\x69\xff\xb0\xf9\x88\x68\xb9\xb0\x15\xcd\xf0\xaf\x50\xc0\x67\x89\x47\x1a\xcb\x5c\xf9\x47\x8f\xf5\x40\xab\x98\xa9\x7a\xb9\xc2\xe7\xcf\xbd\xeb\x67\x77\xcd\x89\x53\xfe\x47\x49\x74\x77\xad\xb8\x8a\x51\x04\xcb\x42\xcb\x2b\x22\xc0\xaa\x78\x5f\x9a\x9b\xea\xb1\x6d\xc9\x47\xed\xfe\xef\x16\x37\x73\x49\x7a\xce\xa2\xe6\x12\x36\xa5\xa2\x4a\xa0\x13\x3f\xca\xbb\x2b\x0f\x2a\x2b\xc6\x9c\xd1\x34\xad\xa5\x6e\xbc\x0e\xb9\x6b\x6c\xc2\xce\x24\xbd\x5f\xc5\x1a\x68\xa2\xb9\x5f\x8f\xa6\xbc\xd4\x9f\x87\xef\xb2\x7d\x6c\x4c\xc3\x28\xfe\xd1\x9a\x0d\x40\x43\x7c\xaa\x2c\xb1\x63\x5f\x3c\x4a\x5b\x77\xde\xf6\x86\x89\x89\xe0\x94\xdd\x02\xb9\x18\x6a\x51\xfc\xd0\xd5\x61\xa1\x95\x37\xcb\x63\x37\x49\x68\x71\xdc\x4f\x0e\xd3\x5b\xb8\x8f\xad\xe8\xda\x18\x34\xfa\x75\x9f\x47\x30\x1b\x51\x3b\x15\x3c\xe0\x6d\x7f\x55\x44\x43\x4b\x1a\x1f\xed\xb4\x55\xa3\x8f\xd6\xcc\x29\x6f\x7d\xca\xb3\x74\xf9\x7b\x87\xfc\x45\x91\xd2\xf9\xe2\x09\x93\x67\x35\x8f\x2d\x2e\x9f\xbc\xc4\x3e\x7d\x92\xe8\xd7\x9b\xf9\xd4\x31\xd0\x69\x62\x49\x85\xb5\xe4\x73\x03\xb7\x14\x3b\x89\x4c\xbd\xd6\x4d\x27\x7a\x01\xcd\xe1\xc1\x97\x4c\x26\x6b\xdb\x8e\x8c\x16\x86\x4c\xb5\xe3\x75\xc4\x88\x57\x72\x0a\x03\x2f\x3a\x06\xfe\x33\x8f\xe5\xb1\x61\x90\xb6\x40\xd2\x71\x13\x81\xa1\x3b\xdd\xf8\xa6\x23\x6f\x97\xe4\x47\xe2\xdf\xb7\xae\x9d\xe2\x3b\xce\x98\xce\xa1\xbf\xb0\xfd\x7c\xb6\x7f\xa3\x44\x6a\x54\x49\x60\x06\x01\x39\xcf\x17\xf6\xff\x28\x65\x10\xc0\x5c\x56\xed\xc0\x87\xa8\x83\xfc\xb4\x05\x98\x02\xa9\xcd\xea\xa1\xc4\x27\x6e\x27\xc0\x49\x18\xec\xc5\x7a\x74\x70\xd4\x95\xb9\x40\xd8\xfe\x4e\x07\xc3\x09\x30\xd1\x9c\xbd\xda\x60\x3f\x37\xcf\x5f\x14\x29\x9e\xe7\xe0\x5f\x01\x19\x04\x21\x37\x44\x0f\x78\x76\x3e\x0a\xe1\x37\xde\x87\x46\xcf\xde\x29\xa7\x6e\xd1\xaa\xa6\xce\xcc\xf0\x4f\x63\x03\xee\xf8\x88\x9f\xcd\x84\x9f\x87\x1e\xe8\x64\x00\xe0\x1b\x49\x4c\x57\x65\x41\x23\x5c\x9e\xea\xfb\x14\x84\xce\x70\xfd\xbd\xe2\x3a\xcb\xe7\x91\x47\x1c\x48\x78\xdb\xec\xb8\xdd\xb0\x84\xb3\xc7\xeb\xa6\xed\xd6\xe2\xc9\xd9\x67\x91\xce\xad\xfe\x32\x08\xe3\x56\x08\x67\xe5\x4a\xaa\xef\xfa\xe2\x50\x66\x0c\x32\xf0\xea\xf6\x29\x55\x54\x5f\x13\x25\xc3\x4d\x4b\xef\x6a\x0b\xa4\x66\x59\xf4\xd2\x96\x24\xc2\xb8\x3a\x74\x87\xcb\xab\x0f\x24\x83\xd1\x0e\x77\x2f\xa2\x2b\x65\x2f\x75\x71\xec\xa9\x17\xd7\x55\xcf\x52\x35\xb0\xda\x7c\x8b\xa1\x39\x54\x16\x99\x70\x39\xf7\x75\x7c\xf9\x9b\x4f\xfb\xa1\x5b\x88\xdb\x20\x16\x2e\x0b\xd0\xa8\x06\x2d\xa2\x04\xf4\x0c\xe5\xbd\xee\xcd\xa7\x1f\xe0\xef\x15\x38\x1b\x03\xaa\x3b\x4d\x78\x24\xc5\xda\xbd\x85\x8e\x16\x1b\x84\x2c\xbd\xfb\x21\x42\xcf\x76\xf6\x74\xc1\xfe\x67\x3f\x2a\x08\xab\x08\x2b\x95\xbd\xa6\x69\x4a\x8b\xb9\x55\xe8\x25\x2d\xe3\xd9\x87\x49\x79\x15\x2d\xde\x2b\x5a\xb0\xd4\x7c\x9c\xb2\x78\x38\xb6\x7a\x32\x7d\xa4\x0b\x02\x04\xaa\xd7\xb2\xc2\x29\x76\x8f\x21\xc9\xd1\x8b\x2c\x22\xd6\x90\x39\x0b\x5d\xfe\x67\x7f\xdd\xc8\x03\x0a\xcd\x56\x08\x20\x2f\x08\x30\xa9\x72\xa0\x39\x01\xeb\x50\xad\xc7\xd7\x24\x31\xba\xa0\x3c\xe9\x7c\xc2\x1a\x67\xcc\xec\x7b\x92\xa9\xeb\x3a\x73\x13\xff\x9f\x34\x89\x8b\xc3\xf8\x7f\xa8\xd7\xa7\x3b\x4b\x6f\x77\x4f\x13\x3c\x86\x69\x5a\x7a\xe0\xcd\xa5\x63\x53\x3c\x3b\x1f\x67\x68\x16\x61\x75\x47\xb4\x8d\xd3\xf2\xb8\xd8\xd7\x66\xe8\x79\x31\xac\x36\x4c\xe0\xbc\xba\x7b\xe0\x92\x55\x73\x5b\x8e\x78\xad\xa7\x12\x4a\x08\xa8\x8d\x2f\xd6\x2e\x54\xd7\x92\x08\xc5\x5f\xe9\x6c\xbc\xce\x27\x47\x7c\xeb\x4b\x95\xd2\x06\xb9\x8f\x18\x6e\xa0\x05\xa7\xb5\xc3\x7b\x8a\x71\x00\x1c\x15\xae\x0e\x8e\x6d\x5f\x2c\x84\x13\x4a\x95\xae\x25\xea\x46\x9b\x30\x49\xe1\x53\x93\xa9\xb6\xd2\x15\x05\xd5\x9a\xfd\x9e\x33\x88\xaf\xcf\x86\xe2\x6a\xf8\xa0\xf8\xbc\x7f\xfb\xe5\x5e\x08\xa4\xe5\x94\xa8\x0b\x1c\x0e\x79\xfc\x74\x38\x48\xcf\x34\x2d\x61\x9c\x58\xbb\x95\x97\xa6\x62\xc0\x94\x2b\xca\x44\xaf\x59\x60\x1e\x65\x15\x05\xaf\xc5\x2d\x99\x23\x13\xfa\xd4\x31\x54\xa5\x50\xb2\x6f\x5b\xa2\x35\x6a\x5c\xd1\x9a\x2e\xed\x2e\xae\x6e\x63\x32\x06\x2a\xa1\xeb\x28\x35\xc3\x79\x2a\x5d\xf9\x63\x74\xbc\xec\x76\xfe\x67\xb5\xf6\xed\xa2\x91\xbe\x87\x6f\x9b\xa3\xe3\xc8\x6c\xa0\x2e\xad\x72\x2a\x6d\x59\x61\x19\x51\x54\x5b\x60\x23\xe4\x82\xd5\xd8\x8d\x2c\xf0\x91\x69\xb0\xb2\x76\x41\x4d\x17\xf8\x1e\xae\x40\x30\xa3\x33\x80\x8c\x9c\x63\x6a\xd2\xd2\x2a\x37\x8b\xc2\x3e\xc4\x8a\x2e\xf8\x31\xda\xd2\xf4\xb2\xa7\x49\x68\xa7\xa4\x0e\x68\xb3\xc9\xc8\x37\x05\x85\xc2\x04\x56\x2a\x0a\xc6\xf2\xd3\xb0\x10\x00\x60\xc7\xad\x43\x01\x8d\xd6\x26\x01\xc2\xdb\xff\x58\xe9\xfc\xc6\xab\xa6\x6f\x3c\x46\x16\x01\x29\x2f\x18\x96\xd0\xfd\x30\xe3\xb1\xc1\x03\xa2\x2e\x3a\xb1\x83\xf8\x0c\x72\xa6\x90\x6c\xc5\x83\xb1\x0a\x0e\xec\xa6\x4f\xfb\xf0\x01\xd4\xbf\x16\x56\x1f\x76\x82\x03\xfa\x69\x5a\xa5\xcd\x78\x40\x72\x60\xda\x0a\xa5\xa4\x92\x9e\x5e\xc2\xc6\xca\x1f\x7c\x61\x3f\x44\x0f\x65\x0a\xa7\xc4\x0d\x61\xef\x8a\x25\xbe\xbc\x0f\xe4\xef\x2a\x81\x49\x25\xd2\x9b\x7c\xe5\x5d\xe1\x27\xff\xfa\xb3\xa8\xc1\xad\x2e\xee\x6a\xaf\xb3\xb4\xa1\x1a\xea\xda\xfc\xc3\x62\x59\x44\x8c\x73\x06\x69\x1d\xdd\x17\xd3\x36\xe2\x7b\xf5\xf2\xc8\x50\x31\x05\xa7\xcd\x35\x40\x88\x6b\x6d\xb8\xa0\xd6\xc3\x6b\xda\x5d\xc2\x3a\x7e\x2e\x50\x76\x3b\x18\xf5\xf8\xb2\x2b\xf3\x3f\x81\xee\x44\x24\xaa\xc2\x3a\x4a\x2a\x1d\xf1\xdc\xaa\xfc\x51\x98\xf1\xb4\x28\x0a\xc0\x97\x04\x01\x02\xf6\xbe\x76\x2c\x3f\xb8\x37\x3c\xd8\x4d\x29\xb3\xfe\x2c\x39\xd3\x7f\x1d\xf8\xfb\x22\xa9\x6b\x20\xfa\xc7\x90\x5d\x36\x77\xb2\xc4\x57\xdc\x8a\x57\x7f\x87\x11\x3e\x58\x39\xd0\x91\x5e\xcd\x09\x55\xac\x1c\x3b\x86\x9c\xae\x18\x7e\x07\x3c\x04\xb9\xf3\x60\xdc\x5e\x27\x13\x9d\x91\x22\x94\x02\x88\x97\x61\xbd\xae\x60\x30\x7c\x9d\xba\xe8\x6c\x1a\xf7\xe2\xab\xed\x2c\xab\x88\x3c\x1d\xb6\x73\x6d\x8f\x49\xbf\x7d\xfd\xb1\x43\xb6\xf6\xc0\xe8\x73\xf4\xa5\x0b\xe8\x6e\x9c\x8e\x4d\xfa\xe6\x9e\xcb\xd7\xef\x2c\x8b\x10\x18\x37\x92\x95\x37\xd2\x57\x7d\x2d\xa4\x9b\x54\xd1\x03\x3b\xf3\x5f\x5f\x27\x20\x93\xe1\x4c\x91\x81\x49\x13\xa5\x25\x39\xfe\x2e\xe8\x1e\x9c\x2b\xae\x69\x34\xd2\x3a\x16\xaf\xa3\x69\x6a\x8d\xad\x5a\x41\x5b\xfd\xf2\x66\xa5\x75\xb5\x8b\xac\x8d\xeb\xf1\x54\xb7\x1c\xc6\x9d\x1f\x44\xe6\x04\x9c\x3d\x79\x11\x76\x8e\x69\x9e\x0e\xf9\x8c\xcb\xb3\x92\x51\xb1\x1c\xba\xe0\xbe\xd7\x50\x76\x53\xf7\x05\x47\x95\xe8\xd1\x98\x38\x04\xe3\xc4\x68\xb1\x05\xfd\xcf\x65\xeb\xb0\x25\xa5\x89\x60\x2d\xc9\xa9\xc2\x9f\x57\x09\x74\x36\xbd\x4c\xb8\xe2\x84\x79\xd6\x59\x7a\xab\xf6\xe5\x94\xc7\xc4\x48\xb5\x32\xb5\xd8\x3b\x89\xf7\xb3\x95\xd8\x6b\xa5\xd4\xc4\xe7\x56\x91\x24\xe2\xaf\xd5\x1f\x3f\xe9\x17\x7a\x01\x6a\x58\x88\xa7\x17\xdb\x20\xaa\x7f\x6f\x25\x01\x1a\x23\x5b\x32\x59\x7c\xea\xea\x02\xf6\x64\xa7\xce\x18\x3d\x0a\x91\x0f\x68\x82\x35\x89\x9e\xcf\x10\x5c\xae\x69\x3f\x8b\x68\xee\x5d\xe6\xab\xa7\x94\xd3\x7e\x2b\xb1\xf6\xbe\xe2\xbf\xe5\x4c\xff\xf2\x9c\x36\x45\x05\x77\x2c\x22\x7d\x2b\xd6\x73\x25\x1c\x41\xc9\x12\x6d\xbe\x8b\x62\x36\x87\x83\x40\x0e\xd3\x8b\x3c\x64\x7d\x16\xdc\xeb\xa3\xea\xbd\xca\x40\x42\x6b\x89\x9a\x37\xa9\x2b\xdc\x46\x48\xec\xbb\xb0\x02\x27\x79\x21\x05\xfe\x48\xaf\xfd\x43\x66\x01\xbb\xcf\x1f\x35\x0d\xdf\x5b\x9b\x01\xef\xfd\xce\x27\x5b\x5e\x5f\xc5\x7a\xfb\x6c\x33\xa2\x3f\xa0\xb0\x8c\x17\x96\x12\x80\x63\xb7\xce\x33\xe0\x35\x96\x24\x08\xa8\x2d\x1e\x7d\xe8\x1d\x4c\x24\x79\x1f\x7e\xf9\xe1\xeb\xc5\xcc\x64\xe3\x87\xab\x77\x6b\xc0\x6b\x5a\xd7\xe7\xbe\x7f\xf4\x6e\x2f\x37\xd8\xcf\x49\x65\x9a\xf1\xef\xf1\xdb\xa4\x36\x56\xcd\x4d\x00\xf4\xbc\x21\xc7\x2b\xb6\xed\xcd\xc1\x86\x79\x2e\x45\x8b\xbf\x8a\x76\x61\x42\x94\x8a\x7b\xae\xe3\x88\x74\xcc\xa9\x12\x98\xcd\xe3\xf2\xf7\xd3\x76\x39\xce\xad\x6b\xfc\xc6\x26\x2c\x80\xa2\x88\xc0\x0f\x89\x43\xf7\x71\x09\x18\x35\x25\x39\xcf\x09\x01\xd5\xb2\x81\xf1\xbb\x39\xb6\xf3\xe7\xc2\xd8\xf1\xc3\x1b\xcc\x07\x4a\xb1\x97\xaa\xd1\xa0\x40\x06\xde\xbf\x9f\x07\x1e\x74\x43\x3b\x2d\xc3\x32\xbc\xd4\xff\xdc\x6c\x99\x67\xef\x32\xf9\x53\x31\xd5\xe2\x7b\x31\xd7\x6e\x64\x21\xa6\xdf\x34\x98\xc9\xd3\x01\x30\x6e\x6a\xde\x4d\xc7\x0e\x85\xbb\xb4\x73\x9a\xbf\xc7\x7b\x04\x12\x8d\x02\x28\xd6\x11\xc7\x1e\x74\xdd\x4b\xed\x5b\xe5\xe1\x6e\xd3\x6e\x58\x96\x48\x60\x98\xb0\xc2\x3e\xb1\xaf\xcf\x0f\x0e\xf4\x4c\xb2\xd0\x06\x3a\x5d\xe2\xc1\xe2\x2e\x5a\x75\xb3\x56\x78\x56\xf5\xf9\x45\xb2\xcc\xd7\xc3\x88\xd5\x27\xb8\xed\x1a\x6d\xbc\x58\x6d\x88\xc6\x6e\x7d\x2e\xdb\xa3\xa3\xff\x06\x3e\x1a\xa6\x3a\x9e\x09\xc1\xa2\xa1\x81\x81\x06\xbb\x33\x43\xb2\x5f\xe8\xfa\x3a\xbb\xb6\x7a\x4e\x74\x37\x13\xde\xfb\x8f\x3a\xe2\x85\x6c\x01\xaf\xc2\x76\x83\x20\x5b\x58\xbc\x4f\xd1\x72\x58\x00\x07\xf9\xf9\x78\x80\xed\xf9\x63\xd3\x4f\x45\x64\xbd\xc4\x27\xa3\x12\xf6\x9a\x36\x9c\x9a\x10\xcd\xa1\xa5\xa5\xc0\xf3\x93\x3b\x8d\xad\xe4\xe3\xec\x17\x2d\x9a\xa3\x4b\x87\x3d\x1e\x5a\xb9\x4b\x18\xa3\x76\xbb\x1b\xbf\xfe\xd5\x81\x21\xd3\xf8\xf5\xfa\x82\x8c\x7c\x05\x66\xc4\x96\x02\x58\xa3\xed\x8b\x95\xd7\x9c\x40\xe0\xa5\x84\xf9\xe7\x30\x2c\xa1\x20\x7f\x03\x4b\xdb\x96\xae\x56\x7f\xf6\x11\xc2\xfb\x0c\x56\x8a\xfe\xed\x1d\x0b\x59\xcf\xe7\xa7\x7f\x9c\xdb\x73\x7d\x40\x59\xfe\xbc\xc9\x7e\xd5\xed\x4f\xcc\xd9\xae\x3a\xde\xae\x5f\xcc\xd0\xfe\x40\xbb\xe4\x16\x3c\xd4\xf1\xa5\x7b\x3f\x71\x9d\x74\x14\x12\x66\x20\x54\xee\xb5\x3f\x3b\x0c\xaa\xba\x3b\x6e\xfd\x22\x71\x5e\xc1\xed\xd8\xa5\x2a\xd5\x44\xb6\xaa\xac\x70\x50\x2b\xac\xa1\x27\x20\xa9\xc8\x00\x9b\x0c\x52\xa6\x00\x8a\xbd\xf8\x3e\xec\xa3\xe2\x0b\xeb\x90\x7a\x45\x8f\x8d\x45\x4d\xcf\x60\xb5\x9b\xcf\x09\x31\xa1\xae\x76\x62\xef\x97\x9a\xbf\xe6\x3d\x98\x3a\xfc\xd5\x75\x14\x09\x4c\x36\x33\xc5\xbd\xa3\x00\x90\xf7\xc8\xe1\xbb\xeb\x40\x3f\x49\xd0\xde\x26\xe8\xb4\xa2\x05\x0c\xbc\x0f\x76\x77\x16\x7b\x2f\xe6\xb9\xa3\x74\xaa\x4b\xcb\xa3\xfb\x38\xf8\x76\xbe\xf1\x30\xe6\x51\xfb\x9d\x13\x66\x69\xf1\xe8\x43\x8b\xed\x46\xa7\x9b\x0a\x14\x7d\x2e\xc7\xb9\x45\xc2\xc9\xb1\x04\x42\x90\x01\x09\xe6\xa6\x78\x27\xbd\x68\x14\x7e\x5b\x5b\xa9\x1f\x42\x9c\x88\xbb\xc1\xf3\xf2\x63\xca\x20\x72\x4b\x06\x0b\xf8\x1d\xef\x71\xb8\xa8\xa1\x8e\xda\x83\xd7\x82\xb9\xff\x5d\xac\xa1\x6c\xcf\xe3\xab\xde\x5e\xe7\xa0\xb6\x09\xcb\xc6\x9a\xbf\x1e\xce\x57\xaa\x1a\x8e\x32\x46\x7a\x41\xe9\x5e\x1f\x55\x80\x11\xc1\xf0\xae\x89\x85\x0b\x6f\xcf\x41\x14\x6b\x4a\xc7\x50\xe5\x88\x87\x86\x14\xec\x73\xd4\x58\x79\x6c\x97\xa9\xc8\xd3\x72\x29\x2f\x53\x04\xa5\xe2\xf5\xde\x54\x49\xd1\xcc\x88\x41\x74\x3c\x8d\x76\x50\xde\x0d\xa7\xaa\x06\xd4\x74\xf1\xdd\x43\x7a\x0d\x3d\xca\x32\x2c\x5f\x98\xca\x7e\x9c\x9f\x01\x56\x28\x00\x95\x78\xa9\xa9\x6d\xfd\x39\xc4\xbe\xdc\xba\xd4\xff\x78\x87\x06\x27\xd2\x63\x1f\xf9\xf5\x30\x0d\x6d\xe2\xd0\xfa\x95\x04\x27\x85\xdf\xb5\xee\xc9\x55\x16\xf3\x79\xdc\x11\xc4\xd8\xcd\x89\xec\xfc\x31\xf9\xa3\x17\xf7\xc9\xfd\xcb\x1e\x39\xda\x8a\x04\xbf\x7b\x36\xbb\x65\x37\x3c\x1e\xe9\x4e\x86\x10\x1d\x37\xf7\x4a\xf2\xca\xf7\xd1\x44\xf8\x1d\x6d\x77\x01\xd1\x8f\x76\xa4\x67\xc4\x80\xd0\x7b\xeb\x4f\xac\x87\x2d\x46\x43\x4b\x5f\xf1\x2a\xde\x11\xc6\xbf\xfd\x9b\xf6\x39\x65\x0e\x8f\xd0\xd9\x60\xda\xc6\x41\xc0\x72\xa9\xf1\xb7\x1a\x6a\xf5\xbc\x7b\x8f\x35\x5d\xde\x2b\x71\x9d\xb2\xfd\xf8\x1a\xc0\xa4\x40\x8c\x3a\x54\xa3\x92\xb8\x54\x33\x31\x20\xb9\x41\x7f\x96\x6c\x52\x30\x92\xd8\x35\xfa\x53\x82\x00\xa3\x21\xe5\x9f\x26\x20\xc8\x7b\x14\x01\x49\xdb\xcd\x84\x3c\x9c\x2d\x6e\xd8\xf2\x54\xec\x3a\xaf\xe8\x9e\x16\xae\xc7\x37\xd7\xed\x1e\xcb\x3d\xc5\x6f\x85\xd3\x21\x87\x45\x0b\xa7\xae\x0c\x38\x71\x74\xbe\xe7\x24\xef\x36\xf1\x88\x6b\xfc\x6c\xfb\xf2\x51\x88\x2f\xbd\x39\x4a\x18\xa6\x3d\xe8\xf2\x86\x2a\x4d\x25\x75\x9c\xd6\x68\xfe\x3b\x2b\x69\x9b\xdf\xcd\xe1\xbf\x75\xe8\xb7\x95\xd3\x8a\xba\x54\xaa\x59\x66\xf6\xd1\x6a\xff\xfc\x81\xa7\xe9\x5e\x75\xec\x2f\x7d\x5d\x5b\xef\x64\x4d\xdc\xf0\xa1\x5f\x2d\x92\x55\xc8\x27\x77\x34\x7e\xbc\x5a\x88\xde\x84\x13\xb7\x29\xa7\x6a\x7f\x25\xbb\xea\xbc\x9f\xe8\x89\xbc\x9f\xd8\x5e\x8a\xdb\x3e\x92\xee\xc4\x0f\xf1\xf9\xb6\x8b\x87\xfe\xf9\x25\xe0\x5e\x86\x1e\xf7\xea\x9c\x3d\xef\xa9\x80\x7a\x51\x9d\xe2\xd7\x99\x89\xa4\x5a\xa8\xdb\xd5\x91\xea\xb3\xeb\x6d\xce\x81\x75\x6f\x79\xfd\xd4\x5f\x03\x8a\xce\xe9\x56\xb8\x32\xfc\xdb\xa1\x74\xc4\x7d\x15\xe4\x4e\xc0\x5f\xd2\x0f\xdc\x6b\x7f\xe8\xab\x15\xf4\x0b\xbd\x1a\x52\xaa\x1b\x92\x7e\x3f\x77\x64\x3e\x18\xae\xda\xde\xa6\xfe\xe8\xf9\xbc\x19\x12\xb8\x13\x74\x52\xd1\x60\x79\xbb\x42\x57\x3c\x18\x95\xf7\x84\x0e\x1b\xf8\x0e\xef\x20\xeb\xc4\x7f\x9e\x1f\x66\x0b\x43\x34\xa4\xa4\xff\xe9\x42\xe1\x23\x20\x8f\x4f\xa4\x93\xed\x4f\xac\xcf\xa1\x73\x66\xec\x2d\x1d\x26\x6f\x2c\xa7\xdb\x5d\x60\xf4\xc4\x12\xb9\xd0\x39\xe1\xf5\x93\x05\xad\xb7\xd8\x35\xc1\xa0\x07\x2e\x23\x92\x34\xc2\x59\xdb\xe2\x7c\x05\xaa\x71\x1e\xfb\x5e\x15\xb1\x26\x8a\xfb\x19\xe7\x74\xef\x6a\xd2\x60\xb8\x06\x6f\x88\xde\x22\xcb\x4a\x43\x25\xcd\xcb\x01\x7c\x14\x49\x36\x97\xf6\xd1\xbd\x2f\x8c\x72\x07\xe7\x84\x1d\xd4\x1a\xd7\x56\x19\x08\x67\x75\x22\x7a\x00\xc7\xca\xf8\x54\xe4\x97\x50\x0f\xfe\xed\xce\x7c\x68\xa9\x72\x39\xb6\x57\xf1\xdb\x7e\x23\xe5\xc3\x62\x2b\x3f\x41\x26\x83\x8f\x89\x69\x4a\x0e\x43\x60\x80\x55\x48\xdd\x88\x52\x13\xdd\x36\xfe\x63\xb0\xc7\x7d\x7f\xc2\x65\x7d\x41\x83\x57\xa4\x3b\x92\x15\x40\x25\x39\x69\x81\xcd\x54\x1d\x4e\x62\x2e\xef\x3b\xa9\x1f\x2f\xb1\xe3\x39\x0d\x15\x58\x94\xc3\xf4\x4b\xa8\x4b\xaa\x52\xab\x84\x6a\xf5\xbd\x45\x2d\xdf\xa5\x7e\xa7\x57\x66\x7e\xc1\x4e\xed\xea\x24\xed\xe6\x64\xe4\xfc\x3b\x1c\x80\x74\x2f\xd6\xe2\x09\x95\xe0\x97\x25\xbc\xaa\x8b\x89\x6e\xb8\xad\x52\x18\x14\x48\xd5\x79\x3a\x65\x69\x32\xdb\x4d\x20\x71\x43\xf1\xad\x28\x46\xce\xa6\xb5\x93\x0e\x1e\xce\x01\x60\x5e\xde\x20\x99\x34\x0b\xe8\xc5\x9d\x0a\xf3\xb3\x39\xd7\xc8\x5d\x07\xe9\x87\xbe\x5d\xe9\xc4\xe7\xe1\xb4\x6d\x42\x28\xef\x59\x01\x3a\x7a\xe2\x70\x13\xeb\xea\xb8\xee\x91\x76\xaa\xcb\x0a\x2a\x5d\xde\xa0\x02\x03\xcb\x1d\x8a\x80\x42\xc2\xd4\x04\xfa\x46\x4d\x13\x1e\xea\x53\x75\x05\x93\xf4\x4b\xa4\x96\xd6\x8e\x89\x91\xea\x23\xdc\x36\xf6\x98\x58\xe6\x46\x68\x66\x44\x4a\xd5\x60\xf3\x9e\xc7\xbe\xeb\xba\x98\x03\x45\x7b\xac\xfa\x6c\x1f\xb2\x2c\x58\x0f\xc5\xea\xbb\x17\xad\xa8\x19\xad\xc0\xbc\xf1\xfb\x29\x0b\x79\xca\xef\xfa\x5c\x35\x75\xea\xb0\xa0\xe5\x4b\x13\xcb\x8a\xc1\x8b\x5f\x8a\xd5\x14\x1e\xce\xc5\x2c\xc3\xcc\xf6\x71\xb1\x6c\x1a\x7c\x72\x54\xa0\x1c\x4f\x4d\x21\x4c\x98\xf3\x5f\x88\x1a\xd4\x75\x21\x41\xbf\x30\x47\xb4\xc9\x10\xef\xc3\xa7\x97\xef\xcb\x76\x2c\x8f\x4c\xb4\x73\x65\xa1\xae\xaa\xbb\x02\xae\x90\x1c\x01\xbc\xbf\x88\x2b\x6c\x49\x9c\x8f\x8d\xd3\xb2\x78\xf8\x26\xe9\x45\x46\x20\x02\x40\x09\x7a\x6e\x20\x5b\xb8\x15\xae\x70\x2d\xa8\xf1\xc7\x5f\xb8\x2f\x90\x3e\xd5\xe9\x4d\xf3\x32\x08\x86\x78\x89\x99\x60\x71\xa4\x31\xf4\x29\xbc\xbe\x53\xdd\x95\xc8\x64\x59\x56\x0d\xef\x24\x2b\x7d\xd4\x72\x24\x40\xaa\x3f\x31\x7f\x17\x73\x97\x1d\x78\x63\xf1\x0e\x47\x72\x63\x12\x2b\xa6\x21\xc5\x90\x78\xdb\x5c\x86\x1a\x60\x48\x00\xda\xf5\xc6\x6c\x6f\xa2\x03\xd9\x74\x2f\xf9\xc5\xc2\x8c\xc5\x89\xa4\x41\x70\xfc\x4a\xab\xd3\xf8\xf0\xf6\x89\xb7\xf8\x7f\x72\x5b\xc8\x00\x8c\x8b\xa4\xa2\xe9\xf7\x7f\x64\x26\xee\xa2\x17\x98\x6e\xf7\xe2\x37\x25\xd2\x8a\xe5\x91\xd1\xb7\x27\xe7\xf1\xb8\x32\xff\xec\x95\x1f\x3b\xa1\x33\x64\x86\x0d\x29\xe7\x68\xee\x3d\x07\xa7\xe3\xd3\x2c\x21\xae\x39\x62\x13\x00\xf1\x55\x91\x0a\x2c\x61\xb7\x9f\xd1\x4b\xaa\x17\x3c\xf4\xfd\x32\x41\x7b\x59\x61\xfe\x19\x99\xac\xe7\x22\xcb\x29\xbb\xcc\x40\x81\x12\x7b\x59\xbd\x5e\x22\x75\xdc\xfb\x70\xab\x2e\x90\x70\xa0\x68\xf0\xd0\x47\xac\x25\xae\x24\x81\x3a\x2d\x1d\xdb\xee\x38\xbd\x48\x06\x07\x97\x49\x8d\x6f\xab\x75\x81\x76\xad\x15\x9d\xfc\xe8\x7b\x7a\xdc\xfc\xa3\x44\xb3\x09\x3a\xbf\x5a\x04\xde\x37\x90\x36\xb9\x6b\x2a\xf8\x1d\xf1\x5a\xfb\x49\x98\xc4\x77\xc8\xb4\x7f\xfd\x5c\x30\xdc\xe9\x66\xe1\xf1\x6d\xed\xeb\xe7\x45\x27\x38\x54\x46\x8c\x39\x7f\x48\xb2\x94\x62\x99\x34\x0b\x68\x59\x72\x2d\xf4\x78\x31\xcb\x23\x1a\xba\x9d\x46\x36\xd8\xb0\x36\xe4\xb5\xa0\xf0\x54\xb5\xd1\x49\x0e\xd1\x90\x28\xee\xe7\xde\x07\xb1\xb0\xd6\x52\xed\x59\x6f\x5b\xe2\xe7\xce\x93\xb5\x64\x39\xc9\x23\xe6\x56\x8e\x38\xc0\x68\x79\x29\x2b\xf7\xb0\x76\x82\x44\x1c\x55\xda\x37\xd2\xb9\x6c\xa6\xe0\xed\x0f\x25\x67\xd1\xdc\x9f\xba\x1d\x5b\x5c\x1b\x6f\xf8\x6a\xf0\xf7\xa2\xbc\xd4\x49\xca\x9d\x4e\x50\xc6\x3f\xa7\x1b\x9e\xca\xe5\x34\x84\x72\x72\x6f\x87\xb3\xbf\x14\xa6\x75\xfd\x03\xa1\xc3\xdb\xa3\xac\x94\x60\x6a\x13\x06\x0f\x7c\x6b\x6a\x16\xf7\x19\xfd\x16\x63\xf2\x50\x59\x81\x49\x35\xca\x0d\x41\x75\x54\x72\xb5\x37\xea\x4a\x51\xe9\x21\xaf\x67\xc7\xd5\xd8\x2d\x0e\x1f\x5d\x89\xfe\x3a\xe0\x26\xbd\xbf\xab\xb0\x9c\x14\xb8\x70\x33\xbb\xa0\x5d\xbe\x46\xc9\x47\xe5\x2e\x47\x49\x79\x25\xe0\x08\x10\xb2\xdd\x84\x32\x07\x33\x85\xd1\x7f\xca\xd8\x06\x78\x31\xa3\x14\xeb\x65\x49\x8f\x05\xc3\x14\x78\xad\x3f\x53\x99\x2f\xc5\xd1\x70\xa7\xbf\xc8\xa5\x7a\x18\x82\x2f\xd5\x6d\x10\xff\x78\x5d\xa2\x33\xc7\xef\xdc\x80\x7f\xaf\x7f\xd7\x0e\x91\x94\x63\x78\xfa\x58\xc3\x0e\xd8\xca\x28\x64\xcf\x4d\xf8\xe6\xd4\xef\x12\x12\xfe\xe1\x19\xf8\x36\x06\xf3\x3e\xb5\x32\x41\x4d\x7b\xeb\xa7\x06\x37\x4a\x9e\x11\xe4\x45\x05\xc4\x49\x2b\x6c\xbc\x5e\x23\x13\x64\xea\x55\x54\xe2\xc4\x90\x24\x05\xf0\x23\x19\x49\x00\xaf\xd6\x5e\xb1\x60\x3a\x39\xd2\x95\xc2\x7a\xdf\xfa\xfb\x5e\x62\x59\xef\x64\xfa\xd9\x8d\xa2\xc7\xa6\x56\xc6\x15\x38\x7e\xe4\xcc\x75\x32\xd2\x63\xda\x4f\x6b\x23\x5b\x66\x2c\xf7\x15\xaf\x3b\x91\x81\x27\xe3\xab\xbf\x65\x9b\x4d\xc4\xcb\x0d\xc7\xb2\xb0\x86\xb6\xfc\x3a\x13\xc7\xb2\xee\x9e\x7d\xac\x73\xd8\xeb\x3a\x3f\xab\x1e\xb4\x7a\x60\x3c\x8e\x4f\xe7\x7d\x31\x00\x11\x1e\xf8\x1a\x81\x42\x30\x1e\x89\xa4\x18\x42\xb8\x1e\x82\x18\x78\x1f\x03\xbf\x94\x33\x01\x92\x10\x1c\xfd\xb2\x2a\xf6\xf5\x13\x66\x2a\xd2\xc1\x13\x38\x82\xaa\x28\xbc\x5d\x45\x81\x32\x5a\x26\xd9\xd6\x03\x30\x4e\x07\xdf\xfa\x21\xcb\x0e\x8e\xbb\x2f\xbb\x22\xd8\x65\x3c\x89\xce\xc7\xec\xd4\xa3\x84\xc3\x95\xa9\xcf\xea\xb8\x0f\xba\xb8\xa5\xef\x0b\xde\x90\x7d\xe5\x7a\xf8\xac\x06\x16\x11\xec\xfb\xa6\x03\xd2\x43\x20\xc8\x80\x43\x7f\x1e\xe8\x19\x2a\xe7\xe4\x3a\x30\x37\xf9\x72\x25\xe2\xc4\x8f\xc3\x7c\xb6\xf3\xae\x93\x3c\xd7\x3a\x1a\xc0\xd5\xc5\xf4\x9f\x69\xaf\x60\xf2\xf0\x47\x02\xf7\xfe\x2b\x86\x76\xac\x6b\x7e\x4c\xd4\x68\xf3\x0b\x45\xd0\xae\x81\x5f\x38\xdc\x4c\x0b\xe9\xd1\x6b\xcd\xf8\x1e\xd7\x28\x84\xd7\xd1\x3f\x79\x17\x0c\xf7\x78\xd3\x8d\xe6\x73\xc7\x97\x8c\x1c\x31\xc3\x96\x5b\x66\xb9\x4c\x09\x08\xeb\xfc\x10\xd6\xf9\x05\x8e\x68\x23\xa0\xb7\x41\xdd\x6f\xa0\x3f\xf6\xc4\x8c\x73\x62\x5d\x8a\xe2\xcb\x0e\xe2\xb8\x0f\x33\xca\x7e\x39\x9d\x2b\xcc\xbb\x8b\x0c\xd2\xe1\x91\xac\x14\x56\x73\x2d\x93\x7a\x5f\x24\xc7\x4c\x67\x83\xe7\xa5\x20\x89\x67\xd0\x02\x6a\xe1\x00\xf9\x72\xd6\x03\x65\x1d\xbc\xc5\x17\x5c\x2f\x1e\x51\x93\x1d\x95\x83\x77\x9d\x46\x68\xf5\x70\x84\x29\xf5\x09\xa7\xdc\xf2\x8c\xaf\xdd\x8a\xe9\xce\xf1\x96\x48\xe0\xb0\x10\x7c\x3c\x10\xc9\x1b\x95\x47\xc1\x8b\xf8\x09\x10\xe6\x34\x74\xd1\xad\x85\x36\x91\xbb\xfa\x61\x01\x92\x25\x39\x50\x69\x3f\x7e\xdc\x43\xa0\x0f\x14\x6a\x5f\xa5\xdf\x55\x8f\xcd\xc8\x41\xc7\x42\xb1\x2e\xad\x53\xe5\x01\x9b\x5f\x58\xbb\xc3\x32\xd9\xf5\x1a\xef\xb4\xc7\xc1\x02\x12\x5c\x85\x51\x4a\x1d\x2c\xc9\x72\x63\x77\x8e\x59\xaf\x71\x84\x6d\x63\xa1\xd6\x9c\x03\xe0\x83\xde\x02\x46\x43\xa6\x10\x52\x7a\xcc\x7c\xcc\x1c\xa4\x61\xd6\x87\xb2\x7b\x8a\x6f\xe0\x1a\xc3\xce\xc7\x8a\x96\x15\xbc\x27\xa1\xe6\x65\xbe\x9d\x2c\x12\x57\xda\x54\xd8\x26\x8c\xa5\x86\x66\x5a\x83\x56\x7e\xdd\xfe\x48\xab\xdf\x30\x17\x4c\xc5\xa7\x4d\x65\x5f\x6c\x1c\xfc\x24\x02\x8a\xc0\xb8\xcb\x31\x45\xa7\x24\x4f\xeb\xe0\x1f\xf3\xbb\x3a\xb1\xf8\x6e\x1d\xe3\xf0\x68\x8c\xb0\x00\x4c\x67\x6e\x79\xca\xec\x60\xbe\x3d\x63\x3e\x76\xb3\x81\x97\x71\xc3\x4f\x42\x03\xba\xd4\x6d\x70\xdb\x18\x8b\x61\xdc\x1c\x35\x1b\xdd\x63\x53\x0d\x55\x2e\x52\x3f\xdc\x77\x37\x9c\x9a\x72\x1b\x6f\x26\xed\x65\xc5\xcb\xd4\x1e\xda\xca\xbd\x98\x3a\xc9\x11\x51\xf2\xb1\x34\xc5\x18\x79\xf3\x3b\xd8\x21\x8c\x1e\xe8\xec\x9d\x30\x3c\x96\x0e\x2c\xae\x83\x1c\xa7\xc2\x6f\xf9\x76\x76\x97\xbe\xf8\x32\xc7\xb5\xd2\x0a\x98\x28\x79\xff\x47\x85\x78\x33\x0c\x66\xb4\x0f\x26\xfd\x8c\xa8\x5e\x6e\x3b\x43\x96\xdc\x76\x1c\x51\x7e\xe0\x43\x9f\x0b\xa0\xd6\xe2\xf0\x79\xe8\x35\xd0\x46\xb5\xde\x9e\xe6\xb7\x86\x47\xe5\xea\xb9\x6b\x22\x0f\x20\xcc\xa0\xe4\xfd\xa4\x5b\x7e\x9d\x80\xe6\xbb\x01\x4a\x55\x0c\xc7\xc6\xa6\x00\x7a\x44\xd2\x75\x97\x97\x2a\x63\x9c\x68\x40\x26\x7a\xb3\x40\x96\xcc\x56\xc6\x33\x89\xf7\x1d\xa1\x57\xd9\x52\x0c\xdb\x80\x92\xee\x56\x84\x6d\x40\x01\x5d\xb3\xa8\x85\xea\xf5\x87\xb6\x27\x10\xf2\x49\x13\x41\x4f\xbd\xed\x56\xa4\xc3\xca\x4a\x77\x39\xcc\xfd\xa2\xee\xcf\xa1\x35\x96\xdb\xc1\x99\x10\x9b\xf9\x2c\xb3\x30\xef\x2e\x11\xee\xe0\xb6\x50\xee\xe5\xfc\x0d\x12\x9a\xb4\x46\xfb\xfe\xb2\x4e\x4b\x88\xb0\xc4\x6f\x28\x47\x06\x18\xde\x21\x22\x69\xd3\x63\x07\xd4\x78\x3e\x85\x8d\x2f\xa6\x21\x5f\x1e\xc4\x93\xbf\x16\xc8\x35\x01\xd6\x5d\x88\x9a\x5e\x13\x31\x26\xd1\xf8\xc2\x24\x33\x38\xe3\x86\xc7\x53\xce\xcc\xa6\xbd\xf4\xe4\xea\xfa\x92\xbf\x4d\x5f\x4f\x29\x02\x09\xc9\x04\x7b\xd2\x43\xed\x3f\x79\xe5\x18\x57\x96\x48\x41\x31\x81\xb2\x59\xf2\xe9\x1a\xd8\xf3\x8a\xe3\xc4\x09\xe4\xd4\x6b\xc4\xd1\x1a\x98\x0f\x91\xce\x1d\x46\x1b\x6f\xfb\x2c\xf5\xe2\x9f\x2d\x5c\x7b\x4a\xb9\xa1\x63\x09\x3a\xdb\xd0\x63\xf2\xa4\x27\xc4\xe8\x86\xfb\x44\x30\x8e\xc1\xcc\xb6\xae\x83\xff\x17\x94\xaf\x63\x9b\x5a\x99\xaf\x84\xdc\x18\xbe\xbb\x04\x89\xd9\xf7\x34\x00\x34\x69\x08\x3a\xbf\xba\x53\x6f\xdf\x84\x90\xb3\x70\xe1\x03\x3f\xe8\x18\x89\xd3\x78\xd1\x21\xe0\x1e\x72\x0b\xa2\x7c\xfa\xa1\xa9\xa5\xab\x3f\x9f\x53\x0f\x66\x35\xc0\x29\x7c\x85\xc2\xa9\xeb\x07\x95\xd0\x39\x4e\x8e\x6e\x02\x79\xcd\x01\xe9\x8b\x94\xd5\x24\xe2\xb0\xcc\x50\xa7\x10\x8c\x9a\xc6\x2e\xd2\x03\x37\x52\x42\xd1\x87\x19\xea\x9c\x25\xc5\xf9\xfe\x25\x9a\x3d\x79\xb1\x8f\xe6\xb3\x6b\x22\x37\x15\x41\x7e\x91\xed\x3b\xed\x2b\x24\xe2\xd1\xaf\xc8\x43\xb8\x6e\xc4\xb0\x0b\x81\x9a\x86\x35\x5e\x39\xf7\x45\x17\x00\x00\x9d\x7b\x00\xc0\xfc\xca\x68\xac\xfb\x13\x2c\x55\x65\x9b\x5e\x78\x57\x7d\x20\x15\x1b\x9d\x34\x20\x47\x82\xf3\x9d\xaa\xa8\x6d\x81\x0c\xf0\xfa\x05\xde\x7d\xb5\xf1\x0d\x40\x94\xd6\xc3\x85\x87\x92\x90\x38\xb2\x79\x6c\x34\xae\x27\x09\x5d\x31\xeb\x16\xcb\xec\x78\x95\x3b\xd4\x78\xad\xcd\x00\xc2\x49\xb6\xcd\x0f\x05\x88\x10\x74\xb1\x81\xa8\xb4\xf9\xc5\xf8\x75\x9c\xa2\xf1\xd5\x9d\x5a\xa4\xdc\x79\x56\x9e\x5d\x19\x04\x10\x8e\x63\x8c\xba\x54\xbf\x62\x61\x8b\x4c\x04\xb7\x7d\x73\x35\x25\x46\x14\xa1\xb2\x5f\x88\x24\x96\x0b\x62\xeb\x4d\x7d\x00\x85\xba\x79\xb1\x99\x0d\xd5\x87\x77\xc4\x2f\x79\x72\x61\x7d\x3f\x03\x20\xa9\x79\x98\xdb\x39\x84\x5e\xb1\x2d\xfe\x00\x79\x77\x37\x5e\x47\xcc\x81\xc5\xf3\x2d\x10\x9c\x17\xb4\x86\x33\x3a\x47\x16\xfc\x1c\x4d\xbb\xdc\x79\x1e\xfb\x24\xf8\xf1\xfc\x9f\x8b\x18\x31\xaa\x31\xbf\x47\x9d\x68\x9b\x7a\x10\x06\x10\x2b\x93\x20\x8e\x0d\xfd\xf1\x18\x07\xba\xc3\x20\x18\xfe\x70\x5d\x29\x77\x20\x0a\xa6\x85\x7c\xc4\xb7\xc8\x98\xac\x8b\x7e\x67\x57\xa7\x49\x81\x40\xbb\x3d\x98\x60\xca\xe7\xc2\xc3\xcc\xbe\x3f\x8d\x77\x6e\x23\x93\xe1\x1b\xca\xe5\x99\xf6\x8b\x81\xac\x41\xb7\x48\xe1\x7d\xfb\x72\x3a\x4c\xb0\xdb\x4b\xaf\xf0\xfd\xb5\x26\x96\x90\xbb\x05\x75\x6b\xb5\x09\x60\x21\xdb\x55\xb2\xe8\x51\xea\x39\x2d\xc4\x09\xdb\x28\xe1\x91\x86\xd6\x40\x06\xc8\xb0\xa4\xaa\xab\x9c\xda\x44\x34\xfb\x9e\x43\x8e\xca\xfe\x1d\x0a\x5c\xd1\xa6\x2b\x00\xdb\x92\xb8\x32\x7b\x70\x6a\xa6\xc8\x20\x4c\xaf\xb1\x90\xaf\x6f\xbd\x0d\x3c\x6b\x02\x49\x50\x69\x1b\x7d\xf5\xd9\x7e\xe4\x01\x4f\xb1\xc9\x41\xb4\x3c\x58\x39\xce\xe3\x74\x81\x68\x67\x0c\x10\xe0\xf4\x1d\x3e\x79\x2f\x89\x1b\x45\x45\xdc\x26\x8c\x9d\xcc\x58\x11\xd9\x97\x1b\x64\x64\x28\x01\x04\x03\xea\x43\xb6\x6d\x4d\x42\xe3\x4e\x98\x8b\xdd\x19\xfc\x93\x79\x43\x9f\x95\x42\x61\x92\x4f\x32\xb7\xed\x68\x37\xaf\xb1\xf2\x07\xd5\x83\x00\x44\x7e\xa3\xa2\xcf\x2c\x81\x38\x6e\xe8\x4c\x3c\x34\xc4\xe7\xb9\x3f\x63\x61\xc3\x2f\x7e\xf0\x77\x73\x2b\x99\x25\x82\x57\x51\x03\xfb\xf0\x4e\x2a\xa9\xaf\x7d\xda\x7e\x69\xd7\xb9\xbf\x70\xe1\x81\x0b\x30\x38\x4d\x72\x5d\x22\x06\xaf\xa1\x05\xa5\xcc\x03\x2f\xdf\x6d\x2b\x43\xe0\xc3\xa6\x53\x42\x47\x64\x74\x7c\xcf\x12\x60\xb9\x7c\x05\x7a\x22\x84\xe6\xfb\xc6\xb8\x0a\x0b\x78\xc9\xc2\x6f\x51\x25\xd9\x06\xc7\x0e\xc9\xdf\xde\x39\xb4\x5d\x09\x4a\x42\x0a\x59\x19\xbc\xa7\x3a\x30\xe7\xa9\xd6\x65\xdb\x7e\xab\x6c\xae\x1d\xee\x81\x2c\x0f\x91\x74\xfa\x8c\x0f\xc8\x65\x44\x67\xe3\x00\x91\xc6\xc7\x60\x29\xf4\x2a\xe6\x58\x8f\x91\x6b\xee\x05\x8d\x58\x06\xa9\x95\xf3\x62\x9d\x38\x8c\xcb\xcf\x54\xc3\x76\xac\xbd\x59\xf0\x40\xf6\x2a\x9c\xf9\xb7\xb4\xfe\x17\x4e\xc2\x6f\x7d\xf2\x64\x17\x91\x8c\x4f\x1c\x08\x41\x3b\xa1\x13\xe6\x3c\x37\x74\x74\xc0\x77\xfd\x05\x01\xb2\xb4\x6b\xab\x09\x7b\x03\x69\x3c\x17\x6a\x29\x6d\x6e\xc1\x05\xc6\x10\xc6\x37\xc6\xd4\x84\x51\x6a\xa3\x36\xf0\x21\xaf\xb1\x69\xb0\x1b\xab\xed\x0e\x61\xea\x51\x54\x84\xba\x86\xf6\xee\x5b\x75\xd7\xc1\xd1\xc2\xec\x66\x49\x27\x48\xd4\x5f\x0c\x35\xda\xd2\x97\x94\xb4\x82\xb4\x1b\xba\x0d\x74\xee\x4f\x0d\x14\xb2\x8b\x08\x89\xb5\xd5\xf0\xba\xb0\xbd\x36\x9d\x08\x7f\x94\xac\xbb\x74\x62\x9c\xbc\xea\xac\xf7\xef\xc8\xc6\x00\x16\x14\x66\x83\xfc\x8f\xc4\x7f\xa4\xa4\x77\x9a\xd8\x09\xb1\x6d\x4f\x3b\x2c\x7a\xe8\xa9\xdb\x12\xe5\xdd\xef\x44\x7f\x8e\x6c\x31\x7b\xf5\xef\x03\x99\x59\xef\xb3\x72\xd2\xc1\x67\x9c\x58\x80\x73\x5b\xca\xb5\xb8\xbd\x0c\xef\x9f\x40\x01\xcf\x75\x20\x54\x18\x7f\x00\x03\xcc\xa2\x85\xc8\x0f\x52\x28\xda\x2c\x2a\x9a\xef\x7b\x86\x4f\x43\x85\x91\x59\xb6\x92\x13\xb4\x38\xbe\x93\xc9\xe8\x54\x17\x77\x95\x9f\x98\x67\x90\x64\x4f\xf6\xec\xca\x53\xd4\x5c\xc1\xde\x91\xd3\x56\x82\xcf\xca\x5a\x7a\x07\xcf\x73\x9d\xfb\xf0\x25\xce\x2f\x34\x09\x3f\xb1\xc2\x2c\x5d\x31\x20\x2d\x2a\x31\xd5\xb4\x17\x99\x0a\x1e\x2d\xa2\x5e\x46\x6b\xb0\x81\x9f\xbc\xdb\x74\x22\x8f\x42\x08\x3f\x1d\x70\xfd\x6e\xdf\x55\x2f\x72\xf0\x44\x4c\x85\x17\x4f\xa1\x3c\xfc\x23\x84\x6b\xd7\x73\xc9\x88\x51\x6e\xb2\xfc\x7d\xe9\x54\xc4\xc2\x29\xd7\x12\x7d\x75\xfe\xe2\x8f\xe6\x82\x31\xd6\x26\xbc\x0f\x38\x06\x3f\x77\x65\x55\xc6\xf7\x85\x42\x28\xfc\x37\xe8\x00\x92\xca\x69\x93\x0a\x29\x3d\x92\xa0\xd8\x16\x4a\x39\x6d\xec\xbe\x5e\x3e\x1c\x00\xde\x11\x48\x5f\x41\x1d\x46\x9b\x8b\xfb\x5d\xa2\xdd\xa5\xf8\xca\x63\x19\xb7\x88\xa6\xd3\x23\xb8\xad\x0b\xe8\x37\xcf\x3e\x71\xee\x48\x54\xff\xa6\xd0\xe7\xef\x14\x51\xa7\xeb\x7f\xe4\x87\xae\xd7\x75\xe3\x34\xdf\x11\x8c\xbf\x2a\x4b\xa0\xcf\xd4\x66\x7b\xda\xff\xbb\x4d\x70\x6d\x2b\x32\xe1\x0b\x67\x45\x13\x16\x6e\x36\xff\xcc\xf5\xbf\x02\x63\x4c\xdf\xba\x96\x68\xb9\x96\xbf\x45\xf8\xed\xa1\x02\x6e\x1c\xb5\x07\x5a\xd4\x94\xd3\xb2\xbf\x6f\xef\xf2\xbf\x12\x61\xff\x02\x6a\x1a\x0b\x21\x4e\x26\xe8\x93\x48\x22\x2a\x04\x64\xda\x1e\xfa\x54\x10\x22\xc3\x06\x8e\x97\x2a\x68\x9a\x0d\x5f\x63\x48\x54\x97\x72\xb9\x21\x0c\xbd\xbe\x7f\xb7\x8a\x6b\x24\xd7\xb9\xa0\xe5\xa0\x0e\x10\xc7\x5d\x50\x5e\x90\x63\xf6\x2e\x89\x00\x66\xae\x98\x57\x65\x0d\x7b\x97\x41\x55\x2e\x1e\x8d\x1c\x12\x42\xe1\x26\x88\x96\x7a\xd7\xeb\xc7\x1a\xe7\x85\xb8\x14\x50\xd9\x86\x35\x8a\xf1\xcb\xfd\x3a\xd6\x2e\x03\x66\x67\x2b\x31\xe3\xc7\xaa\xe5\x77\x06\x5d\xf4\x4f\x98\xbc\x3c\xbe\xfb\x87\xbc\xbe\xab\xc0\xa1\x15\x90\x35\x53\xc3\x97\x5c\x20\x1a\xc5\x05\xa9\xd9\xd4\x35\xbf\xa5\x1c\x92\xd2\x61\xbb\xba\xf6\xa7\x8d\x38\xa7\xbc\x50\x4a\xb9\x9c\xac\x81\x7b\x2c\x61\xa8\x7d\x7d\x55\x53\xfe\xd4\x89\xb8\xde\x1d\x1d\x0d\x7e\xab\x36\xac\xb4\x1a\x19\x8c\x43\x07\x17\x15\xd7\x20\xc5\x55\xaa\x3b\x3f\xe1\x04\xf9\x62\xb5\x81\x00\x3b\xae\x4f\x9f\xc4\x33\xf8\xc5\x15\xd2\xac\xf4\xbf\x38\x7b\xce\xda\x5d\x5b\xf6\xd9\x1f\xaf\x25\xdc\xfe\x7b\x3b\xb0\x0c\x06\x08\xae\x3e\x8c\x84\x04\x01\xc4\xca\x81\x90\x0b\x89\x63\x6d\xc8\x5b\x65\xcc\x37\xdf\x2a\x42\x1c\x48\xdd\x20\x0f\xe6\xf1\x52\x4d\x91\x79\x47\xaf\xf0\xa9\xe9\xac\xb2\xa9\xaf\xee\xc4\xb0\x69\xc0\x36\xdc\x19\x16\x39\xe4\xae\x21\x33\xe9\xe0\xa8\xee\xb7\xe1\xf0\xb8\x42\xcf\x11\xa7\x2e\xf5\xdd\x48\x80\x97\xc5\x8e\xf4\x73\xc1\x12\x6a\x65\xd6\x8a\x1a\x34\x18\xbe\x51\xeb\xfe\x4d\x24\x34\xa0\x0f\x03\x0e\x2e\xfa\xee\xa2\x03\x3b\xe6\x27\xe3\x38\x90\x3e\x0f\x65\x10\x1c\x57\x79\x0e\x10\x00\x2f\xa2\xda\x9a\x7f\xab\xdd\x7b\xff\x2e\x30\x31\x7a\xc1\xce\x63\x11\x15\x55\x2a\xfa\x91\x95\x6a\xfd\xe8\x6b\x47\xeb\x17\xc7\x9e\x7a\xe5\x7d\x14\xbe\xfd\xca\x98\x3a\xde\xae\x76\x11\x4c\x1a\x17\xfc\x59\x07\x9c\x87\x49\x2f\x59\x5f\xe5\xb3\x19\x2e\x99\x2c\x80\xb3\xf0\x22\x64\xd8\x10\xf7\xfc\x21\x58\x3b\x0d\xf3\x3a\x7e\x94\x69\xda\x9c\x13\x1c\xf0\xd9\xa3\x36\x49\xcb\x5c\xc5\x78\x48\x59\x52\xf5\x67\xd9\x73\xe6\x94\x00\x26\xcd\x02\xd2\xe7\x69\x38\xab\x72\x6c\x20\xcb\x37\x7d\x21\x5c\xbb\x8f\xd7\x82\xba\x03\xbc\x2e\x1f\x6d\xab\x06\x70\x9f\xa6\xff\xe0\xdb\x88\xca\xcf\xe5\x32\x94\x93\xb5\x51\x76\x17\xb5\xb9\x35\x54\x3b\xb9\xd9\x40\x13\x4f\x62\xfd\xc2\x02\xac\x4d\xdc\x5c\xb2\xb9\xb4\x97\x39\xf6\x3e\x7f\x21\x6f\x4c\x74\x01\x5a\xa1\xae\xb4\x8b\x7a\x45\xad\xc8\xf8\xca\x3a\x50\x9b\x3d\x8c\xf2\x20\x04\xd4\x11\xe8\x37\xe2\xbf\xc2\x8a\xbb\xd0\x63\x26\xb3\xbf\x6b\x85\xce\xbd\x70\xea\x6b\xed\xbc\x6f\xaa\x3c\xed\xe6\x9a\xd2\x56\x8d\xff\xb4\xc2\x49\xdf\x21\x01\xe7\x98\x47\x5a\xcf\xd5\xb1\x50\x00\xaf\x80\x51\xe6\x60\x8b\xb4\x80\x8d\xb4\x80\x0d\xbc\x08\xa6\x57\x38\xbd\xcc\xc1\x16\xfc\xb2\x8d\xc7\xd7\x5a\x2b\x2b\x77\x15\xa6\xb3\xb8\x1f\x3e\x6b\xed\x93\x6c\x14\xbd\x06\x16\xdb\x33\x44\x02\x53\xbd\xbf\xb3\x80\xe9\xa3\x98\x3a\x62\xa4\xa9\x3a\xb8\xb7\x97\x16\x25\xfd\x4f\x0b\x2c\x9b\x53\x2c\x9d\x86\x30\x97\xbf\x50\xd4\x28\xc3\xc4\x05\x0e\xe2\x33\x3f\xc3\xc1\xbd\xe1\x6b\x02\x72\x9d\xda\xbb\xb0\xe3\xa3\x7f\x5b\x39\x28\xb1\x4f\xa4\x8f\x80\x99\x13\xe6\xde\x12\xf5\x86\xc9\x10\x0b\xf2\x66\xe0\xe3\xd9\xf5\x06\x65\x2a\xcd\x8f\xe4\xaa\x82\x86\x67\x42\x94\xc5\x8e\x4b\xa9\x02\x47\x60\x04\xe8\xbe\x63\xa5\xfa\x31\x60\xa6\xcb\xd0\x4e\x97\x21\xd0\x2c\x81\x6c\x55\x62\xbe\xd4\x3c\x4c\xa0\xa9\xc0\xa5\x6e\x39\x0f\xee\xde\xa2\xdf\x37\xa3\x9e\x95\xf1\xcd\xa0\x13\x14\xd4\xeb\x75\x51\x11\x21\x59\xc2\x20\x09\x20\x6c\xb8\x93\x34\x7e\x14\xfc\x20\x62\x4f\xaa\x79\xa7\xe4\xe6\xf4\xc2\x21\x3e\xe1\x68\x95\xdc\x29\x90\x7d\x3b\x89\xbd\xda\x45\xff\x4b\x84\xc7\x12\xd7\xd6\xba\x4a\x6d\xb1\xc6\x42\x42\xca\x8a\xe2\x86\xae\x59\x7e\x9c\x81\x07\x12\x1b\x4e\x13\xe8\xcb\x09\xa8\x1b\x17\xd7\xcb\xa4\xec\x43\x1c\x5c\x56\xed\x8d\xac\x58\xc1\x92\xfc\x32\x69\x7b\x16\x73\x71\x7a\x3c\xbf\xe9\xda\xdd\xd7\xa2\x55\xff\x4c\x85\xcb\x74\x1a\xd4\x58\xd6\xdb\xb0\x9c\xf8\x14\xf6\xfc\x8d\x9e\xc0\x9d\x73\x0e\x1c\x60\x73\x2c\x38\xb5\x94\x93\xcd\x02\x43\x16\x5f\x37\xb1\x60\x60\xbb\x80\x3a\x5e\x8b\x66\x91\x99\x49\x77\x76\xb8\xf2\xf1\xf8\xfd\x56\x6b\xc9\x15\x85\x7f\xf1\x60\x3c\x15\x1b\x6e\x4f\x35\x67\x03\x69\x07\x6d\x3b\x8c\x4c\x2d\xdf\x7a\xff\xbe\xc3\x92\x69\xc6\x07\x04\x6c\xb4\xc1\x22\x1e\x80\x08\xfe\xc8\xf3\x40\xb3\x22\xba\x04\x2a\x06\xbe\xf4\x3e\xf6\x78\x1b\x5b\xcd\x71\x4b\xc1\x30\x76\x72\xf6\x14\xc6\xf1\xa2\xb8\xf5\x60\xa5\xc8\xb8\xb7\x9c\xc1\x4a\x5c\x9a\x16\x2a\xf4\xdb\x69\x3f\xba\xfc\x8f\xb3\xd1\xc2\xfe\xb8\x24\x6f\x91\x58\xe6\xd1\xcb\x51\x3f\x2e\x79\xf8\x98\x94\xa7\x0a\x66\xbd\xf5\xe5\x79\x12\x27\xe3\xab\x29\x6e\x99\x97\xe8\xa1\xcc\xe1\x94\xb8\x72\xfa\x43\xf4\x58\x30\x72\x4c\x04\x1c\xdc\x03\x7a\x11\xec\xfe\x97\xe5\x41\x4a\xb9\x30\x7b\xcb\xe2\xef\x8e\xa1\xfc\x7d\xff\xdb\x81\xbf\x3b\xeb\x2a\xc3\xdd\x8b\xe8\x2c\x8f\xe8\xe5\x3b\x54\xf8\x68\x6c\x08\x66\x14\xc3\x72\x37\x08\xa0\x02\x6f\x43\x1c\x5c\x30\xb9\x9d\xd4\xa2\x2c\x9c\x55\x09\xd6\x11\x78\x32\x69\x7b\x0c\x58\x1d\x96\x96\xfe\xa7\xac\xa5\xe0\x1c\x7d\x0e\x6c\x80\x3b\x31\x56\xbd\x3f\x4e\x34\x4c\xec\x8e\x68\xfd\x64\xa8\x52\xd5\x3d\xee\xb7\xa5\x7b\x6d\x12\x43\xfa\x68\xd6\xe9\x11\x33\x24\x84\x05\x2d\xdb\x6c\xa4\x47\xd5\x96\x8d\x41\x27\x63\x5c\xcf\x01\xd0\x19\x92\x71\xfa\x56\x19\xdd\x86\xf2\x16\x18\xcd\x86\xf9\x30\x3a\xc4\x1f\xa8\x6b\x63\xff\xaf\x0e\x73\x49\xb4\xba\xd6\x4d\x42\xbf\xdc\xa8\x1a\x8f\x13\x2c\xa9\x06\xda\x25\x47\x1f\xb3\xf1\x12\xd3\x61\xa6\xfb\xf3\x5a\xbe\x9b\x0f\xf3\x17\x14\x30\x8c\x85\x8e\x07\x7f\x66\x30\x8f\xfd\xf0\x0a\x9a\xcd\x4c\x38\xcc\x00\x50\x38\x17\xe4\xdd\xd5\x6e\x90\x9f\x8a\x85\xdf\xfe\x91\xb9\xf9\xc3\xf5\xbb\xd6\x7f\x7b\x79\x59\x69\x2e\x7a\x7a\x5c\xa7\x9c\x1e\x13\xc5\xfc\x5d\x9d\xd2\xf9\xdc\xe5\x42\x11\x6f\xb7\xf2\x68\xd5\xf3\x3d\x10\xf3\xe3\xa3\xcb\xc3\xb8\xce\xc1\x64\x98\xff\xd5\x54\x81\x7c\x6b\x79\xe3\x8d\x47\xc7\x98\x37\x23\xfa\xa7\x98\x1f\xc2\x6b\x86\xa6\x8c\x8d\xbc\xbc\x8b\xe6\x2c\xdf\x5e\x7b\x59\x2c\x71\xc6\x21\x51\xeb\xee\x2a\x9e\xfd\x3c\x53\xb4\xba\x27\xfe\x30\xd0\xd8\xb6\xd9\x8d\xc9\x89\xc6\x3f\xbc\x4d\x32\x21\x87\xed\xae\x10\x78\x33\xa5\xe5\x45\x60\x46\xe8\xbc\x6d\x71\xc4\xdb\x95\xc9\x17\x97\xf9\xce\xe2\x5d\x3c\x7b\x52\xee\xbd\xd2\x59\xe5\x19\xb4\xfd\x06\x32\xcd\xdb\x83\x05\x84\x98\xf3\x96\x50\x57\x39\xec\xdb\x68\x43\xf1\xdb\xda\x56\xa9\x5e\x30\x86\xd1\xea\x39\x67\x84\xa0\x94\x50\x39\x4d\x4d\xac\xc9\x6e\xa1\xd0\xb6\x6a\x11\x94\x02\x02\xaf\x75\x98\x16\x78\xa7\x9d\x7b\xd3\xa2\x59\xe8\x56\x8c\x5f\x26\x8e\xa4\xf6\xe3\xb2\x7c\xa7\x18\xa0\x42\x58\x10\xda\x14\x94\xd2\x74\xd5\x2d\x7d\x59\x67\xfa\x42\x4b\xa2\x9a\xe9\x0f\xce\x97\xb5\x63\x5d\xa0\x19\x82\x40\x92\x48\xaa\x4e\xfb\x85\x42\x2e\x4a\x1f\x05\x73\x49\x80\x33\x25\xed\xa8\xec\xfe\x7f\x04\xac\xf8\x7b\x04\x9a\x02\xb7\xe9\x69\x11\x15\x10\x6c\x82\xd0\x7c\x78\xb1\x69\x89\xe0\xe6\xdd\x9f\x3e\x10\xc2\x15\xf3\xeb\x1f\x8e\xe3\x17\xd0\xa9\x91\xec\xa5\x28\x9f\xca\x78\x27\x71\x9f\x18\x81\xa3\x95\x74\xbe\xab\x1c\xed\xdf\xe7\x04\x52\x48\x39\x20\x87\x44\x41\xb2\xab\x31\x80\x12\x49\x08\x54\x1d\x99\xa1\xe6\x0e\x67\xd7\x6f\x97\x66\x85\x7e\x94\x9c\xd1\x16\x71\xfb\x52\xbb\x86\xca\xb8\x99\x4f\xe5\x91\xd3\x11\x37\x76\x8d\xe1\xf5\xb3\x70\xa6\xc9\xb4\xc6\x0a\x16\xaa\xea\xe2\xef\xf9\xf9\xbe\x7e\xdf\xe2\x6a\x99\x7b\x57\x59\xd4\x50\xdb\x23\xd0\xd6\x6a\xb7\xba\xa6\x4a\xf5\x9a\x8c\x79\xf5\xd7\x52\xaa\x6e\x85\x09\x51\x53\xdf\x63\x44\x09\x18\x81\x8f\x5b\x13\x54\xd5\x58\xa3\xa6\x53\xd1\x47\xd8\x8d\xd3\x50\xe4\x6b\xa1\x60\xef\xc5\x65\xe9\xa3\x33\xba\x24\x66\x33\xd3\xb1\x20\x1e\x38\x53\x6e\xfc\xec\x8a\x9d\xc0\x73\x75\xbe\xd6\x6e\xb9\xe5\xd9\xe7\x90\x3b\x21\x5c\x9e\x54\xf9\x35\x2a\x79\xcf\x20\x65\x5b\x0a\x52\x6c\x2a\xf2\xa8\xe0\x3a\xfc\x88\x33\xc3\xa9\x17\x1e\xe0\xb1\x8e\x8a\x43\x57\xe8\x65\xea\xf9\xa1\x32\x80\xc3\x76\x99\x97\x52\x9d\x59\xa0\x59\xc4\x5e\x0a\xa9\x0b\x2b\xd7\xc8\xa0\x23\x94\x47\x11\xe3\x39\x01\x0e\xf2\xa5\x8d\x99\x2e\x47\xbe\x9f\xf3\x1e\xf6\x9f\x11\x4c\x3d\xe3\x5e\x93\x05\xd8\x30\x24\x0b\x9d\x27\x9f\xca\xa5\xe0\xe4\x74\x8f\xe2\x37\x11\xd3\x04\x9a\xf1\xce\x29\x6b\x1b\x97\x22\x9b\x93\x5e\x9f\x9f\x7d\x3c\xc3\xf9\x79\x5d\x93\x6d\x4d\x74\xdb\x9b\x16\x61\x4a\x0f\x1b\x66\x90\x7c\xba\xc7\xcd\x03\x01\xe8\x30\xe9\xcc\xa3\xc6\xf1\xbb\x77\x36\x88\x6f\xf7\xb4\x94\x3d\x3d\x72\x4b\xad\x7e\xda\x55\x69\x6b\xea\x95\x15\x6b\x60\x1f\xce\x88\x69\x8d\x1a\xb7\x78\x52\xd0\x58\xab\x1e\x32\x3c\xa0\xf0\x22\xf7\x94\x64\xff\x36\x3f\xf2\x9e\xd7\x7e\x70\x5b\x47\x8b\x18\xc6\xfb\xe6\xa9\x79\xff\x5e\x9b\x73\x4f\xbb\x7e\x46\x0f\xc8\x5a\xef\x5a\x2d\xb2\x98\xa6\x96\xf7\x7f\xb0\x2e\xae\xd2\x8e\x9f\x33\x91\x77\x13\xcb\xa5\xd5\x51\x1e\x3d\x6b\xe9\x2c\x47\xea\x62\xe7\x02\x37\x02\x83\x3e\x58\x80\x64\x76\x59\x1f\x81\x22\xf3\x65\xb8\xb4\xf3\x47\x33\xce\xbd\x97\x7f\xba\xce\x9f\xb1\xdf\x7b\x72\x1f\x1d\x48\x7e\x66\x88\x52\x03\x7a\x20\xd9\x60\xc8\x36\xd9\xa5\x63\x0c\x7f\xef\xbb\x8e\x04\xc5\xdf\x60\x31\x39\x23\xaa\xf4\x7b\x37\xa3\x55\xdc\x94\x58\x96\xec\x2d\x9d\x4d\x12\x63\x0a\x0f\xca\x4a\x53\xd0\x89\xb8\xeb\xa3\x11\x00\x84\x3e\x0e\xc9\xb2\x79\x40\xdc\x9f\xef\x4d\x59\xe2\xde\x98\x0c\xb1\x1f\xb2\x64\x70\x45\xb5\xc5\x50\x25\x51\x84\x0b\x8c\xb3\x3a\x22\xb8\xf8\x2c\x79\xb6\x4b\x97\xd3\xf9\xc4\x1f\x6d\x0a\x1f\x8e\x36\xd8\xcf\x41\x72\x5c\xfe\x48\xf0\xbd\x09\x82\x97\xb9\xa8\xe4\xd2\x8f\x8e\x5e\x2f\xf1\x65\x85\x98\x92\xdf\x65\x87\xca\x01\xcf\xcf\x8f\xe3\xd9\x25\xe4\xa6\x3d\x30\xe6\xd5\x7f\x41\x39\x4a\xf0\xb4\x09\x23\x17\x66\xcb\x77\x50\xca\x81\xe2\xe7\xae\xef\x3c\x84\x8e\x26\xd9\xb6\x47\x07\xf7\x69\xb5\x70\xaf\xea\x1d\x28\x80\x9a\xad\x3c\x11\xd4\x7c\xe7\xc5\x71\x39\xf9\x14\x32\x6c\x6e\x33\x3d\x52\xe0\x9a\x02\xf3\x5d\x22\xbb\x78\x66\x65\x61\xc4\x4b\x01\x6a\xcb\xa8\xaf\x75\x71\x5f\x47\xb4\x65\x37\xf2\x00\xa0\xc6\x31\x47\xf9\x90\x0c\xb8\xb0\x95\xc9\xd2\xe7\x2e\xd6\xd5\x82\x46\x2b\x0b\xd6\x2a\xba\xbf\x17\x35\xf7\xfb\x93\x58\x25\x94\xa3\x4d\x70\xed\xf8\x16\x30\x2e\x25\x6d\xdf\x25\xb5\xa0\x0f\xfe\x44\x79\x79\x4f\xf5\x6d\x08\x57\xda\x33\xe8\xfd\xd4\x53\xd1\xa0\x28\xa7\xb8\x6d\x67\x44\xb1\x4d\x5d\x25\x1b\x52\xdb\x28\xc6\x41\xa6\xe4\x5e\x74\x68\x7f\xfa\x3b\xd4\xcd\x35\x16\x7b\x79\x83\x4e\xbd\xf6\xc0\xe4\x5a\x43\x47\xfb\x57\x43\xd2\x9f\x3f\x67\x7c\x6e\xe9\x8c\x0e\x16\x92\x54\xae\x6f\x70\x71\xfc\x01\x9a\xdd\xe7\x66\xa1\x9a\x9a\xdb\x53\xde\x43\x73\xee\x31\x02\x12\x68\xab\xc2\xb3\x65\x68\x44\x22\x0f\x07\xc7\x52\x50\x63\x1b\x8f\x4c\xd3\xe5\x31\xf4\xb1\xdd\x0e\x62\x8b\x72\xfb\xfd\x80\xba\xaf\xfa\x5f\x9d\xd9\x7e\xf4\xb8\x5f\xa5\x96\x16\x9a\x63\x3b\x66\x86\xef\x75\xed\x2a\x49\xd3\x68\x5c\xd7\xa8\xcb\x62\x0f\x8f\x95\xdd\x99\xf4\x3c\x53\xd0\x61\x41\xf5\x0e\xe4\xef\xb5\x5f\xe1\xf9\xfd\xec\xe0\xf2\xbc\xec\x8d\x90\xe2\x3d\xae\xcc\xdd\x5c\x46\xeb\x49\x6d\xef\x2f\x09\x13\xb6\x12\xbf\x5f\x6a\x0f\xf6\xc8\x19\x58\x33\x66\x60\x3e\xfb\x52\x3b\xf4\xa7\x9d\x8b\x81\xeb\xe9\xf4\xc7\x1e\x8e\xbb\xc7\x91\x3e\x61\x68\xc0\x05\x98\x90\x1f\x73\xd5\x2d\xf7\x23\x90\xf3\x9e\xd0\xe3\xee\x8d\x54\x53\x5e\x83\xbb\x35\x5d\x09\x35\x40\x1e\x90\x18\xd1\x94\x5d\x61\x5d\xca\x3a\x6a\xf3\x1c\x5c\xf6\x1c\x51\xee\x00\x6f\xb7\x21\xab\x84\xe4\xc7\x05\xa6\x3d\x63\x49\x84\xb0\x90\x17\xe8\x85\x65\xb1\x70\x7f\xb7\x3a\xbe\xf9\x8d\x09\x2a\x29\xec\x8b\x5c\x64\xbf\x35\x96\xeb\x16\x9e\xad\xf3\xed\x8c\x5b\x21\xde\x74\x3e\x6f\xe9\xbd\x47\x1b\xbe\xca\x2d\xb4\x27\xc4\xe0\xda\x73\xf0\x10\xfb\xe4\x78\xd4\x9d\x39\x5c\xf5\xd6\x35\x78\x68\x80\xdc\x15\x07\x52\xd9\x53\xa0\xc9\x43\x5d\xfa\x9c\x50\x2e\x43\x9d\xb0\x5c\xa6\xfe\x7d\x5f\xa9\x51\x68\x43\xba\x9d\xed\xfd\x11\x8a\x7a\xe3\xfc\x19\x41\xad\xaa\xc3\x0b\x2d\x64\x11\x27\x85\xf2\xb7\x63\xe8\x43\xd6\xd9\x93\x42\xa0\xf6\x40\x58\x8a\xb9\x48\xae\x0e\x89\x0f\xdc\x75\x97\xdd\x0c\x70\x96\xfc\x92\xc8\xfe\x35\x20\xa1\xcd\x26\xbe\x12\x90\x8e\x66\x5f\xf9\x58\xc0\x49\x98\x2d\x6f\x60\xc5\x6c\xd7\xd7\xbd\x54\x5f\x6d\x39\x50\xfa\x93\xf2\xb4\xe5\xa0\xac\xf5\x7a\xde\x74\x69\xf5\xd8\x32\x07\x8c\xf0\xcd\xcb\x19\xf6\xdd\x50\xbf\x63\xad\xa6\xd8\xe2\xb1\x0a\xd6\x31\xab\xec\x40\x36\x78\x0f\xa9\x2b\xe5\xde\x18\x0d\x24\x68\x90\xc9\x45\xcf\x4c\xfc\xf1\x5b\x74\xb7\xe2\xdf\xc9\x49\x40\x48\x29\x63\x10\x8a\x19\x75\xc0\xc2\x1b\x04\x10\x68\x57\xb3\x77\x84\xff\xd2\x22\x9e\xa4\x60\x58\xb3\xbd\xb2\x9e\xed\xe0\xfd\x28\x8c\xe5\x43\x5f\x4c\x66\x86\x74\x80\x7d\xd3\xef\x8f\x63\x7d\x1b\xbe\x98\xf4\xc2\xcd\x81\xdc\xab\x37\x9a\xb1\xfc\x3b\x7e\xe2\x8b\x06\x6d\x45\x52\xbf\x14\x2e\x8e\xc9\xaf\xab\xad\xd7\xc6\x64\x60\x9a\x95\x8a\xe0\x44\x42\xc1\x12\xec\x17\x61\xfa\xd1\x3f\x86\xce\xf2\xd9\xcf\xe5\x87\x58\xc2\xec\x95\xd3\xd2\xf8\x37\x7f\xa5\x44\x3e\x09\x8f\x10\x48\xb4\xd0\xce\x7d\x87\x05\x54\xe2\xd5\xbd\x08\x4b\x15\x34\xd7\xd1\xce\xdd\xf2\x1e\x1a\x3e\xee\xce\x68\x66\xff\xfd\x54\x6e\xb8\x47\x9c\xe5\xc0\xf0\xd6\x37\xd7\x51\xb2\x7e\x6b\xe5\x07\x80\xf5\x2f\xee\xf2\x08\xfa\x38\xdf\x60\xec\x73\xba\x35\xd5\x95\xad\x3c\x55\x40\xfb\x24\xf8\x47\xf4\x1e\xea\x2d\x6c\x32\x45\xb9\xd5\xd7\x45\x55\x51\x9e\x9c\x79\x45\x5c\xf3\xc1\x83\xfb\x88\x9c\xce\x08\xf7\x3a\x83\x1c\x9a\x7b\x73\x13\xa9\x8e\x05\x4c\x26\xb0\x17\x9a\x78\xc4\x3d\xb4\xfc\x2b\x7e\xf8\x40\x26\x73\xee\xf4\xaa\x03\x89\xb7\x0d\x51\x34\xd8\xc4\x19\x71\x64\x81\xa5\x9f\xa0\x27\x2e\x0b\x07\x30\x56\xa2\x03\x94\x33\x89\x27\x77\xd6\x72\x60\xda\x8c\x74\xd8\xc0\x10\xcb\xa2\x33\x9f\x10\xf6\x83\xdf\x15\x45\x87\xe4\x84\x51\x46\x0c\x55\x92\x7d\x87\xbf\x71\x06\x10\x75\xb3\x4d\x4a\x18\x68\xc6\x39\x52\x54\xee\x9c\x44\xd1\xe9\x55\xa8\xff\x8f\xa0\xe5\x0d\x4f\x1f\x8b\x29\xd5\x55\x58\xb4\x28\x0c\x24\xf0\xe4\xc6\xd7\x56\xa5\x91\xe8\xbe\xf6\x28\x2b\x99\x8b\x7f\x8d\x68\x55\xad\x76\xfc\x71\xe5\x27\xa9\xc4\xb5\x21\xfa\x93\x31\x46\xee\xd1\xb0\xd6\x47\xfc\xb2\x29\xf2\x34\xd3\x61\x3d\x32\x00\xa2\xe1\xf8\x94\xa5\xbf\x26\x8b\x71\x15\x72\xd4\x98\xd2\x00\x03\x6d\x95\x9d\xe3\xa4\x5d\x93\x1d\x10\x78\xa2\xd7\x8e\xef\x66\x94\xf1\xf6\xbe\x12\x75\x18\xa1\x39\x00\x1b\x56\xfc\xf9\x45\x4e\x55\x0d\xbf\xb8\xb2\x7e\xf4\x01\x5b\x10\x92\x24\xaf\xe1\xe6\xcc\x45\x1d\x35\xa8\x9b\xc5\x54\x82\x14\x36\xf4\x2e\xf9\xa1\x86\xf6\xda\x34\xfd\xa0\xe9\x11\xa1\x01\x6e\x64\x13\x57\x5e\x53\x85\x87\xfb\x6c\x98\xef\x5d\xde\x56\x9d\x6d\x98\xe3\xfa\x91\x0c\xa9\x33\xbc\x8f\xa3\x6d\xad\x8c\x2d\xd2\xa1\xb8\xf3\x6b\x11\xb2\x2c\x95\x72\x5f\x58\xb5\xf6\xdf\xa4\xfb\x3e\xf8\xf3\x8f\x59\xe3\xc5\xaa\x83\xf0\x8b\x30\xfd\xa4\xae\x01\x5e\xba\x4f\xd6\x10\x3a\xc9\xb8\xbd\xbc\x84\x23\x33\x8a\x79\x51\xcb\xb0\x56\xc0\x52\x65\xf5\xf1\x72\xa5\x22\xf7\x93\x25\xe8\x9b\x7e\x1a\xf3\x35\xa7\xfe\xbf\x97\x51\xed\xcf\xaf\x6e\xa3\x45\xcb\xc3\xbf\x46\xb8\x8e\xb3\xd6\xbe\x3a\x35\x58\xbe\x13\x03\xcc\xf3\x1d\x41\xc4\xbf\xfd\x30\x0d\x30\xe5\x3c\x3c\x5f\xd3\x9b\x06\xf8\xb8\x79\x7f\xba\x56\x7e\x02\x00\x16\xd3\xf2\x6f\xa4\xb4\x7e\x3b\x6f\x3e\xeb\xcd\x3a\x1e\x13\x3d\x23\x3f\xcd\x50\x9e\x55\xd1\xce\x4d\xd7\x0e\x72\x98\x0f\x3c\xe4\xc5\x14\x3e\xba\xcf\x8c\xc9\x1f\x75\x3f\x24\x9b\x94\x01\x1e\x9b\x43\x54\x12\x49\x5a\x1a\x1f\x03\xb8\x9d\xa8\x81\xc9\xef\xf4\x85\xc8\xaa\xb4\x9b\x47\x25\xed\xab\xc0\xd5\x4a\xc9\xe2\x88\x6c\xd1\xd4\x99\xc7\x2d\x45\xbb\xb0\x9d\xf7\xe1\xeb\x6a\xba\x6a\x69\xef\x53\x21\xad\x2b\x5f\x7d\x8c\x6d\xae\x3d\xd9\x80\x1c\x9f\x2d\xf9\xb3\xf5\xfe\xe6\xab\x11\x0a\x68\xb6\x68\xdb\x3e\x11\x66\x87\x9a\x88\xe5\x3b\x09\x4f\x73\xc6\xd3\xa5\x7a\xe5\xb8\xca\x15\x69\xbd\x60\x9f\x91\x6e\x49\x43\x6c\x92\x8e\x20\xea\x4b\x29\x4b\x6b\x19\x10\x55\x90\xef\x42\x8b\x3f\xdc\x6c\xaa\x9b\x7d\xb8\xfd\xe9\x85\x20\x95\x34\x6f\xd6\x1b\x0f\x90\x3f\x65\x8e\xed\x3e\xdc\x54\x2f\xa6\xdc\xd0\xf9\xc1\x7d\x96\x55\xec\x2f\x2f\xd8\x5a\x40\xc6\x81\x9c\x72\x8b\x07\x64\xb0\xb8\xde\xfe\x3a\xbd\x55\xa9\x95\x40\x1d\xec\xcf\xe5\x9f\x9f\x80\x20\x9b\xc4\xfa\x92\xeb\x8c\x49\x81\xc8\x38\x1e\xf3\xbb\xf1\xfb\x3f\x92\xcc\x82\x2b\xea\xef\xeb\xe2\xdf\x19\x06\x18\x42\x19\x4a\x40\x05\x86\x2e\x09\x09\x01\xa9\x19\x69\xa4\x53\x1a\xa4\x41\x1a\x04\xc9\x01\x01\x11\x41\x60\x08\x29\xe9\xee\xee\x46\x50\xba\xbb\xa5\x41\xba\x73\x9e\xf5\xfb\x3f\x6f\xe0\xec\xbb\x3e\xf7\xec\x7b\xf6\x5d\x67\x2a\x93\x07\x51\x74\x74\xf9\xfb\xde\x5b\xcf\x9f\x28\xde\x3f\x81\x60\xe1\xed\x4d\x13\x8f\xb1\xf6\x43\x85\xe2\xe8\x98\x5a\xcb\x34\x75\xfb\xcb\x2f\x3e\x1b\x9d\xca\xff\x8c\x53\x96\x23\x4a\x60\x21\x6e\x33\x14\x81\xa9\x24\x23\x95\xc3\x38\xc1\x26\x44\xba\x18\xde\x09\x43\xcc\xce\x69\xd3\x4d\xa4\x1b\xae\x31\x95\x5b\xa9\x64\xd9\x1f\x32\xce\x21\xed\xf5\x65\x6f\x67\x4e\x67\xaa\x8b\x2d\xa8\xa7\x9d\x44\xf8\x89\x6b\xf9\xb7\xe5\xad\xe9\x6f\x49\x38\xdd\x20\x54\x22\x6f\x95\xd2\x57\x2d\xca\xbf\x07\xa6\x98\xcf\x74\x28\x32\x8a\x3c\x5f\x7c\x44\x9e\xa0\x34\x2b\xd6\x9a\xd2\xb6\x28\x60\xad\x05\x26\x04\x78\xfa\xf9\xd6\x9d\x6d\x64\x6e\x82\xfa\xf2\xf9\xff\xc5\xd0\x68\xd4\x97\xac\xd5\xdc\xa1\xef\x2a\xb2\x32\xe8\xdd\x0e\x3f\x61\xaa\x0f\x30\x2b\xcb\xee\xe1\x97\x82\x43\xdd\xdf\x06\xbd\x67\xaf\x99\x66\x74\x80\xcc\x58\x94\xf2\xf2\x29\x81\x9f\x7f\x4b\x9b\xc4\xea\xcb\x17\x07\xcb\x93\xfb\xb4\x63\x9b\x82\x2f\x6e\x0d\x0d\x5f\x14\xf0\x59\xb9\xde\x1c\xee\x3e\xfe\xb4\x2a\xb7\xbc\xff\x18\xfe\x58\x61\x8c\x7e\xb9\xb1\x9e\xfc\xd6\x6f\xa0\x43\xde\x3a\x48\x37\x7d\x92\x60\xe4\x1b\xd3\xf3\x8d\x07\x1d\x10\xc2\xdb\x94\xc1\x4f\xd8\x5e\xc1\xd1\x44\x5c\xcf\xd7\xda\xed\x8b\x81\x78\x55\x1e\x66\x5b\x51\xd9\x38\xc8\x97\x1b\x91\x8d\x9b\x9d\x66\x84\x42\xb2\xbc\xbc\x16\xd4\x38\x78\x7f\xa0\x47\x52\xa4\xfa\x6b\x10\x84\x69\xf3\x95\xce\x65\x2d\x68\x78\xf7\xe5\x48\x5e\xb9\x93\x80\x67\x53\x2a\x08\x94\xb9\xd0\xc5\x0c\x4c\x50\x22\xe3\xee\xd0\x77\x9f\x38\x95\x1c\x5c\x16\xd0\x72\xcc\xdb\x20\x1d\x64\xf0\xdf\x66\xb7\x12\x7e\x16\xb1\xa0\x0b\xbf\xcb\x0e\xf5\x79\x49\x26\x8c\xf4\xa8\x99\x50\x7b\xd9\xd1\x64\xba\x21\x31\xd4\x0b\xd2\x19\x1b\xc8\xea\xe1\x3f\xb2\x7b\xd8\x30\xe9\x48\x14\xa6\x52\x3e\x6e\x3c\x8e\x5d\xda\x28\xf4\xd1\x86\xef\xe2\x44\x53\xe9\xe6\xa7\xda\x33\x7b\x25\x4a\x85\x21\xcd\xf5\x65\xb1\x36\x52\x91\xcf\xc2\x27\x64\x40\x1b\x47\xb3\x85\x17\x1c\xb1\xad\x29\x89\x72\xda\x33\xee\xa5\x54\xbf\x31\x37\xba\xfd\xfe\x97\x46\xb7\xc7\x7f\xd8\xe4\xb1\xde\x1c\x63\x59\x5a\xff\x8e\x8e\x89\xf1\x35\x5e\x08\x12\x87\xde\x0a\x87\x1c\x0c\x3d\x07\x10\x8b\x04\xaa\xee\xbd\x9e\x4c\x60\x76\x32\x2b\xf4\x13\x79\xc9\x22\x19\x66\x34\x88\x25\x92\x27\x00\x46\x88\xe5\xd9\xab\x27\xc0\x10\x5c\xe7\xc2\xb2\x7e\x39\xe0\xc5\x6a\xf2\xe1\x44\x2f\xe4\x11\xc3\x9f\x62\xf3\x5e\xab\x86\x98\xbe\xbc\xe7\x02\x25\xcb\xe9\x60\xd8\x2b\x6c\x18\x70\xc3\xc7\x9a\x83\xab\x82\x22\xb8\x6d\x80\x22\xa5\xdb\x8d\xab\x8c\xcf\xa8\x83\xdb\xa7\x97\xd4\x02\xa7\x9e\x62\xca\xb9\xbe\xa8\x95\x44\x36\xe1\x63\x1e\x4b\xfa\xe9\x19\xac\x68\x84\xf0\xd7\x68\xaa\xb7\x31\x68\x88\xe2\x97\x62\xe0\x72\xae\xc7\x7c\x5b\x1e\xe7\x87\xdd\x1f\x52\x50\x47\x06\x28\xa3\xb9\x0a\xdc\xe9\x52\x00\x75\x73\x67\x79\xa7\xde\x17\x6b\xd4\xfd\xbc\x3b\xa4\x65\x84\xc7\x9c\x82\x7b\x58\x7b\x5d\x47\x07\x7f\xf7\x85\x14\x07\xb0\xf4\xf4\x76\x13\x7b\x3b\x0f\xdc\x2e\xd9\xea\x50\x54\x20\x60\xae\x4d\x5d\xa7\x00\x24\x66\x68\x2e\xd0\x53\x75\xaa\xc6\xca\x3c\x21\x8f\x21\x09\xc7\xc3\x3d\x03\xf3\xc7\xa1\xfe\x36\xbb\xb5\x95\xb3\xb6\x1d\xe6\xb3\x0a\xfe\x13\x08\xc7\x7a\x0e\x12\x88\xb9\x7a\x18\xb2\xd9\xa0\xd6\x97\xf4\x1e\xd1\x3b\xa4\x99\xb4\x2e\x72\x9c\x6a\x4b\x7b\x9c\x0a\x94\x81\xe1\xc5\xf8\xed\x1a\x10\x51\x8b\x76\x0d\xe8\x9d\x02\xb2\x3c\x23\xb2\xad\x22\xda\xbf\xe4\xa7\xcc\x1d\xcd\xc4\xc9\x25\xf4\xa3\x59\x1c\x80\xe8\x79\x6e\xd3\x8f\x7d\x6e\xbe\x40\xaf\x23\x53\xf3\x95\x7c\x53\x6e\x78\x6a\xdd\xf1\xe7\x72\xc4\xcf\x00\x27\xba\x99\x4d\x6c\x68\xb1\xb0\xe2\x71\x34\x08\xf1\x93\x83\x83\x9b\xd5\x2d\x1f\x2f\x92\x1a\x09\x30\x5a\x28\x70\x97\x90\x55\xf3\xc1\x68\x70\x28\x9f\x11\x01\x08\xef\x37\x5a\x7c\xb9\xb6\xf2\x03\xcf\x05\xb1\x01\xbe\xec\x6e\x7b\xde\x92\x06\x6a\x0e\x10\x24\x06\xc9\xed\x60\xca\x2d\x5f\xdc\x43\xac\xe9\xca\x71\x62\xb5\xa1\xbb\x43\xca\x9e\xb1\x5b\xae\xe2\x97\x8d\x6c\xff\x40\xed\x78\x90\x1a\xb5\x5c\x6a\xf9\xe7\x69\xb5\x5e\xa7\xe9\xbe\xc3\xfc\xee\xd2\xad\x21\xce\x24\xf2\x98\x40\x39\xf8\x8c\x05\x0f\x87\x1c\xd9\xa6\x0e\x13\x0d\x64\xf2\xeb\xe0\x95\xc5\xa8\xa6\x94\x0b\x1f\xb7\x94\x0a\x17\xe7\xb8\x8f\xe3\x4f\x51\x3f\xd7\xe7\x2a\xd4\x21\x0b\x7b\x62\xe2\x76\xf9\x22\x5b\xb5\xba\x59\x5d\xd3\x18\x8a\x87\x15\x14\x6c\x24\x52\xd2\x96\x78\xcb\x63\xac\x5d\x89\x97\x2c\xca\x67\x5b\x81\x81\x17\x7e\x53\xe6\x8c\x8d\xa3\xe0\x0d\x89\x0d\xf4\xdd\x60\x7a\x41\x64\x62\xee\x0a\xdc\x09\x3a\x78\x42\x11\xef\x43\x24\xaf\xde\xd9\xc7\x26\x7c\x26\xab\xeb\xfd\xb0\xc0\xfc\xba\x7a\x29\x7c\xd1\x41\xa1\x83\x72\xf4\x33\x05\x7c\xfb\x71\x29\x08\x31\xa9\xa5\xe6\x77\x5b\x7d\xe2\x60\x91\x64\x60\x05\x89\xd0\xf2\xeb\x27\xee\xa4\x26\xdf\x3f\x28\xf9\xd3\xc6\xf6\xa2\xcf\x18\x6c\x6b\xe7\x43\x5a\xfd\x40\xc4\x7f\x70\x61\x73\x35\x3b\xec\xd7\xd3\xe4\x89\x15\x98\x01\x52\xa1\x3a\x9b\x3e\xbb\x25\xc7\xe2\x5b\xbf\xed\xd8\x94\x31\x35\x73\x9e\x2f\x7e\x70\xe8\x94\x58\xb1\x0f\x27\x0b\xa4\x92\xec\x33\xb7\x3b\xd1\x79\x1a\xe8\x6e\xde\xf1\x7c\x27\x31\xc9\x4d\xd8\x26\x9a\xb1\x5a\xaf\x43\x2d\x55\x07\x33\x6d\x6a\xdf\x1c\x17\x17\xe8\xa5\xee\x7a\x84\xf7\x0b\x77\xe9\x72\xb3\x60\x3a\x95\xb7\xd7\x55\x43\x40\x78\x4f\xbf\x49\xe7\xd1\x08\xb3\xd9\xcd\xaa\x0d\xcd\x04\x36\x1e\xf9\x03\xd0\x4e\x18\x4c\xf5\xca\x94\x1c\x9a\xe8\xc3\xdf\x09\x1f\xec\xe6\x6b\x1c\x57\x84\xfc\x13\x60\x66\xa2\x54\xb9\x33\xac\x6f\xfe\xee\xcc\x35\xb1\xec\x4a\xa0\x27\x48\x89\x07\x30\xf2\x7d\xad\xab\x1d\x62\x6b\xeb\x98\xd0\x5e\xf3\x3e\xb0\x18\x40\x50\x5d\xd0\xcb\xe0\xc9\x4a\x5f\xb7\x58\x5c\xd7\x35\xe5\xad\xab\x50\xd9\x4c\x35\xcb\x76\x77\xde\x26\x5d\x2f\x73\x2c\xed\x09\xbe\x9a\x4a\xe7\xa5\x9c\x3a\xcd\xfa\xf1\x3c\xbd\xfc\x55\x59\xc7\xd6\xc3\xef\x3c\x43\xab\x91\x47\x5c\xa6\xdf\x63\x67\xc3\x9a\xd3\x45\xae\x5e\x84\x5f\x19\x05\x0b\xc9\xbd\xc4\x4d\x33\x66\xcb\x7f\xdb\x8d\x5d\x07\xdc\x9a\x02\x8e\x41\xa5\x18\xaf\xdb\x32\x0d\xcd\x43\xff\x4f\xb9\xec\x69\xf1\x3b\x9e\xd5\x69\x3a\x86\xcd\x29\xd5\x72\x4f\x00\x6d\x3a\x83\xeb\x1d\x0e\xdf\x63\xc0\xcd\x06\x67\x9d\x08\xc4\x23\x99\x9b\xcb\x74\xcc\x2b\x99\xf1\xb3\x5e\xe6\x49\x77\xb7\xc6\x71\xa3\xf6\xd3\x38\x28\x2b\x1a\xc4\x82\x42\x31\x41\x61\x46\x24\x94\x2f\x48\x8b\x00\x44\x4e\x3c\xf3\x9e\xbe\x55\x9c\xf1\x34\xef\x7a\x6d\x3e\xe1\xcc\x6f\x2d\xd5\x8a\x72\xd6\xb6\x3a\x57\xbd\xeb\x50\x85\x7c\x68\x49\x85\x73\x9b\x5d\xb3\x19\xc9\x82\xda\x68\x86\xb0\xa6\xbe\x1c\xa9\x5e\x0b\x56\x75\xff\xe5\x9d\xff\xbc\xf6\xec\xc8\xb7\x6e\x5a\xe4\x84\xd4\x5b\x30\xc0\xbb\x99\x9e\xfd\xc8\x26\x80\x27\x36\x68\x74\x39\x2d\x4a\xf1\xf8\x9f\x81\xae\xf0\x23\x43\x05\x90\x48\x71\x5b\x22\x06\xae\x91\xdd\x63\x5f\xa9\x38\xe3\x39\x70\xa0\xca\x9a\xda\x4f\x39\x16\xf8\x2b\xea\x07\x64\x56\x69\x49\x94\xfc\xf3\x19\xe0\x19\xc9\x59\xca\x2f\xf9\x3e\x9e\x6e\x9c\x5e\x72\xa1\xc7\xf7\x69\xc9\x27\x32\x56\x32\x25\xa6\x0f\xe8\x9e\xe7\x8c\x21\x7a\x8d\xfc\x11\xe6\x6f\x22\xd2\xb9\xaf\xe2\x00\xfc\xfd\x27\x21\xfe\x55\x74\x00\x82\x5d\xf7\xc4\xf3\xb6\xf8\xa4\xa8\xe1\xf6\xd5\x2f\xfc\xb3\x4e\xe7\x4b\x48\x3d\x7b\x1f\xc5\x93\xec\x4b\x0f\xe5\x7e\xda\x7a\xfc\xb9\xcf\x1f\x57\x0f\x69\x2f\x9f\x09\xef\x1f\xe4\x6f\xd9\x5d\x61\xda\xb8\x68\x02\x56\x3e\x49\xfb\xd2\x66\xb6\x2e\xff\xae\x09\xc6\x43\xbe\xa1\x54\x27\x79\x95\xf8\x9b\x41\xfb\x86\x02\x7b\x33\xbd\xe7\xb9\x28\xc1\x2d\x4d\x6d\x39\x0c\x21\xc8\x84\x00\x03\x24\xae\x72\x8a\xee\xce\x4f\xb0\x9e\x7e\x1b\xa6\x33\x65\x4d\xac\xce\x66\x5a\xec\xf0\xd2\xcd\xb1\x08\xdd\x86\xce\x70\xe3\x08\x10\xfe\xf1\x3e\xbb\x7c\x65\x09\xb4\x0b\x81\xf5\xd4\x6c\x3a\xe8\x9a\xd9\x2b\x46\x5f\xf4\x42\x25\xdf\xb3\x46\xf3\xf7\x56\xbf\xa9\x78\xaf\xf0\x42\x81\xe1\x99\xf5\xb2\x65\xc7\xe8\xca\x33\x1a\xd2\x29\xea\x91\x00\x27\xe9\x74\x3f\x38\x22\x87\x6a\x47\xfc\x77\xe8\xa0\x78\xf9\xfe\x2f\x9a\x96\x20\x36\xda\x9d\xfa\xbd\x74\x27\xfe\xea\x64\x63\xf4\xf2\xbc\x70\x8e\x81\x2b\x7f\x35\xd6\xed\xec\xb1\xda\xf8\x41\xe7\xdc\xc3\xe3\x9f\x30\x0b\x60\x05\x00\xb7\xce\xdb\x5d\x7c\xcd\x47\x0a\x91\x80\xa3\x04\xbe\x0c\xd0\x53\x3e\xfb\xfc\x8d\x95\x2c\x2f\xe3\x52\xef\xca\xe4\xda\xcc\xf5\x01\x39\xd0\xf3\xb2\x53\xd5\xc7\x00\xc7\x83\xee\x31\x7a\x37\x33\x5c\xb1\x02\x1f\x91\xc5\x0e\x0f\xc4\xdf\xc9\x10\xee\x7b\x8e\xca\xe5\x28\x2e\x1c\xc9\x94\x7c\xa7\x55\x66\xf7\xc9\x0c\x64\x29\xa7\xa4\x3b\x86\xde\x34\x19\x8c\x7d\x97\xe7\x07\x04\xe2\xc1\xd3\x21\x9e\x97\xe5\x12\xb4\xed\x21\x53\xde\x26\x18\x23\x04\xaa\x4f\xf7\x24\x54\x21\x4c\xe4\xb2\xbd\x16\x2d\x72\x26\xfd\xf7\xa4\x42\xed\xe3\x2d\x50\xf7\xde\xd3\xd5\x51\xda\x4f\xd0\xe3\xcd\x43\xb5\xe9\xf5\x97\x88\xa6\x47\x45\xb7\x12\xd6\xf3\xf3\x0c\x39\x92\x98\x7b\xac\x7b\x43\x09\xe8\x75\x9b\xa4\xe1\x6a\xd8\x37\xad\xb8\xcc\x17\xe1\x5f\xeb\x48\x9c\xe1\xbc\xd2\x36\x83\xdd\xb6\x66\x65\xfb\x16\xcc\x08\x6b\xf2\x20\xa9\x8a\xb0\xdd\xb0\x5f\x33\x28\x21\xf5\xd7\xc5\x0d\x25\xeb\x77\x36\x07\x25\x7e\x1c\x40\xc7\xaf\xd6\x11\x51\x54\x98\x42\xff\xab\xd5\x0d\xa4\xd1\x2f\xbf\xcf\x80\xd3\x02\x7d\x3f\xde\xb7\x5f\x04\x8d\xcf\x26\x14\x8e\x1f\xca\xce\x55\x44\x48\xc3\x09\x1f\x54\x01\x84\x27\xcb\x9f\x29\x2c\xd0\x84\x7a\x90\x63\xaa\xc6\xb2\x0b\x79\x53\xfc\x92\x8b\x31\x5a\x49\x3c\xbc\xc0\x4e\xd6\x3b\x83\xa7\x5e\x06\x2d\x3a\xa7\x1f\xbd\x3c\xcc\xad\x20\x58\x10\x8e\x3f\xa2\xf7\xec\x90\x09\x83\xdd\xff\xd0\xd9\xf8\x10\x11\x7b\x44\x64\xf6\x6b\x68\x38\xed\xd1\xb2\x26\x98\x07\xd7\x66\x82\x6f\x05\xab\x1f\x11\x94\x51\xaf\x18\xfd\x5e\x01\x77\xb7\x75\x2e\x17\xe2\xf4\x8b\x98\x96\x61\x8d\x10\x04\xff\x85\xec\x11\x75\x7b\xd2\x6e\xcd\x0c\x92\x81\x25\xf2\x6b\x8c\x59\xcf\xc6\xea\x82\x7a\x14\x55\x77\x1f\x1b\xc9\x25\xa2\xa7\x89\x79\x0a\xf9\xb1\x4d\xc2\x1d\x84\x90\xfc\x86\x21\xbf\x83\x94\xa2\xec\xec\x29\xbe\xa5\x9b\x33\x1f\xf7\x4c\x09\x9f\xff\xdc\xe7\xeb\xe3\x0e\x27\xf3\xfb\xf3\xfb\xc5\xf5\x39\x5c\x15\x6f\x52\xa1\x6a\x2c\x2f\x79\x98\x55\x62\x59\x3f\x5a\x22\x8f\xb7\xaf\xcb\x6f\x6f\x3e\xbf\xf5\x32\xba\x14\x43\x4c\x5a\x9a\xa5\xfc\x0e\x0a\x80\x80\xdc\x50\x86\xd7\xda\x97\xd4\x5b\x84\xce\xd3\xdd\xcf\xd3\xb5\x12\x77\x98\xaf\xee\x87\x89\x81\xf4\x42\x05\xea\x1f\x4e\x31\x91\x31\xc5\xc8\x41\x7f\xdc\x54\x73\xbf\xf5\x12\x14\x08\xa5\xad\xa9\x27\x60\xae\x4d\x59\x95\x81\x48\x57\x15\x15\xb3\x90\x73\xe5\x95\xc6\x72\x1c\x81\x53\x3e\x7a\x3d\xf1\xe5\xcb\x79\xf8\x65\xb1\xbe\xff\xf0\x15\x3a\x2b\x73\x71\x01\xef\xfa\x66\x93\x6f\x77\xb8\xbf\x6a\xcc\x9d\x3d\x63\xae\x7c\x7a\x52\xc5\xb3\xa5\x63\x78\x68\x09\xef\x7a\x3f\x82\x60\x97\xfb\x2d\xdf\x98\x6f\x48\x06\xb0\xda\x29\xf1\xe2\xc0\xdf\x5c\x00\x43\x8a\xbf\x7b\xf4\x5c\xad\x53\xb8\x7b\x21\xf8\x65\x43\xe9\x73\xd4\x7c\xd0\xb3\xc7\xab\xa9\xb2\xd7\xe9\xb7\xb6\xae\x12\xa5\xbd\x03\x15\xd0\xa2\xa3\x97\xd1\x02\xf1\xbf\x2e\x6a\x49\x2e\xee\x2b\x15\xee\xb3\x7a\x70\xb5\x4d\x3f\x92\x75\xa1\xe6\x9e\xda\xce\x04\xcd\x0a\x24\x6e\xfe\x2e\x61\x80\x9b\xb2\xbe\xd2\x8a\xd1\xd1\xa4\xb0\x1b\xd9\x05\x51\xbe\xcb\xc2\xe9\x38\xc2\x63\x05\x21\x23\xb5\xcb\x91\x51\x6d\x3a\xcd\x82\xfc\xb9\x7f\xa0\x7d\x3f\x2c\x73\xbc\xf7\x86\x0b\xdb\x66\xc4\x38\x31\x63\x8a\x2b\x93\x15\xdc\xe4\x52\xed\x05\xe1\xb6\x71\x36\x3b\xdf\x22\x08\xfa\x96\x1d\x7f\x6a\x2d\x09\x90\x7a\x62\xa9\xbe\xa5\xbd\x33\xf9\x6b\x5c\xe7\x87\x31\x5b\xbd\xa1\xc5\x4a\xba\x25\x96\x06\xc8\x4e\x8f\x1b\xa6\x61\x3c\xfa\xef\x05\x28\x5c\xb9\x0f\x37\x47\x70\xe2\x95\x28\x6b\xcc\xb5\x2d\xad\x45\xc5\xed\xb4\x82\x1d\x8a\x95\x13\x55\x5e\x7c\xbd\x26\x8f\xaf\x35\x22\xbe\xcf\x74\x74\xa6\x33\x1e\x8b\xf5\xc8\xa4\xb6\xb3\xe2\x60\x1f\x6c\x0a\x4a\xc6\x0f\x9e\x00\x4a\xd7\x10\xed\xcf\xb3\xb3\xa5\xb5\xf9\x29\xec\xc8\xe3\x70\xfa\x35\xa4\x78\x57\x8e\x3b\x9a\xf2\x44\xee\x9b\x95\x8e\x37\xa0\x06\x7c\x01\x3f\x4b\xaa\x14\x1a\x78\xa5\xa7\x2a\xed\x0e\x08\xbe\xa6\xdc\x16\x9b\x9f\x92\xfd\xcd\x7a\x99\xd6\xcc\x02\x73\x0a\xe9\xa8\x78\xef\x59\x54\x0f\x37\x1e\xe6\x56\x30\x9e\x7b\xbd\xb4\x56\x6f\xb3\x71\x7b\xbb\x8c\xcb\xb2\x84\xb7\xea\xff\xcb\xe9\x57\x03\x5b\x05\x09\xee\xd0\x08\xe5\x07\x95\xe7\xa8\xd9\xa0\x69\xbd\x36\x77\xf8\xb0\xea\xe9\xa5\x30\x58\x3b\xc6\xe6\xeb\x7b\x07\xf9\x0f\xd5\xfa\x20\x57\x40\x7b\x6c\xdb\x4b\x2d\x8b\xdc\x9a\xe8\xeb\x23\x29\x3c\xa1\xb0\x5f\x30\x7f\x2a\x93\x2a\x92\xf4\xcc\x31\xf4\xe7\xdf\x45\x4c\x3c\x00\x7c\xb1\xe3\xad\x8d\xa4\xc2\x61\xcf\x4f\xa5\xed\xd4\x02\xb6\x57\x95\x78\x74\xd9\xfc\xb0\x74\x43\xbc\x50\x42\xef\x80\xb2\xb8\x17\x0c\x7f\xd8\x54\xde\xc6\x47\xd3\x37\x4c\xbc\xfa\x94\x30\xeb\xc6\xbd\xc3\xe4\xa5\xe0\xe2\xf9\xbc\x82\x58\x79\xea\x4d\x3b\x95\x4c\x6d\x56\x46\x4b\x1f\x7f\x43\x8c\x71\xac\xe3\xd4\x98\x67\x0c\xb1\x66\xc0\xfd\x73\x28\x26\x2a\xa5\x1c\x29\x61\x16\x73\x2c\xb1\xc9\x7f\x28\x19\x86\xda\xf8\x3b\x74\xb3\x23\xb6\xa8\xba\xbd\x7d\x99\x53\x8e\xc7\xbd\xdf\xf3\xf3\xd1\xb6\xe1\x91\x07\xbe\xc8\xe9\x62\x7d\x95\x8d\x7c\x71\x7a\xa3\x90\xc8\xbf\x1a\xf7\x4e\xa6\x85\x99\x6f\xc2\x45\x16\x93\x25\x48\xb8\x73\xeb\xef\x3d\x27\x13\x9c\x49\xdc\x76\x63\xf1\x0d\x8a\x87\xc1\xc1\xf2\xe2\x46\x69\xfd\xbf\x39\x48\x83\x3f\xc8\xcc\x06\x4f\x2e\x33\xb9\xf1\x20\xba\xe0\xf7\x5c\xa2\xc0\xef\x50\x9a\x58\x94\xb2\xfc\xe7\x12\xc9\x60\x98\x50\x69\x60\xf1\x5d\xa5\x01\xe7\xb0\x5c\x51\xaf\xe1\xa5\x94\xd7\xbc\xef\x2b\xed\x6c\x96\xaf\x5d\x31\x09\x01\x10\x1f\xfe\x03\xa6\xef\x28\xde\xc0\x0f\xfa\xb2\x0d\x0a\xda\x8d\xfa\x06\x51\x07\x94\x6c\xcd\x4a\x78\x85\x80\xad\xde\xa5\x5f\x00\xed\xbf\x63\xda\x57\xe7\xca\x50\xcc\xc3\x68\x81\x2b\x9d\x55\x68\xd5\xcf\xa0\x2a\xfb\xb7\xc5\xf9\xaa\xe8\x40\xe2\xa5\x2c\xca\xbf\x43\x0e\x9d\xad\xce\x56\xa5\x17\xb0\xd7\x6e\x4a\xff\x5c\x38\xf5\xc4\xbd\x55\x78\xa7\x7a\x72\x38\x1b\x53\xcb\xb3\x63\x3c\x83\x8a\xe8\x14\xbf\x6e\x7c\x5c\x1b\xca\x95\xac\x7f\x34\xba\xc8\xa3\x3f\x85\xa9\x4e\x4b\xcc\x58\x07\x00\x94\xfe\xc8\x22\x9a\xad\xa2\xb3\xde\x42\x9a\x34\x0c\xcd\xa7\x75\x1d\xfb\x26\x1a\x7f\xd4\x9e\x5d\x9a\xa6\x3d\x68\x8c\x8e\x8d\x47\x48\x80\x67\x86\xbd\x3e\x91\x68\x44\xe8\x04\x50\x5d\x81\x9e\x7c\x0f\xa9\xbd\x88\xdf\xe0\x4e\x35\x98\x7a\x30\xbd\x17\xde\x3f\xc4\x27\x38\x11\x60\xf8\xaa\x63\x88\x1d\x27\x1c\xb2\xca\xe8\x48\xb7\x12\x0e\xef\x9f\x3a\x36\x12\x78\x7b\x70\x90\x8a\xf6\x3f\x5d\xaf\xbc\x48\x9b\x4a\xd3\x58\x2e\x34\xef\xc5\x62\xcf\x78\x0e\x67\x05\xf8\x89\x1c\x0d\x1f\xb2\xdb\xca\xc5\x31\xa6\xf2\xfe\x6f\xae\x24\xc4\x4c\x4b\xdf\x3f\x8e\xd8\xb4\xc3\x5e\xe4\xd4\x22\x6f\x7c\xb9\x4b\x31\xcb\xdc\x7c\x62\xdd\x77\x97\xc9\xae\x81\xf5\x9a\xe8\x2d\x3e\x3b\x24\x3a\xb5\x2e\xf3\x40\xfb\xe3\xda\x10\xd6\x8f\xf2\x68\xe5\x56\x4e\xbb\x83\x1b\xa3\x85\xd9\x60\xae\x30\xde\x33\x67\x09\xa1\x42\x19\x84\xbd\xa3\x82\x56\x46\x4d\xd8\xee\x41\xfd\xbb\x0a\xf3\xd7\xe2\xd4\xa0\x97\xb2\x0a\xb5\xcc\x69\xd3\xd4\x99\xcf\x78\xf7\xf8\x0b\x14\x78\x32\xdc\x8e\x21\x9e\x60\x11\xdb\xe2\x0f\x57\xfc\xc2\x90\xdc\x22\x38\x43\x1b\x6b\x1c\xc1\xe9\x98\x64\x49\x67\x2e\x89\xf7\x81\x8b\xa8\x8a\xce\x04\x7b\xf2\x8f\x0f\xa9\x70\x32\x4d\xa9\x06\xde\xf4\x52\xcb\x94\xb5\xc6\x1c\x15\x26\x73\xa1\xa7\xec\x94\xf2\xcd\x46\x89\xf1\xa9\x9a\x7c\xe6\xe3\x6a\x6a\x54\xaa\xfd\xd5\x22\x0c\x7f\xa1\x8d\xb7\x5d\x06\x0f\x6f\xae\x88\x70\xfc\xdb\xf0\x1f\x8b\x7f\x2e\x2a\x1c\xd1\xe3\x3a\x10\x4d\x28\xe8\xe3\x8e\xf6\x4a\xbb\x8e\xfe\xcc\x60\xa2\x15\xe7\x20\x9a\x5a\x49\xe3\x4a\xf6\xfa\xe5\x4b\x05\x20\x84\x69\xa7\xd6\x73\x51\x9b\x6f\xea\x3e\xe6\x93\xbd\x8e\xf3\xb1\xdc\x66\x8a\x2e\x09\x87\x43\xf6\x3f\x6e\xd7\x97\x2c\x44\xa3\xa4\x0c\xb7\x34\x38\xdb\x76\x7f\x47\x6b\xec\xa6\x57\x76\x27\x8b\xd4\x3e\xb3\x31\x5a\x87\xe7\x42\x00\x72\x58\x7e\x15\xb9\x85\x65\x69\xa6\x41\xd4\xef\x7c\x26\x9e\x42\x4c\x57\x2d\xfa\x42\x16\x7b\x71\xd0\x75\xe2\x93\x5f\x83\x87\x21\x24\x26\xf8\xd0\xe8\x12\x5a\x25\xf5\x7a\x03\xeb\xea\x4b\x77\x3d\x27\x2e\x78\x5e\x4b\xad\x26\x9e\x6e\x3e\x47\x77\xa7\x22\x9a\xb9\x48\x3b\xf0\x83\xf0\x53\x2e\x55\xaa\x49\x21\x50\xb2\x59\xfa\x73\x06\x7c\xa8\x73\xbe\x20\xd1\x8e\xe1\x75\x31\xcb\x71\x83\xe2\x9b\x57\x31\xd1\xab\x85\xf5\x1f\xba\x8f\x3f\x72\x2a\xd1\xfc\xb0\xca\xe1\x3e\x7d\x7b\x62\xd5\x10\x73\x92\x17\x2c\x7d\x5d\x9b\xf8\x4b\x5f\xf1\x8d\x34\x62\x90\xcb\xaf\xa3\x2b\xed\x6c\xeb\x70\x7f\x99\x73\x89\x3b\x08\xa3\x41\x52\xb9\x8c\xc3\x02\x7a\x75\xa9\x1f\x52\x1f\x28\xdc\xf9\x8d\x69\xa3\x79\xf7\xef\x40\xf9\xb0\x18\x61\x48\xc3\xa9\x67\x9f\xcf\xe1\xa6\xcf\xf9\xeb\x2e\x25\x22\xf5\x77\xb3\xd6\xaa\xb0\x10\x25\xf0\xd9\x14\x37\x16\x4a\x5d\x8d\x2d\xb9\x88\x75\xb6\x9a\xad\x04\xf6\x5d\xa6\x84\x0f\xbe\xac\x24\x24\x28\x61\x58\xda\xac\x35\xb2\x68\x6f\x9d\x86\xa6\x9a\xe2\xf8\x8c\x25\xda\xf2\x81\xca\x5c\x94\xd1\x96\xf4\x83\x83\xdf\x75\x42\x95\x1d\xa9\xf6\xd4\xcf\x63\xca\xc9\xed\x8c\x46\x4f\x87\x8c\xec\x14\x4f\x7e\x0b\x71\x93\xa0\x2f\xe7\x76\x4f\x8c\x50\x66\x88\x50\x96\x76\x0e\xfd\x13\x68\xcb\x61\x46\x8d\x3f\x0a\x1b\xd0\x5b\x53\xf5\x8d\x64\x07\x58\x15\xdf\x4c\xee\x92\xb1\x69\xe5\xfd\x79\xfa\x37\x1d\x96\xbc\xa7\x17\x97\x13\xf7\xf4\x6d\xef\x13\x15\xb9\x27\x91\xfd\xaf\xde\xc2\x70\xdd\x0c\x2e\x1f\xc3\x7e\xa1\xe0\x43\x78\x13\x62\xd8\x29\x59\x8d\x95\xaa\xfe\x90\x3e\x46\xf3\x06\xde\xc2\x46\xf6\xc2\xd7\xec\x85\x42\xec\xa5\xef\xf0\x0c\xca\xdf\xe7\x0f\x40\x4f\x88\x36\xf1\x92\x3f\x1d\xa6\x79\x1c\xfa\x9f\xe9\xdf\x99\x72\x29\xd2\xdd\xe1\xbe\x9d\x59\x08\xdb\xbc\xef\x21\x9e\xd9\xb3\xb1\x33\xe3\xb0\xf1\x8f\x2e\xcf\xde\x50\x0b\x0f\x4e\x26\x99\xf7\x16\xb5\xf0\x95\x77\x36\xff\x93\xaf\x21\x8e\x70\x3a\x50\xfc\x56\x37\x88\x7e\xb7\xdf\xe3\x73\x9e\x95\x58\xe8\x43\xa7\x1f\x33\x1c\x39\xf6\x01\xd0\x78\xdf\xcd\x42\x75\x7a\x3a\x98\xdd\x82\xbd\x9a\x96\x51\xa1\x00\x3e\x23\x65\xbb\x03\xa1\x0e\x7a\x7e\xa6\xb0\x55\xb5\xc4\xe2\xe5\x8d\x5e\x41\x95\xa4\x28\xc3\x06\xb5\xe3\x4e\x49\x24\x0f\x85\x6f\xf1\x11\xef\xb8\x50\x94\x84\xfc\xab\x41\xb1\x6d\xe0\x20\x47\x4d\xd3\x55\xa0\x8d\xde\xa4\xb3\x75\x45\xa7\xe3\x34\x76\x92\xd6\x02\x50\x15\x02\xcf\x6a\x45\x6b\xaa\xc9\x3f\xae\x94\x02\x03\xea\x14\x57\x06\xf1\x1f\x4a\x49\x28\xc8\xa4\x1a\x82\xa8\x60\xbf\x84\x90\xc5\xad\xbd\xce\x81\xac\x5d\x08\x61\x9c\x1f\xc4\xeb\x8d\xf8\x95\xf9\x41\xff\x64\x68\xc1\xf8\x3f\x25\xc9\x4c\x15\x50\x98\x23\xc7\x77\xc8\x8e\xc3\xe5\xe6\x04\xcc\xd3\xaf\xc3\x92\xc6\xc7\x2c\x46\xb8\x45\xa5\x49\x87\x05\x74\x55\x73\xf7\x36\xa7\xdf\xba\xd1\x37\xea\x9d\xf4\x6f\xbb\xc4\x6d\x24\xc8\x5c\xbd\xc5\xec\x0d\xfd\x45\x2d\xc4\x4d\x43\xbf\x08\x84\x65\x8e\x08\x13\xf3\x28\x0e\x5d\x91\xeb\xee\x1d\xc7\x36\xdc\x58\xf7\xdd\xb1\x9a\x46\x63\xbb\x4b\xbd\x01\x11\x82\x16\x95\x84\x3c\x0e\x54\x9e\x19\x8f\x79\x19\xa7\x28\xe3\x55\xf9\x1e\xc6\x0a\xff\x79\x0e\x60\x72\x29\x5f\xd8\xa4\x03\x2b\xf1\xfc\x75\x06\x5a\xdb\x5c\x5d\x0b\x34\x93\xf5\x9a\x94\xa1\x9f\x63\x79\x73\x4e\xe5\x35\x14\x28\x2b\x7f\xe2\x5a\xef\xcc\x3f\x2f\x84\x40\x99\x29\x0e\x3f\x53\x46\x53\x8c\xb4\xd0\x9b\x18\xb7\xb3\x13\x7f\xd9\xea\x3b\x5f\x48\x1a\x7c\x59\xf0\x1c\xb4\x0a\x21\xd6\x97\x5d\x6c\x54\x97\xb9\x58\x47\x99\x40\x33\xcf\x9b\xef\x14\x14\x54\xd9\x9c\xd2\xab\x56\x88\xf6\x0f\x58\x82\x30\x08\xa8\xc6\xab\x96\xcb\x71\x1c\x20\x99\xce\x41\xbc\x37\x41\x25\xd5\xbc\x3a\x32\x6d\x76\xb4\x8a\x44\x92\x81\x2f\xa7\x32\xbf\x21\xd2\xf1\x85\xa6\x44\x71\x6f\x35\xe1\x2a\x5d\x76\x79\xe3\x95\x09\x25\xbc\xfe\xe2\x09\x76\x32\x03\x4f\xdb\xbb\x62\xa3\xb4\xd2\xbe\x3c\xed\xb0\x5d\xad\xce\x10\x71\xfa\x04\x0a\xf7\xcb\xde\x1f\xae\x35\x97\xcf\xa6\xda\xda\xde\xf7\xdc\xfa\x04\x07\xc7\xc9\x8a\xe3\x8d\x88\xf4\x7e\x7f\x12\x25\x59\xaf\x35\xb1\xc0\x49\xe1\xea\x5a\x4c\x86\xf2\x92\x40\xc5\x75\x57\x56\xd6\x27\x97\x0b\x52\xe1\xdb\x43\xd7\x6f\xdd\x33\x20\xcf\x71\xdf\x30\x43\x6f\xe2\xda\x95\x4f\x21\xcd\x89\xe0\xd4\xf4\x1f\xbe\x5f\x30\x76\x6d\x60\x44\x7a\x0d\x7e\x77\x32\x15\xcd\x93\x10\x7c\x2f\xe6\x3b\x8b\x86\x0e\x51\x08\x8b\x93\xd1\xc7\x5f\xa7\xe9\x63\x2b\xfe\x83\x72\x3a\x25\xb0\x07\x2c\x96\x3e\xfc\x5a\xa0\xbd\x38\xbf\xda\xd3\x2c\xe3\x44\x6d\x0e\xde\xff\xcd\xe2\xbc\x8f\xb5\xbe\x93\xf3\x6b\xdc\xe1\x20\x25\x6d\x71\xce\x3f\xf7\xef\x73\x85\x32\x5e\xee\xc1\xb2\x9f\x92\xee\x69\x5e\x31\x50\xb8\x7e\x14\x37\x62\xc3\xc8\xe4\x08\x09\xeb\x68\x73\xfd\xa5\x7b\xb5\x52\xc8\xce\xef\xe1\x5d\x7b\x31\x54\xd2\xb0\xbb\xdf\xd3\xd8\x65\x69\x2e\x15\x87\x75\x11\xdc\xca\xbd\xf4\x83\x92\x3c\x1e\x2a\x67\xe2\xaf\xa1\x01\x20\x06\x13\xd4\x2d\x33\xb2\x8d\x34\x59\x95\x2f\x30\x24\x44\x84\x41\x40\x28\x53\x05\x2e\x51\xee\xa0\x77\x73\x2a\x35\xf5\xc0\xdc\x87\xde\x77\xe4\x5f\x51\xbf\x3f\x47\xad\x23\x24\xec\x95\x14\xe0\x7a\x94\xde\xcf\x50\xcb\xf8\x87\x4f\x22\x0f\x63\x7f\x1a\x9f\x8a\x79\xc9\x0a\x1c\x89\x16\xc6\x2f\xb7\xbd\x0c\xb6\x1f\xfa\xf9\xaa\x30\xb7\xdf\xd8\x07\xe7\x46\x05\x4e\x0c\x83\xfb\x0c\x9f\xc7\x4a\xe3\x01\xd9\x85\x9d\x06\x41\x51\x22\x86\x71\x3f\xaa\xe9\x9a\x3a\xd9\x36\x2f\xd6\xc2\xdd\xf7\xd7\xe2\xfa\x1c\x39\x9e\x2e\x06\xdf\xaf\x8f\xa5\xa2\x57\xc0\x90\x18\x3a\xfd\x1e\x7a\x6f\x59\x35\x57\x7b\xfd\xbf\x71\x1f\x94\x52\x27\xa9\x79\x05\xc2\x8f\x5c\x0d\x77\x5e\x2e\x37\x7d\xcc\xbc\x4b\x65\xab\x12\xad\x56\xe9\x3b\xeb\x84\x23\x37\x70\x81\x9b\x3c\xb9\x4b\x43\xd0\xb6\x93\xe4\x8d\xa3\x14\x77\x6b\x01\x49\xc8\x84\xc6\xa7\x7d\xf4\x41\x54\x85\x02\x44\x0a\x05\x93\x54\xf5\xe1\xb1\xf7\xb1\x7d\xbb\x80\xe2\x7a\x3a\x3f\x59\xa4\x13\x3d\x03\x44\xe2\x4e\x97\x1a\x12\xb0\x83\x4d\x2d\xde\x22\xa5\xdb\x97\x59\xfb\x9b\x22\xef\xa6\x3c\x47\xa8\x69\x73\xa1\x57\x44\x5d\x97\x94\x64\xdb\x6a\xc3\x11\xed\xcb\xd8\xc1\x7e\x82\x1d\xb4\x7a\x85\x4c\xc5\x0f\x1d\x24\xaa\x42\x5d\x85\x60\xbd\x20\xb8\x2c\xa2\x2f\xc9\xae\x90\x2b\x24\x9c\x8d\xf3\x0f\xd9\x5e\x97\x90\x63\x58\x43\x55\x7c\x6d\xa9\xb1\x88\xda\xc3\xe4\xc7\x31\xa3\x53\xad\xa4\x20\x0b\xcc\xed\x61\x15\x4f\x27\x0e\xfd\x6a\xd4\x67\x00\x6c\x30\x61\xd8\x45\xd7\x9c\xf4\x2a\xa7\x78\x13\x4d\xf6\xd4\x47\x25\x85\x39\x77\x40\xe1\xd2\x2a\xfc\xb2\xec\x27\x6b\x9b\xc6\xd8\x02\x35\x94\x36\x5e\x60\xe4\x9f\x7f\x64\x40\xbd\x04\xbd\x82\xc6\x9b\x7e\x0d\x56\x9c\x6b\x37\x23\x7f\x66\xd3\x68\x26\x88\xf5\xf6\x41\xbe\x11\x12\xa0\x04\xb5\x1b\x0d\xdc\xf3\x53\x78\xb8\xc0\xc4\xa6\x9b\xbf\xaa\x02\xdf\x29\x88\x97\x50\xca\x86\xf3\x5e\x11\x83\x75\x8c\x82\xc8\x7a\x7a\xd8\x19\x3e\x24\x0e\x8b\x61\xfd\x96\xd9\x4d\xe5\x88\x80\x63\xcf\x2c\xe0\x1c\x40\x95\xdf\x44\x86\x41\xb3\x38\x06\xb0\xe6\x35\x21\x06\x9d\xa6\xdc\x9b\xf1\x78\x5d\xca\x7d\x68\x4b\xf2\xb0\xc8\x6a\xb2\x64\xba\x03\x87\xec\xfd\x67\xb4\x29\x2f\x30\xef\x05\xcc\xc4\xfe\xe6\xb3\x41\xba\x9e\xca\x5d\x93\x2b\xa1\x86\x1c\x9c\xc8\x9c\xab\x0d\x70\x43\x00\xfc\x46\xfd\x92\xc2\x17\xb4\xae\xa1\x4f\xea\x7a\xc9\x36\xad\xd3\x57\x81\xc7\xed\x76\xf8\x83\xcb\x49\x65\x2d\xe7\xab\x5f\x4f\x9a\x22\xd0\x12\x98\xc6\xc8\x89\x1b\x5c\x4a\x9f\xc7\x08\x27\x21\x55\x7d\x1a\x84\x52\x46\x0d\x7a\xd3\x61\xe8\x07\xf9\xb3\xf1\x51\x0e\xa5\x1d\x40\x9d\x35\x55\x24\x71\x3a\xf5\xde\xa5\xf4\x23\xae\x9e\x59\x55\xe6\x73\x55\x00\xa0\x26\x85\x7c\x16\x06\x1b\xe1\x65\x2c\xbb\xcf\xee\x11\x0b\x88\x3c\x07\x63\x68\x11\xde\x57\x74\x57\xa2\xd6\xa3\xb8\xfe\xbf\x31\x94\x71\x51\x4c\xc5\x0f\xab\x2b\x8b\x1a\x4b\x2d\xeb\x44\x2c\xba\x30\x39\xfa\x92\x7c\x7e\x8f\x7d\xa9\x1d\x49\x0a\xd7\x8f\x36\x1c\x17\x32\x63\xb1\x9b\xdf\x3b\xa9\x0f\x60\x0e\x0e\xcc\x25\xfa\xb4\x3f\x59\x31\xbb\xf2\x3d\x3e\x03\x6a\xc9\x93\xb4\x4c\x80\xe4\xa9\x3c\x78\x51\xfb\xde\x54\x80\xf0\xd6\xb4\xda\xf2\xef\x87\xb5\xdb\x19\xba\xe7\xcb\xc9\x2f\x0f\x34\x35\xeb\x2e\xfe\x7a\x55\x7a\xda\xaa\x78\xab\xb9\x3a\xb9\xc0\xa6\x51\xf4\x07\xf1\x6e\x8d\x9f\xcc\x5a\x6f\x86\xb6\xbe\xc5\x0d\x13\x26\x6e\xa4\xbb\x5b\x6b\xe7\x5d\xf9\x97\xd9\x47\x11\x0d\xc0\xc5\x00\x1a\x53\x23\x54\xbc\x28\x8a\x4d\x32\x55\x8f\x95\x83\xe2\x77\x01\x9d\xaa\xaf\x29\x14\x2b\xf0\xa4\xab\xf8\xfa\x2b\x14\x0b\xfa\x9a\x98\xe4\xc9\x51\xa8\x2d\x9c\x8c\x29\x21\xeb\x29\x14\x9b\xf4\xbc\x93\xf7\x22\xab\xf2\x4a\x44\xf7\xda\x14\x1f\xf9\x7b\x69\xfd\x2f\x8d\x84\xd7\x9b\x83\x22\x56\x8e\x99\x36\x0a\x86\x1f\x4e\xb5\x31\x4e\x27\x64\x92\x02\x9b\x2b\xf5\xbb\x7f\x85\x36\xad\xe1\x21\x94\xb2\xed\xb6\xf8\x83\xcb\xc9\x2f\xc5\xaf\x56\xcc\xaf\x4b\x6a\xaa\xcf\x85\x4c\xae\x6f\x4b\x30\xe5\xec\x00\x2a\x8a\x77\x2c\x6a\x98\x1c\xff\x13\xe1\xe9\x77\x40\x16\x20\x8f\x4b\x9a\xc7\xb3\xfa\x4d\xd7\x9c\xcd\xf3\x82\x83\x2b\xcc\x14\x91\x4d\x1b\x06\x14\x95\x35\x1c\xb1\xda\xf9\x5d\x8c\x7e\x3d\x71\x3c\x18\x78\x6a\xac\x77\xfb\x12\xa3\x6c\x44\x84\x8b\xa3\x79\xb3\x65\x05\xc7\x47\x48\x7d\x61\x87\x94\x7c\x02\x06\x79\x80\x4d\x78\x5a\x9f\x1d\x85\x00\x85\x4a\x07\xa5\xee\xa0\x11\x65\x7a\xfe\xf8\xf0\x47\x52\xe5\xc7\x17\x82\xef\x47\xc9\x55\x61\x0a\x41\xf4\x30\x66\xc5\xae\x37\x58\xa6\x4c\x3e\x1d\x4e\xc8\x77\xdb\xf0\x84\x55\xda\xbb\xc5\x15\xbb\x97\xa1\x17\x60\x68\x87\x44\xa0\x14\xeb\x8f\xfc\x1f\xb2\x61\xc2\xf3\xf2\x42\xc1\x8b\x41\x55\x5f\x85\x5d\xdc\xbf\x30\x9a\x87\xc4\xfa\x05\x9b\x0b\x83\x37\x49\x1c\x36\xde\x0f\xc5\x0c\xc7\x17\x3a\xfa\xfa\x64\xfa\x94\xa4\x37\xe9\xa3\x1a\xf1\x3b\xfe\x44\xd9\x1e\x19\x7d\x83\x7e\xbe\xa2\x65\x50\x21\x02\xea\x99\x5e\x7a\x8b\xd8\x1c\x96\xe4\x95\x08\xbc\xfd\x2b\x1d\x4c\xdf\xe0\xf7\x08\x60\xf8\x3e\x82\x8c\x05\x7d\x47\x69\x0c\x18\x6a\x58\xc6\x95\x64\xfb\x62\xc6\x37\x76\xe7\xd3\x8a\x35\xc5\xe7\x94\x66\xf6\xb8\x56\xa5\x97\x93\xba\x2c\x2d\x3d\xf1\x36\x32\x64\xcc\xdb\x24\xcc\x64\x57\x5d\x0e\xe7\x08\x2d\x04\x57\xff\xc5\x69\x79\x30\x58\xa0\x35\x3c\xcf\xe6\xf8\x3f\x82\xd9\xc8\x86\x53\x59\xf3\x87\x97\x52\xca\x96\x42\xb4\x05\x49\x03\xb4\x07\xb5\xe0\xd6\x24\x7f\x5b\x09\x8b\x4e\xf7\xcd\x3b\xa4\xee\x9f\xc3\xbd\xaa\xfe\x52\xd3\x64\xa5\x7e\x11\xab\x2d\x91\xe4\x71\xb9\xea\x52\xe0\xaa\xf6\x06\xee\x2e\x09\xf3\x12\xaa\x22\x62\xcf\x31\x8e\x87\x83\xfe\x8c\xf2\x95\x22\x6d\x56\x96\x7e\xbf\x13\xa3\x75\x2c\x2c\x16\x7d\xb5\x96\xc7\x35\x16\x5d\x23\xff\x50\x5b\x37\x90\xe1\x36\x19\xa0\x9b\x18\xbb\x83\xff\x6c\x70\x4d\xf8\x87\xfb\x19\xc8\x37\x8d\x98\x50\xc0\x9e\x80\x6b\xa2\xaa\x61\x50\x24\x98\xed\x91\xb4\x73\xfc\x07\x27\xcb\x77\xe3\xe3\xe3\x8b\xe3\x56\xd4\xba\x71\x97\xc4\x1e\x41\x69\x96\xb9\xb4\xf4\xa2\xe3\x5d\x5d\x62\xdf\x8b\x07\xc2\xc3\x43\x2f\x41\x84\x07\x54\x54\xe4\x3b\x34\xe4\xa6\x87\x76\x87\x62\xde\xdc\xac\x56\x77\xbb\xae\x5f\x36\xc7\x29\x88\x8a\xa7\xdf\x72\xba\x2f\x42\xad\x95\x89\xa5\xc4\x06\x3f\x22\x91\x8c\x97\x09\x6e\xbb\x32\xe5\x98\xea\x6d\xbf\x87\x8d\xca\xfb\x59\xbf\xa9\xf9\x0d\x4d\x99\x88\x87\xf4\x1e\xb5\x3c\x36\x5a\xea\xc5\x13\xfc\xc5\x69\x39\xbd\x70\x99\x65\x86\xc7\x00\x12\x61\xe1\x94\x70\xbc\x18\xa6\xcb\x2d\x61\x50\x49\xbb\x94\x4f\x29\xa8\xf3\x6c\xb7\x26\xb8\xb6\xf1\xfd\x75\x75\xba\x4b\xa1\x06\x5e\xb8\xdc\x1b\x3c\x60\x07\xc7\x20\x1b\xae\x2e\x07\xd0\x41\x43\x51\x78\x75\x05\xa7\x7d\xc8\x9e\xe5\xb9\x17\x8d\xcf\xe6\xb1\x3d\x8a\x32\x70\xc9\x91\x5e\x1f\xe7\xa4\xfa\xad\xf2\x36\x44\x0c\xe4\xba\x8a\x5d\xf5\xed\x65\x99\x6b\xeb\xf7\x96\x01\x80\x14\x70\x01\x54\x01\x14\x36\xc0\x7a\xdf\xc2\x4d\xe1\x77\x1f\xb7\x38\xe0\x58\x98\x62\x3e\xb4\x97\x34\x84\x85\xcc\xf6\x8e\x3a\xf7\xbf\xf2\x6f\x75\x39\x2b\xdb\x93\x29\x27\xfa\xe9\x60\x6d\xaa\xc8\x52\x91\x80\xa5\x9c\x24\x47\x82\xf7\x93\xa1\x37\xea\x54\x2d\xdc\x8f\xc4\xe5\xcf\x75\x7b\x26\xc3\xd5\x75\x4b\xb3\x94\xb8\xa4\x4d\xef\xb4\x69\x83\x4d\x91\x48\x25\x10\xf5\xf5\x39\x27\x3d\x9d\xd9\xf5\x8b\x36\xed\xf1\x52\xa3\xb2\xa7\x82\x3a\x49\x73\xe7\x29\xfd\x0a\xec\x2c\x38\x71\x41\x6a\xa0\xf0\x10\x19\xd8\xeb\x5e\x7b\x04\xc0\x28\xd7\xc1\x06\x11\x27\x2d\xed\x37\x6f\x32\x85\xc8\xea\x63\x5f\x8e\x76\x49\xdf\x9a\xce\xe2\x3f\x16\x8e\xcb\xe8\xf8\xf6\xac\xa3\x9e\x2e\xdc\xb1\x48\xfc\x09\xd0\x25\xee\x8d\x75\x90\x26\x7d\x20\x71\x43\x93\xb0\xea\x2b\x1b\x82\x07\xe0\x44\x9b\xe4\x07\x26\x7d\xfa\xb2\xa1\xf3\x6c\xae\xcf\x45\xc3\x70\xa8\x51\xa1\x03\x6a\x9d\xcb\x11\x26\x87\xb0\x58\x61\xcf\xb4\x2f\xca\xb4\x28\x6a\xd6\xaa\x08\x3c\x71\x58\x9a\x2f\x7a\x8a\x2c\xd1\x9f\xe5\x4e\x72\x4b\xae\xbe\x7f\x45\x73\x1b\xe9\x15\x35\xdc\xe2\x76\x21\xed\x0d\xa8\x13\x64\xfc\xb3\x68\xc9\x1b\xe6\xab\x2a\x70\x79\xa5\x05\x46\x29\x64\x5a\x18\x5c\x2c\x9c\x17\xb6\x3e\x1c\xc7\xc1\x8b\xf1\x13\xb4\x9f\x0a\xf9\x48\xc0\xb2\x23\x89\x9b\xc1\xf2\x91\x2c\x54\x0f\x48\x79\x54\x17\x8d\x8a\x0f\xcd\xd3\xfb\x1d\xb8\x76\x38\xfb\x81\x6f\x78\x59\x60\x97\x70\x43\x99\x23\xe2\xed\xda\xd0\x8f\xfe\x8f\xf7\xab\xe8\x7b\xa1\x43\xd6\xe0\x22\x77\xdf\x9a\x19\x6d\x05\xaa\xc8\x8d\x17\x69\x9b\x84\x69\xba\x8a\x28\x7a\x3c\x39\x24\xca\x43\xfb\xb6\xd3\x9e\xb2\x59\xbd\xf6\x2e\xab\x2b\xdc\x5f\xb5\x36\x50\x41\x7f\x4d\x69\x7b\xd1\x97\x44\x00\xa5\xd6\x95\x16\x7f\x2e\xa1\x0d\x5e\x80\x5e\x12\x55\x4c\x2b\xb2\x3f\xfb\x07\xa0\xe8\xf0\x28\x69\x48\x4b\xba\xc2\xf3\x69\x2d\xef\x0c\xc1\xe9\xec\x29\xf9\x85\xe9\xec\xe4\xed\x50\xe0\x48\xd9\x93\x01\x9a\x7f\x84\xbd\x33\x5f\x12\xa3\x99\xc6\x60\xa4\xcf\xd0\x38\x79\x5c\x6d\x14\xa9\xe1\xea\x00\x86\x6b\x33\x88\xf9\x8c\x8f\xcf\x65\xe1\x78\x0b\x3b\x0e\x6b\x77\x67\x6c\x54\x6d\xf4\xab\xfe\xb4\x25\x0c\x1d\xda\xe9\xab\x29\xf4\xbb\x5c\xe3\x28\x19\x4e\xf7\x17\x04\x82\x49\x75\x9e\x5f\xe0\x20\x42\x48\x30\x1f\xb2\xa1\xe0\x50\xd1\x57\xd6\x45\xa6\x4f\x25\xd3\x3e\xa7\x8d\x26\xc2\x69\xf0\x43\xc5\x69\xca\x52\x29\x04\x0d\x42\xe0\xe9\x3a\x83\xe9\x5a\x02\x9f\xb1\x00\xd5\x7c\x88\xd6\x86\xe6\x24\x56\x61\x51\x0a\x6b\x8a\x02\xb1\x6a\x2f\x36\xf6\xd0\x57\x42\x51\x69\xcf\xca\x3a\x29\xb7\xfa\x4c\x15\x0e\x45\xf2\x45\x3f\x2f\x1a\xae\xa3\x7a\x58\xe8\x61\x88\x7c\x61\xc2\xcc\x78\x54\x91\x88\x26\x5e\xfa\x95\x22\x6f\xda\xf1\x76\x27\x97\xc3\x34\xfa\x40\xcc\x46\xc4\xa1\x39\x5f\xdb\x76\x01\x23\xda\xf6\x85\xa2\x66\xdf\xc1\x9a\x06\xb1\x08\xdd\xd5\xe2\x9b\x31\x28\x8f\xa3\x48\x48\xf1\x8c\xd8\xac\x30\x09\x5c\x7f\xa2\xbf\x5b\xf4\x96\xf3\xbc\xec\x31\x9f\xdf\xb3\xd7\xf4\xf0\x12\x7e\x9e\xc0\x70\xe9\x31\x48\x14\xbc\x74\xf8\xce\x11\x3e\x2e\xff\xe6\x87\x02\x6a\xdd\x20\x3b\x95\x52\xe8\x0c\x1f\x55\x4f\xac\x09\x42\x90\x43\x12\x8a\xa0\x9b\xec\xf4\xe2\x65\x5f\x63\xa7\x15\xf4\xf0\x7e\xef\x29\x4b\x45\x98\x88\xee\x38\x7e\x60\x10\x5a\x7f\x58\x03\xc3\x1d\xea\xb3\x22\x1a\x32\x5b\x84\x3a\x85\xc5\x5e\x97\x7d\x29\x23\x6d\xd5\x76\x53\x13\xc9\xff\xaa\xdd\xbc\xb6\x2c\x15\x2e\xd1\xde\x1d\x0c\xa0\xd1\x5c\x5e\x6f\x00\xf1\x98\x03\xd3\x1e\x7f\x97\xac\xcc\x26\xc2\xdc\xb7\x80\x2a\x9e\xed\x94\x96\x51\xbd\xab\xb5\xb8\x47\xc2\x31\x11\x9d\xe9\x30\xdb\x59\x6d\x58\x77\xef\x93\x4f\xcc\x23\x26\x0c\x9f\xe5\x6c\xb4\xa8\x99\x0a\x8e\x34\x35\x81\xb3\x12\x54\x86\xbf\xd1\xdb\xc2\x53\x92\x92\xf7\x89\xda\x0d\xbc\x25\xd9\x6e\x7a\x5a\xbd\x55\xf5\x98\x6d\x6f\x18\xc2\x4b\xe8\x75\xf3\x52\xb6\xf8\xf3\xe3\x11\x87\x33\xf7\x98\x66\x3c\xf9\x79\x97\x98\xa7\xd6\x4c\x07\xd5\x0d\xa1\x87\x57\x0d\xda\xe2\x4f\x2b\x68\xda\x8f\x3f\x22\xa4\x61\xfb\x32\xdd\x3e\x5a\x87\x67\xd8\x09\x85\x5a\x7c\x20\x55\xa6\x80\x2e\xee\xf8\xfd\x48\xa6\x1d\x57\x8b\xee\xa2\x1c\x53\x25\x00\x82\x1c\x8a\x03\xb9\xb3\xfc\x15\x11\x47\xd7\xc6\xf7\xd8\xbd\x65\xd4\x4a\x09\x6f\x3a\x8b\xb9\x51\xfc\x45\xba\x94\x59\xf1\xb0\xcd\x2e\x74\x77\xeb\x5b\x71\x3b\xfe\xb4\x93\x6e\xde\x7e\x8d\xc1\xc8\x8a\x81\x2d\x35\x4d\xd3\x99\x8f\xb3\x3a\x5a\xd3\x86\xcf\x6f\xb8\xc0\x90\x8f\x5b\x61\x25\xad\x08\xa0\x54\xcd\x44\x77\x7e\xcd\x7c\xcd\x85\xff\xab\xc0\x5c\x90\xa3\xc7\x55\x57\xa5\xc1\x25\xba\x26\x71\x38\xf0\xe0\x42\xba\x2c\xe7\x54\x25\x92\xd7\x8f\xfc\xc6\x50\xc4\x77\xbe\x48\x15\x80\x43\x5d\x52\xc3\x67\x53\xd8\x97\x64\x84\x0e\xfa\x88\x48\xd7\x71\x04\xd2\xc2\x2e\x13\xe5\x78\x03\x47\xc3\x2f\x01\x75\xed\x76\x60\xd8\x01\x8a\xbb\xe0\xaf\x67\x31\x60\x6d\x56\x9a\x0f\x0d\xab\xeb\x56\xde\xeb\x88\xd6\xd4\xf6\x8e\xea\x97\xe0\x92\xe2\x9a\x68\xf2\x18\x95\x79\x95\xea\x36\x96\xc5\x3f\x5f\x68\x4d\x6b\x11\xf8\x3b\xf0\xcf\x0a\xd5\x43\x4f\x36\x3c\x57\xc5\xd1\xa8\x6c\x9b\x1b\xd9\x36\xcf\xda\x7a\xf8\xb1\xb0\xf9\x19\x34\x50\x91\x9b\xf8\x33\x3a\xf6\x8a\xc2\x51\x9e\x7a\x70\x2a\xf2\x60\xb2\x0c\x0b\x51\x22\x52\x88\x25\x53\x72\xbb\xf0\xfa\x6c\xaa\x3e\x32\x2c\xc0\x33\xae\xed\x97\x76\x9b\x95\x05\xd4\xac\x2c\xe6\x8c\x46\xaa\x8b\x36\xe3\x8f\x73\xfa\x74\x32\x71\x89\x36\x65\x2b\x6d\xc4\x4c\xa8\xa3\x5d\xf8\x8f\x57\xdf\x4b\xef\x58\x48\x4e\x23\x5d\x0f\x5a\xa2\xcc\x76\x39\x0a\xa4\xcd\x66\xa8\x55\xb1\x80\xc1\x15\x4d\xe3\xb2\xa7\x65\xf9\xef\x1b\x77\x41\x00\xa0\x2a\xef\x06\x57\x5d\xee\xff\x94\x56\x2d\x30\x1a\x42\xe7\x40\x43\x88\x05\x87\xba\x10\x13\x6e\x2b\x53\x0d\x12\x53\x4e\xc5\xb2\x37\x92\x7c\x7f\xec\xd1\xfe\xf2\x29\x2e\x6d\xec\xd1\x94\x19\x64\xd8\xcb\xe8\x79\x06\x78\x2b\x3d\x0a\xa1\xfe\x0e\x7e\x40\x2d\xf7\xf4\x58\x21\xb9\xe0\xf2\xf9\xd2\xe5\xec\x43\x19\xd1\x16\x3d\x36\x42\xdd\x70\x77\xa9\xb2\x1d\xe2\xa6\x1c\x60\x54\xb6\xeb\xc1\x2b\xde\x14\xd5\x43\x66\x85\x07\x32\x91\x02\xcf\x24\x5d\xbd\x6f\x5a\xd9\xef\x58\xe1\x01\x00\x13\x4a\x00\x19\xf5\xcd\x34\x54\x44\x94\x0b\x82\x13\x97\xac\xcc\xeb\x47\x43\xf8\x2a\x48\xde\x22\x97\x7b\x01\xfa\x7d\x36\x83\xaf\xe4\xdf\xc7\xbb\x16\xb9\x1b\x61\xaf\xb6\x82\x83\x87\xa3\x54\x16\x0b\xdc\x21\x43\x20\x7b\x1d\xc4\xa8\x95\xaf\x0e\x42\x90\x42\x26\x72\xe2\x6b\xeb\x27\xd4\xd3\x24\x0e\x2f\xc2\xb7\x40\x71\x52\x6b\x64\x1f\x05\x15\x86\xb6\x52\x14\x88\xbc\xb4\x4c\x8c\xdb\xdc\xce\xc0\x70\xa8\x8b\x1a\x63\x71\x10\x2e\x55\x1b\x52\x86\x67\xf0\x88\x89\xaa\x63\x42\xd1\x23\xa1\x1d\xff\x8a\xea\xa9\x6b\xf7\x29\x04\xfd\xd4\x3d\xc7\x7d\x04\x92\xb0\x22\x96\xe7\x4c\x87\xf3\xaa\x9b\x00\xc6\x3d\x9a\x0f\x46\x31\xe3\x59\x7b\x21\x6a\xec\x04\xcc\x76\x1b\xb1\xc0\x6e\x9d\x80\x14\x49\x5b\xce\xe9\x30\x11\x9f\x1f\x36\x4e\xec\x47\xc2\x48\x56\x00\x06\x69\x90\x93\xf9\x20\x47\x6e\x5c\xc3\x4c\xd5\x9c\x1d\x77\xf0\xce\x90\x91\xa5\x06\x4c\x53\xf1\x52\x47\xbd\xd2\x44\xd4\x86\x57\x9e\x9f\x69\xe8\x3c\xa6\x75\x4b\x88\x82\x13\x00\xd0\x75\x58\x34\x5f\x40\x8c\x20\x2d\x12\xd5\xb2\xc9\x33\x7d\xdd\xc8\x92\xce\xd8\x60\x10\x00\x24\x30\xca\x20\x36\xc6\x59\x98\xb6\x2a\xe0\xbe\x5c\xe5\xe2\x14\x30\x2f\x10\x0c\xd2\x60\x8d\x53\x1c\x04\xc2\xf9\xfd\x7b\x0d\x87\xc7\xa6\xfb\x99\x44\x64\xdb\x41\xce\xcb\x40\x33\x2f\xc8\xd8\x52\x4c\xc0\xa5\xd7\xec\x81\xf0\x7a\x67\xb8\x5d\x1d\xab\x64\x35\xa7\x53\xc2\x9d\x15\x22\x8f\x4a\x72\xe6\x79\xbe\x39\xc4\x6d\xa3\x89\x28\xac\xed\xe1\x24\xf5\xfc\x9e\x6d\xef\x31\x25\x3d\x51\xe5\x43\x1a\x66\x70\x7f\xb7\xcd\xdb\xc0\x85\x06\xc9\x62\xc6\x3f\xb7\xf5\x9a\x0c\xfb\xb7\xb7\x11\xcb\x3e\xfe\x1b\x98\x79\xab\xbc\xb5\x0c\xf6\x88\x23\x83\x8c\x4d\x99\xc8\xf6\x56\x41\xc2\x9e\xfa\xd2\x37\x0d\xe7\xc4\xc3\xcb\x4c\x05\xd0\x6f\xf9\xb9\x30\x97\xe6\xad\x09\xb3\xb1\x25\xae\x7a\xa2\xc3\xe7\x89\xee\xe3\x2c\xdf\x62\xfc\x62\x94\x41\xbd\xc2\xff\x6a\x9e\x91\xaf\x05\xff\x66\xb2\x22\x78\xfd\xe6\xf7\xe7\xa5\x3e\x94\x69\xae\x4d\xb3\x1e\x79\x20\xfc\x4f\x30\xa9\x80\x26\xd6\x8d\x8a\x94\x3f\x4d\x43\xe5\x8e\xc5\xab\xc0\x2c\x83\x43\xa1\x40\x93\xa4\x83\xf3\x4c\x31\x60\x75\x39\x5c\x1b\x3c\xb1\x9a\xcd\x64\x46\xf3\x7a\x3f\x80\x42\xfb\xd9\x5c\xc9\xa1\x6f\xc5\x11\x6e\xd1\xa3\xfd\x08\xf9\x36\xf9\x3c\x24\x09\xf4\xa3\xcb\x01\xe6\x21\x6b\xab\x08\xe3\x27\xb8\x65\x8f\xb4\x4a\xb3\x26\x50\xbe\x08\xba\x60\xc2\x51\x1e\xc7\xc5\x45\x46\x5d\x9b\x2e\x90\xbf\x1c\xb2\x18\xef\xc8\x16\x05\x80\x5e\xec\x80\xef\xc9\xac\xfc\xe1\xe9\x7e\x09\xc7\xb4\x5c\x82\x93\x3a\xf9\x8c\x31\xcd\x43\x1a\x48\x46\x56\x69\xd9\xeb\xbe\x88\xb0\xe3\xac\xc5\x14\x0f\x80\xe5\xeb\xf7\x63\xdf\xf2\x19\x5a\x00\x19\xf5\xf6\xd1\xd3\xb3\xd9\xf5\xce\xda\xd9\x88\x7a\xea\x23\xcf\xb7\xf0\xbc\xf4\x77\xe2\x7c\xd3\xbb\x37\xdf\xc6\xeb\x9f\x01\x00\x0a\x2f\x29\x0e\xb8\xbd\x15\xc6\x04\x94\xe0\xe3\x2a\x07\x3d\x7e\x82\xf3\x06\x06\x41\x32\xf7\x31\x6a\x4f\xc9\x47\xb0\xde\x14\x2a\xe1\xd1\x2f\xde\x17\xd7\xe9\xf0\xdd\xb3\xc4\x97\x71\x2b\xdd\x44\xbc\x7e\xa4\x19\xd8\x3a\xa3\xbd\xdc\xa0\x3d\xb9\xcc\xa1\xef\x47\xae\xdc\xa8\x88\x3d\xa2\x4f\x43\xd9\x02\x40\x03\xe1\x0c\x24\x44\xf2\xe9\x5f\xfe\xba\x29\xce\xd5\xa4\x4e\xc9\x8c\x62\x01\x65\x96\x38\x71\x8b\x29\x97\xdd\x2e\x1a\xde\xd2\xc4\xbf\x12\x8e\x6a\x52\xf1\xc7\xb3\x86\x97\xd9\x9f\x5d\xbe\x52\x18\x92\x19\x84\xa2\x6d\xdf\x5c\x7a\x82\x96\x7c\x2f\x0d\x03\x69\x2d\x21\xc8\xa8\x51\x57\x22\x1c\x31\xa2\xad\x71\x37\xae\xea\xb1\x25\xa8\x29\xca\x9a\x15\x41\x90\xaf\xe9\xa6\x5c\xc3\xe1\xbe\xff\x9d\x78\xa4\x33\x7b\xb9\x78\x1c\x11\x90\x5f\x98\xee\xa5\xb1\xd5\x26\x3a\x70\x63\x21\x1f\x72\xd9\xd2\xc3\x03\x04\xc2\x4f\xfb\x9a\x0e\x5b\xdf\x1e\x2c\x36\xc9\x92\x5c\x6c\xc4\xbc\xec\x79\xb9\x6a\x67\x1a\x5a\x93\x46\xc0\x5d\x23\xf2\x46\x2d\xdd\xda\x02\xa1\xa5\xda\xab\x9d\x34\x67\x3b\xaa\xed\xa8\xac\xef\x88\x82\x49\x47\x89\xc6\xad\x3b\x35\xad\xf8\xed\xb0\x77\x06\xbb\x81\x50\x0d\x00\x34\x70\x80\x9a\x4d\x46\xc2\x48\xf8\xd5\x8e\x68\xef\x51\xde\x4f\x2c\xfc\x00\x23\x66\x6a\x30\x40\xa9\x4a\x04\x00\xcd\x49\x1d\x76\x22\xc2\x87\x1d\x7a\x4a\x98\xbe\x09\x2f\x10\xe3\x4b\xed\xa4\x5d\x0f\x87\xb8\x08\x5a\xff\xea\x29\x5b\x28\x7d\x17\x0f\x82\xd5\xf3\x0d\xf1\xff\x57\x79\x84\x57\xea\x8d\x76\x62\x64\x6b\xfb\xc6\x97\x1f\xee\x58\xbd\x14\x46\x88\x39\x68\xfe\x82\xcb\xb5\x80\xc5\xc3\x48\x08\x5b\x26\x4e\x97\x07\xb3\xc7\x48\x19\xda\x5b\x4f\xf3\xd1\xe8\xa7\x9e\x3d\xfb\xa8\x10\x4a\x2f\xf7\x1d\x4f\xdd\xaf\x71\xc5\xe7\x80\x8d\xf7\x0c\x2c\x25\x06\x02\xea\x19\x00\x64\x94\x30\x9d\xe5\xdd\x5a\xd1\xfd\x15\x94\xe2\x2d\xff\x47\x45\x2f\x9f\x84\x2f\xf0\x3b\x6f\xd7\x43\xe2\x74\xd2\xbb\x79\x1b\x25\xe6\x9b\x1b\x65\x5a\xf3\x96\xcf\x5d\xe1\x98\xfc\x79\x43\x47\xf6\x0c\x34\x65\x3f\xe7\x79\x93\xc7\xf7\x81\x64\x4d\x12\xac\xd7\x93\x20\xad\x6d\x28\x35\x0e\xd6\xfb\x77\xd0\x40\x78\x55\xe7\x7f\x78\xde\x07\xaf\x8e\xbd\xe9\x10\xd3\xef\x5a\xcd\x76\x4a\x99\x12\xdb\xad\x48\xab\x99\x81\x62\x94\x84\x7e\xcb\x60\x4b\x0f\x1b\x78\xc7\xe7\xf8\xe7\x7d\xfd\x5a\x3d\x1f\xe1\x8e\x4b\x18\x79\xfc\x38\xe0\x37\xe6\x18\x14\xf3\x62\xed\xa5\x6b\x4d\xc1\xe2\x98\xd0\xa0\xd2\x95\x98\x08\x67\x10\x1e\x5a\x0b\x52\x20\xa6\xeb\x24\xfe\xcd\x13\x84\xb6\x05\xa7\x53\x00\xc8\xa8\x44\x33\xd4\x6a\x64\xd9\x2e\xf9\x36\x05\xf0\x14\xc8\x97\x41\xb8\xf7\x9b\x85\x6c\xa8\x2d\x9e\x15\x64\x38\x17\xb2\x05\x5a\x2b\xc2\x04\x4c\x78\x77\xc9\xa1\xc6\xae\xef\x52\x01\x60\x20\x4f\xd0\x84\x1e\x0c\x7f\x82\x13\x1a\xf9\xcb\x1c\x81\xd7\xae\x9d\x3c\xe7\xb5\xa4\x56\xda\x39\x51\x1a\x85\x37\x0e\xe9\xf5\x52\xf4\xab\xfd\x71\x49\xd4\x24\x02\x1e\x9b\xb3\x00\x03\x61\x00\x04\x69\xf9\x19\xb2\x46\x6b\x7c\x7c\xf9\xe2\x2e\xbd\x09\x3d\x2c\x12\x56\x63\x34\xfe\x4d\x90\xa3\xe7\x84\xe0\xcb\xd4\x79\xd3\xed\xd4\x5b\xee\x7d\xab\x25\x9f\x87\x3f\x3e\xfb\x1f\x67\x7d\x56\x95\x67\x3d\x1f\x86\xa2\x3f\xed\x79\x4d\xbe\x33\xb2\xb1\xb1\x9c\xd2\xe2\x67\x48\x67\xcf\x43\xf8\x32\x77\x6d\xba\x7e\xe5\xf0\x97\xc3\x23\x18\xe8\x4f\x11\xd9\x61\x6c\x37\x95\x0e\x10\xdd\x26\x1b\x76\x26\xaa\x7a\x58\x45\x4e\x79\xd7\x8f\x69\x1a\x4f\x81\x93\x7e\x1e\xb9\xa7\xe1\x83\x11\x8f\xd2\x96\x7c\x56\x47\x6e\x86\x69\x39\x5f\x47\xf6\xc7\x1f\x76\xca\xd7\x33\x9c\xe1\x04\x45\x04\x6e\xbe\x16\xc6\x46\x46\xcd\x9a\x4a\xfd\xc0\x1c\xf7\x19\x13\xff\x77\x8b\xb3\x7b\x5a\xbe\x1b\x0a\x86\xfe\x05\x26\x1c\x8e\xbb\x29\x0b\xda\x10\x5d\xb3\xc0\x62\x98\x7c\x25\x04\xf5\x67\xad\x41\x1d\x1f\x99\xde\x5b\xb0\x70\x92\xe0\xf3\x97\xfd\x2f\x72\x90\x50\xfc\x93\x9e\x9b\xb8\x7f\xb9\x39\x2d\xbf\xdb\x41\xfb\x57\xc3\xaf\xda\xe6\x1b\x8b\x7b\xbb\x36\x97\x22\xdc\xe7\xef\x98\xff\x82\x00\x39\x25\x1c\x45\x0e\xa2\x62\x79\x70\x21\x7d\x68\xe5\xdc\x84\xc3\x3b\xf1\xe4\x9e\xc7\x01\x8b\xc9\x8c\x8a\x1b\xd9\x08\xd0\xab\x57\x0a\x43\xcc\x67\x2c\x58\x3d\x7c\xef\xb6\x14\xa2\xe9\xa1\xbc\xfa\xd9\xc5\x77\x31\xda\x77\xaf\x81\x6d\x41\x76\x99\x9d\xfd\xbc\x6b\x41\xe3\xc5\xc1\x3b\x0a\x41\xf6\x4d\xda\xd8\x0f\x1b\x1e\x9c\x69\xbe\x3a\x1b\x67\xd2\xcc\x7f\xc8\xd9\xe5\xbf\x03\xdb\x10\xc4\x1e\x8d\x3b\xf8\x57\x3a\x7a\x9d\x1c\x59\xba\x93\xd2\xfa\xfe\xe6\xdf\xb3\x4f\xb2\x9f\xac\x1a\x0a\x16\x8d\xca\x76\x64\x3a\xb4\x3c\xbb\x56\x4a\x8b\x42\xb7\xdd\x01\xc2\x23\xe6\xe1\xae\x66\x91\x97\x20\x60\xe4\x07\x01\x8f\x1c\x90\x0f\xa4\xcf\x15\xc2\x8a\x94\xec\x0b\xac\x39\xa6\x73\x2b\x90\xaa\x9e\x65\x8a\x24\x1a\x44\xac\x62\x7d\x57\x6d\xc5\xcf\x9a\xb1\x5b\xe8\xe1\x67\x41\x67\x3c\x7b\xb4\x52\x10\xa4\x65\x24\x9d\x03\x26\xbf\xc8\x58\xd0\x37\xe9\xd3\x96\xcd\x43\xb7\x60\x5d\x55\xdb\xa7\x9a\x52\x4c\x7f\x4a\x91\x8f\xf1\xc6\x3a\x36\xbb\xfc\x93\x9e\xb7\xef\x58\x20\x28\x35\x79\xfc\xd7\x79\x1e\x55\x34\x4d\x75\x13\xea\x69\x6d\x7a\xd3\x5a\x40\x7e\x7c\x49\x7b\x8c\x79\xb5\xf9\x9e\x2e\x05\xe8\x87\x34\x00\x10\x3a\x90\xb8\xa5\x10\x5a\x43\x34\xf5\x6d\x6c\xeb\xce\x50\x9b\x2c\x9f\xf6\x87\xc1\x20\x93\xb0\x74\xec\x88\xf1\xfb\x2f\x6f\x87\x24\xe5\x49\x08\xb0\x4c\x9d\xe1\x10\x64\x6e\x3c\x88\x03\xd3\xaa\x85\xd9\xaf\xac\x38\xd9\x97\xed\x3e\x5c\xe4\x7a\xe6\xaf\xe9\x14\xeb\x5f\x8c\xef\xf5\x39\x45\x29\x34\x49\x55\x9e\x97\x3d\x6f\x58\x97\xc6\xdb\xb7\xa0\x84\xdc\x85\xab\x68\x7f\xab\x59\xaf\xdd\xdc\xd3\x1e\x2b\x71\xa3\xc1\x23\x13\x6c\x12\x94\x04\xf8\xd2\x52\xca\xc6\xfd\x55\x90\x34\xee\x17\xf9\x10\x01\x24\x6e\x9f\x4b\x10\x68\x92\x48\xae\x49\x79\x90\x1d\xcf\x22\xa7\xca\xde\xb8\xb0\x02\x6f\x21\x0c\x50\x5e\xf7\xf0\xed\x0b\x41\xa0\xdd\xd3\x79\x59\x0f\x73\x13\x73\x77\x58\xca\x5f\x23\xf1\x0a\xec\x15\xd9\x7e\x7d\xe6\x9b\x81\x5e\x3f\x43\xb5\x6a\x3a\xc5\xee\x11\xd4\xea\x2d\xf6\x7a\xe3\x8a\xc7\x30\x74\x5f\x5b\x69\x41\x14\x17\x50\x8f\xd9\x1e\x2d\x50\xe0\x3b\x91\x23\x5d\x4b\xdf\x73\xd5\x4d\xe8\xb3\xe7\x69\xcc\x32\xd7\x7b\x67\xc5\xe2\xa1\xc7\x85\x4a\xc4\xf4\xdc\xc4\xd7\x34\x6f\x46\xec\xee\x2a\x84\x60\x81\x70\x8d\xdf\x40\x1d\xc6\x59\x99\xc2\x2d\x02\xc3\xd1\x94\xf8\xcc\x51\x62\x10\x53\xa5\xae\x7f\x2f\x26\x1d\xe5\x2e\xb4\x45\x6d\x04\x41\x4c\x0a\xb5\xa4\x9e\xcf\x44\x74\xc7\xeb\x2d\xf7\x7b\x37\x95\xd2\x67\x7e\x45\x39\x7f\xa7\x4d\xee\x6e\xf0\xf8\x0b\x36\x41\xf0\x9a\xec\xc6\x23\x54\x88\xff\xda\x2a\xb5\xa5\x9e\xc7\x5a\xf0\xce\xbe\x97\x19\x86\xc4\x49\xe9\x60\x57\x40\xdb\xb3\x4a\x32\xbd\x01\x16\xdd\x82\x7a\x4e\x18\x32\xaa\x80\xd1\xf4\x9b\x87\xdb\x63\xa2\x6f\x17\x94\x65\xfb\x96\x0e\xbe\xee\x7c\x97\x5f\x08\x6a\x4f\xe6\x15\xa3\xa4\xeb\xeb\xf7\x17\x35\x89\xcd\x05\xd6\x2a\x92\xb1\x65\x39\x25\x0c\x9d\x6a\xc1\xec\x59\x04\xa5\x13\xb7\x49\x35\xff\x89\x00\x70\x01\x2a\x9e\x5e\xfb\x6c\x00\x35\x37\x15\xf4\x62\xd6\xd6\xaf\x22\x67\x49\x13\x32\xca\xe2\x7b\x3f\x0c\xa8\x41\x7a\x77\x52\x4e\x2a\xc9\x7d\xa6\x78\xea\x1f\x49\xbe\xc6\x06\x0f\xe4\x92\x48\xc3\xcc\x6f\xbe\x96\x3c\xac\xe1\xf9\x67\x1c\x0b\x96\x4d\xd4\xe4\x38\x7e\x20\x7b\xe8\x57\xd7\xbf\xa7\x66\x96\xc3\xe3\x6a\xad\x25\x30\x0d\x7c\xa1\x27\xde\x94\xe4\x3e\x7b\x91\x25\x6d\x45\x71\xf3\xad\x62\xf0\x0e\xfc\xaf\xb2\x24\x15\x37\x0e\xe7\xb1\x1d\x58\x08\x58\x11\x67\x9f\x4d\x13\x74\x6f\x65\xc9\xf3\x69\x13\x8d\xfb\x65\x50\x1e\xe7\xd8\x5a\xf1\xf3\xde\xb2\x4e\xaa\xfc\x31\xcb\x06\xc7\x9a\x45\x20\xc8\xc4\xaf\x5f\x9b\x1e\xea\xf2\x89\xaa\x7c\x5a\x62\xf7\x66\x5a\x4b\xb9\xb8\x2e\x6d\xd3\xbf\x66\x46\xdb\x3f\xcb\xee\x8e\x05\x0c\x32\x91\x41\x18\xb7\x18\xbe\xc2\x1c\xfd\x64\xb9\xfe\x91\x41\x1a\x1f\x3a\xd4\x26\x1f\x07\xb1\x0a\x7b\xbb\x0a\xa2\xa4\x23\x1c\xf9\x41\x30\x32\x81\x6d\x6c\x6f\xfb\x8d\xa0\xd6\xeb\xa7\x7c\xa6\xf2\x0d\x4d\x6a\xb0\x32\x17\x30\x8a\x1d\xf0\xa5\xe9\x53\x19\x21\xf5\x2a\x29\x7e\x46\x83\x6a\x26\x34\x50\x51\x90\x58\xc5\xc1\x9a\xdf\xdb\xb6\x01\xf1\xbb\x5d\x6f\x79\x86\xd5\x67\x63\x28\xfa\x5a\xd6\x12\x61\x1c\x82\xf7\x6c\x72\xe8\xfb\x8b\xca\xd8\x63\xca\x7f\x56\x2d\x2a\x49\xaf\x3d\x32\xfc\x0f\x1e\x25\x36\x18\x14\xf7\xef\x82\xe4\x0a\x09\xb7\x25\xeb\xd8\xe1\x80\x50\xa0\xdc\xd6\x6a\xe6\xbd\xbc\xfe\x86\x2c\xcf\x86\x11\x00\xc0\xa9\x22\x5b\x1e\x3a\x03\xae\x5b\xe2\x72\x6b\xa1\x3f\xb9\x15\x34\x83\x87\x9a\xff\x03\xe6\xf5\xb5\xe4\x01\xa4\xbe\x80\xa9\xeb\xeb\xd9\xfd\xc9\x70\x7a\x9b\x3b\xbc\x84\x7a\xfb\xde\x3f\x9f\x31\xb1\xb9\xcb\x6f\xa3\xa4\x64\xa1\x2e\x9d\xef\x32\x64\x30\xc8\x72\x89\xc0\x89\x4d\x14\x00\xbe\x1a\x01\x28\xba\xb8\xac\xa4\x46\xa8\xf6\xb3\xb9\xf7\x1d\x89\xbb\x9d\x08\x00\x40\x30\x8d\xf2\x2b\x7f\x53\x44\x97\x44\xa0\x9b\xa8\x0a\x1e\xc1\xb4\xb2\xe8\xf8\xf2\xa4\x88\x21\x89\x46\xef\x8b\x30\xd6\x53\xfe\xf5\xd3\xcb\x00\xb0\xb7\x34\xbe\x30\x5d\x36\x75\xbe\xac\x8d\xdd\xa0\x59\xb2\x58\xc0\x48\x15\x41\x3a\xa9\xb6\x91\xf7\x45\xb7\x0d\xe4\xaa\xfe\x63\x43\x9d\xb5\x9c\xd2\xc6\x3e\x30\x8b\x33\xd0\x10\x70\x12\x65\x4e\x32\xe6\x9a\xa7\xad\x15\xf0\xe3\xdf\x6f\x00\x00\x40\x06\xe1\x68\x54\xf6\xb4\xed\x62\xac\xd5\x9d\x40\x39\x76\xbb\xdd\x93\x6c\x13\x0b\x0e\xe5\x95\x27\xd1\xc6\xc8\x4b\xfb\x9f\x71\x3c\xb2\x77\xce\x29\x68\xc9\x72\x69\x14\xdf\xb1\xfb\x2e\x09\x90\x8d\x5b\x95\x2d\x09\xf3\x2e\x87\xc4\x4c\x75\x8e\x8a\x16\x27\x9e\x81\x0d\x64\x40\x30\x92\x30\x54\x39\x42\x59\x9d\x37\xbd\xaa\x62\xe5\xc3\xbf\xcd\x66\x15\x29\x2b\xda\xfb\x6a\xc9\xd3\xc7\xde\x5b\x39\xbe\x7b\x4d\x39\xb5\x7a\x41\xc4\xd2\x40\x20\xfc\x0f\x13\x5d\xeb\xf9\xe1\x3b\x60\xe1\x35\x6f\x5a\x7f\xc3\x3f\x4e\xf6\x55\xf5\x83\x05\x75\x88\xae\x81\x6d\x81\x71\x9b\xe1\xab\x69\x13\x27\x4a\x00\xb0\x34\x3b\x76\x2f\x80\x20\xb2\x6f\xd5\x9b\xdf\x9a\xb0\x82\x33\xc1\xf0\x33\x70\x75\xeb\xbb\x5a\xff\xd1\xa9\x5f\xab\x2f\x3c\x41\x09\xf0\xe0\xc9\x90\x0b\x22\xa3\xc5\xde\xe6\x0c\xec\x89\x40\x23\x81\xa7\x8e\x76\x78\x40\xd5\x31\x52\x0a\x66\x5e\x48\x15\x5b\x5f\xb2\x61\x10\x6f\x68\x67\xed\xb8\x2d\xde\x22\xbc\x43\xa0\xd4\x02\xc2\x0b\xdb\x18\x6d\xaa\xfb\x1e\xfe\x83\xee\x93\x20\xc2\x9a\xdb\xca\xb2\xb5\x45\x13\x0c\x97\x11\x25\x84\xd5\xba\xfc\x3b\x06\xcb\x81\x2f\xc6\xb1\xb7\x76\x94\x87\xee\xa5\x54\xa9\x14\x6f\x32\x87\xc1\x5d\x79\xc3\xcb\x6c\xc9\x98\xa3\x6b\x86\x53\x9c\xf0\x84\xd8\x40\xfa\xff\xc2\x3e\xf3\xab\x43\xc6\x49\x27\x35\x10\xc2\xd0\xd6\xf6\x9b\xee\x8f\x96\x76\xc6\x5e\xc5\x9b\x24\xdc\x0c\x68\x65\xbd\x09\x07\xb7\x6d\x4a\x42\xd4\xc1\x27\xec\x04\x62\x62\xa7\x1d\x08\xa2\x18\xd7\x15\x0d\xdd\x3e\x05\xd7\x2b\xf2\x5b\xf5\x12\x20\x80\x77\x4b\x96\xcb\x5e\x16\x82\xa7\x97\x3a\x4f\xf5\xf0\xc6\x24\x41\x62\xb4\x0a\x64\x20\x68\xa0\x62\x82\xe7\x9d\x31\x08\xe0\x3c\xac\x44\x3f\x19\xe1\x88\x69\xad\x37\xe5\x41\xf2\xea\xfe\x10\xf3\xa8\xc9\xe5\xee\xea\x4d\x49\xae\x26\x25\x00\x72\xfd\x87\x5a\xdc\xc0\xf0\x37\x63\x1f\xdb\x3d\x29\xdb\x03\x4a\x29\x4c\xaa\xb6\x3f\x38\x6c\x2d\x1a\x2b\xf0\x3e\x33\x02\x98\xe5\x2d\x73\x0a\x1e\x7a\x92\xe7\x67\xcb\xa8\xc4\x07\xdb\xe5\x59\xe1\x37\x01\xbf\x44\x01\x08\x92\x0b\xeb\xf3\x1b\xc0\x76\x48\x4d\x9b\xdf\xaf\x81\x17\x33\x7e\x20\x49\xb4\x1d\xd7\x1d\xdf\x88\xff\x59\x0c\xe0\xeb\xc8\x21\x03\xb0\x9a\x01\x9b\x5e\x54\x6d\xd1\x9f\xcd\x1f\x6f\x2f\xb8\xf5\x1a\x85\x52\xce\xce\xd3\xc8\xf5\x10\x65\x8b\xf9\x94\x6d\xee\x1e\xcb\x5e\xdf\x15\xde\x77\xca\x1b\xb0\x6b\xc5\x29\x37\xd1\x4b\xc3\xcc\x77\x29\x27\x7e\x4b\x8f\x62\x15\x5a\x89\xd5\x66\x42\xd5\x13\xce\x82\xbf\x83\x63\x18\xad\xae\x8b\x21\xf7\xee\xef\x2c\xb9\x40\xb7\xea\xf8\x28\xa8\x8d\x11\x0a\x78\x6f\x0a\x20\xcd\xbd\x9b\x56\x1c\xec\xb7\x16\x23\xbb\xc3\x3d\x41\x00\xca\x5c\xf4\xa6\x87\xa3\x29\x71\xd9\xa0\xc8\xae\x3f\xca\xa8\x90\xe4\xbf\x46\x88\x61\x2c\xc9\x11\xd1\x10\x1e\xd5\x52\x76\xd1\x24\xb1\x1f\xa3\x10\xc6\xd7\x44\xd9\x5c\x55\x43\xbb\xea\x40\xca\xf7\xa2\xde\x36\xd8\xed\x94\x46\x40\x9e\xc8\xbf\xda\xbe\x3d\x63\xae\x59\xda\x57\x6e\xad\x22\x3b\x7b\x12\x1c\xf9\x8c\x3d\x81\x25\x7e\x87\x25\x83\x0b\x65\x4f\xc5\x07\xdf\xf8\xb3\xc2\xd5\x12\x33\xa1\x08\xd8\xba\xa8\x7c\x82\x19\xc9\xb3\x06\x62\x00\x9b\x31\x9f\x87\x09\x27\x46\x21\x93\x2d\xd0\x3c\x5f\xf1\xa7\x99\x55\xc8\x5b\x0e\x80\xfe\x57\x3f\xd6\x17\x30\x7c\x17\x5b\x68\x08\x7b\x86\xab\x5e\x3f\x59\xfa\x92\x22\x45\xc1\x71\x8c\xc2\x4f\x06\x16\x17\xd3\x7d\x9e\xf4\xa0\x7f\x28\x3a\xd8\x86\x0d\x30\x9f\xb1\x60\x5f\xd8\x3f\x92\x82\x41\x12\x01\xdf\x06\x40\x0a\xfd\x1d\x9a\x40\xd3\xf9\x1a\x47\x4d\xa5\x67\xa0\xe4\x01\xc4\xd5\x00\xc8\x1d\x81\x09\xf7\x48\xac\xeb\xf8\x8d\x6e\xdf\x37\xdc\x3b\x77\x13\xa6\x2a\xde\xdc\x0c\xc3\x6c\x21\x67\xd7\x14\x8f\x07\x96\xfd\xcd\x44\x6e\x45\x53\x82\xc0\xe8\x42\x2d\x6a\x02\xd0\xff\x7e\x71\x01\x51\x41\x48\x79\xc7\xb1\x93\x1c\x59\x92\xa8\x40\x39\xb6\x3f\x15\xa1\x89\xf2\x6b\x44\x4e\xbd\xd8\x88\xa0\xe8\x16\x00\x30\x39\x5c\x6f\xd9\x8f\x40\x9f\x06\xfc\x36\xf7\x1e\xa3\xf0\xd3\x86\xe1\xd9\x4e\x59\x5c\x1a\x2d\xf7\x3e\xc4\xec\x69\x99\x91\xdf\x48\x03\x53\xb8\x08\xd8\x7a\xa5\x93\x28\x11\xb6\x66\x1f\x4a\xc1\x51\xaf\xd6\x9a\x80\xde\x57\x25\xfa\xf1\x19\x8b\x20\x98\x91\x12\x63\x93\x6a\xc6\xdd\x02\x50\xfe\xc5\x0e\xbd\xc4\x2d\x07\xb5\x7f\x24\x1f\xf5\x2c\xb7\xf6\xf7\x8a\x3d\xa6\xf9\xef\x64\x24\xec\xf2\x96\x19\x25\x3e\x87\x3f\x59\x1a\x96\xff\x88\x28\x80\xbc\x4e\x41\x3c\x6c\x30\x64\xd4\xdb\x2f\x59\xa1\xe9\x39\xa7\x49\xe9\x63\x89\x67\x35\xe1\x81\xc3\xe6\x2d\xef\x6f\x64\x79\x3e\xbf\xc4\x08\xfd\x30\x02\xa4\x28\x1b\xb8\x00\x60\xc6\x5b\xd8\xf1\xd2\xb9\xf7\x3a\xb8\x24\x6c\x37\x9b\xfb\xee\x85\x1a\x44\xd7\xc0\xde\x1a\xb3\xfd\xec\xd9\xf5\xa1\xaa\xfc\x8b\xf6\x5c\x24\x34\xd0\xe0\xbd\x50\x5c\x66\xc1\x71\xa3\xac\xb4\xd9\xd8\x34\x2f\xb8\xb2\xe4\xf8\xfe\x3e\x85\xb6\x36\x31\xf2\x31\x8a\xed\xf8\x7d\x78\x9f\x26\x14\x45\xfc\x11\x22\x55\x07\x99\x03\x4c\x5c\xd9\xe7\x89\x28\xf6\xb9\x2f\xaa\x96\xb6\xd0\xa8\x84\x33\xb1\x14\x3a\x29\x82\xed\xc1\x67\xe4\x6b\x1e\xad\xad\xd1\xfe\xa4\x5e\x31\xe0\x2e\x1f\x40\x11\x5f\x0a\x66\x4e\xf2\xeb\xb6\x5e\x0e\x88\x7a\xf4\x79\x5a\x4c\x7a\x8a\xc5\xd7\xb9\x6b\x45\xb3\xd1\xfd\xe7\x21\x8d\xe5\xdd\xeb\xb3\x3a\xb0\x32\xa3\x65\x5a\x6e\x58\x01\x0c\x20\x46\x37\x03\xf2\x0d\xc0\x2b\x60\x06\x57\xd7\x1f\x33\x9a\x79\x6f\xaa\xb1\x86\x1b\xd3\x7a\x54\x15\x04\xf0\xf4\x9b\x39\xb6\x3a\x99\x3c\x0c\x71\x34\x25\xce\xa3\xe4\x03\xa0\x81\x8a\xa9\xf5\xc7\x44\x5d\x35\x99\x0e\x90\xf3\xda\x9e\x4b\x16\xdf\x80\xae\xa3\x84\x0f\xf1\x9c\xfe\xfd\x66\x9d\xdf\x0c\xda\x82\x8c\x5e\xf2\x68\x92\x29\x12\x68\x30\x00\x32\xc5\x04\x4e\x06\x94\xd0\x46\xfa\x95\xd1\xcc\x53\x13\xee\x2d\xdf\x1e\xab\x2c\xc3\xa3\x97\x9a\x81\x46\x4e\xb1\x87\xad\x15\x31\xf7\x83\xc9\xe4\x66\x8f\xfe\x07\xb1\x97\xd4\x38\x1b\x0f\x58\x91\x8d\x37\x96\xf8\x73\x45\xe4\xcb\x9c\x1c\xd3\xda\x8e\xac\x16\x68\xad\x33\x74\x4a\x7b\xf3\x3b\x37\xc8\x74\x33\x1f\x9a\xc0\x96\x2b\x03\x48\xc9\xdd\xa0\x98\x9e\xe0\x80\x81\x26\x4b\xc8\x06\x2e\x9f\xf6\x73\xd6\x20\x3c\xb4\xf1\x87\x82\x65\xff\x5b\x9b\x83\xdb\xa2\x47\xf6\x78\x68\x69\x20\x9e\x40\x06\xb6\x3e\x20\xaf\x1b\x7b\x5e\x7c\x97\x61\x27\xe5\xcb\xbc\xb8\x1f\xd8\x34\x3a\xc6\x75\x28\xfa\x5c\xd5\x86\xd6\xe2\xee\x8b\x3e\xb6\x07\xad\xb2\x68\xbf\x33\x31\x0f\x5f\x91\x3f\x8a\x8d\x14\x30\xd3\xc6\xad\x5e\x9d\x21\x30\x91\x98\x7b\xd1\x48\xfb\x49\xb1\x9a\xd9\x97\xc8\x2a\xa2\xaf\xf7\xc4\x56\xf2\xb6\xc4\x23\x75\xbd\x4d\xa7\x3a\x8e\x3e\xbb\x8e\x48\x86\x18\x05\xff\xf3\x29\xe6\x49\xe6\xa3\x8f\xa7\x4b\x0e\xb3\x27\xb4\x86\x53\xea\xfb\xdf\xd9\xd9\x93\xb1\x2f\x09\xd2\xe4\x71\x5f\xd7\x32\xb2\x83\xd1\x27\xa0\x5c\x23\xa8\x62\x1c\x10\x3a\xb2\xf5\x3e\x30\xb6\x13\x01\x98\x88\x84\xe5\xfb\x57\xce\xdd\xa4\xa7\xe0\xbd\xb2\x7c\x41\x07\x03\x80\x6a\xd4\xd2\xbb\xb2\x9d\xb6\xdb\xa1\x98\xbb\x3a\x5e\x9a\x7e\xd0\x7f\xf1\x9e\xeb\x7b\xf5\x8c\xbf\x5b\x5e\xbc\x31\x5f\xe0\xcd\x78\xe6\xad\xfc\x5b\x52\xef\x98\xd6\x15\xa1\xc0\x3f\xe9\xb6\x38\x2a\xaf\x9e\xa4\xb0\x8c\x54\xd0\xad\x3e\x39\xcd\xc7\x35\xd9\x6c\x06\x3e\x8c\x51\xf0\x70\x5d\x1e\x2e\x7f\xf1\xbe\x3c\xe8\xfe\xc6\xfb\xab\x5f\xe5\x62\x22\x13\x07\x98\xe2\xa9\x77\x84\x84\x73\xd6\x4c\xb8\x47\x68\xd8\x8d\x5d\x3a\x4f\xe5\x07\xbe\xb0\x10\xad\xcd\xc6\x6f\xac\xf9\x71\xfa\x58\x38\xce\x86\x76\x2a\x95\xe8\xa0\xc5\xfb\xf2\xcf\xfd\xed\x25\x8b\xef\x35\x34\x50\x91\x2e\xba\x81\x12\xde\x42\x5d\x0e\xfe\x69\xdf\xa7\xa7\xb1\x65\xd4\xab\x4d\x80\x2d\xab\x6b\x85\xce\x8f\x69\x7d\x88\xaa\x65\x7e\x2c\xa1\x6f\x83\x99\xec\x62\xba\x25\x00\xac\xdd\x65\x9f\xbd\x26\x90\xa7\x50\xfe\x85\x60\x85\x00\x26\x8d\x1e\x00\xa0\x98\x01\x00\xdb\xb7\x23\xc1\xd9\xe7\x59\x8f\x25\x82\x8a\x1d\x20\x17\xea\x6f\x39\x36\xa9\x37\xf0\xe3\xcc\x93\x6c\x35\x22\xc1\x6a\xc2\x86\xbd\x5e\xc5\x50\x08\x0d\xad\xf9\x7d\x52\x7a\x56\x43\x89\x2a\x04\x0e\x75\x79\x4a\x4f\x50\xd9\x4a\xd2\x3e\x22\x82\x29\x04\xd2\xbd\xc2\xb2\x53\x02\xdb\x16\xc6\xa6\x5e\x44\x72\xa2\xdf\x96\x6b\xcd\x5a\x8d\x2d\xb1\x0a\x4b\x5c\x37\x3d\x8b\xb8\xf4\x61\x2e\x72\xa2\x07\x3e\x6c\x53\xfa\x13\xa9\xbf\x01\x8d\x8b\x3b\x2a\xe7\x00\xa1\x9f\x40\x80\xba\xad\xaa\xe4\x00\xc1\x0a\x1b\xda\x89\xfd\x7e\x32\xb7\xd6\xe1\xaa\xd8\x89\x4a\xdc\xc7\x0a\x0f\x94\xce\x9e\x67\xf7\x49\xa7\xd7\x53\x51\x54\xb4\x0f\xe7\x91\xbc\x0c\xc7\xfb\x80\xff\x26\xce\x38\x8c\x18\x00\xf0\xf6\x51\x74\x9b\x78\xf9\xc9\x0b\xfd\x9e\x8a\x6c\xb3\x7d\x02\xee\x9d\x4b\xef\x90\x28\x5a\xf3\x7b\x15\x7f\x97\xac\x87\x2e\x97\x9e\xe5\xe0\xa5\x49\x7f\x03\x40\xaa\x0b\x00\x50\x60\x93\xf7\xbf\x62\xad\x62\x19\x89\x11\xab\x33\x04\xed\x2d\x29\x79\xd6\xdf\xec\xcf\x93\xe8\x43\xc5\x77\x6e\x85\xec\xa0\xa8\x4c\xdc\x75\xdb\x51\x35\x4e\x7d\xf2\xc8\x42\xed\x91\xb0\x50\x54\xc0\x01\xfb\x7f\x53\x28\xbc\x3f\xaa\xfb\xdd\x30\x3d\x21\x40\x26\x8f\xd2\x1a\x4c\xb7\xf8\xa4\xc8\x26\xd4\x17\x27\x3f\xd8\x45\x82\x78\x35\x60\x72\xbb\xb5\x17\x41\x2b\x6e\x50\x4d\x0b\x04\xe0\x00\xfc\xab\xe6\xe7\x87\xed\x5f\x8f\x23\xf1\x01\x20\xc1\xef\x52\xa2\x9d\x8c\x00\x40\xfd\x22\x32\xf2\x54\x3c\x01\xab\x02\x26\x68\xc0\x7e\x77\xc1\xc8\xde\xb6\x5f\xf7\x07\x27\x29\x7c\x3c\x09\x9a\x88\x0f\xca\xdc\x49\x31\xe2\xae\xd1\xca\xca\x39\x95\x15\x88\x99\x5f\x5c\xff\x9d\x41\xfb\xee\x7f\xaa\x92\x9d\xef\x5f\xd8\x13\x3f\x39\xef\x79\x33\x8b\x5f\xa8\x1b\x59\xf0\x49\x47\x57\x0d\x32\xca\x75\x92\xc4\x84\x2a\x4e\xec\xb8\xf8\x62\x37\x88\xb9\x8c\xe1\xd8\x8f\x14\x8e\x13\x10\x7a\xf9\xb0\x7f\x10\xda\x84\xf1\x7e\xa2\x5e\xc5\xa3\xa2\x5c\x03\x50\x9e\x74\xbc\xbd\x07\x5e\x87\x45\x41\xe0\xef\xec\xb7\x05\xf9\x95\xf9\xaa\x9e\xe0\x03\x40\x3a\xda\xfa\x75\x9e\xa0\x82\xbd\x96\xdd\xf6\x9d\xe9\x24\xfe\xbf\x83\xb2\x11\x52\x14\xfc\x4f\x22\x1a\x9d\x40\xad\xf4\xe7\x3b\x77\x4f\x7e\x11\xbe\x5a\xed\x9d\xed\x94\x46\x75\x4a\x7f\x7c\x22\x7c\x57\x7a\xa0\x1b\x8d\xca\x7f\xf7\x30\x7e\x59\x26\x80\xf9\xfb\x9f\x9a\xa8\xb4\x66\x86\xd9\x5d\x16\x18\x6e\x70\x2f\x1b\x83\xf1\xda\x1c\xd2\x4d\x60\xc8\xd3\x03\x00\x46\x66\x48\x4f\x37\xe2\x8a\x4e\xd4\x59\x92\xd8\xe4\xd1\xe7\x26\x69\xfd\x0a\x05\xfb\xf3\x39\x42\x66\x08\x18\x80\xb1\x7f\x75\x80\x9c\x59\x16\x94\x54\x26\x75\xd0\x4e\x0e\xb6\x07\x3c\x70\x8a\x7c\x4d\x87\x22\x60\xe6\x9a\x32\x29\x5f\xd6\x3e\x0b\x15\x42\xbf\xf3\x3e\x10\xc7\xfd\x1a\xf6\x52\x50\x23\x9f\x10\x55\x21\x6e\x2f\x38\x23\xe2\x7b\x58\xbb\x9d\x4e\xf6\xbf\xee\x56\xb8\xe5\x53\x89\xd6\x42\x99\x4d\xfb\x4f\xdc\xd3\x1a\xde\xe3\xc2\xf4\xef\x87\x03\x6f\x69\x4d\x70\x20\xed\xd0\x79\x30\x69\x0b\x90\x22\x37\x37\x55\xdf\x32\x36\xa1\xcd\x99\x16\xf7\xe7\x6c\x4a\x8a\x12\x92\x81\x4e\x90\x41\x38\x72\xd5\x92\xe7\xeb\x75\xac\x85\x74\x18\x52\x56\x34\x91\xff\xe7\x46\x19\xd3\x5f\x9f\x84\x9c\x85\x0a\x8f\x3c\x4e\x97\x32\x4a\x4e\x14\x7a\xcc\xa8\x18\xd2\x75\xe9\xf1\x44\xde\xd2\xc1\xa1\xa1\xb5\x3d\x45\x91\x0a\x43\xb7\x12\x2d\x6a\x98\xd1\x18\xf4\xe9\x1f\xab\x4a\x1c\xea\x35\x5a\x7c\x14\xe3\x34\x46\x91\x19\x13\xac\xd8\x02\x00\x72\x8b\x4f\xa0\x3c\x72\x10\x98\x49\x2d\xbb\x10\xe8\x48\x27\x69\xce\x3d\x62\x7c\x20\xfb\x70\xad\x39\x1d\xfd\x2e\x77\xd8\x21\x7e\xce\x56\xb5\x26\x30\x22\x64\xa8\xe5\xa0\xec\x7f\xa6\x60\x26\x4c\xf8\x02\xf2\x92\x46\xde\xbd\x5c\xd1\x3c\xc9\x52\x54\x15\x19\xf0\x6a\x0a\x63\x34\x58\x9b\x30\x41\xb3\x92\x41\x7d\x9f\xd0\xc1\x43\xd7\x4b\xe9\xe7\x71\x85\x0f\x47\x71\xf7\x06\xdb\x1e\x66\xcf\x7b\x86\xd9\xb5\xcb\x59\x58\x27\x56\x7f\x5d\xb1\xec\xdf\xaa\xf4\xdd\xa5\x15\x4c\x4a\xb4\x87\x43\x51\xb1\xf6\x01\xab\x2f\xdd\xbd\xc3\x18\x11\x76\x32\x26\x5b\x06\xb9\x3f\x3e\x9c\xab\x93\xe7\x0a\xd9\xe5\x33\x52\xf1\x99\x08\xbe\xb5\xd7\xe2\x0f\x37\xa9\x5a\x3a\x86\x00\xff\x91\x5d\x27\xa4\xe4\x21\x92\x1d\x8e\x09\x6f\x80\x00\x6c\x78\xa1\xf1\x3d\x3f\x07\x33\x9b\x7c\x13\x8e\xeb\x84\xe3\x5e\xc5\x04\xbd\x44\x52\x02\x30\xde\x4c\x4a\x98\x94\x4b\x5a\xc0\xf4\xd8\x27\x0b\xee\x2d\x89\x9b\x0f\x35\xf7\x55\x97\x65\x02\x7e\x95\x6a\x2e\x34\xb7\x8a\x53\x28\x04\xb5\xb2\xc1\xc3\x6a\xa8\xc3\x2d\x41\x3f\x20\x6b\x86\x11\xbb\x14\xe6\x18\x08\x02\x00\x39\x25\x68\xd0\x9f\x4f\xef\x79\x15\xda\x19\x6d\x76\x32\x5b\x26\xd4\x29\xaa\x4a\x2b\x45\xb3\x32\x00\x00\x30\x41\xaf\x2b\xa6\x2d\x72\xd5\x68\xcd\x4e\x5d\x59\xd6\xc4\x90\x02\xa8\x26\x2c\x18\x44\x18\x4b\xbd\xd6\x4a\x76\x6b\xbd\xe3\x51\x10\x14\xaa\x6c\xa1\xca\xf7\xb9\x27\x06\xdd\x54\xf3\xe3\xfc\xd5\x7c\x63\xbe\x50\xa1\xb5\x57\x58\x39\x16\x7e\x6a\x36\x1a\x97\x0c\x3c\x94\x4d\xa1\xba\x83\xab\x79\x43\x13\xe3\xa0\xbf\x16\x11\xd2\x11\xd9\x47\xe5\x7f\x6b\x33\x7a\xff\xaf\xab\x68\xf0\x56\xc2\xd8\xb1\xb5\x4d\xcd\x85\xa6\x56\x40\x2d\x3a\xfb\xf7\x22\xad\xca\xcd\x33\xf3\x3b\x2b\x97\x73\xa2\x91\xd9\x67\x12\x76\x41\x18\x24\xbd\x0b\x61\xba\xd9\x8c\xd8\x36\xa7\x52\x01\x18\xf5\xd1\xfc\xfa\x96\xd6\xd8\xe6\x5e\x68\xab\x72\x23\xb0\xc4\xe0\xe7\xd9\xa3\x14\x16\x76\x96\x22\x8e\x47\xfb\x97\x6d\xad\x6a\xaa\x89\x70\xcc\x71\x3f\x93\x77\xd5\x6d\x51\x76\x12\xfe\x68\x2b\xde\xc9\xa2\xc7\x32\x53\xd5\x05\x36\x02\xb6\x6e\x10\x3a\x44\xba\x2a\x4a\x62\x9c\xf2\xc8\x76\x7b\xd3\x85\xfe\xe7\x62\xf3\xf4\xd2\xa0\x77\x93\x22\x4c\x6c\xad\x62\xe0\x8d\x3e\x1b\x19\x75\x4e\x3a\xb6\x26\x2e\xa0\x60\xb1\x55\xe3\xc3\xdc\xd2\x48\xc3\x6f\x6b\xa9\xea\xb8\xdb\xbc\xc3\xde\xf9\x24\x3b\x4f\xac\x19\x8b\x25\xa4\x95\x9a\xea\xe3\xfa\xa5\xe9\x94\xbf\x26\xf0\xdc\x1b\xb0\x74\x3e\x48\xa6\x22\x02\xda\xdb\xf1\x03\x46\x4f\xc5\x1d\x11\x75\xaf\x50\x76\xd7\xe1\x71\xaf\xb1\x03\xb9\xdc\x54\x76\xa5\x25\x99\x7a\x29\xc5\x5b\x5a\x4c\x8a\x14\xda\xd7\x37\x4d\x7b\x1c\x3d\xfc\xc9\x31\xa8\xcb\x86\xf9\xff\x59\x13\x4e\xb2\xb9\x1a\x75\xf5\x38\xdb\x73\x6f\xa5\xf5\x71\xe0\x88\x7d\x1f\x03\x5e\x7d\x29\xfd\x9c\x00\x5f\xfe\xc1\x46\x73\xcb\x7e\x60\x53\x8b\xa1\x53\x5d\x5d\xd8\xc1\x94\xf6\xe8\xe2\x42\xaf\xf7\xfc\x86\x62\xf9\xf2\x94\x94\x80\x49\x25\x5d\xaf\xb3\x81\x44\xeb\x1c\x51\xa4\x69\xad\x3f\xff\x9a\xbf\x83\x01\x86\x8e\x8f\x09\x00\x70\x1a\xd3\xc7\xc2\x34\xa5\xde\x80\x16\xd8\x6a\x26\xdf\x2c\xa9\x69\x5b\x09\x93\x01\x23\x4a\x84\x84\xdb\xfb\xd8\xfa\x93\xd8\x71\xfa\xb8\xba\x12\x73\xec\xba\x9d\xa8\x77\xf3\x2d\xde\x97\x50\x7c\x10\x04\x39\x46\x49\x0f\xfe\xcb\xb0\x24\xc6\xb3\xfb\x08\x2a\x06\x5e\x75\x62\xc8\xca\xdb\x17\x49\x29\xde\xcd\xea\x91\xe0\x82\xfc\xe5\xc0\x78\xf6\x60\x0c\xea\x1f\x24\x2d\x95\x01\x20\xbc\x9a\x45\xe0\x25\x6d\xbb\x36\xf6\x0f\xc8\x5d\x4e\x7c\xa3\xed\x4d\xb1\xd0\xce\xad\x90\x63\xa3\x3e\xc4\x91\xdc\x7e\x92\x04\x52\xfb\xbd\xd2\x4f\xe3\x7b\xb4\xe3\xb7\xff\x9e\x6f\x7e\x9c\x50\x54\x14\x23\x37\xa2\x3a\xd8\x89\x9f\x11\xf6\x98\x85\x17\x1d\xee\xaf\x09\xfc\x92\xbd\x6a\x1e\x39\xfa\x6d\xf6\xe0\x6a\x71\x07\xb2\xd4\x04\xb2\x7d\x8e\xc6\x76\xb5\x64\xeb\x70\xc6\x72\x87\x0c\x19\xd2\x8b\x27\xb4\xcb\x0a\x03\x29\x63\x5a\x7f\x9c\x86\x28\xbc\xdf\x06\xb5\xd4\x58\x17\x61\x33\xff\x19\x42\x4e\x15\x11\xbc\xe6\x61\x2b\x67\xf9\xfe\xe5\x7f\xb5\x43\x42\x51\xf5\x14\xf0\x41\x2c\xa7\x14\x0a\x60\x84\x62\x9a\x28\xc2\x6b\x01\x0b\x16\x79\x2a\xab\x73\x67\xc3\x85\x69\xe0\x7d\x00\xf8\xd8\x01\x80\xe4\xad\x46\xc8\x16\x56\x0b\x28\x45\x61\x6c\x22\xd8\xd0\xe9\x5d\xee\x88\xcd\x33\xd1\xaa\x43\x35\x28\x76\xe6\x1e\xa8\xa5\xc1\x84\x43\xe7\x45\xda\xfe\xe1\x46\x33\x7e\x1e\xaf\xe2\x42\x07\x35\x18\x1a\x98\x92\x44\x46\x0c\x1b\xc4\x0d\x7d\xba\x5c\x0f\x0d\xf5\x02\xf9\xc8\x51\x80\x8e\x57\x11\x8e\x81\xc6\xd6\x67\x59\x21\x12\x07\x27\x87\x89\xa7\x96\x8b\x57\x58\x03\xe5\x00\xe5\x28\x01\x8c\xc6\xfb\x0d\xe8\x3b\x7b\x7d\x9e\x9c\x77\x46\x49\x2c\x6f\x2a\x6f\x91\x16\x78\xcd\x31\xbc\xd0\xb9\xd1\xa8\x3a\x2e\x59\x5a\xb6\xe0\xdf\x46\x0b\x56\xa4\xfc\xcb\xdd\x36\x59\x62\x14\x3c\x6f\xeb\xbf\x16\x34\x75\x18\x7c\xe1\xf7\x43\x46\x91\x30\xfc\xe9\xdf\x7a\x28\x14\x2e\x46\x01\xe7\x82\x1a\x6c\x1b\xef\x7f\x09\x59\xfe\x62\xe4\xe1\xbf\x5c\x48\x6b\x22\x1e\x2e\xd1\x4e\xf8\xaa\xe3\xeb\xe9\x41\xd3\x61\xcf\x23\xdf\x19\x52\x04\x36\x40\x0d\x10\x02\x7f\x00\xc4\x93\xff\xdf\x74\x83\xa3\x55\x7d\xec\x05\x6f\x7b\x5a\xf2\x1a\x8c\x39\xe6\xfa\x6e\xb2\x0f\xd7\x32\xa3\x80\x80\xa2\x50\xee\x5a\xfc\x03\xcc\xd9\xd2\xfe\x1c\xc6\x35\xf6\xb8\xc8\xe9\xc4\x22\x8c\x7d\xcb\x7a\xc1\x81\xab\x4d\x14\xea\xa2\x47\x7f\x3a\xa6\x6a\xb9\x73\x4b\xd6\x74\x88\x64\x9a\x5f\xfb\x2c\x9d\x4a\x7a\x2f\x48\x37\xaa\xfa\x46\x53\x2a\x34\x36\x3a\x36\x5c\xc8\xf5\xf0\x92\xc7\x72\x0a\x0b\xc6\x6b\xc9\xba\xb2\x2e\x29\x87\xd2\xe2\x6c\xb3\xbf\x89\xe5\x9c\xd9\x9d\x13\x5d\xc7\x72\x5b\x26\x2c\x84\x56\x26\x9c\xc7\x52\x68\xeb\x25\x15\x27\x76\x58\x76\x09\x71\x51\x8b\x7e\x18\xeb\x6c\x06\x20\x54\x88\xfa\xb1\x48\x51\xfe\x7c\x65\x71\x60\x60\xaa\x34\x99\xb8\x13\x24\x1f\x22\x3a\xc8\x00\x1b\x24\x86\xa6\x7b\x04\xfc\x95\x4d\x95\xb0\xee\x5e\x36\xbb\xb2\x5a\x15\xa3\xf9\x92\x48\x01\x98\x31\x43\x7a\x4e\x40\x28\x4d\xa5\x25\x83\xf2\x38\xc5\x25\x2d\xed\x99\x0f\x1f\x1f\x29\x06\xf2\xc8\xe3\xc7\xff\x36\x32\xb0\xb1\x4d\xca\xfb\x53\x52\x48\x25\x84\x27\x02\x19\xeb\xf3\xcb\x84\x22\xa2\x28\x25\xb5\xdb\x46\x27\xed\xcf\x2e\x57\xaf\x07\xa0\x01\xb7\x97\x87\x91\x0c\x10\xf4\x47\xbc\x5f\x91\x6a\x0c\xb4\xb4\x36\x45\x0f\xdb\xcb\xc9\x45\x5a\xfe\xb1\x89\x44\xa0\x20\xc6\x20\x30\x6b\x8a\x26\x64\x22\x9d\x14\xbf\x7c\x85\x91\x2c\xea\x8b\xb2\x50\x7a\xbd\xd1\xb8\xa3\xef\xad\xe9\xea\x74\x19\x7f\xf5\x8f\x4d\x3a\x36\x1e\xfc\xbc\x4a\x6d\xc1\x2b\x22\x09\x43\x9b\xfb\x2f\x44\x53\xc9\x69\xaf\xc3\xac\x91\x8e\x4f\xec\xaf\xb0\x53\x6e\x3d\x9f\x06\x32\x46\x9b\x5c\x75\x99\xe9\xed\xb8\xa0\xcc\xcd\x3c\xef\xae\x5e\xf8\xe6\xe1\x34\x4b\xc8\x1f\xea\xdc\x7d\x52\x5b\x47\x65\x29\x7a\x2e\x29\xb6\x44\xe6\x99\x3a\x84\xcf\x46\x19\x81\x56\x87\xbf\xa6\xa2\x42\x3a\x0c\xe5\xdb\xf5\x6d\x6d\x74\xce\x50\x9b\x43\x55\xc6\xe7\x16\x9f\x15\xde\x53\x82\x5a\xaa\x4c\x8a\xa6\x09\x6a\xd5\xcb\xf4\x3a\xa2\x4b\xf0\x1f\xf7\xc6\xe8\x64\xe6\x59\x3c\xd1\xe6\x84\xf2\x72\xbd\xf4\xf0\x3f\x99\x5a\x5b\x6a\xce\xf6\x5c\x10\x79\x38\xfc\x9e\x98\x73\xa8\x19\x26\x0b\xef\xf5\x64\xf9\xc9\xf2\x89\x00\x6d\x70\x27\x16\xe2\x47\xb3\x78\x2f\x3f\x10\x01\x00\x94\x45\x86\x16\x69\x50\x56\x7d\x64\xff\x19\x9b\xe1\x87\x61\x15\x71\xc4\x7a\x84\x1a\xbf\x72\x19\xc5\xf3\x8d\xeb\x9c\xf8\xa7\xf5\x61\xa2\xc5\x7a\x48\x51\x6e\x93\x74\xca\x04\xf2\x4b\xa6\xc0\xf0\x37\x61\x4d\x12\xb6\x57\x5d\x19\x41\x5b\x45\x8f\x06\x3d\x1f\x46\x06\x60\xe0\xec\x02\x57\xd4\x52\x50\x9d\xb8\xe5\xfe\x2d\x3f\x9c\x1f\x88\x5a\x92\x62\x7d\x99\x4a\x2b\x22\x81\xf3\xc8\x9f\xdb\xb5\x0a\xfd\x48\x1e\x0f\x3b\xa8\x09\xcc\xbf\xfd\x8f\xb0\x3c\xbd\x8a\x0f\x4e\x88\xbd\x0e\x4a\x8f\x3a\x9f\xe9\xf3\xa0\x21\x6b\xbb\x5c\x88\xbe\x16\x88\x23\x75\x1d\xbb\xe4\xc5\x03\xb3\x7b\xf4\xc7\x63\xfc\x7d\x2a\xe7\x1e\xc6\x23\xa7\x92\x22\x7d\x98\xe7\x9d\x2a\x25\x4d\xac\x4d\x1f\x01\x6e\x4d\x74\x55\x4a\x1f\xbe\xe3\x45\x66\xbc\x8c\x2c\xbd\x89\x8c\xdc\x13\x58\xbc\x1a\xea\xea\xd4\x71\x2d\x3d\xf1\xea\x3e\xc1\x5c\x48\xb4\x3a\x1f\xb9\x6e\x47\x5a\x0c\x1b\xe6\x34\x3a\x7f\x7c\xcb\xf8\xb2\xff\x70\x50\x97\xc7\x03\x0c\xac\x5c\x49\x92\x53\x8f\x96\x04\x7c\x3e\x01\xe1\x73\x28\xed\xcf\x79\xd0\x3c\xf1\xb3\x6f\xc9\x6d\xeb\x81\xa8\xb1\xf8\x72\xc7\x20\x60\xb3\xd6\xdb\x77\x65\x34\x5c\x73\x98\xbd\xfb\xbd\x08\xa2\xa4\xd7\x8e\x08\xff\xe8\x88\xea\xb1\x24\x56\x48\x54\xa2\x39\x02\x6d\xec\x23\xa2\x5f\x7f\xa2\x43\x86\x8c\xfd\x71\xc9\xfb\xcd\xf1\x83\x15\x66\xe9\x8d\xfe\xb5\x95\x22\xfa\xc7\x73\xe9\xbb\x9d\x2f\x3a\xc9\x98\xdd\x16\xfd\x1a\xa5\xed\x41\x2f\x22\x57\x7b\xa1\x81\x68\xa8\x1c\xc3\x8d\xdf\xf0\xda\x7d\x1a\xb6\x2b\x39\x18\x4a\x45\x82\x0f\xc8\x2d\xc7\x4b\xce\xb3\x13\xcd\x35\x5a\xc7\xea\xed\x66\x6e\x54\x05\x7f\xea\xc3\x15\xfa\xe4\x1a\x5a\xea\xea\xd5\xb4\xc2\x2a\xf8\x23\x59\x6f\x25\x3f\x73\x61\xa2\x61\x79\x91\x89\xe7\x85\xda\x56\x82\xae\xab\x29\xfd\xe9\xdb\x0f\x93\x69\xeb\x27\x91\xb5\x74\xd3\x20\xc4\x34\xd8\xd6\x6f\x5f\xfe\xa1\x7b\xfa\x63\xa5\xbf\xaa\x5b\xac\x7f\x29\xf4\x84\x17\x34\x92\x18\x24\xd0\x6f\xa6\x3c\x48\x48\xa3\x39\x08\x0f\xbd\x2f\x90\x92\x14\x8c\x5c\xce\xe1\x31\xe7\x71\xbc\xf4\x8d\x1f\xc8\x01\x28\x33\xe4\xa5\x17\x82\x29\x1a\x0f\x59\x61\xf0\x47\x9f\x9b\x40\x31\xfb\xdd\xb5\x95\xef\x6f\x8a\x79\x76\x6e\x13\x21\x10\x54\x41\x4a\xa9\x85\xd8\x46\x4e\x5c\x6e\xfc\xb8\x70\xc9\x3f\xab\x16\xcb\xba\x48\x84\xde\x7e\xf0\x91\x50\x8c\x77\x4a\xf4\x35\x03\xd3\x28\x77\xe3\xdf\xc8\xa7\x0f\x3c\xbf\xac\xc9\x3e\x30\x5d\x72\x10\x7d\x5b\xf6\x3a\x18\xb9\xa3\xd0\x55\xb9\x96\x55\x44\x5b\x08\xf9\x11\xa3\xd5\x20\x86\x83\x9e\xff\x56\x76\x02\x9b\x76\xf8\x84\xad\xdd\xbd\xef\x44\xee\x1e\xd3\xad\xf1\xfe\x00\x03\x70\x35\x08\x23\x5e\xa0\x14\x37\x8a\x11\x61\x6b\x39\x92\x8b\xbe\xca\xa9\x6d\x2c\x74\x4d\x4a\x3c\xbb\x57\x84\x76\x32\xb2\x25\x88\xfb\x66\x4c\x68\x3b\x16\xf3\x0b\xd4\xbd\xc7\x96\xb5\x57\x72\x92\x2b\x9d\x89\xbb\xa0\x19\xde\xc0\xc7\x49\x34\x92\xf9\x73\x44\x14\x73\xab\xb9\x2d\xf0\xb0\xb9\xe8\x6b\x77\xaf\x1f\x49\x80\x39\xb2\x35\xc4\x98\x75\x59\x2d\xa7\x03\xbe\xd7\x52\x8a\x68\x34\xcd\x48\x66\x4f\x6f\x4c\x04\xda\x75\xc6\xd7\x33\x3d\xf9\x59\x9b\xe4\x9f\xfa\x81\x12\x00\x90\x5b\x78\x0a\xe5\x11\x2a\xba\xf7\x84\xe2\x67\xdb\x62\x73\x46\x68\xbc\x2b\x9f\xe4\x28\x84\xdf\x64\x1f\x5a\xa9\xc3\xe0\x8d\x7d\x3b\xe7\x29\xbf\x8d\x9a\xf5\xa6\x39\x01\xa1\x85\xe1\xeb\xfd\xa0\xcb\x47\xf4\x91\xc8\x7f\x2f\xcf\x70\xe0\x1a\x1d\x28\x42\x0c\x4f\x05\xb7\xf3\xa4\x23\x84\xff\x76\x5f\x36\xb8\xce\x68\xb9\xf7\x41\xad\xa0\xe4\xa1\xb6\x67\xc7\x1e\x2d\x8e\x4b\x2a\x8d\x26\xef\xb2\x2a\x1c\x5e\xef\xfa\x5c\xbc\x1c\xb4\x9a\x78\xc8\x0a\x8e\xaa\x48\xb0\x03\x01\x3c\xea\xe2\x08\x39\xe3\xee\x52\x94\xbc\x2e\xdf\xe7\xdc\x8d\x97\x16\x1d\xda\xd3\x9b\xf9\xea\x26\x63\xc9\x92\xe4\x48\x85\x5c\x15\x63\x03\x1b\x5b\x1d\x8a\x0f\x35\xad\x3f\x4e\xfb\xc5\x63\x56\xbd\x29\x68\x34\xea\x04\x90\xbf\x9e\xa1\x48\xa9\x5c\x66\xe5\xde\x9d\xb3\x30\x5d\x32\x95\xde\x38\x6a\x87\x4f\x62\xfe\x21\x8f\x6f\x05\x39\x36\x69\xad\x44\x2f\xec\x99\xe5\x89\x43\xd6\xff\xc0\x00\x69\x52\xf3\xc1\x93\x44\xc3\xda\xbb\xdf\x4a\x3f\x9b\x78\xa4\x80\xff\x72\x99\x8c\xd5\x01\x76\x3b\xf4\x1a\x00\xb0\x14\x70\x9b\xc2\x56\x94\x3e\x0b\x9e\x3e\xae\x3a\x29\xad\xe4\x75\x8c\x03\x9b\xc1\xd8\xbf\x16\x38\x7b\x55\x6d\xb3\x72\x97\x4c\xbb\x45\x68\x7c\xf2\x8c\x3d\xa6\xde\x26\xca\x79\x8e\x49\x9e\x39\xbe\x7a\x1e\x0c\xb8\x50\x51\xae\x1c\x44\x0a\x52\xee\xe9\x9f\x17\xa5\x98\xb7\x3e\x64\x1f\xcd\xe9\x08\xba\xfa\xd7\x2f\x8c\xf9\xe9\x6c\x9d\x7d\x1a\xbb\xbe\x97\x73\x23\x70\x36\x1c\x15\x9e\x9f\xef\xf5\x9e\x17\x8f\x29\xd8\xb7\x03\x9d\x82\xa2\x5e\x26\x5a\x99\xb9\x0f\x84\x5e\x03\xa3\xbf\xbd\x99\x51\xf1\x3d\x62\xb2\xe4\x25\x99\x25\x64\xbc\xa9\x95\x42\x91\x22\x58\x99\x51\x43\x17\xb9\x71\xe1\xbf\x8d\x1a\xc6\x46\x1c\xb8\x6a\x6b\xb4\x27\x09\x6d\x6b\xd9\x21\x88\xf7\x46\xdd\xed\xa2\x20\x32\xd0\x1f\x46\xca\x0a\xb4\x31\x7f\x97\xf1\xe7\x99\x42\x4c\x13\xd1\x37\x7f\xcc\x50\xc6\x35\x77\x55\xea\x09\x87\x22\x1a\x5b\x48\xda\xee\xd8\x21\x75\x10\x0c\xf3\xac\xfe\x71\xda\x17\x78\x61\x5f\xb6\x8f\xd5\xc6\xf7\x87\x35\x1d\xd8\xe6\xfd\x45\x1a\x35\x95\xbe\x26\x34\x5a\xe2\x00\x51\x6e\xcf\x6e\x31\x29\x22\x88\x1f\xc6\x3f\xe5\x02\xa7\xaf\x3d\x2a\xe7\x57\x76\xe4\x9c\xe9\xdb\xd3\xb1\x6b\xec\x86\xb0\x4d\x0f\xb4\xe3\x29\x77\x82\xb7\x1f\x21\xb8\xa8\xb1\x5e\x5f\x74\x1b\x3e\x7c\xad\x78\xc0\xd6\x67\x6b\x3e\xe5\xc7\xdc\xe8\xeb\x37\x48\xe8\x39\xd8\xb6\x95\x39\xdf\x80\xf7\xef\x0e\xaa\x5d\xc1\x6a\xd8\x86\x43\x9e\x8a\xf6\xbb\x7f\xbf\xb9\xf4\x38\x76\x44\x0d\x7d\x04\x58\xc1\x51\xab\xe9\x40\x28\x4f\xba\xbb\xd3\x5d\xc5\xd5\x1a\x04\x1a\x55\x48\x55\x8d\x8d\x9d\x67\xcd\xf1\x2d\x64\xf8\x84\x15\xfc\x7a\x1e\x3b\x11\xce\xd4\x9f\x57\x56\xc2\x5f\xb3\x15\xaf\x57\xb8\x96\x9f\x39\x35\x06\xf9\xc1\x58\x43\xa0\x77\x06\x1d\x4d\x53\x83\xc2\xb7\xe4\xdf\x04\xd2\x06\x9f\x69\xf9\x4f\x1c\xed\x85\xa8\xf0\x71\x53\xbf\x9b\x6e\xbb\xc8\x3e\xba\xd7\xb7\x58\x6b\x1b\xf2\xfa\x27\xa2\x88\x06\x0b\x77\x17\x4a\x3c\x06\x99\x3c\xcd\xb3\x8b\xff\x3d\x87\x2b\x7c\x68\xaa\x4f\x4a\xc3\x38\xdd\x7a\x08\x6a\xe3\xf8\x03\x57\x05\xa4\x28\xe9\x68\xe1\xad\xbf\x5b\xb6\x0c\x48\x50\x2e\x3d\x8e\x24\xf0\xa5\xc0\xac\x17\x3b\xa0\xc1\x4c\x28\x00\x00\x24\x07\x64\xac\xf5\x7d\xc9\x3a\xbb\x5e\x4b\x27\xba\x83\xda\xc1\x66\x76\xf4\x3e\x2a\xb8\xc1\x58\x23\x0c\xa8\x14\x0e\xc9\xbf\x77\xa3\xff\x1e\x5a\x19\x25\x98\x43\x3f\xd5\x94\x72\xb7\x9c\xf2\x63\x6a\x74\x2e\x78\x31\xcd\x13\xda\x98\xaf\x3d\x3b\x8f\xc6\x3e\x3d\x24\xfa\x62\x0a\x18\x93\x76\xc6\x05\xc4\xd2\x45\x16\x7d\x50\x80\x57\xf2\x0a\x60\x22\x0e\xf0\xe2\xb0\x02\xef\x53\x78\xd9\x78\x44\x49\x90\xc0\x63\x3e\x3f\x49\xe2\x20\x0a\x7b\x77\xe9\xb5\x09\x29\xe2\x91\x00\x40\x95\x59\x7e\x88\x70\xa6\xe8\x1b\xe7\x79\x4e\x5c\x6e\x2e\x25\xc8\xbe\xce\xed\xc0\xab\xcf\xf9\x1d\xbc\x80\xe0\x29\x3e\x68\x7d\x00\x2f\xe2\x01\x25\xe4\x5f\x6d\xe4\x8f\x6e\x32\x36\x76\x28\x24\x70\xfc\x67\x6e\xec\xe5\x2a\x72\xab\xbf\x27\x70\x1f\xa9\x94\xd6\xa2\xc4\x54\xb1\xe2\xd3\x7a\x1a\xa4\x80\x1e\xbc\xfa\xa0\x4b\xe2\x59\xae\x71\xd4\x87\x3e\x0b\x06\xdf\xb4\x1f\xe2\xa2\x71\xf0\x51\x10\x19\x32\x90\xf3\x77\x16\x62\x24\x92\xc6\xfc\x3e\x69\xe8\xeb\x8b\xb9\xbe\xca\x9e\x1d\x83\x57\x8f\x15\x02\x60\x80\x34\xb9\x39\xe7\x5e\x65\x5d\xbc\xde\xdc\xe0\x46\x3c\x73\x22\xe3\x7e\x63\xaf\x98\xf2\x06\xab\x69\x80\x26\x1d\x2a\x86\x9a\x37\x1c\xf4\xf2\x01\x49\x7d\xfb\xa6\xab\x0c\x84\x8a\x76\xd5\xbd\xa8\x59\xfc\xf7\xb3\xae\xd6\x05\xb3\xa2\x3d\x7b\x47\x81\x2d\x7b\xed\x2e\x1d\xb5\x51\xe5\x74\x49\x14\xf8\x7f\xbc\x97\x57\x34\xdb\x0f\xfc\xf7\xbf\x89\x84\x20\xad\xad\x56\x25\x46\xd1\x58\xb1\x4a\xd5\x48\xd4\xa6\x46\xad\x1a\x35\x6a\x14\xa5\x76\x6d\x22\x54\x55\x6d\x35\x6a\xd7\xae\xd9\x2a\x4a\x6b\x6b\x51\x7b\x54\x8d\x9a\x8d\xad\x45\xad\x18\x21\xcf\xf9\xfd\x9f\xab\xe7\xe2\xb9\xfd\x9f\xf3\xb9\x7d\x9d\xcf\x7e\x9f\xf3\x06\x0c\x4c\x46\xbf\x55\xf5\x1e\x96\x0e\x2b\x8b\x5b\x82\xd6\x28\x90\x65\x94\x50\x0c\x8d\xfd\x1f\x78\x0c\x39\x0f\x00\x96\x8d\xfb\xbb\xab\x6c\x24\x42\xd5\x69\x13\xea\x14\x3c\x44\xa3\x34\x70\x06\xc8\xe8\xe1\xcd\xdc\x96\xa2\x96\xe6\xf1\x1f\xa6\x19\x16\x15\xb0\x4c\xb7\x9f\xf2\x47\x23\x04\x15\xdb\xe2\x51\x00\x08\x82\x26\x39\xe4\x8d\xed\x6d\x8f\x7a\x11\x2d\xfd\x89\x52\xdb\xc4\xbc\xb5\xb0\xd5\xd3\xbb\xdb\xed\x16\xce\xc2\x76\xd8\x7c\xda\x27\xf0\x9f\x43\x54\x0f\x86\x9a\x63\x3f\x65\x13\xdb\xea\x4d\x06\xa9\x30\x7a\x54\x34\x38\x50\x4e\x17\xd3\xa8\x7d\x31\x58\x60\xd5\xb0\xa7\xd6\x42\xc9\xe8\x20\xa1\xae\x0a\x26\xb9\x7f\xb9\x78\x1b\x6f\xa0\xe5\x1d\x84\xb1\x41\xc9\xf5\x0b\x9b\x71\x04\xbd\xfb\x61\x1a\x6a\xc9\xf2\x37\x7d\x18\x7a\xe8\x64\x5d\x44\x8f\xe9\x11\xf8\xb6\x57\x76\x83\x78\xa3\xfa\xc4\x0f\x40\x3f\x4d\x8b\x4f\xab\xf5\x60\x6e\xf3\xf2\x5f\x3c\x6b\x5d\x2d\x3d\x0e\x56\xc7\x2c\x16\x60\x74\x33\x31\x31\x89\xda\x85\x9c\x39\x35\x16\xdc\x77\x02\xea\x96\x94\x56\x8d\xd5\xef\x40\x1e\x29\x01\x92\x8c\x42\x40\x74\x52\x9d\x14\x72\x73\x7d\xc3\xbe\x57\x43\x3f\xb9\xc5\xed\x74\xb2\xaa\x6c\x23\x30\x43\x74\xe8\x09\xed\xb2\x9d\xef\x01\x05\xeb\x10\xae\xd5\xa2\x3e\xed\x5a\xed\xcf\xa3\xe7\xdf\x1a\xfb\xb3\xe5\x3d\x34\x18\xa1\xa9\x51\x1d\x48\x2c\x6e\x39\xe2\xb6\x23\x26\x44\xf9\xec\xf4\x65\xcf\x49\x51\x34\xb9\xc9\x1e\x01\xb0\xc9\xa2\x7a\xf6\x65\x6f\xed\xdb\x84\xfb\xc9\x1e\xdc\xa9\xbc\xf7\x97\x28\x92\x18\xea\xf3\x5a\x3b\x6c\x1d\xfe\x16\xef\x20\x9a\x9f\xce\xac\x75\xeb\xd6\xab\x1d\x1e\x60\x8d\x02\x49\x88\x00\xdb\xc2\xf8\x82\x40\x2a\x14\x69\x3f\xa8\x13\xe5\x2a\x60\x15\x4e\x06\x0d\x0a\xa5\x6b\x56\x8d\x31\x79\x38\xdf\x2e\x12\x30\x50\x56\x2b\x3a\xbd\x35\xbf\x2d\x13\xfa\xee\x87\x69\xe4\x67\x86\x7a\x2e\x13\xdf\x7c\x49\x03\x18\xbc\x42\x1c\x67\x1d\xc1\xfe\x58\x55\x96\x5c\x20\x1a\xda\x2b\x7c\xd9\xf0\xd9\xf4\xec\x27\xa1\x6b\xca\xfa\xd7\x77\xd2\xc4\x64\xe9\xf1\x17\x73\xfd\xd3\x1a\xde\x3e\x9a\x66\xfe\x03\xa7\x32\xd2\x2d\x51\x47\x05\x57\xb9\x8a\x93\x7d\x21\x82\xec\xff\x08\x55\xc7\x9f\x43\x06\xad\x0d\xe2\x75\x0f\x62\xa0\x15\x08\x0e\x88\x00\x7d\x60\x4c\xcd\x9d\x7d\x55\x95\xb0\x0f\xd5\xd6\xa7\x5b\x4e\x3b\x9c\xfe\x57\x87\x6a\x39\x40\x43\x7a\x67\x79\xa5\x20\xac\x43\xb7\xd1\xca\xba\x9f\x62\x80\xc7\xc7\x8d\xcb\x8d\xc8\xa3\xb5\x32\x19\x3e\x67\x0a\xdc\xe2\x75\x10\xb0\xd7\x17\x93\xae\x75\x2f\x1b\x12\x2c\xf0\x15\x41\x5a\xa2\xf2\x3e\x49\x43\x66\xa4\x4d\x2f\x84\xe2\x3a\xe3\x5b\x52\x54\x31\xd2\xdd\x36\x0f\xdd\x9d\x4f\xa7\xfc\xeb\x6a\x6b\x27\x1b\x6c\xbe\x7f\xfe\xc3\xc9\x51\xf6\xe9\x65\x94\x4e\x76\x1f\xa7\x81\xf9\xfc\x40\x20\x79\x59\xdc\xa6\x9c\x34\xf2\x82\x9d\x0c\x00\xb3\xc0\x12\x80\xa3\x15\x5c\x4c\x56\xda\x05\xc2\x76\x18\x98\x01\x7b\xb4\x2a\xe4\x50\x9a\x8c\x63\x62\x48\x82\xe2\x14\x80\x95\x98\xa8\x90\x31\x43\xd3\xc5\xd9\xc1\xd6\x8b\xae\x88\xa3\x84\xcd\x09\x52\xf1\xae\x8b\xc5\x06\x4d\x84\x38\xa7\x7c\xf8\xae\xcb\xd8\x29\x59\xc9\xea\x49\x98\xf5\x07\xbc\x40\x8e\xae\xa7\x96\x0a\x52\x0b\x8e\xe9\xfa\xc7\x96\xc3\x5c\x16\x09\x29\xa2\x4b\xb2\x2a\xe2\xdb\xba\xa9\x2d\xbc\x5c\x09\xe0\x82\xaa\x2b\xc4\x5b\x1a\xb3\x43\x7d\x4a\xde\x86\xc9\x12\x3e\x7c\x32\xd1\xf3\x30\xa2\xfe\x59\xbc\xeb\xc7\x6c\xa5\xe6\xa6\x20\x76\x9b\x7c\x2c\x6e\x5d\x4e\x7a\x53\x16\x23\x0f\x4c\x7b\xf2\x82\xbb\x76\x35\x0e\xef\x44\xe4\xfb\x41\xa0\x1d\x4d\xc5\x31\x38\xe7\x6b\xef\xcb\x61\x7d\xbe\x1a\x62\x92\xfb\x81\x1a\xe6\x97\xfd\xa6\xc7\x95\xfe\xc4\xea\x5a\x4b\x6e\xe1\xff\xa6\x05\xbb\x19\xe3\x16\xa0\xab\xf4\x74\x93\x54\x16\x6c\xbe\x5b\x1b\x1e\x58\x72\x34\xe6\x34\x56\xdd\xe1\xc9\x93\xb4\xc6\x80\x91\x40\xdf\x88\xb3\x3d\xec\xb6\x57\x58\x50\x1e\xdd\x53\x0e\x77\x16\x5b\x9c\x1f\x08\xf1\x6b\x7e\x77\x59\xb1\x39\x51\x2b\x84\xaf\x99\xd0\x69\xf9\xad\x8f\xad\x97\xbe\xbc\xec\x35\xb3\x20\xaf\xb5\xfe\x6a\x68\xa7\xc0\xb1\xe6\xc4\x00\x74\x7a\x6d\xd7\x84\xc0\x49\xf6\x06\x40\x0e\x1e\xc4\x8b\xe4\xb8\x8a\x2e\x58\x64\xf2\x14\x81\xd4\x89\x59\x06\xd9\xdf\x39\x4f\x33\x3b\x96\x5c\x1c\xfc\x5c\x25\xbd\x19\x9c\x25\x59\x8c\xb4\xf5\x41\xf9\xff\x42\x85\x93\x85\x08\xe4\x8d\x83\xb4\xe3\x8b\x17\xaf\x86\x23\x7a\xa3\xa8\x36\xdf\x46\x48\xf3\xe0\x1e\x2d\xa5\x78\xd3\x14\xe5\x9b\x7e\x6a\xef\xdd\xe3\x54\x92\xc9\xbb\x23\x69\x66\xa3\xf0\xbe\xcd\xd4\xf5\x5d\xbb\x2b\xe5\xe1\x15\x81\x3e\xc9\xe4\x82\xce\xd7\xc3\xaf\x52\x70\x96\x12\x17\xe4\x73\x41\xd9\x2d\xf2\xf1\xc4\xe4\xf1\x5d\x39\x06\xd0\x98\x01\xc6\x86\x8f\x87\xe4\x36\x22\x6e\x74\x8a\x6d\x87\x7f\x55\xc5\x34\x8d\x6b\xce\xde\xc9\x41\x81\x45\x12\x45\xdb\xda\x52\x03\x09\x0d\xf3\x7f\x64\x7d\xae\x5a\xe6\x1d\x2a\xde\xe3\xb9\xcf\xb8\x27\x97\xec\x68\xc6\xd0\x5e\xf5\xa0\xd3\x46\x11\x35\xa3\x1c\xf6\xde\xc1\x43\xc6\xf7\xa9\x0f\x8a\x60\x0d\x02\x5d\x54\x16\x7c\xf8\x06\x00\x7a\x59\xeb\x6a\xb1\x9d\x54\x6c\xf3\x1b\xbd\xad\xde\xbd\x3d\x36\xb4\xe5\xd6\xbe\xaf\x07\x0f\xa8\xd6\xe2\xb7\x4d\x08\xd9\xd0\x17\xa1\x96\x74\x1b\x0f\x51\x7d\x5d\xe6\x19\x7f\x73\x99\x73\xfa\xb7\xf4\x16\xce\x53\xc9\xbe\x65\x67\xed\x7f\x56\x5b\x42\x3b\x42\x00\x07\xc0\x88\x1c\x91\xcf\x4f\xcd\x6b\xfb\x40\x0f\xc3\x76\x55\x8e\x15\xac\x8e\xb9\x66\xfd\xeb\x7b\xdb\xe5\xd9\xb3\xb5\x5f\x81\x1a\xe6\x9d\x75\x9d\x65\x2a\xda\x80\x58\x8c\x5b\x50\x2c\xa9\xf0\x2d\x55\xf8\xc7\x54\x62\x18\xa9\x69\x45\x41\xa1\x2f\x50\x46\x83\xe1\xa9\x27\x2f\x65\x8a\x02\xb8\x28\x36\xe2\xe4\x54\x42\x2e\x22\x2f\x81\x01\x1e\x76\xa8\xe0\xfe\x49\x23\xa4\x21\xdc\xea\x53\x3e\x75\xa1\x93\x82\x53\xd5\xad\xfa\xe7\x77\x34\x7a\xe6\x27\xa3\x8f\xe7\xe3\x7a\xdb\x6a\xbc\xbd\x73\x35\x1f\x3d\x4c\x8f\xbb\xfc\xf8\xd5\xe4\x6b\x4f\x91\xda\x3a\x95\xf2\x67\xa3\x0b\x3b\x4b\x82\x49\x47\x08\xc0\x0f\x95\xbe\x35\x82\xd1\x5e\x7f\x6f\xa8\x8a\x49\x14\xc4\x10\xea\x4f\xb6\xf4\xd6\x26\x65\x9f\xd5\x2d\xa2\x66\xfb\x39\x92\xd7\x2d\xf5\x7c\x7b\x18\x52\x70\x9c\x06\xcd\x8f\x2b\x49\xeb\x2c\x52\x01\x1e\x95\x4b\x61\x4d\xe6\xbe\xfe\xa8\xf4\xc5\x3a\x93\x65\x15\x0d\x20\x2a\x75\xa9\xfc\x11\x00\x40\x3b\xa5\x7c\x68\x22\x11\xdc\x54\xec\x17\x6d\x2a\x4a\xa5\xfa\x47\xdf\x1a\xb3\x5a\x2d\x26\x6a\xad\x2a\xb7\x3c\xc4\xea\x27\x77\xb3\x94\x42\x53\xb5\xea\xa4\x87\x9e\x5e\x32\x24\xdf\xcb\x5d\x24\x3b\x57\x9f\x2e\x92\x57\xd4\x09\xeb\xf8\x3e\x01\x5f\x05\x90\x98\xad\x12\xc0\x68\x97\xde\x0e\xb9\xa6\x32\x48\x0b\xa0\xad\x20\x51\xdf\x23\x14\x79\x31\xcb\xfc\xe1\xfe\x8b\x9f\xcf\x7b\x9e\x1d\x5b\xbe\x72\x3f\x92\x67\x52\x7d\x73\xd8\x7a\xef\x36\x23\xa0\x3a\x25\xbc\x57\x50\xf2\x2f\x9f\xcb\x81\x94\xff\x94\x65\x5e\xdc\xdf\xe7\x69\xb3\x1b\x54\x54\xcf\x51\xc1\x05\xad\x05\xe3\x4f\x33\xbb\x5e\x5f\xed\xb9\xc4\x2f\xaf\x9f\xfa\x07\xb0\xa7\x43\x57\xb5\x3e\xdb\x0d\xbc\xaf\x62\xb3\xe8\x6a\x43\x5b\xde\x38\x6d\x2a\x69\xb6\x75\x36\x3e\xf9\xf9\xb8\xeb\x91\x4e\x68\xef\xfe\xb4\x99\x8c\x5e\x5e\x51\x8a\x03\x6f\xad\xc4\x81\x26\x38\x6c\x66\x9f\x5c\x8b\x58\xac\x22\x7f\x19\xc9\xf8\x95\x08\x1c\x80\x92\x20\x6b\xbf\x07\x3c\x17\xe2\x6e\x82\xe1\x1b\x47\x90\x28\x15\xa4\x0e\xff\xca\xce\xeb\xa1\x3b\x1e\xee\x6b\x6d\xad\xb3\xa3\x3b\xe5\x39\x1b\xa9\x6d\x9f\xd8\xb1\xda\x38\x9c\x51\xe0\x52\xf9\xef\xa2\xcf\x0c\xa4\x95\xbe\xfd\xf0\xc0\xa4\x23\x59\xa2\xb7\xf5\x2a\x9a\xd0\xfb\x0d\x73\xbf\xa6\x03\x3d\xd2\x81\x64\x40\xfb\xde\xcf\xfd\xf9\xd2\x3f\x26\x99\x8e\xdd\x58\xcd\x87\x99\x18\x66\xf1\xdd\xba\x07\x62\xa8\xed\xfe\xed\xf3\xf8\xe8\xb5\xa9\xad\xd9\xa1\x92\xf4\xb3\xb4\xaa\x81\x85\x9f\x14\x67\xde\xb2\x8d\x23\xb6\x7a\xeb\xb7\xf5\x1c\x43\xef\xec\x5e\x9c\xb7\xb7\x19\x5d\x2c\xf2\x9e\x02\xb7\x7c\x5b\x80\x4c\x3a\xdc\xe0\xfa\x35\x82\x02\x1b\x16\xf2\xf5\x15\xf4\xdb\x27\x6a\x6e\xda\x88\x4a\x99\x8b\xd9\xd6\xa1\x39\xd9\x5a\x93\xa3\x8c\x23\x9c\xde\x37\xa5\x95\x9b\x2a\xda\x60\x3d\xcc\x6a\x42\x51\x8c\xbe\x85\x3c\x59\xed\xdb\xa1\xf2\xcc\xc8\x99\xfe\x27\xda\x9d\x65\xbb\x1e\x0f\xff\x54\xaa\x22\xeb\x08\xc3\x6f\x1d\x72\x6f\xf1\x1f\x04\x67\x5e\xe5\x65\x6a\x48\xef\x78\xa9\xcb\x1c\x2f\x7b\x19\x17\x85\xbb\x91\xde\x20\xb7\xb4\x8d\x86\xaa\x26\x8f\x4a\x56\x4b\x83\x5a\x9d\x2b\xfd\x3f\x8a\x05\x77\xc3\x36\x9e\xc4\x22\xcd\x62\x20\xcc\xc3\x0f\x15\xd4\x14\x4e\xbd\xc7\x2e\xa7\xc2\x43\xcb\x8e\x33\x32\xe9\x70\x5f\xb1\x20\xcf\xe8\xb8\x9b\xe0\x2e\x77\xfc\x5b\x58\x4c\x34\xa4\xee\x95\xa8\xdf\xd1\x82\xd3\xce\x93\x4f\x09\x83\xb2\xba\xf9\x6b\xe8\xdb\x7b\x56\x49\xf3\x21\x11\xee\x66\x0c\xf9\x0d\xd2\x97\x86\x93\x70\x25\xc5\xfe\x13\x7d\x59\xda\x9d\x4b\xeb\xe1\x27\xea\x5f\x3b\x0a\x42\x22\xb0\x32\x94\xd1\x7f\x51\x9a\xd9\x6e\xe2\xdb\xfc\x0a\xda\x70\xe5\xb3\x83\xa6\x99\x73\x2d\xb1\xb0\x1e\x88\xa1\x19\xa7\xc5\x71\x90\x89\xcd\x43\xd7\x77\xb2\xb4\x8d\xde\x53\xfb\x33\x95\x41\x18\x1b\x03\x48\xf3\xac\xcc\xd9\xc9\xf5\x4d\x8d\x46\xe9\xcb\x8f\x74\x35\xb7\xc8\xbf\x88\xb5\x32\x4a\x7b\xe6\xae\x4a\x98\xfa\x37\xf4\xb1\xb8\xdb\xa0\x76\xf4\xe3\x41\x7a\x06\x7a\x56\x5a\x9a\xec\x78\xfe\x97\x38\x7b\x7d\xcc\x4f\xc7\x57\x36\x33\xfd\xad\x47\xbf\x23\x4e\x27\x73\x8a\x44\xde\xc2\xe4\x6c\x54\x46\x70\xbd\x5f\x29\x2c\x59\xf2\x3f\x49\x5f\xbe\x77\xa2\xe4\xa4\x32\x0f\x7f\x6c\xdf\x79\xbb\x82\x33\x82\xa2\x8c\x89\x22\x32\xaa\xe3\x3d\x29\xc2\x4b\xf0\xb7\x61\xbe\xf2\xce\xe3\x97\xf0\x40\x37\xae\x48\xe5\x94\xb1\x91\x20\xdd\x76\xf3\x5b\xac\x66\x1c\xb3\x16\x63\x86\x4f\x9d\xac\x8e\x73\x36\x27\xbe\x70\x94\x8d\x08\xe3\xab\x7e\x6b\x87\x4b\xf3\x83\xda\x1f\x9d\x85\x1f\x2f\xfc\x9d\x25\xef\x39\x8f\xcd\x2c\xa9\xaa\x1f\x80\x14\x36\xc4\x8b\x44\x0d\x81\x41\x2a\x67\x83\xe1\x88\xd7\xf3\x20\xbb\x5c\xdc\x7b\x53\xcc\x74\x00\xbf\x05\x5a\x68\x8b\xba\x0f\x8c\x31\xa5\x73\xfe\x77\x94\x3b\xf8\xa4\xf6\x8f\xd3\x82\xf9\xfb\xc9\xca\xa6\xbb\x4b\x8f\x92\x00\xa5\xb2\x3a\x2e\x83\x66\x82\xf0\xfe\x87\xea\xbd\x17\xf7\x72\x95\x85\x2c\x3b\x53\xab\xf1\x5f\x3e\x9a\xf8\x6e\x73\x33\x29\x15\xbf\x8a\x28\xa7\x67\x4b\xd7\x94\x3b\x16\xa3\x90\xb3\xa1\xeb\x2c\xef\x51\x0a\xca\x4b\x6f\xc9\x70\xd8\x63\x9a\x3f\xe7\x28\xdb\x4a\xfb\x9c\xde\x6a\x3d\x39\xa5\xed\x7e\xa4\xfe\xd3\xd1\x5f\x37\x5f\xa9\x0c\x7a\x98\xce\xdb\x67\x22\xd0\xc7\xbb\x19\xf3\xd8\x41\x81\xbf\xac\xae\x2d\xfb\xe0\xd2\x21\x2e\x0c\xb4\x01\xcd\xa4\x30\x00\x72\x98\xf8\x62\x71\xce\xbf\xc6\xca\x61\x31\x6b\x50\x07\x16\xec\xbe\xf8\x8e\xa5\x78\x4b\x5b\xea\xc5\x99\xb6\x51\x6b\xfc\x1d\x88\x58\xce\xfb\xfd\x25\x3b\xcc\x6a\x63\xef\xd7\xe8\xa2\xd8\x5e\xf7\x78\xe5\x6a\xf6\x90\x27\xca\xeb\x7f\xdd\x59\xe7\xb4\xe7\x61\x56\x9a\x23\xec\x31\xaf\x70\x84\x97\xac\x3d\x07\x8c\xfc\x17\x39\xc7\xd3\xe5\x71\x4f\xf6\x34\x24\xce\x5c\x28\xc9\xd3\x7b\xd9\x4a\x26\x53\x4f\x82\xec\xaa\x4b\x6d\x6e\xce\xf6\x07\xf5\xd8\xcb\xc6\xe1\x16\x7e\x50\x04\x19\x31\x38\xe4\x52\xd7\xa9\xde\x70\x00\xd6\xdf\x7d\xc4\x04\xe9\xba\x29\x59\xf8\x5e\x0e\xd1\xd9\x88\x90\x9b\x47\x1c\x28\xf4\x54\x31\x99\xcc\x31\x5f\xc0\x6b\x70\xd2\xa3\x5c\x3e\x6a\x5e\x64\xdb\xbe\x16\x23\x68\xcc\x1d\xdf\x1b\x49\x9d\xf2\xc5\x7a\xd2\xa3\xed\x43\x6e\xe8\xb9\xc5\xbd\xf6\x4a\xa8\xef\xac\x6b\xda\x08\x9c\x11\x99\xa4\xda\x28\xf7\x9c\x43\x70\x5f\xc8\xd6\x7b\xca\xfe\xd1\x84\xe9\x37\x75\xa3\xf5\xec\x17\xec\xe1\x3e\x95\x4b\xdc\xa6\x22\x8b\x8d\x93\xf6\xe2\x9d\x72\x6f\xf1\x76\x79\xf8\x93\xc0\xf1\x11\x02\xfa\x29\x49\x29\x88\x5b\xf6\xe4\xdf\xb3\xa1\xe5\x2d\xeb\x9b\x0d\xcc\x3e\xd5\x35\x19\xe9\x16\x5b\x69\x39\x03\x3f\x45\x13\xe7\xc7\x29\x82\xee\xfe\xad\xda\xc9\xc8\xc4\xf1\x26\xf3\xff\xaa\xee\x7f\x91\x23\xc1\x88\xfb\xc5\x41\x5e\x2a\x12\xae\x0e\x3f\x5a\xf8\x3b\x1b\x0a\x38\x77\x2d\x55\x47\x08\x01\x4e\x5c\xcc\xc0\xfa\x20\x1b\x2f\xb2\xed\x1e\xba\xcd\x04\xad\xc3\xbf\x92\x6e\xb1\xb5\xf5\xe4\xce\x8c\x6c\xfe\x1d\xc9\xf6\x14\xbf\x99\xae\xe2\x5d\x3a\x10\x6e\x67\x18\x8c\x75\x48\x65\x2a\xf7\x53\x84\x7e\xc9\xe3\x7d\x66\xa5\xf6\x67\xba\x62\xfa\xc9\x46\xc8\x2e\x72\xfb\x3a\x97\x13\x49\xfd\x1b\x0d\x57\xe2\xcb\xd1\x55\x94\x1d\xa9\x3a\x9a\x2f\x4d\x58\x2f\x30\x24\xe7\xc1\xe5\x7b\xb9\xb0\x45\xed\x7c\xea\x2e\x6f\xb1\x09\x56\xb7\x49\x0b\xf7\xf2\x57\xb4\xee\x7e\xa2\x84\x0f\x32\xdd\x65\xdb\xf2\x65\x66\x2c\x7a\xa6\x99\x51\x6a\xa8\x3e\x70\x1a\xff\x2f\xf7\xcf\x52\x3e\x93\x27\x62\xc2\x78\x9c\x91\x2c\x1e\x71\xf9\xb7\x7a\x36\x9c\xb8\xa9\x7d\xce\x70\xe8\x71\xe5\xab\x15\xee\x36\x18\xda\x01\x95\x28\x48\xf3\xbc\x2f\xd8\x59\xdc\x82\x23\x24\xfb\x99\x6f\x96\x84\x6e\xef\x08\x07\xbf\xf9\xa4\xe3\x3e\x48\xdb\x14\xa5\x49\xdd\x71\x03\x64\xc6\xb8\xa9\x09\x58\x1a\x98\x13\x20\x28\x25\xa6\x60\xee\xd4\x3b\x35\xbc\xcf\xb8\x4c\xb8\x1a\x4d\xac\xdf\x71\xb6\x58\xc9\xe2\x9d\x8c\xd6\x9f\xdd\x5d\xb7\xd6\x21\x28\x95\x49\xde\x74\x03\x92\xb8\xc5\x62\xf2\x05\x2f\x14\x5c\xed\x73\xf7\x32\xe5\x74\xf3\x51\xe6\x19\x2e\xe9\xbd\x87\x85\xd5\x0e\xd7\xdc\x1a\x5e\xfb\xcc\xd4\x2d\x4f\xdc\x88\x9f\x70\x8c\x4f\x75\x7c\x9e\xfa\xdf\xf5\xa5\x3a\x44\x68\xf7\x31\x52\x53\x26\x7f\xcd\x4c\xcb\x3a\x9f\x80\x97\xd5\x79\x67\xfe\x23\xaf\x88\x5b\x57\x91\x12\xcf\xcd\x77\xe9\xf5\x1a\x29\x1f\x89\x75\xe4\x44\xd8\x7c\xa5\xe5\xc7\x42\x8a\xfd\x18\x75\xb5\xaf\xfe\x61\x00\xc7\x22\x9b\xef\x68\xac\xe5\x4e\x7d\xfa\xb8\x5b\x35\xd9\xb0\xce\x8c\xad\xd7\x5a\x44\x48\x32\xf3\x50\x43\x18\x3b\x52\x91\xa1\x5a\x1d\xe9\x90\x59\xbc\xa6\x25\x7d\xb9\x7f\xea\xd5\x01\x50\xaa\x63\xe2\xcb\xd8\x5e\x87\x6f\xf6\x85\x9b\xa8\xc2\xcd\xf2\x42\xc7\xca\xc2\xbf\xa8\xae\x83\x37\x70\x2e\xb5\x93\x1a\x5e\xb0\x19\x83\x42\xc1\x7d\x5f\x28\x05\x80\x5b\x71\x08\x90\xc3\xa9\xa9\x16\xf5\xdf\x9c\xa0\xe8\x8a\xc3\xa1\x2c\x30\x2c\x6a\xf4\xa5\xde\x85\x15\x39\x15\xec\x89\x4e\x92\xdc\xc2\x1c\x4a\xc2\xce\x39\xcc\x26\x7a\x34\xb1\x48\xa8\x5a\x12\x2f\x53\x71\x31\xac\x4e\x53\x5e\xf8\x14\x0e\x42\xbf\x84\xa4\x01\x86\x58\xbc\xe4\x88\x5a\x80\xd8\xed\x71\xa3\xaf\xd7\xe8\x58\xff\x92\xd7\x46\x76\xd3\xc9\x34\x41\x4c\x60\x09\x38\x5a\xc3\xb6\xea\x2f\xf8\xb4\x93\x2e\x0c\xf9\x85\x17\x79\xf6\x9c\x31\xf9\x80\x9f\xe8\x51\xde\x53\xf4\x6b\x24\x00\x73\x83\xec\xfd\xee\x22\xf0\x21\x1d\x87\xcd\x4c\xff\xe4\x53\x93\x38\xb3\x2b\xf9\x6b\x02\xa1\x89\x7d\x18\xa1\xe4\x02\x06\xe0\x0a\x0e\xd0\xdc\x88\xf6\x8c\x89\xaa\x99\x02\x60\x9e\xd4\x48\xc0\x01\x49\xdd\xc4\xd8\x91\x0a\x09\x01\xf6\x6e\x68\xea\xd3\x3b\xd3\x82\x45\xb1\x8e\x3a\xf4\x33\x8c\x10\x2e\xad\x8e\x8c\xdc\x75\x2a\xa0\xe3\xce\x02\x15\xbb\x26\xd8\xca\x97\xe8\xcf\x04\xa8\x00\x6c\x9a\xb6\x10\x18\x1f\x23\x1b\xc8\x56\x15\xaf\x72\x63\xec\x1d\x24\x55\xfb\x51\xf2\x4e\xb2\x36\x9a\x1a\xa7\xc7\x3f\xf6\x12\x92\x0b\xb0\xe5\x72\x9c\xa9\xf2\xbc\x25\x56\x9c\x73\xe0\xd4\xc3\xb2\x92\x72\xfa\x83\x8c\x08\x88\xdd\x55\xd2\x5d\xb9\x99\xe7\x0c\x23\x84\x98\x11\xa3\x3e\x38\x1e\xbc\x84\x67\xe7\x05\xa7\xd4\x7d\x25\x50\x3b\xf4\x2a\xee\x40\x41\x6d\x19\x07\xf8\xf6\x66\x23\x77\xd9\xc6\x8f\x93\x19\xc7\xd5\xc1\xe6\x66\xe6\xc5\x6c\x8c\x99\xb7\x60\xbe\x70\x69\x28\x35\x8a\x1a\x21\x7f\x1a\xd5\x97\x5a\x86\x15\x62\x95\xcf\x67\x92\xac\x17\x8f\x88\x23\x5d\x89\xc9\x25\x2a\xfd\xbc\x98\x4b\xb2\xe6\xa3\x0f\xe7\x96\x2c\xd1\x04\xcf\x99\x7c\x5d\x78\xb6\x70\xf1\x31\xbf\x56\x96\xec\xf6\x65\x69\x47\x85\x4c\xf6\x63\x66\x06\x49\x5d\x15\x58\xd4\xc5\x9d\x13\x77\xbb\x5b\x83\x89\x85\x36\x4d\xf5\x0e\x35\x27\xd6\xfb\x97\x22\xde\xe0\x2e\xa3\xe2\xf6\x0c\x62\x22\x97\xda\x8f\x3a\xee\x01\x36\xd0\x90\x81\xd6\x1e\xf9\xd9\xb3\x0d\x9d\x16\xbe\xdc\xce\xcf\x77\xb5\xd8\x5d\xfb\x35\x83\xc4\xb6\xdb\x9c\xa4\x23\x95\x87\xd0\x48\x23\xca\xb2\xf1\xca\xac\xce\xc8\xc4\x29\x8b\xf0\x33\x42\xf6\x51\xfb\xed\xbe\xb3\x17\xf8\x43\x37\x90\xae\xdb\x55\xc8\xe8\x9b\xda\xa4\x19\x48\xfc\xd7\x28\x4d\x7a\x90\x61\x4a\x4a\x5b\x0a\xcd\x00\x17\x2d\x58\xef\x86\xf2\xe0\x59\x83\xb7\x80\x1c\x1a\xdc\x2f\x92\xef\xc8\xa2\x65\x5c\xc5\x1d\x83\x3c\x78\xf5\xe7\xeb\x79\xf6\x2f\xe8\x6e\x64\xfe\x82\x33\xe9\x54\xdc\xec\x57\x7e\x53\x85\x33\xc6\x43\x1f\x40\xdc\xdf\x02\x80\x02\x20\xd3\xd1\x00\xd0\x4d\xe2\xe1\x05\x90\xb7\x0f\xee\xb8\x88\x37\xe3\xf4\xf0\x6f\xdc\xd8\x5a\x5a\x1f\xee\x3d\x83\x26\x37\xae\x7e\xa8\x1a\x7e\xf7\x72\x01\x80\xbc\x51\x86\x80\x16\xa4\xf1\xdd\xe2\xe9\xbf\xc2\xcf\x09\x96\x47\xe4\xfa\xec\x83\x46\xe8\x73\x56\xdf\x94\xcb\x14\x14\x48\x5d\x07\x4c\xe1\xbb\x8e\x60\x06\x3e\xd2\x72\x44\x53\xfb\x90\x2f\x2f\xa4\x79\x92\x98\x07\xee\x31\x82\x43\xd5\x9c\x42\x04\x2e\xe6\xf1\xfe\xd3\xa3\xa7\xc9\x0c\xe8\xc9\x3d\x17\x56\x7f\x6a\x64\x1f\x69\x49\x6a\x93\xcb\xa1\xb5\xb7\xbd\x69\xf6\x6c\x9b\x38\x95\xad\xec\xb1\xd9\x02\x87\x58\x00\xbd\x7c\x5b\x20\x58\x36\x58\xed\x89\x51\x01\x95\xed\x55\x0c\xc8\x53\x8b\x4d\x82\x3f\x89\x99\x46\x53\xe4\xb6\x30\x75\x4c\x05\xbb\x34\xd1\x7b\x81\x1b\xfa\x3b\x5b\x69\xc0\x39\x27\x13\x02\x13\x80\xf1\xf6\xc5\xf1\x52\xc7\x94\x0e\x0f\x24\xb2\xfe\xa5\x0b\x0f\x2a\xba\x5c\x28\x52\x3b\xb7\xeb\x70\xb8\x2e\x6f\x42\xee\x4a\x5e\x03\x6d\xcc\x90\x11\x78\xb0\xed\x33\x2c\xc8\xf3\x25\x5b\x0a\x57\xe6\x1a\x48\x93\x48\x49\x4f\x9f\x80\x9a\xcb\xc5\xfb\x2f\x95\x17\x3a\x41\x74\xa5\x42\xd2\x1d\x19\x83\xa9\x91\x7d\x55\xcb\x52\x9b\x3b\x8f\x2f\x04\x11\xd5\x0d\x61\xa4\x8f\xdb\xf1\xf9\x26\x55\xb6\xfa\x8c\xce\x00\x86\x42\x2f\x2e\x9c\x0d\x0c\x53\x04\xc6\xf8\x3b\x3c\x77\x80\x0e\x0e\xc0\x07\x44\x83\xd3\xe9\x89\x09\x04\x15\x45\x81\x13\xa8\xca\x52\x10\x8e\x24\x8b\x99\x7d\xba\xf2\xa8\x0e\xf8\x03\x75\xc2\x8f\x0e\x08\x16\xf2\x26\x8c\x1f\x34\x36\x1e\x78\xe4\xf5\xfd\x72\xef\xf1\x14\x67\xf8\xf9\x6a\xdd\x45\x49\xaf\xc3\x15\x79\x4a\xe5\xa7\xa4\xa2\x9d\xf0\x39\x10\x7a\xbd\x00\x68\x8a\x82\xd3\x83\x5c\xb8\x23\xb0\x79\xc0\xd5\x5c\x08\x76\xec\x47\x60\xb0\xf8\x3a\xa2\xa9\xa2\xbc\x32\x07\xb5\x71\x05\x93\xb4\x29\x50\x30\xae\xdc\x77\xa6\xaf\xd4\x36\x7e\xb6\x79\x3e\x95\xb5\x8b\x70\xba\x78\xa8\x85\xf4\x3d\xa5\x93\xbc\xb4\xfb\xa3\x7c\xf3\x1c\x61\x46\xf6\x01\xd3\xe0\x74\xfa\x71\x2b\x18\xdc\x58\x2a\xf8\xfc\xec\xc7\xb9\x2e\xe5\x0b\xf3\xf6\xfb\x8d\x24\x0a\xad\x62\x7b\xc8\xe0\xb8\x5c\xc3\x28\x27\x0e\x39\x11\x09\x49\x12\xcd\x35\x43\x88\xce\x22\x2e\x49\x16\x07\x82\xf9\xe2\xbf\xf2\xbf\x54\x94\x77\xbc\x5c\xf6\xc0\xd4\xc2\x62\x38\xc9\x1b\x3f\xdb\xf3\xc6\xdb\x79\x9a\xce\xf2\x43\x0d\x00\x2b\x6f\xca\x15\xa8\x6a\x38\xb7\x06\x7c\x6f\x94\xf3\x7d\xf6\xc1\x55\x0e\x4a\x71\x61\x3c\x6e\x55\x6a\xee\x26\x0e\x69\x84\x1b\x29\xfe\x92\x4d\xe4\x0e\x6b\xfa\x49\xfa\xfe\xc2\xcc\x12\xf1\x67\xbd\xe5\xef\xd3\xaa\xff\xfa\x92\x08\xa7\xa2\xf4\x38\xef\x9e\x24\x73\xe1\xc1\xb6\x34\x6c\x52\xfc\x49\xe9\xb4\x1d\x6f\x89\xb4\x23\x14\x02\x17\xb1\xab\x53\x74\xde\x97\x6d\x95\x31\xa5\x9b\x52\x46\xeb\x3f\x0a\x19\xfd\x69\x90\x7d\x8e\x77\xe9\xe9\x65\xa4\xa6\xc9\x6e\x25\xa1\xe4\xf5\x29\x0e\xe5\xd0\x96\x0d\x85\xba\x54\xb3\x0b\xad\x9e\xc5\xe7\x61\x84\xfc\x69\x2f\xc6\x78\x32\x09\xf7\x74\xf1\x26\x5f\x49\x91\x6d\x7d\xa5\xed\xb4\x39\xda\x4d\x9c\xeb\x19\x2b\xfc\x0b\xad\xfa\x1d\xb8\xc5\xf2\xa8\xdc\x50\xf5\x64\x7d\x43\x06\x51\xb2\x76\xbe\x7c\xcb\xff\x5e\xe2\x2a\x5a\x04\x87\x4c\xd5\x00\x6b\x9a\xb1\x54\xff\x6d\x39\x5f\xca\xa8\xac\xa6\xfb\x14\xbb\x53\x5a\x1d\xcb\xe1\x6b\x75\x36\xd6\xa5\xb4\x0c\x7b\x78\xe1\xe5\x1f\x9e\x32\x80\xf8\x78\xb9\xce\x76\x08\xe8\xb2\xdf\x55\x01\x1b\x26\x76\x8c\x3a\xa9\x8c\x75\xbe\x83\x6f\xa9\x8f\xce\x0d\x05\x07\xbb\x9b\x18\x0f\xe2\xd8\x83\x30\xa2\x28\xea\xbb\x3c\x38\x64\x2a\x4f\xc1\xb8\xf8\x63\x7c\x75\xe2\x4f\x0b\xe5\x30\xb2\x05\xe1\xf1\x97\x40\x8f\x89\xdd\x91\xbd\xc4\x1a\x52\x11\x2f\xf2\xf3\x56\xa2\xc0\xf9\x37\xb3\x4b\x00\xd7\x13\xce\x8d\x05\xa1\x9f\x2b\x74\x9b\x62\xf3\x3c\xc3\x78\x21\x30\x4f\xfd\xe4\x05\xbb\x9f\xb5\x7f\xd6\x5b\xae\xeb\x95\xb8\x53\x0e\xfe\x90\x93\x78\x9f\x83\xc6\x5b\x71\xe1\x35\x17\xd0\x01\xab\x9d\x29\x07\x9d\x8b\xf3\xe5\xe4\xbf\x19\x03\xc7\x19\xee\xf7\x5e\xdf\xd8\xf4\x22\xbe\xe0\x1b\xdc\x4b\xbc\x76\xa2\x35\xbb\x36\xb5\xbe\x4f\x85\x21\x28\xd7\x2e\xf5\x3f\xed\x7f\xf9\x1c\xd2\xc5\x17\x1f\x87\xe6\xa7\xbf\x42\xbb\x31\xcf\x10\x0d\xad\xea\x1b\x03\x03\xaf\x34\xdf\x1b\x63\x3f\x3e\x91\x71\xff\xbb\x7a\x31\x58\x39\x55\x71\x76\x90\xae\x41\x2b\x04\xa1\x5f\x21\xd1\x43\xa2\x8a\xf6\xd7\x9e\x0e\x07\x93\x36\x5d\xcf\xbb\x05\xd5\x1e\x4f\x98\xa8\x3e\x4c\x21\x98\x84\xce\x4d\x22\x12\x3c\x1b\x10\x1c\x17\x76\xd1\x88\x87\x97\xb0\x20\xa0\x34\x97\x81\x09\x32\xd1\x4f\x55\xf6\x02\x0a\xf3\xd4\x2b\xb1\x91\x8a\xec\x71\xea\x9c\x77\x61\x23\x69\xb2\xbc\x76\x05\xc9\x7c\x18\x40\xe2\x73\x44\x19\x31\x9f\x63\x9d\x77\xd7\x5b\x04\x11\x0f\xdd\x2f\x56\x2e\x8f\x7a\x16\xff\xae\xb5\x54\xe3\xbe\x73\x24\x29\xf9\x87\xfb\x3e\xb1\x91\x5e\x4b\xac\x0c\x73\x10\x31\x00\x06\x81\xbb\x59\xd4\x25\x0d\x2c\x09\x2f\x28\x7e\x13\x02\xb2\x0d\x3a\x8a\xc3\x33\x8f\x2a\x7f\x41\x3d\x7e\x19\xa9\xde\x25\x18\x4f\xca\x8d\xbd\x41\xd2\xd0\x80\x20\x81\xb7\x14\x04\x72\xb5\x05\xa6\x2f\x42\x4a\x2e\x2e\xf5\x3d\xa4\xc3\x48\x9e\x63\x61\x1b\x37\x5f\x46\x2b\xbf\xcb\xf1\x18\x5f\xb8\x2c\xee\x0f\x73\x26\x25\x2b\x79\xee\xe7\x49\xf0\xf2\x80\x70\x97\x0f\xc1\xff\xde\xe3\x68\xbe\x7f\x81\xa6\xa8\x50\x08\x00\x99\x90\x0e\xab\xa7\xce\xc2\xfe\xc4\xea\x2f\xb2\xa8\x1e\x5a\xa8\x86\xb9\xe9\xed\x31\xc1\xd0\x45\x98\xa4\x3b\x44\x37\xe8\x4a\x6e\xc6\x27\x9a\x9d\x48\x7d\x33\x8b\x7c\xb7\x6b\x73\xd7\xb1\x09\xf3\xa4\xb7\x5e\x89\x5f\xce\xba\xff\x84\x89\x4b\x76\xe9\x85\x8d\xc1\xc9\x01\x29\x88\xcf\xa4\x64\xa5\x51\x0a\xb4\x7d\xdc\xf2\x95\x98\x1d\xc6\x0d\x7d\x98\xee\x3f\x4a\x00\xf0\xd8\x6c\x69\x35\xf7\x25\xba\x3a\x79\x22\xa9\x9b\x74\x19\xd5\x58\x8c\xbb\xeb\xba\x60\x92\x39\x38\xed\x76\xa7\xfd\x48\x41\xda\xe1\x32\x44\x95\x6c\xf8\x59\xe7\xe4\xda\x0b\x13\xe1\xe9\x8c\x62\x8f\x12\xc4\x25\xd7\xbd\x7d\x9d\xd9\xdf\xd7\x58\x80\xa6\x2d\x0d\x75\x4a\x45\x40\x6a\x90\xde\x03\x88\x48\xfd\x0c\xd2\x6a\xa0\xe8\xe2\xef\xe4\x4f\xec\xf8\x37\x2a\x37\x64\x55\xb9\xb5\xed\x9f\x30\xb8\xfe\x9f\x5d\x0a\xe9\xe5\xc3\xb1\x40\x19\xf8\x29\xcb\xc6\x3d\x36\x5a\xea\xb2\x89\xb7\xb8\xc5\x66\x6d\xdc\x44\xe4\xf4\x1f\xaa\x49\xbf\xf5\x7f\x8e\x40\x18\xda\x23\x6a\x4e\x52\xe3\x94\x6a\xce\x92\x3f\x60\x41\x68\x02\x7f\x0c\x6e\x4f\x93\xa7\x19\x37\x8a\xe4\xb1\x7d\x96\x68\xc8\x63\x0b\xe0\xde\x51\x49\x07\x57\x97\xda\xb4\xfa\x39\xcc\x35\x5b\x4c\x79\xb0\xb8\x39\xb2\xeb\xd0\xf2\xc1\x00\xc1\x14\xd9\x2b\xd6\x0b\xdf\x03\x39\x13\x75\x8e\x33\xf4\xb5\x77\x9c\x2c\x57\xfd\x36\xd8\x8e\xbd\xae\x84\xdf\xc7\x23\x6a\xce\x92\x8d\x22\xc0\xb6\x7a\x6c\x4b\x57\x62\xd6\xa8\x8a\xa9\x23\x36\x1a\x3b\x03\x4c\x3a\xcb\xe9\xd1\xf0\xfc\xb5\x9f\xdb\x67\xb3\x43\x75\x5e\x8f\x5b\x4b\x17\x77\x68\x40\x7e\xe3\xc4\x44\xe4\xb5\x78\x64\x8a\xac\x9f\xf5\xcc\xf7\x60\xce\x44\x9d\xe1\x0c\xfd\x57\xc3\xa6\x46\xeb\x76\xd0\xf6\xa6\x7f\xfe\x05\x8b\x7b\xbd\x9f\x8e\xd4\xba\xbd\x9c\x4f\x92\x1f\x53\x42\x3b\x72\x92\xef\xcb\x22\x6f\x6a\xa1\x45\x0d\xd1\xdf\xf9\x6c\x7b\x86\xaf\x4c\x94\x35\x57\xfa\x5d\xf4\x0f\xd5\x79\x05\xb7\x96\x2e\x62\x79\x70\x83\xb4\x39\xfd\x05\x35\x07\x45\xb9\x2d\xe7\x27\x9b\xf8\xf3\x80\x8f\x4b\x6e\xb2\x57\xac\xd3\x04\x7b\x14\x9f\x1e\x16\xbd\x21\xb9\x50\x87\xf1\x35\x9f\x83\x46\x4f\xf8\x8a\x22\xc1\xb6\x57\xb5\xfe\x51\x02\x87\x2f\xa0\x42\x87\x41\x14\xbf\xb9\x23\xa4\x25\x3c\x43\xea\x43\xd2\x2d\xdd\xcb\x85\x65\x51\x3d\xd5\x95\x32\x17\x3f\x55\x2c\xcd\x27\xe5\x64\x04\x2e\xb8\x91\x7d\xe6\x4c\x06\x9b\x26\x43\x4b\xb6\x95\x4b\x4a\x41\x75\x4b\x0a\x0b\xff\xbd\x70\xfc\x94\x7d\xb4\xf2\xe6\x86\xca\x6e\x6c\xb8\x71\x77\x62\x65\xd8\xca\x1b\x0c\x08\xdd\x1b\xc7\xc6\xaa\x59\x21\x20\x27\x64\x8e\x46\x81\x13\x5e\x70\x8f\xba\xbd\xab\x4e\xaf\x31\x3b\xda\x96\x45\xf5\xe4\x96\xa4\x07\x99\xd0\x39\x47\x6b\x92\xe0\xbc\x13\xaf\x20\x49\x4a\xa9\x4f\xbf\xed\x13\xf3\x58\xe7\xa9\x38\x6f\x3c\x26\xa0\x09\xd7\x67\x2b\x9c\x3b\xbe\xc7\x2a\x6d\xcd\x26\x7e\x39\x4d\x35\x25\x8d\x95\x2a\x6e\xec\x68\x0c\x5f\xc9\x09\x59\xcf\x01\x69\xe1\xbb\xf7\x29\x98\xe5\x18\x40\x2e\x81\x60\x43\x6c\x01\x05\xee\xad\xf7\xa3\xd5\xeb\x25\x4d\xd6\x13\xb5\x0b\x28\x4e\x7f\xd3\xac\x59\xbf\x89\xa2\x40\x14\xf5\xb7\x42\x95\xbe\x7a\x24\x0c\xa6\xcf\xf0\x97\x6f\x60\x31\xb4\x6e\x49\x61\xfa\x81\xe7\x2d\x94\xa9\xc1\xa6\xd3\xd1\x8b\x68\xc5\xef\x1b\xbd\x84\xf3\x48\xc9\xf3\xdb\x87\x66\xfb\x10\x0c\x21\x31\x87\x41\x6e\x99\x17\x40\x1b\xc3\x0c\xd8\x46\xf8\xe8\x59\xc0\x63\x79\x14\xbd\x89\x52\x58\xdd\x81\xb2\x19\x61\xbf\xd0\xa3\xe1\xe4\x7f\x73\x16\x0f\xdb\xd3\xfc\x66\xc0\xa9\xaa\xd8\x5a\xc0\x9b\x3d\x19\x48\x31\x62\xaf\x97\xb1\x5e\x1c\x39\xcb\xe6\xbc\xb1\xde\x69\xda\x39\xef\xb2\x81\x1d\x7a\x2c\x39\x1b\xd5\xab\xc5\xee\xd5\x8d\x18\xda\xd2\x17\x5e\x61\x72\x9f\x7a\x15\x8d\xb8\x6d\xe4\x59\xa8\x16\xc4\x26\xa1\x8c\xdc\x62\x60\x7b\x2d\xc2\xc6\x42\xe1\xb5\x8b\xbb\x0a\x50\xa6\xd9\x3a\x83\x1a\x4c\xb3\x66\xf7\xff\xd6\x79\x05\x57\x97\x2e\x8a\xc8\xf7\xa7\x70\xd0\x33\xb5\x82\xfb\x1c\x31\xf4\xf4\x4a\x4c\x4f\xe7\x97\x5e\xfc\x82\x12\xff\x15\xa5\x5c\x04\x28\x6f\x23\x9a\x2a\x9c\xbd\x78\xbb\xd5\x15\x5c\x7a\x94\x6f\xb6\x29\xc7\x2e\x6b\xf8\x2b\x7b\xef\x2c\xad\xc4\xf2\x4b\xf2\x2b\xdb\x72\xf1\x24\xa5\x4b\x4f\xf3\xc1\x63\x20\xb9\x5a\x8f\xd6\xb8\x6e\x84\xb7\x56\xd4\xda\xd4\x6e\x7d\x4a\xcf\x9e\x35\x19\x28\x0a\x54\x33\x88\xd7\x2e\x48\x0d\xd3\x4f\x3a\x7d\xfb\x65\x96\x78\xdd\xa4\x7e\xe0\xba\x2c\xb9\x3b\x1e\xba\xee\x32\x09\x47\x81\x52\x1b\x15\x24\xb6\xbc\xba\x11\xa1\x22\xdf\x87\x94\x2b\x2a\x11\xf3\x17\x7d\xcd\x91\x60\x40\xcb\x31\x8a\x84\x33\x8c\xc2\x64\x99\x21\x77\xd8\xe5\xc2\x72\x80\x0d\x57\x4c\xf5\x64\xe9\x67\xdf\xa2\x47\x73\x4d\x16\x13\x1e\xcc\x5c\x8e\xdf\xf7\xde\x7d\x83\x3c\xe3\x55\x1d\xa6\xd3\x73\x5c\x92\x70\x91\x3d\x2c\x08\x4a\x3a\xfa\x94\x27\x22\xc7\x69\x09\xf5\x2f\x2b\x39\x88\xfe\xf3\x70\x48\x90\x1a\x87\xad\xbc\xc0\x4e\x9e\x8f\xee\xf1\x31\x81\x04\xef\x3b\x08\x8d\x08\x41\xd4\xff\xd1\x7c\x85\x62\xe5\xa4\xc1\x05\xeb\x5c\x37\xc2\xab\x2b\x6c\x5a\xad\x27\x3d\x44\x64\x1b\x1a\xe2\x7a\x63\x39\x04\x29\x99\xa6\x83\x81\xc0\x67\x90\xe4\x39\xfb\x71\x17\x97\x16\xeb\xe1\x93\xe0\x5f\x81\xbb\x9b\x4e\x63\x33\x62\x96\xd8\xe7\x46\xec\xb2\x7f\xb4\x7a\xc2\x5f\x4f\x2a\x71\x84\xad\x8c\x47\x80\x01\xf6\x37\x46\xb0\x88\xf7\x09\x1d\xe8\x5a\x4c\x16\x72\x83\x81\x02\x25\xb8\xe6\x6d\x64\xd9\x62\x3a\x39\x65\x96\x3d\x3b\x59\x58\x2d\x62\xce\x3d\xf0\x04\x24\xf1\x86\x7f\x7a\x9a\x86\x9d\x5d\x0b\x73\xa6\xdb\xe4\x6e\x22\x5d\xe1\xe4\xf9\x3e\xe3\xa0\x51\xf6\xd5\xf0\x9a\xf5\x4f\xe5\x43\xe6\xb1\x68\xa6\xbb\x3b\x09\xe8\xe8\xea\xe3\xb1\xc9\x44\x2b\x6d\x03\x00\x69\x2f\x55\x4a\x1f\xe3\xc1\xe3\x30\x2a\x0c\x51\x67\xa0\xb0\xf8\x63\x25\x15\x9a\x65\xfe\xd4\xf5\x95\xd9\xd6\x6c\xda\x6a\xfa\xb3\x12\x67\x61\x1d\xf3\x0c\x96\x43\xbd\x7d\x64\x2c\xa8\x98\x4e\x0b\x13\xa4\x2b\xd7\x88\xe2\xf0\xe3\x13\x42\x38\x91\x5a\x73\x5b\x3e\xb5\xa6\xfa\x13\x2d\xe5\x3d\xfa\xad\xed\xf3\x1c\x56\x08\xeb\x5e\x45\x88\xea\x09\x04\xc6\xa3\xec\x9e\x34\xa9\xaf\x84\x02\x0a\x78\xbb\xea\xf1\x40\x0a\x2d\x61\x54\x81\xd0\x71\x08\xf6\x50\xe2\x8a\x3c\x0f\x78\x68\xef\x5d\xc3\xdc\x0f\x56\x33\xce\xd9\x2d\x6f\xa3\x87\xa2\xb3\xfd\xde\xc3\x26\xb1\x42\x94\xf4\xd4\x48\x45\x35\x39\xd1\xf8\x29\x57\x27\x4f\x5f\x87\xd3\xf3\xe0\xdb\xe1\x1e\xca\xdb\xd7\x6f\xc5\x15\x88\xf5\x79\xe9\xcc\xf3\x13\x10\xca\xfa\xde\xff\x04\xab\x8f\x35\xde\xcd\xbd\x88\x46\xbc\x91\x13\x02\x92\x1e\x3b\xa9\xf2\x24\x31\x73\xc7\x5c\x63\xe5\x58\x63\x8f\x79\x85\x2f\x7f\x60\x40\x8d\x73\x0a\x12\xf9\x38\x7d\x5f\xa7\xf2\x9e\x9f\xe3\xbb\x77\xd5\xcc\xee\x8e\x37\xb7\x3f\xe0\x97\x27\xe0\xc7\xbc\x99\x74\x90\xe4\x39\x93\xe2\xf9\xf1\x80\x56\x57\xca\x17\x2f\xcc\x3d\x76\x91\x04\x04\x97\xd3\x45\x51\x34\xb7\x34\x64\x53\x6a\xcd\xb0\x1b\xa1\x98\xf0\xe8\x30\xb5\xf1\xdf\xdb\x65\x8d\x52\x30\x33\xd0\xf7\x46\x02\x03\x8b\xea\x0d\x10\x8d\xc0\x9a\x50\xa6\x46\xe1\x68\x2e\xa2\x95\x5d\xca\x21\x98\x8f\x0a\xe9\x37\xa7\xb5\xdf\xfe\x30\x65\xd5\x76\xf7\xf3\xea\x34\x65\x3d\x48\xb8\xdf\xdf\x24\x52\xeb\xe5\xfa\xfb\x67\xd7\x0c\x06\xdc\x87\xd3\xaa\xad\xde\x77\xea\x5e\x4a\xab\x60\xe7\x4a\x13\x25\xbf\x77\x3b\x5d\xad\x63\x31\xce\x0a\x1a\x8d\x63\x0b\x45\x8c\x5f\x21\xbb\xc4\x5d\xbe\xff\xbf\xcb\xc5\x83\x81\xdb\x3e\x8f\x54\x80\x82\x4f\x05\x06\x3f\x38\x93\xd2\x85\xd1\x15\x8f\x31\x91\x2b\xa3\xd8\x43\x2f\x16\xc0\x38\x8d\x49\x71\xbb\xce\xaa\xd3\x70\x9f\xb6\xd1\x42\xa4\xe1\x75\xc9\x7d\xcb\x87\xc3\xcd\x6e\x9d\xfb\x0f\x58\x3f\x5d\xd3\xbb\x96\xa3\xb9\x83\x2a\x9c\xff\x11\xd8\xe0\x4a\xa9\xb1\x1a\x17\x1e\xe0\x00\xd5\xf0\xe3\x2b\x9f\x8c\x2f\x58\x2e\xef\x4a\x6f\xa5\x54\x18\x3a\xe9\x8d\xbf\x40\x17\x21\x12\xff\x0a\x7e\x23\x82\x46\xf7\xf8\x8c\x00\xbd\x80\xbe\xe6\x64\x5e\x48\x17\x41\xa8\x19\xac\x75\x0a\xd6\x5a\x88\x38\x31\xd4\x39\xcd\xa5\x01\x68\xd2\x0a\xd8\x41\x32\x52\x35\x29\xa2\x72\x22\xed\xd3\xf7\xaf\xe9\xb8\xfb\xdd\xdc\x15\xa2\x35\xcf\x60\x89\x2b\x30\xf2\x00\x14\x21\x19\x14\xd4\x48\x68\xda\x9c\x63\xd7\xd3\xcd\xc2\x85\xd1\x48\xed\x49\x78\xbf\x06\x3b\xf9\xfd\x23\xca\xc9\x68\x06\x69\x77\x93\x7a\x0a\x54\x77\x40\x58\x08\x7f\xf5\x65\xa8\xe6\xad\x33\x10\x3c\x61\x9b\x4e\x7b\x6b\x5b\xea\x0c\x70\x3e\x49\x1e\xa0\xa5\x01\x56\xe6\xd8\xff\x4b\x8b\xac\xc5\xdc\xdf\x5f\x2a\xc7\x23\xc3\xb8\xaf\xd3\x80\x0c\x58\xf4\x7c\x15\x0b\x4a\x37\x8d\xa4\xb6\x51\x33\x50\xcb\x9b\x62\xf5\x69\xf7\x3b\x0d\x59\xbd\x6b\xee\x4b\x2b\x66\x19\x41\xc7\xca\x91\xf0\x56\xc8\xfa\x2b\x48\x52\x8a\xaf\xeb\xce\x97\x58\x67\x59\x19\xeb\x4a\x4e\x6c\xc9\x23\xa8\x86\xe3\x80\xf8\x54\x7c\xc1\xd8\x4f\xd5\x01\xc3\x28\x82\xd4\x32\x6c\xfc\x71\x13\x41\xf8\x52\xfa\x6e\xfe\xeb\x56\xc4\xc3\xd5\x44\xfb\xc3\xb1\x3d\x3e\x23\x6a\x3d\xa7\xbe\xe7\x29\x29\x82\xf4\x79\x74\x07\x34\x70\x1a\xa6\xe2\xe7\xb4\xd1\xf1\xdc\x3c\x58\x80\x19\x15\x53\xea\x55\xf8\x04\x34\x29\xc5\x3d\xc0\xcc\x75\xa3\x7d\xfa\xbe\xb6\x9a\xa5\xe8\xea\xf5\x46\xdb\x53\x91\x32\xef\x42\x29\x2c\x33\xea\x4b\x21\x06\x5c\x20\xc7\x76\x9d\x1a\x19\x01\x68\x26\xe1\x8d\x60\x21\x02\x0a\x96\x0c\x43\xe9\xc3\xdb\x57\x72\xa7\xfa\xd3\xc3\x8d\x1b\xf1\xda\x4d\x9f\x89\x6f\x3c\x29\x50\xad\x35\x9d\x74\xf1\x47\x42\x3d\xca\xdf\x47\x7b\x1f\x9e\xff\x4b\x0b\xbb\x6f\x15\x3e\xca\xaa\x24\x4d\xea\x33\xc6\x33\xb1\x4a\x32\xf4\xec\xd1\xc4\xfd\x66\xd7\xdc\xbf\xca\x1f\x08\xfb\x0d\xe6\xd9\xf4\xff\x17\x3e\x90\xc9\x8f\x62\x2a\xb8\x99\xe3\x5a\xaa\x3f\x14\xd7\x5b\xd5\x32\xe0\x0d\xb5\xbc\xb9\xc6\x75\x23\xff\xe8\xc1\xf0\xbe\xb3\x35\x5d\xf9\x3b\x58\x21\x0a\x5f\xae\x0a\xe6\xc1\xc0\x34\x91\x07\x28\xb8\x5e\x9c\x82\x26\xf5\x7d\x6d\x30\xde\x88\xfd\xc4\x38\xa8\x51\x20\xeb\x5e\xfc\x54\x96\xba\x41\x6d\x26\xb6\xc4\x95\xb2\xa1\x74\x38\xbb\xb1\xdf\x3d\x51\x2b\xc3\x68\xd3\x07\xa5\x38\xe3\x51\x5e\x44\xa9\xf0\xfd\x7d\x19\xfb\x39\xb6\x92\x54\x0c\xbf\xac\x4f\x53\xe2\x08\x75\x70\xca\x1c\x78\x49\xdd\xac\x00\xa7\x07\x2f\x07\x66\x3d\x46\xba\x5b\x2e\x23\xb1\x49\xfc\xf0\x94\x04\xed\xae\x91\xde\x5a\x35\x80\x79\xd6\xc5\xb2\xca\x00\xcb\x1c\xcf\x34\x04\x2b\x4f\xf6\x31\x2f\x75\xae\x7c\xde\xd2\xbd\x6f\x6e\xf6\xfd\xb1\x42\x96\x54\x88\xeb\xbb\x9c\x2d\x6d\xc1\x32\x9c\x04\x96\x19\x8c\x71\x52\x43\x46\x89\x05\x6f\xb0\x05\xdc\x84\xc1\xb0\xfc\x74\xe5\x87\x14\x02\x8a\x1a\x0c\xee\x96\x2c\xd5\xe9\x3d\xd9\xa2\xf1\xb2\xd9\xf2\x1e\x3f\x06\x0b\x16\x46\x03\x37\x7a\x88\x90\x08\x0c\x23\xbb\x26\x0e\x93\xa2\x1a\x99\xef\x44\x9a\x80\x87\x58\xec\x2f\x14\x98\x5c\x96\x9b\x93\x9c\x4f\x92\xdf\xd8\xb9\x0a\x72\x3b\x1c\xb3\x4d\x08\xa3\x13\xfc\x91\x5a\xf4\xc5\x81\xb4\xea\xec\x63\x53\xf6\xa3\x0c\x50\x38\xc0\x96\xdc\x01\xc0\x8c\xe4\x0c\x8f\xf4\xd8\xb0\x52\xa1\xae\x0e\x8a\xe9\xdf\x9b\x06\xeb\x42\x9c\xde\x28\x35\xe8\xe6\x5b\x7c\xd6\x17\xcd\x35\xba\xbb\xaa\xba\xcd\x7f\x9d\x51\xfd\x86\xc1\xb8\x7b\xa4\xae\x8a\xd7\x28\x0b\xad\xea\xb3\x85\x17\x07\xcc\x70\x86\xa9\x96\x3f\x79\x03\xa3\x7d\xfe\x09\x29\x3e\xa8\xdb\x82\xf4\x9e\xa8\xd0\x7c\xad\x45\xfb\x2e\x2f\x16\xbb\x3b\xb1\xef\xdd\xef\xd5\x5b\x72\x78\xc8\x1c\x16\x8c\xa1\x03\x06\x4c\x9f\x13\x24\x96\x03\x75\x83\x52\x00\xaa\x24\x2b\xc6\xa5\xba\x45\x64\x6f\xfc\x11\x1a\x84\x76\x2e\xae\xde\x9b\x38\xde\xa2\xd3\x59\xbb\x5b\x94\x38\xc8\x2f\x04\x24\xe9\x68\xe0\xe9\x01\xb9\x56\x36\xcd\xfe\xeb\x9a\x4c\x94\x5e\x86\x49\x2b\x58\x5b\x8a\x84\x7f\x58\xa6\x84\xd7\xda\x5d\xc6\x7a\xc6\x6a\xf4\x6a\xbb\x2b\xec\x6c\xec\x89\x16\x41\x18\xbf\x34\x26\x13\xda\xf2\x52\x9a\xc2\xe7\x1a\x69\x4c\x26\xcb\xc6\x46\x50\xc3\x37\x48\x14\xd3\xe8\xd0\x1d\x64\x14\x30\x6a\x20\x44\xaf\x05\xc3\x04\x70\xc7\x52\xa9\xe0\x7c\xe3\x03\xbf\x26\xbd\xf8\xe7\x4f\x0d\xa4\xe0\x92\x54\x69\xb0\x18\x4f\x5e\x0a\x3d\x47\x7a\xf4\x26\x95\xf1\x59\x18\x71\xae\x6c\xfc\x80\x79\x59\x3e\xd6\xd3\xcd\x44\xae\xb1\xe7\x6f\x23\x8a\xcb\x8c\xa1\x66\xc4\x61\xc9\xdf\x94\x14\x81\x94\x9c\x13\xb8\x26\xd3\x34\x66\xff\x63\xa9\x77\x44\x83\x01\xa4\x35\x42\xb8\x69\x3f\xfa\xac\xf5\x43\x9c\x12\xc0\x11\xe6\x70\x8c\x01\xe1\xac\x5c\xf3\xb0\xf0\x38\x5e\x98\x3a\x03\x65\x37\xbc\x4d\x72\x49\x86\x92\x26\x22\x6a\xcc\x67\xc8\x18\x5c\x92\x62\x80\x82\xd9\xe7\xee\x81\x4c\x6e\x1b\x4a\xeb\x99\x08\xc8\x2f\x80\x7f\x5e\x84\x12\x9b\x57\x4e\x16\x35\x0b\x74\x7d\x15\xa8\x19\x31\x34\xbc\x77\x89\x2d\x1b\x4d\x5b\x77\x28\x6d\x46\x87\xc7\xca\x24\xf7\x98\x97\x83\x75\xcf\x72\xb4\xc5\x62\x98\x5b\x0e\x82\xb9\x3f\x1f\xbd\x5d\xc4\x5d\xe5\xf0\xe2\xcb\xb9\x85\x67\x48\x8c\x8c\x0b\x9d\x1b\x3d\x98\x96\xb9\x2a\x75\x62\xd8\x9d\x50\x19\xea\xf0\x14\x03\xc2\xe9\x5e\xb1\x8f\x8d\xd8\xb8\x1d\x9f\x5b\xb6\x4a\x1f\xc7\x0b\xef\x61\x67\x4e\x51\xeb\x40\xf2\x60\x18\x13\xba\xd5\xc7\xcf\xd1\x31\xc5\x93\x3b\x05\xc9\xf5\x41\xdc\x0e\x27\xa9\xa6\x17\x91\x51\x1d\x05\x26\x21\x59\x6f\x11\xcc\xdd\xd7\xee\xee\x08\x06\xed\xfe\xf3\x91\x3e\xeb\x9b\xc3\x81\x81\x37\xda\x3d\xf4\x14\xcb\x5e\x99\x2f\x6c\x33\xcb\x90\x5a\x5c\xf0\x20\xb7\xd1\xfe\xf0\xa4\x6b\xc8\xef\x27\x74\x4c\x60\x2d\x22\x97\x32\xd5\x86\x6c\x50\x11\x0c\x27\x4d\x40\x28\x26\x72\xda\x5f\x2d\x7a\x15\x81\x5d\x8f\x84\x5f\xc8\x89\x85\x4a\x9f\xc1\x52\x00\x1a\xc0\x61\x8b\x9d\x97\xb2\x70\x5d\x6b\x21\x82\x1f\x8b\xd6\x65\x2e\x8e\xb7\x53\x0f\x63\x26\x92\x5d\x5a\x80\x7f\xc1\xaf\x16\xc3\x5f\x4f\xd4\x5c\x4e\xc4\x91\x85\xde\xe2\xec\x54\xec\xa6\x63\xc8\x7f\x8b\x9f\x50\x68\xde\x3a\x66\x9b\xd0\x48\x62\x36\x00\x90\x52\xdf\x32\x1f\x21\xc3\xb8\xa4\x85\xe0\x44\x8e\x62\x6a\x4a\xc9\x2e\x7b\x17\xf5\xf0\x1f\x93\x64\xa1\x1e\x65\xfe\x21\xdb\x04\x5e\x20\x3a\x90\x42\x9d\x01\x16\x99\x97\x5f\x9f\x85\x78\xec\x97\xff\xb9\x9f\x0a\x53\x94\x88\x34\xfc\x0f\xd5\x89\x65\x03\x34\x65\xd3\x5d\xd4\xfd\x98\xed\xd0\x7d\x91\xe8\x0d\xb9\x9a\x4e\xc1\xbb\x35\x52\x9b\x6d\x2a\x29\x71\x84\xf2\x3c\x1c\x16\x8f\xbc\xc7\x05\x97\x4f\x60\xac\x44\xdc\xd0\x09\x2f\xe8\xfc\x1f\xd4\xa5\x00\xc0\xac\x45\x1b\xd1\xe0\x4f\xbc\x92\x84\x62\x94\x95\x62\x25\x10\x8f\x9f\x87\x5b\x74\xe7\xab\x66\x01\x31\x79\x03\xa0\x44\x3a\xa9\x05\x02\x9b\x3f\x6e\xec\x8a\x22\x47\x08\xe4\x36\x9f\x01\x80\xf4\x19\x88\xc1\x23\x2f\x0f\xde\xd3\xab\xcc\x9e\x0a\xf5\x84\x4c\x3f\x81\x9f\x9f\x47\xee\x80\x0a\x16\x6d\xaf\x6a\xd3\xe8\x06\xb9\x25\x69\xb2\xad\x7e\x30\xbc\xbc\x8a\xa9\xfb\xa0\x7f\x76\xca\x26\x7d\x06\x93\x54\x12\x02\xe8\x8b\x07\x00\x2c\x80\xce\x12\x8a\xc9\x4b\xf4\xe1\x22\x2e\xc2\xe5\xf5\xcf\x6e\xf7\xa3\x19\xe8\x95\x11\x02\x34\x3d\xa1\xc3\xef\x7b\xc7\xc3\x94\x28\xe3\x15\xf1\x39\x57\x84\x00\x7a\xfe\xe7\x3c\x78\x00\x79\x7a\x2e\x55\x63\x10\x93\x97\x78\x30\x87\x9d\x4a\x3a\xfc\x82\x55\xf7\xb1\x32\xa4\x57\x44\xac\x37\x17\x5d\xce\x51\xfc\x57\x0e\xc2\x00\x40\xf6\xb1\xc5\x21\x69\x54\xd4\x19\xa8\xb4\x12\x73\x8f\x17\xe3\xbd\xaf\x74\xc3\xdf\x29\xac\xda\x17\x71\x1c\xbe\x8d\xe6\x8a\x57\xc4\x5b\x71\x09\x01\xf4\x2b\x70\xb6\xbb\x6c\x00\x9c\xbc\xa0\xb8\xbd\x9b\xff\x7c\x22\x26\xca\x2b\x8c\x0e\x70\xde\x60\x58\x91\xc4\x81\x01\xec\xf0\x1b\x89\x6f\xd8\x9c\x81\xbd\xeb\x8a\x0d\x1f\xd4\xef\x26\x22\x33\x32\x06\xd0\xcd\xc8\x3e\xab\x83\x38\xb0\xdd\xa3\x02\x2f\x8d\xa4\x4d\x27\x94\x20\x37\x04\x2b\x9f\xf3\x3c\x00\x73\x37\x01\x09\xc3\xff\x2f\xc7\x20\x9a\xac\xec\x90\xee\x76\xfc\xd4\xf4\xa5\x31\x00\x00\x37\x7c\xd5\x1e\xf8\x3a\xd8\xf9\x3a\xca\xdb\x7b\x3b\xda\xf9\x3a\x02\x92\x68\x09\x59\x51\xb4\x94\xa8\x94\x84\x31\x1a\x2d\x2f\x2d\x25\x2f\x29\x25\x8c\x96\x94\x47\xa3\xbb\xc5\xd0\x33\xff\x0f\xe0\xee\xe1\xe0\xe2\x14\xf8\xff\x07\xea\x7c\x62\x1c\x01\x00\x30\x0b\x32\x7e\xe0\x7b\xdf\xce\x1f\xe9\xe9\xed\xe1\xe4\xe2\xe6\x88\xf4\x0d\xf4\x74\x44\xba\x78\xfa\xda\x03\x40\x40\x0e\x61\x1f\x0e\xf3\x32\x15\x12\xea\xd7\x1f\x18\xd4\x5a\xbd\x0f\x50\xf0\xd1\x8a\xd9\xd3\x32\xf1\x31\xe9\xa4\x32\x53\x30\x21\x55\x71\xd2\xdd\x0e\x14\x7c\x1f\x8d\x91\x03\xd3\x3f\xfa\xbe\x0e\x7e\xe5\xfa\x4a\x35\x80\xd3\x2c\xd0\x16\x03\xb6\xae\x31\xf8\xee\xab\xc8\xa4\x01\x00\x00\x68\xa9\xe9\xa9\xd6\xa8\xd8\xe2\xff\x4f\x00\x00\x00\xff\xff\xf1\x18\xc7\x0e\x41\xe4\x00\x00") - -func web_uiV1StaticConsulLogoPngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticConsulLogoPng, - "web_ui/v1/static/consul-logo.png", - ) -} - -func web_uiV1StaticConsulLogoPng() (*asset, error) { - bytes, err := web_uiV1StaticConsulLogoPngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/consul-logo.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFavicon128Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") - -func web_uiV1StaticFavicon128PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFavicon128Png, - "web_ui/v1/static/favicon-128.png", - ) -} - -func web_uiV1StaticFavicon128Png() (*asset, error) { - bytes, err := web_uiV1StaticFavicon128PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon-128.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFavicon16x16Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") - -func web_uiV1StaticFavicon16x16PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFavicon16x16Png, - "web_ui/v1/static/favicon-16x16.png", - ) -} - -func web_uiV1StaticFavicon16x16Png() (*asset, error) { - bytes, err := web_uiV1StaticFavicon16x16PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon-16x16.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFavicon196x196Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x33\x40\xcc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\xc4\x00\x00\x00\xc4\x08\x06\x00\x00\x00\xc0\xa6\x8e\x6b\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\x79\x70\x1c\xc9\x79\x2f\xf8\xfb\xb2\xab\xab\x0f\x34\x1a\x0d\x10\x00\x41\x00\x3c\x40\x82\xe7\xf0\x1e\x0e\x87\xa4\x24\x8a\xe6\x68\x34\x1a\xcd\xe8\xb2\xa5\x99\xb1\xf6\xf9\x59\xf2\xc1\x75\xec\x0b\xaf\xd7\xe1\xb5\x23\x14\x2f\x1c\x1b\x1b\xbb\x2f\x76\xbd\x11\xf6\x86\xe3\xc5\x5b\xbf\x08\xaf\xec\x90\xe4\xd0\x61\xeb\xd6\xe8\x9e\xd1\x9c\x1a\x6a\x0e\xce\x90\x43\x72\x86\x37\x41\x10\x04\x01\x10\x67\xa3\xd1\xe8\xae\xae\xca\xdc\x3f\xaa\xb2\x2a\x2b\xbb\xaa\xbb\xc1\xa1\xe2\xd9\x9b\x11\x40\x57\xe5\xfd\x65\x7e\x77\x1e\x05\x44\x07\xe6\xfd\x21\xe2\x37\x2a\xaf\xfe\xac\xc7\xe9\x65\xe3\xea\x6a\x25\x44\xb5\xd7\x28\xcf\xbd\xac\xbf\x95\xb6\x9b\xd5\xad\x8f\x47\x23\x18\x9a\x8d\x67\x54\x59\xbd\x8d\x38\x18\xa2\xe6\xa5\x51\x3f\xa3\xfa\x11\xd7\x87\x66\x7d\xfd\x37\x03\xc3\x7b\x41\xa4\x7b\x5d\xe7\xdd\x20\x7b\xdc\xe0\xae\xb4\xbd\xbb\xa9\x67\xa5\xc8\xf2\xaf\x3d\xbc\x97\xb1\xfc\xd7\x12\x56\x0c\x83\x11\x93\x51\x7d\xe6\x31\x71\x4c\xf9\xd5\xe3\xa0\x3d\xc7\xd5\xab\x77\x8e\x47\x3c\x47\xb5\x13\x55\x5f\xb3\xbe\xeb\x7d\x51\xf3\x46\xd5\x19\xd5\xb7\x66\xfd\x95\xed\x70\x2d\x5d\x1f\xa3\x46\x75\xea\xf1\xcd\xc6\x3a\xae\xee\x46\xf5\x37\x0b\x2b\x19\xe3\x56\xda\xfe\xb7\x0a\xc3\x8a\x42\x1c\x01\x35\x6b\x3c\x4a\x15\x6b\x24\xda\x5a\xa5\xf2\x28\x31\x1a\xf7\xdb\xa8\x2f\x71\x7d\x6b\xa5\xde\x95\xd4\xdf\x4a\xde\x46\x6d\xc6\x85\xa8\x72\x71\xf5\xb4\x22\x85\x5b\xed\x4f\xa3\x36\xfe\x2d\xc1\xb0\xa2\x4e\xb5\xda\x70\x2b\xf5\xc6\xd5\x11\xd7\xc1\x56\xcb\x34\xcb\x13\x17\xd7\x0c\xa9\xf5\x7e\x35\x22\xf2\xa8\xb8\x56\xe0\x8e\x8b\x6b\x16\x5a\x19\xaf\x46\x79\xef\x45\xdb\xf7\xaa\x9e\x7f\x2d\x30\x34\xcd\xd8\x0a\x35\x35\xaa\xb8\x55\xee\xd0\x4a\x5d\x51\x79\xee\x25\xc1\x36\xeb\xc7\xdd\xc0\x10\x57\x4f\x2b\xed\xb5\x1a\x56\x52\x76\xa5\xed\xb4\x32\xbe\x77\x5b\xf7\xdd\x96\xfd\xb5\xc0\xb0\x12\x04\xd7\x27\x58\xe7\xae\x7a\x3c\x22\x9e\xf5\xb8\xb8\xf7\xb8\xf6\xa2\xea\x69\x45\x34\xc7\x95\x69\x96\x3f\xae\x4f\x51\x30\x36\xaa\xbb\x51\x1d\xcd\x60\x8b\x6a\xaf\x51\x5f\xa2\xca\xc7\xf5\x21\xea\xf9\x6e\xc6\xb3\x19\x7c\xff\x26\x60\x30\xd0\xd8\xf0\x6d\x14\xdf\xc8\x60\x6d\x64\x1c\xab\xf1\x32\x4e\x35\x68\xd4\x7c\x51\xf5\x46\xd5\x13\x17\xe2\xf2\x45\x19\xbb\x8d\xf2\xc7\xf5\x29\xca\x78\x6e\x34\x16\x51\xfd\x63\xa8\x37\xe8\xf4\x7e\xb5\x12\xa2\xc6\x46\x0d\x6a\x5a\x2b\x9c\x55\xd6\xa7\xcf\x4b\x54\x3d\x51\x06\xe9\xbf\x59\x18\xa2\x28\x07\x11\x71\xad\x74\x20\x2e\x34\xe3\xbc\x8d\xb8\x68\x5c\x5c\xb3\x76\x5a\x69\xbb\xd5\x32\x71\x93\xfd\xeb\x6e\xbb\xd5\xb4\x56\xea\xb9\x5b\x18\x64\x7c\xdc\x1c\xfc\xff\x15\x86\xd8\x4a\x5a\x6d\x2c\xaa\xe1\xa8\xb4\x56\xda\x59\x49\x5b\xad\xd4\xd3\x6a\xbb\x51\xe2\x5b\x7f\x6f\x65\xc0\x01\x00\x86\x61\xd4\xe5\xbd\xef\xbe\xfb\x58\xa3\xf7\xa8\x32\x31\x6d\x35\x7a\x6f\x25\xcf\xdd\x94\x69\xa5\x2f\x77\x5b\xee\x5f\x05\x0c\x84\x7a\xf1\xd1\x48\x6c\xb5\x9a\x37\x2a\x5f\xa3\xce\xb4\xba\x86\xd1\xca\xba\x47\xab\xed\x35\xeb\x67\xb3\x7a\xea\xc2\xb1\x63\xc7\x58\x22\x91\x00\x00\x74\x76\x76\xa2\xab\xab\x6b\x25\xc5\x23\xc3\xe8\xe8\x28\x6a\xb5\x1a\x9e\x7d\xf6\x59\x3e\x3c\x3c\xcc\xae\x5c\xb9\x12\xd5\xc7\x66\xbf\x7a\x58\x69\xb9\x56\xe6\xba\xd9\xbc\xe8\xf9\xff\x55\xc2\x40\x0d\x32\xeb\xcf\x32\x34\x5b\x4c\x6a\x86\x6c\xea\xc0\x45\xd5\xad\xc7\xe9\xf1\x71\x3a\x60\x54\x3f\xe2\xb8\x43\xb3\x81\x54\xdb\xd4\xfb\x8f\x03\x07\x0e\xb0\x9e\x9e\x1e\x74\x75\x75\xc1\x34\x4d\x24\x93\x49\x08\x21\x02\x2e\x43\xc4\x84\x10\x00\xc0\x88\xc8\xef\xa3\x10\x02\x44\x24\x7f\x99\xf7\xcb\x65\xbc\xda\x3f\x2d\x2d\x64\xb7\x70\xce\xb1\xbc\xbc\x0c\x00\xb8\x7e\xfd\x3a\x2c\xcb\xc2\x1b\x6f\xbc\xc1\xd3\xe9\x34\xab\x54\x2a\x8d\x16\xbf\x9a\x31\x91\x46\x63\x11\x85\x03\xad\x94\x69\x34\x1f\xef\xa5\x9e\x5f\x0b\x0c\xa1\x59\x68\xd2\x70\x2b\x79\x5a\x91\x16\x7a\x67\xe2\xf2\x35\xe3\xce\x51\x84\xd5\xa8\xed\xb8\xf6\x1b\xf6\x6f\xf3\xe6\xcd\x6c\xe3\xc6\x8d\xc8\xe7\xf3\xe8\xec\xec\x54\xf3\x48\x84\x66\x5e\x1c\xf3\xe2\x98\x12\x67\x90\x00\x4b\xd9\xcc\x48\xd9\xcc\x34\x6d\x32\x13\x82\x0c\x26\x60\x30\x41\x06\x04\x20\x08\x9c\x93\xb0\x39\xc1\xb6\x0c\x6e\x59\x09\x6e\x59\x86\xb0\x6b\x4c\xd8\x20\x70\xaf\x2f\xb6\xd7\xa6\xad\xf4\x95\x2b\x7f\x00\xc0\xcb\xe5\x32\xe6\xe7\xe7\xf1\xf4\xd3\x4f\x37\xe2\xa8\x8d\x42\x33\xee\xda\xa8\x9e\x28\x46\xb2\xd2\xf2\xad\xf6\xaf\x95\x3c\x77\x05\x83\x4a\x10\x71\x54\x87\x88\xc2\xad\x8a\xb3\x86\x8d\xc7\xc4\xb7\x9a\x7e\xb7\x65\x9a\xc1\x84\x0f\x7c\xe0\x03\xac\xb7\xb7\x57\xaa\x3c\xcc\xe3\xea\x12\xd1\x0d\x21\x04\x23\x90\x91\x10\x30\x4c\x9b\xa5\xdb\xac\x44\x21\x5f\x49\xf4\xe6\x2b\x46\x5f\xd6\x4a\xf4\x15\x2a\xc6\xda\x8e\x65\xa3\x3f\x5d\x63\xdd\x06\xa7\xbc\xc1\x29\xcf\x04\x72\x24\xc8\x00\x60\x50\x40\x40\x7e\x3f\x04\x60\xc3\x25\x8c\xb2\x43\x28\x3b\x8c\x17\x2b\x86\x98\x2e\xa5\x9c\x89\xc5\x94\x3d\x55\x4c\xdb\x37\x17\xd3\xce\xf8\x42\xda\x9e\x5a\x4e\xf2\xd9\x25\xd3\x29\xd9\x09\x61\x09\x82\x8d\x80\x50\xfc\x3f\x21\x04\x17\x42\xe0\xc6\x8d\x1b\xf8\xf9\xcf\x7f\xde\xea\x38\xb6\xaa\xae\xbc\x97\xf0\x5e\x08\x62\x25\xf5\xdf\x15\x0c\xba\xca\xd4\x4a\x43\xad\x76\x68\x25\xe9\x8d\x38\xf9\xdd\xf4\x21\xae\x4c\x5d\x79\xc6\x18\xe3\x9c\xf3\x0f\x7c\xe0\x03\x6c\x70\x70\x10\xb9\x5c\x4e\xe6\xf3\x09\x00\x02\x06\x13\x30\x4d\x87\xa5\xf3\x95\x44\x57\xef\xa2\xb9\x61\x75\xc9\xdc\xd9\x59\x4e\x6e\x6f\xaf\x26\x36\xa6\x6b\xac\xdf\xe0\xd4\xc5\x04\xd2\x00\x0c\x80\x00\x11\xb4\xe1\x6b\x43\x42\xf9\x21\x84\xf2\x80\x00\x12\xf0\x67\x44\xd4\x65\x11\x5c\x00\x16\x67\x28\x59\x09\x3e\xbd\x64\x3a\xa3\xf3\x19\xfb\xc2\x4c\x5b\xed\xfc\x64\xbb\x75\x61\x26\x5b\x9b\x28\x9b\xbc\x68\x33\x61\x09\x08\x9b\x88\x54\x42\x01\xe7\x9c\x2f\x2c\x2c\xe0\xed\xb7\xdf\xc6\xc5\x8b\x17\x7f\x1d\x8c\xe6\x5f\x7b\x68\x09\x06\x5d\x42\x00\x8d\x55\x25\x44\xe4\x69\x45\x0d\x89\xcb\xf7\x9e\x01\x88\xc8\xd7\xaa\x5a\x86\xbd\x7b\xf7\xb2\xf5\xeb\xd7\x63\xf5\xea\xd5\xba\x04\x30\x88\xc8\x48\xda\x94\x5d\x55\x4e\xf6\x0e\x2c\xa4\x76\x0c\xcc\xa7\x0e\xaf\x5a\x4a\xee\xce\xd6\xd8\xb0\xc1\xa9\x1b\x20\x43\xd7\x37\x05\x04\x08\x7a\xac\x9f\x58\x87\xec\x0d\xb2\x34\x4d\xf5\xed\x11\x08\x08\x42\xb9\x9a\x10\xa3\xc5\xb4\x7d\xe1\x76\xbe\xfa\xea\x78\x87\xf5\xe6\x64\xbb\x35\xb2\x90\xb6\xe7\x05\x84\x05\x97\x30\x6c\xcf\x16\xe1\x9c\x73\x3e\x3a\x3a\x8a\x0b\x17\x2e\x60\x74\x74\xb4\x55\xf5\xb7\xd9\xbb\x1e\xdf\x48\x85\x8a\xaa\xa3\x15\x1b\x40\x2d\xa7\x86\x7b\x06\x43\x94\xca\xd4\x6a\x63\xcd\x1a\x68\xc5\x00\x42\x4c\xd9\xa8\xf8\x46\xba\x7e\x4b\xfd\x34\x0c\x83\x6d\xd8\xb0\x01\x43\x43\x43\x58\xbb\x76\xad\x74\x71\x32\x49\x00\x10\x30\x33\x35\x96\x5f\x53\x34\x37\x6e\x9a\xc9\x1e\xe9\x2b\x9a\xef\x6b\xaf\x26\x76\x27\x1d\xea\x06\x60\x10\x08\x10\x02\x08\x0c\x63\xf7\x1d\xe4\x0a\x05\x3f\x0e\xde\xc8\x7a\x0f\xf2\x47\x48\x69\xa1\x23\x37\x40\x24\x94\x67\x99\x42\x0a\x91\xb9\x65\x84\x52\xd4\x8d\xf5\xd2\x85\x80\x70\xe3\x39\x27\x94\xab\x06\x1f\x9d\x69\xab\xbd\x36\xd2\x55\x79\xe1\x46\x67\xe5\xf4\x7c\xc6\x9e\xb2\x13\xa2\x02\xc0\x12\xc2\x95\x20\x9c\x73\x6e\x59\x16\x4e\x9f\x3e\x8d\x91\x91\x11\x14\x8b\xc5\x28\x04\x6c\x84\xa8\xad\xe2\x4b\x23\x24\x6f\x68\xc3\xbd\x87\xb8\xbb\x82\x81\x22\x12\xa1\x55\x82\x06\x71\x77\x53\xe6\x6e\xcb\xb5\xaa\x56\x45\xd6\xb7\x7d\xfb\x76\xb6\x73\xe7\x4e\x14\x0a\x05\x84\x24\x01\xc8\x4c\x08\x64\x07\xe7\xd3\x1b\xb7\xdc\xc9\x3c\x3c\x30\x9f\x3e\xd6\x5e\x4d\xec\x64\x02\x05\x1d\x11\x55\x47\x50\xd8\x33\x14\x46\xfc\xc8\xa0\x56\xa0\x3c\xab\x84\x25\x88\x40\xaa\x5e\x45\x8a\x48\xf1\xe2\xdd\x3c\x41\x94\x24\x24\x99\x4f\x10\x81\xd4\xfa\x21\x2c\x2b\x21\xc6\xa7\xdb\x6a\xaf\x5d\xeb\x5e\xfe\xf1\x95\xee\xf2\xaf\x16\xd2\xce\x2c\x08\x15\x21\x84\xaf\x56\x09\x21\xf8\xb5\x6b\xd7\x70\xfa\xf4\x69\xcc\xce\xce\xea\xe3\x1a\xa5\x1d\xa8\xef\x51\x79\x64\x5c\x54\x7a\x54\x3d\xcd\xea\x6e\xa5\x5d\xbd\x9e\x15\xc3\x10\x2f\xa1\x7f\x7d\xe1\xd7\xad\x8f\xd6\xd5\xff\x07\x7f\xf0\x07\x8c\x31\x26\x3d\x40\x86\x10\xc2\x48\x08\xca\x76\x95\x93\xfd\xc3\xd3\x99\xa3\xdb\x26\xb3\x9f\x68\xaf\x1a\x07\x12\x82\x72\x6e\x89\x28\x0e\xae\xd6\x28\x20\x04\x69\x71\x01\xb7\x16\x1e\x1b\xd7\xd3\xd5\xba\xfd\x3a\x7d\x5a\x0a\x38\xbd\x94\x38\x01\x91\xc0\x43\x76\x59\xbf\x5b\x36\x24\x91\x80\xb0\x11\xe2\xb9\xb0\x24\x5d\xb9\xd5\x0a\x5e\x4b\x88\xb1\xf1\xbc\xf5\xcc\xbb\xab\x97\x7e\x70\xa3\xab\xf2\x76\xc5\xe0\x45\x10\x2a\x00\x6c\x8f\x40\xf8\xe8\xe8\x28\xce\x9c\x39\x83\x89\x89\x89\x58\xdb\x2b\x66\xdc\x11\x91\xaf\x55\x26\xda\xd0\xd6\xbb\xcb\xb0\xd2\x3a\x99\x2e\x21\xb0\xc2\x8e\xdc\x4d\x19\x59\xae\x15\x7d\xf4\xae\xc3\x91\x23\x47\xd8\xf0\xf0\x30\x52\xa9\x94\x6a\x1c\xa7\x4d\x87\x72\x83\xf3\xa9\x2d\xbb\x6e\xe7\x9e\x5c\x53\x4c\x7d\x28\x65\xd3\x20\x40\x86\xc4\x25\xe1\x21\x17\x79\xff\x02\x24\x0f\x10\x58\x20\x8c\xf0\xc2\x47\x48\x0f\x27\x51\x2f\x2c\x24\x32\x87\x6c\x09\x8f\xcd\x93\x24\x00\xd9\x5a\x9d\xa4\x89\x10\x3d\x61\x29\x00\x12\x14\xca\x12\xb6\x67\xc2\x3a\x9b\x80\x00\x27\x94\x16\xd2\xf6\xe9\xab\xdd\xcb\xdf\x7a\x77\xf5\xd2\x2f\xe6\x33\xf6\x04\x67\x50\x55\x2a\x3e\x37\x37\x87\xe7\x9e\x7b\x0e\xd3\xd3\xd3\xad\x20\x55\x33\xe4\x6b\x45\x5d\x6a\x45\x9d\x6e\x15\xc9\x9b\xb5\x13\x59\x46\x12\x84\x0c\x8d\xf4\x2c\xbd\x91\xa8\xce\x36\x02\xa0\x91\x8d\xa0\xd7\x19\x15\xdf\x12\x27\x79\xe0\x81\x07\xd8\x8e\x1d\x3b\x90\x4a\xa5\x98\x97\x6e\x02\x30\x33\x16\x2b\x6c\xb9\x93\x3d\xb4\x63\x22\xfb\x64\xf7\x92\x79\x8c\x09\xca\x43\x78\x8c\xd8\x43\xf4\x10\x47\x77\x19\xac\xc7\xa8\xe5\x82\x5a\x90\xac\x72\xf7\xba\x5f\xa5\x3c\x44\x7d\x5e\xe9\x65\xf2\xcd\x09\x59\x84\x02\xab\x01\x8a\xd1\x2c\x09\x49\x20\x58\xd8\x53\x2b\x95\x2a\x92\x2f\x39\x20\x3c\xa2\x0a\xca\x8b\x20\xd1\x6b\x5b\xf8\x7d\xac\x18\xfc\xd2\xf5\x55\x95\xef\x9e\xeb\x2b\x7d\x67\x22\x6f\x8d\x38\x24\xca\x44\xe4\x13\xc6\x95\x2b\x57\xf0\x8b\x5f\xfc\xa2\x91\xa1\x1a\x35\x7f\xfa\x5c\xde\x8d\xa1\xdb\x8a\xee\xff\x5e\xea\xad\x83\x41\xdf\xba\xd1\x08\x90\x7b\x15\xdf\x8c\x7b\xb4\x42\x00\x75\x69\xc3\xc3\xc3\x6c\xef\xde\xbd\xe8\xec\xec\x94\x12\xc1\x84\x40\x3a\x5b\x63\x85\xed\x13\x6d\x47\x77\x4e\xb4\xfd\x6e\xc7\xb2\x71\x88\x00\x53\x72\x53\xdd\xf6\xad\x37\x7e\xdd\xa0\x1b\xcb\xba\xba\x53\xaf\xf6\x84\xf3\xc5\xd8\xd8\x01\x71\x00\x81\x96\xa4\x54\xe9\xb5\x0e\x69\x59\x84\x89\xd3\xad\x9c\x34\xc2\x0b\x10\x3f\x20\x28\xa8\x04\xa6\xe5\x23\x4f\x2d\x03\x04\x6a\x4c\x4c\x8c\x75\x56\xbf\xfd\xd6\xc0\xe2\xbf\xdc\xea\xa8\x5e\xe2\x0c\x25\x00\x16\x00\xdb\x71\x1c\x7e\xf3\xe6\x4d\x9c\x3c\x79\x12\x8b\x8b\x8b\x2b\x51\x8b\xe2\x0c\xe0\x46\x08\xdd\x2a\x93\x6e\xc5\x6e\x69\xd6\x6e\xa8\xcf\x8d\x6c\x88\x56\xd5\x98\x95\x18\xbf\xad\x4a\x89\xb8\x0e\x03\x11\x6d\x3d\xf2\xc8\x23\x6c\xdd\xba\x75\x80\xbb\x9d\xdd\x20\x50\xda\x74\x28\xbf\x63\xa2\xed\xe8\xae\xdb\xb9\xcf\x77\x96\x8d\x43\x0c\x94\x06\xa2\xed\x5e\x45\xe3\x71\xdf\x15\x35\x3e\xc8\x13\x94\x54\x91\x50\xcd\xa7\xd7\xe3\xb7\x27\xd5\x2c\x85\xca\x02\xbb\x00\xe1\x38\xbd\x6c\xc4\x73\x54\x7a\xa3\xd0\x2c\x5f\xb8\x1d\x81\x5a\x42\x8c\x8f\x74\x55\xbe\x79\x6a\x70\xf1\x6b\x93\xed\xd6\x08\x08\x65\x78\x84\xb1\xb4\xb4\xc4\x2f\x5e\xbc\x88\x37\xde\x78\xe3\x5e\xdb\x81\xad\x3a\x64\xe2\xd2\x5b\x41\xfa\xa6\x61\xa5\x46\xf5\xdd\x34\xd2\xaa\x41\xb6\xd2\xc1\xc0\x9e\x3d\x7b\xd8\xee\xdd\xbb\x91\xc9\x64\x5c\x1b\x01\x48\x27\x38\x72\x43\x33\x99\xfd\x87\x6e\x74\xfc\x87\xae\x25\xe3\x18\x13\x64\x0a\x45\xb7\x07\x10\x76\x91\x42\xe3\xe0\x5e\xf0\xd5\x25\x84\xdd\x9b\x0a\x03\xd6\x54\xac\x40\x3f\xf7\x75\x77\xcd\x61\xe4\xf9\x89\x10\x5a\xab\x50\x6d\x0a\x28\x6d\xea\x52\xc7\xcb\x20\xd5\x2a\x5f\xd4\x20\x78\xf4\x6b\xd5\x3c\x5a\xc2\xb3\x77\xe2\x24\x16\x94\x36\xd5\xbe\xd6\x12\x7c\xec\x62\x6f\xf9\xcb\x6f\xac\x2d\x7e\x63\x21\xed\x8c\x7b\x9e\x29\x8b\x88\xec\xa9\xa9\x29\x7c\xf7\xbb\xdf\xfd\x75\x3a\x47\xfe\x9b\x04\xd5\x86\x68\x64\x2f\xdc\xad\x7b\xac\x15\xf5\x49\x0f\x51\xed\x85\xda\x19\x18\x18\x60\x07\x0f\x1e\x44\x77\x77\xb7\xaf\x1e\x91\x40\xae\xaf\x68\x6e\x3c\x38\x9a\xff\xc3\xb5\xf3\xa9\x4f\x26\x38\x2b\xe8\xfa\xbb\x8f\x68\x12\x72\xe9\xf1\x51\xe2\x7d\xe2\x89\x32\x6a\xa3\x0c\x6f\x04\x48\x54\x87\x61\x4a\xa6\x48\xa9\xa3\xab\x5e\xf2\x51\x08\xdf\xaa\x6f\x45\x32\xc4\xe7\x89\x97\x31\x31\x66\x4f\xdd\xb3\x80\xe0\x25\xd3\x39\xf7\x76\x7f\xe9\xef\xde\xee\x5f\xfa\x59\xd5\xe0\xf3\x9e\x57\xca\xb2\x2c\x8b\x9f\x3d\x7b\x16\x6f\xbf\xfd\x36\x6a\xb5\x5a\x94\xc1\x2c\x9f\x65\x68\x66\x83\x36\x2b\x13\x87\x5f\xef\x49\xc3\x50\x9f\x13\xda\x18\x68\x7c\x34\xd4\x09\x75\xbc\x64\x9a\x9a\x47\x1d\x63\xf9\xc7\xb4\x3a\xa1\xc5\x0b\xa5\x8e\xa8\xf2\x7a\x1a\x01\x10\x9f\xfe\xf4\xa7\xa9\xbd\xbd\x9d\x11\x91\x09\x20\x9b\xb1\x58\xcf\xc1\xd1\xfc\x13\x47\xaf\x75\xfe\x9f\xdd\x4b\xc9\x63\x09\xc1\xd2\x32\x73\x50\xca\x43\x3e\x15\x73\x14\x3f\xbf\xcc\x5b\x27\x32\x09\x81\xb8\xd0\x93\x28\xc8\x12\x58\xe7\x4a\x9b\x9a\x5a\x15\xe4\xd3\xca\x29\xbf\x24\xff\x13\xa9\xd1\xc1\xc8\x79\xd4\x4a\x4a\x1c\x29\x75\xfa\xc5\xf5\xd2\x9a\xdd\xe4\x37\xab\x49\xb1\x50\x9d\x6e\x4b\x94\xb2\x69\xf5\xe0\x42\xfa\xc3\x6b\xe7\x53\x1b\x4b\x69\x67\xb4\x98\xb6\x4b\x20\x38\x8c\x31\xd1\xdf\xdf\x8f\xc1\xc1\x41\x31\x3b\x3b\x4b\x4b\x4b\x4b\x72\xae\xa2\x10\x54\xc5\x19\x1d\x07\x64\xba\x02\x41\x08\x17\x08\xd1\xf8\xa1\xd7\x4b\xca\x3b\xd3\xda\x51\xe3\x43\x43\xa0\xa6\x49\x09\xd1\x8a\xbb\x2b\x2a\xc4\x95\x6d\xe6\x89\x68\xc6\x15\xa2\xf2\xf0\x47\x1f\x7d\x94\x0d\x0e\x0e\x32\x00\x06\x11\x99\x8c\x23\xb7\x61\x36\xbd\xf7\x7d\xd7\x0b\x7f\xd6\x55\x36\x8e\x42\x90\x21\x39\xbf\xbf\xc4\xa5\xa8\x38\x01\xe9\x7b\x06\x25\x02\x35\x26\xd0\x15\x14\xa3\x14\x14\xd2\xf1\x65\x25\x61\xe3\xd5\x2b\xef\x63\xa1\xa6\x77\xf8\x7d\x51\xea\x95\xdc\x3f\xbc\x1d\xdc\xeb\x49\x90\x5f\x22\xb5\x1a\x27\x71\x42\x4f\x53\x7a\x11\xfa\x85\x16\x17\x6e\xa3\x71\x5c\x50\xa7\xfc\x2f\x60\x33\x31\x75\xb1\xb7\xfc\xff\x9e\xdc\x50\xfc\x4a\xc9\xb4\xa7\x88\xa8\x02\xc0\xe2\x9c\xf3\xe7\x9e\x7b\x0e\x57\xaf\x5e\x8d\xe3\xe4\xad\x78\x1e\xe3\xb4\x8e\xa8\xb8\xa6\xf8\x12\xd3\x4e\xa3\xbe\x35\x5d\x98\x6b\xc5\xbd\xd5\x4a\x58\x89\x71\x54\x17\xb7\x7d\xfb\x76\x76\xff\xfd\xf7\x23\x93\xc9\x30\x6f\x8b\x45\x36\x53\x63\xdd\x87\x6e\xe4\xff\xbb\xed\x93\x6d\x27\x92\x0e\xeb\xf3\xc4\x7b\x9d\x3f\xde\xd7\xa1\x01\x8f\x43\x7a\x79\xbc\x77\x20\x40\x86\x10\x05\x21\xac\xcb\xfb\xb9\x14\xb5\x29\xb0\x21\x84\xf7\xae\xaa\x4b\x52\x0c\xa8\x6a\x8a\x6b\x04\xa8\x9c\xd8\xaf\x3e\x52\x07\xaa\x57\x86\xfc\x35\x90\x28\x3d\x29\xaa\x0a\xe8\x7d\x55\xba\xd8\xb0\x8a\xb0\x9a\xa8\xd6\x29\x20\xec\xe9\xb6\xda\xf3\xaf\x0c\x2d\xfc\xf5\x48\x57\xe5\xb4\xa0\xc0\x1b\x75\xe9\xd2\x25\x3c\xff\xfc\xf3\xad\xe0\xca\xdd\xd8\x96\xcd\xde\xef\xb6\x1d\x3f\x24\x94\x42\xaa\x08\x92\xcf\xb2\x22\x55\x20\xeb\x2a\x90\x2c\xaf\x8a\x39\x55\x55\xd2\x89\x89\xb4\xb4\x28\xf5\xca\x2f\x73\xf4\xe8\x51\x76\xff\xfd\xf7\x23\x99\x4c\x1a\x00\x52\x04\xca\x0f\x2c\xa4\x76\x7d\xe4\xc2\xaa\xff\xb4\x71\x26\xf3\xef\x0d\xce\xf2\xe1\x1d\x3f\x04\x90\x8b\xf4\x42\x9d\x76\x92\x84\xa0\x2c\x57\xf9\x3d\xf1\xd2\x7d\x5e\x18\x70\x74\x5d\xcd\x51\x51\x48\xad\xc7\xd5\x98\x02\x45\x25\xd8\x62\x11\x56\x5e\x02\xa9\xa3\x72\x7b\x2f\x4e\x4a\x0f\x0a\xfa\x1e\x96\x0c\x32\x26\xd0\xce\xdc\x6e\x0a\x4f\x78\x49\x09\xa4\x2e\xc9\xd5\x4b\x43\xf2\xea\xf0\x9a\xf4\x1f\x54\x27\x83\xde\x8e\x9b\xdf\x27\x12\x96\xad\x19\x1b\x37\x4d\x67\x3e\x6c\xda\xac\x32\x99\xb7\x46\x1c\x06\x1b\x80\xb3\x6a\xd5\x2a\x7e\xea\xd4\x29\xe1\x37\x1f\x9e\x67\xf5\xb9\x51\x9a\x7c\xe6\x4d\xca\x44\xe1\xcd\x4a\xdb\x51\x03\x4b\xa0\x1e\xf1\x55\x3d\x4d\xd7\xc3\xa2\x2a\x55\x45\x8f\x2e\xb1\x65\x9a\x1a\xaf\xea\x77\x6a\x5d\x50\xde\x05\x00\x3c\xf6\xd8\x63\x6c\xe3\xc6\x8d\x4c\x08\x91\x24\xa2\x8c\xc1\x59\xe1\x81\x9b\xf9\x4f\x7d\xf0\x6a\xe7\xff\xd5\x51\x49\xec\x87\x00\xf3\xf5\x6d\x0f\xa1\xbd\x47\x2f\x8e\x94\xc9\xf7\x90\x4e\x61\x89\x44\xaa\x02\x1e\xfc\xba\x45\xa5\x8f\x1e\x5e\xe9\xa0\x1e\x7f\xff\x90\xa4\x16\x52\xe3\x55\x0c\xf2\x3a\x43\x2e\x62\x09\x06\xce\x19\x1c\x4e\x82\x3b\x0c\x36\x67\xc2\x11\x04\x87\x33\xb9\xd9\x03\xbe\x39\xad\x34\x00\xd9\x03\x77\x64\x02\x76\x4f\x1e\x0c\x02\x14\xea\x8b\xa4\x50\x85\x3c\xfd\xda\x7d\x75\x4d\x99\x6d\x9f\x38\x28\x20\x50\x3f\xf8\xeb\x19\x32\x3f\x49\xfe\x01\x06\xd6\xb6\xa6\x68\x1e\x5d\x53\x4c\xf5\xcf\xb4\xd5\xde\x5d\x4a\xf1\xa2\x10\x82\xef\xdd\xbb\x57\xbc\xf5\xd6\x5b\xba\xfe\xae\xe3\x43\x2b\xb8\xa2\x3f\xab\x33\xa8\x96\x51\x19\xb8\x6a\x8f\xe8\x65\xa2\xca\xab\x82\x20\x74\x0d\x4d\x9c\x87\xa0\x91\xc7\xa7\x99\x2a\xa5\xe7\xd1\x7f\x63\xc3\xef\xfe\xee\xef\x32\x6f\xb5\xd9\x00\x90\xcd\x56\x59\xdf\x07\xae\x15\xfe\x70\xcb\x9d\xec\x09\x26\x28\x0b\x28\xb8\xec\x4d\x94\xbf\x3d\x22\xa4\xba\xc0\x1f\x02\x75\x74\xfd\x7f\xea\xbe\x23\x45\xdd\x72\xab\x0c\xf8\x33\xfc\x06\x11\xec\x63\xf2\xa7\xd3\x6d\x9b\x13\xb8\x95\x70\x2a\x4b\x26\x2f\x95\x52\x76\x71\x21\xed\x14\x4b\x29\xbb\x58\x4d\xf2\xca\x72\x92\x97\xab\x06\xaf\xd8\x24\x2c\xce\xc0\x39\x09\x2e\x00\xce\x04\x31\x26\x60\x18\x9c\x0c\xd3\x21\x33\x65\xb3\x6c\xa6\x96\xc8\xb6\x55\x13\xb9\x5c\x35\x91\xef\xa8\x18\xf9\x36\x2b\x91\x4f\xdb\x94\x4e\x70\x32\x74\x9b\x23\x40\x7b\xe5\x9d\x74\xd0\xc9\x87\x27\xa4\x69\x91\x82\xfc\x14\xae\xc7\x05\x4f\x84\xcb\x50\x20\x41\x7d\x82\x13\x30\x07\x17\x52\x4f\x1c\xbd\x5a\x28\x7d\x73\xef\x9d\xbf\x24\x22\xdb\x30\x0c\x79\xc2\x4f\x86\x46\xf3\x1e\x97\xc6\x63\x9e\x9b\xe5\xb9\x1b\x57\xb0\x5f\xc6\x88\x8a\x6c\xf1\xb9\x59\x5a\xb3\x78\x3d\x8f\x4f\x78\x9f\xfb\xdc\xe7\x98\x69\x9a\x4c\x08\x91\x26\x50\xb6\xbf\x98\xda\x71\xfc\x72\xe7\x7f\xec\x5e\x4a\x1e\x27\x10\x53\x0d\xc0\x30\x3f\x0d\x44\x7e\x80\xf4\xaa\x59\xe8\x67\x0c\xd4\x07\xc9\xfd\xb4\x78\xf8\x75\x29\x6a\x13\xa4\x86\x25\x60\x13\xec\x65\xd3\x29\xcf\x65\xed\xd9\x3b\x39\x6b\x62\x2a\x57\x1b\x9f\xcb\xd6\xa6\x8b\x69\x67\xb6\x6a\xf0\x45\xe1\xea\xd4\xf2\xcf\x06\xd5\x9d\x6a\x83\x10\x82\x7b\x6e\x63\x78\xf0\x1b\x10\xc2\x00\xdc\x93\x75\xf0\xb6\x9d\x24\x39\xb5\xe5\xaa\x89\x42\xa1\x6c\x74\xf7\x96\xcc\xbe\x9e\xa5\x64\x5f\xd7\x52\xb2\x3b\x57\x4d\xe4\x93\x9c\xcc\xc0\x08\xaf\x37\x94\x75\x39\xe1\xa1\xb9\x3f\x5e\x8a\x5d\x80\x28\xf5\x0c\xde\xe8\x09\xa5\x56\x28\xed\x81\x08\x8b\x29\x7b\xec\x85\x4d\xf3\x3f\xf5\xfa\xcb\x84\x10\x6c\xd7\xae\x5d\x38\x7b\xf6\x6c\x94\xbe\xdf\xc8\xe0\xd5\xf3\x46\xc5\x35\x33\x94\x9b\x19\xd6\x51\x0c\xda\x0f\x86\x1e\x11\x53\xe9\x4a\xc2\xdd\x94\x01\x00\xbe\x75\xeb\x56\x76\xf8\xf0\x61\x98\xa6\x69\x00\x30\x19\x28\x3f\x3c\x9d\x39\xf8\xc1\x2b\x9d\xff\x47\x9b\xc5\xb6\x05\x06\x73\xd8\x83\x04\xef\x59\x25\x0e\x40\x51\x9d\xb4\xf4\xc0\x66\x0d\x71\x3a\xe5\x39\x90\x14\xee\xaa\xb4\x8b\x26\x55\x83\x97\xe7\xb2\xf6\xf4\x58\xa1\x32\x3a\xd6\x51\x1d\x99\x6d\xb3\x27\x96\x0d\x67\xc6\x61\x28\xc3\x5d\xcd\xad\x28\x7f\x01\x31\x20\x7c\xcc\xd3\x23\x04\x85\xcb\xbb\x48\x04\x28\xa7\xf4\x14\x82\xb0\x18\x4f\xcf\x65\x85\x39\x97\xb5\xb3\xd7\xbb\x2b\x69\xe2\xc8\xa5\x1c\xd6\x51\x58\x36\x7a\xd7\x14\xcd\x75\x6b\xe7\xd2\x1b\x7a\x4a\xc9\xbe\x6c\x2d\x91\x63\x52\x8d\xf4\x17\x3e\x84\x07\x43\xb0\x4d\x83\x84\x0b\x8f\xf0\xb6\x7e\x00\x81\xa6\xe5\x8f\x89\x97\xc7\xd7\xe3\xc8\x23\x30\xa1\x48\x0e\x21\x50\x33\x44\xf9\xc5\x4d\xf3\x5f\xbf\x93\xab\x4d\x7b\x17\x2b\xa8\x70\x01\xf5\xf8\x10\xe5\x85\x6a\x25\x34\xd2\x32\xa2\x08\x4b\xad\x3f\xaa\x9d\x48\xef\xa6\x11\x91\xb9\x99\xca\xd4\xcc\x75\x16\xeb\xd2\xd2\xca\x86\xea\x3c\x74\xe8\x10\xdb\xbd\x7b\xb7\xec\x53\x9a\x04\xf2\x7b\x6e\xe5\x3e\x7a\x78\xa4\xe3\x7f\x31\x6d\xd6\xaf\xae\x21\xf8\x34\xa0\xeb\xec\xd0\x1e\xeb\x69\x21\x44\x33\x02\x08\xce\x0e\x84\x26\x3e\xe0\x9a\x95\x24\x2f\x4f\xe4\xad\xf1\xeb\x5d\xcb\x97\x6e\x76\x56\xaf\x14\xd3\xf6\xa4\xc3\x50\x04\x50\x04\x50\x06\x50\xf2\x7e\x55\x22\x88\x24\x04\x09\xab\x86\x30\x6e\xbf\xdc\x38\xa6\xfd\xc9\xd3\x7b\x26\x3c\xe2\x00\x90\x16\x0c\xd9\x0a\xe3\xd9\x89\xa4\x95\x9b\xc8\x5b\xb9\xd3\x03\xa5\x5c\x9b\x95\x58\xbd\xa6\x68\xae\x1b\x9a\xc9\x6c\x1b\x9c\x4f\xad\x6b\xaf\x26\x0a\x81\x6c\x08\x54\x1e\xff\x57\x59\x5d\x94\x6a\x90\x2a\x09\xfd\xbc\x0a\xd3\x21\x4d\xa5\x14\x04\xfe\xc6\xda\xe2\xcf\xae\x76\x2f\xbf\x05\x42\x91\x40\x15\x09\xaf\x27\x1d\x74\xc4\x6f\x84\x6b\x51\x44\x12\xe7\x22\x8d\x7a\x6e\xa5\x8c\xee\xc2\xd5\xfb\xc3\xf4\xab\x2c\x1b\x35\xdc\x0a\xd7\x8f\xea\x60\x53\x5b\xe3\xd0\xa1\x43\x6c\xd7\xae\x5d\x80\x67\x2f\x18\x0e\x75\x1d\x1a\xc9\x7f\x76\xef\xad\xf6\x3f\x4f\x08\xca\xc7\x0a\x01\x51\x8f\x58\xfe\x04\x8b\xb0\x35\xe6\x17\x51\xec\x68\xd7\x29\x13\xb8\x30\x25\x11\xd8\x09\x61\x4f\xb7\xd5\x26\x2e\xf7\x2c\xbf\x73\x6d\xd5\xf2\x3b\xc5\xb4\x7d\x9b\x13\xe6\x41\x3e\x21\x94\x84\x10\x65\x00\x65\xe9\x87\x97\x5b\x1a\x3c\xd8\x6c\x29\x05\xbc\x5f\xa9\x22\xe9\xdc\x13\x0d\xb8\xaa\xfc\x95\xd2\xc3\x80\x2b\x41\x4c\x21\x84\x09\x20\x4d\x44\x69\x00\x59\x0e\x91\x2b\xa5\x9c\xfc\xe5\xee\xe5\x77\xaf\x74\x2f\xbf\x9a\xb5\x58\xcf\xe0\x7c\x7a\x78\xcb\x9d\xec\xee\xfe\x05\x73\x5d\xda\x66\x69\x5d\x5a\xfa\xe7\x2c\xea\xc6\x54\x1b\x6b\x6d\x88\xe5\xd8\x82\x04\xae\x74\x2f\xbf\xf9\xe6\x60\xe9\xa7\x82\x30\x0e\x60\x16\x2e\x63\xb0\xbd\x03\x46\x6a\x88\x43\x5e\x3d\x2d\xaa\x9c\xfe\x1c\x55\x57\x1d\x62\x23\x1a\xdf\x9a\x4a\x24\xa9\x32\xc9\x42\x71\xdc\x7f\x25\xbe\xe4\x56\xf4\x41\x3f\x1c\x3c\x78\x30\x90\x0c\x02\x59\x83\x53\xf7\x07\xae\x75\x7c\x7e\xe7\xed\xdc\xff\x24\x8d\x67\xc9\x98\xa4\xfa\xa2\x7a\x3b\x54\xdf\x59\x30\x77\xaa\x2e\xa5\x19\x98\x14\xd8\x14\x32\x52\x9a\xcd\x96\x21\x2a\x23\x5d\x95\x2b\xe7\xd6\x94\xde\x9c\x68\xb7\x2e\xd7\x12\x62\x1a\x84\x79\x00\xf3\xf0\x08\x01\x9e\x34\xf0\x08\xc1\x96\x5b\xa4\xe5\x79\x65\x09\x2b\x11\x71\xce\x5d\xb0\x25\xd2\x4f\x4f\x4f\x63\x66\x66\x26\x6e\x28\x30\x34\x34\x04\xd3\x34\x83\x81\x63\x4c\x8e\x1f\x54\x5b\x83\x88\xa4\x64\x37\x01\x98\x92\x30\x40\xc8\x72\x21\xf2\x4b\x29\x5e\xb8\xb8\xba\x7c\xf5\x4a\x4f\xf9\xf5\xae\x72\x72\xfd\xd6\xc9\xec\xde\xad\x53\xd9\x9d\x39\x2b\x91\x57\x07\x2a\x7c\x38\xd5\x1b\x07\x45\x1a\x08\xa9\x3a\x85\x96\xe4\xdd\xf9\x98\x6e\xab\x8d\xbd\xbc\x71\xfe\x3b\x76\x42\x8c\x00\x98\xf2\xc6\xc7\xb2\x6d\x9b\xbf\xf2\xca\x2b\x12\x84\x66\x08\xdb\xcc\x79\x13\x67\x13\x44\xa5\xab\x21\x8e\xa1\xcb\xe7\x28\x22\xe1\x0a\x88\x0d\x91\xf6\xbd\x48\x87\xa8\x3a\xfc\xe7\xc3\x87\x0f\xb3\x9d\x3b\x77\xc2\x3b\xc5\x96\x4d\x39\xac\xf7\xf8\xe5\xce\x3f\xde\x32\x95\x3d\xc1\x40\xa6\x2f\xd5\xa3\xb8\x94\xf7\xa0\x22\xb6\x2e\x2f\x42\x06\xa6\xef\x37\x44\xb0\x0d\x1a\x2e\x81\x95\x4c\xa7\x78\xb9\x67\xf9\xdc\xd9\xfe\xd2\x6b\x73\x19\xfb\x86\x80\x98\x05\x30\x4b\x44\x21\x42\x10\x42\xa8\xea\x90\xca\xf9\x79\xb5\x5a\xc5\xec\xec\x6c\xe8\x4e\xa4\x6c\x36\xcb\xca\xe5\x72\xa3\xb1\x6b\x38\xee\x9b\x37\x6f\x06\x00\x5c\xbe\x7c\x99\x3f\xfe\xf8\xe3\xac\xad\xad\x0d\xf9\x7c\x1e\x9a\x21\x1e\x9c\x09\x77\x09\x24\x0b\x20\x2b\x84\xc8\x13\x51\x01\x40\x01\x40\x77\xd6\x62\x6b\xb6\x4c\x65\xf7\xef\xbc\xdd\xb6\xbf\xab\x9c\xec\x66\xf0\x6c\x8d\xa8\x10\x61\x8f\xa9\x61\xd9\x70\x4a\xdf\xdf\x39\xfd\x5f\xc7\xf3\xd5\x5f\x12\xd1\x35\x00\x13\x00\x8a\x42\x08\xeb\xfc\xf9\xf3\x78\xe5\x95\x57\xa2\x08\xa1\x19\x0e\xc5\xd9\x15\x77\x3b\x7e\x77\x55\xa6\x01\xd8\x4d\xad\x74\xbd\xe2\x15\x79\x01\x0e\x1e\x3c\xc8\xf6\xec\xd9\x03\xb8\xdb\x30\xb2\xa9\x1a\xeb\x3b\x7e\xa5\xf0\xc7\x9b\xa7\xb2\x27\x98\x20\x43\xf7\x0a\x01\x08\x6d\x97\x90\xc8\x4c\xea\x0a\x95\x42\x15\xa1\xd5\x59\x9f\x6a\x84\xef\x3a\x04\x04\x96\x4c\x5e\xbc\xd8\x5b\x7e\xfb\xec\x9a\xd2\x6b\xf3\x19\xfb\x06\x08\x53\x42\x88\x59\x22\x9a\x45\x60\x23\x94\x35\x75\x88\x03\xee\xa5\x60\xa3\xa3\xa3\x98\x99\x99\xc1\xf9\xf3\xe7\x79\x26\x93\x61\xcb\xcb\xcb\x8d\x6c\xa5\xf7\xca\x70\x90\x4c\x26\x99\xb7\x89\x0e\x07\x0e\x1c\x60\x5b\xb7\x6e\x45\x32\x99\x84\x69\x9a\x51\x76\x47\x1a\x40\xce\xfb\x2b\x08\x21\xba\x09\xd4\x9d\xa9\xb1\x81\x2d\x77\xb2\x7b\x77\x8f\xe7\x0e\x76\x96\x8d\x5e\x16\x96\xab\xf5\x36\x96\xd6\x07\x9b\x09\xfb\xa5\x8d\xf3\xdf\x3e\xd3\x5f\xfa\x1e\x08\x57\x00\x8c\xc3\x95\xa0\x95\xdb\xb7\x6f\xf3\x1f\xfc\xe0\x07\xad\x22\x7e\x2b\xe1\xbd\x20\xfc\x5d\x95\x25\xc4\x1b\xc0\x7a\x1c\x10\x3f\xc1\x51\xc4\x80\xb8\xe7\x07\x1f\x7c\x10\x7b\xf6\xec\x81\x10\xc2\x00\x90\x4d\x72\xd6\xfd\xd0\xa5\xce\x3f\xd9\x3a\x95\xfd\x23\x06\x18\xc2\xd7\x85\xd4\x45\xa8\xe0\x1c\x73\x70\xe8\x45\xe9\x01\x41\xf1\xac\x20\xbc\xe4\x03\xa5\x2e\x01\xd4\x0c\x6e\x5d\xe8\x2d\x9f\x3e\x3d\xb0\xf8\xca\x6c\xd6\xbe\x0a\xc2\x14\x80\x69\xb8\x7a\x70\x51\xda\x07\x50\xae\x6f\x11\x42\xf0\xe9\xe9\x69\xdc\xb8\x71\x03\x53\x53\x53\x18\x1b\x1b\x6b\x45\x2f\xd5\x39\x5e\xb3\x32\x51\x63\xaa\xbe\x47\x96\xd9\xb6\x6d\x1b\x1b\x1a\x1a\xc2\xe0\xe0\x20\xbc\x2b\x32\x83\x43\x52\x81\xd4\xc8\x0b\x21\x0a\x44\xd4\x0d\x81\xde\x6c\x8d\xad\xbf\xef\x76\xdb\xc1\xdd\xe3\xb9\x83\x39\x2b\x91\x0f\xf6\x7e\x69\xa7\xf2\x02\xa3\x01\x80\xc0\xb9\xbe\xa5\x97\x9f\xdf\x3c\xf7\x25\x87\xe1\x12\x80\x51\x6f\xcc\x2a\xc5\x62\xd1\xfe\xfe\xf7\xbf\x0f\x4d\x22\xb6\x0c\x03\x9a\x33\xd2\x46\x65\xf4\xd0\xac\x5c\x6c\xff\xe2\x24\x44\x33\xc4\x8f\x6a\xbc\xd5\x77\x7c\xfe\xf3\x9f\x67\xc9\x64\xd2\x10\x42\x64\x93\x9c\x75\x7f\xf0\x6a\xe1\xbf\xbf\xef\x76\xdb\xff\x48\x20\x13\x90\xb8\x1d\x5e\x14\xf2\x0d\xe5\x10\xd7\x57\xfc\xec\x8a\x6e\x24\xa4\x14\x91\x9e\x23\xb8\xe5\x38\x09\x7e\xa3\xb3\x72\xe9\x8d\x75\xc5\x17\x6f\xe7\xad\xf3\xc2\x95\x08\x53\x44\x34\x8d\x40\x35\x92\x9e\x12\x1b\x00\x5f\x5c\x5c\xc4\xbb\xef\xbe\x8b\xd3\xa7\x4f\xaf\xc8\x36\x8a\x09\xad\x8c\x9f\x9e\x06\xb4\xe6\xb9\x03\xe0\xde\x26\x3e\x3c\x3c\x8c\xd5\xab\x57\xcb\xf2\x52\xa5\x4a\x0b\x21\xb2\x44\x94\x07\xd0\x05\xa0\x17\x02\xbd\xf9\x4a\x62\xe8\xc0\xcd\xfc\xb1\xad\x53\xd9\xdd\xa6\xcd\xd2\xc1\x9e\x44\xe9\x00\x08\xd6\x1d\x6e\x75\x54\xaf\xfc\x70\xc7\xcc\xdf\x2d\x9b\xfc\x1c\x80\x6b\x70\x99\x48\xd9\x71\x1c\xfb\x8b\x5f\xfc\xe2\x3d\x83\x41\xcb\xd7\x28\x4e\xc6\xc7\x31\x67\x19\x5a\x71\x12\x31\x20\x7c\x62\x6e\xa5\x93\xb5\xe2\xd0\xdb\xdb\xcb\x1e\x7d\xf4\x51\xb9\xce\x90\x4e\x08\xea\x3e\x3c\xd2\xf1\xef\xf6\x8f\xb5\x7f\x21\xc1\x29\x5d\xef\xee\x20\xcf\x23\xd2\x40\x94\xab\x16\xb3\x4f\x3d\x81\x6a\x24\x8d\xc5\x52\xca\x99\x7f\x75\x7d\xf1\xf9\x8b\x3d\xe5\x57\x6b\x09\x3e\x06\xa2\x09\xb8\xdc\x6d\x56\x08\x51\x82\x6b\x28\x5b\x00\xb8\xe3\x38\x7c\x72\x72\x12\x4f\x3f\xfd\x34\x4f\xa5\x52\xac\x5a\xad\xca\xd6\x9a\x31\x07\x3d\xac\x98\x59\xa0\x1e\x51\x56\x32\x2f\xee\xa4\xba\x52\x82\x7f\xf0\x83\x1f\x64\x9b\x36\x6d\xf2\xef\x9f\x82\xe7\xd2\x86\xab\x46\xe5\x01\x74\x03\xe8\x65\x1c\xfd\x83\x0b\xa9\x5d\x87\xaf\x77\x7c\x68\xf5\xa2\xb9\x8e\x69\x8a\x92\x00\xb0\x64\x3a\xf3\xdf\xdb\x79\xe7\xff\xb9\x93\xab\xbd\x0a\x82\xb4\x1b\x4a\x00\xac\xe7\x9f\x7f\x1e\x97\x2e\x5d\x6a\x55\x7d\x6e\x09\x86\x98\xb2\x77\x83\xa3\x0d\x55\x77\x3d\x4f\x23\x1b\xe2\x9e\x07\x6f\x3b\x86\xe1\xad\x40\x17\xee\x1f\x6b\xff\xe4\xe1\xeb\x1d\xff\xc9\xf0\xaf\x7f\x51\xb5\x20\x65\x35\x5a\x76\xd4\xa7\x11\xf5\x72\xae\xc0\xcf\x1e\xba\xca\xc5\x8b\x77\x48\xf0\x8b\xbd\xe5\xd3\xaf\xae\x5f\x78\x66\x21\xe3\x5c\x86\x3b\x91\x13\xf0\x08\x81\x88\xca\x70\xdd\xa6\xdc\xb2\x2c\x7e\xe1\xc2\x05\xbc\xfa\xea\xab\xf7\x8c\x09\xfc\x1a\xc2\x5d\xe9\xe0\x4f\x3d\xf5\x14\xf3\xce\x90\xa8\x12\x23\x47\x44\x05\x21\x44\x1f\x80\xde\x94\xc3\xd6\xed\x1f\x6b\x7f\x68\xcf\xad\xf6\x43\x99\x1a\xcb\x4a\xad\xb4\xc6\x78\xe5\xd9\x2d\x73\x5f\xbf\xb8\xba\xfc\x63\x21\xc4\x15\x22\x1a\x17\x42\x14\x01\x58\xa3\xa3\xa3\xfc\xa7\x3f\xfd\xe9\x3d\x35\x6c\x9b\xe4\x5d\x89\x8d\xd0\x4a\xde\x50\x9a\xba\xdb\x55\xf2\x58\x86\x00\x2f\x99\x16\xa7\xff\xc6\x95\xad\x8b\x7b\xec\xb1\xc7\x58\x67\x67\x27\x83\xbb\x63\xb5\x63\x78\x3a\x73\xf8\x83\x57\x0b\x7f\x95\xe4\xac\xa0\xf6\x8e\x02\x5c\x0e\x16\x8b\x10\xf6\x89\xfb\x5b\x0e\x28\xd8\xb5\x29\xe3\xdd\x07\xf2\xa5\xc2\xcb\x1b\x17\x7e\xfc\xda\xfa\xe2\x0f\x97\x4d\x71\x11\xc0\x75\x00\x63\x70\xdd\x84\x0b\x92\x18\xaa\xd5\xaa\x73\xe1\xc2\x05\xf1\xf4\xd3\x4f\xf3\x5b\xb7\x6e\xc9\x2a\x75\xf8\xa2\xe2\xa2\xc6\x29\x64\xb9\x68\x03\xdf\x6c\x8c\xf5\xb2\x6a\xdb\x2a\xa8\x02\xf5\xfd\x8a\xcb\x4b\x00\xe8\xe2\xc5\x8b\x28\x16\x8b\xa2\xbb\xbb\x9b\xa7\x52\x29\x0e\xa0\x06\xc0\x22\xa2\xaa\x37\x0e\x65\x9e\x40\xf9\x56\x47\xf5\xd6\x78\x47\x75\x62\xd5\x92\xd9\x9b\xb5\x58\x07\x00\xfe\xd6\x60\xe9\xe7\x67\x06\x4a\x3f\x12\x84\xeb\xe4\x4a\xd6\x05\x22\xaa\x96\xcb\x65\xfe\x9d\xef\x7c\x87\x47\xb4\xfd\x6b\x81\x41\x7b\x8f\xaa\x23\xae\x9d\xb8\xf4\xba\x7a\xa4\x51\xdd\x2a\x05\xb6\xaa\xc7\xa9\x79\x71\xec\xd8\x31\x6c\xde\xbc\x59\x9e\x70\xcb\xf7\x15\xcd\xdd\x8f\x9d\x5f\xf5\x9f\x73\x56\x62\x4b\xdd\xf9\x05\xd9\xbd\xa8\xa0\xeb\x4d\x31\x79\x04\x04\xc6\x0a\xd5\x2b\x2f\x6e\x9c\xff\xd1\x9d\x5c\xed\x2c\x08\x63\x08\x4b\x05\xb9\xaa\xcc\x2f\x5d\xba\x84\x37\xde\x78\x03\xa5\x52\xa9\x15\x83\xae\xa9\xf7\x2c\x22\xae\xd5\x34\xbc\x87\xf2\x2b\xaa\x67\xd7\xae\x5d\xec\xf0\xe1\xc3\x32\x8f\x74\xd7\xe6\x10\xd8\x16\xfd\x6d\x16\x5b\x77\x78\xa4\xe3\xe1\x5c\x35\x91\xfd\xd1\x8e\x99\x2f\x5a\x86\xb8\x04\x97\x99\x4c\x03\x28\x57\x2a\x15\xfb\xcb\x5f\xfe\x72\x33\xae\xfb\x6b\x83\x41\x49\x47\x44\xb9\xa8\xb2\x2d\xa5\x45\x11\x44\x54\x41\xfd\xb9\xe5\x70\xdf\x7d\xf7\xb1\x23\x47\x8e\xc0\x23\x86\x5c\x7b\x25\xb1\xf1\x93\x67\xbb\xff\xb6\xab\x9c\x3c\xe4\x33\x06\x95\x28\x94\xf3\xc4\x81\xda\x14\x5a\x51\x80\x5c\x4e\x0a\x68\x22\xd8\xa6\x56\x63\xdc\x3e\xdf\xb7\xf4\xda\x2b\x43\x0b\x3f\xb0\x12\x62\x04\xee\x2a\xea\x04\x5c\xd7\xa0\xef\x42\x9d\x9a\x9a\xc2\xc9\x93\x27\x31\x39\x39\x89\xbb\x81\x2b\x22\x34\x9b\xac\x56\xc7\x6f\x25\xf3\x21\xeb\x5f\xb1\x6e\xdd\xde\xde\xce\xee\xbf\xff\x7e\x6c\xd9\xb2\x05\x08\xbb\x6a\x0b\x42\x88\x2e\x22\xea\x66\x1c\x39\x83\x13\xac\x84\x98\x02\x61\x02\x1e\x31\x00\xb0\x9e\x79\xe6\x19\x5c\xbb\x76\xed\x6e\xda\xbe\x67\x30\x34\x29\xa3\xd7\x8d\x88\xbc\x75\xf5\x34\xb3\x21\x5a\x31\x02\x1b\x86\xdf\xff\xfd\xdf\x67\x8c\x31\x77\x4b\x06\x67\x7d\x1f\xb9\xd0\xf5\x85\xe1\xe9\xcc\xbf\x53\x77\xad\xaa\xb6\x01\x14\x74\x97\xb7\x5c\x48\x4f\xaa\x9f\x2f\x74\x8d\x9e\x54\x93\x04\xaa\x86\x28\xbf\x3c\x34\xff\x93\x77\xfb\x96\x5e\x70\x18\x46\xe0\xfa\xc8\xa7\x85\x10\x45\x4f\x2d\xb0\x97\x97\x97\xf9\xa9\x53\xa7\xf0\xce\x3b\xef\xac\x74\xa0\x9b\x85\xa8\x41\xbf\x2b\x26\x12\x53\xbe\x55\xdd\x79\xc5\xe9\x9f\xfa\xd4\xa7\x98\xbc\xb0\x41\x08\x91\x26\x22\xb9\xb0\x97\x06\xc0\x3d\xa7\x83\x5c\x97\xb1\xce\x9c\x39\x83\xd7\x5e\x7b\xed\x6e\x6c\x80\x96\x60\x30\x4d\x93\x59\x96\x75\x2f\xe6\x67\x25\x12\x05\xc0\xca\x16\xe6\xe2\x3a\x12\xab\x52\x7c\xf6\xb3\x9f\x65\xb9\x5c\x8e\x09\x21\xb2\x0c\xd4\x75\xf0\x46\xfe\xa9\x07\x6f\xe4\xff\x57\x72\x2f\x11\x0b\x8c\x85\xba\x5b\xea\x82\x9d\x96\xe1\x7c\x41\x9c\x7a\xad\x0b\x40\x58\x4c\xd9\xf3\xbf\xd8\x3c\xf7\xed\x91\xae\xca\x49\x10\x46\x01\x8c\x7b\x8b\x6c\x25\x21\x44\x85\x88\xec\x91\x91\x11\xfc\xec\x67\x3f\x8b\x13\xaf\x2a\x0c\xad\xc0\xaa\x86\x56\xd5\xac\x56\x25\x6e\xab\xc8\x1f\x55\xa6\xd5\x10\xca\xff\xc0\x03\x0f\xb0\x7d\xfb\xf6\xc9\xcf\x02\x98\xca\xea\x37\xe0\x6e\x51\xb1\x88\xc8\xbe\x73\xe7\x8e\xb4\x1b\x5a\xad\xbf\xe5\x7e\x3d\xfc\xf0\xc3\x0c\x70\xb7\xb0\xdc\xbc\x79\x13\xb6\x6d\x37\xfb\xd8\xcb\x4a\xd4\x7d\x99\x8e\x46\xfd\x51\x55\xa6\x56\x2b\x89\xd2\xeb\x42\xe9\x8c\x31\xbc\xff\xfd\xef\xc7\xd6\xad\x5b\xe5\xe0\x16\x36\xcd\x64\xde\xff\xc8\x85\x55\xff\x39\x65\x53\xaf\x90\x4d\x4b\x17\xa9\xff\x2e\xd5\x27\xf7\x57\xd1\x9c\x02\x89\x11\xca\xe3\xa6\xdf\xc9\xd5\xc6\x9e\xdd\x32\xf7\xcd\xc9\x9c\xf5\x16\x08\xa3\x42\x88\x09\x22\x92\xf6\x82\xe5\x38\x0e\x7f\xe9\xa5\x97\xa4\x6b\x50\x47\xea\x48\x18\x62\xd2\xf5\xb8\xa8\x71\x88\x0b\x71\x63\xd6\xca\xf8\xb6\x52\x26\xae\xbf\x51\xef\x6a\x19\x3f\xbd\xbb\xbb\x1b\xc7\x8f\x1f\x47\xa1\x50\xd0\xbf\x91\xc7\x85\x10\xfc\xf6\xed\xdb\x78\xe6\x99\x67\xa0\x7c\xc7\xee\x6e\xec\x04\x00\xe0\x8c\x31\x36\x30\x30\x80\xbd\x7b\xf7\x62\xf5\xea\xd5\x50\x2e\xa3\xd6\xc7\x0c\x42\x08\x3e\x33\x33\x83\xd3\xa7\x4f\x63\x74\x74\x14\xb6\x6d\xc7\xc2\x10\x13\x5a\xb5\x5f\x62\xbf\x31\xa7\x37\xa6\xa7\x45\xe5\x0f\x95\x39\x71\xe2\x04\x83\x67\xac\xb5\x55\xd9\xba\xdf\x3a\xd3\xfb\x77\x9d\xcb\xc9\x83\xa1\xdb\xdb\x15\x6e\x0f\x11\xde\x8a\x11\xba\x4d\x22\xa4\x32\xb9\x2b\xd6\x32\xe2\x4e\xae\x36\xf6\xa3\xed\x33\xff\x34\x9f\xb1\xcf\x0a\x88\x51\x00\x13\xde\xd6\x8b\x32\x00\xbb\x58\x2c\xf2\xaf\x7f\xfd\xeb\xcd\xd4\x98\xbb\xb1\x95\x5a\x91\x9c\x2b\x8d\xbb\x97\x76\x47\x33\x04\x05\xe2\x11\x19\x1f\xf9\xc8\x47\xe4\x6d\x88\x98\x9c\x9c\xc4\xf7\xbe\xf7\xbd\xb8\x31\xbc\x2b\xdb\xe9\x63\x1f\xfb\x18\x5b\xb3\x66\x8d\x4c\x37\xb4\x3f\x59\xc6\xdf\x42\xef\xed\x1a\x56\xa5\x7c\x53\x18\x22\xe0\x6e\x36\x3e\xb1\x2a\x53\x9c\x68\x69\x69\x92\xe5\x4a\x34\x80\x6c\x82\xa3\xf7\xa1\x4b\x5d\x7f\xb6\x7d\x32\x7b\x22\x74\xfb\x75\xd8\x4e\x96\x6b\x70\xf0\x3b\xa5\x7b\x91\x94\xbc\xae\x3a\x25\x30\xd6\x51\xbd\xf2\xb3\x6d\xb3\x5f\x5d\x4c\x3b\x67\xe1\x6e\x23\x98\x82\xb7\xaf\x06\x80\xf5\xee\xbb\xef\xe2\xa5\x97\x5e\x7a\x2f\x3a\xfc\x7f\xeb\x70\x2f\x0c\xcd\xf7\x6c\x07\xbe\xc7\x50\xd7\xde\x53\x4f\x3d\xc5\xf2\xf9\xbc\x4b\x08\x02\xe9\x4c\x8d\x15\x36\xce\x64\xf6\x6f\x98\x4d\x7f\xa0\x77\xd1\xdc\x61\x08\x4a\xd7\x98\x28\x4d\xe5\xac\x0b\xd7\xba\x97\x9f\x1b\xe9\xac\xbc\x5d\x31\x79\x11\xde\x2e\x82\x4a\xa5\xc2\x1b\x78\xb8\xde\x53\x68\xd5\xcb\xd4\x54\xf7\x92\xe1\xe1\x87\x1f\x66\x43\x43\x43\x0c\x40\x1a\x02\x85\xed\x93\xd9\x8f\x3c\x74\xb9\xeb\xff\x36\x38\xe5\xf4\x85\x35\x6d\x9b\x8c\xe6\x69\x0a\x68\x55\x3f\x47\x20\x20\x30\x9e\xb7\xae\xfd\x64\xfb\xcc\x3f\x15\x53\xf6\x59\x00\x23\x44\x34\x25\x84\x98\x27\xa2\x8a\x10\xc2\x56\x76\x5d\x36\x13\xed\x2d\xc1\xd5\x42\x68\xa4\x72\xae\xc4\x7e\x68\x54\x77\x33\x9d\xb9\x99\x04\x68\x56\x6f\xb3\x76\xd4\x77\x35\xb4\x62\x2b\x30\x00\xfc\x89\x27\x9e\x60\x85\x42\x81\xc1\x3d\x04\x96\xdd\x34\x9d\xd9\x7f\x68\xa4\xe3\xcf\xba\x96\x8d\x23\x24\x90\x0d\x96\x59\xdd\x79\xe6\x84\xd2\x6c\xb6\xf6\xf2\xc9\x0d\x0b\x7f\x7d\xbd\xab\x72\x4e\xb8\x17\x30\x57\x96\x97\x97\xf9\x57\xbe\xf2\x95\x86\xea\xcf\xdd\xc0\x90\x40\xf4\x82\x9a\xfc\x93\x15\xa8\x0b\x22\x3a\xef\x66\x6a\xdc\x43\x0f\x3d\x44\x00\x92\x44\x94\xcd\x57\x13\x1b\x1f\xbe\xb8\xea\x7f\xcf\xd6\x12\x83\x61\x6f\x11\xc9\xe3\x0c\x7e\xcd\x42\x79\x0e\x21\xbf\x5f\x8e\x7c\xb5\x6a\x2a\x57\x1b\xfd\xf1\xf6\x99\x2f\x2f\xa6\x9d\x33\x44\x74\x83\x88\x26\x84\x10\x0b\x44\x54\xb1\x2c\xcb\x7e\xe9\xa5\x97\x70\xe6\xcc\x19\xd9\x77\x09\x97\xfe\x2e\x49\xb0\xd9\x24\xc6\x2d\x48\xea\x21\x2e\x9f\xda\xbe\xda\x6e\xab\x8b\x71\xea\xc2\x12\xb4\x34\x65\xd4\x20\x94\x7a\xf4\x45\xa9\xb8\x39\x56\xf3\x44\xd5\xc3\xb4\x74\x9d\x75\x01\xe1\x71\x6d\x08\xc3\x13\x4f\x3c\x41\x9e\x7d\x92\x66\xa0\xfc\x9e\x5b\xb9\x8f\xfc\xc6\x95\xce\xff\x92\xb3\x12\xbb\x98\xa0\xa4\xbc\x5a\xd1\x35\x2d\x5d\x26\xc8\x40\x66\xb6\xc6\x86\x37\xce\x66\x3e\x54\x4b\x88\xd1\xc9\x76\x6b\x4c\x40\xd4\x92\xc9\x24\x5f\xb7\x6e\x1d\x2e\x5f\xbe\x0c\xe1\x5f\x5a\xf2\xde\x61\x88\x32\x44\xb8\xf2\xc7\x22\xe2\x54\xa0\xfd\xca\x0c\xc3\x60\x4f\x3e\xf9\x24\x23\x22\x83\x88\xd2\x24\xd0\xf5\xe0\x8d\x8e\xdf\xed\xa8\x24\x76\x00\xf0\x6f\x64\x11\xd2\x0e\xf0\xfa\xed\x8f\xa2\x97\x2e\x23\x84\x80\xbf\x26\xa1\x5e\x28\x30\xc3\x35\x52\xff\x00\x00\x20\x00\x49\x44\x41\x54\xdd\x56\x1b\xff\xe9\xb6\x99\x7f\x2a\xa6\x9d\x33\x9e\x37\x69\x02\xc0\xbc\x24\x86\x9f\xfe\xf4\xa7\xb8\x7c\xf9\xb2\xda\xc7\x66\x12\x41\x1f\x03\xa6\xe5\x6b\x64\x90\x46\x95\x51\xcb\xb5\xc2\xa9\xe3\x0c\xe3\x46\xe5\x38\xe2\xe7\x24\xaa\x4d\xbd\x6e\xbd\x9c\xde\x0f\x7d\xdc\x74\xb8\xf4\xfe\xe9\x6d\x47\xc2\xd0\xd1\xd1\xc1\xe0\x1e\x68\xca\x6d\xbe\x93\x7d\xff\x91\x91\x8e\xbf\x32\x38\xf5\xaa\x37\x15\xfa\xab\x4e\x52\x85\xf6\x70\x3d\x69\xb3\xfe\x23\x23\x1d\x7f\xb5\x69\x3a\x73\x84\x40\x79\x00\x66\x4f\x4f\x0f\xf6\xed\xdb\x77\x4f\x61\x88\x2b\xa4\x02\xd7\x0c\x60\x06\x80\x1d\x38\x70\x00\x8a\x5e\x98\x5d\x3f\x9b\xde\xbd\x65\x2a\xf3\x04\x40\x41\x19\x85\x3e\x7d\xd1\xa8\xf2\x51\x12\xc1\xb6\x0d\x72\xff\x05\x46\xb8\xc0\x92\xe9\x14\x9f\xdd\x32\xf7\xf5\xd9\xac\x7d\x46\x40\xc8\xd5\xe7\x79\x00\x56\xad\x56\xb3\x7f\xf6\xb3\x9f\xe1\xf6\xed\xdb\x6a\xdf\x54\x78\x5a\x79\x67\x2b\xc8\xa3\x8f\x07\x9a\xc4\xab\xe9\x3a\x22\x01\xe1\x09\x8a\xfb\x8d\x83\x4b\xcf\x13\x57\x47\xa3\x72\x7a\xf9\x46\x46\xaa\xcc\xab\xbf\xc7\xf6\xfd\x73\x9f\xfb\x9c\x1c\x97\x74\xd6\x62\x7d\x0f\xde\xc8\xff\x89\xe9\xb0\x5e\x39\xff\x3e\xbb\x16\x52\x42\x90\xaf\x3a\x4b\x4d\x22\xe9\x50\xef\x91\xeb\x1d\x7f\x96\xb2\xa9\x1b\xee\x26\x45\x63\xfb\xf6\xed\xd0\xdb\x7a\x2f\x30\xe8\xc4\xd0\x0a\x70\x7a\xe0\x00\xf8\xee\xdd\xbb\xe1\xf9\xad\xb3\x69\x9b\xf5\x1d\x1e\xe9\xf8\xe3\x24\xa7\x82\x34\x90\xfd\xb3\xc3\xf0\x54\x22\x6d\x20\xe4\x05\x5a\x80\xe2\x89\x55\x8c\xed\x8a\xc1\xcb\xcf\x6e\x9e\xfd\xfa\x44\xbb\xf5\x3a\x08\xa3\x44\x34\x0e\xef\xd8\x62\xb5\x5a\xb5\xff\xf1\x1f\xff\x91\x8f\x8f\x8f\x37\x93\x6c\xcd\x90\x2c\x6a\x30\x5b\x41\x9a\xa8\xe7\xa8\xba\xa3\x10\x28\x8e\x19\xc5\x11\x64\xd4\x7c\xe9\x79\x1a\x11\x76\xa3\x72\x51\xa1\x11\x41\xea\xd2\x47\xad\xcf\x87\x61\x78\x78\x98\x25\x93\x49\x9f\x59\x0e\xdf\xc9\x1e\xed\x2c\x1b\x07\xfc\xdb\x06\xa1\xfe\x06\xaf\xaa\xea\x2c\x95\xa9\xc2\xb2\x71\x60\xd3\x4c\xf6\x08\xdc\x33\x1e\x46\x26\x93\xb9\xa7\x30\x34\xe3\x9c\x51\xa1\x2e\xcf\xe3\x8f\x3f\x2e\x81\x37\x20\x90\xbb\x6f\xa2\xed\x43\x3d\x4b\x72\x6b\x86\xb4\x0f\xc2\xc8\x2e\x10\x56\xf4\xd4\x78\xdd\xf7\xc5\x49\xd8\xaf\xae\x2f\xfe\xe8\xda\x2a\x77\xd1\x4d\x08\x31\xe1\xed\xb6\xac\xd4\x6a\x35\xfb\x4b\x5f\xfa\x52\x23\x95\xa8\x95\xb0\xd2\xfc\xad\xd4\xf3\x5e\x10\x51\x25\xec\x38\x35\x2f\x0a\xe9\xa3\x54\xac\xb8\x3e\xa9\xc4\xa3\xb7\x15\x17\xa2\xf0\xa5\x21\xa3\x04\xc0\x86\x86\x86\x40\x44\x8c\x88\x4c\x02\xf2\x43\x33\xe9\xdf\x20\xc0\x84\xa7\x26\x09\x6f\x9d\x29\x50\x97\x83\x25\x57\x19\x84\xb7\x58\x4b\x02\xc6\xd0\x4c\xfa\x37\x48\x20\x0f\xef\x1e\xa8\x87\x1e\x7a\xe8\x9e\xc1\x10\xa7\xfb\xaa\x19\xa3\xd4\xa4\x50\xc5\xfd\xfd\xfd\x80\x77\x63\x46\x7b\x35\xd1\xbf\xe7\x56\xee\xf3\xc4\xc9\x84\xa2\xee\x28\xa0\xf9\x4f\xaa\x15\x14\x95\xc7\x25\x18\x81\x0b\xab\x97\x5e\x3b\xbb\xa6\xf4\x2c\x08\x23\x70\xd7\x19\xe6\x01\xf8\x36\x83\xd6\x9f\x38\xfd\x5e\xe7\xbc\x51\xef\xad\xd4\xa5\xff\xb6\xa2\x42\x35\xfb\x8d\x93\x0a\x51\x36\x82\x9a\x16\x57\x46\x6f\x5f\x27\x98\xa8\xfc\x51\xed\xc4\x8d\x43\x54\x88\x85\xa1\xbb\xbb\x5b\x22\xb9\x69\x38\x94\x2f\x54\x8c\x61\x80\x82\x03\x60\x52\x3b\x08\xab\x0b\x61\xab\x5f\xc6\x11\xa1\xab\x9c\xdc\x96\xb2\x59\x01\x1e\x41\x6c\xda\xb4\x49\x87\xe5\xae\x61\x88\xd2\x67\x9b\xa9\x4a\xa1\x46\x3f\xf6\xb1\x8f\xc9\x41\x30\x49\x20\xbf\x6f\xac\xfd\xb7\xda\xab\x89\x2d\x3e\x44\x1e\xcb\xf7\x17\xa5\xe5\x31\x36\xcf\x78\x72\x6d\x67\x65\xdf\x92\x80\x7b\xe3\x83\xc7\x0e\x26\xda\xad\x6b\x2f\x6d\x5c\xf8\x96\x93\xc0\x35\x78\xe7\x77\xe5\x56\x8c\x57\x5f\x7d\x15\x9e\x9a\xa4\xf7\xb7\x95\x49\x8f\xd3\x23\x7d\xd8\x62\xde\xd5\x31\x8b\x12\xc1\x6a\xfd\x51\x08\x1c\x55\x56\x17\xe9\x71\x84\x1a\xd7\x8e\x2e\x21\xe3\xec\x13\x15\x16\x7d\xde\xa3\xfa\x1c\xd5\x56\x14\xae\x44\xf5\xc7\x87\x21\x97\xcb\xc9\xfc\x86\xc1\x29\x9b\x74\x58\xae\x91\xdb\x52\x25\x04\x29\x45\xd4\x78\xd3\xa6\x42\x82\x23\x87\xf0\xbd\x62\xf7\x04\x06\x43\xc9\x04\x2d\xb1\x91\x38\xf4\xf3\xae\x5e\xbd\x5a\x1e\x38\xc9\x76\x96\x93\x1b\xb6\x4d\x65\x3f\x4d\x82\x98\x0a\x85\xf4\x1e\xa9\x1a\xa1\x7f\x5c\x57\xb1\x1d\x42\x9a\x92\x00\x96\x93\xbc\xf8\xd2\xa6\xf9\x6f\x2f\x1b\xce\x35\x02\xc9\xc3\xec\x65\x00\xd6\xf9\xf3\xe7\x71\xe1\xc2\x85\xc8\x3e\x21\x1e\xf1\x9b\xa5\xe9\xf1\x8d\xe2\x5a\xd1\xa7\xe3\xca\x34\xaa\x9f\x45\x3c\xab\x04\x14\x25\xb1\xf5\x74\x9d\xc8\xa3\x10\x20\x2e\x5f\x1c\xf1\x34\x2b\x13\x89\x3b\xfd\xfd\xfd\x72\x3b\x06\x03\xc0\x1c\x26\x98\xc3\x84\x9b\x57\x71\x0a\xab\x3b\x36\xc2\x3e\xd4\x40\xd5\xf6\x4d\x4f\xf2\xd4\x73\xaf\x4e\x4f\xfa\xdc\x13\x18\xe2\xb8\xa0\xda\x40\x6c\xf8\xc4\x27\x3e\xc1\x18\x63\xee\xcd\x72\x02\xf9\x3d\xe3\x6d\x9f\xca\xd4\xd8\x3a\x55\x53\xf2\xed\x04\xd5\x03\xec\x05\xe9\x6f\x56\x75\x47\x29\x31\x04\x09\xfe\xda\xba\xe2\x4f\xc6\xf3\xd6\x5b\x44\x34\x06\xf7\xb8\x67\x09\x80\x3d\x32\x32\x82\x5f\xfe\xf2\x97\x5c\x08\x11\x35\xe1\x71\x6a\x4b\x33\xd5\xa8\x91\x3a\xa4\x97\x8b\xab\x27\xee\xbd\x51\x99\x46\xf6\x8f\x4e\x40\x71\xed\x70\xd4\x97\x8f\x2a\xd3\x28\x9f\x5e\xa6\x15\x35\x4b\xef\x4b\x1d\x0c\x8a\x04\x07\x00\xd4\x98\xb0\xe7\x33\xf6\x04\xe0\x6e\xc9\x51\xed\x6a\x89\x08\x2a\x9a\xf8\x0b\x2b\x14\x10\xca\x42\xda\x9e\xaa\x1a\xc2\x82\x9f\x16\x62\xa5\xef\x09\x06\x7d\xf2\x75\x71\x12\xab\xf7\x0e\x0c\x0c\x30\x79\x90\x5d\x08\x91\x5d\x55\x4e\x6e\xdc\x7c\x27\xfb\x71\xff\x83\x20\xca\x42\x9c\xe2\x54\xf2\x09\x43\x2a\x4d\x44\xca\x57\x7a\x14\x17\xdb\x48\x57\xe5\xdc\xb9\x35\x4b\xcf\x82\x30\x26\x84\x98\xf6\xb6\x20\x5b\x73\x73\x73\xdc\xdb\x01\x19\x05\x70\x1c\xe2\x34\xd2\xc5\xf5\x01\xd2\x11\xa4\x55\x64\x8f\x0a\x2b\x21\x0c\xf9\xac\xeb\xe2\x71\xaa\x53\x2b\xc4\xdc\xac\x4c\xd4\x7b\x2b\xaa\x62\x5c\xbb\x91\x75\x55\xab\x55\x08\x21\xb8\x10\xc2\x16\x04\x6b\xb4\xb3\x72\x8e\x43\x70\x5f\x29\x12\x61\x02\x70\x55\x68\xe9\x89\x17\x5a\x9c\xc0\x8d\xae\xca\xdb\x36\x13\x15\xaf\x3f\x5c\x6e\x44\xbc\x17\x30\xa8\x08\xb5\x12\x75\x83\xef\xdd\xbb\x57\x96\x37\x09\x94\xdb\x35\xde\xf6\xb1\x4c\x8d\xf5\x4b\x37\xab\xee\x29\xd2\x5e\x41\x42\xd9\xbe\xa1\xe4\x11\x9e\xaa\xf4\xab\x0d\x0b\x4f\xdb\x09\x31\x0a\x60\x8a\x88\x8a\xde\x29\x37\xfd\x56\xb8\xb8\xbe\x36\x53\xf5\x5a\x55\x91\x5a\xe1\xda\x71\x6d\xc4\xc5\xeb\x2a\x46\xa3\xdf\x28\xf1\x1e\x55\x3f\x57\xfe\xa2\xfa\xac\xbf\xeb\x76\x47\xdc\xdc\x37\xb2\x3d\xa2\xfa\x1b\x09\x83\x65\x59\xf0\x6e\x37\xb4\x41\x28\x5f\xee\x29\x9f\x2a\xa5\x9c\x29\xd7\x5e\x74\x59\x63\x9d\xd2\xac\x10\x85\x1f\x05\xa0\x6c\xf2\xe9\x0b\xbd\xe5\x57\xe1\x7d\x2a\x58\x5e\x19\x7a\xaf\x60\x68\xc4\xed\x1a\xaa\x4c\xaa\x67\x29\x57\x4d\xf4\x6f\x9d\xca\x7e\x3c\x64\x3b\x28\x90\x84\x9c\x4d\xbe\x7b\xd5\x1b\x02\x6d\x75\x5a\x90\xe0\x6f\x0d\x2c\x3e\x33\x95\xab\x9d\x81\x72\xd2\x0d\x00\x7f\xf9\xe5\x97\x71\xeb\xd6\xad\x46\xfd\x6a\xc6\xcd\x57\xc2\xdd\x81\x16\xd4\xc6\x15\xe6\xd3\xf3\x46\x49\xb2\x28\x1d\xb8\x19\x93\x8a\x83\x2b\x8a\x69\xc4\xd5\xdd\xac\xed\x58\x84\x8f\x68\x23\x14\x37\x31\x31\x01\x4f\xbd\xb5\x84\x10\xa5\x62\xca\x19\x7d\x75\x7d\xf1\xfb\x4e\x42\x58\xd2\xdb\x24\xfd\xee\xee\x99\xfa\x40\x6b\x08\xce\xcd\x13\x1c\x26\xac\x57\xd7\x17\x9f\x5e\x4c\x39\xa3\x70\xef\xd7\xb5\x88\x88\x5f\xba\x74\x29\xb6\xed\x95\xc2\xd0\x48\x2c\xc7\xea\xe2\xc7\x8e\x1d\x93\xa7\xab\x4c\x08\xe4\xb6\x4f\x66\x1f\x4a\xdb\x6c\xd0\x5f\x78\x26\xf8\x00\x85\x3c\x08\x8a\xba\x24\xd5\xa8\xd0\x57\x7d\x48\x60\xaa\xdd\x1a\x39\xdb\xbf\xf4\x9c\x80\x90\xd7\xc4\x94\x84\x10\xf6\xcd\x9b\x37\x79\x93\x53\x6e\x51\xfd\xd6\x91\xa5\x11\xa2\xc5\xa9\x00\xad\x22\x7b\xd4\x44\x34\xea\x5f\xab\xf9\xd5\xd0\x68\xa2\xd5\xba\x5b\x91\x80\x32\x3e\x0a\x56\x7d\x5c\xa2\xb8\x6c\xb3\xba\xfd\xf0\xdc\x73\xcf\xc9\x6b\x3f\x2d\x00\x25\x10\xa6\x2f\xac\x5e\x7a\xe9\xd4\x60\xe9\x67\x36\x13\xb6\xba\x40\x27\xef\xee\x55\xbf\x62\xe4\x7d\xec\xd1\x3e\xd3\xbf\xf8\x8b\xf3\x7d\xa5\xe7\x40\x98\x96\x67\x5d\x38\xe7\xfc\xea\xd5\xab\x51\xb0\xde\x15\x0c\x86\x96\x21\x8e\xc2\x42\x95\x0e\x0f\x0f\xfb\x57\x99\x64\x2c\xd6\xbb\x7d\xaa\xed\xe3\xf2\x9b\x6e\x92\xda\x29\xc2\x97\xac\x3f\x04\x9f\x77\x72\x15\x27\x4e\xb0\x5f\x5f\xb7\xf8\xa3\x65\xc3\x19\x21\xa2\x29\x78\xf7\xfe\x54\x2a\x15\xfe\xda\x6b\xaf\x45\x01\xa1\xeb\x84\x71\xaa\x4f\x14\x1c\x51\x36\x47\x1c\xe7\x8b\x1b\xd0\x66\xd2\x2a\x4a\x1a\xb4\xda\x1f\xde\x20\x3e\xaa\x8d\x28\x7b\x2a\x2e\x4e\xaf\x4f\xcf\xa7\x97\x69\xd4\x4f\x3d\xd4\xc1\x90\x48\x24\xd8\xf4\xf4\x34\xba\xbb\xbb\x6d\xef\x28\xef\xb4\xc3\x30\xfa\xab\xf5\x0b\xdf\x59\x32\x9d\xf2\xfd\x37\xdb\x3f\x94\xaf\x26\xba\x7c\x4e\x49\xf0\x71\x02\x10\x28\x99\xce\xfc\xeb\xeb\x8a\x3f\x3b\xbf\x66\xe9\xe7\x0e\x73\x6f\x0b\x24\xa2\x12\x00\xfb\xf6\xed\xdb\xb8\x79\xf3\xe6\x3d\x83\xc1\x68\x94\x18\x03\xa8\x3c\xdd\x64\x08\x21\xb2\x43\x33\x99\x03\x1d\xcb\xc6\x8e\x90\xae\x47\xd1\xe7\xa2\x21\x8d\x68\xef\xcb\xa0\xd2\xdd\x26\x37\x77\x8d\x76\x56\xce\x5d\xef\x5a\x7e\xdd\x23\x86\x79\x00\x15\x21\x84\xfd\xf6\xdb\x6f\x63\x66\x66\xa6\x11\x72\xc5\x01\x1c\x47\x40\x51\x65\xd0\xe0\x3d\xaa\x6e\x44\xe4\xd1\x43\x23\x82\x8d\xeb\x0f\x50\xdf\xf7\xa8\xc9\xd6\xdf\xe5\x73\x9c\x64\x8f\x83\x41\x8d\x8b\x1a\xb7\x28\xfc\x68\xaa\x26\xa9\xf5\x38\x8e\x83\x17\x5e\x78\x01\x9f\xfc\xe4\x27\x79\x22\x91\xa8\xc0\xbd\x2e\x74\x02\x8c\xf0\x76\x7f\xc9\x1e\xe9\x5a\xbe\xb0\xf9\x4e\xf6\xc0\x86\xb9\xf4\xb6\x7c\xc5\x28\x24\x38\x19\x0e\x09\xbb\x98\xb6\xe7\x6f\x74\x55\x2e\x5c\xea\x29\xbf\x59\x4c\x3b\x97\xbd\xcd\x9c\xfe\x5d\xb2\xb5\x5a\x8d\xbf\xf5\xd6\x5b\xf7\x14\x06\xfd\x1b\x73\x8d\xb8\x20\x03\xdc\xfd\xec\x80\xfb\x9d\x02\xc6\x91\xdf\x7a\x27\xfb\x48\x42\x90\x09\xf2\x36\x64\x41\xdd\x5f\xab\x7f\xf7\x98\xfc\x2d\x1a\xc1\x71\x6a\x97\x48\x6a\x09\x51\x39\x35\xb8\xf8\x0c\x67\x98\xf0\xce\x42\x97\x01\xd8\x33\x33\x33\x72\x2b\x77\xa3\xc9\xd4\x07\xa5\x91\x8e\xab\x0e\x4a\xa3\x10\x35\xb9\xfa\x60\x37\x23\x26\xbd\x7c\x54\x3f\x1b\x95\x69\xd6\x2f\xbd\xee\x56\x55\xa5\xa8\xf4\xa8\x7a\xf4\xf4\xa8\xf2\x2d\x49\x67\x6f\x1e\xd9\xbe\x7d\xfb\x6c\x22\x2a\x7b\xd7\x87\xda\x20\x58\xc5\x8c\x33\x7f\x6a\xed\xe2\x8d\xd3\x83\x8b\x85\x94\xcd\x3a\x12\x9c\x0c\x87\x09\xbb\x6a\xf0\x05\xc7\xfd\x2e\xc7\x34\x10\xba\x7f\xb7\x2c\x84\xe0\x17\x2e\x5c\xd0\xdd\xba\xef\x19\x06\xfd\x1b\x73\x51\xc8\x14\x9a\xb0\x42\xa1\x00\xb8\xd7\x96\xa4\xbb\x97\xcc\x0d\x7d\x45\xf3\x90\x5f\x03\x05\xab\xce\xfe\x6a\xbc\xf0\x37\xb2\x2a\x21\x70\x2a\x4b\x5d\x71\xa4\xab\xf2\xf6\x78\x47\xf5\x0c\x3c\xaf\x12\xbc\x1d\xac\xdf\xfe\xf6\xb7\x75\xc0\xe2\x00\x6c\xc4\x15\xa2\x06\x41\xcd\xa7\xa7\x45\x71\xee\x46\xc8\xd6\x90\x43\xc6\x94\x8b\x23\x86\x66\x48\x1c\x15\x56\x5a\xa6\x55\x62\xbb\xdb\xba\x22\xeb\x79\xe3\x8d\x37\xb8\xe3\x38\xec\x81\x07\x1e\xb0\xbc\x3c\x36\xdc\x53\x70\xf3\x20\x4c\x38\x84\x5c\xd9\xe4\xf2\x82\x03\x99\x56\x06\x82\x0f\xd5\xc0\xfb\x42\xd3\xc5\x8b\x17\x71\xf2\xe4\xc9\x95\x30\x92\x96\x60\x50\x55\xa6\x46\x93\x07\x00\xfc\x91\x47\x1e\x91\x04\x62\x10\x28\x37\x3c\x9d\xfd\x80\xe9\x50\x21\xfc\x2d\x2a\x65\x65\x11\x08\x56\xaa\x7d\x1f\x9a\xb2\x40\xe1\x85\x1a\xe3\x95\x33\xfd\x25\x29\x1d\xfc\x53\x6f\xd7\xaf\x5f\xbf\x6b\xc0\xd0\x98\x80\x9a\x49\x91\x56\x38\x6b\x23\xb5\x41\xb5\x01\x1a\xd5\x19\x15\xd7\x48\x52\xaf\x44\x37\x8e\xaa\xaf\x99\x5d\xa4\x96\x69\xd4\x4e\x5c\x99\xa6\xda\xc6\x5b\x6f\xbd\x05\xc6\x18\xf6\xef\xdf\x6f\xcb\x8f\xce\xc0\x45\xfa\x79\x00\x92\x18\x64\x79\x1b\x2e\x01\x54\xe4\xad\x1f\xb6\x6d\xdb\x97\x2f\x5f\x96\x47\x83\xef\x39\x0c\x71\x1f\x5d\x94\x15\x85\x2a\xe8\xeb\xeb\x93\xef\x69\xd3\xa1\xc2\xc6\xe9\xf4\x71\x08\x62\xee\xe7\x70\x55\x35\x48\x79\x56\xfe\xfb\xdf\x76\x90\x5e\x36\xef\x1b\xce\x63\x85\xea\x3b\x13\xf9\xea\x79\x04\xab\xd1\x16\x00\x7e\xfa\xf4\x69\xbd\x5f\xf7\x62\x10\x5a\xe1\xca\x51\x63\xa0\xe7\x6d\xa4\x86\xe9\xe5\x5a\xe9\x47\x14\x11\x45\xf5\xaf\x91\xba\xd5\xa8\x4f\x8d\x88\x55\xcf\x13\xd5\x4e\x54\xfd\x7a\x99\x96\x60\x38\x75\xea\x14\x9f\x9e\x9e\x66\x47\x8f\x1e\xb5\x33\x99\x8c\xbc\x48\xa0\x02\xf8\x1f\x9d\x94\xaa\xb4\xdc\x8d\xc0\x89\xc8\x9e\x9b\x9b\xc3\xbf\xfc\xcb\xbf\xac\xa4\x3f\x2b\x86\x41\xb5\x21\xf4\xc9\xa9\x03\x2e\x95\x4a\xc9\x32\xe9\xde\x92\x39\x5c\x58\x4e\x6e\x53\xf7\x22\xc9\xa0\x2e\xb3\x93\x17\x11\x08\x09\x75\xdf\x3b\xc1\x21\x61\x9f\x5b\xb3\xf4\xa2\xe3\x7e\xa3\x61\x5e\x72\x8d\x8b\x17\x2f\x62\x7e\x7e\x3e\x6a\x02\xa3\x90\x48\x7d\x8e\x22\x8a\x66\x5c\xad\x15\x09\xd1\x88\xf3\xaa\xed\x35\xea\x5b\xa3\x3e\xc4\x21\x7a\x23\x09\x1e\xd5\xb7\x28\xc2\x8c\xca\xdb\x0a\x91\x37\xea\xaf\xde\xb7\x56\xe3\x00\x00\x37\x6e\xdc\xc0\x57\xbe\xf2\x15\xbe\x73\xe7\x4e\x36\x34\x34\x64\xaf\x5a\xb5\x4a\x7e\x4e\x8c\x01\xfe\x76\x0c\xee\x38\x0e\xe6\xe7\xe7\x71\xfa\xf4\x69\x8c\x8c\x8c\xfc\xda\x61\xd0\xbd\x4c\x7a\xe5\x7e\xf8\xd0\x87\x3e\xe4\xab\x4b\x10\xc8\x6e\x98\x4d\x3f\x98\x90\xdf\x80\x83\xb6\x55\x17\x3a\x89\xd4\xed\xec\xf5\xdf\x67\xdb\x6a\xa3\x37\x0b\x95\x33\x02\x62\x9e\xe0\xba\xd2\x6a\xb5\x1a\x7f\xf1\xc5\x17\x5b\x01\xb0\x19\x92\x36\x2b\xd3\x88\xdb\x47\x0d\x7a\xb3\x76\xe2\x88\xaa\x11\x2c\xcd\x10\x29\x2a\x5f\x54\x1b\x6a\x9a\x8a\x7c\xad\x10\x52\x23\xe2\x6e\xa6\x52\xb7\xa2\xce\xc5\xc2\x70\xee\xdc\x39\x7e\xee\xdc\x39\x3f\xc3\xa6\x4d\x9b\xd0\xd7\xd7\x87\x5f\xfe\xf2\x97\xbc\xbb\xbb\x9b\x4d\x4f\x4f\xb7\xca\x0c\xee\x09\x0c\xba\x97\x29\xaa\xd3\xdc\x30\x0c\xb6\x71\xe3\x46\xc0\x93\x0e\x29\x87\x0a\xeb\x67\xd3\xef\x07\xc2\xeb\x0b\xf2\x5e\xa5\x60\xdf\x52\x70\x55\xa5\x6f\x5e\x78\x3e\x58\xe1\xa5\x5f\xe8\x2d\xbf\x62\x19\x62\x82\x40\xf2\xfa\x18\xfb\xc6\x8d\x1b\x51\xfd\x89\x02\x3a\x0a\x38\x35\xaf\x5e\x4f\x9c\x9a\xd2\x0a\xd2\x37\x13\xc5\x7a\x1f\x9a\xa9\x50\x51\xfd\xd1\x61\x88\x82\x27\x6a\xa2\xf5\xf2\x71\x08\xd4\x4a\xfb\x6a\xbd\x51\x30\x36\x65\x9e\x88\x81\x61\x60\x60\x80\x4d\x4d\x4d\xc1\xfb\x2c\x58\x24\x0c\x57\xaf\x5e\xc5\xd5\xab\x57\x39\x00\x36\x3d\x3d\x1d\x09\x43\x7f\x7f\x3f\xc6\xc7\xc7\xf9\xf1\xe3\xc7\x55\x98\x00\x80\xfd\xe2\x17\xbf\x88\x63\x30\x2d\xc1\x10\xe5\x65\xaa\x7b\xef\xee\xee\x06\x00\xff\x9a\xc3\xae\xa5\xe4\x86\x8e\x65\x63\x38\xbc\x96\xe8\xb9\x59\x29\xb8\x60\xcc\x3f\x02\xaa\xda\xd0\xca\xce\xc4\x72\x92\xcf\x5f\x5f\xb5\xfc\x16\xdc\x33\x0e\x25\xf9\xc1\x12\x0f\xa8\x38\x75\xa6\x11\x77\xd6\x91\x56\xe6\xd7\x01\x6f\xa4\x86\x45\x95\x89\x52\x85\xa2\xda\x69\x34\x19\x51\xaa\x5b\x33\x35\xad\x99\x4a\x17\x47\x0c\x51\x79\x1b\x11\x4f\x5c\xbf\xe2\x60\x8c\xea\x17\x07\xdc\x9b\xc5\x87\x86\x86\x90\xcf\xe7\x91\xc9\x64\xa0\xd8\x04\x9c\x88\x50\x2e\x97\x31\x36\x36\xc6\x9e\x7f\xfe\xf9\x15\xc3\xb0\x7e\xfd\x7a\xb6\x77\xef\x5e\xf4\xf6\xf6\xca\xe3\xca\x00\xdc\xed\xdf\x52\xc5\x1a\x1e\x1e\x66\xd5\x6a\x95\xdf\xb9\x73\x07\x3f\xfa\xd1\x8f\x56\x0c\x43\x94\xca\x54\xc7\x99\x87\x86\x86\x00\xb8\x9f\x83\x15\x42\x64\xfb\x8b\xa9\x3d\x49\x4e\x39\xf7\xd8\x5f\x70\x92\x29\x38\x00\x14\x6c\xe1\x88\xd8\xda\xe4\xbf\xdc\xea\xa8\xbe\xb3\x90\xb6\x47\x00\x14\x3d\xcf\x12\x9f\x9d\x9d\x45\x22\x91\x60\x8e\xe3\xa8\x7d\xd1\xfb\xd5\x0a\x77\xd6\xb9\xb9\x9e\x37\x4a\x22\xea\x65\x5a\x09\xba\x0d\xa0\x97\x8f\x93\x3e\x71\xed\xc4\xf5\x47\x8f\x8b\x1b\x8f\x38\x35\x26\xae\xed\x46\x84\xd8\xa8\x4c\xa8\x2f\x03\x03\x03\x38\x76\xec\x18\xda\xda\xda\x64\x7e\xc3\xfb\xbe\x36\x03\x00\x6f\xeb\x06\xcf\x64\x32\x7c\xcb\x96\x2d\x7c\xcb\x96\x2d\xb8\x73\xe7\x0e\x9e\x7d\xf6\x59\x14\x8b\xc5\x86\x30\x14\x0a\x05\x1c\x3f\x7e\x1c\xab\x56\xad\x92\x84\xa0\x7e\x79\x95\x21\x3c\x07\xb6\x69\x9a\xf6\xc0\xc0\x80\x7d\xe2\xc4\x09\x9c\x39\x73\x46\x7e\x00\xa7\x29\x0c\x40\xfd\xd6\x0d\x7d\xf0\x00\x00\xf2\xca\x41\x21\x84\x49\x44\xd9\xf5\xb3\xe9\x03\x00\x31\xdd\x9e\xa6\xba\x67\x75\x49\x2e\x08\x02\x02\x82\xc0\x2f\xf5\x96\x5f\x73\x48\xcc\x7a\xb6\x83\x45\x44\xfc\x5b\xdf\xfa\x56\x2b\xaa\x44\x5c\x5c\x54\xb9\x28\xce\x1d\x95\x1e\x27\x3d\xf4\xb6\x1a\x71\xb4\x46\x7d\x6e\x86\xe0\x51\x21\x4a\xc2\xc4\xa9\x6e\x51\x21\x8e\xe0\x9a\xa9\x88\x71\x2a\x46\xa4\xc4\x3a\x7a\xf4\x28\xb6\x6e\xdd\x2a\x91\xd5\x00\x60\x9a\x36\x65\x3b\xcb\x66\x5f\x4f\x29\x39\x98\x10\x64\x2c\x27\x79\x69\xba\xcd\x1a\x2b\xa6\x9d\x69\x3b\x21\x2a\x00\xac\x9e\x9e\x1e\xfb\x89\x27\x9e\xe0\xaf\xbf\xfe\x3a\x53\xee\xd1\xaa\x83\xe1\xf1\xc7\x1f\x67\xd9\x6c\x96\xc1\xfb\x88\x64\xba\xc6\xf2\xeb\x67\xd3\x3b\xd7\xcf\xa5\xdf\xb7\x7a\xd1\xdc\x61\x70\xca\x56\x0c\x3e\x3d\x91\xb7\xce\x5f\x5b\xb5\xfc\xf2\xad\x8e\xea\x25\x3b\x21\xca\x00\xac\xdd\xbb\x77\xdb\xeb\xd6\xad\x93\xde\xa9\x58\x18\x64\x5c\x9c\x97\x29\x14\xbc\xc5\x38\x46\x44\x66\xc6\x62\x85\x9e\x52\x72\x67\xc8\x2e\xf0\x55\xa4\xc0\xdf\xaa\x7d\xe6\x21\xfc\x0b\x42\x25\xe9\x14\x6f\x75\x54\xcf\x7b\x8b\x70\x15\x00\xb6\x72\x89\x6d\xdc\x44\xc7\x21\x6f\xb3\x10\x87\x50\x51\x6d\xc5\x21\x71\x2c\xc3\x68\xb5\xde\x9d\x3b\x77\xb2\xb5\x6b\xd7\x22\x9b\xcd\x86\xfa\x36\x3a\x3a\x8a\xe5\xe5\x65\x9c\x3b\x77\xae\x15\x22\x6c\xd4\xdf\xa8\xf1\x5b\x49\x7f\x5b\xcd\xe3\xc7\x3d\xfe\xf8\xe3\xac\xbf\xbf\x9f\xc1\xbb\x96\x32\x65\x53\x7e\xd7\xed\xdc\xb1\xad\x53\xd9\xdf\x2e\x2c\x1b\x7b\x13\x9c\x0a\x5e\x3d\x76\x2d\x21\x26\xa6\xdb\x6a\xaf\x9d\x1e\x58\xfc\xd2\xb5\xee\xe5\xb7\x1d\x86\x12\x63\xac\xf2\xc0\x03\x0f\xd8\x8e\xe3\x30\x0f\x7e\xbf\x8d\x42\xa1\xc0\x1e\x7b\xec\x31\x78\xc4\x90\x26\x8e\xdc\xf0\x74\x66\xef\xc1\xd1\xfc\x9f\x74\x95\x93\xef\x67\x02\x39\xb9\xb4\xdb\x01\xa0\xb7\x94\xe4\xf7\x4d\xb4\xcd\xde\x2c\x54\xbe\x7d\x72\xc3\xc2\xdf\x4f\xe5\x6a\xd7\x88\xa8\x52\x28\x14\xac\x4f\x7f\xfa\xd3\xf8\xe6\x37\xbf\xc9\xa3\x60\x50\xe1\xf3\xf5\x30\x65\x00\xea\x06\xc3\xfb\x68\x9f\x01\xc0\xec\x2d\x25\x87\x53\x0e\xeb\xf6\x57\xdb\x3c\x63\x3a\x1c\x82\xc5\xb7\xd0\x9a\x9c\x9f\x24\x70\xab\xa3\xfa\xce\x72\x92\xcb\x0f\xf7\x55\x00\x70\xed\x82\xb1\x56\x27\x32\xaa\x4c\x23\x2e\x18\x57\x2e\xca\x6e\x88\x23\x12\x35\x2e\x92\x50\xd6\xac\x59\xc3\x6e\xdf\xbe\xcd\x9f\x7c\xf2\x49\xd6\xd1\xd1\x01\xc0\xb7\xc1\xea\xfa\xb1\x6a\xd5\x2a\x0e\x00\x47\x8e\x1c\x01\xe0\x6e\x73\xf0\x24\xa5\x0e\x57\x23\x86\xd0\xec\x39\xea\x7d\xa5\x65\x42\xcf\x8f\x3c\xf2\x48\x40\x0c\x40\xb6\xb7\x94\x1c\x3e\x7e\xb9\xf3\x0b\xab\x17\xcd\x8f\x12\xc8\x94\xd7\xd0\x79\x7b\xd5\x4c\xd3\x61\x1b\xfb\x8b\xa9\x8d\x7d\x8b\xe6\x47\x2f\xf5\x94\xff\xeb\x4b\x1b\xe7\xbf\x58\x4e\xf1\x29\x22\x2a\x1f\x39\x72\xc4\x26\x22\x76\xf6\xec\x59\x0e\xb8\xdf\x88\x78\xfc\xf1\xc7\x7d\x62\x60\x1c\x85\x83\xa3\xf9\xdf\xbc\xff\x66\xfb\x5f\x1a\x9c\xba\x43\xbb\x61\x03\x24\x63\x06\xa7\xee\x0d\xb3\xe9\x13\x3d\x25\xf3\xd0\x4f\xb7\xcd\xfc\xe9\xcd\x42\xf5\x1c\x11\x95\xba\xba\xba\xac\xc3\x87\x0f\xcb\xd5\xed\x58\x1c\x4a\x68\x89\x2a\xfe\x0a\x00\xec\xc8\x91\x23\xd4\xd3\xd3\x43\xde\x47\xfa\x0a\xdb\xa7\xda\x1e\x1d\x9c\x4f\x1d\x81\xbf\x6f\x3d\x00\xda\xdd\xdb\x8e\xa0\x0a\xf5\xfe\x25\xff\xf4\x9c\x80\x00\xf8\x9b\x83\xa5\xa7\xef\xe4\x6a\x6f\x0a\x88\x29\x00\x4b\x00\x6a\xca\x77\x07\x54\x0a\x63\xb2\x2f\x4a\xbf\x64\x50\x69\x4d\x2f\xc3\xbd\x74\x8e\x30\x4c\x51\xf9\xe4\xaf\x2e\xcb\x84\x92\xcf\x3f\xcd\xa8\x94\x11\x6a\x5e\xc6\x18\x1b\x1c\x1c\xa4\x63\xc7\x8e\xd1\xbe\x7d\xfb\x70\xe0\xc0\x81\x44\x2a\x95\x4a\x78\xaa\x44\x0a\xae\xc8\x4f\x91\xfb\x9c\x06\x90\x04\x60\x0a\xf7\xea\x4f\x43\x7e\x5f\x3a\x9b\xcd\xd2\xfe\xfd\xfb\x69\xd7\xae\x5d\xe8\xef\xef\xc7\x95\x2b\x57\x24\xfc\xb2\x7d\xbd\x8f\x6a\x9a\x88\xc8\xa3\xfe\x41\x2b\x23\x9f\x25\x4c\xa4\xd4\x45\x11\xef\x00\x20\xb6\x6e\xdd\xca\x76\xed\xda\x05\x22\x4a\x0a\x21\x72\x3d\x4b\xe6\xa6\xc7\xcf\x77\xff\x97\x55\xe5\xe4\x71\x80\x12\x04\xb9\x43\x41\x55\x9b\x3d\x7b\x53\x20\xd5\x5d\x4e\x3e\xb8\xaa\x9c\xec\xb8\xbe\x6a\xf9\x94\xc3\x44\x8d\x88\x9c\x9e\x9e\x1e\x3e\x3a\x3a\x4a\x95\x4a\x45\x1c\x3d\x7a\x94\xfa\xfa\xfa\x5c\x35\x1d\xd4\xb1\x77\x3c\xf7\xd8\xa1\x1b\x1d\xff\xc9\x70\xa8\x2b\xd8\x25\x1d\x40\xe8\x03\xec\xb5\x67\x3a\xb4\x7a\x60\x21\xbd\x6b\xac\x50\x7d\x75\x29\xe9\x14\x89\xc8\xee\xe9\xe9\x71\x6e\xdd\xba\x45\x4b\x4b\x4b\x2a\xdc\xf2\x97\x00\xf7\xa3\x8b\xea\xa4\xab\x93\x4d\x00\xf8\xfb\xde\xf7\x3e\xf2\x26\x35\x93\x10\xd4\xbd\xf7\x56\xfb\x93\x9d\xcb\xc6\x70\xb0\xbd\x9b\x82\xff\xca\x1a\x43\x70\xb0\x43\x19\x13\x6f\x03\xa0\x95\xe4\x8b\xaf\xae\x2f\x7e\x6b\xd9\xe4\x97\x89\x68\x8e\x88\xca\xa5\x52\x89\x9f\x3b\x77\x4e\x17\x35\x2a\xb1\x86\x04\x8d\x32\x99\x32\x9f\x0a\x60\x88\xa8\x11\xcd\x0d\xd4\xf2\x14\x91\x57\x27\x36\x9d\x20\x43\x1b\x7c\xdb\xda\xda\xd8\x47\x3e\xf2\x11\xec\xdb\xb7\x0f\xb9\x5c\x8e\x11\x51\x12\xee\xb5\x8d\x19\x56\x13\x1d\x6d\x73\xce\x70\xe7\xa4\xfd\x60\xd7\x2d\xfb\xe1\xae\x71\xfb\xd1\xce\x5b\xb5\x8f\x74\x4e\x38\xc7\x3b\xa6\xec\x07\x73\xb3\xce\x66\xb3\xc2\x0b\x04\xa2\x9a\x49\x0e\x88\x12\x44\x44\x86\x61\x88\x8e\x8e\x0e\xdc\x7f\xff\xfd\x30\x0c\x43\x1e\x8e\x8a\xea\x83\x4e\xec\x51\xcf\xcd\xf2\xc4\xe5\x8d\x2c\xff\xc8\x23\x8f\x90\xf7\x45\xd9\x4c\xda\x66\x7d\x8f\x5c\xec\xfa\xcb\x9e\x25\xf3\x21\x1f\xe9\x01\xf8\x47\x82\x21\xa5\x44\x80\x1b\x10\x60\x85\x8a\xb1\x13\x84\xc9\x5b\x05\xeb\x12\x08\x96\x61\x18\x4e\x67\x67\xa7\xb8\x74\xe9\x92\x38\x7e\xfc\x38\x31\xc6\x92\x44\xd4\x56\xa8\x18\x43\x1f\xbe\xd8\xf5\x37\xa6\xc3\xd6\xb8\x57\xd7\x28\xf2\x41\xf5\x6a\x2a\x38\x49\x20\xa4\x6c\x5a\x93\xb3\x8c\xe4\x95\x9e\xe5\xd7\x04\xa1\x42\x44\x76\x6f\x6f\xaf\x50\xce\xd5\xe8\x8c\x52\xe8\x6e\xd7\xba\xe7\x6c\x36\x2b\x5d\x67\x66\xca\x66\x85\xee\xa5\xe4\x46\x55\x5c\xf9\xc0\x6b\xbc\x55\x31\x17\xea\xf2\xce\x65\xec\xf1\x62\xda\x19\x13\x42\x94\xa5\xab\x75\x6c\x6c\x0c\x11\xa1\x91\x8e\x0b\xd4\x8b\xf6\x46\x7a\x75\xa3\xd0\x4a\xb9\xd8\x7a\x76\xee\xdc\xc9\x0e\x1f\x3e\x2c\xc7\xc9\x10\x42\xa4\x19\x47\xb6\x7d\xc6\xd9\xd6\x39\x5e\x7b\x34\x37\xe3\x1c\x4f\xd4\xc4\xb0\x77\xb9\x16\xc2\x74\x18\xd4\x2f\x18\x66\x6b\x29\x7a\x7b\xbe\x2f\xf9\xe3\xf9\x35\xc6\xf3\xcb\x79\x36\x0a\xef\x03\x91\x7b\xf6\xec\xb1\x77\xee\xdc\x89\x06\x1f\x48\xd7\x43\xab\x06\xfb\x4a\xeb\x62\x00\x78\x5b\x5b\x1b\x03\x60\x10\x51\x6e\xeb\x54\xdb\xb1\xfe\x85\xd4\xe3\xca\x32\x93\x1b\xea\xb7\xad\xf9\x66\xa6\x77\x27\x93\xb1\x6b\x3c\xf7\x1f\x2e\xf7\x2c\xbf\x76\x27\x57\x3b\x07\xc0\x5e\xb3\x66\x8d\xf5\x87\x7f\xf8\x87\xfe\x01\x34\x02\xe5\xf7\x8e\xe5\x3e\x93\xa9\xb1\x8d\x21\x33\x14\xf0\xbe\xab\x13\x76\xf1\x87\x82\x20\xac\x9d\x4b\x3d\xde\xbf\x90\xfa\xce\x58\x67\xf5\x57\x00\xac\xae\xae\x2e\x4b\x59\xf0\xab\x83\x5f\xb7\x21\xea\x82\x61\x18\x32\xdd\x68\xaf\x26\x7a\x33\x16\xeb\x0b\x37\x0a\x5f\x5e\x09\x2f\x82\xfc\xf3\x7f\xd0\x16\xe5\xdc\xb8\x89\xbc\x75\xc9\x66\x42\x9e\x93\xb6\x01\x60\x76\x76\x56\xad\xb5\x91\x01\xab\xe6\x89\xd3\xed\x5b\x75\x27\xb6\x12\xe2\xbc\x12\x00\x80\x8f\x7e\xf4\xa3\x6c\x70\x70\x10\x70\x09\xc1\x24\x81\x5c\x7e\xda\xd9\xd9\x7b\xdd\xfa\xfd\xb6\x79\xe7\x43\xc4\xd1\xad\x6f\x82\x17\xc2\xe7\x92\x8a\x3f\x42\x30\xc6\xd1\x6d\x96\xc5\xf1\xde\xeb\xd6\xb1\x55\x37\xad\xd1\x62\xaf\xf1\xcf\x53\x1b\xcd\xaf\x55\x72\x6c\x0c\x44\x95\x44\x22\x61\x7d\xfe\xf3\x9f\xb7\x2f\x5f\xbe\x8c\x97\x5f\x7e\x59\xed\x53\x94\x0d\x18\x35\x2e\x51\x63\x10\xe7\x8e\x54\xcb\x84\xe2\x3e\xf6\xb1\x8f\xc9\x3d\x47\x66\xc2\x41\x61\xfb\x64\xf6\xb7\x98\x20\x13\x08\xcf\x73\xc8\x86\x94\xfe\x16\x52\x9e\x05\x90\xb6\x59\xff\xa6\xe9\xcc\x6f\x4c\xb5\x59\xd7\xe4\x96\x7f\xa5\x3d\x33\x6d\xb3\xee\xb5\xf3\xe9\x63\xfe\x62\x96\xc6\x4b\x42\xcc\x18\x70\xcf\x68\x2b\xaa\x7a\x92\x53\x61\xfd\x5c\xfa\x7d\x63\x85\xea\xdb\x02\xa2\x0c\xc0\x1e\x1a\x1a\xe2\xd3\xd3\xd3\x91\xf8\xa2\x1b\x99\x4c\xf9\x65\x7b\xf6\xec\x61\x42\x08\xe6\xf9\x93\xcd\xc2\xb2\xd1\x6f\x70\x6f\xbb\x86\xbc\x6e\x90\x44\xe8\x2e\x56\xff\x36\x36\x59\xa3\x42\xc0\xee\x9f\xc0\x44\xbb\x75\x05\xe4\x1b\xd3\x36\x00\x7e\xfe\xfc\xf9\x38\x2f\x47\x54\x68\x86\xd8\xb2\xac\x5a\x3e\x04\x5b\xc4\x33\x9a\xc4\xa9\x75\x32\x00\x78\xf4\xd1\x47\xd9\xe0\xe0\xa0\x7b\x94\x16\xc8\x99\x55\x31\xb8\xf6\x7c\xe5\x8f\x87\xde\x5a\xfe\x5a\x6e\xd6\x7e\x8a\x71\x78\x2b\x9a\xca\x20\x00\x8a\x6e\xa9\x8c\x9d\x6f\x83\x11\x48\x80\x19\x36\x36\x74\x8e\xdb\x7f\xb1\xe9\xb5\xe5\xaf\xf5\x5e\xb7\x3e\x49\x8e\x28\x00\x48\x27\x93\x49\x73\xc7\x8e\x1d\xec\xd8\xb1\x63\x51\x63\xa3\x1a\xcb\x51\xe3\x11\x15\x17\x37\x8e\x6a\x19\x1f\x79\x72\xb9\x1c\x53\xdc\xf0\xe9\x7c\xd5\xe8\xeb\x5c\x36\x76\x0a\xd7\x99\xee\x83\x2b\xdf\x08\x02\xd2\xe5\x28\xaf\x19\x02\x84\x4a\x14\x6c\xc3\x6c\xfa\x98\xbc\xd1\xdb\xbb\xf2\x52\x8e\xb1\x99\xae\xb1\xde\x36\x2b\x31\x18\x6c\xa6\x56\xdb\x09\xbe\x45\xe8\xdb\x13\x90\x43\x2d\x40\x24\x40\x02\x6c\xf5\xa2\xb9\x9b\x84\x7b\xb1\x19\x11\xb1\xe1\xe1\x61\x09\x9f\x84\xcd\x7f\x66\x40\x1d\x57\xf0\xd5\x90\x81\x81\x01\x00\x80\x67\xf0\xa5\xbb\xca\xc9\xf5\x04\x18\x0a\xa8\x6e\x08\x75\xcc\x03\xde\xef\xa4\xbc\xe6\xdc\xfd\x57\x4b\x88\xf2\x74\x5b\xed\x3a\x3c\x62\x50\x17\xe3\x9a\x4c\x86\x8a\x8c\x3a\x72\xea\x22\x5d\x0d\x2a\x82\xeb\x9c\x51\xf7\xa4\xe8\x03\xa5\x7b\x64\xfc\xfe\x3d\xfa\xe8\xa3\x6c\xed\xda\xb5\x0c\x80\x49\x40\x3e\x3b\xef\x6c\xdb\xf8\xc6\xf2\xdf\x76\x8d\xd9\x7f\xc1\x38\xba\x15\x03\x32\xcc\x14\x44\xf0\xac\x5e\xd9\xa3\x5c\x68\x18\x9a\x60\xc3\x12\xdb\xd6\x5c\xb2\xfe\x76\xdd\xdb\x95\x3f\x37\x2a\x7c\x50\x08\x91\x06\x60\x6c\xd9\xb2\x85\x1d\x3d\x7a\xd4\xfd\xa0\x5f\x63\xb8\x74\x2e\x1f\xe7\x4d\x64\x0d\xf2\xfa\x63\xd2\xdb\xdb\xeb\xb7\x43\x44\x66\xd6\x4a\xf4\x1b\x0e\xcb\x13\x51\x98\x19\x0a\x95\xa1\x93\x0f\xb8\xaf\xee\x78\x04\x02\x22\x64\xad\x44\x7f\xd2\xa1\x9c\xc7\x58\x64\xdf\x0c\x22\x32\xb3\x35\xd6\x95\xe0\xc8\x4a\x8c\x13\x20\x04\x9b\x45\x95\x6f\x49\xc8\xb6\xfc\x1d\xd5\xe4\xbf\xa7\x6d\xd6\x45\xde\xe5\xc8\x11\xe3\xa4\x86\xba\x5b\x37\xd4\xc9\x57\x11\xd1\x20\x90\xd9\xb5\x94\x5c\x17\x98\x2c\x1e\x4f\x13\x80\xbc\xc2\x5c\x9a\xd7\xea\x80\xf8\xeb\x12\x2e\x28\x58\x32\x9d\xe9\xa5\x94\x33\x0d\xf7\xd4\x93\x4d\x44\x7c\x61\x61\x01\x8e\xe3\xc4\x4d\xaa\xae\xd7\x73\xed\x59\x77\x21\xc6\xd9\x03\x51\xe5\x64\x5b\x88\x79\xaf\x23\x04\x84\x89\xc1\x80\x10\xb9\xb6\x79\x67\xc7\xfa\xd3\xcb\x7f\x9b\x5e\xe4\x1f\x76\xed\x32\xa1\x48\x83\xe0\x99\xbc\xeb\xfe\xdd\x5d\xef\x01\xc6\x04\x9e\x3a\xf8\x71\xee\xed\x13\x5e\xbc\x10\xd9\xc2\x84\xfd\x3f\xac\x7f\xbb\xf2\x1f\x93\x96\xe8\x87\x70\x27\x77\xdb\xb6\x6d\xd8\xb5\x6b\x97\xda\xe7\x28\x38\xa2\x42\x23\xa2\xd0\xeb\x09\x8d\xa3\xf2\x6d\x6a\x57\x65\xe2\xc8\x52\xa8\x9c\xd7\x67\x05\x69\x05\x49\x27\x4b\xa0\xe7\x08\x04\x8e\x17\x59\x97\x22\x19\x7c\xdc\xab\x31\xd7\x2b\xe9\xdb\x27\x50\x3c\x4a\xf2\x02\x64\xff\x1c\xbf\x24\x0a\x99\xcf\xed\xc3\xb2\xc1\xcb\x4a\xbd\x0d\xd5\xf1\x28\xae\x20\x9f\xf9\xc0\xc0\x80\x6f\x28\x26\x38\xd2\x1d\x15\x63\x9d\x7a\x6d\x8c\xdf\xac\x2a\xb2\xbc\x3f\x97\x28\xa4\x80\x84\x3f\x18\x0b\x19\x7b\xdc\x4a\xf0\x22\xdc\x95\x69\x1b\x00\x94\x8b\xc7\xf4\xbe\xa9\xa1\x91\x0a\xd5\x28\xbd\x19\x82\xc4\x11\x82\x5e\x2f\x07\x80\x83\x07\x0f\x06\xc4\x00\xe4\xd2\x8b\x7c\xdb\xba\x33\x95\xbf\x4e\x95\xc5\x01\x5f\x12\x7a\xbc\xcc\x1f\x0f\xb9\x4e\xa3\xea\xbf\xfe\x18\x8a\xe0\x34\x21\x69\x33\x0e\xf8\x56\x2a\x01\x46\x6e\xc6\x79\x6a\xdd\xd9\xca\x17\x12\x35\xd1\x0b\xef\xfb\x08\x07\x0e\x1c\x88\x83\x51\x9f\x70\x9d\x23\x46\x21\x44\x9c\xfa\x14\xab\x5a\x55\x0d\x61\x71\x12\xb6\x7c\x27\x05\x38\xc5\xb9\x18\x3c\x08\x85\x69\x7a\x61\xc9\x74\x66\x6b\x09\xa1\xf7\x1f\x00\x50\x4a\x39\xc5\xb2\xe9\xcc\x02\x21\x02\x42\xdd\xbb\x76\xa9\x45\x10\x04\x66\xdb\x6a\xe3\x9c\x20\xef\x6f\xd2\x43\x08\x2e\xfd\x80\x90\x9f\xd8\xd6\xd6\xa6\x7e\x22\xd5\x48\x39\x2c\x97\x76\x6f\x5c\xf6\x55\x23\x75\x13\x5f\xc8\x72\x50\xc4\x61\x68\x6e\x21\x30\x97\xb1\xc7\xb9\x77\xc9\x14\x00\xf5\x3a\x4a\xbd\x1f\x4d\xa9\x19\xd1\x13\x15\x27\xfa\xeb\xc4\x3f\xe2\x11\x24\x2a\x8d\xf5\xf4\xf4\xa8\x1c\x39\x9b\xa8\x89\xbe\xb5\xe7\x2a\x5f\x30\x97\xc5\x7e\xdf\xa5\x10\x32\x1e\x83\x0f\xc0\xf8\xdf\xc7\xf0\xdd\x2c\xf0\x75\x61\xf2\x2d\x43\x19\x02\xab\x34\xb4\x1d\x06\x60\xed\x77\x9c\xa7\x56\x5f\xad\x8e\x8e\x6f\x4b\xfd\x3d\x88\x78\x22\x91\x28\x7f\xe6\x33\x9f\x91\x5b\x13\x9a\xc1\x10\x0a\x07\x0f\x1e\x94\xbb\x98\x65\x7e\x00\xee\x59\x05\xed\x78\x66\xac\x9d\xb1\x90\xb1\x67\x97\x4c\x3e\x5d\xa8\xb0\x75\xa1\x9e\x2a\x90\x84\x62\x34\xa7\x90\x80\xc0\x4c\x5b\x6d\x0c\xe4\x1b\xd3\x1c\x1e\x5e\x10\x91\x5d\x49\xf2\xd2\xed\xbc\x75\xa9\xa3\x92\xdc\x10\xae\x39\xda\x57\xa7\x3b\x9b\x38\xc1\xbe\xd5\x51\xbd\x02\x17\xdf\x64\x1b\x71\x81\xa9\xb7\x27\x87\x44\x67\x7b\x7b\xbb\x9c\x44\x46\x44\x86\x69\xb3\x9c\x69\x53\x3e\xb0\x1e\x14\xc3\xd0\xa3\x79\xb9\xeb\x50\x6e\xf2\x93\x9f\x94\x56\xbb\x3f\x97\xad\x8d\x81\x02\xfb\xa1\x5a\xad\x42\xe9\x43\x9c\x1d\xa1\xc7\x45\x79\x49\xa0\xc5\x45\x49\x3e\x3d\x7f\x23\xdb\xa2\xae\xde\xfb\xef\xbf\x5f\xda\x3a\x69\x08\x91\x5f\x7d\xb5\xfa\x64\x76\x81\x7f\x38\xf8\x64\xb6\x6a\x3c\x7b\xeb\xb3\x82\x5c\x55\xc9\xb7\xb9\x02\x69\x21\x6f\x1b\x71\xd5\x26\x95\xc3\x29\x07\xaa\x14\xfb\xc2\xab\xdd\x58\x75\xb3\xf6\x47\x4b\x5d\x89\xb3\x0b\xab\x93\x2f\x02\xb0\x3b\x3b\x3b\xad\x7d\xfb\xf6\xc1\xbb\x81\x22\x8a\x41\xf8\xe1\xd0\xa1\x43\x58\xbb\x76\x2d\x0a\x85\x82\x94\xfe\xa1\xef\x43\x0b\x21\xf8\xae\x5d\xbb\xf8\xce\x9d\x3b\xb1\xb8\xb8\x88\xf3\xe7\xcf\xe3\xdc\xb9\x73\x12\x17\x74\xb5\xd3\xae\x18\xbc\x78\xa3\x6b\xf9\x74\xc7\x78\xfb\x3a\xd9\x73\xc9\x2a\x43\x7a\xbf\x0f\xb9\x87\x14\xd2\xc8\x26\xd8\xa3\x85\xca\x3b\xf0\x10\x56\xdd\xb9\x0a\xc0\x12\x84\xd2\xb9\x35\x4b\x2f\x6c\x9e\xce\x1e\x4b\x70\x32\x83\x6f\x0e\x06\x38\x28\xeb\xf5\x3f\xe3\x2c\x82\xdb\x5d\x66\xdb\x6a\x23\x63\x85\xea\xbb\x12\xe7\x00\x60\x71\x71\x51\x9f\xeb\xba\xc9\xaf\xd3\x17\xfb\xfb\xfb\xa1\x5a\xfc\xd9\x5a\xa2\x60\x70\xca\xba\x93\x43\x0a\x43\x53\x0c\x26\xff\x0e\xff\xf0\x8c\xb8\x0c\xd0\xbd\x77\xa9\x98\x72\x26\x85\x10\x3a\xb5\xc6\xe9\xf7\x8d\x74\x7d\x44\x94\x89\xb2\x3b\x1a\xd5\x1b\x97\x37\xb2\xcc\xda\xb5\x6b\x01\x6f\x9b\x42\xdb\x9c\xb3\xa3\xeb\x66\xed\xf7\x00\xc1\x7c\xbd\xd5\xd7\xfb\x85\x5c\x91\x0f\x8f\x85\x2e\xb1\x15\x9d\x42\xda\x63\xf2\xdb\x7a\x52\xe5\xf4\xeb\x93\x59\x09\x60\x0e\xba\xfa\x2e\x59\x7f\x9c\xa8\x09\xf9\x69\x29\xb6\x7b\xf7\x6e\xd9\x67\xdd\xc9\xc0\x01\x20\x9f\xcf\xe3\x89\x27\x9e\xc0\xae\x5d\xbb\x58\x67\x67\xa7\x41\x44\x69\x00\x59\xc3\xa1\x42\xbb\x65\xf4\xb6\x57\x12\xfd\x6d\x55\xd6\x9d\xe4\xac\x00\x20\x07\x20\x9d\xcf\xe7\x8d\xc3\x87\x0f\xb3\xdf\xfe\xed\xdf\x46\x57\x57\x17\x00\x20\x97\xcb\xa9\xf3\x60\x81\x50\x3a\xbb\x66\xe9\x05\xa9\xd6\x28\x1c\x10\x1e\x08\x21\xd5\x89\x20\x19\x84\x1b\xa6\x73\xb5\x91\xd1\xce\xea\x79\x78\xdf\x15\x97\xbb\x62\xd5\x8b\xcd\xc6\x3b\xaa\x17\x2e\xf4\x2e\xbd\x1c\xe8\xa0\xc1\xe0\x05\xaa\x39\x05\xea\xba\x67\xbf\xd8\x09\x51\x79\x7d\xdd\xe2\x8f\x2a\x06\x9f\x82\x67\xb3\xc2\xb5\x83\x64\xf7\xea\x18\x61\x9c\xd5\xcd\x01\x7f\x9f\x39\x03\x60\xe4\xaa\xac\xab\xce\xd7\xec\x19\x0e\xd2\xa7\xae\x9e\x7b\x08\xfd\x7a\xf1\x0e\x09\xab\x94\x72\x66\xa1\xdc\xc9\x19\x71\x2c\x30\xaa\x3f\x51\xe9\x8d\xca\xc4\xe9\xbc\x2b\x8d\x97\x69\x78\xec\xb1\xc7\x7c\xdf\x3b\xb8\xc8\x77\xdf\xa8\x7d\x26\x61\xa3\x9f\x7c\x1b\x81\x14\x60\x7d\x73\xd2\xad\x41\x26\x7b\xec\x5e\x55\xa5\x48\x0e\xa6\x57\x4f\x20\x65\x54\xd1\xa0\x5c\x02\xe7\x56\x85\x74\x89\x1f\x2c\xdc\xae\x1d\x9d\x59\x9b\xfc\x3e\x88\xac\x54\x2a\xc5\x0f\x1e\x3c\x88\xd7\x5e\x7b\x4d\x95\x6e\x0c\x00\xdf\xba\x75\x2b\x1e\x78\xe0\x01\xf8\x3b\x46\x05\xd2\xf9\x6a\xa2\x6b\xdb\x64\xdb\x91\xf5\x73\xe9\x87\x3a\x96\x13\x5b\x98\xa0\xac\xcd\x44\xa9\x94\x72\xae\xdd\x2c\x54\x5e\x78\xa7\x6f\xe9\xc5\x85\xb4\x33\x0d\x42\x25\x97\xcb\x59\x8f\x3d\xf6\x18\xff\xca\x57\xbe\x82\x72\xb9\x8c\xa9\xa9\x29\xf4\xf6\xf6\x72\xb8\x9e\xc2\xe2\x4c\x5b\xed\xca\xa9\xc1\xc5\x9f\xbc\xef\x7a\xc7\x53\x09\xb9\x0b\x1a\x8a\x7a\x58\x17\x7c\x84\xb5\x7e\xb5\xbe\xf8\xfd\x4a\xb0\xa7\x4d\xbf\xab\xd5\x12\x42\x14\x41\x34\xf5\xca\xd0\xc2\x77\xf2\x15\xa3\x6f\xed\x7c\x6a\x47\x1d\x8e\x29\xae\x3a\x89\x9a\x9c\x04\x7f\x73\x70\xf1\x99\x2b\xdd\xe5\x93\x20\xf7\xea\x1a\x00\x36\xe7\x9c\x2b\x38\x57\x37\xff\x72\x2f\x13\x21\x40\x24\x02\x20\xd6\xac\x59\x43\x03\x03\x03\x04\x77\xdf\x4d\x47\xff\x42\xea\xc0\xd0\x4c\xe6\x28\x85\x65\xbb\x37\xc1\x61\xc4\x77\xe7\x33\xfc\x6d\x69\x00\xa8\x1a\x7c\xe1\xf4\x40\xe9\x7b\x56\x52\xdc\x22\xa2\x05\x00\xd6\xd8\xd8\x98\xb8\x75\xeb\x96\xef\x38\x50\xb2\x87\x4c\x77\xaf\x6f\x42\xed\xa3\x12\x17\x02\x4a\xab\x4b\xcd\x13\x57\xa7\xde\xb6\x1a\x04\x00\x71\xec\xd8\x31\xf2\xb6\x63\xb4\x67\x8a\x7c\x7b\xdf\xe5\xea\x5f\x24\x38\xda\x5c\xa4\x55\x01\x07\x14\x6c\x0f\x7e\x35\x71\x11\xa8\x28\xde\xb3\x27\x79\xd5\x7d\x3a\xae\x2d\x12\x96\xc0\x72\x5c\x09\x60\xc9\xaa\xc8\xcf\xad\x49\xbe\x28\x12\xb4\x28\x84\xa8\x65\xb3\x59\x7e\xfe\xfc\x79\x15\x1e\x31\x38\x38\xc8\x1e\x7e\xf8\x61\x24\x93\x49\x03\x40\x8a\x71\x74\xec\xbe\x9d\xfb\xd0\x87\x2f\x76\xfd\xcd\xc6\x99\xcc\x1f\xe5\xab\xc6\xde\xa4\x4d\x83\x49\xce\x56\xa7\x1c\xb6\x36\x5f\x4d\xec\x1e\x58\x48\x3d\xbe\x65\xaa\xed\x28\x11\x8a\x53\xed\xd6\xb8\x20\xf0\x64\x32\xc9\xf7\xef\xdf\x2f\x6c\xdb\xc6\xe2\xe2\x22\xd6\xac\x59\xc3\xc9\x05\x82\x04\x84\x31\xd9\x6e\xcd\x1a\x9c\xda\x7a\x4b\xc9\x75\x4c\xb8\x7b\x99\x24\xec\xc1\xb9\x99\x00\x69\xab\x09\x5e\x7e\x65\xe3\xc2\xb7\x2f\xac\x2e\xff\x1c\x84\x31\x00\xb3\x42\x88\x65\x00\xf6\xdf\xff\xfd\xdf\xf3\x3d\x7b\xf6\x80\x31\x26\x3c\x98\x85\x6d\x40\x8c\x74\x55\xc6\x32\x35\xd6\xd1\xb9\x6c\xf4\x25\x04\x98\xaf\x9d\xa8\x67\x71\x00\x94\x93\x4e\xf1\xd5\xf5\xc5\x1f\x9d\x5a\xbb\xf8\x5d\xce\x30\x02\x60\x12\xc0\x02\x11\x59\x97\x2e\x5d\x12\x57\xae\x5c\x91\x38\x22\xff\x7c\xdc\x4f\x28\x11\x50\x13\x77\xed\xda\x85\x42\xa1\x90\x00\x90\x82\x40\x61\xdd\x7c\xfa\xc1\x75\xf3\xe9\xc3\x21\x43\x4f\x55\x13\x94\xd5\x41\x39\x10\xd2\x68\x22\x0f\x61\xca\x26\x9f\x3e\x3d\xb0\xf8\x03\x9b\x89\x09\x22\x5a\x14\x42\xd8\x93\x93\x93\x42\xd9\xa3\xa3\x22\x6a\x14\x81\x48\xa4\x57\x01\xd1\xd3\x75\x04\x57\x89\x4d\x27\x20\x15\x66\xbd\x6d\xbf\xcc\x83\x0f\x3e\x48\x7d\x7d\x7d\xd2\x76\xe8\x5c\x75\xb3\xf6\xa9\xfc\xb4\xf3\x70\x48\x95\x95\xc2\x80\x02\x63\x51\xbe\xb8\x38\x2e\x7c\x84\xa7\x60\xe0\xe4\x50\x85\x04\x82\xe4\x2e\xd2\x1e\x93\x2e\x4b\x77\xce\xc9\xcf\x9b\xa8\x89\x42\xa9\x2b\x71\xd2\xca\xb2\xdb\x00\xaa\xa9\x54\xca\x9e\x9f\x9f\xa7\xb9\xb9\x39\x00\xa0\x4c\x26\x43\x0f\x3f\xfc\x30\xd2\xe9\x34\x03\x90\x61\x1c\x9d\xef\xbf\x56\xf8\xf7\x07\x6f\xb6\xff\x6f\xe9\x1a\xdb\xe8\x76\x84\xfc\x86\xfd\xba\x01\x32\x39\xeb\x1b\x9c\x4f\xfd\x46\x9b\x95\x70\x46\x0b\x95\x0b\x82\xa1\xe6\x6d\x90\x13\x3f\xf9\xc9\x4f\xf8\xce\x9d\x3b\xc9\xdb\xc5\x00\x22\xe2\x02\x42\xdc\x2a\x54\xa7\x16\xd3\xce\x52\xe7\x72\xb2\x37\x5d\x63\x59\x57\x3b\x52\x76\x37\x11\xc0\x09\x7c\xb2\xdd\xba\xf1\xc2\xf0\xfc\xb7\x2e\xf5\x96\x9f\x17\x10\x37\x00\x4c\x7a\xc7\x00\xac\x0b\x17\x2e\x88\xd1\xd1\x51\xe2\x9c\x63\x60\x60\x80\x93\x7b\x6b\xb8\x00\xe0\xd8\x4c\xd4\x6e\xac\xaa\x8c\xdc\xc9\xd5\xa6\x99\xa0\x84\x69\x53\x86\x88\x48\x90\x10\xb5\x04\xac\x62\xc6\x9e\xbd\xd8\x53\x7e\xeb\xc5\xe1\xf9\xef\x5c\xeb\x5e\xfe\xa5\x60\x18\x11\x42\x8c\x93\xfb\x09\xb6\x65\xc7\x71\x9c\xe7\x9f\x7f\x1e\x95\x4a\x05\x0a\x1e\xa9\x1a\x05\x45\xdd\xdc\xc7\x00\xf0\x55\xab\x56\x31\x00\xee\x96\x65\x10\x4b\xd9\x2c\x2f\xb1\x27\xd0\x04\xbc\x41\xf4\x26\xd8\xff\xde\x30\x05\x06\xa4\xba\xa9\x00\x39\x40\xc6\xbf\xab\x96\xcd\x9e\xcf\x18\x00\x00\x20\x00\x49\x44\x41\x54\xe0\x15\xef\x70\x88\xed\x0d\xa4\x14\xf1\x6a\xfb\x40\x7d\x9f\xa0\xc4\xeb\x4e\x00\xf5\xb9\x4e\x5d\x88\x48\xd7\xeb\xd2\x0d\xe8\x3a\x17\xa6\xf7\x0d\x33\xd7\x57\xce\x91\xcf\x4f\xdb\x47\x48\x80\x85\x06\x43\x35\xf3\xa4\xab\x54\x12\x8a\x8a\xff\x7e\xf6\x80\xdb\x4b\xd5\x33\x60\x36\x11\xaa\x46\x94\x3a\xca\x91\x6f\x9f\x71\x1e\x58\x5c\x95\x78\x93\x88\x8a\x42\x08\x76\xed\xda\x35\xdf\x05\x7a\xe0\xc0\x01\x26\xbf\x0d\x0d\x81\xdc\xce\xdb\xb9\x0f\xef\x19\xcf\x7d\x21\x21\x28\x17\x3a\xd6\xeb\xf5\xc7\xfd\x09\x62\x99\xa0\xfc\x7d\x13\x6d\xff\xf3\x62\xca\x99\x79\x7d\x5d\xf1\x9b\x82\xc0\x4d\xd3\xac\x7c\xfc\xe3\x1f\xc7\x97\xbf\xfc\x65\x7e\xe2\xc4\x89\xe0\xa2\x31\x80\x71\x06\xf6\xee\xea\x72\xe5\x46\x57\xe5\xe2\xd0\x4c\x66\xcf\xda\xf9\xd4\x70\x67\x39\xd9\x9d\x74\xc8\xac\x1a\xbc\x32\xd5\x6e\x8d\xdf\xe8\xac\x5c\x1a\x2b\x54\xcf\x5b\x09\x31\x0a\xc2\x18\x81\x26\xe0\x5e\x6d\x69\xd5\x6a\x35\x7e\xe6\xcc\x19\x00\xe0\x67\xce\x9c\xc1\xd0\xd0\x10\xeb\xed\xed\xb5\xe1\xaa\x53\x00\x81\x3b\x84\xf2\xd5\x55\xcb\xf3\xd7\xbb\x2a\x6f\x65\x6b\x89\xd5\x59\x8b\x15\x0c\x4e\x86\x65\x88\x72\xc9\xb4\x67\xaa\x86\x98\x86\x7b\x83\xcb\x14\xdc\x4b\xef\xe4\x4d\x7f\xf6\xb9\x73\xe7\x30\x37\x37\x17\xa5\x86\xfb\x71\xea\x11\xd2\x48\x04\x21\x22\x06\x01\x23\x53\x63\x79\x75\x56\x54\x11\xa5\x72\x00\x95\xa7\xab\x2e\x48\x00\xb0\x12\xa2\xe4\x50\x60\x38\x21\x1e\xf1\xd5\xb8\x46\xae\x52\x1d\x28\x3d\xaf\x5e\x97\x1a\xaf\xc2\x1c\x1a\x14\xbd\xed\x54\x2a\xe5\x2f\x44\x19\x96\xe8\x4e\x95\xf8\x36\x3f\x67\x48\x0d\xf2\x9f\xea\xa4\x68\xa0\x36\x41\xc9\x1f\xc4\x91\x22\xfe\x55\xfd\x2b\xac\x76\xfa\xc6\x08\xa4\x9c\x69\x9b\x73\xf6\x33\x81\x9c\x20\x98\x44\x54\xf9\xcd\xdf\xfc\x4d\x26\x6f\x3b\xdc\xb2\x65\x8b\x84\x25\x5b\x58\x36\x36\x3c\x38\x9a\xff\x73\xf7\x50\x0d\xea\xfa\xa2\xb6\xe0\x7a\xc0\xa4\xef\x90\xd2\xfb\xc6\x72\x7f\x7a\xa3\xb3\x72\x6e\xa2\xbd\xfa\x36\x11\xd9\x7d\x7d\x7d\x16\x00\xbc\xf5\xd6\x5b\xd8\xb7\x6f\x9f\xa5\x7a\x86\x04\x44\xa9\x6c\xf2\xd9\xf3\x7d\x4b\x23\xe7\xfb\x96\xf2\x4c\x20\x4d\x80\x21\x00\xdb\x73\xb7\xcf\x7b\x3a\xfd\xb4\xf7\x57\x04\x50\x26\x22\xfb\xe4\xc9\x93\xa1\xe3\xa4\xdf\xfd\xee\x77\xf9\x67\x3f\xfb\x59\xe4\x72\x39\x0b\xde\x2d\xf0\xe4\x5e\x83\x39\x2f\x08\xf9\xa5\x94\x93\x5b\x4a\x39\x69\x79\x87\x13\x3c\x9b\x06\xee\x19\xfd\x22\x80\x92\xb7\x5f\xce\x7a\xf3\xcd\x37\x71\xea\xd4\x29\x1d\xc7\xeb\x70\x29\xee\x6e\x57\x1f\x51\x84\x10\x60\x20\x66\x70\x32\x09\xc1\x9c\x91\x3e\xaa\xf2\x51\xaa\xcd\x08\x1c\x0e\xd2\xe6\xb4\x12\xbc\x2c\x20\x6c\x02\x71\xc5\x78\x8a\x0a\x71\x1c\x3b\x0a\x69\xe3\x42\x14\x27\x68\x44\x50\xb1\x75\x78\xdf\x58\x66\x00\xcc\xd4\x12\xef\x4f\x38\xe8\xf2\xa5\x83\x0f\xb7\x62\x44\x28\xa2\x40\xdd\xc8\xe6\x1b\xc7\x3e\xf2\x03\x21\x31\xa2\xd2\x04\x00\x80\x82\xf5\x0b\x45\x55\x52\x33\x9a\xcb\x7c\x03\xab\x89\xbc\x6d\xba\xfb\x74\xe4\x85\x10\xfb\xf7\xef\x67\xde\xb6\x0e\x13\x40\xee\xbe\x89\xb6\xc7\xb2\x16\x1b\x56\x57\x8b\x65\x77\xa3\x08\xc3\xcf\x23\x80\xb4\xcd\xd6\xed\x9c\x68\xfb\xc4\x64\xbb\x75\x0d\xde\x96\x9b\x47\x1f\x7d\x14\x3f\xfe\xf1\x8f\x39\x63\x8c\xed\xde\xbd\xdb\xbf\x9a\xd2\xdb\xa0\x57\x04\x21\x07\x20\xcb\xc9\xf5\x82\x79\xc8\xac\x5e\x4d\x59\xf2\x3e\x9e\x59\x11\x42\xd8\x67\xcf\x9e\xc5\xc5\x8b\x17\xeb\x98\xe2\x57\xbf\xfa\x55\xfe\xe4\x93\x4f\xa2\xa3\xa3\xc3\x52\x3d\x4f\x00\xd2\x42\x88\x34\x11\xf9\x37\xfd\x79\xb7\xfb\x55\x00\x54\x88\xc8\x12\x42\x58\x42\x08\xfb\xcc\x99\x33\x92\x18\xe2\xe6\xdb\xc7\x8b\xa8\xed\xdf\x3a\x67\x65\x00\x18\x13\xa4\xe4\x0d\xb0\x3f\xb8\x6f\x43\x8e\x21\xf9\x7b\x4b\x7c\xc3\x11\xee\x6a\xac\xc3\x84\xa5\x48\x87\xa8\xd0\x4c\x6d\x6a\x65\x25\x36\x2a\x7f\x9c\x84\x68\x54\x56\x2f\xe7\x9e\x15\xae\xf0\x7e\x08\x18\xc1\xa5\xcd\x81\xd7\x28\x40\xd8\xc0\x0d\x18\xe0\xbb\xf0\xf5\xf4\x20\xa8\x5e\x7b\x59\x1f\x42\x54\xa1\x7a\xa1\xc2\x3b\x64\xdd\xf4\x84\x2d\x0a\x86\x25\x0a\x4e\x8a\xa9\xfb\x80\xb0\x63\xc7\x0e\xe9\x21\x34\x0d\x87\x0a\xeb\xe7\xd2\xc7\x08\xc4\x74\x55\xd6\x17\xec\x8a\x11\xe3\xc2\xe4\x7b\xf5\x41\x20\xac\x9d\x4b\x1d\x4b\x39\xf4\xa5\xaa\xe1\x7e\x1f\xbc\xbd\xbd\x9d\x03\xf0\x0f\xf0\xef\xd9\xb3\x47\x5e\x49\x69\x79\xbf\xa6\xf7\x67\xc0\x5d\xcb\x92\xc8\x2c\xaf\xa7\xb4\x00\xd8\xd5\x6a\x95\x9f\x3b\x77\x4e\xe7\xde\xa1\xf0\xcf\xff\xfc\xcf\x38\x74\xe8\x10\xdf\xbe\x7d\xbb\x65\x18\x86\x2c\x5f\xd6\xb6\x7a\x48\xbc\xf2\x17\xf8\xaa\xd5\x2a\xff\xf2\x97\xbf\x1c\x87\x6b\x91\x0c\x53\xbf\xdb\x55\x57\x63\x64\x60\x4c\x48\xe2\x11\xa1\x5b\xbe\x25\x01\x48\x9d\x58\x8a\x7c\x49\x04\x90\x79\x5c\x83\xca\x5f\x7b\x90\x88\xd4\xd1\xd1\xc1\x16\x16\x16\x64\x7b\x3a\x32\xc6\x01\xd2\x6c\x21\x4f\x57\x03\xd5\x38\xbd\x6c\x23\x09\x84\xe3\xc7\x8f\xab\xf9\xcd\x84\x85\x55\xf0\x20\x0c\xc1\xec\xdb\x03\xe4\x19\xd0\x92\x48\x28\xf8\xf5\xc6\x2f\x6c\x6f\x90\xa4\x1d\x05\x49\xbd\xf1\xf5\x9d\x33\xaa\x71\x1e\x1e\x0c\xe2\x48\x1b\x36\xf2\x95\xe0\x4e\x54\xf6\x7b\xbf\xf7\x7b\xea\xb6\xfd\x74\x9b\xc5\x7a\x73\xd5\xc4\x86\x80\x20\x83\x8d\x99\xbe\x2c\x53\x54\x3c\xe1\x35\x2e\xa4\x61\x0f\xa0\xcd\x4a\xac\xcb\x55\x8c\xde\x6a\xae\x36\x0e\xc0\xe8\xe8\xe8\x90\xb6\x0a\x7b\xf5\xd5\x57\xf9\xc8\xc8\x08\x7b\xe8\xa1\x87\x78\x2e\x97\xb3\xa4\x34\x90\x27\x00\xb5\x39\xe2\x00\xb8\xe3\x38\xfc\xd6\xad\x5b\xf8\xc9\x4f\x7e\x12\xc7\xbc\xfc\x77\x21\x04\x3f\x79\xf2\x24\x3b\x7b\xf6\x2c\xf6\xed\xdb\xc7\x07\x07\x07\x79\x7b\x7b\xbb\x8d\x08\x1c\x11\x42\xf0\x62\xb1\x88\x91\x91\x11\x68\x57\xe5\xeb\x75\x47\xaa\x4f\xfa\x25\x03\x21\xa4\x50\x8d\x3e\x92\x12\x42\xee\x1f\xf1\x1d\x99\x8a\x7f\x5c\x4a\x04\xa9\x13\xfb\x15\x79\xe6\xbc\xbb\xe7\xc5\x57\x97\x88\x08\x0b\x0b\x0b\xb1\xfa\x9c\x0e\xac\xd6\x57\x3d\xae\x91\x1d\x12\x57\x4f\x54\x5c\x14\x61\xc8\xd5\x5c\xc6\x1c\x91\x0e\x2e\x6f\x16\x21\x75\xc8\x07\x16\xd2\x26\x08\x50\x8f\xa4\xee\xef\x4b\x16\x04\x1e\x3a\x85\xfb\xeb\xaa\x68\x14\x11\x84\xd4\x1c\x01\x46\x8e\xc8\x2a\xdc\x12\xff\xf0\x0f\xff\xc0\x4f\x9c\x38\x21\xdf\x0d\xc3\x61\xf9\x04\xa7\xac\x4f\x88\x42\xeb\xae\x32\x5f\x01\x7d\x87\x9d\x02\x4c\x50\x3a\x65\x93\xff\xb1\x74\x0a\x2e\x24\x06\x00\x4c\x4e\x4e\xf2\xaf\x7e\xf5\xab\x18\x18\x18\x60\x9b\x36\x6d\xe2\x9b\x37\x6f\xe6\x89\x44\xa2\xce\xfd\xce\x39\xc7\xa5\x4b\x97\xa0\xdc\xcc\x18\x35\x07\xf2\x39\xd4\x46\xa9\x54\xe2\x2f\xbd\xf4\x12\x03\xc0\x57\xaf\x5e\xcd\x06\x06\x06\xf8\x9b\x6f\xbe\xc9\x8f\x1e\x3d\xca\x64\x7d\xab\x57\xaf\x66\x93\x93\x93\x71\x04\xd0\xc8\xc9\x02\x20\xbc\x30\xa7\x06\x9d\xf2\x98\x1c\x3c\x7f\x1c\xe5\xfc\x12\x85\x17\x60\x22\x06\x5b\xf7\x68\x44\xd8\x0e\x7a\x07\xa3\x10\xbb\x59\x68\x44\x18\x2b\x09\x91\x52\xca\xeb\x33\x13\x0c\xdc\xc5\xf5\x00\x61\x42\x6a\x8f\xbf\xf6\x20\x35\x25\xe5\x5d\x4a\x09\x05\xd1\x82\xb5\x87\x90\x7e\xe5\x96\x51\x9d\xce\x8a\x1a\xa6\x96\x07\x01\x82\xd5\x79\xca\xa0\x70\x67\x26\x48\x18\x82\xc0\xfd\x79\xd0\x6d\x95\x90\x1d\x21\x99\x5b\x50\x97\x2b\xa4\x04\xb7\xdd\x0d\x78\xb1\xfb\xdf\x00\xe0\xd6\xad\x5b\xfc\xd6\xad\x5b\x78\xf1\xc5\x17\x01\x00\x5b\xb7\x6e\x65\x8a\x6d\xd0\xcc\x13\x08\x2d\x3e\x4e\x55\x66\x93\x93\x93\x7c\x72\x72\x12\x00\x42\xc4\xa5\x10\x43\x54\x1f\x9b\x32\x48\x1d\xd1\x42\x9d\x53\x10\x97\x73\x12\xb6\x6f\x34\x87\xed\x40\x08\x04\x6e\x56\xff\x2c\x4c\xa0\x13\xf8\x63\xcd\x44\x70\xb3\xb3\xfa\x1b\xd1\xe9\x56\x43\x23\x3b\x22\xca\xa5\x1a\xd7\x4e\x54\x3d\xfe\xe0\x09\x21\xfc\xbe\x3a\x49\xaa\xa8\xea\xa0\xeb\x09\x82\x3b\x1e\x42\x40\x1e\x6a\x90\x76\x94\x97\x10\x5a\x9d\x0e\x90\x5a\xf8\x12\xc2\x77\xef\xc8\x05\x2c\x69\x74\xfb\x2e\x59\xf8\x71\x42\x3d\x70\x43\xb0\xb9\x41\xfe\x37\x9b\x65\x50\x99\xce\x72\x92\x97\x97\x0d\xa7\x18\xb6\x5e\x82\x7a\x7c\x48\xfc\x2d\xd4\xb2\x3d\xf8\x34\x58\x35\xc4\x7c\x29\xe5\x94\xd5\x31\x89\x18\xc7\x3a\xfb\xf3\xe2\xc5\x8b\xea\xbb\x3e\x1f\x51\xf3\xd3\x4c\x5b\x88\xc3\x0f\x5d\x15\x8e\x66\xea\xf1\x36\x24\x80\xc0\xed\x1a\x1b\xe4\x07\x50\x38\xb9\xdf\x03\x0e\x1b\x76\xde\xe0\xf9\x8b\x70\xca\xe6\x5f\x3f\x3d\x58\xa0\x93\x86\x79\x8c\x77\x49\xe7\x0a\x7a\x9c\xaf\x12\xc4\x00\xa3\xdb\x0c\x51\x06\x76\x2b\xc6\x7c\x9d\x01\xae\x32\x86\x5a\x9a\xcd\x00\x14\xb4\xe3\x8d\x87\x94\x98\xea\x62\x9b\x1b\x94\x77\x85\x49\x04\x46\x01\x42\x8a\xbc\x7b\x3f\xae\xda\xb5\xb0\x48\x90\xf3\x21\x09\x8e\x1b\x54\xae\x99\x54\x42\xfd\xd8\xf9\x46\xe6\x72\x92\x97\x6e\x77\x58\x17\x0a\x15\x63\x83\x47\x87\x81\x44\x13\x41\xbd\xc1\xa4\x51\xc0\xf8\xbc\x3c\xb7\xdb\xab\x97\xca\x49\x5e\xf2\xd4\x5d\x0e\x80\x77\x76\x76\x32\xcf\xaf\x5f\x37\xb6\x5d\x5d\x5d\xc8\xe7\xdd\x23\xe4\xde\x56\x09\xde\xdf\xdf\xcf\xc6\xc7\xc7\xf5\x71\x57\xc7\xbc\x11\x2e\x86\x60\xdb\xb7\x6f\x9f\x7a\x58\xc9\xaf\xef\xd6\xad\x5b\xf0\x2e\x4f\x8e\xc3\x91\x28\x02\xf6\x61\x30\x50\x8f\x38\xa1\xcc\x92\x00\x38\x09\x3b\x0a\x91\xeb\x74\x4f\x28\xf3\xab\x24\x10\x08\x86\x43\xd2\x13\x12\x05\x78\x14\x42\x46\xd9\x0a\x71\xe5\xa2\xde\x1b\x95\x6f\x25\x9f\x3f\x36\xde\x36\x75\xbb\x9a\xa5\x29\x9e\x40\x25\xe1\x20\xab\x22\x76\x24\x89\xfb\x3a\xa6\x54\x9b\x14\x3d\x47\x0f\x51\x6b\x3a\x50\xd5\x4d\x52\xe9\xc2\x1f\xf7\x5a\x8a\xa6\x9c\xa4\x7f\x16\x59\x0f\x1c\x80\x25\x20\xca\xe7\xfb\x96\x7e\x39\x3c\x9d\x39\x6a\x3a\x2c\x4b\x9e\x24\xf7\x17\x4d\xa5\x4b\x58\x04\x76\x63\x60\x4b\x08\xd8\x09\x51\x79\xa7\xaf\xfc\x32\x08\x65\x08\xf7\x0e\x2d\x05\x17\x42\xf3\x75\xf0\xe0\x41\xb6\x7d\xfb\x76\x18\x86\x81\x44\x22\x01\x04\xf6\x17\x38\xe7\xbc\x56\xab\x61\x7c\x7c\x1c\x3f\xff\xf9\xcf\x61\x18\x06\xbc\xcb\xe9\x18\x1a\x33\x25\x6e\x18\x06\x1b\x1a\x1a\xc2\xde\xbd\x7b\x51\x28\x14\x02\x75\x30\x6c\xa3\xf0\xf5\xeb\xd7\xe3\xe0\xc1\x83\xb8\x76\xed\x1a\x4e\x9d\x3a\x85\xc5\xc5\x45\x1d\x97\x74\x9b\x22\xd4\x76\xd4\x47\x17\xeb\xf5\x51\x80\xdb\x09\x61\x05\x1e\x3f\xa1\xcc\x94\xe7\x1f\x21\xc5\x08\x57\x83\xf2\x6e\x3a\x94\x83\xbf\xc2\x1b\xe2\xbc\x51\x56\xbf\x0a\x04\x22\xe2\xe2\xde\x1b\xc5\xc5\xb5\x83\x88\x77\x00\xe0\xf3\xf3\xf3\xb2\xaf\x1c\x80\x5d\x4b\xb3\xd9\x5a\x86\x4d\x24\x16\xf9\x46\x1d\x49\x43\xcf\x00\x94\x7d\x1c\x52\x11\x57\x8d\xe1\xc0\xf6\x50\xa5\x86\x46\x2c\xfa\x66\x3f\x52\x2a\x10\x20\x2c\xe7\x13\xd7\x04\x0b\x1d\xce\xe7\x00\x50\x2a\x95\x90\xcb\xe5\x38\xdc\x83\x58\xa5\xdb\xf9\xea\x3b\x97\x7a\xca\xbf\xba\x6f\xa2\xed\x38\x79\x5e\x31\xdf\x0e\xf2\x43\x98\x18\xbc\x0e\xe0\xda\xaa\xca\x9b\xa3\x9d\x95\xb3\x70\xef\xe0\xb5\x00\xf0\xb9\xb9\x39\x14\x8b\x45\x7f\xac\x0f\x1d\x3a\xc4\x36\x6f\xde\x8c\x4c\x26\x23\x11\xcc\xfd\x13\x60\xfe\xe6\x0d\x22\x9e\x4a\xa5\xec\xa1\xa1\x21\x7e\xe2\xc4\x09\xcc\xcd\xcd\xe1\xd9\x67\x9f\x65\xb3\xb3\xb3\x0d\x99\xd5\xaa\x55\xab\xd8\x43\x0f\x3d\xa4\x7e\xce\xcd\x80\xeb\xf5\x34\x0c\x4e\x06\x13\x04\x87\x09\xce\x09\x36\x08\xb6\x61\x18\xf6\x96\x2d\x5b\xec\x0d\x1b\x36\xf0\x8b\x17\x2f\xb2\x93\x27\x4f\xca\xba\xa2\xf0\x2a\xf4\x1e\xbb\x75\x03\x61\x2a\xe2\xcb\x49\x5e\x92\xba\x81\xd0\xb0\xc0\x5f\x8b\xd0\x3c\x2d\xfe\x74\x0a\x40\x90\x80\xe9\xb0\xac\xc1\xc9\xb0\x13\xa2\xa1\xed\x12\xd1\x27\x35\x5f\x9c\xc1\x15\xd7\xf7\xa6\xae\xb6\x06\x03\xc5\xde\x7c\xf3\x4d\xee\x9d\x4a\xb3\x01\x58\x3c\x81\x52\xa9\x2b\xf1\x4e\xaa\xc4\x37\xd6\x5d\x58\xa8\x22\xab\x77\x0e\xc2\xf7\x40\xf9\x36\x01\xf9\x59\x49\x25\x18\x9d\xb8\xfc\x21\xd4\xea\xf0\x2c\x62\xe1\xae\x8e\xda\x8b\xdd\x89\x73\x08\xf6\xfa\xf3\x6a\xb5\x8a\x6c\x36\xcb\xbe\xfa\xd5\xaf\xf2\x13\x27\x4e\x70\xb8\x3e\xfb\x79\xce\x30\xf5\xd2\xc6\x85\x7f\xf1\x77\x8c\x86\x16\x12\x3d\x4b\x8f\x82\xb5\x09\x69\x49\x4c\xb4\x5b\x57\x5e\xd8\x34\xf7\x0d\x3b\x21\xc6\xe1\x2e\xa8\x59\x00\xf8\xe8\xe8\xa8\x7f\xec\xf7\x53\x9f\xfa\x14\xeb\xe9\xe9\x91\x44\x60\x92\x40\xba\x63\xd9\xc8\x77\x2f\x25\x07\xdb\xab\x89\xbe\x04\x27\x73\xc9\x74\xa6\xe7\xb2\xf6\xf8\x4c\x5b\x6d\xaa\xe6\xdd\xbb\xda\xd9\xd9\x69\x7f\xfa\xd3\x9f\xe6\xa7\x4e\x9d\x62\xa7\x4e\x9d\x52\xe7\x58\xce\x09\xef\xe9\xe9\x61\x8f\x3e\xfa\xa8\xdc\x8f\x65\x02\x48\x77\x54\x8c\xae\xa1\xd9\xcc\xde\x0d\xb3\xe9\x0f\xe6\x2b\xc6\x86\xa4\x43\xb9\xe5\x24\x9f\x9a\xc8\x57\x5f\xbf\xba\x6a\xf9\xe5\x5b\x85\xea\x88\xc3\x50\x36\x4d\xb3\xb2\x6b\xd7\x2e\xde\xd5\xd5\xc5\x7f\xf8\xc3\x1f\xea\x75\x47\xb5\x57\x27\x21\xe2\x02\xaf\x18\xbc\x04\x28\x4c\x4f\xd9\xf7\x2e\x45\xaf\x34\xac\xfd\xaf\xd1\x43\xdd\xcb\x44\x30\x1d\xca\x26\x1d\x32\x6b\x8c\xfb\xfe\x69\x65\x1d\xa2\x6e\x30\x1a\xf4\x47\xb7\x1b\xf4\xb4\x28\xc2\xa9\x83\xa9\x41\x9d\xa1\x60\x59\x16\x92\xc9\x24\x77\x57\x41\xa9\x34\xbf\xda\x78\xbd\x6b\xac\xf6\x61\x38\xc2\x84\xbf\xce\x00\x10\x79\x88\x2a\xdd\xad\x42\xee\xf4\x0c\x0e\xac\x00\x81\x2a\x22\x5d\xb3\x02\x22\xc4\x91\xe5\x86\xbe\x60\x17\xb1\x2f\x52\xfd\x4c\x24\x04\xaa\x59\x36\xb1\xd4\x99\xb8\x88\x60\x41\x8c\xcf\xce\xce\xa2\x5c\x2e\x73\x00\x28\x97\xcb\x3c\x9b\xcd\xca\x05\xb3\xe9\x8a\xe1\x8c\xfc\x74\xdb\xcc\x3f\xbe\xff\x5a\xe1\x33\x9b\xa7\xb3\xfb\x13\x1c\x86\xec\x7f\xb0\xe6\xe1\x36\x6a\x13\xec\x91\x55\xcb\xe7\x5e\xd8\x34\xff\x8d\xb2\xc9\xaf\xc0\xdd\x66\x51\x12\x42\x58\xb6\x6d\x73\x6f\x41\x0e\x9f\xfc\xe4\x27\x25\x31\x98\x10\x48\x77\x2f\x25\x07\xf7\x8f\xb5\xff\xd6\xfa\xd9\xf4\x27\xd3\x36\xdb\xc0\x84\xb7\x52\x0d\x58\xb5\x84\x98\x9e\x6d\xab\xbd\x72\xba\xbf\xf4\x95\xab\xdd\xcb\xa7\x6b\x8c\x97\x88\xa8\xb2\x7f\xff\x7e\x5b\x08\x81\x37\xdf\x7c\xb3\x6e\x7e\x14\x62\x48\x27\x38\xf2\xdb\x27\xda\x8e\x1c\xb8\x99\xff\xd3\x7c\x25\xb1\x9f\x80\xb4\x6b\x4f\x01\xf9\x2a\xd0\x5b\x4a\x7e\x7a\xc7\x44\xdb\xd4\x68\x67\xe5\x9b\x27\x37\x14\xbf\x38\x9d\xab\x8d\x02\x28\x0f\x0c\x0c\xd8\x4f\x3e\xf9\x24\xbe\xf1\x8d\x6f\x44\xa9\xe2\xa1\xf6\xe4\x6e\xd7\x00\x9f\xbd\xdf\x5d\xbb\x76\x91\x69\x9a\x8c\x88\x4c\x10\xf2\x5d\xe5\xe4\x96\xa1\x99\xcc\x61\x26\x37\x0f\xe8\x9a\x91\x27\x66\x03\x37\x23\x05\x1c\xd0\x33\xbc\x39\x09\xe7\xdd\xbe\xf2\x4f\xaa\x49\x31\x01\x60\x59\x08\xe1\xbc\xf2\xca\x2b\x8e\xd7\x87\x28\x62\x10\x5a\x9c\xfc\xad\x33\x55\x50\x8f\xd0\xc2\x8b\x93\x7a\x48\x9c\xad\x24\xf3\x52\x44\x1a\x01\x10\x83\x83\x83\x94\xcf\xe7\x09\x40\x02\x84\x94\x6d\x52\x22\x37\x63\xef\x4a\x55\x44\x8f\x1c\x0c\x52\xce\x40\xa8\xdb\x23\x48\xea\xfb\xe4\x22\x79\x18\xb7\x5d\x10\xe4\x62\x99\x77\x1a\x5f\x59\xd7\x91\x79\x94\x1e\xfa\x3d\x23\xcc\xac\x35\x9f\x59\x58\x6d\xbc\x0c\xa2\x09\x00\x8b\x00\xac\xaf\x7d\xed\x6b\x8e\xcc\xe2\x38\x0e\xad\x5b\xb7\xce\x97\xf2\x44\xe4\xd4\x0c\x61\x8d\x74\x2d\xdf\x98\x69\xab\xcd\x65\x6a\x89\x4c\xca\xa1\x4c\x82\x53\x02\xee\x01\x47\x6e\x25\x45\x75\xb2\xbd\x36\xfa\xca\xd0\xfc\x8f\x5f\x5f\xb7\xf8\xc3\x8a\xc9\x2f\x82\x70\x13\x2e\x41\x2c\x11\x91\x7d\xfa\xf4\x69\x71\xfb\xf6\x6d\xf1\x89\x4f\x7c\x82\xad\x5e\xbd\x5a\x72\xee\xdc\xb6\xa9\xec\xfb\x1f\xbe\xd8\xf5\x37\x03\xc5\xd4\x53\x26\x67\xab\x19\x28\x45\xa0\x04\x04\x31\x46\x94\x34\x38\x75\xe4\x2c\x63\xe7\xd0\x4c\xe6\xb1\xce\x65\x23\x75\xab\x60\x5d\xb0\x13\xee\x35\x96\xfd\xfd\xfd\x7c\x61\x61\x01\xb3\xb3\xb3\xfe\x9c\xfe\xce\xef\xfc\x0e\xf3\x54\xb0\x74\x82\xa3\xeb\xd0\x48\xc7\x53\x87\x47\x3a\xfe\x2a\x53\x4b\x6c\x61\x44\x46\xa0\x8a\xc9\xe1\x26\x4a\x08\xca\x75\x2e\x1b\x07\x87\x66\x33\x07\x26\x73\xd6\xe9\xc5\xb4\xb3\x08\xc0\x49\xa7\xd3\x76\x36\x9b\xa5\xd1\xd1\xd1\x28\xbc\x91\xb8\x22\x12\xea\x8b\xfa\xbb\x79\xf3\x66\x78\xb7\xb3\x25\x85\x10\xb9\x7c\xc5\x18\xda\x3c\x9d\xfd\x20\x03\x31\xdd\xf0\x0a\xa1\x0f\xa0\x1c\x87\x94\x54\x22\xcf\x56\x13\x5d\xe9\x29\x3f\x53\x4a\x39\x63\xc2\xfd\x40\x8a\xcd\x18\x83\xe7\x79\x50\x09\x53\xed\x4f\x14\x32\xab\x04\x22\xc2\xad\x87\xca\xcb\xb2\x3a\x51\xa8\x84\x26\x50\x5f\xb7\x8c\x03\x00\x91\x4c\x26\x69\xdd\xba\x75\x10\x42\x10\x11\x19\x9c\x90\x16\xc6\xff\xd7\xdd\xbb\x06\xd9\x71\xdd\x77\x62\xbf\xff\xe9\xbe\xcf\xb9\x73\xe7\x89\x99\xc1\x00\x98\x19\xbc\x08\x3e\x20\x90\x20\x48\x9a\x14\x29\x93\xa2\x2c\x52\xb2\x2d\x59\x96\x14\x3b\xce\x87\x38\x4e\x45\xae\x24\x9b\x7c\x70\xaa\x92\xad\x64\x3f\x6c\x55\xb6\x52\xa9\xdd\x24\x55\xa9\xad\xda\xa4\xe2\x8a\x2c\x31\x8e\x37\x72\xed\xca\x2b\x4b\x36\x6d\x8b\x22\x25\xe8\x45\x8b\x14\x49\x90\x04\x21\x02\x18\x60\x06\x83\x01\x30\xef\xc7\x9d\x3b\xf7\xd1\xb7\xfb\xfc\xf3\xa1\xfb\x74\x9f\x7b\xe6\xf4\xbd\x77\x40\x38\x65\xa7\xab\x66\x6e\xf7\x79\xff\xcf\xf9\xbf\xcf\x8b\x32\xe5\xd5\xe0\x2c\x31\x39\x6d\xf6\x41\x3c\xf3\xac\xf4\xfd\x84\x38\x74\x77\xab\x52\x4f\x12\xaf\x5d\x6c\xc5\x46\x73\x3b\x5a\x9e\x18\xba\xc4\x76\x6b\xe5\x68\x63\xf1\xa1\xfc\xd7\x82\xac\xb8\x86\x70\x65\xe7\x2e\x33\xfb\x6f\xbf\xfd\x76\x3c\xd8\xab\xab\xab\x3c\x3e\x3e\x4e\xe5\x72\x99\x99\x39\x20\xa2\x16\x33\x7b\x2c\xa8\xb6\x51\xf4\x57\x2e\x8f\xd5\x3e\xb8\x32\x56\xbb\x74\x7d\xb4\x71\xf9\xfa\x68\xe3\xd2\xc5\xc9\xdd\x37\xdf\x3e\xbc\xf3\x83\x0b\x87\x76\x5e\x5d\xeb\xf3\xdf\x0d\x88\xaf\x13\xd1\x2d\x66\x5e\x25\xa2\x2a\x33\x37\x2b\x95\x8a\x7c\xe5\x95\x57\xe4\xf3\xcf\x3f\x2f\xa6\xa6\xa6\x94\x64\x28\x9f\x58\x2b\xfc\xd2\xaf\x5c\x19\xfe\xdf\x0a\xbe\xb8\x0f\xba\x17\x4b\xd7\x04\x23\x49\x44\x4c\xf9\x91\x5a\xe6\x89\xb1\x6a\x76\xf4\xfa\x48\xfd\xad\xc0\x81\x07\x20\x98\x98\x98\x90\x73\x73\x73\xe4\x79\x1e\x7f\xfa\xd3\x9f\x16\xa3\xa3\xa3\x82\x88\xf2\x60\x94\x1f\xb9\x5d\xfa\xf5\x27\x6e\x0c\xfc\x0f\x2e\xd3\x40\x58\x1e\x47\x6a\x27\x62\x24\x8c\x25\x70\xa8\x8d\x4c\x4e\x6d\xe5\x1f\x5e\x1c\x68\xbe\x59\xcb\xc9\x6d\x66\x0e\x46\x46\x46\x82\xe5\xe5\x65\xec\xec\xec\x98\x8c\x56\xe1\x0d\x1c\xad\xbb\x75\x29\x41\xc5\x62\x11\x93\x93\x93\x40\x78\x10\x6f\x5f\x2e\x10\xe3\x0f\x2c\x17\x3f\x2d\x24\xb9\xca\x28\x6b\x5b\xab\x64\x79\x57\xde\x10\x6d\x70\xc5\xcd\xa1\xc6\x4f\xd7\x8a\xad\x59\x22\xaa\x02\x68\x45\xfb\x21\x00\xbb\x84\x20\xe3\xbd\x4d\x8a\x59\x50\xc6\x94\x2c\x3a\x5c\xed\x86\x8f\x01\xaf\x11\xa6\x4b\x22\xb1\xba\xba\x2a\xcf\x9e\x3d\x0b\x21\x04\x01\x10\x44\x94\xf1\x0a\x22\x28\xec\x04\x33\xb9\x1a\x4f\xc6\x3c\x21\x42\x6a\xb6\xf6\x8d\x66\xc4\x2a\xce\x1f\x0f\x68\xf8\xad\x6d\xfe\x81\x76\x14\x47\x9c\x28\x56\xa5\x08\x72\xf9\x68\xf6\x2f\x2a\x63\xee\x8f\x41\x74\x87\x99\x37\x01\x78\x9b\x9b\x9b\xf2\xd2\xa5\x4b\xa4\xc1\xc0\x8b\x8b\x8b\x74\xe4\xc8\x11\x2e\x16\x8b\x12\x40\x10\x19\xc5\x0d\x10\xaa\x4c\xa8\x34\x5c\xb9\xb2\x53\x08\x16\x37\x8b\xfe\xb5\xed\x9c\x7f\xbd\x99\xe5\x79\x26\x2c\x82\x70\x8b\xc2\xb2\xd7\xa3\xb1\x6a\xee\xec\xec\xc8\x97\x5f\x7e\x19\x85\x42\x81\x9e\x79\xe6\x19\x10\x91\x03\xa0\x58\x6e\x38\xd3\x2f\x5e\x1e\xfe\x17\x7d\x9e\x7b\x0a\x51\x1b\xd5\xd3\xb6\x8b\x52\xe7\x0f\x44\xa2\xdc\x70\x1e\x04\x68\x6d\x71\xb0\xf9\x21\x83\x3d\xd7\x75\x83\x72\xb9\xcc\xd5\x6a\x95\x1e\x7f\xfc\x71\x08\x21\x1c\x00\x7d\x03\x0d\xe7\xe8\x0b\x97\x47\xfe\x97\x6c\x20\xc6\x11\x17\xa1\xfa\x92\xd4\xfe\x29\x20\x66\x42\x61\x1b\xb2\x01\x1d\xec\x6f\xba\xf9\x6b\xa3\xf5\x37\x58\xa0\x4e\x44\x72\x6c\x6c\x4c\x5e\xbe\x7c\x99\xa4\x94\xa6\x46\x20\x00\xb0\xae\x66\xd8\x0c\x0d\x44\xee\x46\x59\xcb\x04\xd5\x96\xc3\xd5\x84\x3a\x75\xaa\x54\x83\x1f\x29\x0d\xac\x30\x2c\x72\xe5\x25\x98\x28\x06\xea\xee\x21\x42\x7c\xb1\x86\x88\x6e\x9c\x51\x0d\xb2\x4d\xaa\xa4\x79\x93\xd2\x26\x5a\x74\x2f\x87\x59\xae\xf9\xd8\xe2\x6c\x75\x23\x3a\xaa\xdf\x47\x78\x67\xf2\x56\xe0\x60\xf1\xf6\x7d\xf9\x7f\xe7\xe7\x68\x0b\x0a\x46\x6d\x8d\x57\xc8\xe9\x11\xdb\x09\xc9\xa1\x64\x11\x97\x67\x44\x33\xfc\x50\x73\x79\x9a\x9d\xa1\x14\xfa\x84\x90\xe2\x78\x00\x3b\x23\xce\xa5\xb5\xe9\xec\xab\x20\x52\x37\xb7\x7a\x00\xfc\xe8\x1a\x63\x7d\x2c\x45\xbd\x5e\xc7\x5f\xfe\xe5\x5f\x62\x7d\x7d\x3d\x74\xc1\x32\x57\x11\xaa\x3f\x8b\x00\x66\x89\xe8\x43\x00\x17\x99\xf9\x22\x11\x5d\x04\x70\x09\xc0\x2c\x33\x2f\x30\xf3\x5a\x44\x0c\x5e\xa5\x52\x91\xdf\xf9\xce\x77\xb0\xb3\xb3\x23\xb7\xb7\xb7\x65\xbc\x92\x96\x51\xfe\xd8\x9d\xd2\x6f\x0c\xd4\xdd\x47\x93\xf5\x5b\xac\x44\x01\x42\x2b\x2a\x7c\xd7\x6d\xa8\x08\x29\xdc\x87\xee\xf4\x7d\x65\x78\x37\x73\x82\x88\x8a\x00\xdc\xe9\xe9\x69\xfc\xc6\x6f\xfc\x86\x3a\xcc\x21\xcb\xcc\xe5\x33\xb7\x4b\xbf\x59\x68\x89\x63\xca\x36\x8b\x85\x82\xea\xc7\x98\xe2\x38\xf9\x8d\xe6\x69\x8e\x6c\xe5\x3f\x3f\xb5\x99\x7b\x14\xe1\x3e\x71\x77\x60\x60\x40\xb9\x7a\x75\x97\x6b\x3c\xce\xa9\x13\x21\x6f\xbf\xfd\xb6\x0c\x1b\x1f\xba\x1b\x3d\x97\xab\x4d\x57\x56\xdb\xf6\x90\x6b\xdc\x40\x9f\x58\x4d\x1c\x18\x1c\x73\x05\xd5\xd6\xe1\x5a\x66\x8a\xa2\xf5\x30\x00\x10\x6d\xdc\x4f\xf3\x32\xd9\x8c\xe2\xb4\xb4\x7a\x7c\x37\x27\x81\x99\x56\xcf\x63\x35\xec\xcf\x9f\x3f\x2f\xa5\x94\xca\x8d\x59\x01\xb0\xd6\x2c\x89\x0f\x6f\xdd\x9f\xfb\xb7\x41\x06\x35\x00\xa0\x36\xae\xae\x2d\xd3\x20\x0d\xf1\x63\xbd\x01\x31\x77\x23\x95\x46\x9f\xcd\xa6\x98\x4a\x62\x89\xc1\x00\x9a\x7d\xb4\x74\xeb\xfe\xdc\x9f\xca\x0c\x2d\x20\x44\xec\x1a\x00\x7f\x7d\x7d\x1d\xb3\xb3\xb3\xd6\xfe\xab\xd7\xeb\xf2\x9b\xdf\xfc\xa6\xbc\x7c\xf9\xb2\x6c\xb5\x5a\x6a\x35\x6a\x05\xc0\x1a\x33\x2f\x01\x58\x24\xa2\x45\x00\x8b\xcc\xbc\xc4\xcc\x2b\x44\x54\x21\xa2\x5a\xab\xd5\xf2\x66\x67\x67\xe5\x37\xbe\xf1\x0d\x19\x1d\x23\x8f\xdf\xf9\x9d\xdf\x89\x3d\x4a\xd9\x80\x86\x8f\xad\x17\x7e\x95\x98\x42\xf7\x6a\x64\x07\x29\x9b\x48\xdf\xf1\xa7\x2f\x6f\x54\xfd\x54\xf0\xc5\xe1\xe3\xeb\x85\x67\x01\x14\x29\xb9\x22\x4b\xf5\x7f\x3e\x17\x88\xe1\x23\x9b\xf9\xe7\x48\xdb\x5e\xab\xb4\x4c\xc5\x33\xe2\x2d\x09\xb1\x13\x23\x8c\x60\x10\x1c\x89\xd2\x7d\xab\xc5\x17\xd5\x51\x96\x00\xc4\x0b\x2f\xbc\xa0\xcf\x3d\xb4\x8d\x7f\xaa\xfb\x69\x74\x74\x54\xe7\xbc\xbe\xe7\xc8\x5a\x3d\x23\xb7\x34\x1e\xd8\xf6\x13\x2f\x62\x6b\x53\x62\xb4\xd4\xd1\x0d\xa5\x83\x75\xf7\xb0\x23\xa9\xc8\xcc\xe6\x2c\xb9\x0d\x21\xd1\xe1\xbd\x9b\x27\xca\x04\xb6\x93\xcb\x56\x7f\xd2\xbc\x53\x22\xba\x1d\xd5\x47\xb8\xde\x7e\x83\xc1\xb7\xb7\x0e\xba\x3f\xba\x73\x32\xf7\x17\xec\xc0\x6b\xef\x17\xd6\x46\x5e\x89\x71\x40\xf3\x6b\xb6\x73\x37\x85\x48\xb1\x64\xd0\x46\x3b\x2a\xa3\x95\xa3\xad\x9b\x1f\xcb\xff\xdf\xcd\x92\xb8\x04\x60\x89\x99\x2b\xcc\xe1\x0e\x44\xc3\x43\xa3\xdb\x58\x31\x8c\xe7\xcf\x9f\xc7\xcb\x2f\xbf\xac\x08\xc7\x8b\xf6\x23\xd4\x10\x12\x48\x15\xe1\x92\xea\x9a\xda\x54\x73\xf5\xea\x55\xf9\xb5\xaf\x7d\x4d\xbe\xf6\xda\x6b\x7a\x9f\xa2\xbf\xbf\x1f\x88\x4e\x39\x2f\x37\xdc\xc9\xfe\xa6\x73\x2c\xd6\x3f\x35\x15\x49\x39\x12\x34\x10\x22\x0f\x9c\x8a\x03\xc0\x24\x8e\x6c\xe5\x9e\x44\xc8\xc1\xf5\x89\x5b\x01\x20\xdb\xe7\x39\x13\xe5\xa6\x3b\xa3\xfb\x16\xe2\xed\x05\xea\x9d\xb4\xfa\xb4\x06\x28\x2d\xe5\x40\x35\x7b\xc6\x95\xc9\xd9\xb1\x23\x23\x23\x31\x2c\xc6\x23\x6c\x13\x73\x00\x80\xb5\xb5\x35\xa9\xe9\xc2\xbe\x24\x6e\x6c\x15\xfc\xdb\x93\x95\xdc\x23\xaa\x61\xf1\xf8\xb2\xe6\x59\x81\xae\x37\x72\x24\xfd\x29\x6e\x68\xb9\xe1\x1e\x2e\xb4\x44\xb9\x95\x0b\x2f\x7c\xcc\xe5\x72\x98\x9a\x9a\x12\x0b\x0b\x0b\x7a\xa7\xdb\xe6\x29\xd2\xc2\x3a\xcd\x25\xa4\xce\x2f\x60\x2f\x61\xb4\xa9\x1a\xb6\x72\x5e\x79\xe5\x15\x7d\x07\x57\x05\xc0\x12\x88\xb2\x6b\xd3\x99\xbf\x92\x0e\xf9\x93\x97\x1b\x9f\x77\x5b\x28\x29\xae\xa8\x75\x89\xc6\xc6\x90\xd8\x18\xfa\x7b\x9b\xe3\x83\xda\xbc\x4a\x0c\x46\xa3\xe4\xdc\xbe\x79\x3a\xff\x8d\xda\xa0\x78\x13\x44\xba\x3a\xe3\x2f\x2e\x2e\xe2\xe6\xcd\x9b\x26\x6c\x3a\xdc\x71\x3f\xac\xac\xac\xe0\xb5\xd7\x5e\xc3\x6b\xaf\xbd\x86\x13\x27\x4e\x88\x91\x91\x11\x39\x31\x31\x11\xc3\xba\xba\xba\x8a\x8d\x8d\x0d\x5c\xbe\x7c\x59\xa9\xcb\xd6\xfe\x8b\x66\x9f\xb3\x45\x4f\x4c\x38\x92\x8a\x31\x5d\x43\xa9\x82\x3a\x0c\x1a\x30\xaa\x2b\x62\x05\x1b\x28\x7a\xce\x04\x31\x8a\x4c\xc9\x34\x80\x2a\xbf\xe0\x85\x67\xbb\x86\xf9\xda\x97\xaf\x93\x5a\x2f\x16\x75\x5d\x88\x77\xed\x2a\x3c\xc0\xc8\xb7\xc4\x58\xc6\xa7\xb2\x27\x64\x96\x88\x44\x2e\x97\xb3\xf5\x95\x00\xda\x77\xcc\xd9\x00\x57\x61\x3e\x88\xbc\xf5\xbe\xd6\xa2\x9a\x84\xd3\x1c\x1e\x26\xd3\xd3\x40\xd7\x0c\xc7\xe8\x33\xef\x8b\xe1\xc1\xba\x3b\x51\xc9\xf9\x1f\x22\x34\x50\xc5\xc2\xc2\x82\x5a\xdb\xde\xd5\x4f\xdc\x21\xcc\x44\x60\x1b\xc2\x77\x72\xbd\xda\xea\xd8\x93\xf6\xa7\x3f\xfd\x29\x3e\xf5\xa9\x4f\xf9\x8e\xe3\x78\x08\xf7\x12\xbb\x20\x12\x1b\x87\xdd\x57\x5a\xf9\x42\x65\xf2\x72\xf3\xf3\xf9\x1d\x39\xb9\xa7\x64\x6d\x31\x13\x69\xa3\x98\x38\x20\x0c\xe9\x12\xb1\x51\x29\x48\xee\x1c\x70\x3f\xbc\x75\x7f\xee\xcf\xbc\x22\xbd\x0f\xa2\x79\x84\x7b\x85\x2b\x00\xbc\x7a\xbd\x2e\x5f\x79\xe5\x15\xf3\x6c\x5c\x5b\xdb\xf7\x10\xff\xec\xec\xac\x9c\x9d\x9d\xb5\x79\xef\xd4\xbb\x59\x5e\x5c\x4e\x34\x8f\xe4\x22\xe4\xea\x86\xd2\x10\x21\x24\x25\x5c\x1a\x0a\x64\xc5\x27\xda\x96\x40\xb3\x4b\x8c\x6c\x44\x10\x40\x84\x17\xcc\x2c\x3c\x97\xa5\xa4\xb8\xce\x36\x29\x64\x28\x22\x51\x97\x25\x1f\xaa\x9e\x96\xc3\x9e\x14\xf1\x92\x75\x91\xcd\x66\xd3\xfa\x64\x8f\xe1\x19\x8b\x58\xc7\x71\xc4\xfa\xfa\xba\xca\xe4\x03\x68\x6c\x14\x5a\xb7\x24\xc1\x57\x2a\x50\x64\x5e\x47\xf4\x11\xad\xe8\x54\x36\xa1\xc6\xf1\x62\x5d\x0f\x80\x60\xca\x8f\xef\x64\x4f\x51\x78\x50\x96\x0b\x00\x91\x4e\x67\xb6\xc7\xd6\xbe\x6e\xef\x6d\xc0\x69\xf1\x9d\x54\x24\x05\xe3\x9e\x3e\xd0\xc2\xd5\x23\xe6\xe7\xe7\x65\x74\x69\x89\xda\x12\xb9\xc1\xcc\x8b\x20\x9a\xdd\x19\x75\x7f\x74\xed\xf1\xc2\xff\xbe\x3a\x93\xf9\xa1\x9f\x41\x8d\xdb\xb8\x7e\xdc\x51\x88\x95\xcc\x3d\x87\x7a\x45\x3c\x8d\x01\x06\xa1\x59\xa4\xb5\x5b\x0f\xe6\xbe\x75\xe3\xe1\xfc\x57\xbd\x3e\xf1\x56\x44\x0c\x4b\xcc\xbc\x05\xa0\xd1\x6c\x36\xe5\x77\xbf\xfb\x5d\xfd\x22\x74\xb3\x0f\x6c\x0e\x07\x9b\x9d\x21\xba\xe4\xd1\xbf\xf5\xf6\x8a\x66\x46\x36\xf4\xb3\x5d\xf5\x95\xb8\x60\x05\x8b\x32\x76\x55\xa2\x28\x2c\x0a\xae\x65\x64\x45\x1d\xbb\xad\xaf\x84\x26\x22\xd4\x33\x41\xad\xe9\xca\x8a\x72\xce\x28\xf3\x2b\xb1\x4d\x6c\xfd\xc7\x91\x6a\x05\x30\x31\x6e\x0e\x35\x2e\x36\x5c\xa9\xb6\xb9\x4a\x63\x95\x75\x9b\x7a\xa9\x28\x72\x8f\x7a\x10\x04\x81\x6c\x34\x1a\x22\x5a\xdd\xe8\x03\xf0\xb6\x0b\xfe\x52\xcb\xe1\x9a\xe3\x53\x19\xa0\x36\x97\x61\x0c\x24\xc5\x0e\xc6\xb8\xc0\x84\x37\x86\x8d\x9d\xa8\x64\x4f\x93\x44\x5e\x52\xb8\xcb\x6b\x68\x68\x28\xcd\x10\xb6\x49\x8c\x4e\xef\x36\xee\xdf\xed\x3b\x4d\x9a\xa4\xd6\x27\x84\x10\xb3\xb3\xb3\xf2\xc4\x89\x13\x3e\x42\xbd\x3b\x92\xa2\xf0\xfc\xac\xa8\xde\xbe\x3f\xb7\xb6\x7e\x38\xf3\xf3\x91\x5b\xad\x27\xca\xcb\xfe\xfd\xd9\x06\x0f\x92\x84\x6b\x1e\xdc\xd5\x7e\x86\x4d\xa8\x54\x07\x0e\xbc\x46\xc9\x59\xd9\x9c\xcc\x5c\xd8\x3a\xe8\xbe\xe9\x67\x69\x01\x44\xb7\x01\x2c\x21\x34\x82\xab\x44\xd4\xf0\x3c\xcf\xff\xab\xbf\xfa\x2b\xac\xac\xac\x98\x6d\xee\x64\x63\xd9\x90\xdc\xb4\x37\x3a\x32\x8f\x73\xe7\xce\xc5\x79\x89\xc8\xdf\xca\x07\x6d\x67\xbb\xc6\xea\x1f\x25\x26\x34\xa3\x9d\xf0\xa1\x9d\xdc\x27\xc1\xf2\xf2\x58\xed\x0d\x84\x4c\x57\x2d\x20\x55\xe3\xe1\xd7\xb2\xb2\x72\xa7\xec\x5d\x29\x37\x9d\xc3\xba\x81\x92\x08\x5c\xad\x3f\xd5\xea\x88\x58\x4a\x30\x02\x82\x7f\x63\xa8\x71\x11\xd1\xc5\x9e\x00\xb0\xbb\xbb\x0b\x21\x84\x88\x9c\x24\x6d\x7d\xd5\xe9\xbc\x7c\x71\xe3\xc6\x0d\x1c\x3e\x7c\x58\xe9\x92\xde\x6e\x36\xd8\xd8\xcd\x06\x6b\xb9\x88\x20\xda\xf4\xc3\xa8\x81\xca\x93\x62\xaa\x91\x89\xa1\x45\x38\xb0\x9b\xbd\xbf\xd8\x12\xc3\xbb\x39\xb9\xc4\xcc\xf1\x2d\x9d\x68\x47\x4e\x9b\x1e\x6f\x0e\x20\xb0\x17\x91\xd3\x7e\xf5\x72\xf4\xc7\x56\xa6\xfe\xec\x29\x47\x4a\x29\xcf\x9f\x3f\x2f\x88\x48\x1e\x3b\x76\x2c\xde\x27\xce\xe1\x11\x9d\x55\x22\xaa\x34\xfb\x9d\xb5\xdb\xa7\xc4\xd5\x95\xa3\xd9\x43\xc5\x6d\x39\xd3\xb7\x19\xcc\x14\xb7\x83\x89\x6c\x5d\x0e\x0a\x1f\x79\x62\x76\x01\x92\x2c\xc8\xf7\x33\xa2\xe1\x15\xc5\xda\xee\x90\x58\xdc\x1d\x72\xe7\xeb\xfd\xe2\x86\x74\x68\x05\xe1\x71\x2a\xea\x74\x8a\x2d\x84\xc4\xe7\x79\x9e\xe7\x7f\xfd\xeb\x5f\xef\xe6\x50\xe8\xf6\xec\x97\x71\x00\x80\x7c\xeb\xad\xb7\x70\xee\xdc\x39\x15\xef\x37\x5d\x59\x99\x1f\xae\x5f\x78\xf8\x76\x69\x2a\xf6\x3a\xb6\xd1\x7d\xc2\x38\x15\x63\xd6\xe7\x29\x76\x73\xc1\xda\x8d\xe1\xc6\xfb\xd0\x2e\xcf\x89\xd2\x84\x86\x3f\xa1\x76\x69\x62\xf7\xc7\xc7\xd7\x0b\xcf\xb8\x01\xb2\xb1\x57\x29\x2c\x3a\x46\xb0\xc4\xd3\xa4\xd5\x45\x84\xb5\x3e\xef\xfa\xcd\xc1\xc6\x2f\x18\x5c\x23\x84\x0b\x13\xa5\x94\x48\x68\xa1\x7d\xdc\x6d\x87\x1d\xc7\x8f\x3a\xd0\x49\x49\x08\xcf\xe5\xca\x6a\xc9\x9b\x1f\xae\xb9\xc7\xe2\xd9\x56\x06\x92\x73\x4c\x09\xb1\xac\x22\xcd\xbc\x69\xb3\xc0\x81\xbe\xa6\x33\x39\xba\x9b\x3d\xb6\x9b\xad\xcf\x46\x6d\xf0\xcf\x9c\x39\x83\xf7\xde\x7b\xcf\x1c\x80\x5e\xf4\x7d\x93\x88\xcc\xfc\x69\x79\x3b\x11\x98\xfe\x6e\x1a\xdb\x00\x42\x09\xfa\xea\xab\xaf\x62\x75\x75\x55\x3c\xf6\xd8\x63\xbe\xeb\xba\xb5\xa8\x9f\x1a\x08\x3d\x36\x6b\x20\x1a\xf4\x73\xb4\x58\x19\x13\x97\x2b\x63\x6e\x09\x8c\x22\x31\xe7\x85\x8f\x02\xc9\xf0\x7e\x3f\x76\xc8\x0b\x5c\xd4\xd1\xee\xed\xd9\xd2\xfe\x2a\x51\x78\x03\xd1\xa6\xfc\x97\x5e\x7a\x29\x8d\xd3\xeb\xfd\xa2\xf7\x4d\xa7\x38\xdb\x3b\x2c\xe9\x01\xec\x39\xdb\xb5\x01\x42\xf5\xbd\xc9\xea\xf7\x8f\xaf\x17\x3e\x5e\x6a\xb8\xa3\x8a\x1a\xda\x6d\xc9\xf0\x89\xe7\x28\x34\xd9\xf1\xde\xc1\xea\xf7\x76\x72\xc1\xed\x08\xee\xb6\x13\xc0\x11\xae\xcf\xaa\x2c\x0c\x35\xde\xfd\x70\x6c\xf7\xc7\x0f\x2e\xf5\x3d\x2f\x94\xdb\x55\xa9\xe7\x7b\x6c\xaf\xa4\x56\xcf\x91\xb5\x9f\x4d\x57\xfe\xa2\x99\xe1\x25\x42\x38\x9f\x02\x40\x5e\xb9\x72\x45\x87\xad\x0d\x76\xb5\x74\x43\x77\x8c\xa9\x48\x26\x22\xba\xff\xfe\xfb\x95\x01\x95\x65\x70\x69\xa0\xe1\x4e\x4f\x6f\xe6\x1f\x0d\x0f\x0e\xd0\xcf\x1b\xd5\x36\xae\x53\xe2\x05\x50\x9e\x95\xb8\x74\x02\x04\xe0\x56\x73\xc1\xcd\x9b\x43\xcd\x0b\x44\xb4\x0b\xc0\xab\xd5\x6a\x3c\x3f\x3f\xaf\x0f\x80\xde\x16\x68\x6d\xe4\x08\x08\x36\xc2\xf7\xb4\xdf\x80\x0d\xc6\xb7\xe1\x0c\x8c\xff\x54\x07\x99\xf9\x48\x0b\x8f\xc9\x7b\x79\x79\x99\xd7\xd7\xd7\x69\x68\x68\x48\xcd\x06\xb7\x90\x9c\x3c\xb1\x8b\x10\xa1\x37\x01\x6c\x80\xb0\x01\xa2\x55\x76\x68\x49\xba\x74\x5b\xba\x74\x8b\x1d\xba\x0d\xa2\x5b\x00\x6e\x01\xb8\x1d\xfd\x2d\x23\x94\x0a\x9b\x08\x97\x64\x34\x99\xb9\xb5\xb8\xb8\xc8\x2f\xbf\xfc\x32\x5a\xad\x96\xad\x9d\x26\xac\x66\x9f\x75\xea\x07\x5b\x9c\x82\x51\xef\x6b\x78\x9e\xc7\x13\x13\x13\x6a\x6d\x97\x00\x90\xa9\x67\x24\x3c\x97\x31\xbd\x95\x3b\x2d\x58\x38\xaa\x53\xe3\x27\x51\xfa\xdb\x66\xf0\x6f\x0e\x36\x2f\xfe\xf8\xd8\xd6\xbf\x0e\x1c\xcc\x03\x58\x8d\xfa\x4b\xdf\xd7\xc1\x08\xd7\x8f\xb9\x77\xca\xde\xd6\x68\x2d\x73\x78\xa0\xee\x8e\x13\xa2\x72\xda\xd4\xcf\xe4\x3f\x33\x10\x38\xec\xfd\x6c\xba\xf2\x17\xbf\x18\xdf\xfd\x2e\xc2\xb5\x58\x1b\x08\x4f\xef\xf3\x5f\x7e\xf9\x65\x1b\x5e\x01\x08\xd7\x32\x29\x80\x75\x6e\x42\x00\xa8\x5e\xaf\xe3\x91\x47\x1e\x81\x10\x82\x98\x39\x4b\x44\x7d\x04\x0c\x3c\xb0\xdc\xf7\x49\x42\xb8\xce\x3d\xf2\x95\x44\x9e\xa4\x58\x26\x42\xa7\x56\xcd\xe1\x06\x35\x41\x93\xf3\x45\xe6\xe2\xc1\xea\x5f\x73\x78\xd7\x5c\x33\x97\xcb\xc9\xf7\xdf\x7f\x5f\x35\x4e\x71\x21\xdd\x99\x10\xb7\x4b\x03\x44\x0f\x33\xc8\x6e\x0f\x72\xe8\x70\x9a\x08\x60\x23\x30\x33\x9d\x5e\x8f\xd4\xe3\xb7\xb7\xb7\x79\x7e\x7e\x9e\x5a\xad\x16\x0f\x0f\x0f\x4b\xd7\x75\x03\x84\x84\xd1\x44\x42\x18\x3b\x50\x84\x11\xfe\xad\x03\xf1\x09\x73\x6b\xd1\x12\x89\x75\x66\xde\xa4\xf0\xdc\xdb\x5d\x84\x52\xa1\xb5\xbb\xbb\x2b\x5f\x7a\xe9\x25\x39\x3b\x3b\x4b\x9a\x01\xdd\xd6\x06\x4b\x7b\x6d\x30\xdb\xd2\xa4\xa5\xb5\x31\x1c\x00\xc0\xd5\xab\x57\xf9\xdc\xb9\x73\x11\xcf\x63\x22\x22\x67\xad\xd4\xaa\x78\x0e\x63\xa2\x92\x3b\xea\x4a\x64\x58\x5b\xde\x63\x2e\xed\x61\x00\x37\x86\x1a\x17\xbf\x77\x6a\xf3\xa5\x7a\xb8\x78\xf0\x0e\x42\x69\xd8\xac\x54\x2a\xfc\xd2\x4b\x2f\xc9\x33\x67\xce\xa8\x0d\x46\x00\x40\xbe\xc3\xf2\xc6\x50\x63\x31\x23\xa9\x38\xb2\x9b\x39\x18\x9e\x1f\xab\xf4\x23\x24\x2a\x3b\x01\xbb\x39\x7f\xeb\x27\x47\xb7\xbf\xf3\xee\xa1\xea\x5f\x4a\xe2\x05\x22\x5a\x62\xe6\x0a\x11\x79\x97\x2f\x5f\xe6\x85\x85\x85\xb4\x3e\x68\xbb\xa7\xda\xe4\x94\x04\x40\x96\x4a\x25\x3a\x70\xe0\x00\x00\x38\x44\x94\x6f\xba\x32\xff\xe0\x52\xdf\x2f\xe7\x02\x51\x62\x84\xcb\x90\x95\x4f\x3d\x9e\x91\x8c\x15\xbc\x44\x4a\xc4\x4b\xc1\xa3\xf4\x39\x5f\x0c\xde\x18\x6e\x9c\xaf\xe6\x82\x25\x00\x8d\x4c\x26\xa3\x16\xa6\xe9\x9c\x4f\x1f\x6c\x89\x04\x19\x55\x3a\x18\x69\x75\x4e\x6e\x0e\xb6\x0a\x33\x89\xcc\xc6\x59\x6d\xaa\x9a\x5e\x37\xcc\x3c\xbe\xef\xf3\x9d\x3b\x77\xe8\xdd\x77\xdf\x95\x8e\xe3\x20\x97\xcb\xc9\x42\xa1\xe0\x23\x39\x87\xa8\xc1\xcc\x75\x22\xaa\x31\xf3\x2e\x11\xed\x20\x5c\x4e\xbd\x1b\xcd\x27\xec\x12\x51\x1d\x40\x33\x5a\x84\xe7\x6f\x6c\x6c\xf0\xbb\xef\xbe\x8b\x57\x5f\x7d\xd5\xb4\x85\x6c\xc4\xab\xab\x00\x0c\x3b\xcc\x7a\x9b\xd3\x18\x43\x9a\x8a\xda\x46\x30\x0f\x3c\xf0\x00\x65\x32\x19\x89\x50\x93\x90\x0c\xe6\x95\x72\x6b\xed\xd6\x60\xf3\x76\x5f\xcb\x29\x17\x5a\x4e\xbf\xd3\x76\x96\x17\x10\x10\xfc\xed\x82\xbf\xf6\xf3\xa9\x9d\x57\x7e\x7a\x6c\xfb\x9b\xf5\x8c\xbc\x0c\xc2\x2d\x84\x0c\xa1\x2e\xa5\xf4\xff\xf8\x8f\xff\x58\x02\x10\xad\x56\x0b\x47\x8e\x1c\x91\x44\xf1\xa1\x76\x81\xef\xb0\x77\x63\xa8\xb1\x70\x73\xa8\xb9\x08\x00\x6e\x20\x72\x82\x49\x30\xb1\x6c\xba\xb2\xbe\x55\xf0\xd7\x2e\x4d\xec\xbe\xf5\x83\x93\x5b\xff\x76\x61\xa8\xf9\x3a\x08\x37\x28\x94\xbe\x5b\x00\x1a\x52\xca\xe0\x5b\xdf\xfa\x96\xc9\x48\x14\x6c\x84\x90\x9e\xba\x1b\xa3\xbf\xff\xfb\xbf\xef\x22\xbc\x87\x60\x0c\xc0\x7d\xbf\xf6\xc1\xc8\x3f\x39\xb1\x56\x78\x26\xd9\x3e\x6a\x2c\x66\xdb\xa3\x3d\x26\x98\xaa\xde\x18\x8c\x37\xa7\x76\xfe\xd7\x9f\xce\x6c\xff\x1f\x20\x2c\x31\x73\x75\x69\x69\x49\x7e\xe7\x3b\xdf\x49\xf3\xf6\xa4\xe9\xbc\x7a\x3c\x2c\x79\xf4\xb0\xb4\x7c\x69\x86\x79\xb7\xb0\x4e\x75\xe3\xe8\xd1\xa3\x62\x72\x72\x12\x33\x33\x33\xc8\xe5\x72\x70\x1c\x47\xa9\x9f\xe6\x23\x99\x19\x41\x10\xa0\x5a\xad\x62\x6e\x6e\x0e\x6f\xbe\xf9\x66\x2f\x76\x4e\x27\x7b\xc1\x06\xb7\xcd\x56\x48\xeb\x8f\x4e\x7d\x20\x00\xc8\xe8\x3e\x69\x17\xe1\x85\x86\xc3\x00\x26\xc0\x98\x74\x18\x93\xc3\xb5\xcc\xf1\xf1\x9d\xec\xd4\x40\xdd\x1d\x15\x4c\xa2\xe1\x06\xb5\xd5\x52\x6b\x71\xb9\xdf\xbb\x56\xcf\xc8\x45\x06\xdf\x06\x70\x9b\x88\xd6\x10\x9d\xed\x3a\x37\x37\x27\xbf\xf7\xbd\xef\x49\x00\x82\x88\xf0\xeb\xbf\xfe\xeb\x98\x98\x98\x10\x44\x94\x65\xe6\x12\x11\x0d\x33\xf3\x18\x11\x4d\x80\x31\x9c\xf7\xc5\x68\x9f\x27\x46\x1c\x49\x6e\xd3\x95\x8d\x7a\x46\xae\x7b\x0e\xaf\x81\xb0\x86\xd0\x2b\xb7\xc2\xcc\x5b\x11\x13\xf2\xde\x7a\xeb\x2d\xb5\xe7\xc2\xd6\x7f\x00\x42\xb7\x6b\xa7\x8e\xd7\x3b\x36\x36\x18\x17\x86\x1a\x17\x8f\xaf\x15\x3e\x4e\x40\x74\x59\x88\x9d\x18\xda\x0c\xab\x50\xc0\xc6\x21\x04\xc2\xb1\xb5\xc2\x73\x6f\x1d\xde\xf9\x66\x33\x23\x37\x88\xc8\x1d\x1f\x1f\xf7\x0a\x85\x82\xa8\xd7\xeb\xca\xa8\x32\x07\x49\x6f\x4f\x27\xf7\xa8\x39\x88\xdd\xf2\x99\xc8\xa1\xa7\x93\x46\x9c\x19\x9f\x4a\x28\x73\x73\x73\x72\x6e\x6e\x0e\x3f\xf9\xc9\x4f\x00\x00\xd3\xd3\xd3\xe2\xc6\x8d\x1b\xb6\xbd\xcf\x69\x70\xaa\x30\xfd\xd7\xf6\x9e\xe6\x54\x30\xd3\xea\x8f\xcd\x59\x90\xe6\x44\xb0\x22\xd0\x9b\x6f\xbe\x89\x27\x9e\x78\x42\x6d\x40\x02\x42\xd7\x73\x35\x20\xac\xad\x96\x5a\x0b\xab\xa5\x56\x39\x52\xb5\x05\x42\xfc\x09\xcf\x76\x05\x36\x08\xb4\x11\xbd\xd7\x00\x78\x8d\x46\x23\x26\x06\x20\x64\xb2\xaf\xbd\xf6\x1a\x3e\xf7\xb9\xcf\xc9\x72\xb9\xac\x8e\xaf\x4c\xca\x20\x94\x1b\x19\x59\x6a\x64\x64\x3e\xca\xa3\xf0\xb3\x12\x11\x81\x7e\xb6\xab\xff\xc6\x1b\x6f\x40\x1d\xa4\x9c\xd2\x3f\x12\x48\x96\x7f\x77\x32\x30\xf9\xd8\xb1\x63\x54\x28\x14\x88\xc3\xd3\xe1\x8a\x92\x50\xba\x7f\xb5\xef\x13\xea\xbc\xd7\xf0\xea\x28\xcd\x0f\xbc\x47\x5d\x42\x9b\x1a\xa5\x2a\xcc\xf9\x62\x70\xa5\xdf\x7b\x6b\xb3\xcf\x5f\x60\xe6\x86\x10\x22\xf8\xd9\xcf\x7e\xa6\x36\xb8\xd8\x76\x16\xb9\xd2\x00\x00\x20\x00\x49\x44\x41\x54\x44\x7f\x2c\xda\xb0\x57\xcd\xd1\xf3\x98\x30\x91\x11\x6e\x53\x17\x4c\x11\xaa\x97\xa1\xd7\x9b\xa6\x63\xa7\xa9\x2d\xf1\xef\xf6\xf6\x76\xaa\xee\x6a\x94\xa5\x1e\xa5\xa6\xe9\xea\x9a\xe9\x2c\xe8\x64\xfc\xeb\xb0\xd9\x88\xad\x93\x13\xc1\x56\x8f\x82\x87\x00\xf0\xd2\xd2\x12\x31\x33\x26\x26\x26\x24\x11\x05\x08\x55\xc3\x3a\x42\xe4\xdd\x61\xe6\x0d\x22\x5a\x45\xc8\xa9\xef\x50\xb8\x91\x69\x19\xa1\x01\xad\xbc\x67\xad\x9d\x9d\x1d\xf9\x27\x7f\xf2\x27\xba\x3a\x48\x00\x64\xab\xd5\xe2\x8b\x17\x2f\xf2\xf4\xf4\x34\xfa\xfa\xfa\x24\x33\xb7\xa2\x95\xbd\xaa\x8e\x2d\x00\xeb\xd1\x32\x96\x55\x44\xf6\x98\x22\x06\x44\x6a\xd2\x9b\x6f\xbe\x89\x77\xdf\x7d\x57\xda\x60\x40\xbb\x8a\xcd\xb1\xd5\x62\xe9\xdc\xf8\xfb\xd0\xa1\x43\x34\x34\x34\x84\x48\x3c\xe6\x3c\x87\xf3\x33\x1b\xf9\x47\xfa\x9b\xee\xd8\x9e\xcd\xef\xd1\x84\x4c\xbc\x9e\x27\x2a\x45\x9f\x47\xd1\x9c\x4f\xae\xc3\xd4\xbc\x72\xa0\xfe\x7a\x24\xd6\x5a\xc7\x8f\x1f\xe7\x4b\x97\x2e\xd9\x06\xc2\x1c\x68\x1d\x49\xd5\xb7\x89\x90\xfa\xe0\x9a\x70\xa5\x19\xa4\x26\x82\xd8\xbc\x39\xe6\x93\x26\x25\xd2\xf2\x74\xaa\xdb\x06\x4f\x37\x43\xd8\xd6\x0e\x33\x4d\x9a\xf1\xdd\x8d\xb1\xd8\xca\x8e\x09\xe9\xce\x9d\x3b\xdc\x6a\xb5\x68\x74\x74\x54\x66\x32\x19\x45\x14\x1e\x42\x9b\x68\x07\xc0\x36\xc2\xcb\x4a\x94\x1b\x79\x07\xa1\xc3\xc0\x03\xd0\xba\x71\xe3\x06\x47\x7a\x7d\x2a\x0c\xbf\xf8\xc5\x2f\x88\x88\xf8\xc0\x81\x03\xd2\x71\x1c\x55\x47\xec\xb0\x88\x3c\x95\xaa\xdc\x5a\x14\xe7\xd7\xeb\x75\xf9\xf5\xaf\x7f\x5d\x2e\x2d\x2d\xa5\xf5\xe9\x1e\x9c\x31\xbd\x4c\x26\x17\x14\x08\x8d\x26\x3a\x76\xec\x18\x47\x1e\x85\x8c\x24\xf4\x15\x5b\x62\xe2\xc8\x56\xee\x4c\x48\x00\xd1\x2e\x2f\xe8\x13\x70\x40\xec\x05\x88\xdc\xb3\x9a\x97\x2c\x8a\x27\x14\x3d\x67\xf4\xc6\x50\xe3\x87\xb5\x9c\x5c\x25\x22\x2f\x9f\xcf\xeb\xc6\xb5\x8e\x50\x36\xe4\x4f\xf3\xfc\xec\x81\xc1\xe8\x70\xd3\xf0\xd6\xa5\x48\x1a\x91\xc5\x9d\x66\xbc\x9b\xd2\x24\xad\x6e\x55\xaf\xe9\x25\xd3\xeb\x4f\x73\x07\xa6\x3d\xbd\x10\x83\xcd\x39\xd0\x8d\x40\x6d\x86\xb5\x4d\x7a\x31\x00\xac\xac\xac\xf0\x7b\xef\xbd\xc7\x03\x03\x03\x28\x97\xcb\x52\x08\xa1\x13\x46\x03\x21\x47\x6f\xa8\x30\x0e\x2f\xca\x91\xe7\xcf\x9f\xc7\x3b\xef\xbc\xd3\x91\x18\x54\xd8\xed\xdb\xb7\xf9\xc2\x85\x0b\xec\xba\xae\xee\xb0\x50\xde\x3c\x2f\xfa\xf5\x01\xf8\x6b\x6b\x6b\xf2\xd2\xa5\x4b\xfc\x37\x7f\xf3\x37\x36\x89\x98\xd6\x17\xac\x02\x3a\x3d\xba\x61\x2d\x22\x7d\xb0\x0c\x60\x66\x6c\x27\xf3\xcb\xff\xde\x85\xb1\x7f\x96\x09\x44\x1e\x1a\xd7\x67\xad\x5a\xa5\x25\x59\x6d\x0b\x4e\xe2\xde\x3e\xbc\xf3\x2f\x7f\x74\x6c\xfb\x5f\x81\xb0\x04\xa0\x36\x37\x37\x27\x5f\x79\xe5\x15\x60\x2f\xd7\xed\x66\x4c\xf7\x6a\x6c\x03\x7b\xb9\x43\x9a\x5d\x60\x4b\xdf\x4b\x19\xbd\xe4\x49\x0b\x4b\x43\xca\x6e\x75\xef\x27\x7f\xb7\x7c\x77\x5b\x06\x00\xe0\xb9\xe7\x9e\x13\x33\x33\x33\x6d\x61\xcb\xcb\xcb\xd8\xd8\xd8\x50\x27\x86\x77\xab\xaf\xa7\xfa\x9f\x7a\xea\x29\xa1\x5f\x21\x3c\x3c\x3c\xac\x1f\x6b\xb3\x6f\x18\xd2\xce\x65\x52\x4f\x3c\xc0\x4b\x4b\x4b\x88\x96\x09\x7b\xcc\x5c\xdb\x28\xfa\x0b\x6b\x7d\xad\xeb\x07\x77\x72\x0f\x26\x6b\x98\x80\x88\xf5\xc7\x4f\x88\xf7\xed\xa7\x4d\xab\x17\xb5\xe8\xeb\xbe\x95\xe2\xaf\x5e\x38\x54\xfd\x77\x3b\xf9\xa0\x02\xc0\x3b\x72\xe4\x88\x37\x32\x32\x82\xf5\xf5\x75\xd3\x60\xb4\x21\x1f\xb0\xb7\x23\x91\x92\x47\x7f\x6c\x1d\xd5\x09\xa1\x3b\xc5\xf5\x8a\x58\x66\xbb\xd3\x1e\x13\x36\xdb\xc0\xda\x1c\x0a\x66\x7f\x74\x22\x70\xb3\x8c\x5e\xda\x66\xeb\x77\x6b\xf9\x3f\xf8\xc1\x0f\xee\x0a\x86\xbe\xbe\x3e\x31\x3c\x3c\x8c\x9b\x37\x6f\xf6\x04\x83\x71\x9f\xb6\x22\x86\xbb\x86\x21\xed\xb0\x63\x95\x31\x6e\xe8\x8d\x1b\x37\x30\x31\x31\x21\x39\x3c\xea\xbc\xea\x0b\xde\xb8\x7a\xa0\xfe\xf3\x89\x9d\xec\x83\xca\x6f\xa4\xaf\x31\x51\x7a\x8b\x3e\x5b\x06\x24\x12\x44\x3f\x39\xae\xe4\x39\xc7\x1e\x58\xee\xfb\xd4\x1b\x53\x95\x45\x06\xd7\x5c\xd7\xf5\xcf\x9e\x3d\xab\xbc\x0e\xd0\xda\xa1\x13\x88\x1e\xbe\xa7\xbd\x5d\xde\x3b\x3d\x69\x75\x76\xe2\x36\xbd\xd6\x29\x2d\xe1\x69\xc4\x94\x36\xb0\xdd\xda\x21\x3a\x7c\x77\xab\xcf\xd6\xe6\xb4\xa7\x13\x9c\xfb\x82\xe1\xcc\x99\x33\xe2\xd8\xb1\x63\x28\x95\x4a\x70\x5d\x17\xd9\x6c\x16\xf5\x7a\x5d\x30\x33\x9a\xcd\x26\xe6\xe6\xe6\xc4\xa5\x4b\x97\x50\xab\xd5\xac\xf9\xef\x25\x0c\xfa\xc4\x9c\x59\x49\x9b\x2e\xbe\xbc\xbc\xcc\x0f\x3f\xfc\x30\x1c\xc7\x21\x00\x2e\x08\xf9\x46\x46\x3a\xf7\xad\x14\x9f\x76\xa5\xc8\x11\x90\xec\x1c\x8c\x08\x43\xdb\x02\x80\x98\x0a\xa2\xf0\xf8\xf0\xbf\x50\x73\xa3\x72\xd3\x1d\xbb\x36\x5a\x3f\xdf\x74\xe5\x16\x11\xb5\x86\x86\x86\x82\xf9\xf9\x79\xaa\xd7\xeb\xba\x7d\x03\xad\x4d\xba\xdd\x60\x33\xb8\xbb\x19\xce\xfa\x3b\x3a\xa4\x37\xbd\x5a\x66\xdd\x69\x76\x8a\xad\x2d\x36\x1b\x4d\x87\xc1\x84\xc9\x1c\x07\x5b\xbd\x66\x99\xa6\x0d\x04\xb4\x8f\x2b\x19\x79\x6c\x61\x64\x09\xe3\x94\x3c\xb6\xbf\xae\x30\x64\x32\x19\x21\xa5\xe4\xaf\x7c\xe5\x2b\xe2\xc8\x91\x23\xa2\xaf\xaf\xcf\xc9\x64\x32\xc2\x71\x1c\x17\x80\x93\xc9\x64\x9c\x4c\x26\x43\x85\x42\x41\x1c\x3c\x78\x10\xa7\x4e\x9d\xe2\x62\xb1\x48\x8b\x8b\x8b\x6c\x69\xdb\x3d\x83\x41\xf7\x32\xd9\x8c\x41\x7d\xc0\xf8\xe8\xd1\xa3\x54\x2c\x16\x55\x78\xa6\xe9\xca\xdc\xc4\x4e\xf6\xc4\x48\x2d\x73\x44\x2b\x27\xde\x09\xa9\x4b\x8b\x78\x6b\x9f\x16\x4e\x40\xbc\x73\x32\xe7\xd3\x70\xcb\xe1\x95\xc5\x41\xef\x22\x28\xf4\x12\xf4\xf5\xf5\xf1\x8d\x1b\x37\x28\x5a\xa6\xab\x1b\x9d\x7a\xa7\x2b\x42\xd0\x91\xd0\xe6\x41\x30\x91\xc2\x66\xb0\xdb\x3a\xce\xc6\x89\xcc\x38\xd3\x50\xb5\xb9\x79\x6d\xf9\xcc\x38\xbd\x1d\x26\x72\x53\x87\x7c\x30\xd2\xe9\x61\xb6\xf1\x34\x61\x97\xb0\xd7\x6d\xd6\x67\xc6\xb1\xe5\xaf\x27\x18\x7e\xf7\x77\x7f\x97\x9e\x78\xe2\x09\x87\xc2\x93\x3b\x72\x60\x14\x0a\x2d\x51\x1e\xac\xbb\x07\x06\xea\xee\x81\xbc\x2f\xca\x0c\x38\x81\x60\x01\x02\xb9\xae\x4b\xe3\xe3\xe3\x7c\xe2\xc4\x09\xd4\xeb\x75\xfd\xf2\xc4\x7b\x0a\x43\x9a\xdb\xd5\xfa\xdb\x6c\x36\xdb\xbc\x4d\x20\xe4\x99\xd0\x77\x7c\xad\xf0\xb8\x40\x34\x03\x1b\x55\x65\x38\x94\xac\xef\x6d\xdf\x4c\x34\x54\xcf\x1c\xbe\x76\xa0\xf6\x83\x66\x86\xb7\x01\x78\x03\x03\x03\x81\x76\x78\x55\x37\x64\x35\x39\x74\x5a\x5c\xb7\xef\xb4\xf7\xbb\x4d\x77\xb7\x65\x9a\x92\x4b\x27\x6e\x1b\x97\x4c\x4b\x07\x2d\x5d\x1a\xc7\x84\x11\x06\x23\x5d\x9a\x07\xcc\x94\x8c\x5d\x61\x38\x78\xf0\xa0\xf8\xf2\x97\xbf\x4c\xd9\x6c\xd6\x05\x90\x23\x46\xdf\xc1\x4a\xf6\xd8\x93\x37\xca\xff\xfe\x53\x37\x06\xfe\xeb\x87\x6f\xf7\xff\xa3\x87\x96\xfa\x7e\xef\xc1\xe5\xbe\xdf\xbe\x6f\xb5\xf8\x2b\x07\x76\x33\xc3\xf5\x8c\xdc\xdc\xcd\x05\x75\x10\x64\x2e\x97\xc3\xf4\xf4\xb4\xdc\xd9\xd9\xa1\x8d\x8d\x0d\x53\x7a\x7f\x64\x18\xf4\x8b\xdb\xbb\x89\x1c\x34\x1a\x0d\x3a\x75\xea\x14\x32\x99\x8c\x2a\x28\xbb\x9b\x0d\xc4\xf4\x66\xe1\x4c\xc9\x73\x86\x4d\x4f\x93\x36\x0d\x61\xfa\x98\xe2\xf7\xf8\xee\x66\x02\x32\x92\x06\xdd\x40\x78\xf3\xc3\x8d\xb7\x23\x29\x11\x0c\x0d\x0d\xa9\xcb\xc8\x4d\x00\x75\xb1\x9c\x26\xd5\x4c\xf5\xc1\x1c\x2c\x13\x56\xb6\xe4\x4b\x4b\x9b\xd6\x57\x69\xa2\xda\xda\xa7\x96\xfa\x55\x98\xc9\xc9\xcd\x41\xb5\x49\x36\x18\xef\x66\xbc\x4d\xa2\xe8\x6d\xb0\x49\x54\x93\xcb\xc3\x92\x26\x4d\x45\x6d\xab\x6f\x72\x72\x52\xbc\xf8\xe2\x8b\x88\x88\x21\xef\x06\x34\xf0\xf4\xdc\xc0\x7f\xf0\x89\x6b\x43\xff\xd3\xc1\x9d\xdc\x97\xf3\x2d\x67\xc6\x95\x18\x72\x40\xfd\x8e\x14\x43\xf9\x96\x98\x39\xb0\x9b\xfd\xd4\xc9\xd5\xe2\x67\x5d\x29\x2a\x4b\x65\xef\x26\x0b\xf8\x42\x08\x39\x3d\x3d\x2d\xd5\xc9\x30\xf7\x12\x06\x7d\xf9\xb7\x49\x69\xed\x98\x8b\x70\x01\x5b\x3e\x9f\xa7\x89\x89\x09\x30\xb3\x00\x90\x09\x04\xb2\xae\xa4\xf2\xf4\x66\xfe\x91\x50\x05\xa2\xe4\x10\x3a\x55\x80\x4e\x1c\xf1\xbb\x76\xe8\x63\xcc\xbf\x08\x83\x75\x77\xfa\x4e\xd9\xfb\xf9\x76\xde\x5f\x01\xd0\xcc\xe7\xf3\xd2\x71\x1c\xdc\xbe\x7d\xdb\x54\x99\x6c\x22\x51\x8f\xb3\x89\x6b\x7d\xd0\xd2\x44\xbb\xc9\x49\xcc\x32\xd3\xd2\x9b\xa2\x98\xb0\xb7\x1e\x3d\xad\xb0\x84\xd9\x06\xc9\xac\xdb\x0c\xd3\xf3\xe8\xc4\x00\x03\x0e\x1b\x91\xa7\x95\x6d\x22\xba\x8d\x39\xd8\xda\xdb\x11\x86\x2f\x7e\xf1\x8b\x94\xcd\x66\x5d\x22\xca\x67\x7c\x1a\x7d\x7e\x76\xe8\x3f\xff\xd8\x9d\xd2\x7f\x97\x61\x71\x80\x80\x88\x31\x86\xbc\x21\xfc\x0e\x27\x7c\x1d\xa6\x81\xc9\x4a\xf6\xb9\x62\xcb\x91\x0b\x83\x8d\x4b\xd1\x25\xf2\xf2\xe4\xc9\x93\x3c\x37\x37\x47\xd1\x72\xf8\x7b\x02\x83\x39\x31\x67\x72\x2d\xf5\xc4\x15\xb5\x5a\x2d\x9c\x3a\x75\x8a\xa3\x59\x68\x01\x20\xbf\x53\x08\x82\x07\x56\xfa\x3e\x9e\x0d\xa8\x80\x08\x28\x9d\x9a\x74\xa4\x8f\x37\x11\x45\x16\xb7\xbe\x7b\x0a\xc4\x70\x98\x8a\x03\x0d\x77\x70\xf6\x40\xfd\xc7\xd2\x41\x8d\x88\x5a\xc3\xc3\xc3\x72\x79\x79\x19\xd5\x6a\xd5\xc6\x11\x4d\xae\x6b\x12\x81\xfa\x83\xe5\x57\xef\x40\x58\xf2\xeb\x9d\x65\xf6\x93\x59\x5f\x5a\xb8\x1e\x0f\xec\x6d\x1b\x8c\x34\x12\x7b\x89\x45\x7f\xcc\xb0\xb4\x3c\xe6\x98\xda\x60\x32\x39\xa6\x09\xbf\x19\x9f\x56\x8e\x4d\x32\xb4\xb5\xe7\xf9\xe7\x9f\x17\x63\x63\x63\x82\x88\x32\x60\x0c\x3e\x7a\xab\xff\x37\x1f\xb9\xd5\xff\xdf\x3a\xa0\x82\xda\x34\x44\x51\xf1\x4c\xda\x01\xd2\x50\xa8\x42\x99\xd1\xdd\xcc\x23\x2d\x97\x6f\xdd\x29\x7b\xd7\x41\x68\xe5\x72\xb9\x20\x9f\xcf\xf3\xfc\xfc\xbc\xde\xa6\x8f\x04\x83\xee\x65\xb2\x71\x2d\xd2\x12\x03\x80\xdc\xdd\xdd\xe5\x83\x07\x0f\x52\xb9\x5c\x66\x00\x82\x88\xdc\x96\x60\xb7\xd0\x12\x07\x26\x2b\xb9\x53\x31\x60\x11\x30\xea\x80\x01\x52\x01\x0a\x07\xf4\xbd\x12\xac\x61\x09\x11\x4a\x4d\xe7\x88\xef\xf2\x9d\xdb\x65\xef\x0a\x08\x2d\xc7\x71\xfc\xc1\xc1\x41\x36\xee\x31\xb6\x71\x66\x9d\x58\x4c\xe4\x30\x61\xb2\x49\x43\xb3\x33\xf5\xce\xd2\xd3\xaa\xfa\x75\x84\xee\x24\xa9\x34\xc0\xdb\x88\x43\x6f\xbf\xcd\xd8\xd6\xeb\x31\xc3\xcc\x3c\x7a\x7b\x6c\x0c\xc1\x64\x0e\x26\xf3\xeb\x96\x47\xef\x57\x9d\x0b\x9b\x2a\xea\x1e\x18\x46\x47\x47\xe9\xe9\xa7\x9f\x06\xc2\x73\x82\xfb\x46\x6b\x99\x13\x9f\xba\x3a\xfc\xcf\x73\x81\x38\xc0\x00\xa0\x56\x31\xc4\xb8\x12\xe1\x06\x21\x39\xb9\x83\x00\x01\xca\x8e\xed\x64\x1e\xb8\x76\xa0\xfe\x6a\x23\x23\xb7\x01\xf8\xfd\xfd\xfd\xc1\xdc\xdc\x1c\x35\x9b\xcd\x7b\x02\x43\x37\xa3\xda\xaa\x7e\x5c\xbd\x7a\x95\x1f\x7d\xf4\xd1\xb0\xcd\x44\x0e\x08\xd9\x9d\x5c\xc0\x27\xd7\x0a\x8f\xe5\x7c\x2a\x28\x00\xdb\x6e\x66\x4a\x28\x03\xc9\xd6\xd3\x48\x6d\xa2\x44\x44\x86\x95\x92\x33\xba\x9b\x39\xbe\x30\xd4\xf8\x49\x2d\x27\x37\x89\xc8\x2f\x95\x4a\x32\x08\x02\x44\xeb\x52\x4c\xc4\xd0\xdb\x6c\xb6\xdf\x26\x21\xd2\xc4\xa7\x39\xb8\x2a\x8f\xcd\xa5\xdb\x89\x1b\xc3\x12\x66\x12\x6d\x27\xc9\xa6\xa7\xb7\x11\xaf\x39\x3e\x7a\x9c\x2d\xcc\xf6\x07\xad\x0c\x9d\xa3\xdb\xfe\x6c\xc4\x6d\xce\xcd\xa4\xc2\x70\xfa\xf4\x69\x4c\x4c\x4c\x08\x00\x59\x02\x0d\x3e\x7c\xbb\xf4\xa5\x99\x8d\xfc\xe7\xd4\xfe\xb9\xd0\x05\xaf\x14\xe8\xf6\x83\xcd\xd4\x11\x46\x1c\x7d\xbb\x92\x06\x5b\x0e\xdf\xb9\x39\xd8\xfc\x00\x84\x46\xb4\x4c\x84\xa3\x89\xbc\x8f\x0c\x83\xae\x6f\x9a\x8f\x2d\x4e\x00\x40\x36\x9b\x15\xd5\x6a\x15\x44\xe4\x33\x73\x0d\xc0\xd6\x56\xc1\xbf\xfe\xe1\x58\xed\x6f\xd5\x1d\x03\xea\x78\x4f\x00\xea\x72\x40\xa8\x99\x69\xfd\xb4\x35\x25\x26\x63\x19\xc9\x61\x7c\xc1\x73\x66\x3e\x71\x7d\xf0\xbf\xcc\xb5\x68\x8c\x99\xf3\x00\xc4\xe3\x8f\x3f\x8e\xe8\xc4\x69\xa9\xfd\x75\x6a\xaf\x3e\x51\x63\x4e\xda\xe8\xe9\x75\x8e\x2d\x52\xd2\x03\xed\x9d\xd7\xe9\xdd\xd6\x1e\x3d\x8d\xd9\x36\xb3\x1e\x33\x8d\xad\xad\xe6\xf7\x7e\xd3\xd8\xbe\x6d\xe1\x36\xd8\xd2\xda\x6c\x85\xe1\xf8\xf1\xe3\x2a\x6f\x56\x30\xca\x47\x36\xf3\x1f\x87\xba\x80\x13\x80\x3a\xd5\x31\x79\x38\xd9\x79\xac\x18\x6b\x84\xce\xc4\xe1\x25\xf2\x99\x80\x86\x11\x9d\xf4\x77\xf4\xe8\xd1\x7b\x06\x43\xa7\x4e\x4c\x7d\x3c\xcf\x53\x97\x62\x47\x97\x88\xa0\xc2\xe0\x95\x8b\x07\x77\x5f\xdd\xcd\xca\x8d\x44\x42\x24\x87\x0f\xe8\x12\x40\x2d\x09\x0f\x41\x8f\xa0\x06\xd4\xad\x38\xd1\x0e\x3c\xc6\xe1\xad\xdc\x67\xce\x2d\x96\xbf\x44\xa0\x41\x00\x79\x22\x72\x9f\x79\xe6\x99\x5e\x9b\xd9\x0d\x26\x1b\x72\x9a\xf9\x74\x75\x29\x0d\xa1\x6d\x79\x7a\x7d\xd2\xca\xe8\x94\xce\x7c\xb7\x11\x56\x1a\xa2\xda\xc2\x3b\x11\x62\xa7\x77\xfd\xe9\x88\x47\xe1\xb9\xc8\x10\xcc\x9c\xcd\x04\x54\xee\x6f\x3a\x53\xba\x8d\x10\x6b\x0e\xea\xa1\xf6\xfc\x21\x8f\x55\x37\xa4\x02\xfd\x4d\xe7\x70\x36\x10\xc3\x88\x8e\xa6\xd4\x0e\xcc\xfe\xc8\x30\x08\x0b\x00\xe6\xc0\x5a\x39\xef\x87\x1f\x7e\x28\x2b\x95\x8a\x44\xb2\x69\x63\x63\xbb\xe0\xcf\x5f\x1a\xdf\xfd\xb1\xda\x37\x6b\xee\x9c\x33\xe5\xb4\x19\x47\xc6\xbb\x00\x65\x1f\xbe\x55\xfa\x4f\xa7\x37\xf3\x8f\x20\x3a\xac\xb6\x54\x2a\x89\xcf\x7e\xf6\xb3\x69\x1c\x4f\x0f\x33\x11\x58\x8f\x37\x3d\x31\x66\x1e\x89\x74\xe4\xd4\xd3\x76\x2b\xa7\x5b\x7e\xfd\xd7\x2c\xa3\x97\xbc\xbd\x96\xdd\x8b\x84\xe8\x45\x1a\xa5\xd5\xd9\x66\x67\x9a\xf9\x14\xc2\x12\x91\x2b\x98\xf2\x82\x91\x57\x4a\x41\xc2\x19\x13\xdd\x28\x3e\x31\x1d\x89\x56\x11\xab\xd3\x04\x08\xa6\x6c\x74\x33\x51\xda\xf9\xc0\x77\x0d\x83\xad\xb0\x5e\xb8\x91\x00\x20\xbe\xf1\x8d\x6f\xa8\xb0\x06\x11\x55\x24\x78\xe5\xdd\x43\xd5\x57\xb7\xf3\xfe\x92\x02\xd0\xbc\x87\x8d\x81\x18\xf8\x70\x15\x6c\xac\x48\x69\x61\x80\x5a\xe6\x91\x0d\x68\xec\x93\x57\x87\xfe\xe9\x50\xdd\x3d\x81\xe8\x48\xf3\xc3\x87\x0f\x8b\xe7\x9f\x7f\x3e\x3a\x91\xbd\xad\x7d\xc2\xf8\xb5\x3d\xbd\x72\xd0\x4e\xf9\xd3\xca\x01\xf6\x22\x88\x2d\x7f\xa7\xf6\xe9\xe5\xa8\x5f\x61\x7c\xf7\x2a\x59\xcc\xf4\x69\x2a\xa6\x8d\x50\x3a\x85\xe9\xef\xbd\x30\x0f\x30\xb3\x60\x66\xb4\x1c\x46\xd3\xe5\x9a\xe2\x7e\x6c\x22\x48\xf4\xcd\x91\xb7\x25\xa4\x19\x1d\x43\x80\x7a\x46\x56\x5b\x0e\xb7\xd5\x7b\xea\xd4\xa9\x7b\x02\x43\xa7\xc1\x13\xd8\xdb\xf9\x7a\x01\x12\x00\xaa\xd5\x6a\x9b\x94\xd8\xcd\x06\xf3\xef\x1c\xae\x7e\x4f\x0a\x48\x65\x08\xc5\xb0\xc2\x22\x19\x39\xbe\x5d\x28\x0a\x53\xf7\xd5\x71\xfc\x3d\xd0\x70\xce\x7c\xf2\xea\xd0\x1f\xe4\x5b\x62\x02\xe1\xfe\x5d\xf7\xc4\x89\x13\x98\x9e\x9e\xb6\x34\x3b\x6e\x9f\xed\xdd\xf6\x74\xe3\xa2\x66\xff\x74\xe2\xec\x69\xb6\xc7\x7e\xda\xa7\xe7\xb7\x31\xac\x4e\xe5\x99\xc4\xa6\x4b\x3b\x1b\x5c\x36\xe2\x4c\xb3\xb7\xd2\x74\x70\x33\x4f\x5b\x7b\x26\x27\x27\x05\x00\x10\x91\x24\x22\x04\x82\xbd\x8d\x62\x78\x46\x30\x47\x36\x81\xb2\x98\xd5\x88\x33\x22\xba\xe0\xf0\xb8\x4f\x95\x46\xa5\x58\xea\xf7\x66\x1b\xae\x6c\xbb\x44\xde\xf0\x40\xde\x35\x0c\x9d\xa8\x3c\x8d\x03\xb6\x3d\x6a\xd3\x76\x74\xb4\xfa\x16\x08\x6b\x97\xc7\x6a\x3f\x59\x29\x79\xd7\xf7\xde\xd2\x19\x3e\xc9\xdc\x03\xed\xd1\x9d\x62\xf7\x4b\xdb\x99\x3b\x84\xc3\x5b\xb9\x5f\xff\xc4\xf5\x81\xaf\x38\x12\xc3\x44\x94\x67\x66\xf7\x93\x9f\xfc\xa4\x59\x74\x27\x35\x4f\x8f\x57\x8f\x8d\x7b\xa6\xe9\xd4\x69\xe9\xba\xf5\xa1\xed\xbd\x13\x03\x32\xdf\xd3\x08\xc6\x46\xc8\x36\x06\x66\x53\x81\xbb\x71\xce\x4e\x8f\xad\x1c\x61\xfc\xc5\x61\x6b\x6b\x6b\xfa\x2a\x55\x9f\x01\xef\xda\x68\xfd\x82\x24\xf8\x89\xab\x95\xdb\x54\xe6\x3d\xc6\x34\x25\x81\x01\xb1\x3f\x7b\xa0\xf6\x73\x68\x37\xaf\x6a\x73\x62\x1f\x19\x86\x34\xd1\x97\xd6\xd9\xe6\x23\x2c\xb6\xc4\x5a\xc3\x95\x0b\xaf\x1f\xdd\xfe\x56\xcb\x91\x1e\x60\xf7\x87\xee\xf1\x0b\x72\xd2\x19\x7b\xfd\xa8\x0c\x01\x72\x1f\x58\xea\xfb\xfd\x27\x6e\x0c\xfc\x96\x88\x88\xc2\x75\x5d\xf7\x2b\x5f\xf9\x8a\x8d\x7b\x9b\xb0\x98\x69\xcc\x74\x69\xba\x75\x5a\x3e\xb3\x2e\xf5\xdd\x09\x59\x91\x92\xae\x17\x8e\x8b\x94\x34\xe6\xaf\x4d\xaa\x74\x52\x11\x3b\x95\xdb\x29\xbd\xd9\x46\x5b\x3d\x12\x80\xf4\x3c\x0f\xbb\xbb\xbb\xf1\x71\xa8\x0c\xae\xce\x0d\xd7\xdf\x59\xee\xf7\xae\x24\xe3\x9b\x5c\x82\x02\xa0\xcd\x9e\xd0\x7f\x19\x8c\x95\x92\x77\xe5\xe6\x60\xf3\x03\x84\x7b\xa6\x3d\x00\x72\x79\x79\xf9\x9e\xc1\x60\x5e\xba\xd8\x69\x1e\xc2\xf4\x5f\xc7\xe9\xb6\xb7\xb7\xe9\xe4\xc9\x93\x52\xad\xfa\x03\xc1\xa9\xe4\x83\x56\xb9\xe1\x4e\x1c\xa8\x66\xa6\x93\xeb\xa4\x90\xb8\x5b\xb5\x85\x4f\xc6\x21\x6c\xf1\x6e\x3a\x52\x35\x68\xf3\x13\xe3\x3b\x99\xb3\xcd\x0c\xdf\x58\xe9\xf7\x6e\x32\xd8\x27\x22\x79\xe6\xcc\x19\xde\xda\xda\xa2\xad\xad\x2d\x1d\x68\xb3\xed\x7a\x9b\xd3\xbe\xd3\xfa\x21\x2d\x9f\xc0\xde\xbe\x42\x87\x5f\x5b\x3a\xdb\x84\x92\x59\xa6\xe9\xdf\x17\x5a\x98\x48\xc9\xa3\xc3\xa3\xff\x4a\x23\xce\xac\x43\x0f\x37\xeb\xb5\xb5\x47\x58\xd2\xb4\xb5\x27\x97\xcb\xe1\xd0\xa1\x43\xa0\xf0\x71\x03\x07\xb9\x4a\xde\x6f\xcd\x6c\xe4\xcf\xb8\x92\x72\xea\xb6\xda\x36\x65\x81\x12\x9c\x51\xf6\x44\x3d\x23\x2b\xaf\xde\xb7\xf9\x7f\x6d\x17\xfc\x0f\x40\x58\x46\xb8\x8f\xba\x75\xf1\xe2\x45\x5e\x5e\x5e\xbe\x27\x30\xa8\xa5\x1b\x3a\x20\xfa\x9f\x84\xbd\x53\xdb\x0a\xab\x54\x2a\x38\x78\xf0\x20\xa2\xdb\x2e\x11\x11\x85\x58\xeb\x6b\xd5\x8e\xad\x17\x1f\x2e\xf8\xd4\x07\x22\xed\x42\x8b\x04\xe8\xb6\xe6\xa9\x82\x13\x4a\x88\x3b\x4a\x25\x71\x98\x0a\x87\xb6\x73\x4f\xee\x66\xe5\xec\x5a\xa9\x75\x0b\xe1\x4c\x36\xcf\xcc\xcc\xc8\x77\xde\x79\xc7\x24\x6e\xb3\xcd\xb6\x3f\xb3\x03\xcd\x7c\x26\x22\xea\x9d\x68\x4a\x07\x13\x51\xcd\xfe\x32\xd3\xe9\x5a\x82\x4e\xbc\x36\xc2\x14\xc6\xb7\xf9\x6e\xe6\x81\x91\x06\x46\x1c\x19\xe9\x4d\x44\x49\x65\x80\x06\x5c\x66\xb9\x7b\xda\xb3\xbc\xbc\xcc\x8f\x3d\xf6\x18\xb4\xf4\xa2\x92\x0f\xbc\xed\x82\xbf\x7b\x64\x33\x7f\xbf\xcb\x94\x8d\xef\x26\x24\xc5\x03\x75\x0e\xca\xa8\x65\x64\xe5\xfb\x27\x37\xff\xf5\x8d\xe1\xc6\x8f\x19\xbc\x18\x9d\x72\xd8\xf0\x7d\xdf\xd7\xf6\x4e\x7f\x64\x18\x6c\x8b\xfb\xcc\x82\xcc\x8e\xb3\x72\xd8\x2b\x57\xae\x70\x74\xec\xa5\x32\x74\x84\xe7\x32\x37\x5d\x49\x33\x1b\x85\x8f\x09\x90\x20\x36\x58\x92\x3a\xee\x50\x99\xd4\xb1\x54\x08\x3b\x22\xbe\x43\x4f\x6b\x08\x88\x21\x98\x8a\x47\xb6\xf2\x4f\xee\xe4\x83\xab\x1b\x7d\xad\x25\x10\x5a\x44\xc4\x67\xcf\x9e\xe5\xcd\xcd\x4d\x6c\x6d\x6d\xe9\x6d\x56\x48\x48\x29\xbf\x30\xd2\xa9\xaa\xf4\x78\xa0\x1d\x99\x4d\xe2\xd1\x8d\x53\xb3\x6e\x18\xf5\xe8\x7d\xa8\xca\x31\xb9\xb6\x49\x00\x66\xdd\xb0\xbc\xeb\x70\xa4\x11\xb6\x49\x54\x7a\x5a\xbd\xbd\x26\x57\xd5\xfb\xc0\x06\x83\xad\x5d\x6d\xe1\x23\x23\x23\x34\x38\x38\x98\xe4\x25\x60\xa3\xe8\x6f\xdf\x1a\x68\x2e\x95\x1b\xee\x48\x9f\x27\xfa\x05\xe0\xc4\xfb\x66\xd4\xf5\xc3\x82\xbd\xc5\xc1\xe6\xd5\xef\x9d\xda\xf8\x7f\x6e\x0e\xc6\xa7\xf1\xad\x20\x3c\x73\xc9\x9b\x9b\x9b\xe3\xb9\xb9\xb9\x7b\x06\x83\x93\x92\x50\x7d\x9b\x83\x65\x76\x74\x5b\x45\xf9\x7c\x1e\xe3\xe3\xe3\x40\x68\xe8\x10\x08\x62\xb3\xd0\x6a\x0c\x36\xdc\x83\xa3\xbb\x99\xc3\xa4\x0e\xbb\xd5\x0e\xbd\x55\xc7\x60\x2a\xfd\x28\x3e\xc8\x16\x9a\x2a\xa5\x1b\x57\x51\x62\x97\xa9\x74\x78\x2b\xf7\x44\x2d\x1b\x5c\x5b\x2d\xb5\x6e\x53\x78\xe7\x35\x4f\x4d\x4d\xc9\x0b\x17\x2e\x98\xba\xbc\x49\x1c\x2a\x4c\x87\xdb\x44\xae\x34\xd5\xc2\x56\x8e\x59\x4f\xa7\x72\xda\xfa\x0c\xed\x44\xa7\x23\xa9\x19\xae\xff\x9a\xef\x3a\x97\x33\x11\xc3\x64\x66\x66\xdd\xb6\x72\xd2\x9c\x29\x69\x08\x66\xb6\x71\x0f\x0c\xd7\xae\x5d\xe3\x87\x1f\x7e\x18\x42\x08\x46\x78\x5a\x46\x00\x82\x5f\xcd\x05\x95\xd9\x03\xf5\x2b\x77\xca\xcd\x3b\xb5\xac\xac\xf9\x82\xbd\x5a\x56\x56\x37\xfa\x5a\xcb\xb3\x07\xea\x1f\xfc\x6c\xa6\xf2\xbd\x77\x0e\x57\xff\x7a\x27\x1f\x7c\x80\xf0\xd0\xe2\x65\x44\xe7\xc0\x56\xab\xd5\xe0\xdb\xdf\xfe\xf6\x3d\x85\xa1\xd3\x8e\x39\x5b\x45\x36\x37\x5d\x0c\xfc\xe2\xe2\x22\xcf\xcc\xcc\xa0\x58\x2c\x02\x40\xc0\xcc\xc4\x82\x68\xb9\xdf\xdb\x3c\xb6\x51\x38\x53\xf0\x9d\x92\xad\x65\x89\xee\x18\xe2\x9c\x76\xca\x53\x92\xb0\x2d\x20\x54\xbd\x32\x52\x94\xa7\x36\xf3\xcf\x35\x32\x72\x6e\xb5\xd4\xba\x03\x0a\xd7\xca\x9f\x3b\x77\x8e\xdf\x7e\xfb\x6d\x8e\x0e\x69\xb6\x21\x9c\x89\x58\x69\xea\x88\x8d\xa0\x6c\x5c\x31\x4d\x34\x77\xaa\xc7\xc6\xf5\x6d\xf5\x9b\xef\x69\xdc\xde\x46\xe0\xa6\x14\x30\xe3\xcd\x27\xad\xee\xb4\xb6\xd8\xe0\x4c\x2d\x67\x7d\x7d\x9d\xa6\xa7\xa7\xa5\xe3\x38\x12\xea\x30\x68\x42\x43\x0a\x54\xb6\x0b\xc1\xd2\xc2\x70\xf3\xc3\x5f\x4c\xd4\xde\xfa\xe0\xe0\xee\x1b\x1f\x8e\xd7\xfe\x76\x61\xb0\xf1\xf6\x4e\x21\xb8\x24\x05\xe6\x11\x5e\x23\xac\x88\xa1\x21\xa5\xf4\xb5\x6b\x01\xee\x19\x0c\xdd\x16\xf7\xd9\xe2\x4c\x51\xd4\xd6\x21\xad\x56\x8b\x66\x66\x66\x64\x24\x0d\x24\x00\xe1\x39\xcc\xb5\x6c\x20\x67\x36\xf3\x0f\x39\x4c\xae\x7e\x16\x2c\x58\x33\xb4\x81\x68\x4d\x0b\xb7\x89\x4d\x8e\x6f\x9c\x51\x0a\x66\x54\x23\x11\x1c\x49\x85\xc3\xdb\xb9\xa7\x01\xac\x2d\x95\xbd\x1b\x10\xd4\x02\x80\xc7\x1e\x7b\x4c\xf6\xf7\xf7\x63\x61\x61\x81\xb8\xfd\x0e\xa5\xb4\x0e\xd1\x1f\x9d\xc3\xa5\x21\x70\x5a\x1e\x5b\xdf\xe9\x75\xa7\x19\xee\xe6\x60\x91\x91\x47\xf7\x20\xd9\x88\x52\x6f\xa3\x59\xa7\x2e\xd9\x01\x7b\xdb\x4d\x62\x33\xdb\x06\xb4\x4b\x49\x33\x6f\x57\x18\xb6\xb7\xb7\xe5\xc6\xc6\x06\x1d\x3d\x7a\x54\x46\xf3\x12\x2d\x75\x13\x6a\x74\x3a\xb7\x3a\x1d\x5d\x9d\xf4\x77\x07\xc9\xf5\x00\xeb\xd1\xed\x49\x4d\x29\xa5\xff\xfa\xeb\xaf\x63\x75\x75\xd5\xd6\x8e\x8f\x04\x83\x6d\xc7\x9c\x69\x70\xc2\x48\x93\x66\x3c\x02\x08\x8f\x01\x19\x1e\x1e\xa6\xa1\xa1\x21\x8e\x4e\x6d\x06\x08\xd8\x2c\xf8\xf5\x4c\x20\xfa\x27\x2b\xd9\x13\xea\x74\x3f\x40\x3f\x24\x59\xa3\x81\x48\x3f\x4a\xd6\x7b\x85\x32\x83\x15\x38\x00\xe2\x13\x02\x09\x70\x18\xc5\x43\xdb\xf9\x67\x8a\x2d\x21\x6f\x0d\x34\xaf\x48\x27\xf4\x4f\x8f\x8c\x8c\xf0\xa1\x43\x87\xf8\xf2\xe5\xcb\x36\xe4\xb1\x71\x4d\xf5\xae\x08\xc1\xa6\x63\xdb\x54\x20\x5d\x3d\xea\xc5\x10\xb7\x71\x6d\x68\xdf\xba\x3c\x34\x55\x20\x18\xdf\xdd\x90\xdd\x2c\xd7\xe6\x28\xd1\x0d\x7c\x06\xc0\x2f\xbe\xf8\x22\x9d\x3b\x77\x8e\x9e\x7e\xfa\x69\x1a\x1b\x1b\x53\x57\xf9\xda\x70\xc2\x66\x57\xa5\xc2\x10\x6d\x09\x46\xc4\x34\x03\x00\x2d\x22\xaa\x6b\xa7\xef\x6d\x01\xd8\x24\x22\x75\x6d\x80\x3a\xed\xaf\x41\x44\x5e\xb5\x5a\x0d\x5e\x7a\xe9\x25\xb9\xba\xba\x6a\x73\x88\xd8\x54\x47\xd5\x56\xa0\xdd\xc6\xb3\xc2\xe0\x68\x85\x49\xa3\x20\x93\x9b\x99\x46\xa8\x8d\xbb\x32\x00\x5c\xbf\x7e\x3d\x56\x9d\x98\x39\x88\x88\x42\x2c\xf7\x7b\x1b\x63\xd5\xec\xf4\x60\xc3\x1d\x53\x6a\x51\xb2\xe8\x37\x29\xa1\x4d\x62\x68\x71\xe6\x77\x12\x46\x20\x50\x76\x6c\x27\xfb\xe4\x68\x2d\x3b\xb8\xdc\xdf\xbc\xd2\xcc\x70\x1d\x80\x2c\x95\x4a\xf2\xd4\xa9\x53\x68\x36\x9b\x58\x5f\x5f\xb7\x49\x8a\x6e\xef\x36\xae\x9e\x96\xce\x0c\x4f\x2b\xdb\x56\x96\x4e\x80\x12\xf6\xba\xdb\xe4\x23\x92\x01\xd6\xf3\xa4\xa9\x59\x3a\xb2\x58\x9d\x0e\xa5\x52\x09\x4f\x3c\xf1\x04\xbd\xf0\xc2\x0b\x34\x34\x34\x24\xf2\xf9\xbc\xa3\xae\x3c\x7b\xf4\xd1\x47\xc5\xb1\x63\xc7\x78\x61\x61\x81\x3c\xcf\xd3\xdb\x62\x73\x4e\x74\x84\x61\x7b\x7b\x9b\xde\x79\xe7\x1d\x59\x28\x14\x30\x30\x30\x10\x58\xee\xd3\xa8\x47\xd7\x04\x34\xa2\xb0\x56\xab\xd5\xf2\xaf\x5d\xbb\xc6\xe7\xcf\x9f\x47\xb3\xd9\x4c\x85\x21\x6a\x87\x8d\x58\xcc\x36\x5a\x61\x70\xb4\xc2\xd2\x3a\x90\x8c\x8c\x9d\x54\x85\x78\x30\xd4\xdc\x04\x00\x44\x9c\x00\x81\x00\x96\xfb\xbd\xad\x99\x8d\xc2\x43\x39\x9f\xfa\xd4\x22\xae\xe4\xbc\x57\x63\x07\x9d\x3e\x7c\xda\xa7\x1e\xa6\xa7\x16\x0c\x31\x54\x77\xcf\x1c\xd9\x2c\x3c\xb8\xd6\xe7\x5d\xda\xc9\x05\x3b\x20\xc8\x6c\x36\xcb\x53\x53\x53\x72\x64\x64\x84\xae\x5f\xbf\x6e\x8a\x55\x1d\x2e\x53\x5a\xa6\x71\x62\x5b\x9a\x5e\xa4\x6c\xa7\xba\x15\x64\x9d\x08\x4a\x6f\x87\x8e\x08\xdd\x88\xdb\x44\x0a\xb3\x4e\x8c\x8f\x8f\xd3\xe7\x3f\xff\x79\x1c\x3c\x78\x50\x10\x91\x03\x46\xae\xd0\x12\xfd\x1f\x5b\x2a\xdd\xb7\x52\xf2\xaa\x4c\x90\xc5\x62\x91\x8f\x1c\x39\xc2\xc6\x1e\x77\x9b\x8a\xd6\x13\x0c\x37\x6f\xde\xe4\x6b\xd7\xae\x51\x10\x04\x5c\x28\x14\x64\x26\x93\x09\x98\x39\x10\x42\xf8\x52\xca\x80\x99\x83\xe5\xe5\x65\xb9\xb0\xb0\xc0\xdf\xfe\xf6\xb7\xe5\xfc\xfc\x3c\x35\x9b\xcd\x54\x18\xb4\xba\xcd\x70\x73\x9c\xcc\xf9\x2a\xa9\x7f\xa8\x47\x17\xe7\x69\xc6\x33\xd0\x4e\x3c\xb6\x74\x71\xda\x27\x9f\x7c\x12\x67\xce\x9c\x11\xd1\xa9\xe1\x65\x00\x93\x00\x8e\x4d\x6d\xe4\x3f\xf9\xd9\x0f\x87\xff\xa3\x42\xcb\x29\xb5\xdf\x2d\x11\xb5\x5c\x11\x89\x01\xb5\x29\x83\x93\x0b\xe3\x75\xaa\x0a\xe3\x9a\xae\x9c\x7f\x63\xaa\xf2\x3f\xbe\x37\xb9\xfb\x5d\xdf\xe1\xad\x48\x57\xf5\x5b\xad\x96\xfc\xda\xd7\xbe\x66\xb6\xdb\x06\x43\x2f\x7d\x62\xa6\xb3\x95\x65\xcb\xdb\xa9\x5c\x5d\x35\x32\x67\x9e\x61\xc9\x67\xc6\x99\xe5\xdb\xe2\xe3\xb6\x15\x0a\x05\x9c\x3d\x7b\x16\xa7\x4f\x9f\x06\xd4\xbd\xd3\x8c\xfc\x58\x35\x33\xf5\xfc\xd5\xe1\x3f\x18\xab\x66\x3e\xf3\xe3\xa3\xdb\xff\xe8\xed\xc3\x3b\x3f\x40\x78\xdb\x93\x57\xa9\x54\xe4\x9f\xfe\xe9\x9f\xea\x17\xbb\xdb\x70\xe3\x23\xc1\x90\xc9\x64\x84\x76\x5b\x52\x47\x18\x2c\x71\x77\x9d\x47\xdf\x53\x4d\x29\xbf\xea\x49\x53\x19\x4c\xe9\x10\x77\xce\x9d\x3b\x77\x68\x74\x74\x94\x07\x06\x06\x98\x88\x18\x80\x64\x66\xde\x29\x04\x8d\x7a\x46\xfa\xd3\x9b\xf9\x07\x05\x93\xd0\x4f\x04\x57\xa5\x86\x5b\x22\xc2\x66\xc4\xf3\x77\x8a\x78\xd4\x06\x23\x02\x62\x6b\x24\xb6\x4b\x42\xb7\xad\x2b\xc5\xe0\xe1\xad\xfc\x27\x47\x77\x33\xc3\xcb\xfd\xde\xd5\xa6\xcb\x1e\x08\x2c\x84\xe0\xc7\x1e\x7b\x8c\xcb\xe5\x32\xb4\xbd\xb8\x36\x8e\xae\xc3\x66\xc2\xaa\x3a\xd0\x54\x19\x60\xc4\xdb\x44\xbb\xae\xb3\xa6\xf5\xab\x4d\x3d\xb5\x71\x3e\x9b\x2a\x95\x16\x6f\x72\x69\x9c\x3c\x79\x92\x5e\x7c\xf1\x45\x44\x0b\xf0\x32\x00\x72\x8e\xc4\xd0\x03\x2b\xc5\x67\x3f\x75\x65\xf8\x7f\x1e\xae\xbb\x9f\x12\xa0\xbe\xd1\x6a\xe6\x63\x77\x06\x9a\x3f\xaf\xe6\x83\x2d\x66\x0e\xf2\xf9\xbc\xcc\xe5\x72\x7c\xf3\xe6\xcd\x4e\x2a\xe0\x47\x82\x41\x4a\xd9\x13\x0c\x29\x71\x77\x9d\xc7\xc1\xde\x41\x37\x7f\xbb\x3d\xb6\x7c\x11\xfe\x32\xcf\xce\xce\xf2\x83\x0f\x3e\x88\x4c\x26\xc3\x00\x02\x22\x92\x20\x60\xad\xd4\xaa\x64\x03\xea\x3f\xb8\x93\x9d\x81\x42\x6d\xcd\x40\x08\xdf\x43\x4a\xd0\x4f\xea\xa0\xe8\x48\x8f\xd8\x39\x1b\xa5\x23\x4e\x36\xa7\xab\x66\x10\x53\x76\xb8\xee\x3e\x7a\x74\xbd\xf8\x58\xd3\x95\x4b\x1b\xc5\xd6\x0a\x13\x98\x88\x78\x64\x64\x84\xcf\x9e\x3d\x8b\xe8\xa4\x71\x73\x00\xd5\x93\x46\x20\xa6\xce\x9a\xd6\xe9\x66\x9c\xd9\xcf\x66\xf9\x69\x1e\x2c\x58\xd2\xf4\x9a\xc7\x9a\xfe\x8b\x5f\xfc\xa2\x78\xe8\xa1\x87\xe0\xba\xae\x0b\x20\x07\xa0\xd8\xdf\x70\x0e\x3d\x37\x3b\xf4\x5f\x9c\xbb\x59\xfe\x27\x85\xc0\x99\x56\xbd\x99\x91\x34\x3a\xba\x9b\x39\x38\x3b\x5a\x7f\x3d\x70\x50\x03\x10\x8c\x8d\x8d\x05\xab\xab\xab\x14\xdd\x79\x61\xb3\x5b\xfe\xce\x61\xe8\x21\x9d\x2d\x3c\xad\xac\x36\xa3\x3a\x4d\xbf\x35\x0b\x49\x33\xd8\x4c\xae\x09\x3d\xec\xbd\xf7\xde\x93\x8f\x3e\xfa\x68\x78\x17\x59\x68\x64\x07\x0c\xe6\xa5\x01\x6f\xa3\xcf\x73\x86\x0e\x54\xb3\x47\x84\x76\x52\x47\xdb\x11\x36\x48\x8c\x6c\x28\xa2\x30\xd4\xac\x30\x4d\x42\x39\xea\xba\x56\x95\x2f\xef\x8b\xc9\xa3\x1b\x85\xcf\x8c\xed\x64\x47\x37\x8b\xfe\x8d\x5a\x56\x36\x19\x8c\x68\xce\x82\x1e\x78\xe0\x01\x04\x41\xa0\xdc\x78\xa6\xa4\x33\x09\x42\x6f\x8d\x69\xc8\x76\x32\x68\x6d\xe9\x4c\x3b\xc4\x54\xb5\x6c\x83\x68\x93\xdc\xb6\x3c\x7a\x9b\xe3\xb0\x2f\x7c\xe1\x0b\xf4\x89\x4f\x7c\x82\x8a\xc5\xa2\x20\xa2\x1c\x80\x7c\xd6\xa7\xe1\x07\x97\xfa\x7e\xe5\x85\xcb\xc3\xff\x62\xb2\x92\xfb\x9c\xc3\xe1\xe9\x29\x60\x75\x6e\x3b\xa1\xcf\x73\x8e\xe6\x7c\xe1\x2d\x0c\x35\x2e\x32\xc1\x03\x10\x4c\x4f\x4f\xcb\x0b\x17\x2e\xe8\x88\xfc\xff\x09\x0c\x96\x6f\x5b\xdd\x69\xf9\x4d\xbc\x6e\x9b\xa8\x75\x8c\x44\x7a\x26\x95\xc8\xcc\x64\x52\xb3\x19\xa6\x73\xda\x58\x4f\x64\x66\x4c\x4e\x4e\x4a\x22\x52\xee\xd8\x40\x0a\xc8\x5b\x03\xcd\xb5\xe1\x5a\xe6\xe0\x50\x74\xdd\x2a\xb0\xb7\x11\x3a\x54\xa4\x06\x89\x10\xab\x50\x61\xe3\x23\x62\xd0\x13\x47\xcd\x21\x10\x04\x53\x76\xa8\xe1\x3e\x7a\x7c\xbd\xf8\x89\x7c\x4b\xb4\x36\xfa\x5a\xb7\x5b\x0e\x4b\x10\xa4\xeb\xba\x98\x9a\x9a\xc2\xa9\x53\xa7\xe0\xba\x2e\x1a\x8d\x06\x35\x1a\x0d\x1b\xb2\x4b\x24\x30\xa6\xf5\x8f\xd9\xd1\x36\x63\xd6\x26\x25\xcc\x01\xd6\x89\x49\xff\x36\xfb\x7c\x4f\x17\xe9\xf1\x44\x44\x53\x53\x53\xf4\xec\xb3\xcf\xd2\x53\x4f\x3d\x45\xe5\x72\x59\x10\x51\x86\x88\xf2\x42\xa2\x7c\x68\x3b\xf7\xc0\x27\xaf\x0e\xfd\x37\x67\xee\x94\xfe\xab\x7c\xcb\x99\xa2\xa8\x13\xf5\x9b\x43\x43\x26\x45\x34\x52\x73\x1f\xdc\xc9\x07\x57\x56\xfb\x5a\x0b\x08\xd7\x90\x05\x93\x93\x93\x98\x9b\x9b\xa3\x48\xc5\xf9\x3b\x81\xc1\x12\x66\x73\x02\xa5\xd9\x76\xa6\x24\xd6\xd5\xe3\x3d\xc4\xab\x5f\xa9\xa5\x37\x2e\x0d\xe1\x53\x0d\xe8\x94\xf8\xb8\x8c\xa5\xa5\x25\xce\xe5\x72\x34\x36\x36\xc6\x00\xfc\x68\xd2\x2e\x08\x1c\x04\x37\x07\x9b\x4b\x63\xd5\xec\x91\x72\xc3\x19\x8d\x75\x24\xd5\xf4\x18\xfd\xa8\x0d\x2a\x50\x22\x15\x42\x81\x90\xe4\x8b\xce\xf1\x49\x44\x0d\x54\x38\x21\x1b\xd0\xe8\x64\x25\xf7\xe9\xe3\x6b\x85\x47\x41\xd8\xd9\x2a\xb4\x36\x02\x27\x44\xf4\x6c\x36\x8b\x43\x87\x0e\xe1\xa1\x87\x1e\xe2\xbe\xbe\x3e\xf2\x7d\x9f\x76\x76\x76\x80\xbd\x83\xa2\x0f\x30\x19\x7f\xaa\xef\xcc\xc1\xd4\x6d\x07\xb3\xac\x34\x69\x6c\xba\x12\x75\x37\xab\xde\xbf\xfa\x38\x48\x44\xc6\xf2\xf4\xf4\x34\x3d\xfb\xec\xb3\x78\xf8\xe1\x87\x51\x2a\x95\x84\xe3\x38\x19\x66\xce\x13\xa8\xef\x40\x35\x73\xec\x99\xb9\xc1\xff\xe4\xa9\xf9\x81\x7f\x36\x54\x77\x9f\xa2\xf0\x44\x0c\x20\x5a\x70\x96\x08\x5c\x8a\x4f\xc4\x10\x8c\xdc\xf8\x4e\xee\xc1\x5b\x03\xcd\x37\x77\x73\xc1\x26\x00\xbf\x54\x2a\xc9\x4c\x26\xa3\xdb\x13\xf7\x0c\x06\x2d\x0f\xb4\xb4\x69\xb6\x92\xcd\xfb\x67\x22\xbe\x5e\xbe\x99\x07\x40\xfb\xd2\x8d\x34\x31\x64\xe3\x62\x7b\x0c\x68\xa3\x81\x56\x3d\x6d\x71\x71\x91\x8f\x1c\x39\x82\xbe\xbe\x3e\x8e\x5c\xb1\x01\x33\xfb\xbe\x0b\xff\xd6\x60\x73\x65\x74\x37\x3b\x39\xd0\x70\x46\xe3\xf5\x4e\x88\x0f\x2a\xd1\xd4\x27\x75\x6c\x4d\x62\x6c\xe8\x87\x17\x90\x76\xfe\x0d\x47\x50\x91\x9e\x26\x2a\x35\xef\x3b\x53\x53\x9b\xf9\x17\x8f\x6d\x14\x1e\x91\x40\xb5\x92\x0f\x2a\xbe\xc3\x81\xea\xa0\xd1\xd1\x51\x3e\x79\xf2\x24\x4f\x4f\x4f\x23\x9f\xcf\xd3\xd2\xd2\x92\xee\xde\x34\x19\x86\x29\x19\x61\x89\x37\xa5\x8c\xad\xff\xcc\x7c\x3a\x42\xd9\x0c\x54\x18\xf9\x18\x00\x9e\x7c\xf2\x49\x7a\xf6\xd9\x67\x71\xf2\xe4\x49\xd1\xd7\xd7\xe7\x20\xf4\x1e\xe5\x89\xd1\x3f\xba\x9b\x3d\xfa\xe4\x8d\x81\xff\xf0\x99\xb9\x81\xff\x7e\x62\x27\xfb\x59\x47\x8a\x7e\xa2\x70\x57\x5a\x72\xb1\x0d\x45\xf6\x58\x72\x5c\x90\xaa\x2d\x23\x69\x78\x74\x37\x73\xf0\xda\x68\xfd\x75\xdf\xe1\x3a\x11\xf9\xa3\xa3\xa3\x41\x64\x8b\xdd\x33\x18\x8c\x3e\x35\xc3\xd5\x63\x63\xe2\xb6\xb1\xd1\xcb\x37\x25\x4d\x5b\x1e\x73\x2d\x93\x5e\x89\x4d\x15\xb0\x01\x6c\x6b\xa0\x4d\x47\x14\x00\xf8\xf2\xe5\xcb\x3c\x35\x35\x85\x62\xb1\x28\x95\x94\x20\x22\xbf\x19\xde\x41\x7c\x67\x74\x37\x73\x68\xa0\xe1\x8e\x42\x0d\x44\xf4\xc4\x24\xac\xf3\xe7\xf6\xd7\xe4\x3b\x31\x27\x92\x78\x4b\x3e\x62\xca\xf4\xb5\x9c\x63\x33\x9b\xf9\xcf\x1e\xdd\xc8\x9f\x75\x24\xb5\x2a\x79\x7f\x5d\xed\xd7\x25\x22\x14\x8b\x45\x3a\x7c\xf8\x30\xce\x9d\x3b\x87\xc9\xc9\x49\xba\x72\xe5\x8a\xd9\x17\x0a\xee\x6e\xb3\xd4\x80\xbd\x1f\xd3\x98\x88\x9e\xbe\x23\xa3\x01\x80\x8f\x7f\xfc\xe3\xe2\xa9\xa7\x9e\xa2\xa7\x9f\x7e\x9a\xc6\xc7\xc7\x85\xeb\xba\x0e\x33\x67\x88\x28\x0f\x46\x69\x7c\x27\x7b\xfc\xa9\xf9\x81\xff\xf8\x99\xb9\x81\x7f\x3a\x59\xc9\x7d\x2e\x23\xc5\x30\xa2\x95\xfa\xaa\x43\x62\x27\x05\x12\xbb\xad\xcd\x03\x18\x11\x4e\xc9\x73\x66\xb2\x01\xd5\x23\x7b\xa2\x41\x44\xf2\x81\x07\x1e\xe0\x68\x9e\xe0\xae\x61\xb0\xbc\xa7\xcd\xea\xdb\x24\xb1\xf9\x74\x33\xdc\xad\x79\x08\xed\x88\x6f\xe3\x58\x69\x8f\xe9\x47\xee\xe4\x6b\x87\x19\xfe\xdb\xbf\xfd\xdb\x62\x60\x60\x40\x20\xbc\xff\xba\x0c\x60\x0c\x8c\xa9\xbc\x2f\xee\xff\xe4\xd5\xa1\xdf\x3e\xb9\x5a\x78\x54\x68\x18\x1c\xcf\x4d\xc4\x97\x3c\x26\x50\x51\xdb\x8b\xf1\x6e\x52\x42\x6a\x10\x03\x80\x5f\xcb\xc8\x0f\x67\x0f\xd4\xfe\xcd\xe5\x03\xb5\xef\xad\x96\x5a\x0b\x2d\x97\x6b\xcc\xec\x11\x91\x8f\xd0\x6d\x2c\x99\x59\x7a\x9e\x87\xb9\xb9\x39\xfc\xe8\x47\x3f\x92\xa3\xa3\xa3\x62\x6d\x6d\xcd\x36\x67\xb3\x07\xee\x2e\xef\xe6\x63\x33\x52\xe3\xef\x4f\x7f\xfa\xd3\x62\x7a\x7a\x5a\x49\x40\x11\xc5\xbb\xcc\xec\x12\x28\xdb\xe7\x39\x83\x47\x36\x73\x67\x1e\x5a\xea\xfb\xd2\xc4\x4e\xf6\x05\x57\xd2\xa8\x02\x9c\xf4\xd3\xc0\x10\x09\x55\x6d\x02\x48\xdf\x93\xd2\xbe\x15\x38\x4c\xe3\x0b\xae\x9c\x3f\xbe\xf9\x8f\xdf\x3f\xb8\xfb\x32\x83\x37\x88\xa8\xb1\xb6\xb6\x26\xff\xec\xcf\xfe\xcc\xa6\x52\xa7\xc2\x90\x92\xb6\x93\x6a\xde\x0b\x6e\xf6\x52\x97\x19\x2f\x00\x48\x93\xc1\x76\xcd\xb0\x8f\xc6\x98\xe5\x40\xcf\x7f\xe8\xd0\x21\xf1\xe2\x8b\x2f\x2a\xb7\x5f\x16\x8a\x28\x80\xa9\x5c\x8b\xee\x7b\x7a\x6e\xf0\x37\x1f\x5a\xea\x7b\xd2\x91\x24\x62\xa5\x56\x7b\xda\x16\x08\xaa\xb0\x48\xe4\x5b\x89\x24\x4e\xb3\x97\x56\x54\x59\x09\x3e\xb0\x6c\x39\xbc\xb2\xd6\xd7\xfa\xe9\xec\x68\xed\xcf\x6f\x0c\x35\x2f\x6c\x15\x5a\x6b\x81\x40\x0d\x14\x5e\xec\x87\x88\x38\x88\x08\x52\x4a\xb9\xbd\xbd\x0d\x20\xbc\x69\xe9\x8d\x37\xde\xb8\xdb\x7e\x82\x10\x42\x44\xa7\xab\x43\xcd\xca\x9e\x39\x73\x46\xe4\x72\x39\xcc\xcc\xcc\xc0\x75\x5d\xf4\xf7\xf7\xeb\x7d\x2a\x10\xaa\x44\x2e\x18\xd9\x9c\x4f\xc5\xf1\x6a\x76\xea\xc4\x6a\xe1\xb9\xa9\xcd\xfc\xaf\xf5\x37\xdd\xd3\x82\xa9\x64\x5a\x95\x1c\xdb\x5b\x1d\x50\xc0\xd2\x7f\x49\x9f\x01\xbb\xb9\x60\xf6\xdb\xa7\xd7\xfe\xb3\x95\x92\x77\x11\x84\x0a\x00\xef\xea\xd5\xab\xf2\xfb\xdf\xff\xbe\x9e\xa3\xdb\x44\xa6\x2d\xcc\x46\x18\x9d\xe2\x7b\x65\x36\x69\x44\x15\xa7\x23\x23\xa1\x0e\x84\xc9\xe5\x6c\xdf\xdd\x66\x26\x6d\xf9\xda\x9e\xdf\xfb\xbd\xdf\x13\x99\x4c\xc6\x8d\x2e\x74\x2c\x01\x18\x63\xe6\xc3\x0e\xd3\xb1\x73\x37\xfb\x7f\xed\xf1\x9b\xe5\xe7\xb3\x81\xc8\x02\x6a\x40\xa3\x81\xb4\xbd\x31\xc2\xc3\xce\x12\xc4\x8e\x09\x24\x8c\x67\xed\x2a\xaf\x64\x96\x9b\xa3\x11\x0e\x89\x22\xca\x93\x50\x8d\xf4\x1c\x5e\x58\xeb\x6b\xfd\xed\xfc\x48\xfd\xd5\xc5\x81\xe6\x7b\xeb\x7d\xad\xdb\x9e\xcb\x6a\x93\xbb\x1f\x5d\x33\xa6\x60\x93\x08\x89\x25\xac\x33\x24\x18\x2c\x2c\x2c\xb4\xc1\xfd\xdd\xef\x7e\x57\x02\xc0\x0b\x2f\xbc\xd0\xd6\xf7\xc5\x62\x11\x63\x63\x63\xf1\x77\x44\xac\x3a\xf2\x0b\x66\x16\x51\x58\x16\x0c\xb7\xe4\x39\xa5\xb1\x9d\xcc\xcc\xf4\x66\xfe\xc9\xa9\xcd\xfc\xa7\xfa\x1b\xee\x23\x0e\xd3\x70\xdc\x0f\x11\x12\x93\x86\xcc\xa1\xe3\x21\x61\x34\xac\xc1\x9f\xf8\xbd\xa3\x13\xf5\x54\x1e\xd5\x5b\xb1\xcb\x9b\x71\xa7\xdf\xfb\xee\x77\x4e\xaf\xfd\xe3\x7a\x56\x2e\x02\xa8\x04\x41\xe0\x7f\xf5\xab\x5f\x4d\x43\x56\xf3\xb1\x21\xb6\xfe\xd8\xf2\x77\xf2\x28\xf5\x92\x27\x2d\x4e\x00\x7b\xe9\xbf\x53\x85\xbd\xa4\xe9\x45\xac\xb5\x35\xee\xd0\xa1\x43\x78\xe1\x85\x17\x90\xc9\x64\xf4\x5b\x4e\x47\x01\x4c\x12\xe3\xd8\x7d\x2b\xc5\xa7\x7f\xf9\xda\xe0\xe7\x8b\x2d\x51\x6e\xe7\xfe\x89\xfb\x15\x88\xc7\xaf\x0d\x22\x53\x8a\x30\x18\xa6\x6d\x12\x9f\x3c\x4d\xe9\x79\x12\xa2\x62\xdf\x17\xbc\x51\xcd\x05\x97\x96\xfb\xbd\x37\x6e\x0f\x78\xef\x2e\xf7\x7b\xb3\x95\x9c\xbf\xd6\x70\x65\x95\x45\x28\x39\x80\xf8\x57\xf5\x85\x34\xca\xed\xd4\x77\xfa\x7b\xbb\x14\x60\xb8\x8e\xa4\x6c\xc1\x17\xa5\xe1\x5d\x77\x62\xbc\x9a\xbd\xff\xf0\x56\xfe\xf1\x91\xdd\xcc\x63\x85\x96\x38\x26\x18\x25\x8a\xf3\xe8\x27\xb0\xf7\xae\x36\xb6\x2b\xa3\x2a\x9d\x55\x17\x55\x79\xe4\xfb\x07\x77\xff\xe5\x0f\x4e\x6c\xfe\x2b\x29\xb0\x02\xa0\xb6\xbe\xbe\x2e\xbf\xf9\xcd\x6f\x76\x52\xc3\x3b\x31\x50\x5b\xbc\xed\xb1\x11\x40\x2f\xe5\x74\xac\x5b\x87\x2e\x8d\x5a\x6d\x80\xa5\xd9\x1d\xdd\xc4\x9e\x59\x17\x00\x88\xc3\x87\x0f\xe3\x97\x7e\xe9\x97\x30\x32\x32\x12\x72\x3d\xa0\xc4\xcc\xc3\x00\x26\x09\x34\x75\x68\x3b\xfb\xf8\x73\xb3\x43\x5f\x18\xdd\xcd\x4c\x86\x59\x74\xde\x9e\x70\x2b\xdb\x49\x81\xba\xea\xd4\x76\x9e\x60\xac\x27\x47\x25\x1a\xea\x53\x5b\x19\xba\x9b\x20\x76\xb8\x30\x18\xf0\x02\xc1\x1b\xf5\x8c\x5c\xd8\x2c\xfa\x57\x2a\x79\xff\xea\x4a\xc9\xbb\xb2\x9d\xf7\x17\xab\xb9\x60\xad\x9a\x0b\x6a\x9e\xc3\x5e\x04\x6b\x1b\x81\x60\xef\xa3\x6c\x00\xf5\xee\xe6\x7d\xca\xf6\x37\xdc\x52\xc9\xf6\x5e\x6e\x19\x00\x00\x10\xcd\x49\x44\x41\x54\x73\xc6\x86\x6a\x99\xa9\xd1\xdd\xcc\xa9\xc1\xba\x7b\xff\x40\xdd\x3d\x96\xf3\x00\xca\x10\x35\xef\xc5\x61\x87\x51\x06\xc8\x55\xba\x7f\xdb\xf2\x97\x98\xc0\xdb\xc3\xf4\x8b\x31\xdb\xc2\x34\x89\xa1\x09\x8e\xa8\x0c\x4e\x0c\x6e\x93\x26\xc2\xc3\xc7\xb6\xce\x9f\xd8\xfa\x83\x8b\x07\x77\x5f\x06\x42\xd5\xe9\x0f\xff\xf0\x0f\xef\x5a\x6d\xc4\xfe\x99\xf2\xdd\xa8\xf3\xd6\xfc\xca\xa8\x06\x3a\xab\x3a\xfa\x93\x96\xae\x93\x88\x4a\x4b\x1b\x13\x4d\x36\x9b\xc5\x67\x3e\xf3\x19\x75\x4a\xb4\x8b\xf0\x40\xb2\x61\x00\x13\xcc\x3c\x55\xf2\x9c\x13\x9f\xb8\x3e\xf8\x1b\xf7\xad\x16\x1f\x21\x09\xa1\x7b\x44\xda\x45\x3f\xda\xb9\x3d\x10\x0e\xb2\x86\xcd\xc9\xf4\x44\xb2\x36\x2a\xe6\xa8\x11\x62\x70\xd4\x3b\x6a\xf3\x7b\xa2\xa0\x25\xe9\x54\xf9\x6a\x1d\x55\xa8\x6e\x40\x32\xe0\x49\x42\x2d\x10\xbc\xe6\xb9\x72\xad\xe9\xca\x8d\xba\x2b\x37\xea\x19\x59\x69\x66\x64\x55\x12\xfb\x92\xd0\xe2\xd0\x88\x13\x82\x91\x71\x24\x65\xf3\x2d\x51\xca\xf9\xa2\x5c\x6c\x39\xc3\xf9\x96\x18\xcb\x48\x1a\x76\x24\x0d\x13\xa3\x48\xa1\x7a\x64\xd1\xf9\x35\x2a\xa5\xbd\xc1\xf1\x67\x4a\xbf\x24\x49\x35\x79\x62\x12\x44\x0a\xe3\x51\x12\x57\x0a\x78\xb3\xa3\xb5\xff\xf3\xaf\x1e\xdc\xf8\xe7\x08\xf7\x30\x34\x5e\x7f\xfd\x75\xf9\xfe\xfb\xef\x77\x63\x9a\xb6\x38\x58\xe2\x7b\x61\xd0\xb6\x38\xb3\x2c\xb3\xcc\x3d\xef\x66\xef\x76\xd3\xd7\xf6\xfb\x6d\x7b\x3a\xe6\xf9\xc2\x17\xbe\x20\xc6\xc6\xc6\x14\x51\xe4\x01\x0c\x22\xf4\x40\x1d\x76\x25\xcd\x9c\x5d\x2c\x7d\xfa\xd1\xc5\xfe\x5f\xce\xfb\xa2\x08\x40\x1b\x1c\xbb\xfe\xa7\x3f\xed\x7e\x15\x7b\x58\x17\xbc\xea\x29\x4f\x5a\x39\xe9\xad\x4a\x52\x5a\x61\x30\x31\x34\xad\xd6\xd4\xc6\x1b\x22\xae\xd3\xd3\xc9\x23\x61\x84\x31\xc2\xa3\x61\xde\x9c\xaa\x7c\xe3\xe2\xc4\xee\xbf\x69\xb9\x7c\x05\x76\x82\x30\x9f\x5e\xec\x8b\x7b\xf1\xec\xbb\x1e\xf3\x06\x21\x95\x99\x90\x40\x4e\x5a\xbc\xfe\x0d\x2d\x5c\x85\xb1\x91\x5f\x7d\xeb\xe1\x52\x0b\xdb\x53\xc6\x87\x1f\x7e\xc8\x00\x30\x39\x39\x19\x6e\x44\x0f\x37\x8e\x78\x20\x34\xa5\x40\xfd\xf6\x80\x77\xe7\x4e\xb9\xb9\x32\xba\x9b\x99\x28\x79\x4e\x39\x76\x23\x42\x1b\x76\x65\x20\x1a\x8d\x4d\x00\xea\x80\x18\x89\x7f\x37\x46\xc2\x76\x05\x2a\x24\x42\x3d\x77\xbb\x06\x61\x43\x5e\x3d\xbf\x0d\xf9\x13\x0e\xaf\x16\x29\xc6\x46\xbe\x61\xc4\x86\x12\x4b\x33\x80\x91\x48\x8d\xf8\x9a\xe3\x68\xb6\x99\xa3\x38\x75\x8f\x9f\xb6\x58\x3e\xe9\x83\x3d\xb4\x92\xcc\xfc\x27\x52\x95\x63\x69\xa9\xfa\x45\x82\xb1\x54\xf6\xe6\xbf\x7b\xff\xc6\x9f\xcc\x8e\xd6\x7f\x14\x08\xbe\x83\x70\xa7\x5b\x83\x99\x5b\x8b\x8b\x8b\x58\x59\x59\x31\x71\x00\xb0\xab\xe6\x7a\x9c\xc9\x3b\x04\xf6\xe2\x51\x1a\x7f\x31\xd3\xe8\x38\xd6\xd3\xa3\xdf\x20\xa4\x23\xb5\xea\x1e\x69\x74\x97\xfe\x0d\x2d\x9f\x4e\x7d\x7a\x19\xea\x5b\x01\x6f\x36\x50\x58\xd2\x8b\x3b\x77\xee\xc8\x56\xab\x45\x87\x0e\x1d\x92\x14\xde\x41\xe1\xc7\xbb\xa7\x08\xcd\x9d\x5c\xb0\x79\x6d\xb4\x7e\x5d\x30\x65\x47\x6a\x99\x31\x97\xc9\x35\xd5\x9f\x78\xf9\xb8\xee\x75\x32\x54\x85\xb0\x25\xea\x2e\x82\x08\xf9\x29\xf9\x25\x20\x59\x3b\x15\xe7\xd3\x11\x52\x15\x95\x20\x3a\x69\x75\xab\x32\xc2\xfa\x39\xba\x7b\x2f\xf4\xeb\x2b\x3d\x3e\x0e\x43\xa2\xca\xc5\xb3\xf3\xa4\xf2\x26\x75\xb6\xb5\x11\xd4\xd6\x8e\xb0\x4c\x5d\xfd\x53\xf9\x10\x13\x45\xd2\x17\x68\xab\x23\xc1\xf5\xbd\x75\xeb\x7d\xc3\x04\x34\x5d\xae\xbd\x75\x64\xe7\xfc\x0f\x4e\x6c\x7e\x73\xbb\xe0\xbf\x0f\xa2\x05\x00\x2b\x00\x2a\x44\xe4\xb5\x5a\x2d\x79\xfe\xfc\x79\x04\x41\xa0\xf0\x42\x27\x0c\x15\x66\xc3\x05\x5d\x8d\x31\xd3\xeb\xf8\x09\x23\x5d\x3c\x9a\xe8\x2c\x0d\xd2\x88\x2a\x66\xc8\xb6\xfd\x10\xe6\xb7\x0d\xb1\xf5\x82\x6c\x06\xb3\x59\x99\xce\x09\x4c\xe9\x60\xe6\x63\x00\x58\x5e\x5e\xa6\xb7\xdf\x7e\x5b\x3e\xf0\xc0\x03\xc8\x66\xb3\x89\xa4\x00\x9a\x0c\x6e\xf8\x2e\xea\x37\x07\x1b\x37\x57\xfa\x5b\x6b\x23\xb5\xcc\x78\xb1\xe5\xf4\x03\x94\x20\x61\x84\x61\x21\x62\x84\x15\xa8\x25\x21\xba\x56\x10\x72\x42\x63\x1b\xab\x06\x7c\x98\x25\x71\xc3\x52\x5c\x9e\xee\xe1\x8a\x10\x46\x19\xa5\x50\xe5\x42\x43\x74\x7d\xf9\x08\x12\xe6\xac\x7b\x70\x34\x99\xac\xd6\x15\xe9\x2e\xe0\xf0\x9d\x11\x9f\x84\x08\xc5\xb9\xd1\xe6\x6e\x56\x07\x48\xb3\x3e\x0b\x4d\xb1\xa7\x2c\x21\xc0\x28\x73\xd8\x0e\xdd\x1e\x4a\x28\x36\x6e\x5e\x24\x31\x96\xca\xde\xfc\x6b\x27\x37\xff\xfc\x17\x13\xb5\xef\xfb\x0e\x66\x23\x62\x58\x22\xa2\x6d\x22\xaa\x33\xb3\xff\x47\x7f\xf4\x47\x32\x08\x02\x93\x08\x4c\x0d\xc4\x86\x0b\x3a\xee\x69\x1d\xd3\x36\x24\xc2\x08\x33\x19\x74\x9a\x34\xe9\x24\x99\x62\xed\x46\x5f\xfe\x6d\xf3\x30\x99\xa2\xa6\x53\xe5\x69\x61\xea\xbb\xad\xe2\x94\x74\x80\x41\x18\xef\xbd\xf7\x1e\x0f\x0d\x0d\x61\x68\x68\x88\x11\x11\x45\x24\x96\xeb\x10\x54\xdb\x2e\xf8\xeb\x57\x0e\xd4\x67\x5b\x0e\xfb\xa3\xbb\x99\x71\x57\x52\xd6\xdc\x81\xd7\xf6\xa6\x7b\x91\xda\x7f\xa2\x94\xc9\x09\x1f\x0a\xa5\xd5\x7f\x5d\xe1\x30\x3b\x45\x97\x3c\xb6\x54\x6d\xaa\x8a\x45\x15\xe3\x36\xe4\x53\xdc\x3d\x6a\x87\xe6\x4f\x0e\x89\x5a\x11\x8a\x22\x02\x05\x88\x0a\x4f\xa4\x64\x1b\x65\x9b\x2a\x56\x9c\x46\x79\x91\x12\x95\xa8\x9d\x20\x19\xbb\x59\x59\xf9\xd9\xf4\xf6\xab\x3f\x3c\xbe\xf5\xad\x8d\x62\xeb\x3d\x10\x5d\x03\xe2\x73\x92\xb6\x81\xf0\xf0\xe1\x8b\x17\x2f\x62\x71\x71\x51\x67\xa4\x3a\x72\x9b\x5d\xa2\x06\x47\x1f\x73\xd3\x99\x63\xe2\x8f\x8e\x83\x26\x23\xd7\x99\xb8\xae\xe2\x2b\x2d\xc6\x26\x71\xf4\x7c\xa4\xaf\x76\x85\x51\x60\x1a\xb2\x9b\x8f\x49\xb9\x69\x52\xc4\x04\x5c\x2f\xaf\x13\x61\x88\xeb\xd7\xaf\x4b\x00\x18\x1b\x1b\x53\xc7\x97\x78\x44\xd4\x44\xb4\x29\x3d\x70\x78\xf7\xf6\x40\xf3\xd6\xc2\x50\x63\x31\xef\x3b\x7d\xe5\x86\x33\x28\x98\x9c\x04\x09\x93\x71\xd0\x39\x37\x42\x66\xdb\x36\x32\x64\x1b\xbf\x08\xa1\xf6\xa2\xb1\x91\x57\x97\x10\x46\x7c\x92\x33\x41\x3a\x3d\x26\xe6\xec\x4a\x65\xe1\xa4\xbd\x4a\x22\xc4\x6a\x9f\x22\x04\x0d\x9e\xa8\x94\x64\x49\x7c\x9b\x0a\xa4\x62\x11\xe7\x45\x9c\x26\x29\x4f\x49\x2c\x75\xc2\x22\x08\x68\x39\xec\x5d\x19\xab\xbf\xfb\xda\x7d\x9b\xdf\xba\x3e\xd2\xf8\x71\xe0\x60\x16\xc0\x02\x85\x47\xc4\x6c\x00\xa8\x32\x73\xd3\xf7\xfd\xe0\xab\x5f\xfd\xaa\x8c\x88\x41\x7f\x14\x32\xaa\x5f\x36\xfe\xa0\xfd\xea\xdd\x6a\xaa\xd8\x36\xdc\x82\x11\x6e\x96\x63\xab\xc7\xd4\x80\x54\x5d\x08\x47\xe0\xde\x3e\x36\xf7\x5a\x37\x9d\x2e\x6d\xfe\xc2\x5a\xae\x5a\x03\x15\xed\xd3\xce\x22\xbc\x44\x65\x18\xe1\x64\xde\x84\x90\x98\x9c\xda\xcc\x3f\xfc\x4b\x37\xca\xcf\x8d\xef\x64\x0f\x0b\xa8\x59\xde\x88\x3f\x6b\x58\x1a\x23\xb3\x8e\x9f\x51\x7c\xd2\x63\xed\x24\xb5\xc7\xe6\x36\xf6\x67\x28\xc2\xb1\xd9\x17\x89\xb1\xaf\xcf\x00\xb7\x3b\x00\x10\x37\x63\xaf\x44\x6a\x77\x79\x6a\xe9\xe3\xc6\x9a\x84\xa6\x97\x97\x30\x01\x74\x19\x75\x06\x20\x89\xe5\xed\x72\x73\xfe\xcd\xe9\xca\x0f\x6e\x0e\x34\xdf\x67\x81\xdb\x00\x96\x00\xac\x21\x3c\x1a\xa6\x8a\x50\x2a\x48\x63\x0d\xd3\x7e\xe7\x07\x7a\x55\xc3\x3f\xaa\x37\xb3\x5b\x39\x02\xa1\x1b\xdc\xea\xe7\x4d\x43\xe6\x34\x04\x86\x51\x46\xaf\xe5\xc0\xc8\x03\xa4\x77\x66\xfc\xfd\xcc\x33\xcf\x88\x07\x1f\x7c\x50\x85\x65\x91\x2c\x10\x54\x2e\xda\x89\x4c\x40\x93\x27\xd6\x0a\xe7\x1e\xbe\x5d\x7a\xf2\x40\x35\x3b\xe9\x68\x97\xfc\x91\x81\x38\xba\x78\x54\x52\x03\x40\xdb\xcc\xf7\x1e\x84\x8d\x02\x92\x5b\x32\xf7\x22\xb6\x6d\x22\xb0\xfd\xc6\xcd\x76\x96\xd6\x86\xa7\x5a\xa3\xf4\xc9\x35\xa5\xfd\x98\x0d\x6a\x9b\x3c\xeb\x14\x66\xd6\x63\x3c\x01\xb1\x5c\xee\xf7\x16\xdf\x3e\xbc\xf3\xe3\xf9\xe1\xc6\xbb\xbe\x90\xb7\x41\xa4\x08\x61\x03\x09\x21\x78\x52\x4a\xf9\xde\x7b\xef\xe9\x6b\xb7\x3e\xaa\x1b\xb5\x17\x24\xee\x25\xac\xd7\x76\xec\x49\xd7\x4d\x42\xdc\x0d\x65\xa6\x95\x61\x2b\x0b\x1d\xca\xb3\x01\xd8\x56\xc6\xe7\x3f\xff\x79\x11\x4d\xe4\x09\x84\x44\xa1\x08\x63\x18\x21\x61\x8c\xe5\x7c\x71\xf8\xe4\x5a\xe1\xec\xc7\x6e\x97\x9e\x38\xb0\x9b\x99\x20\x86\x20\xa5\x0f\x18\x88\xb5\x87\xc1\x86\xd4\x03\x44\x7b\x05\x12\xb5\x29\x89\x42\x54\x54\xbb\x2b\x54\x43\xf7\x36\xc2\x63\x24\x06\x31\x10\x6f\x6e\x32\x90\xb6\x2d\x7d\x9b\xc2\x17\xd7\xdc\x4e\x78\x6c\x27\x12\x13\x8c\xf8\xdd\x20\x72\x06\x43\x12\xe4\x6a\xc9\xbb\x7d\x61\xb2\xfa\xb7\x73\x23\xf5\x77\x9b\x19\x5e\x44\xe8\x39\x5a\x41\x42\x08\x35\x44\x77\x32\x54\x2a\x15\x19\x5d\xa9\x96\x86\x13\xfb\xe5\xe2\x77\x8b\x6b\x5d\xb9\xfe\x7e\xca\xd0\x25\x44\x5a\x01\xdd\x54\x9f\x34\x09\x03\xf4\x06\x6c\xa7\xf7\xb4\x32\x04\x00\xe9\xba\xae\x38\x7d\xfa\x34\x9e\x78\xe2\x09\x15\xe6\x02\xc8\x32\x73\x91\x88\x06\x99\x79\x90\x88\x46\x01\x8c\x65\x7d\x9a\x9c\xd9\x28\x7c\xec\xf4\x9d\xbe\x47\x0f\x56\xb2\x33\xae\x24\xb7\x9d\x4b\xab\x35\x4b\xc9\xaf\x89\x8c\x7a\x98\x29\x09\x94\x7d\xb0\x57\xf5\x41\x14\x63\x10\x8d\x52\xad\x74\x35\x88\x91\xb4\x80\x38\xd9\xb1\xa6\xb9\x79\x01\xd6\xec\x00\x5d\x85\xe3\xb6\xb4\x40\xa2\xc2\xa1\x4d\x2d\x63\x6d\x5e\x02\xf0\x05\xfb\x8b\x03\x8d\xeb\x17\x0f\xee\xfe\xfc\xc6\x70\xe3\x03\xdf\xe1\x25\x84\x44\xb0\x06\x60\x23\x3a\x62\x52\x11\x82\xef\xfb\xbe\xfc\xd9\xcf\x7e\x86\x0f\x3e\xf8\xa0\xd3\xf8\xea\xe3\xac\xd2\xed\x07\x39\x6d\x65\xef\x87\xc0\x4c\x4d\xa5\x53\x9a\x54\x95\x09\x96\xf7\x6e\x0d\xeb\xd6\xc8\x7d\xab\x43\x5d\x9e\xd4\x7c\xcf\x3f\xff\xbc\x98\x9e\x9e\x46\x26\x93\x51\x6a\x54\x16\xe1\xf2\x8f\x32\x33\x0f\x13\xd1\x30\x18\xa3\xae\xa4\x89\xf1\x9d\xcc\xf1\xd3\x77\x4a\x4f\x1c\xd9\xca\x1f\x2b\x7a\xa2\xa4\x4f\xb4\x75\x5a\xb6\x90\x84\xa1\x8d\x22\xc8\xcc\xa8\xab\x5d\x46\x5a\xbd\x92\x98\x73\xc7\x12\x2a\x22\xb8\x58\x3d\x6a\x5f\x81\xab\x08\x40\xd9\x0b\xf1\xbc\x4b\x9a\x14\xda\xa3\xce\xc5\x24\x81\xdd\x6c\x50\x99\x1f\x69\x5c\xf9\xc5\x78\xed\xc2\x72\xa9\x79\x35\x10\x58\x01\x61\x0d\x91\x8d\xa0\x11\x42\x03\xe1\x8a\x5e\x79\xf9\xf2\x65\xfc\xf0\x87\x3f\xec\x05\x39\xbb\x49\xf7\xfd\xe4\x57\xdf\xe8\x90\x7f\x3f\x9a\x4b\x47\x02\x23\x4b\xc2\x5e\x1a\xd7\x4d\x7f\x03\xec\x1d\x02\x2d\x2e\x8d\x7b\xa4\x75\x66\xa7\xbc\x71\x7d\x5f\xfe\xf2\x97\xc5\xd0\xd0\x10\x88\x28\xdc\x23\x10\x11\x06\x33\x97\x23\xa9\x31\x0c\x60\x58\x80\x46\xcb\x0d\xe7\xc8\xd1\xf5\xc2\x83\xf7\x2f\xf7\x9d\x1e\xdd\xcd\x4c\xb8\x4c\x2e\x60\xda\x14\x11\xff\xa7\x04\xb9\xf7\xe8\xf1\x11\x66\xb3\xa6\x0e\xb5\xa9\x31\x0a\x11\xc9\x94\x14\x9a\x81\x1e\x55\x68\x72\xfa\x36\x09\x10\x13\x85\x29\x25\xda\xbf\xdb\x56\x02\xc7\xc4\xc7\x08\x88\xfd\x95\x52\xeb\xf6\xd5\xb1\xda\xa5\x6b\x23\xf5\x8b\x3b\xf9\xe0\x26\x13\x36\x90\xd8\x07\xca\x58\xae\x01\xf0\xa2\x09\x51\x7f\x65\x65\x05\xdf\xfa\xd6\xb7\xd2\x6c\x3e\xdb\x93\xc6\xa5\xd3\xec\x54\x5b\x58\x1a\x3e\xd9\xca\xe9\x54\xb7\x59\x76\x47\x18\x4c\x8d\xd3\x6c\x50\x2f\xe2\xaa\x57\x95\xab\xd7\xb0\x5e\x0d\xf9\x54\x42\x9a\x99\x99\x11\x8f\x3d\xf6\x18\x86\x87\x87\x01\xb5\x79\x26\x31\xbe\x4b\x48\x0c\xf0\x61\x30\x86\x05\x63\xf8\x40\x35\x3b\x7d\x62\xad\x70\x7a\x6a\x33\x7f\x6c\xa8\xe6\x8e\x66\x64\x74\xab\x0d\xf6\x76\x92\x4d\x2d\xda\x23\x25\x3a\x3c\x86\x30\x89\x1d\x44\x40\xbb\xe7\xca\x34\x73\xf4\x34\xb1\x7a\x45\xed\xd2\x4d\x37\x47\x18\x8c\x96\xc3\xde\x66\xc1\x5f\xbb\x31\xdc\x98\x9d\x1d\xad\x5d\x5a\xed\x6b\xcd\x31\x61\x03\x84\x0d\x66\xde\x22\xa2\x2d\x84\x84\x50\x43\x62\x23\xf8\x00\xe4\x9d\x3b\x77\xf0\xd6\x5b\x6f\xe1\xf6\xed\xdb\xfb\xe1\xf0\xfb\xd1\xe9\xf7\x63\x7f\x74\xc2\xc5\x6e\xb8\xd3\x4b\x5b\x00\x74\x37\xaa\x7b\x79\x7a\x15\x7f\x77\x6d\xf9\xa7\xc4\x75\x4d\x77\xfc\xf8\x71\xf1\xc8\x23\x8f\x60\x78\x78\x58\x6d\xa8\x51\xea\x54\x1e\xa1\x3a\xa5\x13\xc7\x20\x18\xc3\xd9\x80\x86\x47\x77\x33\x47\xa6\x37\xf2\xf7\x1d\xda\xce\x4d\x8d\xec\x66\xc6\x72\xbe\xc8\x13\x20\x48\x9f\xb4\x30\x1e\x53\xfd\x69\x8f\x30\x82\x14\xd7\x87\x8e\xbc\x86\x7a\xd5\xa6\x32\x45\xd6\x49\x5c\x8e\x3e\xf7\x90\xe4\xe1\x50\x29\x92\x4d\x57\x36\x36\xfa\xfc\xb5\x85\xc1\xc6\xf5\x85\xa1\xc6\xec\x7a\x5f\xeb\xa6\xe7\xf0\x1a\x23\x21\x80\x48\x25\x52\xd2\xa0\x81\x50\x22\x48\x66\xf6\x57\x56\x56\x70\xe1\xc2\x05\x2c\x2c\x2c\xd8\x74\xed\x3d\xfd\x6c\xef\x91\x38\x5e\xe5\xed\x24\xf9\x3b\x49\x87\x5e\xf2\xa4\xb5\x29\xcd\x5e\x48\x85\x81\xb4\xc4\xea\x49\x13\x39\x69\x95\xd9\x0a\x4f\x53\x69\xd2\xc4\x68\x2f\x9d\x63\xa6\xed\x96\xa7\xad\x13\xbe\xf4\xa5\x2f\x89\x91\x91\x11\x55\x86\x8b\x70\xef\x71\x96\x88\xf2\x08\x55\xaa\x12\x11\x95\x23\xd5\xaa\x0c\xa0\x2c\x24\x06\xfb\x9b\xce\x81\x89\x9d\xdc\xd4\xe4\x56\x6e\x66\xbc\x9a\x9d\x1c\xa8\x3b\x83\x39\x5f\x14\x95\xdd\x61\x6c\x20\x82\xb6\xc2\x2e\xac\xdd\x70\x01\x99\x92\x44\x5f\x96\x1e\x65\x68\x33\xa0\x93\x79\x0d\xbb\x91\xcf\x04\x78\x2e\x37\xb6\x0a\xad\x8d\x95\x52\xeb\xf6\xad\x81\xc6\xfc\x52\xb9\xb5\x58\xcd\xf9\xcb\x81\xc0\x16\xc2\xfd\x09\x95\x88\x00\x2a\x48\x54\xa2\x06\x22\x69\xa0\x76\xfc\x2d\x2f\x2f\xe3\xcf\xff\xfc\xcf\x7b\xe1\xb4\x66\x58\xaf\x76\x42\x9a\xfa\x93\xa6\x52\xc1\x48\xdf\x8d\x09\x76\x4a\xdb\x13\x0c\xbd\xb8\x5d\xf5\x4a\xf4\x42\x7a\x55\x65\x52\x2b\x87\x1d\xa1\xd3\xca\xf9\x28\xf5\xc0\x71\x1c\x11\x04\x81\x7c\x3e\x32\xbe\x5d\xd7\x15\x00\xe2\xad\x98\x06\x71\x14\xa3\xed\xac\x25\x66\x2e\x11\xa8\x04\xa0\xec\x4a\x2a\x17\x5a\x62\x68\x64\x37\x33\x36\x56\xcd\x4e\x8e\xec\xba\x63\x03\x0d\x77\xb8\xd4\x74\xca\x39\x5f\x64\x1d\x49\x2e\x29\x98\x22\x43\x83\x14\x8d\x20\x22\x1e\xd6\xd6\x26\x69\xa2\x22\x4d\xf8\x70\x42\x6a\x32\x10\x2c\x3d\x87\x1b\xbb\xd9\xa0\xba\x55\xf0\x37\x56\x4b\xde\xd2\x5a\xa9\xb5\xb4\x5e\x6c\x2d\xd5\xb2\x72\xd3\x17\x5c\x01\x50\x01\xa1\x1a\x5d\x2e\x52\x45\x48\x00\x6a\xee\x40\x11\x81\x17\xed\x07\x97\xcd\x66\x53\x5e\xbf\x7e\x1d\x3f\xfa\xd1\x8f\xa4\x10\x42\x48\x29\xd5\x78\x98\x7d\x69\xeb\xdf\x5e\xd2\x74\xb3\x01\x3a\xe5\xe9\x94\xa6\xd7\xb2\xf7\x05\x83\xee\x65\xea\x64\x74\x74\xa2\xd8\xb4\xef\x6e\xdc\x7b\x3f\x92\xa0\x53\x5d\xb6\x76\x76\x4a\x83\xc1\xc1\x41\x1c\x39\x72\x04\x67\xcf\x9e\x45\x2e\x97\x03\x12\xc2\x70\xb5\x19\xf0\x2c\x80\x3c\x33\x17\x11\xaa\x57\x45\x22\x52\xef\x25\x70\xa8\x76\xb9\x92\x8a\x79\x5f\x0c\xf4\x35\x9d\xc1\x52\xd3\x29\x97\x3c\x67\xb0\xdc\x70\xca\xe5\x86\x5b\x2e\xb4\x44\x31\xe7\x8b\x7c\x36\x10\xd9\x4c\x40\x59\xc1\x70\xc3\x1b\x92\xc2\xb9\x10\x42\x48\x08\x1c\xfe\x4a\x49\x2c\x7d\xc1\x5e\xcb\x61\xaf\xe9\xca\xc6\x6e\x36\xa8\x55\x73\x41\xa5\x9a\x0b\x2a\x95\x9c\xbf\xb5\x93\x0f\xb6\x76\xb3\x41\xa5\xe1\xca\x6d\xdf\xe1\x1a\x03\x55\x10\x1a\xcc\x5c\xd3\xd4\x1f\xfd\x4f\x27\x00\x9f\xb4\x93\x43\xaa\xd5\x2a\xde\x79\xe7\x1d\x7c\xf8\xe1\x87\xdd\x90\xa5\xd3\xd3\x0b\x53\xdc\x0f\x42\xf6\x2a\x69\xba\xb5\xf3\xae\x61\xd8\x8f\x51\x0d\xa4\x23\x27\x2c\xe1\xbd\x22\x73\x5a\xf9\xfb\xe1\x42\xe6\xf7\x7e\xa5\x17\x7e\xeb\xb7\x7e\x4b\x0c\x0e\x0e\xaa\x74\xea\x4f\x37\xc8\x63\x22\xd1\xff\x98\x39\x1f\x11\x50\x5e\x8b\x57\x79\x5c\x30\x5c\xc1\xc8\xba\x92\x32\x8e\x24\xd7\x61\x72\x05\x43\x08\x19\xda\x34\x4c\x2c\x65\x48\x0c\x7e\xcb\x61\x2f\x10\xdc\x0a\x08\x3e\x92\xd3\x3d\x3c\x24\x48\xed\x45\xcb\xe0\xd3\xfe\x3c\xed\x2f\x3e\x1d\x44\xfd\xad\xaf\xaf\x63\x61\x61\x01\xf3\xf3\xf3\x58\x5d\x5d\xdd\x0f\xa3\x51\xf1\xdd\x54\x55\xbd\x1c\x5b\x59\x36\xc6\xda\x4d\x32\xa4\xb5\xc7\x96\xe6\x23\xc3\xb0\x9f\x99\xea\x5e\x90\x54\x8f\x83\x25\xbe\x93\xda\xa4\x37\x3a\xad\x7c\x5b\x9e\x4e\x9c\xa0\x53\xc7\xec\x69\xd3\xf8\xf8\xb8\x38\x7a\xf4\x28\x8e\x1f\x3f\x8e\x62\xb1\x08\x75\xda\x45\x24\x35\xda\x88\x84\x99\x5d\x00\xd9\xc8\xbd\xab\x54\x2e\x65\x97\x64\x91\x48\x1b\x57\xe5\xd3\x4e\xcb\x88\xdb\x15\xb9\x4c\x63\xa4\x8d\xfe\x7c\xe3\xcf\x43\x3b\x71\x98\x61\x3a\xf2\xfb\xfa\xf1\x38\xb5\x5a\x0d\x57\xae\x5c\xc1\xcf\x7f\xfe\xf3\x6e\xdc\x74\x3f\x1c\xb7\x9b\x64\xef\x94\xb7\x5b\xd9\xbd\xe4\x49\x2b\xe3\x23\xc3\xd0\x89\x20\xba\xa9\x43\x9d\x74\x7b\xdb\xbb\x59\x56\x27\x31\xd8\x29\xfd\x7e\x45\x68\xb7\xf6\xa5\xd6\x75\xfa\xf4\x69\x31\x3e\x3e\x8e\xa9\xa9\x29\x44\x67\x25\x09\x2d\x8d\xf9\xe7\x02\xf1\x11\x31\x2e\x33\x0b\x00\x2e\x11\x09\x83\x10\xf4\x32\xf4\x7a\x4d\xa2\xd0\x89\xc3\xf6\x2b\x81\xe4\x6c\x28\x2d\x0c\x0b\x0b\x0b\xf8\xeb\xbf\xfe\xeb\x5e\x11\x18\x96\xb8\x5e\xde\xf7\xfb\xf4\x82\x1b\xdd\xa4\xcd\xdf\x39\x0c\x9d\x26\xe6\xba\x11\x84\xad\xc1\x30\xc2\xef\x86\x72\x6d\x75\x77\x4a\xbb\x9f\x72\x7a\x55\xbd\xf6\xe4\x19\x1e\x1e\x16\x07\x0f\x1e\xc4\xcc\xcc\x0c\x72\xb9\x1c\x86\x87\x87\x21\x84\x88\xd3\x47\x48\xaf\x97\x61\x22\xbe\xde\x3f\x69\x52\x51\xff\xd6\x09\x05\x06\xe2\x83\x99\xa5\xef\xfb\xd8\xde\xde\x46\xb5\x5a\xc5\xad\x5b\xb7\xf0\xc1\x07\x1f\xdc\x2d\xb2\xc6\x70\xde\x83\xbc\x1f\xa5\x9c\x8f\xfa\x7c\x64\x18\x6c\x46\x75\x27\xea\x05\xd2\x11\x6a\x3f\xd4\x99\x86\xa8\x69\xd4\x6e\x96\x63\x0b\x4b\x83\xc3\x06\x8f\x09\x47\x27\x18\xac\xbf\xd1\xdc\x06\xd6\xd7\xd7\xe5\xc7\x3f\xfe\x71\x01\x00\x27\x4f\x9e\x84\xe3\x84\x5b\x4c\xd4\x6f\x84\xc4\x6d\x04\x60\x3d\x75\xd0\x72\x6e\x93\x94\x12\x91\xd7\x07\x00\x30\x3f\x3f\x8f\x46\xa3\x81\xb5\xb5\x35\x5c\xb9\x72\xa5\x9b\x84\xed\xd6\x17\xb0\x7c\x9b\x61\xbd\x20\x58\xb7\xf1\xef\x25\xfd\xdf\x27\x18\xf6\x70\x2b\x5b\x62\x5b\x58\xaf\xf9\x3a\xa5\xed\xa4\x82\x98\x1c\xd5\xf6\x6d\x96\xdb\x8d\x1b\x77\x6b\x73\xb7\x36\xf6\x92\x46\x00\xc0\xd4\xd4\x94\x38\x7e\xfc\x78\x9c\x47\x7f\xff\xd5\x5f\xfd\x55\xeb\xbb\x9e\x4e\x4b\xdf\xa9\x5f\xd2\xda\xd8\x6b\xdf\xa7\xf5\x57\xb7\x31\xe8\x65\x7c\x6c\xed\xf8\x07\x03\x43\xaf\x48\x7f\x37\xc4\x63\x8b\xef\x54\x6e\x27\x04\xec\x86\x9c\x77\x4b\xdc\xbd\xd4\xdb\x2d\x5d\xa7\xb2\x7b\x69\x9b\xed\x31\x07\x75\x3f\x8c\xc8\x56\x4e\xaf\xe9\xcd\x70\x1b\x62\xf7\xfa\xfc\x83\x85\xa1\x17\x20\xf7\x3b\xa8\xdd\x10\xa2\xd7\x30\x5b\x7c\x2f\x1c\xbb\xdb\x73\x37\x48\xda\xa9\x8c\x8f\x52\xaf\x0d\x69\x3a\x11\x61\x2f\x9c\xb4\x1b\x97\xfc\xa8\x75\xa5\x49\x80\x7f\xc8\x30\x74\xcd\x94\xd6\xa8\x4e\x15\xef\x97\x9b\xf6\x2a\x0d\xf6\x53\x4e\x5a\x27\x77\xfb\xee\x54\x77\xaf\x6d\xe9\x65\x60\xf6\x53\xe6\x7e\x39\xf2\x7e\xe2\x7b\x1d\xa3\x5e\xdb\xf3\xff\x07\x18\x52\x23\xef\x86\x83\x76\xe3\x7e\x1f\xa5\xec\x4e\x75\xdd\x8b\xf2\xf7\x9b\xe7\x5e\x48\x87\x5e\x08\x24\x8d\x6b\x76\xca\x63\xcb\xdf\x2b\xf3\xb3\x95\xdb\xad\x1c\x5b\xdb\xd2\xf2\x98\xe9\xfe\x5e\xc1\x20\x3a\xfc\xf5\x52\x89\x4d\x7a\xa4\x95\x65\x6d\x40\x8f\x75\x75\xe2\xfe\xfb\x4d\xd7\x0b\x8c\x9d\xda\xd9\xad\x9e\x5e\xc3\x7a\xed\x9f\xb4\xb0\xfd\xc4\x77\x4b\xbf\x5f\x4e\x9e\xd6\xf6\x4e\xed\xf9\x87\x06\x43\x4f\x95\xf6\x5a\x89\xad\x8c\x5e\x10\xad\x97\x72\xba\x7d\xef\x87\x8b\xd8\xca\xda\x0f\x0c\xdd\x38\xd8\x7e\x90\xa0\x57\x2e\xd9\xa9\x9e\x5e\x08\x3d\xad\x7d\x77\x83\xe4\xdd\xda\x65\xbe\xff\x43\x80\x61\x5f\x15\xa5\x15\xda\x2b\xb7\xeb\x85\x73\xdc\x2d\x31\xf4\x02\xc3\x7e\xeb\xee\x36\x90\xf7\xb2\xee\xb4\xb2\xba\x3d\xbd\xd4\xff\xf7\xa9\xee\x7b\x55\xce\x3d\x87\xe1\xff\x05\xa3\x5d\x9f\x39\x4a\xbc\xd5\x80\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x19\xa0\xdd\x2c\x36\x91\x00\x00") - -func web_uiV1StaticFavicon196x196PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFavicon196x196Png, - "web_ui/v1/static/favicon-196x196.png", - ) -} - -func web_uiV1StaticFavicon196x196Png() (*asset, error) { - bytes, err := web_uiV1StaticFavicon196x196PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon-196x196.png", size: 37174, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFavicon32x32Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x1b\x08\xe4\xf7\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\x00\x00\x07\xe2\x49\x44\x41\x54\x58\x85\xc5\x57\x7d\x6c\x53\xd7\x15\x3f\xf7\xbe\xe7\xe7\xef\x60\x3b\x01\xc7\xd8\xc4\x49\xec\x1a\xc7\x01\x4a\x02\x49\xa1\x59\x4b\x80\xb6\x34\x10\x4d\x81\xa9\x15\x43\xeb\x90\xd6\xb5\x9d\xa6\x6a\x12\x74\x0c\xa1\xa9\x63\x52\xa5\x69\x1d\xab\xb4\xae\x45\xa2\xea\xb4\xb5\xf4\x03\x28\xd0\x0f\x0a\xac\x45\x0d\xe4\x83\x26\x5d\xf9\x70\x4a\x82\xb3\x38\xae\xed\x24\x4e\x1c\xc7\x4e\xec\x38\xef\x39\x2f\xcf\xef\xbd\xbb\x3f\x5a\x67\x21\x24\x05\x86\xb6\xfd\xfe\xba\xba\xe7\xbe\xf3\xfb\xdd\x73\xcf\x3d\xe7\x3e\x80\xff\x33\xd0\x9d\x7e\xa0\x56\xab\xb1\xc9\x64\x02\x8d\x46\x03\x4a\xa5\x12\x0b\x82\x00\x99\x4c\x46\x4e\x26\x93\xc0\x71\x9c\xfc\x5f\x11\xa0\xd3\xe9\xf0\x32\x57\x99\x66\xbd\xc1\xf3\xd0\x72\x62\xde\xb8\x90\x63\x56\xe8\xa6\x28\x9b\x42\x42\x2a\x11\x13\x81\x55\x4a\x43\xa3\xda\x6c\x57\x37\x95\xb8\x70\x3e\xdd\xfd\xc9\x57\xfe\xeb\xe9\xf1\xf1\xf1\xdb\x12\xf3\x9d\x02\x94\x4a\x25\x7e\xb0\x72\x4d\xc1\x0e\xf5\xea\xe7\xee\x8d\xe5\xfd\x54\x25\x62\xd3\xad\x1c\x0a\x58\x66\x7d\x66\xee\xf0\x51\xb1\xe3\xc5\x46\xef\xe7\x91\x5b\x45\x65\x5e\x01\x36\x9b\x0d\x3f\x53\xbe\x65\xfb\xe6\x88\xe5\x65\xb5\x48\x15\xcc\xb4\x11\x20\x20\x21\x90\xb3\x94\x2c\x28\x64\x44\x53\x32\xa2\xd1\x2c\x57\x02\x25\xb3\xe7\x6d\xf1\xbd\x07\x3a\x4f\x1e\x8a\x46\xa3\xf3\x8a\xa0\xe7\x9a\x2c\x73\xbb\x99\x7d\x96\xfa\x03\xab\xc2\x79\xbf\xc8\x39\x96\x81\x40\x28\x9f\xbf\xe6\x5f\x98\x39\x1b\xc9\xe3\x5b\x47\xa4\x74\x78\x92\xe7\x79\x25\xa3\x64\xcc\x8a\xbc\x22\xeb\x84\xaa\xe6\x9e\xb8\xa6\xde\x31\xaa\x5e\x49\x11\x84\x19\x09\xeb\xcc\xa2\x66\xbd\xd9\x6c\xfe\x4b\x34\x1a\x15\x6e\x3b\x02\x4e\xa7\x93\x7e\xc1\xb6\xed\xe0\xbd\x51\xfd\xd3\xb9\xb9\x3e\x23\xef\xbb\x50\x3a\xb6\xff\xf2\x70\xcf\xb9\xde\xde\x5e\x36\x1a\x8d\x82\x28\x8a\x37\xec\xca\x6a\xb5\x62\xa7\xd3\xa9\x59\x65\x73\x6f\x58\x1f\xca\xdf\xaf\xce\x62\xdd\x21\xab\x6f\xe3\x07\x1f\x7f\x34\x24\x49\xd2\xbc\x11\xb8\x41\x40\x7e\x7e\x3e\xfe\xed\xea\x1f\xed\xde\x10\xce\x3f\x80\x00\x01\x01\x02\x6d\x25\xe3\x87\x4f\x33\xbd\x7b\x9a\x5b\x5a\x12\xa9\x54\xea\x96\x89\xa5\xd7\xeb\xf1\xf7\x6a\x6a\x0c\x66\x43\x81\xe1\xe4\x99\x8f\xc2\x13\x13\x13\x32\x45\x51\xd8\xe1\x70\x60\x84\x10\x04\x02\x01\x79\xa6\xa0\x1b\x04\x3c\x5d\xb7\xbd\xf2\xd9\x90\xa7\x9d\x26\x88\x21\x40\xa0\xc9\x99\x7a\xf5\x68\xfa\xd2\xde\xd6\xd6\xd6\xcc\xad\x88\xbf\x0b\x5b\x6b\xeb\x8a\x9e\x4b\x55\xfd\x1d\x13\xa0\xff\x5c\xd0\xb1\xe5\x68\xe3\xa9\x40\xce\x86\x73\x83\xb2\xb2\x32\xba\x21\x59\x7a\x80\x26\x88\x01\x00\xe8\xb4\x70\x67\x4f\x64\xbc\xfb\xee\x96\x1c\x00\x60\xad\xc1\xf5\x90\x69\x52\xe1\x31\xf0\x0a\xd7\x7d\xda\xd2\xcd\x33\x6d\xd3\x49\xf8\xb0\xa3\x6a\x8d\xbd\x57\xb5\x01\x00\x80\x65\xa4\xd4\x99\x82\xfe\x5d\xad\x1f\xde\x3d\x39\x00\xc0\x15\x18\xfc\xcc\xb1\x48\x7d\x11\x13\x44\x5f\xa1\x87\xcf\xde\x24\xc0\x62\xb1\xe0\xb5\x5c\xe1\x93\xb9\x8c\xbf\xb2\x24\xfd\x46\xcb\xa5\xb6\xc0\xec\x44\xfb\x4f\xc0\x30\x0c\x3e\xd7\xdc\x18\x19\x28\x1b\xda\x84\x10\x82\x60\x7b\x90\xd7\x6a\xb5\x38\x57\x1f\x68\x00\x00\xbb\xdd\xce\x94\x8c\xaa\x1f\x01\x00\x90\x11\x91\xbf\x54\xc7\xfe\xd6\xd7\xd7\x37\x2f\x39\xc3\x30\xd8\xe1\x70\x60\xa3\x36\x4f\x95\xe4\xd2\x7c\x20\x10\x90\xb3\xd9\xec\x4d\xeb\x97\x79\xca\x55\xbb\x16\x3f\xba\x8f\x26\x48\x75\x70\xf4\xc2\x0b\x2a\x85\x92\x79\xd9\xf5\xe3\x57\x44\x4c\x32\x7f\x1c\x3d\xb7\xf7\xea\xb5\x8e\x0c\x0d\x00\x50\x6a\x5c\x5c\xa4\x4f\x52\x8b\x01\x00\x46\x74\x42\xe0\x9f\x43\xc1\xc0\x6c\x67\x39\x18\x8d\x46\xbc\x63\xf5\x23\x0d\xf7\x84\xa9\x97\x14\x31\x52\x2c\xa8\x51\xd0\xbf\x7e\xc5\xae\x23\x5f\x7e\x7a\x7a\xf6\x2d\xf9\xa1\xb3\x76\xdb\xda\x1e\xc3\x6f\x00\x00\x76\xb8\x1e\x18\xc4\x04\xe1\x65\xbd\xba\x9f\x00\x00\x6c\x75\xd7\xb4\x5e\xbd\xd6\xf1\x1e\x0d\x00\x50\xa4\x30\xb9\x72\xe1\x4f\x68\xb3\xbe\xf8\x60\x9c\x9f\x4f\x40\x5d\x75\xed\x8a\xb2\x6e\x7c\x04\x13\xc2\x00\x00\x28\x27\x49\x69\x79\x0f\x3e\xbe\xa9\x7a\xdd\xaa\x33\x6d\x8d\xbe\xed\x55\x9b\x56\x7b\x90\xb9\xfa\xd4\xc4\x57\xef\x26\xd4\x42\x44\xa0\x64\x1e\xcb\x88\x8e\xab\x85\xfe\x29\x2c\xa5\x27\x15\x0b\x58\x11\x13\x61\x40\x91\xf6\x4f\x1f\x81\x81\xd6\x4c\xd7\xf8\x49\x85\x3c\xc2\x71\xdc\x9c\xe4\x7a\xbd\x1e\x97\x8a\x79\x8f\x61\x22\x30\x33\xe7\xb1\x0c\x8c\x93\x18\x1b\xb6\x6c\xdc\x34\xfc\x6c\xef\x8a\x46\x46\xc2\xba\x25\x66\xfd\xda\x83\xb1\x7f\xec\xcc\x54\x88\x0f\xd0\x88\x62\x9a\xbc\xed\x97\x39\x8e\x93\x07\xab\xd7\x54\xc8\x44\x16\x5b\x2e\xb6\xf6\x4f\x0b\x80\x19\xd7\x11\x00\xe6\xaf\xdb\x34\x0d\x04\xcf\xdd\x3e\x08\x06\xac\xd5\xeb\x18\x11\x13\x99\x91\x00\x04\x9a\xd0\xa3\xf1\x51\xb9\x63\x9c\xf5\x21\x84\x20\x18\x0c\x8a\x14\x45\xc1\x48\x30\x92\xce\x12\x49\x4c\x26\x93\x30\x2d\x80\x45\xd9\xb1\x9c\x23\x8d\x40\x2d\x62\x18\x66\x4e\x92\x64\x32\x29\x0f\x1b\xc4\x8f\x0b\x29\xf8\x25\x25\xc1\xf4\x22\x89\x06\x7e\x48\x2f\x9c\xfd\xac\xa9\x65\x38\xef\xc1\xba\xad\x16\x5e\x53\x7d\x99\x44\xde\xbe\x4f\x5d\xee\xfe\x79\xd8\xdd\x8c\x08\xa2\x5f\xab\x75\x6e\x54\x62\x85\xea\xc9\xaf\x9d\x8d\x12\x26\xfc\x9f\xd6\x59\x6b\xde\xfc\xf4\x84\x0f\x03\x00\x0c\x88\x63\x41\x02\x04\x00\x00\x16\x72\x0a\x8f\xc9\x64\x9a\xb3\x49\x01\x00\x34\x7b\xbf\xb8\xfc\x75\x95\xfa\x19\xd6\x40\x05\x45\x05\xf0\xac\x91\x0a\xf4\xae\x56\x3f\xd5\x7c\xa5\xbd\x23\x12\x89\xc8\x87\xde\x7f\xab\xe9\xa5\x8b\x47\xfe\x70\xfc\x83\x93\x11\x17\x63\xbe\x5f\x25\x52\x05\x4a\x09\x1b\x96\x2a\xcc\x0f\x96\x50\xa6\x35\x34\x41\x2a\xa5\x84\x0d\x4b\x75\x8b\x2b\xa7\x23\xd0\x9f\x1e\xe9\x4f\xab\xdc\xc3\x0b\x78\xba\xb0\x80\x55\xb8\xdc\x25\xc5\xc5\x5e\xf0\xfa\xe7\x12\x10\x08\x04\xc4\x63\x1c\x77\x78\xf9\xf2\xe5\xa7\x74\x3a\x9d\x81\x65\xd9\x54\xe7\xc5\xce\x54\xae\xe5\xf2\x3c\x2f\xf3\xfc\x37\x39\xdc\x2e\x86\xcf\x5a\x6c\xcc\x29\x4c\x10\x6e\xc7\x03\x27\x24\x22\xcb\x7a\x3b\xbd\x4a\xc4\x84\x6f\x4a\x77\x9f\x06\xf8\xb6\x17\xb8\x5c\x2e\x7a\xbf\xad\xe1\x9d\x8a\x41\xfd\xe3\x00\x00\x6d\xf6\xd4\xef\xf7\x5c\xfa\xeb\xaf\x93\xc9\xe4\x5d\x15\x22\xa5\x52\x89\x3d\x1e\x0f\x0d\x00\x10\x8f\xc7\x45\x59\x96\xc1\x68\x34\x62\x59\x96\xc1\xef\xf7\xcb\x92\x24\xc9\x18\x00\x20\x1c\x0e\xcb\xd7\x0a\xc6\xdf\xca\x1d\x43\xc5\xa0\xfe\x67\xeb\x2a\xd7\x14\xde\x0d\x39\x00\xc0\xd4\xd4\x94\xec\xf5\x7a\x05\x1d\xad\xd2\xbc\x5a\xfc\xc4\x91\x43\x25\x3b\x8f\x17\xe6\xe5\x1b\xba\xbb\xbb\xc5\x5c\x47\xc4\x00\x00\x82\x20\xc8\x9f\x0f\x5d\x3f\x1f\x36\xf1\x97\x01\x00\xd4\x22\x65\xd8\x39\xb5\xf2\x15\xb7\xdb\x3d\x6f\x2e\xdc\x09\xea\x17\x57\x35\xb8\xe2\x9a\xc7\x9d\x09\xcd\xb6\xfa\x82\xca\xed\x33\x6d\xd3\xd7\xcf\xeb\xf5\xf2\x17\x8a\x12\xcf\x8b\x88\x88\x00\x00\xae\xb8\x7a\xdb\x6e\x5b\xdd\xf3\x76\xbb\x1d\xcf\x76\x78\xa7\xe8\x55\x24\xaf\x26\xb4\xc2\xd0\xa8\x26\x3b\xec\x57\xa7\xbe\x98\x69\xa3\x72\x83\x6c\x36\x4b\x26\xb0\xd0\x5f\x58\x6c\xcd\x2f\x4e\xaa\xab\x11\x20\x58\x92\x56\xad\x73\xd9\x9d\xfa\x90\x96\x6d\x8a\x8d\xc4\xa4\xdb\x25\x74\x3a\x9d\x74\x45\xa9\xc7\xd4\x1f\x1b\xe4\x09\x21\x64\x20\x1e\x8d\xf7\x95\x51\xef\xb4\x1b\x62\xaf\x35\xb6\x35\x07\x58\x96\x25\x37\x09\x00\x00\x18\x19\x19\x91\xc4\xd2\xbc\x76\x9b\xca\x54\xb9\x88\x65\x1c\x08\x10\x58\x27\x54\x6b\x6b\x74\xce\x87\x35\x1e\xcb\xf5\x84\xcc\x0d\xa5\x52\x29\x72\x33\xe5\x37\xb0\x5a\xad\xb8\xa1\x6a\x63\xf9\xaf\x14\xb5\x6f\x6e\xca\x3a\x76\x85\x4a\xc8\xdb\xa1\x81\x3e\x3e\x93\xc9\x10\xbf\xdf\xcf\xf6\xf4\xf4\xb0\x33\xc9\x01\xe6\x78\x13\xd2\x34\x8d\xeb\x37\x6f\x29\x78\x8c\x5d\xfa\xfa\xca\x41\xdd\xf7\x73\x3d\x82\x00\x81\xc1\x05\x53\x2d\x5d\x79\xa9\x63\x57\xf9\xfe\xb6\xbe\xa9\x44\x30\x23\x09\xbc\x12\xd3\x8c\x8d\x31\xd9\x2a\x34\x45\xf7\xaf\xe0\xf2\x7f\x60\x1f\x53\x3d\x8a\x01\x61\x00\x00\x9f\x99\x7b\x77\xcf\xc0\xb1\x27\x42\xa1\xd0\xed\xbd\x09\xa7\xc3\x42\x51\xb8\xb6\xb6\x56\x57\xa7\x5f\xb6\xa7\x36\x60\xdc\xad\xc9\x52\x9a\xd9\x6b\x08\x10\x20\x00\x02\x02\xa0\xd1\xb7\x84\x33\x31\x49\x4b\x99\x26\x67\xea\xc5\x37\x82\x8d\xbf\xeb\xec\xec\x14\xe7\x13\x40\xcd\x35\x49\x08\x21\xa1\x50\x68\xaa\x8f\xa4\x5a\x13\x15\xfa\x4f\x28\x05\x6d\x32\x71\x74\xb1\x42\xc6\x8a\x7f\x2b\x47\x80\x00\x51\x08\xd0\x0d\x9b\x98\xa4\x25\xde\x6b\x65\x4f\x7d\xe8\x18\x7a\xea\xfd\xce\x0b\xef\xf9\x7c\xbe\x79\xc9\xe7\x8d\xc0\x4c\x30\x0c\x83\xcb\xcb\xcb\xe9\xe5\xee\x72\x67\x99\x60\xaa\x5f\x92\x54\xad\x5b\xc8\x29\x5c\xba\x29\xca\x44\x4b\x88\x11\x29\x22\xb0\x8c\x34\x96\xd0\x65\x03\x03\x06\xbe\xd9\xa7\x1c\x3b\xdd\xd5\xe3\xf3\x77\x75\x75\x89\x82\x20\xdc\xb2\x90\xdd\xd1\xcf\xa9\xd9\x6c\xc6\x16\x8b\x85\x36\x1a\x8d\x2a\xad\x56\xab\x61\x18\x86\x16\x04\x41\xcc\x64\x32\xfc\xd8\xd8\x58\x26\x1a\x8d\x8a\xb1\x58\xec\xae\x9f\x71\xff\x53\xfc\x0b\x22\x7e\x8f\x92\x6b\x8a\xba\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x1b\xb0\xd0\x40\x1b\x08\x00\x00") - -func web_uiV1StaticFavicon32x32PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFavicon32x32Png, - "web_ui/v1/static/favicon-32x32.png", - ) -} - -func web_uiV1StaticFavicon32x32Png() (*asset, error) { - bytes, err := web_uiV1StaticFavicon32x32PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon-32x32.png", size: 2075, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFavicon96x96Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xbb\x27\x44\xd8\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x60\x00\x00\x00\x60\x08\x06\x00\x00\x00\xe2\x98\x77\x38\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x79\x70\x1c\xd7\x99\xdf\xef\xbd\xee\x99\xe9\xb9\x0f\xcc\x00\x83\xc1\x00\x18\xe2\x22\x00\xf1\x00\x6f\x52\x92\x25\x48\xa6\x68\x51\xa2\x69\x59\xd6\xae\xb5\x8e\x77\x1d\xbb\xca\x49\x65\x8f\x6c\x5c\xa9\x4d\xe2\x4a\x25\xae\xad\xc4\xe5\x4a\x39\xc9\x46\xbb\xde\xec\xa6\x9c\x2d\x5f\x6b\xaf\xe5\x95\x25\xaf\x24\xeb\xa4\x64\x91\x92\x45\x90\x22\x41\x88\x24\x48\x10\x04\x71\x0c\x0e\x0e\x06\x83\x99\x9e\xbb\xbb\xa7\xe7\xbd\xfc\x81\x19\x60\x00\x02\x24\x40\x02\x94\x76\xe3\xaf\xaa\xd1\xbf\x19\xbc\xf9\xde\xfd\xeb\xef\x7d\xef\x68\xe0\x37\xf2\xb1\x10\xba\x02\xde\x68\xfd\xeb\x85\xff\xd1\x0b\xad\xb8\xb0\x4a\x8c\x35\xe2\xb5\xea\xff\xff\x02\x8b\xb8\x51\x36\xba\xb5\xfe\xa6\x07\xfc\x46\x3e\x3e\x42\x4a\x77\x0a\x80\x2d\xb9\xa3\x84\x2b\xff\xbf\x34\x2c\xd6\x1b\x4b\x92\x04\xaf\xd7\x0b\x9f\xcf\x07\xaf\xd7\x0b\xbb\xdd\x0e\xbb\xdd\x4e\x45\x51\xa4\x82\x20\x80\x73\x4e\x01\x80\x10\x42\x39\xe7\x20\x84\xb0\xf2\x5d\x55\x55\x96\xcf\xe7\x91\x4a\xa5\x98\x2c\xcb\x98\x99\x99\xc1\xb5\x6b\xd7\x2a\xf3\xb5\x52\x5e\x3e\x32\x5c\x59\x01\x1f\x89\x50\x4a\xe1\xf7\xfb\x11\x0c\x06\xd1\xd8\xd8\x48\xdd\x6e\x37\x05\x87\x28\x32\x22\xd9\x54\xc1\xeb\xce\x8b\x4d\x76\x45\x6c\x70\x28\x42\xa3\xa4\x53\x8f\xb9\x20\xb8\xc4\x22\x91\x28\x87\x91\x13\xe8\x45\xca\x15\x45\x64\xa9\xbc\x81\xc5\xb3\xa6\xe2\xf5\x94\xa4\x8f\xca\x92\x3e\x9a\x34\xeb\x53\x9a\xc0\x73\x20\xd0\xf2\xf9\x3c\x0b\x87\xc3\x2c\x1c\x0e\xe3\xfa\xf5\xeb\x50\x14\x65\xc3\x1a\xd0\x5a\xf1\xd2\x1e\x70\xd7\xc4\xe3\xf1\xd0\x96\x96\x16\xb4\xb5\xb5\x51\xb3\xd9\x2c\x1a\x18\xb5\xd5\xa4\x8d\xed\x0d\x09\xd3\x03\x81\x94\x69\x5f\x55\xd6\xb0\x4d\x2a\xd0\x00\x01\x31\x92\x5b\xe8\x2a\xf5\x80\x79\x0c\x02\x56\x10\x78\x4c\x36\xeb\x03\xd7\xed\xda\x99\x09\xb7\x72\x7c\xd2\xa9\xf6\xe6\x0c\x2c\xae\x17\x75\x6d\x74\x74\x94\x5d\xbd\x7a\x15\xe3\xe3\xe3\x77\x35\xcf\xcb\xc9\x72\x3d\x60\xa3\xa8\x06\x84\x10\xba\x69\xd3\x26\x6c\xd9\xb2\x05\xd5\xd5\xd5\xa2\x08\x6a\x6b\x48\x48\x7b\xdb\x66\x2c\x9f\x0d\xc5\xa5\x43\xe6\x02\x6d\x20\x20\x94\x57\x24\x6c\x55\x78\x49\x05\x2c\xc5\x1c\x1c\x3a\xe5\xf1\x88\x43\x7b\xef\x8a\x2f\xf7\x0f\x43\xbe\xfc\x1b\x8a\x81\xc5\x53\xa9\x94\x76\xf9\xf2\x65\xd6\xdf\xdf\x0f\x5d\xd7\xd7\x23\x8f\x77\xd4\x03\x36\x4c\x08\x21\x68\x6d\x6d\xc5\x8e\x1d\x3b\xa8\xd3\xe1\x34\xda\x55\x21\xb0\xe5\xba\xf5\xe9\xce\x69\xeb\x3f\xb3\xa9\x42\x3b\xe1\xb7\x6a\xe3\xeb\x27\x9c\x00\x3a\x65\xf1\x21\x6f\xfe\xf9\xf3\x81\xcc\xf7\x22\x0e\xed\x62\x5e\x55\x72\x03\x03\x03\xec\xf4\xe9\xd3\xff\xf4\x28\xa8\xae\xae\x8e\xee\xdd\xbb\x17\x5e\xaf\x57\x72\x29\x86\xd0\x9e\xb0\xfd\x5f\x6d\x8e\x5a\xbe\x60\x60\xd4\xb3\x5e\x71\xdc\xaa\x07\xac\x84\x19\xb8\x36\xe5\x54\x8f\x7d\xd0\x90\x7e\x66\xcc\xad\xf4\xe4\x95\x7c\xae\xaf\xaf\x8f\x5d\xb8\x70\xe1\xae\x51\xd3\x86\x52\xd0\x83\x0f\x3e\x48\x5b\x5b\x5b\x8d\x96\xa2\x58\xbd\x77\xcc\xf1\x07\x5b\xaf\x5b\xff\x85\xc8\xa8\x6b\x4d\xf4\xb2\x1a\x7c\x9b\x15\x50\xc6\x20\xd0\xc3\x6e\xf5\x95\xf7\x36\xc9\xdf\x9c\xb1\x15\x2e\xce\xc6\x67\x95\x13\x27\x4e\x60\x66\x66\xa6\xb2\x4c\x36\xa4\x07\x08\xa5\x0f\x95\x1c\x40\x2a\x3e\x2f\xfd\x7e\x55\xb8\xb1\xb1\x11\x47\x8f\x1e\x15\x6a\x6b\xfc\xf6\x2d\xd3\xb6\xa7\x3e\xdd\xef\xfd\x61\x7d\x42\x7a\x8c\x72\x22\x81\x60\xae\xf4\xca\xa1\xef\x10\x2f\x24\xf6\xf6\xff\x12\x10\xea\xca\x8b\x9b\xef\x99\xb6\xfe\xae\xa5\x40\xed\xc9\x1a\xf1\x72\x53\x7b\x6b\xce\x60\x30\xb0\xa9\xa9\x29\x60\x1d\xdb\xca\x52\xbc\xee\xe4\x7b\xdf\x7d\xf7\xd1\xce\xce\x4e\xa3\x43\x15\x9b\x3e\x39\xe8\xfe\x66\x63\x42\x3a\x0a\x80\x92\x52\xbc\x1c\x1c\xeb\x8d\xd7\xbb\x78\x92\x92\x7e\xe9\xed\xd6\xc4\x9f\x8c\xb9\x95\x13\xd7\x23\xd7\x73\x2f\xbd\xf4\xd2\x86\x51\x52\xb9\x07\x50\x2c\x34\x26\x5e\xf1\xf9\x66\xb8\xfc\x3b\x0e\x00\x76\xbb\x9d\x1e\x3e\x7c\x98\x6c\xda\xb4\xc9\xd2\x32\x6b\x79\xec\xe8\x45\xef\xdf\x7a\xb3\xc6\xbd\x04\x84\x60\xa1\xa8\x70\x3b\x18\xe0\x60\x04\x4c\x31\xb0\x7c\x4a\x2a\x26\x53\x92\x2e\xa7\xa4\x62\x32\x6b\x2c\x66\x54\x03\x53\x19\xe1\x8c\x70\x50\xca\x4b\x15\x7d\x5b\xfd\x76\x01\x4b\x3a\xf5\xb5\xcd\x58\x3e\x67\x60\xa4\x90\x68\x30\x7c\x50\x2c\x16\x8b\x91\x48\x64\xad\xe5\xb3\x2a\xbc\x2e\xbe\x20\xa7\xd3\x89\x23\x47\x8e\x50\xbb\xd9\xea\xda\x3f\xe2\xfc\xa3\xdd\x61\xfb\x7f\xa0\x9c\x18\x79\x29\x16\x10\x80\x57\x50\xc7\x4d\x31\xe1\xd0\x29\xd7\x63\xd6\x42\x64\xca\xa9\x86\xa7\xed\xda\xe8\xac\xb5\x10\x4e\x99\x8a\xd3\x05\x81\xa7\x00\xae\x70\x40\xaf\x18\x01\x8b\xe0\x90\x04\x06\x9b\x4d\x13\x7d\x9e\x9c\xd8\x50\x9d\x36\x36\x04\x52\xa6\x50\x4d\xca\x18\x30\x15\x89\x34\x67\x65\xf1\x39\x13\x08\x58\x15\xa6\x80\xa4\x53\x5e\x07\xc0\x52\x5d\x5d\xad\x2c\x53\x4e\xeb\x22\xe5\x0a\xb8\xed\x2e\x16\x08\x04\xe8\xa7\x3e\xf5\x29\x6a\x21\xc6\xea\x83\x03\x9e\xff\xd6\x36\x63\xfe\x62\xb9\x15\x2e\x64\xab\xe2\xa1\xb7\x0c\xe6\x00\x74\xca\xf4\xb0\x5b\x1d\xbe\xea\xcb\xf5\x86\xdd\xca\xb9\x9c\x81\x8d\x72\xf0\x28\x21\x44\xe6\x9c\x67\x00\x28\x84\x10\x8d\x73\xe8\x4b\xd2\x4b\x39\xb8\x58\x14\x88\x98\x34\xeb\x92\x2c\x15\x6c\x23\x55\x8a\x03\x1c\x5e\x63\x91\x34\xd4\x25\x4d\xdb\x5b\x67\x2c\x3b\x37\xcd\x4a\xed\x92\x4e\x25\x02\x32\x57\xc8\xf3\x89\xbb\x11\x73\x00\xd7\xbc\xf9\xde\xd3\x0d\xa9\xbf\x07\xa0\xc9\xb2\xbc\xb4\x8c\xd6\x0d\x97\x2b\x60\xa9\x15\xb4\xaa\x81\x55\xb9\xf0\xad\xc4\x18\xf8\xf4\x45\xef\x77\x83\x49\xd3\x21\x70\x32\xff\x74\xe1\xbc\xfc\x94\x59\xb9\xbf\x67\x8c\xc5\xcc\xf9\x40\xa6\xe7\x52\x4d\xf6\xad\x8c\xa9\x78\x89\x83\x4f\x10\x42\xe2\x9c\xf3\x14\x00\x05\x80\x9e\xcb\xe5\x58\x3a\x9d\x66\xc9\x64\x12\xc5\x62\x11\xa5\x02\x01\x00\x48\x92\x04\xab\xd5\x0a\xab\xd5\x0a\xbb\xdd\x4e\x1d\x0e\x07\x05\x20\x82\xc0\xa8\x0a\xcc\x36\x52\xa5\xbc\x33\xe2\x51\x02\x26\x9d\xb4\xb5\xcd\x58\x1e\xec\x9a\xb4\x3f\xe0\xc9\x89\x5e\xb2\x28\x1d\x8b\x45\x36\x17\xa2\xc7\xda\x12\xcf\x70\x8a\x01\x45\x51\x72\x1b\x39\x3e\xb8\xed\x81\x58\x20\x10\xc0\xa3\x8f\x3e\x2a\x5a\xb9\x21\xf8\xc4\x45\xdf\xf7\xfc\x49\xd3\x03\x2b\x19\x2c\xcb\x59\x2f\x59\x53\x31\x73\xb6\x3e\xf5\xf6\x85\xda\xec\xab\x05\xca\x2e\x11\x42\x26\x38\xe7\x71\x00\x4a\x32\x99\xd4\x27\x26\x26\xd8\xf8\xf8\x38\x62\xb1\x18\xf2\xf9\xfc\xad\x92\xb3\x28\x63\x81\x40\x80\xfa\xfd\x7e\x34\x34\x34\xc0\xeb\xf5\x8a\x94\x52\x89\x73\xee\x20\x84\x04\x09\x43\x5b\x6b\xcc\xfc\xc8\xbe\x31\xe7\x21\x4f\x4e\xac\x26\x65\x8e\x04\x00\x70\x68\x02\xd7\xfe\xbe\x2b\xfa\xa7\x51\x9b\xf6\x1c\xe7\x7c\xf4\xb5\xd7\x5e\xd3\x27\x26\x26\x36\xbc\x02\xd6\x24\x0e\x87\x83\x1e\x3d\x7a\x94\x3a\x8d\xd6\xc0\xd1\x7e\xef\x77\x83\xb2\xe9\xd0\xcd\x5a\x54\xa5\xc5\xa2\x13\xae\x9f\x0f\x64\x7a\x4e\x37\xa6\x9e\x55\x0c\xac\x8f\x73\x3e\x0a\x20\xae\x28\x8a\x36\x38\x38\xc8\x4e\x9d\x3a\xb5\xee\x16\x47\x57\x57\x17\xdd\xbc\x79\x33\x75\x3a\x9d\x22\x00\x17\xe7\x3c\x28\x32\xb2\x65\xdb\x94\xed\xb3\xfb\xc2\xce\x43\x92\x4e\xa5\x72\x3a\x8f\xb5\x25\xbe\xdf\x5f\x9b\xfd\x0b\xce\xf9\x40\x6f\x6f\xaf\x72\xf6\xec\xd9\x0d\x1d\x94\xad\x34\x10\x5b\xb1\xc6\x0c\x06\x03\x3e\xf7\xb9\xcf\x51\xa7\xdd\xe1\x39\x7c\xa9\xea\x99\xd6\x98\xf9\xe9\xf2\x83\xab\x4c\x3b\x95\x98\x90\x05\x4b\x2f\x66\xd1\xa2\xc7\x36\x27\x7e\x18\xb1\x6b\x6f\x72\xf0\x41\x42\x48\x2c\x99\x4c\x2a\xe7\xce\x9d\x63\x83\x83\x83\x1b\x3e\xf4\xaf\xab\xab\xa3\x7b\xf6\xec\x81\xcf\xe7\x33\x12\x42\x3c\xe0\x68\x71\x28\xc2\xbd\x0f\x5f\xf5\x7c\xb9\x31\x61\x6a\xeb\xf7\x67\xdf\x3b\xd6\x96\xf8\x06\x08\x7a\x27\x26\x26\x52\xaf\xbe\xfa\xea\xdc\x40\xed\xe3\xe2\x0b\x22\x84\xe0\xd1\x47\x1f\x45\x7d\xb0\xde\x71\xef\x88\xf3\xeb\x7b\xc6\xed\xff\x8e\x94\x38\x1f\x58\x79\xcc\x04\xc2\x71\xd1\x9f\xed\x39\xde\x22\x7f\x57\x17\xf8\x69\xce\xf9\x84\xaa\xaa\x99\xde\xde\x5e\xd6\xdf\xdf\x5f\xce\xe4\x9d\xc8\x9a\x32\x1f\x0a\x85\xb0\x7f\xff\x7e\xea\x70\x38\x24\xce\x79\x80\x82\x6c\xe9\x8c\x58\x3f\x39\x58\x9d\x7b\xbd\x20\xf0\x9e\x54\x2a\x15\xff\xe9\x4f\x7f\xaa\xaf\x45\xe7\xed\xe2\x35\x51\xd0\xae\x5d\xbb\xe8\xce\x9d\x3b\xa5\xd6\x98\xe5\xa9\xc7\x2e\x55\x7d\x97\x82\x18\x6f\xf5\x1b\x9d\x70\xfd\x44\xb3\xfc\xfc\xf9\x40\xe6\x47\x1c\xfc\x3c\x21\x24\x3a\x38\x38\xa8\xbd\xf3\xce\x3b\x1f\xb9\x2b\x78\xcf\x9e\x3d\x74\xfb\xf6\xed\x22\xa5\xd4\x01\xc0\xc6\x39\xcf\x30\xc6\x52\x2f\xbe\xf8\xa2\x3e\x33\x33\xb3\xaa\xf4\x35\x37\x37\x53\x51\x14\x91\x48\x24\x10\x8d\x46\xd7\x9c\xa7\x55\x53\x50\x4d\x4d\x0d\x8e\x1c\x39\x22\x7a\x34\xe3\xb6\xa7\x7b\x6b\x7e\x29\x15\x84\x6a\x60\x79\xda\x29\x63\x8d\x32\xed\xd5\xce\xd9\xff\x3b\xe2\x51\x9e\xe5\xe0\x97\x0a\x85\x82\xfc\xee\xbb\xef\xb2\x6b\xd7\xae\xdd\x34\xae\xbb\x89\x7d\x3e\x1f\x76\xef\xde\x8d\xfa\xfa\x7a\x1a\x8b\xc5\x58\x4f\x4f\x0f\x4a\xee\x87\x15\x7f\x1b\x0c\x06\xe9\x9e\x3d\x7b\xe0\xf5\x7a\x8d\x84\x10\x11\x00\x38\xe7\x7a\x36\x9b\xd5\x4f\x9d\x3a\xc5\x2a\x66\xe1\x6e\x99\x86\x55\x51\x90\x20\x08\x78\xea\xa9\xa7\xa8\xcb\xee\xf4\x3e\x79\xde\xf7\xe3\xfa\xa4\xf4\xf0\xcd\xc2\x03\x80\x2a\x30\xe5\xa5\x2d\xb1\xff\x3d\xee\x54\x9e\x25\x84\x0c\x26\x93\xc9\xcc\xab\xaf\xbe\xca\x52\xa9\xd4\xad\x7e\x7a\x3b\x72\xd7\x2a\xac\xa5\xa5\x05\xdd\xdd\xdd\xa2\x47\x31\xb6\xec\x1f\x73\x7c\xad\x21\x21\x3d\x40\x38\xe8\xa4\x53\xed\x39\xd5\x98\x7a\x66\xc6\x5e\xb8\xd8\xd7\xd7\xa7\x9d\x3e\x7d\x7a\x55\x69\x5b\xd5\x40\x6c\xd7\xae\x5d\xd4\xe9\x74\x4a\x5b\x27\x6d\x5f\x0c\x26\x4d\x0f\xf3\xf2\x88\x91\x00\x58\x06\xeb\x02\xd3\x5e\xe9\x9c\xfd\xeb\x09\xa7\xfa\x77\x84\x90\xc1\xc9\xc9\xc9\xcc\x2f\x7f\xf9\xcb\x8d\xa6\x9c\x0d\x19\x28\x55\x62\x9f\xcf\x47\xbb\xbb\xbb\xc5\xaa\xbc\x71\xdb\x6f\x7d\x58\xfd\x82\x59\x13\x82\x00\x00\x02\x34\xc7\x2c\x2d\x0d\xb2\xf4\xd8\x2f\xb6\xce\x7c\x1e\x5d\x5d\xef\x4d\x4f\x4f\x6b\x63\x63\x63\xec\x56\x3a\xcb\xb5\xb1\xdc\x7d\xbe\x57\x6c\xdb\xb6\x4d\xb4\x29\x42\xdb\x81\x51\xc7\x9f\x80\x13\xcc\xfb\x5b\x38\x6e\xc0\x9c\x70\xbc\xd5\x96\xf8\xdb\x31\xb7\xf2\x2c\x08\x2a\x0b\x9f\xae\xa0\x7f\xbd\x30\x36\x1a\x77\x75\x75\x81\x12\xea\x78\x60\xd8\xf5\xa7\x96\x82\x10\x04\x78\xc9\xd3\x05\x00\x1c\xc6\x22\xf5\x74\x5f\x75\x7f\x8b\x70\x78\x76\xee\xdc\xb9\x2a\x9d\xcb\x7d\xb9\xe8\xbb\xc7\x1e\x7b\x8c\x52\x42\x6d\x07\x46\x9d\x5f\x33\xeb\x42\x75\xd9\x7f\x4a\xb0\xe0\x4b\x2d\x63\x0e\x8e\x33\xf5\xe9\xd7\x2e\x57\x67\x7f\xc0\xc1\x07\x26\x27\x27\x33\xaf\xbd\xf6\xda\x86\x14\xc6\x12\xbc\xe1\x71\x10\x42\x68\x7d\x7d\x3d\x35\xe9\x34\x10\x94\x4d\xf7\xcf\x7d\xb7\x10\xb0\x8c\xbd\x59\x43\x97\x2b\x2f\xb6\xf9\x7c\x3e\xd1\x6a\xb5\xde\x52\xff\x4d\x29\xa8\xa6\xa6\x86\xd6\xd5\xd5\x19\x7d\x19\xc3\xce\xf6\xa8\xe5\x29\x3e\xef\xba\x5d\x9e\x82\x26\x5c\xea\x60\x4f\x28\xf9\x57\x84\x90\x4b\xc9\x64\xf2\x6e\xd0\x4e\xa5\x6c\x28\x05\x71\xce\x99\x28\x8a\xa2\xa0\xc2\x45\x39\x91\x38\xb0\xe0\xc4\x23\x0b\x98\x10\x88\x26\x9d\xfa\x01\x88\xd9\x6c\x56\xbb\x95\xfe\x9b\x52\xd0\x8e\x1d\x3b\x40\x08\xb1\xed\x09\x3b\xfe\x80\x72\x22\x91\x15\x68\x07\x04\x50\x45\x96\x3b\xd6\x96\xf8\x0b\x46\xd1\xa7\x69\x9a\xfc\xc6\x1b\x6f\xdc\x0d\xda\xb9\xab\x14\x04\x00\x8a\x81\x65\x52\x92\x1e\x2d\xd3\x4e\x25\x05\x11\x02\x68\x02\xcf\xc8\x66\x3d\x0a\x80\x55\x55\x55\xdd\x3e\x05\xd5\xd4\xd4\xa0\xbe\xbe\xde\xe8\xc9\x8a\xdb\x5a\x62\xe6\x23\xe5\xde\xb6\x1c\x05\x01\x1c\x27\x43\xc9\xe7\x65\xa9\x70\x82\x73\x1e\x3d\x79\xf2\x24\x4b\x24\x12\x95\xe9\xfe\x47\x4f\x41\x00\x68\x3e\x9f\x67\x45\xc2\xe3\xa7\x1b\x52\xbf\xe0\xa5\x02\x2f\x4b\x99\x82\xcf\x05\xd3\xaf\xe5\xc5\xe2\x14\x63\x8c\x65\x32\x99\x5b\xea\xac\x34\x89\x16\x5d\xed\xed\xed\x20\x84\x58\xba\x26\xed\x5f\x22\x20\x22\xe7\x73\x36\xfe\x9c\x8f\x9f\x2f\xc2\x33\xb6\x42\xf8\x42\x6d\xe6\xc7\x84\x90\xf0\xe8\xe8\xa8\x76\xe5\xca\x95\x1b\xf4\x6d\xf0\x85\xbb\x81\xaf\x5c\xb9\xc2\x08\x21\xb1\xcb\x35\xb9\x67\x4f\x34\xcb\x3f\x53\x04\xae\x94\xe7\x3c\x0a\x94\x6b\x67\x83\xe9\x37\x4e\x35\xa4\xbe\x4b\x08\x89\x5c\xbd\x7a\x55\x57\x55\xf5\x96\x3a\x2b\xdd\xd1\x65\xca\x60\x26\x93\x89\x36\x35\x35\x51\xa9\x40\x83\x6d\x33\x96\x23\x65\x8a\x23\x28\xfb\x77\x08\xca\x73\x1c\x20\xc0\xfb\xa1\xe4\x4f\x8a\x84\x0f\xe8\x05\x3d\xf3\xde\x7b\xef\x2d\xd5\x87\xbb\x84\x2b\xe3\xdd\x10\x7c\xf6\xec\x59\x34\x34\x34\xe4\x3c\x1e\xcf\xa5\x73\x75\x99\x3f\x1b\xa8\xce\x1d\xaf\x49\x1b\xb7\x52\x0e\x1a\xb5\x17\xae\x64\x8c\xc5\x33\x20\x18\xc8\xe7\xf3\x99\xd2\x38\xe0\x96\x3a\x2b\x67\xc4\xe6\x29\xa8\xa5\xa5\x05\x06\x83\x41\x6a\x99\x32\x3f\x66\xd2\x89\x07\x58\x18\x32\x57\x52\x10\x08\x30\xe9\xd0\x06\xc7\x3c\xca\xeb\x00\x62\x67\xce\x9c\x61\x15\xae\xe3\xbb\xca\xcd\x77\x23\xbe\x62\xb1\x88\xe7\x9e\x7b\x8e\x3d\xf9\xe4\x93\xb2\xd7\xeb\x3d\x9f\x33\x14\xc3\xa3\x55\xca\x31\x00\x94\x73\x9e\x21\x84\xc8\xa9\x54\x4a\x79\xfd\xf5\xd7\xd9\x12\x17\xfa\xda\xac\xa0\xd6\xd6\x56\x0a\x0e\xc7\xe6\xa8\xe5\x71\xf0\x8a\xd6\x0e\x2c\xb1\x7c\x38\xce\x05\xd3\x2f\x72\x82\xe1\x5c\x36\xa7\xdc\xcd\xf5\x34\xcb\xc8\x86\x0f\xc4\xca\xe0\xf9\xe7\x9f\x67\x5b\xb7\x6e\x55\x9a\x9a\x9a\x22\x4e\xa7\x93\x02\x40\x36\x9b\x65\xd7\xae\x5d\x43\x5f\x5f\xdf\x72\x65\xb0\xa2\xce\x65\x29\xc8\xeb\xf5\x8a\x36\x4d\x68\xa8\x4d\x9b\x76\x96\x5b\xfc\x72\x14\x94\x92\x8a\xd1\x91\xaa\xfc\x9b\x00\xe2\x1f\x7e\xf8\x61\x65\xf7\x02\xee\x9c\x52\x3e\x56\x14\xd4\xd6\xd6\x46\x01\xa0\xe4\x36\xc7\x85\x0b\x17\x50\x6a\x70\x8c\x52\x4a\x19\x63\x0c\x00\x5c\x2e\x17\x6d\x6c\x6c\x84\xc5\x62\x01\x00\xc8\xb2\x8c\xcb\x97\x2f\xb3\x95\xf4\xdf\x40\x41\xed\xed\xed\x94\x10\x62\xac\x4f\x98\xee\x17\x18\xb1\x94\xff\xb9\x1c\x05\x0d\x54\x67\xdf\xd3\x09\x1f\xd5\x0b\xba\x72\xf5\xea\xd5\x79\x1d\x95\xfa\xee\x12\xde\x10\xbd\x35\x35\x35\xb4\xbb\xbb\x1b\x0e\x87\x43\x12\xf8\xdc\x22\xe1\xee\x07\xbb\x75\x45\x55\xb4\x33\x67\xce\xb0\x4b\x97\x2e\x01\x00\x2d\x95\x3d\xba\xbb\xbb\x69\x5b\x5b\x9b\x28\x14\x89\xcd\x9d\x17\xfd\x45\xca\x75\x59\xd2\x23\x07\x0e\x1c\xc8\x7d\xf0\xc1\x07\xec\xc2\x85\x0b\x37\xc4\x75\x03\x05\x05\x02\x01\x4a\x08\xb1\x34\x26\xa4\x4f\x80\x2f\xac\x6a\xb8\x81\x82\x00\x5c\xf5\xe5\xdf\x24\x84\xc4\x87\x87\x87\x59\xc5\x13\x7f\xc3\xa4\xb6\xb6\x96\xfa\xfd\x7e\xb8\xdd\x6e\x88\xa2\x08\x45\x51\x90\x4e\xa7\x11\x89\x44\xe8\xf5\xeb\xd7\xd7\x95\x6a\x3a\x3b\x3b\xe9\x7d\xf7\xdd\x27\x3a\x15\x31\xb4\xef\x8a\xf3\x8f\x1b\x13\xd2\xc3\x02\x87\x71\xda\xa6\xf5\x9d\x6e\x48\x3d\x23\xdd\x7f\xff\x19\xb7\xdb\xad\xfc\xfa\xd7\xbf\x66\x00\xf0\xf8\xe3\x8f\xd3\xba\x40\x9d\xad\x6b\xc2\xf6\x85\x3d\xe3\x8e\x7f\x6b\xd1\x68\x88\x03\x2c\x6e\xd1\x7b\x8f\xb7\x24\xfe\x93\x78\xe0\xc0\xfb\x66\xb3\x59\x29\xcd\x2f\xcf\xc7\xb5\x88\x82\x08\x21\xb4\xb6\xb6\x96\x82\xc3\x11\x48\x9a\xba\x16\xad\x6c\x58\x42\x41\xb2\xb9\x30\x15\xb3\x16\xce\x03\xc8\x55\xb4\xfe\x0d\xa1\x97\x5d\xbb\x76\xd1\xce\xce\x4e\x6a\x36\x9b\x45\xc2\xb8\x64\x50\xb8\x8b\x16\xb9\xc4\x04\xa2\x68\x12\x91\x39\x81\x92\xcd\x66\xf5\x2b\x57\xae\xb0\x8a\x29\xc4\xdb\xa6\x9d\xaa\xaa\x2a\xba\x7f\xff\x7e\xd1\x9d\x37\x74\x3e\xf5\x61\xf5\x0b\x56\x95\x86\xca\x2b\x39\x1a\xe3\x52\x53\x50\x96\x0e\xbd\xd2\x19\xfb\x12\xef\xec\x7c\x2d\x91\x48\x28\x36\x9b\x0d\x81\x40\xc0\xb2\x7b\xdc\xfe\xfb\xf7\x8d\x38\xbf\x09\x0e\x4a\xc8\xdc\x24\x6c\x55\x56\xdc\x7f\xf4\xa2\xf7\xe7\xcf\x6d\x9f\xf9\xcc\xf6\xed\xdb\xdf\x1f\x1b\x1b\xd3\xa7\xa7\xa7\xe7\x2b\x7a\x11\x05\xd9\xed\x76\x58\x2c\x16\x6a\x57\x85\xa0\x4d\x15\x02\xcb\xad\x65\x28\x53\x50\xd8\xa5\x9e\xe7\xe0\x51\x55\x51\xb5\x48\x24\x32\xaf\xa3\x52\xdf\x9d\xe2\x40\x20\x80\xee\xee\x6e\xd1\x66\xb5\x5a\xec\x33\xc5\x7b\xbd\x97\xf2\x5f\xb2\xcd\xea\xf7\xd3\x22\xaa\x01\x18\x01\x68\x45\x11\x53\x69\xaf\x78\x62\xb6\x41\xfa\x81\x6d\xe7\xce\xd3\x9b\x37\x6f\x56\xde\x7a\xeb\x2d\x56\xca\xe4\x6d\xc5\xbd\x63\xc7\x0e\x88\x82\xe8\x78\xf0\x9a\xeb\x9b\x36\x4d\x08\x81\x2c\xcc\xd8\x11\x02\x88\x9c\xd8\x1e\x1a\x72\x7f\x3b\xec\x56\xfb\xf6\xef\xdf\x1f\x16\x45\x11\x66\x8d\x86\xf6\x86\x1d\x7f\x42\x40\xe8\xd2\xf0\x06\x46\x1d\xf7\x8e\x3a\xbf\xfe\xc2\xd6\x99\xdf\xdd\xb1\x63\x47\xac\xe4\x1f\x03\x96\x0e\xc4\x7c\x3e\x1f\x00\x18\xbd\x59\x43\xfb\x0d\x83\xaf\x25\x03\xb1\x49\xa7\x7a\x9e\x10\x92\x8a\x44\x22\xac\xf4\x00\x5a\xd7\xab\xb1\xb1\x11\x87\x0f\x1f\x16\xdd\xa2\xa5\xa9\xe9\x6c\xfe\x7b\x4d\x67\xf3\xbf\x74\x4c\xeb\x4f\x0b\x45\x04\x09\x60\x2c\xad\x0b\x35\x8a\x05\x84\x5c\x11\xfd\xf7\x9a\x4f\xe7\x5f\x6f\xec\x53\xfe\xd2\x69\xb0\x04\x8f\x1c\x39\x22\x36\x36\x36\xa2\x32\x6f\x6b\xc1\x8d\x8d\x8d\x65\xa7\xdb\x03\x73\x79\x27\x15\xe5\x30\x87\x6d\xaa\xd0\xe4\x4f\x19\xf7\x8a\xa2\x28\x02\x30\x56\x67\x8c\xbb\x0d\x45\xe2\x59\x29\x7c\x4d\xca\xb8\xdb\xc0\x88\xb7\xae\xae\xae\xb2\xd7\x2d\xf6\x05\xb9\x5c\x2e\x00\x10\xab\xb2\x86\xcd\x65\x3b\x7f\xde\xd7\x51\xc2\xa5\xe7\x02\x8b\xda\xb5\x0b\x9c\x73\x65\x72\x72\xb2\xfc\xfb\x4a\x5d\x77\x84\xeb\xea\xea\xe8\xc1\x83\x07\x45\xb3\x4a\xda\x5b\x4e\xe5\x5e\x70\xcc\xe8\x4f\x12\x70\x5a\xf6\xb9\x00\x1c\x0b\x78\xee\x4e\x38\x44\x57\x44\xff\xbd\x96\x0f\xf2\xcf\x9a\x74\x12\x3a\x78\xf0\xa0\xe8\xf5\x7a\x17\xe5\x6f\xb5\x58\x10\x04\x6a\x60\xc4\x43\x39\x91\x56\xf2\xf9\x00\x80\xc8\x88\x17\x73\x2c\x42\x39\xb8\x54\x2a\xa6\x65\xc3\x73\xc2\xc1\x01\x49\x10\x84\xca\xfc\xde\x48\x41\x00\x8c\xae\xbc\xd8\xb0\xa0\x6c\x4e\x2a\x29\x48\x11\x59\x26\x6d\x2a\x86\x01\x68\xb1\x58\x0c\x95\x3a\xee\x14\x0b\x82\x80\xee\xee\x6e\x2a\x82\x56\x87\xce\xe5\xbe\x6b\xca\xf1\xce\x1b\x12\xb1\x28\x41\x7c\xfe\x4e\x00\x48\xe9\xe2\xde\xc6\x3e\xe5\x2f\xaf\xed\x31\xff\xee\x43\x0f\x3d\x14\xfd\xf9\xcf\x7f\x3e\x6f\xa5\x00\xa0\x94\x52\x34\x37\x37\xd3\x4d\x9b\x36\xc1\x66\xb3\x51\x00\x34\x95\x4a\xb1\xcb\x97\x2f\x63\x72\x72\x12\xa5\x85\x5d\xc8\x19\x8a\x99\x8c\xb1\x18\x73\xaa\xa2\x7f\x39\xb7\x33\x23\xd0\x13\x96\xc2\x54\xe9\x6b\x36\x6d\xd7\x86\x14\x91\xa5\xcc\xba\xe0\x58\x2e\xfc\x75\x87\x36\xa8\x53\x9e\x63\x15\x89\xc1\x52\x0a\xf2\x78\x3c\x00\x20\xd9\x55\xd1\x7f\x03\xed\x54\xe0\x8c\xa9\x18\xd3\x29\x4f\x71\xce\xd9\xf4\xf4\xf4\xba\x52\x4f\x57\x57\x17\xac\x56\xab\xe4\x1b\xd3\xbe\x62\x4e\xb1\xbd\x7c\xde\x0c\x23\x58\x16\xf3\xf2\xe7\x05\x6c\x8b\x17\x0f\x7a\x26\x0b\xbf\xed\x76\xbb\x2d\x9d\x9d\x9d\xe5\xfc\x01\x00\xfb\xcc\x67\x3e\x83\x87\xba\x1f\x92\x76\x7b\x5b\x3b\x1f\xd2\x1a\x9f\x7e\xa0\xd0\xf8\xe4\x8e\xda\xb6\xa6\xc7\x1f\x7f\xdc\xf8\xe8\xa3\x8f\xd2\x54\x2a\xc5\x34\x4d\x63\x8c\x22\x7e\x2e\x98\x7e\x65\xce\xef\x75\x23\xa5\x8c\xb9\x95\xbe\xa4\x54\x1c\x06\xa0\x01\xd0\x55\x03\x0f\xf7\x84\x52\xcf\x2f\x17\x5e\x13\x98\x72\x32\x94\x7c\x16\x04\xf2\xe4\xe4\xe4\x22\xba\x5b\x64\x05\x89\xa2\x48\x09\x60\xb4\x68\xd4\x53\xe9\xff\x41\x05\xe6\x7c\xae\x02\x40\x90\x2b\x68\x85\x75\x1f\x7c\x75\x74\x74\x50\x52\xe4\xd5\xde\xb1\xc2\x97\xc9\xfc\x8a\xa2\xb9\x56\x4e\x96\xc5\x73\xf7\x85\x85\x61\x1c\x84\x13\xf8\x46\x0b\x5f\x8d\xd7\x19\x7e\xd1\xd1\xd1\xa1\x5c\xbc\x78\x11\x00\xd8\x17\xbf\xf8\x45\xd1\x61\xb2\x7a\x1e\xbe\xe2\xfe\x46\x7b\xd4\xf2\x95\x39\xbf\x3e\x47\x91\x20\x75\x2e\x98\xfe\x1f\x64\x53\xc3\x9f\x7f\xfe\xf3\x9f\x4f\x8d\x8e\x8e\xb2\xd6\xd6\xd6\xd8\x87\x75\x99\x1f\xdb\x55\xa1\x61\xc7\xa4\xfd\x61\xca\x09\x9d\x2b\x07\x8e\x49\xa7\x3a\xf4\xe6\xe6\xf8\x33\x1c\x3c\x92\x88\x27\xf4\x64\x32\x89\x50\x28\x14\xf9\x30\x90\xf9\x5e\x91\x70\x71\xff\x98\xe3\xa8\x55\x13\x1c\x1c\xc0\x8c\xbd\x30\x71\xbc\x25\xf1\xc3\x19\x7b\xe1\x6d\xce\xb9\x5c\x1e\x3b\x94\x2b\x61\x11\x05\x39\x9d\x4e\x10\x10\xa3\x49\xa7\xb6\x72\x5b\x2b\x4b\x25\x05\xe5\x0d\x4c\xe6\x9c\x6b\xc9\x64\xb2\xb2\x00\x71\xa7\xb8\xa6\xa6\x06\x66\xb3\x59\xb4\x24\x8a\xbb\x0d\x0a\x0f\x2d\x8a\x78\xc5\x04\xf1\xc5\xf7\x12\x96\x32\xac\x53\xca\xb0\x76\xb7\xdb\x1d\x75\xb9\x5c\x5a\x57\x57\x17\xb5\x58\x2c\xb6\x4f\x0c\xba\xbe\xd1\x31\x6d\xf9\xfd\x72\x85\x11\x00\x22\x27\x8e\xdd\xe3\xf6\x3f\x55\x45\xa6\x9d\x69\xc0\x77\xa2\xd1\x68\x2e\x9b\xcd\xe6\x6c\x36\xdb\xc5\x77\x9b\x92\xdf\xec\xf7\x67\x8f\x37\x24\xa4\x5d\x02\x23\xc6\x88\x43\x1b\x98\x72\xaa\xef\x72\x82\x3e\x70\xc4\xdf\x7d\xf7\x5d\xc8\xb2\x0c\x9f\xcf\x97\xb3\xd9\x6c\x17\x2f\x06\xb2\xcf\x5c\xf2\x67\x5f\xb7\xa9\x42\xb0\x48\xa1\x65\x8d\xc5\x61\x10\x0c\x02\x08\x0f\x0d\x0d\x69\xe1\x70\xb8\x22\x13\x4b\x06\x62\x84\x10\x91\x32\x88\x02\x2b\xcf\xf8\x54\x64\xb6\x02\xab\x22\x4b\x11\x42\xf4\x8a\x9d\x85\xeb\x22\x3e\x9f\x8f\x12\x42\x8c\xe6\x14\xdb\x51\x2e\x9e\xf2\xb8\x03\xc0\xf2\xb8\xd4\x09\xe6\x76\x1a\x2d\xc2\xd4\x9c\x66\xdb\x14\x87\xf0\x7e\x5b\x5b\x9b\xd6\xd4\xd4\x24\x5a\x55\xa1\x69\x4b\xc4\xfa\xcf\xcb\x0b\x88\x2b\x67\xb2\x40\x08\x76\x4c\xd8\xff\xe8\xc3\xba\xcc\x73\xf5\xf5\xf5\xa3\x2f\xbe\xf8\x22\x7b\xec\xb1\xc7\xe2\x36\x9b\xad\x37\x6e\xd5\xc3\x71\x6b\xe6\x65\xcc\x35\x98\x0c\x80\xb8\xae\xeb\xa9\x9e\x9e\x1e\xbd\x44\xc1\x78\xf9\xe5\x97\xd1\xdd\xdd\x2d\xfb\xfd\xfe\x4b\x8c\x62\x34\x65\x2e\x5a\x4a\x65\x93\x03\x90\xe9\xef\xef\xd7\xcb\x83\xb6\x0a\xb9\xc1\x17\x04\x70\x88\x73\x1b\x1d\x56\xa6\x20\x46\xb8\x0e\x40\xaf\x50\xb4\x2e\x14\x54\x36\x02\x44\x8d\x57\xdf\x9c\x76\x6e\x41\x41\x25\x2c\xaa\xbc\x16\x80\xb8\x6d\xdb\x36\x10\x42\x44\x6f\xd2\xd0\x25\x70\x62\x59\x69\xb9\xbc\xa5\x40\xfd\x0e\x45\x68\x2a\x58\xa5\x09\x59\x96\x95\x9f\xfc\xe4\x27\xec\xc0\x81\x03\x99\xe6\xe6\xe6\x9c\xc5\x62\xa1\x00\x50\x2c\x16\xd9\xd8\xd8\x18\x3b\x77\xee\x1c\x66\x67\x67\xe7\x29\x38\x95\x4a\xb1\x17\x5f\x7c\x11\x0d\x0d\x0d\xca\xa6\x4d\x9b\x94\xaa\xaa\xaa\x38\xe7\x1c\x91\x48\x04\xc3\xc3\xc3\xa8\x18\x97\x2c\x2a\xef\xe5\xdc\xd1\xf3\x72\x93\x81\xd8\xa2\x27\xf9\x3a\x63\xca\x2b\x5b\x26\x6e\x8d\x57\xda\x5b\x33\x77\xa8\xc1\x9c\xe5\x03\x80\x16\x05\x4e\x2b\x0b\x7c\x2e\x3f\x15\xe1\x01\x14\x28\x17\x01\xa0\xa1\xa1\x81\x86\xc3\x61\x9c\x3c\x79\x12\x27\x4f\x9e\x64\x16\x8b\x85\x89\xa2\x88\x25\xeb\x9a\x6e\x48\x7f\x38\x1c\xc6\x12\x9a\xb9\x69\xf8\x45\x14\xc4\x39\x07\x27\x04\x8c\x2c\x7c\x2e\xcf\xf9\xce\x63\x00\x02\x23\xc6\x8a\xf5\x9c\xeb\xe9\x03\xa2\x9c\x73\x56\x30\xd3\x28\x27\x0b\x2d\x9d\x63\x65\x3c\xdf\x0f\xca\x5e\x5b\x94\xa7\x07\x09\x34\x33\x9d\x06\xc0\x8a\xc5\x22\x28\xa5\x2c\x62\xd7\x86\x72\x46\x16\xb7\xa8\xd4\xb3\xdc\x8e\xc9\x19\x5b\x61\x38\x2d\x15\xa3\x00\x58\x38\x1c\x9e\x77\x4b\xb4\xb6\xb6\xc2\xe1\x70\x00\x00\x52\xa9\x14\xc6\xc6\xc6\xb0\xc4\xf7\x34\x2f\x5d\x5d\x5d\x65\x6f\x28\x05\x00\x59\x96\xd9\xc5\x8b\x17\x57\xdc\x95\xbf\x68\x83\x46\x69\xb7\x8a\xae\x53\x3e\x37\x9b\xbf\x8c\x41\xcb\x39\x60\xd2\xa9\x8d\x10\xb2\x5c\xeb\xbd\x19\xd5\x94\xc3\xad\x88\x53\xa9\x14\x08\x21\x5a\xd6\x45\xfb\x41\x08\x23\x9c\x53\xf0\x8a\x64\x2c\x87\x2b\xee\xf3\xc9\xe4\x00\x17\xa0\xe5\x9d\x74\x00\x80\x7e\xea\xd4\x29\xec\xd9\xb3\x47\x23\x06\xc3\xc4\x89\x66\xf9\x27\x9f\x1a\xf0\xfc\x3e\xe1\x8b\x7b\x7c\x81\x32\xed\x44\xb3\xfc\x03\x4e\x10\x49\xa5\x52\x0c\x00\x1e\x7a\xe8\x21\xda\xdc\xdc\x2c\x4a\x4c\x70\xf8\x32\xc6\x26\xc2\x41\x63\x75\x85\xe1\x6d\xdb\xb6\xa5\x26\x26\x26\xb4\x57\x5e\x79\x65\x3e\x8f\x6e\xb7\x1b\x8f\x3f\xfe\x38\xb5\x9a\x2d\x96\xfa\x84\xa9\xcb\x1f\x37\xed\x2c\x08\x2c\x37\x52\xe5\x7e\xa7\xfe\x70\x7d\x78\x74\x74\x54\xab\x58\xa8\x30\x5f\x3e\x4b\xf7\x88\x31\x0e\xe8\xaa\x81\x65\xa0\xae\x4c\x41\x16\x4d\x70\x81\x43\x2c\xb5\x9c\x75\xa3\xa0\xd2\x9a\x4c\x4d\xb5\xd2\x81\xac\x8b\x0e\xda\xe2\xac\x7d\xae\xb0\x57\x41\x47\x4b\x24\x5d\x25\x9c\x2f\x98\x48\x18\x80\x36\x3c\x3c\x0c\x49\x92\xd8\xce\x9d\x3b\x23\x57\x7c\xb9\x1f\xab\x02\x63\x07\x46\x9d\x4f\x7a\x72\xa2\x7f\x6e\x54\xaf\x4e\xbc\xd7\x94\xfc\x49\xc4\xa1\xbd\x0c\x20\x7e\xe1\xc2\x05\x76\xe8\xd0\x21\x1a\x6a\x0c\xd9\xba\x26\x6d\x5f\xd8\x3f\xe6\xfc\x8f\x26\x9d\x04\x01\x82\x82\xc0\xa2\xbd\xc1\xf4\x9f\x9d\x6a\x0c\xfe\xf5\x53\x4f\x3d\x95\x7a\xe1\x85\x17\x60\xb1\x58\x70\xe4\xc8\x11\xea\x12\xad\x81\xc7\xcf\x57\x3d\x53\x2f\x9b\x9e\x28\xb3\xc5\xfd\xc3\x3c\x73\xba\x21\xf5\x5f\xd0\x18\xfa\xeb\xa3\x47\x8f\x66\x5e\x7a\xe9\xa5\xf2\x6a\xf0\x1b\x29\x28\x95\x4a\x51\xbb\xdd\xae\xe5\x0c\x45\x19\x58\x99\x82\xec\xaa\x50\x4d\x00\xc9\xe3\xf1\x50\x2c\x7e\x18\xdf\x91\x24\x12\x09\xc8\xb2\xac\xbb\x5c\xae\xc8\x74\xb3\xe9\x67\xd6\x44\xfe\x3f\xcf\x35\xe8\xb5\x51\x10\x28\x61\xd3\x2d\xa6\x67\x39\x10\x8d\x4e\x4f\xeb\xb9\x5c\x8e\x9d\x39\x73\x06\x75\x75\x75\xb9\x9a\x9a\x9a\x81\x11\x4f\xfe\x6f\x46\x3d\xca\x71\x49\xa7\x01\x0e\xce\x54\x91\x87\x41\x30\xc4\x39\x9f\x18\x1b\x1b\x53\x44\x51\x44\x63\x63\xa3\xd4\x19\xb1\x3e\xfd\xe0\x35\xd7\x5f\x96\xbd\x9b\x00\x60\xd0\x49\xf5\xbe\x31\xc7\xb7\x08\x87\xf5\x64\x08\xdf\x3e\x70\xe0\x40\xc6\x6e\xb7\xc3\x2c\x99\x1d\x0f\x5f\x76\xff\xb7\x06\x59\x7a\x82\xcf\x9b\x64\x00\x65\xb0\xed\x1f\x73\x7c\x2b\x63\x2a\xa6\xb8\xbf\xe6\x87\x1d\x1d\x1d\xca\xa5\x4b\x97\x16\x86\xe6\x15\x77\xaa\x69\x1a\x03\xa0\xa5\xe6\x78\xb0\xc2\x11\xb4\x80\x39\x00\x9b\x26\x78\x0d\x45\xe2\x30\x18\x0c\x6b\xf1\xf3\x60\x35\xf8\xe2\xc5\x8b\x0c\x80\x9c\xf6\x0a\xaf\xc6\x1a\x0d\xc7\xca\x76\x0e\x29\x95\xee\x52\x5c\x79\x2f\xdb\x96\x91\x66\xe3\x8b\x39\xa7\xf0\x0e\x00\xb9\xaf\xaf\x6f\x5e\xff\x2b\xaf\xbc\x82\x91\x91\x91\x14\x80\x41\x10\xbc\xad\x18\xd8\x73\x8a\xc8\x9e\x07\xc1\x7b\x8c\xb1\xe1\x81\x81\x81\xdc\xb1\x63\xc7\xd0\xd1\xd1\x41\x05\x4e\xbc\x7b\xc6\xed\x5f\x23\x58\x44\xb5\xf3\x95\xbf\x63\xd2\xfe\x87\xe6\x02\x0d\x75\x76\x76\xd2\xfa\xfa\x7a\xd1\xa9\x88\xed\x2d\x31\xf3\x13\x4b\xc3\x96\xc2\xd3\xdd\x61\xfb\x1f\x0b\x9c\x78\xb7\x6d\xdb\xb6\xa8\x7c\x16\x51\xd0\xec\xec\x2c\xbc\x5e\xaf\x26\x9b\x0b\x13\xc0\xca\x14\x64\x28\x12\x87\x2b\x2f\x36\x44\xed\xfc\xa2\xdf\xef\xa7\xeb\xe9\x8e\x1e\x18\x18\x40\x67\x67\x67\xce\xe3\xf1\x0c\x4d\xb5\x9b\x9e\xa1\x45\x58\x3c\x13\x85\x7b\xe7\xc7\x59\x37\xa1\x20\x4e\x80\x99\x4d\x86\x63\xd3\x2d\xc6\xbf\x02\xc1\x70\xe4\x7a\x44\xa9\xb0\x48\x68\xa1\x50\xc0\x9b\x6f\xbe\x89\xea\xea\x6a\xad\xa1\xa1\x41\xf3\xfb\xfd\x29\xc6\x18\x22\x91\x08\x86\x86\x86\x90\x4a\xa5\x20\x49\x12\x1c\x0e\x07\x35\xab\x42\xd0\xa1\x88\x4d\x73\x79\xbe\xd1\x6a\x32\x14\x89\xcb\x9b\x35\x74\x8d\x1b\xd5\x21\x00\xa8\xca\x8a\xdb\x28\x87\xb4\x52\x78\x87\x2a\x36\x59\x34\x21\xc8\x1c\x8e\x88\x24\x49\x4c\x51\x94\x1b\x29\x28\x9f\xcf\x53\xce\xb9\x12\xb3\xea\x57\x81\x95\x29\x88\x10\x02\x7f\xda\xb8\x7d\xda\xa6\x1d\xf3\xf9\x7c\x5a\x24\x12\x59\x37\x4b\x88\x31\x86\xb7\xde\x7a\x8b\x3e\xf1\xc4\x13\xb2\x28\x8a\xbd\xe3\x5b\x4c\xdf\xcc\xba\x85\xdf\xf1\x0f\xaa\x47\x0d\x2a\x77\x60\x59\x0a\x22\xd0\x2c\x24\x7e\x7d\xb3\xe9\x17\xb2\x5f\x7c\x16\x84\xf4\x65\x32\x99\xd4\xaf\x7e\xf5\x2b\x70\xce\x6f\x48\x5b\x34\x1a\x45\x34\x1a\x5d\x36\x7e\x45\x51\x00\x80\x72\xc2\x8d\xf3\x75\xbe\xc2\x39\x13\x3a\xe5\xf3\xad\x39\x6f\x60\xf3\x7b\x89\x97\x0b\xaf\x18\x58\x4a\x31\x30\xbd\x14\xc7\x7c\x9a\x16\x59\x41\xa5\xc3\x29\xf4\x59\xab\x36\xc4\x08\xd7\x09\xc8\x42\x0f\xa9\x1c\x81\x02\xa8\x93\xa5\xdd\xe7\x03\x59\x4b\x5d\x5d\x5d\xe6\xc2\x85\x0b\xeb\x62\x05\x95\x71\x22\x91\x60\xaf\xbf\xfe\x3a\x1e\x7d\xf4\xd1\xa8\x28\x8a\xa7\xe3\x41\x43\x4c\xf6\x8b\xc7\x1d\x51\xfd\x41\x7b\x4c\xef\x94\xb2\xac\x9a\xea\x30\x16\x45\xa2\xa9\x36\x1a\x49\xf9\x84\x8b\x29\x9f\x78\x9c\x0b\xe4\x3c\xe7\x7c\x34\x97\xcd\xa6\x5e\x7e\xf9\x65\x96\xc9\x64\xd6\x3c\x18\x94\x24\x89\x02\x60\x39\x03\x93\x63\x36\x6d\xd8\x9f\x36\xb5\x63\x19\x91\xcd\xfa\xd4\xb4\x5d\x1b\xc4\xdc\x33\x90\x46\xed\xda\x50\xc2\xac\x4f\x78\xf2\x86\xe0\x72\xe1\xaf\x7a\x73\xa7\x0b\x94\xc9\x45\xbd\x58\x8e\xef\x46\x2b\x48\x96\x65\x10\x42\xf4\xac\x91\x4d\x25\x25\x3d\xe2\xae\x50\xb6\x64\x20\x86\x7a\xd9\xb4\x9b\x32\xb8\xaa\xab\xab\x63\x15\x8b\x02\xd6\xd5\x22\x7a\xee\xb9\xe7\xd8\xc3\x0f\x3f\x1c\xaf\xae\xae\xce\x31\x91\x4c\xc8\x01\xc3\x69\x39\x60\xf0\x02\x70\xa0\x34\x23\x06\x20\x05\x20\x0a\x20\x06\x40\x9e\x9c\x9c\xd4\xde\x7d\xf7\x5d\xa4\xd3\xe9\xdb\x8a\x57\x51\x14\x24\x12\x09\xe6\x76\xbb\x63\x27\x9a\xe5\x1f\x7d\xf6\xbc\xef\x1b\x06\x46\xe7\xb7\x62\x11\x42\x50\x24\x9c\xbd\xdb\x24\xff\x2d\xa3\x98\x62\x6c\xae\x55\x83\xd2\x89\x37\x37\xc7\xff\xcf\x67\x2e\xfa\xbe\x2e\xe9\x74\x7e\x31\x03\x08\x10\xb5\x69\xe1\x93\xa1\xe4\xf7\x08\x21\xb1\xd1\xd1\xd1\x45\x0e\xcc\xf2\x59\x11\x1c\x00\x57\x14\x85\x77\x76\x76\x42\x14\x45\xc9\x97\x35\xee\xf7\xa5\x0d\x4d\xcb\x51\x10\x08\x20\x32\x62\x9d\x74\xa9\xa7\xb2\x36\x0c\x46\xa3\x51\xbd\x64\x3b\xf3\xf5\xbc\x54\x55\xe5\x03\x03\x03\x3c\x91\x48\x14\xad\x56\x6b\xc6\x66\xb3\xc5\x39\xe7\x11\x00\x61\x42\xc8\x08\xe7\x7c\x84\x10\x32\xc6\x18\x9b\x99\x9e\x9e\x4e\xf7\xf4\xf4\x14\x4f\x9f\x3e\xcd\x34\x4d\xbb\xd3\xb8\x51\x5f\x5f\x5f\xc8\x48\x2c\x3e\xe1\x52\x93\xce\xbc\x58\x67\x2e\x50\x2b\x23\x9c\x47\x6d\xda\xc4\x5b\x6d\x89\xef\x8f\x7a\x94\x9f\x72\xf0\x70\x6f\x6f\xaf\x36\x36\x36\xc6\x83\xc1\xa0\x9a\x91\xd8\xcc\x90\x37\x3f\x4e\x39\x71\x08\x1c\x62\x4a\xd2\xe5\x8b\xb5\xd9\xf7\x7f\xd5\x96\xf8\x5f\xaa\x81\xf7\x30\xc6\x66\xdf\x7e\xfb\x6d\x56\xa2\x20\x0e\x80\x2f\xdd\x29\xcf\xa6\xa6\xa6\x58\x73\x73\x73\x2a\xec\x56\xce\xdc\x13\xb1\x1d\x5c\xa8\xc9\xc5\x14\x44\x40\xd0\x3e\x6d\xfd\xf4\xb8\x5b\x7d\xad\xbd\xbd\x5d\x19\x1f\x1f\x9f\xef\x56\x65\x5d\xb8\x4d\x0a\x5a\x8a\x87\x87\x87\xd9\xf0\xf0\x30\x05\xa0\x85\x42\x21\xdd\x66\xb3\xcd\x27\x2b\x93\xc9\xa0\xd4\xaa\xd6\x3a\x30\x5c\x11\x5f\xbe\x7c\x19\xc1\x60\x50\x09\x85\x42\x43\xd7\x9d\xda\x8f\x7e\xbe\x7d\xe6\xa4\xb1\x48\x82\x00\xa0\x09\x3c\x02\x82\x21\x00\xe1\xd8\x4c\x2c\xd7\xd7\xd7\x07\xce\x39\x02\x81\x80\x12\x0a\x85\x86\x64\x8b\x9e\x79\xab\x35\x7e\x86\x80\x78\x00\xe8\xa5\xe3\x16\xc2\x8c\xb1\xd8\x3b\xef\xbc\xa3\x97\x16\x2d\xcf\x97\xd5\xd2\xf3\x82\x88\xd9\x6c\x46\x43\x43\x03\x72\x06\x66\xda\x3e\x65\x7b\x42\xe0\x73\xcf\x81\xa5\x14\x04\x00\x4e\x45\xac\xed\xf7\x67\x7f\x21\xb9\x6c\xb3\x03\x03\x03\x4c\xd7\xf5\x9b\x39\x8f\xc9\x7a\x60\x59\x96\xe7\x1f\xa2\xd1\x68\xb4\x7c\x6c\xc1\xcd\xe2\xbd\x2d\x3c\x32\x32\x02\x8b\xc5\x52\xf0\x78\x3c\x49\x42\xc9\xf5\x22\xc5\x60\x91\xe2\x0a\x08\x86\x18\x63\x91\xa1\xa1\x21\xe5\xd8\xb1\x63\x28\x16\x8b\xf3\xe1\x0b\x85\x82\xee\xf5\x7a\x53\x06\x83\x21\x02\x82\x30\x08\x46\x08\x21\x93\x99\x4c\x26\xfd\xd6\x5b\x6f\x15\x47\x47\x47\xb1\x34\xae\x65\x87\x92\x5f\xfd\xea\x57\x8d\x04\xa4\xf3\x89\x0b\xde\xbf\x09\xc5\xcd\x3b\x97\xa3\xa0\xb9\xd5\x89\x1c\xef\x36\x25\xff\xeb\xd9\x60\xea\xdb\x67\xcf\x9e\xcd\xf4\xf6\xf6\xae\xa7\x5f\xe8\x63\x21\x1e\x8f\x87\x86\x42\x21\x78\xbd\x5e\x00\x73\xa6\xfa\xc8\xc8\x08\xe2\xf1\xf8\x8a\x79\x6d\x6c\x6c\xa4\x5e\xaf\x17\x65\x13\x77\x25\xbf\x11\xb0\xc4\x0a\x42\xa9\xeb\x27\x12\x09\xdd\xe3\xf1\xc4\xae\x54\xe7\x4e\x34\x26\xa4\x9d\x73\xcf\x81\xc5\x14\x54\xf6\xa5\x6f\x9f\xb2\x7d\xe1\x42\x20\xf3\xa3\x7b\xee\xb9\x67\xb8\x54\x01\xeb\x4e\x41\xab\xc4\xeb\xe2\x12\x5f\x8a\xe3\xf1\x78\xb9\xb0\x17\x7d\x1f\x0a\x85\x68\x53\x53\x13\xdc\x6e\x37\x05\x80\x74\x3a\xcd\xae\x5d\xbb\x86\x6b\xd7\xae\x61\x6c\x6c\x8c\x8d\x8d\x8d\xad\x4a\xff\x0d\x14\x04\x80\x18\x0c\x06\x04\x83\x41\x9e\x92\x74\xb6\x35\x62\x3b\x62\x60\xd4\xb4\x1c\x05\x11\x02\x98\x74\xe2\xce\x19\x58\x74\xb6\x8a\xf7\x52\x4a\x0b\x25\x7f\x4e\xa5\xce\x79\xbd\x1b\x8c\x57\x8a\x77\x5d\xb1\x28\x8a\xe4\xd0\xa1\x43\xd8\xb9\x63\xa7\x31\x64\xf1\xd5\x6f\xc9\x79\x1e\x6c\x2c\xba\xee\xb1\x7b\x9c\x7a\x6d\x5b\x28\x5b\xdf\x50\xaf\x8f\x8f\x8f\x93\x42\xa1\xb0\x2a\x9d\x8b\xac\xa0\xf2\x35\x3d\x3d\xcd\xbb\xba\xba\x38\x13\x40\x6c\x9a\xd8\x59\x9b\x36\xb5\x2c\x47\x41\xc0\x9c\x59\x56\x9d\x31\x76\xf6\xfb\xb3\x2f\xba\x6b\xbc\x89\xab\x57\xaf\xb2\x92\x4b\x63\x5d\x2d\xa2\x8f\xcb\x75\xf8\xf0\x61\xd2\x10\xac\x77\x1c\x18\x75\xfc\xeb\xc3\x03\x55\x3f\x68\x8b\x59\xbf\xd4\x3c\x6b\xfe\xad\x2d\xd7\x6d\x5f\xb1\x69\x82\x23\x16\x14\xce\x36\x84\x1a\xd5\xfe\xfe\xfe\xe2\x6a\xf4\x2d\x3d\xb2\xac\x3c\xf8\x43\x55\x55\x15\x77\xbb\xdd\x2c\x69\x2e\x92\xad\xd7\x6d\x8f\x13\x90\x85\x19\xc0\x52\xdb\x2b\x63\x03\xa3\x36\xa3\x4e\xa5\x31\xaf\x76\xdc\xe5\x76\x29\x43\x43\x43\x65\x5d\x4b\xf5\xd2\x0d\xc4\x95\x71\x6d\x08\xde\xba\x75\x2b\xe9\xe8\xe8\x90\xb6\x4d\xd9\xbf\x7c\xff\x88\xf3\xdb\x94\x11\xa9\x3c\xe2\x25\x1c\x86\x9a\x8c\xf1\x00\xe5\x84\x45\xfd\xfc\x94\xc9\x64\x2a\x4c\x4c\x4c\xdc\x52\xe7\xb2\x14\x04\x80\xa8\xaa\x8a\xd6\xd6\xd6\xa2\x6a\xe4\x05\x4f\x4e\xdc\xe6\xcb\x1a\xeb\x51\x2e\xfc\x72\xe0\x0a\xec\xcd\x1a\xee\x89\x38\xd4\x73\xf0\x5b\x47\x54\x55\xd5\xa3\xd1\xe8\x3f\x39\x0a\x7a\xe4\x91\x47\xa8\x24\x1a\x6b\x0f\x0f\x54\x7d\x47\xd2\x05\xcf\x52\x9f\x0f\x01\x81\x2f\x6b\xd8\xd2\x5f\x9b\x7d\xde\x51\xed\x99\xbd\x70\xe1\x02\x67\x8c\xdd\x54\x67\xe5\x03\x61\xd1\x35\x39\x39\xc9\xa6\xa7\xa7\x35\xce\xf9\xd4\x07\xf5\xe9\xbf\xd3\x09\xd7\x17\x86\x29\xc0\x52\x2c\x30\x62\xfc\xe4\x55\xcf\xb7\xcc\x1a\x0d\xed\xd9\xb3\x47\x2c\x59\x0d\x77\xb4\x46\xe8\xe3\x76\x59\xad\x56\x6a\x2e\x50\xbf\x4d\x15\x1a\x00\x2c\x3a\xe5\xa5\x8c\x0d\x45\xe2\x72\xe5\xc5\x4e\x51\x14\x45\x5d\xd7\x6f\xa9\x73\x25\xb7\x31\x00\xd0\x73\xe7\xce\x81\x10\x22\xcf\x5a\x0b\x3d\x97\xfd\xd9\xf7\xca\xb4\x53\xae\xbf\xa5\xd8\xa1\x88\x2d\x8f\x5c\xf1\x7c\xcb\x28\x1a\x5c\x87\x0e\x1d\xa2\x26\x93\x69\xcd\xee\xe8\x3b\xc0\xab\x71\x89\xdf\x36\x2e\x6d\x39\xa5\x3a\xe5\xb4\x58\x9e\x31\x5c\x46\x38\x81\x9e\x37\x30\x0d\x00\xad\xaf\xaf\xbf\xa5\xfe\x1b\x0a\xbd\x32\xc0\xf8\xf8\x38\x22\x91\x88\x06\x82\x70\x4f\x63\xea\x07\x79\xb1\x98\x59\x89\x82\xca\x53\x07\x9b\xe2\xd2\xd1\xfb\x87\x9d\xff\xde\x66\xb5\x39\x0e\x1f\x3e\x0c\x83\xc1\xb0\xe1\x85\x53\x71\xdf\x30\x2c\xcb\x32\x18\x63\x4c\x15\xb9\x1c\x76\x2b\xe7\xe7\xf2\xbc\x98\x82\x00\x20\x62\xd7\x86\x64\xb3\x1e\x06\xa0\x27\x93\xc9\x5b\xea\x5f\xd6\x0a\xaa\xbc\xe2\xf1\x38\xe9\xe8\xe8\xd0\x35\x81\x29\x05\x01\xae\x50\x5c\xea\x22\x95\xcd\xbf\xf2\x11\x4b\x00\xc2\x09\xfc\x69\xe3\x9e\x82\xc0\xe4\x54\xad\xe1\x7c\x20\x10\x28\x6f\x5b\xfd\xc8\x2d\x98\x3b\xb9\x38\xe7\xbc\xa6\xa6\x86\x3b\x1c\x0e\x4c\xdb\xb5\x7c\x73\xcc\x7c\xbf\x51\x27\xe6\x4a\xb7\xb3\x62\x60\xb9\xd7\x3a\x66\xff\x7b\xc6\x58\x3c\x9d\x4c\x26\xd3\xbd\xbd\xbd\xb7\xb4\x84\x56\xb4\x82\x4a\xdf\xf1\x5c\x2e\x47\x9c\x4e\x67\xd1\xe3\xf1\xa8\x33\xb6\x42\xa2\x2e\x69\xda\xe7\x54\xc5\xaa\x4a\x2b\x68\x29\x06\x27\xb4\x41\x96\x1e\xcc\x1b\xd8\x4c\xb6\xd6\x78\x29\x18\x0c\x16\xae\x5c\xb9\x52\xb6\x00\xfe\xd1\x5a\x41\xf9\x7c\x1e\xad\xad\xad\xba\x66\xe0\xf2\xa0\x2f\x3f\x26\x70\xe2\x34\xea\xd4\xa2\x8a\x4c\x19\xf6\xe5\xfb\xdf\xd8\x9c\xf8\xce\xac\x4d\x7f\x1d\xc0\xd4\xa9\x53\xa7\x0a\xb3\xb3\xb3\xb7\x6f\x05\x55\x7e\x3f\x35\x35\x85\x8e\x8e\x8e\x82\x60\x10\xf3\x53\x4e\x2d\xd5\x31\x6d\xe9\x16\x19\x35\xdc\x9c\x8e\x88\xd0\x18\x97\x1e\x29\x52\x9e\x49\x05\x0c\x17\x5a\x5a\x5b\xf4\xf1\xf1\x71\xae\xaa\xea\xc7\xd2\x0a\x2a\xbd\x1e\xe5\xa6\x61\xd2\xe9\x34\x8a\xc5\x62\xb1\xae\xae\x2e\x53\x10\xf9\xe4\x68\x95\xd2\xfb\x61\x5d\xe6\x9d\xbe\x60\xe6\xe5\x61\xaf\xf2\x0f\x8a\x81\xf5\x00\x18\x1f\x1a\x1a\x52\x7a\x7b\x7b\x57\x17\x6f\xe9\xc3\x4d\xbb\x49\xb1\x58\xe4\xd9\x6c\x16\xa1\x50\x48\x55\x44\x96\xc9\x48\xcc\xd8\x1c\x33\xef\x24\x9c\x54\x2e\x56\x5b\x8e\x8e\x68\xbd\x6c\x7a\xd8\x52\xa0\xf6\x68\x0d\xce\xb6\x6c\x6e\xcd\x27\x93\x49\x2e\xcb\xf2\xc7\x86\x92\x1c\x0e\x07\xe9\xee\xee\xc6\xfd\xf7\xdf\x4f\x5b\x5a\x5a\x78\x36\x9b\x45\x69\xcd\xeb\xb2\xe1\xa7\xa7\xa7\x79\x2e\x97\x63\x5e\xaf\x37\x63\x30\x18\xa6\x09\x21\x63\x00\x46\x39\xe7\xe3\xba\xae\xcf\x9e\x3d\x7b\xb6\xd0\x5f\x59\x6d\x67\x00\x00\x07\x76\x49\x44\x41\x54\xd3\xd3\xb3\xea\xfc\xdd\x92\x82\xca\xff\x8b\xc7\xe3\xcc\xe5\x72\xb1\xaa\xaa\xaa\xdc\xac\xa5\x10\x33\xe9\xb4\xc1\x9f\x32\x35\x2d\x47\x41\x95\x98\x70\x42\x6a\x32\xc6\xbd\x75\x49\x53\xd7\x75\xaf\xfe\x41\xb0\x6d\x53\xca\xe5\x72\xb1\xa9\xa9\x29\x52\x2c\x16\x3f\x52\x0a\x6a\x6f\x6f\x27\x87\x0e\x1d\xa2\x3e\x97\xc7\xfd\xd0\x68\xd5\x1f\xc2\x6e\xca\x56\x77\x34\xc6\xe2\xf1\x38\x97\x65\x79\xc5\xdf\xc6\x62\x31\x72\xe9\xd2\x25\x9e\x48\x24\xf4\x58\x2c\xa6\x46\x22\x11\xe5\xf2\xe5\xcb\x85\xf7\xdf\x7f\x9f\x4f\x4c\x4c\x60\x2d\x69\x58\x15\x05\x95\x71\x38\x1c\x46\x73\x73\xb3\x2e\x49\x52\x76\xdc\xa5\x4c\xd5\x64\x8c\x5b\x5d\x79\x43\x35\x29\x17\x78\x39\xe0\x0d\x1d\x8d\xc0\xa9\x8a\x4d\x1d\xd3\x96\xcf\x66\x4c\x2c\x82\x7a\xfb\x68\x6b\x5b\x5b\x41\xd7\x75\xc4\x62\xb1\xbb\x4e\x41\xb5\xb5\xb5\xe4\xe0\xc1\x83\xe8\xec\xe8\x94\x6a\xf2\xd2\x8e\x4f\xf7\xfb\xfe\xa6\x39\x66\xf9\x4a\x20\x65\xda\x77\xc5\x9f\x7b\x2d\xd0\x58\x9f\xba\x76\xed\x1a\x34\x4d\x5b\x51\x0f\xe7\x1c\x89\x44\xa2\xec\xed\x44\x22\x91\x28\xbf\x06\x65\x4d\xe9\x59\x15\x05\x95\x2f\xce\x39\x8f\x44\x22\x68\x6e\x6e\x56\xa8\x28\xa4\x47\x3d\xca\xf5\xa0\x6c\xda\x61\x57\x45\xd7\xbc\xca\x25\x74\xc4\xc1\x51\x3e\xcd\x4f\x64\xc4\xde\x32\x6b\xfe\x4c\x4d\xca\xd8\x91\x74\xe1\x8a\xaf\x25\x28\x37\x35\x35\xb1\x42\xa1\xc0\x4b\x1e\xc7\x0d\xa5\x9b\x40\x20\x40\xf6\xed\xdb\x87\x7d\xfb\xf6\x19\xab\x4c\xf6\x9a\xfd\x63\xce\x7f\x73\x70\xd0\xfd\x1d\xa7\x2a\xb6\x12\x00\xe6\x02\xf5\xdb\x34\xd1\x3d\x5a\xad\x9d\xf0\xfb\xfd\xf9\x81\x81\x81\x0d\x4f\xd3\xaa\x29\xa8\x8c\xf3\xf9\x3c\x64\x59\xe6\x4d\x4d\x4d\x79\x26\x12\x79\xc4\x93\x8f\x34\xc8\xd2\x4e\x8b\x26\xd8\x97\xa5\xa0\xb9\x3f\x20\x28\x1f\x75\x46\x88\x3b\x6f\x68\xbf\x67\xda\xfa\x3b\x76\x45\xa8\xce\x56\x09\x23\x81\xd6\xc6\x4c\x7b\x7b\x3b\x37\x9b\xcd\xc8\xe5\x72\x44\x51\x94\x75\xa3\x20\x93\xc9\x44\x5b\x5a\x5a\xc8\x27\x3e\xf1\x09\xd2\xd5\xd5\x65\xac\x76\x56\x55\x6d\x9f\xb2\x7d\xf1\xd1\x81\xaa\xbf\x0a\x25\xa4\x27\x28\x23\xa6\x79\x7b\x9e\x03\xbe\xac\x61\x6b\xda\x54\x0c\x67\xab\xc5\x4b\x26\x93\x49\x5f\x8d\x3f\xe7\x4e\x70\xb9\x4b\x2c\x1d\x90\xdd\x52\x36\x6f\xde\x8c\x07\x1f\x7c\xd0\x08\x20\x68\xd6\xe8\xc3\x47\x2f\x7a\xbf\xee\x4f\x1b\x43\xcb\x1d\x61\xcc\xb1\xd0\xf7\x96\x62\x46\x78\x66\xc8\x9b\x7b\xfe\x42\x6d\xf6\x7b\x53\x4e\xf5\x3c\xa3\xc8\xc9\xb2\xac\x87\xc3\x61\x16\x89\x44\x10\x89\x44\xa0\xaa\xea\xaa\x0f\x77\x15\x45\x11\x2e\x97\x0b\xf5\xf5\xf5\xf0\xfb\xfd\xa8\xab\xab\x13\x29\xa1\x46\xa7\x22\x06\x3b\x22\x96\xdf\xde\x7a\xdd\xf6\x65\x4b\x41\x08\xdd\x98\xca\x05\xd1\x04\x26\xff\xac\x2b\xfa\xd9\x98\xad\xd0\xf3\xe6\x9b\x6f\x6a\x23\x23\x23\xab\x2e\x97\xb5\xca\xcd\xd2\x71\x4b\xd9\xbb\x77\x2f\xdd\xbe\x7d\xbb\x11\x40\xd0\x54\xa4\xf7\x1f\xba\xe2\xf9\x5a\x73\xcc\xbc\x8d\xcc\x6f\x26\x58\x4c\x41\x73\x31\xae\x84\xc1\x64\xb3\x7e\x7e\xb8\x2a\xff\xca\x48\x95\xf2\xfa\xb4\x5d\x1b\xd0\x28\xcb\x10\x42\xf4\x5c\x2e\xc7\x92\xc9\x24\x53\x55\x15\xf1\x78\x1c\x8b\xf7\xb9\x01\x0e\x87\x03\x46\xa3\x11\x55\x55\x55\xd4\x6c\x36\x53\x51\x14\x29\xe1\x90\x5c\x79\x31\xd0\x18\x97\x1e\x68\x89\x99\x3f\x5d\x9b\x32\x3d\x20\x70\x62\x03\xb0\xaa\x77\xcb\xc4\xac\x5a\xdf\xcf\xba\xa2\x9f\xcb\x30\x35\xfc\xfd\xef\x7f\x7f\xdd\x96\x5f\x2e\x95\xa5\x3d\xa0\x32\x67\x14\xab\x98\x39\xea\xea\xea\xc2\xee\xdd\xbb\x45\x4a\x69\x80\x32\xec\x3e\x30\xea\xfc\x97\xbb\xc6\xed\x07\x29\x16\xba\x75\xe9\x60\x95\xb9\x8f\xab\xc2\x9c\xa9\x22\x9b\x9a\xb1\x15\xfa\xa6\xed\xda\xf9\x59\x4b\xa1\x3f\x69\xd6\x47\x33\xc6\x62\x44\x15\x59\xa6\x20\x70\x9d\x97\x96\xd0\x0b\x8c\x88\x46\x9d\x48\xe6\x02\xf5\x38\x15\xb1\xc1\x9d\x33\xb4\x55\x67\x0c\x5b\xfd\x69\xd3\x4e\xbb\x2a\xb4\x11\x0e\x89\x80\xac\xfd\xe5\x3e\xe0\xb8\x5c\x93\xfb\xfe\x1b\xed\xf1\x3f\x3e\x7f\xfe\x7c\xa6\xa7\xa7\xa7\x5c\x2e\xeb\x3a\xe3\xb6\x74\x75\xf4\x72\xbe\xa1\x9b\xe2\xbe\xbe\x3e\xa4\xd3\x69\xbd\xbb\xbb\x7b\x0a\x82\xf0\xde\xaf\x37\x25\xe5\x88\x5d\x1b\xfd\xe4\x55\xf7\xd3\x96\x82\x60\xbb\x3d\x3b\x85\x50\x49\x17\x82\xf5\xb2\x10\x0c\xca\xd2\x91\x85\x87\x13\xd7\x39\xa0\x30\x0a\x85\x83\xeb\x00\x28\xe5\xc4\x48\x38\x2c\x04\x30\xde\xec\x04\xf7\x95\x36\x65\xac\x84\x15\x91\x65\xc2\x6e\x25\x0c\xc0\x58\xde\x1b\x70\xb3\x72\xb8\x5d\xbc\x26\x2b\x68\xa5\x2b\x91\x48\xf0\xc9\xc9\x49\xde\xd8\xd8\x98\x17\x45\x31\x1e\xb7\x14\x86\xaf\x56\xe7\xc7\xdc\x79\xb1\xc1\x95\x17\xbd\x73\x4f\xe6\x5b\x51\xd0\xaa\x30\x25\x1c\x46\xca\x61\xa1\xa0\x36\xca\x60\xa5\x20\x12\x38\x84\x3b\x79\x8d\xd5\x92\x57\x5a\x61\xcc\xad\x0c\xbe\xb4\x25\xf6\x3f\x27\x5d\xda\x2b\x00\x22\xd7\xae\x5d\xd3\x4b\x13\xeb\x1f\xbd\x15\xb4\x12\xce\x66\xb3\xb8\x76\xed\x1a\xf7\x7a\xbd\x8a\xc3\xe1\x48\x6a\x22\x9f\x18\xac\xce\xf5\xcb\x92\x5e\x08\xa4\x4d\x4d\xc6\x22\x35\xde\x68\x11\xdd\x39\x2e\x37\xfa\xb5\xb6\xf0\xe5\x70\xce\xc8\x32\xc7\x5b\xe4\xe7\xdf\x6b\x4e\x7e\x47\x11\xd9\x09\x42\xc8\xd8\xe4\xe4\x64\xfe\xf8\xf1\xe3\x65\xea\x58\x77\x2b\x68\x4d\x03\xb1\x5b\xe1\x42\xa1\x80\xc1\xc1\x41\x10\x42\x0a\x35\x35\x35\x69\x42\x49\x24\x66\x2b\x5c\xed\xf7\x67\x2e\x81\xc0\xea\xcb\x1a\x02\x02\x27\x02\xa9\x88\xe1\x8e\xf1\x2a\x0a\xf6\x56\x58\xa3\x4c\xeb\xab\x4b\xff\xfa\xd5\xce\xf8\x9f\x5f\x77\x6a\x2f\x80\xa0\x8f\x73\x1e\x39\x77\xee\x9c\x7a\xfc\xf8\xf1\x35\x97\xc3\x5a\xf0\x1d\x59\x41\x37\x13\xaf\xd7\x4b\xef\xbd\xf7\x5e\xd4\xd4\xd4\x48\x84\x10\x2f\xe7\xbc\xc5\xa1\x8a\x7b\x77\x4e\xd8\x3f\xdd\x19\xb1\xee\x34\xea\x44\xba\x43\x3a\x02\xca\x2f\xeb\xbc\x4d\xda\x51\x05\xa6\x0d\xd4\x64\x7b\xcf\x06\xd3\x2f\xa5\xcc\xc5\x1e\xce\xf9\x30\x21\x24\x1a\x8b\xc5\x94\x13\x27\x4e\x20\x16\x8b\x6d\xf8\x3a\xa7\x3b\xb6\x82\x6e\x86\x09\x21\xb4\xa3\xa3\x03\xbb\x76\xed\xa2\x66\xb3\xd9\x02\xc0\x0b\x8e\x26\x4b\x81\x6e\xeb\x8c\x58\x1f\xb9\x27\x62\xdd\xeb\xca\x8b\x1e\x52\x3a\x97\x6e\x6d\x96\x52\x09\x93\xb5\x15\x3a\x07\x47\x4a\x2a\xca\xfd\xfe\xec\xe9\x7e\x7f\xe6\xcd\xac\x91\xf5\x81\x60\x14\x40\x54\xd3\xb4\xdc\x07\x1f\x7c\xc0\x2e\x5d\xba\x54\x5e\xd6\xbe\x6e\xd6\xce\x4a\x78\x69\x05\x6c\x88\x18\x0c\x06\x6c\xdb\xb6\x0d\xf7\xdc\x73\x0f\x95\x24\xc9\x02\xc0\x05\x20\x48\x38\x9a\x02\x49\xd3\xbe\xb6\xa8\x65\xef\xa6\xb8\xd4\x6e\x57\x05\xc7\xdc\xba\xff\x95\x07\x6e\xcb\xe1\x5b\x09\x07\x47\xc6\x58\x4c\x8d\x7a\x94\xc1\xc1\xea\xdc\xe9\x09\xa7\x7a\x8a\x53\x0c\x03\x98\xc0\xdc\xfb\x6b\x72\xfd\xfd\xfd\xec\xfc\xf9\xf3\xa8\x58\xcf\x73\x57\x64\xc3\x28\x68\x25\xd9\xb5\x6b\x17\x6d\x6b\x6b\xa3\x36\x9b\xcd\x48\x08\xb1\x71\xce\xbd\x00\x02\x22\x27\x0d\x55\x59\x43\x47\xbd\x2c\x75\xd6\x26\x8d\x4d\xd5\x19\x63\xc0\xaa\x09\x36\xca\x41\xe7\x4d\x83\xd5\x50\x10\x38\x38\x01\xcb\x1a\x8b\x99\x99\xb9\x97\xc1\x8d\x8e\xbb\xd4\x8b\x31\xab\xd6\x5f\x14\x30\x01\x60\x8a\x73\x1e\x23\x84\xa4\x72\xb9\x9c\x76\xf9\xf2\x65\xb6\xd1\x2f\xea\xb9\x99\x6c\x28\x05\x2d\xa3\xb7\xac\x13\xcd\xcd\xcd\xb4\xad\xad\x6d\xce\x55\x40\xa9\x11\x40\xb9\x67\x78\xc0\xe1\xa5\x1c\x5e\xa9\x40\xab\x5d\x8a\x58\xef\x50\xc4\x6a\x87\x22\x78\xa4\x82\x60\x33\xe9\x54\x12\x19\x31\x0a\x1c\x94\x01\xac\x28\x70\x5d\x11\x99\x52\x3a\x42\x27\x9e\x32\xeb\x51\x59\xd2\x27\x73\xc6\x62\x84\x11\xc4\x40\x10\x03\x10\xe3\x9c\xa7\x08\x21\x19\xc6\x98\x36\x39\x39\xa9\x0f\x0e\x0e\x62\x64\x64\x04\xa5\x8d\x0d\x1b\x4e\x35\x2b\xe1\xbb\x42\x41\x37\x13\x93\xc9\x84\x50\x28\x84\xc6\xc6\x46\xd4\xd6\xd6\x52\x93\xc9\x24\x62\x6e\xf3\x45\xb9\x52\xa4\x8a\xbb\x84\xb9\xf5\xac\x62\x45\x9a\x75\xcc\x6d\xd4\xd0\x30\xf7\xe2\xb7\x5c\xe9\x52\x4a\x97\xa6\x69\x9a\x3e\x35\x35\xc5\xc6\xc6\xc6\x30\x3a\x3a\x0a\x55\x55\xef\x62\x0e\x6f\x2e\x77\x9d\x82\x6e\x25\x3e\x9f\x8f\xfa\xfd\x7e\x78\xbd\x5e\xb8\xdd\x6e\x58\xad\x56\x5a\xda\x36\x44\x09\x21\x94\xf3\xb9\x03\x08\x4a\x98\x95\x28\x88\x11\x42\x18\x00\xa6\xaa\x2a\x4b\xa7\xd3\x2c\x91\x48\x20\x16\x8b\x21\x12\x89\x60\xb5\x2f\xe4\xf9\x28\xe4\x23\xa3\xa0\xb5\x62\x9f\xcf\x47\xe7\x8e\x67\x03\xaa\xaa\xaa\xe6\x13\x99\x4c\x26\xa1\xeb\x3a\x74\x5d\x47\x32\x99\x44\x69\x5d\xea\x47\x46\x29\x6b\xc5\x1f\x39\x05\xfd\x46\x7e\x23\x1f\x0b\xa1\x58\xd9\x13\x4a\xd7\x09\x63\x83\xf1\x7a\xa5\xf3\xae\xe2\xff\x07\x59\x1a\x81\xc4\xe6\xd3\xe7\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x57\x79\xe4\xe3\xbb\x27\x00\x00") - -func web_uiV1StaticFavicon96x96PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFavicon96x96Png, - "web_ui/v1/static/favicon-96x96.png", - ) -} - -func web_uiV1StaticFavicon96x96Png() (*asset, error) { - bytes, err := web_uiV1StaticFavicon96x96PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon-96x96.png", size: 10171, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFaviconIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x50\x93\xd7\xba\x3f\xfc\x1a\xd3\x48\x29\x07\xa8\xa5\xd4\x5a\x04\x44\x84\x00\xe1\x16\x62\x08\x21\x24\x10\x20\xdc\x62\x80\x00\x81\x04\x08\x49\x48\x56\x20\xdc\x21\x84\x10\xee\xd1\x5a\x6b\xbd\x15\x2f\x6d\xad\xf5\xd2\x6d\x6d\x6b\xdd\xd6\x5a\xab\x6e\xb7\x5a\x8e\xb5\x6a\xbb\xad\x5a\x4b\x9d\x4e\xbf\x4e\x87\xd3\xd3\xe9\xde\xd3\xe9\x78\x3c\x4e\x8f\xc3\xf1\x30\xbe\xdf\x3c\x6f\xf2\x62\x08\x09\x06\xd4\xb6\xfb\x3f\xfb\x99\x59\xb3\xde\x24\xef\xba\x3c\xcf\x7a\xd6\xef\x79\x9e\xb5\xd6\xfb\x06\xc3\xe6\x61\x8f\x61\xfe\xfe\x90\x87\x62\x75\x54\x0c\x93\x61\x18\xb6\x68\x91\xed\xf3\xda\xc7\x31\xec\x0c\x15\xc3\x42\x43\x6d\x9f\xdf\xf1\xc7\x30\x91\x2f\x86\x25\x24\xd8\x3f\x2f\xc7\xb0\x1b\xc1\x18\x96\x9e\x6e\xfb\x4c\x17\x62\xd8\xf6\x2c\x0c\xa3\x63\x18\xe6\x8f\x61\x58\x28\x66\xfb\x7e\x36\xf4\xd8\x63\x8f\x51\x82\x82\x82\x68\x91\x91\x91\xbe\xcb\x96\x2d\xf3\x5e\xb8\x70\x21\xc5\x93\x72\x8f\x3f\xfe\x38\x25\x73\x45\x21\xb7\x43\xf0\xe6\xfe\x3e\xe6\xd9\x1f\x87\x62\x2e\xdf\x1e\x8c\xfd\xfc\x96\x85\x73\xec\x92\x9a\x3f\x60\x5c\x16\xb6\xdc\xd7\x5d\xd9\xa7\x9f\x0e\xa4\x35\x08\x86\x37\x5b\xe9\x5f\x4d\x0c\x45\x5f\xb9\xd1\x92\xf4\xd6\xfe\xaa\xd8\x35\x56\x75\xfc\xa6\xf5\x96\xa4\x93\xe7\xac\x91\x5f\xe3\x3d\x9c\xe3\xe7\x9f\x7a\xea\xa9\x69\x7d\x79\xe2\x89\x27\x28\x4d\xfc\x57\xb6\xc3\x3d\x75\xcc\x57\xb7\x07\x3f\x1b\xe6\xef\xf8\xfb\x82\x05\x0b\x28\xa9\x91\x12\xae\x20\xaa\x24\x1d\x78\x8b\x88\x88\xf0\xa1\xd1\x68\x93\xf5\xe4\xb3\xab\x72\xa1\xac\x8e\x35\xbc\x1e\xee\x9d\x89\xc7\xa4\x68\x5e\xf8\x20\xe3\xd2\x2d\x76\x74\x3a\x9d\x6c\xdb\x9c\x72\xe4\x54\x7f\xc2\xa7\xdf\x05\x3e\xbd\xc8\x6b\xa6\xb2\xf3\xe6\xcd\xa3\x44\x46\xd0\xbd\xf2\x63\x90\x2c\x7c\x59\x04\xdc\x4b\x89\x08\xa7\xfb\x5b\xa3\xae\x8d\xab\x56\xac\x1d\x74\xbc\x97\x1e\x1e\xb3\xb8\x84\xdb\x64\xcd\xe1\xc8\xa4\x5e\x5e\x5e\x14\xe8\x57\x62\x14\x27\xb4\x97\x75\xfa\x1b\x75\x61\xbb\xa8\x27\xf9\xc4\xd5\xd8\x88\xa4\x20\x76\x54\x06\x63\x55\xe4\x75\x3c\x2f\x5e\x2d\x25\xcb\x52\xa9\x54\x4a\x25\xdb\x7a\x50\xbe\x64\x3b\x2e\x0f\xde\x36\xb1\x32\x5b\xc6\x32\xa5\xef\x3f\x50\x92\x59\xcb\xab\x8c\x5b\xd5\x9b\x14\x9d\x1a\xa4\x8c\x7b\xd1\xfa\xcc\x53\x8b\x7d\x58\xf4\xf4\x68\x28\x9f\x9f\xa0\x99\x2c\x3f\x7f\xfe\x7c\x4a\x45\xe2\xe0\x01\xa2\xfc\x92\x6d\x78\x26\x77\x65\x42\xeb\x8a\xfd\xfb\x64\x99\x7a\x7e\xbb\xf0\x8d\x57\x73\xf8\x92\x88\x86\x8c\x97\xd7\x2d\x79\x2e\xc4\x37\x2c\x34\xdc\xc7\x4a\xbf\x36\xae\xe5\xbe\x64\x75\xec\xff\x73\xcf\x84\x06\x66\xd3\x35\x16\x4e\x44\xbe\x18\xfa\x03\xdf\x45\x04\xc7\x2e\xee\x59\x71\xf2\x6c\x89\x40\xc7\xef\x4b\xfa\xf8\x52\x44\x48\xec\x22\x18\x07\x13\xfb\xf0\xb1\xfe\xc4\x4f\xbe\x0f\x09\x0e\xf5\x9e\x49\x7e\x44\xbd\x8b\x9f\xf3\x92\xf3\x8c\xc8\xf1\x5e\x41\x4c\x31\x0f\xc6\xaf\x21\x6d\xdb\x56\x3f\x3f\x3f\xea\x4c\xe5\xe3\x97\x27\x87\x0e\xc6\x7c\xf1\x73\xe2\xf2\xd4\x70\x47\x79\xd5\xb2\x36\xac\x86\x3a\x5a\xd3\x76\xbd\x19\x1f\xc3\x5c\x0c\x32\x27\x7f\x0f\x0c\x0c\xa4\x4a\x52\x6b\xc4\x12\x6e\x8d\x08\xc6\xd0\xae\x83\x53\xf4\xc4\xdb\xdb\x9b\xa2\x4c\x5a\x63\xb1\xd2\xbf\xba\x33\x18\xf3\xc5\xad\x2e\xfe\x81\xa3\x8d\xe9\x5b\x36\xb7\x65\xec\xdc\xd1\xc3\x3e\x79\x0d\xea\xee\x66\x1f\x3b\x3b\xd3\x5c\x82\xba\x13\xc2\x78\x74\x94\xb8\x6d\xb8\x3f\xf1\x93\xd1\xa1\xe8\x2b\x37\x07\x19\x97\xfe\x61\x66\x7d\x74\xaa\x28\xa6\x0d\x05\x2c\x0c\x9c\x51\xbf\x1c\x09\xe6\x62\x40\x40\x00\xc5\xdf\xdf\x9f\x02\xe4\xee\x3e\x1c\xc7\xb0\x71\x01\x86\x8d\xf9\x61\xd8\x05\x1c\xc3\xae\xfc\x1f\x86\xed\xc6\x31\x6c\xd7\xff\x60\xd8\xa9\x6a\x0c\x3b\x55\x86\x61\xbb\xff\xc7\xf6\x1d\xfc\x06\xf7\xdc\xf4\xb3\x95\x81\xb2\x30\x09\x16\x61\x18\x96\xe0\x19\xce\x50\x5c\x5c\x3b\xe6\x14\xd0\x3d\xe8\x3b\xcc\x53\xc7\xef\x3d\xb8\x76\x57\x3f\x16\x14\x14\x44\x4d\x17\x64\x04\xd5\xac\x6c\x91\xb6\x14\xae\xb7\xb4\x17\x6c\x5d\xd7\x26\xd9\x3c\xa8\x93\x58\x54\x79\xd9\x62\x7a\x44\x44\x04\x0d\xda\xf5\xa0\xef\x53\x52\x60\x60\x20\xa5\xb4\xa0\x9a\x63\x12\xee\x3b\x38\xc8\xb8\xf4\xeb\xaa\x88\xaf\x71\x98\x4b\xb6\xdc\x76\x6d\x8d\xba\x76\xa7\x3b\xf5\xf0\x79\x75\x61\x87\x6c\xf9\xf2\xe5\x34\x57\xf5\xb8\xea\x3f\x83\x11\xeb\xdd\x9a\x3f\xbc\x6e\x28\xea\xea\xb8\xd5\x5e\xa7\x95\xfe\xd5\x78\x7f\xe2\xd9\x6b\x3d\xec\xbf\x9c\xe9\x65\x9d\xb9\x38\x14\x73\xf9\x17\x6b\xa4\xad\x2d\xc8\x4d\x19\xfb\x0f\x2c\x5b\xb6\x8c\x7a\x3f\xf9\xc4\xc5\xc5\xfb\x98\x32\xde\x3e\x44\x94\x8d\xf8\x1a\xef\x4f\x3c\x77\xbd\x32\xc5\xa2\x8c\xa5\x27\xfa\x03\x4f\x3e\x3e\x3e\x94\x27\x9f\x7c\x92\x12\xb6\x74\x19\x2d\x2f\xa9\x9a\xdf\x95\x72\x98\xb8\xb7\x2e\x7d\x83\xd1\x71\x5e\xb8\x92\xcf\xb3\xcf\x3e\x4b\xed\x10\xbd\xbe\x9d\xec\x53\x0b\xef\x8d\xcd\x61\xa1\xe1\x5e\x33\xf0\x4d\xf1\xf3\xf3\xa3\xe4\xaf\xa8\xe6\x3e\xf3\xcc\x33\xd0\x77\x4a\x64\x64\xa4\x57\x6a\x6a\x6a\xc0\xbf\xfd\xdb\xbf\x4d\x91\x0f\xcc\x8f\xaa\xfc\xc6\x5c\x6b\xe4\xe8\x04\xd4\xdf\xc8\xdf\xbe\x1a\xfa\x39\x1b\x3d\x81\x39\xd1\x99\xb5\x67\xd7\x60\xec\xe7\x37\x25\x42\x39\xd3\x51\x2e\xe1\xe1\xe1\x34\x0b\xe7\xd8\xc5\x55\x11\xd7\x71\x4b\xf2\xf1\x33\x41\xcf\x05\xcd\x88\x25\xae\x08\x78\x31\xa5\xbd\xfb\x26\x60\x62\x5e\x4a\x39\xd3\x51\x3e\x85\x42\x05\xdb\x6a\x97\x4b\x41\xaa\x82\x3d\x93\x4c\x5c\x25\xc0\x29\xd0\xd5\x58\x46\x1c\x2d\x3e\x9a\xe5\x1b\x19\x19\x49\x85\xf6\xc8\x79\xd3\x92\xbb\xa5\x1f\x74\xae\x97\x75\xfa\xf2\x92\x25\x4b\xa8\xce\x63\x0f\x63\x27\xe0\x67\x04\x95\xe6\xd5\x14\xe5\x66\x8b\xa3\xed\x58\x34\x29\x9f\x8c\xd4\x9c\xd0\x6e\xee\x91\x8b\xad\xe2\xcd\x83\x52\x71\x45\x98\x39\xed\xd0\x88\x41\xb2\xda\x00\x36\x0e\xee\x35\xf3\x0f\x1e\xb2\x46\x5c\xc7\x8d\x59\x7b\x86\x49\x4c\x77\x24\x71\x76\x09\x53\x11\xb1\xe9\xe7\x8a\xa0\x6d\xb8\x3c\x74\xcb\xb8\x22\xdf\xa0\x04\x5d\xe2\x72\x53\x03\x52\x38\x29\x0b\x4b\x33\x10\x9f\xb0\xe3\xec\x93\xe7\xeb\x8b\x06\x24\xa0\x7b\x96\x94\x8f\x4e\x82\xce\x3d\xfb\xec\xb3\x14\x0b\xe7\xf8\x39\x18\xd7\x06\xd1\x06\xa3\x33\xef\x04\xbe\xa6\x0d\xee\x04\x9b\x54\x11\x64\x4b\x95\x8c\x97\x46\xe5\x15\x95\x0b\xfb\x13\x3f\xf9\xa1\x2f\x69\xe4\xbb\x74\x41\x86\x4f\x1e\xb3\x9a\xcf\x8c\xe2\x2e\x0e\x08\x08\xa0\x16\x32\xeb\x24\x49\x51\xa9\x41\x50\x7e\xd1\xa2\x45\x94\x1e\xa2\xfe\xeb\x78\x63\xce\x46\xa3\xf3\x9c\x00\xfb\x5a\x9d\x3a\xb8\xc3\x56\xff\x36\x5b\xfd\x31\xeb\xaf\xad\x2c\x28\xf4\x1d\x88\xfb\xec\x87\x81\xf8\x0b\xdf\x49\xc4\x85\xfe\x86\x22\x6b\x5d\x45\x81\x86\x1b\x1d\x1d\xed\x55\x2b\xe9\x94\xe5\x0a\x57\x86\x03\xbe\xfa\xfa\xfa\x82\x7c\x0e\x40\xfd\xc6\xec\xdd\x5b\x01\xc3\x9c\xe5\x93\xc6\x12\x31\x14\xcb\x86\x7f\xb6\xd9\xe5\xad\xe3\x45\x69\x5a\x19\x8c\xdb\xf2\x30\xba\xf7\xb2\xd0\x08\xef\xb2\x0c\x7d\x16\xc8\xa7\x77\xc5\xa9\xab\x4d\xb2\xa1\x22\xc2\x66\xa4\x7e\x70\xf2\x99\x67\x9e\x21\x64\xd0\x90\xb9\xd9\x6c\x8d\xf8\x1a\xef\x65\x9f\xbc\x6a\xc7\x12\x47\xfd\xa6\xc0\xfc\x88\x5a\x1e\xbb\x50\x10\x57\x28\x62\xc6\xa4\x84\xda\x7d\x99\xc9\x14\xbd\x3c\x7e\xa1\x39\xf5\xd0\x7e\x6d\xfa\x6a\x2d\x7f\x85\x28\xa8\x27\xf9\xf8\xc9\xda\x0c\xab\x86\xf4\x85\xb2\x39\xc5\x71\xa4\x7e\x96\xe5\x68\xf8\xb3\xc0\xde\xc9\x6b\xa8\x8b\xc5\x5a\xe1\x9b\x9b\x25\x8e\x08\x09\x09\xa1\xd8\x71\x95\xf8\x1d\xc6\xc0\xc2\x39\x7e\x06\xf0\xcc\xc2\xfd\xf0\x5c\x6c\x6c\xec\x7d\xed\xbd\x33\x81\x2c\xba\x04\xef\x1e\xb2\xd2\xaf\xdd\x29\x16\xaa\x78\x8e\xf3\x0b\xd2\xca\xd4\x6a\x8e\x95\x3e\x7a\x07\x78\x68\xcb\x79\x65\x78\xd9\xb2\x65\x33\x61\xee\xb4\x04\xba\xde\x26\x78\x63\xfd\x20\xe3\xd2\x4f\xc2\x15\x2b\xe9\xce\xfc\x81\x1e\x36\x08\x86\xfb\x49\x39\x19\xb3\x77\xed\xe1\xa5\xa6\x05\xd8\x71\x71\x9a\x4c\x88\x31\x89\x8a\xf2\xaa\x95\xb6\x8b\x01\xd7\xe0\x7b\xd0\x95\x90\x90\x10\xaa\x83\x5d\x76\xb6\x2b\xd4\x36\xde\x9e\xad\x24\x3e\xf7\x25\x8d\x8c\x35\x48\xd6\x18\x45\x99\xb9\xe1\xf1\xf1\xf1\xde\x30\xf6\xa0\x7f\x69\xbc\xb4\x40\x4d\x61\x87\xac\x9b\xf7\xfe\x59\xb8\xb7\x29\x7f\x43\xbf\xd3\x9c\x76\xb6\x2f\x93\x04\x3e\x4c\x2d\x7f\x4d\xe3\x50\xd4\x97\xbf\x92\x36\x6b\x28\xea\xea\x9d\x5e\xd6\xe9\xef\x2d\xdc\xa3\x97\x7b\x92\x4f\x5c\x1f\x8c\xfd\xdb\x2d\x47\xfb\x62\xe4\xbd\xbd\x0b\xe6\xe9\x0c\xc3\x33\xc5\xfe\x02\x46\x70\xe2\x32\x82\x5b\x79\xbb\x87\xc1\xe7\xb2\xda\xed\xa3\x95\xb4\x8f\x11\xd7\x09\x9b\xd6\xcd\x39\x7a\x54\xcc\x56\xa7\x93\x58\x36\x83\x8e\xb9\xc5\xc5\x65\x61\xcb\x69\xc2\xf8\x52\xb6\x8c\xd5\xa9\xac\xe1\xac\x6a\x56\xac\xe8\x41\xf9\x89\x6a\x51\x1c\x3d\x69\x21\x60\x90\x07\x63\x3f\x13\x2f\x0f\x4c\x38\x8e\x63\xf8\xdf\x71\xec\x2e\x86\x63\xe3\x98\x00\xbb\x79\x77\x00\xfb\x0f\x1c\xc7\xfe\x13\xff\x3b\x76\x01\xff\x3b\x76\x05\xc7\xb1\x2b\xf8\xdf\xb0\x4d\x17\x3e\xc3\x76\x5b\x07\x88\x04\xd7\x57\xf0\xff\x8f\xf8\x0d\xee\x81\x7b\xff\x1b\xc7\x89\xb2\x13\x98\x80\xa8\x8b\xa8\x17\xc7\x09\x3f\x0c\xbc\xaf\xf4\x39\xc4\x7b\x7f\x54\x82\xb9\x9e\x90\x90\x40\xcb\xc8\xc8\xf0\x15\x8b\xc5\x8b\xa4\x52\x69\x10\xe4\x42\xa1\xd0\x1f\xbe\xb7\xe3\xe2\x43\x25\xc0\xaf\xc4\xc4\x44\x5a\x95\x5c\x19\xdd\x5c\xf2\x82\xc9\x24\xdc\x77\xb4\x27\xf9\x2f\xdf\xf6\x27\x7c\xfa\xcb\x40\xec\x67\xb7\x20\xef\x61\xff\xe5\x5b\x93\xf0\xad\x63\xcd\xd2\xb5\xe6\x2a\xb9\x92\xc1\x64\x32\x69\x8e\xf1\xe4\x5c\x09\xec\xb9\x4a\xa1\x63\x75\x66\xef\x39\x30\x18\xf3\x85\x6d\x5e\xde\x27\x0d\xc6\x7c\x71\xbb\x33\x6b\xcf\x41\x95\x02\xb1\xa1\xfc\x5c\xda\x05\x8c\xce\xcc\xcc\xf4\x6d\x29\x5a\x6f\x25\xfc\x58\x17\xed\xd8\xf0\x6e\x74\xdc\x1a\xf9\xf5\x84\x9b\x7e\xfc\xda\x5a\xb8\xa1\x3f\x36\x36\x76\x56\x7d\x80\xb9\x5b\x28\x29\x0a\x34\x09\xdf\x3a\x6c\xb5\xfb\xcc\x64\x7b\x3d\xec\x93\x23\x0d\x59\x1b\x0d\x2b\x79\x55\x09\x29\x2b\xd2\x7c\x93\x98\x49\xb4\x64\x16\xd7\x27\x8f\x2b\xa3\xeb\xb3\x5e\xd0\x58\x52\x3e\x3a\x6a\xf3\x05\x6d\x65\xcc\xfc\x83\xfb\x96\x2e\x5d\x3a\xab\x71\xc8\xc9\xc9\xf1\xef\x12\x1c\x38\xe1\xc8\x4b\xef\x8a\xd3\xe7\xcb\xb3\xea\x38\xa1\xa1\xa1\x60\x53\xdd\x96\x7d\xee\xb9\xe7\x28\x45\xc2\x6a\x86\x85\x73\xec\x44\x7f\xe2\x27\xd7\x05\xa9\x42\xff\xd9\xb4\x1d\x1b\x1b\x4b\x6b\xcf\x7f\x65\xd8\x91\x67\xa3\x70\xcf\xfa\x38\x46\x3c\x6d\x36\xf5\x84\x87\x87\x53\x79\xac\xcc\x00\x32\x86\x79\xfa\xe9\xa7\x29\x30\x4f\x24\x12\xc9\x22\xb0\xb9\xae\xca\x80\x9d\x43\xe5\xc6\x5c\xb0\xa3\x64\xdb\x6d\x59\x3b\x06\xc1\x66\xcf\xa6\x6d\x57\x54\x5d\xaa\x8d\xeb\x63\x9e\xfd\xb1\x3f\xf1\x93\x9f\x54\xb2\x7a\x96\x2b\x19\xf2\x78\x3c\x6f\x4b\xca\x47\x9f\x93\xbc\x77\xf3\xde\x3f\x48\xa7\xd3\xe7\xa4\xbf\x8e\x34\x7f\xfe\x7c\xac\xb9\xf0\x45\x15\x59\x6f\xeb\xca\x4d\x8d\x8f\x3d\xf6\xd8\x94\x7b\x60\xae\xea\x65\x5d\x62\x52\xdf\x06\x63\xbe\xb8\x91\x97\x59\xb4\xf8\x41\xdb\x26\x29\x65\x45\x9a\x7f\x37\xef\xf0\x3b\xdd\xa9\x47\x0e\xf2\x53\x32\x03\x9c\x7f\x8f\x88\x88\xa0\x9a\x84\x6f\xbd\x43\xf6\xb1\x43\xb4\x73\x8d\x43\x1c\x33\x67\x22\xd6\x88\x12\x13\x69\x90\x82\x82\x82\x28\x8b\x17\x2f\xa6\xc4\xc4\xc4\x50\xa3\xa2\xa2\xa8\x8e\xf1\x2d\xe0\xe9\x40\xfc\x85\x9f\x6c\xe3\x3e\x3a\x51\x9c\x2b\x8f\x98\xa9\x5e\xb0\xf9\x22\x91\x68\xa1\x54\x2a\x0d\x83\xdc\x9d\x0f\x50\xb8\xb2\x78\x71\x67\xe6\x9f\x0e\x9b\x84\x6f\x1d\x29\x29\x92\x05\x15\x17\x96\x2c\x36\x8a\xde\xd8\xd7\x91\xfb\xda\xce\xec\x6c\xd1\xe4\xdc\x28\x2f\xac\x61\x90\xb2\xef\x4b\x1a\xb9\x0e\xfd\x75\xd7\x36\xe8\xb6\xa6\xac\x55\x55\x15\xbb\xee\x3b\x79\xd8\xf0\xed\xaa\xb8\x75\xdf\x6a\xca\x9a\xab\x96\x2e\x5d\x4a\xe8\x0a\xf8\x5d\x10\x3f\xc0\x18\xb7\x14\xaf\xd3\x4e\x8e\xbb\x64\x53\x6b\xab\x64\x73\x3b\xf9\xb9\xb9\x64\x4d\x15\xe9\x6e\xd5\x97\xf4\x4a\xee\x61\xc6\x7b\x07\xdd\xe9\x3c\xe8\x6d\x55\x59\x2d\x07\x62\x19\xdb\x5a\x98\x3d\x2d\xdd\x72\x5b\x51\xaa\x62\x81\x8c\x75\x8a\x56\x61\x8b\xf4\x45\x73\x49\x71\x59\x50\x45\x81\x36\x7a\x30\xe6\xf2\xcf\x43\xd1\x57\x6e\xc8\xf3\xea\x98\xca\x82\x16\xae\x95\x7e\xed\x36\x7c\x2e\xcd\xa9\x89\x26\xeb\x6d\x96\xae\x9d\xd4\xcf\xce\xac\xbd\xdb\xdd\xc9\x13\x74\x42\x95\xdd\xb3\x7a\x4a\xdb\xf6\xa4\xca\xb1\xf4\xd7\x54\x69\x16\x0f\x32\x2e\xdd\x84\x7a\x40\x9f\x62\x63\x63\x29\xac\xc4\x64\xef\x15\x4c\x8e\x37\xc4\x1f\xe0\xf7\xf0\x58\x99\x81\x29\x49\xfc\x85\x8e\x71\x7b\xb3\x74\xad\xd2\xa1\xfd\x57\xdd\xb5\x0f\xf1\x77\x4d\x66\xaf\xeb\xf6\xb3\x7b\x7a\x4b\x0a\xcb\x03\x86\xa2\xaf\xde\x82\x7a\xba\xf8\xef\xed\x4b\x4f\x4f\xa7\xaa\x2b\xf5\x2c\x6d\x55\x03\x37\x26\x26\x86\x16\x1a\x1a\x4a\xad\x90\xc9\xc3\x65\x65\xe5\xa1\x8e\x6d\x68\x25\x66\x31\xd9\x7e\x97\xe0\xc0\xa1\xf0\xf0\x70\xb7\xba\x5f\x9c\xa3\x48\x80\x58\x69\x4a\xfb\x21\x5b\xc7\x0b\x45\xe5\x0c\xe0\xaf\x24\x43\xcb\x36\x08\x37\x36\xa6\xae\x48\x5f\xa8\x2b\x6f\xe3\x0f\x45\x5f\xbd\x0d\x98\x66\x90\xf5\x14\xe9\x2b\x8c\xc2\x41\xc6\x17\xb7\x06\xe2\x3e\xfb\xa5\xba\x14\x25\x90\x75\x4a\xf3\x14\x11\xa4\xfe\xf5\xb2\xce\x7c\x93\x92\x92\xe2\x36\x0e\x81\x31\x28\xcf\x6e\x90\x2a\x96\x6f\xfe\x5e\xbe\x64\x1b\xae\x88\xd8\xf4\x5d\xb9\xa8\x5e\xe2\xef\xef\x3f\xa5\xcf\xa0\x5b\x0d\x92\xe7\x15\xf7\x70\x67\x73\x73\x9b\x78\xb8\x95\xfc\xdc\x50\xb8\x4a\x46\xde\xcb\xe1\x70\xbc\x06\xe2\x2e\xfe\x48\xcc\x3f\xfa\xe8\x44\x65\x89\x3a\xce\x5d\xfb\x98\x1d\xaf\x60\x0e\x83\xed\x83\xdc\x61\x6d\x6c\x0a\xc5\x44\x33\xbc\x3a\xb2\xde\x18\x34\x66\xee\x5d\x9b\x94\xc0\xf6\xe1\xae\xe0\x2f\xec\x12\x1c\xd8\x69\xca\xd8\x3f\x9c\x10\xc7\x9c\xe4\x11\xc6\xc2\x94\xf1\xf6\x2e\xb2\x6f\xed\xf9\xaf\x6c\x7c\x18\xb8\x4f\xf6\x15\x64\xc6\xe5\x72\xbd\x53\x53\x53\xbd\xa1\x2d\xb0\x35\xce\xf7\x29\xc5\xcd\xbc\x49\xfc\x8d\xfd\xfc\x86\xbc\xb4\x3a\xc2\xd5\x9a\xc2\x5c\xa8\xb4\xa8\x3c\xd8\x9c\xf6\xe7\xb3\xdd\xbc\xf7\xcf\x57\x48\xab\xc2\x5d\xdd\x03\x72\xb4\x70\x8e\x9d\x9a\xd4\xc3\xf4\x77\x8e\x66\x64\x64\xf8\x3c\x68\xdb\x60\x7f\x5a\x8a\xd6\x69\x1c\x70\xa8\xd9\xd9\xfe\x60\x76\x6c\xa9\xc8\x43\x4c\x2b\xfd\xda\x38\x69\x7f\xdb\x0b\xb6\x0d\xa7\xa5\xa5\x79\xcf\xe4\x73\x78\x42\x79\xe9\xc5\xc1\xfd\x09\xe7\x46\xfb\xe3\xcf\x7f\x23\xc9\xac\x70\xc9\x3f\x66\x8f\x01\x5b\x72\xb6\x18\xc9\x71\x80\xbc\x23\xf7\xf5\x3d\x12\x49\x61\xa0\xb3\x7e\xbb\x23\xc0\x88\xdc\xdc\xbc\x85\x55\x15\xaa\x30\xfb\x7a\x1d\xe1\x4f\x82\x8d\x03\x7f\xf4\x7e\xeb\xaa\x80\xef\xa6\xf4\xb7\x5f\x75\xf4\xbf\x7a\x38\xc7\x47\xeb\x15\xa6\x52\xa1\x50\xe8\xbb\x64\xc9\x12\x8a\xb3\x5e\x80\x8c\xc1\xf7\x12\x08\x04\x3e\xfa\xca\x76\x89\x85\xfb\xe1\xa5\xde\x15\xa7\xbe\x91\x16\x95\x06\x79\xb0\x8e\x3b\x8d\xe8\xf4\x28\x9a\x31\xe3\xcd\xcd\x53\xfd\xcf\x51\xdc\xc2\xfd\xf0\x6a\x6b\xe1\x86\x35\x75\xd5\x6d\xf9\x0a\x45\x65\x34\xd8\x3f\x79\x85\x9c\xae\xaf\x6e\x15\xb5\x14\xbd\x34\xd8\x9d\x7a\xf8\x92\x95\xfe\xd5\xa4\xff\x69\x12\xbe\x75\x00\xe2\x92\xd9\xb6\x8f\xd9\xd6\xa8\x29\xfa\x9c\x55\x0a\x88\x93\x5d\xfa\xde\xf4\x6b\x13\xe0\xeb\x0f\x45\x5d\xbb\xe3\xd8\x4f\x32\x01\x0e\x37\x8a\x36\x1a\xee\x13\x9f\xcf\x48\xe0\x3f\x08\x52\xb2\x03\x3b\x84\xbb\xd7\x0e\xc5\x5c\xfe\xc5\x93\xf8\x63\x28\xea\xea\x2d\x53\xfa\xfe\xad\x22\x9e\x24\xd8\xd5\x3c\x9f\x0b\x01\xae\xaf\x60\x72\x7c\x6a\x84\xdd\x45\x80\x5d\xbd\xec\xbf\x8e\x0c\xc4\x5f\xf8\x6e\x90\x71\xe9\xc7\x81\xb8\x8b\xdf\xf7\xae\x38\x75\xae\x2b\xfd\xdd\x57\x6b\x33\x07\x2b\xb8\x2b\xf8\xfe\xf6\x75\x83\x47\x42\x60\x47\x41\xd7\x96\x2f\x5f\x4e\x61\x30\x18\x54\xd0\x6b\x18\xab\x87\xc5\xeb\x6f\x4d\x38\x49\x37\x43\x70\x7c\x70\x3e\x7e\x17\x9b\x87\x4f\xf8\x8d\xe1\xe3\x82\xff\xc5\x6f\x0e\xe0\xf8\x4d\x1c\xbf\xf2\x1f\x38\x7e\xe5\x3f\x71\xfc\xca\x27\x38\x8e\x5f\xc0\xf1\xa4\x0b\x13\x03\x49\x17\xc6\x05\x49\x17\x6e\x26\xe2\x44\x82\x6b\xf8\x0e\xc7\x93\xe0\x9e\xff\xb4\x97\x81\xb2\xe3\x03\x38\x51\xd7\xc4\x82\x11\x1c\xc7\xe6\x11\x6d\x10\x6d\xd9\x89\x6e\xdf\x2b\x52\xdd\x7f\x9d\x82\xe2\x26\xff\x67\xb9\xf6\x68\xed\xca\xd3\x04\x04\x3a\x07\xb6\x15\xfc\x5d\xc0\x5a\xe7\xf5\xdd\x87\x9c\x1e\x88\xa0\xaf\xd1\xd1\xd1\x94\xcc\xcc\x4c\x5a\x79\x79\xb9\x6f\x6d\x6d\xed\x22\x9d\x4e\x17\x86\x10\x8a\xd6\xe9\x74\x0c\x9d\x4e\x17\x81\x10\x0a\xae\xa9\xa9\x09\x90\x48\x24\xde\x1c\x0e\x87\x0a\xf3\xec\x41\x6d\x9f\x03\xcd\x5a\x7f\xe6\xcd\x9b\x47\x59\xb6\x6c\x19\x45\x22\x91\x78\xe9\x74\xba\x50\xbd\xa6\x31\xbf\xb9\xf4\xf9\xd5\x46\xd1\x1b\x87\xcd\x69\x87\x2e\xf7\xb2\xff\x3a\xd6\xc7\xfc\xf7\x7f\xf4\x27\x7e\xf2\x73\x5f\xd2\xc7\x3f\x59\x38\xc7\xbe\xed\xca\x78\xfb\x6c\x9b\x78\xcb\x2e\x43\x65\x77\x1d\xd2\x21\x96\x52\xa9\x5c\xc8\xe5\x72\xa9\xbe\xbe\xbe\x0f\xaa\xb7\xb3\xd2\x1f\xe8\x37\xc8\x19\x69\xeb\x38\x2d\x45\x2f\x6d\xb4\xa4\x7c\x74\x9d\x88\xed\x23\xbe\xb6\xad\xb7\xda\x93\xe3\xb5\x63\x02\x9b\x32\x10\x77\xe1\x46\x67\xd6\x9b\x27\x0c\x55\x26\x8d\x56\xab\x0d\x16\x08\x04\x34\x3b\xce\x3d\x32\xfd\x01\x3d\x2e\x28\x28\xf0\x42\x5a\x3d\xb3\x4d\xbc\x65\xe7\x40\xdc\xc5\x1b\x9e\xd8\x1d\xdb\x9a\xb5\xeb\x6b\xb0\xdd\xdd\xa9\x87\x2f\x1b\xaa\xba\xb4\x6a\xb5\x3a\x30\x26\x26\x66\x2e\xfa\x7c\x5f\xfd\x01\x9f\x19\xf4\xb7\xb1\xa2\xaf\xb5\x8f\xf9\xef\x3f\x3a\xef\xfd\xce\x7c\xed\x90\xbb\xb9\x06\xdf\xa2\x33\x6b\xef\x51\x54\x5b\xcf\x02\x9d\x7a\x98\xfa\x13\x17\x17\x47\xd1\xe9\x50\x78\x47\xde\x6b\xfb\x09\x1f\xc6\x8d\x9e\x80\x5e\x80\xdd\xed\xe1\x1c\x3f\xd1\x95\xfe\xf6\x76\x63\xf6\x2e\xab\x31\x67\x67\x6f\x67\xd6\x9e\x35\x5d\xfc\xf7\x76\xf5\xb2\x4e\x9f\x1b\x8a\xfa\xf2\x16\xb9\x57\xe1\x2a\xf5\x70\x8e\x9f\x93\x4a\xa5\xde\x0f\x4b\x7f\x12\x12\x12\x28\x48\x5b\x17\x67\xe6\x1f\x3c\xe7\xca\x17\x22\x62\x0a\xc6\xdf\x7e\xec\xcc\xda\xbb\x46\x5f\x66\x66\xe6\xe5\xe6\x7b\x25\x25\x25\x51\x21\xce\x04\xff\x08\x12\xd8\xf0\xc8\xc8\x48\x0a\xe0\x8e\xb4\x50\xe6\xdf\x5c\xb2\x46\x6c\xe6\xbd\x0f\xb2\xb8\xed\xa4\x4b\x77\x9a\xca\x56\x49\xc2\xc2\xc2\x66\xab\x43\x2e\xf5\x07\xfa\x80\xb4\x7a\x7a\x77\xea\x07\x9f\x4f\xb6\x43\xe4\x93\x6b\x51\x3f\xb7\xe7\x6f\x6f\x95\x16\x96\xf9\x82\xcf\x41\xa5\x52\x3d\x19\x6b\x02\x6f\x81\x47\xb5\xcc\x10\x66\xe6\xbf\xb7\x8b\xdc\x23\x37\x8a\x76\xad\x49\x4b\x4b\x73\xde\x0b\xf6\xe4\x7a\x9a\xfe\x80\xed\xd1\x68\x34\x8b\x4d\x19\xfb\x8f\xad\x22\xc7\x3b\xf2\x9e\x9e\x58\x52\x8e\x1e\xa9\x29\xd7\x07\x03\x16\xcd\xd5\xee\x40\xfc\x98\x9c\x9c\x4c\x6d\x2c\x1b\xca\x32\xf3\xde\xdf\x55\x52\x5c\xea\xe3\xb0\x87\x48\x24\xf0\xc9\x60\x0c\xbd\xbd\xbd\x3d\xd6\x1f\xb0\x2b\x25\x25\x25\xde\xad\x85\x1b\xd6\x3a\xeb\x8c\x6d\x1f\x6f\xf7\x9a\x82\xfc\x02\xaf\x19\xce\x37\xcc\x8a\x9e\x7e\xfa\x69\x62\x8e\x39\x9f\x27\x8b\x8f\x8f\xa7\xd4\xd6\xd6\x2e\x46\x08\x31\xb5\x5a\x6d\x10\x9b\xcd\x76\xb7\xe6\x39\x65\x1c\xa0\x5c\x7d\x4d\x7b\xee\x50\xf4\xe5\x5f\x27\x75\x26\x82\x8c\xd9\x5e\xb3\x08\x85\x42\x2a\xd8\x2f\x17\xe5\x1f\xda\x35\xc8\x1c\xd5\xd6\x47\x9b\xd3\xfe\x7c\x7e\x30\xe6\x8b\x5f\xbb\x53\x3f\xb8\xa4\xd7\x34\x24\x38\xad\x1d\x4c\xd3\x1f\x90\x81\x4a\xa5\x0a\xec\xe6\xbd\x7f\xce\x51\x67\x20\x37\x09\xdf\xda\x2a\xca\x16\xd1\xec\x7d\x7f\xa4\x09\xe6\x7a\x7b\xc1\xb6\x35\x8e\xd8\xd4\x91\xf3\xfa\x56\x3e\x9f\x4f\x9d\x49\x7f\x58\x2c\x16\xb5\x41\xde\xa7\x74\xd6\x9b\x5e\xd6\xe9\xcf\xcb\xcb\x2a\x7c\xdd\xad\xc7\x3c\x6c\x62\x32\x99\x14\xa3\xe8\x8d\x75\x8e\xf6\xce\x24\x7c\x6b\x27\xf0\xe5\xe2\x76\xa2\x4f\xe0\x37\x56\x57\x57\x2f\xec\x4e\xfd\xe0\xbc\xd5\xa1\x9c\x95\xfe\xd5\x78\xbd\xa2\x8b\x03\x7a\xea\x5c\xe6\x51\x5d\x03\x46\x69\x2a\x1a\xc2\x06\xe2\x2f\x7c\x03\xb2\x1f\x88\xfd\x6c\x0c\xc9\xdb\xa2\x9d\xe2\xb7\x29\xfa\xb3\x74\xe9\x52\x4a\x7d\x4d\x5b\x3a\xd8\x28\xab\x83\xde\x74\x65\xbc\xbd\x4b\x20\x10\xb8\x1a\xb7\x47\x9a\x9e\x7a\xea\x29\x8a\x38\xaf\xd0\x47\x53\xdc\xc6\x90\xe4\x4b\x7d\xc9\xb3\x19\xee\xf4\x27\x3d\x3d\x9d\xd6\x9e\xff\xca\x66\x6b\xc4\x94\xb5\x85\x3b\x75\x55\x1d\x4c\x07\x1f\xf1\x91\x92\xbf\xbf\x3f\x25\x2b\x2b\x8b\x26\x93\xc9\x7c\x20\x27\xf7\x1a\x6c\x67\x73\xb8\x54\xb1\x58\xec\x05\x98\xeb\x84\x55\xc4\x75\x65\x65\xa5\x7f\x4f\xf2\x89\xab\x36\x8c\xb7\xe9\x8f\x85\x73\x6c\x04\x7c\x36\xa7\xf1\x9a\xf1\x1a\x70\x15\xec\xb6\x48\x24\xf2\xca\xcb\xcb\xf3\x02\x9b\x04\x36\xf8\x7e\x65\x89\x73\x3f\x4a\xe5\xc2\x26\xd9\x90\xc9\x28\xda\x75\xb8\xa9\x6c\x95\x45\xa5\x52\x05\x2c\x5a\xb4\x88\xf8\xbe\x41\x61\x41\x6d\xe2\x2d\x3b\x0c\xd5\x9d\x8a\xd2\xd2\x52\x1f\x87\xb5\x22\x62\xfd\x1b\x69\xeb\x22\x86\xa2\xbe\xbc\x4d\xda\x28\xc8\xdb\xc4\xc3\x66\x88\x4d\x3c\x1d\x73\xb0\xfd\x80\x5f\x5a\xa5\xa1\x54\x2d\x36\x6d\x56\xe5\x76\xef\xac\x2d\x6b\x33\xe9\x74\x88\x21\x12\x89\x68\xce\xf6\xc9\x31\x01\xcf\x4d\x65\x56\x04\x3e\x29\xd9\x87\xe6\x92\x17\xda\x75\x3a\x1d\xad\xb9\xf4\xf9\x66\x2b\x7d\x94\xf0\xbd\x86\xa2\xaf\x8e\x1b\x2a\xcd\x45\x51\x51\x51\x93\xfa\xb3\x64\xc9\x12\x4a\x83\xc2\x22\xb6\x4e\x9e\x99\xb0\xe1\xbd\xa1\xaa\x8b\xeb\xe9\x7e\x11\x60\xb6\x56\xab\x0b\xad\xc9\xe8\x3b\x28\x0f\xd9\x3a\x71\x6f\x1d\x7d\x1b\x5e\x19\xb3\xfe\x07\x6d\x65\xa3\x0c\x78\x20\xef\x07\x2c\x0b\x0d\x0d\xa5\xd8\xcf\xee\x60\x29\x29\x29\xd4\xce\xac\x37\x77\x38\x62\x4e\x17\xff\xbd\x43\x08\x21\x1f\x33\xff\xe0\x11\xc7\xef\x8d\xd9\xbb\xb6\xc2\xfd\xa4\xfc\x41\xc6\x2d\xc5\xeb\x9a\x49\x9f\xd6\x6a\x5f\xa7\xd2\x6a\xd0\x22\x87\x23\xa9\x33\xea\x40\x49\x49\x89\x8f\x2a\xab\x77\x67\xc5\x92\x6d\xc4\xb9\x2c\xf2\x7c\x16\x99\x2b\x22\x36\xfd\xac\xd3\xd4\x31\x21\x76\x84\xb8\x18\xb0\x0e\x69\xeb\xb8\x48\xab\xe7\x80\xee\xb2\x58\x2c\x4a\x8b\xf4\xc5\x0a\xab\x83\x9f\xd2\xb6\xf2\x65\x43\x69\x69\x29\xb5\x3d\xff\x15\xcb\xbd\xbe\x7d\x8d\xb7\x48\x5f\x54\x00\xef\x64\xfb\x49\x49\x49\x94\xf6\x82\x6d\xab\x1d\xcb\xf6\x27\x9c\xfb\x5e\x2e\x97\xfb\x7b\xa2\x37\x80\x6b\x3a\x4d\x5d\xb4\x7c\xe9\xf0\xaf\xb6\x33\x65\x0e\x69\xc9\xbd\x5c\x95\xdd\xb3\x19\x70\xa2\xa2\xa2\xc2\xb7\x4d\xbc\x65\xfb\x50\xf4\x95\xdb\xf6\xfd\xf4\x75\xa5\xa5\xa5\xde\x3c\x1e\x8f\xda\x5a\xb8\x41\x61\xe6\x1f\xdc\xd1\xb6\x72\xb3\x32\x53\x98\x49\x03\x3d\x17\x17\x48\xbc\x8d\xa2\x5d\xfd\x3d\xc9\x27\x8e\xb5\x89\xb7\xa0\xf4\xf4\x74\x47\x3c\xc4\xc0\x1f\xec\xc8\xdd\xb1\xd1\x51\x7f\x7a\x59\xa7\x47\xe5\x72\xb9\xdb\x73\xf8\x8e\x04\xf3\xb3\xb6\xac\x55\xea\x6a\xff\x87\x48\x41\xb6\xbc\x9a\xb5\x66\x44\xa7\xd3\x79\xd7\xa9\x9b\xe3\xac\xf4\xaf\xee\x90\xfa\x30\x14\x7d\xe5\x57\x7d\xad\x21\xdc\xdb\xdb\x9b\x58\x6b\x06\xdd\x0e\x08\x08\x98\x1c\x63\xf0\xc9\x40\xde\x0c\x06\x83\xe2\x62\xdd\x92\x42\xf6\xdf\x31\x26\x72\xd1\x7f\xb7\xfa\x03\x75\x6a\x4a\xdb\x8a\x1c\xcf\x0c\x92\xd7\x8e\x7a\x54\xc5\x7c\x61\x44\x2e\x97\x7b\xe9\x95\x2d\x74\xe2\x7c\xc3\xbd\xf8\x6b\x5c\xa7\x32\x04\xc3\x5c\x80\xb1\x41\x08\x05\x55\x57\x57\xfb\xd3\xe9\x74\x42\xc6\x80\xfd\xf9\xf9\xf9\x5e\x55\x55\x55\xfe\x39\x39\x39\x34\xe7\xf3\x4b\xe0\xb3\xb5\x17\x6c\xb3\xda\x7c\x35\x88\xa9\xae\xe3\xfd\x89\x9f\x8c\x01\x6e\x79\xa2\x3f\x30\x17\x35\x4a\x14\x26\x0f\xd9\x7a\x5b\x0e\x7d\x25\xfa\x3b\x3d\xaf\xc9\xe8\x5f\x0f\xb2\x12\x0a\x85\x34\x93\xf0\xad\xcd\xc0\x03\x24\xa3\x68\x97\xb5\xa8\xa8\x88\x5a\xab\xa9\x5d\xdc\x5e\xb0\x6d\xa7\x85\x73\xfc\x1b\xa3\x68\xd7\x21\xc0\x44\xf0\x4d\x6b\x6b\x6b\x17\xb5\x14\xaf\x5b\x6b\x12\xee\x3b\xd9\x54\xb6\xca\x0c\x7c\x38\x9e\x63\x83\x58\xa5\xa5\xe8\x25\x03\x81\xfb\x76\xdf\x67\x28\xfa\xf2\x2d\x9d\x16\x85\x7a\x79\x79\x76\x14\x1d\x7c\x2b\x25\x6f\xe8\x55\x52\xfe\x93\x89\x1c\x87\xa5\xc3\x37\x54\x0a\x14\x0e\xbe\x01\xe0\x0d\x27\x99\x43\xad\x2e\xaa\x0f\xaf\x2a\xd2\x87\x32\x99\x4c\x2a\xd8\xa5\x96\xa2\x97\x4c\xe4\x39\x34\x62\xbf\x3c\xef\xd5\x61\x9d\x4e\xe7\xd5\x5a\xb8\xa1\xff\xde\xf9\xb4\xd1\x89\xc6\xf2\x01\xa5\x43\xac\x4f\x01\xdf\xa6\x41\xde\x93\x35\x25\xa6\x8e\xfc\x1a\xaf\xaf\x36\x0a\x1d\x6c\xcf\x8c\xf8\x03\xf1\x88\xb4\xa8\xd4\xb7\x7a\xc5\x9a\x77\x08\x99\x3b\xe8\x8f\x62\xd9\xcb\x3f\x69\x4a\xda\xb2\x20\x4e\x73\x57\x0f\xf4\xbf\x33\x6b\xef\x76\xc7\x3e\x98\xd3\xfe\x7c\x98\xc0\xcf\xb4\x3f\x1f\x71\xfc\xde\x98\xb3\x73\x23\xf0\x4c\xd6\x01\xf2\xd0\xaa\x51\x90\x35\xea\xda\x6d\x52\x7f\x20\xb5\x16\x6e\xec\xb7\xfb\x7c\x1e\xd9\x2f\xe0\x81\xcf\xe7\xd3\x54\xc5\x2d\xfc\x1a\xc1\xc0\x6a\x25\x6f\x08\x6c\x18\x2a\x2b\x96\x07\xd8\xe5\xe0\x36\x11\x32\x2c\xef\x03\xff\xeb\xb6\xd5\x86\x81\x13\xcd\xd2\xb5\xb2\xfc\xfc\x7c\x4a\xab\x64\x73\x1d\xb1\x37\x11\x61\x97\xbf\x6c\x50\x64\x3f\x6f\x32\xc9\xff\xca\x95\x2b\xbd\x7b\xd8\x27\x2f\x4e\xae\x7d\xd8\xce\xb4\x9e\x03\x6c\x9e\xed\x5a\x1f\xf8\x27\x60\x13\xc1\x27\xf4\xf4\x99\x24\xcc\xb6\xd7\x47\xd1\xcb\xba\x98\x1d\xb9\x3b\x8c\x0d\x65\x03\x7c\x98\x2b\xd0\x36\xf8\x20\x2d\x45\xeb\x65\xa6\x8c\xb7\x37\x37\x95\xac\xce\x75\x90\xfd\xe4\x18\xc2\x1c\xee\xc8\x7b\xcd\x7a\x6f\xcd\xc6\x76\xa6\xbf\x4e\xd5\xc2\xb7\xaf\x09\x78\xe4\xff\x3c\xe8\x35\x95\x4a\x25\x30\x14\xe6\x1d\xe0\x11\xf8\x15\x80\x9d\xe0\x07\xc0\x18\xda\xcf\x38\x62\xce\xfe\x33\x7c\x5f\x57\xdd\x1e\x47\x9c\x89\xb5\xeb\x0f\xf0\x62\xcc\xde\xbd\x1f\xfc\x41\xfb\x19\xd4\xdf\x2c\x65\x67\x67\xd3\x90\xb6\x8e\x69\xa8\x32\xa9\x90\xb6\x9e\x0d\x7e\xa4\x9b\x3e\x4c\x52\x6e\x6e\xae\x57\x37\xf7\xc8\xb1\x55\x93\x38\x64\xf3\x97\xea\x95\xed\xf9\x10\x9b\x79\xa8\x06\x0f\x4c\x80\x87\x75\xaa\x56\x7e\x7f\xc2\xb9\x9f\x56\xd9\xd6\x4b\x7f\xa9\xaf\x36\xe6\xdb\x7d\x49\x67\x9a\x1c\x07\xb0\x13\x8d\x15\x7d\x59\x36\xdb\x72\x7d\xf2\xec\xab\x25\xe5\xe8\x65\xad\x56\x17\xe6\x29\x16\x3d\xe8\x35\xf8\xfa\xc6\x9c\x9d\xc3\x8e\x98\x63\x12\xee\x7b\x93\xc7\xe3\xd1\x5c\xf5\xdb\x21\xa7\xe4\xe6\xe6\xd2\xba\x79\x87\x0f\x91\xfa\x73\x6f\xed\x61\xc7\xbe\x9a\x9a\x9a\x40\xbb\x5d\x7f\xa4\x09\xe4\xdc\x9e\xbf\xdd\x42\xb4\x6d\xef\x83\x31\x67\xe7\x5a\x98\x0b\x33\xe9\x0f\x10\xc4\x5a\xba\xca\x66\xfa\x50\xcc\xe5\x1b\xab\x26\x6d\x09\x81\x5b\x78\xab\x64\xd3\x30\xf0\x00\x3e\xa4\x8b\x71\x7c\x68\x04\xf6\x5c\x26\x95\xfb\x77\xa7\x7e\xf0\xce\x50\xd4\x97\xbf\x58\x52\x3e\x3a\x5c\x29\x53\x05\xba\x79\xe6\x70\xda\x38\x80\x6d\x6b\x2d\x5a\xaf\xb1\xda\xf5\x87\xd4\x25\xe0\xa1\xbd\x60\xdb\x2e\xad\x56\x4b\xd8\x4c\xbb\x6f\x3d\x67\x3d\x01\x59\x81\x5f\xa3\x56\xab\xfd\x9d\xce\xe6\x10\x6b\x39\x80\x9f\x30\x8f\xd9\x6c\x36\xd5\xe9\xdc\xbb\xcb\x7e\x3b\xa6\xcc\xcc\x4c\x9a\x29\xf3\x4f\x0e\x7b\xed\xf7\xec\x72\x97\xe0\xbd\x73\x7a\x4d\x63\x56\x59\x59\x99\x8f\x7d\x4d\x69\x56\x09\xfa\xb6\x62\xc5\x0a\xaa\x46\xa3\x59\xdc\x58\xd1\xdf\x6e\xcc\xde\xfd\x8e\x46\xa3\x09\xb2\xaf\x71\xcc\x36\xb9\x24\x88\xf5\x8a\x0a\x8b\xbd\xcd\x69\x87\xf6\x4f\x59\xbf\xb5\xdb\xe7\x81\xb8\x8b\x37\x5a\x0b\x37\x0c\x23\x9d\x9e\x09\x3e\x23\xc8\x0a\xe2\x12\x77\x8f\xe0\x01\x9e\x03\x8e\x83\xef\xa6\xd1\x68\x16\xd5\xa9\x5a\xa5\xa6\x8c\xfd\x67\x20\x2e\xb4\xc7\x2a\x9b\xc1\xdf\xbd\xdf\x73\xa9\x2e\xc8\xa5\x3d\xc0\xec\x3e\x4d\x71\x91\xd4\xbb\x4b\x70\x60\xd7\x3d\x5d\x72\xd8\x93\x88\x20\xe2\x9c\x9f\xdb\xf3\x5f\xd9\x5f\xaf\x6c\xaf\x42\x3a\xc4\x00\x5f\x51\x26\x93\xf9\x82\x3d\x87\xf8\xbd\xa8\xa8\xc8\x1b\x6c\xb8\x4e\xa7\x0b\x46\x3a\x3d\xb7\xb1\x7c\xc0\xdc\x95\xfe\xee\xb9\xa1\xa8\x2f\xef\x38\xee\x65\xc0\xe7\x06\x79\x8f\x26\x23\x23\xe3\xa1\xee\x5f\xc0\x38\xe4\xe4\xe4\xd2\x3a\xf2\x5e\x33\x81\x9f\xbe\x6a\x8a\x3e\xdd\xbb\x86\xb9\xd1\x9f\xf8\xc9\xcf\x66\xfe\xc1\xcf\x8d\x39\x3b\x0f\xb7\x89\xb7\xec\x69\x5b\xf9\xf2\xce\xf6\xfc\xed\xfb\x3a\xb3\xf6\x9e\xb4\xa4\x1c\xbd\x3e\xc8\xb8\xf4\xeb\xd4\xb5\xbd\xa9\xd7\x3d\xec\x93\x67\x8b\x8a\x8a\x66\x7c\x86\xcd\x53\xfd\x71\x26\xc0\x2e\x83\xac\x87\xd7\xc7\x3c\x7b\xf5\x1e\xb6\x7e\x8d\xdf\xff\xda\x31\x77\x7d\x0d\xf6\xc6\xcc\x3f\xb8\xa7\xb2\x4c\xbd\xc8\x31\xee\x7a\x50\xfd\x71\xbe\x06\x1f\x44\x22\x2e\xf4\x6e\x2f\xd8\x6a\x18\x88\xfd\x6c\xcc\xdd\x58\xac\x72\x9a\xf3\xee\xf6\xbf\xec\x67\xbf\xcf\x18\xca\xfa\xf8\x60\xb3\x9c\x9e\x05\x75\xd9\x87\xfb\xf4\xdb\xa3\x04\x98\x53\xb4\x52\xea\xd3\x52\xb8\x41\xd1\xc3\x39\x7e\xcc\xb6\x17\xe4\x7e\x5f\xcb\x79\xff\x74\x30\xe6\x8b\x9f\xba\x04\x07\x76\xd4\x95\x5a\x38\xe0\x6f\xdb\xd7\xf7\xe6\x9a\xe6\x4c\xe0\x1b\x43\xdc\x51\x5e\xac\x0c\x6c\x91\xbe\x28\xe9\xcc\xde\xb3\xba\x3b\xf5\x83\x03\xbd\xac\x33\xe7\xfb\x13\x3e\x1d\x1d\x88\xbf\xf0\x4d\x7f\xe2\x27\x57\x41\xc6\x66\xfe\xc1\x5d\x1d\x79\xaf\xb5\x1b\xca\xfa\xb8\xe2\x3c\x89\x37\xd8\x98\x39\x60\x8d\x2b\xf2\x58\x7f\x66\xba\x7e\xfc\xf1\xc7\x09\x9f\x9f\xc1\x60\x10\x3c\x41\x3c\x09\x58\x09\x7a\x01\xbe\x5f\x64\x64\x24\xe1\x5f\x39\x01\xec\xc3\xba\xfe\x67\xa6\x07\xd1\xbd\xdf\x3d\xd9\x4e\x0b\x91\xe7\x95\x1c\xf3\x11\x3f\x22\xbf\x8b\xcd\x23\xf2\x71\x0c\x1b\x80\xfc\x26\x86\x85\x40\x3e\x32\x0f\xf3\x83\x7c\x50\x30\x4e\x7c\x9e\x87\xdf\x85\xfc\xee\x7c\x1c\xff\x18\xc7\xb0\x89\x05\xb6\x7a\x26\x42\x70\xfc\xae\x00\xc3\xc6\x43\x70\x7c\x22\x04\xc3\xc6\x05\xb6\xfc\xe6\x80\xed\x7b\xc8\xe1\xbe\x31\xfc\x5e\xfe\x7f\xff\x85\x61\xff\x81\x4f\xe0\xff\x7d\x01\xf2\x9b\x82\xb1\x55\x90\x8f\x85\xc0\xe7\x7f\xc7\xc7\x7c\x52\xff\xcb\x96\x0b\xf0\xa9\x79\xe2\x15\xdb\x7d\x37\xa7\x94\xb3\xd5\x43\xd4\xff\x5f\xf7\xda\x21\xdb\x25\xfb\x41\xf6\x0b\xfa\x79\x37\x04\xc3\x26\xfc\x6c\xdf\xdf\xb5\xf3\x41\xf2\x85\x63\x36\x3e\x27\xf9\x1e\xc3\x6c\x72\x20\xe5\x32\x61\x97\x13\x6e\x97\x1b\x3e\x16\xe2\x5a\xbe\xb6\x9c\x6e\x7f\x96\x6c\xf0\xff\xa1\xe7\xc9\xfe\x45\xff\x9c\x44\xa3\xd1\x30\xf0\xa1\x21\x16\x49\x4c\x4c\x24\xd6\xe5\x05\x02\x01\x91\x58\x2c\x16\xf1\x5d\x44\x44\x04\xb1\xfe\x0f\xf7\xfe\xb3\xd3\xfc\xf9\xf3\x89\x35\x1e\x1e\x8f\x47\x91\xc9\x64\x34\x84\x90\x2f\x42\x28\x10\x21\x14\x86\x10\x62\x20\x84\x98\x08\x21\x8e\x3d\xb1\xec\xdf\xc1\x6f\x8b\xe0\x5e\x28\xc3\xe7\xf3\x27\xf7\x70\xfe\x59\x08\x7c\x54\x18\x53\xb5\x5a\xed\x8d\x10\x5a\x8c\x10\x62\xeb\x6b\x0d\xb2\xc6\xf2\x01\x6b\x9b\x78\xcb\x3b\xa6\xcc\x7d\x67\xbb\x53\x0f\x5f\xeb\x49\x3e\xf1\x7d\x2f\xeb\xf4\x0f\xbd\xac\xd3\x3f\xf6\x24\xff\xe5\xfb\xee\xd4\x0f\x46\x4d\xc2\xb7\xce\xb5\x17\x6c\x3b\xd0\x24\x1b\x5a\xa3\xd7\x34\x54\x40\x59\x84\x50\x10\xd4\x25\x10\x08\x88\x18\xec\xf7\xe6\xcf\x1d\x3d\xfb\xec\xb3\x14\xb1\x58\x4c\x45\x08\x2d\x84\xb1\xad\x57\x76\x18\xda\xf3\x5e\x39\xd4\xc3\xfe\xcb\xf7\xd6\x28\xdb\xf3\x79\xb3\x49\x56\xfa\xb5\x89\x5e\xf6\x5f\xc7\x3a\xf2\x5e\x3b\x0c\x75\xd9\x75\x24\x00\xda\x78\x90\xf3\xe1\x0f\x9b\x7c\x7c\x7c\x28\x39\x39\x39\xc0\x77\x00\xd2\x21\x7e\x73\xe9\xf3\xeb\x2d\x9c\x8f\xbe\x71\x7c\xa6\xf3\x41\x13\xc4\x7f\x3d\x9c\xe3\xdf\x36\x97\xac\xd9\x08\x6d\x40\x5b\x79\x79\x79\xd4\xdf\x6a\xef\xdd\x1d\xc5\xc5\xc5\x51\x34\x1a\x8d\x0f\xd2\x21\x66\x53\xd9\xaa\xb5\xbd\xac\x33\x3f\xb8\x3b\xcb\xf6\x70\xe4\xf0\x35\xde\x97\xf4\xf1\x8f\xcd\xa5\xab\xd7\x21\x1d\x62\x41\xdb\xd0\x87\xdf\x9a\xef\x05\x0b\x16\x60\x20\x7f\x98\xdf\xf5\x35\x6d\x9a\xee\xd4\x0f\xae\x3e\x4a\xbe\x5d\xc9\xa1\x9b\x7b\xe4\x5a\xbd\xb2\x5d\x03\x7d\x10\x0a\x85\xbf\x99\x0c\xfc\xfc\xfc\x28\xe5\xe5\xe5\x34\xa4\x43\x8c\x96\xe2\x75\x5b\x3d\x7d\xc6\xdb\xb9\xff\xc4\x73\xd8\xf4\xaf\x6e\x12\x29\x72\xf4\xf6\x5c\xe4\x37\x14\x73\xf9\x76\x6b\xe1\x86\x35\x60\x2f\x9e\x78\xe2\x89\x47\xce\x3b\xc4\x68\x4a\xa5\xd2\x1b\xe9\xf4\xdc\xce\xcc\x3f\x9d\xf4\xb4\xcf\x43\xd1\x57\x7e\xb6\x70\x3f\x3c\xd8\x91\xf7\x9a\xb1\xa9\x74\xb5\xa8\xbe\xba\x33\x5c\xaf\x69\x5c\x88\x74\x7a\x98\x3b\x3e\xa8\xb6\xde\xb7\xae\xa6\x2d\xa8\xb1\x7c\x80\xdb\x26\xde\x82\xcc\xfc\x83\x3b\x07\x62\x3f\xff\xce\x93\xfa\xcd\xfc\x83\x6f\x2a\x95\x4a\xaf\x47\x6d\x23\x9f\x7c\xf2\x49\xc2\xa6\xe9\x6b\x0d\x59\x16\xee\x87\x57\x3d\xc0\xac\x3b\x96\x94\xa3\x87\x5b\xa4\x2f\x16\xe9\x34\x75\xfe\x80\xdb\xe0\xf3\x80\x3d\xf7\xf3\xf3\xc3\xec\x67\x42\x09\x9a\x37\x6f\x1e\xe0\x28\xf1\x3c\x14\xc4\xc8\x22\x91\x88\xaa\x56\x69\xbc\x41\x1e\x5d\x82\x77\x5f\x1d\x8a\xfa\xf2\xa6\xab\x36\xfa\x13\x3f\x19\xd5\xd7\x36\x2c\xb6\x9f\xd5\x7c\x64\x04\xf1\x7b\x55\x55\x95\x17\xaa\xad\x4f\xef\x49\x3e\x71\xfd\x3e\xba\x3d\xd1\x9d\xfa\xc1\x3b\x86\x4a\x73\x1c\xf8\x30\xf6\xb5\x88\x59\xb7\x09\xe3\xb9\x74\xe9\x52\xc2\xa6\xd6\xa9\x5a\x82\x3a\x33\xff\xb4\xce\x4a\xbf\x36\x39\xd7\x86\xa2\xbe\xbc\xd5\x50\xd9\xcd\x05\xff\xea\x91\x30\x6d\x27\x18\x9b\xe2\xe2\x62\x2a\xd2\xe9\x99\xdd\xa9\x87\x3f\x9f\x89\xf7\xfe\xf8\xf3\xdf\x34\x95\x59\x45\x80\x0f\xb3\x7d\x87\xc1\x4c\x04\x7e\x8f\x44\x22\xa1\x1a\xaa\x4c\x71\x3d\xec\x93\xa7\xc8\xf3\x2f\x52\xa9\x94\xf6\xa8\xf5\x3e\x39\x39\x99\x02\x7e\xa9\x51\xb4\xeb\xd0\x4c\x78\x66\xe6\xbd\xbf\x4f\xa7\x36\x04\xc2\xfd\x8f\xaa\x4f\x91\x91\x91\x14\x95\x52\xed\xdd\x5a\xb4\x3e\x1f\xf4\xd1\x95\xfd\x87\xf1\x82\x18\x23\x23\x23\x83\x2a\x14\x0a\xa9\x51\x51\x51\x73\xee\x0f\xe0\x1d\x42\xc8\xbf\xa9\x74\x75\x3f\x71\xf6\xcb\x8d\xbe\x1b\x45\x6f\x0c\xd6\xd4\xa8\xbc\x1f\xf5\xde\x13\x66\x9b\x8b\x44\x5c\xe1\x2a\x46\x02\x4c\x01\x3d\x01\x9f\x19\x21\xc4\x43\x88\xf0\x95\x82\x4b\x4b\x4b\x69\xae\xde\x65\x35\x13\x81\x1c\x61\xfe\xea\xd5\x4d\xa2\x81\xb8\xcf\x5c\x3e\xcf\x41\x3c\xef\x9a\xff\x8a\x09\xc6\xe2\x51\x3e\xbf\xe7\x29\x01\x16\x20\x1d\x8a\x68\xcf\xdf\xbe\x6f\x20\xfe\xfc\x2f\x03\x71\x17\x6e\x74\xe4\xbc\x7e\x10\xe9\xf4\x8c\xac\xac\xac\x59\xed\x31\x03\x6e\x81\xec\x4c\x19\x6f\x9f\x74\xc7\xbb\x31\x7b\xf7\x9a\x3f\x0a\xef\x30\x5e\x60\x9f\x5a\x0b\x37\xae\x76\xde\x07\x69\x2f\xd8\xb6\x55\xab\xd5\xfa\x7a\x1a\x57\xc3\x7c\x01\xbe\x1a\x14\xdd\x1a\xe2\x6c\xa3\x0b\xfe\xbb\x53\x3f\x38\xa4\xd1\xd4\xfa\xce\x61\x4f\xe2\x91\x10\xd8\x4f\x98\xab\x16\xee\x87\x23\xce\x7d\xed\x65\x9d\xbe\x06\x31\xc3\x93\x4f\x3e\xe9\x51\x5d\x60\x83\x11\x42\xa1\xdd\xdc\x23\x2e\xf1\x7e\x20\xee\xe2\x98\x5e\xdd\x14\x6a\x3f\xe7\xf9\x87\x21\x18\x7f\x33\xff\xcf\x07\x9c\xfb\xdb\xc3\x39\x7e\x46\xab\xd5\xfa\x78\x3a\xfe\x30\xef\x0d\x95\xe6\x69\x67\xe5\x49\xbd\x6f\x2e\x79\x41\x01\x31\xdf\x23\x67\x68\x96\xc4\x66\xb3\x29\x0d\x8a\x1e\xee\x50\xd4\xd5\x49\x7f\x09\x7c\x86\x26\xd9\x50\x2e\x9f\xcf\xf7\x68\xac\x88\xe7\x23\x10\x0a\xec\x4a\x7f\xfb\x98\xab\xb1\xb7\xa4\x7c\x74\x12\xe2\xae\xdf\x3b\xf6\x74\x45\x80\x01\x60\xf3\x0c\x95\x5d\xd1\x9d\x99\x6f\xae\x36\x09\xf7\xad\x6d\x90\xf7\x30\xf3\xf3\xf3\xa9\x8e\xfe\xe6\x4c\x04\x72\xd2\xd7\x1a\xd8\x43\x31\x97\x6f\xb9\xb2\x75\x0d\xf2\x3e\x51\x4a\x4a\xca\x1f\x8e\x77\xb0\x8b\x90\x30\xfb\x3b\x9d\x40\x17\x20\x05\x07\x07\xcf\xaa\xaf\x0a\x85\xc2\xab\x45\xba\xd6\xec\x6a\xec\x7b\xd8\x7f\x39\x07\x38\xea\x70\x4e\xeb\x77\xa7\xa0\xa0\x20\xc7\xf5\x45\x7f\xb8\x76\x7c\x96\x07\x7c\x47\x88\xd5\x35\x1a\x8d\x37\xe0\x03\xd8\x41\x77\xfd\x07\x3b\x86\x10\x5a\xd8\x25\x78\xf7\x84\x2b\xfe\x5b\x0b\x37\x34\x42\x5d\x0f\xda\x67\x98\x63\x2c\x16\x8b\x22\x10\x08\xa8\x90\xe0\x7a\x2e\xef\x81\x03\xde\x61\x3c\xf4\xb5\x86\xdc\x66\xe9\x0b\x1b\x5b\xa4\x2f\x6e\xd6\x6b\x1a\xc4\xc0\x03\xf8\xdf\xe4\xef\x48\xa7\xe7\x35\x28\x2c\x46\x43\x55\x57\x33\xd2\x21\xa6\x3b\xdf\x11\xf0\x1c\xe9\x50\x38\xf9\x5e\xa5\x29\x31\x6c\xd4\x97\xbf\xea\x35\x0d\x11\x33\xbd\xe7\xe6\x7e\x04\xb6\x12\x7c\x76\xfb\x3a\x70\x1c\x42\x28\xdd\xee\xa3\xc1\x75\x00\xc4\x19\xae\xde\x8d\xee\x8e\xc0\xaf\xab\xaf\x69\x93\xf4\x27\x7c\xfa\x8f\x7b\xb6\xe9\xb3\x1b\xf5\xd5\x9d\x15\x10\x13\x57\x55\x55\xd1\xea\x6a\xda\x8a\xfa\x92\x3e\xfe\x81\x7c\xd7\xa5\x85\xfb\xe1\x65\xa4\xad\x67\x43\x8c\xe9\x5c\x1f\x97\xcb\xa5\xd4\xd5\xb4\xa6\xbb\xc2\xfd\x9e\xe4\xe3\xe7\x40\xc7\xc8\x39\x36\x5b\x82\xf1\x80\xb1\xd0\x69\x11\x5f\x5d\xd0\xb5\xb3\x8a\xf9\xc2\x37\x8a\x88\x4d\x37\x14\x91\x9b\x7e\xa9\x4e\x7a\xe1\xba\x7a\xa5\x69\xbb\x4e\x87\x78\x6a\xb5\xda\xc7\x13\x5d\x80\x98\x12\xfa\x63\xca\x78\x7b\x5a\x5c\x62\xe6\xbd\x7f\x86\x58\x8f\x44\x28\xc0\x9c\x76\xe8\x8c\xf3\xef\x1d\x79\xaf\x6e\x07\x7b\xe8\x1c\x17\x40\xac\xd9\x54\xb6\xda\xe0\x4a\xf7\x8d\xa2\x37\x86\x21\xae\x9b\x0b\xef\x30\xaf\x80\x2f\xad\xd2\x20\xab\x64\xbc\xf4\xbd\xbb\xb3\xf8\x55\xf1\xeb\xbe\xd5\xa9\xea\x8b\x6a\x6a\x6a\xbc\x1d\xe7\x28\xf4\x13\x70\x2c\x29\x29\x89\xd8\x23\x01\x3b\x4e\xf2\x4f\xbe\x0f\x77\xea\xba\xc0\xb9\xef\xec\xfc\x07\x0e\xc4\x9f\x1f\x73\x61\xc3\xce\x42\x59\xe7\xb8\x5c\x2e\x97\x7b\xb5\x15\x6c\x5d\xe7\x8a\xff\x16\xe9\x8b\x75\xae\x74\xc6\x13\x82\x72\xba\x5a\x3d\xbb\x32\x66\xfd\x98\xdb\xe7\x10\x48\x19\xc4\xae\xfb\x56\xa7\x45\x4c\xfb\x73\x61\xf7\xd6\xdb\x6c\x7b\x09\xd1\xe0\x97\x81\x7c\x40\x9f\x00\xeb\x8c\xd9\xbb\xa7\xf5\xb7\x4b\xf0\xde\x3e\xb5\x5a\xed\x05\x98\xd7\x9d\xfa\xc1\x91\x69\x63\x99\xbd\x7b\x1d\x94\x75\xee\xa7\x56\xab\xf5\xee\xcc\xda\xb3\xc7\x15\xff\x0d\x95\xdd\xb9\x10\xdb\xce\x96\x77\x90\x31\xe8\xbd\x4a\x64\xd9\x7e\x3f\xde\x27\xdf\xcb\x95\x67\x5e\x0f\x3e\x06\x94\x95\xcb\xe5\x34\xa4\xad\xe7\x75\xe4\xbd\x76\xc0\xc2\x3d\x7a\xdd\x24\xdc\x77\xaa\xae\xa6\x55\x06\x75\x26\x26\x26\x52\x74\xea\xfa\x40\x0b\xe7\xd8\x61\xfb\xf3\x02\x78\x2f\xfb\xe4\xc9\x3a\x55\x4b\x10\xb9\xcf\x66\xa8\x32\xc5\x0d\xc4\x5d\xfc\x96\x8c\x05\x7a\xd9\x7f\x3d\xa5\xd7\x34\x04\xba\xb2\x8b\x08\x21\x9f\xae\xf4\x77\x0f\xbb\xf2\xf9\xea\x54\x2d\x2c\xd0\xbf\xd9\xf2\x0f\xb6\x08\xe9\x50\x50\x65\xcc\xfa\x6f\x3d\xe5\xbf\x2a\x6e\x1d\xf8\xeb\x8b\xf3\xf2\xf2\xa0\x6c\x70\x37\xef\xf0\xf9\x29\xfe\x77\xfc\xf9\x7f\xe8\x35\x0d\x5c\x88\xf1\x81\x0f\xd0\x8f\xfa\xea\xce\x60\x43\xb5\x29\x54\xa1\xa8\xa4\x39\x62\x34\xf4\x59\x5b\x53\xe7\xdf\x5c\xf2\x82\xa8\x49\x66\xe5\x56\x55\x56\x7b\xbb\x5b\x2f\x83\x39\x61\xe6\x1f\x9c\xe6\xf7\x59\x23\x47\xef\xe8\x35\x0d\x71\x73\xe1\x1f\xe6\xab\x4e\x8b\x22\x88\xe7\x3f\x3c\xe4\x5f\x1e\x36\x7c\x43\xa7\x23\xf6\x02\x29\xf5\xd5\x46\xa1\x2b\x3c\x6e\x95\x6c\xea\x05\xfc\x27\xdb\xf1\xf3\xf3\xc3\xdc\xc5\x37\x80\x17\x60\x73\x01\x57\x67\x5a\x0b\xb1\xf3\x7f\xd4\x0d\xff\x09\x73\xe1\x1f\xc6\x42\xa7\xd5\x87\x4f\x7b\xff\xdb\x4c\x29\x74\xcb\x4d\x9d\x0e\x05\x2b\x95\x4a\x8a\xa1\xd2\xcc\x77\xc5\x7f\x7b\xc1\x56\x0b\xf8\x22\x60\x53\xed\x6b\x1e\x3e\xe4\xbe\xa9\xe3\xda\x1b\xf1\xfe\x3c\xfb\x1e\x2c\xc8\x0b\xe6\xb0\xbb\x38\x08\x21\xe4\xdd\x25\x78\x77\x9a\x3d\x21\xf4\x5f\xdd\xcc\x01\x3f\x65\xb6\xfc\x83\x3d\x47\x3a\x14\xa0\x88\xdc\xe4\x16\xf7\x9d\x53\x65\xf4\x86\x51\xd2\x87\xd1\xd6\xea\xfc\xfb\x92\x46\x2e\x4d\xf1\x45\xa2\xaf\xde\xac\x57\xb6\x47\x0b\x85\x42\xc2\xae\x20\xad\x9e\xdf\x24\x1b\xb2\x36\x97\x3e\xbf\x56\x5f\x6b\xc8\x87\xb2\x20\x77\x90\x0d\xb1\x0f\xab\x43\x09\x7a\x75\x93\x42\xaf\x69\x28\x45\x08\x45\x80\x2c\x5c\xad\x07\x81\xef\xdb\x99\xb5\x77\xa7\x2b\xfc\x33\x54\x76\x49\xec\xe7\x3f\x67\x4d\x80\x61\x4a\xfe\xe0\x56\x4f\xf9\xaf\xc9\xe8\x5b\x4b\xea\x36\xe8\x5c\xbd\xb2\x3d\xdc\xc2\x3d\x7a\x60\x28\xfa\xca\x0f\x7d\x49\x1f\x8f\x34\xca\x06\x85\x60\xab\xa5\x52\x29\x55\xaf\x6e\x12\xf6\xb2\xce\x7c\x3f\x89\x0d\xb1\x9f\xdd\x80\xd8\x15\xfc\x1f\xc0\x05\xbd\xa6\x51\x68\xe1\x7e\x78\xd5\x1a\x39\x4a\xbc\x8b\xc3\x24\x7c\xeb\x24\xd2\xe9\x19\xae\xe2\xc1\xe2\xe2\x62\x5a\x7b\xc1\xb6\xd5\xae\xf8\x6f\x2e\x59\xd3\x0c\xbf\xcf\x85\xff\xc8\xc8\x48\x8a\xb6\xc6\x10\xae\x58\xf6\xf2\x4f\xf7\xe3\x5d\xb1\x7c\xf3\x98\x4e\x5d\x1f\xec\x88\x51\x80\xa1\xc0\x2f\xd8\x67\xf0\x1f\x19\x0c\x06\x85\xb4\xff\x9d\x59\x7b\xf7\x3b\xf7\xb5\x9b\x7b\xe4\x9c\xdd\xfe\x2f\x34\x65\xec\x9f\x66\xff\xda\x56\xbe\xbc\x16\xf4\xc2\xb9\x9f\x10\x3b\x36\x97\x3e\xaf\x72\xc5\x7f\x47\xee\x8e\x57\xc1\x26\xcd\x75\x2d\x15\xe2\x8e\xda\xb2\xd6\x74\x45\xd8\xf0\x3f\xdc\xf2\xbe\xec\xe5\x1f\x6a\x2b\x5a\x38\x19\x19\x19\xf7\x9d\x67\xe0\x87\xba\xf3\x7f\xc0\xe7\xb1\x9f\xa3\x58\xd4\x9f\xf0\xe9\x34\xff\xc7\xcc\x3b\x74\x0c\xf0\xc2\xb9\xce\xb8\xb8\x38\xd0\x35\x96\x2b\xbc\xe9\xe6\x1e\x39\x0f\xf5\xcd\x75\xef\x1d\x62\x73\xd0\x39\xad\xb2\x21\x4c\xc9\xb5\x6e\x95\x87\x0d\xff\x20\x5f\xb2\x6d\x02\x92\x62\xd9\xf0\x98\x92\x37\xb4\x51\x5b\x63\x08\x06\xac\xf2\xf4\x99\x2a\x98\xc7\x9d\x59\x7b\x37\x4f\xeb\x6b\xea\x91\x23\xe0\xcb\x00\x8f\x3d\xc9\x27\xa6\xad\x87\x75\x66\xbd\xe9\xd2\x97\x25\xd6\xbb\x75\x28\x90\x7c\xaf\xe5\x14\xcc\x89\xb9\x7c\x0b\x69\xeb\x58\x0f\x1a\xfb\xdb\xdf\x43\x4b\x55\xab\xd4\xde\x5a\xa5\x61\x91\xb6\xc6\xb0\x08\xae\x41\x3f\x66\x1b\x03\x02\x3e\xea\xd5\x4d\x8b\x7b\x59\xa7\x47\xc8\xf3\xc8\x03\xf1\x17\xae\xd7\x57\x77\x46\x83\xef\x03\xf1\x4c\x63\x45\x1f\x7f\x28\xfa\xca\x2f\xf7\x74\xe3\xc2\x37\x75\xaa\xd6\x30\xb0\xcb\xce\xf5\x91\x6b\xa8\x66\xfe\x7b\x07\xa7\xcf\x81\xaf\xf1\xe6\x92\xe7\x4d\x0f\x73\xaf\xf1\x89\x27\x9e\xc0\xe6\x1a\x4f\x91\x04\x38\xaf\x52\xaa\xbd\x1b\xcb\x07\xb9\x4d\x65\xab\xd3\x6b\x55\x88\xf0\x0b\x49\x7e\x04\x02\x01\xa5\xbe\xa6\x2d\xb8\xbd\x60\x2b\x6a\x5b\xf9\xb2\x12\xa9\x1a\x02\x66\xb2\xe3\x30\x0e\x2d\xc5\x2f\x21\x57\x18\xd0\x9d\x7a\x18\xe6\x40\xb0\x2b\xd9\xfd\x9e\x04\xe3\x41\xfe\xff\x08\x95\x4a\x25\xf6\x41\x20\xf6\x87\x04\x38\x09\x31\x04\xf4\x19\x64\x75\xbf\x77\xfe\x01\xee\xea\x6b\x1b\x42\x87\xa2\xaf\x4c\xdb\x73\x05\xfb\x51\x5f\x6d\x94\xc1\xdc\x79\x88\xef\x38\x7b\xa8\x14\x15\x15\x45\x81\xb8\xc7\x1e\x2f\x2d\x06\xcc\x26\xf5\xc1\x13\x02\x59\x2a\x95\x4a\xef\x2e\xc1\x81\x69\x76\xc5\x16\x5b\x1d\x80\xd8\x3a\x34\x3e\x3e\xfe\x0f\xa5\x03\x18\xf9\x5e\x26\x84\x02\xea\x95\x46\x8d\x31\x67\xe7\x11\xa3\x68\xd7\x51\x43\x55\x97\x01\xe4\x30\x9b\x73\x32\xe0\x23\x36\x28\x2c\xe9\xae\xde\x93\x6f\x8d\x1c\x9d\x68\x90\xf7\x36\x82\x5c\x1f\xc6\xfb\xbe\x1f\x26\x29\x14\x0a\x62\xdd\x7e\x28\xfa\xf2\xed\x55\xf7\xd6\xad\xee\x34\x96\x0f\x34\x43\xcc\xec\x29\x6e\x81\x6f\x08\xfc\x59\xb8\x47\x5d\xae\x03\xf6\x25\x7d\x3c\x86\xb4\x75\x3c\xf0\xd1\x3c\x5d\x57\x7e\xd4\x44\xfa\x03\x5d\xfc\xf7\xa6\xc5\x2f\x16\xce\xb1\x8b\xa0\x17\x3e\x3e\x9e\xbf\x1a\x18\xec\x9c\x4d\x07\x46\x5d\x9e\xdd\x33\x09\xf7\x9d\x40\x08\xd1\x73\x72\x72\xa8\x7f\x04\x2c\x80\x71\xd0\x6a\xb5\x30\x66\xa7\x9c\xfb\xda\xcb\x3a\x7d\x09\x21\xe4\x3f\x1b\x5b\x03\x31\x12\xd8\xba\xae\xf4\x77\x5c\xc6\x03\xb6\x33\x08\x9b\x77\x00\x16\x80\xcd\xf8\x23\xc8\x00\xe2\xc1\xb6\x95\x2f\x1b\x9c\xfd\xb7\x8e\xbc\xd7\x7a\xe7\xe2\xbb\x83\xcd\xd0\xab\x9b\x82\x07\xe2\x3e\xfb\xc1\xa5\x0c\xe8\x5f\x4d\xb4\x14\xaf\xdb\x8c\x10\x0a\xcb\xcf\xcf\xa7\xfe\xde\xe7\x96\x7d\x7d\x7d\x89\x73\x3a\x1d\x39\xaf\x9b\x07\x19\x7f\xfb\x6e\x90\x71\xe9\xfb\xce\xac\xbd\x56\xb5\x4a\xe3\x33\xd7\x7d\x5a\xf0\xd5\x9a\xca\x56\x15\xb9\x9b\x07\x20\x83\x56\xc9\xa6\x9d\x48\x87\x18\x10\xe7\x3d\xca\x33\xba\xc4\x7f\xcc\xe5\xe7\x53\xb5\x5a\xad\x97\x3b\x3f\x19\xe2\x7d\xf0\xb3\x21\x96\x05\x59\x40\x4c\xf3\x20\xfb\xf3\xf6\x35\x38\x90\xe9\xa0\xbb\xf3\x68\xf0\x7d\x67\xd6\x9b\x27\x90\xb6\x4e\xa8\xd5\x6a\xfd\xa1\x6f\x0f\x53\x17\x00\xb7\x59\x2c\x16\x79\xd6\x94\xdd\x20\xef\x41\x08\xa1\xa0\xb9\xac\xc7\xcc\x85\x9e\x7a\xea\x29\x8a\x5a\xa5\xf6\x31\xa7\xfd\x79\x9f\x2b\xfe\x1d\x70\x66\xcc\x50\x69\x36\x02\x2e\x82\xbd\x81\x3e\x3f\xc8\x3b\x96\x41\xf6\x60\xb7\x89\xb3\x67\x08\x85\xd5\x2b\xdb\x91\x25\xe5\xa3\x51\x2b\xfd\x2b\xb0\x69\x26\x88\x6f\x9d\xde\x3f\xf5\xc8\x28\x38\x38\x98\xa2\xd3\x20\x7f\x0b\xf7\xe8\xb4\xf5\x51\xe7\xf9\x60\x12\xee\x1b\xa9\x53\xb5\xa8\x40\x0e\x5a\xad\xd6\x17\x74\x36\x26\x26\x86\xe2\x89\xbf\xe0\xeb\xeb\x4b\xe0\x0e\xcc\x3b\x62\xbc\x11\x0a\xd7\x6b\x1a\x65\xc6\x9c\x37\x8e\x0e\x45\x5f\x1d\x9f\x8c\x63\xe2\x3e\xbb\x51\xa7\x6a\x91\x3a\xef\x15\x3c\x4a\x82\x78\x4b\xa7\xd1\x13\xff\x8b\xb2\xea\x3e\x67\x33\x87\xa2\xae\x8e\x77\xa5\xbf\x7d\xbe\x41\xde\xd3\x8b\x74\x48\x08\x7c\x80\x0d\x86\xf8\x4a\x2a\x95\xd2\x40\x26\xe4\xfe\x1f\xd8\x50\xc0\x67\xe0\xc5\x7e\x7e\x3e\x0c\xe9\x10\xdf\x50\x65\x6a\xef\xcc\xda\x7b\x6a\x30\xe6\x8b\xdb\xae\xda\xe8\x49\x3e\x3e\x8a\x74\x7a\x56\x61\x61\xe1\x6f\xe6\x84\x80\xbe\x01\x9e\x76\x66\xbe\xb9\xce\xdd\xff\x28\x39\x63\x43\x7f\xc2\xa7\xbf\x98\x84\x6f\x9d\x6d\x29\x5e\xf7\xaa\xa1\xba\xb3\x1d\x69\xeb\x4a\x91\x0e\x89\xec\xfb\x7f\xe9\xc4\xb5\x56\x2f\xad\x57\x76\x34\x36\x97\xbc\x30\xdc\x99\xb5\xf7\x4c\x1f\x73\xe4\x27\x4f\xce\xbf\x76\x66\xed\xdd\xf7\x5b\x9d\xff\x25\x09\xf0\x00\xb0\xbe\xa5\x78\x5d\xc5\x60\xcc\xe5\x69\xef\xba\xbf\x9f\x3c\x88\xf7\xe0\xc7\xfe\x8d\xf8\x1f\x2e\xdb\x7f\x72\x7d\x7e\xcb\xdd\x3b\xf1\xef\x33\xd7\x6e\x77\xe4\xbe\x6e\x82\xbe\xfc\xd6\xfe\x07\xe0\x3b\xd8\x16\xdb\xda\xe4\x87\x07\x7f\xcb\xf3\xef\xab\x88\xe7\x00\x46\x2e\x36\xc8\x7b\x39\xa0\xfb\xbf\xe7\x79\x84\x90\x90\x10\xc2\xd6\x36\x97\x3e\x9f\xdf\xc7\x1c\xb9\xf8\xa8\xe5\x30\x10\xfb\xd9\xf7\x6d\xe2\x61\xa4\x56\xd5\x12\xcf\x3e\xfc\x11\xfc\x4e\xb0\xcf\x60\x8b\x6b\x6a\x54\xde\xcd\xd2\xb5\x92\x9e\xe4\x13\x27\xdc\xf9\x4b\x73\x49\xc4\x73\x1f\xcc\xb3\x9f\xb7\x89\xb7\xa0\x5a\x95\x9e\xf0\x2f\x66\x7b\x9e\xf3\xb7\x20\x98\x13\x0c\x06\x83\xd8\x6b\xa9\xaf\xee\x8c\xe8\xc8\x7d\xdd\xdc\xcb\x3a\x3d\x62\xa5\x7f\x35\x97\x67\x24\xee\xf4\x27\x9c\xbb\xdc\x99\xf9\xa7\xb5\x8d\x15\x7d\x6c\xf0\x01\xd8\x6c\xf6\x1f\x92\x6f\x57\x04\x7e\x70\x72\x72\x32\xc5\x7e\x86\x36\xa0\xa9\x6c\xb5\xb0\x23\xef\xd5\xd6\xae\xf4\x77\xb6\x5a\x52\x3e\x3a\x0c\x72\x81\x31\xed\x4f\x3c\x7b\xa9\x8f\x75\xe6\x9c\x85\x73\xec\x68\x97\xe0\xbd\x1d\xc6\x9c\x9d\xe6\x66\xe9\x5a\x71\x7d\x4d\x5b\x10\xcc\x2b\xf0\x65\xc1\xf7\xf8\x23\xe8\xf9\x5c\x09\xfc\x38\xe0\x21\x3e\x3e\x9e\xf0\xcd\x21\x4e\x13\x8b\xc5\x34\xc0\x6d\x48\x12\x89\x84\x26\x16\x8b\x09\x5f\x20\x31\x31\x91\x78\x37\xd8\x6c\x62\xf5\x7f\xd1\xbf\xe8\x5f\x34\x77\xc2\xef\x4f\x83\xc4\xab\x0a\xf0\x09\xfb\xcd\x63\x18\x46\xfc\x1d\xcc\x20\x86\xd9\xdf\x61\x80\xcd\xb7\xfd\x4c\xdc\x30\x8e\x09\x6e\x42\x7e\x73\x1e\x7e\x77\x1e\xdc\xbe\x00\xc7\x57\xe1\x38\x3e\x12\x82\xe3\x7f\x87\x62\x02\x7b\xad\x03\xb6\x7c\x1e\xf1\x67\x36\xb6\x7b\xf1\xb1\x81\xbb\xf3\x6d\xb9\xed\x3d\x0f\x63\x03\x13\x7e\xb6\xdf\xc7\x89\xfc\x7f\xf1\x71\xfb\x5f\xd1\x90\xf9\x4d\xa2\xba\xdd\xf6\xdc\xcf\xef\xa6\x00\xbf\x29\xb8\x4b\x5b\x70\x53\x80\x8f\x85\xdc\xa5\x2d\x18\x1b\xc0\x47\xfc\x6c\xf9\xe0\x82\x4d\x7e\x7e\x44\xbe\x00\x6a\x76\x95\xef\xc6\x1d\xee\x23\xca\x91\xf5\x38\xd4\x4b\xb6\x33\xa5\x1f\x93\xb9\xbd\x9f\x64\xbf\x49\x3e\x48\xbe\xee\xda\xf9\x25\xfe\xf5\x17\x1f\xbf\x27\x07\x52\x2e\xa4\x9c\x48\xb9\x91\x72\x1c\xc7\x42\xc6\xa0\xcc\x5d\x0c\xc3\xe6\x39\xc8\x1d\x1f\xc1\x30\x5b\x5b\x18\x46\x54\x71\x97\x1c\xd4\xb1\x10\x0f\x06\xf7\xff\x0f\x00\x00\xff\xff\x9f\xf0\xbc\x2c\xbe\x86\x00\x00") - -func web_uiV1StaticFaviconIcoBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFaviconIco, - "web_ui/v1/static/favicon.ico", - ) -} - -func web_uiV1StaticFaviconIco() (*asset, error) { - bytes, err := web_uiV1StaticFaviconIcoBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon.ico", size: 34494, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x35\x03\xca\xfc\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\x00\x00\x02\xfc\x49\x44\x41\x54\x38\x8d\x7d\x53\x5d\x48\x53\x61\x18\x7e\xbf\xef\x7c\x3b\x3b\x3f\xcb\x2d\x97\x67\xb6\x8d\xb9\x74\xce\xf2\x27\xeb\xc6\x56\xf6\x43\x41\xd1\x2f\x15\x89\x20\x44\x48\x17\xdd\x94\x37\x51\x14\x12\x51\x89\x57\xde\x45\x42\x05\x11\x44\x3f\xf4\x43\x44\x57\x41\x65\x7f\x0a\x2a\x46\x62\x69\x66\x53\xf2\x87\xe9\x6c\xe7\xcc\xa9\xdb\xce\xce\xce\xce\xd7\x45\x28\x0a\xea\x7b\xf7\xc2\xf3\x3c\xf0\x3e\xef\xf3\x30\xb0\xcc\xf0\x3c\x8f\x6d\x36\x1b\x62\x59\x16\x69\x9a\x86\x28\xa5\x74\x29\x1c\x5a\xb4\x20\x84\x2b\xd7\x95\xfb\x6b\xac\x15\x67\x37\x42\xee\x1e\x4b\x8a\x71\x67\x30\x55\xc3\x9c\xfa\xe3\x5d\xb2\xff\xe9\xa3\xf1\xd6\x07\x93\x4a\x44\x5d\x52\x40\x10\x04\x7c\x65\x43\xd5\xe5\x23\x71\xdf\x75\x8d\x31\xd4\x41\x7b\xf2\x73\x18\xc7\x83\x3c\x32\x09\x9e\xb8\x10\x70\xc5\xcc\xa5\xc3\xd6\x64\xeb\xc9\xe0\x9d\x5d\x8a\xa2\x18\x73\x3c\x02\x00\x40\x08\xc1\x0d\xc5\x35\x0d\xfb\x67\xf2\xea\x3b\x24\xe5\xe1\x2d\xe5\xc3\xa5\xbe\xce\x5f\x13\xaa\xaa\x1a\x00\x00\x92\x24\x91\x03\x85\x81\xfd\x40\x41\x8b\x46\xa3\x60\xb7\xdb\xb1\x2c\xcb\x00\x00\xff\x85\x8e\x97\xec\xda\xde\x5b\x74\x83\x36\xef\x38\xdb\x6c\xb5\x5a\xc9\x72\xbe\x00\x00\x6c\x29\x2c\xf7\x7e\x2d\xb9\xf6\xb7\xb2\x70\xb3\x0f\x00\x80\x61\x59\x16\x37\x7a\xaa\x6e\x23\x06\x93\x0b\xe3\xcf\x8f\x85\x27\xc3\xa9\x95\x04\x80\x23\x2a\x38\x2d\x72\x87\x32\xd0\x36\x15\x8b\xa5\xb1\xc7\xe9\x16\xf2\xa7\x2d\x7b\xda\xf9\xd0\xc3\x3f\x23\xc3\x89\x39\x9c\xd7\xe1\x92\x4e\xaf\xdf\x5b\x7f\xd0\x1f\x38\x4c\x08\xc1\x00\x00\x65\x1e\xbf\xf3\xbe\xab\xf6\x6d\x8c\xd1\xfa\xef\xe7\x9c\xfa\x52\x96\xe7\xcf\x25\x6e\x2e\xdb\x43\x28\x62\x7f\x26\x42\xdf\xe6\xc8\x0c\xc3\xe0\x5a\xe7\x8e\x66\x29\x82\xaa\x28\xac\x01\xa6\x42\xdc\x5c\x93\x2e\xbb\xf8\x29\x2b\x74\x67\x94\x26\xfb\xc2\xfa\xec\x44\x4f\x96\xd2\x32\x3d\x91\x4c\x10\x84\x30\x06\x0a\xb0\xf0\xcd\x08\x21\xc0\x26\x06\x03\x18\x00\x08\x0c\x5e\x14\x08\xa4\x59\x56\x87\x8c\x11\x8a\x84\x47\x65\x3d\x92\x50\x89\x43\x4d\xab\x9a\xc1\x70\x36\x51\x3b\x41\x36\x9e\x8f\xf2\xe9\xe0\xbb\x50\xf7\x47\x00\x00\xc3\x30\xe8\x24\x9f\x6e\x5d\xe5\xb4\x27\x7b\x2d\xb1\x9b\xaf\x3b\x5b\x3e\xbc\x1a\x6d\x7f\xc1\x10\x82\x6a\xf9\x8a\xa6\x84\x57\xe8\xaa\x4c\xb9\xeb\x3a\xd1\xd8\x4b\x10\x45\x11\xbf\xde\x7a\xf9\x7d\xdb\xa6\xab\x83\xb9\x39\x12\xb7\x92\x7f\x08\x21\xbc\xde\x5f\xc4\x9d\x29\x39\x58\xed\x2f\xf0\x71\x00\x80\x71\x3c\x1e\x37\x9e\x65\x7a\x9a\x6c\x49\x92\x5f\x9f\x77\xb4\xd1\x6c\x36\xe3\xe5\x04\x28\xa5\xc6\x1a\x62\x71\x9f\x41\x15\xf7\x9c\xe6\x6c\x2f\x00\x18\x0c\x00\xc0\xe0\x54\x68\xa8\xa8\xb0\xc8\xb1\x5b\x59\x5b\x57\xec\xf2\x39\xfa\x60\xb2\x2d\x3a\x1b\x9b\x8f\xac\xd9\x6c\xc6\x87\x7c\x81\xad\xa5\x52\x7e\x41\x4b\xb0\xab\xbb\x25\x6b\xec\xe6\xf7\xa1\xfe\x89\x4c\x26\x43\xe7\xa3\x2c\xe5\xe4\xb0\x57\x8a\xab\x9b\x76\x87\x1d\xe7\x74\x4c\xa7\xfb\x78\xe5\xcd\xb0\x26\x07\x79\x6c\x12\x4a\xc8\xda\x80\x6b\x96\xdb\x36\xb2\x3a\xd5\x7e\xf2\xf7\xed\x4a\x59\x96\xe7\xa3\xbc\xa8\x4c\x3c\xcf\xe3\x7d\xa5\xdb\x02\x27\x84\x4d\x75\xde\x19\x61\xa7\x25\x45\xb2\x75\x4c\xf5\x88\xa8\x0d\x74\xb0\xe3\x4f\x1e\x8f\x7d\xbe\xfb\x7b\x68\x70\x7a\x91\x2f\x4b\xdd\x6a\x32\x99\xb0\xc3\xe1\x20\xa2\x28\x72\xba\xae\xeb\xd1\x68\x54\x5d\x58\xa0\x85\xf3\x0f\x37\x93\x32\x03\xb1\xf9\x4d\x7e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xb0\x22\x7d\xd3\x35\x03\x00\x00") - -func web_uiV1StaticFaviconPngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticFaviconPng, - "web_ui/v1/static/favicon.png", - ) -} - -func web_uiV1StaticFaviconPng() (*asset, error) { - bytes, err := web_uiV1StaticFaviconPngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/favicon.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticLoadingCylonPinkSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xd3\xcf\x6b\xdb\x30\x14\x07\xf0\x7b\xfe\x8a\xc7\xdb\x65\xbb\xd8\xb2\xe2\x05\xb3\x58\x81\x6d\x97\x5d\xb2\xc3\x56\x72\x57\xec\x17\x5b\xd4\x96\x84\xf4\x6c\x27\xfd\xeb\x8b\xdd\x1f\x94\x52\xe8\x2d\xed\x41\x42\x42\x7c\xbf\x48\x1f\x50\x19\xc7\x06\xce\x7d\x67\xa3\xc2\x96\xd9\xff\x48\xd3\x69\x9a\x92\x69\x9d\xb8\xd0\xa4\x52\x08\x91\xc6\xb1\x41\x18\x0d\x4d\xbf\xdc\x59\xa1\x80\x2c\x87\xb5\x84\xac\x40\x98\x4c\xcd\xad\xc2\xb5\x44\x68\xc9\x34\x2d\x2b\xcc\x11\x4e\xa6\xeb\x14\x7e\xa9\x37\x85\x3e\x4a\x04\x1f\x28\x52\x18\xe9\x67\xf4\x54\xf1\x3f\xcd\xc6\x29\xb4\xce\x12\xee\x56\x00\xa5\xd7\xdc\x82\xf3\xba\x32\x7c\x51\x28\x92\x02\x81\x83\xb6\xf1\xe4\x42\xaf\x70\x59\x76\x9a\xe9\xab\x00\xf1\x0d\xa1\x56\xb8\x97\xf3\x0d\x0e\x59\x01\x7f\x36\x70\xc8\xf2\xbb\xa5\x07\xa0\xd4\xd6\xf4\x9a\xe9\xe6\x29\x0d\x9a\x39\x98\xe3\xc0\xf4\x57\xf7\xf4\xd8\x35\x1f\x20\xf0\xc5\xd3\x8b\x72\x84\x51\x77\x03\xc5\xf9\x75\x62\x0b\x32\x9f\x67\x01\x02\xa1\x1e\x82\x42\x19\x11\x8e\xd4\x18\xab\x50\x20\x04\xf2\xa4\xf9\xb7\x1b\x2c\x2b\x34\xb6\xa6\x93\xb1\x66\xee\xb8\xa5\xcb\x7f\xdf\x19\xbb\xf4\x24\x12\x1e\x46\x0e\x22\x29\xb6\xaf\xf6\x08\x95\xee\xaa\xbd\xab\x49\x61\x5c\x32\x08\xe9\xc2\x91\xce\x1e\x6f\xc2\x7c\x7f\x17\x46\x3c\xc3\x14\xd7\x87\x49\xb2\xf8\x71\x36\xf2\xb3\xe3\xc8\x6b\xe1\x94\xf3\x77\xdd\xad\xee\x03\x00\x00\xff\xff\x70\xd5\x10\x78\xd7\x03\x00\x00") - -func web_uiV1StaticLoadingCylonPinkSvgBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticLoadingCylonPinkSvg, - "web_ui/v1/static/loading-cylon-pink.svg", - ) -} - -func web_uiV1StaticLoadingCylonPinkSvg() (*asset, error) { - bytes, err := web_uiV1StaticLoadingCylonPinkSvgBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticMstile144x144Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x3c\x40\xc3\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x90\x00\x00\x00\x90\x08\x06\x00\x00\x00\xe7\x46\xe2\xb8\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xec\xbd\x69\x90\x1c\x47\x76\x26\xf8\x3d\x8f\xc8\xc8\xb3\xb2\xb2\x32\x13\x75\x5f\x59\x28\x14\x0a\x27\x89\xb3\x41\x80\x40\x93\x68\x76\x83\x0d\x92\xad\x6e\xb5\x34\x23\x69\xa6\xa5\xde\x59\x8d\x64\x63\x2b\x8d\x6c\x4c\xbb\xa3\x95\xc9\xd6\xc6\x34\x63\x6b\xda\x31\x4d\x9b\x56\x1a\x69\x65\x52\x6b\xa5\xd6\x31\xad\xab\x4f\xb5\xd8\x64\xf3\x26\x01\x82\x47\x93\xe0\x01\xa0\x0a\xc4\x51\x55\x40\xdd\x57\x56\x56\xde\x19\x19\xe1\x6f\x7f\x64\x44\x66\x64\x56\x66\xa1\x00\xe2\xd2\xb6\xbc\xac\x2c\x22\x3c\xbe\x74\x7f\xee\xfe\xe2\xf9\xf3\xe7\xcf\xdd\x09\x80\x00\x20\xad\x6b\x6d\x90\xd6\x55\xd4\xc4\xd5\x3e\xd7\x62\x36\x92\xce\xad\x62\xd6\x7b\x7f\xb7\x31\xff\x1c\x1c\xe1\x76\x57\xd6\x46\xd2\xfb\xa7\x82\x11\x8e\x77\xa2\x4e\xdc\x8f\x2c\x86\x6a\xc0\x76\x70\x7e\x7d\xb5\x92\xc1\x7e\xe7\x8c\xbf\x1b\x12\xe6\x7e\x94\x3e\xf7\x1b\x4d\xf7\x1b\xe6\x9e\x86\x5a\xe2\xea\x11\x7b\xb7\x30\xf7\x83\x14\xbc\x2f\x31\xb6\x04\x92\x1b\xb8\xd6\x26\x5a\x4f\x32\xd5\xcb\xb4\x9e\x34\x5b\x0f\xe3\x7c\xae\x27\xed\xee\x05\xa6\x11\xb6\x5e\xf8\x51\xc6\xdc\x17\xe1\xbe\xf9\xba\x1c\x98\x5a\xbd\xa0\xf6\xb7\x3f\xb2\x18\x15\x6b\x25\x4c\xbd\x67\x34\xc0\xd4\x72\xe4\x7a\xa3\xb9\x9b\xc1\xd4\xe6\x71\xaf\x31\xf6\xfd\x7a\xdd\xdf\x8f\x24\x86\xea\x44\xde\xae\x50\xaf\xeb\xbb\x6f\x30\xdb\xb6\x6d\x13\x81\x40\x00\x2d\x2d\x2d\x65\x40\x30\x18\x44\x30\x18\xac\xfa\xd1\xd2\xd2\x12\xf2\xf9\x7c\xf9\x79\x75\x75\x15\xc9\x64\x12\xa3\xa3\xa3\xeb\xe5\x77\x5f\x97\xfd\x76\x62\xa8\x4e\xe4\xcd\x48\xa0\x3b\x89\xa9\x27\xe5\xea\x49\x85\xba\x57\x55\x55\x61\x18\x86\xdc\xbb\x77\xaf\x68\x69\x69\x41\x24\x12\x41\x73\x73\x33\x88\x48\x38\xf2\x72\xde\x83\x99\x05\x51\xdd\x6f\xca\xa6\x51\x32\x33\x88\x48\xda\x71\xc5\x62\x51\x66\x32\x19\xac\xac\xac\x20\x1e\x8f\xe3\xdd\x77\xdf\x5d\x4f\x57\x58\xaf\x3c\xff\x24\x31\xb5\x4a\x74\x6d\xb8\xdf\x86\x85\x0d\x31\x2e\x97\x0b\xe1\x70\x18\xb1\x58\x0c\x1d\x1d\x1d\x88\x46\xa3\x20\x22\x61\x31\x45\xa9\xab\x66\xa8\xaa\x24\xcd\x6d\x90\xcf\x53\x54\x42\xc1\xbc\x12\xf5\x18\x22\xec\x36\x44\xc8\xa7\x2b\x21\xcd\x24\xbf\xc2\xa4\x09\x49\x1a\x00\x48\x62\xc3\x14\xac\xe7\x55\xb9\x9a\x77\xc9\x64\xde\x25\x13\x39\x97\x5c\x4a\x6b\x66\x3c\xa7\x99\x89\x82\x22\xb3\xa6\x80\xce\x60\x03\x80\xe1\x60\x2c\xb9\xbc\xbc\x8c\xf1\xf1\x71\xcc\xcc\xcc\x60\x61\x61\x01\x52\xde\xe8\xe3\xfe\xa7\x19\x6e\xa6\x0b\xdb\xa8\x04\x91\x0d\xde\x6d\x14\xd3\x48\xaa\xac\xa1\x83\x88\x44\x4f\x4f\x0f\x06\x07\x07\xd1\xdd\xdd\x0d\x8f\xc7\x63\x4b\x15\x15\x0c\xcd\x25\xc9\x13\xca\xa9\xd1\xd6\x94\x36\x1c\x4d\xbb\x76\x45\xb2\xae\xe1\xe6\xbc\x3a\xe8\x29\x8a\x76\x55\x52\x50\x30\x3c\x25\x3c\x09\x80\x4b\xa9\x32\x50\x92\x42\x6c\xc7\xa0\x54\x4d\x6c\x97\x5d\x4a\x42\xde\x10\x9c\xc8\xb9\xcc\x99\x94\xc7\x9c\x58\xf4\x17\x2f\x2c\x05\x8a\xe7\x17\x02\xfa\xc5\x84\xd7\x88\x1b\x82\xf3\x20\xe8\x00\x0c\x00\x32\x93\xc9\xc8\xf9\xf9\x79\x8c\x8c\x8c\x60\x76\x76\x16\xcc\x7c\xcb\x92\xf5\x7e\xc3\x50\x0d\xb0\xb6\x11\x9d\x0d\xe6\x0c\xb5\x0c\xb0\x9e\xe4\x58\x2f\x9d\x9b\xc1\x94\x43\x38\x1c\xc6\xd0\xd0\x10\xfa\xfb\xfb\xd1\xd4\xd4\x64\x4b\x18\x55\x91\xf0\x85\xb3\xae\xce\xee\x84\xfb\xc1\xde\x15\xcf\x27\x37\xa5\xb5\xbd\xbe\xa2\x18\x24\x86\x0f\x20\x80\x19\x04\x02\x97\xf9\x81\x01\xa2\x12\x7b\x70\xe9\xbe\x1e\x86\x40\x16\x33\x55\x30\x00\x55\xd8\x0a\x5c\x4a\x9e\x90\xce\xba\xe4\x95\xf9\x26\xfd\xec\x64\x28\x7f\x6a\x3a\x54\x38\xbb\xec\x2b\xce\x98\xc4\x79\x94\x24\x94\x91\x4e\xa7\xe5\xd8\xd8\x18\x46\x46\x46\x90\x4c\x26\x37\x52\xdc\xfb\x3a\xdc\x09\x25\xfa\x46\x12\xe4\x46\x18\x27\x13\x95\xdf\x29\x8a\x22\x3a\x3b\x3b\xb1\x77\xef\x5e\x44\xa3\x51\xa1\x28\x8a\x60\x66\x4d\x61\xf2\x6d\x4a\x6b\xfd\x83\x4b\xde\xe3\x03\xcb\xde\xcf\x36\xe7\xd4\xdd\x0a\x23\x04\x26\x87\xe0\xc0\xc7\xbf\x87\xf5\x4c\x8e\x2b\xd6\xc1\x80\xa5\x49\x48\x26\x7c\xc5\xb3\x13\xe1\xfc\xf3\x97\x36\x65\x5f\x58\xf2\x17\xaf\x9b\xc4\x59\x00\xba\x94\x52\xce\xcc\xcc\xc8\x8b\x17\x2f\x62\x62\x62\xa2\xc4\xc0\xd5\x61\xbd\x7a\xb9\x6f\x30\xf7\xbd\x21\x51\x55\x55\xb1\x75\xeb\x56\x3c\xf8\xe0\x83\xf0\xfb\xfd\x76\xf7\xe4\x69\x2a\x28\xad\x43\x8b\xbe\xc7\x86\xe7\x7d\x5f\x0c\x67\x5d\x07\x05\x53\xa0\xd4\x86\xce\x56\xb6\x8b\x58\xea\x90\xa8\x2e\x27\x6c\x04\x53\xf9\xce\xaa\x31\xa8\xc1\x36\xc6\x98\xc4\xe9\x65\x7f\xf1\xed\x8f\x5a\xb3\xdf\xbc\xb4\x29\xfb\x42\xca\x6d\x2e\x80\x90\x07\x60\x2c\x2f\x2f\xcb\xf7\xde\x7b\x0f\x53\x53\x53\xd0\x75\x7d\x4d\x1d\xa0\xb1\x64\xbe\xe7\x98\xfb\x76\x18\xaf\xaa\xaa\xd8\xb6\x6d\x1b\x76\xed\xda\x85\x40\x20\x60\x4b\x9b\x40\x47\x52\x1b\x7a\x60\xa6\xe9\x5f\xf5\xc5\x3d\x9f\xd3\x4c\xea\x2c\x75\x2f\xf5\x1a\xbe\x3a\xdc\x19\x4c\xfd\xb0\x1e\x86\xc1\xd0\x15\x9e\x1a\x0f\xe7\xfe\xe1\x5c\x67\xe6\xaf\x67\x83\x85\x8b\x26\x71\x96\x88\xf4\x6c\x36\x2b\x4f\x9f\x3e\x8d\x89\x89\x89\x8f\xab\x47\xde\x35\x0c\xd5\x00\xd1\x00\xdc\xa8\xab\xd9\xa8\x42\x7d\x33\x18\xf4\xf5\xf5\x89\x03\x07\x0e\x20\x1c\x0e\x0b\x00\x1a\x49\x04\xfa\x57\x3c\x7b\xf7\x4d\x36\xfd\x62\x47\xd2\xfd\x98\xc2\x14\xa8\x53\xd0\x52\xa8\xdf\xee\x1f\x0f\xc3\x28\xf5\x88\xb5\x42\xe9\x63\x62\x4c\xe2\xf4\x4c\x73\xe1\xd9\xb3\xdd\xa9\xaf\x4e\x84\xf3\xef\x33\x21\xcd\xcc\xfa\xf2\xf2\xb2\xfc\xd6\xb7\xbe\xb5\x5e\x7d\xd7\x53\x70\xef\x09\xe6\x4e\x4a\xa0\x5b\x0a\x27\x4f\x9e\x14\x5d\x5d\x5d\x82\x88\x34\x62\xf8\x7a\x57\x3c\xfb\x0f\x5e\x0b\xfe\xbb\x8e\xa4\xf6\x19\x02\x3c\x8d\xbb\x21\x60\x2d\x57\xdc\x2e\x0c\x4a\x8a\x33\x35\xe2\x8c\x5b\xc7\x70\x69\xb4\x97\x9f\x0d\xea\xcf\xbe\xd5\xbf\xfa\x07\x93\xa1\xc2\xfb\x4c\xc8\x32\xb3\x7e\xed\xda\x35\xf9\xdc\x73\xcf\xdd\xd7\xe3\xff\xfb\xc6\x90\xb8\x6f\xdf\x3e\xb1\x73\xe7\x4e\xb8\xdd\x6e\x0d\x0c\x4f\x24\xe3\x1a\x78\x68\x22\xf8\x2b\xb1\xb8\xf7\x27\x14\x26\x5f\x09\x6e\x57\x7a\x85\xf8\x4a\x2c\x70\xa7\x30\x4e\x16\xa8\x27\xbc\x6e\x17\xc6\x24\x4e\x8f\x45\x72\x7f\xf7\x46\xff\xea\x7f\x8f\xfb\x8c\x09\x06\x67\x8b\xc5\xa2\xf1\xde\x7b\xef\xe1\x83\x0f\x3e\x70\x42\xd7\x1b\x76\xdf\x55\xcc\x3d\x37\x24\x6e\xda\xb4\x09\xc7\x8e\x1d\x43\x24\x12\x51\x99\x59\xf3\x1a\x4a\xeb\xfe\xeb\x4d\x3f\xf3\xc0\x4c\xe0\x3f\xb8\xa4\x08\xdb\xb8\x7a\x8d\xed\x7c\xbe\xdb\x18\x3b\xfe\x4e\x60\x8a\x42\x2e\xbc\xdf\x9d\xfe\x9d\x77\xbb\x53\x7f\x53\x70\xc9\x25\x00\xf9\xb9\xb9\x39\xf9\xea\xab\xaf\x62\x75\x75\x15\xf7\x53\x50\x50\x29\x17\xd7\xf9\x77\xc6\xdb\x65\x94\x35\x71\x5c\xf3\x2c\xeb\xdc\xd7\xa6\x23\x01\xf0\xd6\xad\x5b\xe9\xd1\x47\x1f\x45\x53\x53\x93\x06\x46\x53\x2c\xee\x3d\x74\x72\x24\xf2\x7b\x03\x71\xef\xbf\x56\x58\xf8\xca\xa6\x3c\xcb\xb8\x47\x55\xc6\x3d\xa0\x2a\xe6\x0e\x62\x9c\x16\x9f\x46\xe1\x76\x62\x04\xc3\xdf\xb5\xea\x3e\x3e\xb0\xec\xfd\x44\xc2\x57\x1c\x5b\xf5\x98\xcb\x81\xa6\x80\x1c\x1e\x1e\x36\x93\xc9\x24\x56\x56\x56\x24\x2a\xf5\x58\xef\x8a\x75\xde\xdd\x56\x8c\x82\x92\x64\xb0\x4b\x26\x6a\xae\x70\xbc\xb7\x7f\x58\xcf\x5a\xe2\xc4\xd8\xbf\x41\x0d\xb6\x0a\x73\xe2\xc4\x09\xf1\xc0\x03\x0f\x08\x45\x51\xbc\x1e\x53\xb4\x1f\x1b\x6b\xf9\xf7\x47\xc7\x42\xbf\xed\xd7\xc5\x00\x11\x11\xc0\xa0\x72\x63\xda\xa9\x11\x88\x4b\xcf\xb6\xb5\xf8\x6e\x60\xec\xa6\x27\x50\x09\xc3\x8e\x67\xdc\x31\x0c\xf9\x0c\xa5\x67\xcb\x82\xef\xc7\xbc\x86\x50\x67\x83\x85\x4b\x52\xa1\x42\x2c\x16\x93\xa6\x69\x62\x7e\x7e\xde\xae\xdf\x7a\xd7\xf5\xde\xdd\x56\x8c\x2d\x81\x6c\x26\xb0\x19\xc0\xf9\x99\xd4\x93\x46\xa8\xc1\xd5\x8b\x77\x32\x54\x19\xd3\xdc\xdc\x2c\x7e\xfc\xc7\x7f\x9c\x5a\x5b\x5b\x55\x30\xfc\xed\x29\xf7\xee\x27\x46\xa2\xbf\x37\xb0\xec\xf9\x19\x01\xd2\xaa\x94\x50\xb2\x74\x10\x22\x4b\xf1\xb4\x52\xbd\x4d\x18\x2e\x63\xac\x67\x00\x52\x40\x32\x81\xed\x7f\x54\x5a\xd4\xaa\x32\x2a\x25\x41\x54\x89\xb3\xee\x99\x4a\xef\xd8\xce\xfe\x36\x60\x14\x90\xbb\x3d\xa5\x1d\xe9\x4d\x78\x76\x2c\x34\x15\xcf\x65\xdd\x32\xde\xde\xde\x6e\x8c\x8d\x8d\xa1\x50\x28\x34\x92\x18\xb5\xd2\xfe\x8e\x61\x08\x0d\x0c\x78\xb8\x3d\xba\x4f\x55\x88\xc5\x62\x38\x7e\xfc\x38\x14\x45\xd1\x88\x11\xdc\x3e\xe7\x7f\xfc\xe8\x58\xe8\xb7\x3c\x86\xe8\xb4\x31\xb6\x0d\x85\xeb\x8c\x64\xc8\x7a\x5f\xba\xbf\x15\x0c\x50\x14\xac\x67\xdc\x66\x7a\xc5\x6b\xc4\x93\x1e\x23\x91\xf4\x98\x89\xac\x66\x26\x73\x2e\x99\x2d\xa8\x32\x6b\x12\x1b\x52\xc0\x00\x00\x21\xed\xc9\x57\xe1\xf1\x16\x45\xc0\xaf\x2b\xc1\x60\x5e\x0d\x35\xe7\xd4\x70\x28\xaf\x86\xfc\xba\x08\x28\x92\x54\x38\x72\xae\xba\x32\x57\x7f\xcb\x1f\x13\x33\x15\x2a\xfc\xdd\x37\x76\x2f\xfc\x32\x80\xc4\xdb\x6f\xbf\x6d\xd4\x28\xd6\xf7\x24\xa8\x68\x6c\xec\x5b\x6f\xf8\x58\x6f\x44\x55\x0f\x53\x7e\x1f\x8b\xc5\xc4\xa7\x3e\xf5\x29\x21\x84\xd0\x5c\x26\x45\x8f\x8c\x35\xff\x2f\xbb\x66\x03\xff\x5e\x30\x79\xaa\xb5\x02\xe7\x67\x0f\x7b\xda\xc9\xc1\x18\x56\xfc\x06\x30\x12\x8c\xbc\x4b\x66\x17\xfd\xc5\xb9\xe9\x50\xe1\xfa\x5c\xb0\x30\xb1\xec\x2b\xce\xe4\x5d\x72\xc5\x24\xa4\x41\xc8\x02\xc8\x03\xd0\xad\x7f\xa3\x4e\x99\x54\xc7\xbf\x07\x80\x07\x0c\x9f\x22\x11\xf0\xeb\x4a\x24\x9a\x71\x75\x77\x24\xdd\xfd\x5d\xab\xee\xde\x48\xc6\xd5\xaa\x99\xd0\xca\x24\xd8\xf3\x6c\x35\xe5\x73\x14\x60\xc3\x98\x94\xdb\x58\x78\x71\xcb\xca\xb7\xad\x79\x3f\xb8\xdd\x6e\xbb\xfe\x6f\xd5\xde\x76\x5b\x30\x6a\xcd\x4b\x38\x00\xeb\x19\x12\xeb\x11\xde\xd0\xaa\x7c\xf8\xf0\x61\xb1\x63\xc7\x0e\x41\x44\x1e\x77\x91\xda\x4f\x7c\x14\xf9\xcd\xd8\xb2\xe7\xa7\xc0\x10\x55\xee\x37\xe5\x0f\x8f\x51\x96\xe1\x70\x7c\x8b\xf6\xfc\x16\x1a\x63\x00\x20\xa3\x99\xe9\x89\x70\xee\xca\x58\x24\x37\x32\x17\xd4\xaf\x64\x5d\x72\x9e\xc1\x09\x22\x4a\x30\x73\x16\x40\x9a\x88\xca\x8c\xc3\xcc\x06\x11\x49\x66\x96\xd6\xb5\x94\x66\x89\x38\xc1\xcc\x02\x80\x20\x22\x95\x99\x35\x00\x1e\x53\x21\xcf\xaa\xc7\xf0\x25\xbd\x66\x70\x2c\x9a\x0f\x12\x23\x1c\x28\x28\x1d\xdd\x09\xf7\xd0\xc0\xb2\x77\x7b\x4f\xc2\xd3\xef\x36\x84\x07\x5c\xe9\x35\x9d\x43\x91\xaa\x61\xfc\x0d\x30\x45\x21\xf5\x17\x86\x56\xfe\x22\xe1\x35\xae\x5b\xf4\xca\x44\x22\x51\xaf\xaa\x45\x9d\xfb\x7a\x4c\x71\xdb\x30\x4e\x06\xaa\x05\xc8\x3a\xf7\xf5\xe2\xd6\x7d\x76\x30\x8f\x2f\x98\x53\x06\x4e\x8e\x46\xbe\xd2\x96\xd2\x8e\x13\x08\x20\x47\x07\xc3\x6c\x55\xa2\x83\x49\x88\xcb\xf2\x86\x9c\xf1\x16\xcc\xc6\x00\x80\xae\x48\x7d\xaa\xb9\x30\x31\xd2\x9e\x79\xe7\x7a\x4b\xfe\x82\xae\xf0\x0c\x08\x71\x00\x71\x00\x49\x02\xa5\x01\xe4\x89\x68\x8d\xb4\xb1\xfd\x78\x6c\x67\xb2\x5a\xa7\x32\xa7\x13\x9a\xf5\x4e\x05\xa0\x5a\xd2\x40\x03\xe0\x63\x42\x20\xe5\x31\x43\xa3\xed\xd9\x1f\x8e\xb6\x65\xa3\x3e\x5d\xf4\x0c\xc4\xbd\xbb\xb7\xcf\xf9\xf7\xb6\xa5\xb4\x4e\x85\x49\x38\x3f\x0e\xaa\xcb\x3d\x40\x2d\x46\x82\xf1\x56\x5f\xf2\xfb\xd7\x5b\xf2\xa7\x40\x98\x03\x90\x2d\x16\x8b\xf2\xd2\xa5\x4b\x1b\x69\x93\x7a\xf1\xb7\x15\x63\xeb\x40\x77\xc4\x48\xf8\xd0\x43\x0f\x61\xe7\xce\x9d\x82\x88\x7c\xcd\x39\x75\xf0\x73\xe7\xa3\x7f\x18\xce\xaa\x07\xcb\x5d\x8f\x05\x74\x76\x4a\xb5\xb6\x92\xaa\x2f\xb5\x06\x03\x00\x05\xd5\xcc\x8f\xb6\x65\xdf\x3f\xd7\x91\x3e\xb3\xe2\x33\x2e\x73\xa9\x92\x17\x00\x24\x00\x24\x51\xea\xa2\xf2\xb6\x94\xb1\x68\x94\xb3\xb3\xb3\x30\x0c\x03\xf6\xf5\xfc\xf9\xf3\xb2\xb5\xb5\x55\x2c\x2c\x2c\xc8\xe6\xe6\x66\xb1\xba\xba\x2a\x9b\x9b\x9b\x85\xcb\xe5\xc2\xd2\xd2\x92\xdc\xb9\x73\xa7\xf0\xf9\x7c\x88\x44\x22\xf0\xfb\xfd\x08\x87\xc3\x76\xb9\xed\x7f\x0d\x56\x17\xc7\xcc\x41\x22\x8a\x02\x88\x0a\x89\xce\xb6\x94\xb6\x63\xcf\x74\xd3\xc3\xb1\x65\xcf\x90\x4b\x0a\x75\x6d\xb9\xea\x95\xb5\xf4\x7c\x25\x9a\x3d\xfb\xec\xb6\xe5\xdf\x31\x05\xde\x07\x30\x05\x20\xfd\xf2\xcb\x2f\xcb\xcb\x97\x2f\xdb\xf5\xfd\xff\x4f\x43\xe2\xe1\xc3\x87\xb1\x63\xc7\x0e\x01\xc0\x17\xcd\xba\x76\x3e\x75\x7e\xd3\x1f\x34\xe7\xd5\x07\x6f\x54\x69\x76\x1c\xb0\xb6\x32\xed\x38\x06\x23\xe7\x92\xd9\x0b\xed\x99\x77\xde\xef\x4a\xbd\x92\x71\xcb\xab\xcc\x3c\x83\x0a\xe3\xd8\xd2\xc6\x60\x66\x99\xcb\xe5\xe4\xe4\xe4\x24\x66\x67\x67\xb1\xb2\xb2\x82\xc5\xc5\xc5\xdb\x32\x48\xe8\xea\xea\x42\x4b\x4b\x0b\x3a\x3a\x3a\xd0\xda\xda\x6a\x7b\x0b\x38\x99\x29\xc0\xcc\x61\x00\xad\x04\xea\x0e\x67\xd5\x6d\xfb\x27\x83\xc7\x07\x17\xbd\xdb\x35\x29\xb4\x7a\x75\xe0\xfc\x38\x96\x7d\xc5\x99\x6f\x3e\xb0\xf0\x5b\x39\x4d\xbe\xc9\xcc\x13\x00\x92\xa3\xa3\xa3\xc6\xe9\xd3\xa7\x6f\x40\xfa\xdd\x0b\xb5\x6d\xb7\x5e\xd8\xa8\x24\x92\x7b\xf6\xec\x11\x07\x0e\x1c\x10\x00\x7c\xc1\x9c\x32\xf8\xf9\x73\x9b\xbe\xda\x92\x73\xed\x2d\x41\xaa\x47\x45\x25\x22\xd6\x8e\x96\xea\x19\xf7\x18\x0c\x53\xc0\x18\x6d\xcb\x9c\xfd\x61\x4f\xf2\x85\xa4\xc7\x1c\x05\x61\x0a\x25\xc6\x89\x03\xc8\xc2\xd2\x69\x56\x57\x57\xe5\xf8\xf8\x38\xc6\xc6\xc6\xb0\xbc\xbc\xdc\x48\x67\xb3\xcb\x53\x6f\xb2\xf8\x46\x98\xda\x0f\x4f\x76\x76\x76\x8a\x58\x2c\x86\x58\x2c\x06\xaf\xd7\x6b\x3b\xba\x79\x00\x04\x00\x84\x01\xb4\x83\xd1\xdb\x96\xd2\x1e\x38\x74\x2d\xf8\x99\xbe\xb8\x67\x90\x6a\x98\xd4\x2e\x77\x41\xe1\xec\x77\x76\x2f\xfe\xde\x5c\x50\xff\x01\x80\x4b\x00\xe2\xf1\x78\x5c\xff\xf6\xb7\xbf\x0d\xd3\x34\x37\x44\xcf\xdd\xc0\xd0\x0d\x80\xf5\x2a\x11\x35\xef\xaa\xe2\x63\xb1\x98\x38\x7e\xfc\xb8\x50\x14\xc5\x17\xc8\x2b\x03\x3f\x76\x3e\xfa\x07\xd1\x8c\xeb\xf0\x8d\x5c\x20\xd6\x28\xd0\xe0\x8a\xb1\x84\x19\x4c\xc0\x74\xb3\x3e\x71\x7a\x20\xf1\x8f\x73\x4d\xfa\xbb\x20\x5c\xb7\xa4\x4e\x9c\x88\xb2\xcc\xac\x1b\x86\x61\x8c\x8d\x8d\x61\x74\x74\x14\x0b\x0b\x0b\xeb\xe5\x76\x47\xcc\x14\xce\x30\x30\x30\x80\xcd\x9b\x37\xa3\xbf\xbf\xdf\x96\x4a\x36\x23\x45\x01\x74\x0a\x50\xff\xe6\x25\xef\x91\x23\xe3\xcd\x8f\x87\x72\x6a\x94\xca\x2e\x90\x04\x29\x58\xbe\xb8\x65\xe5\xeb\x17\xda\x33\x7f\xcd\xe0\x11\x22\x5a\x48\xa7\xd3\xf9\xa7\x9f\x7e\xfa\xbe\x9b\xca\x70\xb6\x6a\xc3\x51\xd4\x46\x43\x6b\x6b\xab\x78\xea\xa9\xa7\xa0\x28\x8a\x4f\x33\xa8\xf3\x73\xe7\xa3\xbf\xdb\xb5\xea\x7e\xbc\x6a\xf4\xe4\x08\xb5\x23\x91\x7a\x0f\x0c\xa0\xa0\xca\xfc\xdb\xbd\xc9\x97\x3e\xec\x4c\xff\xc0\x50\xf8\x0a\x80\xeb\x00\x96\x50\xea\xaa\xf4\x74\x3a\x6d\x9c\x3b\x77\x0e\xe7\xce\x9d\xab\x47\x7f\x23\xe9\xf2\x71\x31\xeb\x49\xe4\xf2\x35\x10\x08\x60\xfb\xf6\xed\xd8\xb9\x73\x27\x54\x55\xb5\x25\x52\x10\x40\x2b\x18\xbd\x1e\x43\x0c\x1f\x1e\x6f\xfe\xb1\xed\x73\xfe\xfd\x2a\x93\xca\x60\x9c\xef\xc8\xbc\xf6\xd2\xe0\xca\x1f\x72\x49\xef\x99\x91\x52\x66\x5f\x78\xe1\x05\xe9\xf0\x13\xba\x65\x7a\x6e\x37\xe6\xb6\x19\x12\x83\xc1\x20\x9e\x78\xe2\x09\x34\x35\x35\x79\x84\x44\xf4\xd3\x1f\x85\xff\xd3\xf0\x82\xef\xdf\x50\x8d\x0a\x0c\x54\x04\x0d\x88\xcb\xdd\x53\x05\xc3\x55\xdd\xd7\x7c\x93\x7e\xfd\xa5\x2d\x2b\xdf\x98\x0f\xe8\x3f\x24\xa2\x31\x66\x9e\x03\x90\x20\xa2\x7c\x26\x93\x31\xde\x7f\xff\x7d\x7c\xf4\xd1\x47\x30\x0c\xa3\x1e\x5d\x1b\xd1\xed\x3e\x8e\xfe\xb7\xe1\xe0\xf5\x7a\xf1\xc0\x03\x0f\x60\x78\x78\x18\x2e\x97\x4b\x23\x22\x0f\x33\x87\x89\xa8\x13\x8c\xc1\x58\xdc\x73\xf4\xf8\xe5\x96\xcf\x67\x34\x33\xfe\xad\xdd\x8b\xff\xb5\xa0\xc8\xb3\x44\x34\xc1\xcc\xc9\x0f\x3f\xfc\x50\xbe\xf5\xd6\x5b\xb7\x8b\x94\xdb\x1a\xea\xf5\x2b\x1b\x91\x44\x6b\x30\x27\x4f\x9e\x14\xdd\xdd\xdd\x2a\x18\xe1\x4f\x5c\x0b\xfe\xc2\xa1\x6b\xc1\xff\x04\x50\xc3\x06\xb0\x87\xee\xa0\xfa\x5d\x1b\x13\xcb\xf3\xed\x99\xb7\x4f\x0f\x24\xfe\x5e\x57\x78\x04\x84\x09\x58\x52\x47\x4a\x69\x8c\x8c\x8c\xc8\x33\x67\xce\xd4\xb3\x59\x35\xa2\xf1\xbe\xc1\x9c\x38\x71\x42\xf4\xf5\xf5\xd9\xca\x76\x00\x25\xdd\xa8\x3b\x98\x57\xfa\x09\xd0\x57\xbd\xe6\x87\x00\x26\x00\x24\xae\x5d\xbb\x66\xfc\xe0\x07\x3f\xb8\xa1\xde\x79\xaf\xca\x55\xdb\x85\xc1\x01\xa8\xd5\x83\xea\xe9\x46\x12\x00\x8e\x1c\x39\x22\x76\xec\xd8\xa1\x02\x08\xc4\x96\x3c\x9f\x79\x62\x34\xf2\x55\xc5\xa4\x40\x95\x3d\xa5\x76\xfa\x95\x6c\xdb\x4f\x0d\x86\x4a\x86\xb3\xd7\x36\x27\xfe\xf1\x7c\x47\xe6\x69\x09\xbe\x48\x44\x53\xcc\x9c\x00\x90\x5d\x58\x58\x90\x6f\xbd\xf5\x16\xe6\xe6\xe6\x6a\xca\x7a\xdb\xf4\x9a\xf5\x30\x8d\xf4\xc3\x9b\xc6\xc4\x62\x31\x71\xf8\xf0\x61\xf8\xfd\x7e\x95\x99\x7d\x44\x14\x44\x69\xd4\x66\xa0\x24\x61\x93\xe9\x74\x5a\xff\xfa\xd7\xbf\xfe\xb1\xf3\x8a\x44\x22\xc2\x1a\x48\x7c\xac\x74\xea\x61\x6e\x66\x14\x56\x37\x74\x75\x75\x89\x93\x27\x4f\x0a\x22\xf2\x85\xb2\xea\xce\x9f\xfc\xa0\xf5\x7f\xf8\x74\xa5\xdf\xe9\xa9\x5c\x31\x12\x3a\xa6\x7e\xca\x6b\xaf\xaa\x31\x19\x97\x4c\x3e\xbf\x35\xfe\x77\x13\xe1\xfc\xf3\x20\x5c\x02\x30\x03\x20\x69\x18\x86\xfe\xce\x3b\xef\xe0\xc3\x0f\x3f\xfc\x58\x7a\xda\xfd\x16\x8e\x1d\x3b\x26\xb6\x6e\xdd\x5a\x5e\x9a\x84\x52\x03\x19\x85\x42\xc1\xf8\xf3\x3f\xff\xf3\x5b\x2e\xeb\xe1\xc3\x87\x45\x2c\x16\x83\xdb\xed\x86\xa2\x28\x42\x4a\x89\x7c\x3e\x2f\x67\x67\x67\x31\x3a\x3a\x8a\xd9\xd9\xd9\xdb\x52\x8f\x1f\xdb\x90\xf8\x73\x3f\xf7\x73\xc2\xed\x76\x7b\x54\x93\x3a\x9f\x3a\x1f\xfd\x9d\xbe\x84\xe7\x49\xa0\xb1\x91\xb0\x91\x6d\x07\x60\xa4\x35\x33\xf9\xbd\x1d\x4b\x7f\x32\xdf\x54\x3c\x65\x31\xcf\x1c\x33\xa7\x53\xa9\x94\xf1\xea\xab\xaf\xda\x85\xbe\xab\xc3\xd4\x1b\x60\x9c\xe1\x96\x31\x5d\x5d\x5d\xd8\xb6\x6d\x1b\x06\x06\x06\xc0\xcc\x18\x19\x19\xc1\xeb\xaf\xbf\x7e\xd3\xe9\x28\x8a\x82\x87\x1e\x7a\x08\x5b\xb6\x6c\x81\xcb\xe5\xb2\xad\xe4\xaa\xb5\x3a\x57\xa2\x64\x7d\x37\x00\x18\xe3\xe3\xe3\xf2\xf9\xe7\x9f\xff\xd8\xe5\xaa\x55\xa2\x37\x1c\x88\x08\x8f\x3d\xf6\x18\xfa\xfb\xfb\x55\x02\x85\x0f\x5c\x6f\xfa\xf9\xc3\x13\xcd\xbf\x49\x96\xde\x53\x6b\xf8\x73\x9a\xca\xea\x59\xa2\x13\x9e\xe2\xd2\xf7\x76\x2c\xff\xc9\x92\x5f\x3f\x45\x44\x57\x80\x92\xd9\x7e\x6c\x6c\x4c\xbe\xfe\xfa\xeb\xc8\xe5\x72\xce\xc2\xd4\x2b\x60\xa3\xe7\x3b\x81\xb9\x23\xdd\xc1\xc7\xc5\x3c\xf1\xc4\x13\xa2\xab\xab\x4b\x45\xc9\x25\xb8\x7f\xd7\x9c\xff\x8b\x7d\x71\xcf\x31\x4f\x51\x84\x75\x95\x93\x53\xcd\x85\xb7\xcf\x77\xa4\xff\x7e\x36\xa8\x5f\x64\x70\x36\x97\xcb\x19\xdf\xfb\xde\xf7\xb0\xba\xba\xfa\xb1\xbb\xb0\xba\xba\x4d\x9d\x50\xe6\xc0\xcd\x9b\x37\xe3\x53\x9f\xfa\x94\x00\x10\xd8\x94\x76\xed\xfd\xc9\xf7\x5a\xbf\xe9\x92\x14\xaa\x32\x12\x96\x9d\x5e\xb8\x26\x99\xea\xb8\xb4\xdb\x4c\x7c\x77\xe7\xd2\xff\xb3\x14\x28\x9e\x42\xc9\x68\xb6\xc4\xcc\xd9\x8b\x17\x2f\xca\x53\xa7\x4e\xd5\x53\xec\xec\x02\x35\x0a\x3f\x72\x98\xcf\x7e\xf6\xb3\xa2\xa7\xa7\x47\x05\x23\xb0\x7b\x26\xf0\xb9\xc3\x13\xcd\xff\xc5\x6d\x50\x77\xad\x7b\x88\x21\x38\xfe\x41\x67\xfa\x2b\x67\x62\xab\x7f\x2a\x05\x12\x35\x7a\xd6\x4d\xd3\xa3\x38\x80\x04\xc7\x14\x65\x83\x7f\x00\x20\x55\x55\xf1\x99\xcf\x7c\x06\x6e\xb7\xdb\xad\x98\xe8\x38\x71\x31\xf2\x5b\xe1\xbc\x6b\xbb\xed\x98\x50\xf1\xa9\xab\xf5\xb8\xb3\xfd\xee\x2a\x98\xac\x4b\x26\xbf\xb7\x63\xf9\x8f\x16\x03\xc5\x97\x41\xb8\x0c\x60\x81\x99\x73\x67\xce\x9c\x91\xef\xbc\xf3\x4e\x2d\x2d\xbc\x01\x1a\xef\x26\xa6\x76\x7a\xf7\x9e\x60\x76\xee\xdc\x49\x3b\x77\xee\x14\x00\x9a\x86\x17\x7c\x27\x8f\x5f\x6e\xf9\x43\x4d\x8a\x08\xc1\x5e\x94\x5d\xba\x12\x08\x0a\x93\xb7\x23\xa9\x3d\x4a\x40\x62\x2a\x54\xb8\xa0\xb9\x35\x3d\x18\x0c\xf2\xc4\xc4\xc4\x2d\xd1\x63\x4b\x14\x9b\xcb\xe4\x46\xfe\x0f\x1e\x3c\x88\xa6\xa6\x26\x15\x40\x60\xc7\x5c\xe0\xc9\xae\x55\xf7\x23\xa5\x9f\x3b\x16\xd4\xad\x5d\xaa\x8b\x5a\x4c\x51\x91\xf9\xe7\xb7\xc6\xff\x6a\xbe\x49\x7f\x15\x84\x2b\x28\x31\x4f\xfe\x8d\x37\xde\x90\x17\x2e\x5c\xa8\x47\x57\x23\x1a\x7f\x64\x31\x44\x84\x3d\x7b\xf6\x00\x80\xe6\xd5\x45\xf7\xe1\xf1\xe6\xdf\xb0\x57\xb1\xd8\x93\x42\x65\x87\x29\x2b\x10\x48\xec\x99\x6e\xfa\xd5\x68\xc6\xb5\x1d\x80\x67\x60\x60\x40\x34\x35\x35\xdd\x12\x3d\x02\x25\x26\x72\xf6\x79\xc2\x71\x5d\xf3\x1f\x89\x44\xc4\xd6\xad\x5b\xc1\xcc\x1e\x7f\x41\xe9\xfd\xc4\xf5\xe0\xaf\x08\x90\x5a\xf2\x7d\xb4\x74\x1b\xc7\x30\xdd\x19\x9c\x18\x49\x2c\x4f\x0d\x24\xbe\x63\x8d\xb6\xae\xa0\xd4\x6d\xe5\xcf\x9c\x39\x23\xcf\x9f\x3f\x2f\x51\x4d\xd7\xbd\xbe\xaf\xad\xa7\xfb\x06\xd3\xd5\xd5\x65\xef\x4a\xe2\x8b\xc5\x3d\xc7\x9a\x0a\xca\x10\x97\xcd\xb0\xd6\x95\xac\xba\xe7\xd2\x1b\x06\xc3\x65\x52\x78\x68\xc1\xf7\x14\x33\x07\x84\x10\xa2\xaf\xaf\xef\x96\xe8\x71\x4a\x20\x27\x87\x01\xf5\x39\x50\x1e\x38\x70\xa0\x64\x49\x05\x05\xf7\x4f\x36\xfd\x9c\x4f\x17\xbd\x65\x36\x61\xae\x0c\xd3\xd9\xa1\x28\xb3\x63\x15\x84\x55\x88\x73\xed\x99\xd3\xe7\x3b\x32\xdf\x65\xf0\x25\x00\x0b\x52\xca\xac\x43\xf2\x38\xf3\xbf\x1f\xee\x1b\x7d\x85\x8d\xfe\xef\x1a\xa6\xa3\xa3\xc3\xde\x07\xc9\xd7\x9a\xd2\xf6\x10\x43\xa0\xdc\x06\x95\xb6\xb0\x57\xc3\x12\xac\x7b\x06\xba\x92\xee\xfd\x00\x02\x44\xa4\xc6\x62\xb1\x5b\xa2\xa7\x11\x67\xa1\x4e\xbc\x68\x6d\x6d\x15\xdd\xdd\xdd\x82\x99\x3d\x91\xac\x6b\x78\xfb\x9c\xff\x67\xc8\x22\x8e\x18\x95\xee\xcb\xa2\x9e\xca\x0a\x74\x05\x03\x10\xe6\x9a\xf4\xb1\xd7\x07\x12\xff\x83\x09\x97\x88\x68\x8e\x99\xb3\x63\x63\x63\xf2\xfc\xf9\xf3\xa8\x93\xbf\xf3\xb9\x5e\xdc\xdd\xc0\x34\xfa\xcd\x3d\xc7\x74\x76\x76\x02\x96\xbb\xad\x66\x8a\x90\xad\x7b\x56\x06\x30\x80\xcd\x49\xc4\x56\xbc\x85\xf1\x14\x45\x14\xa5\xb9\x39\x21\x84\xb8\x61\x5e\xf5\xe2\x9c\x3e\xd1\xb2\x06\xb4\x26\xfe\xc1\x07\x1f\x14\x44\xa4\x12\x28\xb8\x6f\xb2\xe9\xe7\x34\x93\xc2\x65\x75\xd3\xf2\xac\x23\xdb\xc5\xd4\xf6\xee\xab\xda\x66\x85\x51\x70\x71\xf6\xc5\xa1\x95\x3f\xd7\x15\x39\x02\xd0\x0c\x33\xa7\x27\x27\x27\x8d\x97\x5e\x7a\xe9\x46\xf9\xd7\xbe\xbf\x9b\x18\xb9\x0e\xf6\x5e\x63\x00\x94\xea\x3b\xe5\x36\x12\x4e\xb5\xbf\xac\x40\x3b\x57\xab\x38\x42\x46\x33\x93\x96\xb7\xa5\x93\x41\x6e\x8a\x9e\x0d\x7f\x8d\x91\x48\x44\xf4\xf7\xf7\x0b\x22\xf2\x44\xb2\xea\xd0\xe0\xa2\xf7\x49\x62\x07\x61\x35\x44\xb2\xa3\xff\xb5\xe3\x99\x80\xb7\x7a\x57\xff\x71\xc9\x5f\x7c\x07\xa5\xe9\x89\x64\x2a\x95\x32\x9e\x7d\xf6\x59\xe9\xcc\xab\x86\x8e\x7a\xd7\xfb\x05\x53\x4f\x3f\xb8\xab\x98\x44\x22\x01\x66\x96\xcc\x6c\x4c\xb6\x14\x2e\x98\xc4\x06\x60\xd5\x7f\x59\x8d\xb0\x35\x22\x94\xaf\x0c\xc6\x58\x24\xf7\x3e\x33\x1b\xd6\x8e\x69\x70\xa4\xbb\x61\x7a\xea\x11\x58\xef\x19\x07\x0f\x1e\x04\x4a\x7b\xf3\x04\xf7\x4c\x35\x7d\xa9\x64\xf3\xa9\x30\x8a\x4d\x54\x25\x54\xd8\xdd\xc6\x4c\x37\x17\x2e\x9d\xeb\xcc\x7c\x0f\x84\x31\x00\x71\xd3\x34\xf5\xd7\x5f\x7f\xdd\x99\x9f\xb3\x10\x58\xe7\xf9\x5e\x63\x80\xb5\x5f\xea\x3d\xc1\xac\xac\xac\x80\x88\x24\x11\x65\x67\x82\x85\x91\x6b\x2d\xf9\xf7\xcb\xed\x40\x76\xcd\x57\x66\x01\xec\x16\x4a\x78\x8d\x99\x8b\x6d\xd9\x53\x44\x94\xb6\x76\x4e\xbb\x25\x7a\x04\xaa\xc5\x52\x43\xc5\xad\xab\xab\x0b\x00\x3c\x4d\x05\xa5\x7f\x70\xd1\x77\x12\x28\xeb\xc9\x40\x99\x85\x9c\x8c\xc4\x55\xca\xb3\x49\x6c\x9c\x1a\x58\xfd\x1b\xcb\x9f\x67\x09\x40\xfe\xdc\xb9\x73\x72\x72\x72\x72\x3d\x45\xad\x96\x96\xda\x42\xdc\x2b\x0c\x1a\xdc\xdf\x75\xcc\x87\x1f\x7e\x28\xa5\x94\x06\x80\xac\x14\x98\x7b\x79\xcb\xca\x5f\xae\x78\x0d\xc7\x4c\x73\x85\x6d\xec\x76\x29\xa8\x32\xfb\xc2\xd0\xca\xd7\xf2\x2e\x39\x06\x20\xcd\xcc\xc6\x8b\x2f\xbe\x78\x4b\xf4\xd4\x93\x3a\xce\x7b\x01\x40\x1c\x3e\x7c\x58\x08\x21\x54\x00\x81\x9d\xb3\xfe\xa7\xdc\xa6\x88\xda\x26\xc1\xf5\x8c\x84\xce\xa5\xc2\xa3\xed\x99\xd3\xf3\x41\xfd\x87\x28\x4d\x8e\xa6\x97\x97\x97\x8d\xf7\xdf\x7f\x1f\xa8\x2f\x79\x6a\xc5\xe8\x7a\x8a\xdc\xbd\xc4\xd4\xd2\x7e\x4f\x30\x13\x13\x13\x40\x69\xf1\xc0\x5c\xca\x63\x9e\xfd\xf6\xee\xc5\xaf\x5c\xda\x94\x3b\x6b\x08\x36\xca\x83\x18\x30\x24\x41\x4e\x35\x17\xae\x7c\x7b\xd7\xc2\xef\x4d\x87\x0a\x2f\xa3\xd2\x16\xf2\x56\xe9\x71\x2a\xd1\x4e\x69\x54\x15\x62\xb1\x98\x00\xa0\x69\x06\x45\x87\x17\xfc\x9f\xa3\x7a\x20\x00\x6b\x0c\x89\x96\x5e\x94\x73\xc9\xe4\x0f\x7b\x92\xdf\x45\xc9\x93\x30\x29\xa5\x34\x4e\x9d\x3a\x85\x62\xb1\x08\x34\xfe\xca\x9c\x05\xb8\x5f\x31\x8d\xea\xec\xae\x62\x5e\x78\xe1\x05\xf9\xa5\x2f\x7d\xc9\xf0\x7a\xbd\x49\x00\x13\x29\x8f\x89\x67\xb7\x2d\x2f\x84\xb3\xae\x1d\x1d\xab\xda\x60\x40\x57\x42\x79\x55\x66\xe7\x9b\xf4\xb1\xf9\x26\xfd\x9c\x14\x18\x43\xc9\xdf\x28\x2e\xa5\x74\x3a\xe9\xdf\x34\x3d\xf6\x51\x07\xf5\x40\x02\x28\xf9\xf6\xfa\x7c\x3e\x01\xc0\xd7\xbb\xe2\x39\xd8\x94\x57\x06\x1a\xaf\x9a\xb0\x5d\x33\x50\x36\x24\x12\x11\x46\xda\x33\xa7\x93\x1e\x73\x84\x99\x97\x88\x28\x7b\xe9\xd2\x25\xe9\xf0\x59\x6e\xd4\xc7\xd6\x93\x4c\xb2\xc1\xfd\x9d\xc6\xd4\x86\xf5\xf4\xb5\x7b\x82\xf9\xfe\xf7\xbf\x8f\x27\x9e\x78\x22\xef\x76\xbb\x97\x00\xe8\x0c\xc4\x97\x7c\xfa\xc4\x92\x4f\x0f\x12\x91\x66\x2d\x6b\x4a\x32\x73\x1c\x8c\x25\x94\x56\xaf\xe8\xa7\x4f\x9f\x6e\xd4\x16\x1b\xa2\xa7\xde\xd2\xe6\xaa\xfe\x6e\xfb\xf6\xed\x02\x25\xe5\x39\xb0\x6d\xde\xff\x94\x00\xa9\x65\xf7\x0c\x2e\xa9\x67\xec\x70\xf6\xa9\xf8\xf7\x94\xba\xb3\xbc\x6a\xa6\xdf\xef\x4c\x3f\xcd\xe0\x19\x00\xc9\x62\xb1\x68\xbc\xf6\xda\x6b\x37\x94\x7a\x68\xfc\x35\xd4\xbb\xbf\x1b\x18\x34\xc0\xd4\x0b\x77\x1d\xb3\xbc\xbc\x8c\xa7\x9f\x7e\x5a\x9c\x38\x71\x42\xf7\xfb\xfd\x09\x6b\xa1\xc1\x02\x11\x69\x28\x2d\x82\x94\xcc\xac\x13\x51\x9e\x99\xf3\xf9\x7c\xde\x78\xf3\xcd\x37\x71\xf9\xf2\xe5\x8d\xb4\x45\x43\x7a\x9c\x87\xad\x38\xbf\xbc\x32\xb8\xad\xad\x0d\x00\x3c\x7e\x5d\x74\x76\x27\xdc\x87\x9d\x63\xf3\x92\x9d\xb0\x62\xfb\xb1\xb5\xfd\xb2\x18\x22\xc2\xa5\x4d\xb9\x37\xd3\x6e\xf3\x12\x4a\x8a\xb3\x7e\xe1\xc2\x85\x5a\x42\x6a\xbf\xf8\x46\x05\xaa\xa5\xef\x6e\x62\x1a\xfd\xe6\xbe\xc2\x2c\x2f\x2f\xe3\xeb\x5f\xff\xba\x7c\xf8\xe1\x87\x8d\xbe\xbe\x3e\xc3\xe7\xf3\xe5\x1d\x58\x00\x90\x86\x61\xc8\x4b\x97\x2e\xe1\xf4\xe9\xd3\x4e\xbd\xe7\x96\xe9\x59\xd7\x90\xb8\x73\xe7\x4e\x5b\x79\xf6\xf4\xae\x78\x0e\x56\x0c\x87\x65\xb7\xc2\x2a\x23\x61\xad\x21\xb1\x28\xa4\x7e\xae\x33\xfd\x3c\x08\x73\x60\x64\x75\x5d\x37\xde\x7e\xfb\xed\x5a\x06\x71\x16\xa0\xde\xd7\xdf\x88\xbe\xbb\x89\x59\x8f\xae\xfb\x0e\x73\xfa\xf4\x69\x69\xe9\x35\x32\x16\x8b\x89\xae\xae\x2e\x4c\x4f\x4f\x43\x4a\x89\x6b\xd7\xae\xdd\x48\x0a\xdf\x54\x5e\xeb\x1e\xf7\xd4\xd9\xd9\x59\x5a\x17\xce\x08\x0c\x2e\xf9\x3e\x55\xb6\x2a\x97\xbb\x2c\x38\x26\xf6\xd7\x1a\x12\xe7\x82\xfa\xa5\x25\x7f\x71\x04\xd6\x2a\x8a\x91\x91\x91\xda\x3c\xd6\xe3\xfe\x5a\x4c\x3d\x49\x79\xaf\x31\xce\x70\x57\x31\x03\x03\x03\xc2\xea\x1d\x00\x00\x85\x42\x01\xe3\xe3\xe3\x58\x59\x59\xa9\x4a\x67\x7c\x7c\x5c\x8e\x8f\x8f\x3b\xd3\x11\x00\x10\x08\x04\xb0\x6d\xdb\x36\x74\x74\x74\xc0\xe3\xf1\x94\xd3\x49\x24\x12\x18\x1f\x1f\xc7\xf8\xf8\xb8\xbd\xd2\x65\x5d\x7a\xec\xcd\x15\xd6\x28\xd2\x8a\xa2\xa0\xa7\xa7\x07\x00\x34\x8f\x21\x5a\xdb\x93\xda\x5e\x7b\x56\x17\xa8\x28\xd0\x8d\xbc\x0d\x01\xe0\x42\x5b\xe6\x35\xa6\x92\x5b\x2a\x11\xd9\xeb\xb9\xeb\x29\xed\xb5\xe1\x7e\xc7\x00\x6b\x1b\xf6\x8e\x63\x3c\x1e\x0f\x8e\x1e\x3d\x0a\x6b\x46\xa0\x76\x00\x24\xf7\xed\xdb\x27\x13\x89\x84\x7c\xf3\xcd\x37\x31\x39\x39\x59\x37\x1d\x9f\xcf\x27\xf6\xee\xdd\x8b\x6d\xdb\xb6\x09\x00\x4e\x5f\x6c\x00\x90\xa1\x50\xc8\xe8\xeb\xeb\x33\x0e\x1d\x3a\x24\x2d\x1d\x69\x5d\x9a\x55\x54\x73\x96\x5d\x00\x69\x9a\x26\x14\x45\x51\x01\x78\x5a\xd3\xae\x61\x6f\x51\x44\x9d\x06\xf1\x92\xae\xe3\x98\xac\xab\xba\x63\xe4\x55\x99\xbc\x16\xce\xbf\x85\xd2\xca\xd1\xfc\xcc\xcc\x8c\x4c\x24\x12\xeb\x89\x47\x3b\x6c\x44\x91\xad\x8d\xbf\x23\x18\x22\xb2\x5d\x52\xd6\x13\xfb\xf5\x74\x84\xdb\x8e\x19\x18\x18\xc0\x43\x0f\x3d\x04\xbf\xdf\xaf\x82\xe1\xf1\xe9\x22\xd4\x9d\x70\xef\x0c\xe6\xd5\xf6\xbc\x2a\xd3\xf3\x4d\xfa\xc8\x52\xa0\x38\xd3\xd2\xd2\x92\x3f\x71\xe2\x84\x7e\xe9\xd2\x25\xe9\x18\xac\x94\xd3\x39\x79\xf2\x24\xc2\xe1\xb0\x0a\x86\xa7\x39\xa7\x76\x6e\x5b\xf0\x3d\xde\x9d\x70\x7f\xc2\x25\x45\x20\xa5\x19\x53\xe3\x91\xfc\xcb\x97\x36\x65\x4f\x93\xc7\x9b\xf8\xe4\x27\x3f\xa9\x77\x74\x74\xd4\x4d\xc7\xa6\xd9\xc9\xc5\x55\x5f\xc1\x91\x23\x47\x00\x6b\x96\xb7\x77\xc5\xf3\x09\x02\xa9\xc4\x28\x6d\xbf\x06\x67\xa8\x7e\xb2\x25\xd2\x54\xa8\x30\x92\x73\xc9\x29\x94\x56\x8f\x1a\xe7\xce\x9d\xab\xcd\xc3\x19\x6a\x15\xb6\x1b\xe1\x6e\x1b\xa6\xa5\xa5\x45\xf4\xf6\xf6\xa2\xb3\xb3\x13\x5e\xaf\x17\xd1\x68\xb4\x0c\x5a\x5d\x5d\x85\x75\x16\x98\x98\x9d\x9d\xc5\xf4\xf4\x34\x0a\x85\x42\x83\x24\x1b\xe6\xf5\xb1\x31\x5b\xb6\x6c\xc1\x23\x8f\x3c\x22\x88\x48\xf3\x14\x45\xeb\x27\xae\x05\x7f\x76\xc7\x9c\xff\xdf\xba\x4c\xea\x84\x75\xd2\x10\x13\xb2\x33\xc1\xc2\xf7\x4f\x0d\xac\x7e\x65\x3e\xa8\x8f\x0c\x0f\x0f\x67\x85\x10\x78\xf5\xd5\x57\xc1\xcc\xf0\x7a\xbd\x78\xe2\x89\x27\x10\x0e\x87\x35\x21\x11\xdc\x3f\x19\xfc\xa9\xfd\x93\x4d\xbf\xe6\x32\x45\xa7\xbd\x82\xa6\x0d\x2e\x6c\x5e\xf6\xfe\xc2\xde\xa9\xa6\xd3\xcf\x6f\x8d\xff\xfa\x5c\x50\x3f\x3f\x3c\x3c\x9c\xcd\x66\xb3\xb0\xbc\x43\xd7\x04\xe7\x1e\x89\x84\x52\xc5\x32\x00\x3e\x70\xe0\x00\xf9\x7c\x3e\x17\x80\xd6\x43\x13\xcd\xbf\x10\x2c\x28\xdd\x6b\x99\xa7\x36\x94\x07\xf1\x78\xa7\x27\xf5\x9d\xa5\xa6\xe2\x19\x00\x8b\xf9\x7c\xbe\x60\x71\x31\xd7\xfc\xdb\x79\x56\x12\x68\x8c\xe1\xdb\x89\x19\x1a\x1a\xa2\x47\x1f\x7d\x14\x7b\xf7\xee\x15\x3d\x3d\x3d\x4a\x73\x73\xb3\xea\xf5\x7a\xdd\x04\xb8\x51\x5a\xcd\xa0\x79\x3c\x1e\xb5\xa9\xa9\x49\x69\x6d\x6d\x15\x03\x03\x03\x3c\x3c\x3c\xcc\x3e\x9f\x0f\x53\x53\x53\xb2\x4e\x9a\x8d\xf2\xfa\x58\x98\xe6\xe6\x66\x3c\xf6\xd8\x63\x70\xb9\x5c\x6e\xaf\x2e\xba\x7f\xec\x7c\xf4\xf7\x07\x97\xbc\xff\x56\x61\x11\x24\x10\xc1\xb2\xb5\x11\xc8\xd5\x54\x50\xb7\x6f\x59\xf2\x3d\xbe\x10\xd0\xcf\xae\x7a\xcc\xc5\x48\x34\x52\x34\x0c\x83\xe7\xe7\xe7\x71\xec\xd8\x31\x58\x0e\xf7\xcd\x87\xae\x35\xff\xfc\x27\xae\x05\x7f\x4b\x65\xd1\x0c\x58\xd6\xbb\x4a\x3a\xe4\x2d\x2a\x7d\x9b\x97\xbd\x8f\x8e\x87\x73\xaf\xe6\x34\xb9\xda\xd6\xd6\x66\x5c\xbf\x7e\x9d\xb3\xd9\x2c\x6a\x69\x6e\x68\x48\x6c\x6e\x6e\x06\x33\x6b\x6e\x53\x84\x22\x19\xd7\x50\x85\x35\x2a\xa1\x91\x21\xd1\x10\x9c\x9f\x6e\x2e\x7c\xc0\xcc\x49\x22\xd2\xa7\xa6\xa6\xec\x74\xeb\x85\x9b\xd1\x0b\xea\x29\xb6\x37\x85\xe9\xe8\xe8\xc0\xb1\x63\xc7\x10\x0c\x06\x05\x00\x8d\x00\x8f\x3b\x65\xb6\x07\x56\xcc\x07\x7d\xab\x72\x87\x5a\x90\xdd\xc2\x84\x8f\x05\x74\x53\xa5\x78\xbe\x49\x7c\x94\x09\x29\xef\x67\x42\xca\x15\xb7\xdb\x9d\xde\xb5\x6b\x97\xbe\x7d\xfb\x76\xe3\xec\xd9\xb3\xb8\x70\xe1\x02\x74\x5d\xdf\x48\xb9\x6e\x19\xb3\x6f\xdf\x3e\x78\x3c\x1e\x8d\x18\xe1\x4f\x5e\x0d\xfd\x5a\x7b\x4a\x7b\xdc\x1e\xfa\xb2\x35\x0a\xb6\x9d\xf6\x40\x80\xdb\xa0\xee\x4f\x5f\x0a\xff\xee\xdf\x3e\xb8\xf0\xd3\x29\xb7\x71\x65\xdf\xbe\x7d\x59\x21\x04\x06\x06\x06\x04\x00\x5f\x67\x52\xdb\xbf\x6f\xaa\xe9\xd7\x08\x50\x2b\x33\x64\x6b\xd3\xf1\x16\xc5\xc0\x23\x57\x5a\xfe\x8f\xef\xec\x5a\xfc\x65\x26\xd2\x8f\x1e\x3d\xaa\x7f\xfb\xdb\xdf\x5e\x43\x73\x43\x43\xa2\xcb\xe5\x12\xcc\xac\x45\x32\xae\x7e\xcd\xa4\x50\xd9\x48\x68\xbb\xba\xad\x63\x48\x8c\xfb\x8c\xa9\x94\xdb\xbc\x8e\xd2\x76\x2b\x72\x7c\x7c\x1c\x75\xf2\xb1\x89\xb9\x91\x6e\xb2\x9e\x4e\xb4\x61\x8c\x10\x42\x7c\xe2\x13\x9f\x80\xb5\x5b\x9a\x46\x8c\x40\xf3\x82\x71\x70\xd3\x44\xf1\x7f\xf2\xad\x9a\x8f\x90\x44\x08\x80\x70\xce\x5b\x33\x00\xcc\x11\x00\xe4\x75\x2f\x9d\x8f\x77\xb9\xfe\x7a\xb9\xd7\xf5\x1d\x68\x62\x61\xff\xfe\xfd\x7a\x2c\x16\x33\xac\x33\x2d\x6e\xa6\x5c\x1b\xc6\x04\x83\x41\x11\x8b\xc5\x04\x33\x7b\xda\x53\xee\xdd\x83\x8b\xbe\x7f\x61\x59\x4b\x2a\x3b\xfc\x59\x5b\x05\x33\x55\x24\x49\xa0\xa0\x0c\xef\x9a\x0d\xfc\xf4\x99\xfe\xc4\xef\xa8\xaa\xaa\x1f\x38\x70\xc0\x40\x69\x7d\x58\x70\xf7\x4c\xe0\x5f\x29\x12\xc1\x8d\xa4\xd3\xb5\xea\x3e\xde\x9a\xd6\x76\xce\x36\x15\x12\xe1\x70\xd8\x08\x06\x83\x32\x99\x4c\x56\xd1\x5c\x1e\xd6\x39\xef\x77\xed\xda\x65\x1f\x15\xa9\x45\x33\xae\x41\x62\x12\x64\x33\x0f\x5b\xb9\x94\xa7\xba\xd6\x7a\x24\xce\x35\x15\x2e\xb1\x40\xd2\xb2\x7a\xca\xf1\xf1\x71\xe7\x10\xd2\x99\x67\x3d\x1a\x50\xe7\xbe\x16\x77\xd3\x98\x47\x1e\x79\x04\xbb\x76\xed\x12\x44\xe4\xf3\x64\xe4\xd0\xc0\xbb\xb9\xdf\xed\x7f\x2f\xff\xcd\xc0\x8a\xf1\xe3\x42\x72\x98\x00\x61\x7b\x4c\xda\xa1\xb2\x77\x33\x3c\xee\x1c\xef\x6f\xbf\xa2\x7f\x65\xe8\x4c\xf6\xbb\x2d\x33\xc6\x49\x02\x82\x91\x48\x44\xfb\xf2\x97\xbf\xbc\xa6\xfe\xd6\xa1\xe7\xa6\x30\x7d\x7d\x7d\x50\x14\x45\x00\xf0\xf5\xc7\x3d\x8f\x2a\xd2\x5a\x2e\x7e\x23\x6f\x43\x10\x06\x97\xbc\x9f\x21\x50\x10\x15\x53\x8d\x2a\x40\xc1\xce\x55\xf7\x7e\xe2\x8d\x79\x2d\x0a\x26\x5f\xe7\xaa\xfb\x00\x00\x8f\xa2\x28\xb6\xdf\x74\x15\x8d\xce\xaf\x40\xda\xf7\x9b\x36\x6d\xb2\xf7\x05\xf4\x44\x33\xae\x2d\x76\xe2\x95\xfa\x65\x54\x2c\x86\x76\x9a\x96\x71\x91\x18\x73\x41\xfd\x22\x80\x24\x33\x1b\xd6\xae\xea\xce\xf4\xed\xff\xda\xbc\x9d\xd7\x7a\x71\x12\x0d\xa4\xe5\x8d\x30\xc7\x8f\x1f\x17\x83\x83\x83\x2a\x98\x83\xcd\x8b\xe6\xb1\xc1\xb7\x72\xdf\x6c\x5a\x32\x7f\x8a\x18\x9a\xd3\x04\x51\x2e\x9b\xa3\x48\x76\xb4\x2d\x6d\xb5\x3c\xef\xec\x3d\x97\xff\xf3\xae\x91\xc2\xaf\x0a\x89\xa8\xa6\x69\x9e\x2f\x7f\xf9\xcb\xa2\xbd\xbd\x7d\x23\xf4\xc8\x9b\xc1\x74\x74\x74\x00\xa5\xa1\xb6\xaf\x39\xaf\x0e\x96\xdb\xba\xec\x6d\x88\x6a\x6f\xc3\xb2\x4d\x0e\xf0\xeb\x4a\xb7\x5a\xf2\xd9\xb2\x87\xe8\xaa\xcb\xa4\xa0\xcb\xa4\x10\x36\x98\x0e\x01\xf0\x14\x45\x3b\x11\x79\x00\x08\x4d\x2b\x6f\xaa\x56\xa6\xb1\xee\x17\x61\x1d\x85\xad\x82\xe1\x69\xc9\xba\xfa\x6d\x2e\x2d\x4f\x59\x90\x95\x83\xd3\x28\x64\x61\x24\xc1\x58\xf2\x17\xaf\x32\x73\x9e\x88\x0c\xc7\x26\x08\xb5\x92\xa6\x96\x89\xea\x61\x1a\x5d\x37\x8c\x39\x72\xe4\x88\x18\x1c\x1c\x14\xcc\x1c\x68\x5a\x32\x1f\xee\xfb\x20\xf7\xff\xba\x0a\x3c\x50\xb6\x7d\x3a\x96\xbc\x94\x74\x00\xbb\x3b\xa6\xaa\x06\xb1\x15\x40\x06\x40\xcc\x9e\xe8\xf5\xe2\x7f\xec\x1a\x2d\xfc\x2a\x49\x0e\x6b\x9a\xa6\x7d\xf2\x93\x9f\x84\xdb\xed\x6e\x44\xc7\x8d\x68\xae\x8b\xf1\x7a\xbd\x60\x66\xc1\xcc\x2a\x97\x75\x96\x52\xe7\xba\x9e\xb7\x21\x00\x18\x42\xea\x92\x58\xb5\x7e\x2f\x98\x19\x45\xa5\xe4\x0b\xb4\xd1\x74\x18\x40\xd2\x63\xc4\xed\xdf\x3b\x56\xd9\x94\xe9\xad\x6b\x48\x0c\x04\x02\x60\x66\xe1\x92\xc2\xd7\x54\x50\x5a\xed\xa4\x89\xea\x6d\x82\x59\x6d\x48\x2c\xa8\x32\x99\x76\x9b\x73\xd6\x36\xba\xd2\xb2\x8c\xde\xa8\x6b\xaa\x0d\xb7\x05\xd3\xdd\xdd\x2d\xec\x7d\x1a\xbd\x69\xb9\xbd\xef\xc3\xfc\x7f\x57\x0c\xb4\x56\x0e\xf5\x72\x92\x5e\xcb\x30\x0e\xc6\x2a\xef\x22\x52\x61\x2e\x22\x16\x91\xc9\xe2\x2f\xe9\x5e\x9a\x9f\x1f\xd0\xfe\x34\x18\x0c\x26\x8e\x1c\x39\x62\xbc\xf4\xd2\x4b\x4e\x12\xd6\x28\xf1\x2d\x2d\x2d\xe8\xe9\xe9\x11\x96\x83\x9e\x00\x50\xde\xec\xf3\xca\x95\x2b\xc8\xe7\xf3\x55\xe5\xb0\x24\x83\x5c\x08\xe8\x13\xdb\xe6\x7d\x15\xf9\x48\x95\xed\xd4\x2b\x5a\x9b\x45\x1e\x18\x71\x9f\x31\x23\x05\x0c\xab\x13\x96\x00\x24\x03\xf9\xeb\x2d\x85\xf3\xbb\x66\x5d\xfd\xd5\x5e\x8b\xf5\xd3\x31\x85\xcc\xcf\x05\xf5\x71\x22\xaa\xdd\x3f\xbb\xb1\x21\xb1\xa9\xa9\x49\xa8\xaa\x2a\x88\x48\xa8\x92\x02\x6e\x43\x84\xab\x8c\x87\x37\x30\x24\x66\x34\x33\x5e\x50\x65\x02\xa5\xad\x74\x9d\xcb\x74\xea\x85\x3b\x66\x48\x54\x55\x15\x07\x0e\x1c\x00\x00\x8d\x24\x47\xbb\x46\x0b\xbf\xa6\xe8\xdc\x5b\x91\x38\x35\x9f\x02\xd9\x3d\x98\x33\xde\x39\xb6\x04\x4a\xdb\x0e\xdb\xa2\x88\x40\x80\xda\x76\x55\xff\xb5\xd4\x26\xf5\xed\x5c\x50\x39\x1b\x8b\xc5\xd2\x9d\x9d\x9d\x98\x99\x99\x59\x53\xd9\xc1\x60\x10\x0f\x3f\xfc\x30\xda\xdb\xdb\x85\xaa\xaa\x02\x35\x5b\x2c\xc7\x62\x31\xb9\x7f\xff\x7e\x63\x74\x74\x14\x6f\xbd\xf5\x96\x04\x80\xd9\xd9\x59\xb4\xb5\xb5\x49\x00\xfa\x78\x24\xf7\xde\xa1\x6b\xcd\x69\xb7\x51\x3a\xda\xd3\xa6\xac\x3c\xa0\x41\xf5\xc6\x5c\xe3\xe1\xdc\xfb\x28\x39\x99\xd9\x3b\x6f\x19\x00\xd2\xe7\x3a\xd2\x2f\x0e\x2f\xf8\x1e\x73\x99\xe4\xb9\x51\x3a\x93\xa1\xc2\xf9\xb8\xaf\x38\x66\xa5\x23\xcf\x9e\x3d\xbb\xa6\x5c\x6b\x94\x68\xaf\xd7\x0b\x45\x51\x00\x40\xf5\xe9\x22\xa4\x99\xc2\x57\xf6\x37\x74\x28\x69\x8d\x3c\x12\x53\x6e\x73\x41\x96\x76\x80\x71\x33\x5a\xe4\x00\x00\x20\x00\x49\x44\x41\x54\x37\x8a\xc5\x62\xbd\xee\xa9\xde\xbf\x13\xb3\x1e\x16\x35\xd8\x86\x98\x58\x2c\x86\x4d\x9b\x36\x09\x00\xbe\xe6\x39\xe3\x91\xc0\xb2\xf9\x78\x95\x19\xa2\x2c\x51\xac\x2a\x77\x74\xcf\xb5\x18\xe7\x66\x9f\xe5\x40\xa5\x5f\x2a\x26\x42\xed\x97\x0a\xbf\x02\xc9\x21\x45\x51\x54\xcb\x77\xbc\x8a\xa6\xfe\xfe\x7e\x7c\xfe\xf3\x9f\x47\x77\x77\xb7\xa6\x2a\x6a\x60\x53\xca\x35\xfc\x89\x6b\xc1\x9f\x3d\x71\x31\xfc\x9b\x8f\x7d\xd4\xf2\xeb\x0f\x4e\x05\x7e\xa2\x39\xa7\xf6\x6b\x9a\x16\x78\xe0\x81\x07\xd4\x9f\xf8\x89\x9f\x10\x6d\x6d\x6d\xc2\x92\xde\x06\x80\xf4\xaa\xc7\xbc\xf2\x5e\x57\xea\x59\x3b\xf3\x7a\xcb\x96\xed\x37\x71\x9f\x31\x35\xda\x9e\x7d\x19\xa5\x6d\x8e\x6d\xe9\x61\x00\x48\x2e\x06\x8a\xe7\xdf\xec\x4b\x7e\x87\x01\xb9\x5e\x3a\x69\xcd\x8c\xbf\xba\x39\xf1\x97\x52\x60\x01\x40\xbe\x58\x2c\x4a\x97\xcb\xb5\xa6\xae\xd7\x78\x24\x5a\xce\x45\x02\x80\xea\x36\x44\x50\x30\x34\xbb\xf6\x36\x62\x48\x4c\xbb\xcd\x25\x50\x69\xa7\x54\xcb\xe3\xd0\x0e\xb7\x2a\x6d\x6e\x09\x63\x75\x5d\x1a\x24\x87\xa2\xd7\x8a\x5f\x22\xeb\x8b\xaf\x98\x21\xe0\x10\x3e\xce\x6e\x78\x2d\xa6\xfc\x86\xaa\xaf\x36\xae\x69\xd9\x3c\xee\x4b\xca\x9d\xd9\x90\x92\x88\x44\x22\x46\x73\x73\xb3\xb4\x76\xbc\x40\x5f\x5f\x9f\x78\xec\xb1\xc7\x84\x10\x42\x73\x17\x45\xeb\x27\xaf\x86\x7e\x79\xcb\xa2\xf7\x67\x55\x49\xd1\xca\x2e\x25\x2c\x0f\x5d\xe3\xa9\xf7\xba\x52\x5f\x79\xa7\x37\xf9\x77\xe1\x70\x38\xf1\xd9\xcf\x7e\x56\x7f\xe5\x95\x57\xa0\xeb\xba\xd4\x34\x2d\x0b\xc2\xdc\x3b\xbd\xc9\xbf\x6f\x2a\x28\xed\xdb\xe7\xfc\x87\x09\xa5\x91\xb1\xd3\xf3\x93\xc1\x48\xba\xcd\xa5\x1f\x0c\x2f\xff\x51\x5e\x95\x63\xb0\x06\x32\x57\xae\x5c\x41\x2c\x16\x33\x54\x55\x4d\x83\x70\xfd\xbd\xee\xd4\xdf\x33\xb1\x7a\xf0\x5a\xf0\xa4\xc7\x28\x09\x08\x3b\x1d\x06\x63\xbe\x49\x9f\x78\x71\x68\xe5\x2f\x12\x3e\xe3\x7d\x58\xfe\xeb\x97\x2e\x5d\xaa\xf5\x20\x15\x00\xa4\xf3\xb8\x27\x00\xe0\x9d\x3b\x77\x8a\x9e\x9e\x1e\x05\x80\x3f\x92\x75\x3d\xb0\x6d\xde\x77\x12\xd6\x31\x32\x55\x5f\x70\x55\x95\x57\x44\xe1\x44\x24\xf7\xc6\x64\x73\xfe\x34\x11\xc5\x33\x99\x8c\x71\xe1\xc2\x05\xe7\xf8\xa0\xf6\x1f\x0d\xe2\xb9\x86\xae\x7a\xf1\x0d\x31\xc1\x60\x50\x1c\x3c\x78\x50\x10\x91\xd7\x93\x92\x0f\xb6\x5f\xd5\xff\x03\x31\x5c\x25\x05\x98\xac\x8a\xb2\xe4\x27\x3b\x86\x1c\xb0\x95\xe4\x6a\x8c\x33\x8b\x6a\xb1\x6f\xa7\x01\xcd\x74\x21\x9e\x8a\x28\x3f\xb4\x1c\xb9\xe4\xd4\xd4\x14\xb9\x5c\x2e\x7a\xe2\x89\x27\xe0\x72\xb9\xdc\x1e\x43\x74\x3e\x75\x21\xfa\x3b\x03\xcb\xde\x2f\x0b\x16\xbe\x32\xc9\xa5\xe1\x1d\xa9\x92\x9a\xbb\x57\xdd\x9f\xf6\xeb\x8a\x36\x1e\xce\xbf\x27\x14\xa1\x87\xc3\x61\xf3\xea\xd5\xab\x68\x6f\x6f\x97\xcc\x6c\x4a\x82\x71\x2d\x9c\x9f\x4c\xf8\x8c\x5c\x73\x5e\x8d\xba\x8b\xc2\x2b\x00\xc1\x28\xad\xf1\x1a\x6d\xcb\xfe\xf0\xc5\xad\x2b\x7f\x16\xf7\x15\xdf\x02\x30\x0e\x60\x75\x69\x69\xc9\x78\xe6\x99\x67\x60\x9a\x26\xba\xbb\xbb\x4d\x66\x2e\x32\x50\x98\x0b\x16\x67\xae\x6c\xca\x5e\xc9\x68\x32\x57\x50\x65\x21\xe5\x31\x93\x93\x2d\x85\x2b\x3f\xec\x4d\xbd\x78\x26\x96\xfc\x9b\x94\xdb\x78\xc7\x4a\x23\x6e\x18\x86\xfe\xf2\xcb\x2f\xdb\x27\x4a\x57\x55\xc8\x1a\x43\xe2\xf9\xf3\xe7\xe5\x43\x0f\x3d\x04\x22\x52\xbd\x45\x11\x84\xdd\x2d\x6c\xc4\x90\x08\x46\xce\x25\x93\x28\xe9\x3f\xf6\x99\x56\xeb\xe9\x40\xb5\x92\xc3\x19\x6e\xd9\x90\x68\x19\xbb\x54\x30\x7c\x81\x15\x73\x3f\x49\xf8\xec\x1e\x7e\xcd\x76\x33\x95\xe1\x58\xb9\xf7\xaf\xc5\x38\x8a\x5c\x11\xf2\xec\x30\x6d\x00\x68\x5a\x36\x0f\x11\x10\x04\x51\xbc\xbd\xbd\xdd\x00\x20\x0f\x1f\x3e\x2c\xbc\x5e\xaf\xca\xcc\xc1\x4f\x5c\x6f\xfe\xc5\xae\x55\xf7\xe7\x2a\x06\xbc\xb5\x86\x3b\x06\xd4\xed\x73\xfe\x5f\x9a\x69\x2e\x9c\x1b\x69\xcf\x7e\x27\x1c\x0e\x1b\x57\xaf\x5e\x95\x33\x33\x33\xb2\xb3\xb3\x33\xcd\xcc\x53\x26\xb1\x71\xb1\x35\x1b\xbf\xbc\x29\xfb\x7a\x53\x41\xed\xf1\xea\x22\x68\x28\xac\xaf\x7a\x8c\x59\x5d\xe1\x29\x06\x5f\x07\x30\x45\x44\x09\x29\xa5\x7e\xea\xd4\x29\x00\xa5\xd5\x1b\xd6\x9c\x5f\x96\x99\x67\x18\xac\xaf\x7a\xcd\x85\x77\x7a\x52\x1f\xa2\xb4\x6b\xac\x00\x90\xb7\xce\x14\x99\x03\x97\x36\x6d\x37\x4d\x33\xff\xdc\x73\xcf\x21\x95\x4a\xd5\x1b\x35\xaf\xf5\x48\xdc\xb7\x6f\x9f\x3d\x0b\x2d\x54\x93\xfc\xe5\xc5\x83\xf6\x57\xea\x30\xb6\xd5\x7a\x24\x32\x01\x05\x55\xa6\x1d\x47\x0a\xa0\x36\xfd\x06\x8d\x0f\x07\xa6\x11\xe3\x88\x9a\xdf\x35\xc4\x58\x1f\x80\x00\xb3\xc7\xbb\x6a\xee\xaa\x30\x80\xa3\x9b\xaa\x08\x5d\xfb\xa5\x35\xf0\x5a\x8b\x71\x46\x97\x31\x54\x99\x10\x02\x00\x2d\x2b\x07\x94\x22\x42\xa6\x06\x6d\xd3\xa6\x4d\x79\x00\xe8\xed\xed\x05\x33\x6b\xfe\xa2\xd2\xb9\x63\xd6\xff\x65\x62\xaa\x5e\x0a\x45\xb6\x04\xb4\x72\x23\x80\x18\xea\x9e\xa9\xa6\x5f\xfc\x68\x53\xee\xb4\xa9\x70\x7e\x68\x68\x28\xff\xcd\x6f\x7e\x13\x8f\x3f\xfe\xb8\xd1\xd9\xd9\x69\xeb\x34\x49\x03\x3c\x95\xf0\x1a\xc1\x84\xb7\xa4\x86\x58\x87\xc8\x24\x88\x28\x01\x94\x0e\xed\x7d\xf5\xd5\x57\xb1\xb4\xb4\x54\xae\xfb\x67\x9f\x7d\x16\x8f\x3e\xfa\xa8\x11\x8b\xc5\xd2\x28\x7d\xe4\x09\x06\x4f\x59\x6e\xaf\x02\x80\x01\x46\x9e\x99\xb3\x44\x94\x37\x0c\x43\x7f\xee\xb9\xe7\x30\x3d\x3d\x8d\x9a\x50\x6e\x8b\x35\x1e\x89\x8e\x93\x69\x84\x60\x2a\xeb\x3f\x95\x43\xdb\x50\xfe\xfa\xaa\x99\xaa\xc4\x45\x92\xb8\x60\x9d\x7a\x03\x67\xba\x58\x2b\x69\xea\xd9\x82\x6e\x64\x48\xac\x0d\x75\x31\xdd\xdd\xdd\xb6\x92\xe7\x71\xe5\xb9\x1d\x55\x52\xc5\xd1\x57\x01\x8e\xf8\xc6\x98\x8a\xc9\xdf\xa1\x6f\xd8\xcf\x16\x03\x08\x13\x01\x55\x97\x51\x53\x53\x54\x00\xe2\x8b\x5f\xfc\x22\xbc\x5e\xaf\x00\xe0\xeb\x4a\xb8\x0f\x6a\x26\x45\x4b\xd5\x65\x31\x6b\x83\xe5\xc6\x20\xa0\x25\xeb\xda\x19\xca\xa9\x03\xcb\x81\xe2\x42\x20\x10\xd0\x0d\xc3\x30\xfe\xf1\x1f\xff\x11\x8f\x3c\xf2\x88\x31\x34\x34\x94\x06\x90\x25\xa2\x38\x4a\x93\xbe\x02\x80\xb4\x86\xda\x06\x00\x23\x99\x4c\x1a\xaf\xbd\xf6\x9a\x73\x34\x28\x01\xc0\x30\x0c\xf9\xfc\xf3\xcf\x63\xf3\xe6\xcd\x78\xf0\xc1\x07\xf3\x91\x48\x44\x27\xa2\x24\x2a\x4a\xb1\x24\x22\x29\xa5\x34\xa6\xa6\xa6\xf0\xcc\x33\xcf\xdc\xc8\x70\xbb\xd6\x23\xd1\xb9\x6b\xaa\x60\x88\x8a\x88\x47\xc5\x34\xd2\xd0\x23\x91\x21\x09\xe5\xa3\x93\x6a\x32\xaf\x27\x69\xd6\x93\x32\xb5\x98\x5a\x49\xd6\x10\x63\x1f\xd3\x04\x40\x53\x4c\x0e\x94\x49\x2d\xaf\xd3\x77\x68\xc6\x8e\x9d\xf1\x1b\x62\x2a\xc5\xb3\xa2\x2b\x8c\x54\x56\xa8\x19\xaa\x30\x11\xb0\x3e\x40\x84\xc3\x61\xd8\xd3\x41\x81\x82\xd2\x57\x1e\x62\x33\x59\xa7\x54\x95\x3b\x4c\x38\xd9\x96\xc1\x50\x18\xbe\x80\x2e\x3a\x97\x98\x35\x21\x04\xac\x5d\x56\xf1\xca\x2b\xaf\xe0\xca\x95\x2b\x32\x16\x8b\xc9\x58\x2c\x66\xb8\xdd\xee\xbc\x83\x42\xb9\xbc\xbc\x8c\xd1\xd1\x51\x5c\xbe\x7c\x19\x86\x61\x34\xac\xbb\xab\x57\xaf\x62\x7c\x7c\x1c\x52\x4a\x63\xef\xde\xbd\x65\xcf\x46\xd3\x34\x31\x33\x33\x83\xeb\xd7\xaf\x23\x99\x4c\xa2\xc1\xef\xab\x7a\x93\x46\x1e\x89\xb6\xd5\x51\x54\x34\x81\x8d\x18\x12\xcb\x0d\xeb\x64\xc4\x1b\x19\xfc\xee\x88\x21\x91\x99\x05\x01\x82\x89\xe4\x7a\x46\xc2\x4a\x41\x1a\x63\x1a\x18\x12\x4b\x7a\x4c\xa5\x07\x92\x25\xdd\xbb\x6a\x6f\x6c\xc1\xcc\xaa\x14\x10\x1b\x31\xdc\x39\xac\xc1\xb2\xa8\x30\x6c\xaf\xc3\xe5\xe5\x65\xc3\x2e\xdf\xd4\xd4\x14\xa6\xa6\xa6\x60\xe9\x36\x46\x77\x77\xb7\xb0\xdc\x4b\x6a\xeb\xa0\x5e\x9d\x95\x1b\x5f\xca\xd2\x4c\xc4\xd9\xb3\x67\x9d\xf1\x37\x9d\x4e\xbd\xf3\xc2\x04\x50\x62\x00\x49\x65\x23\x94\xa5\xe8\xc1\x39\x60\x29\xc7\x3b\x47\x66\x82\x4b\x27\xea\xd5\x6c\x2e\x55\x4f\x72\xd4\xbe\xdb\x08\xa6\x51\x9a\x6b\x9e\xc9\xea\x77\x0c\x8d\xd2\x4e\x69\xc3\xd6\x3b\xe6\x0a\xae\x6a\xbf\xf3\x8d\x60\x6c\x25\x98\x2a\x76\x47\x16\x30\x4c\x17\x65\xed\xb2\x5b\x7a\xa4\x24\x22\x39\xdf\xa4\x8f\x33\x20\x05\x48\x54\xce\xc9\x5b\x2b\x81\xec\xfa\xcc\xb9\xcc\x44\xc2\x6b\xc4\xed\xdf\xf7\xf6\xf6\x8a\xeb\xd7\xaf\x57\xd5\x8f\xb5\x27\x10\x66\x67\x67\x6d\x1a\x85\x25\xf5\x1b\xd5\x21\xea\xd5\x73\x7b\x7b\xbb\x70\x4e\xc1\xac\xae\xae\xc2\xf2\x1c\xdd\x50\x3a\xf5\x4e\x2c\x2c\x37\xbe\x2c\x2f\x8d\xb5\x2a\xca\xa1\x23\x70\x59\x09\xe4\x2a\x8e\x52\x24\xdc\x76\x81\xea\xa5\xdd\x80\x18\xe7\x75\x3d\x3b\xcf\x7a\xa3\xb6\x7a\x4c\xa8\x17\xfc\x62\xa6\xdc\x48\xb6\x1d\xab\x8a\x61\xec\x06\x5d\x1f\xe3\x14\x58\x65\x89\xe1\xc0\x14\x35\x8a\x1b\x1a\xa5\x01\x18\x44\x04\x5d\xd7\xa1\x69\x9a\x64\x66\x7d\xbe\x49\x1f\x5b\x0c\x14\xaf\xb4\xa6\xb4\x21\xd4\x49\xd3\xb9\x03\x9d\xb5\x6b\xc6\x3b\x59\x97\x5c\x22\x22\x9d\x99\x91\xc9\x64\x9c\xe5\xc3\x23\x8f\x3c\x22\xda\xdb\xdb\x6d\x9f\x26\xc1\xcc\x48\xa5\x52\x98\x9b\x9b\x13\xaf\xbc\xf2\x4a\xa3\x41\x48\x55\x3d\x3d\xfc\xf0\xc3\x62\x68\x68\x48\x28\x8a\x22\xec\xb6\xb2\x75\xd7\x85\x85\x05\xbc\xf7\xde\x7b\xf6\x0a\x8e\x75\xd3\x29\x3b\x53\x3b\x1b\xc0\x9e\x7f\x29\x0a\xce\x95\x2a\xad\x62\x8d\xb5\x75\x04\xe7\x01\x2a\x0e\x83\x18\xdc\x86\x08\x60\x7d\x69\xb1\x11\x09\x54\x1b\x6e\xc4\x3c\x55\x98\x78\x3c\x2e\x42\xa1\x90\x04\x91\x9e\x69\x51\x46\x01\x48\xe6\xd2\xd1\x44\x25\xce\x80\xa5\xfc\x56\xee\xcb\x8a\x72\x3d\x4c\xb9\x8c\x76\xb7\x55\x1e\x8b\x97\x31\xd9\x66\x75\x8c\x45\xc9\x7d\x17\x80\xfc\xda\xd7\xbe\x26\x7f\xfe\xe7\x7f\x1e\x42\x88\x3c\x03\x4b\xa7\x06\x12\x7f\xf7\xb9\x0b\xd1\xff\xd5\x65\x0a\x0f\x6a\x42\xa5\xb7\x27\x24\xdd\xc6\xd2\xdb\xbd\xc9\x6f\x83\x4a\xeb\xe8\xb2\xd9\xac\x8c\xc7\xe3\xd0\x34\x0d\x47\x8f\x1e\x15\xfd\xfd\xfd\x42\x51\x14\x15\x0c\x55\x48\xa8\x82\x49\x95\x04\x19\x6c\x0a\xea\xc1\x60\xd0\x18\x1a\x1a\x32\xa6\xa7\xa7\xe5\xd3\x4f\x3f\x5d\xb7\xce\xb6\x6d\xdb\x86\x43\x87\x0e\x09\x97\xcb\xa5\x82\xe1\xf1\x16\x45\xa0\x39\xaf\x46\x35\x83\x3c\x49\x8f\x19\x4f\x7a\x8c\x78\xeb\xa6\xd6\xfc\x89\x13\x27\xf4\xe9\xe9\x69\x34\x4a\xc7\x0e\x6b\x74\x20\x87\x13\xb9\xcc\xb9\xcc\x34\xec\x2a\xa4\x8a\xdd\xc2\x2a\xab\xa5\x3b\x57\x86\xba\x00\xc1\x57\x54\x82\x96\xf2\xe8\xcc\xa7\x9e\x04\x5a\xef\x5a\xdb\x17\xd7\xfb\x7d\x43\xcc\xca\xca\x0a\xac\xa5\xbc\xd9\x4c\x48\x19\x29\xba\x29\xae\x15\x38\x5a\x56\x92\xcb\xe5\x70\x2e\x8a\x74\x48\xa2\x1a\x8c\x03\x51\xc6\x94\x7f\x60\xc5\xaf\xb6\xa9\x6f\x33\x90\x46\xc9\x85\x05\x44\x24\x26\x26\x26\x10\x8b\xc5\xf2\x00\x16\xa6\x42\x85\xd7\x5f\x18\x8a\xb7\x1e\xbf\xdc\xf2\xaf\xdd\x86\xe2\x2b\xdb\x90\xac\xa3\xac\x00\x60\xd5\x63\x2c\x3d\xbb\x2d\xfe\xc7\xab\x1e\xe3\x3c\x18\x09\x22\xd2\x47\x46\x46\xa0\xaa\x2a\x1e\x7f\xfc\x71\xb4\xb5\xb5\xa9\x04\xf2\xb5\xa6\x5c\xfd\xbb\x66\x03\x5f\xec\x58\xd5\x0e\xba\x4d\x11\xd6\x15\x4e\xce\x37\xe9\x67\x2f\xb4\x67\xbe\x39\xdd\x5c\xb8\xd8\xd9\xd9\x99\xfd\xd9\x9f\xfd\x59\xe3\xe9\xa7\x9f\xc6\xf2\xf2\x72\xb9\x7e\x86\x87\x87\xf1\xf0\xc3\x0f\x0b\x00\x1e\x7f\x41\x69\x3f\x78\x3d\xf8\xa5\x2d\x8b\xde\x7f\xe1\x29\x8a\x7e\x02\x54\x93\x90\x58\x0c\xe8\x67\xde\xe9\x4d\xfd\xc1\xd5\x48\xee\x9d\xce\xce\xce\x74\xbd\x74\x9c\x6d\xe1\xf4\x89\x66\x00\xe8\xe8\xe8\xa0\xce\xce\x4e\x01\xc0\xe7\x2d\x2a\x7d\xdb\xe7\xfd\x9f\x15\xd6\xe6\xe1\xf6\x87\x57\x9e\x33\xa9\xa3\x8b\xae\x7a\x8c\x6b\x63\xd1\xfc\xcb\x20\x24\x13\x89\x84\x61\x39\x93\x39\xf3\x20\xab\xf1\xb9\xc1\x3f\x35\xc0\xd1\x46\x31\xb3\xb3\xb3\xbc\x7f\xff\x7e\x02\x20\x58\xc0\xeb\x2a\x70\xbf\x2f\x21\x87\x2a\xfc\xc0\x96\x03\x1c\xec\x02\x39\x58\x64\x2d\xa6\xe4\x2b\xcc\x65\x1b\x50\x55\x3c\x33\x74\x9f\x98\x9b\x19\xf6\x7c\x8d\x55\xba\x4a\x44\xc9\xf1\xf1\x71\xf3\xfa\xf5\xeb\x72\x6c\x6c\x8c\x1f\x7c\xf0\x41\xa9\x28\x8a\x09\x82\xb1\xec\x33\x16\xc7\x22\xb9\x29\x97\x29\x7c\x5e\x43\xf8\x04\x43\x98\x0a\xcc\x94\xc7\x5c\xb9\xd0\x9e\x79\xfb\x85\xa1\x95\x3f\x5b\xf1\x19\x6f\x12\xd1\x18\x11\xad\xe4\x72\x39\xfd\x07\x3f\xf8\x81\x7c\xf2\xc9\x27\xa9\xbd\xbd\x5d\xa5\xd2\xbe\x94\x3f\xf5\xe9\x4b\xe1\x3f\xee\x48\x6a\x27\xfd\x45\x75\xb3\x66\x8a\x4e\x5f\x51\x89\x45\x33\xda\xe1\xad\x8b\xbe\x9f\xf0\xeb\x42\x9d\x0c\x15\x46\x14\x4d\xd5\x63\xb1\x98\x69\x1d\x0d\xc1\xbd\xbd\xbd\xf4\xe8\xa3\x8f\x0a\x21\x84\x27\x9c\x75\x0d\x7d\xe1\xdc\xa6\x3f\xed\x5b\xf1\xfc\x8c\x66\x8a\x68\x49\x59\x27\xa1\x80\x7c\x4d\x05\x75\xeb\xe0\x92\xf7\x0b\x9a\xa4\xfc\x54\x4b\xe1\xa2\xea\x52\x8b\xd1\x68\xd4\xbc\x78\xf1\x62\xdd\x36\xb3\xa7\x32\xd8\xbe\xfa\x7c\x3e\xb2\xfc\x67\xbd\xaa\x49\x9d\xbb\x66\xfd\x4f\x29\x4c\x2a\xb1\x73\x2e\xac\xf2\x85\x56\x0d\x68\x98\x91\x77\xc9\xf8\xc5\xb6\xec\xb3\x20\x24\x3c\x1e\x4f\xf1\xc3\x0f\x3f\x64\x47\x1e\xf6\x8f\xab\xf4\x6e\x67\xfe\x8e\x77\xb5\xbf\x73\xfe\xe6\x86\x98\xcd\x9b\x37\x97\x76\x2f\x25\x52\x0b\x7e\x61\x86\x67\x8c\xa3\xc2\x84\xbb\x32\x44\x27\x07\x1b\x52\x75\xca\x35\x98\xd2\xe7\x62\xdb\xc1\x2a\xd7\x52\x1d\x10\xe6\x07\xdd\xdf\x4a\x45\x94\x97\x89\x68\x86\x99\xb3\xdf\xf9\xce\x77\x4c\x9b\x2e\x29\x25\x75\x77\x77\x9b\x00\x0a\x0c\xce\xe6\x35\x5e\x1a\x8b\xe4\x46\x2e\x74\x64\xce\x8e\xb4\x67\xce\x7e\xd0\x95\x3e\x75\xb6\x3b\xfd\xec\x44\x38\xff\x4a\x51\xe5\x73\x0c\x9e\x20\xa2\xb8\x94\xb2\x70\xea\xd4\x29\x1e\x1c\x1c\xa4\x2d\x5b\xb6\x08\x66\x6e\xde\x3d\x1b\xf8\xfc\xb1\xab\xa1\xff\x5b\x65\x11\x22\x54\x14\x7b\xfb\x2a\x98\x3c\x6d\x29\xed\x61\x8f\x21\xe4\xb5\x70\xfe\x7d\xd5\xe5\x2a\xb4\xb4\xb4\xf0\xd8\xd8\x18\x3f\xf9\xe4\x93\xe4\x76\xbb\xdd\x2e\x83\x3a\x9e\x1a\x89\xfe\xfe\xa6\x8c\x76\x84\xac\x6e\x64\x4d\x3a\x20\xad\x3d\xa9\x1d\xcd\xbb\xe4\xc4\x5c\x53\xe1\x4a\x20\x10\x28\x98\xa6\x89\xb9\xb9\x39\x67\x7d\x0b\x00\xbc\xc6\x88\x97\x4a\xa5\xec\x7b\x23\xe7\x32\x93\xba\xc2\xa5\xad\xab\xaa\x64\xb7\xcd\x30\xa8\xfa\x7a\x41\x84\xa6\x82\xd2\xaa\x48\xf2\xd9\xdd\x98\xb5\x7b\x63\xa3\xa9\x88\xf5\x94\xe3\x1b\xe9\x45\xeb\x62\xae\x5c\xb9\x02\x94\x8e\xbf\x4c\xe8\x5e\x1a\x99\x1b\xd4\xfe\x81\x09\xb2\xa4\xfc\x5b\xce\x51\x16\xfd\xa5\x6e\x9b\xcb\x67\x98\xd5\x62\x9c\x4a\x75\xed\x81\x8a\xd9\x90\xb8\xb2\xd4\xeb\x7a\x86\x88\x16\x98\x39\x6b\x79\x60\x96\xcb\xf3\xc1\x07\x1f\xc8\x77\xdf\x7d\x57\x5a\xd6\xdd\x39\x66\xbe\x08\xc2\xdb\x05\x45\xbe\x92\xf4\x9a\x4f\x27\xdd\xc6\x33\x86\xc2\xaf\x31\xf8\x1d\x66\xbe\x42\x44\x0b\xa6\x69\xe6\x5f\x7e\xf9\x65\x39\x33\x33\x83\x9d\x3b\x77\x82\x99\x3d\x4d\xba\xda\x7b\x68\xa2\xf9\x37\x04\xa8\xac\x43\x95\x4d\x51\x65\x05\x1c\x20\x90\xd8\x39\x1b\xf8\xa5\x9e\x15\xf7\x61\x66\xf6\xc5\x62\x31\xf1\xc5\x2f\x7e\x51\xf8\xfd\x7e\xc1\xcc\xbe\x6d\x0b\xbe\x27\xdb\x52\xda\xb1\xaa\x76\xac\x93\x8e\x00\x69\x07\xaf\x05\x7f\xbd\xa9\xa0\xf6\x33\xb3\x67\xcf\x9e\x3d\xb6\x61\xb4\x8a\x5f\x6c\x0b\x64\xbd\x20\x0d\xc1\xd9\xbc\xcb\x4c\x96\x33\x5a\xa7\x25\xed\xe0\xd3\x95\x56\x4f\x69\x0e\x4d\xf5\x7a\xbd\x42\x5a\x06\x87\x9a\xbc\xea\x29\xd9\x37\xa2\x47\xdc\x0c\xe6\xfc\xf9\xf3\xc8\xe7\xf3\x06\x11\xa5\x41\x34\xb3\xdc\xeb\x7a\x3a\xd1\xa1\xbe\x53\xe2\x18\xcb\x12\x6c\x7d\x14\x55\x56\x61\xb6\x1c\x55\x9c\x18\x38\xf4\xe9\x8a\x29\x08\x45\x0f\xc5\xaf\xef\xf4\xfc\x19\x2b\x34\xc6\xcc\x71\x00\xba\x65\x57\x71\xd2\x23\xde\x7d\xf7\x5d\x9c\x3e\x7d\x5a\xa6\xd3\xe9\x3c\x80\x84\x75\x54\xe7\x15\x66\xbe\x08\xe0\x22\x80\x31\x00\x33\x44\x94\x88\xc7\xe3\xfa\x0f\x7e\xf0\x03\x79\xf5\xea\x55\xd9\xd3\xd3\x03\xcb\x77\xc8\x17\x5b\xf6\x1c\xf7\x15\x45\x3f\x50\x1a\xac\x94\xcd\x07\x15\xdb\x51\x59\xa0\x2a\x4c\xbe\x1d\xf3\xfe\x9f\x44\x69\x8e\x4b\xb5\x8c\x9a\x2a\x80\xe0\xd0\x82\xef\x29\x94\xcf\x33\x59\x3f\x1d\x5f\x51\xf4\xc6\xe2\x9e\x63\x00\x7c\xaa\xaa\x0a\x6b\xa5\xb2\xb3\x0d\xd6\x7a\x24\x2e\x2c\x2c\xa0\x50\x28\x48\x4d\xd3\x0c\x53\x50\x36\xe9\x31\x17\xc2\x59\x0c\x60\x43\x86\x44\x86\xcb\xa4\x40\x73\x5e\xed\x4c\x7b\x4c\x0d\x28\xb9\x33\x5c\xbb\x76\xad\x5e\x23\x37\x7a\xbe\x2d\x18\x5d\xd7\xf1\xee\xbb\xef\xe2\xc8\x91\x23\x79\x00\x4b\x2c\xe8\xd2\xe4\x4e\xcf\x57\x89\xf3\x6a\xf3\x9c\xb1\xd7\x31\xf0\xb1\x48\xb7\xba\xb4\xb2\x5e\x5c\x29\x57\x3d\x43\x62\xd1\x4b\x89\x89\x3d\xde\x3f\x2e\x34\x29\x6f\x5a\x0c\x91\x8e\xc7\xe3\x72\x6c\x6c\xac\xee\x88\x73\x74\x74\x14\xe3\xe3\xe3\x18\x18\x18\x30\x62\xb1\x98\x11\x89\x44\xca\x6b\xd2\x33\x99\x0c\x16\x16\x16\x70\xf9\xf2\x65\x58\xbb\x8d\x01\x00\x5a\x5a\x5a\x6c\x63\xa2\xaf\x2d\xa5\xed\x2b\x9b\x4f\x2c\xfa\xec\x81\x4b\xad\x2d\x89\xc1\x68\x4f\xba\xf7\x12\x28\x08\x42\x1c\xa5\x91\xa1\xa6\x9a\x14\x0a\x67\x5d\xc3\x36\xe6\x46\xe9\x00\x40\x7b\xd2\xbd\xef\x5c\x67\xe6\x5b\x00\x92\x2d\x2d\x2d\x7a\x6d\xb9\xd6\x33\x24\x1a\x00\xf2\x71\x5f\x71\xaa\x3f\xee\xdd\x90\x21\xd1\xc2\x88\xd6\x94\x6b\xdb\x54\x73\xfe\x25\x22\x12\x2d\x2d\x2d\xd2\x61\x4f\xa8\xca\xbc\xe6\xf9\xb6\x1a\x12\x01\xe0\xc2\x85\x0b\x32\x16\x8b\xa1\x3c\x93\xad\x40\xbb\xb6\xcb\xf3\x47\x1d\xde\xc2\x4f\x47\xaf\x15\x1f\x26\x13\xea\xad\x18\x12\x33\x2d\xe2\xfa\xe4\x4e\xcf\x5f\xe4\x03\xe2\x14\x73\x49\x67\x31\x4d\x53\x7f\xee\xb9\xe7\x6a\x48\xac\x2e\x57\x3e\x9f\x97\x23\x23\x23\x62\x64\x64\x44\x6a\x9a\x26\x74\x5d\x97\x81\x40\x40\xa4\xd3\xe9\xba\x65\xb7\x1c\xf5\x05\x33\x7b\x5c\xa6\x08\x56\xd5\x79\xd9\x7e\x55\xdf\x20\xa9\x48\xf8\x04\xc3\x23\x09\xf6\x0a\x1b\x01\xc0\xc3\x4e\x63\xeb\x06\xd2\x21\xc0\xc3\xcc\x1a\x11\xd9\x0b\x07\xaa\xca\x55\x3b\x3c\x16\x00\xb0\xb8\xb8\x08\xcb\xaa\x99\x5f\xf2\x17\x27\x4a\xfa\x81\x3d\xdc\xb4\x45\x9d\xf5\xcc\x15\xa5\xbc\x74\x84\x25\xa3\x33\xe9\xde\x49\x20\x0f\x33\xab\xdd\xdd\xdd\x76\xda\xce\x7c\x6a\x2b\xd9\x79\xdd\x88\x21\x71\xc3\x98\x97\x5e\x7a\x09\xd9\x6c\xd6\xb0\x26\x0d\x27\x58\xa5\xb3\x33\x5b\xdd\x5f\x1d\xdb\xef\xfd\xe3\x4c\x8b\x98\x60\x82\x5c\x63\x48\x2c\x77\x6d\x15\x7d\x07\x04\xe8\x6e\x4a\xce\x6e\xd5\xbe\x7f\xf5\x80\xef\xb7\xf3\x4d\xca\xcb\x5c\x3a\x59\x68\xc1\x34\xcd\xfc\x8b\x2f\xbe\x68\xbb\x3c\x34\xa2\xab\x4a\x37\xb2\x7c\x6b\x60\xed\x8e\x5a\x17\x03\x54\xa4\x5f\x56\x33\xd3\x95\x38\x38\x85\x3e\xaa\xe2\xad\x90\xd1\x64\xc2\xa4\xf2\xc4\x38\x98\x19\x86\x60\x99\xf2\x18\x0b\x37\x93\xce\x78\x38\x37\x62\xd3\x56\xe3\x20\xd8\xd8\x90\xb8\xb2\xb2\x82\xee\xee\x6e\x9b\x81\xae\x32\x20\xc9\x96\x4c\x37\x30\x24\x02\x84\xb6\x94\xb6\xdd\x25\x29\x58\x54\xa0\x5a\x13\x75\x77\xd5\x90\xe8\x8c\xcc\x66\xb3\x78\xfa\xe9\xa7\xf1\xc4\x13\x4f\xe8\x3e\x9f\x2f\x01\xc0\x00\x51\x36\x1d\x51\xe3\x57\x0f\x2a\x17\xfc\x09\xf3\x81\x96\x99\xe2\x5e\x7f\x5c\xf6\xbb\x0a\x32\x28\x24\x54\xb6\x26\x91\xad\xe9\x89\x7c\xae\x49\xcc\x25\xda\xd5\x0f\x57\x5b\xd5\x77\x4d\x8d\x2e\x81\xe8\x3a\x33\xcf\x58\xa3\x25\xfd\xc5\x17\x5f\x84\x75\xa2\xf2\x2d\xd1\xd8\x08\x93\xcd\x66\x61\x4d\x4c\x1b\x93\xa1\xfc\x85\x07\xa6\x03\x52\x80\x44\xd9\x86\x54\x13\x9c\x4a\xf0\x48\x7b\xe6\x0c\x2a\x3e\xd1\x92\x88\x0c\x66\xce\x5e\xda\x94\x7b\xbb\x2d\xa5\xed\x2e\x8f\xc0\xd6\x49\x27\xad\x99\x4b\xd3\xa1\xc2\x05\x58\xfe\xed\x75\x8e\x19\xad\x3f\x99\xba\xbc\xbc\x0c\x00\x06\x33\xeb\x2b\x3e\x63\x2a\xef\x92\x09\x6f\x51\x09\xdb\xa3\xdb\x52\x2e\x0e\x3b\x8a\x45\xb4\x6d\x6c\xf4\xeb\x4a\x67\x24\xe3\x1a\x9c\x6d\x2a\x4c\x28\x8a\x22\x3a\x3a\x3a\xca\x73\x36\x58\x2b\x71\x6e\xbb\x21\xb1\x16\xb3\xb2\xb2\x82\xa7\x9f\x7e\x1a\x47\x8f\x1e\xd5\xdb\xda\xda\x92\xd6\x14\x41\x92\x05\xe6\xd2\x11\x75\x2c\x15\x56\x4e\x09\x46\x54\x2d\xf0\x26\x57\x81\x43\xc2\x60\x8d\x05\xa4\xa1\x89\x64\xd1\x4d\xcb\x52\xc5\x12\x97\x5c\x3b\x17\xac\xd1\x56\x9c\x88\xb2\xa6\x69\xea\x2f\xbd\xf4\x92\xad\xb7\x34\x2a\xcf\x9a\xfa\xdd\x28\x26\x1e\x8f\xa3\xbf\xbf\x5f\x12\x51\xf6\x7a\x4b\xe1\xfd\xf9\x26\xfd\x4a\x7b\x4a\x1b\xb2\x3b\x99\xda\x25\xc9\x76\xdb\x24\x3d\xe6\xc2\xe5\x4d\xd9\x53\xb0\xb6\xf0\xb5\x99\x90\x88\x92\x17\xda\xd3\x2f\x6f\x9b\xf7\x3d\x16\xcd\xb8\xfa\x6f\x94\xce\xbb\x3d\xa9\xef\x67\x4b\x1b\x64\x64\x99\xd9\xe9\xee\x5c\xa6\x71\x8d\x21\x11\x00\x2d\x2f\x2f\xcb\x7d\xfb\xf6\x09\x22\x72\x49\x81\x40\x5f\xdc\xf3\x50\x73\x5e\xed\xd8\x88\x21\xd1\x52\x35\x95\x94\xc7\x9c\x9a\x09\xe9\xef\x02\xc8\xa4\x52\x29\x69\x1d\x57\x79\x57\x0c\x89\xf5\x30\xf9\x7c\x9e\x3f\xfa\xe8\x23\x76\xbb\xdd\x1c\x8d\x46\x0d\x21\x44\xde\xea\xd6\x56\x88\x68\x11\x44\xb3\xd2\x45\xd7\x8a\x1e\x71\x49\xf7\x89\x8b\x45\xaf\xb8\x60\x6a\xf4\x11\x2b\x74\x09\x44\x57\x89\xe8\x1a\x11\xcd\x58\xf8\xec\xdc\xdc\x9c\xf1\xcc\x33\xcf\x60\x6e\x6e\x4e\x6e\xa0\x4c\x1b\x29\xf7\x1a\xcc\xec\xec\x2c\xef\xd9\xb3\x87\x84\x10\x24\x05\x5c\x0b\x01\x3d\xbd\x79\xc9\x77\xc0\x25\x85\x9b\xca\x9e\x00\x8e\xc5\x0d\x44\x28\x2a\x9c\x7f\x7e\x6b\xfc\xab\x8b\x81\xe2\x1b\x44\x34\x43\x44\x59\x5d\xd7\x59\x55\x4b\xcb\xca\x4c\x05\x98\x6e\x2e\xc4\xfb\x56\x3c\xbb\x3d\x86\xf0\xd7\x4b\x87\x09\xf2\x5c\x67\xe6\xd5\x37\xfb\x92\x7f\x01\x81\xab\x44\x14\x4f\x24\x12\xc5\x37\xdf\x7c\x73\x0d\xfd\x6b\x0c\x89\x76\xc5\x5b\xe7\x9b\x2b\x44\xe4\x0f\xe6\xd5\xad\xdd\xab\xee\x5d\xb6\x84\x59\xcf\x90\x58\xc2\x10\x5c\xa6\x50\x47\xda\x32\xcf\x32\x21\xe5\x76\xbb\x8b\xa3\xa3\xa3\xce\x01\x9c\x53\x72\xde\x11\x43\x62\x23\xcc\xd4\xd4\x14\xbf\xf7\xde\x7b\x32\x10\x08\xc8\x68\x34\xaa\xa3\x24\xe6\xd3\x28\xed\x5a\xba\x6c\xed\x24\x3b\x07\x60\xde\xfa\x5f\x64\xe6\x15\x22\x5a\x65\xe6\x7c\x3a\x9d\x2e\xbe\xf1\xc6\x1b\x7c\xe6\xcc\x19\x59\x28\x14\x9c\x0c\xdb\xa8\x3c\xb5\xe5\xba\x29\x4c\x5f\x5f\x1f\xfc\x7e\x3f\x33\xb3\xcc\xba\x65\x6e\x32\x94\x5f\x88\x64\x5c\xdd\x01\x5d\x69\x71\xce\xe1\x81\x18\xcb\x3e\x63\xe6\xb9\xe1\xf8\x5f\x5e\x6f\x29\x3c\xc7\xe0\x71\x22\x4a\xa4\x52\xa9\xe2\x5f\xfd\xd5\x5f\xc9\xde\xde\x5e\xf8\xfd\x7e\xc9\xcc\x66\x5e\xe3\xec\x95\x68\x6e\x42\x30\xf9\x9a\xf3\x6a\x58\x95\x25\xc7\x41\x26\xc8\xb8\xcf\x58\x3c\x3d\x90\xf8\x87\x77\x7b\x52\x7f\xc7\x02\xa3\xcc\x3c\x4f\x44\xd9\x37\xde\x78\x83\xe3\xf1\xf8\x1a\x9a\xeb\x99\x76\x04\x00\x69\x9d\x6d\xee\x01\xd0\xdd\xb9\xaa\x7d\xfe\x8b\x1f\xb4\xfe\x9f\x42\x92\x5a\x35\xc5\xe5\x54\xc2\x6a\xe2\x0c\xe2\xfc\xdf\xec\x9d\xff\x97\x4b\x81\xe2\x69\x66\x4e\x7e\xf5\xab\x5f\x35\xb0\x36\x6c\xd4\x90\xb8\x91\x19\xf8\x5b\xc2\x3c\xf8\xe0\x83\xa2\xb3\xb3\x13\xa1\x50\x08\x7e\xbf\xbf\x32\x42\xb1\x14\xcf\x62\xb1\x28\xf3\xf9\x7c\x79\xdb\x37\xc7\x00\x63\xbd\x70\x23\x3d\x67\xc3\x98\x70\x38\x8c\x2f\x7c\xe1\x0b\x50\x14\xc5\xc7\xcc\x51\x02\xfa\x05\xd3\x60\x7b\x52\x7b\xa0\x6b\xd5\x3d\xe4\xd7\x95\x60\xde\x25\xb3\x73\x4d\xfa\xd8\x54\xa8\xf0\x9e\x21\xf8\x0a\x83\xc7\x2c\x83\x64\xf6\x99\x67\x9e\x91\x33\x33\x33\x70\xa4\xe3\x61\xe6\x30\x80\x6e\x02\xf5\x6b\x26\x75\x47\x32\xae\x3e\x97\x49\x9e\xb4\xdb\x8c\x27\xbc\xc6\x35\x49\xb8\xce\xe0\x09\x94\x6c\x53\xe9\xc9\xc9\x49\xc3\xf2\x4e\x5c\x43\x33\xd5\x89\x14\x00\xe4\xee\xdd\xbb\xc5\xa1\x43\x87\x54\x00\x51\xcd\xa0\x43\x5f\x7a\xa7\xfd\x0f\x9b\xf2\x6a\x2b\x6e\xc4\x40\xe5\x57\x8c\x1f\xf6\xa4\x7e\xff\xcc\xc0\xea\x6f\x03\x98\x1b\x19\x19\xb1\x37\xb4\xae\x55\x9a\x6b\xf3\x6e\x84\x69\x34\xd4\xbf\x6d\x98\xe6\xe6\x66\xb1\xba\xba\x5a\x75\x2d\x14\x0a\xc8\xe7\xf3\xeb\xfd\x1e\x37\xc8\xeb\x63\x63\x36\x6f\xde\x2c\x8e\x1f\x3f\x2e\x00\x68\x44\x14\x62\xe6\x28\x80\x28\x80\x10\x4a\x6e\xad\x06\x80\x24\x11\x2d\x59\x5b\xfb\x26\x98\x39\x7f\xe1\xc2\x05\x79\xe6\xcc\x99\x7a\xe9\xa8\x44\x14\x60\xe6\x10\x80\x30\x00\x1f\x4a\xfa\xb0\x6e\xa5\x13\xb7\xb6\xe6\xc9\x4e\x4f\x4f\x1b\xcf\x3e\xfb\x2c\x4c\xd3\xac\x4b\xb3\x82\x8a\xf9\xac\xca\x8c\x26\xa5\xc4\xf0\xf0\x30\x88\x48\x31\x09\xbe\xb6\xb4\xb6\x2b\x9a\xd5\xfa\xd7\x18\x12\xab\xe6\x33\x9c\x7b\x24\x12\x9a\x74\x25\x3c\xd2\x9e\xf9\xbe\x41\x9c\x68\x6a\x6a\x2a\x8e\x8c\x8c\x40\x4a\xe9\x1c\x38\xd6\xcb\xbb\x2a\xf9\x9a\x77\xce\xcc\x6e\x3b\xc6\xea\x92\xc8\xda\x85\x8c\x0b\x85\x02\x59\x1b\x4d\xd6\xfe\x8e\xb1\xf6\xf3\xb9\x63\x98\x95\x95\x15\x4e\x24\x12\xe8\xee\xee\x36\x14\x45\xc9\x03\x48\x13\x51\x9c\x88\xe6\x2c\x3d\x67\xca\x9a\x87\x9b\x27\xa2\x94\x69\x9a\xf9\x37\xde\x78\x83\x2d\xab\x78\x55\x3a\xd3\xd3\xd3\x68\x6f\x6f\x37\xdd\x6e\x77\x01\x96\x6f\x35\x11\x2d\x13\xd1\x82\x95\xde\xb2\xc5\x3c\xf9\x91\x91\x11\xf3\x95\x57\x5e\x81\x69\x9a\x0d\x69\x56\x1c\x04\x3b\x95\x5c\x64\xb3\x59\xb9\x75\xeb\x56\x68\x9a\x26\x00\xf8\x08\x14\xd9\xb2\xe8\x3d\x52\x19\xb4\x5b\xa5\xad\x5d\xc5\xc0\x28\xdb\x8b\x34\x43\x84\x96\xfd\xc6\x85\x25\x7f\xf1\x92\xaa\xaa\x7a\xa1\x50\x90\x0b\x0b\x0b\xb6\xd2\xe9\x54\x1a\x9d\x57\x38\xee\x6b\x31\x7c\x9f\x60\x6c\x1d\x60\x3d\x9a\x6f\x2b\x66\x65\x65\x45\x4e\x4c\x4c\x90\xc7\xe3\x91\xa1\x50\x48\x27\xa2\x3c\x95\xd6\xa0\xa5\x88\x28\xcd\xcc\x39\x29\x65\x7e\x6c\x6c\xcc\x7c\xe5\x95\x57\x60\x79\x30\xae\x49\x27\x93\xc9\xc8\x8b\x17\x2f\xd2\xea\xea\x2a\xfb\x7c\x3e\xc3\xeb\xf5\xea\x42\x88\x02\x33\xe7\x00\x14\x4c\xd3\x2c\x4c\x4c\x4c\x98\xaf\xbf\xfe\x3a\x8f\x8c\x8c\xd8\xdd\x75\x43\x9a\xeb\x7a\x24\xda\xcf\xb3\xb3\xb3\xd8\xb2\x65\x8b\x01\x20\x39\x15\x2a\xbc\x97\x73\xc9\x84\xb7\x58\x3a\x15\xaf\x9e\x47\xa2\x6d\x98\xaa\x58\x38\x49\x3c\x30\x13\xf8\x97\x97\x37\x65\x9f\x33\x89\xd3\x83\x83\x83\xc6\x85\x0b\x17\x44\x65\x7a\xac\x2a\xdf\x9b\x31\x24\xd6\x0b\x77\x12\xd3\x08\x7f\x57\x31\xab\xab\xab\xf2\xa5\x97\x5e\x82\xdb\xed\x16\x85\x42\xc1\x00\x80\x83\x07\x0f\x8a\xb7\xdf\x7e\x5b\xf6\xf6\xf6\x8a\xf9\xf9\x79\x14\x0a\x85\x1b\xa6\x63\x9a\xa6\xbc\x7c\xf9\xb2\xbd\x03\xab\x04\x20\x3b\x3a\x3a\x84\x35\x52\xae\x67\x26\x69\x48\xb3\x2d\x81\x6a\xa5\x80\x04\x40\xcc\x8c\xc1\xc1\x41\x26\x22\x61\x08\xf6\x45\x33\xae\xed\xd1\xb4\xd6\x57\x5a\xbf\x54\x71\x28\x27\xb2\x57\xca\x03\x95\x91\x5a\x29\xde\x5f\x50\xda\xa7\x43\x85\xb7\x92\x5e\x73\xd2\xef\xf7\x17\x96\x96\x96\x38\x91\x48\x00\x8d\x25\x50\xed\x68\xcd\x7e\x57\xaf\x20\x77\x0b\xb3\x66\x94\x8a\xea\xae\xe6\xae\x62\x4c\xd3\x2c\x63\xa6\xa7\xa7\x09\x00\xaf\xae\xae\x92\xa3\xab\x41\x5b\x5b\x1b\xed\xda\xb5\x8b\xb6\x6c\xd9\x42\x0f\x3f\xfc\x30\x22\x91\x08\xf5\xf5\xf5\x81\x88\x90\x48\x24\xd6\xe4\x95\x4e\xa7\x6f\x89\x1e\xa7\x0e\x84\x5a\x50\x2e\x97\xc3\xf0\xf0\x30\x2b\x8a\x42\x44\xa4\x15\x15\xd9\x34\xbc\xe8\x7b\xd8\xe6\x12\x02\x50\xcf\x90\xe8\xdc\x00\x43\x10\x29\x81\x82\x12\xfa\xa8\x35\xfb\xa2\x04\x67\xc3\xe1\xb0\x61\x6d\x38\x5e\xab\x83\x38\xaf\xb5\x3a\x8b\x93\x3e\x71\x0f\x30\x8d\x68\x85\xe3\xfd\x7d\x81\xe9\xec\xec\xa4\x27\x9f\x7c\x92\x76\xed\xda\x25\xda\xda\xda\x94\x70\x38\xac\x69\x9a\xa6\x86\xc3\x61\x35\x1a\x8d\x8a\x81\x81\x01\xde\xba\x75\x2b\xb2\xd9\x2c\xad\xac\xac\x7c\x6c\x7a\xea\x1a\x12\xad\x7b\x32\x4d\x53\xb6\xb4\xb4\x50\x34\x1a\x25\x00\x6a\x46\x93\x62\x70\xc9\x77\xd8\x57\x14\xcd\xeb\x1a\x12\xc9\xba\xb3\x18\x2a\x50\x50\xba\x17\x9a\xf4\xf7\x13\x3e\x73\xc2\xe3\xf1\x14\x8a\xc5\x22\x5b\xba\x10\xd7\xf9\xaf\x95\x06\xb5\xf1\xf7\x02\x73\xdb\x8d\x84\x77\x02\xb3\x73\xe7\x4e\x3a\x7e\xfc\xb8\x70\xbb\xdd\x6e\x95\xa9\xa9\x67\xd5\xb3\x6b\xc7\x9c\xff\xc9\x6d\xf3\xfe\x27\xba\x92\xee\xdd\x6e\x43\xb8\x52\x1e\x33\xad\x7a\x35\x33\x16\x8b\xc9\x70\x38\xcc\x96\xf7\xc0\x2d\xd3\xd3\xd0\x90\x68\xc7\x4d\x4c\x4c\xc8\x7d\xfb\xf6\x81\x99\x89\x05\x3c\x9a\x49\xed\x3d\x09\xcf\x2e\xcb\x62\x59\xd7\x90\x58\xcb\x50\x82\x49\x09\xe7\x5c\x5d\x23\xed\x99\xe7\x24\x21\x1b\x8d\x46\x6d\x4f\x45\xd4\xc9\xbf\x9e\xe8\x84\xe3\x8a\x7b\x84\xa9\x47\xeb\xc7\x32\x12\xde\x4e\xcc\x8e\x1d\x3b\xe8\xf0\xe1\xc3\xa5\x33\x6d\xd3\xae\xad\x9f\x1d\x8d\xfc\x5f\x07\x26\x83\xff\xa5\x3b\xe1\xf9\x5c\x6b\x46\x7b\xb8\x63\xd5\xfd\xe9\x2d\x4b\xde\x9f\xd9\xbc\xec\x3b\xb8\xe2\x2b\x5e\x49\x7a\xcd\x78\x28\x14\x32\xc3\xe1\x30\x4f\x4c\x4c\x10\x97\xbc\xea\x6e\x9a\x1e\x05\x6b\x2b\x8d\x6a\xe3\x2c\x6b\x28\x00\xa8\xab\x1e\x83\xb7\xcf\xfb\x1f\x29\x99\xd3\x51\x23\xd0\xea\x4b\x25\x10\xe0\xd3\x45\x57\x56\x93\x93\xf3\x4d\xc5\x51\x55\x55\x0b\x3e\x9f\x8f\xaf\x5f\xbf\xbe\x9e\x5e\xe2\x54\x66\x19\xf5\xc3\xdd\xc4\x00\x95\x8a\x93\x8e\xe7\x7b\x8e\x69\x6f\x6f\xc7\x63\x8f\x3d\x26\x88\xc8\x17\xc9\xa8\xdb\xbe\x70\xae\xf5\x2f\x23\x59\xd7\x31\x01\x72\x39\xbd\x0d\x09\x24\xbc\x45\xa5\x7f\x70\xc9\x7b\x72\x3e\xa0\x9f\x4d\xfa\xcc\xb9\x50\x28\x54\xcc\x64\x32\xbc\xb4\xb4\x44\x1b\xc9\xab\x16\xe3\x94\x40\x76\x20\xac\xe5\x3c\xd8\x3b\x74\x16\x15\x76\x05\x0b\xca\x40\x5b\x4a\x1b\xa8\x28\x42\x35\xbf\x06\x60\xcf\xcc\x57\x24\x11\xa1\x35\xa5\x6d\xbb\xba\x29\xf7\x72\xc1\xc5\xcb\xd1\x68\xd4\x98\x9b\x9b\xe3\x54\x2a\xe5\xe4\xf4\x5a\xbd\xc4\x79\x75\x72\xfe\xbd\xc0\xd4\x4a\x68\xa7\x7e\x74\x4f\x31\x27\x4e\x9c\x80\xd7\xeb\x75\xa9\x4c\x9b\x3e\x3b\x1a\xf9\x6f\xd1\xac\x76\xa8\xd4\x08\xf5\x97\x51\x0b\x26\x7f\xd7\xaa\x7b\xcf\xa5\xd6\xec\x0b\x45\x85\x53\xad\xad\xad\xc5\x8b\x17\x2f\x3a\x95\xf3\x0d\xd3\xe3\x1c\x42\xdb\xff\x6b\x9e\xc7\xc7\xc7\xa1\xeb\xba\x01\x20\x0b\xc2\xc2\x7b\x5d\xe9\xef\xe9\x0a\x67\x6d\x46\xa9\x74\x8a\xb5\x7c\x58\x0a\x36\xc6\x57\x54\xba\x8f\x5d\x0d\xfd\x8a\x90\x08\x13\x91\x73\x63\x4a\x67\xde\xa8\xb9\xaf\xf7\x7c\xaf\x31\x40\x7d\x89\x79\xd7\x31\x9d\x9d\x9d\x88\x44\x22\x82\x88\x7c\x3d\x09\xcf\xa1\xce\x55\xf7\xf1\x8d\x9c\xda\x1c\x2c\x28\xdb\xb7\xcd\xf9\x3f\x47\x44\x3e\x9f\xcf\xa7\x0e\x0e\x0e\xde\x12\x3d\xa2\x26\x52\xd6\x7b\xce\xe7\xf3\x18\x1d\x1d\x05\x4a\x4e\xea\xf1\x84\xd7\xb8\x78\xa9\x35\xfb\x36\x93\xd3\xf2\x6c\xc9\x1b\xb6\x89\xb4\x48\x65\x54\x61\x62\xcb\x9e\xcf\x6f\x9f\xf3\x3f\x09\x46\x20\x10\x08\xa8\xc7\x8e\x1d\xab\x47\x78\x6d\x21\xea\xd9\x21\xee\x25\x06\x58\xdb\xed\xde\x13\x8c\xbd\x15\x30\x33\xfb\xba\x12\xee\x23\x84\xd2\xc4\x68\xd9\xaf\xdb\x62\x1b\xa7\x88\xb5\xc3\x40\xdc\xf3\x29\x66\x0e\x02\x10\x03\x03\x03\xb7\x44\x4f\xed\x57\xdf\xf0\xf9\xc3\x0f\x3f\x44\xb1\x58\x34\x00\xa4\x41\x98\x39\xdb\x9d\xfa\x6e\x41\xe5\x74\xad\x47\x62\x89\xa9\xe0\xe0\x1f\x86\x13\x43\x0c\xf5\xc8\x78\xf3\x6f\x44\x33\xae\x9d\x44\xe4\xeb\xef\xef\x17\xbb\x77\xef\x76\xd2\xb2\x11\x43\xe2\xdd\xc6\xac\x6b\x4c\xbb\x97\x98\x4d\x9b\x36\xd9\xbb\x80\x78\xfc\xba\xd2\x69\x83\x37\xe2\x6d\xe8\xd3\x95\x76\xb2\xe6\xc1\xac\x7d\x31\x6f\x9a\x9e\xda\x46\x6b\x74\x45\x2e\x97\x93\xa3\xa3\xa3\xa0\xd2\xf6\xbd\xf1\x15\xaf\x31\x72\xbe\x3d\xfd\x9a\xbd\xc3\x96\x53\xdb\x81\xf3\xae\x3c\x2a\xab\x60\x3c\x86\xd2\xfe\x99\x8f\xc2\xff\xc5\x5d\x14\xdd\x44\xe4\x39\x70\xe0\x80\xe8\xed\xed\xad\x43\x63\x39\xdc\xc8\x7a\x7c\xa7\x31\x4e\x0b\xed\x8d\x7e\x77\x57\x31\x6e\xb7\xdb\xde\x58\x41\x2d\xa8\x32\x5f\x52\x5c\x1c\xbb\x86\xd4\x04\x7b\x39\x1c\x81\x90\x75\xc9\x34\x5b\x5b\xfc\x44\x22\x91\x5b\xa2\x47\xd4\x5c\x1b\xbd\x07\x00\xf1\xc1\x07\x1f\xa0\x58\x2c\x1a\xcc\x9c\x64\xf0\xcc\xd9\x9e\xd4\x77\x33\x9a\x19\x07\x2c\x26\xaf\x31\x24\x32\x73\x15\x13\x39\x31\x9b\xd2\xae\xc3\xc7\xaf\x84\xfe\x37\x45\x22\xaa\x28\x8a\x76\xe4\xc8\x11\x04\x83\xc1\x35\x79\xd6\xa3\xe3\x1e\x60\x6a\xdf\xdd\x37\x18\x5d\xd7\xed\x4d\x11\x8c\xd9\x60\x61\x8c\xc1\x65\x9d\xb3\xac\x95\x5a\x83\xe3\xd2\x82\x81\xca\xdf\x44\x24\x77\x1e\x25\xcf\x53\x69\x79\xa1\xde\x34\x3d\xeb\x1a\x12\x51\x63\x5c\x33\x0c\x43\x6a\x9a\x46\x1d\x1d\x1d\x4c\x44\x5c\x54\x98\x8a\x0a\xfb\xfb\xe3\x9e\x5d\xa2\x62\x3e\x5c\x63\x48\x84\x23\xe1\x32\x06\x84\x48\xc6\xb5\x4b\x30\xe5\xa6\x42\x85\x73\x2e\x4d\xd3\x63\xb1\x98\x39\x31\x31\x01\x5d\xd7\xeb\xe6\x5f\xe7\xfe\x47\xde\x90\x18\x08\x04\xa8\xbb\xbb\x9b\x00\xb8\xd3\x9a\xe9\xda\xbc\xe4\x3b\xec\x35\x94\x20\x01\x68\xe4\xb5\x48\x20\xe4\x55\x99\x7c\x75\x70\xf5\x4f\x0a\x2e\xfe\x88\x88\x56\x17\x16\x16\xcc\x3a\x46\xc5\x8f\x6f\x48\x44\x0d\x63\x4d\x4f\x4f\xf3\xd6\xad\x5b\x59\xd3\x34\x66\x66\x2c\xfb\x8b\xb9\xae\xa4\x7b\x67\x73\x5e\x8d\x36\x32\x24\x3a\xb5\xb7\x6a\x0c\x51\x7b\x4a\x3b\x50\x50\xe5\xcc\x7c\xb0\x78\x55\x73\x6b\xc5\xfe\xfe\x7e\xf3\xfc\xf9\xf3\xf5\xf2\x77\x0e\xf1\x9c\x71\x77\x0b\x83\x3a\x75\x65\x5f\xef\x19\x66\x6e\x6e\x4e\xee\xd9\xb3\x87\xac\xf9\x4a\x25\xe9\x35\x79\x70\xc9\xbb\x5f\x61\x52\x4a\xbd\x00\xaa\x57\xd4\x02\x90\x60\x9c\x89\xad\xfe\xfd\xb5\x70\xfe\x45\x10\xa6\x99\x39\xf3\x8d\x6f\x7c\xc3\xbc\x51\x5e\xf5\xe8\xd9\x90\x21\xd1\x71\x2f\x00\x70\xb1\x58\xa4\xbe\xbe\x3e\x93\x88\x4c\x16\xc0\x92\xbf\x98\x1d\x9e\xf7\x1d\x56\x20\xd4\x2a\x66\x01\x6a\x6e\xb0\xc6\xd8\x28\x40\x6a\x4f\xc2\xf3\xc9\x8c\xdb\x9c\x58\x0c\x14\xc7\x35\x4d\x33\x86\x87\x87\xe5\xc4\xc4\x04\xe9\xba\xfe\xcf\x86\xc4\x0d\x60\x62\xb1\x18\x7b\xbd\x5e\x49\x44\x94\xf0\x1a\xa9\x15\x9f\x51\xe8\x58\xd5\x36\x6b\x26\x79\x6c\x77\x1b\xdb\x1e\x54\x50\x39\x7b\x26\xb6\xfa\xdd\x0f\xba\xd2\x7f\x0b\xc2\x15\x66\x5e\x2e\x14\x0a\xc5\xd1\xd1\x51\xb2\x9c\xc6\x6e\x8a\x9e\x8d\x1a\x12\xab\x0c\x6d\x2b\x2b\x2b\xd4\xdd\xdd\xcd\x7e\xbf\x5f\x02\xe0\xac\x26\x8b\x04\x0a\x75\x27\xdc\xc3\xe5\x4d\x07\x2c\x78\x5d\x5d\xae\xc6\xd8\x28\x40\xae\xde\x15\xf7\xd1\x9c\x26\xaf\x2f\x36\x15\x27\x34\x4d\x33\x1c\x92\xe8\x9f\x0d\x89\x37\xc0\xac\xae\xae\x62\x68\x68\x88\x89\xc8\x60\x70\x71\xc5\x67\x2c\x5e\xde\x94\xbb\x92\x77\x49\x83\x00\x61\x08\x2e\xae\x78\x8d\xc5\x8b\xad\xd9\xf7\x5f\x19\x5c\xf9\xdb\xf1\x48\xfe\x79\x10\x3e\x62\xe6\x79\x00\xb9\xb7\xde\x7a\x8b\xad\x25\x3b\x37\x4d\x4f\x43\x8f\xc4\x9a\x67\x38\xdf\x31\x33\xe6\xe6\xe6\x30\x3c\x3c\x6c\x12\x91\x24\x22\x9e\x6f\xd2\x93\x9d\x49\xf7\xb6\xe6\xbc\x1a\x75\xc2\xc9\xc1\x28\x36\xdb\xd4\x8e\xd8\x08\x80\x60\x78\xfa\xe3\xde\xc7\x74\x45\xce\xce\x37\xe9\x63\x9a\xdb\x5d\xdc\xb6\x6d\x9b\x4c\xa5\x52\x48\x24\x12\xce\x01\x69\xed\x70\xcf\x8e\xbb\x9b\x18\xae\x79\x7f\x4f\x31\xa9\x54\x4a\x16\x8b\x45\x74\x77\x77\x1b\x44\x54\x60\x70\x5a\x57\xe5\xd2\x4c\x48\xff\x68\xb4\x3d\xfb\xf6\x87\x5d\xe9\xd7\x46\x3a\x32\xaf\x4c\xb6\x14\x4e\xe7\x5c\xe6\x07\x44\x74\xd5\x62\x9e\xec\xf5\xeb\xd7\x4d\x6b\xb5\xc5\x2d\xd1\xd3\xd0\x23\xb1\xc1\x73\x39\xe1\x7c\x3e\x2f\xdd\x6e\x37\x59\x87\x81\x18\x92\x98\xe7\x9b\xf4\xd4\x96\x45\xdf\x01\x55\x0a\xb7\xfd\xd3\xd2\x52\xa0\x0a\x3d\xb5\x5e\x8b\x4e\x0c\x81\x5c\xbd\x09\xcf\x23\x8a\xa4\xe2\x74\x73\x61\x44\xd5\x5c\x46\x7f\x7f\xbf\xcc\xe5\x72\xbc\xb4\xb4\x84\x06\xf4\xd8\x71\xb5\xcf\x77\x12\xe3\x14\xe7\xb7\x05\x13\x89\x44\x68\xf3\xe6\xcd\xe8\xe9\xe9\x41\xa1\x50\x40\x2e\x97\xbb\xa9\x74\x16\x16\x16\xc8\x34\x4d\xee\xea\xea\x32\x2c\x6f\xc5\x94\xb5\xc2\x64\x9e\x99\xa7\x89\x68\x92\x99\xaf\x59\xae\xaf\x71\x00\xb9\xeb\xd7\xaf\x9b\x2f\xbc\xf0\x02\xac\x89\xd4\x5b\x2a\x97\x93\x81\xea\x49\x9c\x7a\x9c\x58\x7e\x5e\x58\x58\x40\x57\x57\x97\xf4\xfb\xfd\x26\x00\x23\xef\xe2\x42\xd2\x63\xf0\xc0\xb2\xf7\x81\xd2\x16\xc1\xa5\xfc\xc8\xf9\x6b\x8b\x8c\x8a\x3b\x48\x35\x86\x00\x57\x57\xd2\x7d\x34\x94\x57\x43\x53\xa1\xc2\x79\xa9\x52\xae\xb7\xb7\xd7\x0c\x85\x42\x3c\x3d\x3d\x6d\xf7\xd3\xb5\xfa\x9a\x4d\xab\xd3\x86\x73\x3b\x31\xce\xbe\xbf\x1e\xf6\x96\x31\x3e\x9f\x8f\x0e\x1d\x3a\x44\x47\x8f\x1e\x45\x6f\x6f\xaf\xda\xd1\xd1\x21\xb6\x6f\xdf\x8e\x96\x96\x16\x4c\x4e\x4e\x42\x4a\xb9\xe1\xbc\xe6\xe7\xe7\x71\xf6\xec\x59\xb3\xb3\xb3\xd3\x0c\x04\x02\x05\x00\x39\x22\x4a\x5a\x4b\x92\x56\x2c\xa6\xca\x66\xb3\xd9\xe2\xd7\xbe\xf6\x35\xf3\xea\xd5\xab\xe4\x58\x61\x72\x4b\xe5\x5a\xd7\x23\x11\xf5\x39\xb1\x7c\x35\x4d\x93\x17\x17\x17\x69\x70\x70\xd0\x54\x55\xd5\x44\x69\x5d\x51\xca\x6d\xd2\xa6\x8e\x94\xdb\x9a\x6c\xb5\x86\x90\xeb\x78\x2d\xd6\x62\x08\x44\x91\x8c\x6b\x6f\xef\x8a\x67\xd7\x5c\x50\x3f\x97\xd3\x64\x32\x1c\x09\x9b\x5b\xb6\x6c\x91\xc9\x64\x92\x56\x57\x57\xeb\x35\x7c\x23\x23\xe1\xed\xc0\xd4\xd3\x03\x9c\x9f\xc4\x2d\x61\xba\xba\xba\xe8\xe4\xc9\x93\xe8\xec\xec\x54\x09\xe4\xeb\x5e\x75\x0f\x6d\x9f\xf7\x3f\x34\x1d\xd2\xaf\x87\xc3\x61\x19\x8d\x46\xe5\x95\x2b\x57\x6e\x3a\xaf\x4b\x97\x2e\xf1\xdc\xdc\x1c\x0c\xc3\x30\x93\xc9\xa4\xe1\x72\xb9\x8a\xd3\xd3\xd3\xc6\xcc\xcc\x8c\xf9\xe1\x87\x1f\xb2\xe3\x1c\xf8\x8f\x5d\xae\x75\x3d\x12\x1d\xf1\x70\xdc\x3b\xb1\x22\x97\xcb\xa1\x58\x2c\xa2\xa7\xa7\xc7\x24\xa2\x22\x08\xe6\x4c\xb3\xbe\x35\xd6\xea\x8f\x00\x00\x0d\x00\xff\x0d\x00\xf2\xea\x49\x44\x41\x54\x14\xcd\x68\x03\x2d\x39\xb5\xcd\x66\xa2\x32\x45\x75\xbc\x16\xab\xf6\xe1\x71\xe8\x48\x7e\x5d\xed\x1f\x5a\xf4\x7e\x46\x57\xe5\xc2\xa2\xbf\x38\xe5\x72\x6b\xe6\xe6\xcd\x9b\x65\x20\x10\xc0\xb5\x6b\xd7\x6a\x69\xac\xa2\xab\x41\x39\x6e\x15\x53\xfb\xae\x9e\xa4\xde\x30\xc6\xeb\xf5\xd2\xd1\xa3\x47\x71\xf0\xe0\x41\xa1\x69\x9a\x5b\x48\x84\x76\xcf\x06\x7e\xec\xd3\x97\xc2\x7f\xd2\x93\xf0\xfc\xe4\x52\xa0\xf8\x5e\xdc\x5b\x9c\x6b\x6e\x6e\x36\x54\x55\x65\xc7\x51\x03\x1b\xce\x2b\x95\x4a\x61\x72\x72\x12\xe3\xe3\xe3\x38\x7f\xfe\x3c\xc6\xc6\xc6\x30\x39\x39\x09\xeb\x08\xa9\x9b\xa6\xb9\x11\xe6\xa6\x0c\x89\x8e\x67\x72\xfe\x6e\x71\x71\x91\x23\x91\x08\x5a\x5a\x5a\x4c\x00\x86\x14\x28\x4e\x86\xf2\x8b\x3d\x09\xcf\x0e\xbf\xae\x34\xd7\xa3\xa0\x91\xb1\xd1\xea\xdc\x60\xcb\x2b\x55\x8a\xe6\xfe\xb8\xe7\xb3\xd1\xac\xab\x63\xbe\x49\xff\x48\x57\x39\x17\xdd\x14\x35\x77\xef\xde\xcd\x00\xec\xa5\xc5\x4e\x1a\x6b\xef\xeb\x95\xe3\x66\x31\xb7\xcd\x00\xb8\x6f\xdf\x3e\x7a\xf4\xd1\x47\xd1\xda\xda\xaa\x12\xc8\xdf\x9c\x57\x62\x9f\xf9\x28\xf2\x9f\x1f\x9c\x0e\xfc\x47\xa5\xb4\x75\x9d\xbb\x33\xa9\xed\x1b\x8f\xe6\x5e\x2d\xb8\x38\xd1\xd6\xd6\x66\x2c\x2f\x2f\xb3\x75\x7c\xd4\x6d\xa7\xe7\xe3\x62\x6e\xda\x90\x58\xe7\x5e\x00\xe0\xb1\xb1\x31\xde\xb2\x65\x0b\xbb\xdd\x6e\x03\x40\xd1\x50\x58\x9f\x0a\x15\x96\x63\x71\xcf\x6e\x77\x51\xf1\x95\x1d\x9b\x6e\x60\x6c\xac\xc8\x2a\xe7\x29\x5e\xa4\x84\xb3\xae\x07\xb6\x2e\xf8\x4e\xb0\xe0\xe4\x92\xbf\x38\x4d\xaa\x30\xbb\xba\xba\xcc\x2d\x5b\xb6\xa0\x58\x2c\xd2\xf2\xf2\xb2\xf3\x23\x80\xe3\xbe\xb6\x1c\xb7\x8a\x01\xd6\xd6\xd5\x86\x0d\x6e\x43\x43\x43\x74\xe2\xc4\x09\xea\xef\xef\x57\x15\x45\xf1\xb8\xa4\x88\x3c\x30\x1d\xf8\xf1\xcf\x7c\x14\xf9\xfd\x4d\x19\xd7\x51\x01\x52\xec\xcf\x5d\x33\x45\xa4\x25\xab\xb6\x5d\x8e\xe6\x4e\x49\xe2\x5c\x5f\x5f\x9f\xf1\xd1\x47\x1f\x91\x61\x18\x1b\xca\xeb\x6e\x62\x6e\xc9\x90\xe8\xc0\x54\xe9\x0a\xe3\xe3\xe3\xb4\x79\xf3\x66\x53\xd3\x34\x83\x99\xf5\x82\x8b\x73\x53\xa1\xc2\xd2\xe6\x65\xef\x6e\xcd\xde\x1f\x79\x1d\xaf\xc5\x4a\x20\xab\x6b\xab\xbc\x22\x66\x68\x52\xb4\xf4\xad\x78\x4e\x0e\x2c\x7b\xf7\x65\x5d\x72\x7e\xd5\x6b\xac\xb8\xdc\x9a\xd9\xd7\xd7\x27\x77\xef\xde\x0d\x4d\xd3\x68\x7a\x7a\xda\x49\xb3\x5d\xf0\x7b\x66\x48\xdc\xbf\x7f\x3f\x7d\xfa\xd3\x9f\xa6\xcd\x9b\x37\x0b\xb7\xdb\xed\x16\x12\xa1\xcd\x71\xdf\xc3\x8f\x5f\x0c\xff\xb7\x6d\x0b\xfe\x7f\xa7\x49\xd1\x62\x4b\x5d\x67\x55\x34\xe7\xd5\x2d\x00\xd2\x53\x21\xfd\xbc\x10\x42\xef\xe8\xe8\x30\x2f\x5e\xbc\x58\x9b\xdf\x4d\xd3\x73\xbb\x31\xb7\x64\x48\xac\x73\x15\x00\xa8\x58\x2c\xca\xd5\xd5\x55\x8a\xc5\x62\x06\x11\x19\x44\xa4\x67\x35\x99\x9d\x0b\x16\x92\x7d\x71\xef\x0e\xcd\x14\xee\x72\x0e\x00\x1a\x1b\x1b\x2b\xdc\x53\xd6\x89\x2a\x7b\x32\x93\xbf\xa8\xf4\x6f\x59\xf2\x7e\xa1\x3b\xe1\xde\x9e\xd3\xe4\x62\xd2\x6b\x26\x14\x55\x41\x5b\x5b\x1b\xef\xdd\xbb\x97\x23\x91\x08\x09\x21\xc8\xda\x0c\xa0\x1e\xad\x65\x9a\xd7\x29\x4f\x2d\x66\xc3\xc6\xbd\x81\x81\x01\xb2\xba\x2a\xea\xea\xea\x52\x15\x45\xf1\x08\x50\xb0\x6f\xc5\x73\xf0\xb1\x4b\x2d\xff\x79\xdf\x54\xd3\xff\xee\xd7\x95\xcd\xd6\x96\xe5\x35\x99\x33\xac\xfd\x19\xa9\x3d\xe5\xde\xbb\x10\xd0\xcf\x26\xbc\xc6\x54\x20\x10\xd0\x5d\x2e\x17\xa6\xa6\xa6\x6e\x9a\x9e\x3b\x89\x21\xeb\xe1\xb6\x86\x9e\x9e\x1e\x7c\xfa\xd3\x9f\x16\xaa\xaa\x7a\x00\xb4\x32\xf3\xd0\xa6\x8c\xf6\xc9\xa7\x2e\x44\x7f\x21\x98\x57\xc2\x95\x0d\xa9\x4a\xa1\x5c\x71\x55\x55\x59\xea\xc4\x9c\xce\x98\x15\xae\xae\x60\x18\xac\x2f\x06\x8a\xaf\x7d\xd0\x95\xfe\xf3\xb1\x48\xee\x74\x5e\x95\x09\x10\xf2\xcc\x6c\x00\x90\x63\x63\x63\x98\x9d\x9d\xc5\xf4\xf4\x34\x56\x57\x57\xed\x04\xea\xb9\x28\xd4\xc6\xad\x87\xb1\xbf\x42\x01\x00\xcd\xcd\xcd\xe8\xec\xec\x44\x47\x47\x07\x62\xb1\x18\x14\x45\x11\x28\x1d\x78\xa7\x79\x0c\x11\x8e\x2d\x7b\x0e\x3d\x38\xdd\xf4\x3f\x6f\x4a\xbb\x8e\x11\xec\x23\x44\x2b\xdd\x78\x75\xb9\x9c\x81\x90\x76\x1b\x57\xbe\xf1\xc0\xc2\x97\x12\x1e\x63\x84\x88\xb2\xcf\x3f\xff\xbc\x1c\x1f\x1f\x5f\x97\x9e\x8d\xd0\x7c\xbb\x30\x4e\x06\xaa\xfd\x71\xbd\xe7\x7a\x15\x2c\xeb\x60\xe4\xfe\xfd\xfb\xc5\x9e\x3d\x7b\x04\x4a\x0e\x4b\xad\x00\x06\x23\x59\xd7\x91\xcf\x8e\x46\xfe\x4d\x34\xe3\xea\x74\x32\x8b\xfd\x19\x96\xaa\xcf\x62\x19\x46\x79\xfe\xc6\xd9\xa5\x35\xc6\xc0\xc8\x68\xe6\xa5\xab\x91\xfc\x3f\x5c\x6a\xcd\x7e\x6f\xae\x49\x1f\x33\x05\x67\x41\xa5\xdd\xb5\x98\x59\x66\x32\x19\x39\x3b\x3b\x8b\x5c\x2e\x87\xd9\xd9\x59\xa4\xd3\x69\x2c\x2f\x2f\x4b\x45\x51\x44\x9d\xcd\x03\xaa\xca\x65\x63\x5a\x5a\x5a\x44\x30\xf8\xff\xb5\x77\x75\xbd\x6d\x23\x57\xf4\xdc\x21\x45\x51\xb2\x2c\x5b\x8e\x62\xcb\xb2\xd7\x71\xec\x24\x9b\xe6\xab\x4e\xda\x8d\xf7\x61\x37\x09\x36\x41\x80\x6d\x81\xa2\x0f\x7d\xe9\xf3\xfe\x82\xfd\x0f\xfd\x0f\x7d\x2c\xfa\x10\xa0\x2d\x90\xb6\xd8\x00\x05\xda\xa4\x68\x83\x7d\x08\x62\xac\x8d\x38\x71\x16\x1b\x7f\x24\x8e\x6d\xf8\x23\x96\x65\x59\xa6\x29\x4a\xa4\x66\xfa\x40\x52\xa2\x65\x52\x91\x1c\x39\x71\x93\xbd\x80\x40\x89\x73\x34\x43\xce\x5c\xdd\x19\x1e\x52\xf7\xc4\xd1\xd9\xd9\x89\x44\x22\x81\xde\xde\x5e\xb4\xb7\xb7\x33\xc0\xc9\x45\x08\x52\x24\x81\x68\xcf\xb6\x32\x78\xea\x55\xf4\x97\xc3\x1b\x91\x5f\xc7\x8a\xd2\x69\x00\xf2\xeb\x73\x12\xfa\x9e\x17\x16\x12\xc5\x6f\xbe\x39\xbb\xfe\xb5\xc5\xc4\xaa\xae\xeb\xc6\xad\x5b\xb7\x82\x8e\xd5\x77\x2c\x0e\x12\x73\x20\x11\xc8\xad\x7c\x74\x74\x14\x17\x2e\x5c\x60\x00\x54\xd8\xd9\x24\x4e\xb4\x99\xd2\xa5\x9b\x3f\x74\x7d\x75\x6c\x53\x3d\x65\xf7\x1e\x01\xce\x73\x43\xde\x64\x33\x95\xe4\x9d\xce\x5f\xa7\xed\x8e\x75\xa7\x36\x51\x17\x23\x08\xc6\xb6\x5a\x7e\x3c\xdf\x65\xdc\x7b\x99\x28\x7c\xbb\xd6\x5e\x9a\xde\x51\x78\x4e\x40\x94\xdc\x6c\x5d\x80\xad\x2b\xe6\x12\x69\x6b\x6b\x6b\xa8\xf9\xcb\x75\xf5\x58\x88\x90\x4a\xa5\x5c\x46\x9d\x39\x79\x0b\x99\xa3\x0d\x26\x13\x48\x89\x98\x2c\xde\xb3\xad\x9c\x38\xb6\xa9\x7e\x3e\x98\x55\x6f\x74\x18\xf2\x25\x12\xa4\x56\x83\xa5\x3d\x35\xb9\x17\x0a\x15\x45\x1f\xa7\xa8\x3e\x46\x60\x6c\x20\xff\xbb\x07\x83\xf9\xdf\x83\x90\x79\xfe\xfc\xb9\x75\xef\xde\x3d\xef\x0f\xbc\x76\xc0\xbd\xfb\x0f\x14\x43\xa8\xef\x81\xaf\xf3\x44\xd7\x02\x31\xa3\xa3\xa3\xec\xfc\xf9\xf3\x8c\x31\xa6\xc2\x4e\x25\x32\x18\xb2\xe8\xc2\x67\xcf\x3b\x7e\x7b\x7e\x35\xf6\x29\x13\xc4\x04\x76\x5f\x9d\x79\xad\x9a\x62\xd7\xe9\x60\xbf\x15\x53\x00\xc6\x79\xb0\xaa\x54\x94\xc5\x72\x2e\x62\x4e\xad\xc4\x4b\x13\x6b\xed\xa5\xc9\xcd\xa8\x39\x9f\x8b\x58\x99\x32\x13\x46\x99\x50\x02\x81\x7b\xce\xa7\xd6\x8b\x98\xd3\x06\x23\x10\x63\x02\xb2\xc4\x49\x8d\x17\xe5\xae\x84\x2e\x0f\xf6\x6c\x2b\xe7\xd2\x5b\xe1\x4f\x12\x05\xf9\x9c\x6a\xb2\x01\x02\x14\x3b\x5a\xd6\x6a\x41\xef\x3e\x3a\xaf\x03\x35\x82\xb1\x18\xcf\xff\xe3\xcc\xc6\x57\x2f\x8e\x18\xf7\x84\x10\xda\x9d\x3b\x77\xb8\x43\x61\x04\x0d\x3c\x50\x7f\x2c\x5b\x82\xa9\x8d\x40\x7e\xa0\x20\x6b\x04\x03\xc0\xd6\x0e\xbd\x71\xe3\x06\x24\x49\x52\x89\xa8\x13\xc0\x00\x09\x9c\x3e\xb3\xda\xf6\xe5\xe7\x73\x9d\xbf\x52\x3d\x0a\x36\x5e\xe1\xfb\xbd\x6b\xa2\x6a\x58\xdf\x3f\x46\x40\x00\xba\x29\x89\x8c\x1e\x2a\x2f\x6b\x6a\x79\xb5\x20\xf3\x57\x46\x88\x67\x0b\xa1\xf2\x96\x25\x09\xc3\xd1\x49\xe3\x24\x20\xcb\x9c\x54\xd5\x64\x1d\xaa\xc5\x3a\x23\xa6\xd4\x1d\x2b\x4a\xa9\x58\x51\x4a\xcb\x9c\xba\x99\x40\xb4\xda\x07\x3e\xeb\xf1\x1a\x29\xac\x37\xc5\xbc\x4c\x18\x7f\xf9\xdb\xf9\xf5\xaf\x01\x64\x26\x27\x27\xad\xb1\xb1\xb1\x46\xba\xff\x40\x6d\x8f\x6a\x73\x8d\xf9\x79\xa1\xfb\xbe\xb6\xbc\x16\x53\xb1\x85\x85\x05\xdc\xbd\x7b\x97\x5d\xbf\x7e\xdd\x50\x14\x25\x0b\xc0\x12\x04\xe3\x69\x6a\x47\xcb\xb4\x99\xcb\x5f\xcc\x24\x7e\xd3\xad\x85\xfa\x5d\x0a\x11\xa8\x5e\x9b\xed\xfe\xdf\x87\x67\xda\xda\x37\x86\x40\x40\x34\x5c\xa6\x01\xa5\xcc\x06\x12\x46\xc8\x29\xaf\x6f\xde\x75\x9a\x3b\xdb\xb8\x8d\x56\xf7\x91\x83\xd9\x9d\x0a\xf0\x4d\x31\x16\x83\xf5\xa8\x6f\xfb\x5f\x63\xc7\xf2\x7f\xa4\xdd\x51\x3a\x68\xec\x7c\xc7\xe1\x20\x30\x2d\x23\x12\x7d\xf6\x7b\xcb\x58\x3e\x9f\xe7\x8f\x1e\x3d\x12\x27\x4f\x9e\xe4\xe1\x70\xb8\x04\xa0\x00\xc2\xb6\xa6\x58\xd9\x99\x6e\x7d\x4e\xe6\xac\xfd\xa8\xa6\xf4\x4a\x20\xe6\x1e\xc6\xde\xf8\x52\x6d\xa4\xd5\x18\x78\xca\xc8\xe7\x55\x09\x04\x9e\xed\xee\x7a\x5a\x8f\x01\x01\xb9\x88\x99\xb9\xfb\x71\xf6\x4f\x8f\xd3\x3b\x7f\x2d\x4b\x78\x0e\x20\x23\x84\x28\xde\xb9\x73\xc7\xef\x09\x42\x77\xeb\x3b\x06\x07\x81\x69\x29\x91\xe8\xd3\xe0\x9e\xf5\xd2\xd4\xd4\x94\xe8\xea\xea\x12\x89\x44\xa2\x24\x84\x28\x10\x91\x56\x66\xc8\xbf\x4c\x18\x2f\x56\x3b\x8a\x1b\x47\xb5\x50\x5f\xc4\x94\x62\xbb\xd2\xc7\x00\x7b\x7b\x1b\xd5\x2b\xb3\x83\xc7\x38\x65\xb4\x7b\xeb\xb7\x7e\x69\x15\xa6\x2c\x09\xeb\x69\x6a\x67\xec\x9f\xa7\xb3\x7f\xc8\xc4\xcc\x6f\x61\x3f\x00\xb6\x0a\x5b\x52\xa1\xec\x24\x2d\xad\x1d\x03\xbf\x40\x7a\xa0\x98\x96\x12\x89\xf0\x77\x32\x51\x5b\xcf\xfc\xfc\x3c\x15\x8b\x45\xd1\xdf\xdf\x5f\x26\xa2\x02\x80\x1d\x10\xb4\xad\x48\x79\xed\xd9\x51\x7d\xa6\x4c\x90\xbb\x77\x94\x3e\x49\x90\x54\x4b\x24\x7a\x97\xc8\x41\x64\x63\xab\x31\x8d\xaa\x2d\xb7\x0a\xf3\x2a\x66\x2e\xdf\xfd\x38\xfb\xe7\xc7\x7d\xda\xdf\x4b\x12\x7f\x04\x60\x96\x88\xd6\x00\xec\x6c\x6e\x6e\x5a\xb7\x6f\xdf\xf6\xb2\xe6\xb5\x63\x40\x08\x1e\x8b\xff\x0f\x22\x11\x0d\x2e\xc2\x93\xc9\x24\xbb\x79\xf3\x26\x62\xb1\x98\x2c\x84\x50\x9d\x04\x92\xfd\x04\x1a\xe8\x2c\xc8\x3f\xfd\xf4\x65\xfc\x17\x27\xd6\xa3\x67\x64\x01\xd9\x9d\x8a\x6c\xf3\x4e\x3b\xaf\x27\x1b\xdf\x1c\xe3\xb5\xea\x74\xd7\x5a\x8c\xc0\x76\xb8\x9c\xfb\x6e\x20\xff\xdf\xa7\x3d\x3b\xff\x29\x4b\x98\x05\xb0\x00\xe0\x15\x00\x8d\x73\x5e\x7a\xf6\xec\x19\x77\xd4\x9a\x2b\x7d\x88\xf7\x95\x48\x0c\xd8\xfa\x62\xae\x5e\xbd\xca\x4e\x9d\x3a\x65\x73\x2a\x44\x31\xd8\x9c\x51\x3f\x09\x0c\xf6\x6d\x85\x3f\xf9\xf9\x42\xfb\x17\x1f\xe5\xd4\x21\x26\xc0\xdc\x2e\xdf\x1f\xd9\xd8\x1a\x4c\x23\x04\x60\xe3\x18\x01\x3d\xc4\xb5\x27\x69\x6d\x6c\x32\xad\xfd\xbb\x10\xe2\xd3\x02\x62\x81\x6c\x6d\xb1\x1c\x11\x19\xba\xae\x5b\xf7\xef\xdf\xc7\xe2\xe2\x62\x50\xdf\xbf\x9f\x44\x62\x33\x98\xa3\x47\x8f\xe2\xca\x95\x2b\x38\x72\xe4\x08\x13\x42\xa8\xb0\xb5\xae\x92\x44\x94\x76\x1c\xe9\xe2\xa5\xc5\xf6\x6b\x03\xb9\xf0\x90\xc4\xed\xdc\x8e\x6f\x42\x36\x36\x85\xd9\x37\x01\x58\x07\xe3\x44\x9c\xef\x53\x3b\x13\x4f\x7a\xb5\xfb\x9a\x52\x9e\x25\x5b\x83\x63\x15\x40\x96\x88\x74\xd3\x34\x4b\xb3\xb3\xb3\x78\xf0\xe0\x01\x9c\x6c\xb1\x6f\x95\x24\x6c\x04\x43\xa8\xef\x81\x6f\x4c\x24\x36\x58\x0f\x03\xc0\x19\x63\x6c\x64\x64\x04\xe7\xce\x9d\x83\xaa\xaa\x32\x6c\x06\x3b\x0e\x3b\x22\xa5\x49\xa0\x3f\xa9\x85\x7e\x72\x61\x39\xf6\xd9\xf0\x46\xe4\x4c\xc4\x64\x51\x77\xb0\xf7\x4b\x36\x36\x8a\xa9\x44\x93\x26\x09\x40\xda\x55\x2e\xc0\x09\x3c\xd3\x66\xae\x3e\xed\xdd\xf9\x6e\x3a\xa9\x3f\x34\x42\x7c\x1e\x84\x25\x00\xab\x00\xb2\xb0\x75\x29\x4a\x2b\x2b\x2b\xfc\xe1\xc3\x87\x58\x5f\x5f\x7f\x67\x24\x61\x23\x98\xda\x08\x74\x20\x44\xe2\x3e\x8c\x5f\xbb\x76\x8d\x0d\x0f\x0f\x33\x49\x92\x64\x21\x84\x02\x20\x4e\x44\x5d\x42\x88\x6e\x02\xa5\xa3\x26\x1b\x1c\xce\x44\x7e\x76\x7a\xad\x6d\xa4\x47\x53\xd2\x12\xb7\xd7\x49\x95\xc5\x2a\xdc\xc8\x52\xbb\x4c\x45\xd3\x18\xdf\x6b\x87\x26\x49\x42\x5d\xe1\xda\x8b\xae\xc2\xf4\x0f\x3d\xfa\xc4\x72\xbc\xf8\x84\x33\x2c\x3b\x8a\x3f\x19\x21\x44\x0e\xb6\xdc\x42\x29\x9f\xcf\xf3\x89\x89\x09\xcc\xcd\xcd\x05\xde\x5a\x39\x4c\xb6\xf7\x67\x58\x3f\xca\xf8\x85\x35\xbf\xef\xd6\xb3\xd7\x61\x2a\xed\x77\x74\x74\x60\x64\x64\x04\xc3\xc3\xc3\x4c\x96\x65\x19\xf6\x9d\xec\x28\xec\x0c\xed\x49\x00\xdd\xc4\x91\x4a\x14\xe4\xe1\xe3\x1b\x91\x73\xc3\x1b\x91\xd3\xc9\x9d\x50\x2a\x54\x26\xc5\x75\x26\xd7\xea\x45\x8c\x86\x30\xd5\xe5\xd1\xae\xcf\x41\x18\x01\xc1\x75\x85\x6b\x4b\x9d\xc6\xfc\xdc\x91\xc2\xf7\x8b\x89\xe2\x53\x43\xe6\x4b\x20\xac\xc2\x56\xfe\xc9\x02\xc8\x03\xd0\x01\x94\x36\x37\x37\xf9\xe4\xe4\x24\xa6\xa7\xa7\xdf\x0a\x01\xd8\x2a\x4c\xbd\x29\xac\xb6\x82\x66\xdf\x7b\x3f\x37\x8b\xd9\x73\x02\xce\x42\x1b\x64\x4b\x40\xca\xb0\x1d\x29\x06\xdb\x99\xba\x84\x10\x49\x26\xa8\xbb\xbd\x28\x7d\xd4\x9b\x0f\x0f\x0d\x6c\xaa\x27\x52\xdb\x4a\x7f\x87\x21\x77\x4a\xdc\xb9\x13\x0e\xdf\x89\x0b\x00\xf9\xc4\xa0\xbd\x16\x44\x00\xda\xb5\x08\x14\x65\x6e\x64\xda\xcc\x57\xcb\x1d\xc5\xf9\x85\xce\xe2\xec\x7a\xcc\x9c\x2b\xca\x7c\x15\x84\x0c\x6c\x02\x30\x4b\x44\x79\x61\x0b\xf0\x1a\x42\x08\x6b\x7b\x7b\x9b\x8f\x8f\x8f\x63\x66\x66\x26\xe8\xdc\x1b\xe9\x9f\x77\x86\xa9\x17\x81\xfc\xac\x91\x86\x82\xb0\xcd\x62\x7c\xcb\x46\x46\x46\xd8\xd9\xb3\x67\xe1\xa8\x10\xbb\x51\x49\x85\xed\x4c\x71\x87\x0a\x88\x13\xa8\x8b\x09\x74\xb6\x95\xa4\x9e\xe4\x4e\xa8\x3f\xa9\x29\xe9\xa4\x2e\x77\x27\xf4\x50\x32\x5a\x92\x62\x8a\x45\x8a\xcc\x49\xa6\xca\x34\xec\x89\x58\x35\x1e\xe2\xcd\xbc\xc6\x09\xdc\x62\xc2\x32\x42\x5c\xdf\x0e\x97\xf3\x9b\x11\x33\xb3\x1e\x2b\xad\xae\xc7\xcc\xa5\x6c\xd4\x5c\x2c\xc9\x22\x2b\x80\x2c\x08\x39\xe7\x2a\x2a\x2f\x84\xc8\xc3\x96\x15\x30\x84\x10\x96\x65\x59\xd6\xda\xda\x1a\xa6\xa6\xa6\xdc\x8c\xf2\x41\x76\xa8\xa2\x8d\x1f\x86\x7c\x76\xb6\x7a\x81\xdc\x48\x3d\x4d\xb5\xc5\x18\xc3\xc0\xc0\x00\x86\x86\x86\x70\xfc\xf8\x71\x30\xc6\x18\x11\xc9\x8e\xb6\xa7\x22\x84\x88\x12\x51\x14\x76\x94\x8a\x03\x88\x09\x21\x62\x04\x8a\x12\x10\x0b\x95\x29\x16\xb6\x58\x47\x5b\x49\x8a\xab\x26\x8b\x85\x2d\x16\x55\x2d\x16\x0d\x95\x49\x91\x38\xc9\x92\xb0\x6f\xa7\x94\x09\x56\x99\x09\xab\x28\x73\xa3\x28\x73\xc3\x90\xb9\xae\x2b\x3c\x5f\x08\xf1\x7c\x51\xe6\x5b\x16\x13\x1a\x20\x74\xd8\x52\x03\x1a\xec\x29\x49\x83\x3d\x2d\xe9\x00\x0c\xb2\xc5\xed\x4a\x44\xc4\xb3\xd9\x2c\x7f\xf1\xe2\x05\xc6\xc7\xc7\xeb\xad\x35\xeb\xf5\xef\xa1\xc3\x1c\x9a\xcb\xf8\x06\x31\xbe\x27\x38\x34\x34\xc4\x86\x86\x86\x90\x4e\xa7\x11\x0e\x87\x99\x9b\x70\xc9\x33\xdd\xa9\x00\x14\x87\xac\x74\xb7\xae\x98\xac\xe2\x60\x64\x00\xb2\x93\xed\xab\x7a\x25\x55\x7d\x76\xc8\x82\xad\x66\xe3\xbe\x0c\x21\x84\xeb\x20\x06\x80\x12\x11\xb9\x65\x96\x73\xac\x3c\x93\xc9\x70\x57\x2a\xca\xc9\xd0\xef\x3d\x0f\xef\xb4\x1e\x74\xee\x87\x1a\x73\x28\x88\xc4\x56\x61\x5c\x25\xe4\x8b\x17\x2f\xb2\xde\xde\x5e\xa4\x52\x29\x57\x77\xdd\x7d\xf8\xcb\x55\x2f\x76\x1d\xc5\x75\x1c\x2f\x06\x0e\xc6\x4d\xdc\x04\x00\xae\x64\xa4\xdf\xd6\x75\x2e\xce\x39\x87\xa6\x69\x3c\x9b\xcd\x62\x61\x61\x01\x4b\x4b\x4b\x08\x50\x64\x7e\x27\xfd\x73\x10\x98\xc3\x18\x81\xbc\x8e\x1b\x74\x22\x68\x14\xe3\x8a\x88\x5c\xbe\x7c\x99\xf5\xf5\xf5\x81\x88\xe0\xa4\x73\xab\x44\x1a\xf7\xfb\xce\x67\xef\x7e\x38\x4e\x52\x79\x0f\xd8\x3c\x8f\x65\x59\x7c\x6b\x6b\x0b\xb9\x5c\x0e\x9a\xa6\x61\x65\x65\x05\x8b\x8b\x8b\xf5\x8e\xdd\xbb\xff\xbd\xc1\x1c\x2a\x22\xb1\xce\xc1\xfa\xb5\xd9\x32\x8c\x73\x1b\x05\xf1\x78\xdc\x4d\xb3\x57\xb1\x4c\x26\x03\xc3\x30\x00\x00\xd3\xd3\xd3\x15\x31\x3a\x47\x31\x07\xd8\xdb\x0f\x41\xe7\xfc\x5e\x62\x0e\x2d\x91\x18\x50\xb7\x9f\x23\xbe\x0d\xcc\x8f\xd6\x84\xb1\x9a\x6d\xed\x7e\xbf\xb2\xd7\xed\x6f\x06\xd3\x4c\xfb\x6f\x13\x53\xcf\x3e\x64\xcc\x9e\x4e\x0c\xea\xbc\x66\xdf\x37\x52\x67\x10\x26\x08\xeb\x67\xef\x02\xd3\xc8\x31\x7f\x88\x98\xfa\x05\xcd\x54\xd2\x02\xcc\xdb\x68\xa3\x19\x4c\x2d\xf6\x47\x0c\xaa\x97\xb0\xb5\x0b\x4f\xbf\x2f\x35\x8a\xa9\xad\x8f\xef\x13\xe3\xd7\x46\xd0\x22\xef\x6d\x60\x6a\x8f\xb9\xb6\x33\x3f\x48\xcc\xff\x00\xaf\x7b\x44\x0e\x96\x2e\xd3\xa1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xe1\xff\xf0\x7b\x3b\x4e\x00\x00") - -func web_uiV1StaticMstile144x144PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticMstile144x144Png, - "web_ui/v1/static/mstile-144x144.png", - ) -} - -func web_uiV1StaticMstile144x144Png() (*asset, error) { - bytes, err := web_uiV1StaticMstile144x144PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/mstile-144x144.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticMstile150x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2b\x40\xd4\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x01\x0e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\x78\xb1\xf9\xa5\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xd4\xbd\x69\x90\x24\xc7\x75\x26\xf8\xb9\x67\x64\x64\x56\x56\x56\x76\x76\xdd\x7d\x1f\xec\x1b\x40\xa3\x01\x36\x71\x11\x60\x13\x4d\x11\xa4\x00\x88\x12\x48\xd1\x48\x89\x43\xea\x22\x60\xab\x5d\x1b\x1b\x1b\xb3\x5d\x93\xc9\xd6\xc6\xf4\x63\x77\x6c\x6d\x7f\xec\xef\xb5\x05\x45\xdd\xd4\x90\x5a\x91\x14\x25\x82\x04\x41\x02\x24\x0e\x02\x20\xae\x06\x40\xa0\x81\xbe\x0b\x8d\x3e\xaa\xeb\x3e\xb2\xb2\xb2\x32\x23\xdc\xf7\x47\x84\x47\x7a\xbc\x74\xf7\x88\x6a\x60\x66\x77\xdd\xac\x2a\x23\xdc\x9f\x3f\x7f\xfe\xc2\xfd\x5d\xee\xe1\x01\x00\x3c\xfe\xd3\x93\x9e\xc7\x49\x3e\x85\x31\xd5\xa7\xc9\x56\x6e\x6a\xc7\xd4\xae\x0b\x5f\x56\xfb\x26\xbc\x94\x6e\x5b\x1f\x5d\xf4\xe6\xa1\x8b\xd6\x33\xfd\xe5\xc5\x9d\x45\x9f\xeb\x39\xae\xe7\x59\xe5\x69\xdf\x46\xff\x07\xf9\xa5\xf8\xf3\xb4\x49\x61\xb2\xf0\xe7\x19\x5b\xb6\x36\x5d\xf8\x5d\x30\x36\xba\xf3\xe2\xcb\x83\xe3\x7a\xe9\x36\xb5\x6b\x2a\x33\xa6\xeb\x1d\x5c\x79\x1e\x38\xc5\x9f\x37\xb9\x26\x60\x1e\x5a\xfe\x6b\x25\x13\x93\x5d\x70\xa6\xeb\xf5\x0a\xac\xac\x01\x90\x55\xdf\x05\x93\x97\x9f\x79\xda\xcc\x3b\xa1\xaf\xa7\x9d\xac\x3a\x59\x7d\xcf\x3b\xe9\x6c\x6d\xad\x77\xe2\xe6\x4d\xd7\xc3\x4f\x13\x7c\x16\xdf\x6c\x63\xee\x7a\xf1\xf6\xe0\x58\x8f\xc4\xf9\x30\x06\xae\xad\x6c\xbd\x82\x66\xbd\xed\xba\x04\xdc\xf5\xe0\x33\x95\xad\x97\x1f\x79\x06\xbf\x0d\xf6\xc3\xa2\xdd\x06\x9b\x45\xa7\xa9\xdc\x25\x14\xae\x47\xc8\xb8\xda\xb4\x95\xe7\x6d\xd3\xa5\xf4\x5c\x6d\xaf\xe7\x39\x5c\xcf\x7c\x59\x2f\x8e\xeb\x15\xaa\xb6\x7c\x6b\x3f\x3d\x02\x28\x2c\xc0\xea\x5a\x60\xfd\x0c\x16\x96\x3c\xbd\x8e\xb0\x94\x9b\xf0\x9a\xea\xda\xda\x57\x65\xfa\x2f\x6d\x2f\x6f\x9b\x80\x99\x27\xae\x94\x87\x7e\x13\x6f\x29\xdd\x59\xb0\xfa\xaf\xa9\x5d\x1b\x1e\xbd\xde\xf5\x3c\x63\xfa\x7c\x6d\x03\x59\x10\x38\x53\xff\x28\x1d\x9c\xe4\xb9\x78\x92\x05\xa7\x3f\x5b\x3a\x16\x40\x60\x6d\xf4\x50\x38\xda\x47\x57\x3b\xae\x71\x60\x2a\xa7\x34\xaa\xeb\x0f\xc2\x03\xda\xb7\xac\x3a\xa6\xf9\x90\xa2\x93\x93\x3f\x53\x5a\x8f\x86\x75\x49\xf9\xf5\x68\x89\x3c\xf9\x59\x34\xe5\x69\x33\x0f\x0e\x13\x2d\xb6\x36\xb2\x26\xdd\xf5\xf0\x38\x4f\x5a\x8f\x66\x31\x5d\x67\xe5\xb9\xda\x70\xf1\x24\x8f\x10\xba\x1e\xad\xe8\x1a\x67\x79\x68\xb0\xc1\xe4\x79\xae\xeb\xe9\x5b\x5e\x5c\x59\xf4\x5d\x0f\x6c\xde\x31\xb5\x5e\xfe\x71\xa6\x15\x98\xa4\x0f\x60\x97\x98\xae\x32\x57\x3e\x25\xc4\x94\x97\x27\x5f\x4f\x79\x24\xbc\x29\xad\x47\x4b\xbb\xca\x6c\x6d\xdb\xfa\x60\xab\x93\xa5\x85\x5c\x74\x9a\x2c\x07\x7a\x9f\xa5\x3d\x6d\x70\x7a\xca\x83\xcf\xf5\x9c\x4d\x78\x4c\xf9\x79\xeb\xb8\xc6\x87\xab\xbf\x36\xbe\x51\x5c\xb6\xe7\x6a\xe2\x43\x16\x2e\x64\xc0\x9a\xac\xa1\xf5\xf0\xc3\x35\x0e\x68\x3d\x17\xad\x2e\xfa\x8c\x84\xe5\x91\xbe\x59\xbf\xea\x3a\x8f\x56\xe3\x86\x32\x9a\x77\xbd\x52\x33\x8f\x96\xc9\x5b\x96\xb7\xcf\xf4\xd7\xa5\x65\x4c\x5a\xda\xd5\xa6\x0d\x26\x4f\x3b\x59\x34\xdb\xda\xb4\xe1\xb7\x3d\x2b\x13\x6d\x36\x7c\xae\xe7\xe5\xea\x53\x9e\x76\x5d\xed\xbb\xf0\xe4\xa5\xd9\x35\x46\x5d\xcf\x24\xcf\x33\x30\xd1\x66\x82\x75\xf1\xcb\x86\xcb\x35\xaf\xd6\xd5\x37\x0f\x66\x69\xe5\xf2\xf9\x60\xb8\xd7\x61\x75\x5f\x8c\x4a\xb6\xbc\xfe\xb4\xcd\xff\xcc\xab\xc9\x04\x7a\xdb\xb5\xf5\x8f\x5e\xbb\x7c\x4e\xda\x0f\x4a\x8b\x0e\x6b\xab\x63\x6a\xd7\xd6\x1f\x8a\x47\x2f\xa7\xfd\xb2\xf1\xd4\xe6\x97\xbb\x9e\xbb\x89\x4f\x34\x51\x3e\xd8\x68\x31\xf5\xc5\xa6\xed\x4c\xcf\xd9\xf6\x7c\xf3\x26\x13\xfd\xb6\xf1\xe4\x6a\x57\x95\xbb\x9e\xa5\x80\xb9\xcf\xb4\x6d\x93\x65\x41\xcb\xb3\x78\x60\xba\xa6\x34\x51\xba\xe9\xbd\x69\x5c\x65\x59\x22\x00\x20\x6c\x12\x90\x4e\x24\x1b\x41\xb6\x4e\x51\x01\x42\xcb\xf5\x32\x4a\xb0\x0e\x67\x6b\xc3\x04\x6f\xa2\xc1\x44\xa7\x4b\x3a\xbb\xfa\xee\x62\x6c\xd6\x64\xb7\xb5\xb5\xde\x32\xd3\x03\xd7\xdb\xb4\x09\x41\x93\xd0\xcf\x9a\x94\x2e\x61\x45\xfb\xeb\x9a\x40\x26\x21\x45\x71\x0b\xf4\xe2\xa5\x89\xb6\x91\xa5\x65\x75\xba\x4d\xf7\x79\x04\x1c\xa5\xd1\x25\xf4\x4c\xb4\xd2\x76\x6d\xfd\xb3\x09\x7a\x97\x90\xd4\x71\x52\xfa\x6c\x34\xd2\xfe\xeb\xf5\x75\x5a\xb2\x04\xab\xb1\x03\x26\x69\x96\x67\x12\x64\x31\xd2\x36\xe0\x4d\x38\xb2\xda\xb3\xb5\x49\xeb\xdb\xb4\x8d\x4d\x60\x5e\x4f\x9b\xb4\x3d\x5b\x9f\x4c\xed\x98\xca\x6c\x7d\xa0\x65\xae\x36\x5d\xf5\xb2\x68\xc9\xe2\xa9\x09\xc6\xd6\x9e\xa9\x9e\x8d\x47\xb4\x2c\x2f\xcd\x36\x9c\x26\x5a\x5c\xf4\xb9\xc6\x68\x9e\xbe\x99\x52\x9e\xf1\x92\x05\xef\x7a\xee\x59\xf4\xd9\x68\xa2\xb8\x6d\x75\x5c\xbc\x37\x16\x64\x0d\x28\x17\x33\x74\x82\x6c\x65\x59\x75\x4d\x38\xb2\xe8\xb4\xa5\xeb\x81\xf9\xb0\xf0\xfe\xb7\x86\xcb\x33\xf1\x68\x5e\xd6\x24\x5b\x4f\xbb\xae\xb6\xd7\xc3\xd3\xac\xdf\xf5\xe2\xb3\xe1\x77\xc1\x66\xd5\xcb\x23\x74\xaf\x17\xdf\x7a\xd3\x7a\x84\x53\x9e\xb6\x32\xfb\xc6\xe2\x0c\x97\xaf\xe5\xca\xd3\xef\x75\xc4\xa6\x18\x40\x96\xa9\xe7\x8a\x3b\x98\xe0\x5d\x65\x59\xbe\xaa\x0d\x9e\xd2\xfb\x41\xda\xb5\xd1\x92\x67\x80\xe4\x31\x35\xf3\xb4\x6d\x2b\x33\xc5\x23\x4c\x75\x6c\x63\xc0\x54\xce\x73\xd4\x31\xd1\x63\xaa\x93\x67\x1c\xd0\x3e\x98\x7e\x4d\xed\xaf\xc7\x85\x32\xb5\x6d\xa3\xdd\x34\xb6\xb3\xfa\x96\xa7\x6d\x13\x1e\x53\xdb\x26\x9a\x4d\xd7\x79\xca\x6c\x7d\x48\xf2\x5c\x12\xd9\x36\x10\x75\xed\xe2\xf2\x05\x75\x3c\xa6\x01\x4a\x7d\x2c\xca\x60\x93\x80\xb2\xf9\xc1\x7a\xbe\xee\x03\x53\x5a\x4c\x0c\xca\x33\xd9\x29\x3d\x94\x26\xbd\x5d\x4a\x0f\x1d\x28\xb6\xf6\xe9\x35\xad\x47\xfb\x62\x82\xbf\x1e\x7a\x4d\xbe\xae\xa9\x2e\xc5\x9f\x57\x6b\xda\x14\x84\x6d\xac\x65\x69\x7e\x3a\x5e\x5c\x02\x8b\xb6\x4f\xc7\x46\x9e\xe4\xc2\x99\x25\xa0\x4c\xbc\xa1\x63\xc3\x36\x71\x5d\x4a\xc2\x95\xe7\x52\x20\xa6\xba\x74\x0c\xd8\x9e\x41\xcf\x5c\x36\x01\xd2\x07\x6b\xfa\x35\x5d\xbb\x1a\xa5\xd7\xb6\x8e\xd9\x60\x6d\x34\x65\xd1\x70\x3d\xfd\xb0\xe1\x73\xd1\xe0\x82\x35\xc1\xe5\xc5\x4f\xeb\xd3\x3c\x13\x9e\x24\x6d\xdb\xb6\x8d\xeb\xd7\xea\xef\x63\x1f\xfb\x58\x0a\xf6\x0b\x5f\xf8\x02\xff\xc2\x17\xbe\xc0\xe9\xb5\xaa\xaf\xea\x51\xfc\x19\x34\x53\x98\x3c\x7d\xb0\xd5\xa7\x78\x68\x7b\x59\xcf\xdd\x06\xe7\xa2\xfb\x83\xc2\xb8\xfa\xe6\xa2\xdd\x56\x3f\x8b\xbf\x36\x1a\xf2\xf0\xde\x45\x67\x4f\xbe\x69\x03\x18\x0c\x79\x26\xc9\x08\xf4\x4a\x7c\xa0\x57\xe2\x65\x69\x07\x57\x99\x2d\x51\x98\x2c\x5a\xf3\x9a\x9d\x79\xdb\x70\xc1\x7d\x58\xc9\x89\xd7\xf7\x7d\xde\x6e\xb7\x93\xf2\xdb\x6e\xbb\x8d\xbf\xf4\xd2\x4b\xe2\xb7\x7e\xeb\xb7\x92\x7e\x0f\x0f\x0f\xa3\x58\x2c\xae\xab\x51\x29\x25\x18\x63\xc6\x3c\x29\x25\x00\x24\xe5\x4b\x4b\x4b\x58\x59\x59\x01\x00\xfc\xdb\xbf\xfd\x5b\x8a\xd6\xb1\xb1\x31\x7e\xed\xda\x35\x17\xbf\x6c\xe3\xc6\x05\x6b\xab\x6f\x73\x09\x6c\x16\x9c\x69\x6c\xd8\xda\xc9\xa2\x9b\x26\x17\x6d\x79\xf0\x9b\xee\x6d\xf4\x9a\xd2\x7a\x60\xf5\x76\x4c\xcf\xc1\x4a\x13\x15\x1c\x59\x1d\x05\xcc\x1d\xcf\x73\x6d\x23\x26\xab\x6c\xbd\x0c\x76\x3d\xec\xf5\xd0\x60\x12\x92\x80\xf9\xc1\xd8\xae\xb3\x04\xab\xcd\x4c\xed\xa1\x7b\x70\x70\x90\xcf\xcd\xcd\x89\xe3\xc7\x8f\x73\xdf\xf7\x51\x2a\x95\x30\x3a\x3a\x0a\x00\xa9\x89\x2e\xa5\xe4\xfa\x24\x07\xc0\x0d\x82\x20\x81\xd1\x7f\x09\x8c\x9e\x27\x68\xbe\x94\x52\x90\x76\x05\x15\x2e\x33\x33\x33\x68\x36\x9b\x00\x80\xc7\x1f\x7f\x5c\xa8\x3e\x70\xce\xb9\x10\xc2\x35\x91\x5c\x7c\x34\xa5\x3c\x42\x04\x86\xbc\xbc\xca\xcc\x56\xc7\x46\x83\x4a\x59\x02\x32\x8f\xd2\x74\xcd\x4d\x8a\x6f\x3d\x78\x5d\x74\xeb\x78\x8d\xcf\x82\x19\x0a\x68\x25\x97\xa4\x07\xa9\xeb\x9a\x3c\xb4\x0d\xbd\x1d\x58\xf2\x4d\x52\xdd\xd6\x49\xd7\x04\x34\x5d\xbb\xe0\x6c\xc9\xf5\x00\x6d\xe5\x14\xa7\x53\x6b\x15\x0a\x05\xf4\xf5\xf5\xa1\xaf\xaf\x0f\x37\xdd\x74\x13\x00\x60\x68\x68\x08\x1b\x37\x6e\xa4\x13\x3d\xa9\xab\x04\x81\xc2\x47\xef\x69\xbe\xa9\x3e\x90\x12\x40\x82\xb4\x25\x68\xbe\xea\x5b\x2c\x30\x52\xf9\xb1\xf0\x10\x86\xfa\x90\x52\xe2\xe2\xc5\x8b\xe8\x74\x3a\x78\xea\xa9\xa7\x44\xb5\x5a\xe5\x52\x4a\xac\xac\xac\x5c\xcf\xb3\xb1\xf1\x9f\x26\xd7\x98\xc9\xaa\x93\x25\x40\x5c\xf0\x59\x4a\x66\x3d\xf3\x89\xe6\x03\xf9\xf9\x71\xbd\x7d\xb1\xde\xd3\x55\x15\x97\x74\xcb\x92\xca\x1f\x44\x7a\xc2\x01\x4f\x09\xb7\x49\x58\x90\xf2\xbc\x0c\xb2\x95\xe7\x65\x76\x96\x96\x72\xc1\x27\x34\x6c\xd9\xb2\x85\xef\xda\xb5\x0b\xd5\x6a\x15\xdb\xb7\x6f\xb7\xf5\x4f\xff\xa5\xd7\xd1\x9f\x04\x67\x00\xe7\x12\x1e\x97\xcc\x8b\xef\x3d\x3f\xe0\x5e\x39\xe0\x7e\x39\xe0\x7e\x5f\x87\x57\x0a\x82\x79\x5c\x30\xaf\x10\xc3\x31\x09\x8f\x01\x5c\x00\x81\x64\x32\x10\x0c\x81\x60\x10\x9d\x82\x68\xad\x16\x45\xab\xed\x89\x76\xbb\x20\xdb\x6b\x9e\x08\x42\x2e\x03\xc9\x10\x08\x48\x21\x23\xb8\x00\x00\x24\xa4\x40\x24\x30\x44\xdc\x2f\xf5\x07\x74\x85\x4e\x72\xaf\x3a\xd7\xe9\x74\x70\xe6\xcc\x19\x5c\xba\x74\x09\x13\x13\x13\xc2\xf3\x3c\x1e\x04\x41\xde\x67\x41\x79\x99\xf7\x39\xe6\x79\x5e\x26\xb8\x3c\xca\xf4\x7a\xe0\xfe\x5b\xd4\x75\xf5\xc7\xa5\xe8\x7a\xf2\x5c\xae\x8a\x9e\xf2\x4a\x65\x1b\xbc\x0d\x27\x25\xc8\x85\xd3\x96\xb2\x34\x95\x69\x60\x50\x78\x97\x80\xca\x4b\x37\x85\xb1\x95\x0b\x00\x28\x16\x8b\xfc\xd6\x5b\x6f\x05\x00\xdc\x74\xd3\x4d\xe0\x3c\x01\xe7\x40\x8f\xd5\x90\x12\x0c\x00\x3c\xc4\xc2\xc1\x13\xcc\xab\xb4\x0b\xe5\x81\xb5\x42\xad\xba\x56\x18\xec\xeb\x14\x86\x6b\xad\xc2\x78\xad\xe5\x6d\x19\x58\x2b\x8c\x17\x43\x56\xf7\x04\xab\x16\x04\xaf\x72\x89\x2a\x97\xac\xca\x24\x7c\xd6\xa5\xcf\x63\x11\xde\x24\x49\x96\x9a\xf0\x81\x64\x68\x0b\xc8\x96\xe0\x68\x0a\x26\x9b\x01\x97\x0b\x6b\x9e\x98\x6b\xfa\x62\x66\xc5\x0f\xaf\x2d\x97\x82\xa9\x46\x29\x9c\x6a\x94\xc2\xc9\xa5\x52\xb8\xb4\xe2\x87\xcd\xb0\x20\x83\x80\xcb\x40\x02\x01\x00\x21\x21\x03\x25\x50\x94\x95\x42\xf8\x29\xe2\x7e\x63\x76\x76\x16\x97\x2f\x5f\xc6\xaf\x7e\xf5\x2b\xc1\x18\xe3\x9a\xdb\x95\xc5\x57\xd7\xa4\xb0\xd5\xcf\x7a\x9e\x59\xd6\x41\x1e\x5c\x2e\x1a\xf2\xe2\xcd\xb2\x24\x68\xbb\x79\x85\x8d\xab\x2d\x2b\xdd\xba\xe0\x50\x85\x7a\x72\x21\x70\x11\x6b\xeb\x9c\x6d\x12\x23\x03\xd6\xa6\xf1\x4d\xf5\x5c\xf4\x67\x09\x19\x13\x7e\x17\x8d\xb4\x1d\x3d\xf5\xb4\x59\xad\x56\xd1\x68\x34\x04\x00\x3c\xf2\xc8\x23\x3d\x02\x42\x73\x21\x12\xe1\x80\x68\x52\x7b\xc5\x90\xf9\x95\x4e\xa1\xb2\xb1\xe9\xd5\xeb\xab\xde\xe6\xfa\xaa\xb7\x7d\xb0\x59\xdc\xbb\xa1\xe5\xed\x29\x75\xf8\x56\x4f\xb0\x51\x0e\x54\x98\x44\x19\x60\x91\xe5\xa1\x87\x2d\xa4\x04\x1c\x71\x0c\x29\xe3\xc1\xc0\xf4\x32\x40\x82\x21\x5d\x2b\x9d\xe2\x29\x2d\x24\x64\x5b\x32\x34\x43\x2e\xe7\x3a\x05\x39\xd9\x2c\x86\x17\xe7\x2a\xc1\xd9\xd9\xfe\xce\x99\xf9\xbe\xce\xc5\xf9\x4a\x30\xb5\x52\x0a\x9b\x2d\x4f\xb4\x05\x64\x80\xc8\x32\x09\x90\xb6\x4c\x4c\x16\x0a\x1e\x7d\xf4\xd1\xac\x31\xb3\xde\x7c\x97\xa2\x30\xe1\x70\x09\x8e\xeb\x19\x87\xa6\xf6\x5c\x6d\xeb\x6d\xb9\x2c\x24\x97\xc0\x34\xd1\x91\x27\xdf\xd8\xa6\x49\x70\xe4\xd5\xd0\xeb\x9d\x74\xb6\xf2\x3c\x42\x81\x76\x02\x70\x3f\x1c\x17\x1d\x59\xc2\x4b\x25\x1b\x53\x69\x72\xf1\x2a\x81\xf9\xf2\x97\xbf\xcc\x2b\x95\x0a\x3c\xcf\xd3\xcb\x39\xf9\xf3\x00\x78\x90\xf0\xfa\xdb\x85\x72\xad\x55\xa8\x0f\xaf\xf8\x9b\x47\x1b\xc5\x7d\xc3\x8d\xe2\x4d\x03\x6b\x85\x43\xa5\x80\x6f\xe7\x92\xd5\xb9\x84\x1f\xc3\x03\x3d\x93\x5b\x02\x60\xc9\x4f\x66\x4a\xe0\xd4\x45\xb7\xbe\x24\xa2\x43\xc6\x65\x2c\x46\x0f\xd9\x2d\x57\x65\x60\x5d\x0b\x41\x02\x81\x60\x68\x74\x0a\x62\x72\xd5\x17\x67\xe7\xfa\x3a\x6f\x4d\x0f\x74\xde\x9e\xaa\xb6\x27\x16\xfa\x82\x99\xa5\x52\xd8\x08\x0b\x32\x90\x52\x06\x8c\xb1\x20\xb6\x46\x02\xdd\x2a\x91\x52\x0a\x00\x68\xb5\x5a\xf8\xfb\xbf\xff\x7b\x31\x32\x32\xc2\xa7\xa7\xa7\x5d\x3d\xca\xd2\xac\x79\xac\xc6\x2c\xdc\xeb\x29\xcb\x52\xb2\x14\xc6\x45\x5f\x96\x05\x61\xb3\x4e\xb2\x92\x4b\xd0\xf4\xe4\x99\x86\x55\x96\x75\xb0\x5e\xcd\x6e\xd2\xcc\x59\x82\xc1\x24\x48\xb2\x98\x0c\xf4\x32\xc8\x56\x66\x62\x66\x16\x1e\x97\xd6\xa1\x30\xd8\xb7\x6f\x1f\xdf\xb4\x69\x13\xb6\x6d\xdb\x86\x72\xb9\x0c\xce\x39\xb5\x28\xba\x82\x02\xf0\xfc\x80\x95\x37\x36\x8b\x83\x63\x0d\x7f\xfb\xe6\x45\xff\xc6\xa1\x95\xe2\x47\xfb\xdb\x85\x7d\x7e\xc8\x37\x73\x81\x2a\x03\xfc\x5e\x01\x61\x48\x06\xcb\x22\x12\x00\xe9\xec\x68\x8a\xf7\x4a\x96\x54\x4e\x8f\x40\xd1\xf2\x13\x21\x81\xc4\xec\x30\xc2\xea\x34\x44\x02\x25\x10\x0c\xad\x80\xcb\xb9\x56\x51\x9c\x5f\xe8\x0b\xde\xbc\x56\x6d\x9f\xb8\xb2\x61\xed\xec\x7c\x25\x98\x5a\x2c\x07\x4b\xb1\x5b\x13\x20\x76\x73\xe2\x5f\x20\xb2\x42\x44\x10\x04\xe8\x74\x3a\xf8\x87\x7f\xf8\x87\x3c\xda\x1e\x06\x18\x95\xd6\x6b\xc9\xb8\xe0\xf2\xce\x17\x93\xe2\xcb\x43\xff\x7a\x60\x3f\x2c\x3c\x56\x58\xe6\x28\xb4\x4d\x34\xd7\xa4\xb7\x5d\xbb\x24\xb4\xde\x3e\xcd\xcf\x32\xad\x4c\xf4\x51\xf8\x2c\x29\x9f\xf7\xde\xd5\xa7\xa4\xbd\x7d\xfb\xf6\xf1\x5b\x6e\xb9\x05\xb5\x5a\x0d\x00\xa8\xa0\xe0\x52\x4a\x8f\x31\xe6\x41\xc2\xef\x6f\xf3\xca\xf0\x8a\xbf\x75\xe7\x5c\xf9\xc6\x91\x46\xf1\x96\x0d\x2d\xef\xc6\x72\x87\xef\x2e\x08\x56\x67\x80\xef\x12\x13\xca\xed\x67\x29\xd7\xa2\x2b\x0a\x94\xfc\xd0\xe5\x08\x95\x29\x46\x19\x63\x58\x9a\xbd\xfe\x44\x2c\x18\x43\x29\x20\x85\xb2\x48\x56\x7c\x71\x7a\xa6\xbf\xf3\xda\xc5\x8d\xad\x57\xaf\x0d\xb4\x27\xe6\xfb\x3a\x73\x61\x01\x6d\x29\x65\x5b\x73\x6b\x94\x35\x02\x00\x62\x69\x69\x09\xdf\xfe\xf6\xb7\xc5\xa6\x4d\x9b\xf8\xd5\xab\x57\x6d\x13\xd4\xa6\xa1\x6d\x65\x7a\x72\x29\xb7\xac\x36\x6c\x38\xd6\x43\x4b\x96\x70\xca\xc2\x97\x35\x37\xb2\x94\xb5\xf1\xd7\xf4\xae\x8a\xcb\x34\xcf\x63\x1a\x51\x78\x8a\x53\xbf\xa7\x79\x59\x78\xb3\xac\x17\x57\xdb\x2e\x9c\x59\xe6\x21\x4d\x29\x3e\x8c\x8c\x8c\xe0\xa6\x9b\x6e\xc2\xb6\x6d\xdb\xe0\xfb\x7e\x22\x2c\xe2\xf8\x05\x07\xe0\x49\x29\x3d\x06\xe6\xf7\xb7\x0b\xd5\xe1\x95\xe2\xd6\x5d\x73\xe5\x23\xe3\x4b\xfe\x9d\xf5\xd5\xe2\x91\x62\xc8\x36\x73\x89\x0a\x03\xd3\xda\x96\x80\x64\xdd\xf9\xd6\x33\x07\x35\x35\x2f\x35\xed\xaf\xf2\x65\x5c\xb1\xeb\x36\x24\xb0\x91\xf5\xa1\x21\x4e\xcc\x11\x7d\x82\xa7\xdb\x4f\x5c\x16\xa9\xc1\xb0\x58\xd0\x28\x57\x85\xe9\x6e\x8d\x8c\xe3\x26\x2c\xaa\x9b\x48\xaf\x2e\x29\x9a\xe3\x13\xd1\xc5\x18\x24\x64\x3b\xe4\x72\x6e\xc5\x0f\xdf\x9d\xe9\xef\xbc\x72\xa9\xbe\xf6\xf2\xa5\xfa\xda\xe9\xf9\xbe\x60\x26\xe0\xa2\x85\xc8\xfa\x48\xac\x11\x15\x70\xed\x74\x3a\x58\x58\x58\xc0\xb9\x73\xe7\x70\xee\xdc\x39\xb5\x31\xcd\x36\xf1\xb2\x7e\xa1\xc1\xeb\x78\xa0\xdd\x53\x7c\xb6\xfc\x2c\x81\xe4\x82\xcd\xa3\x4c\x69\x3f\x3f\xec\x36\x8d\x42\xc7\x75\x74\xa0\xa9\x31\x53\x07\x60\x80\x37\xe5\xbb\x08\x37\xc1\x98\xe0\x69\xca\x92\xc6\xa6\xe4\x1a\x00\x36\xfc\x56\x3a\x1e\x78\xe0\x01\x3e\x32\x32\x02\xdf\xf7\x15\xbc\xfa\x53\x6e\x88\x5f\xea\xb0\xca\x50\xb3\xb8\xf9\x23\x33\x95\xa3\x5b\x16\xfd\x8f\xd7\x57\x8b\x47\xfc\x90\x6d\x65\x92\x55\xd4\x44\x64\x44\x40\xf4\x06\x2b\x01\xd3\x5c\xa7\x96\x47\x02\x9b\xaa\x9b\x0e\x82\x52\xf8\x04\x06\x2c\xd5\x9e\x76\xdb\x4b\x83\x2d\xe5\x88\xab\x58\xbc\xa9\x9e\x6a\x12\x32\x08\xb9\x5c\x58\x29\x8a\x77\x27\x6b\x6b\xcf\x4f\x0c\xb6\x7e\x79\x79\xc3\xda\xd9\xe5\x72\xb8\x20\x20\x5b\xba\x3b\x13\xc7\x48\x00\x40\x2c\x2c\x2c\xe0\x9f\xfe\xe9\x9f\x5c\x1a\xdf\x35\x4e\xf2\xc0\xda\x2c\x88\x2c\x1c\x79\xc7\xa8\xa9\x3d\xbd\x8d\xbc\xf3\x26\x4f\xfb\x79\x68\xea\x69\xdf\x26\x38\x28\x91\x7a\x72\x49\x3a\x0a\x67\xc3\x4d\x61\x74\x38\x9b\x44\xa5\x1d\xb1\x49\xca\xeb\x31\x2b\x4d\x7d\xb1\x4a\xdb\x43\x87\x0e\xf1\x83\x07\x0f\x62\x68\x68\x48\xa7\xa7\x2b\x2c\x24\xbc\x82\x44\xb9\x7f\xad\x30\xb8\x73\xbe\xef\xd0\xae\xd9\xf2\xbd\x63\xcb\xfe\xdd\xe5\x80\xef\x66\x92\x55\x58\xac\x8d\xa3\x89\x69\x9a\x65\xe9\x69\x94\xed\x62\x74\xe1\x69\x30\xb3\x47\xe2\x50\x8b\xc0\x52\x96\x04\x47\x55\xac\xb3\xb7\x08\x4c\x12\xc3\xa6\x67\xe6\x47\x6d\x93\xde\x74\xef\xd2\x4b\xc0\x3d\x86\x94\x5e\x03\x90\x41\xc0\xe5\xcc\x72\x29\x7c\xf3\xe2\xc6\xd6\x93\x67\x46\x56\x9f\x9b\xae\xb6\xaf\xb4\x0b\xb2\x09\x86\x36\x34\x2b\x04\x91\x20\x11\x8b\x8b\x8b\x38\x75\xea\x14\xde\x7b\xef\x3d\x2c\x2d\x2d\x21\xda\xac\x9a\x6b\x5c\xe9\xd7\x79\xcc\x78\x13\x5e\x9b\x40\xc9\x03\x9b\x75\x6f\xc3\xe7\xea\x9b\xa9\x9e\x89\x3e\x57\x1b\x49\x32\xb9\x2a\x3a\x82\x3c\xda\xd9\x39\xc9\x0c\x30\xeb\xb1\x34\x4c\xf8\x5d\x02\x23\x8f\xc9\xe9\xca\xb3\xd2\xa2\xde\x0d\xf9\xdd\xdf\xfd\x5d\x3e\x38\x38\xa8\xb6\x56\x73\xc6\x98\x17\xbb\x24\x3e\x24\x3c\x3f\x64\xd5\xb1\x65\x7f\xf3\xde\xe9\xca\xdd\x3b\xe6\xcb\xbf\x59\x5d\x2b\x1c\xe6\x12\x75\x48\xc6\x7b\x83\x93\xda\xbc\xd6\x3d\x0f\x10\x4d\x0f\xbb\x12\xa7\x93\x52\x4d\xe8\xb4\x64\x31\x4d\x5d\xf5\x5f\x76\xdd\x09\xad\x71\x6a\x81\xf4\x34\xaa\x92\xab\xdc\x52\x96\xa2\xc6\x66\xf9\xe8\x89\xf0\x4d\x42\xb6\xdb\x9e\x3c\x3f\x59\x5b\x7b\xea\xec\xd0\xea\x4f\x2f\x6e\x6c\x9d\x6e\x94\xc2\x05\xc1\xd0\x92\x88\xe2\x21\xda\xaa\x8c\x00\x80\x89\x89\x09\x3c\xf1\xc4\x13\x79\xc6\xf0\xf5\x98\xf7\x26\x58\x95\x6c\x13\x38\xef\xf8\x33\xe5\xe5\x11\x66\x79\xac\x8f\x2c\xfa\xac\xb0\xba\xe0\x70\x49\x1b\x18\x60\xf2\x08\x97\xf5\x6a\x7b\x13\x1e\x53\xfb\x59\x16\x4f\x1e\x6b\xc9\x04\xd7\x63\x39\x15\x0a\x05\xec\xdf\xbf\x1f\x37\xde\x78\x23\xea\xf5\xba\x0e\x9b\xac\x88\x40\xc2\xef\xeb\xf0\xda\xf6\xf9\xf2\xee\x7d\xd3\x7d\x9f\xd9\xb2\x58\xbe\xbf\x14\xb0\x3d\x90\xcc\xd3\x03\x94\x34\x80\xa9\x54\x7a\x2a\x94\x61\x70\x11\xa0\x60\xc1\x8c\xc1\xce\x1e\x57\x44\xb3\x12\x4c\x0b\x23\xdd\xed\xe4\xd1\x7d\x37\xbc\x21\x21\x15\x31\x0a\x77\xdc\xba\xd1\x62\xe8\xb9\xcb\x4e\x66\x97\xa4\x37\x94\x93\x17\x57\xc8\xe4\xdc\x52\x39\x78\xe9\xdc\xf0\xea\xf7\x4f\x8f\x34\x5f\x9a\xed\xef\xcc\x08\x86\x16\x58\x12\x54\x55\xc2\x43\x34\x1a\x0d\xbc\xfd\xf6\xdb\x78\xe3\x8d\x37\x4c\x0a\x84\xa6\x3c\x0a\xc8\xa5\xc0\x6c\x70\x26\x58\x9b\xd6\xcf\x12\x04\x34\xd9\xac\xfb\x3c\x8a\x9c\xc2\xd9\x3c\x09\x00\xdd\x18\x87\xa9\x61\x17\x51\x7a\x9e\xad\xc1\xf5\xd4\xa1\x65\x80\x9d\x0e\x13\x5d\x7a\x1d\xdb\x43\xcb\x23\x20\x53\x8c\xda\xb0\x61\x03\x1e\x78\xe0\x01\xf4\xf7\xf7\xab\xf7\x36\x94\x85\xe1\x31\xc6\x7c\x00\x7e\xb5\x55\xa8\xed\x9b\xae\x1c\xde\x37\xdd\xf7\xd0\xd0\x4a\xf1\xb8\x27\xf8\xb8\xcb\x5a\x48\x62\x8b\x64\x82\xf7\x24\xf3\x92\x47\x3a\x88\x29\xb5\xd9\x9d\xf2\x4e\xf4\x60\xa4\x2d\xa8\x91\xfa\xe9\x01\xe9\x5a\x22\x71\x99\xde\x99\x2c\x93\x48\xa2\x1b\x10\xb5\xc1\x52\x09\xa7\xf5\x51\xc6\x92\x93\xa5\x84\x9d\x06\x9e\x48\xb5\xae\x94\x15\x90\xad\xa6\x2f\xde\x9c\x18\x5c\xfd\xee\x3b\x63\xcd\xa7\xae\xd6\xd6\x26\x05\x47\x4b\x4a\xd9\x06\x90\x12\x20\xad\x56\x0b\x7f\xf7\x77\x7f\x97\xd7\x2d\xc8\x3b\xa9\xf2\xb8\x27\x7a\x9e\x6b\xce\xd0\xf6\x40\xea\x52\x7c\xb4\x3c\x4b\x60\x01\xf9\xfb\x67\xec\x8b\x69\xc8\xae\x57\xba\x5d\x8f\xc4\xd4\x93\x0b\x96\xe6\xc3\x50\x66\xc3\xa5\xee\xaf\xc7\x8c\xc3\xbd\xf7\xde\xcb\xf7\xec\xd9\xa3\x26\x20\x87\x16\xec\x44\x24\x30\xea\x07\xaf\x55\x8e\x1e\xbc\xd6\xff\x7b\x1b\x5a\xde\x27\xb8\x44\x95\xe9\xa6\x03\x4d\x44\x10\xb8\x17\x2a\x53\x15\x7b\x20\x52\x39\x4e\x75\xed\xf2\x19\x7a\x83\xa8\xeb\xa1\x4b\x17\x2c\x2e\xf8\x5e\xfb\xc4\x4e\x8f\xbd\xad\xfc\x34\x01\x10\x6b\x9e\x3c\x7d\x79\xc3\xda\xf7\x4e\x6c\x59\xfe\xb7\xcb\xf5\xb5\x2b\x92\xa1\x09\xa4\x2d\x10\x29\xa5\x10\x42\xe0\x95\x57\x5e\xd1\x2d\x10\xa3\x76\x45\xfe\x31\x64\xbb\x37\xe1\x02\x81\x59\xaf\x3b\x91\xc7\xd2\x37\xb5\x71\x3d\xee\x4a\x8f\x62\xb5\x3d\x87\xeb\xe9\x5c\x0a\x31\xb2\x19\x9d\x65\x19\xd0\x8e\xe5\xc1\x4b\x53\x5e\xab\x26\x81\xb9\xf7\xde\x7b\xf9\xae\x5d\xbb\xe0\x79\x5e\xb2\x61\x2b\xb1\x30\x24\xca\xfd\xed\x42\xfd\xe0\xb5\xca\x6d\x07\xaf\xf5\x7f\xa9\xbe\xea\xdd\xc5\x25\xea\x0c\xac\x37\x26\x20\xbb\x61\xca\x64\x05\x04\xd6\x10\xa6\xd9\x34\x49\x09\x9a\x64\xe1\x32\xe5\x6a\x24\x36\x41\xdc\x40\x0f\x66\xa6\x63\x60\xe8\x15\x5d\x26\x21\x20\xc1\xa4\x43\x58\x01\xda\x4c\x8e\xdc\x1b\x96\xca\x23\x95\xa8\x65\x24\xd3\xf5\xd3\xc1\x52\x03\x6f\x74\x58\x15\xad\xd5\x7e\xa9\xbc\x8e\x05\x48\xd0\xf2\xc4\xe9\x8b\x1b\xd7\xbe\xf7\xeb\xcd\x8d\x1f\x5f\xa9\xad\x5d\x14\x1c\x2d\x68\x02\x44\xc5\x41\xde\x7b\xef\x3d\xbc\xf1\xc6\x1b\x98\x9c\x9c\x04\xdc\x26\xbc\x9e\xf2\x98\xfa\xff\x5f\xc0\x67\x2a\xbf\xde\x79\x6a\xb5\x38\x5c\x44\xba\x92\xcb\x4a\xc8\x92\xc6\x79\x05\x54\x9e\x94\x25\x41\x6d\x70\x1c\x80\xf8\xfd\xdf\xff\x7d\x1e\xbb\x25\x1c\x5d\x2b\xc3\x07\xe0\x97\x3b\xbc\xb6\x7f\xaa\x72\xf4\xc6\xab\xfd\xbf\xb7\xb1\x59\xbc\xbb\x20\x31\x98\x63\x1f\x67\x9c\x72\xd8\x15\xeb\xda\x78\x95\x2f\x2a\x90\x6b\xf9\xd4\x05\x98\x9a\xac\xe9\x29\x9d\xcc\x79\x57\x22\x82\xc4\x20\x12\xd2\x3d\xd0\x05\x4a\x52\x9f\xd0\x46\x81\x55\xb0\x95\xc6\x73\xe2\x1f\xc9\x64\x7b\xd5\x17\xef\x4e\x6c\x5c\xfd\xee\x1b\x5b\x1a\x8f\x4f\x57\x3b\x97\x24\x8b\x5c\x18\x6d\x39\x17\x9d\x4e\x47\xfc\xf5\x5f\xff\xb5\xcb\x5d\x71\x8d\x53\x53\xde\x7a\xc6\xae\xcb\x4a\xcf\xb2\x3a\xd6\xeb\xb2\xe4\xed\x0b\x2d\x57\x49\x00\xdd\xe0\xa8\xca\x70\x11\xed\x62\xa6\x0b\x4e\x87\xcd\x92\x80\x79\xad\x08\x8a\x77\xbd\x34\xa4\xda\x39\x76\xec\x18\xdf\xb1\x63\x07\xca\xe5\xb2\x12\x18\x1c\x91\xc0\x28\x17\x03\x56\xd9\x3e\x5f\x3e\x74\xf3\x95\xea\x17\xc7\x97\xfc\xcf\x16\x05\x1b\x45\xbc\x51\x4b\x8f\x00\x18\x0d\x06\x18\x7c\x81\x54\xca\xb3\x5e\x62\x0f\x27\x9a\x6d\x88\x1c\xee\x40\xa6\x44\x59\x47\xb8\xb2\x07\x57\x8f\x78\x21\xb4\x51\x9b\xcb\x21\xf8\x52\x98\x7a\x85\x0e\xc5\x6e\xaa\x9d\x5c\x33\x34\x97\x4a\xc1\xeb\xa7\x47\x9b\xff\xe5\xed\xf1\x95\x67\x16\xcb\xe1\x14\x58\x62\x81\x24\xcb\xb8\x4b\x4b\x4b\xf8\xce\x77\xbe\x63\x1b\x8f\x30\xe4\x9b\xc6\xa8\x9e\xb2\xb4\x7b\x5e\x3c\x36\xdc\x2e\xba\xf2\xe2\x77\xcd\x55\x63\x52\x9c\x35\x99\xef\x14\x11\x4d\x79\xac\x07\x53\x1d\xbd\x8d\xf5\x48\xbf\x3c\xb0\xb9\xa5\xbc\x5a\x5e\xfd\xda\xd7\xbe\xc6\xcb\xe5\xb2\xaa\x9b\xc4\x31\xb8\x40\x65\x7c\xc9\xdf\x7e\xd3\xd5\xea\x6f\xed\x9c\x2b\x7f\xbe\x1c\xf0\xdd\x0c\xcc\x03\xf2\x45\xfe\x9d\x30\xeb\x5d\x8a\x40\x3e\xeb\x41\x6a\xbb\x3a\x7b\x60\xb3\x08\x32\xed\x52\x35\xdd\x1a\xf0\xa4\x02\xac\x6e\x12\x4d\x2d\x1b\x63\xa7\xd7\x03\x67\x30\x46\x7a\x5c\x98\x90\x61\x61\xae\xbf\xf3\xdc\xdb\xe3\x2b\xdf\x3a\x3d\xd2\x7c\xa5\x59\x0c\x97\x00\xa4\x36\x93\xb5\xdb\x6d\x71\xe9\xd2\x25\xfc\xec\x67\x3f\x5b\xcf\xd8\xb2\x2a\x26\xad\x1c\x16\x18\x97\x45\x70\x3d\x56\x7b\x1e\x7a\x5d\x29\xb3\x4d\x2a\x38\x5c\x9a\x5e\x4f\x79\xac\x13\x9b\xb4\x33\xb5\x91\xe5\xa3\x65\xb5\x6d\xa2\xd9\xfa\x10\xeb\xf5\x3a\x3f\x7a\xf4\x28\x76\xef\xde\xad\xea\x71\x29\xa5\x87\xe8\xfd\x90\x72\xad\x55\x18\xbe\x61\xb2\xff\x13\x07\xaf\xf5\x7f\xb5\xba\x56\x38\xc2\x24\x2b\xa7\x96\x55\x55\x4c\x80\xdc\x03\xe8\x31\x14\x68\xfc\x20\x05\x44\xcc\x78\x48\xa4\x57\x43\x18\x5d\x7e\xd5\x62\x1b\x29\x7a\x7a\xad\x7a\xa9\x84\x01\x08\x6c\xec\x63\xa4\xe8\xb7\xe1\x8b\x75\x36\xd9\x48\x0e\xd6\x43\x7b\xf4\x2f\xb2\xb0\x14\x5e\x19\x97\xe9\x75\x2d\x82\x25\x8e\xcd\x80\xb1\xa4\x5d\xe8\x71\x13\x0a\x4c\xe3\x31\xd4\x12\xa1\xcf\x89\xd8\x40\x80\x44\xa7\x20\xaf\x5c\xda\xb0\xf6\x2f\x27\xb6\x2e\x7f\xe7\xca\x86\xb5\x89\x80\xc9\x26\x80\x16\x00\xf5\x82\x9d\x98\x9d\x9d\xc5\x77\xbf\xfb\xdd\x3c\xda\xdb\x35\xd6\xf3\xc4\x19\x6c\x78\xf2\x08\x22\x57\xb2\xc1\xdb\xe2\x18\x2e\xba\x52\x78\x94\xab\xb2\x5e\x3f\x89\x96\xbb\x98\x63\x23\x90\x12\xe6\x72\x5d\xf2\xc2\xe8\x6d\x02\x16\x06\xfc\xe1\x1f\xfe\x21\xf7\x7d\x3f\xbd\xbc\x0a\x56\xf6\x04\xab\xee\x9c\x2b\x1f\xb8\xe5\xd2\xc0\x57\xc7\x96\xfd\xfb\x0b\x92\xd5\x4d\xc1\x44\x3d\x07\x88\x9d\x06\xc9\x7a\xe2\x7f\xba\xa7\x62\x84\x8d\x27\x98\x04\x03\xd3\x66\xad\xed\x15\x15\x75\x47\xe3\x89\xc9\x9e\x8d\x94\x55\x42\x26\x58\x4c\x40\x32\xa1\x24\x11\x66\x44\x00\x29\xd8\x6e\x67\x75\x7c\x29\x09\x15\xfd\x30\x2d\xe6\xa1\x6f\x29\xa5\xdc\xa3\x31\x0c\xc8\x6e\x7b\x20\x1d\x87\x0e\x17\x67\x6a\xfb\x4c\x12\x9a\xb5\x98\x46\xba\xff\xe8\xd2\x41\xf0\xca\x88\xce\x60\xc5\x17\x6f\xbd\x33\xb6\xf2\xcd\xb7\x36\x35\x52\xee\x0b\x62\xeb\x23\x0c\x43\x71\xe1\xc2\x05\x3c\xf5\xd4\x53\x79\x2c\x04\x97\x95\xa1\x97\xbb\xf0\xb8\xdc\x6c\x13\x8e\x3c\x78\x69\x72\x85\x1b\x5c\xe5\x09\x7d\x8c\x66\x90\xca\x2e\xc4\x79\x4c\x31\xbd\xcc\xc6\x14\x18\xe0\x68\x1e\xc5\xeb\x62\x90\xf5\xc1\x7e\xfc\xe3\x1f\xe7\xfb\xf6\xed\x43\xb1\x58\xe4\x71\xbe\x27\xa5\xf4\x19\x58\xa5\xbe\xea\x0d\xdf\x7a\x69\xe0\xfe\x7d\xd3\x7d\x7f\x52\x8a\xb6\x86\x73\x63\x70\x4e\x4b\x34\x9a\x90\xac\x46\xf4\xd8\xf5\xf1\x74\xd3\x51\x19\x62\x03\xfa\xec\x77\xb9\x07\xa9\x17\xce\x52\x6f\xc4\xa6\x2d\x12\x53\xbc\xa1\x6b\xce\x93\xba\xaa\x2f\x24\xbc\x61\x5a\x61\x96\xf1\x3a\x2e\x8d\x64\xd8\xdc\x07\xf4\xd0\x45\x2c\x97\x34\x13\x7b\x85\x18\x23\x56\x85\xc5\x95\x52\x6d\x81\x31\x6d\x03\x9c\xc6\x81\xd4\xfe\x16\x24\x2f\xe5\x85\x4c\x36\xa6\xab\xed\x1f\xbd\xbc\x7d\xf9\xaf\x27\x36\xae\xbe\x1b\x16\xd0\x00\xd0\x8a\x63\x1f\x89\xf5\xf1\xf8\xe3\x8f\xa3\xd9\x6c\xe6\x19\xd7\x59\x8a\x54\x4f\x2e\x6b\xdf\x25\x54\x6c\x02\x26\x4f\x1e\xa5\xdf\x74\x6d\xa3\x01\x80\xf9\x5d\x15\x4a\xa8\xcb\x5c\x72\xc1\xda\x08\xfb\x20\x3e\x9c\x4b\xb0\xd0\x8e\x26\x69\xc7\x8e\x1d\xfc\xf0\xe1\xc3\xd8\xb4\x69\x93\x82\x57\x3b\x3e\xcb\x05\x89\xea\x47\x66\x2a\x87\x6e\x7f\xaf\xf6\xa7\x1b\x9b\xde\x7d\x0c\xcc\xa7\x56\x46\x62\x3d\xa4\xb4\x96\x5b\xa0\xa4\xa6\xbe\x69\xa3\x96\x3e\x29\x53\xf9\xf1\x8d\xc5\x82\xb0\x5d\xa5\x69\xd2\x66\x1f\xd0\x33\x9b\x7b\xdc\xa6\x64\xd5\x44\x17\x56\x64\x76\x1a\xfc\x8d\x64\x89\x58\xb7\x0e\x14\x2c\x95\x22\xa4\xef\x29\x38\xf4\x0a\xa8\x1e\xf7\x0f\x66\x1e\x26\xc2\x21\x65\x89\x18\x38\x64\x90\x6e\x29\x6b\x85\x01\x2d\x2f\x7c\xf7\x9d\xf1\xe6\xff\xf5\xda\xd6\xe5\x27\x1a\x7e\x38\x27\xa3\x17\xe9\xf4\xf7\x60\xf0\xf4\xd3\x4f\xe3\xd4\xa9\x53\x79\x27\xf1\xf5\x58\x29\xb6\x94\xc7\xd2\x30\xc1\x67\xb5\x91\xd7\x70\x48\xe1\x29\x58\x90\x4a\xcb\x2f\x43\x5a\x41\xb9\x60\x6d\xd7\x74\x98\xd9\xee\x39\xba\x8f\x59\xfd\x09\x2d\x5f\x87\x57\x65\x14\x17\x07\x20\xbf\xf4\xa5\x2f\xb1\x81\x81\x01\x75\xef\x03\x28\x01\xa8\xf4\xb7\xf9\xf0\x5d\x13\xf5\x87\x6e\xbb\x58\xfb\x8b\xea\x9a\x77\x1b\x07\x2b\x28\x33\x9b\x69\x0e\xb6\x6a\x5c\x9f\x30\xe9\x4f\x03\x44\xbf\x2a\x8b\x69\xff\x69\x81\x3e\xae\x75\x37\x21\x05\x1b\x73\x58\xc9\x00\xa9\x69\xf7\x08\x5c\x65\xea\x33\x40\x6b\x07\x29\x42\x7a\x04\x47\x6a\xde\x69\x33\x36\x65\x6d\xc4\x74\xe8\xcd\x50\x61\xc9\x62\xaa\x12\x18\x86\x74\x9b\x16\x53\x44\x32\xc2\x3f\x86\x9e\x0d\xa4\x29\x6b\x86\x69\x3c\x20\xb2\xb8\x4b\xb7\xde\x67\x9d\x46\x72\x91\xf0\x54\x8b\x7f\xc4\xb1\x95\x62\xc8\x87\x47\x1b\xfe\x27\xb6\x2e\x96\x37\x37\x4a\xe1\xa5\xa5\xbe\xb0\x21\x91\x3e\xc5\x7d\xc7\x8e\x1d\xf2\xb5\xd7\x5e\xd3\xc7\x1c\xc8\xb5\x1a\x9f\x12\xe9\xb9\xa5\xee\xa9\xf8\xa4\x63\x56\x25\x7d\x9c\x9b\xf0\xe8\xdc\xd5\xf3\x68\xfb\x12\xf6\x36\x28\x1d\x7a\xbf\xa8\xe0\x49\xe1\x2c\x10\xa4\xb4\x71\xdb\x24\xa5\x65\xf4\x5a\x1f\x46\x26\x3c\xb4\xbd\xbc\x1d\x72\x31\x89\xb6\x2d\x01\xc8\xaf\x7f\xfd\xeb\xea\x4c\x8c\x02\x22\x81\x51\x62\x12\x03\x3b\xe6\xcb\x07\x8f\x9f\xd9\xf8\x3f\xee\x9a\xeb\x7b\xd8\x13\x6c\x84\xc5\x13\x85\xc5\xc3\x49\x0d\xc4\xee\xb2\x6a\xd7\x04\x20\xdf\x13\x89\x06\x9e\x39\xd0\xd0\xd5\x8a\xb2\x2b\x13\xec\xfb\xcc\xa3\x06\x25\xb4\x78\x49\x8f\x99\xae\x21\x4a\xae\x55\xdc\xc4\x80\x57\x69\x64\x7d\xc6\x29\xb2\x12\x82\xba\xc4\xaa\xb6\xb5\xea\x5a\x69\x3a\x78\xa9\xe6\x71\x3a\xe6\x12\x2f\x82\x2a\x2b\x26\xde\x18\xd7\x95\x4f\x24\xb8\x4a\x85\x86\xc5\xd0\x49\x2d\xcb\xca\x34\x8d\xc9\xb3\x8a\xcb\xd2\xde\xa2\x2e\xa5\x15\xdd\x5d\x57\x8f\x91\xce\x32\xc9\x8a\xd5\x36\x3f\xb8\x63\xbe\xfc\xb1\xa2\x60\xf3\x33\x03\x9d\xab\x21\x47\xc8\x22\xe6\x0a\x00\x62\xd7\xae\x5d\xec\x9d\x77\xde\x51\x93\x4b\x9f\x68\x54\x80\xe8\x8a\x4e\xb7\x4a\x74\x21\x42\xc7\x33\x15\xb9\x8a\x0d\x3a\xac\x6e\x21\x98\x14\x37\x15\x2c\x34\x99\xe6\x2e\x15\x6a\x7a\x5e\x4f\x9f\x0a\x04\x19\x95\x6a\xb4\xe3\xfa\x24\x35\x75\x4c\x35\xa2\x08\x70\x99\x51\x8c\xd4\xb5\x09\x18\x0a\xab\x77\x0a\x48\x33\x00\x00\x44\xb9\x5c\x66\xf7\xdf\x7f\x3f\x3b\x76\xec\x18\xd3\x0e\xd2\x29\x31\xc6\xfa\x4a\x1d\x3e\xf8\xd1\xf7\x07\xee\xbb\x73\x62\xc3\x7f\x1a\x5c\xf5\x3e\xc1\x24\xf3\x55\x34\x3f\x49\xba\x56\xd5\x35\x39\x79\x3f\x22\xca\x22\x2a\x35\x19\xc4\x48\x60\x19\xd5\xda\x06\xa1\x91\xf8\xdf\xac\x3b\x29\x98\xf6\x5f\x27\x48\x87\x55\x90\xba\x85\xd4\x45\xda\x6b\x1d\x45\x71\x8d\x34\xad\xdd\x32\x92\x17\x75\x22\xd1\xf4\x4c\x99\x4b\xc4\x2d\xd0\xd7\x4d\x22\xb1\x9b\x32\x05\x22\x18\xa9\xf3\x30\xd2\xf8\xfa\x0c\x4f\xd8\x18\xf3\x27\xb1\x34\x64\x72\x97\xb4\xad\x89\xed\x6e\x9f\x99\x12\x2e\xda\x0e\x5e\xdd\x12\x89\x61\x22\xb9\xa1\x0f\x27\x45\x0b\x12\x3e\x31\x30\xe6\x09\x36\x32\xbe\xec\xdf\x31\xd2\xf0\xab\xb3\xfd\x9d\x73\xcd\xa2\x68\x82\x21\x64\x8c\xa1\xaf\xaf\x4f\x68\x56\x07\x21\xa4\x67\x22\x93\x01\x92\x1a\xc3\x74\xfe\x08\x52\xae\x3f\x19\xe1\x80\x05\xd2\xf3\x54\x87\x35\x95\xdb\xe8\x04\xa9\x67\x13\x84\x09\x70\x96\x8f\xa4\xee\x55\x72\xad\x5c\xa8\x72\x57\x50\x33\x0b\x9f\xc9\xe7\xa2\xb8\x8d\xbf\x07\x0f\x1e\xc4\xad\xb7\xde\x8a\xfe\xfe\x7e\x00\xe0\x52\x4a\x3f\x7e\x21\xad\xb2\x61\xd5\x1b\xbd\x73\xa2\xf6\x95\xdd\x33\x7d\x5f\x2b\x0a\x36\x6a\x0a\x9a\x25\xd7\x5d\xe5\xa4\x69\xd3\x1e\x05\x6d\x9a\xab\x44\x4b\xdb\x36\x2e\x75\x21\xf3\xed\xd1\xd0\x27\x57\x8c\xc5\x12\x37\x91\x90\x90\x0c\x42\x30\x29\x02\x2e\x83\x76\x41\xb6\x3a\x05\xd1\xee\x78\xb2\xbd\x56\x10\xed\x35\x2f\xba\x0f\xb9\x0c\xc2\x18\x2e\xe4\x91\x0f\xcf\x25\x78\x41\x82\x73\xc1\x3c\x4f\x30\xaf\x18\x72\xdf\x0f\x99\x5f\x0c\x99\x5f\x0a\xb8\xef\x87\xbc\x5c\x0c\x99\xef\x85\xcc\x2b\x44\xdf\x63\xe1\xc9\x74\xeb\x99\x3f\xcc\xc8\xa3\xde\xbe\x39\x5e\xe1\x27\xfd\xef\x79\x81\x8f\xba\x6b\x52\x26\x6e\x4d\xaa\x69\xa2\x8e\x92\x67\x40\xac\x15\x03\x2f\x5b\x0b\x95\xe0\x67\x4f\xec\x9f\xfb\x9f\xaf\x0e\xac\x5d\x64\x8c\xb5\x00\x04\xb3\xb3\xb3\xe2\xb1\xc7\x1e\x43\xab\xd5\xca\x5a\x1d\x01\x7a\xc7\x2a\xcd\x83\x21\xdf\x54\xcf\x86\xd7\xd6\x86\x0d\xc6\x46\x97\x2d\x76\xd2\xf3\xeb\x69\x08\x4c\xc9\x46\x80\x4e\x88\x2b\xf2\x0b\x72\xed\x62\xae\xca\xa3\xb0\x7a\x99\x0d\x9f\x00\x80\x83\x07\x0f\xe2\xce\x3b\xef\x84\xe7\x79\x3c\xae\xe3\x31\xc6\xca\x4c\xa2\xba\x6d\xbe\xbc\xe7\x8e\xf7\x6a\x7f\x3a\xb6\xec\xdf\xcf\x25\xab\xa4\x2d\x0c\xed\x52\x53\xf7\x54\x89\x27\x63\x4a\x8d\x37\xc3\x40\xa7\x59\xcc\x10\x78\xa4\x96\x44\xcf\x84\x48\x52\xb7\x56\xd7\x75\x89\x5d\x85\x58\x29\x84\x1c\x22\xe0\xb2\xbd\x56\x14\xad\x15\x3f\x6c\x2c\x97\x82\x85\xc5\xbe\x70\x69\xc5\x0f\x97\x1a\xf1\x37\x4e\x5a\x9e\x68\x06\x05\xd1\x16\x0c\x41\x2c\x2c\xda\x92\xc9\x50\xc6\x7c\x93\x80\x48\xf5\x53\x26\x5a\x85\x33\xc9\x0a\xea\xe3\x4e\x9e\x80\xef\x85\xdc\x2f\x85\xac\x5c\xee\x14\x2a\x03\xad\x42\x6d\x60\xad\x50\x1b\x58\xf3\x6a\xb5\x56\xa1\xd6\xdf\x2e\xd4\xfa\x3a\xbc\xe2\x85\xdc\xe3\x12\x1e\x93\x89\x68\x44\xfa\x9d\x92\xd8\xa1\x49\xdc\x3c\xd2\x6b\x89\xc4\xed\xa2\x82\xb7\xc7\x7a\x52\x56\x5d\xe2\x66\x69\xcb\xd5\xb1\x10\x81\x44\x0a\x47\xd7\x4a\x62\xda\x5b\xb7\xba\x95\xa2\xf2\x00\x30\xf8\x82\xc9\x4a\xcb\x13\xea\xf5\x83\x36\x00\x0c\x0e\x0e\x2a\xa1\xa1\x92\x2d\x00\x49\xe7\x8d\x6d\xae\xb9\xe6\x86\x0d\xa7\x4b\xb9\xc2\x50\xee\x9a\x9b\x14\xc6\x29\xf8\x3c\x0d\xc8\xd6\x98\x89\x60\x9b\xc5\xe1\xaa\x4b\xdb\x71\x95\xbb\x24\xb8\x51\x4a\x1e\x3c\x78\x90\x2b\xa1\xa1\x0e\xd6\x91\x52\x96\x8b\x82\xd7\x0e\x5c\xab\xdc\xf6\xb1\x8b\xb5\xff\x58\x5b\x2b\x1c\x65\x00\xa7\xaf\xa7\xd3\x0d\x4d\x49\xa2\xaf\xb1\xc7\x79\x89\x36\xa3\x3b\xa7\x22\x80\x08\x96\xc4\x22\x98\xae\xd9\x7a\xac\x57\xd3\x2b\xe8\xbd\x04\x49\x48\x74\xb8\x6c\xb7\x8a\xa2\xb5\x5c\x0a\x17\xe6\x2b\x9d\x99\xd9\xfe\xce\xcc\x5c\x25\x98\x59\x2e\x05\x4b\x2d\x4f\x34\xda\x9e\x6c\x06\x5c\xae\x21\x7d\x2a\x56\xea\xc4\x70\xfd\x90\x1b\xf5\x75\x35\x5d\x70\x09\xe8\xdf\x7a\x11\x71\x8c\x48\x72\x00\x1e\x20\xd4\xc1\x45\xd1\x44\x8a\x4e\x3b\xeb\x2b\x06\xbc\x5c\x0e\x78\x75\x60\xad\x50\xdb\xd8\x2c\x0e\x0e\x35\xbd\xd1\xc1\x66\x71\x78\xa0\xe5\xd5\x2a\x1d\x5e\xf5\x42\xf8\x89\xc0\x54\x31\x8a\xa4\x7b\x31\x3f\x54\xdc\x44\x49\x6c\x35\xe1\x59\x2f\x7b\xbb\x35\x23\x91\x61\x0c\xcc\x28\xcb\x23\x76\x45\xa2\xfc\x34\x02\x43\x56\xe2\x82\x49\x06\x2c\x95\xc2\x8b\xcf\xec\x5e\xf8\x2f\xf3\x7d\x9d\x20\xee\xb3\x69\x32\xea\x13\x99\x4e\xca\xbc\x73\x4b\x2f\xb7\xcd\x13\x17\x7e\x93\x12\xa6\x29\x4b\x20\xb9\x70\xa6\xee\x4d\x16\x87\xcd\x44\xa1\x16\x81\x09\x1e\x04\x36\xcb\x3c\x33\x49\x3e\x9b\xe5\xe2\x94\xb2\x77\xdd\x75\x17\x0a\x85\x82\xb2\x32\x7c\x48\x94\x2b\x9d\xc2\xf0\x2d\x97\x06\xee\x3b\x7c\xb5\xfa\x1f\x4a\x01\xdb\x99\x4c\xf8\xee\x4e\xa5\xe8\xc7\x14\x3e\x02\x52\xae\x40\x32\xb6\x98\xae\x05\x53\x66\x40\xd7\x44\xd1\xdd\xf7\xc4\x74\x56\x2d\xc6\xb0\x29\xd3\x3c\x7d\xa0\x6f\x37\xa0\x28\x11\x32\x04\x6b\x9e\x68\x2d\xf6\x05\x73\xd3\xd5\xf6\xe4\xe4\x40\x7b\x72\xb6\xbf\x33\xd5\xf0\xc3\x85\x56\x51\x2c\xc7\x67\x4e\xa8\x4d\x4b\xed\x78\xf9\xb0\x8d\x48\x40\xb4\x63\xbe\x25\xbb\x21\xe3\x6b\xa1\xbe\x55\xa2\x7f\xd7\xb5\xdb\x6d\xa6\x9e\x03\xe8\xe7\x1c\xe2\x37\x85\xd5\x4e\x5b\x8f\x31\xe6\x87\x0c\x7e\xe8\x0b\x6f\xb5\x18\xfa\xf3\x7d\x9d\xf2\xc5\x7a\xcb\xe7\x60\xe5\x52\xc0\x07\xfa\xdb\x85\xda\xd0\x4a\x71\x74\x7c\xc9\xdf\x3c\xda\xf0\xc7\x37\xac\x16\x06\xcb\x41\xa1\xe2\x09\x78\xa9\xf9\x2e\x59\xea\xb0\xe3\x6e\x8c\xa3\x6b\x5d\xe9\xae\x84\x3a\x12\x40\xaa\x7f\x3d\xee\x9e\xf6\x50\x35\x9f\x53\xea\x81\xd5\x38\xd6\x42\xad\x91\xe8\x79\x30\xb4\xbc\x70\xe9\x95\xed\x4b\x3f\xbc\xb8\x71\xed\x8a\xfe\xbd\x5c\x4b\xa2\xe3\x37\x8f\x82\xb4\xe1\x30\xe1\xb1\x4d\x7a\x57\x1c\x31\x8f\xa0\xd0\xdb\xb1\xb5\xd9\x23\x1f\x3c\xf4\x4e\x7a\x97\x10\xa1\x44\xd8\x7c\x24\x13\xe1\x36\x57\xc7\xd6\x41\xda\x66\x8f\x00\x29\x95\x4a\x78\xf0\xc1\x07\x79\x7c\xf6\xa7\x1a\xd8\x3e\x03\xab\xf4\xb7\x0b\xa3\x77\x4e\xd4\xbe\xb8\x7f\xaa\xf2\xdf\x15\x05\x1f\x4e\x19\xf8\xdd\xb1\xd8\xe3\x8e\x00\x24\x2e\xc1\xd2\xca\x4a\x4d\xf0\xee\xae\xcf\xae\x56\x8c\x2b\xa7\x4d\x5f\x7d\x33\x52\x12\xd4\x54\x83\x58\xe1\xea\xfa\xf8\x32\x72\x3f\x82\x15\x3f\x68\xcc\x54\xdb\x93\x57\x36\xb4\x2f\x5d\x1d\x58\xbb\xb4\xd0\x17\xcc\xac\xfa\x62\x51\x32\x34\xa5\x94\x2d\xc6\x58\x4b\x4a\xd9\x62\x60\x2d\x4d\x58\xb4\x11\xbf\xb4\xc5\x18\x4b\x7d\x9b\x84\x1c\xa5\x27\x00\x08\xd7\x64\x50\x1f\xa2\x06\xc0\xb5\xcf\x30\xea\x2e\xa0\x27\xa5\x54\x31\x24\x2f\xd9\xb2\xcf\x58\x19\x80\x2f\x01\x7f\xd5\x0b\xcb\xab\x5e\x58\x9e\xed\xef\x94\x4f\x8f\x34\x2b\x7d\x1d\xbe\xa1\xd6\xf2\x06\xc7\x97\xfd\xad\x5b\x16\x4a\xdb\x47\x1b\xc5\xf1\xfe\x76\xa1\xe6\x09\xe6\x31\x20\xb5\x22\xc2\x68\x60\x57\x05\x34\xb5\x80\x6d\x3a\x24\xa1\x59\x72\x92\x41\xaa\x80\x77\x22\x50\x4c\xfc\x56\xab\x30\xda\x86\xba\xf8\x39\x84\x5c\xb4\xdf\x1e\x5f\x79\xe6\x9d\xb1\xe6\x09\x74\x77\x93\x2a\x3e\x22\x0c\x43\x7d\x9c\xaa\x44\x2d\x06\xdb\xdc\xd0\x61\xf5\x6b\x6a\x99\x98\xe6\x84\xad\x9c\x5a\x07\xa6\xe4\x0a\x0d\xb8\xe6\x66\x4f\xb9\x67\x69\x84\x4a\x1f\x13\x51\x26\x7f\x89\x96\xdb\xac\x87\x2c\x53\xca\x24\x6c\x7a\x60\x1f\x78\xe0\x01\x25\x34\x94\x00\x2c\xc7\xbb\x40\xb7\xde\x73\xbe\xfe\x47\x3b\xe7\xca\xff\x8e\x0b\x56\x05\xd0\x15\x05\x64\xb0\x41\xdf\xd1\x18\x2b\xa9\xd4\xfb\x0d\xfa\x7a\xbf\x72\x6b\xd0\x8d\x53\x30\x29\xb5\x81\xd7\x1d\xdf\xe9\xe5\x42\x24\xee\x4a\xea\xdd\x15\x2d\x9e\x22\x98\x14\xcd\x62\xd8\xb8\x36\xd0\xbe\x72\x71\xe3\xda\xf9\xcb\x1b\xd6\x2e\x2e\xf6\x05\x33\x9d\x82\x5c\x96\x52\x36\x19\x63\x4d\x29\x65\x13\x12\x2d\x44\xbb\x1a\x53\x02\x23\xb6\x2e\x12\xb7\x84\xb8\x23\x6a\x2f\x42\xf2\x05\x79\xc5\x7f\xd7\xeb\xfc\x5a\x3e\xb5\x3e\xf4\xed\xfa\x89\x20\x01\x39\xec\x28\x0e\x4a\x97\x01\x94\xc1\x50\x59\xf5\x45\x79\xd5\x6f\x12\xa5\xc8\x58\x00\x00\x20\x00\x49\x44\x41\x54\x57\xae\xd5\xda\xa7\xde\x1e\x5f\x19\xa8\xb5\x0a\x83\xe3\x4b\xfe\xf6\x1d\xf3\xe5\xdd\x9b\x96\x4a\x5b\xfb\xdb\x85\x1a\x97\xe0\x6a\x49\x98\xa9\xb5\x85\x94\x5b\x83\xae\x4b\xa3\xc7\x23\xd2\xfe\x49\xda\x0b\x22\xfd\xe9\x2e\x4d\xb3\xde\xba\x00\x04\xa4\x98\xd8\xd8\x7a\xeb\xb5\x6d\xcb\x4f\x07\x05\x39\x07\x60\x29\x7e\x06\xc9\x56\xf4\xab\x57\xaf\x2a\xbe\xd8\xac\x66\xc0\x3e\x37\xf4\x7b\x9b\xc2\x5d\x0f\x1e\x13\x2d\xb4\x0d\x53\x9b\x2e\xe5\xee\xa2\x37\x15\xe3\x30\x75\xc4\x66\x76\x99\xa4\x53\x56\x07\x6c\x0c\x32\x59\x22\x14\x67\xaa\x5e\xa9\x54\xc2\x03\x0f\x3c\xc0\x87\x87\x87\x55\x1f\x94\xbf\x5d\x1d\x5f\xf6\x77\x1f\x3b\x5b\xff\x0f\x63\xcb\xfe\x83\x5c\x32\x5f\x1a\xf7\x36\xa4\x67\x37\x0d\x63\x40\xea\x93\x26\x3d\x20\x55\x39\xf5\xb3\xd3\x20\xda\x8a\x09\x12\x43\x1b\x2c\x65\x4e\x47\xd6\x4a\xc0\x65\x30\xd3\xdf\x99\x3c\x3b\xbc\xfa\xee\x7b\x43\xad\xb3\x0b\xe5\x60\x2a\x28\xc8\x65\x00\x0d\x00\x4d\x00\x4d\xc6\x58\x33\xbe\x56\xc2\x42\x7f\x9f\xa2\x8d\xc8\x7a\x48\x3e\x9f\x88\xae\x50\x10\x51\xf0\xb1\x2b\x34\xba\x2c\x50\x7d\xef\x75\x55\xb4\x03\x8c\x74\xb8\x24\x5f\x3d\x07\x44\xd6\x88\xb2\x4e\xf4\x83\x9b\x93\x67\x22\xa5\xf4\x11\x1f\x51\xa0\xfe\x18\x63\x95\xa0\x20\x2b\xb3\x95\x4e\x65\xae\x3f\xb8\x70\x6a\xac\xf9\x7a\xad\xe5\x0d\x6f\x9f\x2f\xef\xdc\x33\xdd\x77\x60\xac\xe1\x6f\x2d\x86\xcc\x4f\x09\x80\x38\xee\x40\xb7\x98\xea\xa7\x98\xa5\xc3\x18\xe4\x21\xe9\xab\x64\xd0\x5d\xc9\xf8\x59\xb0\x6e\xe1\x4c\x7f\xe7\xd2\x8b\x3b\x97\x1e\x5f\x29\x86\x57\x20\x31\xc7\x18\x5b\x8a\x05\xb7\x3a\x41\x0c\xef\xbf\xff\xbe\xce\x32\x3a\x6e\x4d\x0a\x8f\x93\x72\x5a\x66\xb3\xc8\x6d\x38\x4c\x6d\xda\x68\xa2\xc9\x14\x2a\x30\xe1\xb7\xcd\x41\x98\x82\x3d\x79\xfc\xa2\x3c\xd2\xca\x46\xa0\xcb\x5c\xa2\xc9\x48\xbc\xe6\x9e\xa8\x01\x5a\x96\x52\x56\xb7\x2f\x94\xf7\xdd\x7b\x76\xe3\x9f\x6f\x6c\x7a\x9f\x54\xef\x9a\x74\x03\x91\x40\x6f\xfc\x01\x89\xcb\xd2\x0d\x77\xd0\xf7\x19\x7a\xc4\x8e\x29\xbc\x46\x52\x6f\xa9\xee\xcb\x0b\x26\xd1\xf4\xc5\xd2\x85\xc1\xd5\xb3\xa7\x47\x9b\x6f\x4d\x0e\xb4\x2f\x75\x0a\x72\x1e\x91\x1b\xb2\xc4\xc0\x9a\x52\xca\x46\x2c\x30\xa8\x85\x11\x20\xb2\x30\xe8\x37\x56\x95\x35\x91\xda\xe9\xa8\xf8\x46\x85\x46\xca\x6c\x37\x6c\x68\xa3\x82\x86\xd4\xe3\x24\x3f\xe5\xd6\x00\xd1\xc7\xa8\xd0\x1d\x5f\x5e\x1c\xac\x4e\x5c\x19\x00\x15\xc6\x58\x05\x40\x25\xe4\xa8\xcc\x57\x82\xab\xf3\x95\xc6\x85\xb7\xc7\x57\x5e\x1b\x6d\x14\x37\xef\x9f\xaa\xdc\xb8\x6b\xae\x6f\x5f\xb5\x55\xa8\x73\x25\x41\xe8\xc3\xd0\x04\x41\xef\x93\x60\xe9\xe7\xaa\xc3\x6a\xcf\x5f\xed\xeb\x50\xc2\x7d\xc5\x0f\x16\x5e\xdc\xb9\xf8\xa3\x99\xfe\xce\x19\xc6\xd8\x14\x80\xb9\xf8\x59\x24\x5f\x93\x9b\x9f\x9f\xc7\x5b\x6f\xbd\x65\xb3\x9e\x6d\x31\x3c\x97\x5b\x61\x53\xc0\x14\xa7\x0d\xd6\x44\x87\x8e\xdb\x25\x20\x60\xb8\x36\xa5\x54\x1d\x46\x0a\x28\x33\x5c\xf1\x0f\x17\x21\x59\xb0\xae\x76\x5c\x84\x8b\xcf\x7f\xfe\xf3\xd4\xd2\x28\x43\xa2\xba\x6b\xae\x7c\xe3\x27\xce\xd5\xff\xbc\xbe\xea\xdd\xc5\xc0\xa8\x00\x33\x0a\x89\x54\xbe\x2d\xf5\x2a\xae\x5e\xf0\x5c\x7b\x15\x00\xc1\xa5\x58\xe8\x0b\x66\x4e\x8f\x34\x4f\x9e\x1e\x69\xbe\xb5\xd8\x17\x5c\x13\x0c\x4b\x00\x96\xc0\xd0\x00\x92\xbf\x44\x60\xa0\x1b\xbb\x48\x7d\x37\x84\xfc\xa9\xd4\xc3\xc3\xf3\xe7\xcf\xa3\xd9\x6c\x02\x00\x9e\x7f\xfe\x79\x27\x8f\x3d\xcf\xe3\x41\x10\xa4\x60\x36\x6f\xde\xcc\xaf\x5c\xb9\x22\x00\xe0\xae\xbb\xee\xe2\x00\xe0\xfb\x3e\xf6\xee\xdd\xdb\xe3\xe2\xc4\xd6\x86\xba\xd5\x5d\xce\x44\x80\x40\x73\x65\xe2\xbf\x8a\xf6\x57\x05\x50\x85\x44\x8d\x4b\xd4\xaa\x6b\x85\xb1\x3d\x33\x95\x7d\xfb\xa7\x2a\x87\x87\x56\x8a\xa3\x05\x19\x9d\x87\xc2\x54\x50\xb3\x47\xaa\xab\xd5\x93\xac\x07\x46\x52\x0c\xd3\xe6\xa2\xfd\xab\x9d\x4b\x3f\x7c\x7d\xcb\xf2\x4f\x43\x8e\x8b\x00\x26\x01\xcc\x00\x58\x42\xfc\xca\x3d\x00\xf1\xe8\xa3\x8f\xe6\x1a\xab\xeb\x80\x59\x2f\xfc\x7f\x6d\x18\x17\x1c\x07\xd2\x47\x07\xda\x24\x67\x5e\x89\x65\x13\x36\x80\x99\x41\xeb\x11\x4a\xa2\x52\xa9\xf0\xcf\x7c\xe6\x33\x18\x19\x19\x01\xd2\x42\xa3\xb6\x77\xba\xef\xc8\xc7\x2f\xd4\xff\x7c\x43\xab\x70\xd4\x28\x34\x3e\xe4\xb4\xde\x63\xfe\x3a\x91\x3b\x72\xe5\x9d\xb1\xe6\x5b\x17\x86\x56\xdf\x6d\xf8\xe1\xb4\xe4\x58\x00\x62\xa1\x01\x34\x54\x1c\x03\x91\xd0\xd0\x83\x9d\x3d\xc2\x42\x2d\xa1\xaa\x16\x82\x20\xc0\xb9\x73\xe7\x00\x00\x4f\x3f\xfd\x74\x92\xdf\xd7\xd7\xc7\x57\x57\x57\xaf\x47\x48\xe7\x4a\x04\xbf\x7e\x92\x9a\xce\xa3\xd4\xc7\xb6\x75\xb7\x06\x91\xe0\xf0\xa4\x94\x89\x0b\x03\x25\x3c\x80\x2a\xa4\xac\x31\xb0\x5a\xa5\xcd\xc7\x76\xce\xf5\xed\x3b\x70\xad\x72\xe3\xf8\xb2\xbf\xb5\x28\xb8\xaf\xf3\x57\x33\x17\x93\x00\xb3\xed\x7c\x14\x5b\x12\x90\xe2\xe4\xf8\xca\xf3\xcf\xee\x5e\xf8\xfe\x5a\x51\x9e\x97\x52\x4e\xc6\x16\xc7\x02\xba\x02\x5c\xbc\xf0\xc2\x0b\xf8\xf5\xaf\x7f\xfd\x41\xf8\xb7\xde\x39\x60\x9b\x7f\xeb\x99\x53\x59\x38\xb2\x68\xed\x81\xa5\x82\x03\x04\xd0\x65\x52\xd9\x04\x84\xcd\xa2\xd0\xf1\xd0\x3a\xb6\x0e\x71\x00\xe8\xef\xef\xc7\xa7\x3f\xfd\x69\x8c\x8e\x8e\x02\x44\x68\xec\x9f\xaa\xdc\xfa\xf1\x0b\x1b\xfe\xd3\xc0\x5a\xe1\x30\x03\xeb\xee\xd1\x20\x31\x0b\xc3\x7a\x5d\x92\xd2\x82\x80\xec\xc3\x80\x96\xad\x82\xa9\x40\x77\x0f\x87\x2d\x49\x89\xa0\x80\x60\xba\xbf\x7d\xe5\x9d\xb1\xe6\x9b\xe7\x87\x56\xdf\x5d\x29\x85\xd7\x24\x4b\x0b\x0c\x68\x16\x46\xbc\xac\x1a\xc4\x2e\x49\x8f\x65\xa1\xe8\xbc\x74\xe9\x12\x3a\x9d\x0e\x4e\x9d\x3a\x85\x8b\x17\x2f\xe6\x15\xde\x30\xe4\x65\xf9\xc5\x36\x57\xd4\xaa\x50\xaa\xd5\x2a\x0a\x85\x02\x16\x17\x17\xc5\xa7\x3f\xfd\x69\xce\x39\xc7\xf6\xed\xdb\xa9\x9b\x93\x7c\x57\x57\x0b\xb2\x26\xb1\x10\x25\x40\xa4\x94\x55\xc6\x58\x4d\x4a\x59\x67\x60\xb5\x4a\x87\x8f\xec\x9c\xeb\x3b\x70\x68\xb2\xff\xf0\xd8\x72\x71\xab\x27\x98\x9f\xec\xe3\x48\xce\x38\xd1\x96\x74\xb5\xa0\x74\xfc\x48\x62\xf7\x46\x05\xc5\xbb\x51\xf1\x2b\x1b\xda\xa7\x9f\xd8\x3f\xfb\xad\xc5\x72\x78\x1a\x0c\x57\x00\x4c\x4a\x29\x17\x10\xc5\x98\xda\x00\x82\x53\xa7\x4e\xe1\x99\x67\x9e\x41\xbc\x94\x6d\x1a\xdb\x94\x4f\x94\x57\x79\xe6\x93\x8b\xdf\x26\xfc\xa6\xfa\x26\x97\x27\x0f\x5d\xae\xb1\x94\x82\x65\x19\x95\xf5\xe4\xb2\x48\x6c\x1d\xb2\x11\x68\x2a\x37\x5e\x57\x2a\x15\xdc\x77\xdf\x7d\x18\x19\x19\x81\x0a\xba\x49\x29\xcb\x0c\xac\xf6\x91\xd9\xbe\xc3\xf7\x9e\xa9\xff\x2f\xfd\xed\xc2\x61\xb5\xc2\x91\xde\x90\x95\xde\xaf\x91\xde\x5f\xd5\x9d\xf8\xc9\xbe\x09\xa8\xac\xee\x61\x3b\x29\xf3\x57\x8f\xc4\xf5\x48\x26\xd5\x86\x84\x60\x10\xb3\xfd\x9d\xc9\x93\x63\x2b\xaf\x9f\x1f\x5e\x3d\xb9\x5c\x0a\xaf\x0a\xc8\x05\xc6\xd8\x52\x3c\x18\x1b\x8c\xb1\x06\x90\x2c\xad\xea\x7b\x2f\x04\xa2\x98\x44\x12\xd0\x5c\x5c\x5c\xc4\xf2\xf2\x32\xa6\xa6\xa6\xf0\xca\x2b\xaf\x88\x42\xa1\xc0\xc3\x30\x34\x3d\xb3\xac\x41\xec\xca\xcf\xab\x18\xa0\xe5\x59\x07\x96\xba\x56\xf1\x12\x00\xf8\xec\x67\x3f\xcb\x07\x06\x06\xb0\x71\xe3\xc6\x04\x87\xec\x7e\x98\x9b\xba\x32\x15\x29\x65\x85\x31\x56\x91\x52\xd6\x74\x01\xd2\xdf\xe6\x9b\x76\xcf\xf6\x1d\x38\x34\xd9\x7f\x64\x64\xc5\xdf\x5c\x88\x97\x73\x7b\x52\x8f\x0e\x30\x07\x4c\x97\x4b\xc1\xcc\x4f\x0e\xcc\xfd\xc3\xe5\x0d\x6b\x27\xc0\x70\x09\x91\x8b\xb2\x80\x48\xa8\xb7\x00\x04\x4b\x4b\x4b\xf8\xf6\xb7\xbf\x9d\x65\x49\xdb\x7e\x29\xcf\x5c\xd7\x59\xf8\x01\xf3\x1c\xcd\xf2\x0c\xb2\x04\x13\xc5\xe3\xa4\x89\xc1\x3e\xb0\xf2\x10\x95\xa5\xc1\x6c\xb0\x79\x5c\x14\x00\xe0\xbf\xfd\xdb\xbf\x8d\xb1\xb1\x31\x80\x58\x1a\x3b\xe6\xcb\x87\xee\x3d\x53\xff\x8b\x0d\xad\xe2\x6d\x5a\x68\x0f\x76\x7b\x34\x8f\xb3\x9b\x2f\xd9\x8c\x0d\x01\x89\xe5\x72\x38\x77\x7a\xa4\xf9\xd6\xc9\xf1\x95\xd7\x17\xfa\x82\xf7\x25\xc3\x1c\xd0\x63\x65\xa8\x18\x86\xc9\x1d\x01\x00\xb1\xb8\xb8\xa8\x0e\xcd\x45\xb5\x5a\xe5\x8d\x46\x03\xc8\xe7\x0a\xc2\x90\x67\xb5\x10\x2c\xb0\x36\x98\xf5\x98\xb7\x26\x7c\x1c\x80\xd8\xbc\x79\x33\xbf\xe1\x86\x1b\x50\xaf\xd7\x51\xaf\xd7\x95\x35\x92\xb2\x40\xa0\xf6\xe4\x30\x56\x8e\x05\x48\x55\x13\x20\x83\x0c\xac\xbe\xa1\xe5\x6d\xd9\x3f\x55\x39\xbc\x7f\xaa\x72\xb8\xbe\xea\x0d\x17\x64\xd7\x4d\x35\xbd\xff\xd2\xd5\x27\xca\x72\x94\xe8\x14\x64\xeb\xe9\x8f\x2c\xfc\xf3\xc9\xf1\x95\xa7\x65\x57\x68\xcc\xc4\x01\xd1\x96\x94\x32\x10\x42\x88\x6f\x7e\xf3\x9b\x2e\x2d\xee\x12\x16\x2e\xbe\x66\xf1\x74\xbd\x38\x29\x6d\x36\xd8\x3c\xcf\xd1\xd4\x7e\xf2\xab\x0b\x8e\x2c\xc2\xb2\x24\x11\xb4\x72\x1b\xe1\x79\x3a\x90\xe4\xed\xdf\xbf\x9f\xdf\x7d\xf7\xdd\x28\x14\x0a\xdd\x97\xd5\x24\x6a\x5b\x16\x4b\x87\x8e\x9f\xd9\xf8\x67\x83\x4d\xef\x13\x49\x4c\x23\xbd\x70\xa2\x2e\xbb\x45\x9a\x07\x93\x94\xe9\xbb\x42\xe9\x0e\x51\xcd\xea\x30\xae\xee\xa5\xcd\x17\xb4\x3c\xd1\xbc\x30\xd4\x7a\xf7\xd7\x9b\x1a\xaf\x5c\x1b\x68\x5f\x10\x1c\x73\x40\x5a\x68\xc4\x71\x0c\x75\x34\x7f\x8f\x3b\xd2\x6e\xb7\x71\xf5\xea\x55\x9c\x3a\x75\x0a\x13\x13\x13\x59\xe6\xa6\x6d\xb0\xba\x06\x72\xd6\x80\x47\x4e\x3c\x59\x29\x8b\x86\x24\x6f\xe7\xce\x9d\x7c\xf7\xee\xdd\xd8\xb6\x6d\x1b\x4a\xa5\x12\x74\x0b\x44\xbd\x3a\x80\xee\x72\xae\x8a\x81\xd4\x00\xd4\xa5\x94\x83\x05\xc9\x06\x87\x57\x8a\x3b\x6e\xbc\x5a\x3d\xba\x67\xa6\xef\x50\x5f\x87\x57\xe9\x4b\x85\x34\xa9\x18\x48\xc8\xa4\xf8\xf5\xa6\xc6\x2f\x9e\xdd\xbd\xf0\xfd\xb0\x80\x8b\x5a\x5c\x43\x3d\xab\x40\x08\x21\xfe\xf2\x2f\xff\x72\x3d\x1a\x3e\xf7\xf8\x76\xe4\x67\xcd\xbd\xf5\x28\x5f\x53\x1b\x1f\xf8\x99\xea\xae\x8a\x09\x71\x1e\x44\xeb\xa9\x97\x5b\x1a\xef\xdd\xbb\x17\x9f\xfc\xe4\x27\x95\x4f\x9c\x58\x1a\xe3\xcb\xfe\x9e\xe3\x67\x36\xfe\xd9\x48\xa3\xf8\x1b\xeb\x0e\x84\x9a\x8c\x0e\xb3\xc7\xe1\x46\xa3\x09\x21\xc1\xa4\x98\xae\x76\xae\x9c\xd8\xb2\xfc\xfc\xf9\xa1\xd5\xb7\x3b\x05\x39\x03\x96\x08\x8d\x25\x29\xe5\x92\x0a\x7a\x6a\x02\x23\xd9\x6b\x01\x40\xac\xac\xac\xe0\xc4\x89\x13\x38\x79\xf2\x64\x96\xb9\xaa\xee\xf3\x08\xef\x3c\x66\xb0\xab\x0d\x9a\xd6\x63\x61\xba\xea\xd2\x7c\x00\x10\x23\x23\x23\xbc\x5e\xaf\xe3\xb6\xdb\x6e\x43\xa5\x52\x49\xac\x10\x00\xfa\xbe\x90\x32\xe2\xa5\xf7\xd8\x02\xa9\x03\xa8\x03\x18\x2c\x0a\x3e\xbc\x7d\xbe\x7c\xf0\xd6\x4b\xd5\x3b\xc6\x97\x4a\xdb\x0b\x32\x76\x5f\x68\x70\x54\x0b\xa0\x5e\xac\xaf\x9d\x7c\xe2\xc0\xec\xdf\xaf\xf8\xe2\x6c\x1c\xd7\x50\xc1\xd0\xa6\x94\x32\x90\x52\x06\xb1\xd0\xf8\x30\xb4\xf8\xf5\x0a\xe8\x3c\x0a\x3c\x8f\xd0\xc9\x43\x57\xee\xfe\xd1\x0d\x60\x2e\xa4\x2a\xb9\xcc\x2a\xd3\xb5\x4d\xeb\x99\x70\x71\x00\x62\xcf\x9e\x3d\xb8\xf7\xde\x7b\xd5\xbd\xda\x46\x5e\x1d\x6c\x7a\x5b\x3f\x71\xae\xfe\xef\x47\x1a\xc5\xdf\x80\x04\x4f\xbf\x67\xa0\xb6\x71\x9b\xdd\x88\x64\x7f\x42\x12\xb3\x80\xb6\xd1\xab\xbb\xd5\x58\xea\xe7\x69\x5a\x90\xa9\x37\x54\x57\x8b\xa2\xf1\xee\x58\xf3\xf5\xd7\xb7\x2c\xbf\xb8\x54\x0a\xdf\x57\x02\x23\x8e\x63\xe8\x6e\x89\x7a\x8f\x24\x11\x18\x61\x18\x8a\x89\x89\x09\x4c\x4e\x4e\xe2\xed\xb7\xdf\x56\x3c\xb2\x59\x01\xa6\x44\xcb\x74\x1c\x7a\xb9\xcd\xaa\xb0\x3d\x2f\xd3\xbd\xa9\x8e\x8b\x4e\x1b\x2c\xad\x97\xdc\x4f\x4f\x4f\x8b\xe9\xe9\x69\x9c\x39\x73\x06\x07\x0e\x1c\xe0\xa3\xa3\xa3\xd8\xb3\x67\x8f\x28\x14\x0a\xea\xbd\x1a\xb5\x85\xbe\x8d\x28\x90\xdc\x64\x8c\x35\xa4\x94\x4b\x00\x1a\x41\x41\x2e\x9d\x1f\x5a\x5d\x9a\xac\xad\x5d\xbc\xe9\x4a\xf5\xe8\xe1\xab\xd5\x3b\x2a\x6d\x5e\x85\xda\x7a\x9e\x6c\xa8\x89\x9e\xdd\x42\x5f\x30\xf9\xfc\xae\x85\x1f\x35\xfc\xf0\x12\x63\x6c\x06\xc0\x82\x72\x4f\x10\x2f\x7d\x2f\x2e\x2e\xea\xf4\x03\xf6\xc9\x44\x79\xe9\xb2\xe4\x4c\xf8\x28\xac\x89\xff\xb6\x3c\x65\xb1\x52\xfa\x5c\x56\x2a\xa5\xc3\x86\xd7\x86\xc7\xba\x8f\xc3\x54\x79\xbd\xe6\x9a\x4d\xb2\x3a\x61\xcb\xe5\x32\xff\xea\x57\xbf\xaa\x6f\x6f\x2e\x03\xa8\xf6\xaf\xf1\xf1\xe3\x67\x06\xff\x74\xd7\x6c\xf9\x0f\x79\xfc\x7d\x93\x75\xef\xc9\xc8\x01\x97\xb8\x25\xea\x3a\x96\x2b\xfa\xb5\x60\x12\x53\x03\xed\x8b\xcf\xef\x5c\x7a\xea\xfd\x8d\xad\x53\x92\x61\x06\x91\xc0\x98\x63\x8c\x2d\x40\x73\x4b\xd0\x7d\x77\x24\x79\xc0\x8f\x3e\xfa\xa8\x18\x1a\x1a\xe2\xb3\xb3\xb3\x7a\xd3\x79\x2c\x3c\x0a\x67\x9b\xe0\xd7\x93\x6c\x83\x4b\xc7\x79\xbd\xda\x31\xeb\xde\x69\xb1\x3e\xf2\xc8\x23\xfa\x84\x52\x16\x28\x75\x5f\xea\x52\xca\x3a\x63\x6c\x90\x49\x0c\x6f\x5a\xf2\xf7\x7f\xfc\x42\xfd\xf8\xa6\x25\x7f\x27\x97\x8c\xeb\xcf\x7c\xd5\x0b\x1b\x4f\xef\x59\xf8\xe7\x77\x47\x9b\xcf\x6a\xc1\xd0\xb9\xd8\x3a\x6c\x03\x08\x56\x56\x56\xc4\xb7\xbe\xf5\x2d\x97\x05\x08\x43\x99\x89\x57\x14\x6e\x3d\xcf\x79\x3d\x38\xae\xc7\xda\xd7\xf3\xd7\xe3\x6d\x40\x3f\x01\x4c\xc6\x95\x58\xfc\x27\xb4\x7b\xca\x40\x05\xeb\xea\x94\x09\x87\x5e\x57\xd3\x01\x80\xaa\xf7\xe0\x83\x0f\xb2\x6a\xb5\xaa\x68\xf3\xa5\x94\xfd\xe5\xb0\x30\x74\xf7\x85\xfa\xbf\xdb\x33\xd3\xf7\xc7\x1c\xac\xd4\x8d\x6f\xe9\xab\x1f\x71\x17\x92\x99\xce\x12\xed\x82\x14\x8c\xea\x2a\xdd\x3c\xa4\x11\x13\xdb\xb8\x4c\xad\xa4\x80\x25\x56\x46\xc7\x93\xad\xb7\x36\xaf\xbc\xf8\xd4\xde\xf9\xc7\x66\xfa\x3b\xa7\x24\xe4\x15\xc6\xd8\x24\x80\xc9\x58\x73\xcd\x23\xb2\x34\x56\xe3\x41\xd8\x01\xa2\xa3\xe7\xce\x9c\x39\x83\x27\x9f\x7c\x12\xad\x56\x8b\xad\xae\xae\xd2\xa6\x15\x5f\x74\xfe\xe8\x79\x94\x9f\xea\x5e\xfd\x4a\x74\x43\x38\x3a\x8c\xfe\xa7\x97\x9b\x9e\xb7\x6d\xc7\x83\xc1\xd8\x4f\x87\x90\x08\x1c\x27\xf0\xa6\x7b\xfa\xfc\x75\x7c\x0a\x1e\x00\xf0\xea\xab\xaf\xca\x4a\xa5\xc2\x86\x87\x87\x65\x4c\xa7\xda\x5a\x1f\xc6\xfc\x6d\x23\xda\x8e\xbf\x26\xa5\xec\x48\xa0\xdd\x28\x89\xa5\x73\xc3\xcd\x09\xc9\xd0\x19\x6c\x16\x47\xd5\xd2\x6d\x87\x8b\xf6\xeb\x5b\x1a\x4f\xbe\xb9\xb9\xf1\x73\xc9\x71\x15\xc0\xb5\x58\xe0\x2f\x33\xc6\xd6\x10\xbb\x91\x4f\x3e\xf9\x24\x96\x96\x96\x74\xde\xe9\x7d\xa4\x7f\x2a\x09\x02\xa7\xf3\x46\x09\x04\xca\x77\x1b\x2e\xd3\x9c\xd1\x9f\xb1\x8e\x57\xc2\x8e\x4f\xd5\x85\x21\x4f\x7f\x26\x0a\xaf\x69\x1c\xd2\xe7\x96\x6b\x17\x53\x5e\x49\x75\xbd\x29\xa9\xff\xb9\xcf\x7d\x8e\x8f\x8f\x8f\xab\xbc\x32\x80\x0a\x17\xa8\xdf\xfe\xde\x86\xdf\xb9\xe5\x72\xf5\x7f\x2a\x86\x7c\x58\x97\x11\x1f\xca\x22\x49\x9e\xe3\xb7\x10\x09\x8d\xb9\x4a\x30\xf9\xd2\xf6\xa5\x67\xce\x8e\x34\x4f\x84\x0c\x53\x88\x2d\x0d\x74\x03\xa0\xfa\xe6\x2d\x81\xf8\x64\xec\x33\x67\xce\xe0\xe7\x3f\xff\xf9\x7a\x78\xb4\x5e\x9e\x5e\xcf\x33\xf8\x30\xb4\xd9\x07\x7d\xf6\xeb\x4e\xf7\xdc\x73\x0f\x3f\x78\xf0\xa0\x7a\x51\xcf\x8b\x2d\x53\x7d\x17\x6a\x15\x71\xdc\x03\xc0\x30\x17\x18\xde\x35\xd7\x77\xf0\xb6\xf7\x6a\xc7\x87\x57\x8a\x5b\xcf\x0f\xad\xbe\xf4\xd4\xde\xf9\xff\x7b\xd5\x17\x13\x88\xf6\x6a\xcc\xc4\x56\x62\xf2\x2e\xca\x9b\x6f\xbe\x89\x17\x5f\x7c\xf1\xc3\xe0\xe7\x7f\x0b\xb8\x3c\xb0\x1f\x56\x9b\x89\x35\xe4\x91\x4c\x93\x5f\x63\x33\xbd\x5c\xbe\x9d\x5e\x9e\x3b\x30\x13\x2f\xbb\xaa\x81\x50\x06\x50\xbd\x61\xb2\xff\xee\xc3\x57\xfa\xff\x87\x62\xc8\x86\xa3\x37\x51\xb5\x13\x1b\xf4\x8f\xfe\xb8\x5c\x16\x2a\xa3\x53\x72\x5d\x8b\x65\x10\x97\x44\xc9\xd9\x80\xcb\xe0\xe2\xc6\xd6\xe9\x17\x76\x2e\x3e\x35\x53\xed\x9c\x89\x5d\x13\x5d\x68\xa8\xef\x70\xe8\x71\x0c\x31\x3f\x3f\x8f\x93\x27\x4f\xe2\xe4\xc9\x93\xaa\x5f\x7a\xca\x32\xff\x4d\xcf\x83\xd6\xa7\xf9\x59\x71\x05\xda\xb6\x09\xb7\xcb\x45\xcd\x72\x51\x4c\x75\x6d\x7e\xbc\xcd\xff\x77\xc2\x3f\xfb\xec\xb3\x62\x6a\x6a\x8a\xdf\x70\xc3\x0d\x18\x1a\x1a\x0a\x00\x70\xed\xe5\x3e\x75\x06\x49\x2b\x76\x13\x9b\x21\x93\x8d\x73\x43\xab\x0b\x8b\xe5\xe0\xc2\xbe\xe9\xca\xfe\xd3\x23\xcd\x37\x56\x8b\x62\x42\x4a\x39\xc5\x18\x9b\x83\xb6\x9d\x9c\x31\x26\xde\x78\xe3\x0d\xbc\xfc\xf2\xcb\x36\xde\xe8\x74\xe7\xe9\x9b\x89\xef\x59\xbc\xd0\xf9\x61\x7a\x9e\x26\xfe\x9a\xee\x5d\xf4\xd8\x70\xe5\xa1\x49\x00\xdd\xe5\xd8\x3c\x7e\x67\x96\x85\x91\x67\xf0\xc0\x76\xfd\x47\x7f\xf4\x47\x3c\xfe\x50\x92\x8a\x9e\xd7\xb7\xce\x97\x0e\x7d\xfa\xd4\xe0\x7f\xae\xad\x15\x8e\xa4\xb7\x10\x53\xab\xd9\x9e\x92\x5d\xa1\xda\xe9\xe1\x56\x58\xf4\xca\x9b\x35\x2f\x6c\xbe\x3d\xde\x7c\xe5\xc4\x96\xe5\xe7\x1a\xa5\xf0\x3d\xa4\x85\x86\xda\xf9\x99\x04\xd4\x00\x08\x21\x04\x5e\x78\xe1\x05\x3d\xe8\x09\x03\x1f\x6c\xbc\xc8\xf3\x6b\xc3\x47\xf1\xe6\x19\xc8\x26\x81\xe6\x6a\x13\x8e\x7b\x64\xe4\x9b\xda\x74\xc1\xda\xda\xe4\xa5\x52\x09\x6b\x6b\x6b\x22\x1e\x37\xfa\x3e\x10\xf5\x22\x9d\xda\x7d\x5a\x63\x8c\x55\x21\x51\x29\x48\xf0\x90\xa1\x89\xe8\xfd\xa0\x05\x29\xe5\x42\xbc\x11\xaf\x0d\x40\xac\xac\xac\x88\x1f\xfc\xe0\x07\x68\x34\x1a\xb6\xb1\x6a\xe3\x8f\xab\xaf\xd0\xca\x5d\x02\x81\xe2\x36\xe1\x74\x4d\x6c\xda\xa6\x6b\x5e\xdb\x70\x66\xdd\x27\xd7\x2e\xc1\x41\x09\x37\x69\x29\x97\xe6\x72\x11\x9d\xea\x5c\xfc\x49\x46\x8e\xee\x0a\x4a\xad\xba\x56\xd8\xfc\xc0\xc9\xa1\xbf\x18\x5f\xf6\x3f\x0b\xc9\xb8\xf6\xc2\x2a\x14\xe1\xa6\x83\x80\xf5\xe5\xb6\xd4\x69\x52\x70\x27\xba\xbb\x50\x42\x62\xa9\x1c\xce\xbd\xba\x6d\xf9\x99\x77\x47\x57\x5e\x6e\x7b\x52\x2d\xd7\xa9\x20\xa8\x7a\xbf\x24\xd9\xf1\x19\x86\xa1\xb8\x7c\xf9\x32\x7e\xf2\x93\x9f\xd8\x1e\xaa\x89\x2f\xb4\x2c\x6b\xb0\x02\xf6\x41\x40\x61\xb3\x06\x64\x9e\x81\xa4\xd3\xec\xd2\x80\x34\xe5\x15\x3e\x34\x2f\x8f\x55\xa2\xc3\xe2\xf8\xf1\xe3\x7c\xdb\xb6\x6d\xf0\x7d\x5f\xed\x01\x49\x05\x4f\xa5\x94\xe5\x78\x3f\x08\x47\x24\x24\x9a\xda\xbb\x41\x49\x30\xf4\x89\x27\x9e\xc0\xf4\xf4\x74\x16\x0f\x74\xda\xf3\x5a\x5f\xb4\x1e\xad\x9b\x57\x29\x64\x59\x13\x36\x1a\x5c\x0a\x24\x8f\x11\xd0\x33\x76\x4c\x07\xf9\xac\xa7\xd3\xae\x0e\xe9\x04\x50\x62\x38\x00\x51\x2a\x95\x70\xfc\xf8\x71\xee\xfb\xbe\x2a\xf7\x00\x54\x8a\x21\xab\xdf\x35\xb1\xe1\xf7\xc6\x96\xfd\x64\xaf\x86\xfa\x5e\x47\xf2\x6e\x02\x98\x76\xe4\x7e\xf4\x93\x9c\xce\x05\xb5\x9c\xaa\x7b\x1c\xfa\x41\x3a\x48\xc1\x80\x75\xc3\x1c\xea\x93\x83\x33\xfd\x9d\x2b\x2f\xec\x5c\xfc\xd9\xc4\x60\xeb\x8d\x90\xc9\x49\x86\xe8\x15\x6b\xa4\xb7\x22\x27\x42\x63\x69\x69\x09\x6f\xbe\xf9\x26\xde\x79\xe7\x1d\x17\x3f\x28\x1f\xf5\xa4\xc3\xba\xea\xd8\x60\x74\xde\xda\xda\xb1\xe1\xb5\x69\x99\xac\x49\x6e\xc3\xa5\xe7\xe9\xf7\xb6\x76\x6c\x63\xc9\x55\x2f\x81\x7d\xea\xa9\xa7\x00\x40\x7c\xf1\x8b\x5f\x44\xbd\x5e\x17\x71\x79\x10\x1f\x3b\xd0\x46\x24\x44\xd4\x0b\x76\x41\x5c\x96\xfa\xc4\x63\xbc\x82\xa2\xf3\x2e\xeb\xd9\xb9\x14\xa3\xa9\x3e\xed\x0f\x4a\xa5\x12\xaa\xd5\x2a\x9f\x9d\x9d\x15\x00\x70\xe7\x9d\x77\xe2\x85\x17\x5e\x10\x43\x43\x43\x1c\x00\xe2\x55\xb7\xbc\xd6\x00\x85\x75\x29\x97\xac\xe7\x0e\xc7\xaf\x00\xba\xfb\x38\x68\x12\xda\x6f\x96\xe6\x30\xd5\xc9\xca\xe3\x00\xb0\xb6\xb6\x26\xb6\x6d\xdb\xa6\x6f\x33\xae\x14\x24\xab\xdd\x7c\xa5\xfa\xc9\xbd\xd3\x7d\x5f\x63\x60\x7e\x77\x01\xa4\x6b\x33\xa4\x5e\xa7\xd6\x62\xd7\xea\x65\xa6\x04\x32\x05\xc6\xb4\x7d\x1b\x36\x0b\x24\xfa\xac\xc0\xd5\x0d\x6b\x13\xcf\xed\x5a\x7c\x7c\xb2\xd6\x7e\x47\x32\x4c\x32\x30\xe5\x9e\xa8\xbd\x19\x6a\x5f\x86\xe8\x74\x3a\x62\x72\x72\x12\xbf\xf8\xc5\x2f\x10\xbf\x29\x6a\x1b\x34\x2e\xed\x8c\x1c\xe5\x2e\x5c\x79\x26\xbd\x49\x80\xdb\xb4\xbb\x69\xc2\x9b\xe8\xc8\x73\xaf\x70\x99\xc6\x82\x0d\xb7\xad\xdc\x49\xd3\x0f\x7e\xf0\x03\x1c\x3b\x76\x0c\x5b\xb6\x6c\x11\xb1\x32\xd2\xcf\x2f\x49\xfa\x19\x2f\x8d\x27\x67\xaf\x9e\x3e\x7d\x5a\xc7\x99\xd7\x8a\x03\x7a\x79\x6b\xd3\xd2\x29\x9a\x07\x06\x06\xf8\xf2\xf2\xb2\xb8\xff\xfe\xfb\xd5\xdb\xde\x91\x72\x94\x12\x37\xdd\x74\x53\x72\xcd\x18\xe3\xe7\xcf\x9f\x87\x94\x12\x4f\x3e\xf9\x24\xe5\x9f\x6b\xbe\xf5\xb4\xf9\x01\xee\x8d\x49\xb9\x2a\xaa\x82\x4d\x4a\xd9\x06\x98\x29\xb9\x84\x4d\x92\xb6\x6f\xdf\x8e\x4f\x7d\xea\x53\xd0\xe2\x1a\x15\x44\xef\xa0\x1c\xb9\xef\xdd\xc1\xff\xad\xbf\x5d\x38\x20\x01\x80\x75\x23\x96\x9a\x27\x91\x6c\xe4\x4a\x9f\xf7\x99\x48\x10\xed\x0b\x6c\x00\xe2\x2f\xb3\x77\x7b\xdd\x7d\xa9\x2d\xf9\x17\xc9\x15\x31\x31\xd4\x3a\xf9\xcc\xee\x85\xc7\x17\xfa\x82\x73\x12\x52\x2d\xb1\x2a\xa1\xd1\x44\x7c\x4c\x1f\x63\x4c\x04\x41\x80\xa7\x9f\x7e\x5a\xbd\xd2\xee\xd2\x30\x30\x94\xad\xe7\x1e\x1f\x42\x59\x16\x6c\x9e\xba\x79\xeb\xd8\x2c\x15\xdb\x58\x73\x8d\x2f\x93\xb2\x72\x4e\xee\x2d\x5b\xb6\xf0\xe3\xc7\x8f\xa3\x5c\x2e\x03\x40\x72\x62\x3b\x80\xd4\xb1\x89\x41\x10\x88\x89\x89\x09\x7d\xc5\xcb\xe6\x0a\xd0\x32\x68\x79\x2e\x81\x9c\x94\xa9\x97\xfd\x8e\x1d\x3b\xc6\xf7\xed\xdb\x97\x3a\x72\x40\x2b\x37\xf5\x29\xf9\x9d\x98\x98\xc0\x4f\x7f\xfa\x53\xc1\x39\xe7\x42\x88\xf5\xcc\xc9\x14\x7f\x1c\xf5\x9c\x96\x9d\x5e\xce\xb4\x02\x17\x43\x40\xca\x69\xb2\xc1\x98\xa4\x2e\x07\xba\x71\x0d\x19\x9d\x9a\xed\x43\xa2\x56\x6b\x15\xb6\x7e\xf6\xdd\xa1\x3f\xdf\xb4\x54\xfa\x9c\x2b\x26\x61\x3a\x0f\xa3\x27\x8e\x91\xf8\x28\xd9\xcb\xad\xea\x03\x46\x67\x87\x57\x5f\x7f\xfa\x23\xf3\x3f\x5a\xf1\xc5\x7b\x60\xc9\x21\x2e\x2a\xf2\x9e\xf8\xc3\x52\x4a\x71\xf5\xea\x55\xbc\xfe\xfa\xeb\xb8\x74\xe9\x92\xea\x77\x5e\xa1\x41\x93\xcd\x72\xb0\xc1\x1a\x07\xa6\x05\x06\x06\x78\xd7\x04\x30\xd5\xfb\xff\x7d\xfa\xfa\xd7\xbf\xce\x39\xef\xb2\x48\x08\x01\xcb\xfb\x27\xb6\xf4\x81\x79\x71\xec\xd8\x31\xbe\x7f\xff\x7e\xfd\x58\x46\x8e\xee\x72\xb2\x12\x6a\xfa\x41\x48\x02\xda\xcb\x8f\xda\x89\x6c\xe2\x9d\x77\xde\xc1\xb3\xcf\x3e\xfb\xff\xea\xb3\xb1\x7d\x90\xc9\x64\xfe\xb8\x98\xe7\x12\x18\x46\xb3\x97\xc6\x35\x3c\xc1\xea\xb7\x5e\x1a\xf8\xad\xf1\x25\xff\x3e\x65\x59\x24\x4b\xa3\x34\xb1\xde\xad\xe5\xa9\x85\x16\x20\xe5\xaf\x44\x59\xb2\x27\x26\x82\x38\x5f\x30\x88\xd3\x23\xcd\x57\x9e\xfe\xc8\xc2\x63\xad\x62\x78\x11\xd1\x86\x2e\x7d\xe5\x44\x09\x0d\x01\x40\x7c\xe3\x1b\xdf\xc8\x32\x09\x5d\x13\xd7\xc5\x9f\x3c\x82\x57\xe5\x9b\xda\x77\x69\x4c\x5b\x1b\x26\xdc\xb6\x36\x6d\xcf\xd4\x35\x36\x6c\x6e\x95\xc9\x9c\xcf\x6a\x7b\xbd\xe5\x1c\x80\xf8\xfe\xf7\xbf\x0f\x15\x47\xf8\xe8\x47\x3f\xca\x5f\x7d\xf5\xd5\xf5\xf2\xc0\xf6\x5c\xb2\xe8\xc2\xc0\xc0\x00\x7f\xe0\x81\x07\x50\xab\xd5\xf4\x95\x1f\x75\x94\xa2\xc7\x05\xfc\xa1\x95\x62\x6d\xb0\x59\x1c\x2d\x08\x94\x19\x18\x6f\x7b\x62\x69\xae\x2f\x98\x9a\xab\x74\x9a\x92\x47\xca\x4a\x7b\x29\x32\x38\x78\xf0\xa0\x78\xf6\xd9\x67\x5d\xf4\x66\xf5\x27\xab\x8e\x8b\x9f\x00\x3e\xd8\x4b\x6e\xb4\x71\xd7\x04\x49\xe1\x7b\xf8\xe1\x87\xf5\xa5\xb3\x0a\x24\xea\x07\xa6\x2a\x77\x7d\xf2\x6c\xfd\x3f\x97\x82\xc2\xd6\x3c\x0b\xad\xa9\xcf\x13\x98\x3e\x77\x8e\x5e\x24\xe4\xb3\xaf\x00\xa2\x3d\x1a\x27\xc7\x56\x5e\xfa\xe5\xae\xc5\xc7\xd6\x3c\x71\x09\x2c\xd9\x14\xa4\x84\x46\x72\xfa\x53\x18\x86\xe2\x9b\xdf\xfc\xa6\x88\x69\x77\x32\xd6\x50\x66\xe2\x87\xcd\x2c\xcc\x63\xd6\xdb\x2c\x42\x97\xeb\x99\xc7\x45\xc8\x63\xa6\xe7\x99\x38\x59\x34\xbb\x06\xad\x9e\x4c\x56\x95\xa9\xdc\xd6\x66\x1e\x98\x2c\xa1\xaf\xb7\xbf\x1e\xfe\xe3\xcb\x5f\xfe\x32\xaf\xd5\x6a\x40\xf7\x9b\x34\x3e\x24\xfc\xc1\xa6\x37\xb8\x6f\xba\x72\xc7\xde\xe9\xca\x6f\xf6\xb7\xf9\x8d\x5e\xc8\x47\x59\x7c\xc4\xa2\x04\x5a\x01\x97\x33\xcb\xe5\xe0\x95\x77\xc6\x9a\x3f\x3e\x37\xbc\xfa\xda\x62\x39\x58\x00\x4b\x1f\xc3\xd0\xe9\x74\xc4\x0f\x7f\xf8\x43\x4c\x4f\x4f\xe7\x11\x00\x94\x5f\xb6\x67\x66\xed\x8b\x7e\xaf\xbe\x56\xcf\xd1\xdd\xe2\x0a\xf4\x6e\x5d\xee\x71\xbe\x34\x38\x8e\xee\x96\x55\xae\xe5\x43\xab\x1b\x6d\xf3\xf3\x3c\x2e\x84\x90\x47\x8f\x1e\x2d\x20\x32\xd3\x4a\x00\xaa\xc3\x2b\xc5\x5d\xf7\x9c\xaf\xff\xc7\xda\x9a\x77\x93\xbe\x5f\xc3\x68\x6d\xa4\x56\x41\x98\x0a\x61\xf4\x2e\xcb\xaa\xd6\xf5\x5b\x2a\x34\x98\x0c\x4e\x8e\xaf\xbc\xf4\xcb\x5d\x0b\x8f\xad\x15\xe5\x45\x30\x5c\x05\x30\xcd\x18\x9b\x05\xb0\x0c\x60\x15\xd1\x96\xe6\xa0\xd3\xe9\xc8\xbf\xfa\xab\xbf\x12\x1a\x66\xbd\xcf\xd4\xce\xa1\xf6\x0f\x27\x65\x92\x5c\x33\x92\xa7\x97\xe9\x0f\x98\xde\xab\x6b\x49\xee\x4d\xdb\x88\xc9\xb6\xb6\x14\xcd\xf4\xb9\xd3\xed\xeb\x7a\x1b\x26\x3a\x74\x58\xba\x75\x99\xf2\x4c\x87\xa7\x75\xf4\xb6\xe9\xf6\x6a\x9d\x57\x02\x69\xfe\xb8\xda\x54\x13\x87\x3e\x33\x13\x5d\x74\x32\xd1\xf6\x29\xef\x60\xb8\x4f\xf8\xf9\xa5\x2f\x7d\x89\x6f\xd8\xb0\x01\x88\x97\x87\x19\x63\x7d\xc5\x80\xd5\x6e\xb9\x32\xf0\xf1\x4f\x9e\xdd\xf8\xbf\xee\x9c\xeb\xfb\xe3\x4a\x87\xdf\xe2\x09\x3e\xc2\xc1\x2a\x1c\xac\x1c\xbd\x52\xc1\xfa\x3d\x89\x91\x4a\xa7\x70\xd3\xb6\x85\xf2\x67\x76\xce\x95\x0f\x09\x2e\x67\x17\xcb\xc1\x7c\x58\x48\xda\x13\x9c\x73\xec\xd9\xb3\x47\xbe\xfe\xfa\xeb\x36\x7e\x52\x1d\x6c\xeb\x9b\x3e\x87\x73\xf5\x8d\xae\xaa\xd8\x4c\xb4\xbc\xe6\x2b\x2d\x4b\xc1\x7d\xe2\x13\x9f\xc0\x9e\x3d\x7b\x94\x4f\xe7\x01\x28\x17\x03\x56\xbf\xe5\xd2\xc0\x43\x43\xcd\xe2\x1d\xe9\x6f\x84\x46\x74\x27\xcb\xa6\x3a\xe9\xd0\x43\x17\x5a\xa9\xce\x22\x69\x82\xed\xa6\x80\xc9\xe0\xd4\xe8\xca\x2b\x2f\xee\x58\xfc\x71\xcb\x13\x17\x19\xd8\x24\xba\xaf\x55\xeb\x3b\x41\xc5\xe4\xe4\x24\xfe\xf5\x5f\xff\x55\xd7\x34\xf4\xda\xd4\xff\xac\xe4\xd2\xe2\x20\x65\x7a\x39\xbd\x36\xdd\xdb\xf0\x99\xca\x29\xec\x7a\xb4\xb0\xad\x7d\x13\x6f\x6c\xf5\xf3\x98\xd8\x7a\x1d\x0a\x4f\xf1\x9a\xf0\x99\xf8\x6a\xe3\xbf\xad\xed\x2c\x9e\xa7\xda\xff\xd2\x97\xbe\xa4\x5b\x1a\x3e\x63\xac\xd2\xbf\x56\x18\xbc\xfb\xfc\x86\xdf\xfb\xc8\x4c\xdf\x23\x45\xc1\xc6\x53\x9f\x1e\xd5\xc6\x2b\x4b\x7c\x74\xc9\x0b\x92\xd5\x36\xae\x7a\xf7\xdf\x7d\xbe\x7e\xe3\x48\xc3\xff\x3f\x7f\xb5\x63\xf1\x5f\x1a\x7e\x38\xc7\xa2\xcf\x5e\xb4\x3d\xcf\xa3\x3c\xa1\xd7\x79\x9e\xb3\x8b\x07\x14\x27\x47\x6c\x71\x00\x5d\x49\x62\xb3\x2e\xa8\x64\xd7\xf3\x55\xd2\x35\x81\x2a\x4b\x24\xdf\xa6\x4d\x9b\xd8\x9d\x77\xde\xa9\x1a\x2e\x02\xe8\x03\x50\xdb\x3b\x53\xb9\xfd\x96\x4b\xd5\xff\xbe\x28\xf8\xc6\xee\x96\x72\xc5\x45\x06\xfd\x5b\x06\x4c\xbf\x06\xb4\x2f\xfb\xa9\x55\x94\xb8\x8a\x7e\xfa\x53\xea\x3a\x2a\x0f\x99\x14\x67\x47\x9a\x27\x9e\xdf\xb5\xf4\xd8\x4a\x29\xbc\x10\xbf\xa4\xa6\xf6\x69\xac\x20\x76\x4f\x18\x63\xe2\xfc\xf9\xf3\xf8\xd9\xcf\x7e\x06\x21\x84\x46\x54\xea\x71\x73\xa4\x45\x16\xb4\x6b\xa6\x5d\x0b\x52\x9f\x5a\x69\x54\x4b\xea\xed\xe8\xf8\x14\x2c\x15\x0c\x54\x23\x32\xa4\x9f\x89\x8e\x87\xde\x9b\xea\xeb\xf9\xb4\x9f\x94\x17\xd4\xda\xa4\x16\x08\xb5\x36\x38\xa9\xcf\xd1\xcb\x4f\xa0\x97\x1e\x5a\x4f\xcf\x83\x56\x46\x9f\x11\xc8\x35\xe5\x81\xc9\x42\xb4\xf1\x56\xaf\xaf\xa7\x04\xd7\x5d\x77\xdd\xc5\xb7\x6f\xdf\x0e\xc4\x9f\x85\x60\x8c\x55\x2a\x6d\x3e\x7c\xf7\x85\xfa\xd7\xf6\x4f\x57\xfe\x7d\x51\xf2\xa1\xd4\x71\x10\xea\x9b\x2e\x3d\xdb\x0c\xa2\x1b\xc6\x18\x0a\x82\x6d\x18\x6a\x7a\x47\xfa\x3a\x85\xf6\xd5\x0d\xed\xb3\x41\x41\x26\x81\xd3\xa3\x47\x8f\xca\xbe\xbe\x3e\x76\xf9\xf2\x65\x26\xd3\x4b\x33\x7a\x3f\xa8\x05\xca\xb5\x96\x4c\x63\x9a\xce\x67\x68\x79\x5a\xa8\xd9\x9c\x6c\x52\x5a\x2f\xa7\xbe\x9f\x09\xa7\x38\x72\xe4\x88\x82\x4f\x0e\x65\xa9\xad\x16\xc6\x8f\x5c\xaa\x7e\xa5\x1c\xf0\xcd\xd1\xa4\x8f\x5d\x0f\xed\x1d\x14\xe5\x5e\xa4\x26\x7f\x92\x93\x76\x6b\xba\x5f\x51\x63\xdd\xd7\x58\x58\xfa\x61\x08\x48\x4c\x0c\xb6\xde\x7a\x61\xe7\xe2\xe3\x8d\x52\x38\x01\xc6\x26\xa5\x94\x29\x4b\x03\x71\x4c\x23\x16\x1a\xa2\xd3\xe9\xe8\x3c\x70\x69\x3e\x5a\x66\xd2\x80\x3a\x1f\xb3\xb4\x24\xbd\x76\x69\x13\x53\x7d\xaa\x59\x6d\xda\xda\xe6\xeb\xba\x60\x5d\xf8\xb2\xf0\xd3\xfa\x36\xbe\x9a\x2c\x05\x5b\xbb\x79\x70\xe9\x89\xf2\xde\xc5\x47\x9b\x26\x36\xd2\x70\xe8\xd0\x21\x00\xc9\x01\x44\xe5\x82\x40\xed\xe6\xcb\xd5\xcf\xee\x9b\xae\x3c\x52\x90\xac\xa6\xa6\xa2\x94\x88\x3e\x04\x95\x8c\x69\x00\x12\xda\xd8\xed\x66\x33\x00\x45\xc1\x87\xf7\x4d\x57\xbe\x7e\xe3\xd5\xfe\xe3\x4c\xa2\x8a\xe8\x60\x67\x0f\x00\x3f\x74\xe8\x10\xe2\x73\x68\x75\xfa\x6c\x5e\x82\x4e\x6f\xde\x71\x9b\x2a\xcf\x1b\x88\x52\x02\xc1\xc6\x5c\x93\xc0\x48\x26\xc7\xc7\x3e\xf6\x31\xbe\x6d\xdb\x36\x00\x80\x8c\xbe\x31\x5a\xe6\x02\xb5\x9b\xaf\x54\x7f\x73\xa4\xe1\xdf\x81\x64\x77\x68\xe4\x9c\xa4\x0e\x1c\x87\x72\x58\xe2\x0c\x8d\xa9\xc9\x57\xca\x35\xe6\x26\x5b\x39\xf4\xfa\x1a\x9e\xab\xb5\xf6\xd9\x17\x76\x2e\x3e\xbe\x58\x0e\xcf\x49\xc8\x49\x00\x33\x8c\xb1\x85\xf8\x40\x18\x75\x7e\x46\x22\x34\x0c\x7d\xa4\x2e\x98\x2b\xb9\x60\x69\x99\x49\x00\x53\xcd\x67\xc3\x67\xa2\x13\x19\xbf\x2e\x17\xc1\x54\xc7\x96\xef\xe2\x81\x8d\x6e\xaa\x64\xb8\xe3\xcf\x36\x61\x69\xb9\x8d\x9f\x26\x9e\xd9\xdc\x2d\x95\x4c\xe6\x3c\xad\x6b\x1d\x0f\xf1\xb2\xa9\x3a\xb9\xbd\xb2\x69\xb1\xb4\xef\xe0\xb5\xfe\x3f\x28\x08\x36\x08\x20\x51\x80\xda\xc7\xe3\x90\x98\xcc\x71\x46\xca\x6e\x48\xcc\x69\x89\x62\xc8\xc6\x6f\xba\x5a\xfd\x93\xb1\x65\x7f\xb7\x94\xb2\x1c\xb7\xc1\xa5\x94\xfc\xbe\xfb\xee\xe3\xf1\xba\xb3\x4d\x89\xdb\x78\x6f\x4a\xae\xe7\xce\x4d\x83\xd3\x84\xc0\xf4\xf0\x4c\xcc\xa7\x5a\x8e\x03\x10\x7b\xf7\xee\x55\xd7\x5e\xfc\xce\x40\x75\xcb\x62\xe9\xc0\xfe\xa9\xfe\xdf\x2d\x48\x56\x8d\x26\xbc\x8c\x3e\x91\x18\x73\x35\x11\xc2\x29\x06\xa6\x25\x4a\xfa\xf4\x2f\x24\x0f\x43\x37\xd6\x23\xb7\x25\xc2\x38\x57\x09\xae\xfc\x72\xd7\xc2\x8f\x66\xfa\x3b\xa7\xc0\xa0\xce\x97\x9c\x43\x74\xea\x78\x12\xad\x7e\xef\xbd\xf7\x74\xa1\x91\x87\xb1\x59\x0f\xc1\xe6\x1b\x53\xbe\xdb\x2c\x36\x57\xdb\x7a\x3d\x97\x0f\xee\xc2\xe1\x6a\xd7\x36\x31\x6d\xd6\x85\x6d\x02\xda\xf0\x9a\xf2\x4c\x56\x80\x4d\xc9\xe9\xf4\x50\xbf\xdd\x34\xb6\x6d\x42\xc3\xa6\xad\xe9\xb3\xa2\x56\x4c\xea\x3e\x3e\x74\x28\x39\x2f\xd5\x0b\x59\xed\xd0\xb5\xfe\xdf\xac\xae\x15\x0e\x45\x73\x5f\xd7\x6c\xfa\x6f\xd7\xf2\x60\x40\x5a\x79\xaa\xb2\x78\x7e\x0c\xac\x15\x6e\x3c\x34\xd9\xff\x19\x06\x56\x8d\xe7\x93\x07\x00\x3b\x76\xec\x40\x1c\x57\xd1\xe9\xb6\x8d\x37\xda\x3f\x2a\xc4\x5d\x63\xd6\xf8\x90\x4d\x9a\xcc\x26\x7d\x29\x9c\x8e\x53\x00\x10\xb7\xdf\x7e\x3b\x8f\x0f\xe6\xe1\x88\x5f\x3c\x2a\x86\xac\xfe\xd1\xf7\x07\xbe\xd8\xdf\xe6\x7b\xba\xfc\xd3\x5c\x8a\x9e\x60\xa8\x6e\x52\x68\xf7\x89\x58\x8e\xdf\x5f\xa1\x0f\x23\xc6\x2b\x19\xd0\x2c\x8a\x85\x5f\xee\x5a\xfc\xd1\xd5\x0d\xed\xb7\x11\x6d\xee\x4a\xdc\x93\xf8\x7b\x26\x6d\xc4\x42\xe3\x89\x27\x9e\x58\x8f\xf9\x6f\xfa\xa5\x49\x1f\xcc\x26\xed\x45\xeb\xba\x5c\x00\x6a\x4e\xe6\xb1\x6a\xf2\x4c\x72\x9a\x4c\x13\x89\x4e\x4a\x0a\xe7\x1a\x70\x36\x5a\x68\x9e\xcd\x7a\xd2\xdb\xb5\xf1\xdf\x85\x97\xd2\x4a\xf1\xdb\xea\xd8\xea\xf7\x58\x1d\xb7\xdd\x76\x5b\xf2\xf1\xa9\x78\x42\x97\xeb\xab\xde\xe6\xcd\x8b\xa5\xbb\x93\x53\xeb\x34\x97\x04\x40\xf7\xd0\x6b\xa5\xe8\x52\x85\xe9\xb2\xe4\x5b\xc7\x12\xfe\xd6\x85\xd2\x27\x37\xb4\x0a\xa3\xb1\xd5\xe1\xc5\x6d\x62\xe7\xce\x9d\x7a\xff\x4c\x3c\x53\xc9\x26\x4c\x6d\x0a\x20\x55\x4f\x3f\x73\xd4\x26\xa5\x6d\x12\xdb\xa5\xa1\x38\x00\x6c\xd9\xb2\x85\xdf\x7c\xf3\xcd\xc9\x97\xcd\x11\x7d\x18\xba\xb2\x67\xba\x72\x78\xf3\x52\xe9\x3e\x48\xf0\xee\x64\x4f\x9f\xe6\xa5\xdc\x0e\xe5\x89\x28\xcb\x41\x7d\x48\x87\x31\x06\x7d\xa9\x84\x81\xa5\x82\xa2\x2a\xce\x24\x99\x44\xc8\x11\xbc\xb4\x63\xe9\x89\x0b\x43\xab\x27\x24\x4b\x1d\xde\x92\x08\x0d\x29\xa5\xf8\xc6\x37\xbe\x21\xf4\x9d\x7c\xe8\x9d\x24\x40\x36\x5f\x28\x0c\xad\x07\x03\x9c\xa9\xbe\xe9\xda\x94\x6c\xcf\xc2\x25\x1c\x6c\x93\xc5\xd4\x37\xd3\x64\x31\xe5\x9b\xf0\xdb\xea\xaa\x32\xaa\xc5\xa9\x82\xa2\xb4\xba\x84\x8f\xcb\x92\xa0\x82\xc9\x66\x69\xdb\x04\x9f\x89\x2e\x1d\x17\x00\x60\xd3\xa6\x4d\xfa\xe1\xda\x9e\x94\xb2\xb2\x69\xc9\xdf\xd7\xdf\xe6\xbb\x4d\xa1\xd8\xd4\x22\x60\xfc\x49\x4b\xb5\x52\x98\x5a\x09\x24\x21\x6c\xc6\x18\xaa\xed\xc2\xce\xe1\x15\x7f\xf7\x62\x5f\x38\x19\xb7\xc5\x01\xf0\xd1\xd1\x51\xbd\xbf\x26\xc3\x00\xe8\xe5\xb7\xad\x8f\xa6\x6b\x01\x80\xd3\x8a\x26\xc6\xd0\x5f\x53\x23\x54\x02\x0b\x00\xb8\x7c\xf9\xb2\x00\x90\x3a\xa9\xbc\xaf\xc3\x07\x6f\xb9\x54\xfd\x6a\x31\x64\x83\xea\x4d\x56\xc5\x1d\xfd\x1b\x4a\x91\x70\xe8\x12\xa2\x04\x45\xea\xa3\xd0\x09\x2f\x65\xd7\xa4\x83\xe6\x12\x02\x90\x0c\xe2\x9d\xb1\x95\xe7\x7f\xbd\xa9\xf1\xcb\x58\x68\xe8\x07\xb8\x34\x59\xf4\x31\x61\x11\x6f\x1d\xd7\xdf\x17\xb0\xf1\x44\x2f\x03\xcc\x03\xcd\x05\x93\xc5\x6b\x4e\x7e\xf5\x6b\xd3\x40\xb7\x69\x06\x1b\x2e\xfa\x2c\x69\xb2\xe1\xb3\x4d\xe8\x2c\x8b\x89\xf2\xc4\x26\xd0\x6c\xf4\x98\xda\xca\x2b\x4c\xa8\x35\x64\x6b\x2b\x8f\x20\x32\x59\x89\xc9\xfc\xf1\x7d\x9f\xc7\x07\x51\xa9\xe4\x31\xb0\x72\x7d\xd5\xdb\x55\x10\xac\x12\xb9\xcd\x71\x09\xd3\x7f\x34\xb7\x3b\x19\xb4\xe9\xb1\x9f\x4a\xb1\xfb\xed\x09\x56\x1b\x5f\xf2\x0f\x22\x3a\x3a\xc0\x07\xa0\x5b\x1c\x3a\xbd\x74\xce\xba\xf8\x9f\xa5\xa4\x92\x71\x6b\xb3\x1a\x6c\xd2\x58\x2f\x33\x35\x96\x6a\xf4\xe1\x87\x1f\x56\x0d\x79\x00\xca\x4c\x46\x27\x7a\x0d\x35\x8b\x77\x81\xb8\x7a\x49\x52\x92\xd8\xc0\x39\x99\xc4\x40\x68\x95\x48\xe2\x28\xaf\xa6\x7b\x76\x87\xc4\xe5\x0d\x6b\xa7\x5f\xd8\xb9\xf8\x13\x11\xbb\x27\xf4\xd4\x27\x20\x72\x4f\x7e\xfc\xe3\x1f\xdb\x4c\x35\x53\x5f\x6d\x13\xd9\x06\xeb\xb2\x08\x54\x72\x4d\x00\x5b\xd2\x07\x82\x4b\x5b\xe4\xa1\xcb\x25\x08\x28\x9d\xb6\x32\x57\x1d\x2a\xc4\x28\x4d\xb4\x5c\x17\xae\x74\x92\xbb\xea\xd8\x04\x88\x4d\x88\xd8\xe8\xa7\x02\xde\x24\xd8\x92\xfb\xb1\xb1\x31\x48\x29\xd5\x27\x1d\x3c\x00\xbe\x27\x58\xb9\xbf\xed\x8d\x33\x65\xd9\xab\x88\x7d\x6a\x81\x53\x0b\x66\xd0\xf8\x87\x96\xa4\x5e\x2f\x8a\x79\x78\xb5\x56\x61\x33\x22\xc1\xa1\x3e\xea\x6d\xb3\x6a\x4d\xcf\x9c\xf6\xc7\xa6\x90\x28\xbc\xa0\xc0\x36\xc6\xb8\x84\x8b\xa9\x21\x00\xc0\x43\x0f\x3d\x94\x3e\x54\x45\x46\xfe\xde\x0d\x93\xfd\xbf\xc7\x25\xca\x3d\x56\x83\xe6\xf3\x31\x92\xa7\x5d\xf4\xe4\x25\xb7\x9a\xb0\x50\xbf\x0b\x7d\xc1\xd4\x73\xbb\x16\x7f\xd8\x2c\x8a\x8b\x60\xa9\x17\xd6\x5a\xf1\x39\x0d\xa2\xdd\x6e\xe3\xcd\x37\xdf\xb4\xf5\x4b\x67\x76\x96\x30\xb5\xf2\x42\xc3\x45\x93\xad\x2d\x7d\x72\x98\xe0\x29\x5d\x26\x5a\x6c\x16\x42\x9e\xc4\x0d\x7f\x94\x4e\x4a\x83\x89\x16\x05\xaf\xe3\xb5\x0d\x56\x97\x15\x47\x69\xca\xc2\x4d\x69\xb1\xf5\x01\x86\x3a\x2e\x58\x3a\x06\x12\xd8\x1d\x3b\x76\x20\xde\x94\x95\x7c\x0f\x06\x80\x07\x48\x3f\x36\x13\xe2\x71\xad\x7d\xa2\x43\xff\x8b\xfd\x18\x99\xc0\x44\x49\xca\xee\x9a\xa2\x1e\xec\x67\x00\x8a\x21\xaf\xa1\xbb\xbd\x81\x2b\x78\x4b\x72\x8d\x1d\x1b\x1c\xcd\x4b\x7e\x6d\x03\x53\x4f\x94\x51\x7a\x3e\xbd\x4e\x1e\xde\xe0\xe0\xa0\xba\xf7\x00\xf8\x5c\xa2\x76\xe0\x5a\xff\xdd\x1b\x56\xbd\x23\x4c\xdb\xa7\x11\x75\xb4\x6b\x9a\xa5\xdd\x93\xf4\x05\x63\x9a\xbd\x41\xce\xd5\xe8\x6e\x1b\x8b\x7e\xd7\x0a\xb2\xf9\xda\xd6\xe5\x9f\x4d\x0d\xb4\x4f\xa1\x7b\xdc\x9f\xb2\x34\x5a\x8c\x31\xb1\xb6\xb6\x26\xfe\xe6\x6f\xfe\x46\x5c\xbd\x7a\x95\xf6\x97\xf6\xcf\x96\x9f\x65\xf6\xd3\x64\xd5\x58\x70\x0b\x1b\x93\x76\x30\x59\x13\xfa\x9f\x4d\x90\x50\xfc\x26\x13\xd5\xd4\x1f\xdb\xe4\xa1\xc9\x34\xa6\xa8\x75\x41\xf1\x99\xe8\xb4\x29\x32\xd7\xf3\xc9\x1a\xcf\xeb\x11\xf4\x59\x74\xf6\xf0\x35\xb6\x38\x10\x5f\x73\xc9\xa4\x17\x70\x19\xc4\x9b\x0c\x62\x01\xa1\xac\x0a\xb5\x72\x28\x93\x8f\x63\x4b\xc4\xfb\xc0\x12\xeb\x42\xc6\x31\x3e\x19\xaf\xd2\xaa\x79\x12\xb7\xc1\x24\xa4\x94\x49\x7c\x43\xb5\x3d\x32\x32\x62\xb3\x2c\x6c\xee\x48\x1e\x0b\x2c\xf5\xdc\x6d\x8c\x34\x99\x39\xa6\xc1\x6b\x1a\x88\xfc\xa1\x87\x1e\xe2\xf1\x67\x1b\x23\xc1\x21\x51\xa9\xaf\x7a\x9b\xf7\x4f\xf5\x3d\xc4\xc1\xbc\xb4\x29\xa6\x47\x8c\x4c\xa9\x9b\x2f\x35\x73\x44\xea\xf0\xa4\xaa\x88\x76\x86\xbe\x76\x6a\xb4\xf9\xb2\x64\x98\x42\xfa\x3c\x8d\x16\x00\xb1\xb6\xb6\x26\x9e\x7e\xfa\x69\xbd\x9a\x8b\x17\x36\xad\x6d\x1b\x80\x36\xeb\xc2\x24\xf5\xa1\xe5\xe9\xbf\x79\x27\xa0\xad\x1d\x13\x3e\x1b\x5d\x36\x4b\x4a\xd5\xcf\x23\xb8\x28\xbc\x7e\x4f\x85\x0e\x0c\xbf\xb4\x6d\x17\x2f\x4d\x89\xf6\x23\x8f\x80\xa7\xb0\x74\x92\x99\x70\x64\x95\x25\x96\x47\xc8\x20\x96\xca\xe1\x9c\x60\x68\xc7\x7b\x0d\xb4\x55\x14\xa6\xa4\x84\xbe\xc5\x3c\xaa\x9f\x38\xe4\x5d\xb5\x28\x93\xd5\xc5\xc4\x32\x11\x8b\x7d\xc1\x8c\xde\x9e\xba\x26\x34\xd9\xc6\x83\xed\x3a\xd7\x73\x76\x69\x39\x53\xe3\xae\x01\x00\x00\x7c\xe7\xce\x9d\x89\xb5\xc1\x18\xf3\xa4\x94\x65\x2e\x51\xdd\x3f\x55\xb9\xa7\xd6\xf2\x0e\x01\x48\xcc\x33\x00\x48\x40\xb7\xbf\xdd\x2d\x51\xf9\x91\x60\xd5\x36\x7c\xc9\x9f\x8b\x46\xf4\x00\x00\x20\x00\x49\x44\x41\x54\xee\xc6\x0c\xa6\x7d\xfc\x95\x75\x7d\x93\x98\xa9\x12\x4c\x4a\x48\x48\x4c\x55\xdb\x13\xaf\x6d\x5d\x7e\xaa\xed\xc9\x2b\x52\x4a\xf5\x65\x35\xb5\x82\x12\x48\x29\xc5\xc5\x8b\x17\x31\x31\x31\x41\xfb\x42\xfb\x6c\x9a\xe0\x26\x49\x4e\xf9\xa0\xc3\x66\x0d\x7c\x9b\xc0\xa2\x79\x59\xf5\x4d\xd7\x36\x81\xb0\x1e\xfc\xb4\xae\x89\x3f\xd0\xca\x5c\xda\xdc\x04\x4f\xaf\x5d\xca\xc9\x66\x1d\xe8\xe5\xd4\x8a\x32\xd1\xe4\x12\xd2\x36\x58\x5b\x1f\x38\x00\x3c\xf7\xdc\x73\x42\x77\xbf\xa5\x94\x42\x42\x06\xb3\x95\xce\xd5\x4e\x41\x36\x21\x59\xb2\x22\xc2\xba\x4b\x7e\x51\xc0\x9f\xd1\x00\xa9\x4c\x1d\xe0\xaf\xf6\x6f\x24\x5e\x8d\x8c\x3e\x96\x7d\xb9\xb6\x76\x01\x80\xfa\xd2\x9d\x8d\x17\xb4\x9f\xae\xe7\x68\xb3\x80\xf5\x79\x20\x28\x22\x53\x03\xb6\x87\x6c\x4b\xe2\xc8\x91\x23\x28\x14\x0a\xaa\xae\xc7\x18\x2b\xd7\x57\xbd\xad\xfb\xa6\x2a\x0f\x32\x30\x1f\x40\x22\x38\x99\x12\xa0\x2a\x53\x99\x61\xac\xeb\xeb\x21\x25\x69\x91\x92\x34\x32\x25\x79\x22\x84\xab\x45\xb1\x74\x62\x6b\xe3\xa9\xb9\x4a\x70\x01\xd1\xae\xd0\xb9\xf8\x24\xeb\x96\xfa\x74\xc1\xfb\xef\xbf\x8f\xe7\x9f\x7f\x5e\xf5\xc9\x36\x88\x6c\x12\xda\x65\x81\x98\xe0\x4d\x65\x26\x8d\x6e\x83\x37\x3d\x4c\x9b\xf0\xb2\xd1\x41\x07\x91\xcd\x0d\xd0\x93\x4d\x58\x66\x4d\x2c\x3d\x3f\xcb\xea\xb1\xe1\xa5\x34\x65\x4d\x76\x3d\x9f\xd2\x91\x27\xe5\x19\xdb\x4e\x25\x30\x36\x36\xc6\x35\x37\x45\x20\x3e\xdb\x74\x7a\xa0\x7d\x69\xbe\xaf\x73\x31\xb2\x38\xba\x6e\x4a\x6a\xb3\x62\x9c\x64\xb2\x8d\x54\x2f\xe8\xae\xbd\x28\x77\x45\x32\x60\xb1\x2f\xb8\x74\xad\xd6\xb9\x14\xb7\x93\x08\x0f\xc3\xaa\x60\xcf\xa4\x27\x7d\xb2\xdd\xbb\xc6\xb8\xd3\x14\x77\x99\x7a\x56\xa2\x86\x87\x87\x55\x1d\x4f\x4a\x59\x66\x12\xd5\xfd\x53\xfd\xf7\xd4\xd6\xbc\x43\xa9\x08\xa8\x4a\x92\xfe\x76\x8d\x34\x7b\x9c\x07\xdd\x0d\x31\xb2\xcb\x66\x01\x29\xce\x0d\xad\xbe\x76\x61\x70\xf5\x0d\xb0\xe4\xa5\xb5\xd4\x0a\x4a\x10\x04\x78\xe1\x85\x17\xb0\xb6\xb6\x96\xd7\x12\xc8\x53\xae\xf3\xc0\xe6\x8e\xd8\xcc\x68\x9b\xcb\x67\x6b\xcb\xa6\x15\x5c\x1a\xc2\xd6\x9e\x4b\xc3\xd0\x64\x72\x31\x6c\x74\xd2\xb1\x93\x35\x68\x6d\xc2\xda\x24\x80\x6c\xfc\xd2\x85\xaa\xc9\xda\xc8\x12\x4e\xa6\x72\xda\x57\xab\xfb\x74\xed\xda\xb5\xe4\x84\x2e\xed\x4c\xd3\xf6\x72\x29\x9c\x3b\x37\xbc\xfa\x5a\xc8\xd0\x46\x62\x35\xb0\xee\x66\x2f\x65\x79\x40\x59\x15\x74\x57\x34\x10\x1d\x75\x89\x58\x8f\x32\x84\x1c\xed\x73\x43\xab\xaf\x34\xfc\x60\x8e\x31\xd6\x52\x87\xfc\xc4\xed\x9a\xe8\x37\xf5\x33\x8f\x35\xa5\x52\x4f\xbf\x6d\x26\xab\xe9\xc1\x67\x99\x9d\x1c\x48\x7c\x2c\x0f\xb1\xb5\x51\x6b\x15\xc6\xf7\x4e\xf7\xdd\x57\x90\xcc\x67\x7a\x04\x54\x6a\x8c\x53\xbf\xb1\x14\xd6\x57\xa5\x7a\x16\x56\xd0\xcd\x60\xe9\x0d\xfd\x98\xab\x04\x57\x5e\xdf\xd2\x78\xa6\x5d\x10\x93\x52\xca\xd4\x91\x7f\x52\xca\x40\x08\x21\x7e\xf1\x8b\x5f\x20\xfe\x98\x30\x75\xbd\x6c\x83\xc2\x24\x95\x4d\xfc\x32\x0d\x5e\xbd\x3c\xcb\x3d\xc8\x03\xe3\x6a\x53\xe5\xd1\xfa\xa6\x72\xdb\x04\x34\x25\x7d\x80\x51\x01\x69\x1a\x80\x14\xb7\x6b\xcc\xc0\x50\x66\x9b\xf8\x79\x71\xb9\xcc\x72\x9a\x5c\x16\x1c\x1d\xf3\xb4\xdf\x3d\x29\x0c\x43\xb5\xaa\xa2\x4e\x4f\x6f\x09\xc8\xc6\x99\x91\xd5\x13\x53\x03\xed\xb3\xdd\x93\xfa\x35\x37\x5d\xed\xd9\x48\xc6\x3c\x5d\x38\x20\x9e\x3b\x24\xa6\xfb\xdb\xe7\x4f\x8e\xaf\xfc\x4a\x46\x9f\x79\x68\xc5\xdf\x26\x0e\xa4\x94\x98\x9b\x9b\x43\xa3\xd1\xa0\x7d\xb3\x59\x9f\xa6\xbe\x41\xbb\xb6\x0a\x4e\x13\x63\xf4\x64\x32\xd3\x6d\x29\xd9\xa7\x1f\xff\xf9\x00\x2a\x7b\x66\x2a\x47\x93\xd8\x46\x2a\xc9\x48\xbe\xa6\xc2\x19\x89\x83\x12\x25\x96\x78\x75\x3d\x66\x1d\xd4\xce\xd1\x38\x3f\xe0\xb2\xfd\xc6\x96\xe5\x5f\xcc\xf5\x77\x2e\x00\x50\x1f\x7f\x4e\x9d\x48\xfe\xee\xbb\xef\xe2\xfc\xf9\xf3\xb4\x2f\x2e\xab\x0b\xb0\x0f\x44\x97\x8b\xe0\xd2\x54\xa6\x7b\x9d\x0e\x3a\x69\xb2\x84\x35\x15\x06\xae\x67\x48\x07\x88\x09\x0f\x90\xa6\x4f\xdd\x9b\x04\x84\xe9\xd7\x64\x25\x98\xb4\xb5\xc9\x92\x30\xd1\x6c\xd2\x90\x26\xe1\xee\xb2\x0a\x6c\xcf\xcd\x26\xac\x6d\x7d\xa2\x29\xf5\xfc\x7e\xfd\xeb\x5f\x27\x79\xf1\x44\x6e\x01\x68\x2c\x96\x83\x4b\x2f\xee\x58\xfa\xd1\x8a\x1f\xce\x01\xe8\x5d\x07\x48\x6d\x21\x45\x37\xfe\xc7\x34\x4b\x24\x8e\xe5\x35\x7c\x31\xf3\xab\x1d\x4b\x8f\x2f\x97\xc3\x49\xc6\xd8\x52\x6c\x71\x04\xf1\x99\xa4\xe2\xbb\xdf\xfd\xae\x88\xbf\x4b\x6c\x52\x12\x26\x01\x41\xc7\xbd\x6b\x3c\x25\xb8\x4c\xa6\xac\x42\x62\xd3\x28\x26\xe6\xe1\xf6\xdb\x6f\x4f\xf6\xe9\x23\x16\x1a\xd5\xb5\xc2\xf0\x9e\xe9\xbe\x4f\x17\x24\x2a\x5d\x26\x29\xd1\xda\xbb\xad\x96\xa9\x40\xa8\x1e\xb7\x48\x09\x0b\xc3\xda\x4b\xcc\xd0\x8b\x1b\xd7\xde\x3a\x3d\xb2\xfa\xb2\x64\xa9\xb3\x42\xd5\x76\x72\x4c\x4d\x4d\xe1\xb9\xe7\x9e\xb3\x4d\x48\xa0\x97\x99\xb6\x89\x0b\x4b\x9e\x8e\xc7\x66\x91\xa8\x72\x13\x7e\xd3\x40\x37\xe1\x77\x69\x0b\xd7\x64\xce\x52\x10\xb6\x72\xdb\x64\xd5\x93\xab\x1f\x74\x0c\xb9\xc6\x93\x69\x20\x9b\x04\x91\x6d\x90\xeb\x79\x2e\x2b\x42\xa7\xcf\x35\xc1\x74\xba\x4c\xd7\x3a\x1e\x5c\xbd\x7a\x55\x3f\x45\xbd\xcd\x18\x6b\x32\xc6\x96\xc0\xb0\xf0\x7e\xbd\xf5\xeb\xe7\x76\x2f\x7e\xaf\xe1\x87\x0b\x49\x2d\xb5\x9a\x12\xef\xcf\xd0\x07\x77\x4a\x51\xc6\x66\xca\x8a\x1f\x2e\x3c\xbf\x6b\xe1\x5f\xdf\x1b\x6c\xbd\x81\xd8\x0d\x97\x52\x36\xd5\x9e\x24\x00\xa8\xd7\xeb\x36\x25\x60\xea\x47\x1e\x65\x68\xb4\xb0\x5c\x03\x94\x22\x33\x49\x66\x00\xd1\xc1\xc3\x37\xdc\x70\x03\xdd\xa7\x5f\xde\x31\x57\x3e\x3c\xd4\x2c\xa6\xf7\x6d\xe8\xef\x97\x98\x4f\x22\xb6\xec\xac\x8b\x6f\x69\x7c\x84\x01\x2d\x2f\x5c\x7a\x7d\xcb\xf2\x2f\xd6\x3c\x31\x85\xc8\xda\x50\x27\x78\x05\x88\xa4\xbf\x78\xfd\xf5\xd7\x15\xed\xa6\x49\x6d\x32\x43\x5d\x70\x59\x93\x83\x6a\x3f\x9b\xb9\x6b\x13\x52\x26\x0d\x6c\xd2\xbc\x3a\x0d\xae\xc9\x61\xc2\xa3\xe7\xd1\x7e\xba\x70\xdb\x84\x8a\x0d\xb7\x4b\x48\x99\x92\x49\x28\xe4\x49\xae\xc9\x6d\x9a\x1c\xa6\x3e\x09\xf4\xd2\xec\x52\x20\xa9\xfb\xf7\xdf\x7f\x1f\xf1\xfb\x4e\x02\xb1\xab\x22\xa5\x6c\x00\x98\x93\x1c\x53\xa7\x47\x9a\xbf\x7a\x6a\xef\xdc\x3f\x4d\x57\xdb\x97\x24\x4b\x2f\x29\xb2\xee\xc1\x33\x69\xf7\x1d\x80\x80\xc4\x74\xb5\x7d\xf1\xe7\x7b\xe6\xff\xe9\xd4\x68\xf3\x57\x92\x61\x2a\x5e\x2d\x4c\x82\xfe\x8c\x31\x71\xee\xdc\x39\x2c\x2c\x2c\xd0\xb1\x69\xeb\x93\xe9\x97\x26\x9b\x30\x11\xf4\xe8\x40\xbd\x31\x75\x6d\x6a\x2c\x35\xc0\x8f\x1c\x39\x02\xcf\xf3\xf4\x97\xd9\xca\xe5\x80\xd7\xf7\xcc\xf4\xdd\x5b\x0c\x59\x5d\x37\xc3\xba\x3b\x6c\x15\xe3\x34\xcb\x83\xf5\x00\x75\x7d\xbe\x58\x48\xc8\xc4\x7c\x8b\xef\x21\x71\x76\x64\xf5\x95\xab\xb5\xf6\x29\xb0\x24\x18\x9a\x5a\x45\x79\xe3\x8d\x37\x30\x31\x31\x91\x35\x60\xf5\x3e\x66\x09\x54\x13\x8c\x4d\x9b\xd9\x5c\x0d\xd3\x03\xce\x12\x6a\x54\x78\x98\xb4\x8b\x29\xdf\x65\x51\x98\xda\xb7\xe1\x31\x95\xb9\xb4\xb3\xcb\xc4\x77\xc1\x98\xc6\x20\x15\xdc\x54\x88\x53\x7a\x6c\xda\xd3\x84\x37\xab\x4d\xda\xbe\x09\x6f\x82\x4b\x08\x01\xce\xb9\x40\x14\x20\x6d\x4a\x29\x97\x18\x63\x9e\xe0\xf0\x2e\x0c\xb5\x5e\x9e\xab\x04\x73\x87\xaf\x54\xef\xd8\x3d\xdb\x77\xe3\xc0\x5a\x61\x90\x4b\xc6\x99\x7e\x92\x76\x6c\x45\x0b\x26\xc5\x52\x39\x98\x39\x37\xb4\xfa\xd6\xc9\xf1\x95\x97\xe6\x2b\xc1\x39\xd9\x7d\x75\x62\x09\x51\x8c\xa3\x0d\x40\x48\x29\xf1\xda\x6b\xaf\x51\xba\x5c\x34\x5f\x2f\x8c\x00\xc0\x3d\xf4\x0e\x1a\xdb\xe4\xb1\x0d\x46\x31\x34\x34\xa4\xce\x1f\x50\x47\xbf\x57\xc6\x96\xfd\xdd\x63\xcb\xfe\x51\x06\xc6\x53\xc7\xfa\x25\xc2\x40\xdb\xf0\x92\xec\x9c\x63\xd0\x5f\xf6\xd1\x3e\x22\x0f\x16\x9f\x62\xae\x7f\x06\x41\x32\x89\xe5\x52\x38\xf3\xc6\xe6\xc6\x73\x01\x97\x33\x6a\xbf\x06\x8b\xbe\x54\x1e\x00\x10\x33\x33\x33\x78\xe3\x8d\x37\x5c\x0c\xd1\x93\x6d\x10\x53\x58\x9b\x65\x40\xf3\x4c\x96\x4c\x16\x6e\x3d\xdf\x96\x5c\x34\x9a\xac\x0d\x8a\xcf\xd5\xa7\xbc\x34\x28\x18\x3a\x36\x4c\x79\xae\x49\x4c\x15\x92\x8d\xa7\x36\x3c\x3a\x8c\x4b\x50\xd9\x9e\x53\x96\x70\xb3\x59\x5b\xd6\xbc\xbf\xfc\xcb\xbf\x14\x8f\x3c\xf2\x08\xe2\xa0\x65\x0b\x91\x4b\xc1\x19\x63\x10\x90\xc1\x42\x25\x68\x3d\xbf\x6b\x71\xfa\xe4\xf8\xca\xeb\x5b\x17\x4a\xbb\x47\x1b\xfe\xd6\x0d\x2d\x6f\xd0\x0f\x58\x59\x02\xa2\x53\x90\xed\x85\xbe\x60\x6e\xba\xda\xbe\xf4\xfe\xc6\xd6\xd9\x85\x72\x70\x39\xe4\x98\x91\x90\x53\xf1\x57\x05\x17\x62\x61\xd4\x8a\xdb\x17\xaf\xbe\xfa\x2a\xe6\xe7\xe7\x6d\x63\xd4\x94\x4c\xbc\xce\x52\x48\x49\xa2\xaf\xd5\xbb\x18\x62\x14\x1a\x9b\x36\x6d\x4a\x9d\xee\xc5\x18\x2b\x33\x89\xca\x47\x66\x2b\xb7\x97\x03\x3e\xde\xf3\xfd\x13\x68\xaf\xc5\xab\x35\x6a\xb5\x31\x06\xe9\x38\x11\xd3\xad\x0b\xba\x8f\x23\x16\x28\xa7\x46\x9b\x2f\xce\x55\x3a\x17\xc0\xb0\xc0\xc0\x52\x1f\x4e\x0a\xc3\x50\x7c\xef\x7b\xdf\xb3\x3d\x78\x97\x60\x34\x4d\x02\x13\x0f\x68\x32\x4d\x02\x5b\x1b\xa6\x76\xd6\xf3\xe0\x4d\xed\xae\xb7\x4d\xda\x8e\x4b\x79\xd0\xfa\xeb\xe1\x8b\x4e\x5b\x96\x40\xb2\x59\xbc\x26\x3a\xf2\xf0\xc8\x65\x81\xe4\xed\x83\x6d\x7e\x58\x85\xd5\xf4\xf4\x34\x46\x46\x46\x02\x00\x60\xd1\x77\x6a\x17\x10\xef\xed\x00\xd0\xea\x70\xd1\x98\xee\x6f\xcf\xcd\xf6\x77\xce\x15\x04\xab\xfa\x21\xeb\xf7\x04\xf3\x25\x80\x90\xcb\x76\xbb\x20\x57\x42\x2e\x1b\x12\x68\x48\xc8\x05\xc6\xd8\x02\x24\x16\x10\x59\xd4\x4b\x9a\x72\x0c\x1a\x8d\x06\x5e\x7b\xed\x35\x9b\x25\x65\xeb\x83\xab\xbf\xb6\xfb\x04\x87\xfa\xe8\xb4\xed\x01\x65\x4d\x1c\x7e\xf0\xe0\x41\x25\x08\x3c\xe5\xa6\xd4\x5a\xde\xe8\xe6\x45\xff\x0e\x26\x99\x9f\x3e\xc9\x48\x59\x0f\xfa\x2e\xae\xae\x60\xa1\xc1\x65\x53\x04\xa4\x5b\x4d\x62\xa5\x14\xce\x9c\x1c\x5b\x79\x41\x44\x2e\xca\x82\x94\x32\x65\x6d\xcc\xcd\xcd\xe9\xfd\xb0\xf5\xcb\xa5\xbd\x4d\x83\xc5\xe5\xca\xd9\x84\x91\xcb\xbc\xa5\xb0\x36\x7a\x5d\x78\xe9\x40\x06\xb2\xdb\xd4\xeb\x99\xca\x4c\x30\xd4\x2a\x70\x09\x1b\x13\x2c\x08\x2c\x2c\x30\xa6\xfe\x98\x60\xa9\x75\x67\xa2\xdb\xc6\x5b\x1b\x7d\x79\x60\x4d\x29\x05\xfb\xfd\xef\x7f\x5f\xfc\xce\xef\xfc\x0e\x1f\x1d\x1d\x0d\xb4\x80\xa9\x40\x2c\x38\x10\x59\xc6\x0b\x12\xa8\x76\xb8\x28\x07\x05\xe6\x2b\x1c\xf1\x66\xae\x36\x63\xac\x09\xa0\xc9\xc0\x1a\x31\x7c\x43\x4a\xd9\x64\xda\x07\xb3\x9b\xcd\x26\xfe\xf1\x1f\xff\xd1\x35\xf1\x5d\xd6\x60\x1e\x8b\xd1\xf8\x9b\xbc\x55\x67\x60\x00\x25\xc4\xf8\x60\xc6\xc6\xc6\xd4\x5b\xb0\x1c\x80\x2f\xa5\x2c\x6f\x5b\x28\x1d\xd8\xb0\xea\x1d\x48\x9b\x0f\x32\x3e\x84\x58\xc6\x71\x8a\xe8\xe0\x92\x64\x47\x1c\x93\xa9\x3d\xfb\x6a\x5b\xae\xfa\xf0\x92\xda\x3c\xa3\x2a\x48\x40\x9c\x1e\x59\x7d\x71\xa1\x12\x5c\x92\x90\x0b\x90\x91\x8b\x12\x9b\x87\x62\x65\x65\x05\x3f\xfd\xe9\x4f\x4d\xfd\xc9\x62\x96\x2d\x99\x06\xb1\x2b\xb9\xf8\x4a\xdb\x33\x4d\xc2\x3c\xb4\x64\x69\xd1\x3c\x38\xf2\x08\x0c\x3d\xcf\x56\x66\x6a\xdf\x04\x9b\xd7\xea\x33\xe1\x73\x59\x64\x36\x8d\x4b\xfb\x67\xeb\x93\x0d\xd6\x54\x9e\xc7\x52\xe1\x4f\x3c\xf1\x04\xee\xbb\xef\x3e\x8c\x8c\x8c\x04\xb1\xb2\x54\x71\xb7\x36\xa2\xf8\xc4\x12\xba\xe7\x69\xe8\xaf\xc6\x0b\xc6\x58\x3b\x8e\x5f\xb4\x62\x65\xd8\x92\x52\x26\x9b\xbd\x00\x04\x2b\x2b\x2b\x4a\x68\x64\x29\xc0\x2c\x4b\xd4\xa5\x08\x60\x82\xcd\xfa\xae\x8a\x9e\x7a\x1a\xbb\xf5\xd6\x5b\xf9\xc0\xc0\x80\xaa\xe7\x01\xf0\x8b\x82\x57\x77\xcd\xf6\x7d\xbc\x28\x58\x95\xe9\xb1\x0a\x68\xa7\x1b\xa1\x7b\x52\x57\xf7\x03\x6c\xdd\x65\x29\xc6\xc8\xb5\x16\xf4\x50\x87\xff\x34\x22\x6b\xe3\x57\xb2\xeb\xa2\x34\x10\x49\xe9\x00\x80\xf8\xd6\xb7\xbe\x65\x1b\xa0\xa6\x7e\x52\x06\xda\xea\x50\x18\xd7\xe4\x33\x69\x30\x5a\x66\x83\x73\x4d\x78\xd7\xc4\xc8\x6b\x6d\xb8\x06\x91\x0b\x87\x89\x5e\xd3\x00\x73\x69\x71\x0a\xeb\xaa\x67\xa2\xd7\x96\x97\x35\x76\x5d\xb0\xb6\x6b\x75\x6f\x52\x2c\x59\x5a\x1d\xcd\x66\x93\xff\xcb\xbf\xfc\x8b\x78\xe8\xa1\x87\xf8\xc8\xc8\x88\xda\x6b\x91\xb8\x2b\xe8\x7e\xa8\xc9\x53\x31\x42\x00\x88\x57\x65\x04\xba\x9f\x7e\x0c\xe2\xeb\x00\x80\x10\x42\x88\xe5\xe5\x65\x7c\xe7\x3b\xdf\xc9\x52\x80\x26\xa1\x6a\x1b\x1b\x36\x58\xa3\x22\xf0\x48\x86\x0d\x99\xb1\xc1\xd1\xd1\x51\x1d\xd6\x03\x50\x1e\x6c\x7a\xe3\x63\xcb\xc5\xdb\x10\x9f\x5c\x1e\x31\x22\xfa\x95\x7a\x94\x34\xca\xd0\x0b\x53\x1b\xba\xa2\x57\x4f\xf4\x78\x48\xca\xa5\x11\x17\x86\x56\x5f\x9b\xab\x74\x2e\xa2\xfb\x59\x83\xe4\xb0\xe1\x78\xe7\x9c\x89\x6e\x9d\xb1\x2e\x09\x6b\xd3\x6c\xae\x7a\xa6\xc9\x6e\xd2\xa8\x94\x2e\xd7\x80\x37\xd1\x6f\x4a\x74\x70\xbb\x34\xb7\xfe\xeb\xb2\x0e\x5c\xbc\xb3\x4d\x72\xca\x8b\x3c\xb0\x59\x7d\x73\xc1\xb8\x9e\x5d\x9e\xb6\x5d\xfd\x33\x69\x64\x18\xca\x4c\x6d\xea\xf9\xfc\xf1\xc7\x1f\xc7\xea\xea\xaa\x78\xf8\xe1\x87\xa1\x36\x6a\x21\x12\x04\x1c\x91\x25\x91\x58\xed\xf1\x78\x57\x74\xf7\xfc\x69\x1f\xcc\x76\x3d\x37\x4a\xa7\x4d\x19\xb8\x14\x86\x4b\x18\x71\x3d\xc6\xe1\x1a\xa0\x46\x64\xf1\x47\x67\xd4\x40\xf5\x01\x94\xb7\xcd\x97\x0f\xf7\x75\x0a\x9b\x63\xa7\x04\xc9\xd7\xaa\x80\xe4\x3a\x79\xb1\xd5\x78\xbe\x46\x77\x55\x25\xca\xd6\x23\x1d\xd1\x75\xd3\x0f\x17\x4e\x8d\x36\x5f\x91\x3c\x0a\x16\x49\x29\x9b\xd0\xac\x8d\x33\x67\xce\xe8\x7d\xb0\x69\x09\xca\x94\x3c\x03\x37\x8f\xe6\x32\xb5\x97\x67\xd0\x51\x38\xda\xae\x69\x40\xeb\xb0\x26\xe1\x41\xf1\xba\x12\xe5\x97\xcd\xb2\xb0\x59\x05\x26\x7a\x69\x9e\x8e\x2f\xaf\x55\x95\x25\xd8\xb3\xac\x1b\x9b\x40\x77\xf5\xc3\x25\xa0\xf5\x5f\xdb\x64\x4b\xb5\x13\xef\xe4\xe4\x3f\xfd\xe9\x4f\x31\x31\x31\x21\x1e\x79\xe4\x11\x30\xc6\x44\x7c\xec\x44\x72\xf8\x8f\x76\x10\x10\x18\x63\x42\xbf\x06\x80\x77\xde\x79\x07\x27\x4e\x9c\x70\xd1\xe9\x1a\x37\xb6\x44\x79\xe7\x52\x2e\x49\x3f\x4d\x16\x87\x4d\x13\xa4\x1e\xf6\xcd\x37\xdf\xac\x0f\xb4\xe8\xa8\xb4\x90\x55\x77\xcc\x97\xef\xe4\x12\x3e\xd0\xdd\x2a\x4b\xf7\x79\xc5\x6b\x29\xa9\x3b\x3d\xa5\x96\x61\x13\xd8\xee\x57\xe7\xaf\x6c\x68\x9f\x9c\xaa\xb6\x2f\x40\x3b\x37\x14\xf1\xeb\xf2\x2b\x2b\x2b\x78\xf9\xe5\x97\x5d\x56\x80\x9e\x6c\x8c\xd6\xfb\x9e\x35\xc8\x4d\x75\x8d\xcc\x26\x65\xfa\x64\xb4\x69\x3b\xd3\xaf\x9e\x6c\x13\x26\x8b\x16\x1d\xde\xd5\x8e\x4b\xc3\xdb\x26\xa8\x4b\x38\xdb\x60\x8d\x63\xcc\xd0\xbe\x49\x30\x67\x69\x55\x9a\x47\xad\x21\x9b\xe6\x76\xd1\xa9\xf2\xf2\xc2\x02\x80\x88\x8f\x71\xc0\xa3\x8f\x3e\x2a\xee\xb8\xe3\x0e\x3e\x34\x34\x24\xb6\x6c\xd9\x92\x94\xab\x77\x53\x94\xc0\x00\x80\xd9\xd9\x59\x5c\xb9\x72\x05\x2f\xbe\xf8\xa2\x6b\x72\x53\x45\x61\xa2\xc1\xd4\x5f\xd3\x78\x00\xc9\x33\xc2\xd2\x7d\x1c\xae\x01\x97\x42\xbc\x7d\xfb\x76\x45\x6c\x24\x38\x24\xfc\xfa\xaa\x37\x3a\xbc\x52\x3c\xac\x26\x39\x43\x5a\x68\xa4\x56\x4a\xe2\x13\x9d\xd3\x79\x88\x5d\x14\xcd\x8b\x51\x01\xd3\xf8\xbe\xe5\xc9\xc6\xe9\x91\xe6\x6b\x41\x01\x73\xf1\x2a\x4a\xb2\xfc\xca\x18\x13\x67\xcf\x9e\x75\x31\x42\xcf\xe7\x04\xc6\x65\xa2\xd9\x18\x6e\x62\xbc\x6d\x60\xc3\x92\x6f\x1a\xc8\x36\xed\x4e\x07\x49\xa6\x66\x20\xf5\xb3\x04\x01\xa5\x8f\xf6\x91\xe2\x31\xd1\x9c\xa5\xe1\x69\x1b\x26\x61\x07\x03\x1c\x6d\xd7\x54\xae\x97\xb9\x04\xae\x89\x2e\x13\x6f\x4d\xf8\x6d\xcf\xcc\x84\xd7\x7a\xff\xe2\x8b\x2f\x8a\x42\xa1\xc0\x8b\xc5\x22\x00\x60\x60\x60\x00\x07\x0f\x1e\xc4\x33\xcf\x3c\x23\xca\xe5\x32\x6f\xb5\x5a\xa2\x5c\x2e\xf3\x20\x08\x10\x04\x81\xa9\x5f\x59\xfd\x35\x8d\x39\x13\x1c\xa5\xdb\x95\x92\xb1\xa6\x5c\x15\xda\x80\x6d\x92\x24\x04\x8d\x8c\x8c\xe8\xc8\x7c\x00\x95\xad\x0b\xa5\x43\xa5\x80\x8f\xda\x96\x51\x99\xe1\x26\xb5\x77\x23\xe5\xa2\x90\x4a\xf1\xe6\xb1\x99\xfe\xf6\xc4\xe5\x0d\x6b\xa7\x10\x2f\x4f\x41\x7b\x65\x7e\x65\x65\x05\x2f\xbd\xf4\x52\x5e\x0b\x41\xef\x9b\xde\x17\x97\x85\x60\x9b\x28\xc2\x52\xcf\x84\xd7\xd6\x4e\xd6\xe0\x33\xd1\x9e\x57\x28\x01\xf9\xfa\x60\x82\xcd\xcb\xcb\x3c\x1a\x4f\xa7\x8f\x4e\x3e\xbd\xcc\x84\xd7\x35\xf9\x5d\xf9\x2e\x21\xa3\xb7\x9f\xb7\xdd\xbc\x42\xcc\x26\x24\x93\xf2\x30\x0c\x11\x86\x21\x00\xa0\xd5\x6a\x61\x7a\x7a\x5a\x00\xe0\xad\x56\x4b\xa8\x3c\x47\xbf\x00\x00\x1b\x37\x6e\x44\xbd\x5e\xb7\xd2\x75\xe1\xc2\x05\xdb\x7c\xc8\x12\xaa\x4e\x78\xdd\x55\xa1\xda\x0b\xe8\x1d\x4c\x00\x80\x6d\xdb\xb6\xf1\xf8\x2b\xd9\x3c\xc6\xe1\x17\x24\x2a\xbb\xe6\x62\x37\x25\xd9\xdd\x29\x53\x2f\xb3\xa5\xf7\x66\x74\xef\x6c\x82\x26\xed\xe6\x48\x84\x0c\xed\x8b\x1b\xd7\xde\x5a\x2d\x8a\xe4\xfc\xd0\xf8\x8b\xf2\x7a\x6c\x43\xef\xcf\x7a\x92\xcd\x54\xcb\xd2\xa4\xa6\x7b\x9b\x25\xb0\x1e\xe1\x90\xa5\xf1\x28\xce\x3c\x1a\xdf\x94\xef\x6a\x9b\x5e\x9b\x84\x0f\xad\x47\x85\x8d\x4d\x43\x52\xdc\x2e\x3a\x29\x8c\x09\xb7\xed\xda\x45\x17\xb4\x7c\x97\xa0\x4f\xa5\xbe\xbe\x3e\xbe\xba\xba\x2a\x0e\x1c\x38\xc0\xe3\xef\xc4\x9a\x68\xc3\x9b\x6f\xbe\x89\x85\x85\x05\xcc\xcc\xcc\xd8\xf0\x99\x68\xb6\xc1\xf5\xa4\xcf\x7f\xfe\xf3\xa8\x54\x2a\xe8\xeb\xeb\x33\xb5\x2f\x18\x63\x58\x5e\x5e\xe6\xcd\x66\x13\xaf\xbe\xfa\x2a\x96\x97\x97\xd5\x91\x12\x14\x9e\x8e\x9d\x2c\x85\xca\xe9\xce\xd1\x2c\x4d\x04\x00\x38\x70\xe0\x80\x2a\x4b\x04\x47\xa5\x5d\xa8\x0f\x37\xfc\xc3\x80\x16\x14\x4d\x56\x43\xba\x1b\xcd\x55\x92\x60\xd1\x0b\x6b\xe9\xe3\xd6\x92\xc3\x4c\xa2\x25\x59\x99\xb8\x2a\x12\xc0\x8a\x1f\xce\x4d\x0c\xae\xbe\x0d\xd6\x3d\x3f\x54\x09\x0d\x00\x38\x75\xea\x94\x4e\x73\xd6\x20\x37\xf5\x1b\x70\x0f\x4c\x10\x38\x97\x50\xa0\x93\x2f\x4b\x33\xb9\xb4\xae\xcb\x8c\x57\x38\xf2\x68\x52\x97\xa0\xc8\xa3\x99\x4d\xf7\x79\x84\x8f\xad\xcc\x66\xfd\x50\x3a\x6c\xb8\xf2\x6a\xcb\x3c\x34\x65\xf2\x6b\x74\x74\x14\xb7\xde\x7a\x2b\x06\x06\x06\xd4\x5b\xa8\x00\x80\xf8\x55\x0b\x75\x0d\x20\x8a\x57\xdc\x7b\xef\xbd\x68\xb7\xdb\x98\x9d\x9d\xc5\x99\x33\x67\xf8\xa9\x53\xa7\xb2\x84\x47\x4f\x9b\x34\x1d\x3b\x76\x8c\xef\xd8\xb1\x03\xe5\x72\x39\x09\xa8\xd2\x5f\x85\x57\x4a\x89\x6a\xb5\x2a\xaa\xd5\x2a\xee\xbf\xff\x7e\xd1\x68\x34\x70\xf6\xec\x59\xbc\xfb\xee\xbb\x58\x5a\x5a\x72\x59\xa4\x2e\xeb\x51\x00\x69\x8b\xc3\x26\xad\x53\x48\x8a\xc5\x22\xdf\xb8\x71\xa3\x5e\xe6\x41\xa2\x3c\xb6\xec\xef\x2c\x07\x7c\x3c\xf9\x92\x1a\x74\x37\x44\x7d\x85\x5e\x2d\xad\x46\x4b\x2b\xc9\x46\xb0\x18\x52\x3f\x7f\x40\x9d\xcf\xa8\xbf\x2c\x3b\x59\x6b\x9f\x9d\xaf\x04\x17\x11\x2d\xbf\xaa\xd8\x86\x00\x80\xcb\x97\x2f\x63\x65\x65\x45\xef\xa8\xce\x0c\x9a\x4f\xfb\x69\x13\x32\x2e\xe1\x60\xc2\x47\x61\x4c\x83\xde\xa4\xcd\xa9\xd6\xcb\x12\x14\xa6\x64\x12\x72\xb4\x9e\xcb\x34\xcd\xab\x11\x29\x4f\x6c\x82\x0e\xc8\xee\x93\xd1\xa2\x25\x79\x2e\x0d\x6c\x52\x72\x26\x1a\x4d\xe3\xd9\xa5\x14\x7a\xf8\x77\xe3\x8d\x37\xf2\x3b\xef\xbc\x33\xc1\x41\x3e\x83\xc0\x81\xd4\x0a\xa0\x5a\x11\x11\xa5\x52\x49\x6c\xde\xbc\x59\x6c\xda\xb4\x09\x37\xdc\x70\x03\x7f\xfb\xed\xb7\x95\x82\xcb\x12\x9e\x09\x0d\xbe\xef\xf3\x76\xbb\x2d\xfe\xe0\x0f\xfe\x80\x97\x4a\xa5\x54\xbb\xea\xf3\x8f\x3a\x1d\xf1\x92\xaf\x5a\xb9\x09\xd4\xf2\x6e\x7f\x7f\xbf\x38\x72\xe4\x88\xd8\xbb\x77\x2f\xbe\xf5\xad\x6f\x99\xfa\x9d\x47\x90\x03\xe8\xee\x56\x33\x69\x9c\x84\x49\x5a\x39\xdf\xbe\x7d\xbb\xee\x53\x71\x00\x3e\x93\x28\x6f\x59\x2c\xdd\xcc\x25\x2b\xcb\x78\x7b\x27\x15\x06\x89\x20\x00\x5d\x35\xa1\xc1\x8c\x04\x58\x3b\x46\x0d\xe8\x70\xd9\x9a\x18\x5c\x7d\xb3\x53\x90\xc9\x5b\x81\xda\x2e\x3a\xf1\xe6\x9b\x6f\xaa\x20\x92\xde\x07\xdb\x24\x36\x69\x79\x5a\xc7\xc9\x38\x52\xe6\xd2\x56\xa6\x89\x67\xa2\xc9\x64\x25\xd1\xf6\x69\x1d\x1b\x8e\x2c\x01\x08\x02\x4f\x69\xb6\x59\x9c\xa6\xc1\x6e\xc2\x43\x61\x6c\x7c\x35\x59\x65\x79\x27\x94\x0d\x6f\x1e\xeb\xc9\xd4\x27\x0a\x9b\xb4\xf5\xc5\x2f\x7e\x91\xd7\xeb\x75\x90\x09\x1a\xbd\x62\x21\xe1\x79\x21\xf3\x0a\x82\x7b\xd1\xae\x68\x88\x80\xcb\x40\x30\xa8\x53\xb9\x82\x78\x69\x55\x0c\x0d\x0d\x05\xf7\xdc\x73\x0f\x36\x6f\xde\x8c\x9f\xff\xfc\xe7\xb4\x3f\xd6\x7e\xff\xc6\x6f\xfc\x06\xb6\x6e\xdd\x9a\x6a\x5b\x4a\xe9\x31\x30\xdf\x0f\x59\xb9\x7f\xad\x50\xdf\xb6\x58\xda\xda\xd7\x2e\x0c\x72\x09\xaf\x53\x90\x8d\xa5\x72\x38\x73\x6d\xa0\x3d\xb5\xe2\x87\x4b\x01\x97\x2d\x30\x24\x2b\x8f\xfd\xfd\xfd\xe2\x2b\x5f\xf9\x0a\x4e\x9d\x3a\x85\x13\x27\x4e\x20\x0c\x43\x9b\x65\x67\x7a\x06\x00\x7a\xdf\x55\x31\x31\x3d\xf5\xf0\xcf\x9d\x3b\x27\x3e\xf5\xa9\x4f\x71\xad\xbe\xef\x09\x56\xdd\xb2\x58\x3a\x9c\x04\x38\x93\x53\x9c\x23\x20\x1a\xab\xd0\x63\x1b\x89\x10\x49\xc1\xb0\xee\x2e\xd1\xee\x5b\xb0\x53\x57\x6b\xed\x73\x88\x4e\x2b\x57\xfb\xf5\x05\x63\x4c\x84\x61\x88\xf7\xdf\x7f\x9f\x4e\x4c\x4a\xbb\xce\x0c\x13\x63\xe0\x80\x33\xc1\xd2\x64\x13\xc0\x2e\x81\xac\xd7\x33\xe5\x53\x1c\x36\x81\x62\xa3\xdf\xa9\x75\x8b\xc5\x22\x07\x80\x4e\xa7\x83\xf8\x1e\x9d\x4e\xc7\x65\x21\x28\x9c\x59\xda\xdc\x25\x10\x5d\xfd\xd5\x61\x4d\xfd\xb6\x3d\x2b\x3a\xe9\x4c\x16\x97\x4d\x60\xd3\x3e\x00\x88\x94\xdc\xe1\xc3\x87\xf9\xed\xb7\xdf\x0e\x20\x7a\x81\x13\x91\x86\xf7\x19\x98\xef\x09\x56\x19\x5b\xf6\x47\xb7\x2d\x94\x6e\x1c\x5d\xf6\x0f\x0e\xac\x15\xc6\x25\x80\xb6\x27\x96\xe6\xfb\x82\xf7\xa7\x06\xda\x6f\x5d\xaa\xaf\x9d\x5f\x2c\x07\x0b\x02\x68\x4b\xc8\x76\x2c\x78\x82\xbd\x7b\xf7\x8a\x8d\x1b\x37\xf2\xc7\x1e\x7b\x0c\x6b\x6b\x6b\xb4\xe9\x84\x2e\xce\x39\xbf\xff\xfe\xfb\xb1\x69\xd3\x26\xc4\x6d\x47\x3b\x4d\xc1\xfc\x72\x87\xd7\xf6\x4d\x57\x0e\xef\x9f\xaa\xfc\xe6\x60\xd3\x3b\xea\x87\x7c\x3b\x8b\x0e\xcc\xe2\x60\x68\x0b\x86\x46\xcb\x13\xe7\xaf\xd6\xd6\x9e\x79\x77\xac\xf9\x93\x89\xc1\xd5\xf3\x21\x63\xcd\x58\x80\xb4\x2b\x95\x0a\x6e\xbd\xf5\x56\x51\xa9\x54\xf0\xdc\x73\xcf\x71\x21\x44\x96\x1c\x48\xf1\x97\x06\x47\xf5\x4a\x46\x73\xf3\xcb\x5f\xfe\x72\x4a\xf2\x01\xf0\x37\xae\x7a\xa3\xb5\x96\xb7\xa7\xcb\x75\x10\xb3\x22\xf5\xd2\x0a\x7a\x85\x47\xd7\x32\x51\xd1\x90\xe4\xe5\xfb\x18\xc5\xe4\x40\xfb\xfc\x72\x29\x9c\x84\xf6\xda\xbc\x8a\x6f\x9c\x3c\x79\x52\xd1\xa9\xd3\x6f\x1a\x6c\x20\x30\x26\xc6\xd0\x3c\x53\xbe\x49\x9b\x52\xcd\x01\x52\x6e\x1a\xf0\x26\x5a\x68\x1b\x34\x9f\xe2\xa5\x65\x36\x2d\xcf\x3d\xcf\x43\x10\x04\xe2\xb6\xdb\x6e\xe3\x00\x70\xc3\x0d\x37\xa0\x58\x2c\x52\xdf\x98\x87\x61\x88\xf8\x18\x3c\x00\xe0\xf1\x4a\x95\x9e\x5c\x83\xca\x24\xf8\x4c\x7d\xc8\xea\x57\x8f\xd2\x42\xef\xf3\xcc\x12\x06\x79\xac\x1b\xa3\x15\x73\xf3\xcd\x37\xe3\xb6\xdb\x6e\x03\xa2\x09\x1b\x7d\x7d\x5e\xc2\xf7\x24\xab\xec\x9d\xae\x1c\xb8\xf9\x4a\xf5\x4b\x43\x2b\xc5\x4f\x7a\x21\xdb\x1e\xbd\xcc\xd9\x8d\xe3\x6d\x59\x84\x90\xd7\x64\x63\xd5\x13\x27\xcf\x0d\xaf\x7e\xe7\xcd\xcd\x8d\x9f\xcd\xf4\x77\x66\x10\x9f\x48\x07\x20\x18\x1a\x1a\x0a\x1e\x78\xe0\x01\x7c\xef\x7b\xdf\x33\xf1\x8a\x03\x10\x0f\x3c\xf0\x00\x1f\x1f\x1f\x57\x31\x14\x9f\x31\x56\xe6\x02\x95\xdd\xb3\x7d\xfb\x3e\x76\xb1\xf6\x27\xc3\x2b\xc5\xfb\xb9\x64\x75\x62\xab\x83\x09\x94\x39\x43\xad\xba\x56\xd8\xbc\x67\xa6\xef\xae\x1d\xf3\xe5\xdf\xbf\x30\xd8\xfa\xeb\x17\x76\x2e\xfe\xf3\x42\x5f\x30\x23\x21\x79\xfc\x2e\x4c\x70\xe0\xc0\x01\xf1\xcc\x33\xcf\x98\x84\x86\x73\x5c\xaa\x36\x6d\x13\x46\x7f\x08\x18\x1a\x1a\xc2\x83\x0f\x3e\x88\x52\xa9\xc4\x11\xbd\x9c\x53\x85\xc4\xe8\xe1\xab\xfd\x0f\x1e\x3b\xbb\xf1\x2f\x0a\x92\xf9\x89\xab\xa2\x99\x11\x89\x98\xd0\x0f\xef\x81\xd4\x45\x47\xda\x4a\x21\xcb\x2c\x01\x17\xed\x27\xf7\xce\x3f\xfa\xce\x78\xf3\x27\x52\xca\x4b\x8c\xb1\x49\xf5\x26\xac\x8c\xbf\x32\x6f\xe8\x38\x7d\x10\xb4\x6f\x36\x78\x9b\x59\xeb\xc2\x6f\x2b\xa7\xf5\x5d\x66\xb6\x71\xf0\x10\xdc\x34\x65\x4d\x68\xbe\x77\xef\x5e\x9c\x39\x73\x46\x9d\x07\x9b\x24\xb2\x6b\x31\xc9\x27\xa7\xb2\x09\x0d\x1e\x31\x9f\x69\x5b\x36\x1a\x4c\x93\xd2\x94\xef\xc2\x05\x0b\xac\xed\x19\x98\x60\x5c\x8a\xd0\x2a\x6c\x1e\x7e\xf8\x61\xfd\x7c\x19\x1f\x40\x79\xc3\xaa\x37\x7a\xcf\xb9\x0d\x5f\xd9\x31\x5f\xfe\x9a\x27\xf8\xe6\xe4\xad\x4b\xfd\xc5\x4c\xa8\x3c\xa8\x61\x1d\x2c\x97\xc2\x17\x5f\xde\xbe\xf4\x7f\x9c\x1c\x5f\x79\x2d\x60\xa9\x37\xb8\x83\xd9\xd9\x59\x3c\xf6\xd8\x63\x50\x4b\xb0\x2a\x7d\xee\x73\x9f\xe3\xe3\xe3\xe3\x8a\x26\x5f\x4a\x59\xf1\x43\x5e\xbb\xf5\xd2\xc0\x27\x6f\xb9\x3c\xf0\x67\xa5\x80\xef\x63\x71\x53\xa9\x57\xca\x55\x22\x73\x49\x42\x8a\xd9\xfe\xce\xbf\x3e\xb9\x6f\xfe\x7f\xbf\x3a\xd0\xbe\x28\x21\x1b\x4a\x78\xb4\xdb\x6d\xf1\xb7\x7f\xfb\xb7\x36\x6b\xda\xf8\xbc\x0a\x5a\x33\x82\x34\xad\x88\x56\x65\x6c\x75\x75\x55\xdc\x7e\xfb\xed\x0c\x40\x01\x40\x51\x4a\xd9\xef\x49\x36\x78\xe3\xd5\xea\x7d\x63\x0d\xff\xa3\x6a\x53\x57\x32\xf8\xb4\x8d\x5b\xdd\x7b\xfd\x8b\xf3\xc9\xde\xf3\xb4\x41\x42\xd2\x52\x29\xb8\xfa\xea\xf6\xe5\x1f\xaf\x7a\xe1\xfb\x8c\xb1\x59\x00\x2b\xea\x10\x93\x6f\x7c\xe3\x1b\x21\xa9\x69\xea\x8b\xca\xeb\xe9\x93\xc6\x5e\x61\xa8\xaf\xca\x75\x86\x4a\x43\x99\xe9\x44\x00\x1d\xbf\xc2\xcb\x60\x6e\x4b\xc7\xaf\xd3\x44\xdb\xd6\x93\xaa\x67\x82\x13\xf7\xdc\x73\x0f\x3f\x7e\xfc\x38\x76\xef\xde\x8d\xa3\x47\x8f\x32\x0d\xb6\x80\xc8\x3f\x4f\xbe\xed\xcb\x18\x2b\xa8\xbf\xb8\xbc\xa0\x60\xa5\x94\x4c\xbd\x7c\x75\xf4\xe8\x51\xfe\xd1\x8f\x7e\x14\x37\xdf\x7c\x33\x3b\x71\xe2\x84\x38\x78\xf0\x20\x9b\x99\x99\x61\x84\x06\x41\xae\xa1\x5d\xeb\xfd\xe7\x04\x4e\xe7\x15\x48\x3d\x0a\x4b\x79\xc7\x60\xe7\x2f\x7d\xf6\x3a\x3e\xfa\x0c\x65\xb5\x5a\xe5\x9f\xff\xfc\xe7\x59\xb9\x5c\x56\xbc\xf1\x21\x51\x19\x5e\x29\x6e\xfb\xcc\xa9\xc1\x3f\xdb\xba\x50\xfe\xe3\x82\x64\x75\x26\xd5\x71\x54\x5a\x2c\x2f\x19\xd2\x5d\x52\x18\x18\xf7\x43\xb6\x7d\xcb\x62\xf9\x8e\x62\xc8\x67\xae\xd4\xd7\x2e\x0a\xc8\x50\xd1\xd4\xd7\xd7\x27\x6a\xb5\x1a\xce\x9f\x3f\xaf\xd3\x2f\x8f\x1d\x3b\xf6\xff\x70\xf6\xae\x41\x76\x1c\xd7\x99\xe0\x77\xb2\xea\xd6\xbd\x7d\xfb\xf6\xed\x46\x77\xe3\xd5\x00\x1a\x0d\x12\x00\x1f\x06\x41\x12\xa0\x1e\xa6\x48\x91\xb2\x48\x8b\x92\x28\x5b\x23\x2b\x64\xf9\x21\xd1\x94\x25\x44\xcc\xce\x4c\x6c\x4c\x6c\x4c\xcc\x6e\x38\x66\x62\x37\xf6\xd7\xc4\xc6\xc6\xc4\xc4\xc6\xfe\x18\x8a\x72\x58\xa4\x45\x69\x2c\xcb\x61\x3b\x68\xeb\xcd\x87\x4d\x51\x12\x09\x80\x00\x08\x3e\xf0\x20\x1e\x0d\xa0\xd1\x68\x34\xfa\x71\xfb\xf6\x7d\xd4\xad\xca\xb3\x3f\x2a\x33\x2b\x2b\x6f\xd5\x05\xbc\x19\xd1\x7d\xab\x32\xb3\xf2\x71\xf2\xe4\xc9\x73\x4e\x9e\x3c\x49\x9a\xd3\x61\xe6\x8a\xcf\x34\x7a\xf0\x52\xfd\xb7\x0f\x5e\x1e\xf9\xdf\x83\x98\x66\xdc\xcb\xd7\xcd\xc1\x72\x27\xb0\x69\x16\xd1\x50\x4f\xec\xdd\xda\x28\xef\x9c\xaf\x77\x8f\xb7\xca\xb2\xc5\xcc\x31\x11\xc5\xbe\xef\xe3\xce\x3b\xef\xb4\xb9\x4c\xe4\x8c\x63\x66\x0c\x6c\xc2\xa1\x23\xed\x01\x64\x64\x11\x9f\x0f\x1e\x3c\x48\x48\x44\x94\x12\x11\x0d\x07\x11\x6d\x3e\x78\x79\xe4\x0b\x23\xa1\x3f\x4d\xd0\x37\x50\xd9\x67\x50\x90\x55\x60\x18\x9a\x92\x3d\x25\x0b\x27\x9b\x16\x5a\x00\xe0\xca\x58\xf7\xe4\xfb\x9b\x5b\xaf\xc6\x82\xaf\x11\xd1\x2a\x92\x5d\x95\x1e\x80\x98\x88\x68\x6e\x6e\xce\x9e\xa8\x79\xfd\xb1\x47\x53\x03\xc5\x8e\x73\x57\x45\x7b\xf2\xba\x84\xc4\x2e\xc7\x25\x56\x45\x69\xee\x90\xba\xe5\xbb\xc1\x26\x42\x2e\x0f\x66\x0f\xa8\x7e\x17\x00\xe4\xc4\xc4\x04\xb5\xdb\x6d\xf9\xd4\x53\x4f\x89\x2d\x5b\xb6\xe8\x8b\xb1\x3c\xe5\x27\xc5\x67\xe6\x12\x11\x95\x00\x94\x01\x94\x99\xb9\x42\xa0\x0a\x31\x97\x49\x62\x88\x80\x00\xa0\x32\x08\x25\x00\x25\x68\x05\x20\xa0\x89\x07\x01\x20\x21\x04\x0e\x1e\x3c\x88\xe9\xe9\x69\xdc\x75\xd7\x5d\xe8\x76\xbb\xb8\x71\xe3\x46\x11\x7c\xf2\xfa\x59\x34\xb9\x6d\x22\xe0\xc2\x5f\xc3\x43\xe4\x7c\x6f\x8f\x8f\xbd\x32\x16\x8d\xad\x5b\xb7\x79\x7e\xe2\x89\x27\x30\x31\x31\x01\x24\xc4\xb3\x0c\xa0\x3a\xd2\xf5\xb6\x7c\xea\xfd\xf1\xff\xb0\x65\x2d\xf8\x22\x31\x95\xa0\x70\x36\xc5\x71\x0b\xdf\xd9\x1a\x30\x55\x3a\x81\xe0\x31\xc6\x26\x5a\xc1\x3d\x52\x60\x76\xbe\x1e\xce\x81\x28\xd6\x4a\xd3\x91\x91\x11\x6e\xb7\xdb\x58\x5c\x5c\x04\x00\xf9\xf4\xd3\x4f\x0b\x35\x76\x3e\x11\x95\x01\x8c\xdc\xb9\x30\xfc\xd1\x0f\xcf\xd6\xff\xac\x1c\x89\x9d\xc6\xe5\x04\x00\x73\x63\xb2\x05\x31\x06\x4c\xfb\x92\x76\xb0\xb2\xd4\x26\xaa\xf4\xc4\xce\x7a\xa7\x54\xba\x3c\xda\x3d\xd9\x2b\x71\x17\x40\x0c\x40\x96\x4a\x25\xa9\x9c\x01\xd9\x04\xd5\x1d\x1f\x33\x06\xae\x3f\x8e\x9b\xc9\xe3\x00\xcc\x09\x3e\x1f\x40\x30\x1c\x7a\x63\xb5\x8e\xbf\x9d\x15\x00\x33\x1c\x86\x05\xd8\xa4\x46\xdb\xa6\xdc\x21\x1e\x56\x30\xbb\x2d\x89\x62\x54\xce\x8f\x84\x67\x7b\x5e\xe2\x2a\x4d\xed\xa6\x48\x20\x39\x29\x78\xf8\xf0\xe1\x22\xf9\x38\x4f\x47\xf0\x2f\x11\x43\x8a\xfa\x6f\xa7\xdd\x8a\xf8\x31\xa8\x2d\x45\x6d\xb7\xdb\x54\x14\x97\xa9\xe3\xe3\x1f\xff\xb8\x98\x99\x99\x81\x5a\x29\xf5\x9f\xde\xaa\xf3\xc1\x1c\xf8\x3d\x54\x82\x76\x3c\x5e\x5e\x97\x9b\x86\x1a\xf1\xf6\x52\x87\x37\x79\x11\x4f\x08\x89\x2a\x49\xae\x30\x51\xc4\x02\x2d\xe9\x51\x23\x2a\xd3\xb5\x4e\x4d\xcc\xb5\xeb\xde\x5c\x58\xa1\xc5\x5e\x85\x5a\xb0\x8e\x78\x03\xc9\x15\x00\xc3\xc3\xc3\xf2\xd1\x47\x1f\xc5\xb6\x6d\xdb\xc4\xdb\x6f\xbf\x8d\xc5\xc5\x45\x17\x86\x83\x60\x84\x9b\xa4\x01\xfd\x30\x2d\x82\xa1\x1b\x77\xb3\xf1\xe8\x2b\x7b\x7a\x7a\x5a\x28\x8b\xe8\x04\x66\x40\xa5\x14\xd1\xd8\x47\x2e\xd6\x7f\x6f\xf3\x5a\xf0\x79\x80\x7c\x42\xff\x22\x08\xe6\xf4\xc0\x26\xf5\xcf\x3a\x8d\xeb\xe5\x08\xd3\xf7\x5f\xae\xfd\xfb\xab\x23\xe1\x85\xb9\xd1\xee\x69\x50\x02\x47\xdf\xf7\xc3\x7b\xee\xb9\x07\xef\xbf\xff\xbe\x7c\xfc\xf1\xc7\x8d\x71\xa5\x9a\x63\xd5\x91\xae\xbf\xe5\xbe\x2b\x23\x4f\x0d\xf5\xc4\x6d\xfd\x7e\xf2\xd0\xcf\xa3\xea\x36\x18\xe2\x46\x36\xe7\xe1\x6f\x5f\x2d\x7f\xfe\xae\x85\xe1\xb7\x0e\xef\x68\xfc\x23\x93\x39\xae\x21\xbe\xfe\xf5\xaf\xe3\xaf\xff\xfa\xaf\x5d\x87\xc7\x36\x5c\x4d\x28\xf2\xc7\x91\x87\xc8\xf2\xab\x5f\xfd\xaa\x96\x8b\x35\x60\x83\x8d\xcd\x60\x7b\x39\xa6\xc9\x0c\x87\x01\x97\x7b\xd0\x49\x4e\x67\x9d\x38\x7b\x3c\xf4\xf7\xa1\xc7\xad\xf9\x91\xf0\x03\x4e\x0d\xbe\x8c\xed\x86\x3a\x5e\x6c\x77\x6a\xd0\x44\x85\x13\x97\xd7\xd7\x41\xf2\xb4\xcc\x29\xc3\x7d\x76\x11\xdc\xfd\x2d\x82\x6f\x5e\xd9\x45\x75\xf4\xc5\x7d\xe1\x0b\x5f\x10\xea\x06\x3d\x43\x30\xa0\x2d\x7a\x7b\x5c\xad\xac\xc9\xa9\xfa\x42\x74\xdf\xf0\x4a\xfc\x91\xa0\x25\xef\xf4\x7b\x3c\x4d\x8c\x1a\x18\x01\xc0\x3e\x40\x76\xdf\x93\x3f\x42\xc8\x84\x8e\xf4\x68\xbe\x57\xa1\xd3\xad\xba\x38\xd2\xd8\xe8\x1f\x6e\x8d\x79\x17\x7a\x15\x5a\x41\x7a\xb0\x30\x22\xa2\x68\xcf\x9e\x3d\x72\xc7\x8e\x1d\x78\xee\xb9\xe7\x06\xf5\xb7\x88\x10\x0f\x82\x6f\xde\x58\xca\x9c\xf4\x41\x22\x5d\x5e\x1d\x7d\xc4\xc8\xba\xbe\xd4\x07\x10\x80\x51\xdd\xb6\x5a\xbe\x73\xf7\x62\xf5\xab\x02\x54\x01\x90\x2f\x0f\x90\xbb\xf4\x39\x6c\xa4\x85\xeb\xc3\xa1\x77\xf7\x03\x97\x47\xfe\xe0\x1f\x46\xc2\xff\x16\x7b\xac\x09\xb1\xd8\xb0\x61\x83\x04\x80\x5d\xbb\x76\xe9\xb6\xfa\x48\xf4\x88\xd5\xbb\xaf\x55\x1f\x9a\x68\x95\x1e\x24\xed\xaa\x42\xdb\x3b\xd9\xf2\x89\xc5\x37\xb9\x2c\xaf\x79\x56\x9b\x10\x9e\xa4\xb1\x3d\xd7\x87\x7e\xf7\xcc\x64\xeb\xe8\x4a\x35\x32\xce\xaf\x84\x10\xb2\xc0\x4b\x7a\x1f\xc1\xcd\xdb\x8e\xcd\x00\x53\x87\x5d\xbb\x76\xe9\x03\x39\x5a\xcb\xec\x13\x23\x18\x6f\xf9\xbb\x3c\x99\xd8\x6f\x64\x1d\xf7\x58\xc1\x56\xd2\x98\x6d\x56\x47\x81\x6a\xde\x91\x32\x25\x0c\x34\x2a\xd1\xfc\xca\x50\x34\xcf\xe0\x0e\x21\x83\xac\xf2\xde\x7b\xef\x15\xca\x11\xf1\x20\xce\x21\x0f\xf9\xf2\x08\x8d\x5b\x4e\x1e\xa2\xdf\x94\x12\xe7\xc4\xbb\x6d\xb3\xe3\xf2\xda\x74\x4b\x2b\xb6\xde\x3a\xfd\xca\x57\xbe\x22\x86\x86\x86\xfa\x09\x46\x28\xeb\x23\x37\xe2\x3b\x37\x5c\xe9\x7d\x6a\x78\x55\x3e\xea\xf5\x78\x06\x09\xb1\x10\xa9\x69\x4d\x9f\x3d\xaf\x00\x48\x70\xa2\xe8\x0b\x88\x51\xa3\x98\x27\xfd\x9e\xdc\x57\x59\x93\x9f\x19\x9b\x8f\xe6\xbb\xc3\xe2\xf0\xca\x66\xff\x1f\x56\xb6\x96\x0e\x87\x55\xca\xec\x14\x94\xcb\x65\x79\xe8\xd0\x21\x9c\x3b\x77\x0e\x87\x0f\x1f\xc6\xca\xca\x4a\x51\xfb\x6f\x05\xae\x36\x4c\x5c\x18\xdf\x0c\x96\x79\x61\x10\x71\x11\x00\xa4\x7b\x7d\x69\x39\x16\xf5\xbb\xae\x0d\x7f\xba\x1c\xd1\x74\x06\x5f\x6d\xb6\x82\x90\xb5\x80\xce\x51\x56\x26\x3a\x3d\xe8\x04\xb1\x7d\xb9\xfc\x3b\x5b\xd7\x82\xbf\xbb\x3c\xda\x6d\xaa\x6d\x5a\xc9\xcc\xa1\x56\x60\x5b\x8e\xbf\x83\x92\x14\xf5\x99\xa5\xa1\x4f\x7a\x12\x75\xa3\x8c\xb5\xe4\x10\x6d\x6d\x0d\x5d\xbc\xae\x93\x52\x5b\xaa\x8c\xfc\xc2\x00\x11\x63\x43\xcb\xbf\x6f\xfb\x4a\x79\xdf\x4a\x35\x5a\x40\x3a\x86\x83\xb8\xe0\xcc\x02\xab\x39\x8e\x22\x04\x36\x05\x8c\x8c\x8c\xc0\xf3\xb4\x4a\x24\x41\xd0\x52\x4c\xd5\x89\x56\x69\x9a\x00\xdf\x86\x9b\x0b\x38\x58\x5b\x55\xda\x72\x54\xb3\x70\x29\xc5\x74\x28\xa7\x7a\xbc\x5e\xeb\x5d\xe8\x94\xe4\x8a\xd5\x39\x49\x44\x90\x52\xba\x7b\xe0\x79\x93\xcd\x16\xbb\x8a\xb8\x10\x37\xe4\x89\x03\x6e\x99\xc8\x79\x76\xdb\xe0\x96\x99\x47\x10\xec\x6f\xed\xe0\x72\x40\x99\xef\x7c\xdf\xc7\x43\x0f\x3d\x84\x3d\x7b\xf6\x08\xc0\xda\x2e\x04\x02\x8a\xb9\x36\x72\x23\xde\x3d\x79\x31\xfc\xfd\xe1\xe5\xf8\x09\x11\x63\x2a\xe1\x2a\x60\x2c\xf8\xd3\x3b\xb1\xc8\x50\xf9\x74\xc3\x2b\x49\x64\x75\x35\xa1\xe5\x91\xbe\xe2\xc5\x34\x33\xd4\x88\x67\x2a\x6b\xf2\xb1\xf1\xb9\xe8\x57\x37\xb6\x97\xbe\xb3\xbc\xcd\x7f\x23\x0a\xb0\x82\xf4\x0e\xd3\x68\xd7\xae\x5d\x72\xfb\xf6\xed\xf8\x8b\xbf\xf8\x0b\xbb\xed\x79\x93\xff\x66\xab\x5b\xde\x82\x70\xb3\xfc\x45\xa2\x49\x1e\xe7\x96\x29\x57\x89\x08\x9a\xf8\x56\x46\x3a\xfe\xd4\xb6\xd5\xf2\xc7\xf5\x4d\xf1\x36\xbe\xda\x26\x04\xfd\x4b\xbb\xab\xd6\xb3\x4e\x8b\x83\x50\x92\x98\xdc\x75\xa3\xf2\xb1\x2b\xa3\xdd\x0b\x48\xae\x4f\xd0\x36\x1e\xf6\xb8\xfb\x00\x2a\x1b\x9b\xa5\xe9\xb1\xb6\xbf\xcf\x10\x01\x87\xe3\x21\x7b\xb5\xb6\xb9\x77\xd3\x90\xec\x84\xd2\xe3\xec\x4b\x1a\xdb\xb2\x16\xdc\xfb\x9e\x5c\xff\x55\x2c\xa8\x89\x84\x58\x46\x87\x0e\x1d\x12\xdf\xf9\xce\x77\xb0\xbe\xbe\x3e\x90\xb8\xdb\x13\x4b\xbf\xe7\xae\x0e\xfa\xf8\x2f\x12\xd9\x4b\x00\xf0\xfd\x98\xaa\x23\x1d\x6f\x4b\xb6\xc1\xf6\x5b\xba\xfd\xaa\x59\x25\x9d\x4b\x5f\xbc\x0b\x3b\xaf\xfd\x9b\xe8\x37\x70\x63\xb8\x37\x1b\x0b\x36\x3e\x37\xa0\xac\xdf\x7a\xbd\x1e\xde\x7f\xff\x7d\x97\xcd\x2f\x12\x11\x8a\x10\x70\x10\x82\xe6\x95\x9d\x27\x7f\xe7\x95\x7b\xb3\xf6\xe4\x7d\x3f\x88\xa8\x99\xef\x3d\xcf\xc3\xc7\x3f\xfe\x71\xec\xd9\xb3\x47\x7f\xe7\x13\x51\x05\xcc\xd5\x52\x5b\x6e\xd9\xf6\x5e\xf7\xcb\xd3\x27\xda\xff\xef\xc8\x62\xfc\x75\x2f\xc6\x34\x25\x47\x02\xa0\xcf\x0e\x25\x2e\x1c\x35\x5a\xa5\xac\x21\x65\xf1\x2b\x5d\x21\x75\xba\x26\x36\x20\x08\xc6\x58\x79\x3d\x7e\x62\xeb\x99\xee\x7f\xdb\x79\xac\xf3\x1f\x6b\x4b\xf1\x5e\x48\xae\xc3\xf2\x9f\x59\x2a\x95\xc4\xd3\x4f\x3f\x2d\x94\xb3\x27\xbb\x1f\xae\x48\xe8\x12\xc8\x22\x91\xa5\x88\xab\x74\xc7\x25\x6f\xac\xf2\x70\xc4\x8e\x17\x4f\x3d\xf5\x94\xd0\x5b\xd4\x00\x7c\x02\x55\x36\xae\x97\x66\x2a\x3d\xb1\xdd\x2c\xda\x96\x4e\xc3\x18\x18\x19\x88\x59\xe8\x0d\x05\x3f\xe6\x74\xed\x04\xcc\xb6\x37\x31\x89\xe9\xe5\xca\x83\xbe\xa4\x1a\x2c\xd7\x81\x56\xfd\xc6\x6e\xa3\x16\x7a\x53\xa5\x98\xc6\x00\x80\x49\x13\x30\xa5\x33\xb7\xa6\x0c\x2b\x63\x49\xfb\xda\xd4\x3e\x75\xbe\xa5\xb5\x25\x90\x18\x6f\x95\xee\xac\xf4\x44\x1d\xc9\x98\x19\xd7\x85\x0e\xd1\xc8\x23\xd6\x03\xe5\xfb\xcc\x8a\x7d\xff\xfd\xf7\xeb\xfc\xba\x63\x7e\x25\x12\xf5\x6a\xcf\xdb\xa4\x1b\xca\x86\x2c\x6b\x02\x48\xb0\x60\x69\x29\x49\x75\x07\xec\x54\x47\x32\x23\x20\x12\xdc\x59\x1c\xee\x5d\xe4\x94\xdb\xc8\x70\x1c\xc8\x12\x3e\x97\x08\xba\xfd\x70\x91\x2f\x8f\x78\xb8\xc8\x6c\xff\xc1\xca\x93\x57\x4e\x5e\xfd\x2e\x51\x76\x91\xf9\x66\xe2\x49\x86\x98\x10\x91\xf8\xc4\x27\x3e\x81\xdd\xbb\x77\x6b\x3b\x8c\x00\x40\x05\xcc\xf5\xe1\x65\xb9\x7b\xe6\x58\xfb\x7f\x9b\xb8\xd4\xfb\x3f\xbc\x90\xef\x44\x8a\x84\x29\x7d\x66\x06\xbb\x30\xd7\x38\xc6\x4a\x3e\x54\x58\xd6\x77\xc9\x37\xd9\x93\x23\xd1\xd2\x0b\x89\xf1\xda\x52\xfc\xb5\xe9\xe3\x9d\xff\x3a\x39\xdb\x7b\x48\x44\x3c\x8e\xc4\x7a\x31\x20\x22\x51\x2a\x95\xc4\x63\x8f\x3d\x56\x04\x0f\x3b\xe4\x11\xf0\x3c\x4e\x65\x10\x2b\x9d\x57\xc7\xa0\xb1\x31\x65\x98\x33\x52\xc9\xaf\xb2\xce\x44\x65\xbc\x55\xba\xdd\xbe\xbe\x94\x2c\x42\x61\x6e\x14\xd4\x2c\x9c\x25\x9e\x73\xca\xd2\xa5\xf3\x58\x13\x6f\x95\x56\x0d\xbd\xed\x95\x9e\x18\x03\x50\xd1\xe7\x4d\x2c\x11\x28\xe9\x9c\xd5\x00\x00\x20\x00\x49\x44\x41\x54\xde\x88\x2a\xb5\xae\x37\x29\x98\x2a\xba\x7c\xad\xec\xcc\xc8\x25\xaa\x21\xc9\x94\xca\x2e\xdd\xb0\xea\x4f\xc4\xaa\xb4\x7d\xe5\x48\x8c\xfb\x92\x6a\xca\x22\xd5\xd7\xf1\xbf\xf9\x9b\xbf\x99\xc7\x19\x67\xe0\xec\x4e\x0a\x38\xcf\x7d\xc8\xab\x10\xd6\x27\xa2\x60\xac\x5d\x9a\x0c\x22\x31\x66\x58\xb1\x54\x8e\xcb\x4a\x1e\x0e\x12\x92\x01\xb6\x8b\x8c\xf6\x2f\xd0\x29\xc9\xa5\xd5\x4a\xb4\x08\x4a\xc5\x14\xfd\xf7\xfc\xf3\xcf\x0f\x62\xf1\xdd\x4e\xbb\x7d\x1d\xf4\x2e\xd1\x4f\x20\x5c\x96\xdb\x25\xb4\x79\xdf\xfc\x4b\x58\xed\x22\xa4\xce\x3c\x3f\xfe\xf8\xe3\xb8\xed\xb6\xdb\x60\x89\x26\x15\x30\xd7\x47\xe7\xa3\xfd\x3b\x8f\xb7\xff\xef\xe1\x15\xf9\xc7\x60\xae\xd8\x85\x30\x52\x51\x24\x73\x12\x59\xc9\xc7\x6a\x0d\x54\x39\xd9\xfc\x92\x89\x4b\x4a\x81\xf9\x55\x5f\x58\xe3\x1b\x74\xe5\x03\x5b\x4f\x77\xff\xeb\x96\x33\xdd\xcf\x8b\x88\xc7\x89\xa8\xca\xcc\x01\x12\xb1\x4a\x7c\xe3\x1b\xdf\x10\x53\x53\x53\xba\xea\x3c\x18\xe5\x71\x5c\x79\x1c\x9e\x0d\x97\x41\x62\x90\x9d\x5e\x34\x09\x4c\xdd\xfb\xf7\xef\x87\x7b\x78\x0c\x89\x47\xbb\x3a\x40\x22\xd5\x63\xc0\x5a\xc5\xc9\x9e\xc9\x29\x30\x60\x89\x09\x3a\xce\xca\xc7\xea\x3b\x4f\x52\xad\x14\x53\xd5\x32\x65\x77\xdb\xe8\x13\x91\x1f\x44\x62\x84\x18\xc2\x16\xff\x53\xfa\x65\x71\xfa\xe9\xb6\x09\xd8\x6e\xa7\xd5\x0e\xed\xf3\x57\xb7\x4f\x30\x02\xc1\x14\x20\x21\x1a\x9a\x58\xd9\x30\x2c\xe2\x00\x33\x13\x25\x6f\xe5\xee\xfb\xb5\x76\x54\xfc\x7a\xc7\xdb\xec\x49\xaa\x82\x35\xb5\x33\xcb\x97\x22\xc4\x9a\xf2\xea\x77\x0b\x98\xd6\x6f\xaa\xef\x50\x6f\xaa\xe3\xab\x95\x68\xbe\x95\x5c\xd2\xdb\x61\xeb\x62\xdd\x9c\x50\xb4\xd2\xe7\xb1\xac\xb9\xab\xb9\x03\x87\xbc\xfe\x0f\x42\xec\x9b\x11\x24\x9d\x3f\xaf\xad\x79\x04\x2a\x8f\xc0\xc8\x9d\x3b\x77\x02\xc9\x18\x24\x44\x43\x72\x7d\xfc\x72\xef\xa3\xdb\xdf\xed\xfe\x5f\xa5\x0e\x7f\x54\xcb\xdd\xb6\x11\x1e\x29\xf6\x2e\xe1\xac\x2d\xc5\xb4\x82\xb3\xad\x62\x32\xc3\x62\x2b\xe1\xd4\xf7\xac\xcb\x81\xe2\x4e\x32\x08\x46\x10\x31\xb6\x4c\xce\xf6\xfe\xd3\xb6\xf7\x3b\x7f\xe4\x85\x72\xd2\x26\x1e\x00\xc4\xdc\xdc\x9c\xb4\x74\x64\x79\x30\x70\x17\xb1\x42\x38\xe4\x7c\xeb\x7e\x73\xab\x9c\x4d\x6e\x60\x66\x9f\x18\xbe\x27\x29\x25\xc2\x46\x34\xe1\x94\x7e\xda\xa2\x8a\x12\x4d\x5c\x89\xdb\xfd\xd5\x1c\x08\x0b\x8e\x62\x91\x6c\xb9\x52\xea\xa8\xd8\x3e\x75\x0b\x00\xa2\x15\xc4\x1d\x26\x48\x7b\xf1\x35\x7c\xbc\xcb\xb0\x6b\xce\xc6\x26\x1a\x16\xc1\x31\xfe\x7f\x55\xde\x56\x49\xae\x74\x7d\xa9\x4f\xd2\xaa\x6e\x66\xf4\x07\x79\x38\x2e\xec\x17\x37\xf4\x0d\x98\x46\x38\x4d\x95\x49\x22\xa8\x77\xfc\x2d\x1e\x23\x48\x1b\x99\x62\x21\x59\xaf\x86\xc6\xd9\x84\xd8\x11\xaa\x9d\x06\x03\x04\xac\x0c\x45\x73\x91\xe0\x16\xac\x73\x29\x40\xe2\xc5\x5c\x08\xe1\x22\xd2\xcd\x10\x26\x8f\x9d\x75\x11\x68\xd0\xa4\x1e\xc4\x99\xe9\x74\x97\x63\xc9\x23\x1a\x45\xed\x2d\x7c\x3f\x70\xe0\x80\x38\x74\xe8\x90\x26\xda\x9a\xd3\xa8\x8d\x5d\x8b\x0e\x6c\x39\x13\xfe\x99\x1f\xf2\xdd\x09\xbc\x6d\x6c\x31\xfc\xb1\x79\x4e\x87\x49\x33\xbc\xae\xf0\xab\x75\x4f\x64\x0f\x9e\xfa\x26\xf9\x65\x45\x84\xfa\xd2\x01\x90\xe4\xb1\x0d\x73\xd1\xbf\xdd\x72\x36\xfc\x82\xe8\x25\x9c\x87\x6a\xaf\x38\x74\xe8\x90\x78\xec\xb1\xc7\xf4\x76\xa7\x1d\x5c\xee\x4d\xc7\xe5\xfd\xba\x71\xb7\xf2\x4d\xde\x18\x66\xda\x70\xfc\xf8\x71\x57\x24\x04\x13\x44\xd7\x97\x9d\x0c\xa1\xc8\xf4\xdb\x92\x4d\xc8\xca\xe0\x70\x18\x99\x5f\x0b\x64\x1d\x5f\x36\x3a\x7e\x6c\x8e\x73\xe7\x4d\x5e\x66\xc6\xca\x50\x74\xa3\xe7\x71\xcb\x19\xa6\x24\x3d\x55\x3c\x59\x69\x9a\x72\xa4\x74\xce\xe4\xcd\x7c\x0b\xac\x55\xa2\xc5\x9e\xc7\x11\xf7\xc9\xa5\x7d\xa1\x8f\xf3\x70\x07\xc1\x1d\x0c\x09\x40\x1e\x3c\x78\xd0\x78\x60\xd6\x1c\x47\x49\x52\xa5\x16\x7a\x9b\x00\x12\x06\x25\x6d\xbd\x0c\x5b\xa4\x4d\x07\x97\x0a\x43\x11\xe9\x9c\x76\x33\x12\xc2\xc1\x4a\x4c\xe1\xe4\x76\x2b\xa9\xcb\x76\x4e\xf3\x01\x83\x27\xa1\x9b\x3e\x28\xae\x48\x2e\x76\x75\x41\x45\x22\x4b\x11\xfb\x9c\xc7\xd1\x0d\xaa\x47\x3f\xcb\xfd\xfb\xf7\xeb\x7c\x89\x7d\x01\x50\x1b\x5e\x8e\xef\xdc\x72\xa6\xfb\xbf\x94\xba\xbc\xcf\x08\x1a\x16\x20\xb9\x0f\x7b\x13\xa2\x90\xcd\x93\x59\x36\xd3\xf8\xcc\xd9\x15\x1d\x97\x7d\xcf\x0d\x0c\x90\xc4\xf8\xf8\x95\xde\xbf\x9e\xbc\x18\x3e\xa6\x15\xa6\xca\x90\x49\xec\xdc\xb9\x53\x1f\xe1\xb6\x43\x91\xc8\x99\xf7\xdb\x97\x5f\xf9\xbe\x95\x00\xe4\xed\xb7\xdf\xae\xd3\x25\x00\x39\x3e\x3e\xae\xb3\x15\x89\x95\x19\x7c\xb7\x27\x2c\x03\x72\xa5\x1a\x2d\xc8\xc4\x40\xca\xa2\xc5\x16\x20\x0c\xf8\x94\x7c\x60\x60\xe3\xe0\xbc\xe6\x44\x2c\x4e\x60\xb5\x12\x2d\x44\xd6\xa4\x75\x26\xaf\x44\xb2\x58\x47\x4b\xd5\xde\x42\xb3\x1c\x2d\x18\xdd\x94\xae\x0f\x16\x07\x61\xb7\x0f\x94\x70\x84\x3a\x57\x9e\xf8\x04\x40\x12\x47\x37\x86\x7b\x97\x7b\xc2\x18\x54\x16\x85\x5c\x2e\xcf\xb6\x1c\x2d\x62\x0d\x71\xe4\xc8\x11\x79\xf0\xe0\x41\x7b\xa2\xf8\x9e\xa4\xca\x50\x28\xc6\x32\x62\x86\xc3\x51\x64\xb6\xac\xd8\x42\xba\x4c\x3e\x64\x81\xaa\x00\x21\x05\x47\xcb\xd5\x68\x9e\x13\xa2\xa1\x7d\x1b\x48\x00\xda\x3e\xc0\xed\x5c\x91\x78\x02\xe4\x4f\xe6\x41\x72\x71\xde\xb7\x83\xc2\xcd\x58\xe4\x22\x02\x34\x28\xaf\x00\x20\x9f\x78\xe2\x09\x11\x04\x81\xd1\x6b\x30\x73\xb5\xdc\xe1\x2d\x5b\xce\x86\x7f\x5a\x5e\xe7\x0f\x93\xca\x9f\xbd\x56\x42\xe9\x8f\x88\xad\x6d\xc1\x7e\x0b\xdd\x14\xd9\xd3\x01\x20\xd8\xbc\x49\x72\xfb\x5e\xba\xc8\x2a\xdb\x5f\x33\xb6\x80\xbe\xf7\x57\x07\x62\x86\x88\x30\x35\x39\xdb\xfb\xd7\x9d\xba\x77\xb9\xb1\xc9\x3f\x66\x39\x93\x89\x9e\x7a\xea\x29\xfc\xe0\x07\x3f\x40\xb3\xd9\x2c\xc4\xb7\x9c\x38\x77\xdc\x24\x00\xf9\x7b\xbf\xf7\x7b\x62\x6c\x6c\x2c\xc3\xc5\x58\x2e\x1f\xd0\x6e\xb7\xd1\x6a\xb5\xc4\xe2\xe2\x22\x5e\x7d\xf5\xd5\xc2\x32\x2d\x8f\xfd\x49\x1f\x88\x24\x98\xe5\xb5\x91\xee\x95\xf5\x20\x5e\xac\x77\xfd\xa9\xd4\xfd\x43\x4a\x49\x6d\x42\x93\xb1\x82\x66\xb2\x69\x84\x43\x53\x92\x63\x19\x8b\xb5\xde\xac\xa4\xf4\x4a\x0f\x4a\xef\x52\xd1\x8e\x78\x24\x80\x68\x3d\x90\x8d\xab\xf5\xf0\xdd\xf1\xf5\xd2\x6e\x10\x84\x61\x2e\x14\x2d\x32\xa6\x25\xfa\x19\x59\xe2\x9e\x31\xc4\xb4\xa4\xcf\x76\x49\x2e\xcd\xd5\xc3\x0f\x40\xfd\xf3\x2b\x67\x0c\x74\x30\xc4\x36\xef\x58\xbd\x0d\x5c\xf3\x6c\x1d\xbd\x16\x00\x84\x2f\xa9\x52\x89\xc4\x78\xd2\x9e\x14\x29\x6d\x62\xe1\x8a\x23\x09\x22\x5a\xc4\xc2\x32\xf8\xb2\x55\x1c\x00\xa3\xe7\xc9\xe6\x5a\x39\xba\x01\x42\x48\x48\xc5\x14\x22\x92\xa7\x4f\x9f\xb6\x3b\x54\x84\x80\x79\xf2\xf2\xad\x70\x1d\xee\x4a\x54\xc4\x41\xe4\xe5\xcd\x13\x37\xdc\xba\xf2\xca\x2e\xa4\xf8\xd6\xdd\x35\x3e\x33\x57\x04\xa3\x3e\x79\x31\x7c\x62\x78\x39\x7e\x02\xcc\xbe\x3d\x91\x13\x25\x9e\x86\xa5\x56\x62\x2a\x7e\x84\x09\x44\xa9\xb2\x33\xa3\xfc\x54\x93\xdf\x56\x6d\xe8\xf1\xc9\x9a\xd9\x58\x6e\x97\x4c\x82\x35\xa6\x56\x9e\x52\x97\xef\xdc\xfc\x41\xf7\x4f\xdb\x23\xe2\xff\x0c\x2b\x14\xea\xc9\x50\x2e\x97\xe5\x03\x0f\x3c\x80\x57\x5e\x79\x25\x4f\x7c\xcb\x83\x9d\x00\x20\x3d\xcf\x13\x1f\xfe\xf0\x87\xc5\xc6\x8d\x1b\xa1\xae\x1d\x05\x94\x5e\x40\xad\xd6\x66\x57\x02\x4a\xb4\x1e\x1a\x1a\x42\xa5\x52\x91\x13\x13\x13\x72\xe7\xce\x9d\xe2\xe2\xc5\x8b\x78\xf5\xd5\x57\xfb\x60\x7d\xf6\xec\x59\x1c\x38\x70\x40\x9b\x1c\x48\x00\x11\x03\x61\xa3\x1c\x2f\xce\x8d\x76\xdf\x1d\x59\xf0\xa6\x52\x9c\xce\xae\x92\xae\x57\x3b\x77\x01\x35\xba\x05\xa4\x5c\x78\x2c\x64\xe7\xf2\x68\xf7\x94\xb5\x28\x4a\xc7\x30\x52\x7b\xee\x0a\x41\xe8\xbc\xb7\x79\xfd\xcd\x99\xa5\xca\x83\xb5\xae\xbf\x09\x29\x98\x91\x39\xa7\xa2\xc7\xc5\xaa\x57\x4b\x9d\xc9\xf8\x64\x29\xc8\x95\xd1\xee\xc9\xc5\xe1\x70\x0e\x96\xb3\x6f\x5d\xff\x2f\x7f\xf9\xcb\x3c\x31\xdb\x1e\x2b\xe1\x4e\xba\xdc\x41\x53\x47\x8c\xf5\xbb\x60\x66\xbf\x1c\x89\x6a\x39\x12\xf5\xbe\x15\x47\xb7\xd4\x88\x25\x59\x0d\x4e\x6a\x7c\x47\xa6\x7f\x99\x0e\x23\x41\xeb\xd0\xe3\x66\xbb\x24\x9b\xc8\x9e\x8d\x00\x00\x7c\xf0\xc1\x07\x36\xbb\x59\xc4\xd6\x16\xb1\xb7\xee\x37\x45\xfa\x0f\xf7\xdb\x42\x16\xd7\xfa\x6e\x10\xd1\xb8\x59\x7c\x46\x3c\xa9\xd5\x6a\xf8\xa3\x3f\xfa\x23\xc3\xe1\x11\x51\x40\x44\xd5\xe1\xa5\x78\xef\xd8\xd5\xe8\xf7\x49\xa2\x4e\x4a\xa3\x69\x94\xa2\x0a\x53\xa8\x4f\x47\x91\x5e\xbf\x49\x16\xf2\xe8\x6f\x8c\xe2\x14\x48\x95\xa4\x86\x51\x64\x6b\x08\xd3\x67\xb3\x23\xa3\x38\x1b\x5d\x4f\x92\x0b\x20\x66\x31\xd4\x90\x8f\x4e\x5c\xea\x3d\x46\x40\x5d\x29\x74\x7d\x66\x16\x7b\xf6\xec\xb1\xaf\xd7\xc8\x83\x4d\x06\x71\xb7\x6c\xd9\x22\x3e\xfd\xe9\x4f\x63\xdf\xbe\x7d\xd8\xb2\x65\x8b\xfe\x2e\x50\xb6\x0e\x89\xce\xc7\xfa\x53\x8a\x59\xfb\x4e\x56\xbf\x52\xa9\x88\xbd\x7b\xf7\xe2\xa9\xa7\x9e\x12\x8f\x3e\xfa\x68\x86\x58\xad\xaf\xaf\x2b\xc9\x17\x52\xad\xba\xc9\x8d\xf2\x1e\x37\x4f\x6f\x6c\x1f\xee\x7a\xdc\x4c\x45\x05\x4b\x2c\x07\xcc\xe2\x67\x16\x3e\xbd\xfa\xb3\x22\xcb\x6a\x7c\x34\x71\x06\x31\x16\x87\x7b\x67\xe7\x46\xbb\x17\x40\x66\xd2\x46\xaa\x6e\x4d\x3c\xa4\xe2\x00\x3a\x00\x5a\xf3\x23\xe1\x85\x0f\x26\xda\x87\x25\x71\x64\xea\x66\x9b\x33\x54\xef\x7a\xbb\x5d\xd7\xad\x56\x02\x82\xe2\x94\xd4\x77\xcd\x40\x2e\xbe\xb3\xa5\xf9\xab\xae\xcf\x2b\xaa\x8e\x50\xf7\x9d\x88\x6c\x0e\xce\x15\xc9\xa1\x7f\x3d\x2b\xc2\x15\x76\x93\x0c\x9e\x47\x87\x0f\x1f\xd6\xa2\x8a\xa7\x06\xa6\xb6\xb1\x19\xec\xbe\x63\xa1\xfa\x84\xcf\xa2\x6a\xb3\x6d\x0a\x6c\x6a\xd5\x4a\xa8\x5c\x46\x64\xc9\x20\xaf\x25\x43\xc3\x46\x3b\xa0\x31\x14\xcf\xbe\x3d\xd5\xfc\x59\x2c\x70\x1d\xc9\x6d\x6d\x1d\x22\x8a\xe3\x38\x96\x4b\x4b\x4b\xb4\xba\xba\xca\xaa\x8d\xf6\xaf\x25\xec\x98\x3e\xd8\xe9\x59\x2a\x96\x4d\xb3\xcb\x70\xd3\xdd\xf7\xbc\xd5\xd2\xfd\xd6\x6d\x0b\x0a\xde\xed\x35\xca\x10\x95\xfd\xfb\xf7\x93\xda\x45\xf1\x90\x9c\x54\xad\x8a\x88\xc7\xb7\x9e\x0e\x9f\xaa\xae\xca\xdf\x22\x40\xd8\x5c\x9a\xb1\x11\x20\xeb\xd7\xd4\xe0\x5c\xa5\x69\x20\x9d\x3a\x8c\x4e\xe7\xbe\x5e\x1d\x93\x55\x2a\x21\x2c\x9a\x87\xd1\xcf\x69\xc5\x44\x69\x79\x69\xe7\x59\xf5\x9e\x82\x72\x5b\x6e\x6c\x8e\xfb\xbf\x8a\x2a\xa2\x01\x75\xf7\x0d\x11\xc5\xb5\x5a\x0d\x67\xcf\x9e\x85\x9a\xa8\xc2\x81\x03\x01\x90\xbe\xef\x0b\x29\x25\x7f\xfe\xf3\x9f\xa7\xf1\xf1\x71\x01\x80\xd4\x2e\x44\x00\x20\xf0\xa5\x18\xae\x85\xde\xf8\xf4\x4a\x65\xe7\xce\xe5\xca\xde\xed\x2b\xe5\x3d\x5b\x9a\xc1\xb6\x89\xf5\xd2\x78\x49\xd2\x50\xe8\x31\xa4\x48\xba\xa0\xdc\x03\xc0\xf7\x7d\x4c\x4c\x4c\xf0\xe6\xcd\x9b\xe9\xea\xd5\xab\x08\xc3\x50\x02\xc0\xf1\xe3\xc7\x59\xe9\xf2\x88\x99\x3d\x22\x0a\x18\x1c\xac\x57\xe2\xb8\xde\xf5\x26\x36\x35\x83\xdb\xcc\xc2\x87\x7e\x11\xdc\xf8\xe2\x30\x3d\xb0\x4d\xc1\x35\x35\x66\xf4\x3c\x6e\xfd\x72\xa6\xf1\x83\x6b\x23\xbd\xf7\x41\xb8\x41\x44\x0d\x24\x67\xb0\x7a\x48\x16\x47\xd6\x8b\xb4\xd2\x27\x96\x24\x38\x58\xae\x46\x6b\x1b\xd7\x83\x6d\x23\x1d\x6f\x73\x52\xa4\x36\xaa\x4c\x21\x97\x2e\x1e\x50\x0b\x48\xd6\xeb\x0d\x08\xe8\x79\xb2\xf3\xd6\xf6\xe6\x8f\x4e\x6d\x6e\xfd\x82\x05\xae\x01\x58\xa6\xe4\x9a\x91\x2e\x11\xc9\x67\x9e\x79\x26\xd6\xf0\x47\xff\x42\xa8\xe3\xc9\x35\x39\xef\x53\x92\xc6\x71\x8c\x43\x87\x0e\xe9\x13\xb1\x66\x05\x1c\xea\x89\xba\x27\x29\xc8\x4c\x17\xd3\x89\x54\x16\xce\xe8\x36\xb4\x58\x62\xef\x27\x6b\xc4\xcd\x14\xc0\x68\x97\xe2\x95\x9e\xc7\x19\xdb\x0d\x00\x72\x75\x75\x15\x17\x2f\x5e\xd4\x6d\x75\xdb\x9c\xd7\x87\x22\xd1\x25\xb7\xbf\xb7\x18\x8a\x88\x47\x9e\x98\x93\xc7\x86\xbb\x21\x93\x9f\x88\xcc\x29\x4d\x7d\x2e\x88\x99\xab\xc3\xcb\xf1\xee\xda\x52\xf4\xdb\x04\xf8\xf6\x0a\xa7\xb9\x3c\xed\xfc\x59\x07\xed\x31\x5e\x8f\x41\xb2\x00\x71\x66\x5c\xf4\xa9\x4e\x4e\xff\x59\x5c\x04\x65\x44\xca\xe4\x47\xed\xc5\x30\x43\x1f\xd7\xee\x1b\x7f\x2b\xae\xd4\xe5\x3b\xc7\xaf\xf4\x3e\x79\xa5\x2e\xe6\x90\x9c\x6e\x8e\x88\x28\xda\xbc\x79\xb3\xdc\xbc\x79\x33\xe6\xe6\xe6\x72\x61\x00\x00\x0f\x3d\xf4\x10\xf6\xee\xdd\xab\x2d\x2a\x93\xd3\xa2\x8c\x8a\x48\x7c\xdc\x6e\xbf\x63\xa1\xfa\xd0\xd4\x6a\xf9\xe1\x5a\xe8\xed\xf3\x24\x8d\x11\x10\x30\x10\x31\x71\xa7\x27\x78\x7e\x65\x28\x3a\x7c\x7e\xa2\xf3\xf2\x7b\x9b\xd7\x8f\xae\x95\xe3\x15\xb5\xf8\x44\xcc\x1c\x6e\xdf\xbe\x5d\x7e\xf9\xcb\x5f\xc6\xb3\xcf\x3e\x0b\x00\xe2\xae\xbb\xee\x32\xba\x05\x4a\x1c\xdc\xb4\x88\xa8\xd9\x13\xbc\x74\x78\xc7\xda\x4f\x37\xae\x07\x33\x9b\xd6\x4a\xbb\x6d\x78\xf7\x6b\x8a\x15\x81\x75\xce\x61\x91\x1a\x1b\x49\x88\x4e\x6d\x6c\xbd\x7e\x76\xb2\xfd\x16\x83\x1b\x84\xc4\xdc\x1c\x0e\xee\xa9\xef\x23\x65\x8a\xde\x24\xa2\x95\x46\x25\xbe\xfc\xfa\xcc\xea\x8b\x8f\x7c\x30\x56\xdd\xbc\x16\xec\xce\x6c\xb9\x66\x60\x9f\xfc\xea\x03\x70\x66\x18\x19\x88\x85\x0c\xdf\xdd\xb2\xfe\xda\xf1\xa9\xb5\x7f\x8e\x05\x16\x99\xb9\x41\x89\xc9\xbb\x16\x97\x8c\x8e\x05\xfd\xf3\x25\x43\x44\xf2\x94\x4e\xb9\xc1\x96\x29\x01\xf8\x41\x44\xc3\x42\x9d\x51\x21\xa4\xc4\x40\xe5\x86\x4d\x0a\x4c\x82\xa1\xc6\x2a\x3d\x23\xb2\x58\x88\x0a\x60\x3d\x90\x4b\x8c\xd4\xc1\x6a\x8e\xe6\xd7\x15\x31\xf2\xde\xff\x25\xf9\xdd\x50\x44\x50\xf2\x08\x81\x0b\xd8\x22\x45\x6d\x9e\x68\x64\x7f\x23\x91\xc0\x58\xee\xd8\xb1\x43\x23\x90\x0f\xa0\x42\x8c\xda\xf8\x95\xde\xa7\xbc\x1e\xa6\x00\x8b\x2d\xb6\x44\xbe\x64\xe1\xa1\x14\x69\xa1\x56\x21\x35\x99\x09\x29\x31\xcf\x70\x24\x8a\x58\xa4\xdc\x83\xad\x03\xc9\x32\x49\x36\x67\xc2\x7d\x98\xcb\x99\x23\x13\x6a\x97\x32\x18\xbd\x16\x7d\x26\x68\xf1\x26\x30\x2a\x50\x0e\xb2\x89\x08\x3b\x76\xec\x70\xe1\xa8\x61\x04\x00\x19\xb3\x7a\x66\xae\x80\x51\xab\x75\xbd\xc9\x4f\x9c\xdd\xf0\xe5\xcf\xbc\x3b\xf1\xcd\xdf\x98\x1f\xfe\x2f\xe3\xad\xd2\xe7\x83\x58\xec\xf6\x98\x26\x89\xa9\x2e\x18\xe3\x5e\x2c\xa6\x86\x22\xef\xc0\xd6\x46\xf9\xd0\x47\x2e\xd6\xff\xfb\xbf\x7a\x7b\xe3\x7f\xf9\x8d\xf9\xe1\x8f\xfa\x32\xb1\xd4\x54\x4a\x66\x9f\x88\xa0\x0e\x96\xc9\xf7\xde\x7b\x4f\x86\x61\xa8\xeb\xd7\xb7\xc9\x37\x41\x58\x59\x19\x8a\x66\x5f\xda\xbd\xfc\x57\x4b\xd5\xe8\xb2\xe1\xf8\x35\x31\xb5\x7a\x6f\x13\x58\x9b\xe0\x32\x01\x92\x58\x7e\x30\xd1\x3e\xfa\xab\x99\xd5\x1f\x46\x1e\x2f\x29\x4e\xc3\xdc\x79\x4c\x44\xf2\x9b\xdf\xfc\xa6\x7c\xe6\x99\x67\x6c\x45\x69\xa8\xf2\xac\x80\xb0\x38\x5f\x0f\xdf\xfb\xf9\xde\xe5\xbf\x9e\xdd\xd0\x39\x19\x0b\x8e\xb4\x28\xe4\x12\x0d\x7b\x2a\xb1\xe2\x90\xba\x25\xd9\x3a\xb2\x7d\xed\x67\xbf\xd8\xb5\xfa\x0f\x1d\x5f\xce\x01\x58\xa1\xf4\x42\xb3\x10\x80\x54\x97\x43\xdd\x4c\x0f\x27\x80\xc4\x03\x98\xd1\x46\x38\x58\x60\x82\x72\xde\xa3\x3d\x47\x0d\x01\xa8\x6f\x5f\xa9\xdc\x3b\xbd\x52\xf9\x4d\xc1\xe4\x69\xcd\x58\x66\xc1\x23\x38\x22\x8a\x2d\x8b\xa7\x79\x52\x8e\x23\x4b\x5c\x2e\x8e\x77\x7e\x7d\x69\x43\xf7\x38\x08\xcb\x44\xb4\xae\x29\xf3\x5f\xfe\xe5\x5f\xc6\x56\x2d\xb6\x98\xa5\xd9\xdd\x41\x4a\x5e\x76\xf2\xdb\xc2\xb9\x6e\x3d\x5b\xe9\x36\xf1\xb0\xf3\xe8\x7a\xec\x67\x72\x9e\xed\xb2\xd9\xf9\xde\x1e\x0c\x77\xc8\xf9\xc9\x27\x9f\x14\x23\x23\x23\xa0\xc4\xe9\x4e\x00\x46\xad\xdc\xe6\x1d\x9b\x3f\x08\xff\x8d\xd7\xc3\xa4\x51\xd0\x59\x30\xa6\x0c\x50\xd5\x93\xd6\xf4\x1b\x71\x25\xe9\x7a\xca\x66\x5b\x86\x60\xa6\xa5\xe4\xac\xa8\x9a\x3d\x47\x56\xc1\xa6\x44\x19\x6b\x79\x33\xec\xb1\xbd\x50\x10\x00\x11\x63\x43\xb7\x26\x8e\xb5\x47\xc5\x15\x22\xea\x42\xc9\xf4\xb5\x5a\x8d\xdf\x7e\xfb\x6d\x17\xb6\x98\x9c\x9c\x14\x5f\xfa\xd2\x97\xc8\xf7\xfd\x54\xbf\x03\xaa\x6d\x6a\x96\xa6\x7f\xfb\xd4\xf8\x7f\xd8\x75\x63\xe8\x7f\x0e\xa4\x98\x22\xa6\x94\xe8\x68\x0e\x5d\xb5\x47\x8b\x0e\x82\x51\x1e\x8a\xbc\x3b\x77\xac\x94\x1f\xae\xf6\x44\xf3\x6a\xbd\x7b\x29\x12\x1c\x01\x60\x4a\x1a\x2b\x0f\x1e\x3c\x48\x47\x8e\x1c\x61\x25\xae\x18\x20\x5a\xca\x4a\x5a\x2f\xc7\xbd\x2b\xa3\xdd\x2b\xf5\xae\x3f\x5a\xef\xf8\x13\x82\x13\x8b\x52\x50\x2a\xba\xa4\xa2\x63\xca\x71\x31\x01\x5d\x5f\xb6\x4e\x6e\x5d\xff\xa7\x5f\xdc\xb6\xfa\x62\xab\x2c\x2f\x00\xb8\xc6\xcc\x4b\x8a\x9b\xe8\x02\x88\xd6\xd6\xd6\x78\x76\x76\x96\x98\x99\xb6\x6f\xdf\x8e\x6a\xb5\x6a\xc6\x50\xe3\x05\x83\xb9\x1d\xc8\xf6\xc5\xf1\xce\xa5\x56\x10\xaf\x8f\x76\xfc\xb1\x72\x24\xaa\x94\xca\xa0\x0e\x0a\x30\x7a\x1e\x77\xae\x8c\x85\xa7\xff\xf9\xf6\x95\x17\xdf\xd9\xba\xfe\x8b\xd8\xc3\x1c\x11\x5d\x03\xa0\x2f\x35\x6b\x21\x71\x8a\x25\xbf\xf5\xad\x6f\xd9\x38\xad\x4b\x71\x71\x34\x23\xaa\xe4\x6e\xb9\x00\xc0\x47\x3e\xf2\x11\x93\x66\xc4\x15\x86\x28\xc7\xa2\x4a\x0c\x5f\x2f\x7d\x19\x02\xa1\x07\xd1\x5d\x0d\xad\x5d\x14\x13\xdf\xc7\xee\x01\x0c\xc8\x76\x49\x36\x60\x71\x1b\x4e\x3e\x57\x3c\xb0\xdb\x7d\x33\xf1\x23\x8f\x82\x62\x40\xde\x41\xca\xe3\xbc\x7c\xee\x2e\x4c\xd1\xf7\x6e\x5b\x01\x40\xd4\x6a\x35\x0c\x0f\x0f\x03\x29\x77\x17\x10\x50\x1d\x59\x8c\xf6\xfb\x5d\x9e\xd6\x4a\x4e\x13\xcc\x24\xcf\x72\xcf\xb6\x3e\x83\xd5\xd2\x4f\x8a\x10\xa4\x96\xa3\xd9\x31\x53\x1f\xa4\xc8\xef\x88\x3d\x36\xfe\x68\xe9\x39\x6f\x47\xcd\x48\xd6\xa9\x1f\xd9\x60\xf4\x5a\xf4\xc8\xd2\xb6\xd2\x1b\x52\x70\x43\x71\x51\x51\xad\x56\xd3\xbb\x1d\x19\x18\x7c\xe6\x33\x9f\x41\x10\x04\x56\xff\xa9\xb6\xa9\x59\x9a\xf9\xed\x53\xe3\x7f\x36\xb1\x5e\x7a\x02\x20\x91\x48\x60\xf6\x96\x28\x0c\x0d\xd3\x4a\x63\x7b\xf9\x2b\xc5\xb4\x7d\xdf\xd5\xda\x9f\x95\xa4\x18\x79\xf5\xf6\xe5\xef\x84\x3e\x2f\x29\xd8\x4b\x66\x96\x4f\x3e\xf9\xa4\x38\x72\xe4\x08\x3a\x9d\x0e\x2a\x95\x8a\xe1\x3a\x14\x67\xe0\x33\xb3\x7f\x63\xb8\x27\x7f\x7c\xc7\xd2\xfa\x1d\xd7\xab\x07\xef\x9e\x1f\x7e\x60\x62\xbd\x34\xe5\x31\xf9\x19\xfd\x86\x66\xf6\x88\xd1\xf1\x65\xeb\xca\x68\xf7\xec\xc9\xad\xeb\x6f\x5c\x1a\xeb\xbe\x13\x0b\x9e\x63\xe6\x05\x22\x5a\x22\xe7\xfa\xd2\xb3\x67\xcf\x9a\x4b\x92\x4e\x9e\x3c\x89\x47\x1e\x79\x44\x52\xb2\x55\xdb\xd1\xe6\xe0\xaa\xaf\xb2\x5d\x92\xe1\xb1\x6d\xcd\xc6\x07\x93\xed\x77\xa7\x56\xcb\xb7\xed\x5c\xaa\xec\x1d\x6b\xfb\x93\x95\x9e\xa8\x7a\x4c\xa2\xe7\x71\xb4\x56\x8e\x56\x16\x46\x7a\x97\x2f\x8d\x75\xce\x5d\x1b\x09\xcf\x87\x1e\x2f\x00\xbc\x08\xd0\x02\x80\x25\xa8\x9b\x10\x91\xe8\x9d\xec\xeb\x26\x8b\xe6\x87\x8e\x13\x40\xea\xc8\xa7\x88\x1d\xc7\xaf\x7f\xfd\x6b\xa9\xf7\xb9\xb5\x8e\x43\x30\xfc\x20\xa2\x1a\x99\x42\x2d\xb9\x8e\x12\xb4\x4a\xe2\x32\xb8\x99\x06\x05\xd8\xcc\x04\x30\x6b\x2e\x03\x02\x68\x97\xe2\x26\x1c\x8b\xd1\x9c\x76\xea\x8e\xb9\x22\xc1\x20\xe2\x51\xa4\xe3\x18\x54\x66\xde\x7b\x5e\x3b\x06\xd5\xe1\xc6\xe7\xbd\x63\x6c\x6c\x0c\xa3\xa3\xa3\x40\xaa\x1c\x0b\x20\xb9\x5a\xbb\x11\x1f\x24\x46\x45\xdb\x4f\xa4\x93\xd7\x5e\x66\xf4\x4e\x47\x2a\xa6\xc0\xa4\xba\x94\xc5\x7e\xa5\x54\xf7\xa1\x42\x76\xb7\x8c\x53\x1a\xe0\xfa\x95\xcd\x84\x94\x58\xa5\xe5\x24\x44\xad\xb2\x26\xf7\x07\x6d\x39\xde\xad\x79\x8b\x48\x75\x37\xe2\xe2\xc5\x8b\x11\x9c\xf1\x52\xce\xb0\x8d\xdd\xca\x70\xe8\x6d\x7a\xf0\xfc\xe8\x37\x26\xd6\x4b\xbf\x4d\x4c\x42\xb3\xe0\x76\x3d\x7d\x0c\x97\xad\xa2\x51\x09\x1e\x63\x6c\xcf\xf5\xa1\x43\x6b\xe5\xe8\xc6\x1b\xd3\x8d\x17\x63\x62\xbd\x20\x85\x53\x53\x53\xf2\xc5\x17\x5f\x94\x17\x2f\x5e\x14\x77\xdc\x71\x87\xde\xd5\x08\x01\xb4\xd4\x38\x00\x84\xa8\x13\xc8\xe8\xc4\x54\xb3\xf1\xc1\x44\xfb\xfd\xad\x8d\x60\x66\x6b\xa3\x3c\x33\xb9\x5e\xda\x54\x89\x44\xc5\x93\xe4\x47\x82\xa3\xd5\x4a\xb4\x72\xad\x1e\x5e\xbe\x52\xef\x9e\x5b\x1a\xee\x5d\x09\x3d\x5e\x00\x61\x09\xc0\x02\x18\x4b\x5a\xb7\x00\xb5\x30\xae\xaf\xaf\xdb\xb7\x10\xe2\xf4\xe9\xd3\xd8\xb4\x69\x13\xee\xba\xeb\x2e\x8d\xf3\x66\x56\x2b\xfd\x43\x08\xa2\x56\xa3\x1c\xaf\x34\x36\xb5\xae\x9c\x99\x6c\xbf\x55\x8a\x69\xc4\x97\x14\x10\x20\x24\x21\xea\x79\x72\x3d\x12\xdc\x92\x94\x88\x5b\x00\x56\x00\xd2\x75\x9b\x9b\x10\x39\x39\x69\x2e\x9f\x7b\xee\xb9\x3c\x7d\x60\xe1\xbb\x7b\x93\x5b\xdf\x4a\xaa\x6f\xaf\xb2\x95\xa3\x82\xc9\x2f\x47\xa2\xe6\xb2\xc5\x7d\x08\x44\xf6\x9b\x96\x03\x91\x9e\x9f\xb0\x06\x38\xc5\x7f\x82\x04\x47\xa1\xcf\xeb\x28\x26\x16\xae\xae\xa2\x48\x09\x79\x33\xce\xc3\xe5\x5a\xf2\x42\x1e\x51\x71\xdb\x91\xc7\x5d\xb8\x75\xe7\xb5\xa5\xaf\xac\x0d\x1b\x36\xd8\x71\x89\x53\x9e\x08\xb5\xa1\xb5\x78\x1f\x90\x9d\xcc\x19\xad\xbd\x9d\x96\xcb\x2d\x58\xf1\x94\x1d\x9f\x6c\xb9\x76\x91\x96\x03\x1a\x23\x8d\xa4\x53\x91\x9d\x05\x20\x95\x80\xd2\x2b\x3c\xf5\x5a\xe0\xf7\x78\x7b\xa5\xc9\xdb\xbb\xc3\x3c\xcb\xc9\x36\x69\x08\x24\x97\x1d\x7d\xff\xfb\xdf\x07\x00\xb1\x61\xc3\x06\x7c\xf1\x8b\x5f\xd4\x9c\x98\x60\xe6\x8a\x00\xd5\xee\x9e\xaf\x3e\xba\x7d\xa5\xf2\x79\x52\x1c\xb2\x45\x96\x4c\xdb\x32\xcb\x50\x66\xc5\xa2\x54\x17\x41\x40\x29\xa6\x2d\x77\xcf\x0f\x3f\x3d\xbb\xa1\xf3\xee\x95\x7a\xf7\x34\xac\xed\xd0\xcf\x7d\xee\x73\xe2\xe7\x3f\xff\x39\x88\x08\x7b\xf6\xec\x91\x94\xb8\x72\x30\xb6\x15\x6a\x8c\x42\x26\x34\x9b\xe5\x68\xe9\xcc\xc6\xf8\xd2\x07\x93\xed\xb7\x82\x58\x54\x05\xa3\x4c\x0c\x9f\x09\x51\x4f\xf0\x7a\xe4\x71\x8b\x81\x26\x83\x1b\x44\xa4\x26\x2e\x1a\x44\xd4\x60\xe6\x26\x5b\x77\x1e\xbf\xf0\xc2\x0b\x7d\x8a\xe1\xd7\x5e\x7b\x0d\x5b\xb7\x6e\x15\x1b\x36\x6c\x88\xd4\x51\x8f\x8e\xe2\xbc\x35\x17\xd2\x54\xe5\xd5\x22\x21\x2b\xb1\x47\x15\xa8\x13\xae\x4a\xd1\xa9\x39\xa6\x26\x27\x37\x02\xe8\xdf\x16\xd4\x85\x66\x00\xa4\xe5\xe1\x3c\x2f\xe4\xe1\x6a\x86\xe3\xc8\xcb\x94\x29\xcc\x46\x2c\xc1\x89\xc9\x79\x86\x69\xb0\xa5\x74\x00\x19\xd3\xb6\x74\x08\xb3\x83\x6a\x3d\xdb\xd1\x52\x70\x18\x7a\xb2\xc3\x60\x7d\xb8\x47\xba\x6d\xc8\x09\x83\x76\x2d\xdc\x7c\xff\x7f\x39\x14\xa0\x9f\x58\x0c\xe2\x46\xf2\x76\x57\x06\xb5\x55\xec\xd9\xb3\x47\x5b\x89\x0a\x28\x5f\xa1\x41\x5b\x4e\xfa\x5d\x9e\xb6\x44\x57\x0b\xae\xb6\x3a\xca\x81\x8f\x65\x6d\x97\x92\x19\x77\x07\x2b\xcd\x97\xe5\x01\xad\xf1\xcb\xec\x12\xa4\xf9\xfb\xbe\x60\xcb\xd0\xdd\x6c\x0d\xab\x26\x48\xae\x0e\xad\xc5\xb7\xaf\x6e\xf2\x8e\x92\x20\x6d\xb1\x2c\x46\x46\x46\xe4\x8e\x1d\x3b\x70\xe9\xd2\x25\xec\xde\xbd\xdb\x28\xe1\x91\x1c\xcd\xaf\x8c\xb5\xfc\xa9\x3b\x16\xaa\xbf\xe7\x31\xc6\x32\x5d\xb4\xf4\x36\x96\x4a\xa1\x2f\xd8\x92\x1d\xab\xde\xd7\xba\xde\xdd\xfb\xae\xd6\x3e\x37\x3f\x12\xfe\x77\x99\xda\x52\xc8\xad\x5b\xb7\xca\x56\xab\x25\x5f\x79\xe5\x15\x00\x10\x7b\xf7\xee\x95\x48\x94\x97\x40\xba\x88\x29\xa5\x29\xd5\x98\xb9\x26\x05\x55\xdb\x14\x07\x4a\xfc\xd2\xf9\x22\x35\xd1\x5b\x04\x6a\x22\xb9\x44\x4c\x4f\xda\x8e\x2a\x33\x02\x20\xdf\x79\xe7\x1d\xb7\xc9\x06\x9f\xbe\xff\xfd\xef\xcb\x2f\x7e\xf1\x8b\x62\x7c\x7c\x5c\xdb\x79\x68\xc5\x69\x48\xc9\x0e\x55\x13\x89\xb2\x57\x13\x0d\x5f\xb7\x55\x95\xaf\x89\x47\x4b\xb5\xc7\x78\x6b\x43\x3e\xd1\x18\x24\x82\x67\x38\x12\xf7\xd2\x69\xfd\xdb\xc7\x5a\xbb\x96\xa3\xc4\xe4\xdb\xac\x60\x06\x85\xf4\x68\x51\x56\x41\x6a\xd8\x5f\xbd\x50\x58\x8a\x52\xb2\x0a\x91\x84\x28\x12\x09\x85\x75\x3b\x33\x3d\x3d\x2d\x66\x67\x67\x07\x4d\xee\x9b\x51\xcf\xa2\xf4\x5b\x15\x6b\x6e\xe5\xdb\x5b\x25\x3e\xf6\xf7\x66\x0c\x2c\x38\xfb\x00\x82\xa0\x25\x37\x09\x89\x5a\x92\x95\x33\xb3\x41\x8b\x0e\x89\x55\xa2\xe3\x96\x31\x33\x61\xd4\x33\x3b\x8a\x3c\x40\x4d\xc0\xfe\x4b\xb1\x6c\xc5\x9f\xce\x97\x1d\x70\x57\x1c\xd5\x63\x9e\x72\x2c\xa0\x54\xa4\x0a\x5a\x72\x9a\x18\x15\xa9\x8e\x92\x13\x11\x3c\xcf\x43\xa5\x52\x01\x00\xb9\x7b\xf7\x6e\x61\x11\xcd\x80\x99\xab\x33\x4b\x95\x03\x63\x1d\x7f\xbf\x4d\xa6\x4c\x9b\xb8\x80\x60\xd8\xc8\x64\xa9\xa8\x8d\x09\x0a\x51\xb0\x6d\xb5\xfc\x5b\x1b\xda\xa5\xbf\xbb\x31\xdc\x33\xba\x06\x66\x96\x9f\xfa\xd4\xa7\xc4\x8f\x7f\xfc\x63\xf9\xda\x6b\xaf\x01\x80\xcd\x79\x68\x82\x10\xaa\x89\xd8\x44\xea\xb8\x28\x00\x8c\x13\x6f\xa8\xd5\x3e\xd4\x93\xd5\x9a\xb4\xfa\x7b\xc9\xcc\xf2\xdd\x77\xdf\xc5\xeb\xaf\xbf\x3e\x90\x33\xfd\xe1\x0f\x7f\x88\xf5\xf5\x75\xf9\xb5\xaf\x7d\x0d\x9e\xe7\x69\x02\x12\xa9\x36\xb5\x14\xb1\x08\xac\x6d\x7b\xcd\x71\x68\x3d\x4d\x44\x44\x21\xa5\xd7\x51\x46\xcc\x2c\xc3\x30\xcc\x33\xc3\x47\x4e\x1b\x72\x7f\x5d\x67\xc5\x76\xc8\xac\x8a\x59\xa2\x91\xe8\x39\xc0\x59\x5c\xea\x0f\x59\x44\xd6\xe3\xc9\x9a\x0d\xb6\xd6\x3e\xc3\x0a\x03\x60\xb0\x64\x82\x4d\x65\x93\x7c\xd9\x83\x40\x79\x4a\xc8\x3c\x85\x63\x1e\x60\x06\x7d\x5b\x14\x6e\xa6\x4c\x2d\xd2\x7b\xe4\xe9\x50\x0a\xbf\x19\x19\x19\x01\x2c\x1d\x00\x00\x3f\xe8\xf0\x56\x30\x84\xad\x77\xd0\x2a\x4a\xc3\x45\x50\x02\x51\x76\x46\x43\xaf\xb2\x86\x4b\xb0\x95\x97\xd0\xf3\x2a\xab\xdf\x20\xab\x7c\x3b\x24\x12\xa6\xfa\xd6\x10\x93\x74\x3a\xa7\x04\x26\x5b\x92\xce\x52\xea\xf0\x16\x92\xa8\x90\x97\x78\xbc\xd2\xb9\xce\x9c\x39\x23\xef\xbe\xfb\x6e\x31\x32\x32\xa2\xc7\xd8\x07\x10\x94\x24\xd5\xa6\x56\xcb\x1f\xf2\x12\x4f\x59\x7d\x38\xa6\xcd\x4d\xfa\x44\x26\x28\x82\x6a\x7f\x64\x11\x3c\x02\x50\x0d\xbd\x99\xad\xab\xc1\x9d\x37\x86\x7b\x73\x48\xe4\xfd\x88\x88\x64\xa9\x54\x92\x9e\xe7\x89\x28\x8a\xf0\xca\x2b\xaf\x48\x22\x12\x7b\xf6\xec\x31\x97\x37\xab\x95\xdc\x47\xb2\x92\xeb\x55\x3e\x73\x5b\x80\xb5\xda\xbb\x7f\x92\x88\xa2\x76\xbb\x0d\xcb\x9f\x4c\xde\x82\x62\xd2\xd4\x45\xea\x78\xe3\x8d\x37\x70\xcf\x3d\xf7\xc8\x91\x91\x11\xbd\x98\x46\x94\xf8\xcf\x30\xa2\x9d\x5b\x96\xb5\xf0\x46\x76\xd9\xe7\xcf\x9f\xc7\x89\x13\x27\xb0\xb0\xb0\x50\x44\x18\xe0\x3c\xf7\xcd\x1f\xdf\x89\x74\x59\x6b\xcd\x6d\x20\x3b\x79\x05\x32\xce\x45\x00\x4b\x47\x91\x55\x48\x29\x40\xaa\x6f\x6d\xb6\x32\x2d\xcf\x5e\x1d\xb5\x68\x22\x29\x39\x0d\x6b\xb1\x89\x20\x22\x58\xdc\x46\x91\x18\x00\x2b\xfd\x5f\x92\x96\x07\x3c\x0c\x78\x1f\x24\xbe\xe4\xd5\xe7\xa6\xe7\x12\x20\xe5\x50\x46\xa7\x27\x77\xf3\x86\x3c\x0e\xa4\x4e\x86\x53\xa2\x4b\x16\xbc\x2d\xfb\x4d\x9b\x05\x4c\xb7\xb4\x4c\x1d\xc4\x94\x7b\xac\x22\x29\x99\xad\xb2\xac\x22\xf4\xa1\x36\x43\xec\x55\xbe\xcc\x1d\x1f\xba\x10\x5b\xf4\xd1\x63\xcb\xf0\x7b\x3c\x26\x62\xae\xc8\x52\xea\x83\x42\xfd\xca\x7d\xfb\xf6\x25\xf5\xa5\xfe\x5e\x2a\xc3\xa1\x37\xbe\xa1\xe5\xef\x25\xb5\x8b\x62\xda\x6f\xf0\x4a\x8b\x4c\x40\xa6\x27\xae\x52\xde\x2c\x56\x69\xbc\x27\x51\xdd\xdc\x0c\x7e\xe3\x24\xaf\xbf\x8e\xf4\xf2\x75\x4c\x4d\x4d\x61\x72\x72\x12\xd7\xae\x5d\x93\x00\xf0\xf2\xcb\x2f\xcb\x2b\x57\xae\x88\x07\x1f\x7c\x50\x06\x41\x60\x70\x44\x11\x07\xdd\xfe\x22\x45\xb8\x9e\xb4\x00\x20\xa5\x94\xf2\xd9\x67\x9f\x95\x8e\x1e\x2b\x4f\x45\xe0\x72\xfe\x38\x79\xf2\xa4\x3c\x77\xee\x9c\x68\xb5\x5a\xf2\x8f\xff\xf8\x8f\x51\xad\x56\x33\xdc\xa9\xd9\x45\xcb\xfe\x4a\x6b\xee\xca\x56\xab\x85\xef\x7c\xe7\x3b\x45\x2a\x89\x9b\xcd\xab\x0c\xbe\xfa\x83\x12\x75\xc8\xac\x46\xc9\x40\x09\xc1\x64\x58\x33\x17\xf9\xc8\xc1\x5a\x83\x64\x9a\xa5\x26\x18\x84\xcb\xae\xa0\x50\x22\x0c\x24\xab\x36\x58\x1c\x87\xb4\x38\x8e\x41\x0a\xd0\xa2\x49\x3a\x48\xcc\xd0\xdf\xdd\x4c\x9c\x41\x4e\xfa\xad\x22\x41\x51\x39\x7d\xf9\x2c\x78\x0b\x00\xbe\x88\xb9\x6a\xa6\xab\xb6\xb3\x30\xcf\xc8\x1a\x79\x9a\x49\x6b\x89\x1b\x7a\xd2\xeb\x93\xae\x19\xc2\xe2\xe4\x57\xf5\x68\xb2\xa2\x4d\xcf\x93\x54\x36\xac\xbf\x19\x35\x7b\xdb\x17\xe9\x18\xa6\x9c\x86\xc5\xed\x48\xae\x10\x1b\xb6\xde\x1c\x4a\xb3\xae\xa7\x34\x96\xb2\x00\x7c\x3f\x16\xf5\x20\x16\x75\xd8\x75\x69\xee\xc2\x3a\x33\x62\x38\xa1\xcc\x69\x5f\xca\xfe\x30\x92\x6d\x69\x26\xe5\x01\x1c\xa2\xd6\xf5\xb6\x0b\x46\x45\x0a\xb2\xdb\xd4\x37\x86\xa7\x4f\x9f\xc6\xf2\xf2\x32\xee\xb9\xe7\x1e\x4c\x4f\x4f\xcb\x52\xa9\x64\x4f\x5a\x23\xc6\x3b\x3a\x38\x69\x89\x0d\x58\x5b\x5b\xc3\xd1\xa3\x47\x01\x00\xcb\xcb\xcb\xb7\xba\x38\x65\x42\xab\xd5\x02\x12\xdd\x07\xba\xdd\xae\x04\x20\xff\xe4\x4f\xfe\x44\x78\x9e\x67\x9c\x24\x59\xe2\x12\xe2\x38\x86\x94\x12\x17\x2f\x5e\xc4\xcb\x2f\xbf\x5c\xb4\xe0\x15\x71\xc5\x83\xda\xd4\xa7\xe3\xb8\xd9\x2a\x9e\xa4\x31\x04\x25\x0e\x5d\x93\xc6\xa6\x6b\x8b\x0a\xe9\xa0\x26\xb8\x4b\x36\x2e\x9a\xf4\x8c\x81\x98\xd9\x88\x4f\xb2\x32\xa5\x62\x8a\x6b\x48\xd6\xd7\x9e\xfe\xdf\x3e\x1d\x8d\x13\x7f\x33\x0e\x02\xe8\x87\xc5\xcd\x58\xba\x3c\xe0\xe7\xd5\x69\xc3\x3a\x03\xe7\x5d\xbb\x76\xb9\xc4\x2e\x81\xb5\xe4\x4a\xba\x73\xa0\xfe\xb3\x45\xa0\x35\x71\x80\x7d\x59\xb7\x9a\xd0\x66\xf2\xaa\xfc\xfa\xc8\x37\xd9\xf0\x67\x67\xac\x32\xd4\x01\x5a\x14\xb2\x79\xfd\x54\xb7\x62\xad\xee\x46\x21\x6a\xb3\x33\x96\x87\x7b\x89\x80\xd8\xac\xee\x06\xe6\xcf\x3c\xf3\x8c\x7b\xb7\xad\x00\xe0\xfb\x12\x55\x4f\x92\xb6\x84\xca\x96\x6f\x35\xd0\xd0\x0a\x13\x28\x7d\xb7\xf4\x20\xb6\x7a\x98\xc1\xf0\x63\xaa\x0a\x46\x10\xa7\x62\x21\x00\x68\x6e\x23\x83\x47\xd7\xaf\x5f\x17\x2f\xbd\xf4\x92\xce\x22\x1f\x79\xe4\x11\xdc\x71\xc7\x1d\xaa\x69\x59\xab\x66\x0d\xd7\x9c\xbb\x76\x8b\x74\x5d\x79\xab\xbb\x8b\x63\x26\x4d\x11\x0d\x00\x10\xca\x93\x3c\xee\xbb\xef\x3e\x71\xec\xd8\x31\x93\xef\xbe\xfb\xee\x13\xe7\xcf\x9f\xc7\xea\xea\xea\xad\xe8\xdb\x6e\x36\x37\xfa\xde\x8b\xec\x38\xdc\xc6\xe7\xb3\xe0\x9a\xfd\xb3\x29\xbd\xf6\x23\x4a\xe9\x2a\x94\x19\x3c\xeb\x1c\x43\x86\x57\x31\x04\xc4\x24\xbb\x4e\x64\x41\x44\x5a\x39\xea\x76\xea\x66\x3a\x0d\x37\xb8\xfa\x10\xa0\x38\xbf\x4b\x7c\xdc\x50\x44\x70\x06\xe5\x71\xf3\x16\x8a\x86\x20\x80\x05\x45\x66\x52\xab\x60\x6f\xcb\x26\x13\x3b\x99\xd4\xda\x54\x3c\x9d\xe4\x69\x39\x3a\x2e\x65\xf5\x53\xa2\x61\x9e\x13\x36\x50\x15\xed\x28\xb1\x8c\x0d\x89\xce\xa2\x97\x74\x4e\xb9\x47\x9b\x18\x29\xf6\xd1\x14\x27\x10\x69\x83\x4e\x7b\x4c\x73\x88\x06\x00\xf8\x92\x20\x94\xc8\x6a\x57\x0a\x8b\x16\x5a\x7a\xd0\x2c\xc7\x53\x68\x43\x64\xc5\x45\x1e\x47\x92\x12\x22\x65\x29\xff\xf1\xe4\x93\x4f\x8a\x17\x5f\x7c\xd1\x6e\x0b\xe0\xe0\xd8\xab\xaf\xbe\x2a\xb5\x72\xf1\xb6\xdb\x6e\x13\xe7\xce\x9d\x93\x1f\xfa\xd0\x87\xc4\x9b\x6f\xbe\x29\x85\x10\x42\x1f\xb7\x2d\x08\x83\x26\x73\x51\x9a\x1b\x9f\x89\xb3\x89\x06\x00\x4d\x44\x8a\x16\xab\xbc\x72\x8a\x74\x1b\x76\x9b\x4c\x5e\x97\x28\xb8\x93\xc9\x20\xb2\xfe\x03\x00\x58\xa2\x44\xf2\x6e\xab\xae\xd3\x1f\x15\x63\xad\x3e\xf6\xc2\x90\x55\x89\x93\xf3\x40\x9c\xb6\xcb\xae\xbf\x60\x47\x45\xff\xba\x5c\x93\x9b\xc7\x8e\x97\x28\x26\x16\x45\x80\x73\x83\x5b\x86\x5d\x77\x5e\xfd\x79\x83\x9f\x41\x80\x7e\x7d\x12\x84\xf4\xa0\xec\x09\x34\x33\x90\xfa\x70\xd5\x8e\x65\x98\x93\x95\xdd\x8e\x4b\x05\x8a\xe4\x43\x56\xac\x5c\x92\x87\xad\xf2\x9c\x05\x5b\xa7\x69\x31\x34\x33\x76\xe9\x60\x1a\xae\xc3\xce\x64\x4d\x6e\xd8\xdf\x32\x83\x05\x85\x2c\xfa\x61\xf9\xcc\x33\xcf\x98\x38\x9b\xb3\xec\x79\x1c\x86\x3e\xb7\x9c\xa6\x65\x69\xa1\x79\xc8\x9e\x9c\xd1\x84\xc5\x7c\xe7\x56\x0a\xc8\xb5\x72\xbc\x22\x15\xc1\xb3\xeb\x7d\xf1\xc5\x17\x5d\xb1\x35\xef\xd9\x8c\xef\xb9\x73\xe7\x00\x00\x6f\xbe\xf9\xa6\x04\x80\xc1\x34\x23\x5f\x0c\xc9\xa9\xa7\x88\x73\x2e\xc2\x21\xb7\x2c\x37\xb8\x78\x7f\x2b\x62\x79\x11\x7e\x17\xb2\x28\x7d\x19\x6d\xc0\x32\x00\x49\x1c\xf5\x61\x87\x4e\xd4\x8f\x96\x7c\x99\x96\x63\x3d\xb8\xa3\xa9\xe9\x12\x27\x3a\x14\xbb\x6e\x67\x70\x8b\x00\x63\x03\x71\x10\x40\xdc\xbc\x6e\x3c\x9c\xdf\x3c\x56\x32\x2f\x7f\x1e\xe1\xcd\x2b\x33\xf7\xf9\xfc\xf9\xf3\x19\xd3\x7a\xad\xdb\x89\x02\xd1\xd4\xab\xab\x3d\x69\x88\x6c\x0e\x40\x09\x2a\x56\x9c\xb1\x20\x55\x94\x9c\x48\x73\x06\xfa\xcf\x3e\x6a\x6f\xa9\x37\x75\x9a\x33\x3e\x94\x52\x01\x55\xa7\x15\x6f\x44\x03\xce\xcf\x0b\x42\x54\xa2\x16\x0b\x32\x7e\x36\x75\xb0\x6e\x30\x33\x71\xcc\x2c\xd7\x83\xb8\xb5\x3c\xd4\x9b\xb3\x0f\xda\xe5\x31\x11\x7d\x29\xae\xa4\x95\xf3\x5d\x2c\x38\x5c\x18\x09\x2f\x80\xfa\x26\x92\x7b\x3d\x00\x90\x3f\x8e\x79\x5c\xae\x9d\xe6\xc6\xdb\xe5\xd8\x1c\x6f\x5e\x5d\x79\xef\xb7\x22\xca\x0c\x5a\xf0\x06\xb5\xd7\xce\xe3\xe6\xcd\x95\x38\x5c\x03\x30\xe1\xfc\x02\xc8\x8a\x0a\x49\x60\x48\x82\x84\x8d\xa0\x7d\xcb\x40\x3f\x17\x91\x09\x9c\x13\x9f\x16\x21\x08\xa9\xcb\xf8\x01\xfa\x0d\xbb\xad\xb9\x6c\x3f\xfa\x29\xeb\xad\xb2\x85\x79\x44\x75\x90\x48\x87\x01\x79\xf3\xca\x2c\x62\x41\x6d\xae\x43\x02\x90\x61\x85\xae\x83\x20\xc1\x2c\xd2\x15\xdf\xf6\xa6\xa6\x1f\x6c\xb1\x02\x19\xf6\x3d\xf1\xbd\x91\x4d\x83\xf9\xd4\x7e\x06\xec\x81\xc8\x04\x9b\xe8\x67\xda\x69\x69\xb9\xcc\x37\x8e\xd8\x43\x8c\xde\x10\x2d\x4a\x81\xbe\x23\x04\x5a\xc7\x61\xf7\x99\x88\xa2\x9e\xc7\xad\x2b\x63\xdd\xf7\x67\x96\x87\x1e\xf2\x24\x02\xbb\x69\x59\x80\x39\xf1\x85\x79\xd2\x8c\xeb\x81\x5c\x9c\xab\x77\x2f\xc2\xda\x2a\xd5\x59\x95\x07\x2c\xa0\x1f\x77\x50\x10\x2f\x77\xee\xdc\x29\x00\xe8\x73\x37\x6e\xde\xbc\x71\xbe\xd9\x64\xcf\xc3\x13\xb7\x1c\xf9\xd0\x43\x0f\x89\xad\x5b\xb7\xe6\x12\x84\xef\x7f\xff\xfb\x12\x48\xbc\xc8\x29\xf1\x7e\x50\x1f\xdc\x36\xb8\xf5\x67\xd2\xf2\xb6\x63\x07\x72\x1e\x00\xa4\x3e\x26\x0c\x68\x1c\x4c\x09\x4a\x1f\xe5\x77\x07\x31\xa3\x24\xcd\x4f\x23\x26\xe1\x49\x73\xd3\x7a\x91\x7e\xc0\x6d\x9b\x2b\xc7\x15\xc9\x84\x79\xab\x85\x1b\x06\x51\x74\xf7\x5b\x37\xcd\x2e\xc3\xce\x93\x37\xb8\xb9\x44\xcc\x9e\x40\x00\x45\x61\x55\x2c\x49\x81\x8e\x17\xab\xcb\x81\x8c\x4d\x46\x86\x06\xa8\x8f\xad\x5f\xeb\x5c\x4b\x66\xd2\xb9\x66\xe2\x56\x79\x99\x41\xb3\x74\x1c\xa9\xd1\x95\x5e\xce\xb5\x6b\x04\xeb\x5b\xb6\xeb\x26\xeb\x7c\x4b\x92\x27\x1c\x12\xf3\xfa\x76\x74\xc0\xd1\xe5\x24\xef\x9a\xe3\xd2\x86\x52\xe1\xc5\x0d\x9d\x53\xfb\xae\x46\x73\xe3\xad\xd2\x8c\x69\x92\xd9\x61\x51\xb7\xc4\xab\x3e\xd8\x06\x85\x69\x50\xca\x64\x4a\xb9\x20\x09\x96\x57\x46\xbb\x27\x57\x2b\xb1\xbe\xfb\xd6\x1c\xa6\x74\x76\xee\xfa\xf0\x65\xf3\xe6\xcd\xb8\x76\xed\x9a\xfc\xdd\xdf\xfd\x5d\xb1\x61\xc3\x06\x94\x4a\x25\xb3\x8b\xa1\x7e\x05\x11\xa1\xdd\x6e\xa3\xd1\x68\xa0\xd1\x68\xe8\x1d\x0d\xbb\x4c\xfd\x0c\xdc\x1c\x37\xfa\x44\x85\x47\x1e\x79\x04\xd3\xd3\xd3\x62\x68\x68\xc8\xce\xaf\xdb\x20\x34\x1c\x95\xe7\x3e\xc9\xcc\x58\x58\x58\x10\x6f\xbe\xf9\x26\xae\x5e\xbd\x2a\x38\xf5\xb7\x51\xb4\xf0\x16\xf5\xdf\xb4\xc5\x47\xfe\xc4\x73\x3b\x61\x37\x0c\x0c\x48\x49\x88\x5c\xdd\x99\xbd\xe2\xe5\x5a\x96\xdb\x84\x24\xef\x99\x4c\xa5\xbe\x2f\x45\xe0\x10\x1e\x01\x40\x16\x58\x8e\xe6\x01\xa1\x08\x30\x79\x5c\xc3\xcd\xb8\x95\x3c\xd8\x14\x11\x2c\x20\x87\x18\xe4\xb4\x35\xf7\xd9\xe5\x36\x00\x8e\xc2\x21\xb1\x12\x05\xb4\x20\xda\x3c\xe3\x82\xd1\x3e\x32\x9f\x8c\x45\xd6\xb0\x4e\xef\x20\xa4\xa2\x03\x1c\x4e\xc4\xe5\xe8\x9c\xe3\xe1\x49\x54\x76\x42\x6a\x8e\x43\x4d\xc6\x2c\xc3\x93\xd6\x9e\x2a\x61\x01\x29\x10\xb6\x47\xbc\x4b\x70\x0c\xfb\x14\x12\xe3\xc2\x85\x0b\x98\x99\x99\xd1\xc4\xc3\x38\xd3\x59\x19\x8a\xe6\x4e\x6d\x5a\x7f\xfd\xc3\x17\x47\xa7\x7c\xa6\x20\xcb\x11\xa5\x5e\x43\x88\x28\xbd\x34\xc9\xea\xb3\x6d\x3b\xa4\x4d\x01\xd6\xca\xf1\xc2\xc9\xad\xeb\xbf\x88\x84\x6c\x12\x8c\x73\x21\x09\x00\xca\x27\x87\x3d\x56\x3a\xc8\x27\x9e\x78\x42\x6c\xdb\xb6\x0d\x9e\xe7\x99\xed\x64\x20\x63\x31\x6a\x7e\x87\x86\x86\x64\xa5\x52\xc1\xe6\xcd\x9b\xe5\xee\xdd\xbb\xc5\xd2\xd2\x12\x7e\xf0\x83\x1f\xc8\x4a\xa5\x22\xd4\x49\xd4\x22\xce\xc4\x7e\xce\x4c\xd8\x47\x1e\x79\x44\xcc\xcc\xcc\x20\x08\x02\x50\xce\x5d\x2c\x8a\x68\xe8\x36\x18\x03\x30\x22\x92\x9b\x37\x6f\xc6\x67\x3f\xfb\x59\x79\xf5\xea\x55\xbc\xf5\xd6\x5b\x62\x7e\x7e\x1e\xca\xff\x86\xdd\xd7\xa2\x85\xb7\xef\xdd\x47\xfe\xa4\xe8\x0b\x19\xa5\x1d\x41\x46\x1e\x77\x32\x6c\xa9\x31\x04\xca\xda\x6c\x68\x3b\x0f\x57\xcb\xcd\xea\xbf\x61\x6f\xd9\x22\x3f\x92\x82\x20\xa6\x8a\x06\xa4\x3d\x20\x8a\x68\x0c\x12\x27\xdc\x67\xb7\xf3\x83\xd2\xec\x6f\x6f\x55\xf6\xcc\x4b\x73\xd9\xbb\xbc\xb4\xdc\xb2\xd6\xd6\xd6\x50\xaf\xd7\x13\x6e\x4e\x99\x0d\xc7\x3e\x5a\xed\xba\x77\x2e\x68\xf3\x0c\xc0\x16\x6c\xe1\x88\x0f\x7a\x1c\x52\x1d\x44\x0a\x55\xbd\xf2\xea\x23\xef\xd6\x37\x49\x6e\x18\xbf\xa3\x56\xc3\x52\x0e\x5f\x4d\x51\x6b\x12\x92\x26\x40\x96\x32\x84\xb4\x52\xd5\x2c\x1e\x49\xa9\x51\x89\x96\x3a\x35\x31\xcf\x40\x48\xca\x4a\x53\xc1\x02\x7b\xf6\xec\x11\xc7\x8e\x1d\xc3\xcc\xcc\x8c\x86\x4f\x84\xe4\x3c\x46\x4b\x12\x1a\xef\x6d\x6e\xfd\x7a\xdb\x6a\xe5\xee\xe9\xe5\xf2\x7d\x5a\x9f\x92\xf1\x1c\x6e\x11\x12\x43\x28\x1c\x3b\x21\x0d\x88\x9e\xe0\xce\xbb\x5b\xd6\xff\x69\x7e\xa4\x7b\x0e\xe9\xd1\x72\xe3\x73\x73\x7e\x7e\x3e\x33\x1e\x00\xe4\xe3\x8f\x3f\x2e\x66\x66\xec\xb8\x5a\x31\x00\x00\x20\x00\x49\x44\x41\x54\x66\x0c\x47\x61\x8d\x6d\x6a\x31\xca\x10\xd6\x6e\x95\x11\xb7\x54\x7f\xe4\xc4\xc4\x84\x3c\x74\xe8\x90\x58\x00\x31\x40\xce\xbf\x58\x58\xc0\x4b\x2f\xbd\x84\x46\xa3\x31\x88\x23\xed\x0b\x4f\x3f\xfd\xb4\xf0\x7d\x5f\x73\x14\xba\x6e\x9f\x40\xbe\x1f\x93\xef\x4b\x11\x04\x11\xf9\x82\x49\x44\x1e\x47\xa1\x27\xc3\x9e\xc7\x91\x84\xb9\xfe\x20\x22\xa2\x68\x6a\x6a\x0a\x5b\xb7\x6e\x95\xef\xbc\xf3\x0e\x5e\x7f\xfd\x75\x5d\x7c\xde\x82\x97\xd7\x3e\xf3\x7b\xb3\xd3\xb1\x12\x30\x7e\x21\x34\x22\xcb\x98\x10\x75\x7c\xd9\xd2\x23\x98\x9a\x31\x27\x68\x97\x21\x18\xb0\x28\x3e\x58\x59\x2d\xea\xd5\x20\xbb\x94\xe9\x95\x43\x00\x7e\xa5\x27\x86\x75\xdd\x36\x25\xcd\x6b\x1f\xb2\x93\x3e\x6f\x45\x2f\x1a\xa4\x3c\x56\x70\x90\x18\x52\x94\x56\x54\x6e\x1e\x07\x53\x44\xc0\x24\x00\xa1\x57\x3c\x4e\x1d\xd6\x86\x20\x74\x9a\x13\xde\xfb\xf5\x85\xe8\xe3\x90\xe4\xc3\x12\x1b\xd8\xa2\x0e\x86\xcb\x66\xb2\x56\x61\x45\x1a\x8c\xe8\xe2\xdc\x0b\x6b\x3f\x9b\x34\xc5\xab\xe8\xe1\xb1\x76\xcd\xec\x15\x3e\xbb\xaa\x6b\xf2\xe4\x9a\xc1\x27\xa1\x33\x22\xce\x85\x43\xb4\x82\xf4\x90\x95\x11\x57\xe2\x38\xc6\xc2\xc2\x82\xbc\x78\xf1\xa2\x50\x7e\x56\x25\x2c\xef\x57\x6b\xe5\xf8\xf2\x2f\x76\xad\xbc\x38\x14\x8e\x8f\x6d\x5c\x2f\xcd\x64\x8d\x0e\x1d\xc3\xb5\x2c\xb5\x4c\x73\x11\x10\x13\xa2\x53\x9b\x5a\xbf\x3a\xb6\xad\xf9\xcf\x52\x60\x89\x40\x4d\x4e\x5c\x04\x1a\x67\xd8\xe7\xcf\x9f\xd7\xf5\x03\x00\xbe\xf4\xa5\x2f\x89\xb1\xb1\x31\x3d\xa6\x9a\x50\xf8\x82\x29\x28\x47\xa2\x52\xef\x78\xf5\x91\x8e\x5f\x2f\xc7\x54\x11\x92\x44\x2b\x90\xad\xf5\x20\x6e\x34\x2a\x51\xb3\xe3\xcb\x16\x13\xf4\xb9\x92\x08\x80\xdc\xb4\x69\x93\xfc\xf2\x97\xbf\x8c\x57\x5e\x79\x05\xa7\x4f\x9f\xbe\x19\x97\x21\x00\xc8\xaf\x7d\xed\x6b\x42\x39\x35\x12\x50\x57\x43\x12\xa3\x32\xd2\xf1\xea\xdb\x56\xcb\xd3\xd3\x2b\x95\x07\xea\x6d\x7f\x4f\xb5\x27\x36\x09\x49\x41\xcf\x97\xcd\xd5\x4a\x74\xf6\x6a\x3d\x7c\xf3\xf2\x58\xf7\xec\xe2\x70\x6f\x31\xf2\x8c\x53\xe2\x88\x88\xa2\x7d\xfb\xf6\xc9\x7a\xbd\x2e\xde\x7a\xeb\x2d\x63\x25\x5b\x10\x5c\x35\x86\x04\x52\x51\x65\xa0\x3c\xa3\x80\x9a\x5a\xc2\x01\x32\xf4\x65\x8b\x01\x99\xcc\xf3\x14\x71\x12\x7c\xb6\x58\x5c\x4b\x3e\xce\x2a\xcf\xac\x31\x56\xd4\x45\xaf\x84\x04\x60\xa8\xe7\xd5\x34\x50\x6d\x8e\xc3\xe9\x8c\x1d\xf2\x06\xc0\xed\xd3\xcd\xa8\x7c\x11\x95\x45\x4e\x7c\x9e\x38\x93\xd7\x36\x97\x33\x19\xc8\xf5\xfc\xcd\xdf\xfc\x0d\xbe\xf1\x8d\x6f\xe8\x72\x12\xa4\x63\xee\xac\x4d\x78\xef\x45\x65\x5a\x2a\x75\x78\x93\x3d\x59\x13\x75\x82\xc5\xb9\x21\x6b\x5d\xaa\xf7\x4b\xb3\xe7\x4e\x2c\xdd\x87\x3d\x1e\xda\x8a\x54\x5d\xa5\x00\x20\xdd\x72\x85\x4d\xfc\xe1\x8c\x2d\x52\x5d\x47\x52\x3c\xcc\xb5\x09\x20\xb0\x80\x6c\x6c\xf2\x8f\xb1\x40\x93\xd2\x13\x9a\x92\x99\xe5\xea\xea\x2a\xce\x9d\x3b\x27\x01\xe0\xd8\xb1\x63\x98\x9e\x9e\xb6\x4f\x76\xb6\x00\x34\x40\x58\x5a\xa8\xf5\x4e\xbd\xb4\x77\xf9\xaf\x1e\xf9\x60\xec\x0b\x9b\x1b\xc1\x6e\x32\xed\xc9\xda\xbb\xda\xc1\x6e\x73\xcf\xe3\xce\x7b\x9b\x5b\xbf\xfa\xf5\xce\xd5\x7f\xe8\x96\x12\xd7\x79\x9c\x9c\x58\x35\xee\x29\x17\x17\x17\x8d\x3f\xdb\x5a\xad\x86\xcf\x7e\xf6\xb3\xda\x37\x8a\x39\x93\x42\xa0\xca\x86\x75\x7f\x7c\xef\xf5\xea\xfe\x99\xa5\xca\xe3\xa3\x1d\x7f\x7f\x10\xd3\x14\x71\x72\x42\x55\x12\x37\x23\xc1\x0b\xab\x95\xe8\xd8\xc5\xf1\xce\xcf\xcf\x6c\x6c\x9f\xb8\x31\xdc\x5b\x94\xe0\x8e\x4d\x40\x1e\x7d\xf4\x51\x09\x40\x58\x57\x7d\xb8\xe2\x2e\x00\xc8\xaf\x7f\xfd\xeb\x42\xdd\x5a\xe8\x03\xf0\xc1\xa8\x54\x22\x51\xbf\xeb\x5a\x75\xff\x3d\x57\x6b\x4f\xd5\xdb\xfe\x83\x1e\xd3\x24\x01\x42\x2f\xe4\x4c\xc0\xc4\x7a\x80\x5d\x37\x86\x9a\xed\x92\x7c\xf7\xc2\x44\xfb\x7f\x1c\x9b\x6a\xfe\xec\x7a\xad\xb7\x80\xe4\x34\x70\x07\x40\x34\x3d\x3d\x2d\x37\x6e\xdc\x88\xe7\x9f\x7f\x3e\x0f\x37\xf3\xf0\xda\xa4\xeb\xcb\x3c\xd9\xfa\x15\x76\xdc\x8e\x1d\x3b\x68\xf3\xe6\xcd\x00\x8c\x63\x95\x21\x22\x1a\xd9\xb8\x16\xec\x9e\x5e\xa9\x1c\x10\x20\x73\x21\xa8\x51\x55\x18\x1b\x68\xc5\x2e\x42\x8b\x31\x36\x91\x48\x57\x35\xcd\x9a\x98\x0b\xd3\x01\x5a\xaa\xf6\xde\xbd\x30\xde\x39\x4e\x44\x6b\x44\xd4\x65\xe6\x1e\x00\x79\xf4\xe8\x51\xdd\x46\xbb\xcd\xfa\x57\xa7\xd9\x93\xd7\x4d\x37\xcc\xbd\xd3\x6c\x76\xfe\xe0\xc4\xe7\x01\x96\x9c\x34\xb7\x6d\xf6\xba\x27\x9d\xbc\x64\xb5\xd3\xae\x13\x0f\x3c\xf0\x40\x02\x46\xe5\xe5\x1a\x44\x65\xe9\x53\xb9\xda\x90\x3b\x2a\x4d\xb9\x0b\xc6\x4a\x34\xf9\x34\xcb\x8e\x5b\x06\x57\xa6\x44\xb2\xf2\xa7\xcf\xc9\xb8\x64\x39\x10\xb2\xfe\x1b\xae\x41\x73\x14\x9a\x80\x6b\x02\x41\x9a\x40\x69\x91\x25\xfd\x35\x9c\x28\x31\x7a\x15\x71\xed\xea\x9e\xf2\xdf\xc4\x81\xb8\x82\xc4\x2f\x85\xf6\x47\x21\x9f\x7f\xfe\xf9\x58\xc3\x6c\x7d\x7d\x9d\x8e\x1e\x3d\xaa\x3d\xea\xdb\xb0\x21\x10\xb8\x19\xc4\x9d\x8b\x1b\x3a\xb3\xe5\x58\x94\x47\x3b\xa5\x09\x4f\x52\xc9\x35\x28\xcc\xa8\x40\xc0\x90\x00\x56\x86\xa2\xf9\x37\xa6\xd7\x7e\x72\x64\xc7\xda\xcf\xba\x25\xbe\xcc\xcc\xf3\x44\xb4\x48\xca\xa1\x0d\x33\xc7\x00\xe2\xef\x7c\xe7\x3b\x32\x8e\x63\xd2\x44\xa3\x5e\xaf\x03\xe9\xd5\x14\x65\x3f\xa6\xfa\xfd\x57\x46\x1e\x7c\xe4\xec\x86\xff\x74\xdb\xd2\xd0\xbf\xa9\x77\xbc\x8f\x96\xa4\xd8\x26\x18\x75\x01\xaa\x12\xa3\xe2\x41\xd4\x4b\x92\xb6\xd6\x42\xff\xfe\xa9\xd5\xf2\x67\x6f\x5b\x1a\xba\xaf\x1c\x79\x8d\xa5\xe1\xde\x8d\x9e\xc7\x31\x33\xb3\xd6\xa7\xec\xdc\xb9\x93\x8f\x1e\x3d\xaa\xf1\x02\x16\x6e\x61\xc7\x8e\x1d\xf4\xe5\x2f\x7f\x59\xe3\x80\x8f\xe4\xb4\xf0\xf0\x44\xab\x34\xf5\xc9\xd3\x1b\x0e\xed\xbb\x5a\xfb\xcf\xc3\x3d\xef\x7e\x01\x1a\x26\x5b\x70\x23\x6d\x3f\x0c\x10\x28\x08\xa4\xd8\xb6\xb1\x59\xfa\xe4\xae\xa5\xa1\x7b\x42\x9f\xcf\x2d\xd6\x7a\xcb\xe6\x62\x0b\x22\x94\x4a\x25\xb9\x67\xcf\x1e\x3a\x79\xf2\x64\x16\xde\xfd\x73\x42\xb7\x4f\x02\xd6\xa4\x57\x91\x1a\x99\x8d\xf0\x6b\x13\x0e\x05\xc4\x0a\x80\x91\x89\x56\x69\x66\xe7\x72\xe5\x43\x1e\x53\x29\x83\x74\x9a\x2f\xb6\xa6\xa7\x7b\xa0\x2a\x59\xc1\x5c\x4d\xbf\x55\x29\x80\x66\x39\xbe\x74\x76\x63\xfb\x0d\x10\x9a\x48\xbc\x30\xc5\x44\xc4\xd7\xaf\x5f\xc7\xea\xea\xaa\xfe\xd2\x9e\xb8\x46\x32\x72\xe2\xdc\x7c\x40\x76\xe2\xda\x84\x52\x38\x79\x75\x7a\x1e\x71\xc9\xe3\xd2\xec\x7c\xb0\xea\xe0\x9c\x74\x3b\x9f\x21\x36\xa3\xa3\xa3\x62\x66\x66\x46\x1f\x76\x23\x4a\xce\x6d\x94\x00\xaa\x48\x9f\x44\xfd\x7a\x74\xaf\x27\xa9\x0c\xd2\x27\x8e\x1d\x16\x0e\xf6\xab\xb6\x7f\x81\x91\xf7\xcd\xc1\x30\x4a\xc7\x28\x63\x27\xa3\xf2\x6b\xbb\x90\x94\x38\xa4\x4a\xaa\x8c\x6a\xd5\x10\x2b\x23\xdf\x3b\x96\xaf\x24\x97\xb7\x95\x5e\x5e\x99\xf2\x7f\xc5\xc0\x75\x24\x4e\x72\x5b\x94\x5c\x07\x10\x1f\x39\x72\x24\x03\x93\xa9\xa9\x29\xba\xfd\xf6\xdb\x39\x59\x64\x1d\x62\x4e\x88\x43\x8f\xbb\xe7\xc7\x3b\x17\xaf\x8e\x86\x57\x98\x48\xfa\x92\x4a\x1e\x93\x47\xe9\xd8\x41\x12\xa2\xae\x2f\x3b\xd7\x87\x7b\x57\xde\x9e\x6a\xbe\xfe\xda\xed\xab\x3f\xbc\xb4\xa1\x7b\x5c\x0a\xcc\x01\x98\x27\xa2\x45\x00\xab\x00\xda\x50\xbe\x31\x96\x96\x96\xf0\xde\x7b\xef\xf1\xc8\xc8\x08\x3d\xf9\xe4\x93\x18\x1d\x1d\x05\xa5\x57\x31\x54\x87\x42\x31\xfe\xf8\xe9\xf1\xa7\xf7\x5d\x1d\xfe\xcf\x43\x91\xb8\x47\x80\x02\x7b\xb2\xea\xbe\x27\x98\x64\x16\x4c\x3f\x88\x69\xe7\xd6\x46\xf9\x93\x9b\xd7\x82\x91\x6b\x23\xe1\x99\x4e\xc0\x21\x00\x66\xe6\x98\x88\x70\xe0\xc0\x01\x9c\x3f\x7f\x9e\x3a\x9d\x8e\xbd\xa8\xc9\xdf\xff\xfd\xdf\x37\x44\x83\x93\xfb\x63\x6a\x5b\xd7\xca\x3b\x3f\x79\x66\xc3\x7f\x9c\x5a\x2d\xff\xb1\x07\xaa\xd9\xdb\xe7\xb6\xb8\x68\x56\x60\xcd\x19\x82\x44\x10\xd3\xce\x1d\x2b\x95\x87\x05\xd3\xdc\xd5\xd1\xf0\x2a\x13\x24\x11\xc5\x00\x64\x10\x04\x5c\xaf\xd7\xe9\xc2\x85\x0b\x7a\xae\xb8\xc4\xcc\xc5\x59\xce\x73\xe4\xd3\xa7\x1c\x74\xac\x19\x25\x80\x28\xf4\x64\x5b\x1d\x7d\x57\x99\xac\x6e\x5b\x21\xa1\x6d\x29\xd2\x19\xce\x83\xb2\x79\x2c\xff\xbb\x60\x00\xb5\xd0\x9b\x14\x0c\x3f\xa6\xec\x81\xa8\x03\x07\x0e\x20\xc7\xe4\x5c\x87\x22\xdd\x05\x9c\xbc\x45\x0a\xd0\xa2\xf4\x9b\x29\x4c\x07\x95\x37\xa8\xde\xbe\xb4\xd5\xd5\x55\x34\x1a\x0d\xed\x77\x54\xcb\xfa\x1d\x10\x9a\xeb\x1b\xbc\x33\xcd\x71\xff\xe4\xe8\xb5\xe8\xc1\xbc\x8d\xc7\x41\x41\x2b\x2a\x6f\x92\xcb\x7a\xb6\x88\x7f\x1e\xff\x64\xe2\x53\x6e\xc7\x28\x5e\xd5\x7f\x06\xd0\x2b\xd3\xe2\xd2\xb6\xd2\xaf\x41\xd4\x20\xe5\xd5\x1b\x8a\x5d\x6f\xb7\xdb\x98\x98\x98\x10\x37\x6e\xdc\x30\x45\xce\xcd\xcd\xe1\xcd\x37\xdf\xc4\x47\x3f\xfa\x51\xdb\xef\x44\x53\x25\x4b\x10\x22\x26\x74\xae\x8c\x76\x9b\x57\xeb\xdd\x0f\x86\x43\x6f\xe3\x86\x56\x69\x72\x38\x14\x63\x43\x91\x57\x89\x89\x65\xbb\x14\x37\xd7\xca\xf1\xca\x52\xb5\x77\x35\xf4\x79\x85\x81\x25\x10\x56\x98\x79\x91\x12\x6f\x5c\xc6\xc3\x38\x14\x9e\xbc\xfd\xf6\xdb\x00\x20\xd6\xd6\xd6\x64\xbd\x5e\x37\xab\x3c\x80\x6a\xb9\x27\xc6\x1e\x3d\xbb\xe1\xe9\xdb\x6e\x0c\xfd\x5b\xc1\xa8\x91\x75\xde\x47\xf7\xb3\x6f\x34\x12\xc4\x4f\x74\x76\x8c\xfa\xf6\x95\xf2\x9f\x3c\x7e\x6a\x7c\xfc\xa7\x77\x2c\xfd\x97\xa5\xe1\x68\x4e\xcd\xa7\x0e\x11\xc9\x8f\x7f\xfc\xe3\xf8\xc9\x4f\x7e\x22\xda\xed\x36\x00\xc8\x4f\x7f\xfa\xd3\x19\x9f\x2c\x44\x54\xad\x75\xbd\x4d\x1f\x3b\x3f\xfa\xef\x36\xad\x05\xbf\x23\x40\x81\x5b\xa7\xa3\xe7\xd6\xa7\x00\xac\xf6\x11\x4a\x31\x4d\xdf\x7f\x65\xe4\xcf\xba\xbe\x8c\x4e\x4c\x35\x5f\x91\x89\xf1\x1b\x88\x28\xdc\xb5\x6b\x97\x3c\x71\xe2\x04\x96\x96\x96\x0a\xf5\x6f\xd6\xbb\x28\xf2\xc7\x61\x26\xdd\xf1\xe3\xc7\xc5\x3d\xf7\xdc\x93\x34\x80\xcd\x51\x77\xd9\x0e\x64\x23\x12\x1c\x06\x31\x0c\x61\x60\xbd\x42\x59\xd0\xcb\x20\xb8\x45\x1c\x52\xd9\xc4\x46\xb3\x34\x6f\xa5\x27\xc6\xcb\x91\xa8\xac\x97\xe2\x8c\x6e\xe2\x6f\xff\xf6\x6f\xf3\x08\x5c\xd1\x0e\x4b\x91\xce\x66\x90\xf2\xb2\x28\xdd\x4d\xbb\xd5\xba\x6f\x96\xaf\xaf\xdc\xe3\xc7\x8f\x8b\xad\x5b\xb7\x6a\x99\x52\x7b\x93\x6a\xc6\x1e\x56\x16\xa7\x4b\xaf\x55\x57\xe3\xbd\x41\x9b\x27\x33\x04\x98\xb5\xe0\xa2\x44\x10\x68\x7d\x45\x0a\xd7\x84\x40\x67\x09\x42\x72\x95\x4a\xaa\x34\xd5\x3a\x2a\xcd\x6d\x64\x1c\xf9\xa4\x9f\x19\x51\x45\xbf\xb1\xad\x40\xd5\x17\x38\x09\x44\xcb\x53\xfe\xeb\xed\xba\x98\x45\x32\xf9\x5b\x6c\x39\xb2\x59\x5b\x5b\x83\x22\x1a\x19\x58\x9f\x38\x71\x42\x6e\xdb\xb6\x4d\x6c\xdf\xbe\x5d\x22\x71\x88\x93\x94\x9c\x7c\x97\x38\xd2\x01\x37\x62\x42\x7d\xad\x12\x2f\xac\x55\xe2\x0a\x18\x01\x21\xb9\xa4\x0a\x40\xc4\xe0\x0e\x52\xd7\x79\x0d\x02\x19\xb7\x7d\x94\x78\xe2\x32\xd7\x2f\xbe\xf6\xda\x6b\x38\x7d\xfa\xb4\xdc\xb9\x73\xa7\x78\xec\xb1\xc7\x04\x90\xdc\x56\x48\x44\x81\x90\xa8\x1f\xb8\x5c\x7b\xe2\xf6\xc5\xa1\xff\x29\x21\x1a\x50\x38\x6b\xe3\xab\xea\xaf\x5e\x60\x0d\xb8\x52\x32\x4a\xa0\xca\xe6\xb5\xe0\x77\x1e\x3a\x37\xb6\xf4\x93\x3b\x97\xfe\x9f\x8e\x2f\x13\x22\xc8\x8c\xcd\x9b\x37\x47\x33\x33\x33\x78\xef\xbd\xf7\x00\x00\xdb\xb7\x6f\xd7\xf8\xa0\xae\xfd\xa4\xfa\x87\x66\x47\xfe\xd5\xd6\xd5\xf2\xef\x08\x50\x00\xbb\x1e\xdb\xd6\x21\x45\x06\x25\x2e\xa6\xad\xd0\x4a\xeb\x72\x44\x33\x07\x2e\x8f\xfc\xbb\xc5\x5a\x6f\xfe\xd2\x68\xe7\xa4\x82\x69\xe4\xfb\xbe\x54\x44\xc3\x0e\x45\xfa\x3d\xa9\x6f\x72\xb3\xe9\x95\xcd\x56\x8b\x5e\xaf\x27\xd5\xf5\x08\x9a\xfa\x05\x00\x6a\x5e\x4c\x1b\xf6\x2c\x0e\x3d\x58\x8e\xbc\x51\xcd\x2e\x01\xa9\x75\xa2\x91\x79\x6d\x16\x2a\x83\x7f\x04\xdb\x10\xc9\x56\xc1\x27\xb2\x31\xc2\xd3\x1b\x5b\x2f\x75\x02\xbe\xa1\x06\xba\x47\x44\xf1\xae\x5d\xbb\xf0\xee\xbb\xef\xba\xfa\x0a\x57\x2e\xb3\xc5\x0a\x57\x94\xd0\x13\x56\xb3\x64\x40\xb6\xff\x76\xba\xfd\xeb\x96\x65\xa7\xbb\x71\x76\x7b\xf2\xca\x19\x94\x87\x84\x10\xb8\xfd\xf6\xdb\xf5\x5d\xa6\x44\x09\x00\x3d\x22\x2a\xf5\xca\x14\x95\xba\x5c\x1f\x5a\x93\xb7\x09\x7b\x15\x30\x62\x86\x42\x28\x05\x4f\x2d\xaa\x90\x71\xc0\x63\x35\x85\xac\xca\x2d\x7d\x05\x99\xef\x33\x64\x28\xcd\xc7\x48\xf5\x1c\x8a\xeb\x48\x3b\xa0\x74\x29\x44\x68\x8f\x8a\xb3\x57\xf7\x56\xfe\x36\x2a\xd1\x2c\x11\x5d\x87\x5a\xe9\x29\xeb\x6b\xd3\x2e\xde\x14\x33\x3b\x3b\x8b\x89\x89\x09\x8c\x8e\x8e\x32\x92\xc5\x2a\x56\x13\xbd\xa7\x88\x47\x47\xe1\xc5\x1a\x80\x35\x06\x37\x40\xb4\x02\xc2\x0d\x06\x2f\x01\xb8\x41\x44\x8b\x8a\xcb\x58\x42\xea\xf3\xb3\x8d\xe4\x3a\x80\x88\x99\xe5\x37\xbf\xf9\x4d\x79\xfd\xfa\x75\x02\xc0\x9f\xf8\xc4\x27\x48\x39\x52\xf2\x88\xa8\x02\xc6\xf0\x96\xb5\x60\xf7\x83\xe7\x47\xff\xd7\x4a\xe4\x4d\xf7\xe9\x86\x74\xa3\x6d\x71\x8d\x2d\x04\xb4\x69\x48\x92\xc7\xaf\x77\xbd\xdd\x6d\x5f\x9e\x9e\xaf\x87\x97\x41\xc6\x19\x37\x4f\x4d\x4d\xf1\xb1\x63\xc7\xe4\xe7\x3e\xf7\x39\xed\xd0\xc8\x43\xe2\x3e\x71\x64\x6b\x23\xd8\xfb\xe1\xd9\xfa\xbf\xaf\x44\x62\x5b\xb2\x2b\x49\xe6\x92\xa7\x74\x3c\x52\xd8\x93\x5b\xb1\xa5\x73\x22\x26\x94\x62\xda\x58\x89\xbc\x68\x76\xbc\x7b\x52\xed\xb6\xc4\x44\xc4\x07\x0e\x1c\xe0\x4e\xa7\x43\xd7\xaf\x5f\xd7\xe3\xa2\xc7\xa6\x6f\x4e\xd8\xda\x5c\x3b\x98\x2d\x18\x65\xec\xa2\xe3\x24\x33\x4b\x66\x8e\x7a\x3e\x77\xba\xbe\x5c\xd1\x44\x2f\x51\xd8\x59\x6d\x85\x8a\xcb\x9b\x2e\x26\x5f\x3f\x37\xa2\x0b\x29\xc5\x54\x1f\x0e\xbd\x31\xa8\x63\xd8\x7a\x4b\xd8\xf7\x0d\x93\x74\x33\x2e\xc0\xee\x8b\x1d\x37\xa8\xbf\x79\xcf\x79\xe5\xe6\x95\x95\xb7\x6d\xe5\xfe\xe5\x05\xb7\x0c\xb9\xb2\xb2\x82\x0f\x3e\xf8\x00\x48\xe0\x1d\x21\xdd\x9a\x6c\xb0\x47\x4b\x8b\x3b\x83\x7f\x5e\xdf\xe0\xbd\xaf\xc0\x0e\xfb\x00\xa2\x1e\x8b\x24\xa4\x71\xe6\xf0\x1b\x93\x39\xe0\x66\xf2\x53\xf6\xe0\x9b\x1d\xaf\xc5\x1b\x43\x4c\xe0\xf0\x86\x8a\x2b\xd1\x0b\x85\x1e\xc3\x5e\x99\x96\x16\x6e\x0b\x7e\x16\x0e\x89\xcb\x4a\x09\xd9\x44\xc2\x01\x44\x00\xe4\xe2\xe2\xa2\x0b\xef\x0c\xdc\xc3\x30\x94\x3f\xfa\xd1\x8f\xe4\xec\xec\x2c\x28\xb5\x43\xe8\x00\x68\x2a\x71\x63\x11\xc0\x02\x80\x39\x00\x97\x89\x68\x16\xc0\x05\x00\xb3\x44\x34\x4b\x44\x97\x01\xcc\x11\xf5\x5d\x07\x10\x02\x88\xe2\x38\x96\xcf\x3e\xfb\x6c\xa6\xee\x89\x89\x09\xa8\xb1\x4b\x9c\x44\x4b\xaa\xdf\x75\x6d\xf8\x53\xb5\xd0\xdb\x97\x9e\xf3\x49\x27\xa5\x21\x9c\x19\x3d\x13\x60\xf2\x3a\x03\x4d\x00\x3c\x49\x63\xf7\x5c\xad\x7d\xa5\xda\x13\x93\x48\x5d\x0f\x8a\x52\xa9\x84\x43\x87\x0e\x89\xad\x5b\xb7\x02\xc9\x46\x84\xd6\x27\xd6\xee\xbe\x36\xfc\xf8\x70\xd7\xdb\xad\x69\xbe\x21\xe0\x80\x31\x7a\x33\x36\x24\xa6\x36\x4e\x17\x10\x33\x21\x93\x0c\x02\xe4\x4f\xad\x06\x8f\x6d\x5b\x2d\xdf\x09\xa0\xaa\x98\x01\x41\x44\x78\xf7\xdd\x77\x8b\xe6\x4e\x06\x47\xf3\x64\x76\xe1\x3e\x6b\xfd\x02\x94\x98\x42\x44\x32\x12\xdc\x69\x97\x64\x23\xb5\x1a\xb4\xa0\x69\xd6\x10\x32\x7d\x30\xdd\xb1\xa1\x59\xf4\x9c\x00\xb8\x3a\xd6\xf6\x37\xc1\x72\xc2\xca\xcc\xa2\x5e\xaf\xe3\xf6\xdb\x6f\x77\x59\xff\xbc\x67\x3b\xf4\xc9\x68\x28\x0e\xb6\x08\x21\x0a\xde\x8b\xf4\x16\x79\xe2\x4f\xd1\x37\xee\x7b\x86\x40\x9d\x3c\x79\x12\xdd\x6e\xd7\x4c\x1a\x4e\x2e\x07\x6e\x30\xf3\x52\x38\x24\x66\xaf\xdd\x16\xfc\xa4\x5b\x15\xf3\x1a\x99\xb5\x02\xd3\xec\x52\x01\x8a\xf3\xd3\x07\xdf\x48\x2f\x3c\x86\x03\x01\xac\x61\xa3\xf4\x2f\x79\x4f\x18\x36\x6d\x6b\xa3\x4f\xde\x1a\xb1\x54\xc9\xf0\x29\x57\xa3\xc7\x9a\x21\x3d\xea\xdc\x98\x2e\xfd\x53\x63\xa3\xff\x16\x92\x6b\x01\x56\x90\xd5\x29\x48\xa5\x53\xc8\x83\x7b\x26\xee\x47\x3f\xfa\x91\x3c\x77\xee\x9c\x71\x5c\x83\x94\x88\x36\x55\xb9\x4b\x48\x89\x88\xfe\x5b\x54\x7f\xb6\x3e\xc3\x10\x8d\xb5\xb5\x35\xf9\xe6\x9b\x6f\xf6\xd5\xab\x9c\xe1\x18\x11\xa1\x16\x7a\x5b\x76\xac\x94\x1f\x25\x90\x60\x76\x10\x54\x13\xe5\x4c\x14\x67\xf4\x3e\x0a\x82\x99\xaf\x88\x09\xa3\x1d\xff\xc0\xf4\x72\xe5\x6e\x30\xaa\x40\xc6\x3f\x89\xdd\x26\x1f\x40\x65\x28\x14\x63\x5b\x1b\xc1\x83\x04\x04\x9a\x95\x67\xcd\x4b\x03\x29\xa7\x6e\xea\x86\x12\x1b\xb3\x93\x8b\x9c\xef\xca\x91\x98\xda\x75\xa3\xf2\x31\x3f\xa6\x1a\x14\xf1\x02\x20\x0e\x1d\x3a\x24\x46\x46\x46\xf2\x70\x18\x56\x5c\xdf\xb1\xfa\xdc\x55\x5b\x1f\x7b\x56\x93\x57\x32\x73\x14\x09\xee\xb4\x02\xb9\x62\x78\x32\x17\xa4\xc4\x59\xa8\x3a\x9c\x87\xbd\x05\xc8\x7d\x0f\x80\x60\x12\xe3\xad\xd2\x0e\xc1\x08\xc8\x39\xb3\xa2\x6e\xab\xcf\xd3\x4f\xb8\x7a\x03\xb7\xd3\x76\x70\x09\x03\x72\xf2\xb9\x9c\x82\xcb\x41\x14\xe9\x50\xec\x72\x5c\x8e\xa3\x88\xcb\xcb\xb4\xb3\xd1\x68\xe0\xcc\x99\x33\x46\x19\x8d\x04\xf1\xcd\x75\x80\xcd\x71\xef\x9d\xf9\x3d\xc1\x3f\xf6\xca\xb4\x64\x6b\x37\x52\x9f\xa3\x36\xf2\x10\xb2\x5c\x48\x2a\x16\xa6\x88\xad\xe5\x74\xa4\xdf\x68\xb1\x45\x97\xa4\x88\x92\x3e\x85\x6b\xd4\x27\xd6\x60\x4a\x8f\xc2\xa5\xed\xa5\xd7\x17\x77\x06\xaf\xb2\x48\x56\x7b\x66\x36\x97\xff\x00\x90\x0b\x0b\x0b\x38\x7b\xf6\xac\x8b\x98\x45\x1c\x19\x7e\xf6\xb3\x9f\xc9\x6f\x7f\xfb\xdb\xf2\xfc\xf9\xf3\x36\x2c\x43\x0d\x13\x4e\x1c\x07\x67\xfe\x98\xb9\x85\x94\x58\x85\x00\xa2\xf5\xf5\x75\xf9\xcc\x33\xcf\xc8\xef\x7e\xf7\xbb\xf2\xc4\x89\x13\x99\x3a\x9e\x7a\xea\x29\x9b\xc0\x07\x04\xaa\x6c\x6c\x96\x66\x46\xba\xde\x5e\xc0\x66\x2a\x52\x5d\x4e\x12\xcf\x69\x74\x46\xbf\xa1\xe0\x94\x61\x4f\x92\x5f\xc1\x54\x9d\x5e\xae\xfc\xa6\x60\xe8\x49\xab\xb9\x6a\x0d\x0b\x43\x38\x26\xd7\x4b\xd3\xb5\xae\x3f\x63\x97\x93\x59\x1c\x74\xe5\x44\x30\x16\xc3\x6e\x53\x73\xbe\x13\x20\x7f\xb2\x19\xec\xaf\xf4\xc4\x98\x6e\x83\xe6\xea\x95\x1b\xc7\x41\x74\x41\xba\x1e\xc0\xfa\x42\x1c\xc7\x50\xb7\x78\xeb\x02\x24\x11\x45\xb1\xe0\x70\xad\x1c\x2d\x31\x58\x12\x51\x7a\x73\x3a\x6b\x63\xa4\x2c\xfb\x66\xe4\xe5\xd4\xd5\x74\xa2\x4c\xd2\xc8\x69\x56\x30\xcd\x5a\x11\xc6\xda\xfe\x76\xc1\x54\x89\x59\x66\x0e\xbc\xdd\x71\xc7\x1d\xe2\xd4\xa9\x53\x79\x14\xd1\x7e\xce\xe3\x32\xf2\x90\x35\x8f\xab\x28\xca\x8f\x5b\xc8\x37\x28\x6f\xde\xbb\x1d\x32\xf1\xc7\x8e\x1d\xc3\x5d\x77\xdd\x05\xcf\xf3\x34\xf1\x68\x41\x6f\xcf\x09\xaa\xac\x6c\xf1\xdf\x14\x31\x57\xb6\x9e\x0e\x9f\xf4\x43\xd4\x13\xf8\x27\x08\xc4\xea\xd7\xdd\x7d\xc9\x68\x2c\x2c\x51\xd2\x3e\x6f\xa2\x39\x8d\x84\x58\xa4\x04\xc8\xfe\x9f\x5a\x0a\xb3\x91\xf7\x95\x32\xf4\x8d\x6b\xb7\x07\x3f\x8e\x4b\x74\x19\x6a\xd5\x77\x95\x91\x96\x82\xdb\x86\x9f\x0b\x9f\x3e\x7c\x7c\xe9\xa5\x97\x10\xc7\xb1\x04\x20\xbf\xfa\xd5\xaf\x8a\x72\xb9\xac\x17\xb4\x3e\x78\x6a\x7c\x8d\xa2\x08\x51\x14\xe1\xb9\xe7\x9e\x93\x95\x4a\x25\x8f\x50\xb9\xf5\x28\x53\x6e\x54\xc6\x5b\xfe\x4e\x21\xa9\x9a\x3d\x40\xe7\xa8\x45\x6d\x77\x8c\x56\x48\xb5\x43\x36\xac\x52\x72\xbe\xb1\x59\xba\x5b\x30\xd5\x24\x58\x7b\x28\xb7\xfb\xa1\xb9\x9e\x60\xb4\xe3\x6f\xf7\x63\x1a\x73\xfb\x97\x3d\x02\xe2\x08\x2a\xda\x3a\x9b\xac\xb8\x9c\x50\x0b\xbd\xe9\x91\xae\xb7\xa9\x59\x89\xe7\x80\xcc\xa1\x52\x17\x36\xee\x62\x27\x6c\xcb\x51\x3b\x43\x06\xd1\x8f\x1c\x39\x82\x03\x07\x0e\x68\x96\x34\x71\xbd\x4e\x14\x35\x2a\xf1\x42\x2c\x38\x24\x89\x4a\x4a\x11\x13\x84\x4c\x4d\x94\xf4\xea\x96\x52\x44\x1d\x97\xd5\xd6\xab\x73\x10\xd6\xd6\xed\x68\xdb\x9f\xae\x44\xa2\x1a\x95\xd9\xe7\xc4\xa5\x3e\x98\x59\x9c\x3a\x75\x4a\xdf\xfe\x65\xda\x88\xfc\xc9\x9f\xc7\x85\x14\x4d\xdc\x3c\x2e\xc6\x8d\x47\x4e\x5a\x1e\xdc\x06\xe9\x50\xf2\xea\xca\x9b\x2c\xa2\xd5\x6a\xc9\x9f\xfe\xf4\xa7\xe2\x89\x27\x9e\x30\xe6\xe7\x94\x5c\x1d\xe8\x03\xf0\x99\xe0\x2f\x6d\x2b\xfd\x42\x7a\x14\x4d\x9d\xea\x3e\x59\xea\xf0\xb8\x41\x4d\x82\xb1\xec\x4c\x50\x98\xcc\x21\x2f\x32\xc4\x05\x66\xb1\xb2\x68\x80\x2a\xc2\x1a\x3b\x43\x5c\x52\x6d\x7d\x3a\x59\x94\x8e\x43\x50\x74\x63\x47\xe9\xb5\xf9\xdd\xe5\x1f\xc7\x01\xcd\x32\xb3\x26\x1a\x4d\xb5\x2b\x14\x11\x91\x5c\x58\x58\x30\xfd\x2b\x80\x61\x11\xdc\x84\x22\x1a\x00\x20\x9e\x7b\xee\x39\x93\xfe\x87\x7f\xf8\x87\x78\xe1\x85\x17\xe4\xd7\xbf\xfe\x75\xf1\xec\xb3\xcf\x9a\x5f\xfb\x5b\x00\xe8\x74\x3a\x85\x44\xc9\xf7\x7d\x73\x0e\x85\x94\x49\x77\x35\xf4\xa6\x08\x64\xae\x39\x4d\x01\x91\x3e\x66\x39\x91\x14\x9f\x53\xc2\x92\x75\x8f\xa9\x9f\x83\x58\x8c\x7b\x92\xaa\x3d\x21\x0d\xc7\x01\x98\x43\x8e\x42\xe1\x7b\x30\xdc\xf5\x26\x04\xc3\xef\x2b\xdf\xde\x41\xd1\x1c\x25\xd9\xf5\xe7\x11\xad\xec\x42\xe2\xc7\x54\xab\x44\x62\x4c\xd9\x89\xe8\xab\x15\xb0\x65\xcb\x16\xf8\xbe\x8f\x28\x8a\x0c\xec\x5c\x58\xe6\xb1\xea\x6e\x30\x7a\x0e\xa4\x54\x27\x02\x10\x36\x2a\xd1\xf5\x48\x70\xcb\x20\x65\x5f\xb3\x35\x45\x64\x83\x64\x29\xc4\xd9\x6c\x7b\xe8\xee\x27\xdc\x86\x26\x34\x8c\x6a\xe8\x6d\x19\xe9\x78\xe3\x40\x56\x5c\xf9\x83\x3f\xf8\x83\x81\xac\xad\xdd\xee\x01\xf1\x79\x48\x94\xc7\x39\xe4\xc9\x79\x76\xde\xa2\xf4\x3c\x80\xdb\x7f\x83\xb8\x1f\xf3\x7e\xe5\xca\x15\xcc\xcf\xcf\xeb\xb3\x2b\x21\x92\x95\xbb\x09\x60\x89\x88\xe6\x21\x68\x6e\x65\xab\xff\xcb\x8b\xf7\x56\xbe\xd7\x1e\x15\x17\xcc\x6e\x0a\x34\xf7\xec\x18\x80\x19\x71\x46\xeb\x34\x28\x55\x6c\x1b\x76\x9a\x60\xaf\x90\x59\xa1\x1a\x29\xc1\x50\x4a\xd9\x28\x10\x8d\xab\x7b\xcb\x2f\x5e\xdd\x5b\xfe\x87\x38\xa0\x0b\x48\x8c\xac\x16\x94\x12\xb3\xa5\xda\x2d\x17\x16\x16\x60\xb9\xe4\xcb\x1b\xbf\x3c\xae\xad\x88\xc8\x1b\x78\xbd\xf0\xc2\x0b\x00\x60\x88\xc5\xb3\xcf\x3e\x9b\xf3\x49\xae\xae\x0a\x00\x70\xef\xbd\xf7\x0a\xed\xec\x57\xe1\xb9\x0f\xc0\xf7\x12\x33\x72\xd5\x65\x7b\xd2\x66\x54\x0a\x1a\x9a\xfd\x35\xea\xc5\x51\xeb\x17\xac\x89\x2d\x24\x2a\xbe\x44\xa0\x94\xa0\xa6\x2d\x8a\x68\x18\xef\xe9\x91\xc7\x42\x3b\xc4\xca\xd6\xa7\x9e\x5d\xf7\xed\x4e\x53\x6c\x83\x7c\x67\x99\x06\x01\x82\x12\x55\x80\xbe\xe7\x46\x00\xc0\xc6\x8d\x1b\x11\x45\x51\x9e\x62\xd4\xc0\x30\x6f\xe2\xe8\xdf\xdc\xc1\xd5\x87\xaf\x00\x44\xab\x95\x78\xa9\xe3\xcb\x86\xea\x70\xda\x21\x8b\xc9\xb0\x1b\xcf\xe6\x9f\x5e\x03\xad\x3e\x2a\xe9\x26\xfd\x8e\x10\x48\x1a\xdb\xd8\x2c\x6d\x57\x9e\xb1\x7d\x52\x17\xef\x06\x41\x60\xb7\xb7\x88\x80\xdc\x2c\x3e\xaf\x7f\x79\xc4\xc1\xae\xc7\x46\xe6\xa2\xbc\x79\x04\xc4\x8e\x73\xf5\x23\x76\xdd\x7d\xec\x73\x1c\xc7\xf2\xc5\x17\x5f\xc4\xb5\x6b\xd7\x80\x64\x45\x0a\x15\xeb\xdf\x00\xb0\xc8\xcc\xf3\x20\x9a\x5b\xdf\xe0\xbd\x75\xfe\xfe\xa1\x17\x96\x76\x94\x5e\x8f\x4b\xe8\x64\xd7\xa7\x6c\xb0\xb7\xcf\xa1\x1f\x73\x73\xb3\xc9\xa6\xb7\xd5\xd9\x26\x22\x82\xe4\xfa\xb8\x7f\xee\xe2\x7d\x95\x17\xae\xef\x2c\xbd\x2c\x3d\x9a\x05\x30\x8f\x54\x31\xd9\x84\xa5\x10\x3d\x71\xe2\x84\x46\x48\x37\x14\x89\x79\x79\x21\x8f\xe3\xb3\xd3\x8a\x44\x4b\x37\xbd\xef\x5d\x1b\x5d\x31\x33\x98\x20\x7a\x1e\x47\x46\x0b\xa4\xba\xcd\x86\x62\xa4\x13\x31\x65\x3a\xac\xa9\xcd\x16\xbe\xe7\x18\xde\x45\x1e\x77\x7a\x1e\x6b\x2e\x27\xd3\x37\x8b\x13\x17\x8d\x4a\xb4\x2a\x89\x43\x62\xb5\x05\xcb\x6e\x7d\x7a\x4f\xcb\x52\xd6\x32\xb2\x94\x46\xb5\x92\xed\x79\x08\x42\xa3\x12\xcd\x2d\x55\xa3\x95\xbe\xc6\x01\x18\x1a\x1a\x1a\x24\xaa\x0b\x17\xd0\x79\xab\xa4\xf4\x7d\x5f\x48\x29\x35\xd1\x30\x5b\x84\xa1\x27\x5b\xeb\xe5\x78\x11\x39\xa1\x50\xb2\x2a\x48\xa0\x9c\x74\x62\xf2\x27\xd7\x83\x3d\x82\x51\x81\xa5\x7d\x2e\x97\xcb\x76\xfb\x74\xb0\x89\x48\x1e\x31\x44\x41\x5e\x3b\x4f\x5e\x19\x83\xf2\xb9\x04\x20\x8f\x90\xc9\x01\xf1\xb7\xd4\x76\x29\xa5\xfc\xfb\xbf\xff\x7b\x29\xa5\xd4\xbb\x2c\xfa\x16\xaf\x06\x25\xe6\xd3\xf3\x20\x9a\xeb\x55\xc4\xa9\xcb\x77\x95\xff\xee\xe2\xfe\xca\x5f\x35\xc7\xbd\xb3\xb1\x4f\x61\x3f\xca\x02\x16\x23\xed\xbc\xa3\x0f\xd9\xb4\x7a\x4a\x23\x73\x62\x63\x43\xb2\x33\x4c\x0b\x57\xf7\x04\x3f\xb9\x70\x5f\xe5\x85\xe6\xb8\xf7\x16\x04\x5d\x06\x61\x0e\xc9\xae\xc6\x12\x2c\x2b\x51\x66\x96\xcf\x3c\xf3\x8c\xd4\x87\xd9\x54\x28\x82\x5b\x1e\xac\x8a\xe4\x6e\xe4\xc4\xbb\x63\x63\x87\x3c\x98\xcb\xe3\xc7\x8f\xdb\x0e\x7c\xcc\x22\xd8\x2a\xc5\x0d\x06\xa4\xd1\xf5\xe8\xc5\x8d\xb2\x0b\xbc\xf5\xa1\xf5\x0c\xb3\x2d\x6b\x27\xe9\x6a\x5a\x25\xb9\x22\xc9\x5c\x9a\xe4\xb6\x4f\xb7\x47\x36\x83\x78\xa5\xe7\x71\x2b\x21\xe0\x9a\x8f\x4c\xeb\x23\x8b\x3b\x54\xd5\xa6\xc4\xde\x21\x58\xe9\x69\xa5\x84\xaa\x5c\x1b\x09\xcf\x35\xcb\x71\x03\xf9\x30\xb7\xdb\xd4\x37\x56\x79\x8e\x7c\xfa\xe4\x7b\x25\xeb\x98\x38\x4d\x3c\x22\x8f\x5b\xab\x95\x78\x61\xdb\x2a\x90\xca\x5a\xc8\xe0\xa5\xed\x00\xdd\x51\x69\xa4\x97\xe4\xa4\x51\x26\xaf\x3e\xf1\x39\xb9\x5e\xda\x1d\x44\xa2\xd6\x2a\x99\xfb\x39\x6f\x49\xb1\x98\xd3\xe1\xa2\xfe\x15\xa5\xb9\x61\x50\x7a\x51\xdd\xb7\x12\x8a\x74\x2b\x7d\xe5\xbc\xfa\xea\xab\x78\xf8\xe1\x87\xa5\x92\xc7\x43\x67\x9b\x3c\x02\x21\x64\x8f\x3a\x8d\x4d\x7e\xb3\x35\xe6\xcd\x8e\x2c\xc6\x7b\x37\xcc\xf5\xf6\x57\x1b\xf1\xb4\xd7\x43\x05\xd2\xbe\xd4\xc9\x16\x8b\x53\x02\x92\xda\x0e\xa9\x15\x4c\x9d\x94\x65\x00\xd2\x43\xd8\x1d\x16\x8b\xab\x9b\xfd\x77\x57\xb7\xf8\x27\x3b\x55\x71\x09\x82\xf4\xd6\xe7\x92\xfa\xd3\x3b\x1b\x21\x33\x47\x52\x4a\xf9\xad\x6f\x7d\x2b\x4f\xff\x33\xa8\xdf\x45\x22\x9c\x0d\x17\x3b\x1d\x4e\xfa\xbf\xa8\xbc\x7b\xef\xbd\xd7\x70\x53\xd6\x44\x96\x0b\xb5\xf0\x52\xe4\x71\x2b\x88\xa8\x66\xc9\x7e\x0a\x47\x2d\xe4\xb5\xf4\x0b\xac\xd2\x92\x09\x6c\xe9\x44\x54\x5e\x22\x40\x82\xe5\xe9\x4d\xad\xc3\x91\x60\xc3\x8d\x39\xc7\x3a\x8c\x2e\xf1\xc6\x70\x6f\x71\x65\x28\x9a\x1d\x4a\xec\x3e\x8c\xe8\xd3\xbf\x00\x3b\x11\x79\x6e\x28\x2c\xb1\x26\x12\xb2\x75\xb5\x1e\x9e\x8d\x04\xdb\x8e\x8c\x24\x00\x9c\x3a\x75\x0a\xca\xd9\x50\x21\x7c\x6d\xcb\x51\x5d\xbb\x44\xff\x5c\x96\x47\x8f\x1e\xe5\x07\x1e\x78\x40\xe7\xf5\x01\x0c\x31\x61\x68\xac\xe3\x6f\xdf\xb1\x52\xbe\x57\x30\x89\xac\x25\x68\x3a\xf9\x75\x31\xa9\xf2\x33\x1d\x00\xb2\x6a\x21\xcd\x67\x51\x0a\x7c\x8f\x49\x9c\x9f\x68\xbf\xde\x0a\xe2\xeb\xac\xae\xea\x03\x20\xef\xb9\xe7\x1e\x1c\x3f\x7e\xdc\x1e\x16\x76\xfe\x74\x7f\x6c\x89\x28\xaf\x7f\x3a\xde\x1e\x0e\x69\xe5\x65\x2b\x7d\x90\x04\xe0\xe6\xa5\x82\x34\xe9\xa4\xeb\x38\xb7\x0f\xe4\x96\xb1\xb4\xb4\x44\xeb\xeb\xeb\xd8\xb6\x6d\x9b\x3e\x04\x26\x91\xbd\x62\xb0\x0b\xb5\xfd\x28\x3d\x5a\xef\x8c\x88\x85\xc6\xc6\xd2\x85\xf5\x71\x6f\x36\x2a\x53\x53\x6d\x69\x09\x92\xfa\x54\x74\x82\x85\xe6\x3c\x65\x86\x0f\x26\xb0\xa0\x48\x96\xd0\xe9\x0e\x7b\xd7\x1b\x1b\xbd\x33\xd7\x67\x82\xd7\x17\x76\x05\xaf\x35\x36\xfa\x6f\x45\x65\x31\x0b\xa2\x79\x24\xa2\xc9\x75\xa4\x46\x56\x86\xd3\x88\xe3\x58\xbe\xfe\xfa\xeb\x58\x5c\x5c\xb4\xfb\x6e\xc3\x3b\x6f\xec\x74\x3a\x90\x0f\x17\xf7\x1b\x1b\x86\x36\xec\xf3\xde\x19\xe9\x64\x30\x79\x86\x87\x87\x31\x33\x33\x03\xeb\xf8\x7a\x09\x84\xe1\x98\x30\xbc\x73\xb9\xb2\x7f\xb8\xe7\x4d\x26\x08\x6a\x8d\x46\x06\xab\xb2\x1c\x9b\x99\xdb\x36\x51\x31\x34\x84\xb1\x5e\x8e\xaf\xbd\x76\xdb\xea\x5f\x85\x3e\x5f\x03\x41\xeb\x81\xb4\xd3\x1f\x56\xba\x06\x9f\x88\x2a\xb1\xc0\xd0\x70\xe8\x4d\x4e\x35\xca\x77\x7b\xac\x0e\xa5\x16\xb2\xf3\x76\xfb\xb2\x99\xd2\xa3\x03\x49\x7b\x6e\x0c\xf7\xce\xbf\xb5\x7d\xed\x87\x9d\x40\x5e\x51\xba\x28\x63\x51\x7b\xf5\xea\x55\x5c\xba\x74\x49\xc3\xcb\x85\x3f\x80\xe4\x90\x5b\x91\x3e\xa3\x50\xcf\x81\x64\x85\x0b\x01\x84\x4b\xd5\xde\x95\x48\x70\x27\xb9\xdf\x93\x32\x28\xa1\x59\x3e\x5b\x55\x6a\xbf\xa7\x9d\x44\x3a\xbc\x8a\x6b\xd1\xfd\x2e\x47\x62\xd3\x96\x46\x30\xb3\x50\xeb\xbd\x4b\x84\x00\x40\x47\x53\xe7\x6a\xb5\xaa\x6f\xb7\x02\xf2\x57\x6b\x97\x35\xce\xcb\x97\xd7\xe7\x9b\xad\x84\x45\xdf\x15\xb1\x7b\x37\x2b\xc7\x55\xdc\xe5\x95\x2b\x00\xc8\xd3\xa7\x4f\x0b\x00\xf8\xd8\xc7\x3e\xa6\x6f\x14\xb3\x57\x70\x6d\xb3\xa0\x75\x20\x2b\x71\x80\x95\xb5\x71\xef\x6a\x73\x83\x77\xca\xef\xf1\x86\x52\x87\xc7\x87\x1a\xf1\xa6\xa0\xcd\x63\x41\x47\x8e\x79\x21\x57\x85\x84\x4f\x92\x7d\x26\x92\x2c\x10\xc6\x3e\x85\xbd\x0a\x35\xc2\x21\xb1\xd2\x19\x11\x0b\xdd\x21\xb1\x14\x95\xe9\x06\x0b\x6a\x20\x39\xad\xdc\xd0\x7f\x4a\x5c\x6a\xc2\xb2\x99\x60\x66\x19\xc7\xb1\xfc\xe5\x2f\x7f\x89\xf7\xdf\x7f\xff\x66\xfd\xee\xeb\xe3\x2d\xe4\xb1\x43\x91\x58\x92\x2b\x9b\xe7\xb5\xe3\xdc\xb9\x73\xf2\xe1\x87\x1f\xd6\xdb\xbb\x9a\x18\x77\x5a\x41\xbc\x74\x66\xb2\xf5\xab\xc9\x66\x69\xaf\x40\xff\x96\xaf\x4d\xff\x0d\x7d\x70\x15\x1f\x36\xd7\xa1\x1e\x67\x37\x74\x8e\x35\xcb\xf1\x12\x28\x35\x8a\x63\xeb\x8e\x64\xf5\x6e\x2e\x96\x7e\x7f\xd3\xfa\x91\xdb\x6e\x0c\x3d\xb8\x79\xad\xb4\xd7\xdd\xd6\xcd\x0b\xce\x06\x4b\x76\xce\x11\x21\x12\x1c\x9e\xda\xd8\xfa\xd5\x6a\x25\x9a\x87\x65\x18\xa7\xfa\x8e\x66\x53\x9f\x29\x2c\x1c\x1f\xe1\xb2\xfe\x83\xb4\xdd\xd2\xd1\x71\x44\x44\x14\x2e\x55\x7b\x0b\x9d\x92\x5c\x2a\xc7\xa2\xc6\xaa\xd5\x8a\x61\x48\x88\xb2\xc5\xd2\xa5\x8a\x65\xd5\x6d\xb3\xc2\x59\xd4\x3c\x23\xea\x30\x04\x10\x6c\x59\x2b\xff\xc6\xbb\xb2\xf5\x4a\x4f\x48\xa3\xfd\x0d\x82\x40\xb6\x5a\xad\x3c\x64\xcb\x93\xa3\x5d\x36\x19\x28\x26\x02\x76\xb0\xbf\xcd\x13\x7b\xf4\xf3\x20\x31\x28\xaf\x2d\x45\x72\x7a\x51\x5a\x46\xc6\x3c\x7d\xfa\x34\x4e\x9f\x3e\x8d\xcf\x7c\xe6\x33\x62\xdb\xb6\x6d\x99\xdb\xd4\x91\x4c\xdc\x16\x12\xd3\xec\x06\x12\x25\x65\x8d\x09\xd5\xa8\x2c\x6a\xbd\x80\x2b\xad\xba\xa8\x10\x10\x10\xa3\x42\x31\x4a\xc4\xec\xeb\x7b\x6c\x58\x50\x24\x05\xba\x2c\x10\x22\xf1\xfb\xa9\x6f\x5c\x6f\x11\x25\xc6\x56\x16\xa1\x68\x52\x72\x73\x7b\xe6\x36\xf4\x38\x8e\xf1\xe7\x7f\xfe\xe7\x45\xfd\xc8\xeb\x53\x1e\xbc\x6f\x26\x73\x0f\x82\xdb\xad\x3c\x67\xc2\xb7\xbf\xfd\x6d\x79\xe8\xd0\x21\xa1\xfb\x00\x20\x94\x84\xe6\x99\x8d\xed\xb7\xf6\x5e\xaf\x3e\x34\xb9\x5e\xda\x4d\x70\x89\x40\x2a\x36\x90\x83\xbf\x94\x61\x86\x00\xbd\x8b\xb8\x56\x8e\x17\x8e\x4f\x35\x5f\x65\x65\x82\x6f\xd5\x67\x16\x01\x4e\xbd\xbf\x75\x88\xa8\xd5\xa8\x44\x73\x27\xa6\xd6\x5e\x7a\xe8\xdc\xd8\x96\xa1\x9e\xa8\x67\xb5\x1a\xd6\x84\xd1\xce\x94\x48\x71\x18\xd6\x82\x9d\xe6\x66\x5c\x1e\xed\x9e\x3c\xbd\xa9\x75\x44\x0a\x68\x7f\x24\x7a\xfc\xa4\x32\x3b\x77\xe1\x65\xbf\x27\x7a\x4f\x67\x00\x8a\x82\xbc\xeb\xae\xbb\x84\xea\x14\x2c\xe2\x11\x76\x4a\x72\x65\xa5\x12\xcd\x8f\x76\xfc\x69\x23\xd7\xb1\x25\xa2\x58\xad\xb6\xaf\x23\xd4\xe2\x8a\xad\xd7\xe8\xeb\x25\x25\x94\x72\xf3\x5a\x70\xf7\x50\x4f\x8c\x45\x15\x5e\x50\xfb\xdb\xf6\x64\x1d\x44\x18\xf2\x56\xaa\x3c\x82\x51\xa4\xeb\x28\x92\xab\xf3\xd2\x6e\xa5\x1e\x38\x79\xdc\xf7\x5b\xe1\x72\x4c\xde\x9f\xff\xfc\xe7\xe8\x76\xbb\xf2\xe9\xa7\x9f\x46\xa9\x54\x32\xc8\xa7\x11\x1f\x8a\xf3\x50\x67\x1e\xaa\x00\x2a\xea\xb9\x02\x20\x60\x82\xcf\x02\x3e\x33\xec\x2b\x10\x6d\xf1\x47\x5b\x67\xea\x9d\x9c\x0e\x25\xe7\x45\x6c\x8b\xcc\x90\x52\xd7\x7b\xda\x19\xae\xdb\x5f\xb7\x1f\xb7\xc2\xd1\xdd\x8c\x53\x28\x22\x44\xb7\x52\x6e\x5f\x9e\x87\x1f\x7e\x58\xe8\x3e\x40\x5b\xea\x12\x9a\xab\x43\xd1\xdc\x1b\xd3\x8d\x1f\x7d\xf2\xcc\xf8\x9f\x94\x23\xd4\x8c\xfe\xe2\xa6\x21\xf5\xe1\x0a\x24\xe8\xdd\xf3\xb8\x73\x62\xaa\xf9\xd2\xf5\x5a\x6f\x96\xc1\x0d\x02\x69\x53\xf8\xcc\x7d\x3a\xb0\xb8\x1e\x00\x4d\x10\x35\x4e\x6f\x6c\x1d\xa9\x77\xfc\x2d\xf7\x5f\x1e\x79\x22\x88\xa9\x42\x2e\x5b\xa1\xeb\x34\x92\x91\x4d\x5a\xd8\xcc\xb9\x1b\xd5\x68\xf6\x57\x33\xab\xff\xb8\x56\x8e\x2f\x23\x3d\x74\x18\xea\x36\x5c\xb8\x70\x41\x1b\xd9\xd9\x73\x4c\xb7\xc9\xc0\xce\x43\x56\x8f\x6e\xcb\x9e\x19\x0a\xbd\xb8\xb8\x28\xf7\xed\xdb\x47\xea\xc4\xa6\x00\x50\x22\xa2\x0a\x03\xc3\x13\xad\xd2\xf4\xd6\x46\xf0\x1b\xa9\x72\x54\x53\x40\xad\xd7\x40\x2a\x13\x1a\x85\x69\xca\x75\x24\x9a\xfa\x94\x88\xa7\x44\x24\x29\xcf\x67\xaa\xcc\x8d\x76\x0f\x2f\x0f\xf5\xe6\x88\xa8\xcd\xcc\x3d\x22\x8a\xef\xbf\xff\x7e\x28\x8f\x60\x76\x9b\x6d\xb9\xcc\xee\x83\xab\xa7\x90\x56\x7e\xe1\xc4\xd9\xbf\x4e\xeb\x73\xf5\x14\x76\xfd\xc8\xc9\x67\xcb\x87\x28\xf8\x36\xaf\x7d\x6e\xd9\x19\xd9\x3d\x8e\x63\x06\x80\x63\xc7\x8e\xf1\xfe\xfd\xfb\xb5\x85\xa9\x54\x4e\x62\x7a\x0a\x4e\x3d\x24\x2b\x5b\x5b\x71\x07\xeb\x48\xb9\x11\xfd\xb7\xac\xe4\xdc\x65\x24\xba\x8a\x65\x66\x5e\x22\xa2\x65\x22\x5a\x56\xf1\xab\x48\x44\x93\x35\x4a\x4e\x98\x76\x00\x74\xd5\x02\x12\x4b\x29\xf9\xc8\x91\x23\x78\xf5\xd5\x57\x65\xa3\xd1\xb0\xe1\xe5\xb6\xdb\xd6\x3d\xb8\xba\x1e\x38\xf9\x8a\x74\x45\xae\x6e\x43\x3f\xdb\x63\xa0\xcb\xc9\xd3\x6f\x08\xe7\x7b\x31\x3b\x3b\x2b\xf7\xed\xdb\x47\x9e\xe7\x69\xa5\x22\x01\xf0\x19\x5c\x5a\xa9\x46\x6d\x00\xb4\x79\xad\x7c\x9b\xc7\xf0\xed\x49\x6e\x5c\x27\x1a\x0e\x3a\xe5\x4a\x12\x51\x3d\x69\x6a\x24\x38\x3c\x39\xb5\xfe\xf2\xe1\x1d\x6b\x3f\x8e\x04\x5f\x05\x70\x9d\x88\x56\x91\x1e\xfc\x8b\x9f\x79\xe6\x19\x79\xff\xfd\xf7\x93\x10\x89\x77\x00\x45\xcc\x09\x00\xc5\xc4\xde\xf5\x91\xde\x12\x01\x62\x72\xbd\x94\x78\x7c\x57\xdd\x4b\xdd\x39\xa6\xee\x10\xfa\x02\x01\x8b\xc3\xbd\xd9\x57\xf6\xac\xfc\xf5\xd5\x7a\x78\x92\xc1\xd7\x90\x9c\x20\x6e\x28\xdc\xe8\x49\x29\xe5\x2b\xaf\xbc\x82\x56\xab\xe5\xce\x29\x97\x43\x64\xed\x01\x4c\x4f\x20\x7b\xda\xb2\x13\x4f\xc7\x8f\x1f\x97\x07\x0e\x1c\x10\x94\x04\x1f\x40\x99\x09\xc3\x43\x91\x37\xb9\xeb\xc6\xd0\x03\x02\xf0\x32\x3c\x9b\xd6\x40\xf7\x71\x11\x1a\xd0\x48\xb7\xf9\x54\xad\x66\xab\xcb\x9a\xa6\xc4\x08\xba\xbe\xbc\x32\x3b\xde\x7d\x1b\x84\xb6\x9a\x0c\x31\x00\x79\xed\xda\x35\x5a\x5b\x5b\x23\xab\x16\x97\x10\xda\x13\xde\x46\xb8\x3c\x65\x9c\x4b\x3c\x74\xc8\x23\x0c\x79\x5c\x8e\x5b\xa6\x5d\xa7\xb0\xde\x75\xf9\x76\x1e\x3b\x5f\xde\xf7\x2e\x71\xb1\x89\x1e\x1f\x3b\x76\x8c\xe3\x38\xa6\xa9\xa9\x29\xed\x9a\x8e\x91\x72\x1f\x3d\x24\x6e\x09\x3a\xea\x6f\x1d\x4a\xd4\x50\x84\xc0\xd6\x5b\xac\x21\xe1\x52\x56\xd5\xf3\x3a\x80\xf5\x44\x54\xa1\xb6\x5a\x9d\x7a\x48\x56\xc4\x98\x88\x78\x7e\x7e\x1e\xdf\xfb\xde\xf7\xe4\xfc\xfc\x7c\x1e\x3c\x6d\x18\xd9\x70\x73\x27\x75\x11\x11\x70\x89\x85\x0d\x47\x3b\xce\xe5\x22\x5c\x82\x5c\x54\x67\x06\xbf\x1f\x78\xe0\x01\xbb\x0e\x22\x22\x62\x82\x98\xaf\x87\xcb\x3d\x8f\xbb\x9b\x9a\xc1\x8e\x92\xa4\xb2\x11\x03\x6c\x7b\x73\x6d\xec\x45\xf6\x8e\x06\xa1\xe3\xcb\xe6\xb1\x6d\xcd\x97\xdf\x9c\x6e\xfc\xa4\xe7\xf3\x65\x65\x1c\xb7\x8c\x84\x80\x87\x00\xe2\xb5\xb5\x35\x3e\x79\xf2\x24\x1f\x3d\x7a\x94\x0f\x1c\x38\x40\x0e\x07\x42\x44\xc4\x11\x31\xe6\x47\xc3\x85\xd5\xa1\x78\x65\xbc\x5d\x9a\xac\xf4\x44\x4d\x6f\xc8\x9a\x79\xd7\xa7\x14\x4d\x88\xd6\xf9\xf1\xce\xdb\x2f\xed\x59\xfe\xc1\xc2\x48\xef\x3d\x50\xa2\xd0\x26\xa2\x55\x66\x5e\xd7\x1c\xe3\x37\xbf\xf9\xcd\xb8\xd5\x6a\xb9\x38\xeb\x8e\x1d\x01\x89\xeb\xc0\xbc\x55\x59\x23\x65\x1f\x65\x57\x3b\x2b\x00\xe0\x31\x73\x00\xa0\x1a\x0b\x54\xee\x58\xa8\x7e\x24\x90\x62\xd8\xea\x6b\x5a\x5d\x1e\x15\xd4\x27\xa4\x6c\x14\xb3\x5e\x33\x81\x40\xbe\x24\x9c\x9f\xe8\xfc\x32\xf4\x79\x15\xa9\x32\x27\x7e\xe5\x95\x57\xf4\x04\xb4\x61\x65\x77\xba\x08\xc9\xb2\x35\xf4\xaf\x4a\x3a\xaf\xcb\x29\xb8\x44\xc3\xcd\x93\x97\xd7\x5d\x69\x5d\xee\x25\xef\x3b\x97\x2b\x82\x53\x1e\xdc\xef\xe7\xe7\xe7\xf9\xe8\xd1\xa3\xc4\xcc\x98\x9c\x9c\x64\xdf\xf7\x25\x33\x33\x25\x6e\x17\xb5\x0f\x8a\x9e\xe2\x46\x42\x24\xab\x5d\x97\x99\xdb\x48\xb4\xea\x6d\xc5\xd1\x69\xbd\x86\x76\xb0\x1b\x22\x21\x3c\x5a\x0e\x8e\x99\x99\xe7\xe6\xe6\xf0\xbd\xef\x7d\x4f\x9e\x3e\x7d\x5a\xcf\x1e\x9b\x80\xdb\xe3\xe2\x12\x45\x9b\xab\xd0\xf1\x76\x5f\xf3\x88\x7d\x1e\x5c\xf3\xb8\x4a\x7b\x1c\x5d\x18\x16\x2d\x8e\x12\x00\xed\xde\xbd\x9b\x66\x66\x66\x00\x24\xfe\x38\xed\xfa\x98\x20\xe7\x47\xc2\x1b\x57\xc6\xba\x97\x86\x22\x51\x19\xee\x7a\x75\x8f\x51\xea\x57\xf4\xb3\xa9\xa5\xe7\x71\x38\x37\xda\x3d\xf3\xcf\xb7\xaf\xbe\xf8\xce\xd6\xf5\x5f\xc4\x82\x2f\x83\xe8\x1a\x92\x83\x7f\x6b\x0a\xde\x3d\x66\x96\xef\xbc\xf3\x0e\xe6\xe6\xe6\x18\x80\x18\x1e\x1e\xc6\xe4\xe4\x24\xab\x2d\x62\x56\xaa\x01\x06\x20\x59\x50\x7c\xa3\xda\x5b\x3e\xbb\xb1\xf5\x41\xb3\x1c\xaf\x94\x63\x51\x29\xc5\xa2\x42\x0c\xa1\xa7\x4f\xb2\x62\x20\x6a\x07\xb2\x79\x69\xac\x7b\xe6\x97\xbb\x1a\x3f\x3d\x3c\xdd\xf8\x59\x2b\x90\x17\x18\x3c\x0f\x60\x81\x88\x96\x15\xd1\xe8\x30\x73\x14\xc7\xb1\xbc\x7a\xf5\x2a\x29\xc5\xa8\x4b\xe0\xfb\x38\x39\xdb\x8e\x43\x47\xe6\x29\x03\xed\x20\x95\xb5\x9b\x5e\xcd\x3a\xcd\x72\xbc\x78\x63\xb8\x37\x3b\xbc\xe2\x6d\xea\xcb\x4d\x48\x0f\x4c\x59\x23\x97\x9a\x89\xe6\x07\xc5\x79\x25\x34\x07\x84\x7a\xc7\xbf\x6d\xd3\x5a\x70\xdb\x5a\xa5\x7d\x59\x1d\xb3\x17\x44\x24\xfe\xf4\x4f\xff\x14\xdf\xfe\xf6\xb7\xf3\x2c\x12\xa5\xf3\xaa\xc4\x76\xe9\x00\x00\x20\x00\x49\x44\x41\x54\x5b\xa4\xec\x41\x4e\x9c\x2b\x2f\xdf\x8a\x52\xb5\xa8\xbc\x41\x6d\xba\x99\x22\xd4\x8d\xcb\xfb\xed\x53\x00\x1e\x3d\x7a\x54\x1c\x3d\x7a\x54\x6e\xdc\xb8\x51\xdc\x77\xdf\x7d\x72\xd7\xae\x5d\xa6\x2c\xad\xcb\xb0\x26\x86\xfb\x6e\x6c\x19\x72\x6c\x1b\x30\x3b\x3b\x8b\x1f\xff\xf8\xc7\xb2\x54\x2a\x09\xe7\x42\x9f\xa2\x76\xb9\x6d\x84\x93\x06\xf4\xe3\x9d\x1b\x8a\xe0\x93\xc7\x46\x0f\x1a\xaf\xbc\x7a\x4d\x38\x77\xee\x1c\xb6\x6d\xdb\x86\x3b\xee\xb8\xc3\xe8\x18\x38\x7b\x8f\x8a\xbc\x36\x12\x86\x3f\xbe\x63\xe9\xda\xc6\x66\x69\xe7\xcc\xf2\xd0\x9d\x53\xab\xc1\xf4\x70\xe8\xd5\xcb\x91\xa8\x30\x80\x58\x70\xd4\x2c\xc7\x2b\x0b\xb5\x70\xee\xc2\x78\xe7\xf4\xdc\x68\xf7\x4c\xe8\xf1\x02\x08\x8b\x00\x2d\x28\x11\x30\xe3\xd0\xe8\xf2\xe5\xcb\x38\x7c\xf8\xb0\xe9\xc7\x1b\x6f\xbc\x21\x36\x6d\xda\x84\x89\x89\x09\x3d\xc7\x5a\x96\x0e\x2a\x62\x70\xa7\x55\x92\xad\x63\xdb\x9a\xd7\xdf\xd9\xb2\xfe\xd6\x58\xdb\xdf\xb8\xa9\x19\x4c\xd5\x42\xaf\x2e\x24\xfc\x4e\x49\xb6\x9a\x41\xdc\xb8\x31\xdc\x9b\x5f\xad\x44\xd7\x62\x81\x25\x10\x96\x54\xdd\xb6\xbd\x8d\x39\xb1\xac\x94\xd9\x45\xb8\xd7\x37\x96\xee\xe9\xd8\x3c\x80\x66\x06\xb2\xd9\x6c\xa2\x56\xab\x69\xc0\x86\xcc\x1c\xc6\x02\xad\x2b\xa3\xdd\xf7\x77\xac\x94\x1f\x70\x29\xb0\x4d\x00\x0a\x39\x0a\x9d\xd1\xca\xef\x2a\x7f\x4a\x31\xd5\x67\x96\x2b\x07\xcf\x4f\xb4\x0f\x4b\x41\xfa\x60\x50\xe4\x79\x9e\xbc\xef\xbe\xfb\x70\xf8\xf0\x61\xb7\x1f\x79\x84\xc4\x45\xce\x41\x93\x7d\x10\x02\xdb\xe5\x0d\xfa\x05\x8a\x91\xfc\x66\x44\x20\x8f\x68\x17\xb5\xc5\x9d\x38\x00\x20\xae\x5f\xbf\x2e\x7f\xfa\xd3\x9f\x62\x78\x78\x58\xac\xaf\xaf\xcb\x4f\x7c\xe2\x13\x02\x80\x1c\x1f\x1f\xd7\x4e\x6b\x00\xf4\x29\xe6\x32\xe1\xdc\xb9\x73\x90\x52\xe2\xe5\x97\x5f\x96\xba\x1c\x20\xf1\x0c\x87\x7e\x18\xe5\xb5\x7d\xd0\x38\x14\x4d\x76\x37\xaf\x5b\x57\x11\x21\xc9\xab\x77\x10\xbc\x33\xed\x91\x52\xe2\xd5\x57\x5f\x95\xea\x7a\x45\x89\x44\xf1\x6b\xb7\x27\x02\xd0\xe9\xf9\xdc\x98\x1b\x0d\x17\xe7\xeb\xe1\x19\x5f\x52\xad\x14\x8b\xe1\x72\x44\x15\xa6\x44\x2c\x08\x7d\xd9\xea\x09\x5e\x93\x84\x06\x08\x0d\xc0\xf8\x24\x59\xd2\x3b\x52\x8a\x20\x44\x6b\x6b\x6b\xf8\xe1\x0f\x7f\x68\xb7\x5f\x74\xbb\x5d\x1c\x3f\x7e\x1c\xbf\xf5\x5b\xbf\xa5\xe7\x19\x90\x4c\x74\x09\x98\x7b\x5a\x5a\x00\x56\x7a\x3e\x2f\x5e\x1f\xe9\xcd\x5d\xaf\xf5\xde\xa3\xe4\x78\x3c\x38\xc9\x17\x82\x8c\x2b\x86\x06\x92\x03\x87\xfa\x18\x80\x56\x74\x87\x00\x64\xce\xbd\xb2\x45\xb0\x32\x70\x75\x77\x55\x8a\x90\xc1\x20\xa3\x94\x49\x56\xeb\xcc\x4a\x87\x81\xd6\xdc\x68\xf7\x4c\x2c\xb8\xe3\xcb\xe4\x60\x90\x56\xd8\x18\xc0\x5b\x2c\x47\xe6\x1e\x90\x3c\xf5\x18\x60\xc9\x6c\xfa\x87\xfc\xa9\x95\xf2\x03\xa3\x1d\xff\xef\x96\x86\x7a\x4b\x4a\xc7\x22\x98\x59\x4c\x4c\x4c\x48\xcf\xf3\xec\xd3\x93\x45\x93\xae\x88\xa8\x64\x80\x52\x10\x8a\x88\xd1\xa0\xf2\x07\x71\x2f\x83\x90\xbe\xa8\x5d\x79\x79\x07\x11\x4b\x01\x40\xaa\xc9\xae\xef\x30\x2d\xec\xff\x86\x0d\x1b\xc4\xf2\xf2\x72\x21\xd7\xb4\xbe\xbe\xee\xb6\xc7\x4e\xbf\x15\x62\x70\x33\xb8\xe7\x72\x02\x4e\x5d\x79\x69\x45\x75\x0f\x82\x4d\x61\xfd\xcf\x3f\xff\xbc\xfc\xca\x57\xbe\x82\xa1\xa1\x21\xdb\x42\xd7\x5c\x4b\x49\x44\x4d\x06\xaf\x48\x41\xd5\x50\x70\xb5\xeb\x45\xc1\x7a\x99\xf4\xe9\x6d\x7d\x0b\x9d\x9e\xb4\x4d\xc7\xd6\x45\x1b\x31\x46\x00\xf0\xdd\xef\x7e\x37\x97\x0b\x3e\x7b\xf6\xac\x38\x7b\xf6\xac\x54\x77\xec\x44\x6a\x1e\xb5\x90\xde\xab\xdb\x44\xa2\xac\xae\x26\x9b\x14\x1c\x20\xb5\xac\x4e\xce\x34\xc1\x10\x98\x96\xf6\x4f\xa2\xda\x15\x2a\x51\x55\x5e\xbc\x78\x11\x3f\xf9\xc9\x4f\xf2\xe6\xbd\x0d\x97\xbe\x36\xba\xca\x51\x20\x2b\x3f\xc2\x8a\x03\x00\x3e\x79\xf2\x24\x1f\x3c\x78\x30\xd1\xd6\x30\x7b\x44\x14\x30\x78\xa8\xe7\x71\xe9\x8e\xeb\xc3\x1f\x29\x47\xa4\xf6\x99\x9d\xbb\x36\x74\x49\x94\x88\x1e\xa6\x54\x8b\x68\xd8\x66\x1d\x89\x0f\x04\x58\x76\x20\x8c\x92\xa4\xea\xea\x50\x7c\x7a\x7e\x24\x3c\x4f\x44\xda\x4a\x32\x1e\x1b\x1b\xe3\x77\xde\x79\x07\x51\x14\xd9\x72\xb6\x2d\xe7\xf6\x29\x7a\xad\x78\xdc\xe4\x1b\x5b\xa1\x26\x72\xe2\xed\x34\x47\x63\x93\x79\xcf\xab\xbb\xa8\xbd\xee\xdf\xa0\x34\x20\xbf\x5e\x2e\xf8\x1e\x45\xe5\x29\x33\xe3\xbc\x7e\xe7\xe9\x58\xec\x34\x5b\x87\x63\xa7\xa1\xa0\xdd\x45\x69\x76\x5d\x6e\x7b\x07\x29\x48\x6d\xdd\x85\xb0\xbe\x21\xf4\xf7\x59\xd7\x9d\x07\x63\x83\x27\x8b\x8b\x8b\xb4\x63\xc7\x0e\x56\xd7\x2e\xea\xab\x04\x22\xa4\x4a\x66\x7b\x87\x6a\x15\xc0\x2a\x33\xeb\x5d\xa8\x1b\x96\x48\xb0\xa2\xd2\x35\xd1\x30\x8a\xfd\x13\x27\x4e\x60\x6e\x6e\x8e\x98\xd9\xee\x7f\x06\x4f\x8f\x1e\x3d\x2a\xef\xbf\xff\x7e\x08\x21\xf4\x9d\x2c\xda\x86\xaa\x87\x84\x6b\x68\x29\x5d\x45\xe2\x7b\x95\x79\x45\xed\x86\xad\x22\xdd\x0d\x5b\x53\x0a\xf1\xb6\x22\x1c\x11\x11\xc9\x0b\x17\x2e\xfc\x7f\xc4\xbd\x6b\x90\x1c\xc7\x75\x2e\xf8\x9d\xac\xea\xc7\xf4\xf4\xf4\xbc\x30\x83\xc1\x00\x83\x37\x41\x90\x00\x41\x10\x00\x45\x52\x12\xaf\x64\x4a\x21\xdb\x94\x64\xf9\x86\x63\xef\x2a\xa4\x30\x69\xaf\x6d\xde\xdd\x88\xfd\xe1\xdd\x1b\x7b\x7f\x6c\xc4\xc6\x8d\x8d\x7b\xf7\xc7\xc6\xc6\xee\xbf\x8d\x8d\x90\x65\x87\xf5\x0a\xcb\xf2\xda\x6b\xaf\xbc\x96\xac\x2b\x5f\x5b\xb6\x44\xbd\x0c\x80\x0f\x50\x20\x41\x12\xc4\x73\x66\x30\x33\x98\x47\x4f\x4f\x4f\x3f\xaa\x32\xf7\x47\x55\x56\x9f\x3a\x9d\x55\xdd\xa0\xb4\xb1\x19\x18\x74\x55\x3e\x4f\x9e\x3c\xf9\x9d\x93\x8f\xca\xc4\xf7\xbe\xf7\x3d\x84\x61\xc8\xe7\xa5\x5c\xed\x2c\x27\xe8\x49\x5e\xc8\x64\x1b\x45\x23\x43\x50\x8f\x1d\x3b\x46\xf1\x98\x59\x11\x91\x87\x64\x6b\xac\x19\xd9\xbb\x5d\x3c\xbc\x67\xa7\x70\xd4\x2e\xcb\x5a\xab\x82\xe4\x44\x28\x77\x49\xb3\x1a\x3b\x46\x81\x5d\x66\x4a\x7f\xbc\x43\x50\x40\x81\x0c\xda\x37\xa6\x5b\x3f\x0d\x3d\xec\xc4\xa8\x19\x12\x91\x6e\xb7\xdb\x88\xef\xfd\xb4\x0c\xb0\xf5\x90\x8d\xa2\xd9\xbb\x75\x5c\x68\x64\x1a\x29\xbc\x36\x8e\x71\x84\xc9\x1a\xf2\xb2\xfa\xcc\x3d\x16\x9f\xd3\x26\xf3\x71\xd1\x6d\x1c\xcf\xbc\x3c\x08\x7f\x99\x9f\x0c\xe7\x8e\xd7\x9b\xcb\x81\xab\xee\xdc\x4f\x86\xb9\x3a\xb6\x75\x52\x10\x79\xd9\xae\x30\x17\xd0\xf3\x7c\x38\x20\x70\xda\x5c\x3c\x90\xed\x2c\xcb\x26\x00\x66\x7b\x7b\x9b\xd6\xd6\xd6\x70\xe8\xd0\x21\xe3\xfb\xbe\xb5\x18\xf9\x1e\x99\x4e\xbc\xca\x64\x57\x9d\xb6\xe3\xb9\x0b\xdb\x51\xb7\xd0\xfb\x6e\xa7\x65\x8c\x69\xc7\x93\xca\x41\xb3\xd9\x34\x7f\xfc\xc7\x7f\xac\xef\xde\xbd\x4b\xe9\xe3\x28\x52\x72\x99\xd0\x7d\xf9\xf2\x65\x7d\xf0\xe0\x41\x1a\x1d\x1d\xd5\x88\x26\x6e\x43\xc4\x2b\x65\x31\x2d\xbb\x94\x6c\xd2\xa3\x1d\x56\x6e\xd3\xae\x86\x81\xed\xb7\x69\xb7\xdb\xfa\xc6\x8d\x1b\xf8\xa7\x7f\xfa\x27\x74\x3a\x1d\x57\x7b\x4a\xf9\xe2\x86\x04\x01\xbd\x53\xce\x9d\xd6\x85\x23\x03\xea\x74\x3a\x38\x72\xe4\x88\xfd\xb4\x9d\x62\xf0\x28\x01\xa8\x78\x9a\x46\x8f\xdc\x1f\x39\xaf\x40\x5e\x0a\xeb\x39\x68\x18\x20\x75\x89\x4a\xe2\xd7\x83\x8b\xe4\x83\x1f\xb2\xc1\xc9\x15\x92\x54\x08\x55\x79\x69\xbc\x73\x79\xab\x1c\xdc\x8b\x99\xd1\x35\xc6\x98\xf1\xf1\x71\x73\xfd\xfa\x75\xc4\x63\x6f\x2e\x08\xbc\xc3\xa7\x1a\x04\x69\x61\xe4\x7e\x40\x7f\x67\x37\xe2\x57\x86\x49\x60\x90\x80\xc5\xc3\x78\x79\x3c\xdc\x95\x8f\xcb\xec\x96\xda\x49\xd6\xd1\xe6\xe5\x02\x14\xa9\x99\x65\xb8\xa4\xc7\xc5\x3f\x09\xa2\x3c\x3e\x4f\x67\x1d\x1f\x4a\xc8\x29\x71\x2e\x5f\x5c\x48\x95\xf0\xe7\x61\xd2\x5a\x93\xd6\xa0\x4b\x29\x70\x9a\xa4\x85\xc3\xc3\x92\xba\x6e\x6f\x6f\xeb\xbb\x77\xef\x92\xe7\x79\x98\x9e\x9e\x36\x88\x2c\x05\x6b\x79\x58\x00\x69\x23\xd6\xfc\x88\x2c\x8a\xdd\xf8\xb9\x15\x87\x75\x11\x69\xf8\x50\x6b\x1d\x7e\xf1\x8b\x5f\xd4\xaf\xbf\xfe\xba\xe4\x93\x54\x42\x32\x0c\x6f\xbe\xf9\xa6\x09\xc3\x90\xc6\xc7\xc7\x4d\xb1\x58\xb4\x74\x5b\xeb\xc3\x5a\x42\xed\x18\xa0\x2c\x5d\x76\x1f\x8f\xdd\x1c\x18\xd6\xeb\x75\xf3\xb5\xaf\x7d\x4d\xbf\xf7\xde\x7b\xc4\x86\xf6\x92\x27\xf6\x5d\xb6\x71\x02\x30\x1e\xd2\x9d\x87\x33\xdf\xd5\x51\x74\xb7\xdb\xa5\x2b\x57\xae\xe8\x0b\x17\x2e\xd8\x0d\x2a\x9e\x31\xa6\x40\xa0\x91\x8e\xaf\xfd\x13\xab\x95\x0f\x14\x43\xaa\xf2\x53\x89\x62\x5c\xe8\x91\x63\xc3\x2c\x78\x50\x1a\xf2\x52\x13\xac\x84\x04\x54\x60\x00\x5f\xd3\xa8\x21\xac\xdd\x98\x6a\x5d\x31\xf1\x9e\x0e\x22\xd2\xc5\x62\x51\xff\xf8\xc7\x3f\x96\x9d\xc9\xd2\x2d\xb5\x28\xff\x95\xc0\x01\xc6\x3c\x29\xa4\x12\x60\xa5\x36\xe3\x79\x66\x59\x28\x2e\xa0\x72\xa5\x73\x69\x73\x5e\xae\xb4\x9a\x20\xd2\x72\xba\xa4\x75\xe2\x12\x56\x59\x26\xef\x98\x59\x1a\x48\x02\x2d\x90\x6d\xe2\x9a\x8c\x30\xa9\xe9\x5c\xc2\xca\xeb\xc7\x87\x30\x9c\x1e\x5e\x4f\x9e\xce\x25\xd3\x59\xf1\xfa\xda\xa3\xd9\x6c\x9a\x9b\x37\x6f\x52\xa3\xd1\xc0\xcc\xcc\x0c\x0a\x85\x82\x5d\x1e\xb5\xdb\xc2\x93\xcd\x76\x88\x3b\x6a\xbc\x8d\xdc\x5e\xe7\x10\x68\xad\xf5\xe6\xe6\xa6\xf9\xea\x57\xbf\x9a\x47\x1b\xaf\xa3\x8b\x8f\x6a\x79\x79\x19\xaf\xbf\xfe\xba\x0e\xc3\x90\xa6\xa6\xa6\x0c\x11\x19\xa5\x94\x06\x60\x62\x3a\x42\x44\x16\x78\x08\x24\x9f\x88\x84\xdd\x6e\xd7\xfc\xe1\x1f\xfe\x61\x78\xf1\xe2\x45\x73\xe5\xca\x15\x09\x9e\x52\x1e\xb2\xe4\x8e\xcb\x01\x79\x70\x37\x1a\x84\x7f\x4a\x03\x2d\x2c\x2c\xa8\xe3\xc7\x8f\xdb\x79\x0e\x45\x44\x05\x10\x4a\x81\x32\xe5\xb9\xed\xd2\xe1\xe9\x66\xe1\x70\xf2\xed\x2b\xf5\x40\x83\x4b\x2a\xf8\x6e\x51\x08\x23\xc4\x82\x09\x21\x9e\x60\xed\x91\x4e\x20\x55\x0a\x54\xe5\xf6\x64\xfb\xc7\xbb\x25\xbd\x81\x1e\xa2\x9b\xe9\xe9\x69\x7e\x90\xb1\x14\x78\xd7\xf8\x96\x0b\xbb\x0b\x24\xa4\x90\x4a\xb3\x1d\x2c\x2c\x65\xea\xb2\x7c\x25\xaa\xbb\xf2\x05\xb2\x05\x98\xd3\x2b\x81\xc8\xd5\x11\x79\x7d\x78\x67\xb7\xfe\x10\xf9\x48\x9a\x78\x99\x1c\x40\x64\x3a\xfb\x2e\xf9\x28\x87\x2b\x12\x24\x24\xf8\xb8\x64\x8e\xc7\xe5\xf5\x91\x65\x4a\x8b\x4b\xd2\x27\x2d\x27\x69\xad\xb9\x78\xe1\xd4\xb8\xf7\xef\xdf\xa7\xd7\x5f\x7f\x5d\xef\xee\xee\xd2\xdf\xfe\xed\xdf\xea\xb3\x67\xcf\xc2\x18\x63\x3b\x6e\x72\xfa\x7f\x9c\x5e\xc7\xce\x5c\xb9\x72\x05\x6f\xbc\xf1\x06\xbe\xff\xfd\xef\xbb\xda\x32\xab\x6c\x97\x5f\x22\x5b\xcb\xcb\xcb\xe6\xb5\xd7\x5e\xa3\xcb\x97\x2f\xeb\x4e\xa7\x43\xdf\xfa\xd6\xb7\xc2\xb3\x67\xcf\x42\x6b\x6d\x8c\x31\xe6\x8b\x5f\xfc\x62\xf8\xf8\xe3\x8f\xc3\x82\xc5\xed\xdb\xb7\x69\x77\x77\x57\xca\x17\x72\xda\x42\xce\x75\xc8\x76\xd2\x4c\xb5\xa7\x08\x76\x31\x3f\x55\xa9\xf8\x83\x20\x45\xf1\xdd\x0f\xc6\x98\x3d\x44\x74\xf8\xd1\xa5\xca\x2f\x3f\xf7\xce\xe4\x4b\xbe\x56\xc5\x1e\x52\x30\xc8\x48\xae\x0b\x43\xca\xd2\xe8\x1d\x99\xcd\xaa\x25\x92\xda\xe7\x90\x4c\xeb\xe2\xc2\xf6\xff\xf6\xf2\x91\xad\x3f\x31\xd1\xd9\x96\xf6\xce\x0e\x1d\x9f\xc8\x3e\x88\x7e\xfe\x2e\xeb\x9e\xc7\x0f\x17\x7f\x86\xcd\x83\xbf\x73\x27\x85\xc5\x45\x5f\x56\xbe\x32\x8f\x3c\x7a\x5c\x74\x64\xd5\xc1\x45\x5f\x1e\x8d\x79\xfc\x1e\x54\xd6\xa0\xfc\xf3\xe2\x0c\x6a\xaf\xac\x30\x17\xed\x59\xb2\x9f\xd7\xde\x38\x77\xee\x9c\x8a\x2f\x8e\x4e\xde\x81\xe8\x4a\xc9\x6e\xb7\x0b\x64\xb7\xbd\x2c\x53\xc6\xcd\x72\x79\xfc\xcd\x6b\xe3\x07\x09\x73\x95\x93\x6a\x13\x79\xe9\x34\x90\x46\x17\x89\xe4\x09\xea\xed\xdf\xbf\x9f\xc6\xc6\xc6\x6c\x97\xb6\x37\xbc\x8d\x74\x7d\xe3\x1f\x5d\x1b\x39\x5b\x0a\xbc\x5a\x6f\xf7\x39\x03\x04\xbe\xcc\xca\xad\x09\x01\x1a\xfc\x60\x13\x4b\x54\xef\xab\x3f\xf8\x23\x5d\x6f\xe4\xbd\xe9\xdd\x1f\x76\x0a\x66\x1b\xd1\x5c\x87\x06\x10\xce\xce\xce\x12\x3b\x7a\x5f\x0e\x27\xa4\x16\x95\x96\x81\xcb\xa2\x90\xa8\x9f\x65\x91\x71\x78\x73\xf1\xd4\x65\x05\xc8\xb4\x72\xd8\x22\xd1\x5e\xd2\x26\x87\x5b\xdc\x02\x71\x69\x30\x9e\x87\x34\xdf\xad\xe3\x34\x64\xa5\xb1\x65\xf3\x34\xae\x61\x0b\x2f\x9b\xbf\xf3\xfc\xb8\x93\xf9\xf3\x36\xe8\xb3\x7c\x45\x7d\xb9\x95\x93\x65\xa9\x64\xd1\xce\x69\x71\x95\xe5\xb2\x9e\x14\x00\x5a\x5a\x5a\xe2\x79\x9b\xa5\xa5\x25\x5a\x5a\x5a\x42\xbc\x6d\x41\x0e\xdf\xac\x9f\x2c\x8b\x00\xe8\xc7\x1e\x7b\x4c\xad\xac\xac\xb8\xea\x25\x79\xe6\xb2\xe4\x5c\x72\xd2\xd7\x6f\x59\xbd\x5d\x56\xa8\x8b\x56\x17\x0e\x80\x03\x87\x6c\x48\x9e\x11\x2f\x98\x00\x98\xb7\xde\x7a\xcb\xc4\x27\x9f\xdb\x4a\xf8\xc6\x98\x72\xd7\x33\x85\xe9\x66\xe1\xc0\x4c\xa3\x70\x84\x4c\x32\xe3\xd9\x67\x35\x08\xc3\xa3\x57\x7d\x00\xbd\x2b\x16\x7a\x7e\xbd\x33\x48\x22\xcf\x62\xa0\x26\x5a\x05\xfd\xee\x62\xad\x73\x3d\x9e\x00\xea\x00\xd0\xd5\x6a\xd5\x5c\xbe\x7c\x59\x0a\x02\xef\xa8\xbc\x24\x39\xbc\x70\x75\x60\x1e\x2f\x4b\xa8\x5d\x71\x39\x4f\x65\x5c\x0e\x38\x3c\x6d\x96\x75\x23\xc3\x91\x91\x9f\xab\xd3\x73\x41\xb3\x8e\x97\xcd\x69\xe1\xbc\xc8\x1a\xce\xc8\xa1\x0f\xe7\x5b\x56\x98\x04\x41\xd9\x11\x5d\x1d\x43\xe6\x0b\x11\xc6\xdf\x39\xbf\x5c\x1d\x4a\xf2\xcb\x3a\xa9\x75\x5d\x72\x23\xcb\x91\x79\x49\xe0\xc9\x8b\x2b\x79\x63\x5e\x78\xe1\x05\xf5\xf8\xe3\x8f\xe3\xec\xd9\xb3\x74\xf8\xf0\x61\x3c\xf1\xc4\x13\x74\xfa\xf4\x69\x3c\xfe\xf8\xe3\x78\xf5\xd5\x57\xf5\x27\x3e\xf1\x09\x15\x0f\xbf\x65\x3d\x78\xfd\xa4\x02\x94\xef\x2e\x5e\x48\x40\xe0\xf1\x5d\xca\x92\xcb\x31\x5c\xab\x2a\x36\x03\x89\xde\xa9\xc6\xd8\xbb\x77\xaf\x3a\x79\xf2\xa4\xb5\x0c\x08\xb1\xd5\xa1\x61\x4a\x0a\x54\x39\xbc\x3e\xf2\xb8\xaf\xa9\x98\x1e\x8e\xd8\x1c\xc4\x31\xfb\x40\xfa\x9e\x4d\xbb\xa2\xe2\xd2\x85\x3d\xc2\x0a\xd5\xb6\x5f\xbb\x3e\xb3\xfb\x83\x8e\x67\x76\x0c\x4c\x17\x80\x56\x4a\x99\xd9\xd9\x59\xbc\xf3\xce\x3b\x2e\x0d\x92\xd5\xb8\x52\x68\xb9\x3f\xc4\xbb\x14\x52\xd7\xbb\xe5\xa1\xec\x6c\xb2\xc3\xba\x68\xe1\x71\x80\x34\x5d\xae\x4e\xea\x12\x0e\x97\x16\x95\xf4\x65\x69\x69\x09\x12\x40\x9a\x6f\xbc\x6e\xbc\x1c\x97\xf5\xc0\x7f\x5d\x80\xea\xea\xa4\x32\x6d\x56\x99\x59\xe5\x0c\xa3\x65\xe1\x88\x9b\x45\xbf\x2d\x9b\x83\xac\xab\xdc\x61\xe2\x02\x00\x3e\xfb\xd9\xcf\xd2\x33\xcf\x3c\x43\x17\x2e\x5c\x20\xdf\xf7\x95\xef\xfb\xe4\xfb\xbe\x07\x44\xc7\x1b\xc4\x7e\x38\x7f\xfe\xbc\x9a\x98\x98\xa0\xf3\xe7\xcf\xe3\xe1\x87\x1f\xa6\x8c\xd5\x18\xee\xf2\xea\x9b\x55\xbf\xbc\x3a\x65\x81\xa9\x91\x93\xa3\xbc\xe2\x1c\xd5\xfa\xcc\xb7\x76\xbb\x4d\x73\x73\x73\x18\x1b\x1b\xa3\x68\x5f\x4a\x74\xdc\x19\x80\x91\x8e\xaf\xbd\x85\xad\xf2\xc9\x6a\xc7\x9b\x01\xd8\x1a\x49\xa2\xf7\x18\x02\xb0\x20\x18\xf4\x76\x95\x4a\xbd\xc4\xac\x94\x28\x3e\xa1\x14\xaa\x99\xdd\xa2\x7e\x7b\xb9\xd6\x79\x0f\x44\xed\x78\x46\x3b\xac\x54\x2a\x66\x65\x65\x85\xb6\xb7\xb7\x65\xa5\xa5\x50\xc9\x8e\x06\x47\x1c\x17\x43\x79\x67\x73\x75\x30\x5e\x9e\xe4\x9f\x04\x21\x17\x8f\xa5\xe0\x49\x90\x81\x23\xae\xb0\xe9\x52\x9a\xdc\x35\x76\x97\xf9\xb9\xc0\x46\xf2\x2c\xcb\x2a\xc9\xb2\x1e\xb8\xcb\x8b\x23\x05\x55\x0e\xb9\x24\x70\x4a\x9a\x86\x89\x2b\x9f\x1f\x24\x3f\x97\x0c\xf1\x70\x4e\xbb\x33\xdf\x87\x1e\x7a\x48\x7d\xea\x53\x9f\xa2\xa7\x9e\x7a\x8a\x4a\xa5\x92\x22\x22\x2f\xfe\xe6\x2a\x3a\xaa\x30\x52\xe2\x05\xa4\xaf\x84\xf4\xe2\x4d\x5f\xaa\x58\x2c\xe2\xfc\xf9\xf3\x38\x7e\xfc\x38\xbd\xf1\xc6\x1b\x2e\x7e\x49\x59\xe3\x4e\xd6\x9f\xd7\x01\x19\xfe\x8e\x1e\xd8\x8b\x6b\x2d\x0e\x9e\x98\x0b\x99\x14\xd4\x84\x21\x5a\x6b\xba\x76\xed\x9a\xb6\xbb\x48\x01\x28\x63\x4c\x81\x88\x4a\x5d\xcf\x14\xc6\xda\xde\xcc\x7c\xbd\xf4\x70\xfa\xc8\x35\x9e\x9d\xf5\x4a\xa1\x41\x1a\x34\x78\x1a\x76\x19\x50\x2f\x2e\xbc\x6a\xdb\x1b\xbf\x3e\xdd\xfa\x61\xc7\x33\x3b\x20\x74\x89\x48\x2b\xa5\xcc\xd8\xd8\x98\xb9\x75\xeb\x16\x05\x41\x20\x1b\xdd\xa5\xe5\x5c\x0c\xcb\x42\x75\xce\x9b\xac\x4e\x9e\x57\x0e\x98\x7f\x5e\x9c\xbc\x70\x09\x42\xa9\xb6\x61\xe9\x5c\x9d\x5c\xd6\xcb\xc6\x71\x69\x49\x29\x30\x59\x40\x2b\xcb\x71\x75\x58\x29\x47\x2e\x61\x95\x43\x03\x20\xdf\x9a\x92\x96\x5e\x4a\xb9\x65\xf0\x8f\x5b\x5f\xbc\xde\x92\x17\x52\x69\x70\x1a\x24\xcf\x38\xf8\xf6\x59\xb1\x1f\xff\xf8\xc7\xd5\xb9\x73\xe7\xe0\x79\x9e\x05\x0c\x8f\x88\x0a\x44\x54\xf4\x43\x1a\x19\xe9\xaa\xb1\xf1\x96\x3f\x3d\xd5\x2c\xcc\x54\x5b\xde\x78\xb9\xab\x46\x09\x28\x18\x82\x32\x04\x05\x82\xdd\x28\x46\xe5\x72\x19\x67\xce\x9c\xc1\xde\xbd\x7b\x29\xe7\x2a\x54\xeb\x5c\x0a\x90\xd7\xdb\x49\xaf\xe0\x35\xe7\x85\x8d\x07\x0f\xfd\x8d\xc1\x33\x91\x9d\x24\xa5\xbd\xc6\xc7\xc7\xd5\x43\x0f\x3d\x64\x6f\xc1\x22\x8a\x2e\x93\x29\x12\x51\x39\x50\xc6\x3f\xbc\x5e\x3e\x53\x0a\xd5\x68\xea\x7e\x41\xb6\xaf\xbc\x77\x80\x6a\x5c\xab\x98\x92\xf4\x17\xcd\xd1\x8b\xb1\xa0\x42\x60\x87\x20\x13\x4a\x81\x9a\xe9\x78\xe6\xd6\xd2\x78\xfb\x5d\x43\xc9\xe7\xf6\x41\xad\x56\x33\xad\x56\x0b\xf7\xee\xdd\x1b\x88\x9e\x2e\xc6\x38\xe2\x93\x23\xcc\x3e\xbb\x04\xc8\x15\x9f\xf3\x95\xf3\x59\x86\x65\x95\xe3\xd2\x82\x79\x1a\x42\xfa\xf1\x32\x79\x5a\xd9\x79\xc0\xde\xc1\xfc\xb9\xd0\x65\x95\x2d\x01\x47\x0a\xb5\x6b\x18\xec\xaa\xa3\x86\x9b\x76\x5e\x07\xc9\x4b\x59\xa6\x04\x07\x59\x57\xa0\xbf\xb3\xf0\x3c\xe5\xe4\xb0\x4b\x7e\xb8\xec\xa4\xca\x29\x14\x0a\xea\xb9\xe7\x9e\xa3\xa3\x47\x8f\x02\xd1\x30\xc4\x8f\x95\x6b\x79\xa4\xa3\x26\x0f\xaf\x97\x4f\x9c\xbd\x5b\xfd\xc4\x13\x77\xc7\x3e\x77\x7a\xa9\xfa\x9b\x27\x57\x2a\xff\xf9\x89\xd5\xca\x67\x4e\xac\x55\x7e\xf9\xf0\xfa\xc8\xd9\xb9\xed\xd2\x9c\x21\xd3\x6e\x15\x74\x37\x54\x51\xbb\x10\x11\x94\x52\x66\x62\x62\xc2\x1c\x3c\x78\x90\x6e\xdc\xb8\x61\x3f\xb5\xb0\xe5\xf3\x76\x71\xcd\x89\xf1\x7a\x67\xc9\xa9\xb4\x84\x6d\xde\x49\x7a\x97\xc5\xe1\x42\x21\x5e\x50\x52\x60\xbb\xdd\xd6\xd3\xd3\xd3\x76\x33\x8a\x8a\xc1\xc3\x07\x50\x6a\x7b\x5a\xcd\x34\x0a\x07\xa7\x9b\x85\x43\xc9\xc9\x44\x09\x08\x50\xef\x03\x38\xc3\x32\x27\x7b\xd4\x1a\xf5\x3c\x01\x98\x04\x4d\xe2\xbb\x66\xe3\x38\x04\x40\x19\xf2\xc6\x5b\xfe\xcc\xad\xc9\xf6\x4f\x9b\x05\xbd\x01\x8a\xce\xe9\x00\x60\xa6\xa6\xa6\xcc\x6b\xaf\xbd\xe6\xd2\x34\x52\xe3\x70\x2d\xc8\x19\x25\xfd\x25\xfa\xda\x78\x72\x78\x27\xad\x35\x39\xf4\xe3\xe1\x2e\xd0\xe2\x79\xcb\xb2\xa5\x30\x4b\xed\x2b\xb5\xa1\xac\x33\x44\x5a\xde\xa6\x70\xbc\xcb\x09\xc0\x2c\xcb\x85\xcb\x4d\x9e\x85\x21\xe7\x7b\x24\x3f\x64\x79\xae\x76\xe3\xd6\x91\x2b\x0e\x84\x7f\x16\x7d\x12\x50\x80\x7e\xcd\x3d\x88\xbf\x60\xfe\xc9\xbb\xef\xfb\xea\x97\x7e\xe9\x97\x60\x41\x23\x56\xa8\x25\xcf\x50\x75\xff\x66\xe9\xe8\x47\xae\x4f\xfc\xce\xe3\x8b\x63\xff\x66\xdf\x76\xf1\x3f\x1b\xeb\xf8\xe7\x4a\xa1\x3a\x54\xd0\x6a\xae\xa0\xd5\xbe\x52\xa8\x0e\x55\x3b\xfe\xd9\x99\x9d\xc2\xc7\x0e\x6f\x94\x3f\x34\xdb\x28\x4e\x35\x8b\xe1\x5a\xa3\x14\xee\xea\xf8\x66\x16\x8a\x0e\xeb\xd6\x07\x0e\x1c\xc0\xbb\xef\xbe\x0b\x7e\x3d\xa6\x83\x7e\x97\x9c\xcb\xb6\xe0\x71\xac\x93\x7e\x09\x9f\xa5\xc5\x21\x1b\xc5\xa5\x05\x53\x85\xbf\xf7\xde\x7b\x3a\x3e\xb1\xc8\x1e\xeb\xee\x19\x63\x4a\xda\x43\x11\x40\xf9\xd0\x46\xf9\xd1\x82\x56\xa5\x1e\x68\x44\xe5\xc7\x47\x93\x8a\x83\x8b\xd2\x4a\x2b\x59\x94\xa1\x34\x58\xc8\xab\x94\x0b\x21\xed\x51\x86\x36\x6f\x4f\xb6\xaf\x6a\x95\x6c\xf3\xd5\xc5\x62\x51\x07\x41\x40\xf7\xee\xdd\x93\x75\x94\x82\xcd\x4d\x66\x08\x7f\xa9\xe1\x65\xe7\x76\x69\x4e\x57\x5e\xbc\x11\x64\xc7\x93\x9d\x87\xa7\xe3\xf9\xb9\xb4\xb7\x8c\x23\xb5\xa1\x8b\x3e\x97\x85\xc4\x9d\xcb\xbc\xe5\x74\xcb\x77\xa9\x7c\xa4\x80\x4a\x2d\x2d\x01\xc3\x35\x3f\x90\xa7\xfd\x24\x0d\xb2\xbe\x79\x16\x82\x9c\x0f\xb0\x4e\x82\x15\xcf\x07\x70\xe7\x6b\x79\x09\x46\x07\x94\x52\xf4\xb1\x8f\x7d\x0c\x87\x0f\x1f\xb6\xbb\xab\x8b\x44\x54\xf6\x43\x1a\x3f\xbb\x38\xf6\xec\x47\xde\x9d\xf8\x0f\x7b\x76\x0a\x9f\xf1\xb5\xda\x03\x90\x97\x3e\x91\x9c\x1f\x32\x4c\xca\xd7\x6a\x66\x62\xd7\x7f\xfa\xc0\x66\xf9\xd1\xae\x67\xee\xde\xaf\x76\xd7\xec\x45\x4e\x1c\x3c\xae\x5e\xbd\x2a\xc1\x60\x18\x4b\xd4\xc5\x8f\xbc\x76\x4e\xd2\x72\x8b\x43\xa2\xa8\x8b\x41\x96\x89\x29\x73\x6c\x7e\x7e\x1e\xd5\x6a\x95\xc0\x26\x75\x00\x94\x5b\x05\x8d\xf9\x7a\xe9\x58\xad\xe5\xcd\x25\xcc\xb0\xb7\xa8\x9b\x18\x06\xe2\x12\xec\xbe\x8d\xe4\xd6\xb0\xb8\x24\x8a\x11\xc6\x5a\x29\x96\xf4\xe4\xce\x0a\x44\xdf\xb0\xd4\xda\xde\xdc\xca\x58\xf7\x95\xad\x72\xb0\x4a\xd1\x05\xc7\x5d\x00\x66\xdf\xbe\x7d\x26\x3e\x5e\xd0\xd6\x89\x77\x34\xfe\xcc\xfd\xf2\x1a\xc1\x85\xe0\x10\xe9\xa5\x76\x72\xc5\x4b\xf1\xd1\x91\x07\x6f\x30\xdb\x3e\x2e\x8d\x9c\x45\x9b\x4d\x03\x47\x78\x96\x96\x87\x23\x6d\x16\xe8\x66\x81\xb0\xab\x6e\xc6\x11\xdf\xa5\xa0\xf2\xe4\x4d\x5a\x2a\x2e\x8b\xc0\xa6\x93\xf9\x70\x3e\x64\xcd\xa3\x48\xb0\x92\x34\x66\x69\xea\x3e\xab\xe9\xd4\xa9\x53\x78\xec\xb1\xc7\x12\xd0\x00\x50\xf6\x42\x4c\x5c\xb8\x5d\xfb\xd8\x93\xb7\x6b\xff\xa1\x1c\x78\x0f\xdb\x6b\xae\x7a\x32\x9f\xc8\x72\x8f\xf9\x31\x85\x64\x40\xa5\xd0\x5b\x98\xaf\x97\xce\x05\x9e\xb9\x75\xaf\xd6\x5d\x06\x45\x5f\xd8\x02\xc0\xc8\xc8\x88\xde\xdc\xdc\xa4\x8d\x8d\x0d\x08\x1a\x49\xd0\x2e\x79\x25\xfb\xc0\x30\xed\x9c\x00\x87\xab\xe1\xb3\x84\xbf\xcf\x44\xd5\x5a\xf3\x3d\x1d\x76\xae\xc3\x27\xa2\x62\xe0\x19\xcf\xd7\x34\xba\xb0\x59\x3e\xed\xe9\xde\x87\x6f\xc9\x19\x89\x3d\x7c\x48\x40\xa4\xb7\xbd\x9c\x5d\x20\x83\xde\xc5\xc9\xc9\xbc\x88\x01\xf8\xa4\xaa\xaf\x69\xbc\xda\xf6\x8a\x37\xa7\x5b\xaf\x74\x3d\xb3\x83\xde\x99\x98\x18\x1d\x1d\x35\x6f\xbf\xfd\xb6\x6d\x0f\x17\xfa\x2a\x87\x3f\x8f\xaf\x45\x5c\x39\x01\xc5\x35\x93\x6b\xcc\xed\x2a\xc3\xa5\xdd\x5c\x5a\x8e\x3f\xdb\x5f\xd9\xe9\x64\x79\xb2\x43\x4b\x93\x9c\xd7\x05\x0e\x7f\x5e\x5e\x16\xc0\xf2\x7a\xf1\x32\x5c\xf4\x72\xbe\xb9\x14\x93\x1c\x8b\x73\xfe\xf2\xf2\xf8\x3b\xe7\x67\x5e\xc7\xe6\x65\x01\x69\x3e\xf3\xb2\x24\xa0\xf1\x5f\xee\xa4\xdc\x48\xbe\x99\x4f\x7f\xfa\xd3\xa4\x94\x52\xf1\xaa\xc9\x08\x0c\x6a\x27\x57\x2a\x4f\x3d\x73\x63\xfc\xdf\x97\x02\xb5\x60\x51\x81\xf8\x91\x13\xf2\xf8\x09\x83\x64\x8b\x82\x3d\x5e\xc2\x33\x98\x9a\x6d\x14\x4f\x6d\x97\xc3\x9f\xdd\x1f\xed\xae\x01\xbd\x61\xf9\xb1\x63\xc7\xcc\xc5\x8b\x17\x79\x5d\x24\xdf\xa4\xe5\x67\xeb\x22\xfb\x35\xd0\x2f\x4b\xfc\x37\x01\x0e\x39\x79\x22\x1b\xd9\xc5\xcc\x54\x81\x23\x23\x23\xea\xf1\xc7\x1f\x4f\xf2\x88\xe7\x3b\x7c\x00\xe5\xdd\xa2\xc6\xc2\x66\xf9\xe1\x6a\xd7\x9b\x4a\xb1\xdf\xde\x01\x91\x30\x0e\xe9\xe6\x35\xb1\x27\x03\x18\x39\x2f\xd2\xab\x92\x01\x19\xc2\x68\xd7\xdb\x1f\x2a\x73\x67\xb1\xd6\x7e\x4f\xc3\x74\x62\x73\x2e\xa8\xd5\x6a\x86\x88\xb0\xb8\xb8\x08\x87\x93\xda\x57\x3a\x2e\xd4\x2e\x20\x80\xf0\x93\x69\x65\x63\xb9\x26\xfd\xb8\x3f\xd0\xdf\x70\x2e\xcd\xc8\x69\x97\x74\xbb\x26\xc5\xe4\x38\x5c\xa6\xe1\xda\x38\x6b\xc8\xc6\x3b\x08\x0f\x97\x40\x22\x35\x1c\xc4\x2f\x6f\x41\x17\x68\xf4\xc9\x98\x83\x06\x17\xd8\xc9\x49\x67\x08\x7f\xc9\x2b\xa9\x00\x24\x58\xb8\x68\x90\xf3\x63\x3c\x9d\x01\x80\x27\x9f\x7c\xd2\x9e\x55\x53\x32\xc6\x54\x66\x1b\xc5\x23\x1f\x79\x77\xf2\xdf\x56\x3b\xde\x19\xae\x0c\xa3\x02\x4c\x32\xf1\x9f\x12\x26\xe2\x8d\x1c\xa5\x21\x22\xf8\x9a\xa6\x27\x77\xa3\x39\xbd\x96\x1f\x36\xd9\x87\x6d\x7a\x74\x74\x94\x6e\xde\xbc\xc9\x79\xc5\x79\xc0\x65\x40\x02\xa9\x0b\x1c\x5d\xbc\x4a\xda\xcd\x5a\x1c\x12\x6d\x65\x62\x97\xa0\x26\x05\x06\x41\x60\xca\xe5\x32\xcd\xce\xce\xda\x43\x5e\x15\x11\x79\x44\x54\xe8\x7a\xc6\x2f\x06\xaa\x7a\x60\xab\xf4\x48\x7a\x69\x96\x52\x3f\x7d\x64\x8b\xe3\xec\x48\x3e\x10\x20\x97\x61\x08\x28\xd6\x5a\xfe\xde\x95\xb1\xee\x2b\xdb\x23\xe1\x3a\x18\x22\xef\xd9\xb3\xc7\xbc\xf2\xca\x2b\xae\x89\x42\xce\xb4\x41\x1d\x70\x90\x9f\x64\x76\x96\x39\xec\xea\xec\x32\x9e\x7c\x96\xf4\x71\x20\x18\x14\x4f\x76\x38\x57\xde\x1c\x34\x5c\x13\x8d\x2e\xcb\x33\xcb\xda\x92\x71\x78\xb8\x04\x5d\x2e\x7b\xd2\x62\x90\xd6\x89\x34\xbf\x6d\x5d\x5d\x7c\xe5\x65\xba\xf2\xe6\xe9\xa4\x39\xee\x2a\x43\xc6\x71\x5a\x26\x2f\xbd\xf4\x92\x42\x24\xff\x05\x00\x15\xcf\xd0\xc4\xf9\xbb\x63\xbf\x76\x68\x63\xe4\x5f\x11\xc8\xb7\xb7\xad\x44\x19\xd9\xc9\x7e\x82\x38\x29\xd3\x1a\x25\xec\xda\x10\x2b\xe3\x84\x72\xa0\x66\x0c\xe1\xde\xad\xa9\xf6\x35\x44\x9f\x5b\x84\x00\xf4\xc4\xc4\x84\xdd\x35\xcd\xe9\x73\x59\xc9\x40\x9a\xe7\xdc\x49\xe0\x94\x16\x2a\x01\xbd\xf3\x38\x24\x30\x70\x06\x4a\xe7\x2c\x70\x64\x64\x84\x0e\x1f\x3e\x6c\xe7\x2a\xec\x5c\x47\x11\x84\x42\xb3\xa8\xf5\xc2\x66\xe9\x64\xa5\xeb\x4d\xf4\x65\x98\x21\xee\xa9\x6b\x12\x08\xe8\x7d\x3e\x6b\x92\x49\x53\xcb\x4c\xbb\x3c\x4b\x44\x28\x86\x34\x35\x12\x78\xe6\xce\x44\xeb\xf5\xae\x67\xda\x88\x8e\x5a\x0b\x3d\xcf\xc3\xec\xec\x2c\xde\x7b\xef\x3d\xc4\x27\x46\x73\xd3\x96\x0b\x8a\x4b\x30\x5c\x80\xe9\x02\x08\xc9\x3f\x39\x1c\x01\xcb\x57\x3a\x57\xfe\xb2\xc3\xc8\x8e\x21\x05\x77\x10\xb0\xb8\x34\x4d\x56\x7e\xdc\x8f\x44\x3c\x69\x5d\x65\x75\x28\x9e\x87\xe4\x91\x54\x54\x12\x28\x6c\xbe\xb2\x4c\xd9\x21\xb8\x93\xfc\x96\x20\xc2\x3b\x80\x9c\xa7\xe0\xe5\x71\x10\xcd\x02\x89\xbe\xb9\xc1\x0f\x7c\xe0\x03\x34\x37\x37\x07\x44\x73\x7c\x45\x00\xd5\x89\x5d\x7f\xe1\xc9\x5b\xb5\xdf\x1b\xed\xfa\x47\xa2\xc8\x71\x11\xc9\xbe\xa4\x18\x31\x92\x39\x8e\x1e\xa0\xc4\xff\x7a\xdf\x7f\xda\xa8\x40\xb1\x1c\xa8\xd1\x1b\x53\xad\x1f\xb6\xfc\x70\x3b\x9e\xcf\x4b\xac\x8e\x5b\xb7\x6e\x65\x0d\xb7\xa4\xac\xbb\x14\x80\xe4\x91\x93\x37\xdc\x84\xe3\x8e\xfb\x6b\x16\x6e\x9f\x15\x8b\xa3\x00\xa8\x6b\xd7\xae\xe9\x7a\xbd\x6e\xf7\x65\x04\xf1\xe9\x5c\x0d\x63\x4c\x7d\xbb\x14\x2c\xbe\x35\xdb\xfc\x91\x26\x93\x94\x63\xa2\xd9\x51\xfb\x96\x2e\x3d\x9e\x3c\x85\x3d\x1d\xc9\x80\x43\xaf\x43\x1a\x28\xc9\x4b\x01\xfe\xc2\x46\xe9\xf9\xd3\x4b\xd5\xe7\x94\x46\x15\xd1\xed\x65\x45\x00\x58\x58\x58\xc0\xb3\xcf\x3e\x0b\xdf\xf7\xa5\x69\x2c\x4d\xf4\xac\xf1\xad\x8b\x17\x60\x71\xb5\x88\x9b\xc5\xdf\x2c\x9e\xca\x67\x25\xe2\x49\x9a\x64\x18\xf7\xe3\x75\x94\x42\xa0\xc5\xbb\xa4\x39\xab\x0c\x57\x7d\x5d\x75\xe6\xf1\x64\x5d\x78\xb9\xc3\xf2\x4d\xbe\xcb\xfc\x64\xbe\x79\xfe\x92\x3e\x99\x2f\x06\x84\x65\xb5\xab\x3e\x71\xe2\x44\x52\xe7\xf8\xea\x90\xf2\x5c\xbd\x78\xa2\xd6\xf6\x4f\x24\xba\x0f\xd6\xa0\x8e\x05\x36\x06\x0f\x3e\x54\x49\xce\xb2\x41\x2f\x0a\xc5\xbf\x30\x51\x78\xb5\xe5\x9d\x98\xab\x17\x4f\x12\x51\x25\x2e\x4b\x11\x91\x9a\x9c\x9c\x84\x70\xb2\xcd\x64\x58\x5e\x7b\x67\xf1\x26\xd5\x80\x32\x92\xab\x81\x65\x87\x4b\x11\xf6\xf5\xaf\x7f\x5d\x1b\x63\x34\x90\x5c\x4a\xdd\x04\xd0\xd0\x84\xcd\xb7\x67\x76\x2f\x6f\x8e\x04\x77\x12\x66\x18\x4a\x70\x2f\xb9\x28\x2f\xe1\x55\x0f\x24\xc0\x7e\xa4\x23\x8e\x37\xc6\xfe\x47\x28\x68\x9a\x3a\xbd\x34\xfa\xe2\x81\xcd\xf2\x49\x18\x54\x11\xa1\xbf\x0f\x40\x9d\x38\x71\x02\xb1\x56\xc8\xd2\xfa\xb2\xbe\x29\x80\x64\x71\x5d\xe3\x72\xf9\xe7\xca\xdb\xe5\xa4\x30\x4b\xde\xcb\x38\x3c\x5d\x1e\x38\x49\xfa\xb2\x3a\x86\x4b\xb8\x5c\xc2\x24\xf3\x73\x75\x70\x99\x2e\xaf\xc3\x0d\xea\xc0\x59\x75\x76\xd1\x24\x5d\x56\xfb\x64\xa5\x1b\xa6\xde\xb9\xfe\x95\x4a\x25\x29\x9b\x88\x7c\x18\x94\x27\x9b\x85\x63\x9e\xa6\x1a\x80\xb4\x45\xcd\x8f\x0c\x8c\xaf\xa1\x48\xb9\xac\x93\xe7\x29\x4a\xeb\x6b\xaa\xee\xdf\x2a\x9d\x42\xa4\x18\xfd\xf8\x1a\x07\x2b\xdb\x09\x1d\x0e\x9a\xf3\xc0\x23\x4f\xbe\x53\x6e\x90\x06\xca\x73\x2e\x81\x56\x8d\x46\x03\x31\x78\xf4\x4e\x63\x26\xd4\xb7\x4b\xc1\x9d\xab\x7b\x77\x5e\xd6\xb0\x56\x87\x49\x8c\xc9\x14\x8b\xe4\xc8\x57\x8e\xc0\x20\xfc\x52\x71\xe2\x71\xa0\x21\x8c\xb5\xbd\x93\x1f\xb8\x35\xf6\xdb\xd5\x8e\x37\x0b\xa0\x62\x8c\x29\xda\x7b\x67\x3f\xfa\xd1\x8f\xda\x3a\x67\x31\xca\xba\x41\x16\xc6\xa0\xb8\x79\xe0\xeb\xb2\x2a\xe0\x78\xce\x13\x68\x97\xb6\x76\xc5\x75\x99\xd9\x2e\xcb\x24\xcb\x0d\x02\x4c\xeb\x9f\x05\x78\x92\xbe\xbc\x67\x9e\xc6\xc5\x1f\x19\x2f\x8b\x7e\x97\x3c\xe7\x81\xab\xcb\x42\x73\x95\xe1\x2c\xaf\x56\xab\x29\x00\x60\xf7\xb0\xf8\x9e\x41\xb9\xda\xf1\xe6\x94\x89\xae\x2d\x00\x33\xa0\xed\x32\x6c\x9c\x86\xad\x20\xb2\x88\x89\x33\xf1\xff\xd1\x6f\x6c\x81\xa8\xb1\xb6\x77\x00\x06\x65\xfb\xcd\x8b\x31\x46\x19\x63\x30\x33\x33\x23\x2d\xb9\x3c\xfa\xb3\x14\x8a\xac\x7b\x2a\x9d\xcb\x84\x95\x9a\xc4\xa5\x85\xb2\xb4\x23\x2e\x5d\xba\x64\xc3\x35\xe2\x4b\x8b\x8d\x31\x75\x4d\xd8\xbc\x36\xd3\xbc\xb8\x5e\xe9\xde\x32\x31\x68\x24\x46\x82\xfc\x65\x23\x71\x63\xad\x36\xe2\xec\x34\xc9\xe8\x05\x88\xc3\x48\xb0\xdb\x40\xed\xab\x97\x3e\x7e\xfe\xd6\xd8\x67\x94\xc6\x04\x80\x8a\x65\x6e\xa5\x52\xc1\x67\x3e\xf3\x19\x69\x55\x48\x26\x4b\xcb\x41\x89\xb8\x2e\xa6\x66\x35\x8a\x0b\x64\xa5\xbf\xcb\x5a\x71\xf9\xe7\x95\x9b\x95\x7e\x50\x87\xce\xcb\x43\xba\xa1\x4c\x59\x96\x97\xe4\x95\x2b\x4e\x56\x19\xfc\xd9\x65\x69\x70\x70\x76\x69\xcd\xbc\x7c\x86\x2d\xd3\xa5\x30\xfa\xfa\xc4\x99\x33\x67\x00\x24\x43\x10\x05\xc0\x27\x43\x45\xa5\x51\x96\x96\x73\x32\x99\x10\xcf\x80\xf6\x40\xc4\x0a\x31\x21\x6d\x80\xf4\x26\x46\xd9\xbb\xf2\x35\x55\x11\x6d\x2e\xf3\x11\x59\x39\x20\x22\xac\xae\xae\xe6\x59\x88\x59\x7c\xe0\x75\x95\x06\x85\x7c\xce\x6c\xd0\x2c\x21\x70\xc5\x4f\x31\xf1\xad\xb7\xde\x82\xb5\x3a\xe2\x33\x19\xe3\x1b\xb7\xb1\x59\x2f\x87\x8b\xaf\xed\xdf\xf9\x07\x4d\x08\xe4\xf8\xc3\xce\x79\xf0\xb9\x8f\x04\x61\xe3\x67\xb2\x43\x1b\x4a\x8c\x95\x5e\x1c\x63\x22\x84\x31\x48\x26\x9a\x94\xa1\xca\xa9\x7b\xa3\xff\xc5\xa3\xcb\xa3\x1f\x20\x50\x15\xd1\x2d\xed\xbe\x31\xc6\xdf\xbb\x77\x2f\x3e\xfc\xe1\x0f\xab\xb8\xa1\x25\x63\x5d\xcc\x92\x56\x84\xd4\xf6\x9c\x6f\xb2\x91\x78\xfa\x3c\x7e\xeb\x9c\x3f\xe9\xb2\xac\x08\x49\x23\x90\x4d\x0b\x90\x5d\x07\x97\xb0\xd9\xbc\x24\x1d\x79\x75\x92\x4a\x08\xe2\x37\x4f\xdb\xb9\xca\xcb\xa2\x43\xa6\x19\x64\x25\x0c\x02\xd0\x41\xef\xa9\x5f\x7b\x34\x60\x3c\xe4\x50\x00\x94\x01\x7c\x13\x83\x43\xda\x86\x30\x4c\xfa\xed\x37\x5b\xc6\x62\x46\x14\x4e\xd2\xea\x88\xf2\xb6\xb6\x07\x00\x74\x95\x09\x0c\x12\x0b\xa7\x7f\xb8\xd3\xcf\x67\x09\x0a\xae\x3a\xca\x70\x17\x2f\x95\x6c\x38\x57\xa1\xd6\x49\x21\x96\x02\x96\x10\x15\x5f\x32\xa3\x81\x68\xae\x83\xa2\xbb\x1c\x1a\x20\xac\xbf\x35\xd3\xbc\xb8\x52\xed\xbc\x63\x2c\xf3\xc8\x1a\x18\x0c\x55\x8d\x9d\x59\x66\x8b\x29\xe8\xa1\x45\x72\xd7\x0a\x4b\x87\x18\x6d\xa3\xe4\x94\xdc\x06\x57\x08\x69\xf6\x99\x1b\xe3\xff\xdd\xde\xed\xe2\x51\x18\x54\x89\xa8\x1c\xef\x33\x51\x8f\x3c\xf2\x88\x1d\x56\x49\xc6\x66\x69\xca\x3c\x61\xcc\x02\xd5\x2c\xed\xef\xea\xd8\x83\x2c\x97\xbc\xb6\xca\xd2\xec\x79\xda\x87\x97\xe5\x1a\x2e\x48\x61\xcb\x02\x88\x3c\x8d\xe6\x02\x4c\x29\xb4\x2e\x70\x71\x81\xac\x8b\x8e\x2c\xfa\x25\x8d\xfc\xd9\x65\x9d\x00\x69\xfa\x5d\x74\xba\x80\x5c\x03\xc0\x87\x3f\xfc\xe1\x24\x2f\xdb\x81\x43\x65\x74\xbd\x1c\x6c\x1a\x42\x90\x1e\x75\xa7\x95\x66\xef\x7c\x7f\xf4\x2c\x0f\x31\x41\x0a\xa0\xf7\xe9\x45\xa4\x3c\x83\xb5\x6a\xf7\x0e\xff\x48\x34\xde\x80\x89\x4f\x7e\xf2\x93\x52\x0e\xf2\xea\x64\xfd\x5c\x3c\x92\xef\x89\x5f\x56\x03\x48\x53\x4c\x89\x3f\x20\x9b\xf9\x00\x80\xad\xad\x2d\x9b\x36\x88\x6f\x91\x6a\x00\xd8\x6c\xfb\x7a\xe5\xe2\xc2\xf6\x77\x3b\x9e\x69\xa6\x60\x58\xcc\x5b\xf0\xc3\x8e\x93\xf0\xac\x45\x3a\xf1\x4c\xd6\xf2\x88\xe7\xaa\x2b\x5d\x75\xf2\x63\x6f\x4f\xfe\x37\xb5\x96\x37\x8f\x68\xbe\xa3\x8c\x78\xb2\xf4\x85\x17\x5e\xc8\x13\x16\xa9\xc1\x91\x13\x4f\xc6\xcf\xf2\xcf\x02\xe4\x2c\xf0\x70\x81\xbb\xab\x0c\x57\x3d\x24\x58\xb9\x34\x4e\x1e\xe0\x0c\xa3\xed\xf3\x34\x74\x16\x60\x48\xeb\x2e\x0b\xb0\xb3\xac\x96\x2c\x10\xcd\x12\x7e\x29\xbf\xae\xb6\xcb\x02\xa5\x41\x6d\xd2\xc7\xbb\xc4\x8a\x25\xe8\x8d\x4a\xb0\x12\x28\xd3\x4a\x0d\xcb\x93\xc9\x0e\x2e\xc0\x88\x97\x68\x79\x46\x48\x85\x25\x49\x89\xd0\xf6\x74\xe3\xf6\x44\xeb\x5d\x08\x5e\x10\x11\x7e\xfa\xd3\x9f\x42\x38\x97\xa2\x70\x29\xcb\x2c\x59\xe9\x93\x41\x17\xe2\xb8\x98\x2d\x3b\x00\x77\x2e\xc1\x55\xdf\xf8\xc6\x37\x34\x00\xbb\xca\x12\x20\x5e\x61\x01\x61\xf3\xe6\x54\xeb\x8d\xdb\x13\xed\x2b\x26\x36\xcf\x52\xab\xb2\x82\x97\x89\x4b\x2d\xdf\x5a\x3f\x96\xd8\x82\x34\x00\x43\x1c\x70\xa2\xa5\xae\x3d\x8d\xc2\xc7\xff\xc5\xf5\x89\xdf\xae\xb4\xd5\x1c\x11\x55\x10\x8d\x0d\x55\xb9\x5c\x56\xbf\xf9\x9b\xbf\xe9\xea\x20\x2e\x4b\xc1\xe5\x9f\xe5\xc7\x79\x22\x41\x17\x0e\xff\x3c\xad\xec\xca\x3b\xab\xbc\xbc\x67\x97\x36\x97\x42\xe1\x52\x1a\x59\xfe\x79\x61\xdc\x3f\x0b\x10\x24\x9d\xd6\x65\x59\x29\x2e\x10\x95\x65\x02\xfd\xb4\x64\x01\xaa\xcb\xb9\xda\xd9\x05\xfc\x29\x00\x5e\x59\x59\x01\x90\x68\x7d\x2b\xfb\xc1\xf2\x58\xe7\x66\xbd\x1c\x2c\xda\xe5\x54\x3b\xf8\x8e\xf4\x1a\xa5\x15\x9f\x58\x49\x31\xd6\xb2\xe6\xe7\x6c\x22\xb2\xc6\x37\x47\x82\x3b\x6b\xa3\xdd\x45\x44\xd7\x39\xda\x7e\x86\x98\x16\x57\x5b\xe4\x29\xa7\xbc\x7a\xcb\x7c\x00\x40\xe7\x35\x1a\x7f\xce\xb5\x2e\xd0\xdf\x98\x1a\x00\xee\xdf\xbf\x6f\xaf\xcf\x4b\xe6\x3a\x8c\x31\x9b\x1d\xa5\xd7\x5e\x39\xb0\xfd\x0f\x8d\x52\xb8\xd6\x4b\x92\x98\x0b\xbd\xd7\x14\x90\xb0\x25\xab\xc4\xa2\x60\x23\xbe\x38\x5e\x32\xbc\xe1\x13\xac\x06\x20\x03\xff\xf0\xfd\x91\xcf\x3e\x75\x73\xfc\x37\x4a\x5d\xb5\xc7\xae\x7f\x1b\x63\xf2\xc0\xc3\x55\x37\x57\x58\x9e\x06\x74\x69\x78\x97\x93\x9a\x34\xab\x6d\x06\x85\xb9\x2c\xc6\xac\x32\xb3\xac\xa6\x3c\xc1\xca\x7a\x1f\x46\xe0\x5c\x7e\x92\x5e\x09\xa6\x59\x16\x41\x56\xbe\x12\x18\x64\x79\x59\xe0\x2d\xdf\x5d\xe0\x96\x95\x56\xdf\xb8\x71\x03\x00\xec\xdc\x9e\x8e\xef\x54\x69\x6d\x97\x83\xf5\x5b\x13\xed\xd7\x34\x8c\xe6\x0b\x85\xc9\xd0\x25\xfe\x46\xa5\xe7\x8c\xcd\x27\x99\x3c\xed\x1d\xce\x1b\x09\x78\x48\xe8\xbc\x37\xdd\xba\xb4\x5b\xd0\xf5\x78\xbf\x94\x3d\xac\x5b\x03\xb0\xab\x2a\x96\xde\x41\x80\x20\xeb\x98\x09\x16\x3c\xae\x3c\xe5\x5c\xee\x1a\xe3\x05\xf1\x5f\x6e\x17\xd8\x77\xae\xff\x0d\x00\xd5\xed\x76\x71\xe4\xc8\x11\x63\xec\xf1\x45\x91\x53\x44\xe4\x6f\x17\xc3\x70\xa4\xeb\x8d\xed\xdd\x2e\x1e\x55\x20\x95\xec\x72\x61\x73\x19\x46\x64\xd8\xdb\x57\x67\xe7\x3c\xa8\xc7\x57\xea\x01\x76\x54\x58\x64\x69\xf0\x0b\x25\x15\xa8\x38\xb5\xeb\x9f\x04\x61\xf9\xde\x58\xe7\x56\x48\xc6\xde\x70\xa5\x7d\xdf\xc7\xa9\x53\xa7\x70\xe7\xce\x1d\xda\xdd\xdd\xd5\xac\x3e\x94\xc1\xc4\xbe\xfa\xb2\x70\x23\xd2\x4a\xdb\xc8\x95\x9f\xcd\xc3\x95\x46\xf2\x37\xab\x51\xb3\xca\x49\x19\x76\x22\x8e\xa4\xdf\x45\x7b\x56\xbb\xf3\x70\x23\xe2\x6a\x11\xc7\x20\x2d\x5b\x52\xd6\x5c\xf9\xf1\x32\xf3\xf2\x87\x78\x36\x8e\xfc\x79\x7a\x99\x8f\x7c\x97\x74\x0e\x8a\x8b\x30\x0c\xcd\xf1\xe3\xc7\xa9\x5c\x2e\xdb\xbb\x86\x7c\x44\xa7\x78\x95\x9a\x85\xd0\xec\xaf\x97\x4f\x54\xba\xde\x04\xac\x44\xb2\x25\xd8\x48\x96\x39\xdb\xf9\x01\x57\xac\x23\x18\x82\x21\x83\xfb\xa3\xdd\xf7\x7e\x7c\xa8\xfe\x7f\xb7\x8a\xfa\x36\x80\x0d\x22\x6a\x18\x63\x5a\x44\xa4\xef\xde\xbd\x2b\x3f\xad\x70\xd5\x5f\xf6\x65\xc9\x73\x57\xdb\xf1\x7c\x0c\x07\x0e\x99\xa9\x6d\x0c\xdb\x10\x7c\x86\x41\x36\x2a\x47\xab\x44\xe8\xd6\xd7\xd7\xcd\xe4\xe4\x24\x4d\x4e\x4e\x26\xa0\x1a\x1f\x33\x58\x00\xc1\xdb\x2a\x07\xad\x7d\xdb\xa5\xc3\xd5\xb6\x37\x0d\x43\x3d\x4b\xcd\x4e\x88\xb2\x6e\x90\x3a\xd4\x98\x5f\xb1\x10\xff\xa6\x3e\xb9\x4f\xfc\xd8\x57\xb5\xf1\x64\xa9\xd2\xaa\x32\xdd\x2c\x9c\xe8\xf8\xe6\xf6\x5a\xb5\xbb\xac\x09\xdd\xb8\x44\x5d\x28\x14\x70\xe8\xd0\x21\xb3\xb8\xb8\xc8\xc1\x83\xf3\x46\x76\x7a\xd9\xc1\x39\xa3\x65\xa7\x07\x8b\xe3\x12\x42\x72\xa4\xcf\x7a\xe7\xcf\xc8\x88\xc3\xe9\x74\x85\xb9\x80\x44\xd2\xeb\xca\x47\x09\xff\x2c\x59\xc9\xeb\xdc\x36\xae\x2b\x7f\x57\x19\xbc\xce\x9c\x0e\xc9\x3b\xae\xfc\xf2\xe2\xe4\xd1\x20\x95\xc5\xa0\xdf\x84\xde\xd1\xd1\x51\xcc\xcd\xcd\x25\xdf\x6b\x21\x9a\x47\x2b\xee\x16\x34\x19\x32\x6a\xbe\x5e\x7a\xa8\x90\xdc\x37\x64\x01\x41\x60\x78\x2a\x0c\xa9\x61\x8a\x21\x60\xb7\xa0\xeb\x3f\x3e\x54\xff\xab\xdb\x93\xed\x57\x41\x58\xa5\xf8\x8e\x5a\xbb\xed\xfc\xeb\x5f\xff\x7a\x56\xdd\xf2\xda\xa5\x87\x58\xfd\x71\x64\xbb\x18\xa0\x77\xe6\xa8\x71\x24\x94\x08\x25\x2d\x11\x1b\x9f\xd5\xba\x6f\x96\x42\x5d\xbf\x7e\x5d\x3f\xf6\xd8\x63\xe4\x79\x9e\xbd\xf9\x8d\xe2\x71\x60\xa1\xe3\x1b\x13\x28\xa3\x0e\x6c\x96\x8e\xfb\x46\x95\xc8\x66\x91\x8c\xe7\x4c\x8f\xb1\xb1\x99\x66\xad\x8e\xd4\xf8\x90\x53\x10\xb3\x80\xaf\xbc\x20\x06\x8d\x68\xe5\xc5\xc0\xd7\x34\x31\xd3\x28\x3c\xd4\x2a\x98\x1b\xf7\x47\xbb\xab\x86\x92\x4f\xf0\x4d\xa1\x50\xc0\xc1\x83\x07\xcd\xd2\xd2\x12\x35\x9b\x4d\x17\x78\xb8\x9e\xe1\x68\x04\x89\xe0\xca\xf6\xcf\x8e\x00\x00\x20\x00\x49\x44\x41\x54\x52\x93\x73\x1e\xca\x06\x93\xf9\x48\x6d\x3a\x6c\xbe\xb2\x5d\xa4\x20\x48\x6d\x8e\x01\xef\xb2\x5e\x36\x5c\xf2\x44\xd6\x0d\xe8\x17\x58\x57\x3d\x6c\x3c\x9e\x87\xac\x23\xa1\x9f\x1e\x09\x9c\xd2\x3a\x92\x8a\x4f\x00\xe2\x3b\x1d\xc4\xe6\x9b\xc5\x07\xc2\x60\x1e\x26\xf4\x37\x1a\x0d\x3a\x75\xea\x14\xdf\xcb\x11\x81\x07\xc1\xdf\x18\x09\x76\x94\x41\x61\xb6\x51\x3c\xa4\x0c\xf9\x29\x59\xb7\x2e\x01\x09\xeb\xdf\xfb\x72\xd6\x10\xd0\xf2\x75\xe3\xd5\xfd\x8d\xff\x78\x65\xdf\xce\x3f\x6a\x85\x65\x63\xcc\x7d\x8a\x6e\xa9\xdf\x45\xb4\x08\x61\xae\x5f\xbf\x4e\xad\x56\x4b\xf2\xd7\xd5\x1e\xbc\xff\x4a\x0b\x4d\xf2\xde\x02\x6f\x12\xd7\x13\x19\xba\xac\x08\x17\x22\xcb\x86\xe4\x8d\x07\x99\xcf\xf8\xf8\x38\x66\x66\x66\x0c\x80\xe4\x1e\x16\x22\x52\x20\xf8\xf5\x72\xd0\x1e\x6f\x15\xf6\xec\xd9\x29\x2c\x90\xb1\x9f\x00\x72\x53\xc2\xe6\x4c\x09\x33\x53\x0a\x92\x35\x2d\x3f\x3d\xa9\x77\x2e\xa9\x0d\xef\x01\x0e\x81\x50\x08\x69\xcf\x6c\xa3\xf8\xd0\x4e\x51\xbf\xbb\x3e\x1a\xac\x21\xbe\xd0\x89\x88\x4c\xb1\x58\xc4\xc2\xc2\x82\x89\x8f\xa3\x97\xf5\x93\x9a\x09\x48\x0b\xab\xd4\x7e\xae\xb8\x9c\x7a\xa9\x61\x2d\xff\x78\xdc\x14\xda\x8b\x32\x64\xc7\x96\x82\x2f\xcb\x83\xc8\xc7\x05\x32\x72\xd8\x25\x4d\x78\x57\x9b\xf3\xbc\xf2\x2c\x14\x20\x2d\x27\xf2\xdd\x65\x0d\x65\x59\x60\xbc\x9e\x2e\xb9\x95\x34\xf1\x3c\xa4\x1c\xbb\x94\x20\xef\x3c\x9c\x5e\xc9\x27\x03\x00\xed\x76\x9b\x4e\x9f\x3e\x0d\xdf\xf7\x89\x5d\x28\xa6\x8c\x31\xa4\x3d\xd0\xca\x58\x67\xc3\x00\x34\xd5\x2c\xcc\x15\x34\x95\x00\x4a\xe3\x86\x55\x8c\x76\x43\x18\x11\x28\x1e\x9e\xec\x14\xc3\xcd\x8b\x0b\xdb\xdf\x7d\x75\x7f\xe3\xef\x03\xdf\xdc\x01\xb0\x42\x44\x9b\x00\x76\xe2\x8b\xa6\xc3\xe5\xe5\x65\x5c\xbd\x7a\x15\x5a\x6b\x57\x7d\xa4\x45\x96\xd5\x5e\x2e\x19\xe6\x6d\xd2\x07\x1c\xb2\xb1\xb9\x59\xcb\x33\x95\x1a\x26\x0b\xc1\x12\x7e\x6c\x6c\x6c\xd0\xc9\x93\x27\xa1\x94\x4a\x0a\x8e\x19\xeb\x6b\x32\x54\x1f\x09\x5b\xf3\xf5\xd2\xd1\x4a\x57\x8d\xa7\x86\x21\x1c\x7c\xc9\xd6\x48\x80\x46\xca\x89\x0f\x85\x88\x01\x48\x04\x57\x09\x79\x04\x42\x31\xa4\xd9\xbd\xdb\xc5\xe3\xdb\xe5\xf0\xda\x46\x25\xd8\x00\x21\x88\x27\xb7\x4c\xa1\x50\xc0\xc9\x93\x27\xf1\xfa\xeb\xaf\xf3\xfa\x4b\x3e\xb8\x84\xd6\xa5\x55\xa5\x55\xc1\xf3\x92\x9d\x52\xe6\xcb\x6b\xeb\x2a\x13\x2c\x2f\x09\x22\x3c\x9d\x7d\xce\xd3\xfa\x2e\xed\x2b\xcb\x21\x47\x5e\x52\xd8\x20\xca\xc9\x02\x27\x57\x27\xe6\xf1\xe4\xd0\x2c\x8b\x0f\xae\x8e\xc2\xd3\x4b\xfe\x73\xfa\xf8\xb3\xd4\xb2\x1c\x74\x9d\xc3\x71\x16\x97\x00\xe8\x57\x5f\x7d\xd5\x1e\x6a\x65\x62\x19\x37\x40\xb4\xab\x33\x54\xd0\x4b\xb5\xf6\xca\x7a\xa5\x7b\x7f\xbc\xe5\x4f\x94\x42\x35\xaa\x4c\x74\x29\x9a\xfd\xbc\x3e\xe2\x8e\x49\x6a\xd1\xf5\x4d\xeb\xce\x44\xfb\xda\xf7\x8f\x6e\xfd\x3f\x6f\xcf\x36\x7f\x14\x78\xb8\x6b\x8c\x59\x21\xa2\x0d\x63\xcc\x76\xbc\x47\x2a\x20\x22\xf3\xf2\xcb\x2f\x63\x7d\x7d\x9d\xd7\x47\x2a\x8f\xac\x36\xb2\xce\x25\xc3\xb2\xae\x00\xd2\x97\x4e\x4b\x10\x90\x82\xc1\x05\xde\xc6\xe1\xfe\x12\xc1\x92\xb8\xed\x76\x9b\xb6\xb6\xb6\x70\xf4\xe8\x51\x13\xdf\x13\x61\xac\xe5\x61\x00\x6f\xb7\xa8\x75\xe0\x19\x7d\x60\xab\xfc\xb0\x17\x52\x21\x31\x10\x90\x36\x32\x12\xa9\x33\x40\xb4\xdf\x0e\xc9\x04\x53\xea\x8c\x83\xe4\xe8\xa4\x1e\x94\xa4\x2c\x10\xf6\x5b\x0a\x69\x6e\x5f\xbd\xf4\x70\xa3\x1c\xbe\xb9\x5e\x09\x36\x28\xba\x65\x5c\x03\x30\xa5\x52\xc9\x82\x87\xd4\xf8\x5c\x58\x38\xbf\x78\xe6\x2e\xad\xee\x1a\x1b\xcb\x06\x03\xf3\x77\x59\x11\xce\xf1\xb5\x78\xe6\x66\xb8\x4d\xe7\xa2\xd3\x65\xa1\x64\x95\xe9\xea\x98\x2e\x90\xca\xea\xec\xae\x30\x39\x2c\x71\xe5\x81\x0c\xbe\xb8\xc0\x5a\x6a\x47\x09\x9e\x12\xa4\x81\xfe\x4e\x92\x67\x31\x49\x6b\x8c\x03\x57\xd2\x26\x93\x93\x93\x34\x35\x35\x45\x31\x68\x18\x00\x26\x91\x2b\x45\xe1\xe6\x48\x77\xe3\xdd\x99\xd6\x3b\xf7\x47\x83\x55\x65\x60\x14\xc8\x23\x00\x9a\x10\x86\xca\xe8\xb6\x67\xda\x8d\x52\xb8\x71\x6b\xaa\xf5\xd6\x8f\x0f\x6d\xff\xfd\xa5\x85\xed\xbf\x5f\xaf\x04\xef\x68\x32\x4b\x00\xee\x11\xd1\x3a\x80\x2d\x44\x43\x94\x2e\x11\x85\x8b\x8b\x8b\xb8\x7c\xf9\xb2\xbd\x7a\x52\x2a\x08\xce\x3b\x97\x72\x91\x6d\x20\xc3\x79\x1e\x31\xa9\xf9\x08\xcc\x13\xd9\x84\xae\xb0\x2c\x74\x4e\xe2\x14\x0a\x05\xf5\xc9\x4f\x7e\x12\x33\x33\x33\x88\x67\x9c\xcb\x00\x6a\x00\xf6\x18\x63\xe6\x8b\xa1\x3a\xfc\xe1\xf7\xc6\x7f\xe3\xb1\xc5\xea\x73\x8a\xd7\x27\x39\x6f\xd4\x9a\x1e\x91\x5f\x82\x24\xbc\x7b\xd8\x3a\xf3\xbb\x6a\x5d\x4e\x9c\x9a\x62\x60\xb0\x5b\xd0\x6f\xfe\xd3\xd1\xcd\xff\xe1\xea\xde\xe6\x25\x10\xea\x00\x9a\xf1\x92\x9a\xde\xdd\xdd\xd5\x5f\xf9\xca\x57\x5c\x7c\xc8\x7a\xce\x0a\x77\xc5\xe7\x2e\x2b\x9e\x74\xae\xb0\x61\xe3\x67\xb5\x61\x96\x73\x75\xb0\x61\xca\x94\x71\xb2\x68\xe6\x34\xe4\xc5\x75\xe5\x07\x0c\x90\xbb\x21\x68\x95\x69\x86\x69\xbb\xbc\x36\x57\x00\xf4\x6f\xfd\xd6\x6f\xa9\x62\xb1\xa8\xe2\xf7\xa2\x31\xa6\x0a\xa0\x4a\x44\x53\xc6\x98\x29\x22\x9a\x02\x50\x83\x41\xad\x1c\xa8\xf1\x5a\xcb\xab\xf9\xa1\x2a\x13\x0c\xda\xbe\x69\x6d\x97\x82\xcd\xb6\x6f\xb6\x0c\x4c\x9d\x88\xea\xc6\x98\xf5\x18\x30\x36\x11\x6d\xa6\x6c\xc4\x1f\x91\xea\x2f\x7c\xe1\x0b\x41\xa1\x50\x50\xdd\x6e\x37\x8f\x26\x17\x4f\xf2\xea\x04\xe4\xf0\x81\x9f\x00\x06\xa4\x51\x5c\x16\xc4\x13\x4b\xb3\xdb\xa5\xa9\x52\x08\xae\xb5\xd6\x6f\xbe\xf9\xa6\xb9\x70\xe1\x82\x1d\xa6\x24\xdd\x9e\x88\x94\x26\x78\x1b\x95\x6e\x63\xbe\x5e\x3a\x58\xed\xf8\x53\x3d\x33\x23\xb6\x24\x88\x0f\x52\x18\x30\xf6\x7d\x7e\x4c\x69\x1d\xcf\xa3\xf7\x0a\x4c\xa7\x30\x04\x5f\xd3\x9e\xfd\x5b\xa5\x0b\x6d\x5f\xbf\xbd\x36\xda\xbd\x6f\x28\x9a\xef\x00\xa2\xd5\x96\x27\x9e\x78\x02\xb5\x5a\x8d\x6e\xdc\xb8\x91\xa7\xfd\xa5\xa6\xb5\xf1\x04\x81\x7d\x3c\x76\x59\x01\x3c\x5f\xeb\xf8\x50\x86\xfb\x65\x59\x39\x1c\x5a\x49\xa4\x95\x74\xe6\x59\x54\x52\x08\x79\x1e\x59\x96\x95\x1c\x46\xb8\xac\x36\x4e\x0f\xb7\x26\x00\x77\xbd\x65\x47\x90\x34\x70\x4b\x4b\x5a\x4a\x2e\xeb\x8c\x6b\x5f\x17\x4f\x24\xcd\x3c\x0e\x4f\x2f\xe9\x32\x8b\x8b\x8b\x74\xf8\xf0\x61\xe3\xfb\x3e\x00\x68\x22\x0a\x89\x28\x40\x64\x21\xb4\x10\x59\x0b\xbb\x20\x6c\x07\x9e\xd9\xda\x29\xe9\xd5\xed\x72\xb8\xbc\x5d\x0e\x17\x9b\x45\xbd\x18\x7a\x58\x31\x30\x2b\x44\xb4\x02\x60\x95\x88\xd6\x8c\x31\x9b\x44\x54\x47\xb4\x99\xb2\x13\xef\x17\xd1\x6b\x6b\x6b\xae\x83\x8a\x39\x6f\x5c\xd6\xa3\x94\xa5\xac\x76\x71\xa5\x4b\x9d\x00\x26\x81\x80\xa3\x8d\xcc\xc8\xfa\x73\x20\xe1\xe6\x9c\x14\xac\x24\xed\xc5\x8b\x17\xcd\x85\x0b\x17\x78\x3e\xc6\x5e\xe6\xd4\xf1\x8d\x6e\x16\x75\x67\x61\xb3\xf4\x70\x74\xa5\x02\x93\x7a\x2e\x0e\x49\xb7\xc8\x32\x29\x58\xe9\xc2\xb0\xe6\x7b\x3d\xc8\x3e\x00\xf6\x3c\xc7\xc9\xf9\x7a\xe9\x09\x22\x2c\xaf\x56\xbb\xcb\x5a\x45\x27\x49\x1b\x63\xa0\x94\x32\x53\x53\x53\xe6\xd2\xa5\x4b\x83\xc6\xdd\x92\x4f\xd2\xb9\x86\x86\x3c\x6d\x96\x99\xe9\x02\x13\x6e\x62\x67\xb5\x85\x2c\x8b\xb7\xb1\x14\x0e\xf9\x2b\x05\x8b\xff\x4a\xd3\x37\x4f\x01\x65\xe5\xc1\x9d\xac\xbf\x0c\xcb\xa2\xcd\x95\x67\x56\x39\x83\x3a\x4a\x16\x5d\x9c\x87\x59\xe5\xf1\xb6\xa0\x9d\x9d\x1d\xfd\xea\xab\xaf\x9a\x47\x1f\x7d\x14\x85\x42\x01\x71\x58\x18\xff\xb5\xe3\xbf\x5d\x00\x3b\x88\x2c\x88\xad\xf8\xef\x3e\x80\x75\x00\x6b\x44\xb4\x16\x3f\x6f\x02\xd8\x22\xa2\x06\x80\x16\xe2\xeb\x3f\xc2\x30\xd4\x7f\xf7\x77\x7f\x87\x9b\x37\x6f\x4a\x59\x92\x7c\x90\xf2\x91\x65\x7d\xb9\xc0\x5a\x86\x19\x20\x3a\xe2\x2c\x2b\x53\x97\x35\xe1\xd2\x0e\x7d\xdd\x19\xe9\x2e\x9b\xd2\x44\xa5\x52\x89\x16\x16\x16\x30\x32\x32\xa2\xe3\xe5\x59\x13\xff\x2a\x10\xa9\x7a\x29\xe8\x28\x90\xb7\x6f\xab\x74\x3c\x3a\xa3\xd4\xf4\x96\x56\x09\xfd\x77\xcb\x26\x64\x47\x7e\xbd\x23\xe7\xe5\xaa\x4a\x3a\x6d\xb4\xea\x15\xc7\x65\xf3\x1f\xbe\x56\x93\x7b\xb7\x8b\xe7\x4a\x81\xda\x5d\xa9\x76\x6e\x07\x5e\x34\x5c\xb1\xc7\x0d\x9e\x3f\x7f\x1e\x97\x2e\x5d\xd2\xd3\xd3\xd3\xb4\xbb\xbb\x9b\x57\x77\x97\x06\x96\xd6\x44\x1e\xcf\x78\x7b\x88\x8a\x3a\xe3\x66\x59\x2b\x59\xd6\x07\xcf\x3f\xab\x8d\xa5\xd6\x06\xd2\x20\x26\xb5\x38\xc4\x3b\x2f\xcf\xa5\xed\x64\xde\x70\x84\x4b\xba\x80\x7e\xf0\x74\x75\xf8\x14\x5d\xe7\xcf\x9f\x57\x4b\x4b\x4b\x49\xbc\x6a\xb5\xaa\x3a\x9d\x8e\xcb\xe2\x72\xb9\xac\x7a\xf2\xf8\xce\x3a\xbf\xf6\xda\x6b\xe6\x91\x47\x1e\x41\xa1\x50\xd0\xe8\x81\x47\x00\xa0\x6b\x8c\xd9\x25\xa2\x5d\x44\x16\xc4\x36\x80\x7a\xfc\x67\x41\x64\x3b\xfe\xb3\x80\xd1\x41\x04\x1a\x61\x10\x04\xe6\x7b\xdf\xfb\x1e\xae\x5f\xbf\xce\xcb\xce\xe2\xaf\x6c\x1b\xa9\x90\xb2\xda\x4e\x86\x27\xce\x02\x07\x0f\x74\x99\x98\x52\x43\x49\xad\x66\xd3\x59\xa7\x33\xd2\x9a\x30\x0c\x4d\xbb\xdd\xa6\x23\x47\x8e\xc0\x4e\x92\xda\x09\x53\x00\xca\x10\x68\x6d\xb4\xb3\x3d\xb5\x5b\x98\x99\x6c\xfa\xf3\xc9\x26\x2e\xc4\x13\xa0\x76\x9d\x1b\x71\x87\xe7\x5b\x46\xa3\x63\xd0\x41\x60\x3b\xef\xac\xa9\x62\x90\xf8\x45\x73\xa7\x26\x26\x9a\x04\xd0\x18\x78\x86\xc6\x66\x76\x8a\x67\xc7\xda\x9e\xb7\x56\xed\xde\x6c\xfb\xba\x1d\xd3\x0a\x22\xd2\xe7\xcf\x9f\xc7\x91\x23\x47\x70\xef\xde\x3d\xec\xec\xec\x58\x3e\xf0\x5f\xce\x07\x39\x24\x91\xa6\x36\xf7\xe7\x7c\xe5\x1d\x9c\x0f\xfb\x24\xef\x65\x9c\x94\xc9\x2c\xe8\xc9\xca\x1f\x22\x8e\xcb\xdc\x05\xf3\xe7\x42\xa5\x45\x1c\x29\x98\xd2\xf2\xe1\x79\x4a\x81\x74\x99\xff\x52\xf6\xb2\xac\x18\x69\x39\x6b\x00\xe6\x73\x9f\xfb\x9c\x7a\xe6\x99\x67\x68\x7e\x7e\x1e\xe7\xce\x9d\xf3\x2e\x5c\xb8\x80\x73\xe7\xce\xd1\x91\x23\x47\x50\x2a\x95\x88\x81\x49\x16\x2d\xd2\x0a\x97\x16\x9b\xcb\x1a\x4c\xd1\xbc\xba\xba\x4a\xb5\x5a\x0d\x63\x63\x63\x36\x4c\x23\x5a\x09\xe9\x22\x02\x82\x56\xfc\xd7\x8c\xff\x76\xe3\xbf\x26\x90\x5c\x30\x66\x0f\xde\xd6\xb7\x6f\xdf\xc6\x9f\xfd\xd9\x9f\xe9\x8d\x8d\x8d\xbe\xfe\x95\xc1\x67\x09\xf6\xd6\x49\xde\xe6\xb5\x5d\x0a\x30\xe5\x4d\x6e\x40\xba\x70\xd7\xf8\x8e\xbf\xbb\x04\xc8\xc6\x73\x81\x91\x02\x40\x1b\x1b\x1b\xe8\x76\xbb\x98\x9f\x9f\x4f\x3a\xa3\x4d\x6b\x60\xbc\x50\x01\xf7\x47\xbb\xf5\xfd\x5b\xa5\xc3\x95\xae\x1a\xb7\xe0\xd0\xdb\xde\xd1\x2b\x86\xc0\x4a\x4d\xec\x06\x6e\x69\xa4\xad\x0e\x18\x4e\x24\x45\x98\x62\x7a\xcf\x14\xef\xf3\xf0\x0c\x8d\x4c\x35\x0b\x67\xf6\xec\x14\x26\xb7\xca\xc1\xed\x46\x29\xdc\x01\xf5\x18\x6f\x37\x8a\x8d\x8d\x8d\x61\x69\x69\x89\x74\x34\x9d\xcd\x01\x21\x45\x59\x9a\x82\x3e\x7f\x6e\x81\x70\xbf\x2c\x0b\x81\x3f\x4b\x10\xc8\x02\x06\x2e\x4c\x2e\xb0\x91\xf4\x49\x61\x94\xd6\x8b\xab\x5c\xd9\xa1\xb2\x3a\x1a\x44\xbe\x32\x7f\xa9\x25\x65\xfe\x52\x36\x13\x7a\x94\x52\xb4\x6f\xdf\x3e\x7c\xf4\xa3\x1f\xa5\x8f\x7e\xf4\xa3\x14\x4f\x50\xda\xeb\x0a\x3c\x20\x9a\x53\x2b\x16\x8b\x98\x9f\x9f\x37\x0f\x3d\xf4\x10\x5d\xb9\x72\x25\xcf\x2a\xcc\xfb\xb5\x74\xc1\x41\x57\x52\xdf\x46\xa3\x81\x6b\xd7\xae\xe9\xd5\xd5\x55\x1a\x1b\x1b\x33\xd5\x6a\xd5\xb6\xad\x1d\xba\x58\x60\xe8\x22\xb2\x44\xba\x14\x1d\xbd\x69\xad\x13\x0d\x20\xbc\x7f\xff\xbe\xf9\xc9\x4f\x7e\x82\x1f\xff\xf8\xc7\xae\x09\xe1\x2c\x9e\x4b\x70\x77\xf1\x5c\xf6\x71\x97\x4c\xa6\x40\xc9\x63\x91\x5d\x99\x49\x2d\x07\xf6\x2e\x51\x4a\x6a\x51\xa9\xa5\x38\x93\xf5\xca\xca\x8a\x39\x7c\xf8\x30\x55\x2a\x15\x9d\x68\xfc\x64\xff\x17\xa9\xdd\xa2\x0e\x9b\x45\xdd\x3e\xb0\x59\x3e\x56\xd0\x54\x4e\xed\xdf\x88\xa9\x91\xbb\x75\x79\x58\xea\x5d\xc6\x21\x20\xfa\xb8\x28\x2a\xb3\xb7\xb5\x3d\x9d\x58\x19\x2a\xd4\xda\xde\x23\xf3\xf5\xd2\xb1\xae\x6f\x96\xd6\x47\x82\x75\x4d\xd1\x3e\x0f\xc4\x93\xa6\x33\x33\x33\x66\xdf\xbe\x7d\xb8\x76\xed\x9a\xd4\xfe\x52\xbb\xf3\xc6\xcb\xb3\x4a\xb2\x3a\xa8\xab\x16\xae\x1a\xdb\x30\x49\x03\x80\x3e\x60\x73\xb5\xb1\x8b\x7b\x5c\xb0\xa4\x05\x21\x35\x99\xec\xf8\x2e\x2d\x28\x41\x4c\x8b\xfc\x24\x68\xc8\x32\xe5\x6f\x92\xcf\x53\x4f\x3d\x45\xcf\x3e\xfb\x2c\xaa\xd5\x2a\xe2\x73\x57\x7c\x22\x2a\x2a\x50\x61\xbe\x5e\x9c\xac\xb6\xbd\x91\xed\x52\x10\xc4\xb2\x46\xa5\x52\x49\x1f\x3f\x7e\x9c\xde\x78\xe3\x0d\x59\x97\x41\xa0\x21\xad\x8b\xbc\xb8\x06\x80\xda\xda\xda\xd2\xd7\xae\x5d\xa3\x8b\x17\x2f\xea\xf8\x46\x00\x53\x28\x14\x74\xac\x38\xad\x25\xa2\x11\x4f\xa6\x1a\x63\xf4\xe6\xe6\xa6\xd9\xdd\xdd\x35\x5f\xf9\xca\x57\xf4\xd5\xab\x57\xcd\xfd\xfb\xf7\x5d\x4a\x59\x4e\x35\xd8\xe7\x3c\x6b\xc4\x15\xd7\x38\xe2\x4a\x00\x4a\x0a\x95\x13\x25\xbc\xb1\xa4\xa0\xb9\x00\x42\xbe\x67\xe5\x23\x27\x63\x14\x00\xfd\xb9\xcf\x7d\x4e\x55\xab\xd5\xe4\x02\x27\x22\xaa\x22\x5e\xa2\x55\xa0\x83\x17\x6e\x8d\xfd\xf2\x93\xb7\x6b\xbf\x52\x08\x55\xd9\xd5\xeb\xb8\x4b\xc2\x24\x58\x48\xd8\x4b\xbc\x0c\x5c\x13\xac\xbd\xd5\x5a\x1b\xcb\xa0\xe5\xeb\x77\xae\xec\xdb\xf9\xdf\x2f\x1d\xd8\xfe\xce\x6e\x41\xaf\x1b\x98\x26\x22\x73\xb3\x63\x8c\xd1\xed\x76\x1b\x5f\xfe\xf2\x97\x5d\x13\x4e\xd2\xe5\x09\xa2\xe5\x57\x56\x5c\xee\x0f\xb8\xf3\x71\xa5\x95\x71\x5d\xf4\x64\xd1\xca\x69\xca\xa3\xd9\x45\x47\x56\xd9\x83\xf2\x01\x7b\x77\xd5\xc7\x59\x87\x5f\xf9\x95\x5f\x51\x07\x0f\x1e\xb4\xef\x7e\xfc\x57\xf4\x42\x94\x1f\x5e\x1d\x3d\xfe\x81\x9b\x63\xbf\xb3\x5b\xd0\xcb\xdf\x7e\xe4\xfe\xff\xb1\x59\x0e\x36\x63\xad\x1e\x18\x63\x82\x7a\xbd\x8e\x6f\x7d\xeb\x5b\xa8\xd7\xeb\x3c\x5f\x17\xe0\x66\x81\xf0\xa0\xfa\x38\x79\x74\xfc\xf8\x71\xf5\xce\x3b\xef\x68\x00\x78\xfe\xf9\xe7\xd5\xdf\xfc\xcd\xdf\x68\xee\x17\x83\x5f\x9e\x0c\x0c\x55\xce\x03\xd2\x26\xc3\xfb\xea\x2d\x77\x8e\x4a\xcd\x28\xad\x0d\xa9\xc9\xa4\x56\xe5\x7f\xbc\x30\x59\x46\xd2\x8d\x8b\xc5\x22\xcd\xcd\xcd\x19\xa5\x94\x89\x2d\x0f\x13\x7f\x45\x0b\x10\x68\xb5\xda\xdd\xaa\x74\xbc\xea\x9e\x9d\xc2\x01\x05\x52\x64\x04\x0a\xf0\x13\x90\xc0\x28\x62\x73\x1b\x36\xba\x01\x12\xeb\x22\x56\x38\xfd\x36\x00\xcf\x32\xde\x48\x46\x20\xf8\x5a\x4d\xed\x6d\x14\x9f\x9e\xdd\x29\x8c\xae\x57\xba\x37\x9b\x45\xdd\x06\x60\x69\x35\x9e\xe7\xe1\xc2\x85\x0b\x98\x9b\x9b\xa3\xb7\xdf\x7e\x9b\xd7\x55\x9a\x87\x96\x14\x97\x56\x23\x91\x46\xc6\xe5\x5a\x9c\x53\x2e\x4d\x4b\xa9\xd5\x21\xe2\x72\xfa\x80\xfe\xb6\x91\x56\x88\xcb\x6a\x90\xd6\x8c\xd4\x6c\x2e\x4d\x8c\x21\xf3\xd1\x70\xd7\xd9\x35\xcc\xc1\xb9\x73\xe7\xe8\xb9\xe7\x9e\xa3\xf8\x73\x72\xb2\x56\x06\x80\x91\x62\x97\x26\x9e\xbc\x3d\xfe\xb1\x0f\xdc\x1a\xfb\x1f\xab\x1d\xef\xe3\x95\xae\xf7\xa8\xaf\xd5\xca\xed\xa9\xd6\x0d\x13\x4d\x74\x85\x44\x84\x72\xb9\xac\x2b\x95\x0a\xae\x5f\xbf\xae\x05\x3d\x5c\xf3\xf2\x72\x39\xdd\xae\xb6\x94\x5a\x1b\x8e\x78\x66\x7d\x7d\x3d\xc9\x33\x96\x1b\x70\x3f\x57\x1a\x91\xaf\xab\xad\x5c\x6d\x21\xad\xc4\xbc\xf6\x93\xe1\x7d\x6d\xca\x27\x47\x81\x7e\xe4\xc9\x02\x07\x17\x91\xbc\x10\x29\xa4\x94\x11\x6e\x96\x96\x96\xcc\xa5\x4b\x97\x92\xbb\x67\xa9\x77\xae\x00\x19\x63\x28\x54\x06\x2b\x63\x9d\xf5\xc9\xdd\xc2\xec\xc4\xae\x3f\xd7\xff\x65\x2c\xb3\x18\xd8\xc6\xb0\xe8\x29\x0d\x0c\x3d\x6b\x24\x46\x87\x04\x50\xd8\xb6\xf4\x38\x8c\x5f\x04\x6c\x0f\x03\x52\xa0\xf2\xf8\xae\x7f\xee\xf0\xfa\xc8\xa9\xae\x6f\xee\xdc\x1f\xed\x6e\x18\xc0\x1e\x20\x69\x00\x98\x5a\xad\x46\x67\xcf\x9e\x45\xa1\x50\xc0\xdd\xbb\x77\x65\xa7\xe1\xfc\x92\x8d\xe5\x12\x38\x1e\x57\x02\x10\xcf\x53\xa6\xb7\x69\x5c\x82\x2b\xdb\xc2\xd5\x36\x52\x91\xc8\xf2\x65\xdb\x03\xe9\xf6\x76\x75\x24\xa0\xbf\x03\x48\x3e\x48\xd9\xe3\x71\x25\xff\x08\x80\x79\xf1\xc5\x17\xd5\xc1\x83\x07\x51\x28\x14\x14\x45\x17\x81\x15\x00\x8c\x10\xa8\x32\xd5\xf4\x0f\x7c\xfc\xda\xd4\xbf\x3e\xb9\x32\xfa\x6f\x8a\x21\x1d\x8e\x3f\x90\x1a\x19\x6f\xf9\x27\x1a\xa5\xf0\x67\x6b\xa3\xdd\x35\x03\x13\x5a\x99\x9b\x9c\x9c\x34\xdd\x6e\x97\xee\xdd\xbb\x97\x45\xaf\x8b\xfe\xbc\xba\xf0\x77\x99\x9f\x2b\x1f\x97\x6c\xb8\x86\x17\x59\x3c\x92\xed\x92\x55\x4e\x96\x65\x68\xc4\xaf\x4b\xfe\x34\x90\xde\x00\xe6\xd2\x54\x5a\x64\x94\x55\xb8\x0b\x6c\x24\x33\x79\xe1\x52\xb8\xcd\x89\x13\x27\xa8\x54\x2a\xa5\xca\x8e\x81\x04\x1d\x4f\xeb\xb5\xb1\xee\xc6\x6c\xa3\x38\x3f\xd6\xf6\xa6\x7a\xe0\x61\x7b\xac\x89\x3f\x06\xa2\x1e\xe7\x92\xb0\xb8\x70\x6e\x33\xc5\x87\xa7\xf0\xf3\x4c\x93\x65\xdc\x38\x72\xf4\xf1\x2d\xbb\x31\x2e\xce\x98\x40\x54\x0a\xd5\xc2\xc2\x46\xe9\xa3\x93\xbb\x05\x75\x7f\xb4\x7b\xa7\x55\xd0\x41\x14\x8d\x08\x80\x56\x4a\x61\x6e\x6e\xce\x9c\x3b\x77\x8e\xe2\x7d\x1f\xb6\x9e\xd2\x32\x70\x69\x61\x2e\x70\x2e\x2b\x42\x6a\x5d\x0e\xfc\x52\x00\xa5\x05\xe1\x02\x24\x49\x87\x4b\x1b\x81\xc5\x75\xc9\x0a\x67\xb5\x14\x3a\x29\x7c\x80\x9b\x26\x19\xae\x1d\x71\x01\x80\xe6\xe6\xe6\xa8\xd1\x68\xe8\x97\x5e\x7a\x49\xc5\x97\x6b\xd9\x89\xcf\x92\x31\xa6\xe2\x1b\x9a\x78\x6c\x79\xf4\x99\x8f\x5f\x9b\xfe\x9f\x66\x76\x0a\xbf\xa6\x40\x15\xbe\xe9\xcf\xd3\x98\x9c\xde\x29\x1c\x5c\x1a\x6f\x5f\xdc\x29\x86\x3b\xf1\xc6\x2c\x6d\x8c\x31\x0b\x0b\x0b\xe6\xe2\xc5\x8b\x92\x2e\xce\xe3\xbc\x76\xe3\x72\x2d\xfb\x80\xab\x9e\xb2\x3f\x64\x01\x36\x77\x52\x49\x70\x3f\x5e\x6e\x96\xc5\x9a\x05\xf4\x3c\x0e\x58\x1c\x4e\x7f\x52\x7f\xf9\x59\xbd\x24\x8c\x3b\x89\xfc\x32\xae\x4b\x28\x25\x53\x24\x23\x92\x72\xae\x5c\xb9\x62\x0f\x42\xb1\x71\x12\xcb\x83\x88\xd0\xf2\x75\xb8\x59\xe9\xd6\xf7\xd5\x4b\x07\x47\xba\xde\x18\xb3\x33\x92\x6f\x53\x12\x20\x60\x35\xa1\x78\x89\x56\xd6\x90\x84\x28\x24\x13\xb3\x20\x7e\xdb\xa4\xbb\x0b\x02\x50\x86\x46\xa7\x77\x0a\x1f\x38\xbc\x51\x3e\x0d\x60\x6d\x73\x24\x58\x0f\x94\xd1\x94\x8c\x81\x22\x77\xfe\xfc\x79\x1c\x38\x70\x80\x76\x77\x77\xb1\xb5\xb5\xe5\xb2\x12\x78\xee\xbc\xc3\x66\xbd\xbb\x00\x99\x5b\x83\x32\x2e\x07\x1c\x97\xb6\x93\x1d\xdb\xa5\xa9\x12\x56\xa3\x5f\x56\x80\x7e\xa1\xe4\x71\x65\x7b\x4b\x50\x72\x85\x4b\xde\x24\xb2\xf8\xab\xbf\xfa\xab\x74\xfe\xfc\x79\x3c\xf9\xe4\x93\xd6\x5a\xf6\x11\x59\x19\x65\x32\xa8\xee\x6d\x14\x0f\x7d\xe4\xdd\xc9\xdf\x3e\xb3\x58\xfd\xb7\xe5\x40\x3d\x44\x7d\xfb\x84\xa3\x36\x2e\x07\x6a\x6e\xa2\x55\x28\xdf\x98\x6a\x5d\x0e\x3c\xd3\x31\xc6\x84\xf1\xce\x80\xf0\xd8\xb1\x63\x74\xeb\xd6\x2d\x74\x3a\x1d\x17\x08\xc8\x3a\xba\xea\xc9\xeb\xe2\x8a\xcb\xe3\xb8\xac\x2a\x57\x27\x76\x59\x3d\x12\x7c\x79\x7c\x97\xe5\xc1\xf3\x91\x6d\xef\xa2\xd1\x95\xbf\x01\xb3\x38\x14\x4b\xec\xca\x30\xcb\xec\xe2\x42\x0f\xa4\x05\xca\xc5\x94\x2c\x66\x12\x00\xf3\xc6\x1b\x6f\x98\xf3\xe7\xcf\xdb\xf4\xe9\x3f\x82\x6a\x94\xc2\x56\xbd\x1c\xec\xec\xab\x97\x0e\x95\xba\xaa\xd2\xb7\xaa\x22\x25\x04\xe8\xa1\x08\xb1\xca\xb9\xe2\xa5\xd2\xe4\xe4\x9b\x58\x29\x00\x81\xbc\x72\xa0\x0e\xed\xdf\x2c\x7d\x68\xb6\x51\x9c\x6a\x16\xf5\x72\xa3\x14\xb6\xe2\xfd\x6a\x14\xef\xfd\x30\xd5\x6a\x95\x0e\x1f\x3e\x6c\x16\x16\x16\xe8\xad\xb7\xde\x92\x9d\x22\xaf\x73\xdb\x12\xfb\x78\xc5\xe2\xb8\xb4\x86\xcb\x04\x95\x16\x80\xcb\x52\x71\x29\x02\xee\xcf\xf3\xc2\x80\x3c\x6c\x38\xd7\xa2\x92\xab\xb2\x3e\xdc\x3f\x65\x5d\x3d\xf6\xd8\x63\xea\x93\x9f\xfc\x24\x4d\x4e\x4e\x42\x29\xa5\xe2\x53\xb6\x4a\x00\x8a\x30\xa8\x54\xdb\xde\xcc\x13\x77\xc7\x3e\xf6\xc1\x1b\x13\xff\xfd\x5c\xbd\xf8\x69\x4f\xab\x1a\xa5\x0e\xc4\x61\x6d\x1f\x3d\xa8\x6a\xdb\x3b\xa2\x0c\x56\xef\x4c\xb4\xdf\x85\xa2\xae\x31\x26\x04\x60\xca\xe5\xb2\xfe\xd1\x8f\x7e\xe4\x02\x4e\x5e\x3f\xc9\x87\x2c\x1e\xba\xda\xd8\x65\xc1\x70\x7f\x0e\x44\x9c\x77\x06\xfd\xed\xed\xe2\xa5\x4d\x07\xa4\xe5\x42\x96\x05\xa4\xe9\x76\xa8\x48\x67\x7b\x25\x16\x87\x86\x9b\x38\xb0\x44\xae\x49\x12\xa9\x11\x73\x27\x82\x1c\xf9\xf6\x69\x14\x00\xb4\x6f\xdf\x3e\xbb\x21\x0c\x88\x4d\x48\x22\x32\x20\xa0\x5e\x0e\x9a\x3b\xa5\xb0\x39\x5f\x2f\x1d\x2e\x86\xaa\x2c\x33\x4a\xa9\x62\x59\x23\xfb\x63\xd0\xbb\x8a\x16\x40\xdf\x55\xe1\x82\x40\x6b\xa1\x70\x49\x41\xf2\x4e\x50\x06\xd5\x89\x5d\xff\xcc\xc1\xcd\xf2\xb9\xb1\x96\x6f\x76\x4a\xe1\x7a\xb3\xa0\x3b\xa0\x5e\x03\x28\xa5\x4c\xb5\x5a\xa5\xb3\x67\xcf\x62\x61\x61\x01\x31\x80\xb8\x78\xc5\xdf\x65\xa3\xf2\x86\xcd\x8a\x2b\xf9\x0d\x96\x16\xe2\xd7\x05\xfc\x12\x34\x38\x27\xf9\x33\x9f\x23\x91\x69\x6d\x38\x89\xb4\xdc\xb9\x64\x8e\x3b\x02\xa0\x9f\x7f\xfe\x79\xba\x70\xe1\x02\x1d\x3b\x76\x0c\x4a\x29\x15\x0f\x49\x0a\x88\x3e\x92\x2c\x97\x03\x35\xf9\xd0\x5a\xe5\xec\x07\x6f\x8c\xff\x57\x27\x56\x2b\xff\xe5\x48\x57\x1d\xa7\x68\xe8\x92\x9c\xdb\x69\xac\x45\x4a\x40\xef\xca\x01\x82\x02\x8a\xd3\x3b\xc5\x93\x5b\x23\xc1\x6b\xf7\x2b\xc1\x7d\xb0\xb3\x3b\xcf\x9e\x3d\x8b\x20\x08\xb0\xb2\xb2\xe2\x02\x36\x4e\xb3\xce\x08\x77\xa8\x9b\x54\x3d\xb5\x23\xae\x9c\x47\xe4\x0a\x5d\x96\x0d\xa4\x01\x80\xc7\xe1\x7d\x92\x77\x09\xde\x3e\x9c\x36\x09\xee\x92\x3e\xfb\x9e\xc8\x8b\xeb\xb3\xfa\x2c\xb3\x46\x76\x7e\x97\x16\x92\xc8\xe7\x8a\x2b\xe3\x81\x85\xd3\xf2\xf2\x32\x88\x28\x39\x82\xcd\x9e\x8f\x81\x18\x40\xa0\xc8\x6c\x8c\x04\x8d\x76\x41\x77\xf7\x6d\x15\x0f\x17\xb4\x2a\xa6\xf6\x80\xc0\x9e\x35\xea\x68\x39\x46\x55\xaa\x15\xf9\x97\xb2\x0c\x43\x92\x4a\x71\xd0\x60\x99\xf6\x36\xa7\x12\x88\xc8\x2b\x86\xb4\x6f\xb6\x51\xfc\xe0\xc2\x66\xf9\x91\x52\x48\xcd\x7a\x39\xdc\xe8\x78\x46\x47\x32\x1a\x9d\x41\x62\x01\xe4\xdc\xb9\x73\x38\x79\xf2\x24\x95\xcb\x65\x6a\x34\x1a\xd4\x6e\xb7\x5d\xda\xdd\x85\xf6\xb6\x11\x5d\x9a\xcb\xf5\x2b\xe7\x2f\x5c\xfc\x77\x75\x62\x97\x42\x90\xca\xa1\xcf\x84\x45\x7f\x47\xca\xca\x83\x2b\xac\xbe\xf0\xe7\x9f\x7f\x9e\x9e\x7d\xf6\x59\x9a\x98\x98\x40\xa9\x54\x52\xf1\x06\xae\x02\xa2\x7b\x80\xcb\xbe\xa6\xda\x81\xad\xf2\x43\xcf\xdc\x18\xff\xfc\x99\xc5\xea\xef\x4f\xed\x16\x3e\xec\x19\x55\xe1\xe7\x5a\x50\x32\xc9\x6d\x1b\xd0\xce\x63\x51\x32\x6d\xe5\x19\x35\xb6\xa7\x59\x98\xbf\x3b\xde\xbe\xb4\x5b\xd4\x0d\x10\x02\x22\xd2\x4a\x29\x33\x3f\x3f\x6f\x2e\x5f\xbe\x2c\x69\xe5\x3c\xe5\x1d\x33\x4b\x89\xca\x3e\x25\xc1\x9c\xa7\x71\x29\x5f\x19\x4f\x5a\x0f\xb2\x2c\x17\x90\x4b\x9e\x4b\x85\xcd\xc1\x84\x97\x2f\xbb\x50\x92\xaf\x27\x3c\xed\xb3\xcb\x94\xc9\x1a\x1f\xbb\x50\xcc\x35\x6b\xeb\x42\x30\xc9\x44\x03\x80\x16\x17\x17\x75\xbc\xd2\x92\x2c\xd1\xc6\x61\x9a\x88\x48\xc3\x60\x7d\xb4\x5b\x0f\x15\xc2\xb9\x7a\xf1\x88\x67\xc8\x27\x8b\x0c\x26\xaa\x5b\xba\x93\xf3\xb3\x38\x80\x68\x22\x14\x3d\xbf\x84\xdd\x26\x2d\x64\x86\xe2\xd8\x5c\xf8\x10\x7f\xdb\x62\xcb\xb3\x48\x13\xc5\x57\x86\x8a\x23\x81\x3a\x3a\x5f\x2f\x7f\x78\x7e\xab\x74\x40\x19\xb4\x76\x8a\x61\xa3\xeb\x19\xde\x88\x00\x7a\x4b\xd1\x47\x8e\x1c\xc1\xc2\xc2\x02\xbd\xfd\xf6\xdb\xdc\x8a\xe0\x82\xe1\xe2\x97\xd4\x34\x3a\x23\x8d\xb4\x3e\xac\x3f\x17\x34\x69\x9d\x48\x41\x03\xfa\x81\x9f\x5b\x31\x59\x66\x30\x84\xbf\xec\x48\x89\x20\x57\xab\x55\x75\xea\xd4\x29\x3a\x77\xee\x1c\x3e\xf2\x91\x8f\x50\xad\x56\x83\xe7\x79\x0a\xd1\x96\x81\x02\xa2\xeb\x2c\xca\x9e\xc6\xd8\xde\x7a\xf1\xc8\x53\xb7\x6a\xff\xf2\xc2\xed\xb1\xdf\xdf\xbb\x5d\xfc\x64\x51\xd3\x1e\xca\x30\x19\x6d\xbb\xf5\xe6\xb7\x7b\x97\x1a\xd9\x76\x1b\xe9\xaa\x7d\x63\x6d\x9f\x6e\x4f\xb6\x7e\xd6\x51\xba\x45\x44\x21\x10\x9d\xa1\x71\xe8\xd0\x21\xba\x79\xf3\x26\x82\x20\x90\x7c\x91\x9a\x5a\x02\xae\xb4\x02\x81\x7e\xb0\x94\x9d\x9c\x44\x9e\x2e\x25\x9c\x35\xad\xe0\x02\x13\x9b\xb7\x6c\x07\xd7\x33\x4f\x03\x91\x56\xb6\x2b\xf1\xc9\x51\xee\xa4\x50\x65\x99\xd4\x52\xe8\xa4\x79\xca\x51\x4a\x36\xac\x14\xd6\xbe\xe1\xcc\xa3\x8f\x3e\x4a\xf1\xce\x3a\x43\xd1\x35\x0b\x88\x27\xb1\xb4\x86\xc1\x5a\xb5\xb3\xa9\x15\xf4\x6c\xa3\xb8\xe0\x1b\x2a\x24\xc7\xae\x01\x29\x9b\xc3\xae\x97\x5a\xbf\x48\x98\xa8\x9f\xfa\x24\x7e\xac\x99\x80\x64\x0b\x7a\x0f\x63\xac\x75\x13\x7d\x2b\x13\xe5\x07\x80\x9d\x71\x1a\x0d\x5f\xa8\x52\xed\x78\x8f\x2d\x6c\x96\x9f\x9d\xdf\x2a\x1d\x54\xa0\xd6\x4e\x29\x6c\x04\x1e\x34\x45\x27\xbd\x53\xbc\x6a\x44\xc5\x62\x11\xb5\x5a\xcd\x9c\x3f\x7f\x9e\xe6\xe6\xe6\x68\xcf\x9e\x3d\xb4\xbd\xbd\x8d\x76\xbb\xcd\x01\xd5\x25\x30\x5c\x7b\xc8\x61\x47\x5e\x1b\x01\xee\xb1\x33\x7f\x96\x6d\x63\xd3\xca\x8e\x01\x47\x5a\x1b\x57\xe6\x95\xca\x77\x74\x74\x94\xa6\xa7\xa7\xe9\x99\x67\x9e\xa1\xb3\x67\xcf\xe2\xe8\xd1\xa3\xa8\xd5\x6a\x96\x37\x05\xc4\x1b\xb8\x8c\x31\x65\x5f\xd3\xd8\xcc\x4e\xe1\xd0\x85\xdb\xb5\x4f\x3f\x7d\xb3\xf6\xdf\xce\x6f\x95\x7e\xa3\x18\x7a\x07\x14\xc8\x33\xf1\xf7\x4c\xc6\x02\x3e\x28\x3d\xfa\x14\xed\x6b\x95\x4a\xef\xf8\x27\x52\xb5\x96\x7f\xd4\x10\x96\x97\x6b\x9d\x1b\x5a\xa1\x83\xf8\x18\xc9\xd1\xd1\x51\x1d\x6f\xf1\x96\xc3\xb7\x3c\x0b\x8b\xd7\x35\x6b\xbe\x49\xf2\x48\xb6\xb3\xcb\x62\x71\x0d\x03\xa5\xbf\xa4\xcf\x15\x3f\x65\x3d\x08\x7a\x5d\x20\xd4\xd7\xc7\xf9\x50\x85\x6b\x0f\x39\x0c\xe1\x8e\x90\x2e\x58\x0a\xa4\x0b\x10\xa4\x79\x24\x89\x71\x09\xad\x79\xed\xb5\xd7\xcc\xc9\x93\x27\xa9\x58\x2c\x26\xf3\x1c\x76\x7b\x2e\x11\x69\x4d\x46\xdf\xab\x75\xd6\xbb\x9e\xe9\xee\x6d\x14\xf7\xfb\x9a\x4a\xc9\x69\xe9\x56\xc5\x10\x12\x61\xea\xdb\xbb\xc1\xde\x23\xcf\x48\xda\x7a\xdf\xad\x20\xb5\x15\x3e\xf2\xeb\x09\x65\x62\x14\x13\x53\x60\xec\x2f\xfe\xe6\xa5\x3a\xd6\xf6\x1e\x3b\xb8\x51\x7e\xf6\xc0\x56\xf9\x70\x21\xa4\xb0\x51\x0c\x77\xba\xca\x68\x50\xb4\x01\xcf\x1e\xe0\x0c\x00\xb5\x5a\x8d\xf6\xee\xdd\x6b\x4e\x9d\x3a\x85\xfd\xfb\xf7\xd3\xb5\x6b\xd7\xcc\xc8\xc8\x88\x22\x22\x7b\xba\x93\x9c\x7b\x90\x9d\x93\xb7\x13\xe7\x6b\x8a\xb7\x8e\x76\x92\x1a\xd3\x25\x94\xb2\x4d\xb3\x2c\x4f\xd9\x59\x52\xed\xbf\x7f\xff\x7e\x3a\x77\xee\x1c\x3d\xf5\xd4\x53\x38\x7d\xfa\x34\x26\x27\x27\x51\x2a\x95\xac\x75\xe1\x21\xba\xdf\xb7\x44\xa0\x11\x5f\x53\x6d\xbe\x5e\x3a\xfa\xe4\xed\xda\xbf\x7c\xea\xe6\xf8\xef\x1f\xd8\x2c\xfd\xab\x52\xe8\x1d\x24\xd8\x03\x7f\xe3\xca\xda\xe6\xb6\x16\x06\xd2\xba\xc1\x5e\x47\x90\x4a\xc3\x00\x46\x81\x4a\x53\x3b\xfe\xb1\x7a\x39\x7c\xf3\xfe\x68\x77\x15\xd1\x31\x92\x21\x11\xe9\x27\x9e\x78\x02\xf5\x7a\xdd\x6e\xcc\xe2\x8a\x94\xf7\x05\x69\x81\x64\xf1\x01\x2c\x9c\xb7\x9f\x0b\x7c\x78\x07\x86\xe3\x99\xfb\xc9\x76\x75\x59\x8e\xd2\x9a\x91\x96\x84\x2c\x47\x02\x56\x52\x4f\x9b\xc0\x35\x14\xc9\xfb\xe5\xce\x15\x96\x97\x4e\x8e\xa7\xf2\xd2\x03\x00\x3e\xff\xf9\xcf\xab\x4a\xa5\xa2\x00\xd8\x1d\x81\x15\x00\x13\xc6\x98\x3d\x00\xe6\x3c\x43\xf3\x8f\xdc\x1b\xfd\xd0\x33\x37\xc6\x7f\x65\xb4\xa3\x6a\xbd\xa3\x03\xed\xe9\x61\x71\x7d\xc5\x2c\x7b\xcf\x2f\x2f\x8c\xf3\x8b\x01\x0d\x87\xd3\x14\xf8\x20\x2d\x4e\xec\xd9\x10\xa0\xc9\x6c\xd6\x4b\xc1\x3f\xbf\x33\xb3\xfb\x57\x6f\xcd\x36\x5f\x5e\xaf\x74\xd7\x34\xa1\x09\x20\x30\x30\x01\xa2\x6d\xec\xda\xd6\xdf\xde\xd0\xb5\xb6\xb6\x86\x7b\xf7\xee\xe1\xe5\x97\x5f\xd6\xbe\xef\xab\x20\x08\xb2\xda\x81\xbf\x03\xfd\xed\x95\x15\xd7\xc5\xfb\x41\xed\x98\x97\x47\x52\x76\xa1\x50\x50\x4f\x3e\xf9\x24\x00\xe0\xe1\x87\x1f\xb6\xe7\x53\x00\x80\x5d\x1d\x51\x71\x1a\x1f\x26\xb2\x32\x46\xba\xaa\x76\x60\xb3\x74\xf4\xe1\x95\xca\x2f\x1f\xd8\x2a\x3f\x5f\x0a\xe8\x28\x81\xfc\x88\x91\xdc\x9c\x00\x2c\xd3\x5d\xe3\x37\xb7\xeb\x8f\x69\x9b\x6b\xbd\xd2\xf9\xc7\xef\x3c\xbc\xfe\xef\xef\x8d\x75\xaf\x81\x50\x8f\xef\x2b\x09\x8c\x31\xfa\x0f\xfe\xe0\x0f\x64\x27\x72\xf1\xd6\xc5\x0f\xee\x27\x5d\x16\xe0\x66\xf1\x36\x2b\xbf\x41\xed\xe4\xfa\xcd\xab\x43\x9e\x4c\x40\xce\x71\x48\x24\xca\x32\xbb\x6c\x06\xd2\x94\xb2\xce\x64\xfc\x4a\x0d\x94\x37\x77\x92\xa0\xf0\xce\xce\x0e\x8e\x1e\x3d\x6a\x57\x5a\x4c\x1c\x37\x8c\x87\x2f\xda\x10\xcc\x5a\xb5\xbb\xd9\x28\x85\x8d\xb9\xed\xe2\x81\x62\xa8\x46\x92\x61\x89\x05\x00\xdb\xe9\x53\x46\x73\xda\xf0\x89\xee\x5e\xe1\x61\x22\xee\x20\x9d\x2e\xf2\x4f\x59\x21\xf1\xb3\x32\x54\x2e\x07\xde\xd1\x7d\xf5\xe2\xc7\x4f\xac\x56\xfe\xc5\xdc\x76\x71\x5a\x81\x76\x77\x0b\x61\xbb\xeb\x01\x14\x1d\xab\x48\x88\xdb\xc6\x0e\x69\x46\x47\x47\x69\x66\x66\xc6\x5c\xb8\x70\x81\x9e\x78\xe2\x09\x7b\x20\x92\x9a\x9a\x9a\xa2\x95\x95\x15\xa9\xed\x5c\x1a\x8f\xfa\x29\x74\xb6\xab\xf4\x77\xb5\x91\xcc\xc3\xc8\x74\x17\x2e\x5c\xa0\xc5\xc5\x45\xf3\xd2\x4b\x2f\xa9\x27\x9e\x78\x02\xb3\xb3\xb3\x98\x9d\x9d\x8d\x17\x46\xc8\x43\xfc\x2d\x49\x5c\xdf\x22\x80\x11\xa5\x51\xd9\xd3\x2c\xec\x3d\xb3\x54\x7d\xf6\xc3\xef\x8d\xff\xd7\xa7\x97\x47\x7f\x7f\xba\x59\x78\xae\xa0\xd5\x34\x81\xd2\x9d\x2e\x05\x1c\x94\xd6\x01\xa9\x78\x06\x76\x28\x93\x3a\xf9\x3a\xa3\x29\xcb\x5d\xb5\xbf\xda\xf5\xd5\xed\xc9\xd6\x1b\x5d\xcf\xd8\xf9\x8e\x90\x88\x70\xe0\xc0\x01\xbc\xfb\xee\xbb\xd2\xf2\xe3\x2a\x44\x0e\xdf\x52\x72\x8c\xf4\xf0\x83\x5b\x2e\xfc\x59\xf6\x05\xb0\x3c\xa4\xe3\x56\x85\x7d\x77\xb5\x93\x6b\x38\xcb\xfb\xa0\x94\x9d\x1c\xf5\x17\xa5\x25\x0c\x46\x24\xeb\xb2\xfc\xac\xcb\x42\x45\x1e\xce\xd3\x0c\x42\xbc\x54\x9e\x1f\xfc\xe0\x07\xd5\xe9\xd3\xa7\xc1\x6e\xc9\x2a\x22\xba\x40\x7a\x82\xa2\x73\x1c\xe7\x08\x34\x77\x70\xa3\xf4\xf8\xb3\xd7\x27\x3e\xb5\x67\xa7\x30\xcf\x27\x3f\xfb\x74\x8c\x64\x05\xd8\x7b\x9e\x75\x91\xa4\x65\x71\x5c\xd6\x87\xe9\xfd\x24\xf8\x84\x74\x1a\x13\xaf\x38\x6b\xc2\xe6\x76\x29\xfc\xc9\xad\xc9\xd6\xb7\xae\x4f\xef\xfe\xf3\x6a\xb5\xb3\xbc\x13\xcf\xf0\xc7\x57\xfc\xf1\x6b\x05\x39\xcf\xb4\x31\x26\xb9\x1a\xf3\x8b\x5f\xfc\xa2\x06\x80\xc7\x1f\x7f\x5c\xbd\xfa\xea\xab\xba\x5c\x2e\xab\x56\xab\xc5\x29\x77\xb5\x57\x9e\x76\x02\xfa\xdb\x35\xb7\x9d\x7f\xf7\x77\x7f\x57\xd9\x1d\xbf\x71\x5c\x3b\xdc\xb3\x56\x85\xe2\x6d\xa8\x34\x8a\x13\xbb\x7e\x6d\x61\xb3\x7c\xe2\xe8\xfd\xf2\x2f\xcd\x6e\x17\x3f\x5e\x0a\xd4\x71\x8a\xda\x17\xc9\x61\xd3\xd2\xc8\x18\xca\xb9\x2d\x8b\xbc\x6c\x0c\x80\x50\x99\xc6\x2b\xf3\xdb\xff\xcb\x0f\x0f\x6f\x7d\x23\x50\x66\x9d\x88\x9a\x88\xce\xcb\xd0\xf7\xee\xdd\xc3\x5f\xfd\xd5\x5f\x3d\xa8\x15\x37\x6c\x9c\xac\x3e\x02\x0c\xd9\x4f\x7e\xce\x72\xf2\xe4\x20\x95\x4f\x16\x0f\x5d\x9d\x7a\x90\xa0\x41\xa4\xc9\x32\x5d\xb3\x4c\xa5\xac\x32\x01\x44\x63\xd7\xa7\x9f\x7e\x1a\x8f\x3d\xf6\x98\xf5\x4f\xc0\x03\x40\xcd\x18\xb3\x87\x88\x66\x61\x30\x37\xdb\x28\x3c\xfc\xe1\xeb\x13\xcf\x1f\xd8\xb4\xa7\x88\xd9\x7e\x9c\x5e\x5d\x49\x5c\x2c\x4d\x26\x2b\x7c\x18\x37\xbc\x9d\x9c\x91\xdc\xc0\x00\x9d\xae\x67\x16\xb7\xcb\xe1\x2b\x4b\x63\xed\x1f\xdc\x9c\x6a\x5d\x5a\xa9\x76\xee\xd4\xcb\x61\x03\x14\x5d\x2e\x6c\xcd\x66\xbb\x4d\x1a\x80\x5d\xb2\xb6\x59\x59\x3f\x74\xbb\xdd\xde\x7d\xbb\x00\xbe\xf4\xa5\x2f\x69\x00\x78\xe4\x91\x47\x12\xbe\x5e\xbd\x7a\x35\xe5\xc7\xdf\xaf\x5e\xbd\xaa\xed\x2f\x00\xbc\xf8\xe2\x8b\xea\x4b\x5f\xfa\x92\x7e\xf1\xc5\x17\x15\x00\xf8\xbe\x0f\xcf\x4b\x2e\x03\x94\x20\x61\xfd\xf8\x9f\x0f\xc0\xf7\x43\x2a\x4f\x35\xfd\xa9\xf9\xad\xd2\xf1\x83\x1b\xe5\xa7\xf6\xec\x14\x3e\x58\xe9\x7a\x8f\x7a\x1a\x35\x00\x6a\x50\x1b\x0c\xc3\xea\xe1\x80\xc6\x9d\x93\x81\x41\xab\xa0\x6f\xfc\xe3\xd1\xcd\x7f\x77\x75\x6f\xf3\x65\x10\x36\x8d\x31\x4d\x8a\xbe\xa6\xd5\x5f\xf8\xc2\x17\xf2\x86\x0d\xc3\x76\xf0\xbc\xe1\xc7\x83\x00\x53\x1e\x90\x0f\x52\xe6\xef\x27\x8e\x82\xb0\x38\x78\x24\xeb\xb2\x50\x27\x2b\x7c\x10\x72\xe5\xe5\x95\x57\x5e\xe2\xff\xf4\xd3\x4f\xab\x33\x67\xce\x00\x91\xe6\xf2\x11\x2f\xd3\x01\x98\x00\x30\x05\x60\x0f\x0c\xe6\xc6\x5b\xfe\xb1\xa7\x6f\xd4\x3e\xf1\xd0\x6a\xe5\x8c\xaf\xe1\xdb\xf9\x0a\x7b\x15\x64\x7a\x73\x46\x82\x1c\x88\xde\xec\xb2\xac\x9c\x03\x91\x96\x48\x7f\x78\x72\xa8\x72\x6a\xea\x51\xc4\xe3\xe1\x8e\x78\x31\x88\xb4\xba\x9e\x59\x6e\x94\xc2\x9f\xad\x57\xba\xaf\x2d\x8e\xb7\x2f\x2f\x8f\x75\x6e\x6c\x8e\x04\x6b\xbb\x05\xdd\xe2\x40\x12\xf3\x27\x99\x17\xe1\xfc\xb3\xa0\x92\x1c\x93\xd8\x9b\xec\x4d\x09\x8b\x23\x9c\xbb\xbe\xb1\x79\x0c\x48\x8a\xc5\x95\x20\x91\x80\x05\x19\x14\x6b\x2d\xbf\x32\xb1\xeb\xcf\x2f\x6c\x94\x4e\xcc\x36\x8a\x4f\x4c\xee\xfa\x67\x47\xba\xde\x89\x08\x2c\xc8\x87\xbb\xdc\x5c\x97\xa2\xf5\xfd\x99\x24\x99\xf9\x19\x18\xac\x57\x82\x97\xbf\xf3\xf0\xfa\xbf\xbb\x57\xeb\x5c\x43\x74\xa4\x5f\x0b\x40\x70\xef\xde\x3d\x3d\xa4\xd5\xf1\x20\x6e\x90\xe5\x37\x28\xcd\xcf\x43\x43\x9e\x45\xe2\xcc\x6f\x18\x4e\x0f\x6b\xbe\xf2\x82\xc0\xde\x65\xfc\xac\x70\x49\xa8\x13\x84\x3c\xcf\x53\x61\x18\xea\x97\x5e\x7a\x89\x0b\x67\x62\x79\x20\x02\x90\x59\x18\xcc\x55\xba\xea\xc0\xf9\xdb\x63\x1f\x39\xbd\x54\xfd\x60\x31\xa4\x32\x39\xaa\x9c\x1c\x19\xd8\xd7\xdb\x6d\x84\xf8\x57\x76\x72\xe9\x86\x52\x83\xec\xd9\x95\x9f\x14\xfe\x78\x38\x63\x80\x8e\x26\x34\xda\xbe\xbe\x55\x2f\x07\x6f\x6e\x8e\x04\x57\x57\xab\xdd\x77\xee\x8d\x75\x6e\xed\x14\xc3\xb5\x46\x29\x6c\x04\x5e\x34\xb1\x8a\x34\x88\x48\x20\x91\x02\x30\x8c\x80\x49\xd0\x90\xd6\x04\x7f\xf6\x61\xa0\x4a\x01\x95\xab\x1d\xbf\x56\x6d\x7b\x7b\xe6\xb7\x4a\x47\xa7\x77\xfc\x47\x26\x77\x0b\x8f\x8e\x76\xbc\xe3\x85\x90\xe6\x94\x41\x05\xcc\xb2\x70\xce\x4d\xdb\x67\x3b\x67\x91\x6a\x1f\x7e\x8f\x0e\x8b\x97\x66\x5d\x2a\xa6\x41\x4f\x61\xf4\xe9\x8d\xbe\x34\x76\x12\xc0\x04\xb7\x26\x5b\x5f\xff\xf6\xc9\xf5\xff\xb5\x55\xd4\xcb\x88\xce\xfe\xec\x00\x08\x62\xab\xc3\x25\xab\x83\x64\x39\x6f\x6a\x60\x98\xce\x3b\xec\xd0\x72\x50\xd9\x59\xf4\x72\x97\x0b\x1c\x59\x1d\x95\x57\x60\xa0\x25\xe0\x48\x3f\x08\x68\xf2\x90\x72\x28\xd4\xfc\xdc\xe7\x3e\xa7\x46\x47\x47\xc1\xe6\x3c\xec\x5d\x2d\x13\x88\x2c\x8f\xd9\x42\x48\xf3\x27\x57\x2a\x4f\x3d\x79\xab\xf6\xd1\xb1\xb6\x37\xd5\x67\x06\x5b\x2b\x24\x7e\x4e\x1e\xd2\x7b\xd2\xd1\x9b\xed\xcc\x20\x26\xc7\x82\x48\x85\xa7\xd2\xc4\x5d\x24\x23\x4e\x24\xec\x3c\xbf\x34\x90\x04\x9e\x5e\x69\x16\xf4\xad\xad\x72\x70\x63\xa7\x14\xde\xdc\x1a\x09\x6e\xad\x54\xbb\x8b\x3b\xc5\x70\xb3\xeb\xe9\x66\xc7\x33\xad\x8e\xaf\x3b\x21\x41\x1b\x18\x7b\xd2\x14\xe0\x1e\xe2\x64\x59\x1d\xaa\xef\xd7\x40\xf9\x1a\x7e\x21\x54\xc5\x72\xa0\xca\x7e\x48\xd5\x5a\xdb\x9f\x98\x69\x14\x0e\x8c\xb7\xfc\x23\x63\x2d\xff\xf0\x58\xdb\x3b\x5c\xee\xaa\x79\x5f\xd3\x9e\x08\x28\xd2\xcb\xa7\xbc\x3c\x37\x23\xff\xff\x70\xe9\xb2\xe3\xf9\x8e\xfa\x6b\xfb\x1a\xff\xf3\xf7\x8f\x6e\x7e\x5d\x2b\xac\x23\xb6\x3a\x56\x56\x56\xf4\x5f\xfe\xe5\x5f\xfe\x3c\x43\x85\xbc\x3e\x30\xac\xb2\xce\x2a\xff\x41\xad\x8e\x41\x7d\xbc\x2f\x4f\x72\x79\x0e\x41\x78\x1e\x6a\x5a\x37\xc8\x22\x19\x76\x18\x94\xf9\x3c\x31\x31\x81\x4f\x7d\xea\x53\xa8\x54\x2a\x40\xb4\xf6\xef\x03\xa8\x10\x51\xc5\x18\x33\x85\x68\xe8\x32\xab\x0c\xcd\x2d\x6c\x96\x4e\x3d\x73\x63\xfc\xe3\x7b\x1b\xc5\x83\xca\xd8\x31\xb8\xe8\x95\xa0\xa4\x73\x92\x61\xcb\x7b\x76\x66\x1e\xbd\x61\x8c\xd5\x84\x7c\xf2\x33\x59\x95\x89\x53\xda\xb0\x5e\x5c\x66\xdd\xf4\x0d\x8b\x7a\x54\x00\xe8\x8d\x88\x2c\x3d\x89\xd6\x04\x9b\x5c\xb5\x45\x19\x6d\x80\xc0\x10\x5a\xa1\x32\x9b\x5d\x65\xd6\x3b\xbe\x5e\x6b\x16\xf4\x5a\xb3\x18\x2e\xef\x16\xf4\x6a\xdb\xd7\xeb\x6d\x5f\xd7\x77\x0b\xba\xd1\xf6\x75\xab\xe5\xeb\x56\xd7\x33\x1d\x43\x46\xeb\xe8\x2c\x55\xcd\x34\xbd\x52\x06\x8a\x0c\xa9\x72\x40\xc5\x62\xa0\xca\xc5\x50\x95\xcb\x5d\x55\xad\x74\xd5\x54\x31\x50\x53\x23\x5d\x35\x53\xe9\x78\xb3\xa3\x1d\x6f\xae\x18\xd2\x1e\x5f\xd3\x84\x32\x54\x53\x06\x65\x00\xbe\x6b\x9e\xe2\x81\x20\x21\x07\xab\xe5\x5c\xd4\xfb\x8d\xd3\x0b\xcc\x1e\xe6\xc4\x97\x75\xfd\xec\xaf\x4f\xad\xfd\xeb\xc5\xf1\xce\x35\xf4\xac\x0e\xfd\xcd\x6f\x7e\x13\x4b\x4b\x4b\xc0\xf0\x7d\xc4\x15\x37\x4f\xe1\xc2\xe1\x37\x48\xc1\x66\x4d\x1d\x0c\x63\x59\x0c\x43\x1f\x00\x28\x7f\x08\x42\x38\x01\xb2\xa0\x61\x4d\x2f\xd7\x30\x85\xe7\xed\x02\x9d\x41\x95\x53\x9b\x9b\x9b\xf8\xea\x57\xbf\xaa\xe3\x7d\x1e\xf6\x4c\x8c\x66\xac\x49\xb5\x31\x91\xf9\xae\xc9\x74\x6e\x4d\xb6\x3a\xdb\xa5\x70\xf3\xe9\x5b\xb5\xe7\x8e\xac\x8d\x9c\x2e\x68\x2a\x12\xb7\x2a\xe2\xe7\x48\xc0\xa2\x67\x4a\x0c\x0f\xbe\x33\x31\x1e\xf0\xd8\xb8\x46\x68\x4e\xea\xe5\x45\x06\x02\x3c\xa8\x67\x3a\x13\xd2\xd6\x44\x8c\x12\xd1\xb9\x22\xd2\x20\x67\xe0\xc6\xc6\xe0\x49\x3e\x20\x05\x63\x8a\x04\x2a\xaa\x80\x6a\x45\xc2\xc1\xd1\xae\xc2\xc4\xae\x9d\xcb\x88\x80\x05\x04\x6d\x80\x8e\x21\xb4\x34\x99\x16\xf3\x0b\x0c\x8c\x1d\xda\xa8\x78\xe9\x53\x91\x89\xe6\x27\x94\xa1\x32\x01\x45\x8a\xbe\x44\xf5\x09\xf0\x63\x9a\x94\x6b\xf7\x44\xef\x90\xb6\x74\x18\xc9\x48\x44\xfd\x43\x0c\x3b\x8c\x88\x79\x90\xda\x83\x23\x9c\x6b\x8a\xaa\x67\xf4\xa5\x5f\x00\x4c\xe3\x00\x00\x1b\xf9\x49\x44\x41\x54\x15\x42\x2e\x60\xc9\xbc\xd9\x64\xf9\x6e\x41\xaf\x5c\xdd\xbb\xf3\xed\x8d\x91\xa0\x15\x9f\x2c\xa6\x84\xa5\x34\x6c\x27\x46\x4e\xb8\x4b\xf6\x07\x29\xd6\x41\x56\x7c\x16\x88\x65\xd1\x92\x57\x8f\xbe\x7c\xfd\x8c\xc8\x83\x88\xcf\x22\x48\x82\x45\x1e\xc1\x59\x04\xe6\x8d\x07\x39\x0d\x89\xfb\xda\xd7\xbe\xa6\x3f\xff\xf9\xcf\xab\xd1\xd1\x51\xbb\xe2\xa0\x01\x70\xf0\xe8\x80\x28\xd8\x18\x0d\x5a\xff\xe9\xf8\xc6\xf6\xe3\x95\xee\xca\x99\xc5\xea\xd3\xa3\x1d\x6f\x02\x86\xed\xf5\xb0\xf3\x1d\xc6\x24\xe2\xd6\x9b\x48\xed\x85\xd9\x2e\x60\xef\xaf\x05\x10\xc9\x36\xec\xe4\x66\x3c\x9e\x46\x6f\xf3\x19\x3f\x2c\xc8\xe6\x95\x00\x83\xb1\x4f\xd6\x94\x88\x72\xe7\x13\x7f\x5c\xfc\x93\x67\x66\xdd\x58\xab\xc5\xb0\xf4\xf1\xf7\x36\x0a\xd1\xfd\x34\x7e\xfc\xed\x4d\x25\xb1\x86\x2c\x3c\xb1\x4d\x72\xbc\x76\xf6\x27\x7d\x1a\x1a\x7a\xbd\x35\x3e\x7d\x3e\xb1\xa8\xc8\xd6\x82\xcf\x52\x24\x55\x60\x7c\xee\x91\x4e\x6c\x9f\x05\xb3\xd3\x52\x98\x93\xc2\x8e\xa4\x2c\x01\xbc\x60\x60\xcb\xef\xe1\x31\x96\x0f\x88\x69\x4d\xcf\x69\x25\x7b\x3c\x12\x22\xc9\x6e\xd4\xd3\xab\xd5\xce\x3b\x3f\x39\x58\xff\x3f\x6f\x4c\xb5\x7e\xa0\x15\x3a\xd1\x4e\xd3\xbe\xe1\x55\x96\x56\x77\x29\x3f\xa7\xf6\xce\x88\xeb\x0a\xb7\xbf\x72\xf8\x08\x0c\xee\x27\xc3\x5a\xf3\x79\x4a\x3c\xe9\xbb\xf6\x30\x14\xc0\xce\x07\xa5\x0b\xb1\x4d\xc3\xff\xb4\x88\x6f\x89\xe5\x10\xcf\x2b\xcc\xe3\x32\x23\x3d\x95\xa7\xc9\xf0\x07\xdc\xf4\xd9\xf8\x36\xad\xba\x73\xe7\x0e\x7c\xdf\xc7\xf4\xf4\xb4\xa1\xe8\x40\x16\x7b\xed\x5e\x17\xbd\x23\xe8\xbb\xa1\x87\xce\xe2\x78\xe7\xde\x6a\xb5\x7b\x7f\x7c\xb7\x30\x3e\xda\xf5\xc6\x23\xf1\x8f\x8b\x24\x80\x6f\x3b\x37\xb1\x94\xda\xed\xe9\x91\xfc\x51\x42\x61\xb2\x67\xa1\x77\x9c\x18\xfb\x46\x22\x9d\xa6\xf7\xa1\x1c\x25\x69\x6d\x3c\x12\xf1\xf8\x96\xf8\xe4\x37\xc9\xdf\xa4\xf2\x48\x86\x56\x09\xd7\xec\xd7\x9f\x69\x3a\x23\x5a\x7a\x5f\x86\x46\x9d\x24\x7d\x6a\x1a\xa7\xc9\x06\x50\x9c\x67\x6f\xe8\x86\x1e\xaf\xe2\xa8\x09\x7d\xb0\x65\x24\x88\xc3\xe2\xf4\x00\x81\x88\x92\x7c\x53\x51\xb9\x45\x67\xab\x49\x22\x0e\x28\x29\x33\xc9\x9b\x49\x03\x09\xda\x93\xcf\x0d\x78\xdb\x25\x4d\x94\x7a\x81\x81\x41\xd7\x33\xad\x6b\xb3\xcd\x9f\xfe\xc3\xf1\xcd\xff\x6b\xb9\xd6\x7d\xcb\x28\xd8\xeb\x17\x9b\x44\xd4\x8e\xe5\xc9\x7c\xef\x7b\xdf\xd3\x48\xf7\x11\xfb\x6e\x9d\xec\x0b\xae\xb8\x9c\x7a\x30\x7f\xd9\x59\x79\x3f\x31\x2c\x0f\xde\xef\x6c\x3a\x99\x3f\x90\xee\x7f\x1c\x18\x8c\xc8\x83\xe7\x25\x69\xb7\x74\x68\x7e\x93\x9b\xcd\xd0\x88\x84\x3c\x5c\x12\x06\xe6\xc7\x33\xe7\xe8\xc8\x01\xc6\xc5\x00\x9e\xa7\x64\x8a\x64\x10\xcf\x9f\xa7\xd5\xad\x56\x8b\x6e\xde\xbc\xa9\x7d\xdf\xa7\xf8\x93\x7c\x13\x1f\xcc\x62\x97\x2c\x3b\xf1\x6f\xd7\xc0\x74\xeb\xe5\x60\xf3\xe6\x54\xeb\x36\x01\x98\x6a\x16\x67\x7c\x4d\x05\x4e\x9d\x89\xc7\x29\x76\x98\x92\x38\xbb\xdc\x6a\x23\xf3\xdd\x88\x29\x45\x24\x80\x26\x59\xca\xb5\x9a\x9a\x45\x4d\xbe\x91\xe1\x1d\x8d\x78\x50\x4f\x8b\xc6\x34\xa4\x4a\x32\xbd\x76\xef\x75\xc8\xf4\x90\x21\x6d\xf1\x44\xf4\x45\xa0\xc8\xad\x04\x0b\x96\xc4\x86\x59\xc2\x06\x91\x62\x2e\x9c\x73\x3e\x98\x7a\xa0\x63\xa4\xf6\x4f\x80\xb9\x97\xd8\x58\x6b\x4d\x94\xd5\x03\xe4\xec\x42\x7b\x40\x60\x2f\xf0\x4a\xe7\x9b\xb6\x16\x6c\xfb\x45\x1c\x02\x0c\xd6\x2b\xc1\xf2\x0f\x8e\x6e\x7d\xe7\xd2\x81\xed\xbf\x6f\x16\xf4\x2d\x22\xba\x07\x60\x83\x88\xb6\x8c\x31\xf6\x98\xc1\x60\x6b\x6b\x0b\x37\x6f\xde\xa4\x4e\xa7\xe3\x02\x0c\x2b\xcf\x1c\x24\x64\x87\xb6\xef\xbc\x46\x5a\xf8\x5b\x36\xf2\xdf\x3e\xd9\x47\xaf\x55\x6c\x5e\x9a\xc5\xcb\xeb\xab\xb2\x2f\x2a\xa4\x69\x93\x00\x92\xbc\xf3\x53\xce\x6d\xa1\x24\x32\x91\x1d\x56\x23\xcd\x14\x12\x69\x25\x50\xc8\x67\x4e\x18\x8f\xcf\xcb\x71\xa1\x36\xa7\xcd\x55\x36\x00\x98\xbb\x77\xef\x1a\x22\xb2\x87\x01\xd9\xf2\x92\x6b\xf7\x10\x5d\xfa\xdb\x01\x51\xd0\xf5\x4c\xeb\xee\x44\x7b\x71\x7d\x34\x58\x9b\x68\xf9\x93\x95\x8e\x1a\xb7\x82\x9e\x00\x06\x81\x15\xe9\xe8\x2f\x19\xe3\xe3\x44\xd8\x79\x3c\xd6\x09\xed\xae\x51\xae\x0d\x5d\xeb\x89\x24\x6b\x0c\xdb\x09\xfa\x3b\x92\x5c\xa1\x88\x94\x2b\x9b\x24\x4c\xf2\x61\xb4\x58\xa0\x91\x16\x46\x42\x16\xa5\x84\xa0\x77\x7e\xb3\x7b\xdf\x07\xef\xa8\x49\xdd\x18\xad\x94\x44\xb2\xf4\xb2\x00\x3b\x8c\x63\xe0\xd7\x27\x9d\xe8\x95\x9d\xaa\x0f\x3b\xde\x20\x46\xbf\xb4\xe5\x67\xb9\x2d\x1b\x90\xa2\xb8\x5d\x5f\x77\xde\x9a\x6d\x5e\xfe\xde\xf1\xcd\xbf\xbe\x3d\xd1\x7e\x5d\x2b\x2c\x02\x58\xa1\xf8\xb2\x67\xc4\x93\xa2\xb1\x05\x6b\x5e\x7f\xfd\x75\xdc\xba\x75\x0b\xe8\x1f\x1a\xb8\x60\x55\xca\x38\xef\x0f\x12\x78\x78\x5a\x3e\x02\xe0\xe9\x38\x00\x0c\x52\xd2\x3c\x0f\xfe\x6e\xf3\xe1\xb4\x5b\x3f\xde\xe4\x32\xdf\x14\x70\x70\xf1\x94\x63\x25\x57\x27\x96\x26\x93\x74\xb2\x70\xd9\xd9\xa5\x35\xc1\x99\x21\x09\x96\x48\x2a\xf3\x07\x04\x98\x2d\x2d\x2d\xe1\xe2\xc5\x8b\x3a\x3e\xc3\x54\xdb\x6f\x5a\x10\x0f\x59\xc8\x5e\xbd\x47\xe8\x6a\x98\xee\x46\x25\xd8\xbc\x35\xd5\xba\xad\x09\xe1\xc4\x6e\x61\xda\xd7\x54\x94\x73\x08\x89\xe3\x7d\xdb\x24\x30\xd0\x0b\xb0\xaa\x3a\x26\x3d\xf5\x91\x1d\xeb\x24\xd1\xfc\x49\x2f\x53\x63\xff\x67\x1a\x33\x0a\x62\x4d\x13\x77\x92\xde\xea\x4c\x6c\xbd\xf0\xf0\x24\x29\x67\xb9\xd5\xe0\xf1\x80\xcc\x5a\x52\xd6\x12\xb1\x49\x79\x55\xc5\xac\x65\xd2\xc5\x13\x70\x61\x9d\x9f\xc5\xed\x1d\x3b\x10\xf3\x22\xa9\x43\x42\x05\xe4\x8a\x47\x4a\x82\xb8\xb9\x94\x42\x9b\x18\x30\x93\x28\x8c\xe8\xe4\x1a\x50\x0b\x1a\x22\xcf\x38\x0e\xb1\x4a\xda\x79\x1b\x0d\x60\xad\xda\x5d\xfc\xd1\xe1\xad\xef\x5e\x3e\xd0\xf8\x5e\xa3\xa4\x6f\x18\x98\x25\x22\x5a\xa6\xe8\xd2\xe7\x4d\x00\xdb\x44\xd4\x8a\xad\x8d\xb0\x5e\xaf\xe3\x87\x3f\xfc\x21\xba\xdd\x2e\xe3\x48\x5f\x9f\xe1\x60\xc1\x6b\xe9\xea\x67\x49\x87\x14\xe9\xc8\x11\x97\xf7\x55\xa1\xa6\x52\xf9\x73\xee\xf2\x7e\x22\x95\xb6\xec\x93\x40\x3f\x28\xf1\x3c\x0c\xd8\x1c\x07\x47\x29\x89\x36\xd2\x54\x71\x75\x68\xe9\x38\x3a\x4a\xc2\x5c\x66\x9a\x04\x18\x17\xea\x01\xfd\x74\x71\x30\x91\x20\x62\xde\x78\xe3\x0d\x33\x35\x35\x45\x93\x93\x93\x06\x80\xfd\x2c\x3f\xb9\x76\x2f\xb9\x6a\x8f\xd0\x69\x7b\x66\xf7\xee\x78\xfb\xee\xea\x58\x77\xb5\xd2\xf5\x2a\xd5\x8e\x1a\x27\x90\xe2\xf3\x19\xb2\xa6\x89\xc2\xe4\x71\xac\x96\x4d\x34\xa1\x8d\x47\xfd\x79\x50\x2f\x2e\x1f\xdf\xa7\xc2\xc0\xd2\x26\x15\x25\x56\x16\x4b\x97\xe2\x28\xa7\x9b\x58\x8b\xf5\xfb\x13\x58\xba\xa4\x55\xd3\xa0\xd1\xb7\xfc\xc1\xfb\xa7\x18\x1b\xf5\xfa\x70\xba\xc2\xbd\x43\xa0\xa3\x42\x9d\xfb\x38\xec\x44\xb1\xf4\x4f\x59\x2e\xbd\x30\xd3\x57\x1e\x1c\x40\x28\x2b\x19\x11\xb3\x5b\xd0\x8d\x37\xe6\x76\xfe\xf9\xfb\xc7\xb6\xbe\x7d\x67\xa2\x7d\x25\xf4\x70\x07\x84\x7b\x44\xb4\x82\xe8\xd6\xf8\x2d\x00\x8d\x78\x5e\x23\x00\x10\xd4\xeb\x75\x7c\xfb\xdb\xdf\xc6\xf6\xf6\x36\xb7\x16\x5c\x13\xfd\xbc\x63\x73\xd9\x97\x61\xdc\x1f\xc2\x8f\x87\xc9\x5f\x57\x3c\x59\xa6\x04\xaf\x41\x61\xca\x11\xd7\x49\x0b\xc1\x6d\xf2\x0c\x5a\xba\x01\xfa\x99\x35\xcc\xea\x4b\x5e\xfa\x07\xcd\x27\x2f\xcf\xbe\xb0\xdf\xfb\xbd\xdf\x53\xf1\x52\x9a\x42\xfc\x79\xbe\x31\xa6\x42\xd1\xcd\x71\x35\xfb\xb1\x1c\x0c\xf6\x8c\x76\xd4\xfe\x93\xf7\x46\xcf\x9d\x5a\x1e\x3d\x37\xb1\xeb\xef\x51\x20\xc5\xd9\x98\x9a\xd1\x4f\x69\xe9\xf8\x97\x90\x74\x22\xbb\xd2\x90\x09\xb3\xb1\xbf\x9c\xf6\x48\xc2\x1c\xfa\xa5\xb7\x1a\xc3\xcb\xcb\xa0\x03\x39\x61\x96\x46\x6e\x25\xa4\xea\xc9\x57\x7f\x1c\x19\x26\x9d\xdc\xf1\x95\x8f\xb5\x7a\x52\xd6\x06\x2b\x2f\xd5\xf9\x59\x39\x86\x1d\x90\x24\xaa\x8e\xfe\x52\x52\xf9\xf2\x2d\xfb\x36\x1f\x69\xe1\x18\x18\x04\xca\x04\x8b\xb5\xce\x8d\x57\xf6\x6f\xbf\x7c\x7b\xb2\x7d\x35\x50\x66\xcd\xc0\xac\x01\x58\x27\xa2\x4d\x00\x75\x63\x4c\x13\x40\x8b\x7a\xb7\xbd\xe9\x46\xa3\x81\x3f\xf9\x93\x3f\xc9\xea\x2b\x2e\x59\xb4\x6e\x90\xfc\xca\x3e\x97\xd7\xaf\xf2\xca\x18\xd4\x3f\xf2\xd2\xe4\xf5\x77\xe7\xaa\x0a\xd7\xe8\x12\xe1\xf8\xbb\xb4\x34\xa4\xbf\x34\x83\x90\x11\x97\x8b\xae\xfd\xe3\xe1\x32\xbe\x7d\x97\x8c\x90\x16\x91\xcd\x53\x22\xb8\x02\x60\x96\x96\x96\x68\x76\x76\xd6\x8c\x8c\x8c\xd8\x65\x5a\x1d\x5b\x1f\x1d\xf4\xc6\xae\x6d\x03\xd3\xe9\xfa\x68\xde\x1b\xeb\x2c\x2f\x8e\xb7\x17\x0d\x91\xa9\xb6\xbd\x5a\x41\x53\xc9\x0a\x5f\x3c\x2c\x76\xce\x73\xa6\x34\x1b\x45\xe2\x9f\xda\x36\xdd\x67\x46\xa7\x94\x65\xda\x51\x2f\x8c\xc7\xe1\x7b\x3d\x52\x71\x4c\xbf\x5f\x8a\x26\x6e\xd5\xa3\xa7\xad\xed\x86\x36\x50\x3a\x4d\xef\xda\x09\xee\x89\x5e\xa5\x93\xb9\x08\xd6\x9d\x99\xf1\x9c\x58\x03\x09\xd0\xf5\x78\x92\xaa\x26\x2f\x27\x0e\xe7\xa4\x1b\x44\xbc\xee\xfb\x2e\x25\x99\xeb\xe8\xd1\x63\x58\xbc\xe4\x37\x86\x16\x4d\x46\xdf\x1f\xed\x2e\x5d\x5a\xd8\xfe\xc1\x4f\x0e\x6d\xff\xfd\xca\x58\xf7\x4d\xad\xb0\x68\x60\x96\x89\x68\x95\x0d\x4d\x76\xe2\x15\x94\x0e\x80\xd0\x18\xa3\x2f\x5f\xbe\x8c\xef\x7c\xe7\x3b\xb2\x73\x72\x79\xcb\x1a\x5a\xf3\xb0\xac\xf9\x05\x69\x29\xb8\xe6\x34\x80\xb4\xbc\xcb\xe5\x5b\x97\x35\x9f\xd5\xef\xe4\x9c\x8a\xcb\x2a\xe2\xe9\xfa\xd4\x0e\xb1\x08\x2e\x94\x93\xc4\x01\x6e\x64\xcc\xb3\x5a\xf2\x10\x39\x2b\xcc\x86\xcb\x32\x87\xb5\x70\x78\xfa\x24\x6d\xb5\x5a\x55\x8d\x46\x43\xff\xce\xef\xfc\x8e\x8a\xcf\xb3\x54\x88\x76\x9c\xda\x0f\xe5\xaa\xe8\x6d\x59\x9f\x02\x30\xe5\x87\xb4\x67\x7e\xab\xf4\xd0\x99\xc5\xd1\x0f\x1c\xd8\x2c\x1f\x2d\x85\x54\x8e\xc6\xcb\xd2\x0c\x88\xb5\x9d\x9c\xb8\x03\x8b\x92\x68\xbe\x58\x4f\x5a\x85\x6c\xf7\x69\x64\x8c\xd3\xa3\x8e\x63\x3b\x0b\x7a\xe6\x4e\x02\x5c\x19\xa6\x09\x73\x3d\xba\xac\x56\x76\x18\x24\x59\x61\xfd\x24\x01\x30\xac\x93\xca\xf2\xd2\x3c\x49\x57\xc6\xc0\x8d\x92\x80\x93\xee\x84\x36\x5b\x35\x9e\xde\xc4\x3c\x70\xd8\x43\xec\x83\x44\x0d\xa3\xb7\x4b\xe1\xe6\xdb\x33\xcd\x2b\x3f\x9b\xdb\xb9\xb4\x51\x09\x6e\x1b\xc2\xba\x31\x66\x9d\x88\xd6\x01\x6c\x1a\x63\x1a\xf1\xe6\x41\x6b\x65\x68\x63\x4c\xd0\x6c\x36\xf1\xb5\xaf\x7d\x6d\x90\x55\x91\x67\xb1\x67\xf5\xab\x3c\x6b\x3b\xaf\xff\x64\xf5\xcd\x5c\xd9\xcf\xa0\x2b\x2b\xdf\x81\x61\x9e\x23\x02\x47\x2e\x4e\x14\x89\xc4\xdc\x5a\xe0\x56\x86\x94\x47\x23\xe2\x4a\x0b\x45\xce\xfa\xba\x24\x51\x2a\x20\x69\x89\xf0\x70\x72\xa4\xd5\x00\x54\xa7\xd3\x01\x00\x0a\xc3\x10\xd3\xd3\xd3\xa6\x50\x28\x68\x00\x76\xe2\x34\x40\x64\x92\xb6\x89\xa8\x6d\x05\x28\x24\xb3\x5b\x1f\x09\x36\x6e\x4e\xb5\x6e\x6d\x8d\x04\x1b\x23\x81\x57\xae\x74\xd5\xa8\x32\xe4\x59\x71\xe5\xa6\x7e\x6f\xe2\x8e\x19\xd1\x76\x05\x25\xd9\xc6\x4e\x09\x65\xbd\x65\xcf\xf4\xa6\xac\x5e\x07\xe6\x1b\x96\xa2\x04\xc9\xc0\x21\xe9\x51\x40\x5a\x4f\xc7\x3a\xde\xf0\x86\xb0\x69\x39\x83\xa2\xb2\x6c\xe7\x37\x89\x16\x07\xb3\x0e\x00\xc8\x25\x59\x5b\x9e\x5c\xda\x64\xa5\x59\x93\xa7\xb7\xfa\x82\x64\x1e\xc7\x05\x73\xe0\x16\x05\xfa\x85\xca\xe2\x10\x88\x43\x2f\x25\x93\xcf\x3d\x4c\xec\x99\x81\x86\x80\x9d\xa2\xae\xbf\xb3\xa7\x79\xe5\xe5\x23\x5b\x7f\xf7\xe6\xde\xe6\x4f\x77\x8a\xe1\x4d\x10\x2d\x01\xa9\xb9\x8c\x3a\x11\x6d\x03\xd8\xb5\x56\x46\x18\x86\xe1\xc6\xc6\x06\xfe\xf4\x4f\xff\x34\x6b\x12\xd3\x35\x59\x29\xe5\x9a\x5b\xc5\xc3\xcc\x21\x66\x75\x5c\x69\xc9\x70\xeb\xc4\x95\x1f\x6f\x0c\x59\x36\x8f\x2f\xd3\x48\xfa\x39\x1e\xa4\xca\xa6\x0c\x42\x5d\x96\x86\x75\x83\xc6\x65\x2e\x24\xcc\x1a\x47\x0d\x83\x7e\xc3\x86\x43\xc4\x01\xf3\xeb\xa3\xbd\x52\xa9\xe0\x13\x9f\xf8\x04\xa6\xa7\xa7\xa1\x94\x52\x00\xec\xe1\x32\xbe\x31\xa6\x1c\x7f\xef\x52\x43\xcf\x02\x99\x20\xd0\x54\x39\x50\x7b\x8f\xad\x8d\x3c\x7a\x6a\x79\xf4\xec\x4c\xa3\x70\xc0\xd7\xe4\xcb\xa3\x0a\x01\x03\x12\x63\x18\x2b\xd4\xa9\x5d\x92\xc6\xc4\x43\x1e\x8b\x20\xfd\xf9\x24\xd6\x0d\x1b\xb3\x47\x19\x22\xe9\x9f\x76\x8c\x92\xde\x42\x1f\xff\x32\x23\xc5\x24\x65\xf4\xe6\x48\xd2\xe7\x72\xa2\x07\x66\x49\x56\xa9\x97\x54\xd9\xfc\xc5\xbd\x75\x5c\xe0\xbf\xb4\x68\x64\x39\xe0\xd6\x4e\x86\xe5\xe5\x8a\xcb\x0c\x1c\x8b\x96\x2d\x5f\x37\x6f\x4e\xb6\xae\xbd\x3e\xbf\x73\x69\xb9\xd6\x7e\x37\x8c\x3e\x50\xb3\xd6\xc5\x26\x11\xd5\x01\x34\x01\x58\x2b\x23\x39\xe7\xa4\xdb\xed\xe2\x95\x57\x5e\x81\xb8\x1a\x21\x6f\x2e\x20\x4f\xbe\xb3\x64\x73\x58\x6b\x22\xaf\x6f\xe6\x59\x08\x59\xf4\xe5\x59\x26\x32\x5f\x57\x19\x00\xa2\xf3\x38\x86\xad\x94\xcb\x65\x75\xec\x61\xf2\x19\x86\x49\x59\x65\x3c\x48\xe3\x0d\xca\x43\xff\xfa\xaf\xff\xba\x9a\x99\x99\x81\x9d\x3c\x8d\x27\x4e\x7d\x44\x9f\xea\x57\x10\x0f\x61\x88\xc8\x0e\x61\x26\xca\x1d\x35\x73\xec\xfe\xc8\xa3\xa7\x96\x47\xcf\xcd\x6e\x17\xe7\x3d\x03\x3f\xb2\x28\xd8\x99\x0e\x62\xd5\x80\x0f\x63\xec\x2a\x6a\xf4\xea\x9e\xc4\x23\xd6\x71\x7a\x5d\x05\xc8\x36\xe7\x7b\xe6\xb9\xec\xa4\xf6\x43\x5c\xa0\x67\x01\x65\x4c\x79\xf6\x0f\x07\x44\x79\xfd\x4e\xda\x10\xae\x28\x79\x43\x94\x61\x4b\x72\xd9\x2a\x96\x2b\x3d\xc0\xb8\x3d\xd9\x7e\xe7\xf5\x7d\x8d\x4b\x77\xc7\xdb\xef\xc6\x5f\xb4\x5a\xb0\xd8\x44\x74\xae\x46\x03\x0c\x30\x10\x1f\x47\x60\xcf\x15\xad\x54\x2a\xaa\xd9\x6c\x0e\xea\xa8\x80\x43\x96\x90\xdf\x67\x86\x01\x12\x99\xef\x20\xa5\x38\x68\x58\x91\xe5\xe7\x2a\x37\x8f\xde\x94\x1f\x07\x0e\xe9\xf2\x18\xe7\x7a\x1f\xa6\xa2\x79\xc4\xb8\xca\xcf\x6a\x18\x57\x3c\x4e\x33\x1c\x7e\x99\xe8\x6a\x0f\xff\x8d\xcf\xf8\xb0\x71\xad\xf5\x91\xcc\x7f\x18\x63\xaa\x44\x94\x58\x20\x00\x26\xca\x5d\x35\x73\x70\xa3\x74\xfc\xe4\xbd\xd1\x33\xfb\xb7\xec\xed\x72\x0e\x8b\x23\xfe\x8d\x3a\x71\xfa\x8b\xd8\x3c\x6d\x6e\x58\x07\x49\xa5\x85\x23\xcd\x10\x7d\xdc\x35\x55\xd2\x57\xac\x2b\x9d\x88\xdf\xbf\xe1\xca\x91\x81\x30\x9a\x53\x87\x28\x21\x0b\x4b\x2c\xaa\xc6\xcf\x22\x02\x07\x42\x1b\xa4\x61\xb0\x53\x0a\x37\xdf\x9d\xde\x7d\xf3\xea\xde\xe6\x6b\xab\xd5\xce\xed\x0c\xc0\xe0\x16\x46\x07\xec\xfc\x92\xb5\xb5\x35\xfc\xc5\x5f\xfc\xc5\xb0\xca\x33\x4f\x71\x65\x3d\x0f\xdb\x79\xdf\x4f\x3c\xc0\x5d\xc6\x20\x9a\xb2\xea\xc4\x9d\x13\x54\x5c\x16\xc7\x30\xc3\x04\x38\xe2\x0f\x72\x0f\x02\x24\xc3\xe6\xfb\x7e\x69\xc9\x74\xbf\xf6\x6b\xbf\xa6\xe6\xe6\xe6\x00\xc0\x7e\x05\x69\xcf\xfa\x28\xda\x21\x0c\x62\x0b\x24\x5e\xc2\xad\xc1\x60\xa2\x18\xd2\xf4\xec\x76\xf1\xe0\xc3\x2b\x95\xd3\x87\xd7\xcb\x27\x46\x3b\x5e\x2d\x3d\xeb\x10\xbb\xa1\x7a\xe8\xcf\x53\x83\x9f\xc3\xe5\x95\xed\xea\xb1\x36\x48\x4c\xbc\xf6\xa7\x4d\x4d\x42\xfc\xc2\x48\x0d\xc9\xe8\x8d\x4a\x77\xe5\x9d\x3d\xbb\x3f\x7b\x67\x4f\xf3\x67\x1b\x95\x60\x49\x13\x36\x41\xd8\x44\xb4\x3a\x52\x47\xbc\xb4\x1a\x4f\x7c\x36\x99\x85\x91\x1c\xbd\xf8\xc6\x1b\x6f\xe0\x07\x3f\xf8\x41\x96\x02\x42\x86\xff\x30\x9a\x7d\x98\x61\x8e\x2c\x83\x87\x0d\x33\x2c\xc9\xa2\x67\x98\x7e\x3c\x08\x78\x32\xf3\xcd\x1a\xaa\xb8\xdc\xb0\xc3\x0d\x20\xbf\x50\x38\x9e\x01\x37\x93\xf2\xdc\x83\xc4\x19\x3a\xae\xef\xfb\xd8\xbf\x7f\x3f\xce\x9c\x39\x83\x7d\xfb\xf6\x59\xba\x12\x0b\x04\xf1\x81\x41\x76\x0f\x88\x31\xa6\x16\x5b\x21\x35\x18\x4c\xf8\x1a\x13\x13\xbb\x85\x7d\xc7\xd6\x46\x4e\x1e\xbd\x3f\x72\x62\xb2\xe9\xcf\x16\x52\x3b\x51\xad\x42\x1d\xf2\x7c\xd3\x94\x55\xe0\x18\xca\x0c\xe3\x1c\x73\x12\xd9\x71\xd9\x70\xe7\xc1\x88\xeb\xcd\x9a\xc9\x62\x86\x05\x0c\x39\x05\x67\x9f\x59\xb0\x81\x41\xdb\xd7\xcd\xa5\xf1\xce\xad\xb7\x67\x9a\x3f\xbb\x3d\xde\xbe\xde\x2c\x86\xab\x31\x60\xd4\x11\x01\x46\x03\xcc\xc2\x40\x74\xf8\x4e\xca\xc2\x00\xa0\x97\x96\x96\xf0\xcd\x6f\x7e\xf3\x41\x86\xcb\x3c\x0e\xd0\xdf\xc1\x78\x7a\xd7\x33\x77\x79\xf1\xb3\x00\xea\xe7\x29\x7b\x18\x9a\x86\xcd\x17\xe4\x08\xcc\xcb\x6c\x18\xb3\x28\xab\xa2\x59\x84\x0d\x62\x5c\x56\x5a\x59\x31\x99\xdf\xb0\xc8\xec\xca\x07\x85\x42\x41\x75\xbb\x5d\xfd\xc2\x0b\x2f\xa8\x52\xa9\x04\x00\x76\x03\x99\x4f\x44\xbe\x31\xc6\x9e\x38\x66\x01\xc4\x2e\xe5\x56\x09\x54\x23\x60\xa2\xd2\x51\xd3\xfb\xea\xa5\xc3\x47\xef\x8f\x9c\xd8\xbf\x55\x3a\x38\xda\xf6\x6a\x9e\x89\x0f\xb9\xe1\x5a\x18\xe8\x8d\x1f\x6c\x8f\x21\xf4\x4c\xf6\x64\x92\x22\x35\x31\x92\x8e\x0b\x96\x97\xcd\x2f\x76\x7d\x4b\xc4\x7c\x26\x34\x49\x1f\xf7\x7c\xde\x6b\xdf\x87\x75\x90\x06\xb4\x07\x30\x9f\x06\x1c\xa6\xd3\xf5\x4c\x67\x73\x24\x58\xbb\x3d\xd1\xba\x71\x7d\xba\x75\x6d\xb5\xda\xb9\xd5\xf1\xcc\x06\x60\xea\x26\x5a\x15\xb1\x73\x17\x0d\x64\x00\x86\x3d\x72\x61\x65\x65\x05\xf1\xe9\x5d\x79\x6e\xd0\x50\x61\x18\xff\xac\x38\x3f\x4f\x3e\xc3\xba\x07\x19\x3a\xe1\x41\xcb\xcd\x6a\x55\x17\xc2\x66\x21\x21\x8f\xff\x7e\x4c\x1f\x57\x7e\x92\x86\x2c\xc4\xb4\xef\x2e\x1a\x06\x31\x4a\xa6\x75\xe6\x33\x31\x31\x81\x53\xa7\x4e\xe1\xc8\x91\x23\xf6\xa4\x31\xa7\x05\x12\xff\x55\xe2\x79\x10\x0b\x22\x35\x00\x55\x3f\xa4\x89\x89\x5d\x7f\xdf\xc1\x8d\xf2\xe1\x03\x9b\xa5\xc3\x7b\x76\x0a\xf3\x95\x8e\x57\x49\x40\x64\xd0\x04\x41\x86\xd5\xd1\xb7\xac\xd0\x9f\xb2\xdf\xc3\x08\x3c\x92\x96\x4b\xdf\x64\x46\xbf\xcb\x9e\x52\xc9\x98\xef\x18\x30\x84\x71\xe5\x17\xef\xf0\xec\x6c\x97\xc2\xfa\x52\xad\x73\xe7\xe6\xd4\xee\x3b\x4b\xb5\xce\xad\x9d\x62\xb8\xaa\x55\x34\x04\x41\xcf\xb2\xe0\x60\xd1\x44\xbc\xa9\x0f\xf1\x8e\xcf\x78\xb9\x5d\xaf\xae\xae\xe2\xb5\xd7\x5e\xc3\xbb\xef\xbe\x9b\xd5\x69\xb9\x7b\x10\xe5\xc8\xd3\xb8\xf2\xcd\xb3\x18\x5c\x96\xf0\xb0\x65\x0f\xab\x30\xdf\x6f\x78\xe6\xaf\xcb\xe2\x70\x55\x0e\x48\x57\x70\x58\x0b\x63\x98\x4a\xcb\x72\x5c\xe5\x0e\x62\xfc\x20\xda\xf3\xf2\x1c\x06\xf9\x15\x00\xfd\xa1\x0f\x7d\x48\x71\x00\x61\xdb\xd7\xf9\x32\xae\x05\x91\xaa\xfd\x4b\xc0\xc4\xa0\x5a\x0a\x68\x72\x62\xb7\x30\xb7\x7f\xab\x74\xf0\xc0\x66\xe9\xe0\x9e\x9d\xc2\x5c\xa5\xeb\x55\x3d\x1d\x9d\xaa\x95\x28\x7f\x7e\x07\x2a\xc0\x57\x6a\x7b\x9b\xc6\x28\xbd\x73\x03\xfc\xf4\x30\xd7\x04\xac\x61\x9d\x9e\x1c\x9d\x55\x18\x33\x79\xd3\x15\xcc\x07\x29\x54\x02\xff\x62\x96\x15\x38\x60\xb5\x25\x3e\xd9\x1d\x81\x67\x3a\xdb\xa5\x60\xf3\xde\x58\x77\xf1\xee\x78\xfb\xc6\x52\xad\x7d\xa7\x5e\x0e\x57\x03\x2f\xfa\x42\xd5\x18\xd3\x40\xf4\xfd\x88\xd3\xba\x88\xef\x9e\x49\x86\x24\xc6\x18\xbd\xbe\xbe\x8e\x3f\xff\xf3\x3f\x1f\x46\x2e\x7e\x11\xef\xd2\xfd\x22\xf3\x1f\xc6\x0a\x7a\x10\xfa\xde\x77\x7e\x94\x11\x00\x0c\x3f\x34\xc9\x4b\x23\x0b\xcf\x02\x1f\x57\x9c\xbc\x21\xcc\x30\x34\x3c\x88\x69\x36\x28\x9f\x14\x8f\x3e\xf8\xc1\x0f\xaa\x63\xc7\x8e\x61\x64\x64\xc4\xc6\xcf\xb5\x42\x10\x01\x48\x05\x3d\x10\xa9\xc0\xa0\x5a\x0c\x68\x7c\xb2\xe5\xcf\xce\x6d\x95\x0e\xec\xdb\x2e\x1e\x98\xde\x29\xcc\x8e\xb5\xfd\x89\x42\x48\x45\x65\xd8\xfd\x22\xa9\x21\x86\x5d\x9d\x40\xff\x6a\x0c\xdc\x7e\x03\xbf\x83\x01\xd2\x28\xc2\xfc\xe4\x30\x47\x16\xd3\xfb\x42\x38\xca\x34\x39\x1d\xd5\x6e\x2a\xe3\xf6\x8c\x05\xc4\xe4\x98\x46\x83\x90\xa0\xdb\xbe\x6e\xd5\xcb\xc1\xfa\x6a\xb5\xbb\x78\x77\xbc\x7d\xe7\xde\x58\xe7\x4e\xa3\x14\xde\x0f\x94\xae\x23\xba\x0c\xa9\x11\xef\xec\x6c\xc4\xcf\x4d\x22\x6a\xc5\xab\x23\xc9\x70\x84\x5b\x17\xc6\x18\xbd\xb5\xb5\x85\x6f\x7c\xe3\x1b\xc9\xc9\xf8\x8e\xb6\xe5\x6e\x90\xbc\xb9\xe2\x66\x29\xac\xac\x3c\xe1\x88\xf3\x20\xf9\xe5\xd1\x99\x55\xee\x20\x37\x4c\xbd\xfb\xca\x21\x64\x74\x8e\x9c\x0a\x0c\xd3\x21\xf3\x34\x79\x5e\x9c\x61\xfd\xb2\xc2\x1f\x04\x5d\x87\xa1\xd1\xe5\x97\x4a\xf7\xe2\x8b\x2f\xaa\x52\xa9\x04\x7e\x07\xaa\xbd\xa9\x2c\x5e\xca\x2d\x3a\x2c\x91\x64\x7f\x88\x31\xa6\x02\xa0\xe2\x6b\xaa\x56\xba\xde\xe4\x74\xb3\xb0\x67\xae\x5e\x3c\xb0\x77\xbb\x38\x3f\xb1\x5b\xd8\x53\xe9\xa8\xaa\xaf\xc9\x57\xc6\x36\x98\x05\x13\xbe\xae\x1a\x13\x93\x35\x86\x90\x73\x1b\x72\xbe\x23\xef\x97\x67\x62\x67\x3f\x1f\x70\xea\x82\x7f\x11\xa8\x09\xba\xe3\xe9\xce\x4e\x29\xac\xaf\x8f\x04\x2b\xcb\xb5\xf6\x9d\xe5\x5a\x67\x71\xb3\x1c\xac\xed\x16\xf5\x96\xa1\xbe\x61\x87\x7c\xb7\x96\x85\xfd\xc6\x48\x83\x4d\x7a\x6a\xad\xd1\x68\x34\xf0\xf5\xaf\x7f\xfd\x41\xac\x02\xee\x86\x89\x9b\xa7\x84\x7e\xde\xbc\x65\xfe\xef\xc7\x62\xcf\x2b\xf3\xfd\xf0\xa2\xaf\x5c\xd7\xaa\xca\xb0\x44\xe7\xa1\xb7\xf5\xe7\x04\xf0\xb8\x0f\x82\xac\x2e\x50\x18\xc6\x52\x19\x04\x70\xae\xb2\xf3\x90\x3a\xd3\x1a\x3a\x7d\xfa\xb4\x7a\xf8\xe1\x87\x31\x39\x39\x09\x22\xb2\x97\x14\x71\x00\xb1\x17\x47\xd9\x15\x99\x32\x11\xd9\xdf\x4a\xbc\x42\x53\x41\x34\x47\x52\x26\x50\xc5\xd7\x34\x3a\xd2\x55\xb5\xc9\x5d\x7f\xcf\x74\xa3\x30\xbb\xb7\x51\x9c\x9b\xde\x29\xcc\x56\x3b\x5e\xcd\x0f\x55\x31\xda\x70\xd6\x4f\x64\xe6\x46\xb2\xf8\x39\xc2\x0d\x3e\xaf\xd0\xbf\xe7\x44\x5a\x06\x72\x3c\xd3\xfb\x78\xad\x17\xbf\x67\x8d\xf4\x88\x32\x04\x84\x64\x82\xb6\xaf\x5b\x8d\x52\xb8\xb9\x36\xda\x5d\xb9\x37\xd6\x59\xbe\x3f\xda\x5d\xde\x2a\x07\xeb\xad\x82\xde\x0e\xc9\x34\x4d\x0c\x08\x14\x59\x17\xa9\x3f\x6e\x55\x18\x63\x3a\xf6\x3b\x12\x88\x15\x92\x20\x08\xf0\x47\x7f\xf4\x47\xfa\xc4\x89\x13\xea\xda\xb5\x6b\xef\xd7\x1a\x1d\x26\x6e\xd6\xf3\x2f\x2a\xdd\xb0\x79\x3c\x68\xfd\xf0\x0b\xc8\x23\xf1\xcb\x5a\x55\x19\x06\x1c\xf2\xb4\xfc\x83\x10\xea\xca\x7f\xd8\x8e\xce\xfd\x5c\xe5\x66\x95\x93\x65\x69\x0c\x62\x72\x16\xad\x00\x80\x23\x47\x8e\xa8\xf7\xde\x7b\x4f\x6e\x24\x83\x3d\x1d\x3b\x7e\xe7\xfb\x42\x8a\xcc\x12\x29\xa3\x07\x2a\x15\xee\x07\x83\xb2\x02\xca\x7e\x48\xa3\xa3\x1d\xaf\x56\x6b\xf9\x13\x13\xbb\xfe\xd4\x54\xd3\xdf\x33\xd5\x2c\x4c\x8d\xb5\xbd\x5a\x39\x9e\x27\xf1\x0c\x29\x32\x50\x00\xf5\x19\x0c\xdc\x58\x01\x1b\xee\x24\x46\x01\x90\x35\xeb\xe9\x9c\xf7\xb4\xcb\xa3\x20\xe8\x90\x8c\xee\x7a\xa6\xb3\x5b\xd0\x8d\x9d\x62\xd8\xd8\xa8\x04\xeb\xf7\x2b\xdd\xb5\x8d\x4a\x77\x6d\x6b\x24\x58\x6f\x16\x74\x23\x54\x66\xc7\xc0\xb4\x10\x75\x7e\x6b\x3d\xb4\xd8\x33\x5f\x09\x69\x31\xa0\xe0\xfb\x2e\xec\x90\x04\xf6\x97\xed\xc3\x18\xd4\xa6\xdc\x65\x59\xd2\x2e\xbf\x41\xb2\x9f\xd5\x01\x5d\x74\x0c\xea\xdc\x79\xe5\x70\x97\xd5\x97\xf2\xe8\xcb\xeb\x0b\x79\xfd\xad\xaf\x4c\x6e\x71\xc8\x88\x83\x50\xc7\x55\xa1\xf7\x63\xba\x0d\x8a\x3f\x0c\xd3\xb3\xe8\x71\xe5\x33\xac\x1b\x26\xaf\xcc\x38\x4f\x3d\xf5\x94\x3a\x73\xe6\x0c\xdf\xe5\xa9\xd0\xb3\x42\xf8\xc5\xcb\x29\x20\x41\x6c\x99\xf0\xe1\x4d\xfc\x1c\xcd\x9b\x98\x64\xfe\xa4\x48\x40\x91\x0c\x4a\x85\x90\xca\xa5\x40\x95\x47\x3b\x5e\x6d\xb4\xe3\x55\xab\x6d\xaf\x56\x6d\x7b\xb5\xb1\xb6\x57\x2d\x45\x77\xa2\x14\x8b\x21\x15\xfd\x50\x15\xd9\xfc\x89\x8a\xc1\x42\x11\x00\x8a\x87\x42\x06\xd0\x16\x20\x0c\xa0\xed\xbd\x2b\x81\xa7\x3b\x5d\x65\x82\xc0\x33\x9d\x96\xaf\x5b\xcd\xa2\x6e\xee\x14\xc3\xc6\x4e\x31\x6c\xec\x94\xc2\x7a\xa3\x18\xd6\x1b\xa5\xb0\xd1\xf2\x75\x33\x54\xa6\x63\x08\x6d\xc3\x41\x00\x09\x08\xf0\xb9\x89\x24\x1c\xbd\x95\x10\x6b\x59\x70\x90\x48\x36\x6b\xd9\xdf\xd5\xd5\x55\xbc\xfa\xea\xab\xb8\x7e\xfd\x7a\x1e\x60\xd8\x67\xeb\x86\x95\x8d\x41\xd6\x76\x9e\x7b\x3f\x69\x78\x5a\xee\x06\x29\x3a\x1e\xef\x41\xca\xce\x2a\x47\xe6\xe5\xa2\x43\x01\xfd\x43\x95\x61\x4d\xa9\xcc\x0c\x87\x20\xfc\x81\x4c\x22\x47\xb9\x83\x00\x6c\x50\x43\x0d\x02\xa0\x41\x42\x33\xec\x2f\x4a\xa5\x92\x9a\x9d\x9d\xc5\xa1\x43\x87\x70\xf4\xe8\x51\x94\xcb\x65\x4e\x83\x05\x0f\xa0\x37\xa9\xca\x2d\x92\x64\x8e\x24\x7e\xef\xfb\x13\xe1\x51\x3a\x13\xe5\x45\xd1\x9d\xad\x3e\x19\x94\x08\xa4\x3c\x03\x5f\x69\xf2\x0b\x21\xf9\x85\x78\xa8\xa3\x0c\x29\xa5\x49\x29\x03\xe5\x19\xf2\x01\x40\xc7\x40\x11\xfd\x9a\x20\xf0\x4c\xd0\xf1\x4c\x27\x54\x26\x08\xc9\x04\xa1\x42\x60\x60\x02\x43\x08\x0d\xa1\x63\xac\x35\x40\x88\xae\xa1\x40\xf2\x2b\xff\x5a\x0e\xbf\x20\x06\x09\xbe\x9b\x33\xf3\x2e\xdc\xc5\xc5\x45\xfc\xf5\x5f\xff\xb5\x2e\x95\x4a\xaa\xdd\x6e\x67\xc9\x5e\x56\x1b\x66\x85\x4b\x97\x27\xbf\xc3\x5a\xc5\x0f\x62\x4d\x0f\x92\x41\x17\x6d\xc3\xd0\x3c\xa8\xcc\x61\xf2\xe1\xfe\x29\xba\x5c\x73\x1c\x59\x95\x18\xe4\x06\x75\xfc\x3c\x20\x79\x10\x4b\xe0\xff\x0b\x37\x0c\xd8\x00\xe9\x7a\xf1\xf7\xbc\xbc\x52\xef\xcf\x3d\xf7\x9c\xda\xbb\x77\x2f\xc6\xc6\xc6\x64\xde\xca\xfe\x09\x6b\x24\xd9\x74\x86\x1e\x40\xf8\xb1\x5f\x02\x18\x19\x71\x6c\x3e\x8a\xbd\x2b\x56\x16\xe2\xfc\xfb\xbf\x7f\x49\x77\xda\x64\xf3\x14\x98\x15\x10\xff\x26\x43\x09\xb6\x14\x9a\x00\x88\xf4\x63\xef\xce\xbb\x6e\x4d\xef\x5a\x4a\x0d\x00\x77\xee\xdc\xc1\xfa\xfa\x3a\xae\x5c\xb9\x82\x46\xa3\x31\xa8\x43\xb8\xfc\xb2\x3a\x20\x1c\x69\xb2\xc2\xb3\xd2\xc0\xe1\x37\x48\x73\x5b\xbf\x07\xa1\x7d\x90\xf5\x33\x4c\x5c\x17\xcd\x79\x75\xc8\xc3\x83\xd4\xce\xd1\x61\x32\x1e\xc6\xec\xe1\x79\x0d\x63\xb5\xb8\xe2\x66\xc5\xcb\x4a\xc3\xe9\x18\xa6\xbc\x61\xf2\xc9\x8a\x97\x95\xef\xb0\xe5\xea\x6a\xb5\xaa\x2a\x95\x0a\xce\x9d\x3b\x87\x5a\xad\x86\xf1\xf1\xf1\xf8\xcc\x0a\x63\xcb\x4f\x81\x09\x1f\xda\xb0\xa1\x4e\xca\x4a\xb1\x61\xfc\xd9\x11\x5f\xb1\x3c\x11\xc7\x47\x0c\x26\xb6\x7c\x4b\x3f\x88\xdd\x35\xcb\x97\x3a\x91\x9e\x6f\x08\xb8\x9f\x03\x14\xe4\x70\x23\x17\x28\x00\xe0\xf6\xed\xdb\x58\x5d\x5d\xc5\xf5\xeb\xd7\xb1\xbe\xbe\x9e\xd5\xb1\xe0\x78\x76\xb5\xc7\x20\x39\x1c\xa6\xa3\x3d\x68\xfa\xbc\x34\xb9\xb2\x21\xc2\x86\xa1\xdd\xba\x61\x94\xdb\x83\x5a\x25\xc8\x8a\x93\x37\xc7\x31\xa8\xf0\x3c\x62\x86\xb1\x38\x86\xd1\x0a\x59\x15\x73\xa5\x97\xb4\xe5\xa1\x6d\x56\xdc\x61\xe8\x02\xf2\x99\x9a\x15\x97\xc7\x4f\xd1\xb5\x77\xef\x5e\x75\xef\xde\x3d\xfd\xe9\x4f\x7f\x5a\x95\x4a\x25\x4c\x4e\x4e\x26\xf1\x25\xa0\xf0\x15\x1b\xeb\x27\xff\x18\xd0\xa4\x7e\x81\x04\x24\x92\x77\xeb\x67\x41\xc3\x4e\x3a\xf2\x67\x06\x18\x96\x76\xd7\x5f\x10\x87\x07\xb1\x05\x23\x01\x22\x05\x44\xcc\x0f\x9b\x9b\x9b\xf8\xc6\x37\xbe\x91\xf0\x41\xf0\xef\x41\x65\xc6\xe5\xb2\x64\x80\x87\xf1\xf0\xf7\xab\xf5\x91\x13\x9e\x55\x17\x17\x1d\x83\xea\xf4\xa0\xf4\x65\x19\x07\x2e\x37\x94\x21\x91\xb7\x1c\x2b\x33\xc9\xab\x04\x0f\xcf\x42\x6b\x17\x01\xc3\xa0\xb6\xcc\x4b\xd2\x32\x48\x88\x86\x05\x80\x2c\x9a\x90\xf1\x2e\xf3\xc9\xe3\x43\x5e\x63\xa4\xd2\x94\xcb\x65\xcc\xcc\xcc\x60\x64\x64\x04\x8f\x3d\xf6\x18\x88\x08\x53\x53\x53\xfc\x73\xfa\xc4\x3a\xb0\x96\x02\x90\x0c\x37\x94\xc8\xb7\x2f\x5c\xc4\xeb\xa3\x43\x74\x70\x49\xb3\x8e\x01\x26\x79\xe7\xab\x1b\xdc\x9f\xff\xda\x3c\x8d\x31\x68\xb7\xdb\xd8\xd9\xd9\xc1\xd6\xd6\x16\xbe\xfb\xdd\xef\x6a\x00\x60\xe7\x5f\x0c\xa3\x44\x86\xd5\xe8\xc3\x58\x08\x32\x9f\xbc\x76\xcb\x2a\x7b\x18\x39\x1c\xc6\x5a\x78\x90\x3a\xe6\xd5\x77\x90\xe2\x1c\x04\x2e\x43\x01\x62\xd6\x72\x2c\x44\x22\xee\x06\x15\xca\x89\x73\xb9\xbc\xca\x0e\x13\x9e\x15\xcf\x55\xee\xb0\x65\x0c\xeb\x2f\xcb\xb7\x2e\x8f\x67\x83\x78\x32\x48\xa0\x01\x00\xc7\x8e\x1d\x53\xf6\x1b\x8b\xcf\x7e\xf6\xb3\xca\xf7\x7d\xbb\xf5\x3d\xb1\x48\xc4\x01\x42\xd2\x8a\x48\xc5\x61\xf1\x24\x08\x71\x20\x48\x39\xee\xcf\xf2\x76\x82\x4c\x18\x86\xd8\xd9\xd9\x01\x00\xb9\x19\x4b\xd6\x3d\x4f\x68\xb3\x5c\x9e\xa2\x1b\xd4\x21\xb3\x64\xf6\x41\xf2\x1e\xb6\xfc\x2c\x1a\xb2\xea\x33\xa8\x93\xe3\x01\xe2\x0c\x02\x85\xbc\xf8\x59\xf4\x25\xcf\x83\xf6\x71\xf0\x84\x60\xf1\x06\x55\x96\xc7\x7d\x10\x8d\x30\x08\xed\x78\x39\xae\x0a\xc9\xb8\x92\x0e\x19\x96\xd5\xf8\xae\x7c\xb2\x68\xcb\x2a\x53\xe6\x9f\x15\x37\x4f\xcb\xe5\xc6\x3d\x79\xf2\xa4\x7a\xf3\xcd\x37\x93\xdf\x17\x5e\x78\x21\x89\xeb\x79\x1e\x0a\x85\x82\x83\xa4\x1e\x3d\x72\x52\x54\x00\x89\xab\x1e\xa9\xb8\xed\x76\x3b\xe5\xf7\xe5\x2f\x7f\x59\x9f\x3c\x79\x52\x01\xc0\x9b\x6f\xbe\x39\x48\x6b\xe6\xc9\x59\x5e\x7b\x0d\xab\x29\xdf\x6f\xd9\xd2\xe5\x81\x7d\x5e\xdc\x5f\x34\x9d\x79\x32\xe3\xa2\x6f\x10\x5f\x07\xf9\x0f\xa4\x53\x31\x4f\xfe\x2b\xfd\xb2\xfc\xa5\x9f\x7c\x1e\x94\xe7\xb0\xe5\x0e\x2a\x33\x2f\x0f\xe9\xb2\xca\x95\x74\x49\x1a\xf3\xe8\x76\xc5\x75\xd1\x91\xc7\xb3\x61\xe8\x1a\x94\x2e\x15\x7e\xe6\xcc\x19\xf5\xff\xd6\x6e\x6d\xb7\x91\xc3\x30\xd0\x70\x39\x5b\xca\xd6\xe1\xfe\x4b\x08\xf2\xe5\x80\x3b\x99\x17\x7d\x39\x01\x81\x25\xf1\x35\x22\x29\x4a\x5e\x23\xf7\xdf\x3d\xbe\x69\xd7\x75\x9d\xd7\x75\x9d\xd8\xbf\xc7\xef\xf7\xfb\x43\xcf\xd4\xf7\x7a\xbd\x9a\xd8\xab\xb5\x37\xf1\x65\x6b\xc4\xd6\xc6\xa0\xc5\xc2\x64\x52\x0e\x2a\xde\x64\x77\x8b\x49\xf9\xe3\xaf\xf5\x6e\x70\xeb\x09\x22\xec\x8a\x48\x72\x5a\x6a\x2b\xb0\x06\xc7\x96\xaf\x4d\x60\xd6\xdc\x06\x77\xf4\xd6\xce\xbf\xe0\x70\xe3\xc4\xbb\x29\x96\x8d\x4e\x67\x07\xff\x98\xdc\x93\x42\xa2\x78\xd3\x66\x4b\xf1\x53\x76\xd1\xa6\xf3\x4d\xf2\x27\xeb\x6f\x8a\x92\xc2\xd8\xe6\x81\xc5\x7f\x7f\xa2\x4b\xaf\x25\xc7\xe0\x53\xce\x56\xef\x60\x0c\x5c\xfb\x3e\x87\x78\x1a\x1e\xe4\xbd\x6d\xa0\x8c\xe2\x41\x3a\x1b\x2b\xde\x2f\x82\x8b\xbd\x0e\xdd\xf2\xed\xe6\xde\x16\x0f\xf7\x3e\xcc\x9a\xba\x0a\xe3\x7a\xd5\xd5\x79\xda\x9f\x34\xb6\x7e\x26\xcf\xe6\x11\xbb\xbb\x3a\x27\xfd\x8a\xff\x80\xfe\x94\x55\xf9\x89\xb2\x4d\xde\x3b\x59\xb7\x87\x0e\xc3\x3b\x6d\xb5\xaf\xe2\xc9\xf7\x9b\x57\xc3\x8f\xc5\xb1\x96\x92\xb5\xe5\x6b\x37\xe5\xe6\x99\x4e\x07\x85\xa1\xad\xd4\x8a\xde\xfa\x64\xa3\xfb\x89\x8d\x16\xff\x66\x4e\x6d\x28\x67\xef\x34\x7f\x48\x4f\x7a\xf0\xa9\xe2\xbc\x89\x3f\xb3\xed\x6c\xfe\xcf\xa7\xb2\xad\xfc\xc6\x64\x9e\xd8\x6c\xe2\xc3\x70\xc9\x67\x4a\x02\x9c\x63\xca\x53\x70\x99\x7e\xa6\x23\xe9\xdd\xc8\x61\x6b\x75\xa4\xe0\x6d\xf1\x3b\x9b\x29\x60\xad\x4d\xe4\x53\xf8\x13\x4d\xd9\xc4\x79\x25\xc3\xf8\x9c\xad\x8d\xcf\xd4\x9c\xd3\xe9\xfc\x99\x74\xaa\xf5\x3b\xfb\xcd\x06\x4c\x39\x9d\xda\x13\xbf\x32\x79\xa7\xd3\xd9\x3e\x71\xd0\x24\x98\x72\xcc\xc6\xb8\x03\xd5\xcc\x39\xfa\x46\x47\xda\x00\x69\x9d\xad\x9e\x39\x9f\xf0\x6e\x74\x6d\xe7\x53\x7c\x5a\x3f\xb5\x05\x80\xe9\x74\x36\x9e\xf8\x48\xe9\x4a\xed\xaf\xd7\xb1\x29\xf8\x0c\xcb\x93\xf9\xa6\x80\xa4\xf1\xb6\x78\xfd\xac\x47\xfd\x93\xdb\x7c\x62\x53\xbf\x4f\xb0\xe6\x78\xd3\x67\xd3\x03\xf8\x95\xee\xed\xa7\xa5\x13\x74\x28\x4c\x6a\xfd\x4d\x6b\x3f\xb1\x6e\x3e\xbf\x3a\x1b\x4f\xe8\xad\x5c\xf3\xdb\xc2\x11\xc6\xac\x3f\xc7\x2a\x46\x8a\xb6\xe5\x49\xf8\x36\x78\x1b\x5d\xb3\xb9\xdf\x48\x58\x8e\x3a\xfd\x0a\x5f\x7a\x2a\x5e\x85\x13\xe7\x18\xc6\x5f\xcc\xec\x84\xc1\x0a\x8d\x74\xd6\x67\x4f\xec\x33\x7d\x4c\x3f\xb3\xcf\x6c\x38\x0c\x4a\x6f\xc2\x8b\x63\xe6\x1f\xa5\x93\xd1\x18\x9d\xad\x29\xe9\x4e\x18\x98\xdf\xd4\x9c\xb3\xe1\x70\xaa\x31\xd3\xcd\x70\x23\xaf\xc2\x95\x64\x5b\xbb\xce\xe6\xd3\x9c\x48\x31\x49\x34\xd7\x9a\x7c\x4e\x6b\x4b\xfb\x96\xe9\x70\xcf\x73\x76\x66\x65\x51\x95\x1a\x8d\x30\x1a\xd2\x13\x0d\xc7\xec\x97\x63\x85\x21\xdd\x4a\x70\x1d\xce\x91\xcd\x0d\x67\xd2\xb6\xc1\x9f\x76\xdc\xd7\x1b\xe5\x7b\xfc\xf5\xfc\x20\x3c\xd8\xbe\x0e\x7e\x62\xcc\x93\x45\xf9\xf8\x24\x32\xc8\x1b\x93\x8b\xf0\xe3\x17\x0b\xc4\xc6\xc6\x4e\x56\x8d\x9b\xbc\x64\x7c\x4c\x2e\xdd\xc0\x99\x1d\xe5\xcb\x49\x53\xf9\x88\xf3\xcd\x4d\x8f\xc5\x00\x63\x8d\x78\xa6\x3f\x9b\xaf\x33\x1f\x3a\x94\x93\xb1\x61\x61\x41\x10\x08\x94\x05\xa4\x09\x1c\xf2\xba\x82\xa6\x36\x10\xca\xb8\xe4\x50\x89\x3c\xf5\xb3\x8d\x3f\xfb\x6e\x73\x23\x2f\x4b\x6c\x0c\x94\xf2\xe1\xe4\x4d\x8d\xf9\x0a\xaf\xac\xaa\xb0\xa8\xb5\x4c\x3e\xe6\x7b\xbc\x1a\xa3\x0c\xf2\x3b\xbb\x4a\xce\xd9\xc2\x22\x97\x6c\xa6\xe6\x0a\x45\x1b\x87\x69\x37\x15\xa9\x99\x1b\x28\xe3\x72\x66\xb3\xf1\x55\xb1\x6c\x0f\xfb\x1f\x3b\x4a\x20\x25\x0e\xf2\xe1\xfc\x0c\x9c\x3b\x61\xd2\xe9\xd3\x16\x0a\x87\xd3\x55\xce\xa9\x87\xf5\xdd\xa6\xc1\x93\x01\x8b\xe8\xec\xe3\x09\xc2\x30\x31\x19\xb4\xa9\x6e\x51\xd8\x58\x31\x72\xa7\x35\x62\x67\x63\xb6\x01\x58\x71\x52\x27\x2e\x26\x75\x5a\x4b\xb3\x39\xdd\xda\x1d\x0f\xe6\x0c\xcb\x69\x87\x55\x15\xe6\x26\xd7\xd4\xfe\x61\xb6\x19\x7e\x16\x0b\xb7\xbf\x14\x6f\x8a\x05\x62\xfe\xf0\xd7\x37\x4f\x7a\x32\x08\xc2\x5c\x11\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xcf\x33\xaa\x99\x86\xfc\x00\x00") - -func web_uiV1StaticMstile150x150PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticMstile150x150Png, - "web_ui/v1/static/mstile-150x150.png", - ) -} - -func web_uiV1StaticMstile150x150Png() (*asset, error) { - bytes, err := web_uiV1StaticMstile150x150PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/mstile-150x150.png", size: 64646, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticMstile310x150Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x2a\x40\xd5\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x01\x0e\x08\x06\x00\x00\x00\xae\x0e\x9c\x74\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xc4\xbd\xe9\x93\x25\x47\x75\x37\xfc\xcb\xba\x75\x97\xde\x7b\x7a\x7a\x7a\x46\xb3\x6b\x24\x84\x18\x09\x10\x20\x84\x8c\x81\x87\xc5\x38\xfc\x86\x03\xfc\x12\xc6\x38\xde\xf0\x27\xff\x61\xf6\x27\x47\xd8\x01\x26\xde\xb0\x43\xc6\x5b\x18\xb0\x10\x18\xa4\x07\x61\xd0\xc2\x68\xa6\x35\x9a\x7d\xed\xe9\xe9\xe9\xf5\xae\x99\xef\x87\x5b\x59\x75\xea\xdc\x73\x32\xf3\x8e\xf0\xf3\xe6\x44\xcf\xad\xca\x3a\x79\xf2\x64\xe6\xc9\x73\x7e\xb9\x54\x96\xc1\xff\xd9\x90\x01\xb0\xff\x3f\xa4\xcf\x00\xd8\x66\xb3\x99\xfd\xe5\x5f\xfe\xa5\xbf\xcf\x00\xe4\x00\x5a\xc5\x6f\x07\xc0\x6c\x7b\x90\xcd\x9f\xd9\xec\x3c\xfb\xd2\xf5\x85\xff\x67\x65\xaf\xf9\x87\x19\x4c\xcb\x39\x00\x66\xcc\xc8\x00\x80\x03\x9c\x71\x80\x33\x80\x29\x1f\xc1\x39\x07\x03\x03\x67\xc6\x34\x3e\x81\xbf\x35\x05\x1f\x07\x96\xb6\xba\xad\x78\x17\xa9\x4c\xc1\xdd\x39\x07\x63\x8a\x9c\x5c\xc1\x9e\xe4\x0d\xce\x1b\x80\x29\x1f\x8e\xe3\x4d\x45\x2d\xde\xf7\x72\xb7\x7f\x6b\xa9\x77\xf1\x17\x67\xb6\x5f\xbd\x37\xdf\xbf\xe9\x0c\x76\x81\xda\xdf\x3e\xf9\xeb\x03\xe8\x16\xbf\x7d\x8c\xdb\x65\x58\xfc\x5a\x00\x78\xe3\x8d\x37\xec\xaf\x7e\xf5\x2b\x14\xf7\xa1\xb6\xcb\x08\x0d\x18\x1d\x7d\xc6\x7f\x25\xde\x3c\x9f\x0c\x72\x90\x64\xd2\xe4\x48\x91\x01\xc2\xbd\x16\xb8\xbc\x21\x99\x78\x39\xb4\x7a\x92\xca\x20\xd5\x13\xcd\x2b\xc6\x3b\x54\x6e\xce\x8f\x87\xd4\x36\x08\xc9\x1d\xab\x0f\xa9\x4c\x9a\x0e\xf1\x38\xca\x83\xd3\xa4\xe6\x19\xaa\x53\x9e\x8e\xf3\x4e\xd1\x3d\x5e\x6f\xd3\xe8\x35\xa5\x97\xfa\x47\xa8\x1f\x69\x7d\x68\x5a\xdd\xd3\xe2\x78\x9a\xff\xa3\xbc\x9f\x78\xe2\x89\xec\x1b\xdf\xf8\x46\xf9\xdc\x39\x97\x19\x63\x72\xe7\x5c\x0e\x20\x37\xc6\xe4\x00\x5a\x9d\x41\x36\x7b\xfa\x61\xfb\xf8\xf9\x3b\x73\x9f\x3f\xba\xdb\xfa\x46\x7b\xd0\xf8\x44\x06\xcc\x7a\xe6\xc4\x2d\x54\x11\x20\xb6\x9c\x05\x4a\xef\xdc\xd8\x3e\xbb\xe2\xc2\xc1\x75\x07\x0d\x77\x6d\xa7\x3d\xfc\xe1\xfa\xda\xc1\x3f\xfc\x76\x6d\xef\xda\x76\x7b\xb4\xeb\x32\xf4\x9d\x73\x43\x63\x4c\xdf\x39\x67\x8d\x31\xd4\xc6\xda\xe1\x70\x88\xbf\xfe\xeb\xbf\x8e\xf5\x83\x69\xf4\x19\x0a\x7d\xac\x5f\x4d\x63\xc7\x52\xfa\x79\xd0\x66\x34\x94\x87\xff\x53\xc1\xc5\x49\xc4\x90\x15\x69\xa5\xf4\x99\x10\xcf\xe3\xcc\xc2\xc2\x82\xf9\xf6\xb7\xbf\x8d\x66\xb3\xe9\x41\x4b\x06\xa0\x89\x71\x1d\xb4\x01\xb4\x33\x8b\xce\xda\x6e\xf3\xc4\xf3\x77\xe7\xfe\xd7\xda\x6e\xeb\xeb\x0d\x67\x96\x00\x03\x53\x2a\xa2\x83\x29\x01\x87\x47\x32\x63\xa0\x60\x0c\x00\x33\x8e\x35\x06\x65\x1a\x53\xa0\x96\xf1\xf3\xb1\xc2\xc2\x98\x0a\x54\xb8\x82\xb7\xa1\x80\xc3\x54\x69\xca\x7c\x4c\xa9\xf9\x06\x55\x9a\x4a\x8e\x3a\x6f\x63\x48\xe7\x00\xc6\x32\xc2\xc1\x71\xde\x05\x50\xea\xe5\x76\xff\xd6\x62\xff\xe2\x7f\x9f\xd8\x7d\xfd\xee\x42\xef\xba\x35\xd8\x81\xd1\x41\x8b\x73\xae\x0b\xa0\x5f\x74\xa4\x11\x18\x68\xf9\xf9\xcf\x7f\x6e\xdf\x79\xe7\x1d\x58\x6b\x49\x21\x4a\xd1\xe9\x9f\x6f\x57\xde\x09\x4a\xbc\x57\xfc\x59\xc6\x83\xd2\xf2\x78\xc3\xd2\x39\x72\x4d\x79\x79\x1d\xc9\x58\x5a\x2e\x07\xcf\x87\x76\x34\xc7\xd2\xf3\xce\x27\x95\x99\xd2\x18\xe1\x9a\xd6\x0d\xe7\x2d\xd5\x13\xaf\x4b\x40\xae\x53\x28\x69\x6d\x80\x9e\xb6\x0f\xad\x37\x4a\x4b\xeb\x96\x96\x85\xb7\x95\x83\x5c\x4f\x9e\x9e\xeb\x02\xe9\x25\xb5\x3e\x4d\x65\x93\xe4\xa7\xfc\x80\x7a\x9b\x49\xed\xc0\xdb\x92\xc6\x6b\x79\xf2\xfc\x79\x9b\x69\x6d\xc7\xeb\x90\xca\x4d\x79\xd3\x74\xbc\x1e\x52\xf4\x9a\xca\xc2\xc1\x19\xd7\x69\x9a\x86\xeb\x27\x95\xc5\x61\x92\x37\x2d\x37\x6f\x43\x5e\x4f\xd4\x26\xd3\x72\xd0\xf4\xbc\x9d\xa4\xfa\xe1\xf9\x69\x75\xef\xeb\xaf\x2c\xc3\x99\x33\x67\xcc\x57\xbf\xfa\x55\x34\x1a\x8d\xcc\x18\x53\x82\x16\x8c\x01\x4b\xcb\x18\xd3\x04\xd0\x5e\xd9\xcb\x0f\x9d\xbf\x33\xf7\xfc\xf9\x3b\xf3\xff\xf7\xea\x5e\xeb\x5b\xed\x61\xf6\x8c\x81\x99\xe1\x19\x4e\xd4\x92\xa9\xdf\x7a\xa1\xe9\x20\x14\xa8\x06\x95\xa6\x30\xd4\xc6\x20\x6f\x38\xb3\xd4\x19\x36\x9e\x5e\xea\x36\x4e\xcd\xf6\xf3\xcd\xbd\xf6\x68\xb7\x9b\xdb\x91\x35\x70\xc6\x98\x6a\xe0\x0a\x38\xe7\xc6\x5c\xb3\x2c\x73\xe7\xcf\x9f\x37\xbf\xfd\xed\x6f\x61\xc7\xc6\x96\xea\xbc\xff\xf5\x75\x4a\xdb\x85\xd7\x1f\x20\xb7\x1f\xef\xc3\x3e\x78\xbd\xa2\x3a\x23\xd9\x69\xde\x2e\x5c\xc7\x1c\xfb\xe5\xbc\xc1\xae\x0d\x00\x93\x23\x1c\xb4\x51\xc1\xff\x74\xe0\xf9\x84\x46\x4a\x92\x3c\xb5\xb8\xc3\x87\x0f\xe3\xab\x5f\xfd\x2a\x66\x66\x66\x28\x68\xc9\xc9\x6f\x0e\xa0\xb5\xd0\xcd\x97\x4f\x6f\xcd\x9c\x3f\xb2\xd3\xfa\x7c\x3e\x32\xab\x25\x20\x81\x07\x01\xa6\x04\x08\xa6\x98\x15\xa9\x66\x44\x0a\x65\x34\xd5\x5c\x46\xa9\x11\x35\x0d\x2f\x66\x65\x5c\x71\xed\x15\x18\x06\x05\xee\x00\xef\x1a\x15\x00\xf1\x53\x33\x0e\xce\x15\x79\x94\x20\xa4\xe2\x5d\x02\x9c\x42\x08\x53\xb2\x32\x44\x9e\x82\xb7\x71\xe8\x36\xed\xee\xed\x85\xfe\xe5\xb7\x9f\xd8\x7d\xf3\xce\x62\xef\xfa\x28\x0b\xce\xb4\x74\x9d\x73\xdd\x02\xb0\xd0\xbf\x12\xb4\xfc\xec\x67\x3f\xb3\x97\x2e\x5d\xc2\x70\x38\x8c\x8d\xa2\xd4\x36\x43\x78\x04\x96\xaa\x1b\x5a\x1a\x8e\xf2\xb5\x91\x06\xbf\x96\x46\xd7\xa1\x91\x73\x68\x04\x23\xc9\x96\xd2\xdf\x24\x99\x34\xde\x5a\xda\x94\x3a\x8a\x8d\xa2\xa4\x7a\xd2\x46\x4e\xa1\xf6\xd2\xf2\x4e\x7d\x2e\xb5\x23\xcf\x3b\x64\x2b\x34\xf9\x52\x74\x41\xa3\xd1\xf2\xe3\xbc\x43\x75\x99\xd2\x46\x3c\x2f\xa9\x7d\x42\xf5\xca\xdb\x98\xe7\xef\xef\x53\xfb\x5f\x4a\x7f\xf1\xbc\xa5\xfe\xcd\xcb\x12\xcb\x23\xf4\x7c\x82\xc7\x53\x4f\x3d\x95\xbd\xf4\xd2\x4b\x68\xb7\xdb\x59\x01\x02\x4a\xd0\x02\x32\xf3\xbe\xb2\xd7\x5c\xfe\xe8\xbd\xd9\x4f\x3f\xf5\xa0\xf3\xc7\x4b\x07\xf9\xcb\xb9\x35\x6b\x80\xc9\xfd\x44\x78\x69\xa2\x01\x11\x9a\x99\x9a\xbd\xf7\x24\x46\x86\x0a\x40\x39\x50\x75\x06\x79\xe6\xdc\xf2\x7c\x2f\xff\xfc\x99\x87\x26\x37\xc0\xff\xfb\xee\xd1\xbd\x37\xef\xcf\x0f\x36\x86\x0d\x97\x61\x3c\xc3\xed\xd3\x0c\xfd\xf5\xec\xec\xac\xa4\x33\x92\x3e\xc4\xf4\x15\xc2\x33\x1f\x34\x3d\xd1\xec\xb4\xa4\x47\x5a\x5e\x92\xec\x1a\x3f\x00\xd5\x8c\x0b\x45\x61\x34\xc4\xee\x35\x01\x1e\x77\x66\x85\xe6\xa3\xcd\xa4\xf0\x11\x41\x34\xbf\xa5\xa5\x25\xf3\xc2\x0b\x2f\x64\x05\x4a\x35\xc6\x98\x86\x73\xae\x89\x31\xca\x6e\x03\x68\x37\x47\x66\xfe\xe4\xa3\xf6\x47\x9e\xb9\x3f\xfb\xb5\xe5\x83\xfc\xc5\x86\xcb\x66\x6b\x0a\x68\x4a\x57\x5f\x20\x5f\x02\x6a\xca\xb8\xfa\x02\x0c\x57\xe0\x22\xf3\xea\x99\x31\x05\x60\xa9\x66\x6a\x8a\x1c\xca\xfc\x4a\x5d\xf7\x60\xc3\x03\x10\x72\x6f\x2a\xe6\xa4\x1f\xb9\x12\x68\x69\xc1\xc1\xa1\x9b\xdb\xdd\xdb\x8b\xfd\xcb\x17\x8e\xee\xfd\xf7\x8d\xe5\xde\xfb\xbd\xdc\x6d\x39\xb8\x6d\x63\x8c\x08\x5a\x00\x44\x41\xcb\xfa\xfa\x3a\x7a\xbd\x1e\x45\xde\xd3\x82\x5d\x8a\xc2\xb9\x2e\xc4\x74\x8b\x8e\x90\x25\x5a\x6d\xa4\xc6\x79\xf3\xd1\xb6\x43\x5c\x1e\x3e\xa2\xa6\x71\x12\x3f\x30\x19\xa6\x2d\x2b\x1d\x41\xa7\xd6\x8b\xbf\xd6\xea\x87\x8e\xcc\x2c\x8b\x0b\xe5\x41\x69\x42\x3c\x62\xd7\x26\x91\x8e\x8f\xe2\x24\xd9\x38\x2f\x69\x04\xa8\xf1\x8c\xd5\x91\x25\x34\xd2\xa8\x56\xd3\x25\xb0\x74\x92\x8d\xe3\xf9\x4b\xba\xaa\xc9\xc4\xcb\xaa\xa5\x91\x78\x83\x5c\x5b\x4c\x96\xc1\xb0\x3f\x4f\x1f\xaa\x43\x69\x26\x44\x02\xf6\x5c\x5e\xce\x5f\xaa\x5b\xe9\x19\xe7\xe1\x00\xe0\x99\x67\x9e\xc9\x3e\xf5\xa9\x4f\x61\x69\x69\xc9\x83\x96\x1c\x63\xff\x57\x03\x2d\xcb\xfb\xf9\xf2\x33\xf7\x67\x3f\x7d\x6e\x73\xe6\x8f\x97\x0f\xf2\xcf\xe7\xd6\x1c\x35\x30\x8d\xc9\x01\x28\xbb\x37\x93\x71\xa5\x90\xae\xf8\xaf\x1a\xa5\x4e\x06\x62\xc4\x0d\x4c\xbb\x39\x32\xab\x33\x83\xc6\x4a\x6b\x98\x1d\x74\x9b\xa3\x47\x07\x4d\xdb\xb5\xe3\xde\x4e\x6d\x69\xd9\x3e\x6b\x6b\x6b\xee\xe6\xcd\x9b\x18\x0c\x06\xb4\x4e\x28\x0d\xad\xf7\x14\x7b\x21\xcd\xb8\x68\xb6\x95\xeb\x85\x64\x53\xa5\x19\x1f\x9a\x4f\xc8\x4e\x4c\xf4\x5d\x0f\x5c\xa4\x0e\x3c\x4d\xa0\xc2\x84\x3a\xec\x34\x41\xe2\x23\x19\xcf\x60\x23\x1c\x39\x72\x24\xfb\xcc\x67\x3e\x83\xa5\xa5\x25\x63\x8c\xf1\xa3\xa4\xa6\x31\xa6\x61\x8c\x69\x3b\xe7\xda\xc6\x98\x99\xb5\xdd\xd6\x13\x1f\xb9\x3f\xfb\x7b\xc7\xb7\xdb\x5f\x6a\x8f\xb2\x27\x4c\x0d\x76\xb8\x6a\x46\x64\x02\x62\x8f\x55\xad\x7c\x26\x20\x6e\x4c\xa4\x40\xb1\xb6\xa9\xa5\x21\x73\x36\xae\x50\xe5\xa2\xa4\x06\x63\x68\xee\x61\x3f\x9d\xf1\xa9\xc0\x8e\x2b\x2b\x86\x0b\xe3\xc8\x55\x37\xb7\xbb\x77\x16\xfa\x57\x2e\xad\xed\xbf\x75\xfd\x50\xef\xd2\x41\xd3\x3d\xc4\x78\x79\x68\xa7\x00\x2e\xfb\x00\xf6\x9d\x73\xfb\x18\x03\x96\x2e\xea\x80\x65\x58\xac\xbb\x5a\x60\xbc\x3c\x74\xe9\xd2\x25\x74\xbb\x5d\x6a\xc4\x63\x8a\xab\x85\x10\x38\x08\x19\x2b\x4f\x23\x8d\x18\x78\x87\x0e\xe9\x3d\x77\x8c\x94\xbf\x94\x9f\xc6\x8b\x3a\x02\xca\x9b\x5e\x73\xf0\x22\xc9\x43\xcb\x41\x69\xb9\xc3\x49\xed\x7f\x5a\x3c\x37\xfa\x12\xf0\xe2\xf2\x68\xf4\x5a\x99\x35\xb0\xc6\xfb\x77\xec\x9a\xfe\x4a\xfa\xc5\x65\xa2\xfc\x79\x5d\xf1\xf6\xe2\x6d\x26\x39\x4c\x9f\x8e\xe6\xc1\x65\xa5\xf7\x9c\x87\x04\xe8\xb5\x32\xc7\x06\x00\x5c\x26\x09\x7c\x48\xf4\x5e\x6e\xaf\x47\x14\x90\x49\xf9\xd3\x76\xd2\xf4\x3a\xd6\x56\x92\xbc\xbc\xfd\xa9\x3c\x94\x9e\xeb\x0b\x7f\x46\xdb\xbd\xcc\xe3\xdc\xb9\x73\xe6\xc9\x27\x9f\xcc\x00\xf8\xe5\xa1\x86\x73\xce\xef\x67\x69\x02\xe8\x2c\x74\x1b\x8b\x1f\xb9\x3f\xfb\xc9\x73\x0f\x66\xfe\xaf\x95\x83\xe6\xcb\x4d\x6b\x8e\x19\x18\x3e\xd3\x50\x97\x8e\x05\xa9\x43\x92\xff\x22\x61\x6c\xcf\x0d\x80\x6c\x0c\x5e\x56\x66\x86\x8d\x45\x03\xb3\xb3\xdb\x1e\x6d\xee\xb7\x6c\xb7\x78\xec\x07\x8a\x65\xf9\x16\x17\x17\xb1\xb0\xb0\xe0\x1e\x3c\x78\x80\x5e\xaf\x27\xd9\x36\x2f\x44\x48\x27\x78\x09\x2d\xe4\x34\xdc\xee\x72\x3a\x89\x3f\x6f\x6b\x2a\x57\xc8\x4e\x48\xed\xea\xa4\x46\x89\x4d\x11\x49\x71\xd2\x74\xa2\xc4\x2b\xc6\x47\x7b\xc6\xa7\x9d\x92\x78\xae\xad\xad\x65\x9f\xfa\xd4\xa7\x70\xea\xd4\xa9\xcc\x39\x07\xe7\x5c\x86\xf1\x2c\x4b\xe6\x9c\xf3\x9b\xb1\x5a\xf3\xbd\xc6\xe2\x89\xad\xf6\xb3\x4f\x6c\xb7\x5f\x6c\x0f\xb3\x93\xc6\x19\x3f\x3b\x03\x00\x70\x7e\xef\x49\xad\x39\x08\x60\x70\x44\x59\xa9\x7e\xba\xf1\x7f\xfe\x9f\x21\xf1\xc6\x98\xf1\x7e\x99\x22\x8d\x73\xb4\x75\x2a\xde\x06\x75\x86\x74\x69\xa8\xb6\x71\xb7\x90\xcf\x2f\x69\x19\xbf\xd1\xa5\x9e\xba\xe4\xd6\x6f\xb8\xee\xbd\xf9\xc1\x8d\xf7\x57\x0f\xde\xbe\xbe\xdc\xbb\xbc\xdf\x1c\x6d\xc2\x60\xd7\x39\xb7\x4b\x41\x0b\x80\x7d\x63\x8c\x07\x2d\x7e\x23\x2e\x9f\x69\xb1\x6f\xbc\xf1\x86\xbd\x70\xe1\x82\x07\x2d\x40\x78\x5a\x5a\x9a\xa2\x06\x26\xdb\x3c\xa4\x9f\xd2\x12\x41\x86\x49\x87\xa9\xe9\x6a\x16\x48\x13\x93\x59\xd3\x77\x1e\xa4\x8e\xa9\xd1\x48\x79\x6b\x41\x5a\xaa\x08\xc9\x94\xb1\xdf\x90\x2c\x12\xe8\xa0\xf2\xa4\xf4\x41\x4a\xaf\xe5\xc1\xcb\x90\x62\x67\x32\x85\xce\xe7\xc7\x79\xc7\xf4\x40\xe2\x6d\x21\xd7\xa5\x66\x17\x43\xfa\xc3\x69\x63\xed\x23\x5d\x87\xd2\xa6\x3c\x8f\xdd\x6b\xfa\xa3\xb5\x37\x2d\x77\x48\x27\x62\x6d\x17\x93\x37\x56\xff\xfc\x99\x64\x3b\x2c\x00\x3c\xf9\xe4\x93\xd9\xf1\xe3\xc7\xcb\x3c\xfc\x00\x96\x2c\x13\x75\x32\x8b\xce\xe9\x87\x9d\xa7\x9f\xdc\xec\x7c\x65\x65\xbf\xf9\x52\x73\x64\x8e\x01\xc8\x6a\x5e\xd8\xb9\x9a\xd7\xe5\x9e\x3c\x86\x06\x34\x04\xe7\x79\xfb\xc1\xb1\xff\x6b\x38\xb3\x38\xd7\x6b\xbc\x70\x72\xab\xfd\x95\x53\x5b\x9d\xf3\x0b\xbd\xc6\x32\xc6\xb3\x43\x2d\xe7\x5c\x0b\xac\x4e\x9f\x7c\xf2\xc9\x6c\x66\x66\x86\x72\xe5\x75\x32\x4d\x3f\x4b\x09\x7c\x89\x2a\xd4\x3f\x91\xf8\x5c\x8b\xab\xfd\xc6\xf6\xb8\x50\xe1\x62\x71\x9a\x20\xbc\x70\x8f\xc3\x47\x4a\x1f\x72\x36\x00\x80\xd5\xd5\x55\x9c\x3d\x7b\x36\x2b\xde\xc8\xc9\x00\x64\x04\xbc\xe4\xce\xb9\x56\xee\x4c\xe7\xd8\x76\xeb\xe4\xc9\xad\xf6\x67\xe6\x7b\x8d\x67\x32\x67\x66\xc7\x08\xa0\x62\x68\x28\x84\xf6\xbb\xc0\x0b\x00\x51\x9b\x97\x29\x22\xab\x59\xbf\xf2\x3f\x3f\x41\x42\xf8\x94\x8f\xc6\x97\xd5\x54\x4c\x79\x63\xea\xcc\xcb\xfb\x12\x7a\x16\x17\x94\xae\x12\x91\x62\xff\x02\xb4\x14\x33\x35\xc3\xcc\xf6\x37\xe6\x06\x37\x3e\x38\x7c\xf0\xee\xf5\x43\xdd\xcb\x7b\xed\xd1\x7d\x54\x4b\x43\xe2\xf2\x10\x08\x60\x21\xb3\x2c\xd6\x5a\x6b\xdf\x79\xe7\x1d\xfc\xfa\xd7\xbf\xf6\x1b\x71\x7d\xdb\xf8\xb6\xd0\x9c\x61\x08\x20\x73\x40\x22\x85\x18\x3f\x1e\x3f\x8d\x13\xe3\xcf\x62\xce\x41\x03\x69\x31\xe7\x9d\x92\x3f\x4f\xa3\x01\x43\x29\x70\xda\x14\xc7\x19\xca\x5b\xe2\x91\x3a\x38\xe1\xe9\x63\xce\x5e\xe3\x1d\x6b\x2b\x7a\xad\xc9\xad\x81\x25\xee\x88\x25\x9d\x91\x1c\x80\xa6\xe7\x92\x1e\x4b\x71\x21\xdd\x8d\x01\x6b\xce\x37\x24\xbf\x54\x3f\x50\x68\x24\x10\x28\x81\x16\x49\x7e\xcd\xee\x6b\x6d\x2f\x95\x4f\x93\x4d\xe2\x1d\x04\xda\xa7\x4e\x9d\xc2\xd1\xa3\x47\xa9\xec\x39\x99\x6d\x69\x01\x68\x1d\xd9\x6d\xad\x9d\xdd\xec\x7c\x6e\x65\xbf\xf9\x72\x73\x64\x8e\x1b\x98\x1c\x0e\xe5\xe4\x76\xb5\x1d\x80\x99\xef\x82\xc6\x87\xc9\xf9\x6d\x03\xc7\xe2\x4d\xf5\xa8\x7a\xa6\xf0\x6e\xc0\x2c\x2f\x76\xf3\x4f\x9f\x7e\xd8\xbe\xb7\xd3\x1e\x6d\x76\xf3\x83\x7e\xbf\x61\x4b\xfb\x8b\x7a\xbb\xd8\x73\xe7\xce\x61\x7f\x7f\x3f\xdb\xde\xde\x86\x10\x34\x1d\xd1\xf4\x5c\x0b\x5a\x7b\xa5\x0c\x56\x78\x88\xa5\x91\x06\x8e\x13\xa3\x06\x8d\x41\x28\x68\xa3\xb9\x94\x8e\x12\xe2\x23\xa1\x79\xde\x71\xa4\x86\xc8\x00\x64\x2b\x2b\x2b\xd9\x91\x23\x47\x50\xcc\x9c\x78\xc0\xe2\xff\xf2\x02\xb1\xb6\x96\x0e\xf2\x95\x93\x5b\xed\x4f\xae\xee\x37\x3f\xd1\x1c\x99\x35\x00\x85\x26\x1a\x06\xa9\x8b\x9b\x62\x59\x68\xac\xb1\x04\x69\x17\xc0\xa2\x36\x2b\xe3\x0a\x30\xe3\xca\xdb\x52\xc9\x6b\xca\xee\x9f\x3b\xd0\x79\x19\xc2\x1b\x70\xe3\x1d\xf0\x63\xa0\xe2\x45\x81\xef\x16\x44\x1e\xc2\x6b\xfc\xeb\x0a\xda\x02\xb4\x18\x37\x7c\x38\x3b\xbc\x73\x65\xe5\xe0\xdd\x6b\x87\xba\x17\xb7\xdb\xa3\xfb\x6e\x3c\xd3\xe2\x97\x84\x82\xa0\x05\x64\x44\x3a\x18\x0c\xec\xfa\xfa\x3a\x7e\xfe\xf3\x9f\x5b\x4b\x50\x8b\x10\x24\x44\xae\xb5\xb7\x94\x36\xa4\x9b\x9c\xa7\xc6\x9f\x3f\x8f\x01\x1a\x6d\x64\x99\xaa\xc3\x9c\xaf\xe4\xe8\xb4\xf4\x52\xe0\x8e\x23\x75\x74\x22\x95\x49\x92\x35\xe4\x38\x62\x20\x33\x24\x27\x35\xae\x5a\x9d\xf2\x3c\x42\xed\x19\xa3\x49\x69\x83\x10\x18\xe5\x32\xf3\xb2\x71\xde\xf4\x57\x02\x44\xb1\xfa\xe1\x3a\x6c\x59\x9c\x24\x8b\x94\x8e\x07\x89\x0f\xe7\xa1\x01\x30\x5a\x2e\x4e\xaf\xd5\xa9\xa6\x8f\x9a\xb3\x4a\xd1\xcd\x54\xa0\xad\xf5\x8d\xec\xd8\xb1\x63\x58\x5c\x5c\x04\x99\x71\xcf\xe8\x9b\x44\xce\xb9\x4e\x7b\x90\xcd\x3f\xb5\x31\x73\x7e\x75\xaf\xf9\x72\x7b\x98\x9d\xcc\x60\x5a\x0e\x28\x97\xde\xc7\x97\x93\x00\x04\x84\xc6\x48\xcf\x5c\x05\x46\xe8\xaf\x63\xe9\x2a\x7a\x3f\xcb\xee\x69\xc6\xde\xa0\x39\x32\xc7\x8e\xec\xb6\x5e\x3a\xfd\xb0\xfd\x99\x95\xfd\xe6\xaa\x31\xc6\xcf\xba\xe4\xc5\x9f\xf7\x6f\x78\xfe\xf9\xe7\xb3\xe7\x9e\x7b\x0e\x8b\x8b\x8b\x52\x9d\x69\xa0\x94\xd6\x9b\xe6\x77\xb5\xfe\xc7\xf5\x5f\xd2\x87\x14\xdb\xc5\xe9\x78\x7f\xaa\xc9\x4c\x89\x24\x81\x11\x88\xe7\x99\x49\x9d\x80\xa6\x93\x0c\x09\x84\x67\x1a\x72\xb6\x02\x8d\x84\xfa\x2d\x00\xfb\xe4\x93\x4f\xe2\xa3\x1f\xfd\x68\x06\x94\x4b\x27\x19\x80\xda\xab\x6f\xed\x51\x36\x7b\xfa\x61\xe7\xe9\x27\xb6\xdb\x2f\xce\x0c\xb2\xd3\x19\x4c\x6e\x50\xa1\x6c\x3a\x23\xe2\x5f\x23\xf6\xd1\x7e\xe3\x6b\xa9\x8c\xd2\xc6\x2b\xe3\xf3\xc6\xc4\x33\x43\x51\x91\x4f\x4a\x66\x70\x7c\x27\xf1\x72\x94\x79\x16\xf7\x1e\x04\x79\xa0\xe3\x30\x3e\x3f\x66\xcc\xc3\x71\xd6\x70\x70\xb0\xc6\xd9\x9d\xce\x70\xe3\xea\xa1\xee\x85\x2b\x2b\xdd\x8b\x5b\x33\xc3\xbb\x2e\xc3\x36\x80\x5d\x63\x8c\xff\xe3\xa0\x65\xe8\x9c\xab\x81\x16\x63\x8c\xed\xf7\xfb\xf6\xca\x95\x2b\xf8\xcf\xff\xfc\x4f\xae\x58\x92\xe2\xf1\x36\xd2\x74\x82\xd2\xc5\x0c\x37\x50\xd7\x09\x08\xb4\x9a\x61\xd4\x9c\xa4\x86\xf0\xb9\x2c\x3c\x2e\x66\xc0\x43\xe9\x78\x08\xf1\xa1\x72\xf2\x7b\xde\x87\x24\x47\xc8\x65\x0a\x39\x7c\x69\x60\xc0\x8d\x55\xc8\x98\x49\x46\x30\x04\x06\xb4\x20\xf5\x7f\x89\x46\xd2\x25\xae\x27\x52\x7a\xcd\x21\xd3\xbc\x63\xed\xc4\x8d\xbe\x36\x60\x93\x8c\x3d\x97\x2d\x0b\xc4\xd1\x10\xba\x97\xea\x4c\xeb\x8b\xb4\x3c\xb1\xf6\xa6\x65\xa0\x7c\x34\xde\xa9\x6d\x1b\xba\xf6\x79\xc6\xf8\x8b\x79\x7e\xf2\x93\x9f\xc4\xf1\xe3\xc7\xbd\xed\xaf\xf9\x00\x00\x2d\x63\x4c\xeb\x89\xed\xd6\xda\x89\x47\xed\xdf\x9b\xeb\x37\x9e\xcd\xdc\xf8\x9c\x16\xba\xb9\xc2\x87\xda\xa4\x38\x89\x77\xa8\x06\x8a\xe3\xe7\xae\x8a\x67\x0b\x48\x8e\x31\xf5\xcf\x9d\x03\x9c\x71\xf5\x19\x7c\x0f\x96\x1c\xf2\xce\x30\x3b\x7b\x7c\xa7\xfd\xd2\x89\x47\xed\x67\x9a\x43\x33\x4b\xcf\x9c\x29\xfe\x3c\x28\xc3\xc7\x3f\xfe\xf1\xec\xe4\xc9\x93\x34\x5b\xa9\x1f\xd2\x7b\xad\xcf\x03\x75\x1d\x92\x02\xb7\x3f\xa1\x3e\x0a\xe8\xed\x1c\x03\xcc\x35\x9a\x90\x71\xe4\xbf\x9a\xa1\x05\x7b\xc6\x8d\xa4\x06\x6c\x42\x82\x85\x64\x0a\x5d\x03\x00\x66\x66\x66\xb2\x4e\xa7\x03\x00\x25\x60\x29\xfe\xca\xa9\x41\x38\x74\x8e\xed\xb4\x8e\x9d\xda\xea\x7c\x76\xa9\x9b\x3f\xdb\xb0\xd9\x62\x35\x3b\x31\x39\xfd\x47\xe3\x24\x85\x1e\xaf\x2e\x09\xab\x9c\x64\xd5\xa9\x86\xb0\x9d\x29\x67\x53\x18\x39\xe8\xfe\x9a\x09\x12\x36\x0b\x44\x31\x91\x29\xd3\x92\x77\xfe\x49\x4f\xd8\x6b\xda\xad\x6b\xcb\xdd\x0b\xef\xaf\x1e\xbc\xbb\x39\x3b\xbc\x6b\xb3\x72\x59\x88\x2e\x11\x75\x31\x3e\xa7\xa5\x9c\x65\x61\xd3\x92\xb6\xdf\xef\xdb\xab\x57\xaf\xe2\x47\x3f\xfa\x91\x06\x2a\x35\xc7\xaa\x01\x8e\x14\xb4\x2f\x19\x76\x0d\xbd\x6b\xb2\xc4\x9c\x97\x14\xa4\x0e\xc7\x3b\x69\x0c\x3c\x69\x4e\x20\xc5\x21\x48\xb2\x70\x63\xa1\x0d\x0a\x24\x07\x29\xe5\x27\x39\x50\x2e\x83\x64\xec\xa4\xf2\xc4\x80\x99\xd4\xee\xfc\x5a\xe2\xc7\xd3\x68\x76\x45\x03\x4d\x52\x1e\xbc\xad\xb8\x8c\x21\xbd\xe4\x81\xca\xca\xd3\x01\xb2\xac\x41\x3b\x16\x90\x9f\x3b\x8a\x50\x3d\x6a\xba\xa1\xb5\x8d\x06\x56\x62\xf6\x3b\x55\x86\x50\xbe\xb1\xbe\xa9\x01\x2b\x7e\x6d\x01\x60\x61\x61\x01\xcd\x66\x13\xc0\x78\xd0\x47\x67\x5c\x00\xe4\x70\x68\x35\x46\xe8\x3c\xbd\x31\xf3\x89\xe5\x83\xfc\xc5\x7c\x64\x96\xe9\x66\xdc\xf1\x72\x0d\x99\x2e\xf7\xf1\x74\xea\xc4\xa1\xf6\xc2\x90\xcf\xcb\xa7\x2f\x37\x0e\x38\xbf\xdc\x24\xed\x83\x2c\x06\x9c\xc4\xe9\x18\x57\xf9\x15\x03\x83\x6c\xbc\xdf\xe5\x99\xa3\x3b\xad\x8f\x1f\xde\x6b\xae\x18\x63\x3a\x28\x96\xbc\x48\xf9\x3d\x38\x93\xea\x10\x90\xed\x30\xfd\x95\xda\x20\x66\x7f\x35\xdd\xe2\xfd\x81\xf3\xe2\xf1\x3c\x3f\x1f\x44\x9d\x08\x81\x0d\xb0\xfb\x94\x0e\xcc\x8d\x5f\xac\x82\x62\x06\x23\xd4\x51\xa4\x78\xe4\x79\x9e\xbd\xf4\xd2\x4b\x38\x7f\xfe\x3c\x55\xd2\xcc\x23\xd4\xe2\xb7\xd3\x1a\x99\xd9\x33\x9b\x9d\xe7\x57\xf7\x9a\x9f\x6e\x8e\xcc\x9a\x19\x37\x7a\xa5\x8c\xc5\x86\x5a\xba\xcc\x53\x81\x84\xfa\x46\x5b\x94\xf1\xd5\xa6\x5a\x9a\xc8\xc0\x11\x30\x52\x4d\xdb\x18\x92\xbc\x5c\x89\x2a\x14\xb5\x02\x21\xe3\x34\x3c\x3d\x9d\x81\xa9\x01\x1d\x43\xb8\xba\x6a\x63\x70\xaf\x61\x77\x6f\x2d\x75\x2f\x5e\x5c\xdb\x7f\x7b\x63\x6e\x70\x7b\xd4\x70\xdb\xc5\xd2\xd0\xae\x7f\x6b\x08\xe3\x33\x5a\xfc\x1b\x44\x74\x79\x68\xe8\x9c\xb3\x00\xec\x68\x34\xb2\x57\xae\x5c\xa1\xa0\xa5\xac\x7b\x76\xcd\x9d\xbb\x0f\x9a\x71\xe4\x41\xd2\x19\x8d\x4e\x02\x0a\x29\xf2\xf1\x4e\x48\xe5\x9b\x30\x84\x2c\x4d\xa8\xe3\xd1\x6b\xa9\x8c\xdc\xc1\xd3\x78\x89\x0f\xe7\x17\x72\x44\x52\x3f\xd5\xfa\x93\xe4\xb8\xb5\x7c\x43\x69\xa5\x72\x84\xfa\xf6\xb4\xf9\xd3\x67\x52\x7b\x73\xfe\x21\xc7\x1e\xe2\xad\xd9\x25\xad\x9d\xa4\xf6\x90\xec\x9f\x8f\x0f\xe9\x21\xe7\x4d\x69\x62\x3a\xa2\x39\x15\xc9\x91\xd0\xc0\xeb\x2a\xd4\x8f\x69\x08\xf5\x5b\xff\x5c\xd3\x0d\x1e\xb4\x3e\xa5\xf1\xa5\x32\x69\x7c\x33\x00\xf8\xda\xd7\xbe\x56\xce\xb6\x90\xbf\x72\x6f\x8b\x71\x68\xad\xed\xb6\x56\x56\xf7\x9a\x9f\x6a\x8f\xb2\x93\x66\x3c\xa8\xad\x05\xba\x1f\x05\xe5\x4c\x4a\xf1\xcf\xa0\xfa\x03\xf9\x73\xae\x5c\xd6\x2f\x07\xb9\xc5\xd4\xf9\xc4\xc6\x5c\x43\xe2\x0c\xf1\x1d\xa6\xe6\x58\x60\x00\xe4\x23\xb3\x7a\x68\x3f\x7f\xe6\xd8\x4e\xeb\x2c\xdc\x78\x00\x4e\x4e\xfc\xad\xd5\x5d\x9e\xe7\x68\x34\x6a\xe7\xcb\xc6\xda\x7f\x9a\xfe\xc1\xd3\x72\x3a\xfa\x5c\x6b\x27\x6d\x60\xa1\xd9\xb7\x1a\x0f\x1a\xc9\x1d\x45\xea\xf5\xb4\x71\x34\x3e\x56\x28\xc9\x18\x6a\x9d\xc8\x02\xc0\x57\xbf\xfa\x55\x3c\xf3\xcc\x33\x00\x4a\x87\x4e\x41\x4b\xb9\x36\xf8\xd4\xc6\xcc\xe9\xe3\x8f\xda\xbf\x37\xdb\xcf\xce\x35\xac\x19\x4f\xcf\x78\x7f\x6f\xea\xfb\x42\x50\x4e\x0d\x7a\xc5\x25\x77\x13\x0b\x9b\xa8\x2d\x0d\x15\x47\xc7\x94\xaf\x4c\xbb\x2a\xb2\xb6\x29\xd7\x78\x90\x44\xa6\x65\xe8\x6b\xd6\xfe\x5a\x7a\xbd\xd9\x63\x95\x0a\x5c\x55\xcb\x47\x00\x30\xca\xd0\xbf\xbd\xd8\x5f\x7f\xe7\x89\xfd\x37\xef\x2d\x0c\x6e\x0e\x1b\x6e\x1b\x64\x96\xa5\x58\x1e\x2a\x01\x0c\x9d\x6d\x29\xfe\xca\xcd\x60\xef\xbd\xf7\x1e\x7e\xfc\xe3\x1f\x6b\xc0\x94\xb6\x8f\xd4\x4e\xda\x33\x1e\x47\xe9\xa4\xce\x12\x4a\xc3\xe5\x91\x78\x52\x79\x42\x20\x4a\x73\x4a\x21\x87\xa5\x95\x23\x54\x1f\x52\xfe\x92\x53\xd7\x68\x52\xfa\x51\x28\x3f\xad\x1e\x24\xe3\x13\x2a\x07\x6f\x7f\x0d\x60\x48\x79\x70\x39\x35\x7a\x9e\xb7\x26\xbf\x54\x77\x21\x3b\x97\xda\xfe\xa1\x34\xb1\xfa\xe5\xf9\xc7\xfa\x84\x0f\xa1\x7e\x16\x92\x55\x8b\xa3\xd7\x1a\xe8\x8c\xe9\x8c\xc6\x4f\x7b\xae\xf5\xb3\x14\x1e\x34\xfd\xe3\xf0\x00\x50\x2d\x15\xa1\x38\x74\x34\x73\xa6\x73\x62\xbb\x73\x72\xbe\xd7\x38\x9f\x59\xcc\xaa\xc6\xdc\x54\xd7\xa5\x3d\x2e\x06\x97\xb5\x9d\x01\x7e\x96\x84\x9c\x72\x5b\xce\x84\x13\x5a\x36\xae\xad\xcf\x9a\x97\x3b\x12\xea\x5b\x0f\x1c\x80\x86\xc3\xec\x5c\xbf\x71\xf6\xf0\x7e\xf3\xa3\xf3\xbd\xc6\x2c\xc6\x40\x8b\x96\xab\xac\xa7\x97\x5f\x7e\x19\x2f\xbc\xf0\x82\x54\x5f\xd3\xea\xba\xa4\x07\x9a\x9d\xd7\x74\x59\xea\xcb\x9a\x6d\x91\xfa\x2c\xe5\x91\x01\xfa\x52\xd1\x34\x21\x75\xb4\x34\x6d\x08\x75\xe4\x58\xa8\xa1\x6c\x63\x4c\x46\xd6\x02\x5b\x4b\xbd\x7c\xf9\xec\xc3\xce\xe7\x96\xba\xf9\xf3\xb9\x35\xf3\x00\x45\xc0\xe5\x71\x70\xd5\xda\x65\xa9\x9d\x86\x80\x98\x22\x38\x1d\xc0\x00\x64\x02\xc4\x55\x8a\x5d\x75\x80\x1a\x65\x6d\x0a\x46\x58\x74\xaa\xcd\xd0\xa0\x90\xcd\x14\x9b\x5d\xca\xdd\xef\xb5\x35\x2c\x07\x6b\xdc\xf0\xee\x7c\xff\xf2\x6f\x4e\xec\xbd\x7e\x7b\xb1\x77\x7d\x90\xb9\x2d\x00\xdb\xe4\xb5\x67\xbf\x44\xd4\x47\x60\xa6\x05\x00\xde\x7c\xf3\x4d\xfc\xf4\xa7\x3f\xa5\x22\x79\x45\x0b\x39\x7f\x1f\xb8\x9e\x84\x46\x74\x94\x5e\x32\x48\x29\xa3\x03\x9e\x56\xd3\x53\xb1\x63\x08\x69\x38\xdf\x94\xd1\x61\x6c\xf6\x40\x7a\x1e\x32\xf4\xa1\xbe\xc6\x47\x44\x5a\x5d\xc5\xee\x25\x59\x34\x3a\xa9\x0c\x12\x50\xf1\xbf\x92\xfc\xd4\x51\x6a\xb2\x70\x5a\x9e\x4e\x93\x55\x72\xcc\x29\x36\x4a\x32\xa0\x21\xb9\xa6\xa9\x53\xfe\x3c\xa4\xff\x52\x5b\xc6\xe4\xd2\xea\x58\x93\x43\x02\x43\x5a\x5b\x70\x7a\x29\xcf\x94\x7c\xa6\xa5\x07\xe2\x6d\x50\xbb\xfe\xf3\x3f\xff\xf3\xec\xc8\x91\x23\x34\xbe\x04\x2c\x28\x66\x5b\x66\x86\xd9\xfc\xd1\xed\xe6\x73\xed\x61\x76\xd2\x00\x39\xb7\xaf\x40\x1d\x64\x00\x3a\xf8\xf0\x0f\xcb\x19\x16\x7a\x9c\x06\xea\xe0\x84\x07\xc7\xfe\x24\x39\x7c\x39\x5a\xc5\xac\xcb\xf1\x9d\xf6\x71\x63\x8c\x7f\x2d\x9a\xcf\xb8\xa4\xd4\x31\x10\xb6\x71\xfc\x9a\xd2\x87\xec\xb0\x06\x86\x35\x7a\x1e\x1f\xea\x0b\x96\x46\x4c\x13\x42\x86\x56\xca\xf4\xc3\x00\x99\x50\xa5\x88\xe1\xeb\x5f\xff\x7a\xb9\x29\xc9\x1f\xe9\x5c\xfc\xf9\xdd\xd7\x2d\xe7\x5c\xe7\xe9\xfb\xb3\xe7\x56\x77\x9b\x2f\xb6\x86\xd9\x1a\x8a\x57\xc2\xfd\x26\x58\xbe\x67\x96\x6e\x96\x1d\x47\x32\x95\x32\x75\x65\xac\x29\x6d\xa1\x89\xfe\x25\x25\xca\x7f\x22\x4d\xc1\xd7\x2f\x73\x56\x4b\x51\xae\x06\x46\xa8\x88\x86\xf0\x2d\xdf\x34\x22\xb3\x2f\xd6\xc0\x6e\xcd\x8c\xee\xfc\xf6\xe8\xde\x9b\x37\x96\xba\xd7\x07\x99\xdb\x86\xa9\x66\x59\xd8\x12\x51\x09\x5a\x8c\x31\x43\xe7\x5c\xed\x70\xb9\xd7\x5f\x7f\xdd\xfe\xfa\xd7\xbf\xa6\xcb\x52\xb1\x11\xb1\xa6\xf4\x5a\x9a\x90\x51\xce\xd8\xf3\x98\x9e\x69\x23\x0a\x7e\x2d\xe5\x17\x1b\x61\xfa\x74\x7c\xa4\xa0\x05\xcd\xb9\xf1\x74\x8f\x5b\x06\x7a\x4f\xeb\x58\x1a\xa5\x53\x80\xa0\x01\x9d\x90\x3c\x5a\x7d\x48\x32\xf0\xf6\xe6\x7c\xa9\x1c\xa1\x7a\xd4\x0c\x29\x2f\x8b\x24\x73\xa8\xbc\x12\x4f\x49\xbe\x90\x3c\xdc\xd1\xf3\x3a\xd6\x74\x4e\x2a\x3b\x0f\x12\x68\xe1\x23\xd4\x98\x8d\x8c\x81\x67\xa9\x8d\x42\x40\x21\x54\x86\x10\x80\x95\xf2\x09\xb5\x83\x04\xa6\x78\x90\xe4\x2e\x65\x6a\x34\x1a\x7c\x7f\x63\x0d\xbc\x34\xac\xe9\xac\xee\x36\x57\x97\xba\xf9\x33\xb9\x35\xcb\x80\x0c\x1a\x38\xd0\xe0\x00\xc6\x30\x7b\x5e\xed\x87\xf4\x8e\xc3\x89\x69\xf9\x4c\x4b\x19\xef\xea\x40\x87\xae\x1c\x15\x7b\x5d\x3a\x33\x83\xc6\xb1\xa5\x83\xc6\x71\x54\xcb\x5e\xe2\x72\xd1\xc7\x3f\xfe\x71\x7c\xf6\xb3\x9f\x95\x40\x4c\x8a\xad\xe1\xf4\x21\x7d\x95\x00\xb0\x06\xa2\xb4\x76\x0b\x0d\x2e\x79\x5c\x26\x3d\xfc\x5d\x86\x58\x85\x4c\x9b\x36\xa4\xc8\x98\x9d\x9d\x45\x9e\xe7\x92\xa2\xb6\x8c\x31\xad\x0c\xa6\xb3\xba\xd7\x5a\x3e\xb9\xd5\xfe\xdc\x5c\x2f\x7f\xa6\xe1\x30\x4b\x37\x44\x8d\x77\x76\xb3\xa5\x18\xa6\x98\x25\xa2\x86\x57\x72\xa2\x98\x7e\xb3\x6c\x71\xa2\x9c\x07\x2c\x35\x8e\xd2\x6c\xe4\x44\x0e\x55\xde\xe5\x5b\x49\x8e\xc4\x11\x49\x1c\x61\xe2\xd7\x57\x61\x00\x6b\x9c\xdd\x6d\x8f\x36\x3f\x38\x7c\xf0\x9b\xf7\x57\x0f\xd6\x07\x0d\xb7\x05\x53\x3f\xa7\xc5\xbf\x41\xe4\x41\x4b\x31\xbb\x52\x6e\xc8\xf5\xa0\xe5\x17\xbf\xf8\x85\xbd\x70\xe1\x02\x06\x83\x01\x90\x06\x52\x34\xba\x18\x7d\xc8\x88\x87\x66\x1e\x24\x07\xc6\x9d\x59\xcc\xc8\xa7\xf6\x05\x8d\xaf\xc6\x47\x72\x62\xc0\x64\x79\xb4\xce\x2e\x19\x1d\x0e\xe4\x24\x50\x27\xf1\xb7\xec\x3a\xd5\x60\x49\x72\x70\x3a\x9e\x97\x56\x66\xc9\x41\xc6\x9c\xab\x15\xae\xb5\xe7\xd2\x2f\xa5\x93\xca\xc3\x9d\x66\x0c\x70\xd1\x7b\x9e\x36\xe6\x98\x63\x00\x5a\x93\x2d\x06\x64\x3d\xad\xe6\x94\x52\xda\x4f\x03\x21\x5a\x08\x95\x97\xf3\x89\x39\xa6\x69\x7c\x45\xa8\xbe\x34\xbd\xae\xf9\x84\x86\x43\x6b\xb1\x9b\xaf\x74\x06\xd9\xc9\x71\x1c\xd9\x18\x0b\x36\xb3\x0d\x79\xc6\xa4\x98\xec\x16\x43\x69\xcd\xa5\x23\x32\x50\xf7\x23\xb5\xa1\x70\xf1\x0a\x34\xcf\xdf\xdb\x77\xe3\xd0\x6a\x0f\xcd\xea\x42\x37\x3f\xd5\x1a\x64\x7e\xb9\xc8\xbf\x55\x54\x03\x2f\xad\x56\x0b\xed\x76\xdb\xd7\x89\xd4\x2f\x63\x76\x29\x66\x2f\x24\xfd\xe3\x60\x9e\xa7\xe3\x03\x29\x2d\x48\x69\xfc\xb5\x8d\x25\xd6\x84\xd2\x9e\xd3\xdf\x0f\x1b\x24\xe5\x54\xf3\xff\xe2\x17\xbf\x98\x2d\x2f\x2f\x03\x28\xd7\xfc\xca\x57\xc5\xe0\x77\x90\x5b\xd3\x39\xbb\xd9\x79\xfa\xf0\x5e\xf3\xc5\xa6\x35\x2b\x80\xc9\xea\x7b\x4a\x88\xc2\x09\x6f\xf6\xf8\xf5\x4d\x7f\x8f\xe2\xde\x2f\x29\xd1\x83\xe0\x9c\xa9\x6f\xb0\xad\x26\x61\x5c\x2d\x3d\x5f\x1a\x1a\x7f\x80\xd1\x95\x7b\x57\xe8\xc6\x2d\x2f\xe3\x98\xbe\xfa\xc6\x51\x6d\x84\x60\x0c\x2c\x9c\x3d\x68\x8e\xb6\x6f\x2e\xf5\x2e\xbc\x77\x64\xff\xdd\x83\xe6\xe8\x01\xaa\xe3\xfb\xbb\x20\xc7\xf8\xa3\x7e\x1a\x6e\xbf\xa8\x63\x5b\x80\x18\xfc\xe2\x17\xbf\xb0\x17\x2f\x5e\x44\xb7\xdb\x25\xb9\x4c\x28\x3f\x8d\x0f\x21\x7c\xcd\x98\xc7\xf4\x90\xa2\x7d\x2d\x6f\xc9\x69\x49\x80\x80\xa7\xd3\xe4\x09\xc9\x18\x73\x5e\xa1\xd1\x82\xc4\x37\xc5\x78\xd0\xbc\x53\x46\xad\x54\xe6\x90\xb3\x94\xda\x2c\x54\x4e\x89\x3e\xe6\x80\x25\xa0\xc5\x81\x14\x4f\xc7\xcb\x1d\x92\x55\xd3\x39\xae\x37\x21\x1b\x22\xb5\x47\x88\xb7\xa6\x6f\xc0\x64\x59\x25\xb9\x52\x46\x98\x9c\xaf\x44\x1b\x6a\x0b\x5e\x07\x34\xad\xd6\xe7\xa4\xf2\x6b\x79\x4b\xfc\xa4\x7e\xc2\xf9\xfa\x67\x5a\xbf\xd4\xd2\x53\x3e\x12\x28\xd5\xe4\xa3\x69\xc7\xaf\x11\x5b\xd3\x9a\xeb\x37\x56\xf2\x91\x59\x01\xc8\x6c\x07\x45\x14\x45\xa8\x66\xbf\x89\x3d\xa6\x4b\xff\x34\x08\x4b\x44\xe3\x4d\xb7\x6e\xcc\xdf\x90\xd9\x16\xf2\x16\x2b\x85\x4d\x35\xa0\xe4\xc8\x1e\x99\xf1\x75\xde\x1c\x65\x8b\xb3\xfd\xec\xd8\x52\xb7\xb1\x08\x61\xb6\xc5\xef\xed\x14\xea\xc2\xd7\x95\xa4\x13\x31\x7b\xa0\xdd\x87\x6c\x2c\xe7\x2f\x01\x26\xcd\x8f\x48\x71\x25\x6d\x8e\x70\x47\x0e\x21\x33\x1e\x24\x87\xf1\xbb\x0c\x1a\x8a\x06\x00\x7b\xe2\xc4\x09\xb4\x5a\xad\x5a\xc3\xf9\x1d\xd7\xc6\x98\x56\xc3\xa1\xb3\xba\xd7\x5c\x3d\xb5\xd5\xfe\xec\xec\x20\x7b\x3a\x73\x68\x55\x20\x85\xec\x45\x19\x6b\x54\x09\x48\x3c\x78\xa8\x6d\xc2\x22\xd7\xc5\xa9\xbc\x63\x60\x51\xff\x54\xf3\x98\xd6\x8c\xdf\x4f\xaa\x36\x6b\xd5\xe7\x57\x6a\x7b\xb0\xca\x8c\x0a\x94\x6e\x0a\x35\x76\x86\xc9\x17\x90\x07\x0e\xbd\xdc\xee\xdf\x9f\x1f\x5c\xbb\x74\x64\xff\xed\xcd\xb9\xc1\x6d\x14\x9b\x6f\x31\x9e\x65\xf1\xbf\xe2\x11\xfe\xce\x39\x3f\xdb\x82\x37\xde\x78\xc3\x5e\xbc\x78\x11\x07\x07\x07\xbc\xde\x79\x1b\x6b\xe8\x98\xc7\x71\x83\xa4\xe9\x17\x37\xc4\x9a\xe3\xe5\x1d\x46\x93\x2b\xc5\x80\x6a\xce\x2d\x34\xa2\xd4\x42\x28\xff\x18\x5f\x4d\x46\xfe\x2c\x65\xe4\x2e\xd5\x3b\x4f\xaf\xc9\x16\x73\xf4\x92\x6c\xb4\x3d\x42\xa3\x2c\xad\xfe\x39\x7d\x4a\x9d\x4b\xe9\x25\x19\x34\x99\x52\xda\x31\x25\x68\xc6\x58\x03\x38\x92\xbe\x82\xd1\xf8\xeb\x58\x3d\xa4\xe8\x9b\x97\x47\xe2\xa1\xc5\x87\xf4\xd6\xa7\x0b\x81\x68\x8d\x97\x26\x6f\x6a\xfd\xf1\x50\xab\xab\xdf\xff\xfd\xdf\xcf\x8a\x99\x06\x19\xe0\x3a\xe4\xb9\x33\x9d\xd9\x41\x76\x28\xb7\xa6\x3a\xa9\x8d\x6f\x0b\x08\x84\xfa\x79\x2b\xd4\x9e\x9b\x89\xf4\x7e\xe9\x88\x2e\x45\x19\x57\xf9\x86\xca\x2b\x4c\x06\x0a\x74\xc6\xd7\x06\x99\x73\x9d\xce\xb0\xb1\xb2\xd0\xcb\x17\xef\x2f\x0c\xee\xf1\x25\xb1\xe2\x3e\x45\xf7\xa7\x7d\xc6\xe3\x24\xa0\x19\xea\xff\x3c\x8d\x64\x8f\x34\xfa\x9a\x4e\x68\x88\x3b\x94\xb1\x44\xeb\xaf\x43\xfc\xb4\x11\x88\x16\x97\x62\x34\x2c\x00\xfb\xa9\x4f\x7d\x8a\x2a\xaa\xdf\x88\xeb\x4f\x48\x1c\x6f\xc4\x1a\x64\xf3\x67\x36\x3b\x4f\x1f\xde\x6b\xbd\x38\x56\x56\xaf\x34\x64\x66\xa3\xdc\x48\x6b\x6a\x4b\x3c\x9a\x52\x8d\xd3\x12\x85\x24\x4a\x5b\x07\x16\x3a\x87\xda\x94\x21\x9d\x55\x21\xc8\xc6\x23\x76\x27\x74\x2c\xde\x49\x06\x0d\xd7\xdd\x9c\x1d\xde\xba\x7c\xf8\xe0\xed\x5b\x8b\xfd\xeb\xa3\x6c\xe2\x18\x7f\x3f\xe3\x52\x03\x2e\x04\xb0\x58\x00\x78\xf3\xcd\x37\xed\xbb\xef\xbe\x8b\x83\x83\x83\x98\x31\x0c\x39\x28\x7e\xcd\x15\x34\x34\x32\xd3\x0c\xab\x96\xbf\x86\xe0\x43\x7a\x27\xf1\x08\x19\xc6\x90\x3c\xa1\x91\x9e\x76\xcf\xe3\xb5\x32\x70\x59\xa5\x51\x11\x7d\xc6\xd3\x5a\xd4\x8d\x84\x96\x3f\xbd\x97\xea\x22\x54\x87\x34\x2f\x4e\xaf\xf1\xe4\x0e\x5c\x93\x87\xe7\xcd\xf5\x8b\xd3\x6a\xce\x5e\xb3\x51\x5a\xd0\x64\x91\xe8\xa4\x32\x48\xed\x28\x0d\x08\xa5\xf2\x48\xf5\x94\x2a\xab\x76\xcd\xf9\xf2\x38\x4d\x7f\xa4\x7b\x4e\x9f\xf2\x2c\x45\x3e\x2d\x3f\x2d\xad\xcf\xab\xac\xd3\x67\x9f\x7d\x16\xcd\x66\x93\xcf\x3c\xf8\xbf\x3c\x73\xc8\x5b\x43\xd3\xe9\x0c\xb2\xe5\x86\x33\xb3\x3e\x83\xf2\x9b\x6f\x70\x13\x16\xdb\xf9\xb7\x32\xe8\x2b\xd1\x64\xc6\x84\x5a\x72\x61\x4b\xe3\xf8\x8a\xee\x7d\x2c\x07\xc4\x64\x29\x89\x4c\xe7\x94\x9b\x00\xc8\x0c\x4e\x05\x7a\x4c\xde\x1a\x99\xc5\xd9\x41\xb6\x48\x4e\xcf\x9d\xd8\xe3\xc2\x57\x0d\x94\xfa\x4b\xb1\x8f\x9a\x2d\xb5\xec\x4f\xcb\x87\xf3\x0f\xd9\x16\xc9\xa6\x4d\xf4\x97\x69\x3b\x31\x0f\xdc\x69\x49\x4e\x8e\x1b\x4c\xcd\x70\xc5\xf2\x9e\x28\x98\x31\x26\x3b\x7f\xfe\x7c\xf6\xe9\x4f\x7f\x1a\xed\x76\xdb\x7f\xae\xbc\x54\x50\xbf\xeb\x3a\xb7\xa6\x73\x78\xaf\x79\xec\xc4\xa3\xf6\x67\x66\x07\xd9\xd3\x00\xb2\x72\x86\x03\xf5\xe9\xc1\xf2\x92\xb7\x79\x00\x2d\xf0\x8d\x59\xc1\xe0\xea\x97\xb5\x4d\x5a\xca\xc2\xa7\x01\xaa\x2f\x44\x83\x83\xa2\x8a\x7c\x64\xdc\xf0\x51\x67\x78\xef\xda\xa1\xee\x85\xab\x87\xba\xeb\xdd\x7c\xb4\x85\x62\x59\xc8\x39\x57\x7b\x83\xa8\xd8\x88\x5b\x6e\xc6\x35\xc6\x58\xe7\x9c\xb5\xd6\xe2\x9d\x77\xde\xb1\xbf\xfa\xd5\xaf\xd0\xeb\xf5\xb4\xd1\x22\x8d\x0b\x39\x8e\x8c\x5d\x43\xf8\xe5\x71\x92\x51\x97\xf2\xd2\xf2\xd7\x40\x80\xa6\x7f\xb1\x5f\x49\x3f\x35\xe3\xaf\x81\x05\x7a\x2f\xa5\xd3\x9c\x6a\xc8\xf1\x85\x80\xa4\xe4\x10\x69\x7a\xca\x5b\x93\x33\xd5\x51\xc5\x0c\x94\x96\x96\xeb\x46\x0c\x3c\x86\x6c\x8d\xa4\x9f\x52\x88\x81\xb1\x58\x3d\x87\xf4\x51\x92\x31\x74\x1d\x2a\x83\x44\x1b\x92\x51\xaa\x4b\x09\x04\x87\x00\x71\x28\x4f\xe9\x9e\xc6\xc7\x9c\x8e\xa6\x73\xfc\xda\x07\xad\xee\x39\x4f\x09\x84\x97\x71\xc6\x7f\x26\xa5\xd0\x51\xef\xdc\x0d\x90\xb7\x46\x59\xa7\x39\xca\x16\x33\x98\xbc\xb6\x57\x60\x7c\x01\xa0\xee\xf8\xfd\x12\x7e\xf9\x4d\x21\x67\x8a\xb8\x0a\xae\xb8\xe2\x40\x17\xc7\x9c\x45\x09\x50\xcc\xa4\x77\xa8\x0d\x98\xcb\x37\x37\x0c\xb9\x34\x14\xcf\x78\x7f\x91\x35\xac\x99\x6d\x0f\xb3\x79\x14\xfb\x5b\xe8\xc1\x73\x64\xc5\x01\x2b\x2b\x2b\x38\x75\xea\x94\x06\x1a\x42\x75\x49\xaf\x43\x7e\x20\x44\xab\xe9\x8c\x64\x23\x24\x39\xd4\x7e\x16\x03\x23\xa1\x0c\x53\x02\x2d\x8c\x96\x97\xf6\x2c\x54\xd9\x00\xc6\x3b\xc7\xbf\xf0\x85\x2f\xa0\xd1\x68\x64\xe4\x7b\x0d\x19\xaa\xd7\xde\xf2\x0c\xa6\x35\xd7\x6f\x2c\x9f\xdc\xea\x3c\xbd\xb2\xdf\x7c\xb1\xe1\xc6\xaf\x3f\x57\x1a\x83\xfa\x69\x86\xfe\x7a\x62\xf3\x08\xbf\x9e\x44\xb3\x13\x08\xd7\xd1\x38\xaf\x89\x95\x62\xd7\x97\x9c\xea\xcf\xca\x3c\x9c\x94\x13\xa1\x2b\xf2\x70\x70\x76\xaf\x35\xda\xba\xb9\xd4\x5b\xff\xe0\xf0\xc1\xc5\xed\xce\xf0\x3e\x0a\xd0\x62\x8c\xf1\x1b\x71\xe9\xb7\x87\xc4\xef\x0f\x59\x6b\xed\x4f\x7f\xfa\x53\x8c\x46\x23\x6e\x90\x62\x8a\xca\xaf\x25\x3a\xcd\x41\x85\x8c\x6c\x88\x3f\x07\x15\x29\x1d\x45\x4a\x2b\x19\x69\x09\x74\x49\xbc\x24\xa3\xa9\xc9\x47\xe9\x69\x59\x53\xc0\x08\xe5\x17\xeb\x57\x52\x5a\xce\x27\x26\xa7\xe6\x2c\x39\x0f\x0b\x5d\x3e\x9a\x26\x24\xbb\xe6\xfc\x52\xae\xe9\x7d\xaa\x73\xd6\x78\x4a\xfa\xe7\xef\x25\x80\x9c\xe2\xcc\xb9\x7c\x52\xde\x3c\x8f\x50\xbf\x0b\xd5\x2f\x2f\x43\x2a\x88\x94\x64\x0b\x3d\x97\x68\x34\x20\x21\xe5\xa7\x81\x5d\x5a\x06\x49\x06\x9e\x97\x66\x5b\xca\x40\xc0\x42\x35\xb0\x75\x26\x33\x0e\xb9\x21\x07\xce\xd5\xf6\x1e\x3a\xb2\x05\x00\x7e\x30\xeb\x6a\x83\x47\x00\xe5\x27\x56\xaa\xbc\xaa\xe5\x9c\x32\xce\xcf\xa8\xb8\xc9\x73\xd5\xfd\xcc\x8e\xa3\x0c\xe0\x77\x0b\xd4\xf7\x52\x12\x77\x05\x00\x59\xc3\xa2\xd3\x1c\x99\x59\xba\x29\xd7\xfb\xbf\x62\xb5\x01\x00\xb2\x63\xc7\x8e\x65\x1f\xfb\xd8\xc7\x7c\x9d\x69\xf5\x39\xad\x4d\xe1\x41\xd3\x57\x7a\x3f\x8d\xad\x92\xfa\x62\xad\x7d\xa7\x11\x90\x1b\xa8\xd4\x34\xd2\x75\x88\x2e\x14\x57\xe6\xdb\x68\x34\x70\xf4\xe8\x51\x00\x35\x84\xe9\x2b\x6a\xdc\x98\x0e\xad\xd6\x30\x9b\x3d\xbc\x3b\x9e\x6d\x99\x19\x64\x67\x81\x42\xb1\xe8\x54\x05\xc8\x75\x01\xa1\xe9\xf7\x26\x38\xcd\x58\x91\xbd\x62\xd1\xa9\x11\xbf\x96\x53\x81\x8f\xea\x74\x5b\x42\x06\x7f\xdc\xbf\x9b\x48\x4a\x46\x09\xf0\xeb\x55\xe5\x0a\x16\x99\x91\x29\x3b\x47\x01\xb2\x7a\xb9\xdd\xbf\xbb\xd8\xbf\xf2\xc1\xe1\x83\x0b\x1b\x73\x83\x9b\xae\x3a\xca\x9f\xbf\xf6\xdc\xc7\xf8\x48\x7f\xff\x0d\x22\xbf\x11\xd7\x8e\x46\x23\x7b\xf7\xee\x5d\x5e\xd7\x29\xc6\x96\xff\x49\x81\x2b\xf7\xb4\x4a\x1e\xe3\xcd\xd3\x72\xa3\x2d\x19\x47\x2e\x4f\x68\xd4\xa1\x19\x5b\xcd\xc1\xc5\x9c\x38\x07\x2c\xbc\x4e\xa4\x6b\x29\x2f\xcd\x51\x69\xe5\xd1\x80\x14\xe7\x1b\xaa\x3f\xca\x47\xaa\x3f\x08\xf4\x3c\x8e\xd3\x4b\xe0\x95\xe6\x1d\x33\xae\x31\xe7\x17\x73\xc4\x9a\xdc\x92\x11\x0d\xf1\x89\x39\x08\x89\x0f\xaf\xd3\x10\x00\x96\xda\x45\xca\x4f\x1c\xec\x09\xf4\x5a\x5a\xfa\x4c\xea\xa7\xbc\xed\x42\xba\x16\x6a\x03\xc9\x31\x49\x3a\x26\xc5\x6b\xf2\xf3\x3c\x00\xa0\x3c\xf2\x1f\xc6\x65\xce\x20\x73\x70\x84\x4f\x05\x37\xc6\x6f\x83\xd2\x8f\xe9\x3a\xf0\x97\x32\xca\xef\xd9\x91\x99\xfa\x72\x35\x09\xa8\xd1\xc2\xa0\x7c\x59\x63\xfc\x31\x5e\xcf\xb9\xd8\xff\x58\xf0\xa3\xe0\x49\x1b\x37\x17\x71\x99\x81\xc9\x33\x67\xda\xec\xe3\xc1\xe5\xc7\x16\x95\x20\xd9\x41\xcd\x06\x87\xfa\x33\xef\x5f\xda\xe0\x28\x34\x18\x4b\x91\x53\xeb\x83\xd1\x46\x9f\x26\x48\xbc\x42\xfc\x93\x15\x8e\x84\xb2\x12\x66\x67\x67\xf1\xc7\x7f\xfc\xc7\x19\x50\x1e\x30\xe7\xd3\x94\xef\xb5\x1b\xa0\x35\xdf\x6f\x2c\x9e\x78\xd4\xfe\xe8\xf2\x41\xfe\x42\xb5\x9e\xe9\xca\x7d\xb4\x1c\xd1\xfa\x8f\x27\xc2\xdf\x17\xbf\x3e\x4d\xa5\xb0\xae\x50\x3a\xba\x4b\x8b\x4c\xf5\x95\xb3\x25\x7e\x1f\x4d\x7d\x0b\x2d\x45\xd5\x3c\x98\x42\xa1\x1d\x5b\xdf\xac\x64\x29\x4b\x31\x5e\x22\xca\xdc\x70\x73\x76\x78\xeb\xca\x4a\xf7\xc2\x9d\x85\xc1\xf5\x91\x71\xe5\xab\xce\xc5\x6c\x4b\xd7\xef\x69\xe1\x4b\x44\xfe\xac\x96\xe1\x70\x68\x14\x24\xab\x2f\x00\x00\x20\x00\x49\x44\x41\x54\xef\xdd\xbb\x87\x7f\xfa\xa7\x7f\x2a\x67\x5f\x84\x3f\xde\x16\xda\x9f\x64\xbc\xb8\x21\xe5\x9d\x42\x9b\xf5\xe0\x7c\x40\xe2\x43\x06\x2f\x04\xb2\x53\x66\x0d\x38\x3d\xaf\x07\xde\xb9\xb8\x93\x08\x75\x58\x49\x3e\x5e\x27\xa1\x4e\xcf\xeb\x5a\x93\x99\xf2\x0f\xf5\x4f\xad\xae\x43\xe5\xe3\xf4\x5a\x7d\xf0\x7c\x78\xfd\x49\x32\x49\xe5\xd1\x02\xaf\x4f\xad\x0e\x79\x99\x62\x03\x29\x2e\xa7\xd6\x1e\xb1\x76\xe3\xa0\x4b\xcb\x6f\xda\x67\x9c\x9f\x04\x6a\xa5\xfb\x98\x7e\x7a\x7a\xad\x4e\xfd\x7d\x08\x4c\x71\x07\x29\xd9\x90\x10\x6f\xce\x43\xd2\x19\x49\x46\x0a\x52\xa8\x5c\x7e\xbf\x63\xe5\xe0\x8d\x83\x25\xf6\xdf\x94\xf6\x1c\xe4\x6d\x21\x37\x5e\x12\x32\x7e\x09\x48\x08\x86\xda\xe6\x72\xd1\x08\xd2\xf6\x92\xf1\x3e\xc5\x6a\x73\xc0\xf8\x4a\x5a\xf8\xaf\x64\xa2\x93\xff\x74\x4b\x81\x71\xc8\x32\x5b\xbe\x06\x8d\xa2\x7c\xf4\xfc\x32\xbe\x02\xc0\xdb\x4c\xb3\xe9\x9c\x5e\xea\xcf\x12\x9d\x64\xfb\xbd\x2c\x92\x7e\x70\xfe\x3c\x0d\x97\xb3\x46\x9b\x3a\xea\xe0\xd7\x5a\x07\x4e\x09\x52\x45\x48\x41\xed\xb0\xc6\x98\x2c\xcf\xf3\x5a\xc3\xb0\x0f\x68\xb5\x0c\x4c\xab\x39\x32\x9d\x43\xfb\xf9\xf1\x27\xb6\x5b\x9f\xe8\x0c\xb2\xd3\x63\x3a\x00\x30\x13\x98\x81\xe0\xeb\xf1\x3d\x9b\xaa\x1b\xa7\x21\x1f\x35\x24\x53\x82\x72\x1a\xc3\x90\x06\x85\xe6\x1c\x31\x95\xa5\x80\xdf\x04\x46\xd7\x44\xe9\xf2\x51\x1d\x85\x8f\x01\xce\x4e\x6b\xb4\x71\x75\xa5\x7b\xe1\xe6\x62\xef\x72\x2f\xb7\x5b\x28\x8e\xef\x27\xe7\xb4\xec\x53\xc0\x02\x06\x5a\xac\xb5\xf6\xde\xbd\x7b\x78\xe5\x95\x57\x52\x8c\x64\x48\xe1\x38\xcd\xb4\x7a\xa2\x81\x99\xd0\xc8\x4c\x33\x80\x1a\xb8\xe1\x69\x63\x46\x59\x32\xce\x21\xb0\x21\xd1\x48\xf2\x48\x69\xb4\x72\x68\x4e\x53\x73\x30\xdc\xe8\x4b\x8e\x80\x1b\x1b\x0d\x78\x85\xea\x95\x07\xad\xce\xa4\x7a\xd2\x1c\xba\x06\x1a\xb8\x0c\x5a\x59\x35\x87\x4a\xd3\x49\x60\x44\xab\x5f\x9e\x07\x97\x91\x8f\x44\x29\x0d\x97\x89\x83\xa6\x94\x7e\xa4\xc5\x87\xca\xc0\xe5\xe3\xc0\x41\xab\x4f\x09\xd4\xc5\x80\xb9\x54\xc7\xfe\x79\xa8\x2d\xb8\x1c\x21\xba\x69\xf8\x66\x00\x1f\x28\xd2\x99\xef\xb1\x35\xb5\x06\xb0\xc6\x59\x57\x2d\x04\xa1\xfc\xf0\x6d\x81\x14\x4c\xf1\x62\x04\x80\xfa\x6b\xcc\x15\x49\x19\xe8\xe2\xbf\x2b\xfc\x0b\xdd\xba\x22\xed\x4f\x04\x7b\x3e\x41\x53\x9c\x07\x06\xe1\x99\x83\x83\x35\x0e\x64\x79\xa8\xfa\x46\x92\x50\x7e\xa4\xb7\x85\xa4\x5b\x92\xfd\x07\xe4\xb6\x08\xf5\xdd\x50\x3f\xe2\x72\x4a\x69\x4b\x1a\x4d\x49\x24\x05\x4f\x05\x26\x12\x9f\x58\x9c\x14\x54\x24\xb6\xb6\xb6\x86\x6f\x7f\xfb\xdb\x00\xe0\x1b\xcb\x83\x96\xbc\x7c\x05\x1a\xe8\x2c\x76\xf3\x95\x93\x5b\xed\x8f\x2d\x1f\xe4\x2f\x64\xce\xb4\xe8\xdb\xca\x64\x31\xa6\x06\x26\xaa\xaf\x3c\x3b\xf6\xbc\x0a\x15\xae\xe6\x3c\xc8\x7d\x9d\xb8\xa4\xaf\x5e\x9b\x66\xeb\x96\xc5\x74\x0e\x7f\x03\x69\x8c\xb4\x0d\xb9\xae\x87\x5e\x6e\x77\xaf\x1f\xea\x5d\xb8\x7a\xa8\x7b\x71\xa7\x33\xbc\x0f\x53\xfb\xf6\x50\xb7\x00\x2d\x5d\xe7\x1c\xfd\xe2\x73\xcd\x90\x5d\xbb\x76\x0d\xaf\xbc\xf2\x8a\xaf\x5f\x1a\x42\xce\x5f\x72\x3a\x31\x70\xcb\x43\x0a\x88\xd1\x3a\x86\x94\x5e\xea\x54\x29\xfc\xa5\x10\x1a\xd1\xc6\x68\x43\xf9\xd1\xeb\x90\xb3\x4c\x09\xd3\xa6\xd7\xea\x2e\x56\x57\x94\x77\x08\x68\x69\xed\x23\x39\x68\x0d\x10\xf1\x7b\xcd\x86\xf0\x91\x77\x88\x3e\x36\x6a\xa4\x74\x12\x2f\x0d\x84\x53\x1a\xcd\x08\x53\x79\x25\x00\xa7\x81\x33\x9f\x5e\xaa\xb7\x69\x75\x24\x46\x1f\x73\x2e\x5c\x26\x9e\x36\xa4\x57\xd3\xca\x34\x4d\x9d\x4b\xd7\x41\xbb\xe3\x8f\xae\x18\x34\xac\xed\xe7\xb6\x0b\x83\xe1\xf8\x01\xaa\xb1\xa6\xbf\x87\x04\x18\x08\x2f\x1e\xe7\xea\xf1\xe5\x75\x61\xeb\xeb\x7b\x66\x88\x3d\x67\x46\xbd\xe6\x6e\xc8\x60\x98\x2c\x53\xd9\x61\x03\xdd\x6e\xd3\xed\x51\x80\x42\xbf\x91\xe4\xef\x49\x08\xe9\xf5\x87\x01\x95\x1a\xaf\xd8\xc0\x35\xe4\x3b\x78\xfe\xfc\xf9\x87\xfa\x56\x51\xaa\xc1\xff\x5d\xf0\x54\x69\xf9\x87\xb3\x30\xde\x70\xd5\xca\x47\xa6\x73\x78\xaf\x79\xfa\x89\xed\xd6\x0b\xed\x61\x76\x7c\xbc\x0c\x04\xb2\xfb\x8a\x6c\x31\xa9\x4d\x80\x8c\xa7\x07\xf9\x17\x9e\x4b\x42\x54\xf1\xb5\x03\x8b\x6a\x2b\x41\xd5\xce\x17\x7a\xea\x2d\x80\xf2\x48\xe7\x92\x37\x25\xac\xb3\x2f\x0f\x39\xa2\x2b\xa2\x34\x0c\x33\xd7\xbf\xb3\xd8\xbf\x78\xf9\xf0\xc1\xbb\x9b\xb3\x83\xdb\xd6\x54\x7b\x5a\x8c\x31\xdd\x62\x99\xa8\x3c\x5c\xce\x18\x43\x37\xe3\xc2\x18\x83\xf7\xde\x7b\xcf\xfe\xc7\x7f\xfc\x87\x67\x49\x47\x5d\x1a\x5a\x96\x1c\x86\xe4\x18\x42\x6d\x99\xb1\xdf\x14\xa3\xcd\x47\x91\x1a\x5f\x69\xe4\x28\x75\x02\xa9\x13\x53\x1e\x9a\xac\x52\x67\x0f\x8d\x50\x35\x1e\x52\x39\xb8\xfc\x21\xe3\x1d\xe3\xa5\x75\xfc\xd8\x28\x5f\xe3\x11\xca\x4f\x02\x8b\xda\x48\x5d\xca\x43\xaa\xf3\x18\x60\x09\x01\xa8\x18\xef\x69\x1c\xb9\xc6\x3b\x25\x7c\xd8\x81\x9f\x4f\x97\xe2\xc0\x7d\x88\x39\x21\x4e\x9b\x0a\xa8\x25\xfa\x69\x82\x56\xa7\x92\x1e\x85\xe8\x3f\x74\x70\x00\x7a\x0d\xd7\xdf\x69\xdb\xad\x7e\xe6\x76\x81\xfa\x8c\x47\x28\x1d\xbf\xae\x83\x0c\x3d\xed\xc4\x72\x0f\x23\x17\xf9\x81\x01\x9c\xe2\xda\x1a\x37\xec\xe5\x76\x77\xaf\x35\xdc\x8f\x88\xcc\x83\x56\xa7\x1a\x78\x51\x27\x0f\xa6\xcc\x2b\x75\x02\x43\xb3\x65\x94\xde\x4a\x04\xd3\x80\x91\x69\x3a\x53\x4a\x90\x2a\x64\xc2\x18\x9f\x38\x71\x22\xfb\xda\xd7\xbe\xe6\xd1\x65\x06\x4c\x6e\xca\xcd\x60\x5a\xcb\x07\xf9\xca\xf1\xed\xd6\x47\x17\x7b\xf9\x33\x06\x68\xd5\x15\x82\x7d\xd9\x93\xee\x85\x2d\x16\x39\x4b\xb4\xca\xb5\xcb\x11\x94\x4c\xe8\xeb\xe8\xc4\x6f\xc4\x82\x38\x4d\x62\x0a\x34\x63\x98\xf6\x96\xaf\xf9\x93\xa9\x45\x67\x3c\x60\x29\xa6\x32\xc9\xa6\xe1\x87\x33\x83\x1b\xef\x1f\x3e\xb8\x70\x7f\xbe\x7f\x73\xd0\x70\xdb\x30\xf5\xa3\xfc\x51\x6c\xc6\x75\xce\x79\xd0\x52\x6e\xc4\x05\x60\xdf\x79\xe7\x1d\xfb\x8b\x5f\xfc\xc2\xbf\x41\xc4\x03\x57\x66\x3e\x62\x0c\x8d\x34\x63\x41\x1b\x65\x4a\x40\x45\x32\x70\x29\xa3\x5f\x29\x50\xa7\x17\xea\xc4\x12\x0f\xe9\xf9\xe3\x00\x80\xd4\x3c\x62\x23\x13\x4d\x5e\xcd\x20\x68\xed\x15\x03\x9d\x52\x9d\xa5\xce\x40\xf0\x38\x89\xbf\x94\x77\xaa\x43\xf6\x69\x43\x60\x24\xd5\x01\x6a\x80\x55\x0b\x8f\x33\x40\x8b\x81\xcc\x18\xf8\x8c\xc5\x4f\x2b\xd3\xe3\xf4\xdb\x69\xc3\xb4\xb3\x3d\x29\x69\x3e\x5c\x30\xb0\xa3\xcc\x0d\x77\xdb\xc3\xad\x5e\x6e\xb7\xc7\x91\xf5\xad\x02\x13\x40\x42\x98\x4d\x99\xb8\x97\x90\x8d\x7c\x5b\x2e\x50\x01\xe5\x42\x55\xc9\x8f\x82\x14\xbe\x84\x64\x00\x58\x83\xe1\x41\x73\xb4\xf5\x68\x66\xb8\x2d\x17\xf0\xb1\x42\x0a\xb8\x90\xec\xe6\x34\x33\x25\x3c\x48\x03\x48\xc9\x3e\x4d\xd8\xa8\x0f\xdb\x51\x3e\x4c\x48\xc9\x7b\xa2\x12\x9a\xcd\x26\xe6\xe7\xe7\x33\xb2\x9e\x37\x39\xdb\x62\x4d\x67\x75\xaf\x79\x7a\x6d\xa7\xf5\x7c\x6b\x98\x1d\xab\x6d\x81\x52\x50\x71\x6d\xc9\x08\xe4\xcd\x1e\x47\x17\x8e\x50\xec\xfe\xae\x07\x07\x86\x40\x28\x53\x53\xc3\x45\xf5\xd9\x1b\xce\x88\x9d\x44\x54\x1d\xea\xef\xcf\x10\x40\x39\x75\xb8\xd7\x1a\x6d\x5e\x59\xe9\x5e\xb8\xb5\xd4\xbf\x72\xd0\xb4\x5b\x1e\xb4\xa0\x3a\x64\x6e\xe2\x80\x39\x14\xdf\x20\x42\x51\xaf\xbd\x5e\x8f\x1e\xe5\x4f\xc1\x84\xe6\x7c\xb8\x83\x08\x8d\xc2\xa9\x11\xd2\x66\x2d\x78\xd0\x46\x61\xd2\x2c\x07\x04\x1a\x3e\x53\x21\xe9\x18\x97\x27\x36\x13\x21\x75\xa2\xd0\x6c\x88\x54\x6e\x7f\x1f\xeb\x47\x5c\x9e\x10\xc0\xd2\x64\xd2\x66\x71\xe8\x3d\x4d\x37\xcd\x68\x48\x93\x89\xd3\x51\x7a\x1a\x27\xf1\x0f\xc9\x4e\x69\xa6\x69\x07\x49\x7f\x34\xdd\xe0\x46\x31\xa6\x13\x12\xd0\xd3\x68\x79\xe0\xa0\x37\xc5\x06\xc6\xf4\x53\x03\xf4\x21\x7d\x08\xf1\x4f\xe9\x63\x29\xf4\x9e\x86\xd7\xab\xa6\x13\x34\x4e\x6a\x9f\x90\x4c\x9a\x3c\xdc\x19\x96\x7f\xd6\xc0\xee\xb4\x47\x3b\xbd\x7c\xb4\x09\x4c\xce\x67\x7b\x7f\xa0\xf9\x0d\x3e\xe8\x35\x18\x0f\x32\xcb\x68\x53\x6d\xd0\xad\x01\x10\x42\x5f\x9d\xa2\x6e\x6a\x3e\xa6\xcc\x83\x6e\x8b\x2c\x0b\xe2\x6c\xbf\x61\x77\xb7\x3b\xa3\x7b\x5b\x33\xc3\x5d\xd4\x07\xa3\x29\x21\xd6\xdf\xa4\xfe\x12\xb3\x2d\xf4\x57\x6b\x03\x40\x6f\xcb\x90\x1e\x49\x83\xb8\xff\xf1\x8f\x2c\x86\xc2\xd4\x60\xe8\xc4\x89\x13\xf8\xe4\x27\x3f\x09\xa0\xb6\x44\xe4\x37\xe4\x96\xe0\x65\x79\x3f\x5f\x79\x62\xbb\xf5\xb1\xc5\x6e\xfe\x74\xe6\xd0\x99\x54\x09\x16\xcc\x24\x58\xae\x5e\x37\x26\x27\x1b\x1a\xae\xbf\xfe\x70\x21\x49\xed\xaa\xe5\x9e\xc9\x14\x8c\x08\x7e\x96\xc5\x7f\x66\xc0\x10\xe8\x52\x66\x5d\x26\x18\x64\xb6\x7b\x7b\xb1\xb7\x7e\xf5\x50\x77\x7d\xa7\x3d\xbc\xef\x97\x88\x50\x01\x96\x12\xb4\x18\x63\xfa\xfe\x80\x39\x10\x25\xb8\x70\xe1\x82\x7d\xff\xfd\xf7\xa9\x24\xdc\xc8\xf0\x5f\xee\xb4\x34\x03\xc1\x83\x34\x4a\x8f\x39\x3e\x0e\x98\xb4\x74\x9a\x13\x99\x26\x9f\xd0\x2c\x87\xe4\x58\x2c\xa3\x95\xf8\x4a\x21\x34\xa3\xc1\xeb\x57\x32\xf8\x12\x6f\xde\x06\x29\x40\x27\x16\x2f\xe5\x43\xf9\xd3\xe7\x92\xd3\x97\xea\x53\x02\x91\x19\xa3\x8b\xb5\x19\x07\x29\xda\x2f\xcf\x4f\x6a\x63\xce\x27\xe6\xec\x42\x4e\x56\xca\x27\x46\x2b\x39\x68\x2d\xc4\xea\x85\xeb\x55\x4c\x7e\xde\x86\xd3\xea\x8b\xc4\x3f\x16\x24\x70\xa9\xd9\x8a\x69\x7c\x12\x6f\xcf\x98\xfe\x13\xe0\xe2\x86\xdb\x9d\xe1\xee\x4e\x67\x74\x67\x64\xd0\xa7\xf6\xbb\xdc\x83\x62\xd8\x6a\x3e\x79\x5e\xd2\x92\x3d\x93\xf4\x40\x3a\x03\xff\x99\x16\x7f\x56\x8b\xab\xd1\x73\x3e\x7c\x9f\x64\x6d\xff\x23\x79\x66\x0d\x86\xdd\x96\xdd\x7a\x34\x33\xbc\xd7\xcb\x5d\x17\x10\x37\xe2\x5a\x00\xda\xc9\xb9\xb5\x7a\x60\xf1\xdc\x26\xd6\xf8\x45\xe2\x63\xed\x26\xe9\x00\xe7\x91\xea\x17\x3e\xd4\x1e\x97\x94\xf0\x3b\xe5\xbf\xb8\xb8\x88\xa3\x47\x8f\x96\xb3\x2d\xf4\x63\x8a\x28\x40\x4b\xc3\xa2\x73\x64\xb7\x75\xfa\xc8\x6e\xeb\xd9\xf6\xd0\x1c\x83\x33\x59\xfd\x84\x43\x12\x3c\x0c\xa6\x4b\x33\xc5\xbe\x92\xc9\x1d\x56\xc5\x73\xd0\xe3\xa0\x4b\xa8\x81\x3a\xfa\x71\xd5\xf1\xd1\x7e\x33\x6e\xb1\xaf\xc6\x50\xf5\x27\x13\x35\x13\x6f\x39\x95\xc8\xbc\xea\x36\xfe\x6a\x6b\x66\x78\xe7\x83\xc3\xdd\x77\x1f\xcc\x0d\x6e\x0e\x1a\x6e\xd7\xa1\x3c\xa7\x85\x7f\x38\x51\x3a\x64\x0e\x17\x2e\x5c\xb0\x6f\xbf\xfd\x36\x1e\x3e\x7c\x48\xb3\x0c\x29\x95\x0f\xa1\x11\x62\x4a\x5b\xa7\x8e\xfe\x52\xee\x39\xca\xe7\x32\xf1\x78\x49\x76\xcd\x21\xf1\x8e\x1a\x1b\x79\x84\x78\xf0\x78\xce\x37\x66\xf8\x35\x03\x23\x19\xeb\x14\xb9\x38\x6f\x2d\xcf\xd0\xe8\x88\x1b\x2c\x0e\x2a\x34\x9e\xd2\x7d\x4a\x7d\x4a\x86\x36\xd5\xe1\x4b\xb2\x49\xb2\x84\x46\xf8\x52\xfd\x4a\x75\x10\x93\x8b\x83\x26\x49\x16\x29\xc4\xfa\x81\x24\x27\x95\x49\xd3\x8f\x14\x7d\x48\xed\xd7\xa1\x7a\x8b\xd9\x11\x1a\x17\x02\xb9\x52\x1c\x1f\x5c\x69\xc1\x3b\xf3\x02\xb8\x60\xb8\xd7\x1a\xed\xde\x9b\xef\x5f\xeb\xe5\x76\xcb\x15\xcf\x6b\x66\xbf\x66\xa2\xab\x99\x77\x69\x29\xa7\x5c\xce\x31\xd5\x7e\x16\x0a\x7e\x4a\x4f\xc1\x66\x61\x68\xe0\x2f\x8e\xd0\x6b\x67\xc6\xf9\x0f\x1b\xae\xbb\xdd\x1e\xde\xdb\x98\x1b\xdc\x75\x06\x16\xc2\x21\xa2\x15\x3f\xc3\xfb\x0c\x84\x7b\xed\x59\xea\x80\x42\xa3\x97\x9e\x4b\x6d\x14\xb2\xd1\x6a\xfa\x0f\x0b\x2c\x92\x94\xe5\x77\x11\x8e\x1d\x3b\x96\x9d\x3a\x75\x8a\x02\x96\x8c\xbe\x4d\x84\x72\xb6\xa5\xb9\x7c\x6c\xa7\xf5\xdc\x62\x37\x7f\x9a\x7e\x87\xa2\x54\x28\x47\x94\x4a\x9e\x28\xa9\x34\xaf\x08\xe3\xd9\x10\x19\xbd\xba\x1a\xa3\xea\x4c\xdc\x1a\x0a\x66\x9b\x59\x3c\x0d\x5f\x57\x05\xa5\x2a\x0f\x13\xa0\x7b\x6d\x1c\xba\xb9\xdd\xbd\xb1\xdc\xbb\x70\x73\xa9\x77\xad\x9b\xdb\x6d\x18\xec\x16\x1f\x4c\x9c\x98\x71\x29\x0e\x99\xab\x29\xd4\xc5\x8b\x17\xed\x5b\x6f\xbd\x85\xcd\xcd\x4d\xcd\xe9\xa5\xea\x84\x36\x92\xe3\x41\x1b\xd9\xd1\x38\x69\xd4\x1a\x1a\xa5\x85\x46\xde\x94\x56\x72\x10\x52\x67\xa4\x65\x0f\x39\x29\x89\x2f\x0d\xda\xac\x89\xc4\x47\x92\x29\x54\x57\x3c\x0f\x7f\x1d\x1a\x4d\x6b\xce\x24\xe4\x08\x62\x74\x52\xbb\xa7\x38\x26\xfe\x9c\xf3\x08\x01\x1f\x0e\x0c\x62\x46\x92\xca\x10\x92\x2f\x05\x34\xd1\x10\x02\x89\x21\x27\xcd\xeb\x4c\xd3\xb3\x98\x61\x97\x80\x5b\x6c\x14\x2b\xc5\xf3\x91\xb5\x24\xa3\x94\x67\xc8\x29\xc5\x6c\xbd\x26\x6f\x0c\xb0\xf0\xbe\x21\xc9\x1b\x73\xae\x16\x18\x2f\xa9\xf8\x4f\x9b\xc0\x60\x38\x68\xb8\xee\xed\xc5\xfe\xf5\xed\xce\xf0\x86\x35\x6e\xc8\x77\xb6\xd0\x6d\x01\x7e\xb8\x4a\x5d\x03\x07\x1e\x74\x36\xbd\x02\x34\xa6\xb6\x31\x57\x02\x2c\x8e\x8c\xaa\xeb\xc0\xc8\xd5\xf8\x38\xe3\x6c\xb7\x39\xda\x7a\x30\x37\xb8\xb1\x39\x3b\xd8\x84\x0c\x5a\xca\xb2\x02\xc0\xc6\xc6\x06\x2e\x5f\xbe\xec\xeb\x2c\x14\xa4\x3e\x91\x02\x18\xa5\xe7\xd3\x00\x60\x6e\x8f\x25\xfe\x13\x83\x8f\x69\x9c\x95\xa6\xd4\xb1\x91\x93\x16\x27\x29\xa9\x3a\x4a\x38\x7e\xfc\x38\xce\x9e\x3d\xeb\x0f\x9a\x03\xf9\x3e\x83\xff\xa8\x62\xab\xe1\x4c\xeb\xd8\x4e\xeb\xec\x91\xdd\xe6\xb3\xed\xa1\x59\x83\x43\x36\x31\x93\x61\xaa\xad\x22\xa6\xd2\x8a\xe2\x21\xaa\x89\x13\xa2\xa1\x86\x00\x88\xf2\xd4\xdb\x92\x5f\xc1\xa8\x38\xff\xb9\xb6\xf6\xc9\x37\x74\xb1\xfd\xbe\xb4\x33\x94\xc9\xfc\xe6\xdb\x62\x4e\xb1\x9a\xac\x71\x18\x66\xae\xff\x60\x6e\x78\xed\x83\x95\x83\x0b\x3b\xed\xe1\x03\x6b\x9c\xdf\x80\x4b\x4f\xc6\xf5\x33\x2e\xe5\x9e\x16\xba\x06\x7a\xe1\xc2\x05\x3c\x7c\xf8\x30\x36\x82\xd4\x40\x00\x37\x9c\xb1\xd1\x91\x34\xba\x94\x46\x4a\x12\x9f\xd4\x91\x01\x8f\x0f\xe9\xb2\xe6\xb0\x24\xc3\x17\xe3\x45\x79\x4a\x46\x59\x1b\x61\x70\x39\xe8\x6f\x0a\xd0\x9f\x66\x30\x30\xed\x68\x4b\x1a\xfd\xa4\xb4\x0d\x6d\xc3\x94\x3a\x93\xc0\xa3\x06\x08\x38\xbd\x46\x23\xa5\xe1\x32\xd2\x67\xdc\x79\x4b\x71\x29\xfc\x63\x80\x2b\x05\x50\x73\x90\xc5\x75\x2a\xc6\x83\xe7\x89\xc0\x73\xe9\x59\x0c\x38\xc6\xc2\xe3\xb6\xb9\x24\x8b\x44\x2f\xa5\xd1\xda\x0f\xef\xbd\xf7\x1e\x06\x83\x01\xb7\x67\xfe\x03\xb2\xd6\xbf\x5d\x69\x0d\x86\x1b\xf3\x83\xcd\xfb\xf3\x83\xcb\xbd\xdc\xed\x3a\xc0\x96\xcb\x3c\xa0\x13\xf2\x64\x3d\x7f\x7c\x51\x1b\xa6\xfa\xe0\xcf\xd5\xaa\x68\x08\xec\xf1\x4b\x48\x35\x1f\x50\x0c\x61\xc9\x06\x98\xca\x15\xd5\x0f\x37\x2d\xec\x7f\xf7\x51\x67\x78\xe7\xde\xfc\xe0\xda\x7e\xd3\xee\xa3\x0e\x5c\xca\xb7\x45\xfd\xe7\x0a\x00\xe0\xde\xbd\x7b\x58\x5f\x5f\x97\xc0\x1f\x0d\x7c\x20\x18\xd2\x87\x14\x90\x48\xf9\xd2\x78\x09\x2c\x87\xd2\xf3\xb4\xe5\x73\x49\xc9\x43\xc8\x28\x14\xb4\xce\xa4\x39\xc9\x98\x73\x14\x3b\xa0\xff\x26\x11\xf9\x36\x91\x3f\x29\xb7\x35\xdf\x6b\xf8\xd9\x96\x73\x99\x33\xf3\x86\x2c\xdf\x90\x55\x9c\xb1\x4a\x4d\x4c\xa0\x54\x53\x31\xa5\xb2\x4a\xeb\x91\x8e\x2c\x15\x91\x2f\x85\xfa\xe5\xa1\x32\x50\x10\xe4\xe8\x7a\x23\x49\x23\xac\x41\xfa\x83\x84\xc6\x67\x0f\xf9\xe3\xa0\x1d\xac\x81\xdd\x6b\xd9\xcd\xeb\x87\xba\xef\xde\x5d\x18\xdc\xb4\xe3\x99\x16\xff\x16\x11\x3d\x19\x77\x48\x8f\xf3\x47\xb5\x21\x17\xb7\x6e\xdd\xb2\xbd\x5e\xcf\x67\xa5\x8d\x04\x25\xc4\x1d\x42\xbf\x9a\xc3\xe1\x8a\x29\x8d\x8e\x32\x4c\x76\x92\x69\xc1\x74\x8a\x53\xd5\x9e\x71\x1a\x09\x48\x48\x0e\x24\xc4\x53\xd2\xf3\xd8\xe8\x9c\x3a\xab\x58\xfd\x6b\x3c\x68\xfe\x21\x99\x42\x81\x1b\x95\x50\xdb\x68\x20\x45\x03\x19\xd2\xaf\x74\x2d\x81\x5b\x29\x8f\x14\x3d\xe1\xe0\x98\xf3\xe0\xb4\x21\x3b\xa8\x0d\xb4\x1e\x07\x60\xc7\xe8\x42\xf5\x27\xc9\x24\x81\xb2\x10\x88\x4c\xe9\xab\xb1\xb4\x52\x1f\xd0\xea\x4c\x92\x67\x5a\x9d\xd6\x06\x1b\x13\xe9\x5f\x7b\xed\x35\x6f\xe7\xb8\xef\xf0\x8e\x7e\x08\x60\xe8\xe0\xfa\x07\x4d\xbb\x7b\x6b\xa9\x77\x79\xa7\x3d\xba\x35\xca\x5c\xb5\xd7\x85\x7d\x60\x71\x3c\xd8\xa5\x9b\x04\x00\xe3\x28\xb0\xa8\x76\x3c\xd6\x52\x15\xa3\x60\xff\x76\x68\x7d\x27\x0d\x85\x29\x14\xb6\x8c\xaf\xd9\x5e\x1a\xbb\xdf\xb4\x9b\xf7\xe6\x07\x57\xee\xcd\xf7\x6f\x3b\x38\xfa\xd9\x96\xda\xac\x8b\xb7\xf7\x42\xfd\x69\x7a\xa5\xd9\xa8\x50\x7b\x6a\x21\xd4\xe7\xc0\x9e\x49\x7e\x85\xf3\x17\xed\x47\x48\x79\x24\x61\xb4\x7b\x2d\x2e\xc6\x37\x94\xae\xa4\x9f\x9f\x9f\xcf\xe6\xe6\xe6\xca\x07\x7e\xb6\xc5\xef\x6d\x71\xce\xb5\x0c\x4c\xeb\xc4\xa3\xf6\xc9\xd5\xdd\xe6\xb3\xed\x91\x59\xcb\x50\x7c\x2d\xd3\xef\x7a\xaa\xcd\x80\xf8\x93\x73\x29\xaa\x99\x9c\xfd\x28\xd3\x51\x95\x32\x95\xfa\x39\x63\xca\x4d\xb5\x60\x87\xff\xd0\xe9\xc4\xf1\x64\xcc\xe4\x84\x61\x6d\xf6\xa6\x14\xa5\x42\xda\xfe\xb0\x24\x00\xe8\x37\xec\xfe\xdd\x85\xfe\xe5\xcb\x2b\x07\x17\x7b\x4d\xeb\x5f\x7d\x2e\x97\x86\xfc\x21\x73\xa8\x8e\xf3\xa7\x40\xd0\x6e\x6c\x6c\xd8\x1f\xff\xf8\xc7\x7e\xb6\x85\x03\x06\xee\x9c\x25\xc7\x40\x95\x3f\x15\x90\x80\xc4\x49\xce\x4f\x52\xde\x18\xa2\xa7\x41\x03\x13\x9c\x46\x4b\xa7\x39\x9f\x94\x11\x21\xcd\x33\x46\x1f\x32\xec\x52\xfd\x71\x1a\xed\x59\xa8\x4e\x35\xc7\x92\x02\x6c\x78\x79\x24\x19\xf9\x28\x28\x96\x37\x6f\x6b\x9e\x3e\xa5\xce\x25\xa0\x9b\x12\x42\x40\x47\x6a\x43\x4d\x27\x78\x3d\xa7\xb4\x2b\x4d\x4f\x69\x53\xc0\x19\x97\x2b\x95\x86\xb7\x0f\x95\xcb\x3f\x0f\x81\x00\x29\xad\x94\x77\x48\x6f\x28\x0d\x97\x33\xe4\x44\x35\x79\xb5\x41\x40\x30\xd0\xa5\x72\x62\x13\xfd\xb9\x56\x7d\x00\xfd\x5b\x4b\xbd\x9b\x77\x17\xfb\xeb\xdd\xa6\xdd\x72\x66\x3c\xeb\x52\x1e\xfc\xc6\x3e\x8e\xe8\x2d\x37\x80\x9a\xb3\xa0\xcb\x42\xe3\x74\x28\x3f\x11\x03\x9a\xa6\x96\xa2\xee\x27\x0c\xc9\x8f\x2e\x04\x38\x38\x0c\x32\xb7\xbf\x39\x37\xb8\x76\x6b\xa9\x77\x79\xbb\x33\xda\x2a\x5e\xba\xe0\x67\x73\x85\xda\x4d\x6a\xf3\x98\xbd\x95\x74\x5e\xa3\x8d\xe9\x42\x4c\x26\xcd\x1e\x48\xfe\x2a\x59\x09\x78\xa7\x8b\x39\x8b\xd4\x10\x1b\xe5\x00\x40\xf6\xc9\x4f\x7e\x12\xcf\x3e\xfb\x6c\x89\xba\xd9\x57\xa0\x5b\xc6\x98\x56\xd3\xa2\x73\x6c\xa7\xf5\xd1\x85\x5e\x7e\x36\xb3\x66\x96\x6f\xc6\xf5\xdf\x25\xaa\x66\x40\xc6\xcb\x31\xe5\x57\x99\xfd\xaf\xa7\xf7\xaa\x63\x38\x12\xae\x94\x90\x6e\x41\xf1\xcf\xca\x2b\xb2\x99\xa6\xc2\x48\xd5\xee\x2b\x9f\x96\x2f\x23\xd5\x22\x0b\x61\x87\x99\xeb\x3f\x9a\x19\xde\xba\xba\xd2\xbd\x70\x6f\xbe\x7f\x17\xd5\x92\xd0\x3e\xb9\xf6\x1d\x71\xe8\x95\x99\x22\xef\x57\x5e\x79\x05\xbb\xbb\xbb\x9a\xd1\xd7\xda\x33\xe4\x5c\x78\x88\x8d\xc0\x42\x00\x47\x72\x6e\x31\x70\xcc\x9d\x7e\xc8\x19\xa7\x8c\xf6\x68\xfe\xd3\x3a\x95\xe8\x08\x41\xc9\x9b\x3b\x3f\xcd\xb9\x6b\xb2\xc7\x9c\x2e\x97\x21\x95\x9f\x94\x8e\xd3\x72\xba\x10\xd8\xd0\x64\xe5\x74\x12\x88\x0d\x81\x3b\x2d\xdf\x10\x70\x88\x39\x6d\x1e\x27\x19\xfb\x58\x7c\xc8\xb0\xf3\x32\x48\x60\x8f\xa7\x93\xda\x85\xff\x69\xf9\xd1\x10\x03\xac\xa9\xf1\xa1\xb6\x94\xea\x9d\xcb\x1d\x73\xa2\x60\x74\x92\x0e\xc4\x64\x05\x50\xcd\x92\x10\x00\x33\x64\x7f\xfd\xed\xce\x68\xeb\xf2\xe1\x83\xb7\xef\xcf\x0f\xae\xf4\x1a\x6e\xbf\xe6\x39\xf8\x87\x73\x31\x79\x4b\xed\x7e\xe9\x3f\x2a\xf7\x41\x9e\x54\xfb\x5d\x78\xfa\xf2\x96\x9d\x94\xeb\x00\x8c\x0c\x86\xdb\x9d\xe1\x9d\xeb\xcb\xdd\x8b\x77\x17\xfa\x37\x61\x82\x2f\x5f\x94\x7a\xd5\xef\xf7\x6d\xbf\xdf\x07\xa6\xd3\x7d\x1a\x38\x58\x91\xf4\x8f\xf3\x0a\x81\x4b\xa9\xfd\x63\xfa\x4f\xd3\x96\xbf\x21\x63\x1e\x33\x90\xf4\x3e\x64\xb8\x42\x41\xe3\x57\xe6\x29\x1c\x63\xec\xf7\xb6\xe4\x7e\x53\xae\x73\x2e\x3f\xb1\xd5\x39\x76\x78\xaf\x79\xbe\x3d\x34\xab\xc6\x99\x9c\x6e\xc6\xad\xbd\x83\x06\xd4\xb7\x82\x7b\x44\x4c\x7f\xd9\xb2\x4e\xf9\x19\x00\x0a\x42\xc8\x37\x24\xca\x6f\x2b\x96\xc9\xa8\xcc\x94\x57\xb5\x69\xc6\x95\x8f\xf8\x3a\x69\xb1\xac\x54\x7c\xf4\xcb\x01\xf6\xa0\x69\xb7\x6e\x2d\xf5\xd6\xaf\x1e\x3a\x78\x1f\xa8\x0e\x99\x2b\x8e\xf4\xef\x16\x9b\x73\xe9\x79\x2d\x16\x18\x6f\xd0\x72\xce\xd9\xd1\x68\x24\xd5\x71\xa8\x7d\xb9\xf3\xd3\x0c\xf9\x04\x12\x86\xac\x84\xb1\xe7\x5c\x06\xc9\xb8\x69\x32\x69\x46\xdd\xb2\x6b\x2d\x0f\x0d\x94\x73\xb9\xb8\x03\x91\x1c\x15\xaf\x8f\x54\x87\xce\xe9\x35\x07\x19\xaa\x0f\x29\xad\x54\x87\x5c\x26\xe9\x5a\x6b\xd3\x54\x60\x29\xc9\x20\x95\x8b\x1b\x3e\x4d\x76\x09\x50\x4a\xc0\x06\xa8\xe7\x25\xc9\x26\xe9\x83\x24\x4f\xcc\xe6\xc5\xc0\x4d\xc8\x09\xf3\x34\x3c\x48\xf5\x22\x0d\x22\x34\x59\x34\xbd\x93\x40\x05\x4f\x47\xcb\x20\xd5\x37\x4f\xc7\x83\x26\x0b\x97\x99\xcb\x13\x8a\x97\xfa\xa9\x94\xae\x8a\xb4\xb6\x04\x2b\xec\x05\x05\xba\xbc\xd2\x47\x31\x63\x7d\xed\x50\xf7\xfa\xe5\x95\xee\x7f\x6f\xcd\x0c\x6e\x0c\x33\xd7\xaf\x5e\xb3\xc0\x78\x1c\xea\xf7\x56\x16\xfc\xe9\x07\x7a\xab\x59\x96\xda\x3b\xa3\xec\xba\xbe\xcc\x54\x9b\xb4\x29\x5d\x04\xdd\x8c\x5b\xcd\xf6\x1f\xb4\xec\xe6\xb5\x43\xbd\x77\xaf\x2d\xf7\x2e\xed\xb7\xec\x36\x8a\x83\x45\x49\x19\x86\x45\xb9\xec\x98\xcd\xf8\xf7\xad\xb7\xde\xc2\xeb\xaf\xbf\x1e\xf2\xd9\x20\xd7\x9a\xee\x4b\xfd\xc6\x3f\x8b\xd9\x17\x4d\x7f\xa4\x6b\x4d\x17\xf9\x73\x2b\x09\xcc\x83\xd6\xd1\x32\xf6\x37\x4d\xd0\x3a\xae\xc8\xe7\x6b\x5f\xfb\x1a\xce\x9f\x3f\x5f\x7e\xf5\x92\x1e\x3a\xe7\x97\x8a\x8c\x31\xad\x33\x0f\x3b\xe7\x97\xba\xf9\x33\x0d\x6b\xe6\x4b\xcc\x40\x37\xe0\x82\x6c\xc8\x45\x7d\x2a\x8e\x06\x3a\x4d\x48\xb5\xab\xb6\xac\x63\x2a\x45\x96\xc8\x6b\xbf\x5e\xc3\xd9\x9b\x45\xa6\xfe\x5f\x2d\x94\x1b\x7e\x8d\x41\x3f\x77\xfb\xf7\x16\xfa\x57\xde\x3f\xdc\x7d\x77\xaf\x6d\xb7\xc0\x0e\x99\xa3\xa0\x05\x6c\x89\xa8\xf8\x80\x22\xfe\xea\xaf\xfe\xca\xf6\xfb\xfd\x10\x48\xe4\x41\x72\xc4\xa1\x74\x9a\x23\xd4\xf8\x49\x06\x50\x73\xa0\x34\x2e\x04\x3c\xa4\xfc\xac\x40\x1b\x03\x33\xa1\xf4\x60\xf1\x5c\x46\x2e\x6b\xa8\xce\xa5\xb2\x49\x32\x48\xf2\xd0\x38\xa9\x1e\x52\xdb\x5a\x73\xce\x52\xfe\x3c\xdf\x94\xb2\xf0\x38\xe9\x7a\x9a\x7c\xa5\x76\xd7\x74\x40\xe3\x1b\xca\x5f\x32\xac\x34\x68\xb6\x2e\x56\xff\x52\xbc\x56\xce\x94\xbc\xa5\xfe\xc8\xcb\x14\x02\xbc\x92\x8c\xd2\xbd\x26\x6f\x08\xb4\x6a\x3c\x53\x64\xe0\xe9\xb4\x32\x48\xa1\xf6\xfc\xef\xfe\xee\xef\xec\xfd\xfb\xf7\x4b\x7e\xcc\x2e\x0e\x51\x7f\x03\xb3\xeb\x0c\xba\xeb\x47\xf6\x2f\x7d\xb0\xd2\xfd\xcd\x76\x67\x78\xc7\x1a\x0c\xc9\x38\xb3\x16\x6a\xdb\x00\x48\x7c\xed\x45\x52\x3a\x65\x22\x04\x72\x56\x5d\xe5\x8b\x6a\x19\x8d\xaf\x0f\x9a\x76\xeb\xfa\x72\xf7\xed\x4b\x47\xf6\xdf\xdd\x9c\x1b\xdc\x43\x61\xfb\x0b\xbb\x4f\x6d\x3f\x2d\x23\x0f\x5a\xdb\x4c\xd3\x0f\x52\xfb\x98\x66\x0b\xb4\xfe\x9a\xe2\x2f\xf8\x35\xf2\x00\x83\x90\xf2\x84\x0a\x11\x72\x76\xbc\x22\x34\xf0\x62\xd9\x73\x0a\x92\xfc\xab\xcf\xe3\xbd\x2d\xc6\xb4\x8e\x3d\x6a\xad\xae\xee\x36\x3f\xde\x1e\x66\x6b\x06\x28\x3f\xa6\xe8\xb7\xc1\xd6\xbf\xe2\x5c\xdf\xad\xed\x81\x6d\xa5\x33\x14\x2b\xd7\x43\x4d\x31\xd5\xe2\x0b\x6c\x24\x18\x1e\x48\xe2\x7f\x47\xc6\x0d\x1f\x75\x86\xf7\xae\x1d\xea\x5d\xb8\xb3\xd8\xbf\x89\x62\x23\x2e\xd8\x99\x2d\xce\xb9\x72\x79\xa8\xb8\xb6\x00\xb0\xbb\xbb\x8b\xef\x7f\xff\xfb\x3c\x1b\xda\x3e\x9a\x13\x04\x89\xd7\x0c\x29\x84\xf8\x50\xfa\x10\x1f\x9f\x36\xc4\x93\xff\x6a\x3a\x16\x72\xd2\xb1\xf2\x6a\x69\xb8\xce\x6a\xce\x42\x4a\xc3\x43\x4a\x5d\x6b\x75\x16\x6a\x3b\x49\x6e\x69\x74\x1a\x03\xa1\xb1\x3e\x2e\xf1\x4e\x19\x05\xa7\xd6\x39\xa7\x91\xea\xe9\x71\xd2\x49\x34\x92\x7c\x5a\x1e\x29\x72\xa7\x84\xc7\xe5\x9d\x62\xec\x35\xdd\x93\x6c\x6e\x0c\x58\x53\x9a\x10\x6f\x29\xad\xa4\x9f\x92\xae\x87\x42\x4c\x36\x2d\x9f\x89\x50\x0c\x7a\x2d\xc6\x0e\x3e\x43\x35\xeb\x52\xee\x73\x01\xb0\xdf\xcd\xed\xf6\xfa\x91\x83\x77\x72\x6b\x5a\x4f\x3d\x30\x58\xea\x36\x8e\x37\x46\x26\xaf\x1d\xb0\x42\x97\x7f\x1c\xf1\x28\xd4\xa5\x14\xa7\x9c\xd7\xde\x0a\x62\x69\xfd\xb6\x04\xea\x76\xc6\x83\x66\x57\x0e\x92\xbb\xcd\xd1\xf6\xf5\xe5\xde\xdb\xbf\x3d\xba\xf7\xdf\x1b\x73\x83\x9b\x8e\x6c\x0d\x20\x72\xfb\x36\x29\x67\xda\x85\xcd\xb9\xa9\xf6\x3b\xf5\xb9\x64\x87\x1f\xd7\x47\x48\x21\x36\x23\x83\x06\xea\x98\x30\x23\xf7\xfe\x5a\xfa\x0b\xd1\x9b\x00\xbd\x44\xeb\x0b\x47\xe9\x33\x00\xee\x2b\x5f\xf9\x8a\x39\x7d\xfa\x34\x1a\x8d\x86\x07\xa5\xb9\x31\xa6\x81\x31\x68\x69\x1b\x63\xda\x00\xe6\x9e\xbf\x3d\xf7\xc2\xc9\xed\xce\x57\x3a\xc3\xec\x09\x83\xf1\x32\x51\xf5\x01\x45\x53\x3f\x50\xce\xd5\x95\x8c\x2e\x11\x8d\x01\x0f\xdb\xb4\x12\x45\x28\x9e\xd6\xc5\x91\x4d\x84\x17\xc5\x39\x0e\xc0\x41\xcb\x6e\x5d\x5f\xee\x5e\x58\x5f\xdd\xff\xcd\x5e\xcb\x6e\xc2\x60\xc7\x39\xb7\x6b\x8c\xd9\x03\x70\x80\x0a\x79\x0f\x8c\x31\x03\x00\x23\x63\xcc\x08\x80\xdd\xdc\xdc\xb4\xff\xfc\xcf\xff\x8c\xfd\xfd\x7d\xaf\x58\xf5\xf5\x2f\x79\x2c\x40\x07\x11\xbc\x3d\x69\xf0\xcf\x32\x90\x7d\x65\xe4\x9a\xe6\xc9\x07\x28\x19\xbb\xe6\x6b\x69\x34\x8e\xa6\xf3\xcf\x2c\x7b\x66\x05\x19\x33\x16\xa7\xc9\x01\xd4\x65\xb2\x2c\x3d\xaf\x3b\x9e\xde\x0a\xcf\xb8\x01\x97\x64\xe3\xe5\xe1\x75\x6d\x14\x5e\x12\x70\xa2\xed\x25\xd5\x15\xaf\x6b\x4d\x1e\xb0\x34\x5c\x17\x24\xd9\x78\xfd\xd2\x74\xbc\xde\x40\x68\x79\xbe\x21\x1a\xc9\xf0\xc5\xd2\xf1\x6b\x8d\xb7\xa4\xdb\x5a\x48\xe1\xed\x03\x97\x31\x54\x1f\x21\xde\xa1\x34\x52\xd0\xca\xc3\x75\x43\xa2\x95\xf2\x92\xf4\x5e\x0a\x52\x79\x43\xcf\x39\x0d\xb5\x27\xa1\x3c\x78\x9f\xe0\x69\x6a\xe9\x6f\xde\xbc\x69\x0e\x1f\x3e\xec\x16\x16\x16\x68\x19\x32\x00\xa6\xd8\x72\x60\x48\x5c\x03\x06\x59\x2f\xb7\xc3\xbd\x96\xed\x3a\x83\x51\x67\xd8\xe8\xb4\x47\xd9\x5c\xc3\x9a\x86\x9f\xbd\x2f\x3b\x50\xe1\x2b\xc6\x7f\xe3\x5c\x9d\x19\xcf\xa4\x18\xe3\x5f\xbc\x20\x83\x64\xf2\xe3\x5d\x85\xbf\x06\xc8\xb7\xf1\x0a\x74\xb3\xdf\x1c\x6d\x5d\x3b\xd4\x7b\xeb\xdd\x63\x7b\x6f\xde\x5b\xe8\x5f\x2d\xbe\x45\xb7\x83\xf1\xe0\x75\x0f\xe3\x41\xeb\x01\x80\x1e\x80\x01\xc6\xc0\x65\x54\x94\xdf\xbd\xf9\xe6\x9b\xf6\x9d\x77\xde\xc1\x70\x38\x7c\x1c\xfd\x8e\x05\xde\x2f\x43\x69\x63\xba\x11\x93\x45\xd4\xa5\x9c\xdc\x48\x08\x27\x34\x3a\xcb\xd8\x2f\xa5\x0b\x8d\x7c\x52\x50\xb2\x05\x80\x85\x85\x05\xb4\x5a\x2d\x3a\xdb\x02\xe7\x5c\xf9\x36\x11\x1c\x5a\x4b\xdd\x7c\xfe\xe8\x4e\xeb\xe3\x9d\x41\x76\x3c\x73\x68\x95\xcd\x4f\x40\x72\x4d\x69\xa4\x69\x3f\x3e\x33\x02\x76\xef\x00\x7e\x9c\x6e\xf9\x21\xc4\x32\x9f\xc9\x7d\xe3\x25\x9d\xc1\x04\xae\xa9\x09\x20\xc4\x0f\x33\xdb\x7f\x38\x3b\xb8\x75\x7b\xa9\xbf\xbe\x35\x33\x7c\x00\x33\xf9\x0d\x22\xb6\x19\xd7\x92\x3f\x0c\x87\x43\x6c\x6f\x6f\x6b\x33\x05\x3c\x48\xa3\x6c\x69\x54\x14\x1a\xa5\xc5\x66\x6b\xb4\x91\x17\x4f\x1b\x1a\x2d\x48\xcf\x52\x46\x8e\x3e\x4c\x33\xeb\xa2\x8d\x0a\xb5\x3a\x8d\x8e\x12\x02\x79\xa4\xca\xcf\x9f\xa5\x8c\x62\x69\x1e\x5a\x5e\xb1\xd1\x93\x94\x4f\x0a\x9d\x0f\x5c\xbf\xb8\xed\xd0\xec\x03\xbf\xd7\x80\x8c\x06\xf0\x24\x59\x68\x1c\x9f\x35\x9a\x36\x5f\xce\x27\x04\x34\x79\xd9\x43\x6d\x2c\xe9\x4f\x4c\x86\x50\xd0\xea\x6c\x9a\x59\xa4\x90\x2c\xda\x6c\x88\x7f\xc6\xeb\x31\x66\x8b\x24\x7a\x40\xae\x43\x55\x8e\x9d\x9d\x1d\x3b\x18\x0c\x32\x72\xae\x89\x45\x35\xeb\xd2\x27\xbe\xa4\xeb\x9c\xcb\x8d\x31\xb9\xcd\x90\x6d\xcd\x0e\xee\xae\x1f\x71\xd9\x30\x73\xf6\xa9\x07\x33\xc3\xc3\x7b\xcd\xd3\xad\x61\xd6\x29\x67\x4c\x24\x5b\x5e\x80\x16\x67\xa8\x3b\x31\xfe\x51\x9d\x94\x0c\x01\xe8\x19\x61\x28\x4e\xc7\xdd\xe9\x8c\xee\x5d\x5b\xee\xbe\xfd\xde\xda\xfe\xdb\xf7\xe7\xfb\x57\x7b\xb9\xdb\x76\x70\xbb\x06\xe5\x41\xa3\xfd\x42\xe6\x72\xa6\x1d\xa8\x1d\xb0\x87\xfd\xfd\x7d\xff\x1d\xba\x98\x8d\xd2\xea\x7d\xa2\x3e\x1f\x33\xa4\xe4\x07\x16\x4f\xd3\x8a\x74\x39\x21\x80\x40\x10\x32\x3e\x21\x05\x0c\x19\xb0\x14\xe1\xf1\xf2\xcb\x2f\x67\x4b\x4b\x4b\x60\xb4\x74\x5f\x4b\x9e\x59\xb4\x4e\x6d\xb5\x4f\x2f\x77\xf3\x67\x73\x6b\x16\x51\xbc\x02\x5d\x03\x09\xb5\xd9\x96\xea\x7a\x12\xe9\xd6\x87\x94\x35\x72\xaa\x5c\x9e\x96\xde\x2a\xa0\xc4\x95\x74\x45\x3e\x34\xff\x09\x8e\x55\xb0\x70\xd8\x6f\xd9\xcd\x3b\x0b\xfd\x2b\x77\x16\xfa\xd7\x47\x0d\xec\x16\xd3\x83\x74\xa9\xa8\xeb\xbf\xfa\x4c\x14\xd8\x3a\xe7\xf0\xe0\xc1\x03\xfb\xbf\xff\xf7\xff\x9e\x64\x5b\x0f\x29\xc6\x47\xd3\x87\x10\x08\x89\x85\x90\x83\xd7\x8c\x16\x37\x5e\xd3\x3c\xe3\xf9\x4e\xa3\xc7\xbc\x5c\x5a\x9d\x85\x3a\xe1\x34\xfc\xa5\x7c\x52\xea\x28\x55\x9e\x10\xff\x54\x67\xe2\xf3\x91\x40\x52\xaa\x23\xd4\xf2\xd3\x9c\x3d\x4d\x17\xcb\x2f\x06\x24\xb4\xfb\x54\x10\xf6\x38\x69\xa7\x01\x08\x9a\x9c\x9a\xee\x4a\x69\x62\x21\xc9\x06\x47\x64\x89\xd1\x6a\xbe\x23\x34\x48\x0e\xc5\xc7\x80\xa8\x18\x7e\xf3\x9b\xdf\xa0\xd9\x6c\xda\xe3\xc7\x8f\xfb\x83\xd9\x4a\xf0\x52\x0c\xfc\x72\x8c\x67\xae\xf3\x22\x8f\x6c\x94\x21\xdb\x9a\x19\xe2\xf2\xea\x01\xfa\xb9\xed\x9e\x79\xd8\xd9\x3e\xb2\xd3\x3a\x3b\xdf\x6f\x2c\x67\x0e\xb9\xf1\x47\x62\x90\x51\x30\xf5\x37\x8e\xfa\x95\xe2\xbe\x76\x38\x29\x50\x5b\x2a\xf2\x47\xd5\xf5\x73\xb7\xff\x68\x66\x70\xef\xea\xa1\xee\xbb\x97\x0f\x77\x2f\x3c\x98\x1d\xdc\x2e\x66\x5a\x76\x0d\x0c\xff\x80\xee\xd0\x0f\x5c\x7d\x5d\xf9\x3c\xdf\x7e\xfb\x6d\x7b\xf3\xe6\x4d\xa9\x9e\x42\xf5\x16\xea\x77\xd3\x86\x14\x3f\xaf\x3d\xd7\x6c\x78\xcd\xde\xe4\x3c\x42\x08\x92\x63\x78\x1c\x41\x25\x61\x54\x60\x74\xe6\xcc\x19\xcc\xcc\xcc\xf8\x91\x1d\xfd\x2b\xcf\x6d\xe9\x0c\xb2\xf9\x13\x5b\xed\x8f\xcd\x0c\xb2\xb3\xa1\xd9\x16\x7a\x92\x60\x9d\x66\x12\x3a\x18\x76\xad\xce\x94\x50\xe8\x41\xc0\x50\x89\x4f\x6a\xe9\xea\x74\xb5\x4b\x61\x06\x68\xd8\x70\xdd\x07\xb3\x83\x1b\xb7\x16\x7b\x57\x76\x3a\xc3\x4d\x14\x6f\x11\x61\x3c\x4a\xf0\xcb\x43\xfc\xb5\xe7\x52\x79\xf7\xf6\xf6\x70\xe3\xc6\x0d\xcf\x52\xeb\xf8\xd3\x18\x66\x69\xc4\x13\x53\x6e\xcd\x21\xc6\x40\x6d\x0c\x58\x68\xe5\xe1\x7a\xa9\xe9\x5a\x8a\x33\x0b\x01\x1f\xed\x5a\x1a\x05\xf2\x32\x68\xd7\x92\x6c\xa1\x72\xc4\x46\x44\x29\x46\x82\x1b\xa9\x69\xea\x27\x94\x37\x0d\x21\x3b\xa0\xc9\x32\x8d\x13\x0e\xd9\x26\xc9\x00\xa6\xea\xad\xc4\x9b\x3f\xa3\xf4\xa1\x36\x8d\x39\x74\xa9\x9f\x69\xf5\xec\x79\x6b\xf5\xa6\x95\x85\x97\x81\xd7\x89\x26\x6f\x4a\x39\x25\xde\x3c\x48\x65\x08\x5d\x4b\x69\x43\x3a\x0c\xe1\x19\x00\x64\xb7\x6f\xdf\xc6\xf6\xf6\x36\x8e\x1f\x3f\xee\x79\xf8\xbf\x72\xe6\x05\x93\x3e\x06\xa3\x0c\x78\xd4\x19\x62\x70\xd8\xf5\x76\xda\xa3\xdd\xe3\x33\xc3\xcd\x13\x8f\xda\xe7\x56\xf6\xf3\x63\xed\x51\x36\x6b\xfc\xa9\xec\x7c\x30\x5a\xf8\x95\xf1\xe1\xa1\xe3\x69\x18\x69\x2e\xde\x15\xce\xc2\xc2\xd9\x41\xc3\xf5\x77\xdb\xa3\xad\x8d\xb9\xc1\x8d\x1b\xcb\xdd\xcb\x37\x97\x7a\x97\x1f\xcd\x0c\xef\x8e\x0c\x76\x51\x7d\x40\x97\x03\x97\x2e\xea\xaf\x75\xfb\x19\x17\xdc\xb9\x73\x07\x8f\x1e\x3d\xe2\xf5\x24\xd5\x37\xaf\x2f\xcd\xb6\xc4\x80\xba\xa7\xa1\x75\x2c\xd9\x43\x2d\x84\xfa\xaa\x04\xa6\xb2\x5c\x10\x30\xc4\x88\x3f\x93\x42\xa8\x13\x84\x0c\x89\xc8\x8f\x7e\x9b\x08\xc5\xa6\x5c\x63\x4c\xde\x18\x99\xce\xda\x6e\x6b\xf5\xf0\x5e\xf3\x13\xcd\x51\xb6\x4c\xe4\x1b\xa7\x03\x05\x07\x0c\x60\x94\xff\x55\xc1\x30\xf0\x31\x11\x8f\x3a\xc6\x70\x30\x93\x53\x83\xa6\x3e\x4b\x33\xbe\xae\x52\xf2\x4d\x0c\x54\x56\x94\xcf\x9c\xdd\x6d\x8d\x36\x6e\x2d\xf5\xae\x6c\xcc\x0f\x6e\x8e\x32\xf9\xab\xcf\xa8\x36\xe5\x96\x53\x84\x00\xf0\xe0\xc1\x03\xfb\xc1\x07\x1f\xf8\xfa\x8c\x22\x57\xe1\xd9\x84\x92\x20\xae\x78\x1a\xe8\x48\x01\x1c\xf4\x3a\xd6\x69\x42\xba\x28\xe9\x59\x48\x0e\xad\x0c\x5c\x1e\xa9\x53\x6b\xf4\x12\x4f\xff\x4c\x72\x12\x31\x5a\x7a\x4f\xf3\x94\x8c\xbc\xd6\xc6\xa1\xfa\x88\xd5\x45\xac\x1d\x34\xb9\x43\x7d\x3b\x14\xc7\xaf\xa5\xbc\x79\x48\x01\x05\x21\x10\x10\xd2\x7d\x5a\xcf\x31\xa7\xac\xf1\x0e\xf5\x9d\x50\xde\xb1\x34\xda\x75\x0a\x10\x7e\x1c\x79\xff\xa7\xda\x2d\xa4\x53\x31\x5e\x5a\x1b\xd6\xca\x72\xfd\xfa\xf5\xec\xd0\xa1\x43\xf6\xe8\xd1\xa3\x3e\x7e\x48\xe8\x39\x70\x29\xc3\xc8\x38\xec\xb6\x46\xb6\xb7\x6c\xbb\xdb\x9d\xe1\xf6\xd6\xcc\x70\xf3\xf8\x76\xfb\xec\xea\x5e\x7e\x7c\xae\xd7\x58\x6c\x0f\xb3\xd9\xdc\x9a\xdc\x14\x33\xfd\xf4\x15\x69\xbf\x3f\xc0\x15\x7b\x2a\x5d\x69\xf4\xc7\x17\xa3\x0c\xc3\x7e\x3e\xea\xee\xb5\x46\x5b\x0f\x67\x87\x1b\xf7\xe7\x06\xb7\xee\x2e\xf4\xae\x6d\xcc\x0f\x6e\x1f\x34\xed\x96\x43\x0d\xb4\xec\x3a\xe7\xca\xd9\x76\x3f\xd3\x8e\xc9\x13\x73\xb1\xbe\xbe\x6e\x0b\xd0\xa2\xd9\x53\xa9\x0e\x43\xf7\x3c\x4e\xb3\xdf\xb1\x7c\x78\xd0\xec\xa7\xf4\x3b\x41\x9b\x0b\x91\x31\xe1\x34\x40\x23\x05\x8d\x2e\xa4\xb4\x78\xea\xa9\xa7\xb2\x66\xb3\x09\x00\xe5\xf7\x88\x8a\x35\xc8\x31\x78\x71\xc8\x5b\x23\x33\x7b\xf2\x51\xfb\xdc\x7c\xbf\xf1\x74\xe6\xd0\x31\x30\x75\x44\xa0\x4f\x95\x00\x64\x06\x86\x92\xd1\x99\x99\x3a\xfd\x24\x2b\x0f\x4e\xb4\x6d\x31\xd5\xb5\x99\x78\x16\xda\x4a\x33\x68\xb8\xee\xfd\x85\xc1\xb5\x3b\x8b\xfd\x2b\x7b\xad\xd1\x16\xea\xcb\x42\xe2\xab\xcf\x1e\xb4\x6c\x6e\x6e\xda\xb7\xdf\x7e\x1b\x17\x2f\x5e\x8c\x19\x6c\xb0\xfb\x90\xa3\x8f\x29\x32\xe5\xc1\xf3\x0c\xb5\xb9\x14\x24\xe7\x9e\xe2\x6c\xe8\x75\x8a\xe3\x94\x00\x80\x56\xf6\x10\xdf\x94\xf2\x48\xe5\xf3\x41\x03\x46\x5a\x9f\x14\xfb\x4b\xe0\x99\x64\xb8\xe8\xbd\x44\x97\x52\xce\x14\x43\x98\xe2\x84\xb5\x20\xe9\x52\xe8\x79\x0a\x30\x45\xe4\xf9\x34\xe9\x25\xfa\x98\x5e\xf2\xb4\xa9\x6d\x18\x92\x3b\x54\x0f\x29\x69\x69\x1f\x48\xc9\x2f\xc4\x37\x06\x86\x53\xe4\x08\xf1\x7c\xdc\x90\x7d\xf0\xc1\x07\x76\x75\x75\x35\x3b\x7a\xf4\x28\x08\x6f\x0a\x60\x7c\x5e\xb5\x7c\xfc\xbe\x98\x41\xc3\x0d\x1f\xce\x0e\xfb\x7b\x2d\xfb\xe8\xc1\xdc\xe0\xde\x91\xbd\xe6\xb1\x95\xbd\xe6\xb1\x43\xfb\xf9\xda\x62\x2f\x5f\x6e\x0f\xb3\x4e\x6e\x4d\xab\x61\x91\x67\xce\xe4\x1e\x9f\x38\x03\xc0\x38\x58\x00\xce\x38\x3b\xca\x30\x1c\x66\xae\xdf\xcf\x5d\x7f\xbf\x39\xda\xdd\x9a\x19\xdc\xdb\x98\x1b\xdc\xd9\x98\x1f\xdc\xd9\x9a\x19\x6e\xec\xb5\x46\x8f\x6c\x36\x01\x56\xca\x73\xbb\x50\x0c\x5c\xe9\x12\x11\x1d\xb4\x7e\xf0\xc1\x07\xf6\x97\xbf\xfc\x25\x1e\x3d\x7a\x14\xd2\xaf\x94\x76\xad\xd5\x1f\xc2\xba\xec\x43\xaa\xde\x4d\x93\x9f\xc4\x3b\x43\x01\x5c\x62\x8e\x8b\x26\x8e\x8d\x62\xb4\x7b\x4d\x01\x45\x45\xfe\xe2\x17\xbf\xe8\x37\xe5\x7a\x9a\xf2\xd0\x39\x00\x79\xe6\xd0\x99\xef\x37\x96\x8f\xec\x36\x3f\xd6\x1e\x66\xc7\x7c\x42\x8a\x5b\x24\x00\xe2\x67\x5a\xc8\x69\x8a\xf0\xeb\x95\xe3\xcf\x00\xc8\x9b\x6f\x9d\x00\x50\x26\x36\xc3\x00\x13\x1b\x78\x2b\x46\xa1\xdd\xb9\x15\x9d\x33\xc0\x76\x67\x78\xef\xc6\x52\x77\x7d\x73\x76\x70\x7b\x64\xdc\x7e\xb1\xb6\x59\x9e\xd7\xe2\x95\x96\x28\xac\xf5\xe5\xb8\x7a\xf5\x2a\xde\x7b\xef\x3d\x89\x7b\xcc\x31\x69\x06\x34\xf5\x9e\xf3\x00\x8b\xe3\xf9\xf3\xe7\x52\x3a\x0d\x30\x48\x60\x83\xf3\xe6\xfa\x16\xea\x54\x5c\xe7\xa5\xb2\x49\xb2\xc7\x46\x88\x5a\x19\x28\x7d\xaa\xb1\xe6\x0e\x46\x6a\x3f\xa9\x8d\x53\x9d\x92\x56\x57\x12\x9f\x10\xdd\xe3\x38\x5f\x4d\x1e\x2d\xc4\x6c\x93\x26\x87\xd4\xbe\x29\x32\x4b\x7d\x24\x54\xae\x94\x6b\x04\xe2\xb5\x10\xea\x5f\x31\xb9\x24\x3d\x88\x01\x82\x69\x1d\x91\xa6\x8b\x1a\x8d\xc6\x4f\x6a\xab\x98\x2f\x92\xda\xb6\x46\xfb\xe8\xd1\x23\x6c\x6d\x6d\xd9\xe5\xe5\xe5\x8c\xd8\x4e\x3a\xf3\xd2\x55\xd2\x8e\x8f\x99\x30\xe8\xf7\x72\xdb\xbf\xbb\xd0\xdf\x7f\x38\x3b\x78\x30\xbb\xd4\xb8\xb6\x7c\x90\xaf\x1c\x3a\x68\xae\x2d\x74\x1b\xcb\xb3\x83\x6c\xb6\x33\x68\xcc\xb7\x87\xa6\x93\x5b\xd3\x1a\x7f\xc7\x68\x6c\xd3\xad\xc1\x70\x90\xd9\xfe\x41\xcb\xee\xee\xb5\xec\xee\x5e\x6b\xb4\xbd\xdd\x19\x6e\x6e\xcd\x0c\x37\xb7\x3b\xc3\xad\x5e\x6e\xf7\x6c\x35\xb3\x5e\x2e\x0b\x79\xd0\x02\x36\xe3\x4e\x37\xe5\xd2\x57\x9f\x5f\x7f\xfd\x75\xbf\x44\x24\xd5\xb1\x56\x97\x60\x74\x31\xfd\x8d\xf5\xb3\x10\x3f\x5e\xb7\x9a\x0c\x52\xbc\x4f\x63\x81\xfa\x1e\x17\xc9\x48\xc7\x1c\x5c\x48\x08\x2e\x4c\xc8\x01\x96\xca\xbe\xb2\xb2\x52\x03\x16\x60\xa0\x05\x40\xde\x1a\x65\x9d\x63\x8f\xda\xc7\x17\xbb\xf9\xd3\x0d\x67\x66\xcb\x77\x31\xfd\x7e\x16\x71\x33\x09\x7b\x0b\x88\x00\x98\x92\xbe\xc0\x1d\x7e\xfd\xd1\x83\x97\xda\xb2\x0e\xdd\xc7\xe2\xe3\xca\xcd\x58\x74\x49\xc8\x95\x5f\x78\xae\x9f\xb2\x5b\x80\x25\x86\x63\x9c\x31\x18\x14\xdf\x23\xba\xbb\xd0\xbf\x71\x90\xdb\x5d\x8a\xb2\xc1\x8e\x78\x26\x9b\x71\xad\x31\xc6\xee\xed\xed\xd9\xfd\xfd\x7d\xad\xee\x69\x1d\x6b\xc6\x2d\xe4\xc8\x35\x1d\x88\x05\x0d\x6c\xc4\x8c\xf5\xe3\x82\x1b\x0e\x24\xa4\xb2\x72\xbe\x31\x00\x02\x81\x4e\x92\x45\x4a\xcf\xeb\x2c\x04\x30\x68\x9c\x06\xf4\x52\xe4\x90\xc0\x55\x0a\x90\xe3\x69\x43\x7d\x5d\x02\x60\x29\xf5\x18\xb3\x03\x9c\xa7\xf4\x9c\x07\x8d\x3e\x66\x54\x39\x8f\x94\xfc\x34\xba\x18\xa8\x91\xe2\x25\xbe\x29\x80\x36\x44\xcf\x83\x06\x54\x62\xb6\x40\x92\x4b\xea\xc7\xa9\x7a\x98\x52\x16\x4a\xa7\xc9\xa3\xe5\x15\xcb\xdf\x5e\xbc\x78\x31\xb3\xd6\xe2\xb3\x9f\xfd\xac\x9d\x9f\x9f\xcf\x50\xed\x71\x01\x50\x9b\x6d\xb7\x40\x75\xda\x00\x47\x40\xb8\xbf\xae\x07\x38\x05\x58\xe8\x03\x98\xed\xe7\xae\x91\xd5\x20\x1a\x00\x00\x20\x00\x49\x44\x41\x54\xdf\xcf\x87\xbb\xdb\x9d\xe1\xc3\xdb\x8b\xfd\x5b\x4d\x6b\x3a\xad\xa1\x69\x75\x86\xd9\xec\x4c\xbf\xd1\x69\x8f\xb2\x8e\x71\xc8\x1c\x1c\xac\xc1\xd0\x66\x6e\xd8\xcf\x5d\x7f\xaf\x39\xda\xef\x36\x6d\x77\xd0\x70\xdd\x61\xe6\x0e\x46\x99\xeb\x3a\x53\x9d\xde\x4b\xfe\x4a\x10\x53\xcc\xb4\xfb\xfd\x8d\xfc\xec\x96\xf2\x6f\x73\x73\x13\xe4\x84\x74\xde\x46\xa1\xba\xe7\x74\x3c\x5e\xaa\x53\xcd\x86\xa5\xf8\x89\x90\x8e\xa7\xd8\x07\x00\x63\x20\x10\x53\xa6\x10\xd8\xe0\x02\x85\x90\x15\x7f\x36\x51\x79\x8d\x46\x23\xfb\xf6\xb7\xbf\x0d\xa0\x3a\x21\x97\x2c\x15\x8d\x5f\x5d\x73\x68\xb5\x87\xd9\xfc\xda\x6e\xf3\xc9\x99\x41\xe3\x2c\xc0\x57\x87\xf8\x4e\x59\x79\xa6\x43\x9c\xfc\x20\x9b\x55\x94\xbd\xbb\xf5\x73\x5f\xe0\x81\x0d\x7b\xe3\x08\x28\xa7\x69\xc6\x4b\x58\x95\x0c\x7c\x03\xb1\x0f\x0e\x0e\xbb\xed\xd1\xbd\x1b\xcb\xbd\xcb\xdb\xed\xd1\x03\x67\xb0\x4f\x0e\x1a\x2a\x37\x63\x91\x37\x89\xac\x31\xc6\x1a\x63\xd0\xef\xf7\xf1\xcb\x5f\xfe\x12\x17\x2e\x5c\x88\x19\xb0\x90\xa2\x69\x69\x62\x86\x9c\xd3\xf2\xfc\x34\xde\x29\x0e\x86\xc6\x49\x4e\x31\x55\x37\x63\xbc\xb5\xce\x1c\xe2\x91\xe2\x2c\xa4\x7c\x28\x4d\xac\x4c\xfc\x5e\x73\x56\xbc\x6c\x1a\x60\x8a\xd5\xb3\x26\x3f\x97\x55\x73\xd8\x31\x1e\xa1\x11\x55\xcc\x4e\xc4\xee\x43\xba\x17\x35\x84\x0a\x3f\x7e\xad\xf5\x9f\x69\x6d\xa7\x94\x9f\x74\xcf\xf3\x93\xe2\x35\x59\xa5\x3c\x35\x1e\x52\x1e\x94\x5e\xe3\x11\x0a\xb1\x76\x9b\x26\x2e\x85\x7f\x34\xff\xf5\xf5\x75\x0c\x06\x83\xec\xcb\x5f\xfe\xb2\x6d\xb7\xdb\xfe\x35\x69\x8b\xf1\x40\xb0\xa4\x23\xf1\x16\xd5\xd1\x13\x43\x00\x2d\x8c\x01\x44\x07\x40\xcb\x66\xa6\xd5\x35\xa3\x56\xcf\x98\x1c\x6d\xe4\x70\x2e\xcf\x9c\xc9\x0c\xd0\xf4\xcc\x8a\x17\x44\x46\x0e\xb0\x6e\xfc\x45\x6a\x3f\xe8\xec\xb3\x3f\x0e\x5e\xfc\x0c\x3b\x3f\xfe\xc2\x82\x6d\xc8\x3d\x38\x38\xc0\x3f\xfc\xc3\x3f\x60\x30\x18\xf8\x72\x3f\x8e\x6e\x68\x75\x1a\xa3\x8b\xf5\xfb\x69\xfa\xb3\x34\xe0\x11\xfd\x94\xb6\xc7\x85\x0a\x23\x65\x12\x7a\x16\x0b\x5a\x67\xa9\xf1\xe4\x80\xc5\xbf\x06\xdd\x1c\x99\xce\xf2\x7e\x63\x75\x65\xbf\xf9\x74\x6b\x98\xad\xd5\xd3\x08\x37\xa1\xe5\x19\xc8\x1b\x65\xb5\x14\xb5\xfd\x30\x94\x4e\x01\x41\x93\xbb\x5b\x74\x79\x46\x19\xfa\x77\x16\xfa\xeb\x1b\x73\x83\x5b\xfd\xdc\x6e\xc3\xa0\x6b\x50\x82\x96\x89\xef\x52\xd0\x4d\xb9\x3f\xf9\xc9\x4f\xec\xfb\xef\xbf\x2f\xb1\x4d\x35\x0c\x31\x87\x92\x02\x70\xe8\xb5\x94\x4e\xba\xd7\xd2\x6b\xfc\x43\x0e\x22\x13\xe2\xb5\x74\x3e\x4d\x8a\x43\xe7\xe5\x49\x0d\x5a\x59\xb5\x91\xa8\x56\xd7\x21\xe7\x13\x7a\x1e\x1b\x2d\x6b\x32\x4a\x61\x1a\x10\xa0\xe9\x4b\xa8\x0d\xa6\x09\x31\x00\x90\x62\x9c\x53\xe4\x4b\xad\x53\x28\xb4\xa9\xbc\x63\xb2\xa5\x02\x92\x94\x76\xd6\xc0\x5d\xaa\xfe\xfb\x6b\x08\x74\xd3\xda\x90\x18\x80\x8c\xf5\x93\x90\x8c\x9c\x47\x29\xfb\xd5\xab\x57\xed\xbf\xfd\xdb\xbf\x65\xdf\xf8\xc6\x37\x28\x38\xc9\x51\x2d\x1b\xf9\x38\x3f\xcb\xd2\xf1\xf7\x18\x03\x97\x6e\x11\xd7\x42\xf1\x81\x5f\xf8\xd5\x00\x63\x32\x6b\xc6\x47\x8c\xb0\xfd\x92\x65\x3d\x1b\x94\x27\x9c\x97\xa7\xf6\x92\x6b\x7e\x2a\xae\xb7\xff\xb5\x23\x2f\x40\x36\xe5\x8e\x46\x23\xfc\xcd\xdf\xfc\x8d\x06\x06\x42\xc0\x34\xc5\xf6\x3d\x8e\x2e\xf2\x10\x7b\x2e\xc9\xed\xd3\xf9\xb8\x89\x76\xa7\x33\x2e\x21\xf0\x12\xaa\x18\x4a\x9b\xa2\xcc\xdc\x48\xd7\x84\x23\x0d\xee\x41\x4b\x56\xd0\xe5\x00\x5a\x9d\x61\x36\x7f\x6c\xb7\x7d\x72\xa1\xdb\x78\xda\x90\x4f\x16\x54\xfb\x57\xea\xd7\xe5\x43\xba\x2c\x53\xfc\xf2\x65\x20\x1f\xa7\xa1\x97\x09\xd0\xa2\xbd\x26\xc4\xc2\x04\x3d\x7b\x06\x00\xdb\x9d\xe1\xad\x2b\x2b\xdd\x8b\x3b\xed\xe1\x03\x3b\x3e\x6c\x6e\xdf\x39\x57\xdb\xdf\x82\x4a\x61\x01\x59\x11\x79\x08\x8d\x08\xa7\x31\xde\x31\xc5\x4b\x9d\x51\xd0\xf4\x46\xca\x23\xe4\x64\x39\xbd\x66\x14\x43\x23\x81\x54\xe3\xce\xe5\x94\xe8\x24\x10\x1e\x03\x0a\xa1\x72\x04\x3b\xad\x22\x63\xaa\x43\xcf\x50\x97\x37\xc5\xb1\xc4\xec\x00\x0d\x1a\xbf\x90\xae\x86\x8c\x5b\x0c\xb8\x69\xb4\xa9\x60\x9b\xc7\xa5\xa4\xd3\xda\x2c\x25\xbf\x69\xcb\xee\xd3\xa4\xd4\x81\xe4\xa0\x28\x7d\xac\x1f\x3f\x8e\xfc\x34\x5f\x2d\xa4\x02\xc1\x10\xa0\x8d\x95\x41\x6b\xd3\x8c\xd3\xdc\xbe\x7d\x1b\xdf\xfb\xde\xf7\xec\x9f\xfd\xd9\x9f\xf9\x67\xb5\x65\xa3\x72\x0b\x01\x99\x75\xf1\x9f\x97\x01\xd0\xc1\xd8\x16\xe7\x18\x83\x97\x9c\xfc\x65\xec\xaf\xcc\xb7\x18\x64\x96\xaf\x2f\x93\xeb\x3e\x99\x81\xf1\xa0\x85\xce\xc8\xd4\x5e\x79\xa6\x75\xb3\xb3\xb3\x83\xbf\xfd\xdb\xbf\x55\xaa\x43\xac\x93\xd4\x3e\x19\x6b\xcf\xd4\xfe\x48\x9f\xa7\xf4\x13\x2d\x0f\x1a\x32\xa0\x7a\xab\xc8\x13\x72\x94\xcb\x13\x50\x3a\xc9\x50\x43\xb9\x97\x84\xaa\xd1\xcc\xcd\xcd\x65\xdf\xfa\xd6\xb7\x4a\xd0\xc2\xfe\xc6\xaf\x41\x5b\xb4\x66\xfb\x8d\xe5\xc3\x7b\xcd\xa7\x3a\xa3\xec\x38\x7f\x83\xc7\x15\xe8\xc0\x90\xe9\x8e\xea\xdd\x7a\xba\xb4\x43\x82\x04\x3a\xc8\xeb\x6b\xa1\x15\x25\xb6\x0a\x34\x81\x63\xca\xfc\x82\x7b\x73\x1d\x86\x19\xfa\xb7\x96\x7a\x17\x1f\xcc\xf5\xef\x0e\x1a\x6e\x17\xd5\x07\x14\x27\x94\x97\x74\x26\x18\x63\xf0\xef\xff\xfe\xef\xf6\xda\xb5\x6b\xbe\xce\x78\xbd\x4a\x00\x82\xc6\xa5\x8c\x1c\xa5\x76\x97\xd2\x69\x74\x34\x2e\x06\x16\xa0\xc4\x67\xca\xb3\x50\x59\x34\xe7\x2e\xc5\x51\x27\xae\x85\x90\x7e\x4b\x79\x68\xf1\xd3\x00\x46\xce\x4f\x2b\x73\x08\x10\x69\x6d\xac\x81\x4c\x29\xa4\xca\xcb\xeb\x24\x54\xd6\x50\x3d\xc5\x40\x44\x08\x48\x85\x40\x59\x2a\x40\xd2\x64\x0c\xf5\xb1\x10\x0f\xa9\x3c\x5a\x5f\x98\x46\x97\x35\x79\x25\x9b\x2e\xb5\x03\x2f\x97\x16\xaf\xd9\x77\x8d\xb7\x96\x07\xa5\x8d\x01\xdc\x90\x7c\x5a\xb9\x43\xb4\x34\xd8\xad\xad\xad\xec\xbb\xdf\xfd\xae\xfd\xce\x77\xbe\x43\xd3\xf2\x37\x75\x6c\x71\x9f\xb3\xe5\x9d\x12\xb4\xf8\x13\x77\x81\xda\x9b\xaf\x19\x7b\x39\xa4\xc6\x0f\xf5\x19\x14\xba\xd9\xb6\x36\xb3\xce\x66\x59\xe8\x1f\x36\x36\x36\xec\x0f\x7e\xf0\x03\xa9\xcc\x52\xd0\xfc\x40\xac\x2f\x86\x9e\xf9\x90\xd2\xc6\x5c\x86\x98\xbd\xd3\x74\xaf\x8c\xe3\x27\xe7\x6a\xc2\xc5\x68\xb4\xfb\x50\xa5\xd6\xe2\x8c\x31\x98\x9d\x9d\xcd\x58\x5c\x09\x5a\x00\xe4\x9d\x61\x36\xbb\xba\x97\xaf\x2d\xef\xe7\xe7\x9a\x23\xb3\xec\xe9\xca\x73\x59\x8a\x8d\x29\xf4\x84\xfe\x1a\x80\x20\xbc\x4b\x20\x31\xb1\xd1\xb6\x02\x1b\x5a\xa8\xbf\xbd\x24\xc4\x15\x11\x13\xe7\xc1\x28\x33\x33\x3b\x9d\xe1\xad\xeb\xcb\xbd\xf5\xdd\xf6\x68\xd3\x1a\x74\x1d\x5c\xd7\xc0\xf8\xc3\xe6\xfa\xe4\x83\x60\xf4\x58\x67\x6b\x8c\x41\xb7\xdb\xc5\x68\x34\x4a\x69\x3f\xff\x2c\xa8\x10\x42\xfa\x14\x67\x44\x9f\x49\xca\x9a\xe2\x68\x42\xe0\x37\x54\x26\xc9\xe0\x6b\x69\x52\x9d\xad\x24\x83\x14\x27\x75\x6a\x5e\x06\x1f\x17\xe2\xc3\xe3\x42\xf2\x21\x40\x13\x6a\xc7\x98\x41\xd7\x40\xa9\x44\x9f\xc2\x87\xcb\xce\xd3\x4a\xcf\x63\x4e\x29\xa5\x1c\x9a\xbe\x86\x40\x10\x2f\x6f\xa8\x2f\xc4\xec\x59\x08\x10\x6a\xd7\x1c\xd4\x6a\x65\x4a\xa9\xdb\x14\xc7\x9d\x2a\x57\xc8\x8e\xc7\x9c\xa5\xc4\x83\xa6\xd3\xe2\x79\x3a\x2d\x5e\x93\x4b\xd2\x99\x89\xe0\x9c\xb3\x8f\x1e\x3d\xca\xbe\xff\xfd\xef\xdb\x6f\x7d\xeb\x5b\xc8\xb2\xac\xe4\x53\x80\x05\x9f\x7e\xe8\xb7\x29\xa0\x5a\x52\xca\x51\x9d\xff\x52\xce\xb6\x90\xd5\x81\xcc\x4d\x1e\xad\x61\xc9\x5f\x6d\xd9\x87\xce\xbe\xf8\x38\x54\x83\x54\xff\xe5\xe7\xb2\x3c\xb7\x6f\xdf\xb6\xaf\xbe\xfa\x2a\xba\xdd\x6e\x48\x1f\x7d\x90\xfa\x11\xaf\xfb\xd4\xbe\xce\x9f\xa7\xb4\x59\xac\x1f\xc5\xec\xb6\xa8\x27\x29\x85\xa6\xbf\xd2\x73\xfe\x8c\xdf\x6b\xc6\xa2\xfc\x5d\x5a\x5a\xca\xbe\xfc\xe5\x2f\x97\x5f\xdb\x44\xa5\x10\x19\xb9\x6e\xcd\x0c\xb2\xf9\xc3\x7b\xad\x33\x73\xfd\xc6\x59\x14\x87\xfe\x00\x1e\xaf\xb8\x1a\x70\x70\x70\xe5\x87\x16\xab\xcd\xbb\xd5\xa9\x73\xf4\x43\x8c\x7c\x06\x86\x9d\x4d\x57\xc6\xd7\xf2\x63\x61\x22\x2e\x81\xc8\xc1\x61\x94\x61\x78\x7b\xb1\xbf\x7e\x7f\xbe\x7f\x7b\x98\xb9\x7d\x07\xc7\x3f\x57\x4e\x37\x65\x95\xc8\xdd\x18\x83\x57\x5f\x7d\xd5\x6e\x6e\x6e\x02\x93\xce\x96\x5f\x6b\xed\xf7\x38\x81\x02\x14\x60\x52\x07\x42\x8a\x1e\xa2\xa7\x69\x68\xe7\xe2\xf9\x70\x70\xa1\x75\x16\x20\x5e\xee\x58\x19\x2c\x74\x5e\x9a\x83\x8f\xe5\xa7\x19\x55\xa9\x9e\x38\x4f\x2e\xa7\x06\xb2\x24\x00\x16\x93\x2b\xd4\x4f\xa5\x36\x8f\xf1\x09\xd1\x00\x7a\xbb\x83\x5d\xc7\x8c\x6a\xac\x9c\xa1\x72\x71\x1e\x21\x3d\x0e\xf1\x4b\xcd\x53\xab\x3f\xea\xd4\xa6\xe5\xcb\xe3\x63\xc0\x50\x0b\x29\x36\x22\x0a\x08\x58\x88\x01\xd7\xc7\xe5\xe1\x65\xd1\xfa\x8c\x54\x97\x13\x75\xef\x9c\xb3\x0f\x1e\x3c\xb0\xff\xf2\x2f\xff\xe2\x41\x00\x4d\x4b\x97\x68\xf8\x06\x5a\xfe\xca\xf2\x2e\xfb\xdb\x36\xc6\x6c\x03\xa0\x7f\x9c\x66\x9f\xfc\x96\x6f\x8f\x92\x37\x87\xc4\xe5\xa1\xeb\xd7\xaf\xdb\xff\xfa\xaf\xff\xf2\x67\xb5\x48\xe5\xe3\x81\x97\x8b\x87\x8c\xfd\xc5\x74\x2c\xa4\x5f\xb1\x3c\x35\xbb\x2f\xf5\xc1\xa0\x9e\xd0\x8f\x2c\x72\xe6\x14\x0d\xf1\xf8\x14\xc3\xa5\xc5\x4d\x8c\x80\x5a\xad\x16\x8e\x1f\x3f\x9e\x01\x80\xb0\xaf\x25\x07\x90\xe7\x23\xd3\x5a\xea\xe6\xab\x2b\xfb\xf9\xd9\xf6\xd0\xac\x55\x18\x60\x3c\x8d\x31\xf1\x66\x8f\x31\x04\x6b\x94\x27\xb5\xd4\x53\x99\xc9\x49\x10\xfa\x52\x12\xbd\x4f\xda\xb1\xeb\xf3\xa2\x6f\x37\x11\x32\xba\xf4\x54\xbc\xc2\x6d\x77\x5b\xc3\x7b\xd7\x97\xbb\xeb\xbb\xad\xd1\x96\x35\xb5\xfd\x2c\xe5\x7a\x67\x31\xe3\x52\x3b\x6c\x08\x00\xee\xdc\xb9\x83\x5e\xaf\xa7\x39\x72\x1f\x42\x23\x96\xd4\x34\x3c\x3e\x36\xaa\x09\xc9\x13\x52\x48\x8e\xbe\x25\x24\x3e\xcd\xf3\x50\x3e\x5a\x5c\x68\x34\x11\x03\x4c\x34\x68\x20\x8b\x1b\x08\x4e\x17\x72\xfe\xa1\x76\x8c\xc9\xc0\x47\x39\x52\xda\x94\xbc\x35\x40\xaa\xf1\xe1\x21\x45\xd7\x78\x9d\x70\x40\xa6\x95\x25\x04\x72\xb8\x0c\x1a\x78\xe1\x3a\x18\x72\x9c\x52\x7e\x52\xfd\x85\x40\x49\x48\xce\x98\x2e\xc7\xea\x2e\xa4\x23\x52\x1d\x6b\x7d\x8b\xa7\x8d\x85\x94\x3e\xa8\xb5\x63\x4a\x99\xb9\x3c\x9a\x5e\xd3\xa0\xb6\xe7\x8d\x1b\x37\xec\x6b\xaf\xbd\x96\x7d\xee\x73\x9f\xb3\x0b\x0b\x0b\xf4\x9c\x97\xd2\xa1\x17\x71\x19\xaa\xfd\x30\x19\xc6\x4b\x45\x19\x50\xce\xb6\x50\xf9\xc4\x81\x90\x7f\xcd\x1a\x00\x5f\x8e\xaa\x7d\xba\xa5\x88\xf3\xfb\x6c\x70\xe9\xd2\x25\x7b\xf3\xe6\x4d\x3c\x7a\xf4\x08\x1b\x1b\x1b\xa1\xba\x0a\xb5\x21\x0f\xbc\x2e\xb5\x81\x50\x2c\x5d\x6a\x88\xf9\x14\xce\x9f\xa7\x2b\x65\x92\x96\x8a\xa4\xcc\x34\x43\x12\x53\x6e\xad\x73\x73\xbe\xf4\xcc\x16\x4f\x57\x03\x2f\x9d\x41\x36\x7b\x68\xbf\x79\x6c\xb1\x9b\x9f\x1d\x9f\xdd\xe2\xcf\x6b\x29\xce\x4e\xd1\x4e\xb7\x2d\xae\x4c\xb1\x76\x43\x97\x8d\x26\xde\x28\x22\x3c\xd4\xa5\x22\xbe\xd1\xd7\xbf\x3a\x4d\x96\xaa\x26\xd2\x8a\xfb\x5b\x1c\x86\x99\xeb\xdf\x9f\x1f\x5c\xbe\x3b\xdf\xbf\x39\x6c\xb8\x7d\x98\xf2\x84\xdc\xda\x5a\x27\x53\x70\x6b\x8c\xb1\xbf\xfc\xe5\x2f\x71\x70\x70\xe0\x99\xc5\x9c\x44\x8a\x21\xa1\xf4\x92\x83\xa0\x41\x72\x70\x56\xa0\xd7\x14\x5c\x73\xa8\x52\x90\x40\xb2\x64\x6c\x39\xa8\xe2\xd7\x9a\x53\xe6\x8e\x38\x05\xa0\x6b\x32\x84\xd2\x6b\xba\xcf\x41\x0b\xe7\xcd\xf3\x8c\x39\x79\x1f\xa8\xe1\x95\xd2\x86\xc0\xa5\x14\x62\x06\x86\xeb\x5a\xc8\xc1\x70\x7e\x9a\x1d\x91\xda\x4b\xe2\x23\x95\x41\xba\xd7\x00\x49\xac\xcd\x52\xf4\x55\xe3\x2f\xd5\xbf\xd4\x2f\x53\x78\x72\xb9\xa4\xb4\x5c\xc7\x68\x5c\x88\x37\x97\x73\x1a\xe7\x17\xeb\xc3\x94\xbf\x0a\x20\x12\x78\xf8\x74\x5a\x3f\x89\xe9\x9c\x2a\xd7\xe5\xcb\x97\x6d\x9e\xe7\xd9\xcc\xcc\x8c\x3d\x77\xee\x1c\x8e\x1c\x39\x42\x7d\x93\x25\x83\x69\x9f\x26\xc3\xd8\x36\x97\xf1\xc5\xa0\x1b\xe4\x9e\x9e\x0d\x03\xa0\xb6\xe4\x63\x59\x3c\x05\x33\x94\x16\xeb\xeb\xeb\xf6\xad\xb7\xde\xf2\x80\x85\xca\xa1\xb5\xbf\x06\xe4\x34\xb0\x58\xca\x1c\x79\xe6\x43\xcc\x36\xd2\x34\x9c\x56\xea\xff\x9c\xb7\xc4\xab\xa6\x93\xa9\x1f\x59\x8c\x09\xac\x29\x47\x4c\x81\xec\xc2\xc2\x42\xf6\xd4\x53\x4f\x01\x28\x67\x29\x26\xde\x26\x32\x0e\xad\xb9\x7e\xb6\x7c\x68\x3f\x3f\x33\x33\xc8\x8e\xfb\x6f\x43\x4c\x6c\x2c\x91\x36\xab\x40\x3f\xca\xbf\x8c\x29\x36\xc5\x18\x69\x0a\x86\x84\xda\x57\x3f\x39\x8f\xd0\x5b\xd7\x64\x16\xa7\x9c\xd1\x31\xb0\x07\x2d\xbb\x79\x7b\xa9\x77\x79\xa7\x33\xda\x74\xd5\x86\x5c\x0e\x5e\xfc\xeb\x73\xb5\xd9\x96\xb7\xdf\x7e\x1b\xbd\x5e\x2f\x90\x69\xd0\x50\x4a\xc6\x34\xe6\x3c\xf8\xb5\x94\x1e\xc2\xb5\x94\x56\x32\xf2\x9a\x22\x4b\xf4\xda\x33\x89\x47\x6a\x1e\x92\xac\xb1\xce\xab\xc9\x97\x5a\x56\x40\x2e\x97\xe6\x28\x35\xb9\x35\x7e\xdc\x79\x69\x32\x4a\x65\x8a\x95\x23\x04\xf0\x62\x6d\xc5\xe9\xa4\xf6\xa5\xfc\x43\x4e\x58\xaa\x3b\x49\x5e\x4e\xab\xf1\xa7\x74\x52\x3d\x6a\xbc\x25\xfe\x35\xe7\x04\xbd\x9d\x42\x36\x38\x55\x37\xb4\xe7\x3c\x84\xfa\x9d\x06\x82\xa5\x3a\x0d\xe5\x2d\xa5\xd3\xda\x3e\x24\x9f\x04\x82\x43\x6d\x2a\xd1\x84\xca\x45\x9f\xfb\x4f\xa5\x64\xbb\xbb\xbb\x58\x5b\x5b\xb3\xab\xab\xab\x38\x76\xec\x18\x05\x1f\x14\xa4\xd8\xf1\x41\xa2\x63\xb0\x42\x40\x4b\x59\x6e\x7a\x90\x6a\xb1\x2f\xb1\x9c\x41\x61\x67\xc5\x50\x59\xca\xe7\x97\x2e\x5d\xb2\xbd\x5e\x0f\x17\x2f\x5e\xc4\x83\x07\x0f\x52\xfb\xad\x54\x67\x20\xf7\x92\x7e\x68\xc0\x42\x8a\x4b\xb1\x5f\x80\x2c\x03\x94\x38\xce\x27\x64\x6b\x01\x54\x47\xfe\xf3\x20\x29\x87\x96\xa1\x16\xc7\xf9\x89\xfc\x57\x56\x56\xf0\x89\x4f\x7c\x22\x73\xce\x95\x1f\x54\xe4\x4b\x45\x0d\x6b\x5a\x8b\xdd\x7c\x75\xf9\x20\x3f\xdd\x1a\x65\x2b\xd5\xe9\xb5\xd5\x29\xb9\xa6\xfc\x6f\x1c\xb4\xe3\xff\x2b\x5c\xe3\xaa\xe3\xff\xfd\x2b\x49\xd2\xfb\xd1\x84\x61\xa5\x88\x7e\xb3\xad\x76\xb0\x8b\xff\x50\x45\x9d\x5f\x45\x3a\x9e\x6d\x79\x38\x33\xb8\x75\x67\xa1\x7f\x6d\xd8\x70\xe3\xc3\xe6\xc6\xe7\xb6\x94\xef\xf7\xa3\xda\xe5\x4e\x95\xdc\xae\xaf\xaf\xfb\x53\x12\x43\xf5\x1e\x6a\x27\x4d\x91\x42\x86\x47\x33\x98\x21\x84\x1e\xd3\x0b\x4e\x1f\x32\x4a\xd3\xe4\x1d\xa2\x4d\x95\x87\xeb\x7c\x0c\x34\x68\x0e\x34\xe4\xe0\x34\xd9\x34\x87\x19\x73\x14\x9a\x6c\xa5\xc1\x85\xde\x36\x21\x63\xc4\x9d\x15\x0f\x21\x47\x22\xf1\xa0\x72\xa4\x02\x92\x90\x6c\x9c\x26\xc5\xa9\x72\xd9\x38\x4d\x8a\x83\xd4\xc2\xb4\xc6\x9c\xc6\x6b\x0e\x87\xf7\x5d\xad\x2f\xc7\xfa\xb8\xe6\x1c\xb8\x9c\x34\x68\x7c\x63\xd7\xa9\x7a\xaf\x81\xc2\x90\xb3\x0e\xf1\x7f\x1c\xba\xb2\x8c\xef\xbf\xff\xbe\x7d\xff\xfd\xf7\xb3\x53\xa7\x4e\xe1\x23\x1f\xf9\x88\x9d\x9d\x9d\xf5\x5b\x19\xca\x3e\xe0\x07\xd9\x1e\x88\x90\xa5\xa2\x89\x40\x5e\xaf\x2e\xf3\xf6\x40\xc6\xcb\x43\x40\x4e\x79\x26\xd7\xeb\xaf\xbf\x0e\x76\x1a\x7a\x8a\x4e\x87\xea\x3e\xd4\x07\xa8\x9d\x08\xd9\x33\x8d\x57\x08\xf8\x4b\xf2\x69\xf9\xa7\xd0\x22\xf4\x3a\xb4\x64\x54\xa7\x62\xae\xd0\x88\xc6\x9a\xed\xc8\xce\x8c\x31\xfe\xf5\xb2\xbc\x33\xcc\x66\x97\xba\xf9\xb1\xf9\x7e\xe3\x78\xe6\x4c\xa7\x5a\xce\x29\x1a\x1b\xc2\x1b\xcd\xda\x0c\x4c\xb9\xd7\x84\x6d\x38\x29\x7e\xf9\x77\x89\x6a\xdf\x2c\x2a\x66\x6e\xaa\x59\x93\xea\xbd\xe9\xda\xf1\xfd\x13\xf7\x13\x98\xc6\x76\x73\xbb\x7d\x6f\xbe\x7f\x65\x73\x66\xf8\x00\x93\xdf\xa2\xf0\xa7\xe3\x0e\x8d\x31\xb5\x57\xa0\x9d\x73\xf8\xe1\x0f\x7f\xa8\x19\x16\x0d\x6d\xf3\x10\x73\x98\xf4\x5e\x6b\xef\x50\x47\x88\x39\x66\x89\x3e\x34\x02\xf3\x34\x92\x3e\x52\x3a\xad\x2c\xda\x28\x2e\xa5\x63\xc5\xc0\x4f\xc8\x71\x48\xa3\x08\xc9\x61\x85\xda\x2e\x56\xa6\x98\x31\x92\xca\x44\x81\x4c\xc8\xc8\x68\x86\x52\xca\x33\x34\x1a\x8b\xd5\x9b\x44\x1b\x2b\x5f\x08\x30\x73\xfe\x9a\x2d\xd3\xe4\xd1\xf2\x9e\x46\xa6\x94\xf6\x4c\xd1\xc1\x50\x3d\x85\x68\x24\x9e\x9a\xae\xc5\xf4\x94\x07\xad\x6c\x31\x70\x28\xf5\x8d\xd4\x76\xd7\x1c\xaa\x26\xbf\x24\x4f\xcc\xbe\xd4\xf2\xbe\x7e\xfd\x7a\x76\xfd\xfa\x75\xbb\xba\xba\x9a\xbd\xfc\xf2\xcb\x65\xda\x27\x9e\x78\xc2\x2f\x1d\x79\x9b\x9c\xd1\xd9\x70\xf5\x63\xbd\x44\x86\xea\xd3\x2f\x0e\xbd\x5e\xcf\xbf\x64\x01\x6b\x2d\x7e\xf8\xc3\x1f\x6a\xb2\xd2\x32\x85\x40\xb6\x46\xab\xd1\xa7\xd4\x51\x48\xe7\x42\xf6\x40\x93\x25\xb5\x9f\x4b\x21\xa3\x1f\x59\xd4\x84\xe6\xca\xa6\xd1\x69\x05\x90\xf8\x65\x00\xd0\x6a\xb5\xb2\xb9\xb9\x39\x00\x65\x43\x66\x40\xf5\x6d\x22\x53\x1c\xf1\x3f\xdb\xcf\xe6\x97\xba\xf9\x89\xce\x20\x3b\x66\x80\x6c\x62\x43\x6d\xf1\x3b\x81\x53\x38\x91\x70\x10\x1d\x9f\xa9\xe1\x9b\x65\x6a\x13\x2a\x6c\x76\xc5\x50\x02\x9e\x15\x51\x5e\xe3\xdf\xcf\x76\x06\xce\x00\xa3\xcc\xf5\xb7\x3b\xc3\x3b\x77\x17\xfb\x57\x0e\x9a\xa3\x5d\x3f\xd3\x82\xfa\x77\x89\x6a\x87\xcd\x39\xe7\xac\x73\xce\x6e\x6d\x6d\xf9\x6c\x24\x65\xa2\xf1\xfc\x5a\x4a\x97\x62\x70\x34\x47\x0c\xc4\x15\x33\x94\xaf\x64\x28\x35\xe7\x2e\xf1\xd0\xd2\x68\x46\x58\xba\x4e\xe9\x70\x34\x4d\xc8\x31\x87\xca\x40\xe9\x42\x69\x42\x69\xf9\xf3\x98\x23\x9c\xd6\xb9\x48\x74\x3c\xf0\x76\xe5\x86\x4c\x6b\xe3\x14\x27\x18\xd2\xbf\x14\xe0\x11\xca\x27\xa4\xef\x92\xa3\xd3\xf2\x88\x95\x27\x54\x76\x29\x7f\xae\xe7\x29\x7d\x32\xe4\x64\x62\xe5\xd4\xca\xa3\xdd\xc7\xd2\x85\xf2\x51\x01\xc1\xef\x40\x86\x0f\x0b\x54\x42\x4e\x7b\x42\xc6\x8d\x8d\x0d\xfb\xca\x2b\xaf\x94\xf1\xc5\xc1\x75\x25\xcd\xdc\xdc\x9c\x6d\xb5\x5a\xe5\x72\x91\x07\x24\xd2\x2f\x00\xbb\xb7\xb7\x87\x7e\xbf\x5f\xf2\xbf\x73\xe7\x0e\x7e\xf2\x93\x9f\xc4\xfa\xa4\x26\x77\xcc\x76\xa7\xd4\x39\xd5\x47\x4d\x4f\x53\xf4\x51\x8b\x8f\xf5\x5b\x1a\x1f\xc3\x10\x19\x50\x3f\x80\x4e\x25\x62\xd7\x19\x12\x99\x0b\xe9\x6a\x4e\xf0\xdc\xb9\x73\xf8\xc2\x17\xbe\xc0\xdf\x79\xcf\x80\xf2\x30\x9f\xbc\x61\xd1\x5a\x3a\xc8\x57\x97\x0e\xf2\x93\xcd\x51\xb6\x5c\x9e\x8e\x5b\x00\x0c\x8a\x47\x54\x00\x23\x08\xe8\xd8\x32\x4f\xb5\x52\x64\xaa\x7b\x32\x4b\x33\x01\x82\x40\x97\x8c\x26\x33\xa9\x21\x6e\x43\xf1\x90\x43\x3f\x77\xfb\x0f\xe6\x06\xd7\xee\xcf\x0f\xee\x16\x6f\x11\x95\xdf\x22\x02\x01\x2d\x74\x79\xc8\x18\x83\xfd\xfd\x7d\xfc\xfd\xdf\xff\xbd\x66\xc0\xa5\xf6\xe1\xca\x03\x96\x8e\x2b\x26\x84\x6b\x1e\x34\x47\x18\x92\x8b\xe7\x4b\xc3\x34\x86\x46\xe2\xa1\xe9\x61\x68\x94\xa0\x75\xaa\x14\xde\x9a\x11\xd1\x40\x57\x2a\xff\xd4\x8e\x1e\xea\x77\x92\x41\xe2\x72\xc4\x8c\x93\x26\x37\x97\x8b\xd3\xa5\x0c\x5a\x52\xf2\x95\xca\x92\xe2\x28\x43\x79\xa5\xf0\xe6\xd7\x5a\x88\xd5\x4b\x8a\x21\x0f\xb5\x41\x8a\x2c\x21\xfb\xaa\xd5\x8b\xe4\xe8\x53\xf8\x6b\xfc\x42\xfd\x52\x03\xcd\xa1\xf6\x93\xf4\x3c\x06\x6a\x43\x6d\xac\xc9\x1b\xa2\xe1\x3c\xc4\xf8\xef\x7d\xef\x7b\xb5\xf6\xfb\xc2\x17\xbe\xe0\xf7\x69\xa6\xe8\x0f\x7e\xf6\xb3\x9f\xe1\x83\x0f\x3e\x88\xe9\x6c\x0a\x08\xe3\xf1\x29\x7d\x30\xc6\x23\xd5\x3e\x69\x32\xa5\xb4\xad\x94\x36\x34\xc0\x9a\xd0\x35\x6d\x8f\x4b\x48\xf0\x14\x25\x4a\x49\x67\x81\xf2\xa0\x1e\xba\x21\x17\x00\x32\x7f\xe8\x4f\x6b\x94\x75\x96\xbb\xf9\xf1\x85\x5e\xe3\x64\xc3\x99\x8e\x07\x08\xf4\x75\x67\xc3\x90\x43\x09\x5a\x1c\x8b\x20\x81\x2e\x33\x79\x12\x3a\x4b\x53\x9b\x89\x51\xf7\xce\xe8\xfc\x27\x5f\xb3\x1e\xdf\x8d\x32\xd7\xdf\x69\x0f\x37\xee\x2e\xf4\xaf\x6c\x77\x46\x5b\xa8\x3e\xa6\x35\x71\x4a\x2e\x3f\xc1\xd1\xd7\x0d\xc2\x8a\x20\x29\x72\x0c\x48\x82\xc4\x69\x3c\x38\x4d\x88\x97\x24\x97\x06\x24\x62\xce\x52\x92\x43\x53\xf2\xd8\xc8\x4e\x33\x66\xa9\xa3\x43\x49\x6e\x1a\x27\xf1\x8c\x95\xe5\x71\x68\x24\x30\x16\x33\x74\x31\x83\xc0\xdb\x35\x24\x4f\xa8\xbe\x53\xdb\xe0\xc3\x18\xc8\x54\x83\xfe\xb8\x86\x9c\x87\x54\xbd\x9c\x26\xc4\xfa\xb3\x7f\x06\xe1\xb9\x54\x8f\x29\xfa\xce\xe9\x3e\x4c\xfd\xa4\xfa\x8d\xd8\xf3\x50\x9f\x9b\x86\xcf\xb4\x32\x84\xc2\x54\x80\xe9\xb5\xd7\x5e\xb3\xaf\xbd\xf6\x5a\x90\x86\xc5\x6b\x21\x05\xac\x85\xc2\x34\x36\xf4\xc3\x86\x14\x20\x15\x2a\x3f\xd7\xdb\x14\x7b\x35\xc1\x84\xfe\x4a\xd7\x50\xae\x33\xf2\x97\x5a\x21\xb5\x3c\xc9\xc6\xa5\x0c\x63\x20\x93\xa1\x3a\xbf\xa5\x35\xd7\x6f\xcc\x2f\x1f\xe4\x67\x66\x06\xd9\x1a\x93\xa1\x06\x55\xe8\xa1\x71\x25\x18\x31\xf2\x4c\x49\x8d\x06\x75\xb0\xe2\xd8\x73\x1e\x38\x28\x8a\xd2\xb1\xf8\x7e\xc3\xed\x6f\xcc\x0d\xae\xdc\x5d\x18\xdc\xc6\xe4\x17\x42\x6b\xc7\xfa\xd3\xbd\x2d\x1b\x1b\x1b\xfe\xbb\x14\xdc\xd1\xf0\x76\x82\x70\x2f\x81\x12\xcd\x41\x68\xed\x4c\x79\x69\xc6\x46\x73\xd8\x9c\x26\xc5\x69\x4b\xf9\x52\x39\x63\xe0\x4d\xd2\x5f\x1a\x9f\xb1\x78\xa9\x2c\x5c\x1e\x9e\x97\x56\x5f\xf4\x79\x48\x4e\x2e\x17\x4f\x1b\x0a\x21\xe7\x2f\xc9\x23\xf5\x53\x7e\xad\xb5\x91\x96\x57\x08\x64\xa4\x18\xb6\x58\x98\xd6\x80\x4b\xed\x1a\xa3\x97\xae\x25\x39\x68\xfd\x49\xc0\x71\x5a\xde\xda\x20\x21\x45\x0f\x62\x65\x93\x80\xbd\x24\x47\x0c\xf4\x69\x00\x39\x35\x70\xfe\x92\xdf\xa0\x74\x1a\x7d\x8c\xaf\x16\xa4\x3c\xe8\xb3\x69\x75\x34\x55\x5f\x24\x3d\xd1\x6c\x17\x6f\x9b\x58\xbb\x6a\x6d\xe9\x83\x66\x5b\x52\x75\x26\xc4\x9b\xe6\x11\xf2\x3f\xb1\xb4\xd3\xda\x80\x89\x20\x29\x0e\x57\x22\x49\xb0\x69\x50\xb1\x24\x48\xf6\xdc\x73\xcf\xe1\xa5\x97\x5e\x02\x30\x5e\xb6\x21\xe7\xb8\xe4\xce\xb9\xdc\x39\x97\x65\x16\xf9\xa1\x83\x7c\x75\xf1\x20\x3f\x9d\x8f\xcc\xa2\xdf\x3b\x32\x3e\x15\xd7\xd5\xc0\x43\x6d\xd2\xc3\xd1\x4b\x27\xfe\x52\x60\x51\x82\x15\x37\x7e\xd3\xc8\x29\x68\x84\x46\xd7\xc0\x8e\x86\x5e\x98\x5c\x23\xe3\x86\xbb\xed\xd1\xc6\xfd\xf9\xc1\x8d\x87\x9d\xc1\x26\xc8\x86\x5c\xf2\x57\x3b\x70\x0e\xa4\x7e\xad\xb5\x31\x00\x02\xc8\xce\x97\x8f\x88\xe9\xaf\x46\xe7\xe3\x43\xce\x97\x77\x50\x09\x40\x49\xc6\x2a\x64\xf8\x39\x20\x0a\x22\x6f\x21\x2f\xda\x49\x35\x67\xcb\xff\x38\x7f\x0d\xa8\xa4\x00\x81\x50\x7d\xc4\x40\x0c\xe7\x4d\xef\x79\x19\x38\x7f\xa9\xee\x39\x6f\xad\x0c\x52\x48\xa1\x0b\x01\xe6\x98\x81\x8d\x3d\x9b\x86\x36\x05\x48\xc4\x68\x63\xba\x25\xd9\xc6\x90\x5c\x12\xef\x18\x10\xd0\x9c\x5a\x88\xb7\x44\x2b\xb5\xbb\x96\xa7\x96\x4f\x0a\xe8\x4e\x09\x92\x5c\x9a\x5d\x49\x05\x56\x12\xfd\x34\x65\x48\xe1\x2d\xe5\xc3\xe5\xd7\xfa\x84\xa4\x27\x29\x03\x91\x69\xca\x93\x22\x7f\xac\xdd\x69\xdc\xe3\xf8\x71\xe9\x5a\xe2\x1d\x8b\x4b\x0d\xa5\x1d\x4a\x41\x56\x92\x92\xa5\x8e\xae\xd4\xd0\x6a\xb5\xd0\xe9\x74\x32\xa0\xfa\xc6\x03\x05\x2f\xc6\x98\xbc\x69\x4d\xe7\xd0\x7e\xf3\xe4\x7c\xbf\x71\x2c\x73\xa6\x03\x8c\x67\x68\x0c\x4c\xed\xed\x1e\x53\x1e\xd3\x4f\xcf\xca\x2d\x9e\x95\xaf\x4b\x93\x5f\x0e\x34\xca\xfb\xf1\x46\x17\xff\x86\x34\xa7\x33\x13\xf4\x45\xbc\xc0\x52\x0a\x83\x86\xdb\xdf\x9a\x19\xde\xd9\x98\x1b\xdc\xb2\x59\x1d\xb0\x14\x60\x45\x3c\xe6\xf9\xee\xdd\xbb\xf6\x47\x3f\xfa\x91\x67\x93\xd2\x01\x7c\x88\x8d\x22\x53\xe8\x42\x60\x24\x04\x68\xfc\x75\x4c\xc1\x35\xa0\x22\xd1\x84\xe4\x7d\x1c\x83\x2a\x01\x29\x89\x46\xd3\xf3\x90\x03\xe1\xa3\x9d\x18\xa8\x0b\x05\xcd\xc0\x6b\xc6\x2e\x06\xc2\x78\x1b\x86\x40\x52\x4c\x87\x42\x6d\x13\x03\xb6\x29\x79\x70\xda\xd0\xb3\x14\x60\x4b\xef\x53\xaf\x53\xf2\xa6\xf4\xa9\xe5\xd5\xc0\x78\x4a\xbe\xd3\x02\xce\x14\x60\x93\xc2\x97\xeb\x73\x0c\xd4\x6a\x0e\x9e\xf3\xa4\x72\xc4\xfa\xa3\x0f\xdc\xb6\xa4\xf4\xa9\x14\xd0\xc6\x03\xd7\xe1\x14\xfb\xa7\xf5\x79\x89\x9e\x5f\xc7\x00\xcc\xe3\x0c\x2a\xf8\x20\x4d\xca\x5f\x2b\x57\x8a\x0d\xd0\x9e\x85\x78\xa7\x82\x98\x09\x7b\x25\x29\xa0\xf6\xc7\x33\x93\x94\x24\xa4\x34\x13\x9d\x95\x7e\x9b\x88\x9c\xdf\x52\x2d\x13\xf5\xc6\xcb\x44\xed\x41\xb6\x62\x60\xf2\x92\x13\x5f\xa6\x29\x5f\x61\xf6\xcb\x4e\x3a\xc8\xf0\x64\xe2\x52\x91\x02\x58\xc4\xf4\x6c\x9a\x85\xbf\x98\xc4\x83\x85\xb3\xdd\x7c\xb4\xbd\x39\x3b\xb8\xb5\x35\x33\x78\x50\x9c\x92\x5b\x82\x17\xf2\xa1\xad\xda\x29\x8a\xc5\xeb\x72\x78\xf8\xf0\x21\x20\x2b\xac\xe4\x38\x34\x60\xc9\x9d\xa9\x14\x24\x85\x97\xf2\x4a\x35\x84\xfe\x9e\x83\x93\x69\x41\xaf\x06\x08\xa4\x7c\x24\x83\xc6\xf9\x00\x93\x72\x84\x0c\x92\x64\x64\x25\x23\xce\xdb\x42\x02\xfd\x52\xfb\x48\x75\x16\x92\x5b\x32\xe2\x9a\xa1\xa0\x72\x4d\x53\xf7\xbc\xbd\x24\x43\xcc\xeb\x5a\xe3\xad\xe9\x8e\xe6\xbc\x39\x9d\x74\xcf\xe3\x35\xa7\x12\xca\x83\x87\x69\xf5\x31\x74\x2d\x81\x36\x49\x96\x98\xc3\x95\x9e\x87\xfa\xb1\xd6\x4e\x92\x4d\x4f\x01\x09\xd3\x3a\x5c\x9a\x9f\xc4\x2f\x46\x93\x0a\x14\xb9\xbc\xa1\x6b\x5e\x6f\x1a\x8f\x90\x2f\x4b\xd1\x47\x9a\x4f\x4c\x07\x43\x79\xa5\x0c\x06\x42\x3c\xb5\x10\x6a\x13\x4d\xae\x10\x8f\x0f\x13\x42\xa0\x9f\x5e\x4f\x80\x2e\xba\x39\x77\x1a\x23\x26\xc5\x73\xe3\x08\x21\x2e\x03\x60\x9f\x7a\xea\xa9\xec\xcc\x99\x33\xfc\x5d\xf7\xf2\x4d\x22\x00\xe3\x65\xa2\xfd\xe6\xea\x62\xb7\x71\xb2\x69\xcd\xe2\xf8\xbc\x38\x57\x1d\x18\x07\xb6\x8f\x84\xbe\x24\x44\xbe\x33\x34\x71\x2e\x0b\x2a\x70\x42\xf7\xc2\xf0\x8f\x2b\xf2\xd7\xa4\xf9\x59\x2c\xf4\x30\xba\x92\x07\x26\xaf\x7d\x18\x65\xae\xbf\xdb\x1e\x6d\x3c\x9c\x19\xde\x39\x68\xda\x6d\xf2\x31\x2d\xfe\x09\xf3\xda\x29\xb9\xf7\xee\xdd\xb3\xef\xbc\xf3\x0e\xad\x53\x1f\x1e\xa7\x73\x6b\x23\x64\xcd\x08\x49\xed\x29\x39\xa0\x90\x31\xa0\xf9\x48\xf9\xc5\xd2\x84\x80\xc8\x34\xce\x48\x02\x0b\x9c\xbf\x54\x3f\x29\x65\x0b\x81\x1f\x9a\x87\xe6\x54\x43\x79\x73\x39\x42\xb2\x4a\xe9\x42\xf9\xf1\xe7\xd3\x00\x30\xe9\x59\x4c\x7e\x7a\x9d\xca\x53\x2b\x07\xa7\x8d\x3d\x4f\x95\x4d\xcb\x8f\xf3\x89\xd5\xbb\xa4\x5b\x12\x7d\xa8\x3d\x62\xb2\x4a\xba\x19\x2b\x97\xc6\x3b\xa5\x1d\x53\x64\xa5\x72\xc5\xfa\x95\x94\xbf\x14\x52\x74\x25\x24\x8b\x96\x4f\xcc\xf6\x85\x74\x46\xcb\xcf\xc7\x6b\x76\x64\x9a\x3e\xad\xd5\xb7\x64\xcb\xf0\xe2\x8b\x2f\x66\x33\x33\x33\x34\x5d\xc8\x6e\x65\x6f\xbc\xf1\x06\xfd\xb8\xe4\x04\x3f\xe1\x97\xd3\xc5\xf2\x98\xc8\x53\xe0\xa5\xe5\x4d\xaf\x27\xda\x58\x7b\x1d\x9a\x33\x97\x1a\x3b\xd4\xa8\x92\xa2\x95\xe9\x8e\x1e\x3d\x8a\xb5\xb5\xb5\xb2\x72\xfd\x1b\x45\xf4\xc4\xdc\xcc\x99\xd6\xca\x7e\xf3\xf8\x5c\xbf\x71\xac\x61\xcd\xac\x99\x38\x70\xa5\x0a\xfc\x11\x7b\x13\x59\x4d\xe3\x4c\x3d\xa2\x9c\x6d\xa9\x1f\xd7\x32\xc9\x87\x6d\xa8\x09\x1c\x36\x04\x7f\xbe\x6f\xbf\xe1\xf6\x1f\xce\x0e\xef\x3d\x9c\x1d\xde\xb5\x19\xba\x06\x86\x7e\x09\xd4\xcf\xb8\x58\xa0\xf6\xbd\x0a\x6c\x6d\x6d\xe1\xfa\xf5\xeb\xb1\x0e\x4d\x43\xcc\x10\x70\x63\x17\x32\x9e\xd2\x08\x20\xd6\xe9\x43\xb2\xa5\xd2\x85\x46\x12\x31\x87\x16\xe2\x97\x32\x12\x8b\x95\x6f\x1a\xc7\x30\x4d\x1f\x99\xc6\x70\x4b\x23\x30\x29\x0d\xcd\x33\x64\xfc\x25\xf9\xe8\x7d\xcc\xe8\xa7\x3a\x16\xce\x5b\x1b\x61\x4a\x86\x31\xd5\xc9\x6b\x61\x1a\xd9\xe8\xb3\x90\x43\x0f\xd5\x87\xc6\x2f\xe6\xfc\x34\x7d\x08\xd9\x5d\xed\x59\x2c\x6f\x29\x1f\x49\xa6\x58\xbc\xf4\x7c\x9a\x3e\xfa\x38\x7a\x05\x00\x38\x74\xe8\x10\xce\x9d\x3b\xa7\x3a\xea\xf5\xf5\x75\x3c\x7a\xf4\x88\xe6\x1f\x73\x8c\x31\x5a\x1e\x42\x69\x53\x6d\x8b\x28\x7b\x20\x4f\x3b\x3b\x3b\x9b\x7d\xec\x63\x1f\xab\xa5\x39\x7f\xfe\x3c\x3a\x9d\x4e\x8d\x17\x3f\x0c\x8f\x9c\x2b\x63\x47\xa3\x11\x7a\xbd\x5e\x49\x7b\xeb\xd6\x2d\xdc\xbe\x7d\x3b\x25\x7f\x49\xde\x98\xcd\xf6\xbf\x9a\xae\x72\x1b\x1d\xd4\x35\x7a\x00\x5d\x8a\x41\x0b\x29\x5c\x8c\xbe\x26\x3c\x79\x0d\x9a\x1e\x97\xec\x81\x54\xde\x1a\x9a\xce\x52\xb7\x71\xaa\x3d\xcc\x56\x0c\x90\x4f\x7c\x10\xb1\xf8\xcf\x90\x69\x10\xe7\x0c\xca\xc3\x6c\x01\xb2\x84\x44\x3e\x0e\x50\x7b\x45\x7a\x1c\x5b\x1e\xd7\xe2\x02\xa0\x47\x38\xab\xa5\x76\x28\x9d\x1a\x0c\x9c\x71\xf6\xa0\x65\xb7\x1e\xcc\x0e\x6e\x6d\x77\x86\x5b\xc5\xc9\xb8\x5d\x7a\x3a\x2e\xfd\x3a\xa8\x3f\xe2\x7f\x63\x63\xc3\xde\xba\x75\x2b\xc4\x3c\xd6\x66\xa9\x23\xe7\x69\x0d\x9a\xa4\x7c\x21\x43\x1f\x43\xda\xb1\xb4\x60\xd7\x9a\x0c\x52\x59\x62\xb2\x6a\x41\x92\x87\xf3\xe7\xbc\xb5\x8e\x1a\x92\x2d\x16\x24\x59\x43\x0e\x92\xc6\x6b\x74\xa1\xb2\x84\x82\x54\xc6\x90\x01\x4b\x05\x55\xb1\x3c\xa5\xfc\x43\x41\xb2\x3b\x29\xa0\x87\xa7\xd3\x74\x8b\xf7\x23\x4f\x1b\xd3\xa7\x90\x9c\x1a\x7d\xc8\xf8\x4f\x9b\x47\xc8\x7e\x6b\xfd\x38\xa6\x17\x21\xba\x14\x39\x53\x06\x0b\x19\x00\x7b\xf6\xec\xd9\x6c\x76\x76\xb6\xc6\x68\x75\x75\x15\xcf\x3e\xfb\xac\x0a\x1a\x3b\x9d\x8e\xe5\xcb\xec\x7b\x7b\x7b\xb8\x7a\xf5\xea\xb4\xc0\x42\x2b\x53\x88\x8e\x3f\x97\xec\xaf\x04\x92\xc4\xfc\x57\x57\x57\xb3\xb5\xb5\x35\x00\xc0\xfc\xfc\x3c\x5e\x78\xe1\x85\x90\xbe\x65\xc0\xa4\x7f\xa2\x9f\x28\x78\xfe\xf9\xe7\xe9\x23\xbb\xba\xba\x8a\x43\x87\x0e\x61\x7b\x7b\x1b\x37\x6e\xdc\xa0\x72\x68\xbe\x20\x15\x37\xd0\x6b\xad\x0f\x4b\xf5\xa0\xa6\xcd\x19\x81\x64\x94\x34\x63\x1f\x32\x08\x92\xe0\x00\x80\x23\x47\x8e\x64\x8b\x8b\x8b\xfc\xc0\x39\xff\x9b\x15\x32\xe5\x8b\xdd\x7c\x71\xbe\xd7\x38\x99\x5b\x33\x2f\xcd\x9b\x94\xb3\x2c\xe5\x67\x81\x3c\x68\xf1\x08\xb3\x3e\x5f\x32\x71\xf6\x4a\x11\xeb\xd4\x69\x15\x0f\x64\xfc\xb6\x5f\x53\x07\x4e\xc2\x17\x9f\x1d\x1c\x4c\xb1\x36\xe5\x08\x28\x1a\x1a\xd7\xdf\x6e\x0f\xef\x3d\x9c\x1d\xde\xe9\x36\x2d\x3d\x29\xb7\x76\x6e\x8b\xaf\x2f\xaf\x5c\x37\x6e\xdc\xc0\xa5\x4b\x97\xb8\x42\xd3\x90\xe2\x68\xa4\xfb\x18\x00\xcd\x94\x78\x1a\xa7\xc9\x92\x02\x36\x38\x3f\xe9\x57\x53\x74\xc9\x69\x84\xf8\xa7\x74\x2c\x0d\x10\x49\xf2\xa4\x8e\x14\x42\x0e\x3e\xe6\xd0\xa5\x7b\x0d\xe0\x69\x3c\x24\xe0\xa5\xdd\xc7\x0c\x35\xd8\xf3\x54\xbd\xd2\xca\xc1\x79\x84\xea\x54\xfb\x95\xe4\xd0\xf4\x4e\x8b\x9b\x06\x64\x85\xf2\xa3\xfc\x43\xe0\x2a\x05\x30\x6b\x6d\x12\xd3\x4b\x2d\x8e\x86\x98\x9e\x4a\xfd\x3e\xe4\x0b\x24\xde\x92\xde\xc5\xea\x8d\x87\xd2\xe9\x9e\x39\x73\xa6\x8c\x7b\xe9\xa5\x97\xb0\xbc\xbc\x5c\xa6\x15\x0e\x2e\x05\x7f\xf6\xdc\x73\xcf\xf9\x97\x3e\x4a\xda\xcd\xcd\x4d\x4b\x06\xcb\xb8\x72\xe5\x8a\xd6\x2e\x29\x00\x5b\xea\x6f\x31\xb0\x88\xc0\xf3\x09\xba\x23\x47\x8e\x64\x73\x73\x73\x78\xf2\xc9\x27\xf1\x91\x8f\x7c\x84\x97\x33\xab\xb6\x2d\xd4\x26\x03\x26\x18\xb2\x49\x02\x4b\xe8\xac\x73\x2e\x3b\x73\xe6\x0c\x4e\x9f\x3e\x8d\x7b\xf7\xee\xd9\x3c\x1f\x43\x03\x6b\x6d\x76\xed\xda\x35\x2e\x93\x0f\xbc\xce\xb4\x72\x4a\xf5\xab\xe9\x62\x48\xe7\xcb\x74\x39\x4b\x18\x33\xba\x29\x8e\x21\xd4\x78\xd9\x27\x3e\xf1\x09\x9c\x3e\x7d\xba\xf6\x41\x45\x7f\x76\x0b\xd9\x9c\xdb\x5a\xdd\x6f\xae\x15\xcb\x44\x9d\x49\xd8\x40\x94\xd6\x54\xe7\xaf\xf8\x19\x90\x6a\x3a\x6c\x4c\x4b\x01\x4d\xf9\x81\xc6\xda\x33\x54\x20\x08\xf5\xcd\xba\xe5\xf1\x76\x6c\xf9\x48\x9a\x68\x31\x64\x43\x4d\xf9\xf6\x92\x71\xe8\xe5\x76\x7b\x73\x76\x70\x6b\xbb\x3d\xbc\x8f\xfa\x5b\x44\xb5\x4d\xb9\x7e\x6f\x8b\xd0\x21\x53\x3b\x05\x0f\x5a\xda\x90\x93\x0a\x3d\x87\x22\x03\x7f\x2e\x39\x39\x6e\x70\x29\xad\x56\x36\x89\x86\x3f\x83\xf2\x8c\xcb\x84\xc8\xf3\x10\x7f\x1e\xa7\xe5\xaf\x81\x03\x9e\x0e\x42\x3a\x29\xbf\x98\x03\xd2\x1c\x34\xbf\x96\x74\x26\xe6\x90\xb8\xf3\x12\xfb\xb3\x20\x5b\x0c\xa4\x50\xba\xd0\xf3\x94\x74\x34\x3f\x4d\xef\x38\xbf\xd4\x3e\x11\x72\xb8\xbc\x5e\x38\xbd\xc6\x2b\x56\x5e\x8d\xf7\xb4\xe5\x92\xfa\x0e\xbd\xd7\xf2\xa4\xd7\xbc\xfc\xa9\x7a\x95\x2a\x2f\x0f\x65\xfa\x66\xb3\x89\x95\x95\x15\xe4\x79\x8e\x3f\xfc\xc3\x3f\xf4\xcf\xca\x40\x8f\xd6\x67\xe9\xc5\x7c\x18\x9d\x5d\x59\x59\xc9\x0a\xbe\x00\x80\x7f\xfc\xc7\x7f\xb4\x85\x0f\xc2\xc3\x87\x0f\xe9\x71\xfc\x31\xc0\xc1\xef\x43\xe5\x0f\xd9\x4b\x51\xee\xc3\x87\x0f\x67\x79\x9e\x67\x2f\xbe\xf8\x22\x4e\x9c\x38\x41\xd3\x95\xd7\x1e\x88\x10\x00\x93\x49\xa0\xa5\xa0\x2d\xaf\xfd\xd7\xad\x8b\xbc\xe8\xc7\x22\xed\xda\xda\x5a\x59\x3f\x83\xc1\xc0\xfe\xe0\x07\x3f\xc0\xdd\xbb\x77\x63\x6d\x9d\x05\xe2\x43\xe5\xd5\x74\x25\x04\x6e\x6d\xe8\x23\x8b\xdc\x58\x49\x0d\xa6\x19\x01\xcd\x28\xd0\x8e\x55\x6b\x08\xf2\x51\xc5\x96\x71\xc8\x0f\xed\xe7\xa7\x3a\x83\x6c\xc5\x38\xe4\xe2\x4e\x15\x3e\x05\x56\xfc\x96\x00\x05\xf5\xd7\x94\xcb\x46\x23\xa0\x64\x62\xb9\x89\x6f\xe4\x75\xf5\x37\x94\x26\xd7\x0b\xfd\x8c\x8c\x99\x78\xe6\xf9\x59\x83\xe1\x5e\xcb\x6e\x6e\xcc\x0f\xee\xec\x74\x46\xdb\xa8\xf6\xb4\x94\xe0\x05\x98\x38\xde\xdf\x76\xbb\x5d\xdb\xeb\xf5\x78\x3d\x03\xb2\xf2\x80\xc5\x69\x86\x32\x66\x94\x34\x83\x2a\x19\x6c\x4d\x06\x1e\x9f\x02\x86\xb8\x1c\x3c\x0f\x7f\xaf\x39\xdd\x98\x83\x0c\xc9\xce\x81\x06\xd8\x75\x8a\x6c\x12\x8d\x36\x7a\x90\xe8\x35\x99\xa4\xb2\x73\x5e\xa1\x36\x0b\xb5\x57\x0c\xc0\xf1\x3e\x1b\x73\x40\x21\x7d\x9c\x36\x4e\xe2\x1b\x02\xb5\x1a\x9f\x10\x88\x95\xec\x14\xe7\x1d\x02\x37\xa1\xfa\xd5\xda\x2d\x24\x53\x0c\x34\x4a\xd7\x94\x56\xd3\x07\x4d\x0f\x63\xf1\xa9\xfd\x9a\xf7\x1f\xad\x2c\x51\x80\xdc\x6c\x36\xb3\x4e\xa7\x83\xd5\xd5\x55\x7c\xfd\xeb\x5f\x2f\x67\x4a\xc0\xea\x8c\x9e\xb0\x0e\x4c\xcc\x24\xd0\x60\xc9\x73\xa9\x7d\x01\xc0\x7e\xf3\x9b\xdf\x2c\xd3\xfe\xf8\xc7\x3f\xb6\x1f\x7c\xf0\x01\x06\x83\x81\x56\x1f\x5a\xfd\x84\xfa\x98\x66\x67\xd4\xfe\x38\x3f\x3f\x8f\x3f\xf8\x83\x3f\xc0\xd2\xd2\x92\x04\x58\x32\x00\x74\x9b\x45\x56\x0c\xd8\x33\x56\x0f\xb5\xd9\x17\x02\x56\x60\x26\x4f\x64\x2f\x65\xf3\x75\xe5\x9c\xb3\xcd\x66\x33\xfb\x93\x3f\xf9\x13\xfb\xdd\xef\x7e\x17\xa3\xd1\x28\xdb\xdb\xdb\xc3\xf8\x38\xb1\x5a\xd0\xfa\xb4\x54\x2f\x9a\xfe\x71\x3e\x41\x3f\x17\xfb\xc8\x62\xa8\xf3\x4a\x99\x48\x9d\x6d\x42\x28\xf6\xe1\xa9\x12\xc8\xf8\xc3\xe7\x66\x06\x8d\xce\x52\x37\x3f\xdd\x1c\x65\xf3\x06\xc8\x0d\xea\xa0\x41\xdd\x70\x54\xdb\x28\x5b\xcc\x8d\x14\xe8\xa3\xda\xe5\xc2\xbe\x64\x44\x66\x68\xc6\x4f\xc9\xec\x0e\xc7\x4b\x22\x92\xf5\xb3\x38\xd2\x06\x18\x60\x98\xb9\xee\xd6\xcc\xf0\xd6\xa3\xce\xf0\xee\xb0\xe1\xf6\x01\x74\x8b\x3d\x2e\x74\xb6\x85\x9e\xdd\x02\xe7\x1c\x7e\xf5\xab\x5f\xe1\xad\xb7\xde\x0a\x19\x0f\xcd\x88\xc7\x1c\xa6\xd6\x59\x42\x69\x25\xc3\x9b\x22\x1b\xe5\xcb\xd3\x70\x23\x2f\xc9\xa6\x39\x4f\xcd\x38\x48\x41\xeb\x00\x9a\x6e\x67\x98\x94\x8d\xcb\x29\x75\x2e\x5e\x06\xc9\xd0\xc5\x1c\x90\x26\x3b\x97\x37\xd4\xf1\x79\x3a\x29\x3e\x64\x34\xa6\x75\x38\x5a\xf9\xb8\xcc\x52\x99\xb4\xf2\xa4\x1a\x37\x1e\xa4\xf8\x69\xf8\xa4\xca\xa0\xe5\xc9\xf5\x42\x92\x49\xe3\xa9\xc9\x9e\xc2\x4f\x0a\x21\x9b\x2e\x05\x29\x2f\xcf\x67\x5a\xd9\x52\xe3\x32\x00\x36\x1b\x07\x7c\xf4\xa3\x1f\xc5\xe7\x3f\xff\x79\xcd\x51\xf3\x5f\xed\x19\x80\xd2\x1e\xdb\x02\xfc\x4c\xf8\x27\xe2\x43\x6a\x76\xe6\xcb\x5f\xfe\x72\x96\x65\x99\x5d\x5f\x5f\x87\xb5\x36\xb3\x93\x5e\x3a\xe4\x2f\x27\xca\x26\xc4\x87\xd2\x65\x7e\x89\xe6\x4f\xff\xf4\x4f\xd1\x6a\xb5\xb4\x72\x7b\x7f\x59\xbf\x87\xc9\x32\xeb\xaf\x7d\x1a\x32\x7a\x1f\xfb\xaa\x21\x00\x38\x03\xeb\x8a\xbe\xe7\x50\xce\xf4\xdb\xc2\x27\x65\x7c\x46\xe6\x3b\xdf\xf9\x0e\x9c\x73\x78\xe5\x95\x57\xec\x9d\x3b\x77\xf8\x71\x20\xd3\xd6\x43\x32\x98\x15\x78\x67\xc0\x78\xc6\x45\xcb\x98\x0b\x10\xeb\x00\xa1\x86\xaa\xdd\x53\xd0\x52\xa0\xc4\xdc\xbf\x0a\x6d\x8c\xc9\x56\xf7\x9a\x2b\xf3\xbd\xc6\xc9\x86\x35\xb3\x1e\x18\x50\x14\x41\xbf\x33\x44\x97\x6d\xe8\x72\x92\x61\xe9\xfc\xd2\x0d\x05\x18\x7e\x0f\x4a\xb5\x85\x97\xf3\xa8\x87\x89\x9d\x33\xa6\xfe\x4b\x83\x5f\x35\xea\xe5\x76\xfb\xfe\x42\xff\xd6\xce\xf8\xbb\x44\xe5\x9e\x16\xf2\xfa\xb3\x25\x7f\xbc\xde\x34\x74\x4f\x43\xa8\x5d\x1e\xd7\x01\x50\x5e\x29\x74\x29\xc6\x5d\x34\x30\x91\x34\xa9\x79\xf2\x11\x8c\xd4\x09\x62\x65\x09\x01\x25\x49\x26\x0e\x18\x25\x7e\x52\x90\x78\x4f\xdb\x3e\xbc\xbc\x12\x7d\x0c\x2c\x48\x69\x24\x30\xa9\x81\x2c\xc9\x00\xf1\x76\x96\xea\x46\x33\x4a\x29\xe0\x86\x3f\x4b\x0d\x21\xc3\x4a\xaf\xb5\x38\x4d\x9f\x80\x70\x3b\xa5\xc8\x13\xd2\xb3\x94\x41\x42\x28\x8f\x50\x5f\x0b\xf5\x07\xa9\x8d\x1e\xa7\x9c\x49\xa0\xef\xf3\x9f\xff\x3c\xce\x9f\x3f\xef\xe9\xcb\x5f\x36\xb3\xa2\xfd\x71\xba\x5a\x7e\x64\xa6\x85\xda\x59\xfe\x0d\xb8\xda\xb1\x20\x5f\xfa\xd2\x97\xf0\xa5\x2f\x7d\x29\xfb\xcd\x6f\x7e\x63\x7f\xfe\xf3\x9f\x07\x65\x7f\x8c\xa0\xda\x8d\xb9\xb9\x39\xfc\xc5\x5f\xfc\x05\xa7\x93\xca\x9c\x7b\xbf\x49\xe3\x8f\xed\x34\xe7\x4f\x6d\x75\x56\x0f\xed\x37\x57\x66\x06\xd9\x72\x6e\xcd\x6c\x66\xd1\x32\x30\x18\x66\xae\xdb\xcb\xed\xf6\x41\x73\xb4\xb5\x3d\x63\xb7\xee\x2c\xf4\xb6\xee\xcf\xf7\xf7\x7b\x8d\xf2\xa5\x10\xff\x9b\x93\x6b\x8b\xb1\xbf\x02\x30\xae\xcb\x6f\x7c\xe3\x1b\xf8\xd7\x7f\xfd\x57\x5c\xbd\x7a\x35\xb5\xbc\x92\x1e\xf1\x67\xa1\x6b\xd1\xae\xe5\xc2\x83\x94\x91\x86\x64\xc8\xf8\xf3\x09\x9e\x7f\xf4\x47\x7f\x94\x9d\x3c\x79\x12\x40\x09\x20\x4a\xd4\x48\x0f\x9f\x3b\xba\xd3\x3a\x3e\x33\x68\xac\x35\x1c\xc6\xa7\xe5\x16\x4c\xf8\x4c\x4b\xfd\x6a\xf2\xb5\x9f\x09\x40\x21\xee\x4b\xa9\xe2\xab\xaf\x41\x07\x3e\xfb\xec\x0f\xbf\x33\xfc\xc9\xe4\x87\x1e\x47\xc6\x0d\xf7\x5a\xa3\x8d\x07\xb3\x83\x7b\xfb\xcd\xd1\x36\x8a\xaf\x89\x53\xe6\x2c\x00\x00\x20\x00\x49\x44\x41\x54\x3f\x9b\xf1\x07\x15\xe9\x9b\x44\xb5\xe9\xcc\x57\x5f\x7d\xd5\x5e\xba\x74\x09\x88\x1b\xdc\x58\xd0\x0c\x72\x6c\x14\xc5\xe3\xb4\xce\xc6\xf9\x7f\x58\x00\x1c\x92\x29\x05\x14\x4f\xe3\x10\x63\xf4\x21\x39\xe9\xbd\xe4\xbc\x25\xfa\xc7\xe1\xed\xc3\x34\xbc\x63\x21\xa5\x6e\x52\xe5\x4b\xad\xbf\x98\x23\xd4\x6c\x4e\xcc\xa9\xa6\x3a\x6f\x89\x77\xea\x8c\x0b\x97\x63\x5a\x5b\x19\x0b\xd3\x80\x8f\x0f\x33\x88\x88\xa5\x0d\x8d\x72\xa5\xb8\xd4\x81\x0f\xa7\xad\x5d\x7f\xe5\x2b\x5f\xc1\xb9\x73\xe7\x7c\xbc\xff\xf5\x03\x5a\xa0\xf2\x51\x19\xbd\x36\x0e\xf9\x5c\xaf\x91\xaf\xee\x35\x67\x0f\xed\x37\x17\xe7\xfb\x8d\xf9\xf6\xc8\x74\x1c\x80\x7e\xe6\xba\xfd\xdc\xf6\x7b\x4d\xdb\xdd\x69\x8d\xf6\x1f\xcc\x0d\xf6\x77\x3a\xc3\xfe\x28\x03\x9d\x55\xf0\x4e\xd9\xf7\x2b\x3f\xcb\x50\x02\x9a\xe7\x9e\x7b\x0e\xad\x56\x2b\x7b\xf5\xd5\x57\x3f\x6c\x1b\xc7\xf4\x24\x3b\x7c\xf8\x30\xbe\xf9\xcd\x6f\x6a\xf5\x50\x2b\xbb\x73\x2e\xcf\x60\xf2\x99\x7e\xd6\x3a\xf5\xb0\xb3\x72\xea\xff\x63\xed\x5d\x9f\xe4\x38\xae\x3b\xd1\xdf\xc9\xaa\xae\xae\xee\xe9\x79\x62\x30\x18\x0c\xf1\x18\x42\x20\x08\x42\x34\x04\x90\x26\xf8\x16\x4d\x8a\x21\xca\x96\xd6\x8f\x6b\xdd\xd0\xd2\xe1\xeb\x1b\xe1\x7b\x1d\xf7\xaf\xda\x2f\x1b\xb1\x5f\x1c\xe1\x0f\x1b\x61\x47\x78\xd7\xda\xf0\x5d\x5f\x59\x72\x48\xa6\x4c\x51\x12\x41\x52\x14\x4d\x42\x20\x08\x0c\x06\x83\x41\x4f\x4f\x4f\x77\x75\x55\xe6\xfd\x50\x95\x59\x27\xb3\xb3\x1e\x43\x6d\x22\x06\x5d\x95\x95\xaf\xca\x3a\x79\xce\xef\x9c\x3c\x99\xb9\x1f\x6f\x2f\x4f\x82\x4b\xfd\x24\xf8\x4a\x37\x15\xe7\x42\x49\x6b\x42\x61\x40\x0a\x11\xca\x05\x38\x89\x24\x4c\x24\xa9\xb1\x14\x18\x26\xc1\xc2\xdd\x71\x27\xbb\xf9\x60\x61\xf6\xc1\xad\xd5\xc9\xa7\x77\x97\x92\xfd\xc3\x28\x9b\x28\x42\x8a\x1c\x18\xe9\x73\xf3\x04\xeb\x27\x01\x00\xdf\xf8\xc6\x37\xa4\x94\x52\xfc\xf4\xa7\x3f\xc5\x7b\xef\xbd\xd7\xf8\x8d\xe1\x1f\x3f\x6d\xc6\x3f\x3c\xf7\xc6\xe2\xd2\x86\x99\xbb\xa1\x89\xb0\xbd\x65\x86\x61\x68\x1d\xa6\xe8\x5c\x6b\x14\x19\xad\x8d\x3b\xe7\xa3\x8c\x56\x08\x10\x66\x63\x38\xb2\xad\x21\x76\xb0\x41\x83\x6f\xc5\xcf\x5c\x0e\xe7\x54\xc6\xd2\xe7\x25\xbf\xd1\x76\x1a\x37\x38\xae\x32\xfc\xc9\x5c\x4c\x26\x54\xb2\xdf\x4b\xef\x1e\x46\xd9\x03\x49\xe5\xb9\x44\xc5\x54\x91\x77\x7b\x7f\x00\xc8\xb2\x8c\x9f\x4b\xe4\x32\x2f\xa0\x9a\x28\xdc\xb8\x36\xe8\xb6\x2a\x5d\x1d\xc3\xf7\x85\x36\x0c\x55\xa7\xf3\xb5\xd1\x57\x2f\x9c\x3c\xbe\xeb\xba\x7a\x78\x79\xbe\x34\x55\xf5\xb6\x79\x5f\x9d\xb7\xad\x50\xac\x6a\x5b\x55\xb9\x6e\x3f\x34\x29\x18\x4d\x75\xc2\xf3\xbc\x6d\x3f\xd6\x5d\xfb\xbe\xa7\x1b\xe7\xeb\xcf\xa6\xef\xc8\xcb\xe2\xa1\xa9\xef\xdc\xbc\x6d\xc1\x62\x9b\xb2\xdc\xd0\x86\x57\xd6\xd1\x7a\x53\xf9\x3c\x6d\x15\x0f\x70\xcb\x68\x12\x18\x6d\xca\x68\x13\xda\xa4\x73\xdb\x64\xe2\xff\xe0\x0f\xfe\x00\x8b\x8b\x8b\xe8\xf7\xfb\x08\x82\x60\xce\xaa\xc0\xf7\xf4\xd2\x7f\x61\x46\xe1\xc6\x28\x1a\x6c\x3d\x8a\x36\xd7\x0f\x3b\x17\x16\x92\xe0\x2b\xf1\x4c\x6c\x45\x99\x58\x0b\x24\xfa\x54\x1c\x0b\xa3\x08\x89\x24\x95\x28\x42\x92\x0a\x39\x9c\x84\xf2\xce\x61\x24\xff\x7d\x18\xa7\xb7\x76\x07\xb3\xbb\xf7\x16\x93\xbd\x87\xfd\x74\x82\x12\xbc\x68\x21\x6d\x35\x32\x08\x02\x5c\xb8\x70\x01\xa7\x4f\x9f\xc6\xfe\xfe\x3e\xfe\xdb\x7f\xfb\x6f\xc7\x79\xf7\x36\xfd\x0d\x00\xe2\xf4\xe9\xd3\x78\xfd\xf5\xd7\xd1\xe9\x74\x2c\xd0\x82\x72\xc1\x8a\xe9\x07\x21\x11\x2d\x4d\x3a\xfd\xed\xbd\xf8\xcc\xd9\xfd\xf8\xda\xca\x51\xf0\x6c\x3c\x0b\x2e\x74\x32\x5a\x17\x8a\x96\x84\x42\x9f\x6c\xb0\xe7\xd4\x4d\x52\x01\x32\x26\x4c\x16\x12\xf1\xd2\xca\x51\x70\x77\xeb\x51\xf4\xc9\xa3\x5e\xf6\xb3\xcf\x57\x26\xef\x7e\xb6\x3a\xb9\xb5\xd7\x4b\xc7\x8a\x90\x14\x32\x39\x61\x53\x46\x46\x8e\x03\xc0\xb5\x6b\xd7\x64\x18\x86\xe2\xa7\x3f\xfd\xa9\xef\x1b\x57\xbd\x73\x1b\x5a\xf7\x05\x8b\x96\xdc\xe5\xd0\x4d\xc1\x65\xa6\x6d\x06\x6e\x65\x59\x7c\x65\x11\x80\x90\x40\xe1\x60\x1a\xf4\x97\x26\xc1\xb9\x30\xa3\x3e\x00\xa1\x01\x85\xe5\x34\x0b\xd7\xc6\x32\x6f\x69\xe1\xcb\x91\xc9\xcd\x58\x64\xd1\xc6\x15\xab\x64\xaa\x86\x47\x4e\xca\x5a\x18\x05\x00\xd3\x40\x0d\x77\x07\xb3\xbb\x47\x91\x1c\x2a\xa8\x84\x60\xf9\xb4\xb8\xa0\xc5\xf7\xf1\x79\xff\xb6\x65\x2a\x4d\xcc\xaa\x29\x4f\xd3\xb3\x2f\xcb\xec\x1a\x81\xad\x73\xdd\x04\x5e\x9a\xea\xf1\xa5\xf5\x31\x77\x1e\xdf\xd4\x36\x37\x6d\x55\x9a\x2a\x41\x5d\x07\x42\x7d\xed\xa8\x7b\x5f\x5f\x9d\x6d\xda\xe6\xab\xc7\x17\xda\xf4\x77\x1d\x5d\x36\x09\x56\x5f\xba\x3a\xc0\xd3\x54\x7e\xdb\xfa\xdb\xe6\xf1\x5d\xb7\xb5\x66\x54\xbd\xc3\x97\x61\xd8\x6d\xd3\xb4\x05\x66\x5f\x56\x70\xd4\x85\xb6\x34\x00\x00\xf2\xf7\x7f\xff\xf7\xc5\xe6\xe6\x26\xc2\x30\x74\x05\x35\xb7\x2c\x84\x50\x08\x03\x85\x70\x65\xdc\xe9\x9f\x79\xd4\xdd\x3a\x71\xd8\xb9\xb4\x72\x14\x3e\xb5\x38\x0d\x2e\xc4\x33\x71\x26\x90\x62\x3d\x50\xe8\x33\xcb\xc2\x9c\x5c\x52\x14\x24\x92\xd4\x28\x13\x18\x26\x81\xdc\x3d\xbb\x9f\xdd\x1e\xc6\xd9\x2f\x77\x16\x93\xf7\x6e\xad\x4e\x3e\xbd\xbf\x30\x1b\x49\x42\xaa\x50\xee\x5c\x8e\x12\xd0\x88\x28\x8a\x64\xa7\xd3\x41\xbf\xdf\x97\xdf\xfc\xe6\x37\xc5\x7f\xff\xef\xff\xfd\xcb\xf4\x51\x65\x9e\xb3\x67\xcf\xe2\xf9\xe7\x9f\xc7\x60\x30\xe0\x7d\x11\xb2\xdf\x10\x40\x18\x48\x44\xcb\x47\xe1\xe0\xb1\x47\xdd\x33\x8f\x3d\x8a\xaf\xad\x8f\x3a\xcf\x0d\x12\x71\x25\xcc\xc4\x26\x03\x2b\xa1\x56\xef\xed\x85\x23\x79\xb9\x7a\x05\x2d\x11\x40\x0a\xb1\xc8\x30\x08\xb3\x60\xb3\x9b\x06\x17\x07\x49\x78\x6d\x79\x12\x3c\x77\x72\x14\xfd\xe8\xd6\xca\xe4\xa7\xbf\x59\x99\xde\x1e\x47\xd9\x44\x0a\x63\xf5\xd2\x6e\x0e\x26\xc4\x71\x8c\xa7\x9e\x7a\x4a\x12\x91\x78\xe7\x9d\x77\xda\xca\x9d\xe3\x8c\x0b\x5f\x3e\xe8\x06\xf1\xd0\xc6\xdc\x53\xa7\xc1\xba\x8c\xa7\x72\x90\xb8\x8e\x45\x4a\x29\x21\x40\xe1\xc6\x41\x67\xbd\x9f\x04\x67\xf2\x43\x15\xc9\xac\xfc\xe1\x4b\x92\x35\x6a\xe0\x53\x48\x06\xc2\x38\x69\xc0\xd2\x98\xd5\x46\x45\xa1\x6a\x0e\xf0\xb4\x81\x2c\x70\x36\xbe\xb3\xa2\x73\x9f\x1b\x00\x19\x94\x1c\x47\xd9\xde\x83\xfe\x6c\x67\x12\xca\x51\x31\x28\xf4\x8a\x22\x09\x7b\x1e\xd1\xf4\xd1\x3b\xef\xbc\x23\xef\xde\xbd\xdb\xae\x1d\xcd\x08\xb5\x29\x8d\x2f\x8f\x4b\x58\x6d\xb5\xea\xba\x3a\xeb\x84\x75\x1b\x06\xeb\x13\x7a\x4d\xda\x6b\x9d\xe0\x6a\x0b\xb6\xda\xd0\x7d\x5d\xfb\x75\xfb\x04\xda\xbf\x4f\x5d\xb9\x4d\xd6\x20\x1f\xd8\xa8\xca\x53\xf7\x0d\x9b\xbe\xb7\x5b\x6f\x95\x55\xa7\x0e\x84\x34\x59\x4c\x9a\xc2\x71\xac\x03\xba\xfe\x3a\x80\x51\x07\x74\xe1\x3c\x73\xfb\xc3\xf7\x5d\xdb\x7c\xc3\xe3\xf0\xd8\xe3\x84\x2f\x53\x56\x5d\x3f\xf8\xca\x39\xf6\xf7\x13\x42\x88\x37\xde\x78\x03\x8f\x3d\xf6\x18\x84\x30\xe7\xe4\xe9\x72\x42\x94\xbe\x1b\x11\x29\x84\xbd\x24\x88\xcf\x3f\x8c\x37\xcf\xee\x77\x6f\x9c\x1c\x75\x9e\xed\x27\xc1\xc5\x4e\x46\x1b\x81\xa2\x15\xa1\xd0\x07\x28\x04\x94\xd0\x0e\xa8\x73\xdb\x5c\x14\xfb\x6a\x09\x45\x2b\xa1\x54\x69\x94\x06\x17\xfa\xb3\xe0\xca\xf2\x44\x5d\x3b\x71\xd8\x79\x7e\x63\x14\xfd\xdb\xdd\x41\xf2\xee\xad\xd5\xc9\xc7\x0f\xfb\xe9\x28\x15\x2a\x01\x41\xa0\x00\x2d\xc8\xa7\xf3\x41\x44\xe8\x74\x3a\x38\x7b\xf6\xac\x7c\xf3\xcd\x37\xc5\xf7\xbf\xff\x7d\x5f\xff\xd4\xf5\x95\x37\x9c\x3f\x7f\x5e\x5c\xbf\x7e\x1d\x6b\x6b\x6b\x2e\x68\xd1\xc0\x25\x02\x10\x76\x53\x8a\x4f\x3f\xea\x6e\x6c\xef\xc5\xd7\x36\x0f\xa2\x97\x97\x26\xe1\xd3\x51\x2a\xce\x04\x0a\x2b\x00\x85\x50\x85\x12\x4e\xf6\x21\x79\x06\xa4\x14\x7d\xa1\x50\x6e\xd0\x9a\xff\x52\x28\x08\x21\x29\xc4\x41\x8a\x95\x50\x76\x36\x7a\xb3\x60\x7b\xe9\x28\x7c\x6a\x6d\xdc\xf9\xe7\x5b\xab\x93\xf7\xee\x2c\x25\x7b\x59\xa0\x12\xd6\x3e\xa3\x70\x2b\xa5\xb0\xb0\xb0\x80\x27\x9f\x7c\x52\x02\x10\xef\xbc\xf3\x8e\xae\xfa\xcb\xf4\xcd\x71\x68\x5e\xb8\xc0\xa5\x49\xa0\xb4\x41\xea\xde\xeb\xeb\xd7\xaf\x8b\xe5\xe5\x65\xdd\x40\x7e\x12\x74\x79\x46\x91\x44\xb4\x31\x8a\xb6\xba\xa9\x58\x27\x55\xae\x26\xe2\x56\x10\x3d\x6d\x94\xc7\xe7\xf8\x92\xef\xd9\xa2\xd3\x98\x65\x5f\x45\x8c\x05\x4a\xd8\xb4\x93\x3b\xad\x54\x39\xcd\xc4\x8f\x02\xd0\xa0\x49\x2f\x5c\x42\x0e\x86\xa8\xac\x10\x52\xa8\xf4\x51\x2f\xbd\x3b\xea\x66\x0f\x53\x61\x0e\x53\x74\xad\x2d\x73\xdb\xfc\xdf\xbd\x7b\x17\xa3\xd1\xa8\xf5\x07\x44\x3d\x88\x6c\x1b\xaa\x04\x29\x8f\xf3\x09\x2c\x37\x34\x31\x76\xde\xbe\x2a\x41\xe1\x96\xe3\xa6\xe1\xe5\xbb\xc1\x27\xfc\xeb\x84\x83\xaf\xac\x2f\x2b\x6c\x5d\xe1\xed\xf6\x97\xaf\x2d\xf0\xa4\xe3\xf5\xba\xf5\xfb\xee\xab\xde\xf9\x38\x56\x00\x01\x40\x5e\xbc\x78\x51\xef\xcc\xe9\x7e\x23\x5f\x5c\x55\x5f\xcc\x81\x9a\x77\xdf\x7d\x17\xe3\xf1\xd8\xf7\x0d\xea\xe2\xdc\xf2\xea\x00\x85\x1b\x7f\x1c\x90\xed\x96\xe7\xb6\xc5\x97\xbf\x09\x2c\xd7\x31\xe1\x46\x5e\xe9\x69\x5f\x1b\xc0\xee\xab\xc3\xd7\x0e\x1f\x5d\x56\xb5\x8f\x97\xd1\x56\x1e\xb8\xe0\x56\x02\x40\xb7\xdb\x15\xcf\x3d\xf7\x1c\xf7\x67\xe1\x7f\x21\x60\x7c\x37\xa2\xee\x4c\xc4\xeb\xa3\xce\xda\x99\x47\xdd\x4b\x67\x1f\xc6\x2f\xaf\x1d\x75\x6e\x44\x29\x6d\x93\xc2\x12\xe5\x82\x5a\x50\x21\xad\xad\xf3\xe6\x50\x82\x17\xb3\xd0\x22\xbf\x16\x44\x14\x41\x21\x0a\x24\xfa\x81\xc4\x5a\x27\x0b\xcf\x2c\x24\xc1\xa5\x13\xa3\xce\xd7\x56\x8f\xc2\xff\xf9\xe9\xda\xe4\xa7\x9f\x2f\x4f\xef\x1e\x75\xe4\x04\x54\x5a\x17\x0a\x85\x13\x40\x39\x75\xf4\xd2\x4b\x2f\xc9\x9f\xfc\xe4\x27\x62\x36\x9b\x55\x7d\x97\xa6\x3e\xc6\xf6\xf6\xb6\xb8\x7a\xf5\xaa\x75\xf4\x0d\x98\x85\x05\x40\xa4\x94\x0a\x17\x93\x70\x70\x66\xbf\x7b\xee\xf1\x07\xbd\x17\x36\x87\xd1\x6b\x0b\xb3\xe0\x8a\x90\x58\x23\x50\xc4\x57\xdb\xe6\x32\x88\x4a\x79\x54\x08\x23\xed\xfe\x60\x2d\x68\x21\xfb\xb7\xd8\x27\x2d\x0c\x24\xd6\x7b\x89\x18\x44\x69\x67\x73\x61\x26\xce\x2c\x24\xc1\x46\x98\x89\x1f\xdc\x5a\x9b\xdc\xcd\x72\x01\xa7\xdb\xaa\xfb\x06\x40\xbe\x74\xfb\xf4\xe9\xd3\x3e\x1a\xa9\x53\xd6\xaa\x94\x02\x5f\x98\x93\x27\xa1\xe7\x61\x55\xe2\xaa\x81\x5f\xd5\x58\xab\xd1\x4f\x3c\xf1\x04\x16\x16\x16\xf8\x47\xb2\x1d\x73\x15\x42\x01\x84\xab\x47\xe1\xd9\x50\xd2\xa0\x5c\xb9\xc3\x7c\x57\xc0\x01\x83\xbd\xeb\xad\xf1\xa5\x2d\xa3\x58\x60\x4e\xb3\xc6\xe4\x62\x5b\x68\x6c\xa4\x6e\xe7\x32\x08\xb5\xa8\xdb\x94\x66\xe6\xab\x4a\x34\xab\x9b\x37\x0b\xd4\x68\x77\x21\xb9\x7d\xd4\xb1\xa7\x89\x98\xd3\xd3\xdc\x12\xe8\x0f\x3e\xf8\x40\x1e\x1c\x1c\xcc\xb5\xbe\x08\x6d\x85\x77\x15\xc0\xa8\xd3\xc2\x9a\x98\x52\x9d\xd0\xab\x6b\x6b\x1b\xe6\x5a\x15\x77\xdc\xbc\x55\xf9\x7d\xc0\xab\x89\xb1\xb7\xad\xb3\xaa\xbd\x3e\xd0\x57\x97\xbe\xa9\xee\xba\x50\xf7\xce\xbe\x74\x32\x08\x02\x71\xf5\xea\x55\xf7\xb9\xd8\xde\xde\xc6\xc9\x93\x27\xf9\xfe\x19\xd6\x86\x8e\xc0\xfc\xb6\x04\x55\xe9\xdc\x7a\x8f\x8e\x8e\x0c\x4d\xde\xbb\x77\x4f\x14\x47\x59\xd4\x09\xe1\xe3\x0a\xcc\xaa\xf8\xa6\xb4\x3e\xd0\xe8\x13\x42\x4d\x20\xab\x0e\xd8\xb8\xcf\x9b\xae\xab\xda\xe6\xb6\xbb\xe9\xba\xaa\xfe\xe3\xd0\x59\x53\x59\x75\x75\x4a\x00\xe8\xf7\xfb\xe2\x77\x7e\xe7\x77\x70\xe5\xca\x15\x8b\xff\x83\x09\x6b\x0d\x5a\x16\x92\x60\x70\xf6\x61\xf7\xdc\xf6\x5e\xfc\xbb\x9b\x07\xdd\x97\xfb\x89\xb8\x16\x4a\x5a\x07\x28\x32\x96\x6e\x8b\xd7\x13\x94\x53\xa9\x45\x82\xcc\x32\x5f\xca\x08\x0a\x05\xb0\x12\x65\x58\x0a\x27\xe1\x99\x6e\x2a\xce\x2c\x24\xc1\xe9\x78\x26\x7e\xf4\xf9\xca\xf4\x93\x61\x9c\x0e\x33\x81\x84\xef\x2c\x8b\x72\x9a\x44\x3e\xfd\xf4\xd3\x22\x4d\x53\xf9\xf3\x9f\xff\x5c\x1c\x1d\x1d\xe9\xe7\x3e\xbe\xeb\xed\xe7\xf3\xe7\xcf\x8b\xab\x57\xaf\x62\x73\x73\xb3\x12\xb4\x90\x42\xb4\x3c\xe9\x2c\x6d\xef\xc5\x97\x1e\x7f\xd0\x7b\xed\xe4\xa8\xf3\x4a\x9c\x8a\x4b\x42\xd1\x80\x5b\x97\x2c\x05\x9d\x29\xd1\xb6\x72\x3d\xaf\xa4\x53\x09\xed\x00\xfe\xbf\xa2\x38\x94\xd8\x5a\x9c\x84\x83\x73\x19\xad\x74\x32\x5a\x20\xc2\x3f\xde\x5a\x99\xdc\x4e\x85\x9a\x30\x51\x6a\x4d\x1b\x0d\x06\x03\x3c\xf5\xd4\x53\xb8\x79\xf3\xa6\xcb\x8f\xea\xc6\x71\x1d\x3f\xae\xa5\x31\x0e\x5c\x7c\x03\x16\xce\x6f\x1b\xe2\xf7\xa5\x9f\xfb\xa8\x6c\x0d\xbd\xf9\x60\xdd\x54\xf4\x07\xd3\x70\x2b\xc8\x9d\xac\x04\xc0\xcd\x5a\x8c\x61\x52\xf9\xa1\xac\x50\x31\xd3\x63\xcd\x1a\x69\x73\x22\xd9\x8b\x9f\x75\x1d\x5e\x17\x60\xee\x90\xcb\x80\x0d\x8f\xe4\xbe\x38\x0a\x0a\xe3\x4e\xb6\x77\x7f\x61\xb6\x93\x04\x72\x8c\x1c\xb0\xb8\x7b\xb7\x48\xe7\x0f\xbf\xf8\xc5\x2f\x30\x1c\x0e\x75\xbf\xf8\x04\x2d\x7f\x56\x05\x2a\xdb\x68\x9b\x55\xdf\xce\xc7\x80\xaa\x34\xd0\xa6\x7c\x75\xe5\x57\x0d\xf0\x3a\x2b\x04\x4f\xe7\x2b\x97\xa7\xa9\xaa\xc7\x97\xbe\xaa\xde\xa6\x01\x54\xd5\xb7\x6e\x3b\xeb\xd2\x57\x69\x21\x55\xdf\xbd\xea\xfd\x9a\x98\xa6\x58\x5c\x5c\xc4\xd6\xd6\x16\x80\xdc\xb9\xee\xb9\xe7\x9e\x2b\xc6\x97\x17\x88\xe8\x0d\xad\xac\x3d\x97\xaa\x02\xdb\xd4\xca\xc4\xb1\x55\x72\xe6\x4c\x14\x5d\xd6\x6f\x7e\xf3\x1b\xb9\xb8\xb8\x68\xd2\xa6\x69\x2a\x7e\xfd\xeb\x5f\xf3\x36\xfb\xbe\x4f\x9d\x60\x6e\x0b\x80\xea\xbe\x95\x8f\xb7\x35\x59\x37\xdc\xb2\xab\xbe\x31\x9c\xf8\x36\xe0\x83\xe7\xf1\x85\xaa\xf1\x5c\x27\x38\xda\x8c\xd3\xe3\x82\xfb\x26\x1e\x23\x06\x83\x01\xbe\xf6\xb5\xaf\x55\x82\x16\x00\x51\xa0\x28\x1a\x4c\x83\xa5\x73\xfb\xf1\xc5\x4b\x3b\xfd\xd7\x36\x46\x9d\x37\xa2\x4c\x5c\x14\x8a\xfa\x86\x7f\x93\x62\x0a\x66\x01\x94\x5d\xde\x6b\xd1\x33\x98\x14\xcf\x7f\xcd\x74\x52\x2e\xf4\x85\x90\x6a\xa9\x37\x0b\xae\x6d\x3d\xea\xae\xc4\x33\xb1\xbe\x90\x04\xff\xf3\xdf\x4f\x1c\x7d\xb0\xd7\x4f\xf7\xd2\x00\x02\xc5\x2e\xe7\x45\x99\x06\xbc\x5c\xbb\x76\x4d\x64\x59\x26\x6f\xde\xbc\x89\xf1\x78\xcc\xfb\xcd\xd7\x47\xa6\xaf\xce\x9e\x3d\x8b\xeb\xd7\xaf\x63\x63\x63\x83\xcf\x3a\x58\xa0\x05\x40\xb4\x30\x0d\x06\x17\x77\x7b\x57\xbe\xb2\xdb\xfb\xfd\xb5\x71\xe7\x95\x28\xa5\x73\x85\x2f\x0f\x5b\xf0\xaa\x7d\x58\x0a\xb9\x45\xda\xaf\xb3\x8c\x2f\xc7\x2e\xeb\x13\xe6\xcb\xc9\x8f\xb5\x61\x10\x4f\x08\xa5\x56\xfa\xb3\xe0\xea\x99\xfd\x6e\x3f\x94\x14\x4a\xa8\x7f\xb8\xbd\x32\xbd\x93\x0a\xae\xb9\x97\xfd\xb1\xb4\xb4\x84\x67\x9f\x7d\x16\x69\x9a\x0a\xe7\x98\x9a\x26\x9c\x60\xfa\xa6\x26\xad\x9b\xde\x4c\x15\xd5\xa1\x22\x5f\xe6\x63\x21\x6e\x1e\xf8\x14\x11\x18\x01\x0b\x85\x70\xe5\x28\x1c\xf4\x12\xb1\x21\x14\x22\x63\xe6\x32\x16\x15\x87\xb9\xf2\xe9\x23\x8f\xa6\xe7\xf8\xe1\xea\x84\x79\x3e\x56\x16\xb7\x94\x90\xcf\x13\xd8\xbd\x35\xf3\x89\xd5\xb8\x49\x11\xd2\x47\xbd\xec\xce\xb0\x97\x3e\x48\x85\x9a\xe8\x5d\x72\xd9\x81\x8a\x66\xc3\x1f\x00\x92\x58\x9b\x6a\xfa\xcf\xf7\x8d\x9a\xfa\xbc\x0e\x64\xd6\x09\xd0\xaa\xf2\xf8\x7d\x95\x40\xae\x03\x36\x75\x20\xab\xaa\x9d\x6d\x41\x40\x53\xbb\xea\xca\xad\x13\x32\x55\xc1\x97\xa6\xaa\x4f\xdb\x00\xa9\xa6\xf6\x54\x01\x9a\xaa\xf6\x88\xb5\xb5\x35\x0c\x06\x03\x00\xc0\xe6\xe6\x26\xae\x5d\xbb\xe6\x3b\xc7\xc4\xb4\x89\xd8\x39\x27\xce\x06\x5d\xfa\xb9\x19\x7f\x15\x80\x47\xea\x74\xbe\xf7\xd2\xda\xeb\x99\x33\x67\xc4\xd9\xb3\x67\x4d\x19\x93\xc9\x44\xce\x66\x33\x53\xd7\x17\x5f\x7c\x01\x66\x86\xaf\xa3\x91\x26\x50\x5d\x07\xe2\xdd\xdf\x2a\x90\xe8\x86\xaa\xef\xd4\xd4\xde\xa6\xf1\x56\x07\x0e\x9a\xda\x54\x45\xab\xbe\xb6\xb4\xed\x87\x26\xd0\xe6\x2b\x73\x2e\xf4\x7a\x3d\x9c\x3a\x75\x0a\x00\xf8\xce\xae\x02\xb9\x95\x25\x22\xa2\x50\x48\xc4\x4b\x93\x70\x65\x7b\x2f\xbe\xf4\xc4\xfd\xfe\xeb\xeb\x87\x9d\x37\xa3\x4c\x5c\x80\x82\x50\xa4\x1c\x1f\xc7\xc2\xc6\xc2\xe9\xd4\x52\x40\x39\x6d\x73\xb0\x52\x4e\x95\xa0\xc0\x31\x3a\x3d\x01\x51\x94\xd1\xa5\x93\x87\x9d\xa5\x28\x15\x2b\xa1\xa4\xf8\x57\x27\xc7\xef\x3d\x58\x98\xed\x66\xc2\x2d\xb3\x14\xd6\xcf\x3e\xfb\xac\xb8\x7b\xf7\xae\x1c\x8f\xc7\xad\x15\x25\x77\x7a\x88\xef\x61\x06\x20\x82\x42\x14\x65\xd4\x3f\xff\x30\xbe\x78\x71\xb7\xf7\xfb\x27\x0e\x3b\x6f\x76\x32\xda\x82\x22\x33\x3d\x06\xfd\x0e\x85\x16\x5e\x8e\xc3\x1c\xd1\xb8\x60\xc5\x80\xb5\x02\xa9\x58\x72\xce\x4c\x29\x69\x8f\x4f\xb6\x01\xab\x44\xbf\xab\xc4\x95\xd3\xc3\x28\x92\xb4\x30\x9d\x86\xf2\xff\xdd\x19\xcc\xee\x66\x81\xc5\x03\xf4\x86\x75\xe8\xf5\x7a\x78\xe5\x95\x57\xe4\x74\x3a\xd5\xe7\x1b\x55\xd1\xa4\xfb\xac\x2d\x9e\x30\x79\xab\x36\xa0\xab\xd3\x0e\x01\xfb\x23\xd5\x31\x06\x00\x90\x27\x4e\x9c\x10\x41\x10\x98\xb2\x8b\x8e\xb5\x96\x43\x07\x52\x44\x27\x0e\x3b\xeb\x51\x26\xd6\x48\x41\xf0\x69\x1a\xf0\x7e\x26\x9f\x69\xb0\x64\xa8\xda\xdf\x85\x5b\x69\x72\x70\xaa\xcc\xf4\x92\x05\x54\x60\x9b\xd0\xf8\x41\x89\x26\x78\x51\x50\x75\x48\x85\x9a\xec\xf5\x67\xb7\x27\xa1\x1a\xa9\x62\xbe\x94\x5b\x5a\xf4\x34\x11\x1b\x10\xf2\xc1\x83\x07\xc8\xb2\xcc\xed\xdb\x3a\xc1\xcc\xaf\xdb\x32\x6b\xf7\x79\x5d\x68\x03\x44\x9a\xda\xa9\xef\x5d\xc6\xe8\xd3\x28\xab\x04\x7e\x15\xdd\xd5\xbd\x47\x15\x23\xa9\x6a\x83\xdb\xde\xe3\x68\xa6\x6e\xde\xba\xb6\x55\x95\xd9\x16\x58\xf2\x6b\xef\x37\x58\x5b\x5b\x2b\xfc\x1e\x81\xeb\xd7\xaf\xe3\xf1\xc7\x1f\xb7\xfa\x80\x9c\x2d\xc1\x3d\xe0\x44\x14\xbf\x56\x3c\x7b\xce\xf3\x19\xa0\xc2\x01\x4f\x01\xc8\xad\x77\xd3\x71\x45\xf9\x56\xbe\x38\x8e\xf1\xad\x6f\x7d\xcb\x94\xf1\xfd\xef\x7f\x5f\x0e\x87\x43\x71\x70\x70\x80\xe9\x74\x5a\x47\xcb\x3e\xba\x70\xe3\xdd\xfe\xab\x2a\x83\x87\x3a\x21\xe4\x0b\x75\xc0\x4a\xc7\xd5\x81\x94\x36\x65\x1f\x27\x8f\xae\xbb\x69\x7c\xfc\x36\xf7\x55\x6d\x33\xd7\x71\x1c\x8b\x8b\x17\x2f\xe2\xc5\x17\x5f\x14\x80\xf1\x67\xb4\x2d\x0c\x0a\xf1\x60\x1a\x2c\x5d\x78\x10\x5f\xbe\x74\xbf\xff\xd6\xda\x61\xe7\x8d\x8e\x14\x67\x48\x29\x91\x33\xf1\x92\x17\x97\x8a\x6c\xb9\xc8\x42\x0b\x61\xc5\x2c\x2a\x50\xca\xb0\x6c\x23\x2b\xa8\xb4\xc8\x80\x08\xf6\x81\xb8\x39\x08\x08\x24\x6d\xae\x4c\xe8\x8d\x0b\x0f\x7a\x61\x26\x14\x52\xa1\xde\x7d\xd8\x4b\x77\x95\x30\x3b\xed\x4a\xc0\xda\x46\x5f\x2e\x2f\x2f\x63\x77\x77\x17\xc5\xf1\x2c\x55\x7d\x2c\x01\x88\xd5\xd5\x55\x74\x3a\x9d\xfc\x5d\x98\xfc\x33\xfd\xa1\x10\x05\x0a\xf1\x99\xfd\xee\x99\xa7\xee\x2d\xe4\x7d\x91\xd1\x26\x40\xc2\x18\x59\xe0\xf8\x61\x3a\xbe\x9b\xe5\x0b\x71\xd9\x56\x00\x18\x05\x28\xee\xeb\xa2\xf3\x71\x83\x8b\x91\xaf\x66\xfa\x28\xec\xa6\xc1\xa5\xcd\x61\xf7\xdb\x4f\xdd\x93\xfb\x49\x38\xfa\xf1\xc3\xde\x4c\x4a\x61\x7f\x7f\x5d\x47\xa7\xd3\xc1\x5b\x6f\xbd\x25\xff\xd3\x7f\xfa\x4f\xfa\x68\x00\x1f\x30\xae\xe2\xeb\x75\xe3\x96\xc7\x7b\x97\x43\xb7\xd5\x48\xaa\x90\xf9\x1c\x31\x7f\xe7\x3b\xdf\x41\xb7\xdb\x35\xc4\xcb\x1a\x6e\xe2\x84\x42\xb4\x7a\x14\x9e\x0e\x33\x5a\x62\x65\x7a\xf1\x82\x6b\x12\x2c\xcc\x7e\x28\x2c\x80\x9e\x8f\xea\xa2\x4f\x6d\x5a\x73\x34\x47\xcc\xa1\x6b\x53\xa1\x75\x14\x80\xd3\x1e\x1d\xf4\xf7\x9f\x06\x72\xb8\xbb\x30\xbb\x3b\x13\x72\x8c\xf2\x14\xe8\xa4\xe8\x13\x73\x98\x22\x58\xbf\xfe\xdd\xdf\xfd\x1d\x26\x93\x49\x65\x1f\xb2\xd0\xc4\x00\xab\x34\xac\x2f\x5b\xce\x71\x9f\xd5\x95\xe9\xb6\xcb\x97\xae\x8a\xe6\xea\xca\xad\x7a\x17\x5f\xd9\xbe\xeb\x3a\xad\xbe\x4e\x58\xb6\xa9\xa7\x4e\x80\x54\xe5\xab\xd3\x94\x7d\xcf\xc5\xc2\xc2\x02\x00\x88\x6f\x7d\xeb\x5b\x7c\x69\x25\x00\xc3\x24\x01\x58\xe7\x9b\xe8\x72\xbc\x67\x9c\x58\xbf\x0a\x42\x6b\x77\xfe\x50\x5a\x0c\xc9\xde\xa9\x54\xff\xca\x02\xa4\x58\x71\x45\xfa\xb2\x94\x42\x18\xbc\xf9\xe6\x9b\x02\x00\x7e\xf0\x83\x1f\xc8\xcf\x3e\xfb\x4c\x24\x49\xc2\x2d\x30\x55\x34\xdd\x06\xc4\xb6\xfd\x2e\x55\x69\xdb\x02\x54\x5f\x9b\x9a\xd2\xba\xc0\xab\x4e\x71\xa8\x6b\x63\x55\xdd\x3a\x6e\x0e\xec\xb6\x6c\x77\x13\xd8\xb3\xd2\x77\x3a\x1d\xf1\xe4\x93\x4f\xe2\xc6\x8d\x1b\xe6\xbd\xe6\x40\x0b\x4a\xeb\xc2\x13\xf7\xfb\x6f\x9d\x38\xec\x7c\x33\x94\xb4\x95\x1b\x59\x88\xc9\x61\xdb\xaa\x52\x44\xcf\x59\x1f\x4a\xb8\xc2\x14\x4f\xc5\x21\x0c\xb3\xb6\xbb\xf2\xbe\xf8\x0d\x14\xad\x2d\x4f\x82\x57\x2e\xec\xf6\x92\x54\xa8\xc9\x87\x1b\xe3\x5f\x1c\x74\xb3\x7d\x22\x9a\x98\xf4\xcc\x61\xf7\x95\x57\x5e\x81\x10\x42\x7e\xf8\xe1\x87\xa2\xb0\x1a\x56\x05\xf9\x8d\x6f\x7c\x43\xac\xad\xad\xf1\x31\x68\xac\x2d\x4a\xa9\x48\x28\x8a\x97\x8f\xc2\xb5\xab\x77\x06\xaf\xad\x8f\x3a\x7f\x10\x65\xb4\x45\xa0\x10\x28\xfa\x80\x4a\x19\xe6\x0b\x94\x27\x2c\x65\x55\x31\x5c\x8d\x23\xae\x2a\x65\x18\x71\x99\x46\xc8\x41\x1c\x78\xb7\xd9\x07\xfd\xf6\x66\xe2\xea\xb9\x87\xdd\xbd\x83\x6e\x36\xfc\x70\x43\xfe\x62\x18\x67\x7b\x54\x1e\x08\x2c\x51\xba\x3f\x80\x88\xb0\xb0\xb0\x80\xd1\x68\x24\x9c\x31\xef\x53\x1c\xe1\x79\x0e\x34\xd0\xbd\xcf\x39\xb7\x0d\x33\x6d\x33\x40\xbc\xc1\x9c\x0b\xc4\x37\xd6\x51\x08\x85\xa2\x68\x71\x12\x6e\x04\x8a\x06\x26\x6d\xf1\xeb\xfb\x4e\xee\x2a\xa1\xda\x4d\xe7\x14\x15\x84\xea\x10\xaf\x2e\x87\x3b\x33\x79\xf3\xc3\xce\x63\x3d\xe2\x80\x46\x41\x11\xe4\xb8\x9b\xed\x3c\xec\xcf\x1e\xa4\x81\x9a\x28\xa8\xb4\x70\xcc\xd5\x1f\x37\xa5\xf2\x5c\x08\xc9\x88\xb8\x0d\x73\x6a\x13\x9a\x84\x5e\x23\xd3\x69\x88\x6b\xd2\xfe\x7d\x80\xb6\x4a\x63\x73\xd3\x35\xd5\x57\xd7\x06\xb7\xdc\x46\x61\xcf\xd2\x55\xa5\x3d\xce\xbb\xb6\x01\x1d\x75\xef\x5a\xd5\x1e\x5f\x3f\x9a\x78\x22\x42\x14\x45\xf8\xb3\x3f\xfb\x33\xeb\x54\x58\x55\x9c\x76\xeb\x80\x14\x9f\xb5\x33\x4f\x93\xa7\xb7\xd2\x9a\x7b\x05\x21\x14\x40\x52\x09\x92\x10\x1a\x9a\x28\x01\xa8\x80\xa4\x14\x0a\xca\xe6\x1d\x2e\x40\x91\x28\x81\xba\x66\x74\x7c\x0c\x08\x16\x6f\xfa\xed\xe5\x97\x5f\x16\xaf\xbc\xf2\x0a\xde\x7d\xf7\x5d\xf9\x93\x9f\xfc\x44\x83\x2c\x1f\x8f\x6a\x03\x0e\xdb\x80\x0d\xb7\x7f\xeb\xc0\x6a\x55\x99\xc7\x01\x03\xee\x73\x97\x7e\x7d\x75\xfa\x42\x53\x9a\xe3\x96\x7d\x5c\xb0\x32\x17\x9e\x7e\xfa\x69\xfc\xee\xef\xfe\xae\xa1\x27\xbe\x03\x6c\x21\xac\x63\x02\xf5\xcf\x3e\xec\x6e\x5d\x78\xd0\x7b\x75\x75\xdc\x79\x25\x94\xb4\x69\x04\x29\xf8\x6c\x06\xb7\xe8\xc1\x7a\x6e\x1c\x55\x31\xcf\xa3\xed\xa3\x62\x0a\x6b\x3b\xca\xb4\x73\xd3\xa6\x85\x1c\x08\xa5\x58\x5f\x3d\x0a\xbf\xfe\x95\xdd\xde\x24\x09\xe4\xf8\x83\x53\xe3\x0f\x92\x40\x01\xf9\x26\xa2\xba\x1f\xf4\x94\x3f\x5e\x7a\xe9\x25\x21\x84\x90\x6c\x17\xd9\xb9\xc0\x15\x03\x9a\xdf\x78\x35\x24\x50\xdc\x91\xd4\xbf\x72\x6f\xe1\xf2\xa9\x83\xee\x1f\x77\x33\x3a\x03\x55\x80\x16\xb2\x67\x12\x58\x73\xd9\x94\x59\xd9\x19\x66\xc5\x2c\xd8\x4c\x02\x53\xee\x19\x8c\x2b\x9e\x95\x05\x97\xfd\xc6\x2a\x21\x40\x80\xe2\xc1\x34\x7c\xe1\x2b\xbb\xbd\x9d\x61\x2f\x1d\x4e\xc3\xc9\x64\xda\x91\xe5\xf8\x76\x78\xd6\xdb\x6f\xbf\x8d\xff\xf2\x5f\xfe\x8b\x3c\x3c\x3c\xe4\xdd\x50\x85\x1b\x7c\xa1\x56\x1e\xba\xce\xb9\x75\x19\x9b\x2a\xaa\x15\xb2\x0c\xb0\x00\xce\x47\x0b\x14\x45\xfd\x24\x18\x2c\x4c\x83\xad\x40\x51\xa4\xf3\x10\xca\xe9\x1d\x60\x1e\x98\x30\x97\x23\xbf\xa5\x44\xd9\x1f\xcf\x45\x27\xdc\x94\xc8\x07\xca\x5c\xa8\x99\x1e\xf2\xb8\xf2\xca\xfd\x5e\x76\x67\x1c\x65\xc3\x62\x9a\x28\x81\xbd\x5b\xae\x3e\xf8\xab\x78\x27\xaa\xfd\x40\xc7\x7c\x06\x34\x33\xc8\x26\x4d\xae\x4d\x68\x93\xb7\x49\x78\x1f\xb7\xdc\x2a\x40\xe3\x63\xb0\x75\xc2\xde\x97\xce\x05\x52\x4d\x65\xfa\xda\xe0\x6b\xaf\x0e\x55\x7d\xd1\x04\xaa\xdc\xbc\xd6\xf3\x53\xa7\x4e\xe1\x8f\xfe\xe8\x8f\xdc\x72\x01\xc0\x02\x26\xb0\x05\x87\xd6\x7a\x75\x39\x02\xf9\x8e\x9c\x61\xf7\x50\xc6\xf1\x41\xd6\x8f\x8e\xd4\x52\x67\xa2\x06\xc1\x4c\x2d\x05\xa9\x5a\x12\x99\xea\x93\x42\x08\x45\x3d\x52\x2a\x22\xa5\xa2\x62\x50\xa4\x4a\xd0\x44\x91\x9a\x2a\xa2\x44\x05\x98\x64\x01\x0d\xb3\x0e\x0d\x67\x5d\x1a\x4d\xfb\x62\x38\x59\x14\xc3\xc9\x40\x4c\x54\x30\x77\x3e\x8c\xd9\xc7\x88\xc5\xf3\xbe\xd0\xa7\xd4\xca\x6b\xd7\xae\xe1\xda\xb5\x6b\xe2\xd6\xad\x5b\xf2\xef\xff\xfe\xef\x3d\xdd\x71\xac\xb1\xd2\x76\xec\x54\x8d\xa3\xe3\x58\x3a\xda\xd4\x53\x07\x0e\x1a\x15\xc1\x86\xd0\x04\x3c\x7e\x5b\x5e\x52\x9b\x87\x4d\x37\x72\x4b\x4b\xbe\x34\x19\x88\x37\x0f\xa2\xf5\x8b\xbb\xfd\x57\x37\x0e\x3a\x6f\x74\x33\xda\x86\x82\xb0\x0e\xca\xb5\x04\x2a\x31\xcb\x01\x0c\x4f\xd6\xf7\x16\xfb\xe7\xcf\x00\xc3\xe4\x8d\x8b\x00\x4a\x41\x6e\x55\xc3\xa6\x93\x42\x29\x36\xd7\xc6\x9d\xdf\xdb\x7e\xd8\x1b\x3d\x8a\xb3\xfd\xdf\xac\x4e\xee\x48\xb2\x85\x34\x03\x23\x8d\xfd\xf2\xe7\x7f\xfe\xe7\xe8\xf5\x7a\xbe\x71\x18\x12\x51\x14\x66\x14\x9f\x3a\x88\x36\xb7\x1f\xf4\x7e\xbf\x9b\x89\x8b\x79\x3c\x9b\xea\x62\xef\x65\xb7\x99\x5b\x61\x74\x67\x94\x89\x15\xbb\xcf\xa7\xc7\xca\x8e\xd1\xe2\x90\x03\x1a\x5d\x8f\xef\xa0\xe1\x50\xd1\xca\xca\x51\xf8\xd2\x85\xdd\xde\xed\xfd\x38\xdd\xbf\xd7\x49\x12\x67\x4c\xb7\x91\x2b\x75\x7d\xd6\x44\xa3\xe6\x79\x9b\x9d\x73\xdb\x68\x13\xad\x42\xa1\x59\x59\xd3\x45\x44\x24\xc2\x8c\xa2\xb5\xa3\x70\x2d\x4e\xc5\x86\xf6\x9c\xce\xd3\x93\x4d\x90\xcc\xdf\x05\x98\x07\x1e\xfa\x6b\x98\x38\x17\x9d\xd2\x7c\x1e\x6e\x72\xb4\xd0\x66\x85\x05\x86\x2a\xd0\x8d\x1e\x4c\x33\xa1\x26\xbb\x0b\xc9\xed\x59\x80\x89\xb2\x97\x3d\x5b\xab\x89\x98\xd6\x89\xff\xfc\x9f\xff\xb3\x3b\x47\xea\xd3\x12\xf5\x7d\x5b\x60\x02\xcf\x33\x5f\x1d\x4d\x65\xb7\xd1\x1e\xab\xea\xaf\xd2\x5a\x7d\x96\x11\x37\xd4\x01\x85\xaa\xd0\x34\x60\xdc\x76\xb9\x6d\xf2\x01\x86\x2a\xe0\xe3\xa6\xe1\x71\x4d\xe0\xd0\x05\x42\x3e\xe1\xca\x41\x95\xd5\xce\x4b\x97\x2e\xe1\x85\x17\x5e\xb0\xfc\x50\x9c\x7d\x91\xe6\xc6\x18\xca\xbd\x32\x04\x01\x42\x64\x88\x16\x1e\x66\x83\xfe\xa3\x6c\xa3\x3b\x56\x9b\xe1\x54\x6e\x85\x33\x75\x5a\xa4\x6a\x9d\x32\xac\x09\x89\x25\x52\x18\x90\x52\xe5\x99\x27\x2a\x37\xf1\x93\x42\x98\xdb\x1a\x21\x91\x9f\x6d\x92\x28\xf3\x4b\x63\x25\x30\x52\x02\x43\x25\xb0\x97\x85\xb4\x9b\x46\xf4\x45\x1a\x89\x3b\xd3\x3e\xdd\x1d\x2f\x07\x3b\xe3\xe5\x60\x94\x75\x49\x4f\x9d\xfa\xce\x8d\xf1\xd2\xe2\x63\x8f\x3d\x86\xbf\xf8\x8b\xbf\x10\x87\x87\x87\xf8\x9b\xbf\xf9\x9b\xdf\x4a\x91\x3a\x46\x1a\xdd\xef\xee\x75\xdd\xf8\x38\x4e\x68\x3b\x46\xdb\x00\x30\x77\xcc\x34\xb5\xad\xea\x79\x5b\xa1\xe2\x0d\x37\x6e\xdc\x10\x5f\xfd\xea\x57\xdd\x76\xe9\xbf\x08\x40\xd4\x4f\x44\xff\xc2\x6e\xef\xe9\xcd\x83\xe8\xf7\xe2\x34\xb8\x80\x5c\x80\x5b\xda\x3e\x57\x0a\x0d\x00\x31\x4c\xbb\xbc\x27\x66\x4d\xd7\x6e\x00\x46\x28\x73\x6b\x7a\xe1\x0b\xc3\x27\x45\xd4\x1c\xea\x29\x05\x79\x27\xa3\xcd\xf5\x51\xe7\xc6\xf9\x87\xdd\x5f\xdf\x1f\xcc\xf6\xc7\xdd\xcc\xa5\x51\x6d\xb1\x94\xcf\x3e\xfb\x2c\x3a\x9d\x0e\xdf\x41\xd6\x7c\xbb\xbf\xf8\x8b\xbf\x40\xb7\xdb\xd5\x65\xeb\xb1\xc8\x57\x11\xc5\xbd\x99\x58\x79\xea\xde\xc2\x33\x8b\x89\xb8\x41\x4a\xc5\x5a\x52\xb9\xee\x09\xf3\xfb\x8e\x95\xbe\x9d\x80\x7e\x57\x62\x0a\xbb\x96\x8c\x6c\xc5\x91\x63\xbd\x9a\xf3\xf7\xd1\xf1\x6c\x9a\x4d\x97\x1f\x49\x3a\x73\xe2\xb0\x73\xed\xd4\x41\xf4\xeb\x83\x38\xdd\x1f\x47\xd2\x37\x76\x01\x40\x7e\xf7\xbb\xdf\xc5\xdf\xfe\xed\xdf\x8a\x07\x0f\x1e\xf0\xfe\x38\xee\x78\xf1\xca\x37\xdf\x21\x8b\x4d\x19\xdd\x42\xdc\x74\xa6\x3c\x22\x12\x7f\xfa\xa7\x7f\x8a\x4e\xa7\xc3\xd0\xad\xd2\x69\x8c\xb6\x17\x4a\x8a\x57\xc7\xe1\x5a\x71\x3e\x51\x91\x8e\x21\x64\xf3\xa1\x98\xaf\x0a\x8b\xca\xcb\x2e\x6d\x88\x1c\x5c\x70\x5a\xe7\x48\xdd\x35\xaf\x94\x16\xa1\x12\xd8\xb8\x8e\xba\xc6\xf2\xc8\xec\x6d\x65\xfa\x9c\x91\x4f\x3b\x72\x7f\x77\x61\xb6\x93\x91\xd4\x9b\x18\xf1\xdd\x72\x7d\x1a\x26\x77\x40\xac\x0a\x55\xc2\xbd\x8e\xc1\x54\x01\x18\x57\xa0\xfa\x40\x48\x15\x43\x6e\xd2\x2e\x9b\xee\xab\xd0\x76\x15\x51\x57\xd5\x75\x9c\x7a\xab\xfa\x40\xb7\xa7\x49\x4b\xa8\xcb\xd7\x54\x7f\x5d\x5f\xb7\x15\x2a\x56\xba\x2b\x57\xae\xe0\xfa\xf5\xeb\x88\xe3\xd8\xb2\x12\x39\xbe\x63\xe5\x61\x74\xfa\x0c\x30\x50\x18\x24\x2a\x1a\x3c\xcc\xd6\x16\xf6\xb3\x33\xd1\x58\x5e\xec\x4c\xd5\xe3\x41\xa2\xb6\x82\x54\x6d\x08\xa9\xd6\x49\x62\x40\x0a\x7d\xe4\x20\x85\x95\xa7\x8a\xba\x08\x28\x76\x2a\x65\xe3\x4f\xea\x27\x79\x5b\x8b\xa9\x9c\x42\x3b\x55\xa4\x26\x4a\x60\x5f\x0a\xb9\xb7\x10\x62\x67\xe9\x7e\x7a\x7b\xd6\x15\xbf\x49\x7a\xf4\xc9\xd1\x52\x70\xeb\x70\x2d\xd8\x4d\xfa\x62\xee\xdc\x18\x30\x46\xa8\x4d\xf2\x41\x10\x88\x20\x08\x64\x14\x45\xf2\xbb\xdf\xfd\xae\x00\x80\xff\xfa\x5f\xff\x2b\x9c\x8d\xc0\xda\xf6\xaf\x2f\xcd\x71\x14\x33\x1f\x00\xaf\x0b\xc7\x55\xfa\xea\xc6\x68\x1b\x5a\x3d\xae\xb5\xe6\xb7\x52\x4a\x79\x08\xc3\x50\x9f\xbb\xe3\xd2\xa4\x11\xd4\x1b\x07\xd1\xc6\xa9\x83\xe8\xf9\x85\x24\xb8\x24\x14\x06\xdc\xf7\xc2\x04\xce\xc3\x69\x2e\xda\x51\x4c\xc9\x08\x64\x80\xf1\x7a\xae\x80\x6a\x4b\x82\x25\x5b\xfc\xe6\xf4\x22\x36\xea\xcd\xc4\xf6\xe6\x41\xf7\xe5\xf3\x0f\x67\x9f\x7c\x70\x6a\xfc\xb1\x22\x1b\x64\x6b\x87\xdd\x4e\xa7\x83\x30\x0c\xbd\xfd\x17\xc7\x31\xe0\x58\x3d\x79\x9f\x74\x67\xd4\x7f\xec\x51\xf7\xdc\xa9\x83\xe8\xd5\x4e\x26\x36\xcd\xe8\xf2\xf8\x2f\x94\x56\x23\xdb\xed\xa1\x6c\xf7\xfc\x94\x92\x79\x4f\x65\xbf\x6f\x59\x56\x59\x0f\x59\xb2\xcd\xf4\x74\x99\x47\x51\xbc\x90\x04\x97\x4f\x0f\xa3\xaf\xde\x1f\x24\xb7\xc7\x51\x32\x2e\xde\x43\xef\x36\xac\x8f\x07\x40\xb7\xdb\x15\xae\xac\xfb\x5f\x15\x7c\x87\x2c\xba\xa1\x4e\xab\xaf\x15\x9c\x44\x84\xd5\xd5\x55\xc0\xf3\xd1\xb8\x16\x18\x48\x8a\x96\x26\xe1\xc9\x50\x96\xfe\x2d\xdc\x04\x58\x7e\x88\x12\xb4\x18\xba\x64\x54\xa9\x18\x90\xe0\x69\xf2\xc0\x9c\x9b\x8a\xff\xf8\x14\x94\x99\x43\x64\xcf\x5d\xb3\x0b\x39\x17\xb6\xe5\x87\xa0\x48\xc9\x51\x94\xed\x3c\x8a\xd3\x87\x19\x99\x29\x22\xcb\xa7\x05\x8c\x11\x1f\x33\xb4\x01\x12\x3a\x8e\xa7\xaf\xd2\xd6\x9a\x2c\x23\x55\x53\x26\x75\xa1\xc9\xf2\x50\x05\xc0\x7c\x6d\x77\xf3\xbb\xe5\xba\xed\xf1\xb5\xb7\xaa\x2f\x7c\x16\x97\xaa\x76\xf8\xda\xe0\xd6\xe9\x5e\xf3\x50\xd5\x16\xb7\x3d\x3c\xfd\x5c\x59\xcf\x3e\xfb\xac\xd8\xdc\xdc\xc4\xe2\xe2\x22\x16\x16\x16\x84\xe3\xc3\x32\x07\x58\xb4\xd3\x5f\x90\xc8\xb8\x3f\x94\x2b\xfd\xfd\xec\x4c\x77\xac\x2e\x44\xe3\xec\x89\x68\xa2\x2e\x88\x54\x9d\x11\x19\xd6\xe0\x9c\xf5\x42\xee\x7b\xba\x52\xc3\x42\xfb\x00\x11\x04\x1b\x67\x82\x3f\x53\x79\x43\x06\x4a\xd2\x8a\x80\x3a\x83\x19\x92\xce\x44\x8d\xbb\x87\x72\x5f\x86\x74\x67\x61\x3f\xfb\x74\x69\x57\xfc\x6a\xba\x20\x3e\x39\x5a\x14\x9f\x1e\x9c\x08\x77\x65\x88\x04\xce\x5e\x47\x54\x6c\x21\xa0\xfb\x44\xf3\x15\x22\x92\x6f\xbd\xf5\x16\xfe\xf1\x1f\xff\x51\x1c\x1e\x1e\xb6\xa5\xcd\xe3\x28\x69\x75\xb4\xd4\x26\x7d\x55\xda\x36\x74\x5d\x05\xa8\xdd\x74\x55\xe0\xbb\x89\x2e\xab\xfa\xe3\xb7\x01\x58\x78\xe6\x99\x67\xc4\xf6\xf6\xb6\xfb\xdc\xb2\xb6\xc4\x33\xd1\x7f\xec\x51\xf7\xf2\xca\x24\xbc\x1a\x4a\x5a\x29\xad\x1f\xf3\x02\x17\xb0\x79\xf8\x9c\x05\xc1\x44\xd9\xcb\x7c\xb5\x2e\xab\x9d\x70\x2d\x7d\x95\x29\xa7\xae\x05\xdd\xb2\xe0\x2b\x42\x20\xb1\xb2\x3c\x09\x9f\x3e\xbb\x1f\x3f\x77\x7b\x65\xba\x73\x10\x67\x1c\x5c\x73\xf9\x29\x2f\x5c\xb8\x80\xc9\x64\x22\x7e\xf6\xb3\x9f\x79\xbf\x9d\xe3\x5f\x66\x80\x5c\x6f\x16\x2c\x6d\x3d\x8a\x2e\xf6\x13\x71\x91\x14\x62\xd3\x6e\xa6\x84\xdb\x8b\x48\x14\x93\x57\xb6\x85\xc9\x72\xc8\x75\x7b\x8d\x47\x40\x97\x5b\xf6\x79\x39\x2b\xe1\x71\xa6\x61\x9a\x4a\x94\xd1\xe6\x89\x71\xe7\xca\xc9\x51\x74\x73\xbf\x97\xee\x1d\x45\x5e\x5f\x17\x00\x90\xaf\xbc\xf2\x0a\x7e\xf8\xc3\x1f\x8a\x9d\x9d\x1d\xa0\x1d\x4d\x56\xf1\x62\x9d\x5f\x02\xf3\x5b\xfe\xfb\x42\x93\xf6\x5a\x97\x4f\x33\x57\x6b\x73\x2b\x00\xe5\x07\x54\x08\x3b\x19\xf5\x07\x49\xb0\x11\x4a\x1a\xd8\x60\x82\xf1\x4d\xfd\x31\x8b\x3e\xe5\xf4\xcd\xfc\x92\x4c\x5e\x63\xe6\x72\xd0\x86\x05\x6e\x8a\x0f\xa7\x1d\x9b\xac\xb9\x3e\xb3\x6c\x6e\x0e\xf4\x9a\x60\x81\x2a\x52\xc8\x84\x4a\xf7\x7b\xe9\x9d\x49\x47\x8e\x15\x21\x01\x41\x3b\xe6\x5a\x3b\xe5\x56\xf8\xb5\xb8\xc1\x27\x74\xf9\x7d\x55\xa8\xd2\xfe\x79\xb9\xc7\xd1\x46\x9b\xf2\xd7\x99\xb1\xeb\x88\xd0\x8d\xab\x02\x36\x3e\xe1\x51\xd5\xde\x36\x40\xa2\xaa\xdc\x36\xef\x50\xd5\x8e\xaa\x36\xd7\x59\x74\xea\xb4\x75\xab\x5d\xcf\x3c\xf3\x8c\x78\xf2\xc9\x27\xbd\x3b\x4f\xeb\x71\x54\x00\x99\x90\x88\x42\x22\x0a\x3b\x47\xb2\xdf\x1f\x66\x1b\xfd\x47\xd9\xc5\x78\x98\x7d\xb5\x3b\x96\x97\xc2\x44\x9d\x11\x19\x36\x49\x61\x09\x0a\x31\xa0\x42\xcd\xf1\xe6\x2c\x9d\x5e\xb3\xbc\xed\x8a\xce\x7d\x06\x4c\x70\xf6\x8f\xc8\xb9\x23\x42\x40\x85\x04\xc4\xa4\x68\x89\x24\xd6\x83\x4c\x9d\x09\x13\x75\xa5\x3b\x96\xbb\xfd\x47\x74\x7b\x21\x16\x1f\xf7\xf7\xe5\xbf\x1d\x2d\x89\x8f\x0f\xd7\x82\xbb\xb3\x88\x26\x10\x06\xc0\x68\xcd\x6d\xce\x24\xbd\xb5\xb5\x85\x57\x5e\x79\x45\x26\x49\x22\x7e\xf9\xcb\x5f\x62\x67\x67\xa7\x8d\x35\xc2\x17\x9a\x00\xbf\x4b\x9b\xbe\xef\x77\x1c\xe0\xe0\xa6\xaf\xab\xbf\x0a\x70\x03\xf3\x74\xe6\x2b\xc3\x57\x56\x15\x5f\x39\x8e\x40\x71\xdb\xa2\xf7\x0e\x72\x15\x55\x3e\x35\x12\x9e\x38\xec\xac\x6d\x8c\xa2\x67\x7b\x33\x71\x86\x14\x62\x00\x6c\x8e\xc2\xf6\x3f\xe1\xc1\xb2\xc2\xf3\x79\x0d\xbd\x47\x0b\xa3\x57\x23\xa8\x0b\x65\x54\xe9\x0d\x47\x99\x58\x50\x50\x50\x44\xbc\x08\xc3\xfb\x15\x19\x37\x85\xb0\x9b\x8a\xcd\x13\x87\x9d\x67\x36\x87\xd1\x3b\xa3\xee\xd1\x48\x01\x09\xc8\x80\x16\xd3\xc7\x8b\x8b\x8b\x58\x5d\x5d\x35\xfd\x18\x45\x91\x78\xf9\xe5\x97\x79\x7f\x69\x07\x7a\xd3\x17\xa4\x10\xf5\x66\x62\x65\x6d\xdc\x79\xa2\x23\x69\x83\x83\xad\xb2\x41\xa5\x0c\x25\xed\x7c\xab\x57\x08\x39\x8a\x7a\x9e\xb6\xec\xb0\x12\xb4\x30\xf8\xc7\xc6\xbb\x33\x59\x61\x6e\xf4\x2c\x02\x71\x50\x04\xe4\x67\x3f\x01\xfd\x7e\x22\xce\xad\x8d\xc3\xc7\x17\x92\xe0\x93\xa3\x48\x8e\x95\x52\xda\x7f\x49\x7f\x73\x09\x00\x1b\x1b\x1b\xa2\xdb\xed\xfa\x68\x96\x87\x26\x43\xc8\xdc\x58\x3c\xce\xe9\xd0\xbf\x2d\x42\xe7\x96\x16\xf3\x1b\x4a\x84\x0b\x49\xd0\x8f\x13\xb1\x2e\x24\x45\x3e\x26\xaa\x7f\x8b\xbd\x88\x0c\x88\xb1\xcd\x5a\xee\x07\x9c\xb7\xb9\x98\x68\x56\x86\x89\xe6\xd6\x18\x96\xdd\x94\x5b\x31\xcd\xa4\x9f\x2b\x40\xce\x02\x35\xda\xeb\xcf\xee\xcc\x82\xf2\x6c\x22\xbe\xd9\x1c\xf7\x6b\x21\x22\x99\x24\x89\x64\x07\x53\x35\xf5\xa9\x8f\xa1\xb5\x15\xcc\xbe\x72\xbe\x0c\xfa\xd5\xf9\xea\xac\x10\x6d\x89\xcf\xcb\xf8\x30\x4f\xe0\x55\x02\xbe\xa9\xfd\x4d\xa0\xa9\x4a\x10\xb8\x6d\x69\x2b\x78\x78\x1d\xbc\x8f\xab\xc0\x56\xdd\x38\x32\xed\xba\x76\xed\x9a\x78\xea\xa9\xa7\x8c\x95\x45\xfb\xb5\x14\x60\x65\xee\x14\xd9\x68\x2c\x07\xbd\x61\xb6\xd9\x1f\xca\x4b\xfd\xfd\xec\xab\xd1\x58\x5e\x09\x13\xb5\x4d\x12\xeb\xa4\xd0\x27\x18\xc7\x5a\x98\x43\xd7\xac\x66\xd8\x80\xdf\xd6\xd6\xc8\x6c\xdc\xe5\x9e\xd7\x65\x02\xb9\xe3\x4e\x6b\x87\x5a\x54\x00\x04\x84\x50\x6a\x00\x45\x83\x40\x62\x3d\x48\xd5\xb9\xce\x24\x7b\xba\x7b\x28\xaf\xf6\x1f\x89\x5f\xf4\x0e\xe4\xcf\x8f\x16\xc5\x47\xe3\x65\x71\x77\x16\x8b\x91\x0a\x4a\x00\x83\x52\xdb\x35\x7d\x74\xfe\xfc\x79\x00\x40\x14\x45\xf2\xdd\x77\xdf\x15\xf7\xee\xdd\xf3\x09\xe5\x3a\xe1\xcb\xd3\x34\x31\x51\xdf\x75\x5d\xf0\x32\xde\x9a\x74\x6e\x9a\xa6\xf1\x5e\x95\xc7\x2d\xbb\x2a\x4d\x1b\xda\x6f\xdb\x16\xf3\x0e\xdc\x31\x17\x9a\x46\x55\xee\x16\xb0\xf5\x28\xba\xb0\x7c\x14\x3e\x1d\x4a\x5a\x32\x53\xf1\x9a\xde\xf8\xd4\xbc\xde\x30\x14\x5a\xd1\x2c\x89\x52\x2b\x9e\xc4\x19\x31\x0f\x66\xb3\xd1\xe2\xb1\x63\xa9\x01\x60\xf9\x75\x70\xc5\x57\xb1\xb2\x08\x04\x21\x55\x7f\x21\x11\xdb\xa7\x87\xdd\x8b\x9f\xac\x1f\xdd\xce\xf2\xd5\x45\x11\x4a\x3a\x34\xfd\x72\xf2\xe4\x49\x5c\xbe\x7c\x59\xdc\xba\x75\x0b\xcf\x3c\xf3\x0c\x9e\x78\xe2\x09\x17\xec\x72\x30\x17\x75\x53\xd1\x5f\x1b\x77\x36\x17\x92\x60\x5b\x48\xea\x7b\x16\x7b\xf8\xa6\x17\xd8\x75\xb9\x03\xae\xb1\x34\x99\x3c\x25\x14\x41\x51\x84\xbb\xc7\x99\x7e\x60\x8d\x58\x93\xc6\x06\x2d\x1c\x38\x46\x99\x58\x5f\x9c\x06\x67\x16\x12\xb1\x72\x5f\xa9\x3d\x22\x4a\x60\x4f\x19\xf9\xe8\xab\x4a\x59\x6c\x3b\x96\x4c\x68\x02\x2e\x55\xcc\xbb\xae\xd2\x5a\x20\xe3\xae\x61\x0f\xb3\x20\x5e\x9c\x04\x2b\xdd\x4c\xac\x90\x5e\xfe\x05\x6e\xbe\x62\x96\x0f\x2a\x3b\xdf\xa0\x62\x38\x96\x0f\x68\x84\x9d\xff\xc7\x37\xa1\xe3\x5f\xd0\xfe\x78\xdc\x04\x69\xf4\x45\x58\xfb\x07\x70\x2e\xed\xd2\x96\x02\x94\x80\x9c\x84\x72\xf8\xb0\x9f\xee\x64\x42\x71\xc7\x43\xdf\x16\xff\x00\x80\x34\x4d\xf1\xf3\x9f\xff\xbc\x2d\xf8\x68\x62\xbc\x55\x79\x74\x68\xab\xbd\xf9\xd2\xfb\xee\x79\x39\xbc\x2c\x1f\xad\xb8\x65\xfb\x80\x8f\x2f\x7f\x55\x59\x55\xc1\xd5\x3a\xab\x98\xb3\x0f\xbc\xf1\x3c\x55\x83\xcb\x7d\xcf\x36\xed\xae\x03\x2f\xde\x78\x21\x04\x9e\x7e\xfa\x69\x01\xb0\xf2\xa2\x00\x00\x00\x20\x00\x49\x44\x41\x54\x00\x57\xaf\x5e\x15\x7a\x8e\x1c\xb0\x97\x95\x02\xfa\xf0\x38\x15\x86\x33\xc4\xbd\x61\xb6\x31\xd8\x00\x21\x40\xde\xbf\xcb\x2e\x2f\x3c\xcc\xae\x77\xc7\xf2\x6a\x30\x53\xdb\x42\xe6\xd3\x41\xc8\xfd\x5c\x6c\x40\xa2\xc9\x79\x4e\xe3\x2c\x81\x89\x31\x45\x17\xf1\xe4\x30\x39\xae\xf8\xf2\x48\xcb\xe4\x0e\xcb\xfa\xc2\x07\x28\x8a\x43\xf3\x96\x40\x58\xea\x24\x6a\x3d\x98\x65\x17\xe3\x43\x79\x75\xda\x17\xbf\x38\x5c\x0d\xfe\xed\x70\x35\xf8\xe0\x68\x51\xec\xcc\xba\x34\x86\xa0\x84\xf5\x43\xea\x68\xe5\xf2\xfc\xf9\xf3\x42\x29\x25\xdf\x7b\xef\x3d\x51\x9c\xb0\xde\x04\x74\xeb\xc6\x49\x9b\xd0\x06\xdc\xfa\xca\x6c\x0b\xb6\xdb\xd4\xd5\xb6\x9c\x36\xbc\x44\xe7\xad\xe2\xed\xb5\xef\xf1\x95\xaf\x7c\x45\x1f\xa4\xab\x9f\xb9\x16\x97\xa8\x9b\x52\x7f\x63\x14\x3d\x59\x58\x5b\x22\x4e\x27\xc6\xa9\x14\xf3\x40\x85\x0b\x64\xcb\xf5\xc3\x9d\xea\xb1\xa4\xb4\xce\x5c\x02\x17\x5e\x47\x61\xb8\x28\x2d\x30\xd6\xfe\x5e\x30\x9a\x32\x11\xc2\x28\x13\xeb\x27\xc6\x9d\xa7\x16\x92\xe0\x5f\x87\xdd\x6c\x0c\x7b\xaa\xc8\x8c\xf1\xd5\xd5\x55\x5c\xbd\x7a\x55\xae\xae\xae\xe2\xca\x95\x2b\x6e\x5f\x99\x71\xab\xfb\xa4\x9f\x04\x4b\x27\x47\x9d\xb3\xf1\x4c\x6c\x09\x50\xa8\xdb\x64\xb5\x8f\xbf\x2b\xca\xf7\x57\x2c\xde\x74\x95\x2a\x24\xd7\xbc\x26\xcf\xde\xb3\xec\x5b\xf3\xfe\x45\x5f\x69\x58\xc7\x67\x26\x38\x28\xd2\xdd\x12\x48\x5a\x5a\x48\x82\xad\xc1\x34\xdc\xe8\x48\x71\x3b\x0d\x14\xb7\xaa\x71\xc5\x02\x8f\x3f\xfe\x38\x46\xa3\x91\x78\xf8\xf0\x21\x6a\x42\x93\x82\x68\x3d\xaf\x72\xce\x75\x85\xda\x9c\x26\xd8\x54\x79\x18\x86\xe2\xc2\x85\x0b\x60\x1a\xa2\xfe\x35\x04\x4d\x44\xa2\x23\x29\x5a\x9c\x86\xab\x61\x46\x4b\xdc\xc4\xa5\x09\xa8\x04\x14\x65\xa7\x96\xf1\xdc\x2c\xcd\xcd\x30\x40\xc9\xa4\x35\xc1\x9a\x4b\x13\xca\xa9\x21\x87\xf2\xb5\xf5\x85\x4f\xfe\xcd\x15\x60\x9b\xc4\x15\x41\x1e\x75\xb2\xbd\x83\x6e\xfa\x48\x01\x29\xa8\xdc\xb3\x05\xb0\x1d\x72\x5b\x4c\x15\xf9\x18\x47\xd5\xb7\x68\x93\xb7\xe9\xf9\x71\xac\x0a\x6d\xef\x7d\x42\xfe\xcb\xb6\xc1\x57\x57\x15\x2d\xd6\x31\xf5\xaa\xbe\x6b\x3b\x60\xda\x94\xdd\xf4\xac\x36\x3e\x0c\x43\xf1\x95\xaf\x7c\x05\x2f\xbc\xf0\x82\x6e\x27\x07\x8a\xd6\x06\x5e\x04\x84\x22\x55\x71\x74\x24\x97\xfa\xfb\x72\x7b\xe5\xde\xec\xb9\xf8\x40\xbe\x14\x26\xea\x12\x29\xac\x41\x21\x2e\xb1\x44\xa9\xa1\x71\x33\xb3\xd1\x4c\x8d\x59\xb3\xdc\x46\x1d\x40\x39\xe6\x8a\xac\xee\xf4\x37\x80\x32\x2f\xe3\x90\x25\xce\xb7\x13\x1b\x60\xc4\xe6\xe9\xf3\x8a\x14\x08\x14\x07\x0a\x5b\x62\x9a\x03\x98\x68\x2c\x2f\xf7\x86\xd9\xbf\x1e\xac\x87\xef\x1c\xae\x06\x9f\x4c\xfb\x62\x2f\xeb\xd0\x04\x84\xa4\xe0\x23\x5a\x29\x28\x8a\x50\x72\x7b\x7b\x5b\x00\x90\x8b\x8b\x8b\x18\x8d\x46\xe2\x8b\x2f\xbe\x68\xe2\x5d\xae\x40\x6f\x43\x87\x4d\x20\xc0\x97\x8e\x87\x36\x74\xdf\x44\xdf\x4d\xf9\xdc\xeb\x26\x10\xe7\xa6\x69\x2a\x6f\xee\xfa\xca\x95\x2b\x38\x71\xe2\x84\x65\x19\x44\x09\xb6\x43\x00\x51\x3f\x09\x96\x96\x26\xe1\x85\x40\xd2\x00\x0a\xa2\x04\x09\x30\x3e\x16\xfa\xc7\x65\xbb\xca\x15\xd0\x04\xc6\x92\xed\xe3\x5b\xac\x03\xed\x1c\x70\xc3\x29\xd2\x36\x62\xd8\xc2\x9c\x2b\xa9\x81\x44\x7f\x71\x1a\x5c\xda\x1c\x46\x1b\xc3\x93\x47\xfb\xc8\xfd\x17\xc3\xc2\x05\xc0\xa2\x9b\x95\x95\x15\xb1\xb2\xb2\xe2\xe9\x4a\xd3\x57\x7a\x2f\x9b\xa8\x9b\xd2\xd2\xf2\x24\xdc\xca\x7d\x7d\xec\x36\xf9\x96\x79\x5b\x16\x23\xc0\x7e\x37\x93\x9e\xac\x7e\xd3\xf9\x74\xff\xb0\xe4\xb0\xfb\xbf\xe4\x03\x65\xb5\x7c\xab\x91\x92\x6f\x08\x45\x51\x6f\x16\x6c\x2c\x4d\xc2\x8d\xde\x4c\xf4\x87\x22\x1d\x3b\xfe\x76\xfa\x5d\xe5\xe5\xcb\x97\xc5\xbd\x7b\xf7\x64\x03\x70\xf1\x29\x7f\x55\xf1\xb2\xca\x39\xb7\x8d\x86\x50\x65\x85\x11\x00\x64\xb7\xdb\xc5\xef\xfd\xde\xef\x09\xe6\x88\x6a\x84\x17\x9f\x97\x0f\x24\x45\xbd\x99\x58\x0a\x25\xf5\x8b\xbe\xb1\xbe\x96\x72\x3e\x86\xed\x94\xc5\xcf\x2b\x2a\xcf\xa4\xe0\xd6\x94\x39\x07\x5f\xfd\x91\xcc\x3d\xb3\xe8\x00\xe6\x7f\x57\xab\x04\x8b\x35\x60\xa7\xb0\xfa\x00\x0a\x19\xa9\xf4\x30\x92\x7b\x47\x1d\x6b\xb7\x5c\xd7\xda\xf2\xbf\x32\xb4\xd1\xf4\xda\x30\x61\x5d\x96\x9b\xfe\xcb\x5a\x78\xea\xb4\xc2\xba\xf2\x5d\x0b\xc5\x71\x2c\x19\xc7\x79\x47\xf7\xba\xa9\x0c\x17\x78\x55\xe5\xad\x13\x24\x3c\x9f\xdb\x47\x26\x5f\x14\x45\xe2\xfc\xf9\xf3\x78\xed\xb5\xd7\xcc\xc0\xf7\xec\xfb\x20\x94\x52\x11\x29\x44\x9d\x44\x0d\xe2\xa1\xdc\x58\xba\x9f\x5e\x59\x7c\x90\xbd\xd6\x99\xc8\x1b\x42\x62\x0b\x0a\x11\x57\x38\x6d\x5c\xce\x1d\xfb\xc0\xd4\x28\xa6\xdd\x32\xb1\x51\x35\x45\x6a\x5d\xb3\x32\xca\xe5\x99\xe5\x68\x29\xb7\x35\xb0\xc1\x3e\x98\x66\x69\x1c\xd8\xf2\x3a\x23\x92\x6a\xb3\x33\xc5\x4a\x90\x66\xdb\xd1\x58\x5e\xec\x0d\x83\x1f\x0d\x4f\x86\xef\x8d\x57\x82\xdb\x49\x4c\xc3\xc2\xff\x25\x61\x7d\x2b\x51\x80\x98\xed\xed\x6d\x6c\x6f\x6f\xe3\xde\xbd\x7b\xf2\x87\x3f\xfc\xa1\xb8\x7f\xff\xbe\xe7\xb3\x7c\x29\xab\x47\x55\xfe\xe3\x82\x9d\x36\xf7\x75\xed\xaa\xb3\x6a\xb6\x01\x22\x55\xcf\x7d\xe3\xd7\x2d\xcf\x67\x25\xb4\xe2\x9d\x65\xfa\xf9\x39\x3c\x0a\xa1\x50\x88\x56\xc7\x9d\xb5\x78\x26\xce\x09\x85\x88\x2f\xc9\x35\xc1\xdc\xdb\x4b\x81\xf3\x82\x61\xe8\xcb\x67\xfa\xe3\xae\x03\x96\x90\x37\xa4\xed\xec\x92\xee\xd0\x73\x4e\xc2\xae\xe0\xce\x69\x98\x14\xe2\x78\x26\xce\x6c\x0d\xbb\xdb\x1f\x9d\x3c\xfa\x04\x85\x3f\x19\x30\xb7\xf0\xa4\xaa\xcf\x2d\x8b\xa9\xf6\xef\x0c\x25\x0d\xa2\x54\xac\x09\x50\x3c\x07\xb0\x8a\x77\x28\xde\x6e\xbe\x54\xb7\xef\xe6\xf4\xef\x62\x04\x2a\xe7\xbd\xad\x22\xd8\x98\x54\xba\xb6\x7c\x35\xad\xd2\x8d\x80\xe6\x25\xf9\x41\x8e\xc5\x17\x10\x51\x46\x2b\x0b\x89\x38\xdd\x9b\x89\xc1\x41\x4c\xfb\x60\x8b\x03\x58\x5f\xf0\xdd\x73\xc1\xe2\xeb\xc6\x5e\x1d\xa0\x96\x40\x39\x55\xd4\x76\xd0\xd4\x0d\xd4\x2a\xe6\x2d\x9c\xeb\x92\x11\x83\xc2\x50\x52\xdc\x9b\x89\xa5\x40\xe5\xc0\x85\x9b\xa4\x01\x58\x44\xac\xca\x88\xd2\xb1\xd6\x68\x81\xca\x32\x81\x95\xbf\xfc\x79\x09\x4d\x34\x51\xcc\xfb\xb6\xb8\x9f\x56\x37\x0a\xa6\x51\x25\xa8\x2f\x59\x7c\x2a\xd4\x64\xd4\x4d\x77\x67\x81\xe4\x80\x45\xfb\xb8\xcc\xed\x51\x91\xa6\xa9\x8b\x40\x7f\x1b\x2d\xee\xb7\xd5\x12\x7d\x40\xa1\x0d\x61\xb5\x01\x2d\x2e\x53\xad\xcb\x53\x05\x58\x7c\xf5\x57\xb5\x87\xc7\xfb\xde\xb5\xea\x9d\xaa\xee\x75\x5c\xd5\xfb\xf1\xf6\xb8\xf5\xb9\xed\xaa\x64\x6c\x9d\x4e\x07\xe7\xce\x9d\xc3\xeb\xaf\xbf\xce\xb7\x04\xd7\x7f\x9a\x41\x86\x04\x8a\x84\x44\x14\x1d\xa9\x95\xc5\x07\xe9\xf6\xf2\xdd\xf4\xe5\xde\x41\xf6\x46\x30\xc3\x15\x80\x59\x58\x34\xb3\x22\x9b\x49\xcf\x0b\x0b\x47\xad\x33\x4c\xbe\x74\x5a\x24\x26\x08\xc0\xc6\x98\x2f\x98\x95\x1d\xba\x2c\xcb\x19\x8d\x4a\xc1\xe2\xa8\xd6\xa5\x32\x50\x66\x21\x42\x1c\x64\xd8\x16\x47\x6a\x23\x9c\xa5\x97\xba\x87\xf2\x07\x07\x27\xc3\xff\xb9\x7f\x3a\xfc\x60\xda\x13\xfb\x2a\x30\x4c\x99\x9f\xfd\x65\x78\xd5\xa9\x53\xa7\xc4\xd7\xbf\xfe\x75\xf9\xfd\xef\x7f\x1f\x8f\x1e\x3d\x72\x9b\x5a\x67\x89\x70\x43\x93\x65\xe2\x38\xf4\xd6\xa6\x8c\xba\xb6\xf0\x67\xbe\xb1\x5a\x37\x36\x81\x79\x5a\x06\xe6\xfb\xe2\x38\xe3\x05\x00\xb0\xbc\xbc\x8c\x30\x34\x9e\x07\xb6\x80\x2e\x68\x38\x94\x14\xad\x8f\xc3\xcd\x6e\x46\x9b\x54\xd4\xad\xf9\x33\x5f\x78\x61\x8b\x53\x94\x56\x41\xc0\x58\x0d\x94\xb6\xda\xc1\x5e\x4d\x9a\x97\x69\x50\x08\xca\x22\xe6\x85\xb7\x49\xaf\x69\x8e\x3d\x2b\x72\x41\x3b\x0b\x10\x94\x08\x25\x0d\x96\x8f\xc2\xc7\x8b\x29\xae\x48\x41\x4d\x0a\x67\xf8\x94\xd7\xc1\xcf\x35\x62\x7f\x00\x93\x7d\xc5\xc6\xab\x61\x94\x51\xbf\x23\x69\x09\xf9\x1e\x49\xd6\xd4\x15\x00\xa6\xa4\xb3\x31\x52\x76\x89\xf3\x3e\xe5\x5e\x2d\xda\xaf\xcc\x9d\xb5\x00\xf7\x5b\xd1\x63\xd9\x28\xf2\xa5\x7c\xe3\xd6\x18\x6e\xbc\x2a\x5b\x05\x08\x49\xfd\x6e\x2a\x56\xa2\x54\xe4\x5b\x28\xe4\x96\x24\xfe\xcd\x8b\xef\x61\x32\xb6\x91\x15\x4d\x4a\xae\x00\x20\x7d\x02\x80\x33\x59\xfe\xcb\x83\x74\xd2\xd6\xc5\x5b\xd7\xaa\xdc\x5a\x5c\x10\x20\x42\x49\x71\x3c\x0b\x56\x84\xa4\x38\x67\xb6\xf3\x7c\x54\xa9\xd2\x22\x62\x9c\x03\x75\x5a\xa0\xfc\x38\x96\xb9\xba\xbc\x54\xc8\x09\x3e\x37\x7b\xd9\x0d\xce\xfd\x65\xca\xc4\x96\x19\x8e\x17\x53\xcd\xab\xa1\x00\x39\x0b\xd4\xf8\x51\x9c\xee\x14\x8e\xb9\xa9\x52\x4a\x7a\x40\x8b\xd1\x18\x1e\x3d\x7a\x84\xbf\xfb\xbb\xbf\x6b\xd2\x66\xaa\xfa\xde\x97\xc7\x97\x96\x97\x53\x97\xaf\x8d\x96\x56\xd7\x96\x3a\x61\x5e\x07\x70\xab\x9e\x35\x85\x2a\x60\x55\x57\x46\x55\xdf\xba\xcc\xa5\x2e\x8f\xfb\x8c\x83\xd1\xa6\xfa\xab\x82\x0c\x82\x00\xdb\xdb\xdb\x78\xfd\xf5\xd7\x0b\x66\x5e\xae\x12\x62\x7f\x11\x01\x31\x49\xd5\xef\x1d\xc8\x8d\x13\xb7\x93\x67\xd6\x3f\x9b\x7d\x6f\x61\x3f\xfb\xf3\x70\x86\x67\xa8\x00\x2d\x5a\x63\xe2\x84\xae\x99\x1a\x7f\xe4\x3e\x75\x43\x3e\xa4\x54\x69\x0c\xc9\xdb\xc5\x7c\xc2\x7c\x19\xd4\x1c\x26\xc9\x7f\xed\x3c\xca\x2d\x82\xd8\xb8\xa4\xf9\xa1\x46\x0a\xfd\x60\x86\xcb\xbd\x03\xf9\xbf\xad\x7e\x3e\xfb\x3f\x4e\xfe\x3a\x79\x69\x61\x3f\xdb\xa0\x4c\xf5\x09\x88\xa1\x94\x5e\xce\x6d\x76\x67\x45\xce\x6b\x70\xe2\xc4\x09\xf1\xed\x6f\x7f\x5b\xef\xa5\x71\x9c\xd0\xe6\x1b\xb6\x19\x9f\xbe\xeb\x3a\xab\x87\x9b\x66\x4e\xf1\x63\x7f\x2e\x90\xe7\xe5\x55\x01\xf9\xaa\xf6\xfa\xda\x57\xcb\xcb\xf9\xf5\x5b\x6f\xbd\x85\x93\x27\x4f\xfa\xac\x2e\x86\x8e\x49\x21\x5a\x19\x77\xce\x06\xb9\x75\x5d\x28\x43\x92\xe5\xc9\xc4\xf9\xff\x05\x54\xe0\xd6\x15\xc0\x43\x5b\x64\xe8\x59\xd9\x04\xc5\x80\x0e\xe6\xca\xa0\x82\xe7\x5b\xca\xb1\x91\x03\x85\xb4\x2e\x1e\xf0\x32\x84\x42\x14\xcf\x82\x8d\x38\x15\x31\x98\xc5\x45\xff\x31\xcb\x68\x9e\x5c\xcd\x8d\x13\x23\xff\x88\x28\x0c\x25\x45\x51\x2a\xfa\xa1\xa4\xbe\x50\x14\x2a\x4b\xf6\x99\x06\x59\xc6\x25\x47\x87\x36\xf7\xaa\xb0\x94\x9a\xf7\x63\x69\x4a\xdf\x14\x67\x43\x57\xd6\x67\x34\x37\x66\x4b\x8b\xa9\x4e\xaa\x4c\xff\x98\x34\x61\x28\x29\x0e\x25\x45\x98\x07\x2d\x16\xed\x14\xfb\xdc\x54\xd1\x63\x15\x80\x46\xc5\xbd\x17\x78\xf8\x08\xbf\x2a\x3d\x8f\x73\x35\x6b\x00\xe0\xfe\x1c\x86\x29\x17\xd7\x22\x90\x14\xc5\x33\xd1\x8f\x33\x5a\x09\x14\x45\x16\x42\x66\x15\x14\xba\x5a\xc9\x94\x1d\xad\x4f\x7f\x62\x8d\xc8\x2d\x8d\x0f\x60\x00\xc7\x66\x89\xce\xa9\x0e\x73\xe5\x95\xef\x60\xbf\xb0\x4b\x8e\x92\x90\x4e\x3a\x72\xff\xa0\x2b\x87\x99\x40\x02\xca\xf7\x9e\x60\x7e\x2d\x52\xef\x43\xd1\xe0\xdf\xe2\xd3\x7c\x9a\x18\xa8\x4f\x78\x56\x95\xd7\xf6\x59\x55\x1d\x6e\x5e\xdf\x7d\x1b\x4d\xf6\x38\xf9\x8f\xa3\xbd\xd6\xd5\x5d\x55\x67\x9b\xfe\x6b\xd3\xae\x36\x69\xbd\x7d\x72\xe9\xd2\x25\xbc\xfe\xfa\xeb\xfa\xd6\x30\x36\x94\x4c\x3f\x02\x10\x8b\x14\xfd\xa5\xfb\xe9\xb9\x8d\x4f\x92\x37\x56\xbe\x48\xff\xcf\xee\x38\xfb\x8e\x90\xd8\x9c\x6f\x76\xa9\x95\x99\x18\x66\x69\xb1\xf9\xa9\x63\x2f\xf7\x94\xe3\x39\x8f\xbd\x1c\x8b\x56\x51\x1e\x83\xb6\x11\x0a\xce\x48\x23\x8b\x6d\x7a\x5e\xc1\x1d\xab\x10\x42\x62\x3d\x3a\x52\xbf\xb7\x7c\x3f\xfb\x7f\x36\x7f\x95\xfc\xd1\xea\xdd\x74\x4b\x64\xe8\x03\x14\xa3\xd8\x23\x04\xcc\x42\x55\xf0\x1a\x0c\x06\x03\xf1\x67\x7f\xf6\x67\xf3\x75\xd4\x87\x36\x96\x18\x5f\x68\x0b\xbc\x9b\xd2\x57\xd1\x4c\x15\xe0\x6f\x2a\xaf\x0a\xdc\x34\xd5\xdd\x94\xc6\x8d\x73\x05\x97\x01\x2e\x42\x51\xd4\x95\x62\x85\x14\x45\x00\x5b\xf1\xe3\x5a\xc9\x75\x69\x8e\x74\x26\xf7\x86\xca\xc4\x04\x72\x00\xb9\x1d\x8c\x40\x66\xc6\x3f\x28\x16\x5f\xc4\x11\xaf\xd7\xca\x4b\x20\x45\x61\x37\xc3\x5a\x3c\x0b\xfa\xe4\x80\x64\x5f\x5f\x38\xf2\x46\xcb\x3f\x7d\x2d\x3a\x19\x45\x71\x2a\xfa\x81\xa4\x3e\x29\x08\x63\x05\xd1\xb5\xb2\x65\xaf\xe4\xfc\x1a\x99\xa7\xb8\xf2\x5e\xb6\xdf\x3b\x92\xbd\x0a\x45\x45\x60\x7d\x61\xd9\x05\x50\x02\x21\xa1\x10\x85\x19\xf5\x03\x49\x1a\xc8\x55\xf5\x05\x5e\x7a\xe9\x25\xf1\xf4\xd3\x4f\xbb\xd1\x6d\xe4\x93\x37\xde\x07\x4c\xea\xb4\x81\xba\x41\xe4\xad\x48\x23\x4c\x7e\x66\x0a\x0a\xe7\xa4\x28\xa3\x68\x69\x1a\xac\x74\x52\x61\x9d\x08\xed\x4e\xd6\x28\xe7\xa3\xb8\xe6\x10\x46\xbf\x25\x53\xe4\xd6\x16\xf7\x2b\xaa\xf2\x57\x51\x09\xbd\xf5\x9e\x2e\xbc\x3c\x5f\x70\x89\x48\x0a\x95\x8c\xa3\x6c\x6f\x14\xa7\x0f\x91\x83\x14\x77\x35\x11\xef\x0f\x7e\xdb\xc4\x64\x7c\x5a\x55\x95\xd6\xd3\x54\xce\x71\x9e\x35\x95\xed\xd3\x02\xdb\x94\x51\x65\xdd\x68\xa3\xd5\x35\xb5\xc9\xd7\x9e\x26\x8d\xb1\x4d\x5f\xfa\xda\xec\xc6\xd5\xd5\x09\xf8\xfb\x5a\x00\x10\xd7\xaf\x5f\x17\xaf\xbc\xf2\x0a\xb8\x25\x52\x29\x15\x16\xf7\x11\x80\x58\x29\x15\x87\x13\x39\x58\xfb\x7c\x76\xe5\xe4\xa7\xb3\xff\x7d\xf1\x41\xfa\x57\x9d\x89\x7a\x05\x8a\x06\x85\xcd\x1c\xdc\xae\x68\x02\xd9\xd0\xc2\x62\xd2\x73\xb1\x0c\xb0\x2b\x38\x8c\x8f\xe9\x7a\x16\xaa\x77\x46\x09\x01\x76\x7b\x58\x7c\x15\x36\x71\x40\x94\xb9\x55\x1c\x1a\x59\x89\xe2\x60\xa6\xae\xf4\x1f\x65\xff\xf7\xc9\x4f\x92\xff\xeb\xe4\x67\xc9\x95\x30\x51\xc5\xbe\x34\x06\xbc\xcc\x59\x5e\x82\x20\xc0\x5f\xfd\xd5\x5f\x09\x67\x47\xd7\xb6\xa1\x09\x5c\xfc\x36\xe5\xb4\x01\x1d\xc7\xa9\xbb\xca\xd2\x72\x5c\xf0\xe5\xeb\xa3\xa6\x32\x2a\xc7\x3b\x15\xce\xe4\x24\xd1\xe7\x46\x05\x4e\x4e\xee\x35\xf8\x35\xe3\xcd\x73\xcf\x95\x82\xf2\x51\x8a\x2a\x49\xd2\xd0\x34\x39\xc6\x15\xb7\x1c\x4d\xe6\xaa\xa4\xbd\x92\x26\x21\x48\x51\x3f\x94\x14\x43\x55\xf2\x00\x51\x94\x25\xf2\xf2\xe6\xf8\x7d\xa9\xb8\x2b\x0a\xc3\x4c\x74\x49\x21\x54\xe4\xb4\x4f\x79\xfa\xc0\x7a\xbf\xb2\x43\xb8\x8c\x53\x45\xe3\xc9\xc9\xc3\xfb\xc7\xfa\xe3\xb2\xd0\xca\x53\xbe\xfd\x9c\xf8\x54\x05\x60\x52\x24\x84\xa2\x28\x50\x88\xc8\xee\x0f\xaf\xd5\xc5\xe9\x87\xa6\x50\x9b\xa6\xce\xe2\xa2\x9f\x1f\x7b\x70\xae\xad\xad\x89\x3f\xf9\x93\x3f\xf1\xd6\xa5\xb5\x20\x00\xa2\x93\x89\xb8\x9f\x04\x8b\x1d\x49\x03\x4e\x90\x36\x71\x16\x1f\x41\x33\x32\x46\x58\x00\x2c\xe2\x73\x2d\x25\x3a\x92\x9b\x12\x35\x71\x94\x75\x31\x8e\xca\x4c\xd6\x73\xe5\x54\x04\x05\x20\x25\x95\x8e\x3b\xd9\xde\x34\x94\x13\x94\x9b\xcd\x99\xe9\x22\x30\x90\xa7\xf7\x74\xf1\x14\xd5\xa4\x11\x1d\x07\x95\xb6\x09\x3e\xab\x4e\x1d\x68\x6d\x53\xaf\xcf\xfa\xc6\x09\xd8\xa5\x2d\x77\xe0\x37\x95\x59\x65\x62\xac\x2a\xa3\xca\x52\xd4\x16\x38\xf1\x3c\xfc\xb9\x4f\xd8\x54\xd5\x53\x29\xf4\x9e\x7b\xee\x39\x7c\xed\x6b\x5f\x9b\xf3\x67\x29\xee\xb5\x10\x8e\xbb\x47\x6a\xe9\xc4\xed\xd9\xb5\xb5\x3b\xb3\x3f\xed\x0d\xb3\x3f\x10\x29\xb6\x09\x4a\x94\x5a\x14\x37\x31\xda\x76\x0c\xcb\xf2\xec\x4a\x0c\x7d\x67\x94\xd8\xc2\xd8\x4c\x4e\x3e\x37\x90\x0b\x7e\xc0\x54\x40\x96\xc5\x33\x18\x8d\x20\xe1\x9a\x33\x03\x42\xa5\xb6\xed\xa9\xd7\x44\x2b\x41\x12\x6b\xdd\xb1\xfc\x83\x95\x3b\xe9\xdb\xeb\x9f\x25\xd7\xa2\x71\xb6\x06\xa9\xe6\xc0\x0b\xf7\xb5\x20\x22\x7c\xef\x7b\xdf\xc3\xe2\xe2\x22\xd0\xce\x9a\xa9\xc3\x97\x1d\x67\xc7\x15\xfc\x55\xf4\xdd\x54\x6e\x53\x39\xbe\x7c\x6d\xca\x68\xfb\xde\x75\xfc\xac\x04\x2f\x0a\x61\xa0\x28\x36\xcf\xc8\x21\x5f\x55\xde\x73\xeb\x0a\x15\xc6\x07\xcb\x8f\x45\xf1\xe7\xf3\xc8\x58\x29\x65\x6f\xe4\xc6\x52\x58\x96\x1b\xfe\x9c\xca\x7d\x8d\xc8\xd4\x61\x5b\x4d\x48\x51\x24\x54\x0e\xc2\x30\xcf\xc3\xac\xb2\xf8\xaf\xaf\x3f\x24\x20\x24\x79\x21\x97\x71\x99\xe0\x23\xdb\xfc\xaa\x62\xa4\x90\x9d\x1e\x45\x9b\x95\x76\xbe\x37\x43\xcc\x35\x05\x94\x56\x1a\x23\xef\x78\x7e\x9e\x5a\x59\x3f\xf9\xb3\xa2\xbb\x15\x41\x4a\xa1\xa4\xd4\x65\xd8\x27\xcc\xd7\x85\xb6\x33\x09\x95\xe1\xb7\xca\xec\x94\x61\xca\x12\x42\xa0\xdf\xef\x9b\x7b\xae\x4d\xf2\xbf\x30\xa3\xa8\x97\x04\x4b\x81\xa4\x7e\x8e\xfe\x1c\x62\x52\xa5\x0e\x49\x96\x2d\xac\xfa\xa3\x6a\xc6\xc8\xcd\x5a\xf9\x33\x8f\xf9\x8c\x59\x66\x74\x9a\xe3\x04\xcd\x80\x67\xa1\x1a\x1f\x74\xb3\xdd\x69\xe9\xdf\x52\x77\x60\x1c\x76\x76\x76\xf0\x3f\xfe\xc7\xff\x70\x8b\x3b\xae\x36\xd3\x26\x5d\x13\x40\xaa\x6b\x43\x15\x18\x68\xca\xef\x0a\xf6\x36\x53\x34\xfa\xaf\x0d\x68\xd0\xbf\x4d\xa0\xba\x0e\xed\x37\x31\x65\x97\xc1\xd7\xb5\xcf\xf7\x7e\x4d\xdf\x4a\x3c\xff\xfc\xf3\xe2\xf2\xe5\xcb\x88\xa2\x28\x67\xea\x6c\x6f\x16\x00\x11\x15\x27\xe8\xc6\x87\x72\x69\xed\xf6\xec\x77\x97\xef\xa5\x7f\xd2\x1d\xc9\x37\x44\x86\xad\x3c\x0d\xa3\xfa\x82\xb3\x2b\x7d\x0f\xbf\xb6\x56\xde\x50\x61\x95\x2c\x05\x43\xf9\x98\x59\x60\x14\x00\x2a\xb4\x46\x45\xde\x32\xad\x5f\x42\xe9\x10\xe8\xec\x41\xce\xdb\xa6\x7d\xd2\x8c\x7f\x99\x76\x3a\x80\xd6\x34\x4b\xd6\xa9\xff\xe7\x1a\x28\xe5\x5c\x56\x90\xc4\x5a\x34\x96\x6f\x2c\xdf\x4b\xff\xf4\xc4\xed\xf4\x99\x78\x24\xd7\x49\xaa\x3e\x18\x78\xa1\xe2\xac\x26\xcd\x83\xfa\xfd\xbe\xf8\xd6\xb7\xbe\x85\x13\x27\x4e\xd4\x01\xe1\xba\x70\x5c\xab\xc8\x97\xd5\x38\x75\xfe\xb6\xf1\x75\xf5\xf0\xf1\xe2\x2a\x15\xfc\x79\x53\xbd\x4d\xf5\x99\xb2\xf8\x99\x74\xba\xef\xc3\x4c\x44\x42\x22\x9e\xcb\x6b\x48\xb9\xf4\x91\xca\x59\x2b\xcd\x27\x41\xe1\xfb\x42\xec\x1a\x8c\xef\xeb\x74\xe4\x80\x60\x82\x05\x98\x7d\xbe\x8c\xb6\x3d\xa3\xb4\x66\xb0\x20\x01\xc8\x4c\x28\xa8\x7a\xcb\x82\xab\xa4\x9b\x78\x36\xf3\x80\x4c\x28\x39\x0b\x54\x2a\x49\xa5\x5c\xfa\x58\xa0\xcd\x29\xc0\x2c\x48\xb1\xfa\xc4\x1d\xe3\xca\x80\x0b\x23\x43\x8b\x71\x55\x46\x73\x43\x80\x32\x43\xd5\x1a\x79\x8a\xf5\xa3\x6b\x8a\x52\x40\x46\x2a\x99\x06\x72\x3c\x0d\x65\xa2\x60\x7c\x7b\xaa\x42\x95\xd2\x08\x16\x5f\x37\x2e\xac\x67\xbe\x7d\x5c\x8e\x63\x65\xf1\xa5\xb5\x06\xab\x3b\xcf\xc7\x35\xa0\x8e\xa4\x38\x4e\xc5\x52\x31\x47\x56\xa6\xd5\x1d\x68\x65\x55\xa6\x23\x4d\xd9\xd6\x63\x63\x5a\x61\x1f\x9e\xac\xb2\x7c\xdd\xea\x8b\x73\x3d\xb6\x75\x24\xf3\x18\x37\x99\x25\x21\x4d\x02\x39\x1e\x75\xd3\x7d\xbd\xa2\x88\xad\x72\x30\x53\x45\xc4\x76\xcd\x9d\xcd\x66\xd8\xdf\xdf\xaf\x62\x3e\x55\xcc\xb4\x6a\x4a\xae\x09\x28\xf0\x38\xce\xbc\xdc\x3c\x6d\xe2\x7c\xe5\x37\xdd\xfb\xea\x3f\x8e\x35\xa7\xad\xf5\xa9\x2e\xbe\x2a\xcd\x71\x80\x56\xdb\x6b\x7e\xef\x8d\x7f\xfe\xf9\xe7\xf1\xc4\x13\x4f\xa0\xd7\xeb\x19\xa6\xa7\x97\x8d\x16\xbb\xe1\x46\x00\xe2\x68\xa2\x96\xd6\x3e\x9f\xfd\xee\xd2\xfd\xec\x3f\x44\x63\x79\x43\x64\x58\x27\xb6\x69\xa4\xa1\x45\xbd\xef\x11\xab\xa8\x64\x66\x7c\xcf\x16\x18\x30\xc1\x4f\x5e\xe7\x1a\x16\x19\x20\xa1\xb5\x4f\x67\x3d\x9f\x8f\x69\x2a\xbd\xba\x83\x9d\x17\x03\x3d\x8e\x34\x03\x84\x5d\x19\xab\x07\x26\xaf\x1e\x5b\xd6\x08\xce\xeb\xe1\xed\x2f\xae\x89\x94\x10\x92\xd6\xba\x63\xf9\xca\xf2\xce\x2c\x04\x54\xb4\x7f\xba\xf3\xd3\xa3\x81\xd8\x2d\x3c\x06\x8a\xbc\x04\x94\xfb\xbd\xc8\xd5\xd5\x55\xc1\x0e\xc4\xe3\xdf\xff\xcb\xf0\xc1\xa6\x74\xbe\x7a\xda\x04\xdf\x58\xad\x2a\xa3\x2a\xbe\x6a\xec\xb8\xe3\xf0\xd8\x56\x75\xcc\xf7\x95\x15\xe6\x78\x25\x20\x40\x1c\x70\x97\x7c\x96\x83\x12\xbb\x0c\x7f\xe5\xb6\x4c\x61\xb4\x52\x95\x9e\x95\x37\xb7\x37\x8a\x27\x65\x8e\xbb\x6d\x60\xa3\x81\x4c\x1a\xa8\x24\x15\x4a\x16\x0f\xac\xf7\x76\xde\x57\xdf\x5b\x69\x98\x25\x46\xa4\x42\x61\x1a\x66\xb3\x4c\xa8\x44\x01\x92\xac\xf2\x6a\x5e\xc6\x80\x17\x17\xec\xc0\x00\x3a\xbb\x18\x7b\x5c\xf1\x9c\x7c\xd5\xd1\xdc\xd4\xad\x55\x8c\x69\xb7\x89\xcb\x84\x9a\x1c\x75\xe4\x68\x12\xca\xc4\xe9\x8f\xe3\x2a\x8c\x3e\xab\x75\x15\x5f\x16\x40\xbe\xaa\xa8\xad\xe6\xd9\x14\xbc\x0d\x62\x3e\x2e\x16\x22\xa5\xfc\x8c\xa2\x1c\xb8\xe4\x27\xd2\xe6\xf3\x69\xca\x36\x0b\x96\x7f\x79\x64\x39\xe3\xc6\xae\x0a\xaa\xb5\x9f\x94\xce\x88\xdc\x3a\x63\x01\x47\x86\x5e\x4d\x1c\x6c\xc2\x2e\xd6\xf0\xdb\xa6\x3f\x6d\x82\x53\x80\x24\x95\x4e\x43\x39\x3c\xea\xc8\x03\x49\xfe\x93\x6d\x79\xdf\xd4\xa0\xd2\x2a\xd0\xc2\xf3\xfb\xac\x1f\xbe\x3c\x55\x56\x12\xce\xa8\xda\x98\xb1\xab\x88\x6c\xce\xec\x59\x91\xae\xea\xbe\xea\xda\x6d\x57\x95\x46\xe8\xc6\xb9\xfd\xe3\xfb\x6d\xaa\xd3\x37\xe8\x7c\xf9\x9a\x2c\x51\x75\xe9\xc5\x73\xcf\x3d\x27\x5c\xd0\x02\x7e\x76\x09\x51\x44\x40\x14\xce\xd4\x60\xed\xf3\xd9\xd5\xc5\x12\xb4\x6c\x40\x21\xe4\x26\x42\xb3\xc2\xa7\xa0\x7d\x9f\x45\x84\x34\x81\xcf\x99\x1b\xcd\x7f\x16\x8b\x54\x4e\x5a\x9d\xcc\xcd\x3e\x67\xa9\xa4\x52\x58\x99\xf4\x16\x57\x65\x83\x06\x80\x22\xb6\x4f\x87\x11\x26\xdc\xaa\xe3\xbb\xd2\x77\xa5\xad\x95\x50\x38\xed\x8e\xd5\x0b\x4b\xf7\xb3\xb7\x96\x76\xd2\xab\xf1\xa1\x5c\x83\x42\xac\xf2\xd5\x46\x96\xc3\x2e\x0a\x6d\xf7\xfa\xf5\xeb\x58\x5f\x5f\xaf\xfb\xd6\xbe\x31\xe2\xa3\x73\xd7\x72\x71\x1c\x60\x51\x45\x93\x6e\xf9\xbe\xeb\x2a\x0b\x49\x13\xfd\xba\xe9\xdd\x74\x75\x9a\x2f\xb7\xdc\xf0\xb8\xb9\x77\x63\x42\xdc\xac\x34\x49\x85\x92\xa9\x90\x89\x49\x4f\x25\x1f\x2e\x33\xce\x5f\xba\xb4\x6d\x3d\x27\x1b\xe0\x96\xfc\x9d\x5b\xfa\xca\x0b\xbe\xe9\xa1\x91\x01\x9c\xd6\x94\x53\x2f\xbf\x27\x95\x26\x81\x1c\x4d\x43\x99\xaa\x1a\xb0\xc6\xef\xab\x82\x52\x0a\x69\xa0\xd2\xa3\x8e\x1c\x4f\x3b\x6a\x24\x49\xa5\x95\xed\xf2\x8c\x47\x02\xcc\xb4\x8e\xed\xdf\x32\x2f\xeb\x8c\x2c\xc4\x7c\x7f\x2b\x96\xd9\xc8\x5a\x55\x96\x05\xe5\xf4\x01\xab\x2b\x15\x2a\x99\x74\xe4\x28\x09\x55\x8a\xe3\x07\x97\xae\x5d\x3e\x5c\xa7\x9c\x7a\x0f\x59\x6c\xa3\xd9\xba\xcf\x2b\x89\xd7\x09\x86\x51\x07\x92\xc2\x6e\x2a\xfa\x51\x4a\x4b\x42\x51\xa4\xe7\xe6\x8c\x16\xc8\x3f\x96\x07\xf9\x19\xaa\xd7\xf3\x92\xda\xe0\x52\x20\x4e\x77\x30\xe8\x7d\x5c\xb8\xe6\x46\xb0\xc1\x8a\x9f\xce\xfc\xa6\x1a\x9d\x47\x12\xd2\x69\x28\x47\x93\x8e\x1c\x2b\x28\x7d\xa8\xe2\xdc\x34\x88\x6a\x3e\x11\xba\x0d\x70\x70\x35\xb0\xb6\x5a\x63\xdb\xb8\x36\x5a\x61\x13\x7d\x70\xc2\xe3\xe5\xfa\xe2\x24\xaa\xeb\xfd\x32\xef\xe9\xb6\xab\xc9\x6a\xe4\x2b\xaf\xea\xfd\xeb\xde\xa5\xaa\x4e\x37\x3d\x1e\x7f\xfc\x71\xd1\xef\xf7\x85\x9e\xbe\xd0\x4b\x9f\x8b\x55\x44\x11\x94\x8a\x44\x86\xc1\xca\xdd\xf4\xd2\xf2\xbd\xf4\xdb\xdd\x02\xb4\x50\xae\xb1\x82\xef\x45\xc4\xd5\xc7\x72\xdc\xe8\x83\xd8\x18\x63\x37\x42\xa4\x24\x76\x43\x89\x96\xe5\x43\x6b\xa5\xc4\x7c\x08\xc8\x8c\x31\xa3\xea\x39\x43\xa2\x34\x5d\xb3\x7d\x91\x1c\x52\x57\xc5\xe6\x55\x3a\x31\xb7\x14\xc1\xec\xc1\x54\x8e\x49\xfd\x3c\xdf\xb7\xc3\xb6\x10\x69\x6b\x90\xf5\x71\xa4\x5a\x8b\xc6\xf2\xc6\xd2\x4e\x9a\x28\x41\xa9\x14\xf4\x5e\xd2\x17\x7b\xc5\xb8\x8b\x90\x6f\x56\x17\x22\xb7\x88\xe2\xdc\xb9\x73\xc8\xb2\x4c\xfe\xec\x67\x3f\x83\x73\x72\x2d\x3c\xdf\xaf\x8a\x0e\xab\x2c\x17\x3e\xa5\xa0\x8e\x0e\xab\xea\xf7\x05\x1f\x58\x6f\xb2\x04\xd6\x69\xbb\xbc\x7d\x6e\x1e\x37\x8d\x0f\xa4\x79\xcb\x74\x79\x9d\x02\x20\x49\xc9\x24\x94\x23\x05\x48\x80\x01\x57\x06\x3e\x1c\xa3\x9a\x15\x0f\x3d\xd9\x61\xa1\xeb\x82\x7e\x0a\x79\x30\xe7\x5b\x52\x14\x60\x1d\xd0\x3b\x67\x79\xb1\x8f\xb4\x60\xd9\x9c\xf6\x43\xfb\x32\xb6\x7e\x6f\x27\x70\x05\x56\x2a\x00\xd3\x50\x4d\x0e\xa3\x6c\x2f\x13\x6a\x12\x2a\x8a\xe0\xb4\xab\xfc\x61\x3b\xc7\xeb\x36\xe9\x71\xe8\xe9\x3f\xab\x4d\x60\x63\x94\xcb\x57\x2d\x2b\xf5\x1b\x2a\xb3\x0b\x4c\x69\xc7\x62\xbc\xc2\xee\x33\x85\x34\x50\xe3\x49\x47\x8e\x66\x81\x34\xd6\x4c\xf7\x3d\x4d\xea\x79\x27\x65\xdf\x98\xf0\x29\xae\x5e\xb9\xd8\x06\x9d\xd7\x05\x97\x89\x5b\x81\x2d\xfd\x32\x0e\x88\x7a\x99\x67\x27\xcb\x97\x42\x77\xa4\xe8\x93\xca\xcd\x69\x2e\x90\xe0\xc1\x78\x86\x73\x74\xc9\x56\x03\x99\x3a\x4d\xdd\x26\x95\xf9\xba\x7a\x93\x3a\x03\x5a\x9c\x7a\xaa\x90\x7d\x59\x92\xd6\x16\x4b\x25\x52\x92\x4a\xa6\xa1\x1c\x4e\x43\x35\x46\xe9\x90\x3b\x77\x12\xb4\xde\x1c\xeb\xe1\xc3\x87\xf2\xd3\x4f\x3f\xf5\x55\x71\xdc\xbe\xf7\xa5\xf3\x69\x8d\x6e\xa8\x62\x4c\xc7\xa9\xbb\xce\x2a\xe2\x63\xe4\xbe\xb6\x54\x31\xd8\xaa\x38\xe1\xc4\x55\x59\x3e\xdc\x76\xf9\xca\x6e\xd3\x4f\xbe\xb2\x7c\xcc\xdc\x4d\xe7\xb6\xd3\xfc\x3e\xf5\xd4\x53\xa2\xdb\xed\x02\xb0\x8e\xbe\xb0\xa6\x88\x48\x62\x30\x78\x90\x9e\x5b\xfd\x7c\xf6\x56\xf7\x50\xbe\x52\x4c\x0f\x99\x7a\x3d\x56\x72\x4b\xbb\xe4\x0c\xbb\x1c\x0b\x0c\xec\x1b\xe4\x5e\x8e\x0d\x67\x2d\x52\x39\x3f\x5e\x20\x09\xa6\x43\x42\xaf\x7e\xe0\xe3\x84\x0f\x35\x53\xb9\xfe\x55\x7c\x0c\xda\x19\x14\x43\x40\x7c\x7f\x18\x62\x71\x64\xc6\xae\x79\x43\xd6\x00\xab\x15\x42\x64\x6a\x23\x1e\xc9\x17\x96\x76\xd2\xd7\x97\x76\xd3\x4b\xe1\x54\x0e\x0a\xd0\xc2\x2d\x2f\x66\x7f\x8d\xc7\x1f\x7f\x5c\x5c\xbd\x7a\x15\x1b\x1b\x1b\x55\xd6\x32\xa0\x9e\x36\xab\x82\xab\xb8\xf8\x9e\x57\x85\x26\xe5\xc1\x07\x88\x9b\xc6\x82\xab\xcd\x56\xa5\xf1\xd5\xe3\x3e\xab\x53\x56\xea\x82\x94\x42\xc9\xc3\x48\xee\x4b\xc1\x34\x74\x0d\xac\x61\x0b\x46\xbe\xba\x53\x31\x0a\x35\x16\x07\x2a\xf6\x14\x2a\x84\x6f\x4e\xae\x25\x91\x99\xd5\x30\x4c\xf6\x5b\x0a\x30\x95\xb4\x63\xea\xa2\x32\x6f\xde\x1e\xc5\xe9\x5f\x66\xa4\x92\x51\x37\xdb\x97\x04\xe9\x0c\x99\xda\xf7\xf6\xc5\x15\x34\x28\xa7\xa1\x1c\x3f\x8a\xd3\xdd\x59\x20\x47\xe5\x0b\x16\xed\x67\x16\x15\xcf\x3e\xc2\x96\x75\xa5\xb4\x28\x31\x0b\x09\x71\x8b\x0a\x97\x60\x4c\x49\x30\x80\x2e\x07\x80\xa5\x92\xa2\x3b\x84\xf3\x16\xf0\x99\x8a\x74\x1a\xca\xd1\xb8\x93\x8d\x66\x81\x4a\xf4\x82\x13\x8f\xb1\xa2\x28\x8a\x7c\x34\x54\x35\x36\x7c\x63\xcf\xa2\xb1\x3a\x13\xa7\x8f\x29\xbb\xd7\x3e\xd4\x2f\x00\xeb\x05\x24\x60\x39\x6b\x01\x80\x08\x25\x85\x71\x2a\x16\xc2\x7c\x0d\x7b\x41\x20\xe5\xa6\x72\x00\x43\xc7\x28\x99\x29\x73\x2f\x31\xc1\xb2\x96\x70\x53\x18\x91\xc3\xdf\x6c\x4d\xcd\x06\x39\x7a\xa0\x70\x6a\x28\x33\x93\xfe\x9f\x09\x04\x45\xda\x5c\xa6\x86\xb3\x40\x26\xce\xde\x2d\x7c\x29\xb4\x59\x49\x74\xff\xfe\x7d\xbc\xff\xfe\xfb\x6d\x18\x09\x1a\x9e\xb7\xfd\x66\x6d\xea\xf1\x95\xe1\x03\x45\x75\xf5\xd4\xd1\x8b\x0f\x55\x57\x01\xb5\x3a\x60\xd5\x64\x46\xd4\x69\x38\xa2\xf7\x31\x78\xd7\x3a\x02\xf8\xfb\x89\xa7\xab\x7a\x3f\xb7\xed\xbc\x5e\x0d\x5e\x71\xe1\xc2\x05\xf1\xe2\x8b\x2f\x22\x8e\x63\x3d\x3e\x0c\x70\xd1\x53\x1a\x94\xa9\x7e\x6f\x28\x37\x4f\xdc\x9e\xbd\xd6\x1b\xc9\x37\x45\x86\x4d\x02\x42\xc7\x78\xc8\xac\x25\xa5\x76\xa9\x8c\x0d\x38\x67\xd8\xe5\x14\x68\xa9\xab\x5a\x85\x30\x00\xe0\x24\x85\x3d\x00\xec\x55\x7d\xf9\x32\x48\x47\x31\x40\x11\xa9\xad\xa0\xd0\x26\x73\x06\x4c\xf4\xff\x6c\xf0\x18\xa3\x8b\x2d\x96\xca\x32\xe7\x18\x33\x39\x11\x25\x63\x2d\x58\xbb\x10\x19\x36\xe3\x83\xec\xa5\xa5\x9d\xf4\xb5\xc1\xc3\x6c\x9b\x32\xe3\xac\x6b\x96\x48\xf3\xfd\x26\x2e\x5c\xb8\x20\xce\x9e\x3d\x0b\x54\x5b\xf3\x50\x13\xe7\x0b\x6d\x14\x90\x26\x00\xe1\x03\xe6\x4d\xa0\x99\xe7\x75\xeb\x71\x15\x8a\xba\xb1\xe5\x2b\xb3\x2a\x54\xbe\x07\x17\x60\xfa\x3a\x23\xc8\x87\xfd\xd9\x5e\x2a\xd4\x18\x80\x34\x98\xd6\xb5\xd2\x29\xfb\x97\x54\x4e\x28\xcc\xc6\x52\x3e\x66\x72\xd9\x02\xf0\x1c\xf8\x78\x65\xa9\x2d\x08\x6c\x20\x6e\xd3\xa3\xa6\xb2\x2c\x50\xc9\x30\xce\xf6\xc0\xfa\xb2\x5c\xed\x6a\x57\xa2\x97\x42\x3b\x72\x10\xce\x7e\x5e\x72\xd2\x91\x93\xbd\xfe\x6c\x77\x1a\xaa\x7d\x3e\x46\xb9\xf3\xf0\x9c\xef\x89\x7e\x47\x0b\x88\xe9\x3a\xf3\x4c\x7c\x7f\x17\x3e\xc6\x5c\xf0\x63\xd2\x20\xef\x67\x77\xf5\xae\x9b\x4f\xd7\x99\x0a\x95\x8c\x3b\xd9\xfe\x61\x94\x3d\x4a\x85\x32\xef\xc3\x00\x4a\x9d\x85\xcf\x17\x5c\x3e\xea\xe3\xab\x26\x84\xec\x01\xdc\x87\x15\x85\xfb\x1a\x64\xee\xbb\xdd\x2e\xd6\xd7\xd7\xe7\x4c\x76\xee\x8e\x7a\xa1\xa4\x28\xca\x44\x3f\x90\x88\xcb\x93\x68\x39\x62\x9e\x67\x67\x16\xd3\xe6\xd7\x4a\x83\x1e\xb2\x3f\xa8\x76\xa8\x25\xe5\x29\x9b\x69\x6f\x1a\x34\x81\x60\x0e\xea\x72\xc1\x0f\x38\xfa\xa7\xa2\x1c\x85\x34\x50\x93\xa3\x4e\x36\x9c\x06\xd6\x89\xd0\x73\x7d\xe4\xce\x7f\x7a\xfa\xd0\xf7\xac\x8e\x81\x1e\xc7\x54\x0c\x4f\x5a\x5f\xfe\x26\x0b\x49\x13\x58\x6a\xd2\xcc\x7c\xcf\xdc\xfa\xab\xac\x36\x55\xf5\xfa\x40\x51\x53\x1e\x5f\xfe\xaa\xbe\xaa\xab\xb7\x15\xb8\x12\x42\xe0\xcd\x37\xdf\xb4\xb6\xf2\x67\xab\x88\x72\xbf\x16\xa9\xfa\xdd\xb1\x5c\x5b\xbd\x33\xbb\xd6\xdf\x97\xdf\x0c\x52\x9c\xcb\xcb\xb2\xb7\x35\x27\x77\x60\x14\x5a\xa1\x1e\x67\x9a\x69\x97\xe4\xce\xcf\x25\xd2\x51\x25\xfd\xda\xa6\x6d\x4e\xdd\x6c\x4c\x70\xa7\x5b\xed\xa3\x62\xf4\xdc\xb2\x1e\xf3\x6b\x39\x29\x96\x6d\x37\xed\x2b\xca\xb6\x06\x2b\xc3\x3d\xc6\xdf\xc5\xc6\x39\x66\xd4\x81\xd8\x3b\xcd\x0b\x99\x30\x48\xd5\x99\xde\x30\x7b\x69\x69\x87\xf6\x93\x9e\x18\x8e\x57\x82\xbb\x60\x16\x10\x76\x4c\x00\x94\x52\x72\x30\x18\x60\x69\x69\x09\xc3\xe1\x50\x7f\xbf\x3a\xa6\xdb\x04\x70\xda\x04\x4e\xa7\xee\x98\xaa\x52\x02\xac\xb8\xf5\xf5\x75\xd1\xe9\x74\xdc\x34\x73\xd7\x5f\x7c\xf1\x85\x5b\x9f\xaf\xdd\x2e\xc0\x71\x15\xd1\x36\xbc\xc2\x0b\x62\xf8\x76\x10\x19\x29\xf9\xa0\x3f\xbb\x7f\xd4\x91\x7b\xdd\x54\xac\x09\x95\xd3\x77\xfe\xe9\xed\x53\x9b\x0d\xaf\xad\x38\x2c\xd1\x75\xb2\x25\x46\xe0\xae\x88\xd6\xec\x5c\x03\x70\x77\x1a\x89\x4b\x06\xeb\xa8\x0b\x96\x4c\x11\x64\x22\xd4\xe8\x51\x2f\xdf\xab\x8b\xbd\xb7\x51\x4e\x78\x7f\x14\xfc\x5e\x7a\x9c\x73\xad\xcd\x48\xa7\x81\x9c\xec\xf7\xd2\x87\xa3\x6e\xb6\xb3\x3c\x09\x2e\x86\x19\x45\x06\xec\x3b\x28\xc3\xc0\x32\x36\x6d\x6a\x2b\xf0\x34\x37\xfe\xcd\xd9\x7d\xac\x8c\x52\x6e\xba\x9d\xc8\x00\x13\xa1\xba\xbf\x09\x48\x02\x39\x7c\xd4\xcb\x76\x0f\xbb\x72\x24\x73\x17\x09\xd3\x17\xac\x7f\x74\x1f\x60\x7f\x7f\x1f\xa3\xd1\x08\x35\xe1\x38\x8a\x81\xf4\xf9\xb8\x98\x87\xf0\x0b\xc5\x2a\x6b\x8b\x00\x20\x37\x36\x36\xf0\xea\xab\xaf\xf2\x72\x38\xc3\x86\x9e\xd7\x0f\x24\x45\x51\x4a\x7d\x91\x6f\x17\x3c\x17\x0c\x4f\xd6\x9d\xce\x15\x2c\xf6\x21\xc8\xfe\xcf\x06\x39\x1a\x34\xb9\x38\xb3\x40\xa0\xdc\x09\x98\xec\x9c\x36\x20\x67\x1f\x90\x0f\x30\x45\x48\x67\x81\x1a\x8f\x3b\x72\x38\x0b\xe4\x04\x25\x11\xbb\x7e\x2e\x79\xde\xe3\xfb\xb8\x00\xd5\xdf\xa2\x2a\x5f\x15\xa3\x71\xd3\xfa\x18\x74\x13\x13\xad\x63\x6a\x4d\x75\x57\x85\x3a\x70\x51\x17\xea\x68\xb4\x2e\xbd\xbe\xe6\xe9\x7d\xcf\xda\xbc\x47\xa3\xc0\x21\x22\x2c\x2f\x2f\x03\xc8\xc1\x3b\xdf\x16\xbb\x58\x49\x14\x41\xa9\x28\x9c\xaa\xa5\xc5\xdd\xec\xd2\xd2\x6e\xf6\x8d\x70\xa6\x2e\x97\xed\x70\xb4\x51\x00\x9a\x79\x95\xea\x58\x19\xcc\x50\xb0\x68\xb6\xfc\xdf\xce\xea\x32\x3a\xa6\xe7\x29\x43\xe3\x25\x28\x62\x8c\xcd\x9e\x73\x2d\xfc\x57\xcc\xb8\x71\xe9\x9c\x69\x92\xda\x47\x86\xac\xe8\x22\x8b\x39\x98\x23\x57\x21\xcc\x01\x32\x6c\x65\x94\x6e\x33\x57\x23\x38\x37\xce\xdb\x1d\x05\x33\x5c\x58\x78\x98\x7d\x3d\x8d\xd2\x7b\xd3\x05\xf1\x4f\x59\xa7\x64\xac\x54\x9e\x23\x03\x22\x92\x97\x2e\x5d\x12\x41\x10\xc8\x7f\xf9\x97\x7f\x11\xe3\xf1\xf8\xcb\x80\x91\x36\xe0\xbf\x89\x56\x7c\xe9\x00\x40\x0a\x21\xc4\xe2\xe2\xa2\x25\x00\x5f\x7f\xfd\x75\xac\xae\xae\x56\xb6\x47\x4f\x45\xfc\xf5\x5f\xff\xf5\x1c\xa0\x39\x3a\x3a\x42\x92\x24\xae\x92\x50\xa5\x40\x54\xd6\x51\xf1\x9c\x0b\x72\xa3\x89\x03\x90\x0a\x48\x1f\xf6\xd3\xe1\x7e\x2f\xbd\xb5\x38\x09\xce\x08\xc2\xc0\x4c\x53\x40\x93\x40\x71\x70\xad\x06\x18\x05\x5d\x28\x66\xa1\x23\x4e\x3f\x0e\xdb\x76\x2e\xf3\x7b\x03\x84\x34\xcd\x17\x14\x66\x14\x5a\x9d\xa3\xa4\x25\x2e\x7f\x00\x05\x09\xa4\xd3\x50\x0e\x1f\xc5\xe9\x10\x30\x3e\x8b\x1c\xb0\xcc\xf5\x85\xe7\x19\xa7\xbf\x7c\xaf\x2f\x81\x74\x1c\x65\xc3\xbd\xfe\xec\xce\xc6\x41\x67\x14\x48\xac\x95\xaf\xc4\xda\x47\x6c\x6c\x9a\x21\x58\x4c\xa1\x11\x57\x6c\xe6\xc1\x08\x8c\x1c\x75\x14\x78\xde\xef\x45\xc7\x71\x25\x9f\x2b\x0e\xb6\x4b\x85\xc2\x38\x92\xbb\x0f\x7b\xb3\xbb\x87\x51\x36\xf2\xc8\x3b\x23\x57\x74\x1f\xfc\xec\x67\x3f\xc3\xc7\x1f\x7f\xec\x76\x91\x0e\x3e\x5e\x5e\xa7\xdc\x36\x1e\xb2\x58\x87\xb4\xab\x88\x5e\x33\x68\x7d\x0d\x86\x3a\x8d\xc5\x25\x90\x14\x75\x32\xd1\x0f\x14\xe6\x4e\xc5\x2c\xcb\x29\x7e\x51\x76\xa8\xfe\xe5\x7c\xcf\x3a\xd3\x82\xe7\xd1\x16\x17\xe7\x83\xb9\xf8\xc1\x42\xad\xde\x86\xd8\xd7\xfa\x56\x12\xd2\x69\x20\xc7\x93\x50\x1e\x4a\x01\xdf\x6e\xb9\x86\xc0\xe7\x0b\x9d\x0b\xad\x34\xad\x8a\xb8\xe3\x94\x5d\x57\x66\x5b\xe6\xaa\x83\x0b\x64\xab\x80\x8d\x6f\xba\xc6\x2d\xc3\x97\xae\xee\x99\xaf\x7c\x37\xaf\xfb\x1e\x75\xe6\xf0\x26\xf3\x79\x53\x7b\xbc\x8c\x6b\x65\x65\x05\xdf\xfd\xee\x77\x05\x8f\xd3\x80\x45\xfb\x5f\x88\x0c\xfd\xfe\x50\x9e\x59\xb9\x97\xbe\xda\x99\xc8\x1b\x90\x2a\x9e\x33\x51\x14\xd7\xca\x05\x0a\x16\xf2\x28\x18\xbc\x99\xff\xe1\x4c\xb9\xe4\xc8\xa4\xcb\x02\x4a\x7f\x16\x0e\x22\x0c\x28\xb1\x8f\xc4\xb0\x00\x3c\x53\xe3\xdc\xf1\x65\x69\x17\xe4\x9c\xd2\x6e\xc6\x8f\xad\x1c\xe8\xc6\x28\x52\xd6\x73\x03\x52\xac\x57\x60\x82\x46\xbf\xa6\xd3\x6e\xa1\xd0\xef\x4c\xd5\xe5\xc5\x07\xe9\x37\x66\x31\xdd\xbd\x7f\xbe\xf3\x8b\xe2\x44\x69\x43\xe7\x4a\xa9\x94\xf2\xad\x19\xe4\xc5\x8b\x17\x45\x10\x04\xf2\x1f\xfe\xe1\x1f\xdc\xcf\x08\xf8\xe9\x8c\xc7\xbb\xd7\x4d\xa1\x09\xd0\x08\x21\x84\x39\xb4\x70\x65\x65\x05\x7f\xfc\xc7\x7f\x5c\x3b\x2d\xe3\x59\x7e\x0c\x22\x12\xdf\xfb\xde\xf7\xe6\x9e\xff\xf8\xc7\x3f\x96\xef\xbf\xff\xbe\x00\x00\x29\xa5\x48\xd3\xb4\x8e\xf7\xb7\x05\x62\x73\xf9\x8b\xfa\x2c\x61\x76\xd4\xc9\xc6\xf7\x07\xc9\xa7\xa7\x46\xd1\xb5\x70\x4a\x7d\x22\x14\x0a\x6d\x49\x8b\xa5\x30\xd6\x96\x3e\xee\x77\xc1\x86\x84\x19\x22\xe5\xb6\x00\xfa\x80\x4e\x73\x00\x2e\x53\x7e\x59\xcf\xe8\x8c\xf9\xce\xe9\x6c\xb8\x58\xb4\xcc\xe8\x33\x0b\xe4\xe4\x20\xce\xee\x0e\xe3\x74\x54\xbc\x8b\xa1\x25\x6d\x55\x68\xe0\xf5\x3c\x2d\xef\x93\x74\x12\xca\xd1\x9d\xa5\xe9\xad\x33\xfb\xdd\xbb\xdd\x4c\xac\x40\x41\x18\x68\xce\x9d\xed\xf5\xbb\xb0\x38\x50\xb9\xd2\x56\x71\xa0\x4f\x96\x82\x6d\x46\x0b\xdf\x03\xc7\x1a\xdb\x26\x9d\x7d\x2e\xa0\x2a\x98\x45\x7e\x5a\x74\x5e\x6e\x1a\xa8\xd1\xa3\x38\xbd\xfb\xb0\x9f\xde\x9b\x86\x72\xec\xf6\x07\xfb\xf6\x45\xbb\xac\x99\x86\x3a\x65\xb7\xb5\xfc\x71\xa7\x8a\xd0\xf2\xde\x8d\xb3\x98\xb7\xf6\x67\xe1\x83\x45\x39\xa7\x85\x76\x24\x45\xdd\x8c\xfa\x42\x95\xa6\xb1\xf9\x50\x4c\xea\x14\x16\x12\xdd\xe1\x6e\xe0\x66\x42\xe7\x49\xb9\x42\xa1\x2c\x8e\x3d\x2d\xad\x39\xf3\xc4\x5d\xd7\xa2\xe2\xa5\x49\x25\xd3\x8e\x1c\x4e\x3b\xe6\xe3\x71\xe1\x6f\xf5\x59\x0b\x00\xd3\xf4\xd1\xbe\x0c\x53\x6c\x1b\xda\x00\x54\x1e\xaa\x84\xf8\x71\x4d\xc9\x55\x40\xc6\xcd\xef\x3e\xf3\xdd\x57\xd5\xe1\x3e\xf7\x31\xdc\x3a\xc0\xd4\xd4\x86\xaa\x76\x89\xf5\xf5\x75\x38\x3b\x48\x9b\xfd\x5a\x50\x1c\x7b\x41\x44\x51\x3c\x92\x1b\x2b\x5f\xcc\x9e\xeb\x8e\xb2\xaf\x8b\x0c\x6b\x2e\x50\x06\x98\xa6\x09\x4d\xb3\x86\x1b\x95\x89\x40\x9e\xb1\x40\x76\x1a\x56\x10\xf3\x4f\xcc\x19\xb8\x51\x08\x18\xc0\x99\xab\x4b\xc7\xd9\x96\x1b\x1d\xc7\xdb\xcc\xa4\x81\xc5\x24\x79\x19\x06\x45\x99\x32\xca\x8a\x4b\x4b\x6b\xb9\xba\x48\x37\xa4\x2c\x49\x6b\xe3\x8e\xa6\x09\x80\x24\x96\xa2\xb1\xbc\xb6\xb4\x33\xbb\x3b\x5e\x0e\xee\x1e\xae\x05\x7a\x3a\x57\x6b\xbe\x5a\x91\x02\xda\x8d\x9b\x26\x90\xfc\x65\x82\x6f\xcc\xc8\xaf\x7e\xf5\xab\xe2\xc5\x17\x5f\x14\x0d\xab\x11\xb5\xd5\x08\xc8\xf9\xad\x64\x71\xa6\x2c\x67\xba\x5e\xde\xb8\x71\x03\x37\x6e\xdc\x10\x00\xe4\xad\x5b\xb7\xf0\xf7\x7f\xff\xf7\xbc\x6e\xb7\x4d\x75\x71\x3a\x78\xc7\x9e\x0b\x5a\x00\xa4\x99\x40\xf2\xc5\xd2\xf4\xb3\xed\xbd\x78\x27\x4e\xa2\x15\x92\x88\x80\x12\x58\xe5\xf9\xdc\x82\x60\xd1\x9b\xc6\xa7\x25\xf9\x18\x42\xb4\x04\x35\xcf\x6b\xae\x51\x96\xc1\xa7\x57\x39\x20\x57\x7a\xb5\x6a\x59\x8f\x9c\x06\x72\x74\x7f\x21\xf9\x74\x26\xd4\xa4\xe8\x53\x4e\x47\x56\x3f\x57\xf4\xc9\x5c\x5f\xe8\xbf\x69\x47\x8d\xbf\x58\x4e\x3e\xff\x62\x29\xf9\x60\x69\x12\x9e\xeb\x66\x62\xa0\xb4\x56\xe1\x01\x6a\xa5\x22\xa0\x21\x3e\x7b\x61\x57\xd1\x29\x06\x9f\x2a\x10\x9d\xce\xc1\x57\x15\xb9\xd9\x78\xbf\x13\xbb\xd0\xdc\x61\x1c\x65\xbb\xf7\x06\xc9\xad\x61\x37\xdd\x57\xf9\x16\x20\x09\x1c\x17\x09\xd6\x3f\xae\xe5\x49\x8f\xb9\x3a\x3e\xcf\xe3\xbd\x74\x57\xc7\xe8\x5d\x2b\x49\x5d\x3a\x57\x00\x54\xfa\xb6\x00\xf9\x1e\x2e\x61\x46\x71\x27\x13\x7d\xa1\x28\xaa\x06\x0b\xba\x8c\x12\x58\xb8\x4f\xb9\xe3\x91\x7b\xaa\x82\xc9\xe7\xac\x6c\x30\x00\x50\x19\x7a\xb7\xbf\x77\x85\x67\xb4\xce\x63\x9c\xcd\x84\x4a\x26\xa1\x1c\xe9\xad\xfe\x51\x20\x4d\x3e\xaf\xcb\x9c\x96\xdc\x92\xe6\xfa\x8c\x05\xfe\x51\x7d\x5a\xbf\x2f\xd4\x69\x83\x3e\x4d\xa9\x2d\x63\xe2\xc4\xa6\xef\x5d\x86\xdd\x44\x84\x6e\x1a\x17\xe0\xb5\x01\x2b\xee\x3b\xd4\xbd\x53\x1b\x2d\xd1\xd7\xa6\xaa\x32\xaa\xee\x1b\xdb\xab\xf7\x2f\x72\x9c\x71\xb5\x6f\x4b\x1c\x8d\xe5\xca\xe2\x6e\x7a\xb9\xff\x48\xbe\x10\xcc\x70\x4e\x1f\x3d\x0f\xc0\x22\xf8\xf9\xf9\x7c\x94\x2b\xed\x3c\x8d\xb7\x0d\xb9\x24\x00\x00\x20\x00\x49\x44\x41\x54\x98\x0b\x3a\x1d\x67\xd6\x39\x31\x17\xfe\x22\x65\x05\xcc\x70\x59\x44\xcc\x97\x55\x5a\x3e\x4c\x49\x73\x40\x4a\xf1\xfc\x45\x3c\x97\x23\xe5\x3e\x15\xbc\xee\xf2\x6d\xf4\xd8\xb4\x90\xd0\xdc\xfb\xda\xcf\x78\x13\x01\x08\x91\x61\x3d\x3e\x54\x2f\x9d\xb8\x9d\xdc\x50\x4a\xc5\xc0\xdc\x99\x46\x66\xdc\x9c\x3f\x7f\x1e\xdf\xf9\xce\x77\xea\xc6\x25\x50\x01\x52\x2b\xd2\x56\x85\xca\xf4\xaf\xbe\xfa\xaa\xf8\xcb\xbf\xfc\x4b\xf1\xfc\xf3\xcf\x03\x28\xf9\xa7\xb2\x77\x1f\x0f\x3d\x7f\x3a\x5e\x2f\xb5\xd7\xd7\x3c\x0d\xe0\xf0\xeb\xb3\x67\xcf\xe2\x2f\xff\xf2\x2f\xc5\x7f\xfc\x8f\xff\xd1\x15\xb2\x6e\x38\xce\x7b\xba\x42\xba\x10\xd4\x2a\x55\x40\xfa\x60\x21\xdd\xdb\xed\xcf\x3e\x4e\x42\x39\x06\x91\xb1\xde\x91\x99\x03\x82\x7e\x77\x18\x12\x63\x40\xdb\xf5\xef\x30\x59\x8a\xb4\x9c\xc6\x74\xc2\x39\x2b\x3b\xcb\x53\xca\x08\x36\x4b\x50\xe4\x53\x50\xc8\x84\x4a\x0e\xe2\xec\xee\xe7\xcb\xd3\xcf\x14\x29\x0e\x3a\x5c\x5e\x36\x17\x9c\xd5\x36\xd6\x34\x11\x4a\x81\x9f\x4e\x42\x39\xfa\xf5\xfa\xd1\x07\xfb\xbd\xf4\x53\x0e\xa4\x9c\x4b\xab\xcd\xcc\xe4\xe9\xbc\x18\x93\x9b\xfa\x9f\x06\x1e\xae\xc3\x8b\x2e\xcf\xee\x2e\xcd\x1a\xe6\xca\x9f\x06\x6a\x74\x6f\x90\x7c\xfc\xf9\xca\xf4\xdf\x0f\xe2\x6c\x9f\xbf\x03\x8a\x55\xb5\x4e\x6b\xab\xf8\xa6\x2b\xd7\xdc\x50\x65\x61\xaf\xcc\xe0\x56\xe8\xab\xa8\x2e\x5d\x6d\x50\x4a\x09\xa1\x48\x74\x32\x8a\x3a\x19\xf5\x85\x44\xc8\xfb\xdf\xb2\x58\x83\x75\x1e\x72\xc2\xb5\x41\x85\xb2\x09\xd2\x39\x9c\xc2\x00\x6d\xc3\xac\x95\x31\x8f\x9b\x25\x63\x9a\x58\x59\x5d\x75\xbe\x28\x9a\x00\x14\x80\x8c\x54\x3a\x0b\xd4\x78\x26\x4a\xc7\xdc\x62\xde\xd3\x10\x34\xf7\x3a\xbf\x79\xf3\x26\xfe\xe5\x5f\xfe\x45\x17\xe5\x0a\xc8\x36\x1f\xb2\xea\x83\x57\x59\x68\x7c\x4c\xb8\xae\x6c\x37\x8e\x97\xc5\xdb\xe9\x9a\xc8\xeb\x08\xcf\x05\xc0\xc2\xc9\xd3\x06\x3c\xf3\xfb\xa6\xba\x9a\x80\x76\x55\x39\x55\xed\x69\x8a\xf7\x95\x2b\xb6\xb6\xb6\xc4\x37\xbf\xf9\x4d\xae\x0d\x8b\xe2\x57\x2f\x7f\x8e\x28\x53\x71\x6f\x98\x9d\x59\xd8\xcb\x9e\x0d\xa7\xf2\x32\x72\x30\xe3\x58\x2c\x1c\x26\xcc\xb4\x47\x32\xbf\x7e\xe8\x62\x01\x79\x6b\x9c\x14\xff\x15\x82\xc2\x9a\x92\x75\x8b\x72\x2b\xd7\x5a\xa8\xe2\x1b\x88\x7b\x98\xeb\x7c\x66\xcc\x8f\x6e\x30\x8b\x0a\x93\x50\xba\xf5\x1c\xa4\x38\xef\xcd\x19\x37\x15\x47\x06\xf0\x95\x54\xec\x71\x14\x24\xea\x4c\xef\x91\x7c\x75\xf5\x8b\x74\x1b\x52\xb9\x07\x31\x9a\x8d\xe9\x8a\xe0\x7b\x91\x26\x65\xe1\xb8\x16\x97\x39\x30\xfd\xd6\x5b\x6f\x89\xb7\xdf\x7e\x5b\x5c\xbc\x78\x11\x61\x18\xea\x86\x70\x90\xa2\xaf\x23\x94\x2b\xd1\xf4\xbd\xf5\xc7\xa7\x21\x8b\x5f\x1f\xd0\x31\x2b\xac\xc2\x30\x14\x83\xc1\x00\x6f\xbf\xfd\xb6\x78\xfb\xed\xb7\x45\x71\x0c\x45\xd3\x7b\x5a\x63\xf8\x6f\xff\xf6\x6f\xb1\xb3\xb3\xe3\x93\x01\x12\xfa\x18\x14\xa2\x04\x84\xf4\xa8\x23\xc7\xb7\x57\xa6\x1f\x3f\x8a\xb3\x3b\x59\xce\x3b\xcd\xb2\xdc\x52\x98\x16\x92\xb3\x24\x31\x0b\x91\x14\x5f\xbc\xac\xa5\xf4\xd6\x2e\x13\xc0\xa6\x69\xdf\x81\x81\x26\x50\xbe\x30\xc3\x06\xbf\x0a\x0a\x90\x93\x50\xee\xef\x0c\x92\x8f\xf7\x16\x66\xfb\xfa\x1d\xf4\x7b\xc1\x0f\xd2\x58\xb1\x96\x35\x86\xf3\x7c\x0e\x5e\x92\x54\xa8\xc9\xce\x20\xf9\xe2\xf6\xca\xf4\xfd\x69\x28\x87\x3e\x14\x9e\xbf\xa6\x2a\xc7\x9f\xbb\x7b\x2a\x4f\xa3\xb3\x91\x67\x4c\xc3\x01\x3e\x8c\xcf\x28\x16\xe7\x8a\x41\x09\x60\x18\xa7\x77\x3e\x5f\x99\x7e\x32\x8c\xd3\x5d\x55\xb4\x1d\x0c\xbc\x78\xac\x6c\x55\xa1\x4e\xa1\xe4\x71\x5e\x05\xbc\xca\x39\xb7\xa9\x22\x57\xd0\xb9\x1a\xb8\x1b\x2c\x81\x15\x4a\x0a\xbb\x99\xe8\x87\x19\xf5\xa9\x58\xee\xc9\xe9\x13\x28\x79\x2b\x50\x7e\x20\x83\x1a\x81\xb9\xf9\x5c\xfd\x3c\x7f\x86\x92\x62\x39\x82\x87\x2f\x7d\x35\x48\xa9\x0f\x0a\x99\xc0\x64\x1a\xca\x71\x5a\xae\x28\xd2\x83\xd4\x5d\x16\x06\x00\x48\x92\x04\x93\xc9\x84\xf7\x55\x1b\x33\x73\x1d\x82\x6d\xb2\x9a\xd4\x59\x20\x9a\xea\xae\x4a\x57\xd5\x1e\x17\xcc\xd4\x95\xc9\xd3\x34\xd1\x55\x53\x7a\x1e\x57\xd5\x1f\xee\x6f\x5b\xcb\x4e\x53\xbc\xaf\x5c\x01\x40\x86\x61\x28\xf4\x79\x5d\xda\x39\x5d\x6b\xc1\x5a\xa8\xc4\x87\x72\x6d\x61\x2f\xbb\x12\x1f\xca\x6b\x22\xc3\xfa\xbc\xbd\x36\x8f\x70\xad\x1f\x26\x99\xa1\x77\xbe\xcc\x9f\x15\xc2\xa7\x5d\x94\x9d\x87\xef\x5a\xab\xc1\x3c\x50\x82\x7a\xee\x53\xc0\x2b\x2f\xf1\x43\xd9\x90\x02\x7b\x58\x0c\x90\xe6\x5b\x0e\xc3\x45\xa9\x7c\xaa\x7d\x0a\xe6\x47\xa1\x76\xc6\xcc\xd3\xcf\xab\x24\xe4\x74\x46\x1e\x9f\xf7\x85\xbd\x92\x09\x0a\xfd\x68\x22\xaf\x2e\xdf\x4b\x5f\x1c\xaf\x04\xbb\x49\x8c\x94\xf9\xbb\xa4\x28\x36\xa6\x03\x80\xb5\xb5\x35\xf9\xe6\x9b\x6f\x8a\xef\x7f\xff\xfb\x75\x63\xc3\xa5\xa3\x36\xe3\xd8\x1d\x1f\x12\x00\xfe\xf0\x0f\xff\x50\x10\x11\xd6\xd6\xd6\x50\x9c\x5c\xad\x9f\x5b\xd7\xae\xe5\x5a\x03\x62\x54\x8f\x35\xc0\xa6\x5d\x9f\x40\x31\xf7\x42\x08\x73\xf8\xe4\xb7\xbf\xfd\x6d\x48\x29\xc5\x3f\xff\xf3\x3f\x63\x77\x77\xb7\xea\x3d\xad\x71\x3a\x1e\x8f\x91\x65\x99\x65\x95\x65\x7c\x30\x25\xa2\xb4\xf0\x29\x4a\x32\x52\x93\x3b\xcb\xc9\xe7\x1b\xa3\xe9\x07\x0b\x89\x58\x1b\x4c\x83\x0d\x01\x12\x06\xbc\x00\x85\x83\x2e\x03\x1e\x05\x29\xf3\x73\x7a\xf4\xc4\x87\x56\x3d\xcd\xf3\x39\x5f\x1f\x18\x8b\x8e\xd9\x55\x1d\xac\x3c\x1f\xbd\x17\xe9\x67\x42\x4e\x1e\xf6\xd3\xdb\xbf\x59\x99\x7e\xac\xcf\xa2\x73\xfe\x5a\x29\xec\x28\x79\x43\x8a\x1c\x78\xea\x45\x1c\xb9\xe0\x27\x4c\xa6\xa1\x1c\x7d\x78\xf2\xf0\x97\x27\xc6\xe1\xb9\xad\x47\xdd\x6b\x9d\x0c\x31\xc0\x56\xd7\x99\x81\x5a\xfa\x8d\x01\x30\xbe\x29\xa5\x69\xca\x79\x27\x94\xc3\xae\x94\x8d\x30\xd6\x97\xb2\x7c\x35\xc7\x47\x34\xf8\x21\x00\xe3\x28\xdb\xbd\xbd\x32\xfd\xe0\xce\x52\xf2\xd9\x51\x47\x8e\x40\x36\x68\x41\x85\x15\xea\x47\x3f\xfa\x91\xfc\xec\xb3\xcf\xf4\x6d\x9b\xb1\xc2\xd3\x79\xd3\x1e\x07\xb8\xf0\x50\xc5\xf8\xe7\x90\x7a\xe1\xdb\xc2\x1b\x23\x3a\x19\x45\xdd\x99\x58\x08\xf5\x19\x45\x28\x19\x98\x0e\xbc\x6f\x81\x79\xd4\x68\x39\xfc\x29\xf3\x0d\x8a\x3d\x26\xf4\x07\xe4\x69\xe6\x97\x7e\x02\xda\x07\x07\xa5\x53\x23\xc8\xe6\x85\x6e\x60\x5a\x60\x26\x54\x92\x04\x72\x5c\x9c\x51\x64\x3e\x58\x4b\x67\x5c\xa0\x19\x75\xfa\x00\x8e\xef\x9a\x33\x13\xdf\xf3\x2f\x0b\x52\xaa\xda\x55\xd5\x3e\x9f\x79\xcf\xd7\x26\xb7\xdc\x2a\x22\x3d\x4e\xbb\xab\x9e\x57\xf5\xa1\x9b\xc6\x6d\x53\x53\xa8\xfc\x36\x8f\x3d\xf6\x98\xb8\x7e\xfd\xba\xe5\xdb\x85\x52\xcb\x8d\x00\x84\x41\x8a\x7e\xef\x51\x76\xae\xff\x28\xfb\x5a\x98\xa8\x6d\x02\x42\x2d\xfd\x4b\xfa\x2b\x19\xb3\x07\xcf\x94\x97\x9c\x41\xe9\x51\xe4\x30\xae\xd2\x0d\xa5\x48\xc1\x7d\x5d\x8a\xf4\x39\x03\x63\x4e\x75\xe6\x3f\x07\xd8\x70\x06\x39\xd7\x36\xbe\xdc\xb4\xb4\x82\x90\xf6\x9a\xe4\x6d\x75\x19\xae\xf5\x7a\x05\x68\xf3\x8c\x59\x7d\xe0\x63\x69\xf5\xd6\xab\x90\xca\x62\x1c\x06\x2c\x44\x8a\x8d\xde\x30\xbb\xb1\x78\x3f\xfd\xe5\xc3\xad\xce\x84\x39\xd3\x87\x60\x34\x10\x45\x91\x58\x5f\x5f\xf7\x8d\x99\x2a\xa1\xed\xbb\xaf\x0a\x86\xce\xc2\x30\x14\x6f\xbc\xf1\x06\x4e\x9d\x3a\xa5\xa7\x83\xf4\x73\x7d\x6d\xa6\x7d\x1c\xd0\x12\x2e\x4c\x83\x68\xf5\x28\x8c\xfb\x89\x88\xa3\x4c\xc4\x61\x46\x91\x9e\x72\x97\xa4\xd2\x54\xa8\x24\x15\xf9\xef\x51\x47\x4e\xf6\x7b\xe9\xe4\x30\xca\x12\x25\x4a\xe5\x0a\x0e\x90\xe1\xca\xd6\xc9\x93\x27\x01\x00\x2f\xbd\xf4\x92\xfc\xf1\x8f\x7f\x2c\xee\xde\xbd\x5b\xf5\xde\xb5\xc1\x75\x42\x85\xb6\x30\x10\x26\xa3\x6e\xba\x7f\x6b\x75\xf2\xd1\xca\x24\xdc\xea\xa6\x62\xd0\xcd\x68\xc0\x81\x09\xa7\x5f\x0d\x3c\xec\x6f\xce\xea\x29\xfe\x2b\x65\xb2\x47\x62\x3b\xb4\x4a\x4e\x5e\x4d\xff\x65\x9c\x82\x04\xe4\x61\x57\xee\x7e\xb1\x94\x7c\xbc\xb3\x98\x7c\xa1\x08\x13\xd8\x16\x06\x5f\x5f\x62\x77\x77\x57\xbe\xf3\xce\x3b\xe8\x76\xbb\xf2\xb5\xd7\x5e\xe3\xbe\x47\xba\x9f\xf5\x79\x76\x29\x2b\x6f\x22\x09\x93\xbd\x85\x74\xe7\xfd\x53\xe3\x9f\x76\x53\xb1\xb2\x3e\xea\x6c\x87\xb2\x00\x2f\xe6\xdd\x39\x91\xb3\x1f\xd6\x3f\xc4\xc1\x8e\xf5\x8e\x0c\xe2\xe9\x21\xca\xd3\xb1\xb1\x66\x8d\x41\x00\xd3\x40\x8e\xbf\x58\x9a\x7e\xf0\xc9\x89\xa3\x0f\x1e\xc5\xe9\xae\x14\x98\x00\x76\x7f\x14\xc0\xd4\x5a\x9c\x02\x00\xfb\xfb\xfb\x5a\x61\x07\x1c\x5e\x89\xea\x50\x4b\x6b\x2e\x70\xf9\x32\x42\x8f\xa7\x95\x80\xf7\x94\x48\x33\x20\x89\x08\x61\x46\x61\x37\xa3\x7e\x28\x29\x36\x8b\xbc\x5c\xed\xd0\x14\xc1\xb4\x27\x55\x30\x5e\xb2\x3d\xe8\x2d\x2d\x51\xa3\xca\x22\x9d\x85\xb6\x19\xc0\x29\x41\x8d\x13\xef\x78\x64\xbb\x41\x23\x74\x49\x48\x53\xa1\x92\x69\x58\x4e\x15\xe9\xc1\xef\x78\xd3\x43\xbf\x37\x0b\x4d\x1f\xef\xcb\x32\x46\x37\x6d\x1d\xc3\x69\x02\x0e\x55\x6d\xf3\x31\x70\x17\x38\x55\xb5\xc3\xd7\x96\x2a\x01\xe1\x82\x91\xaa\x7c\x55\xbf\x55\xef\xe0\x03\x39\x4d\x69\x7c\xef\x55\x35\x10\xc5\x60\x30\xc0\xa9\x53\xa7\xac\x13\x72\x01\x6b\xef\x96\xa8\x7b\x24\x57\xfa\x43\xf9\x54\x74\xa4\x2e\x93\x54\x4b\x79\x11\x7a\x7f\x12\x8e\xc4\xfd\xc0\xde\xc6\x0e\xf3\x80\xdb\xd0\x32\x63\x52\x79\x0d\x25\x3b\xb3\x68\xdc\x24\x2b\x11\x51\xe9\xf0\xea\x8c\x06\x0d\x42\x58\x7a\xe5\xe6\x37\xb5\xf1\x1d\x72\x9d\x14\x6c\x3c\x6b\xad\x43\xb1\xc2\xca\x5a\x55\x31\x5e\x8b\xf1\x6c\x96\x3b\x68\x6b\x8c\x0d\xa4\x4c\xf1\xc5\xf8\x2e\x52\x46\x9d\x44\x5d\x1e\xec\x65\xbf\x33\x3a\x11\xdc\x99\x06\x62\x52\x58\x5d\x5c\xc1\x23\xe2\x38\xc6\x8b\x2f\xbe\x28\x7f\xf4\xa3\x1f\xf1\xe2\xaa\x68\xb4\x89\x47\xba\x74\x23\x7a\xbd\x9e\xb8\x71\xe3\x06\xb6\xb7\xb7\x9b\x00\x4b\x48\x44\x82\x24\xc2\x85\x59\x10\xad\x1d\x86\x4b\x8b\xd3\x70\x6d\xf9\x28\xdc\x5c\x99\x84\x5b\xbd\x99\x38\xd1\xc9\x68\x25\xdf\xc4\x93\x22\x00\x42\x91\x4a\x32\x52\x93\x4c\x60\x9c\x0a\x35\x9e\x84\xf2\xc1\xb0\x97\xde\x1d\xc6\xd9\xce\x41\x37\xdd\xdb\xef\xa5\xc3\x83\x6e\x36\x49\x03\x55\xa5\x25\x9b\xbf\xcd\xcd\x4d\xf1\xcc\x33\xcf\xc8\x77\xdf\x7d\x57\xdc\xb9\x73\xe7\x38\x4a\x85\x5b\x96\x9e\x46\x30\x53\x0b\x52\x60\x72\x7f\x90\x7c\x71\x7b\x79\xfa\xd1\xc2\x34\x58\x3b\x31\xee\x6c\x87\x59\xe1\xef\xa8\x57\xa2\xc1\xde\xc3\x48\x07\x2e\x90\x8d\x20\xd7\xd6\x79\x7b\x94\x58\x40\xbe\x5c\xb1\x56\x44\x80\x8c\xac\xd0\x15\x68\x7a\x53\x00\x26\x1d\xb9\x7f\x6f\x71\xfa\xc9\x6f\x56\x27\x1f\x8d\x73\x0b\x83\x16\xd4\xb5\x16\x86\xa3\xa3\x23\x7c\xf6\xd9\x67\x08\xc3\x10\x41\x10\xc8\x62\x7b\x10\x2d\x1b\x4d\x9f\x28\xa5\x92\xc2\x51\x7f\x02\x20\x02\x61\x9c\x0a\x15\xfd\x66\x65\xf2\xeb\xc5\x49\xb0\x12\x66\x14\xaf\x1c\x75\xb6\x42\x89\x48\x8f\x42\x4e\xe4\x66\xac\x6b\xe5\xc2\x55\x74\x98\x61\x32\x4f\x40\x65\x7a\xa3\x50\x80\x39\xe6\x97\x7b\xea\x70\x4e\x32\x13\x2a\xb9\x3f\x48\x3e\xfe\xd5\xc9\xf1\x7b\xf7\x07\xb3\xcf\x67\x81\x1a\x01\x73\x20\xce\x47\x47\x40\x35\x8d\xf8\x42\x1b\x05\x32\xb7\x68\x3b\x91\x3e\x86\xdf\x24\xcc\xcc\xe0\x3d\x71\xe2\x04\x9e\x78\xe2\x09\xeb\x21\x73\xd2\xd5\x69\x45\xa0\x10\x86\x99\x88\x84\xa2\x88\x13\x8d\xb5\xcc\xcb\x45\xdc\xba\x53\xed\xf2\x58\x3d\xf3\x75\x96\x41\x33\xb6\xe2\xb3\x58\x3c\xb7\x34\x8f\x71\x26\x6f\x36\x21\x82\xfd\xa1\xcb\x01\x02\x99\x06\x72\x32\x0b\xe4\x44\x92\x6d\x69\xe1\x16\x97\x3a\x7f\x19\x34\x7f\xd4\x3a\x81\xc9\x9f\x1f\x4b\x13\x6a\xd9\x0e\xf7\xbb\xeb\xb8\xe3\x82\xae\xe3\xd4\x7d\x1c\xb0\xec\xe6\xaf\xea\x9f\xaa\x74\x75\x75\x7d\x99\xf7\x92\x00\xb0\xb9\xb9\x89\xed\xed\x6d\x00\xe0\x9a\xb4\x5e\x45\x14\x01\x08\x85\x44\x1c\x0f\xe5\x56\x7c\x20\x2f\x07\x33\xb5\x45\x80\xb0\x84\xba\xab\x16\x2a\x87\x8e\x2c\xfc\x52\xb2\x6a\xc6\xea\xcb\x69\x50\x0d\x0e\x50\x30\x71\x66\x77\xe7\x00\xc2\x52\x1a\xf8\x98\x44\xb9\x9f\x4a\x8e\x2d\xca\x93\x66\xf3\xf1\xaa\xe6\x14\x03\xbb\x9d\xde\x0d\x06\xca\x24\xa5\x66\x51\xa6\x65\xf9\x8c\xe3\x70\x29\x7d\x50\xfa\xe5\x68\x5e\x31\x0f\x5a\xf2\xb2\xcb\x2c\x80\x82\x48\x69\x3d\x1e\x65\x57\xfb\xfb\xd9\x2f\xd3\x48\x0c\xb3\xc8\x9c\x5f\x24\xf5\xd2\x68\x00\x88\xa2\x48\x5e\xbe\x7c\x19\x0e\x70\xe1\xe1\x38\x8a\x85\xf5\x6c\x30\x18\xe0\x6b\x5f\xfb\x1a\x9e\x7c\xf2\x49\x17\xb4\x68\x50\xab\x57\x9e\x89\x20\xa3\x68\x69\x1a\xf4\xd7\x47\x9d\x8d\xb5\x71\xe7\xcc\xfa\x61\xe7\xdc\xd2\x24\xfc\x4a\x6f\x26\xce\x45\x99\xd8\x14\x12\x03\x01\xea\x93\x2a\x8f\x33\x00\x90\x2a\x42\xaa\xa0\x12\x00\x69\x46\x18\xce\x0e\xe4\xce\x24\x94\xb7\x0f\xba\xd9\x67\x0f\xfb\xb3\x5b\x0f\x16\x66\xb7\xee\x2f\xcc\x76\xf6\x7b\xe9\x70\x16\x2a\x73\xa2\x3d\x9f\xda\xd1\x6d\x3f\x73\xe6\x8c\x28\x1c\x2e\xc5\x9d\x3b\x77\xf8\xfb\xcc\xbd\xf3\x87\x1f\x7e\x88\x6e\xb7\x2b\xd7\xd6\xd6\xb8\x22\x94\x9a\x76\xe5\x82\xda\x58\x18\xc6\x1d\x39\xbc\xbd\x32\xf9\x75\x7f\x26\x56\x3a\x92\xfa\xcb\x47\xe1\x66\xa0\x28\x2c\x89\xb1\xa0\x53\xc3\x9f\x8b\x68\x94\x34\x67\x2d\x5d\xf6\xd0\x41\x39\x05\xe4\x6e\x42\x5a\x88\x67\x6b\xc0\x95\x40\x28\x09\xe4\xf8\xfe\x60\xf6\xe9\xa7\xab\x93\xf7\x77\x17\x66\x5f\x28\x81\x31\x3c\x3e\x1d\x98\xe7\x31\xa6\x7f\xd2\x34\x15\x37\x6f\xde\xe4\xfb\x9a\xf1\xbe\xd3\xd6\x89\x04\x40\xa2\x94\x9a\x14\x20\x66\x7c\xd4\x91\xc3\x4f\x4e\x1c\x7d\xd8\x4d\xc5\xe0\xf1\x3d\x60\x79\x12\x6e\x76\xb2\x52\xc9\xe7\x61\xde\xe2\xaa\x01\x9d\x3f\xde\xb5\xc4\x5a\x7b\x33\x39\x3d\xa4\x00\xcc\x02\x35\x79\xd0\x9f\xdd\xfa\xe8\xe4\xf8\xdd\xcf\x97\xa7\x9f\x4d\x43\x39\x04\x61\x0c\x60\x0c\x07\xbc\x38\x16\x36\x00\xc0\xcd\x9b\x37\xf1\xe8\xd1\x23\xb7\xd9\x55\xbc\xb7\x8d\xe2\x2c\x01\xff\x54\xd1\xdc\x74\x0f\x6a\x88\x95\x3f\x5b\x5f\x5f\x17\x17\x2f\x5e\x14\xdc\x1a\xe2\x9a\x3a\x95\x52\x42\x48\x0a\x43\x89\x58\x28\x84\x5a\xf3\x03\x4a\x26\xa6\x77\xaf\xb5\x1c\x73\x0d\xb3\x9a\x0f\x9c\x90\x8d\xe6\x66\xe6\xfd\x95\x59\xd3\xcf\x37\xf3\x29\x7d\xb9\x6c\x9c\x69\x04\x81\x05\x84\x58\x65\x05\xa1\x4b\x92\xe9\x4c\xa8\xc9\x4c\xa8\x29\xc8\x26\x58\xcf\xd2\x67\xe3\xa4\x5b\xd1\xaf\x6e\x9c\xdb\xe7\xa2\xe2\x19\xe0\xff\x26\x75\xe5\xe9\x78\x9e\xb7\x49\x63\xf4\x11\x94\xab\x71\xba\x6d\xa9\xb3\x7c\xb4\x05\x3d\x55\xd3\x4d\x6e\x5c\x5b\x0d\xd8\x67\xcd\xe1\x6d\xf4\x95\xdb\x54\x97\xf5\x3e\xa7\x4f\x9f\xc6\xb9\x73\xe7\x2c\xa1\xc4\xa7\x8b\x88\x28\x8a\x26\x72\xa9\x3f\xcc\x9e\x8c\x8e\xe4\x45\x21\x31\xb0\x19\xa7\xd6\x7d\xf2\xa0\xf9\xf1\x9c\x51\xc1\xf8\x7e\x90\x95\xcf\xd2\x24\x89\xd1\x78\x39\xc8\x78\xf6\xc2\xfa\x08\xc6\xd0\xca\x07\xca\x8c\x27\xc6\x10\x89\x8d\x13\x9d\x4e\xb7\xc9\x61\x94\x2e\x93\x84\x2a\x9d\xe3\xb5\x22\x91\x4f\xd1\x96\x79\x4d\x33\x15\x3f\x6b\x46\xcf\xb5\xb3\x8e\xe0\xc5\x52\x31\x8a\x99\xaf\x4f\xc1\x06\xdc\x3e\x08\x3b\x53\x75\x79\xb0\x27\x9f\x1c\x2f\xcb\x3b\x59\x28\xc6\xda\xea\x52\x08\x0d\x43\xd7\x42\x08\xf9\xd4\x53\x4f\x89\x0f\x3e\xf8\xc0\xac\x0c\x61\xc1\x37\x06\x7c\xcf\xcd\xb3\xd5\xd5\x55\xb1\xb9\xb9\x89\xe5\xe5\x65\x7c\xf5\xab\x5f\x35\x9b\x72\xaa\xf2\x80\x4d\x33\x9d\x18\x28\x8a\x16\xa6\x41\x7f\xfd\xb0\xb3\x7e\x7a\xd8\xbd\xf8\xd8\x7e\xf7\x77\x16\xa7\xc1\x95\x28\x13\x67\xc2\x8c\x36\x85\xc2\x12\x01\xb1\x26\x0c\x62\x08\xcd\xe6\x5f\x84\x50\x01\x51\x46\x49\x2f\x11\xc3\xa5\x49\xb8\xbb\x31\xea\xdc\x19\x75\xb3\x0f\xee\x2e\x26\x3f\xfb\x7c\x79\xfa\xf1\xee\xc2\xec\xee\x7e\x2f\x1d\x2a\x01\x3e\x7d\x01\xf6\x7e\xe9\x99\x33\x67\xf4\x34\x87\xde\x89\xd7\x3b\xbe\x3e\xfa\xe8\x23\x79\xee\xdc\x39\xb1\xb6\xb6\x06\xc7\xea\x2c\x01\x68\xeb\x82\x01\x2e\x4a\x60\xbc\xd7\x4f\x77\x3e\x5d\x9b\x7c\xd0\xc9\x44\x3f\x90\x14\x2e\x4e\x83\x0d\xa1\x20\x8c\x0c\x30\x04\xe6\x80\x6d\x4d\x13\xec\x43\x1b\xa0\xcb\xe9\x15\xe5\xf7\xd7\x84\xc1\xed\x93\x86\x1e\xb5\xb3\x79\xe1\xd7\xb2\xd7\x9f\xdd\xfe\x74\x6d\xf2\xfe\x9d\x95\xe9\xbf\x4f\x42\x39\x02\x30\x29\xc0\x45\xc2\xa7\x44\x9c\x7d\x59\xb0\xbf\xbf\x8f\x5b\xb7\x6e\xe9\x46\x4a\x00\xe2\xfd\xf7\xdf\xc7\xa5\x4b\x97\x64\xb1\x2f\x8f\x06\x71\x82\x4f\x17\x11\xd1\x04\x40\x08\x42\x04\x60\xbc\xdf\x4b\x77\x3e\x3e\x39\xfe\x85\x24\x85\xf3\x0f\xe3\x74\x6d\xdc\xd9\x8a\x32\xf4\x8d\x05\x4a\x8f\x78\x23\x27\xb9\xe5\x32\xbf\xe7\xdb\xeb\x71\x06\x62\xcf\x30\xf0\xee\x2d\x55\x1c\x05\x20\x09\xd5\x78\xaf\x3f\xbb\xfd\xd1\xc9\xf1\xbf\x7e\x72\x62\x72\x73\x1c\xc9\x3d\x09\x35\x26\x10\x07\x2c\xb5\x16\xa8\x9b\x37\x6f\x62\x38\x1c\x56\xc9\xb4\xaa\x71\xe3\x86\x39\x5e\xdb\x74\x3a\x74\x9d\x60\x6a\xaa\x50\x9b\xc7\xf9\xbe\x2e\x85\xc5\x85\xc2\x40\x52\x44\x2a\x07\x4e\x65\xe7\xf2\xbb\x82\xdc\x1c\xb0\xc2\x19\xa2\x65\x12\x63\xdc\x55\xf1\x69\x27\xa7\x3c\x4e\xc6\xa5\x70\xe0\xc3\x81\x5d\xab\x12\xf4\x98\xca\x75\xb9\x02\x69\x12\xa8\xf1\x2c\x77\xd8\x92\x80\x7f\x37\x45\xbd\x0f\xc3\xc3\x87\x0f\xe5\xc3\x87\x0f\x79\x5f\xb5\x41\x9c\x70\xd2\xfa\xa6\x39\xdc\xd0\xc6\x5a\x51\xa5\x31\x36\x4d\xb3\xf8\xea\x11\x15\x71\xad\x08\xb0\x22\xae\x8d\xd5\xa5\x6a\x4a\xa9\xae\x3e\x1e\xaa\xe2\xab\x40\xa3\xfb\x6c\x2e\xef\xda\xda\x9a\x58\x59\x59\x31\xd6\x45\x87\xee\xf3\xfd\x5b\xa4\x8a\x7b\x07\xd9\x46\x3c\x92\x57\x82\x99\xda\x24\xe8\x55\x75\xcc\xa2\xa8\x18\x7d\x12\xcc\x6e\x98\x7c\x53\x47\xd7\xb9\xcb\xa2\x6e\xa3\xa5\x6a\xe3\xb2\x0d\x8c\x0c\xe1\x6b\x60\x61\xb8\x7c\xb9\x91\x17\x28\xb7\x4c\xea\xc3\xde\xb4\x30\x24\x07\x30\x95\x16\x4b\x0b\xa1\x14\x1b\x56\x15\x77\x7c\x5a\x57\x33\x5e\xb2\x05\xac\x0e\x54\xa4\x87\xd6\x04\x0b\xc1\x64\x7c\x64\xe6\xb4\x6a\x06\xd4\x58\x14\x91\x1e\xbb\x76\x9e\x20\xc5\x66\xef\x20\xbb\x12\x8f\xc2\x9b\x69\x8c\xfd\x4c\x94\x56\x17\x94\xd6\x01\x19\x04\x81\x78\xf5\xd5\x57\xf1\xab\x5f\xfd\x4a\xa6\x69\x5a\x45\x47\x6d\x2d\x83\x62\x6b\x6b\x0b\x2f\xbf\xfc\x32\xa7\x23\x20\xa7\x09\x03\x58\x00\x84\xdd\x94\xe2\x95\x71\x67\xfd\xcc\xa3\xee\x85\xb3\x0f\xbb\x5f\x5b\x1b\x77\x9e\xe9\xcd\xc4\xe5\x40\x8a\x2d\x81\x7c\xcf\x13\x0d\x2a\xf5\xa7\xb3\x36\xda\xb4\xc0\xa3\x2a\x2a\xa3\x88\x24\xd6\x43\x45\xeb\x51\x46\x17\xba\xa9\xb8\x3c\x98\x86\x57\x36\x46\xd1\x7b\x77\x96\xa6\xff\xf6\xc9\x89\xa3\x8f\xf6\x16\xd2\xbb\x93\x8e\x9c\x80\x5b\x6e\x72\x01\x1d\x12\x91\x3c\x7b\xf6\x2c\x84\x10\xf2\x27\x3f\xf9\x89\x28\x56\x0f\x79\x95\x91\x9d\x9d\x1d\xac\xaf\xaf\xcb\xc2\xd1\xd7\xb5\xbc\x68\x0b\xc3\xa4\x78\xdf\x28\xcd\x97\xd7\xfe\x46\x48\x8a\x42\x49\xd1\xd9\x87\xdd\x70\x21\x09\xd6\x02\x05\x61\xa6\xf2\x8b\x0a\x4a\x70\xca\x6d\x8b\x9a\x4e\x94\x19\x13\xee\x2e\xbb\x25\x28\x61\x20\xcf\xd0\x4c\x51\x7a\x11\x3f\x13\x2a\xd9\xeb\xcf\x6e\xff\xfb\x89\xa3\xf7\x6e\xad\x4c\x7e\x75\xd0\xcd\xf6\x50\x4c\x11\x69\x6b\x11\x73\x34\x36\xa0\x45\x8f\xcd\x9d\x9d\x1d\xfc\xf2\x97\xbf\xb4\xf8\xd9\x0f\x7e\xf0\x03\x3c\xfe\xf8\xe3\xa2\x00\x2e\x32\xaf\x8e\x52\xe4\x3c\x22\x01\xe0\xfa\xc1\x85\x4a\x40\xdc\x5f\x98\x7d\x9e\x0a\xc8\x59\xa0\xd2\xed\x3d\x95\x9e\x18\x77\xb6\xba\xa9\x18\x08\xa5\x2d\xb9\x25\x3c\x23\x36\x7e\x95\x2a\x41\x4d\x3e\x5d\x0c\x43\xff\x46\x21\xd0\xa0\x46\x8f\xc3\x52\x63\x40\x46\x48\x27\x1d\x39\x7a\xb0\x90\xdc\xfe\xf5\x89\xc9\x7b\x1f\xaf\x8f\x7f\x39\x8e\xe4\x9e\x82\x1a\x11\x91\xb6\xb4\xe8\xbf\xd4\x07\xe4\x94\x52\xb8\x7d\xfb\xb6\x4c\x92\xc4\x1a\x07\xc5\xaf\x65\x95\x61\xa1\x4a\x31\x9d\x4b\xc3\x81\x4b\x9d\xc9\xbc\x4e\x13\x9e\x7b\xce\x7d\x50\x7c\xbb\x39\x0a\x49\x61\xa0\x28\x12\xa0\x90\xaf\x1a\x30\x7e\x54\xcc\x77\x05\x80\xcd\xb0\x2d\xe7\x3f\x14\x4c\x9a\xcc\xd2\x49\x82\xe6\xe5\x5c\x77\x75\xd0\x0f\x00\xd7\x74\xe8\x06\x3e\x3f\x5e\xe6\x61\x1d\x43\x2a\x49\x03\x35\x49\xf3\x93\x31\xe7\x96\x41\xf3\x76\x03\xc0\x47\x1f\x7d\x84\x8f\x3e\xfa\xc8\x27\xa0\x7d\xc1\xc7\x24\xdb\x30\xc8\xaa\xd0\x64\x8d\xa8\x63\xc0\x95\x4c\xaa\x22\xbe\x0a\xec\xd6\x01\x95\x2a\xc0\x54\x45\xe8\xae\x00\xe0\x6d\x75\x7f\x5d\x30\x54\x15\xcf\xeb\xac\x7b\x07\xb7\x2e\x93\xe7\xf2\xe5\xcb\xb8\x78\xf1\xa2\x25\xd8\x0a\x2d\x33\x04\x10\x29\xa5\xa2\x70\xa6\xfa\xf1\x50\x6e\x47\x47\xea\x82\xc8\xb0\x64\x03\x16\xcd\x44\xad\x9f\x1c\xb4\xe8\x7b\x3e\xa6\x38\xea\x20\xcc\x8d\x35\xed\x6d\xa8\x1d\xd0\xa1\x88\x6d\x09\xce\x26\x99\x4c\x31\x64\x7e\xad\x5d\x4b\x2d\x64\xa4\xcb\x2c\xb4\x3e\x5d\x56\x01\x16\xf2\x86\x68\xed\x58\x95\xf2\x04\xe5\x38\x2d\x38\xa6\xf3\x92\x30\xe5\xce\x8f\x57\xe6\x6c\xc8\xbb\x89\xb4\x62\x52\x02\x3e\x53\x26\x03\x3a\xc6\x2f\x98\x14\x20\x29\xea\x4c\xd4\xa5\x85\xfd\xec\xdc\x64\x49\xdc\xce\x42\x8c\x51\x6a\xbe\x7a\x75\x91\xa1\x8d\x8d\x8d\x0d\xdc\xbb\x77\x0f\x59\x96\xf1\x06\x55\xf1\x45\xf7\x39\x00\x60\x61\x61\x41\xaf\xd8\x81\xde\x8f\x85\x59\xa1\x73\x87\x6d\x85\xa8\x9b\x52\xbc\x35\xec\x6e\x3d\x71\xbf\xff\xcc\xe9\x61\xf4\xea\x42\x12\x5c\x0b\x33\xda\x12\xc8\x17\x31\x98\x97\x63\x7d\x61\x59\xdc\xc8\xb2\x23\xd8\xdd\x6c\x9e\x51\xd4\x91\xb4\x15\x24\x6a\xbd\x9b\x76\x2e\x2d\x4e\x83\x2b\x27\xc6\x9d\x1f\x7e\xb0\x31\xfe\xff\x6e\xad\x4e\x6e\x1f\x45\x72\x54\xb4\x4b\xd3\x92\x39\xc9\x79\x6b\x6b\x0b\x2f\xbc\xf0\x82\xfc\xc1\x0f\x7e\x20\xf6\xf6\xf6\xf8\x2b\x9a\xf1\xf3\xde\x7b\xef\x61\x30\x18\xe0\xe9\xa7\x9f\x06\xdb\x3c\x4f\xf7\x69\x82\x7c\xca\x74\xc2\xc6\x45\x38\x0b\x95\xb8\xbb\x34\xfd\x4c\x00\x21\xa0\xf0\xd8\x7e\x7c\x79\x71\x1a\xac\x09\x50\x58\xbe\x32\xb7\xc4\x73\x7b\x8a\xfe\xd6\x0c\x70\x83\x83\x39\xab\xdb\x4a\xa9\xa0\xc1\xad\xe9\x3f\xa5\xa7\x45\x6e\x7f\x72\xe2\xe8\xdd\x4f\xd6\x8f\xde\x7f\xd8\x4b\xef\x2a\xc2\x58\x29\x35\x66\x02\xdb\x80\x17\x30\x0b\x03\x11\xc9\xc3\xc3\x43\x59\x9c\x77\x35\x47\x07\xf7\xef\xdf\xc7\xd6\xd6\x16\xb7\xba\x48\xe4\x96\x3e\xd3\x2f\x28\x01\x5d\x6e\xa9\x15\x10\x0f\xfb\xb3\x7b\xa9\x90\x72\xda\x91\x93\xf3\x7b\xf1\xe8\xe4\xa8\x73\x6e\x21\x09\x56\x42\x49\x51\x39\x4d\xc6\xc7\x92\xb3\xe2\x08\x36\x88\xd3\xdb\xfc\x1b\x59\x59\x28\x06\x2a\xef\x2b\x99\x06\x2a\x39\xe8\x66\xfb\xf7\x16\x93\x4f\x3e\x5d\x3b\xfa\xe0\xd6\xca\xf4\xd7\x93\x48\xee\x01\x18\x11\x48\x4f\x11\x99\xbe\x28\xa6\xff\xcc\x34\x23\x73\x97\xc0\x3f\xfd\xd3\x3f\xe1\xf0\xf0\xd0\x37\x56\xea\xf8\x7d\x93\xe2\x9c\x2b\x16\x2c\x82\x51\x82\x37\xb1\x62\xbf\xe4\x69\x88\x5a\x5f\x5f\xa7\xf3\xe7\xcf\x13\xe5\x3b\xe4\x52\x11\x1f\x12\x51\x07\x40\x57\xff\xad\x1c\x85\x27\x4f\x0f\xbb\x4f\xad\x1c\x85\xdb\xa1\x12\x31\xe7\x9b\x26\x68\x1e\x58\x74\x82\x19\x78\xae\xa9\x5b\xf3\x4e\x62\xf9\x55\x99\xce\x07\x5a\x7c\x4b\xa9\xdd\x60\xf1\x7f\x3e\x08\x8a\xeb\x24\x54\xc3\xdd\x41\xf2\xeb\xbb\x4b\xc9\xc7\x47\x5d\xb9\x8f\xc2\x94\x88\x02\x85\x12\xd1\x8c\xca\xcd\xe7\xd4\xed\xdb\xb7\xd5\xbd\x7b\xf7\x38\x6b\xad\xeb\x6f\xde\x0b\x40\xde\x8f\xbe\xf4\xbe\xf8\xa6\x6b\x5f\x9d\xbe\x67\xfc\x7b\xf3\x78\xfe\xed\xdd\xb2\x78\x5a\x7d\xad\x09\xb0\xae\x0e\x5e\x1e\x93\xc6\x00\xfc\xc4\xab\xd8\x9f\x6e\x8f\x6e\x6b\xd5\xbb\xb5\x7d\x3f\xb7\x0d\x2e\x68\xa9\xaa\x43\x9d\x3d\x7b\x96\x4e\x9d\x3a\x45\x4c\x38\x05\x28\x57\x12\x75\x09\xd4\x8b\x0f\xe5\xda\xca\xbd\xf4\xeb\xf1\x28\xbb\x1e\x48\xb5\x5c\x0a\x5e\x5d\x94\x06\x0a\x34\x07\xd8\xcd\xb5\xd1\xb2\x08\x3c\xbf\x8f\xa6\xb5\x16\xae\x81\x38\x07\x25\x25\xb0\x20\x33\xdd\x02\x18\x29\x5f\x08\xc7\xf9\xb1\xc2\x81\x93\x06\x45\x66\x73\x2b\x03\x66\x8a\x77\xd1\x16\x21\x9d\x16\x04\xeb\x5c\xa3\x82\x71\x82\xf7\x43\x61\x61\xe1\x60\xa5\xb4\x06\xe9\x77\x2d\x44\x10\xd3\xaa\x4b\xc0\x02\xd3\x3f\x45\x33\x8c\x55\xa8\xa8\x29\xca\x42\xdc\x3b\x5a\x0e\x6e\xcf\xba\x34\x44\xce\x78\x33\x22\xca\x8a\x16\x19\x94\x72\xe9\xd2\x25\xfa\xf0\xc3\x0f\x55\x92\x24\x9c\x26\x34\xed\xf0\xb1\xe7\xf2\x48\x00\x50\x71\x1c\x8b\x67\x9e\x79\x06\x4f\x3f\xfd\xb4\xb5\x73\x78\x21\xb8\x73\xbe\xa8\xd0\x8d\x53\xb1\xb0\xbd\xd7\x3b\x77\xe5\xde\xc2\x1b\x8f\xed\x77\xff\x70\x30\x0d\x9e\x0f\x95\xd8\x84\xa2\x50\x0b\x58\x07\x6e\x9a\xfe\xd4\xef\x58\x92\xa2\x67\xda\xc4\xea\x67\x05\x01\x0a\x84\xc4\x62\x27\x13\x5b\xfd\x59\xf0\xd8\xea\x51\x27\x16\x0a\x7b\x7b\xfd\xd9\x28\x13\x90\xc5\x54\xa0\x2a\xbe\x35\x29\xa5\x14\x11\x61\x61\x61\x01\x9b\x9b\x9b\xea\xd6\xad\x5b\x98\xcd\x66\xde\x31\xbd\xb1\xb1\x41\x27\x4e\x9c\x50\x5a\x48\xb3\x69\x31\x50\x1e\x04\x6b\xb1\x00\x40\x29\x29\x8c\x23\x39\x39\x8c\xb2\x11\x88\x64\x37\x13\xbd\x6e\x26\x62\x52\x08\x0a\x4a\x62\xe0\x45\x83\x52\x4d\x1f\xe5\x76\xf4\x25\xbe\x2e\x69\x96\x38\x2d\x9a\xfb\x92\x4e\x15\x94\x9c\x86\xf2\x70\x67\x71\xf6\xe9\xaf\x4e\x1e\xfd\xdb\x27\xeb\x93\x0f\x1e\xf5\xd2\x7b\x52\x60\x04\x40\x5b\x19\x8e\x8a\x3f\xcd\xe3\x33\xe4\xc0\x25\x2b\xfa\x46\xdd\xbc\x79\x53\xfd\xeb\xbf\xfe\xab\xe6\x45\x9c\x4e\xd4\xc7\x1f\x7f\xac\x36\x37\x37\x69\x61\x61\x81\xf4\x5e\x41\x79\xb6\x62\x94\x95\xd7\x86\x96\x0a\xa5\xfe\xff\xa7\xed\x4d\x7f\xec\x38\xce\xf3\xd1\xe7\xad\xee\xd3\xe7\xcc\x99\xc3\xd9\x38\xa4\x28\x89\xa2\x28\x92\xa2\x64\x45\x92\x25\x2b\x92\x62\xd9\x96\xbc\xc4\xbe\xf6\x55\x1c\x03\x71\x2e\x82\x7c\x08\x60\xe4\xff\x0a\x90\x7c\x48\x02\x03\x06\x02\x18\x71\xbc\xc4\xca\x35\xe4\xab\x9f\x15\x7a\x91\x45\x49\x14\xa3\x85\x5a\x48\x4a\x43\x0e\x39\x1c\xce\x9c\xb5\x4f\x77\xd5\xfd\xd0\x5d\x55\x6f\x55\x57\x77\x9f\xa1\x9d\x02\x66\x4e\x2f\xb5\x77\xd5\xfb\x3e\xef\x53\x9b\x9a\xc5\x72\xbe\xd7\xcb\xf6\x47\xdd\x7c\x7f\x2e\x30\x8d\x80\x28\x96\x22\x11\x8a\x62\x03\x63\xf9\xdc\x33\xc6\x22\x99\x36\x53\xf6\x4d\xcd\x95\x9a\x86\x5b\xb6\x8f\x5c\x20\x9d\x76\xf2\xe1\xf6\x60\x7e\xe5\x83\xc3\xd3\xf3\xff\x73\x74\xfc\xe6\xd5\xd5\xd9\xa5\x34\x96\xb7\x89\x68\x08\x60\x04\x60\xa4\x94\x1a\x11\xd1\x04\xc0\x44\x29\x35\x03\x30\x2b\x99\x28\xbe\xa2\x48\xee\xef\xef\xab\x8b\x17\x2f\xea\x36\xe2\xf7\x0d\xde\x7f\xb8\x7c\xf7\xf5\x8c\x0a\x5c\x2b\xc0\x65\x5c\x9a\xe8\xf9\x26\x4b\x96\x3f\xaf\xb0\x2d\xe5\x07\xd2\x8d\x46\xa0\xd8\x80\xce\x0c\x15\x99\x9c\x31\x55\xc5\x57\x11\x71\x99\xc9\x25\x47\x2d\x2e\x51\x6e\xe7\x36\x45\x25\x1e\x36\x30\x91\x90\xab\x4a\xcf\x79\x8c\x11\x94\x02\x64\xb1\xf9\x5c\x9a\x09\xe5\xa0\xee\x70\x0c\x41\xd7\xc4\x34\xf0\x7b\xdf\xfa\x0f\x0d\x2f\xb5\x21\xd5\x45\x59\x8e\xb6\x67\x3c\xbd\xba\xeb\x10\x5b\x12\xba\xd6\xf7\x8b\x94\xd9\x8f\xcf\x7f\xc6\x9f\x1f\x34\x3f\x7e\xda\x75\x69\x34\xe5\x47\x08\x21\x7c\x86\x51\xb0\xbf\x62\xa7\x5c\xa5\x92\xde\x50\x1e\x4d\x26\xf2\x8c\xc8\xb1\x62\x57\xc9\x30\x4b\xd9\x68\x6a\xfd\xcb\x84\x90\xb2\x7d\xd7\x61\x1f\x19\x60\xd7\x4a\x5b\xcb\x33\x2a\xa5\x13\xdf\xa4\xce\x32\x96\xae\x75\x0a\x55\xea\xfd\x92\x65\x51\x44\x76\x88\x46\xe7\xc5\x18\x05\xca\x60\x05\xc0\x03\x3e\x15\x67\xcb\x63\x7c\x94\xf9\x34\xfb\x75\xf0\x1d\x73\x2b\x73\x35\x5c\x10\x62\xad\x9c\xaa\xa0\xb0\xd9\xb5\x7d\x9c\x97\x91\x08\xa0\x5c\xad\x24\x13\x75\xaa\xb7\x9f\x1f\x9b\xf5\x69\x2b\xeb\x92\x6b\xe9\x16\xf3\x0f\x42\xec\xb3\xdf\x46\x42\xed\xcf\x84\x13\x42\x88\x67\x9f\x7d\x16\x67\xcf\x9e\x15\xb0\x79\x10\x54\x6c\x40\x58\x1e\xb0\x89\xa4\x9b\x53\xff\xa1\x6b\xfd\x53\x67\xb7\xfb\x2f\x1e\x1e\xc5\x5f\x4d\x72\x71\x4a\x80\x12\x6b\xcc\x71\xe6\x58\x83\x16\x57\x8e\xf9\x6a\x1a\x26\x2c\xcc\x90\xb7\xae\x3c\x33\x99\xbb\x50\x6c\xbd\x6e\x86\xb3\x87\x47\xf1\xda\x63\xd9\xe0\x68\x2f\x8b\xfe\xf5\x37\xf7\xed\x5d\x4c\x23\x0c\x4b\x3f\x82\xad\x7e\xc9\x88\x48\x1e\x3e\x7c\x58\x7c\xe7\x3b\xdf\x91\xdf\xff\xfe\xf7\x45\x9e\xe7\x95\x3e\xf4\xdb\xdf\xfe\x56\x4a\x29\xc5\xd3\x4f\x3f\xed\xb0\x2e\x8c\x5d\xf0\xfb\x86\x00\x20\xe6\xb1\xc2\xd6\x4a\x2a\x47\x89\x9c\x0e\xbb\xf9\xee\x99\xed\xa5\x27\x8e\x0c\x3b\x27\x3a\x92\x7a\x76\x80\x03\x4e\x19\xec\xe2\x32\xae\x1d\x60\xea\xc8\x28\x0b\x66\xe6\x28\xd6\x4f\x24\x80\x71\x92\xef\x5c\x59\x9f\xbd\xf3\xee\xe6\xf8\xc2\xa7\x2b\xe9\x07\xd3\x8e\xdc\x95\x50\x43\x02\x0d\x19\xdb\x32\x66\x93\x8b\x2b\x6c\x4b\x9e\xe7\x52\x4a\x53\x15\xbe\xbc\x04\x00\xfc\xf8\xc7\x3f\x96\x2f\xbe\xf8\x22\xee\xbd\xf7\x5e\xad\x1b\x33\xd6\x26\x74\xbd\x80\xb5\x15\x00\x10\x0a\xc0\x24\x96\xf2\xf2\xda\x2c\xdd\xe9\x67\xbb\xd7\x0e\x25\x5b\xf7\xdf\xea\x9d\x3c\xb6\x9f\x9c\x3a\x34\x8d\x36\x92\x4c\x0c\x04\xc1\x02\x16\xe7\xe3\x17\xff\xec\x1b\xd7\xee\xca\x49\xc9\x49\x47\xee\xdd\xea\x67\x5b\x5b\x87\xd2\x0f\x3f\x59\x9d\x7d\x7c\x7d\x90\x6e\x8d\x13\x79\x1b\x64\x58\x96\xa1\x52\xc5\x30\x11\x15\x73\x71\x2a\xcb\xc2\x75\x7f\x51\x4a\xc9\x3c\xcf\xf1\xfd\xef\x7f\x1f\xac\x42\xea\x18\xca\x26\x7d\x19\x62\xb9\x8d\xab\x5b\x55\xb4\x88\x0b\x29\x47\xe3\x3c\x94\x6d\xf6\x73\x21\x10\x62\x89\x38\x96\x94\x50\x81\x18\x0d\xf2\xd3\xce\x82\x92\x52\x9c\x5b\xd9\xed\x88\x45\xdb\x4c\x5d\xcb\x83\x58\xe7\xe6\xf1\x85\xf6\x79\x50\xe5\x3f\x63\x99\x34\x14\x98\xcb\xcc\x72\x39\xf4\x34\x67\xc0\xc5\xfb\x0b\xd5\x11\xbc\xe7\xc1\x06\x8e\x30\x68\x58\x04\x50\xd6\xc5\xd3\xe6\x9a\xe2\xf6\x5d\x08\x18\x84\x1a\x57\x1d\xd8\x69\x8a\xcf\x0f\x5b\x57\x07\x6d\xc3\x50\x4d\x43\x42\x75\xe1\x10\x78\xb6\x68\x5d\xca\xaf\x7c\xe5\x2b\xe2\xf4\xe9\xd3\x42\x29\xa5\x27\xa4\xeb\x5f\x43\x89\x47\x73\xf4\xfb\xb7\xf3\x07\x3b\x33\x79\x9c\x14\x7a\x44\x16\x64\x6b\xcb\x91\x33\x10\x5a\x69\x01\x60\xca\xba\x7c\xe6\xdc\xdb\xc7\xde\x05\x6b\xfc\xbe\x55\x60\xbd\x9a\x85\x90\xc6\x42\x83\xb9\x76\x59\x0c\x0e\x92\xdc\xce\x48\xfa\x19\xe0\x76\x34\xed\x4a\x70\xa2\x98\xf2\x35\x87\xe7\xb1\x72\x5a\x45\x4c\x81\xbe\x69\x01\x99\x61\x90\xc0\xce\x2a\x02\xf1\xa8\x6c\xc2\xcc\xda\xd6\x75\xd1\x49\xe5\x89\xa5\x7d\x79\xdf\x68\x5d\xbd\x97\x75\x31\x2c\x15\x87\x56\xce\x66\xb8\xd0\x9b\x54\x5f\x07\x5e\x82\xed\xe2\xeb\x5f\xff\x3a\xee\xbf\xff\x7e\x6e\x70\x98\x49\xb8\x54\x6e\x42\xd8\x91\xe8\x3f\xf6\xe9\xe0\xec\x43\xd7\xfa\x7f\xbb\x36\xe9\x3c\x1f\x4b\x3a\x46\xba\x3d\xb2\x0a\xd0\x20\x97\x5c\xbd\x53\xf9\xac\x1e\x81\x65\x3c\x59\xb5\x6e\x01\xaa\x06\xbe\x04\x12\xb1\xa4\x63\x2b\x53\xfa\xbf\x3f\x73\x6d\x79\x10\x29\xfc\xd3\x6f\x8e\xef\x5f\x98\x24\x72\x0f\xc5\xb0\x08\x60\x01\x47\x0c\x20\x1b\x0c\x06\xf8\xde\xf7\xbe\x87\x7f\xf8\x87\x7f\xf0\xeb\xc7\xcb\x9f\xb3\x11\xa7\x1e\x76\xf2\xc1\x8b\xf9\x3e\x52\x00\xb7\x97\x32\x79\xe1\xd8\x70\x72\xa3\x9f\xee\x3c\x78\xb3\x7f\xf6\xde\xdd\xe4\xe1\x95\x59\xbc\x19\xe7\x94\x14\x65\x2d\x87\x3f\x34\x28\xb5\xa9\x99\x6a\xe3\x78\x85\xdb\xed\xba\x39\x4b\x00\xd3\x8e\xdc\xbb\x39\x98\x5f\xb9\xb4\x31\xb9\xf0\xd1\xfa\xf4\xd2\xed\xa5\x6c\xdb\xb0\x2c\x20\xcd\xb6\x0c\x51\x0c\x8d\xe8\x09\xb4\xc1\x25\xd0\xbf\xfe\xf5\xaf\x71\xfe\xfc\xf9\x85\x65\xaf\x57\x2f\x69\xe0\x3d\xbf\x2e\xb6\xd3\x07\xb2\x61\x37\x9f\x8e\x0f\x4f\xf6\xaf\xad\xa4\x5b\x1b\xa3\xf8\xbd\x23\xa3\xe4\xe8\xd1\xbd\xe4\x9e\xc3\xe3\xf8\x9e\xe5\x34\x5a\x89\x25\xf5\x84\x22\x41\x0a\x42\xcf\x51\xd3\x85\x56\x04\x28\x52\x32\x8f\x90\x4e\x62\x39\x1e\x76\xf3\xdd\xdd\x5e\x76\xfd\xda\xa1\xf4\x93\xeb\x87\xd2\xad\xdd\xa5\xf9\xce\x2c\x56\xb7\xcb\xfd\x6a\xf4\x70\x10\x67\x9d\xf8\xfc\x16\x3d\x5c\xe6\xe8\xbd\x34\x4d\xf1\x4f\xff\xf4\x4f\x4d\x3a\x27\x24\xef\xdb\x5c\xc5\x6f\xdb\x06\x74\x6d\x8a\x8f\x67\xc2\x51\x00\x1e\xed\x65\xaf\x15\x84\x90\x22\x8e\x24\x25\x02\x10\xce\x86\x3a\x3e\x62\xae\x81\x11\x9c\x3f\x32\xfe\x98\xb1\x6a\x56\x54\x70\x70\xc2\xad\x36\x68\x85\x01\x66\xd5\x55\x73\x11\x02\x32\xfa\x79\x1e\x60\x5c\x9c\x3c\xb6\x1f\x8e\xd6\x24\xf4\x16\xfd\xa8\x6d\xf1\x84\xe2\xab\x63\x15\x9a\x58\x9a\xa6\xbc\x2d\x02\x2c\xea\xd2\xe5\xef\x9a\xd8\x16\x3f\xee\x26\x40\xd8\xf6\x7e\x91\xfc\x85\x98\x1a\x3f\x6d\x9e\xc7\x10\x13\x53\xd9\x78\xae\x33\x95\x83\xde\x48\x9e\x15\x19\xd6\xb4\x3f\x97\x19\xd4\xa0\xc2\x36\x5c\x73\x1a\x7a\x08\xbf\xd8\x80\x4e\x18\xdb\x90\xb5\xd2\xe3\x98\x87\x69\x37\x87\x4e\x27\x2f\x38\x47\xf9\xa1\xe4\xd8\xa4\xbe\x0a\x8e\xf2\x7a\x52\xa9\x24\xdd\x3c\x72\x76\x89\x0b\x69\x3b\xb9\xd2\xae\x72\x80\x61\x51\x2c\x10\x61\x39\x37\xd7\x76\xe8\xcb\x65\x6b\x6d\x8f\xd6\x20\x47\x64\xb4\x99\x8c\xe4\xc9\xce\x44\x6d\xce\xfa\x6a\x47\x45\x06\x60\x1a\x65\x5a\xe4\x87\xf0\xdd\xef\x7e\x17\x3f\xfa\xd1\x8f\xc4\xf6\xf6\x76\xa5\x9f\xa3\xa6\xcd\xbd\xf8\xe2\x8b\xe2\xee\xbb\xef\xd6\xb7\x46\x49\x2b\xa5\x12\xcd\xb4\x08\x85\xde\x99\xed\xfe\xf1\x33\xd7\x97\xfe\x9f\xb5\x49\xfc\xe5\x58\xe2\xa8\x4e\x5b\x17\x57\xcb\x36\x53\x0e\xce\xce\xf9\x5f\x4a\x33\x57\x14\x02\x7d\x2e\xae\xb5\xa0\xd4\xbe\x10\x0a\xfd\x7e\x2a\x9e\x7f\xe0\xc6\xd2\x74\x14\xcb\x7f\xbd\x78\xd7\xe8\xe2\x28\xc9\xf7\x4a\x39\xa6\xcb\xa7\x27\x95\x42\x08\x21\xbf\xf7\xbd\xef\x89\x7f\xf9\x97\x7f\x41\x9a\xa6\x4e\xff\x7c\xfd\xf5\xd7\x31\x9f\xcf\xe5\x73\xcf\x3d\xc7\xfb\x5a\xc6\xfc\x38\x0c\x03\xf3\x23\x01\x64\xb3\x48\x65\x57\xd7\x66\xe9\xad\xe5\xf9\xee\x91\xf5\xe4\xe3\x13\xbb\xbd\x93\x77\xdf\x4e\x4e\xae\x4e\xe3\xcd\x24\x17\x3d\xa1\x8a\xf9\x2f\x76\x18\xa4\x41\x5e\x97\x0f\x73\x52\x32\x13\x2a\x1d\x25\xf9\xde\xcd\xfe\xfc\x93\xab\x6b\xb3\x4b\x57\x57\x67\x57\x6e\x2f\x65\x37\xe7\x91\xda\x53\x76\xfe\x86\x06\x2b\xfe\x44\xd4\xca\xb9\x3c\x0d\x2c\x7b\xf0\xf9\x4f\x7f\xfa\x53\x7c\xf9\xcb\x5f\x96\x0f\x3c\xf0\x80\x66\xf5\xb2\x92\x7d\xcb\x9c\xa1\x61\x37\x1e\xbe\x6a\x27\x95\x84\x74\x98\xe4\xd3\x71\x27\xbf\xbd\xb5\x92\x6e\x2d\x6d\x8a\xf7\x56\x27\xf1\xda\xea\x34\x5e\x5b\x9e\x45\x83\xa5\x2c\xea\xf7\xe6\xd4\x4f\x32\xd1\x8b\x15\xc5\x0a\x40\x2e\x54\x96\x46\x6a\x3a\xe9\xe4\xe3\xfd\x5e\xb6\xb7\xbb\x94\xef\x0c\x93\x7c\x38\xee\xe4\xe3\x69\x47\x0e\x33\xa1\x46\x25\x60\xe1\xa0\x85\xff\xea\xbf\xa6\xd5\x44\x8b\xb8\x83\x00\x16\xdf\xbf\x69\x4b\x75\xcb\xa1\xdb\x14\x89\x2f\xbc\x9d\x06\xc8\xa8\x72\x73\x5d\x0a\x71\x44\x8a\xe2\x58\x52\x12\x29\xc4\x50\x88\xc3\x43\x3a\xaa\xa4\xab\x61\x7b\x1c\xa3\xfa\x42\x8d\x53\xfb\xe1\x02\x94\x4f\xfc\x85\x97\x0e\xf1\x1e\x0d\x87\x9a\x43\xb8\x0b\xb8\x4e\x11\xb2\xdc\x32\x2e\xba\x2e\x4c\xbd\xd4\x80\x16\x5f\x61\xb6\x7d\xc4\x10\xb8\x58\x44\xd9\x86\xc2\x87\xf2\xe2\xe7\x63\x51\xa0\xd1\x16\xff\x9d\xa0\xe9\xa6\xbc\xb4\xc5\x7d\x50\xc6\xa9\xcd\x4f\x5d\x7c\x75\xf1\xf8\xa0\x9d\x03\x16\x01\x05\x01\x20\xe9\x8e\xe4\x46\x3c\x55\x27\x49\xa2\xef\x61\x0b\x58\xcb\xba\x54\x4a\x65\xa3\x36\x16\x32\x60\x58\x05\x55\x06\x74\x86\x6c\xa8\xda\x39\xf8\xe4\x5b\x3b\x1c\xc4\x17\xff\x97\xe9\x72\xe0\xc0\x4d\x76\xa5\x15\x83\x79\xcb\xbc\x73\x50\xc3\xf6\x7a\x31\x7d\xce\x07\x2a\x1c\x8c\x15\xe9\x3b\x80\x4a\x83\x2c\x0f\x94\x98\x5f\xe2\x2c\x8b\xdf\x5f\x61\xea\xc5\x35\x56\xac\x42\x37\xf5\xa9\x7f\x25\xfa\x9d\x99\xba\x27\x99\xca\xcd\x28\x13\x1f\xcf\x05\xc6\xe4\x6d\xdb\x50\xde\xcb\x24\x49\x42\x43\x47\x8d\xae\xd3\xe9\x80\x9d\x37\x64\x87\x0b\xcb\x73\xaa\x84\xa2\xde\x5d\xfb\xc9\xe6\x67\xae\x2d\x7f\x7b\x7d\x12\x3f\x1f\x4b\xda\x04\x48\xb0\x12\x17\xbf\xce\xe7\xe1\xb5\xca\x06\x8f\x1c\x39\x06\x0b\xfa\x4c\x1b\xaa\x71\xce\xd9\x6e\x45\x8d\x09\x45\xfd\x43\xb3\xe8\xb9\x07\x6f\x2c\xed\x4e\x3b\x32\xfd\xe0\xf0\xe4\xbd\x72\xc2\xae\x53\xfe\xd2\xda\x46\x92\x24\xc1\xbe\x23\xa5\xd4\xab\xb1\x80\x6a\x7f\xd2\x93\x75\xa7\xc1\x7c\x95\xdb\x4b\x48\x20\x1b\x25\x32\x9d\xad\xcd\x46\x3b\xcb\xf3\x1b\x1f\xad\x77\x3e\x3c\x32\x4a\x8e\x6e\x8c\xe3\xa3\xab\x93\x78\x63\x39\x15\x6b\xdd\x4c\xf4\x22\x49\x31\x29\x12\x04\x08\x2a\xfa\x1a\x24\x41\x2a\x82\x2c\x0d\xcc\xe9\x38\xc9\x87\xb7\x7b\xd9\x8d\x9b\xcb\xf3\xeb\x37\xfb\xf3\x1b\xb7\x97\xb2\x9d\xfd\x6e\xbe\x3b\x8b\xe5\xbe\xd4\xfb\x92\x90\xa3\xa0\xf5\xf0\x90\x1e\x1e\x71\x96\x41\x03\x76\x78\xe4\xd5\x57\x5f\x95\x17\x2f\x5e\x04\xea\x0d\x1e\x53\x07\x59\x96\xe1\x95\x57\x5e\xc1\x7c\x3e\x97\x7a\x2f\x1f\x0d\x60\x02\x3a\x43\xc7\xe7\x00\x17\x14\x5b\xed\x67\x12\x98\xa6\x91\x1a\xcf\x45\x9e\x8c\x12\x79\xeb\xfa\xa1\x79\x37\x92\xe8\xc5\xb2\x98\x8a\x11\x49\x12\xa2\x1c\x6a\x52\x80\xcc\x05\xb2\x5c\xa8\x6c\x1e\xc9\xe9\x5c\xa8\x54\x0a\x35\x93\x84\x54\x01\x29\xa0\xa6\x28\x58\x47\x0e\x58\xa6\xac\xfc\x6d\x4b\xa0\xb1\xb7\xb7\x27\xff\xe3\x3f\xfe\xc3\xaf\x87\x26\xb7\xa8\xe1\x5d\x89\xb3\x69\x39\x74\x9d\x02\x69\xba\xaf\x0c\x07\x78\xab\x8b\x84\x50\x10\xb1\xc4\x52\xb1\xf9\x9c\xf6\x54\xf6\x21\xd2\x13\x87\x4a\xe1\xc4\x2c\x02\xff\x9b\x2a\x26\xa7\x9d\x09\xba\xca\x32\x2c\x75\x8e\x53\x8c\xd6\x10\xb5\x82\xbc\xd2\xd5\x3d\x1c\xa3\xa0\x64\x5e\x6c\xad\x9d\x49\x32\x8c\x8b\x66\x59\xa4\x27\x54\x17\x55\x82\xdc\x2d\xfa\x84\xd4\xfe\x08\x00\x00\x20\x00\x49\x44\x41\x54\x41\xdb\x86\x92\x42\xfe\xfc\xe7\x6d\x79\x0b\x0d\x99\x68\xff\x6d\xf9\xac\x03\xbd\xa1\x0e\xbe\x28\xe3\x13\x0a\xd3\x04\xae\xeb\x5c\x88\x00\x2d\x40\xd2\xbf\x25\x59\x24\x1f\x95\xb2\x7c\xfe\xf3\x9f\xc7\x3d\xf7\xdc\x63\x1e\x2a\x7b\xcc\x45\xa9\xb0\x54\x4c\x39\x92\xde\x48\x1e\x8b\xe6\x6a\x53\x6f\x03\x60\xf0\x09\x6c\xab\x73\x86\x87\x5c\xbd\x0d\xdd\x33\x0a\x05\x6d\x69\x8e\x66\x88\xed\x29\x3a\xed\xdf\x90\x10\xe4\x8e\xfa\x94\xe9\xf3\x79\x66\x4e\xe3\x2f\x01\x04\x4c\x5e\x79\x47\xe4\xfd\x48\xe7\x4f\x79\x9b\x5c\xd9\x30\x4e\x3e\x2a\x42\xdb\xdb\x8b\xc9\x39\xb0\xa5\x62\x95\x02\x2e\x54\x81\xa9\x51\x5e\x38\x46\x4d\x90\x82\x88\xe6\x6a\xb3\x33\x55\x47\x44\x86\x1e\x75\xcd\xbc\x13\x7f\xb8\x08\x38\x98\x81\x81\xaf\x7d\xed\x6b\x62\x6d\x6d\x4d\xdf\x72\x20\x14\x03\x48\x04\x28\x59\x9e\x47\x2b\x8f\x6e\x2d\x7f\xf1\xc8\xb0\xf3\x8d\x4e\x2e\x8e\xa1\x5c\x51\xc3\x01\x89\x99\x6f\xcc\x4a\x05\x26\xdf\xec\xbc\x1f\x56\x3f\x15\x6a\xce\x3d\xeb\x8d\x2f\x23\xe6\x71\xd8\xff\x0a\xb1\xa4\xcd\xf5\x71\xe7\xf9\x33\x37\x96\x76\x46\x49\x3e\xbd\xba\x36\xfb\x30\x8b\xec\x89\xf7\xac\x4c\x92\x88\xc4\x37\xbf\xf9\x4d\xf9\xd2\x4b\x2f\x09\xb6\x82\x04\x00\xf0\xd1\x47\x1f\xe1\xdc\xb9\x73\xf2\x99\x67\x9e\xe1\x7d\x28\x83\xeb\x38\x78\x31\x8c\x0b\x80\x4c\xa1\x38\x98\x71\x1e\xa9\x74\x4f\xe4\xe3\x49\x47\xde\xbe\xb9\x3c\xbf\xde\xcd\x44\xbf\x9f\x8a\xc1\x60\x16\xad\x1c\x9a\xc5\x2b\x4b\x73\xd1\xef\xe4\x22\x89\x14\x84\xde\x7d\x37\x13\xc8\xd2\x48\xa6\xa3\x44\x0e\x47\xdd\x6c\x38\xea\xe6\xc3\x61\x92\xef\x4d\x3a\x72\x98\x46\x72\x9c\x45\x6a\x92\x13\xc6\x70\x59\x86\x31\xac\xb2\x1e\x03\x98\x6a\xd0\x02\x38\xfb\xdc\x98\x72\xfe\xea\x57\xbf\x92\xef\xbd\xf7\x1e\xca\x65\xbf\xbe\xac\xf7\xe5\x9c\x04\x20\x27\x93\x09\x66\xb3\x59\xa8\x6d\x39\x75\xa3\xec\x79\x46\x92\x81\x26\xbd\x92\x27\x45\xb1\xe7\x4b\x4f\x11\xe2\x0c\x2a\xc9\x84\x8a\x09\x9a\x10\x28\xbe\x11\x6f\xfa\x00\x64\xb1\x39\xa1\xa9\x63\x03\x82\x60\xf7\x66\x71\x18\x26\x56\x7e\x1f\xbc\x39\x75\x71\xe3\xc6\x0d\xf9\xf2\xcb\x2f\xeb\x3d\x5b\x7c\xd7\x66\x40\x2e\xa2\x17\x9d\x7a\x0c\x6d\xf9\xef\x7b\xd2\xf7\xfe\x07\xa8\xcd\x54\x60\xd5\x8e\x11\x02\x91\xa4\x38\xce\x29\x11\xc5\x72\x2e\x61\x56\x1a\x14\x21\xe1\x08\x6d\x2d\x8b\x7c\xe0\x50\xf2\xa0\x76\x5e\x0b\x3b\x29\x53\xf7\xf8\x32\x02\x47\x5c\x1a\x6b\xc4\x0a\x5f\x7f\xc8\x9f\x6f\x62\x65\x95\x04\x1c\xa7\x08\x52\x96\xe7\x81\x94\xbb\xe6\x02\x96\x65\x09\xb1\x2d\x75\xca\x30\xd4\xb0\x17\x09\x57\xf7\xfe\xa0\xee\x4e\xc3\x07\x99\x06\xe6\x9a\x86\x62\xea\xe2\x6a\x53\x12\x75\x20\x2d\x04\x8a\x42\x69\x36\xd5\xf5\x22\xe0\x29\x94\x8e\x00\x20\x0f\x1f\x3e\x2c\x96\x96\x96\xb8\x75\xad\xfd\x17\xbb\xa0\x02\x89\x90\x48\x92\xb1\xbc\x5f\xe4\x6a\x05\xda\x60\x70\xf1\x00\x00\x06\xba\xcd\x92\x62\x3e\xd0\xe1\x59\xe0\x9c\x5d\xe0\xcc\x8d\xc3\x31\x5a\x60\x61\x77\xca\xf7\xb6\x28\x60\x05\xb3\x2b\x8e\xdc\xb7\x0e\x58\xe1\x40\x27\x50\x08\x17\xd8\x04\xb6\x14\xb0\xeb\x93\x99\x92\x56\x4e\xdf\x24\xd2\x8a\xb6\xd4\xc7\xa6\x28\xa1\x41\x12\x0b\x5a\xb4\xea\x27\xf2\x18\x18\xc7\x80\x2a\x24\x43\x94\xab\x8d\xce\x54\x1d\x8d\xe7\x6a\x25\x55\xd8\x21\xbb\x11\x5c\x85\x45\x7e\xfa\xe9\xa7\x71\xee\xdc\x39\x3d\x5c\x04\x34\x00\xeb\xa3\x47\x8f\xa2\x3c\x61\x59\xc7\xa1\x01\x51\x31\xaf\x25\xa7\xfe\x03\x37\x7b\xa7\xee\xbd\xdd\xfd\x7a\x37\x13\x27\xa9\x58\x0e\x0d\x3d\x6c\x5d\xc2\x0d\x3b\xe4\xc5\xab\xcf\xd4\x09\x95\xec\x99\xb7\xca\x86\x01\x47\x03\x76\xf9\x5c\x41\x8d\x46\x2b\x87\x51\xea\xeb\x02\x70\x27\x39\x8e\x6f\x8e\x3a\xcf\xdd\xb7\xdb\xbd\xba\xdf\xcb\xf6\x76\x96\xb3\xca\xd1\x08\x9a\x91\x3a\x76\xec\x98\x88\xe3\xb8\xd2\xd7\x26\x93\x09\xde\x79\xe7\x1d\x10\x91\x7c\xfa\xe9\xa7\x35\xd0\x01\xea\xc1\x8b\x89\x5f\xf1\x43\x08\x09\xa9\x22\xf4\x52\x52\xd3\x79\x94\x0f\x47\x49\x9e\xec\x2e\x51\xd2\xc9\x69\x29\xc9\x29\x89\xa5\xe8\x09\x59\xb0\xf7\x42\x21\x2e\x56\xbd\x43\x72\x76\x21\x8b\xd4\x24\x13\x2a\x95\xfa\x60\x40\xaa\x28\x69\xf3\xc7\x18\x86\x29\x9f\x90\xab\xb7\xbd\xd0\x79\x7c\xf5\xd5\x57\xe5\x7b\xef\xbd\x87\xc9\x64\xb2\x08\x3b\xec\xf8\x79\xf7\xdd\x77\xd1\xef\xf7\x65\xb9\x7d\x02\x37\x76\x4d\xdd\xf0\xb4\xc8\xdd\xac\x4e\xe7\xbd\x07\x7d\x5c\x00\x20\x40\x48\x54\xb1\x89\x9d\x50\xd5\x36\xec\x03\x47\x7e\x4e\x52\xca\xee\x39\xb3\xe2\x4f\xc2\x4d\x35\x3b\x04\x06\x5a\xae\x5d\xbb\x26\xcf\x9d\x3b\xa7\x0f\xe4\xe4\x2e\x34\x4a\xe0\xbb\x26\xe3\xd7\x37\x48\x4d\x5c\x6d\x93\x73\x9b\x50\x52\x30\x53\x7c\x32\x9b\x5e\x16\xca\x33\x12\x29\x12\xb1\xa4\x38\x32\x9b\xcf\x31\xf4\xaf\x3b\x17\xac\xe0\xb2\x71\x95\x9d\xd6\xc8\x61\xfe\xd2\xae\xef\xb7\xcb\x32\x0b\x10\xe2\xb2\x2a\xd6\x8a\xd1\xf7\x55\xc7\xd6\x24\x31\x50\xc3\xe3\x51\x80\xcc\x09\x69\x4e\x6a\xa6\xb7\xfb\x2f\x1b\x1e\x67\x5e\x78\xa4\x75\x80\xe3\x40\xf4\x58\xc0\x7f\xd3\xc7\x6e\x7b\x1f\x52\xea\x6d\x61\x11\xf0\xc7\x1b\x16\x8f\x5b\xa0\x39\xbe\x45\xd2\xf2\x1b\xec\xa2\xe0\xc6\x67\x53\xda\xda\x75\xa8\x0c\xa1\x78\x79\x9e\x9c\x70\x76\xd5\x4a\x31\x11\x1d\x25\x68\x29\xdf\xc7\x71\x2a\xfb\xc9\x44\x9e\x10\x12\x3d\x34\x38\xbe\x25\xbf\x79\x06\x80\x99\xda\x0e\x2c\x01\x60\x87\x89\xbc\xe7\x96\xf4\xb0\x0d\xb9\xd0\x51\xc4\xfa\x8a\x0f\x7c\xdc\xbd\x97\x4c\x9f\x21\xdd\xb7\x3d\x23\xc3\x60\x2c\x6f\x10\xc3\xb2\xac\x16\x56\x98\xbe\x6d\x65\x84\x8d\xab\x70\x9c\x59\xb1\x04\x09\xb7\x36\xdc\xa5\xbe\x85\xcf\x42\x8a\x78\x36\x8b\x8d\x9b\xb4\x92\xb6\x9d\x9f\x08\x20\x89\x41\x67\x2a\x8f\xc6\x33\xb5\x42\x4a\x25\xaa\x3c\xc1\xbb\x1c\xce\xd1\xac\x8b\x04\x80\x7b\xef\xbd\x57\xf4\xfb\xfd\x56\xd0\xf2\x67\x7f\xf6\x67\xa2\xdb\xed\x6a\x3f\x7a\x88\xc8\x0c\x15\x09\x89\xde\xa1\x69\xbc\xf1\xc0\xce\xd2\xd3\xcb\xb3\xe8\x71\x42\x71\x88\x9e\x0f\xb0\xf4\x77\x00\xec\x07\xe0\xe0\x55\xb1\x65\xea\xba\x56\xf4\x77\x74\x56\x55\x2a\xd8\xe1\x37\xb2\xc0\x57\xe3\x17\xdb\x76\xec\x9c\xa5\x02\x07\x51\xb2\x34\x17\x67\xee\xde\x4f\x9e\xdc\x1e\xcc\xaf\x0c\xbb\xf9\x30\x8d\x95\x56\x5a\x1a\x58\x98\xfe\xf8\xe4\x93\x4f\xe2\x77\xbf\xfb\x9d\x28\xf7\x31\x31\xb2\x61\x3c\x1e\xe3\xe2\xc5\x8b\x42\x08\x21\x9f\x7a\xea\xa9\x3a\xe6\x85\xcb\x12\xce\xba\x70\xc5\x3a\x05\xa1\xa7\x80\x44\x11\xe2\x5c\xc9\x24\x13\x14\x4f\x3b\x88\x81\x5c\xd7\xaf\xae\x77\x13\x97\x65\x17\x0a\xf6\x06\xfa\xe8\x01\x10\x57\xce\x66\x57\x5c\xb8\x60\xc5\x59\x45\x44\xde\x3e\x5d\x57\xae\x5c\xc1\x64\x32\xf1\x9b\xc0\x42\xc3\x24\x37\x6f\xde\x94\xe7\xcf\x9f\x17\x4a\x29\xf9\xe0\x83\x0f\xfa\x43\x91\x7c\xfa\x01\xe0\x32\x2e\xba\x5e\x92\x32\xaf\x09\x03\xc5\xbc\xad\x19\xb9\x04\x18\x40\xea\xd7\x2f\x8f\xcf\xaf\xef\xd4\x7b\xc7\xc1\x8a\x01\x2d\x9f\x7e\xfa\xa9\xfc\xfd\xef\x7f\x8f\x4f\x3f\xfd\xf4\x8f\x65\x9c\xfb\xef\x82\x32\xdf\xdf\x80\x8e\x7b\x68\x1b\x06\x08\x26\xe8\xcd\x86\x76\x80\x0c\x50\x8c\x41\x46\x8a\xf4\x1a\x74\x2b\xa3\x15\x99\xce\x68\xd8\x10\x58\x4b\x8b\x98\xc0\xd1\xce\x08\x44\xf3\x8e\x75\x76\xd8\xfd\x2b\x0a\x2b\xcd\x4e\x72\x34\x1d\x5c\xb9\xe1\x35\x95\x6e\x0b\x50\xbd\x54\x45\x56\x65\x2e\x54\x96\x0b\x64\x0a\x4a\x12\xa8\x32\x49\xcb\x9b\xb8\xd5\xa4\x68\xf5\xfb\x3b\x01\x36\x21\xb6\x22\xf4\xcd\x16\x65\x69\x16\x01\x49\x3e\xc3\xd2\xd6\x4e\xfc\xb8\x0e\x02\x60\x16\x01\xce\x75\xf1\x87\x1a\xfc\x22\x79\xe4\x65\xe1\xd7\x8b\x00\x2d\x9e\x4e\x49\xd5\x52\x0c\xa5\xe2\x64\xa2\x56\xe2\x54\x1d\x23\x55\x1c\x98\xc6\x9d\x03\x2e\xc2\x68\xba\x50\xcb\xba\x33\xb0\xd3\x91\xc3\x94\x20\xac\x82\x36\xda\x0a\x6e\x7b\xf6\x19\x17\xa7\x7f\x59\x0b\xc1\x05\xfe\x8e\xed\x5f\xfe\x58\xd8\xc0\x81\x82\xf5\x6f\xa6\xd7\x82\xcf\x9d\xf1\x69\x18\xcd\x16\x71\xe3\xc4\x32\x0a\x5c\xdb\x6a\x7f\x5c\x69\x5b\x90\x63\xf2\x6f\x14\xb2\x41\x6f\xce\x70\x30\x00\x90\x54\xbd\x38\x55\x1b\x9d\x99\x5c\x13\x79\x94\xe4\xc2\xec\x64\x0b\x3e\xdf\x05\xed\xc2\xd6\xb4\xb5\x47\x1e\x79\x04\x71\x1c\x3b\xac\x1b\xd8\x04\xed\x6e\x26\x06\xf7\xde\xee\x9e\x3a\x3c\xea\xfc\x59\x24\x69\xc3\xc4\xa0\x01\x20\xa3\x99\x48\xcb\x2d\xe5\x6e\xb0\x59\x14\x8f\x01\x4b\xf3\x7d\xf4\x27\x61\x4c\x56\xd9\x46\x14\x63\xf1\xf8\x62\x06\xbb\xfd\x8d\x69\x30\x26\xae\x58\xd2\xc6\xea\x24\x7e\xfc\xee\xbd\xe4\xdd\x9d\xfe\xfc\xfa\xf6\xa1\xb9\xbf\xfc\xd5\xf4\x99\xb3\x67\xcf\x8a\x8b\x17\x2f\xca\xd0\x50\xc1\x64\x32\x91\x6f\xbc\xf1\x86\x88\xe3\x58\x7e\xf6\xb3\x9f\xb5\x45\x2e\x94\x31\xaf\x4f\x9f\x61\x48\x60\x95\x68\x02\xcb\x2e\x68\x65\x1d\xab\xea\x84\x6a\x5f\x16\x96\x7f\xe6\x5c\xa0\x8c\x81\x11\xbe\xa1\x9c\x61\x18\xc8\x9e\x21\xa4\x27\xe1\x56\x40\xcb\x1b\x6f\xbc\x21\x4b\xd0\xb2\xa8\x7c\xa9\xb8\x1b\x37\x6e\xe0\x8d\x37\xde\x80\x10\x42\x9e\x3e\x7d\xda\x67\x5e\xf4\x2a\x37\x94\x79\x4e\x60\x01\x8c\x3e\x3a\xc1\xd4\x03\xe0\x9c\x57\x65\x80\x0b\xe0\xf4\x5b\xaf\x4e\x82\xe0\x45\x9f\x29\x95\xa1\x1e\xb0\x48\x00\xf8\xe4\x93\x4f\xe4\xf9\xf3\xe7\x71\xf9\xf2\xe5\x26\x39\xed\xcb\x53\xee\xea\x64\x38\x7f\x17\x7c\xee\xef\xe3\xc2\x5f\x2e\xfa\x5c\x00\x90\x1b\x1b\x1b\xe2\xd8\xb1\x63\x00\x7c\x5a\x96\x00\x4b\x2b\x82\x14\x84\x50\x14\xeb\x49\x54\x4e\x67\xf4\x6c\x49\x53\xdd\xe4\xf8\x04\xfc\xf7\xde\x43\x72\x25\x77\x65\xe8\xca\x17\xb0\xf6\xb9\xa6\x54\x03\x1b\xd4\x69\x61\x52\xa0\x9e\x2c\x17\x2a\x95\x64\x3a\x1e\x0f\x23\x01\xdb\x58\x88\x08\x9f\x7e\xfa\x29\xd8\x4e\x93\x4d\x1f\x8b\x3b\x5f\x61\xd6\x09\x4b\xed\xda\x00\x4b\x53\x1a\x6d\xc0\xca\x77\x6d\xe0\xa1\xce\x4f\x9d\xbf\x45\x3b\xbc\x1f\xcf\x22\x00\xed\x20\x74\x65\x53\x3c\xc1\x72\x9e\x3c\x79\x12\xfd\x7e\x1f\x00\xf4\xdc\x16\x23\x40\x89\x48\x40\x29\x41\x0a\x71\x32\x91\x6b\x51\x86\x4d\xa8\xea\xbc\x32\xce\x88\x14\x11\xc1\xb0\x06\x86\x31\x60\xcf\x2c\x29\xa1\xa9\x10\xb8\xc8\xda\x69\xba\xac\x4d\xdb\x16\x0e\xce\x88\xf0\x78\x34\x0e\x32\x53\x26\x74\x14\x21\xe7\x33\x39\x7a\xdf\x26\xe2\x59\x20\xc7\x2f\xb3\xed\x6d\xee\x98\x10\xb0\x73\x6b\x98\x91\x61\xb9\x06\xb8\x09\x68\xf6\xa5\x04\x3e\xee\xf2\xa9\x4a\xdc\x36\x41\x9d\x67\x12\x51\xa6\xd6\xe2\x54\x1d\x16\x99\x4a\xb2\xd8\x0c\xe9\x08\x4f\x06\x34\x31\x82\x12\x80\x14\x42\x88\x07\x1f\x7c\xb0\x9c\x8f\x6b\x81\x2b\x9b\x37\x93\x08\x89\xde\xa1\x59\xb4\x71\x72\xa7\xf7\xe4\x52\x2a\xce\x9a\x9d\x61\xcb\xec\x71\xac\x65\x8f\x1b\x21\x73\x48\xa4\x33\xe5\x99\x7f\x76\xc5\xbe\x67\x19\x91\x01\x36\xa6\xfa\xd8\x47\xe1\x8c\x1a\x5c\x90\xe3\x49\x44\xd1\xcb\xa2\x13\x47\x87\xc9\x63\xd7\x46\xe9\xa5\xdd\xa5\x6c\x37\x8d\xa4\xd9\xd3\xa5\x2c\x5b\xaa\xf7\xbd\x39\x71\xe2\x04\x46\xa3\x91\xd8\xdf\xdf\xaf\x28\xf3\x34\x4d\xe5\xaf\x7f\xfd\x6b\xd1\xed\x76\x71\xf6\xec\x59\xa9\xf7\x3d\x82\x3d\xb7\x07\xb0\xfd\xd4\x99\xd3\x01\xbb\xab\x71\xc2\x7f\xcb\xf4\x39\xc0\xac\xc8\x44\x3e\x4f\x04\x55\x76\xa1\x8e\x65\xe0\x60\xa5\x02\x5a\x2e\x5e\xbc\x28\x7f\xf3\x9b\xdf\x60\x3e\x9f\x07\x9a\xc4\x81\x9c\xbc\x71\xe3\x06\x5e\x7b\xed\x35\x31\x9f\xcf\x65\xa7\xd3\xc1\xe9\xd3\xa7\x75\x3d\x08\x58\xa0\xa0\x0f\x02\x35\xed\xb3\x2c\x7f\xca\x80\x8b\x3f\xcc\xd9\x24\xbb\x39\x70\xf1\xd9\x1c\x7e\xe0\x66\xed\xa9\xcf\x5b\x5b\x5b\xf2\xfc\xf9\xf3\xf8\xf8\xe3\x8f\x7d\xe3\x4e\xa7\xe1\xa7\x19\x32\xfc\x9a\x80\x4c\xc8\x99\x32\xd5\x2d\x87\xae\xb5\x28\xea\xfc\x9e\x38\x71\x02\x67\xcf\x9e\xd5\xe7\xb3\x70\xf0\x22\x18\x88\xe1\x33\xbf\x0b\x20\x53\x78\x76\x04\xb7\xb6\x0e\x1c\xec\xa0\x1c\x99\x13\x74\xfc\x24\x5b\x1d\x6d\x68\xe7\x4f\xc0\x46\xe4\x0a\x28\x6e\x29\xb2\x78\xb9\x7e\xa0\x92\x71\x21\x95\xc9\xea\xe6\x73\xd2\x0f\xaf\x94\xc2\xc5\x8b\x17\x71\xe5\xca\x95\xba\x6c\xfb\x00\xc5\xaf\xeb\xba\x06\xd1\xa4\xf0\xeb\x40\x03\x8f\xa7\x8e\x41\xa8\x63\x50\x42\x08\x3a\x94\x46\x28\xad\xd0\xbd\xef\x8f\xc7\x5d\x97\xdf\xd0\x75\x5d\xfe\xfd\x34\x9a\x00\xb8\x9f\xc7\xba\xb8\x2b\x69\x3d\xfd\xf4\xd3\x58\x5d\x5d\xd5\x82\xd7\xb4\x73\x68\xa5\x05\x8a\x49\xa9\x24\x99\xa8\x0d\x21\xd1\xb7\xd1\xd8\xa5\xbe\x80\xd7\x0f\x78\xf3\x73\x98\x05\x13\x14\x66\x39\xb3\xab\x9d\x1d\xa0\x6e\x86\x10\x94\x85\x0a\x7c\xb8\xd4\xb4\x53\x3d\x9c\xc3\x40\xbf\x0e\x07\xb8\xfd\xd0\x60\x98\xaa\x71\x62\xe2\xf1\x7a\x4f\x19\xb1\xd5\xb4\xba\xac\x06\x94\x18\x80\xa2\x15\xb0\x35\x2e\x88\xb1\x04\x8e\x21\xa3\x87\x4b\x42\x8c\x0c\x7b\xe7\x3b\x7f\x3f\x3d\x91\x63\x10\xcd\xd5\x40\xe4\xe8\xb1\xef\x26\xa8\x99\x71\xa9\x28\x85\x28\x8a\xf0\xc2\x0b\x2f\xe8\xe1\x71\x78\xf1\xc4\x00\x92\x24\x17\xfd\x23\xc3\xce\xf1\x8d\x71\xfc\x78\xcc\xd9\x16\x56\x4d\x76\xa8\x47\xd7\x51\x09\xf5\xf8\xd0\x9b\xb2\x01\x14\x0f\x5f\xd6\x4d\xf5\xac\x1e\xfd\x9c\xb7\x21\x8b\x46\xcd\xdc\x9a\x8a\x3f\x85\x48\x62\xed\xd0\x2c\x3e\xbb\x39\x4a\x4e\x5d\x3b\x94\x7e\x7c\xb3\x2f\xf5\x70\x4b\x5c\xca\x3c\x03\x3a\x9e\x78\xe2\x09\xb1\xbd\xbd\x2d\xf7\xf7\xf7\x75\x1d\x39\xca\x49\x4a\x29\x5f\x7e\xf9\x65\x91\x24\x09\xee\xbb\xef\x3e\x19\xc7\xb1\x1e\x5e\x05\xd8\xf0\x48\xa9\x34\xf5\x70\x9d\x3e\x86\xc1\x67\x16\xf4\x90\x5e\xac\x8d\x63\xfe\x5d\x54\x79\x30\x26\x93\xcb\x99\xaf\xa0\x11\x1e\x0a\x31\xa0\xc5\x63\x84\x64\x9e\xe7\xf2\xea\xd5\xab\x78\xf9\xe5\x97\xf5\x33\xce\xf2\x48\x54\xe5\x57\x9b\x5c\x01\x00\xb9\xb3\xb3\x23\x5f\x7e\xf9\x65\x74\xbb\x5d\xd1\xe9\x74\xe4\x89\x13\x27\x74\x19\x50\x96\x21\xd3\x65\xd1\x75\xc2\x7e\x79\x1b\xd3\xed\xd7\xc8\x20\x4f\x17\x49\x5e\x1e\xb8\xec\x99\x59\xe2\xad\x9f\x79\xa0\xcf\x7c\xc7\xed\xed\x6d\xf9\xbb\xdf\xfd\x2e\xa4\xd3\x9a\x64\xb0\x5f\xee\x26\x20\xe3\xeb\x80\x8a\x2e\xac\x43\x65\x75\x19\x6a\x74\xc4\x0e\x18\x0c\x0c\x13\x15\xcf\x15\x40\xaa\x98\xed\xcc\x87\x84\x74\xc7\x33\x13\xc4\x48\x41\x59\x71\x56\x58\x6b\x04\xf3\x8c\x3b\x55\xf2\xa8\x7c\x4f\x16\x87\x4a\x77\xfc\xc2\x52\xa7\x45\x8e\x8a\xe1\x1f\x55\x2c\x2b\xd5\xef\xdd\x72\x69\x9f\x26\x6e\xa9\x08\x99\x64\x63\x7d\x45\x78\x0b\xda\x58\x9d\xf8\xd9\x0d\x35\xf8\x26\x3f\xfa\x7e\xa1\x4e\xc0\xde\xb5\x51\xdc\x21\x10\xd4\x46\xdd\x85\xe2\xe5\x79\xf0\x91\x7e\x5b\xfe\x42\xfe\x7c\x24\xbe\x28\xa3\x12\x6a\xcb\x75\x1d\xe2\x20\xc0\x3c\xe4\xaf\x92\x1f\x36\x9f\x4b\xff\x95\x82\xa4\x98\xe7\x12\xcf\xe4\x61\x48\xd5\x03\x8a\xe5\x89\xba\x8d\x19\x00\x61\xac\x66\xef\x25\x6b\x8b\xba\x1f\x98\x97\xce\x78\x80\x0d\x47\x5c\x81\xa3\x04\x2f\xac\x3f\x99\x79\x27\xca\x06\xd3\xec\x8a\x3f\x69\xdd\x6f\xbd\x64\xfc\x72\xee\x44\x39\x59\x76\xf2\xcb\x95\x2b\xeb\x9b\x45\x57\x2d\x41\x87\xb2\xdb\xd2\xe9\x3f\x3d\xe1\x5e\x91\xe5\x5c\xb8\x96\xe6\xa4\x94\x32\x6a\x56\x17\xd8\x32\x0e\x3c\x4d\x1f\xe3\x29\x02\x48\xa2\x1f\x65\x58\x11\xb9\x4a\x4a\x36\x4c\x78\xf3\x94\x4c\x79\x56\x56\x56\xd0\xeb\xf5\x78\x9b\x92\x00\x10\x45\x91\xd8\xdc\xdc\x04\xac\xa2\x10\x65\x3d\x1b\x00\x0b\x20\xe9\xa7\x62\xe5\xd8\x7e\xf7\x81\x5e\x26\x4e\x16\xe7\xb4\x95\xb9\x2e\xb3\xad\x94\x2d\x99\x82\xfe\x8e\x16\xde\x9a\x79\x2c\x64\xbf\x31\xf1\xb2\x18\xd6\x05\xe6\x9d\x9d\x26\xe3\x0a\x35\xdd\x96\x4c\x13\x50\x45\xfb\xb0\x46\x5a\xd9\x72\x14\x90\x64\x74\x74\x75\x1a\x3f\x30\x98\xc5\x1b\x54\xb0\x44\x09\xb9\x4b\xc7\x4d\x99\x59\x1d\x85\x9c\x00\x20\x7f\xfe\xf3\x9f\xcb\xab\x57\xaf\x22\xcb\x32\xdf\x92\x37\x93\x4f\xcb\x39\x27\x53\xa5\xd4\x54\x29\x65\xf6\x56\x51\x4a\x0d\xcb\xeb\xbd\xf2\x6f\xd7\xbb\xde\x05\xb0\x4b\x44\x7b\x44\xb4\xcb\x9e\xed\x11\xd1\x9e\x0e\xcf\xe2\xf1\x27\xe7\xfa\x3b\xe3\x66\x69\x9a\xca\xed\xed\x6d\xf9\xe9\xa7\x9f\xe2\x27\x3f\xf9\x09\x97\x27\x8b\x32\x09\x0b\xc9\xef\xd9\x6c\x26\x7f\xfa\xd3\x9f\x62\x7b\x7b\x5b\xef\x3a\xeb\xb0\x1e\x25\x58\x31\x75\x03\x77\x22\x71\x68\x0f\x9a\x21\xab\xbb\x21\x11\xe9\xfa\x1b\x97\xcf\xcd\x92\x67\xd8\x61\x32\x33\x4c\xc4\x41\x8b\x52\x0a\x3b\x3b\x3b\x72\x7b\x7b\x5b\xfe\xea\x57\xbf\xc2\x95\x2b\x57\x42\xfa\xc3\x2f\x57\xc8\x35\xc9\xe3\x3a\x03\x1d\xec\xbd\x04\x9a\x37\xa0\x0b\x29\xa8\x36\x2a\x07\x1e\xda\x33\x1d\xdf\x52\xe8\x05\xeb\x02\x05\xa1\x81\x05\xa7\x2b\xc9\x48\x28\x3b\x66\xee\xbc\xe7\xa2\x51\xd3\xcf\x9e\x55\xea\x4f\x2e\xd4\xef\xf8\xbd\x5d\x91\x64\xd3\x00\x50\x0a\x4a\x6d\x3d\x5b\x43\xd1\x78\xd5\x95\x51\xee\x13\xc0\xea\xc6\x41\xb3\x7c\xb8\xcc\x73\x8b\x80\xc5\x45\x50\xa9\xff\x9e\x87\x0b\x75\x1e\x3f\xed\x10\xc3\x53\x87\x74\xf9\x7b\xfe\x5b\x77\xdd\x66\x89\xe8\xf8\x7c\x17\x6a\x63\x75\xe0\x23\x14\x77\x88\xad\x09\xdd\x2f\x0a\x54\x42\xe1\x2b\xf5\xcd\xbf\x33\x67\x19\xcb\xf7\x82\x94\x8a\xe3\x54\x6d\x98\x65\xd0\x46\x29\x28\xd6\x20\x75\x7b\xb5\xed\x85\x5b\xcc\x64\x96\x04\x31\xec\xe2\x50\x18\x7e\x4f\xe1\xfe\x5c\x50\x0f\x68\xbc\xe3\x32\x94\x3c\x4c\xd1\x2d\x0c\x3d\x62\xe2\x34\x68\x81\x9f\xd4\xac\xe7\x54\x78\xc8\x40\x07\xe5\x9b\xca\xb9\xec\x25\x8b\x83\x97\x88\xca\x1c\x1b\x3c\xa6\x51\x11\x59\x0f\x1c\xd0\xb0\x32\x19\x20\xc7\xd3\x72\x58\x21\x58\x56\x83\x08\xa4\x54\x4f\x64\x6a\x10\x65\xaa\x07\x28\x01\xb8\x96\x2a\x67\x3a\x3e\xff\xf9\xcf\x23\xcb\x32\xbc\xfd\xf6\xdb\x3a\x49\x01\x40\x0e\x06\x03\x7c\xfb\xdb\xdf\x06\x8a\xb6\xc1\x27\x89\x0a\xe8\x79\x08\x0a\x71\x2f\x13\x6b\xab\x93\xf8\x44\x2c\xc5\x9a\xad\x6b\x97\xed\xe0\x79\xe7\x85\x32\xc5\x2e\x6b\xc9\x82\x35\xe6\x4d\xe7\x97\x7f\x1e\x56\x65\x9c\x9d\x71\x18\x1c\x78\x72\x15\xba\xfe\x0b\x20\x13\x4b\x5a\x1b\xcc\xa2\xe3\x2b\xb3\x68\xb3\x23\xe9\x93\x79\xa4\xcc\x2e\xc3\x65\x5d\x99\x3e\xfb\xec\xb3\xcf\x22\xcb\x32\xbc\xf5\xd6\x5b\x4e\x1d\xf9\xbf\x3f\xfb\xd9\xcf\xe4\x37\xbe\xf1\x0d\x71\xe4\xc8\x11\x99\x24\x09\x3a\x9d\x0e\x37\x9e\xf8\xc4\x68\xce\x2c\xe8\xe7\xba\x8e\x63\x62\x43\xb3\x08\x2b\x4f\x07\x1c\xf1\xe1\x1f\x3e\x1c\x04\x57\xc6\x18\xbf\x59\x96\xc9\xcb\x97\x2f\xe3\xa5\x97\x5e\xaa\x93\xb3\x21\xd7\x24\xc3\x42\xf2\x9f\x1b\x40\xf8\xb7\x7f\xfb\x37\xf9\xd7\x7f\xfd\xd7\xa2\xdb\xed\xca\x5e\xaf\x87\x28\x8a\x50\xe6\x87\xb7\x4d\x5f\x26\x9a\xf2\x7b\x75\x62\xd2\xe0\xd3\x19\xa8\x3a\xff\xd2\xa9\x27\xbd\xd8\x44\x29\x85\xf1\x78\x2c\x01\xe0\xc7\x3f\xfe\x31\x46\xa3\x51\x53\xb9\x43\xe5\xaf\xbb\x5e\xc4\x80\x0f\xc5\x29\x00\x77\x8e\x4b\x48\x29\x85\x12\xab\xf3\xcf\x05\xb6\x71\xdc\x02\x01\x50\x0e\x15\x95\xe0\x05\x70\x0c\xc7\x22\x0e\x40\x8f\x85\x33\x29\x56\xd9\xc6\x9a\x0b\x23\x4b\x7d\x97\x69\x3a\x1e\x89\xcb\x76\x4b\x83\x1a\xbf\xae\xf0\x2f\x44\xbf\x47\x41\x7b\xe9\xeb\xad\x93\x0b\x0b\xc5\xac\x26\x31\x54\x1c\xaf\x03\x76\xed\xd7\x61\x1d\x80\xa9\xfb\x80\x6d\x28\xb6\xcd\x8f\xff\x3e\x14\xa6\xee\xfa\xa0\x61\x9a\xc2\x2e\xea\x9a\x40\x4c\x53\xdc\x21\x20\x56\x07\xc2\xfc\xf0\x4d\x2c\x55\x13\xd0\xe2\x8a\xc0\x80\x16\x2a\xe6\xb8\xc4\x22\x43\x12\xcf\xd5\x06\x14\x84\x85\x17\xa1\xfd\x82\x8c\xa6\xb5\xd4\x83\xa7\xd0\xcc\xa4\xd9\xc0\x3c\x2c\x7b\x46\x8f\x1d\x52\xb0\xc0\x5d\xaf\xda\xe3\xef\xc8\x79\xa7\x13\x73\xcf\x09\x02\x78\xc7\xd3\x0a\x9f\x6f\x14\x67\x97\xee\xea\xbc\xb1\x62\x68\x10\x02\x38\xec\x91\x39\x44\x91\x97\xd1\x17\x06\x2c\x6d\xf7\x74\xe8\x9a\xe1\x5f\xd3\x89\xd9\x1e\x30\xbe\x9c\x28\xeb\xd5\x6c\x80\x27\x91\xc4\x73\x35\x10\x19\xfa\x50\xc5\x52\x52\x54\xcf\x2d\x32\x7b\x96\xa0\x59\x59\x99\x6b\x6f\x3e\x42\xd2\xc9\xa9\x37\x98\x45\x9b\xcb\xb3\x28\xbc\xb2\x8c\xdc\x5f\x73\xeb\xc9\x2f\xfd\x96\xbc\x30\xa6\xda\x74\xdd\x33\x30\x44\x3c\x0c\x8f\x85\x0f\xed\x99\x39\x35\xfa\x1d\x4c\x1d\x0a\x85\x5e\x3f\x15\xc7\xd6\xc6\xf1\x7d\x4b\xa9\x78\x6f\xbe\x94\x8f\xfd\xf9\x25\x7a\x9e\x4b\xc9\x54\x35\xb1\x12\xba\xae\xe4\xcf\x7e\xf6\x33\x00\x90\x5f\xf8\xc2\x17\xf0\xc8\x23\x8f\x80\x29\x64\x13\x6f\xd9\xaf\x32\xb2\x2b\xbe\xfc\xef\xe2\x4c\x45\xd0\x69\x7a\x6d\x44\x86\xfe\xd8\x30\x12\x5f\x15\x6a\xf6\xe2\x52\x4a\xc9\x4b\x97\x2e\xe1\x17\xbf\xf8\xc5\x41\xe5\xd9\x22\x06\x58\x53\x58\xfc\xe0\x07\x3f\x90\x00\xc4\x8b\x2f\xbe\x88\xbb\xef\xbe\x9b\xeb\x15\x59\x96\x9f\x97\x57\xc7\x2f\x00\xf8\x75\x01\xf6\x2c\xb8\xc7\x98\x07\x62\xf4\x31\x17\x52\x4a\x89\xf9\x7c\x8e\x7f\xfe\xe7\x7f\x0e\xc9\x57\x13\xfe\x0f\x70\x21\x20\xb7\x88\x81\x5e\x39\x64\x31\x94\x99\x36\x45\x6a\xde\x97\x15\xc0\x59\x96\xd0\x44\x5d\x90\xa9\x60\xd7\x2a\x2c\xc2\xf0\x1b\x2b\x08\xcb\x70\xcc\x1f\x67\x69\x3c\x69\xa7\x05\xaa\x1f\x2e\x90\x9e\x99\x61\xcf\x3a\x3f\x79\x52\x84\x0b\x89\x32\xca\x62\x99\x1d\x55\x3a\x02\x7c\x17\x1a\x2e\x2b\x5d\x53\x3d\x57\x40\x61\xe0\x5d\x28\x0e\xdf\x85\xe2\x59\x34\xee\xba\x67\x3e\x30\x08\xfd\xb6\xe5\x45\xbb\xb6\x3c\xd5\xc5\xed\x5b\x3c\x75\xf9\xa8\x2b\x7b\x28\xee\xa6\xf4\xfc\xb0\x3c\x0f\xe6\x9e\x31\x8c\x56\xa8\x2a\x88\x28\x53\x3d\x91\x63\x0d\x40\x6c\xad\x67\x1f\x34\xc0\x6d\x84\xa8\xb6\x3b\x2a\xfd\x28\x15\x52\x43\x2c\x9c\xc7\x36\x6a\x45\xcd\xbc\x38\x80\x41\x03\x29\x0b\x30\xbc\x4d\xe9\x9c\x3c\x59\x20\x6f\xf7\x3c\x73\x35\xa8\x39\x37\x88\x58\x78\x1d\x88\x15\xce\x4e\x46\xad\xa0\x15\x1b\x8c\xc5\x67\x98\x2a\x07\x94\xb9\x67\x15\x99\x5c\x52\x55\xbe\x54\x64\x4d\x91\x4a\x2c\x72\x35\x88\x32\x39\x10\x32\x8a\xa5\x70\x26\x39\x6a\x83\x4c\x2b\x82\x50\x9f\xad\x33\x40\x74\x1c\x31\x80\x78\x90\x46\x83\x23\xc3\xe4\xde\x5e\x4e\xc7\x04\x28\xb1\x6c\x9a\x0b\xc2\x2c\xb8\x62\xbb\x28\x33\x30\xa8\xeb\x92\xd9\x74\xe0\xc8\x85\x6d\x91\x53\xa9\x52\x2e\xdf\x14\xbc\xb4\xbd\xb6\xe7\x90\x81\x00\x92\x4c\x6c\x1e\x9a\x45\xc7\x97\xd3\x68\xb0\xb7\x94\xef\x52\xb1\xca\x45\x0f\xab\x18\x03\x95\xdc\xd5\x95\x21\x25\x54\xb9\x7e\xe5\x95\x57\x30\x9d\x4e\xf1\xd4\x53\x4f\xf1\xe7\xdc\x28\xd0\x20\x46\xef\xb8\xcb\x4f\xd9\x06\xf3\x03\x16\xc6\xef\xff\xd2\x8b\x9b\xff\x71\x50\x00\x00\xf2\xdc\xb9\x73\x78\xfd\xf5\xd7\x17\x51\xcc\x6d\xc6\x9e\xff\xfc\x20\x6c\x8d\xfc\xd1\x8f\x7e\x04\x00\x78\xee\xb9\xe7\xc4\xa3\x8f\x3e\xaa\xfd\x64\x08\xcb\x2e\x00\xee\x70\x25\x58\xf9\x98\x2e\xf2\xe5\x9b\x53\x06\x22\x12\x5b\x5b\x5b\xf8\xe1\x0f\x7f\xd8\x64\xac\x35\xe9\xaf\xa6\x6b\x3f\xbf\x6d\xf5\x17\xd2\x09\xad\x67\x15\xb5\x45\xe2\xdc\x73\xf6\xa1\x2d\x1e\x82\x45\x84\xac\x3f\x5a\x66\x04\xd6\x2a\x02\xaa\x42\x07\xe0\xf2\x8e\x2a\x42\x4a\x31\x8a\xda\x3c\x03\xef\xcb\x8c\xbe\x66\xef\x3c\xb6\xbb\x9a\x26\x8c\x7f\x59\x07\x49\x6a\x2c\xc2\x3a\x05\x1a\x7a\xbf\xa8\x6b\x02\x26\x7f\x2c\x57\xd7\x40\x9b\x80\x08\x10\xee\xa0\x75\x54\xae\xef\x42\x71\xfb\x79\xf0\xe9\xd0\x10\x3d\xea\xe7\xd7\x4f\xa3\xc9\xd5\x81\x97\x8a\x1f\x0f\x9c\x73\x6b\x51\x90\x52\x82\x72\x24\x50\xca\x2c\x83\x76\xf4\xb9\xbf\x94\xc3\xa0\x15\x77\x18\xa5\xd2\x9c\x18\xf0\x70\xa8\x0c\xd4\xb4\x77\xab\xb5\x42\x5e\xad\x32\x33\xec\x89\xe7\xd7\xd1\x6a\x60\x96\x7c\x28\x3e\x96\x39\xe5\x7a\xb6\x6f\x98\xb5\x60\xc2\xba\x89\x72\xe0\x66\x60\x97\x8e\x4e\xfb\x37\xcc\x0a\x8f\x5c\x2f\xa3\xe6\x99\xe2\x1e\x00\x3b\x2f\x88\x40\x0a\xb1\x90\x48\xc0\x16\x0d\x94\xae\xc2\x20\x07\x9c\xdf\x16\xb9\x62\x35\x2b\x3e\x92\x8c\x06\xcb\x69\xb4\x11\xe5\x62\xa0\xeb\xd8\xb0\x5e\x8a\x9f\x92\xed\x12\x50\x1a\xba\xb8\xec\x8a\x65\xcf\x34\x94\x24\xf6\x9c\x7f\x18\x6e\xbc\xb9\x40\xb6\x30\xda\x94\x47\x8f\x99\xb9\x4d\x3c\x0e\x00\x91\x42\xbf\x97\x45\x9b\xbd\xb9\x58\x81\x5d\x9a\x2c\xbc\xbf\x3a\x60\xd7\x66\xdc\xc8\xd7\x5f\x7f\x5d\xbc\xf5\xd6\x5b\xf2\xc4\x89\x13\x78\xe1\x85\x17\xf8\x70\x48\x13\x5b\xea\xfc\xd6\xc8\x5d\x5f\xce\x38\x7b\x6e\x05\xfc\xe1\x95\x57\x5e\x41\xb9\x85\x3f\x4f\x83\xfb\x6b\x92\xdd\x21\xb9\x52\x07\x12\xda\xe4\x9c\x71\xe7\xce\x9d\xc3\xef\x7e\xf7\x3b\x79\xe6\xcc\x19\x3c\xf7\xdc\x73\x21\x26\x3f\x08\x08\x6a\xd8\xff\xba\x72\xe0\x7f\xfe\xe7\x7f\xf0\xdf\xff\xfd\xdf\xfc\xa4\xeb\x50\x39\x42\xe5\xd7\x71\xb6\x01\xb3\x50\x79\xdb\x74\x56\x05\xa4\x85\x76\xce\x6d\xb2\x32\x17\x56\x88\x75\x74\x6e\x71\x72\xa5\x16\x58\x8c\x51\x61\x32\x11\x60\x7d\x8f\x47\xa1\x3c\x4b\xa3\x46\x08\xc3\xf8\xe1\x96\x0c\x1f\xcf\xb5\x7e\x2a\xac\x8f\x9f\x99\xb0\xdc\x32\x6c\x8b\x6b\x2d\x55\x69\xb8\x1a\x77\xa7\x00\x65\x91\xf8\xea\x50\x72\xdd\x7b\xde\xd0\x16\x41\xbc\x07\x01\x49\x07\x6d\x3b\x3e\x1b\x52\xf7\xcc\x7f\xbe\x48\x7e\xff\xd0\xef\x51\x0b\x64\x6a\x98\x45\xab\xc4\xa4\x8a\x49\x52\x02\x33\x33\xc1\x3a\x9f\x2d\xb4\x77\xa1\x15\x3a\x7e\xe0\x32\x00\x53\x56\x21\x16\x53\xfb\xd5\x40\xa9\xfa\xde\x2a\x40\xb3\xeb\x4a\x25\x3e\x07\xe5\x58\x5c\xc2\x6f\x15\xd8\x6a\x1e\x8b\xb8\x94\x13\x3f\x03\x21\x4e\x84\xf0\xfa\x5b\xa9\x86\xcb\x0e\xcf\x87\x79\x4c\xbe\x58\xb9\x42\x6c\x8a\x06\x48\x4a\x11\x53\xe8\x16\x09\x95\xac\x83\x80\x44\x0c\x19\x5c\x52\x5a\xa6\x55\x37\x34\x05\xb1\xb9\xb9\x89\xaf\x7e\xf5\xab\xfa\x5e\x7a\x61\x4d\x5c\x91\xa2\x5e\x27\xa7\x01\x01\x89\x2e\x97\xa9\xe3\x72\x88\x86\x1f\xae\xcd\x87\xdf\xf8\x46\x81\x64\x6a\x52\xb7\xbb\xb2\x2c\x6c\xf2\x90\x1d\x55\xb4\x32\x8f\xc1\x45\x47\xfe\x55\x90\xb1\xff\xdd\xcb\x00\x42\x51\x92\x64\xb4\xd6\xcb\xc4\x40\x48\xc4\x39\x99\x23\x0c\x7c\xb0\x87\x27\x9e\x78\x02\x00\x44\x39\xcf\xa5\x0e\xac\x38\xf5\x98\x65\x99\xcc\xb2\x0c\x1f\x7c\xf0\x81\xd8\xde\xde\x96\x83\xc1\x00\xdf\xfa\xd6\xb7\x42\x0a\xbf\x16\x24\x70\xa6\x41\x85\x0f\xb9\xf5\x95\xb9\x93\xa7\x9f\xff\xfc\xe7\xf2\xd6\xad\x5b\x18\x8d\x46\xc8\xf3\xfc\x20\xb2\xab\x0e\xb0\xf9\xae\xae\x1e\x9a\x8c\x23\x00\x40\x59\x3f\xe2\x9d\x77\xde\xc1\xd5\xab\x57\x4d\x98\x28\x8a\xf0\x57\x7f\xf5\x57\x2d\xd9\x6b\x76\xff\xe7\xff\xfc\x1f\x59\xc6\x89\xd9\x6c\x86\xe9\x74\x5a\x27\xdf\xeb\x64\x6d\x13\xb0\x3c\x08\x6b\x13\x72\xc1\xb8\x43\x3b\xe7\xb6\x59\xf1\xb5\x09\x6a\xba\xce\x9d\x1c\xeb\x6c\xe8\x54\x58\x15\x28\x56\x15\xf1\x25\x9a\xae\xb3\xa7\xbc\x3a\xaf\xb4\xec\x09\x48\x74\xdf\xae\xb2\x79\x32\x79\x33\x16\x4d\xe1\x91\x98\xe5\xc6\x84\x02\xb3\x02\xfd\x33\x8d\xac\x5d\xab\x8a\x55\x1a\x64\x96\xee\xe9\x34\xda\x50\x6e\xa8\x1e\x9b\x3e\x7e\x9b\x52\x6e\xb5\x64\x50\xef\x16\xed\x98\x8d\x88\x7e\xc1\xf8\xb9\xbb\x93\x06\xdb\x16\x67\x93\x9f\x26\xe4\xdf\xf6\xbc\x2e\x2e\x01\x40\x7e\xfd\xeb\x5f\xc7\x60\x30\x00\x00\xde\xde\x01\xd8\x95\x16\xe5\xf1\xf2\x31\xa9\x62\x5b\x77\xee\xaa\x0a\x1c\x56\x63\x54\x00\x35\xf3\x4a\xcc\x9f\xd7\xf0\x9d\xa1\x11\xbf\x64\xcc\x58\x70\xe3\x24\x37\x0c\x9b\xef\x50\x1d\x9e\x08\xb0\x22\x3a\x4b\xe5\x64\x5f\x67\xc9\x31\xc0\x26\x00\xfb\x65\x85\x3b\x44\x05\xf2\x62\xb6\x95\x50\x07\xb6\x78\xac\x16\xc0\xf0\xe7\xc1\x45\xd1\xe6\x79\x09\xb8\x12\xa1\xd0\x25\x8f\x6d\xd1\x7f\x0d\x73\x5b\x64\x1c\xc7\x95\x73\x89\x02\x7f\xb1\x50\x94\xc4\x92\x7a\xa2\x38\x5c\xd6\x99\xf7\xcc\x59\x16\x5d\x06\xbb\x58\x80\xcf\xf7\xab\x66\xa0\x32\xdc\x44\x55\x6f\x4e\x2d\x31\xc0\xa9\xbf\xeb\x42\xc3\x6a\x0a\x71\x2c\xa9\xd7\xc9\x45\x5f\x28\xf2\x87\xd4\x78\xd9\xe5\xf2\xf2\xb2\x58\x5a\x5a\xe2\x32\xad\x4e\xce\x81\xbd\x07\x00\xcc\xe7\x73\x79\xeb\xd6\x2d\xec\xed\xed\x89\x1f\xfd\xe8\x47\x12\x00\xbe\xf9\xcd\x6f\xea\x09\xaa\x4d\xec\x0b\x38\x93\x12\x60\x17\x1c\xa7\x94\xc2\x7c\x3e\x97\xff\xf9\x9f\xff\x69\x9e\x5d\xbf\x7e\x1d\xf3\xf9\xbc\xb1\xcf\x07\xf2\xce\x5d\x1d\xb3\x12\xaa\x87\xba\xb8\x1b\x89\x83\x34\x4d\xf5\xb9\x48\xc6\x4f\x39\x9c\x74\x50\x63\xd8\xb8\x9b\x37\x6f\x72\xb0\xc2\xd3\x6d\xca\x8b\xef\x16\x65\xd3\x7d\x3f\x07\x31\x84\x4d\xb8\x26\xc6\x25\x84\x6a\xeb\x94\xad\x51\x6a\x6c\x1f\x03\xc7\x99\x89\x8b\x70\xf7\x71\x01\x18\x20\x30\x1d\xc9\xf6\x3e\x8f\x69\xe6\x11\x72\x14\x02\xd3\x3d\x9d\x8e\xe9\x59\x4a\xbc\x83\x12\xa3\x51\x3d\x41\x6b\x05\xae\x2a\xd3\x76\x2d\x15\x3e\x54\x14\x60\x5c\x9c\x8a\xf7\xc6\x15\xb9\x6b\x43\x9d\x6d\x9d\xdd\x8f\xb7\x89\x49\x69\x72\x75\xe0\xa8\x0e\x6d\x2f\x0a\x3c\x0e\x62\x5d\xd4\x75\x90\xb6\x32\xf8\xef\x9b\xee\x9b\x3a\x48\x53\x99\x6a\xf3\x73\xf7\xdd\x77\xa3\xd3\xe9\x54\x56\x11\xe9\xb6\xee\x82\x17\xb3\xfd\xbf\xe3\x0a\xc5\x69\x1b\xb9\xd3\x9e\xc0\xda\xbd\x06\x2b\x60\x43\x20\x9c\xde\x0f\xc5\x0b\x07\x07\x31\xa5\xee\x0e\x93\x52\x25\xa0\x85\xeb\xfc\x96\x83\x82\xe0\x8a\x24\x1f\x48\x70\x56\xc1\xc6\x66\xe9\x19\xd3\xcf\xfc\xc2\xf2\x42\xbb\x25\xb2\x13\xe7\xfd\x7a\x22\x37\x4d\x9d\x06\x34\x90\xd2\xc3\xc6\x7a\x67\x14\xb6\x39\xa6\x52\x82\xa4\x8a\xa1\xec\xaa\xa2\x32\xea\x56\x0a\xbf\xc1\x9f\x0b\x5c\x8a\x53\x7b\xfb\x00\x62\x3d\xcc\xc5\x27\x38\x73\x03\x89\xbd\xf5\xbe\x3f\x2a\x23\x8b\x3e\xf3\xe5\xd4\x13\x55\xdb\x81\x3b\x14\x55\xfa\xf5\xbe\x93\x03\xec\x88\xe5\x4d\x21\x89\x24\x0a\xf0\x85\xca\x7e\x37\xbc\xdc\x8b\xf4\xfb\x3a\x03\x0e\x00\x84\xde\x33\x05\x00\x7e\xf1\x8b\x5f\xf0\xa1\x23\x3c\xfc\xf0\xc3\xfa\x50\x53\x27\xad\xb6\x61\xbd\xcb\x97\x2f\xcb\x77\xdf\x7d\xd7\x66\x48\x4a\x5c\xbd\x7a\xf5\x0f\x35\xb0\xb8\x3b\x88\x61\xe5\xeb\xda\x83\x1a\x9e\xc6\x35\x94\xc1\x4f\xa7\xc9\x1d\x04\x50\xf1\xfc\x35\xe9\xa8\x45\xe4\xea\x1d\xe9\x92\xb6\xb3\x8a\xea\x84\x7d\x48\xf9\x38\x74\xb9\xf7\xcc\xa5\xf4\x0a\xc6\x45\x68\x8a\x93\x4f\xb6\x53\x8a\x09\xdb\x00\x45\x6b\xdf\xf9\xd6\x19\x9c\x38\xc8\x98\x8b\x6e\xde\xfc\x78\xbc\x28\xec\x7b\xb8\x1d\xc1\x79\x5d\x2e\x85\x56\xa4\x78\x7d\x18\xe6\xe5\x8f\x30\xc7\xa5\xee\xa3\xd6\x29\xe0\xba\xb0\x75\x02\x15\x58\xbc\xa1\x35\xb1\x3c\xa1\x7c\x23\xf0\xae\x0e\x40\xd4\xf9\x0b\xb9\x50\x1c\xfa\x7a\x11\x61\x59\x97\xd7\x50\x3a\x75\xa0\xbd\x36\x5f\x7c\x75\x03\xf3\x5b\xb0\x8d\x25\xeb\x62\xfd\xc2\x51\x58\xa8\x28\x61\x38\x0d\x4e\x05\xfc\x39\x9e\x1c\xbf\x56\xe1\x39\xe9\xf8\x28\xa8\x1a\xd4\x49\xcb\xf4\x2e\x03\x32\xfc\x0e\xe2\x69\x50\x1b\xd0\x8b\xb8\x08\xcb\x57\xb8\xd8\xa1\x0c\x6f\x75\x0c\xb8\x22\xd5\xf3\x38\x8a\x6b\x3e\x00\xe5\x4c\xcc\x65\xca\xdd\x96\xd1\xa9\x85\xf2\x65\x25\x63\x3c\xcb\xc5\xf6\x0c\xea\xc0\x80\x85\xbb\x10\x5b\x53\x5c\x97\xbb\x85\x0b\x49\x09\x29\x8a\x35\x70\x84\x53\x17\x0c\x3c\x94\x6c\xb3\xc3\xc2\xe8\x22\x94\xe0\x45\x97\x84\x9f\xbc\xad\x27\x6d\x3b\xb2\x4b\x83\x1d\x26\x4f\x89\xa5\xc1\x9d\x66\x61\xec\xc4\x71\xf0\x1a\x14\xa4\x48\x08\x90\x3d\x79\xd8\x93\xeb\x07\x70\x75\x6c\x44\xe8\x3d\xde\x7f\xff\x7d\xe7\x7e\x32\x99\x88\x8f\x3f\xfe\xb8\xe2\xaf\xcd\xdd\xb8\x71\x03\x9f\x7c\xf2\xc9\xa2\x61\xee\x08\x44\x78\xae\xcd\x30\x6d\xba\x5f\x84\xe1\xf0\xc9\x83\x26\x83\xb3\x2d\x6f\x07\x95\x9f\x6d\xf1\xdf\xc9\xbb\x45\xeb\xaa\x91\x71\xa9\x63\x57\x7c\xbf\x46\xe1\xf0\x86\xdc\x30\x2e\x6c\xa9\x67\xd6\x41\xc3\x34\xa8\x67\x45\xc1\xb7\x1e\x3d\xff\x36\xea\x60\x5c\xca\xb9\xb7\x79\x00\xf4\x58\x30\xdb\x61\xb4\x26\x1e\xaf\x08\x07\x71\x07\xf9\x50\x21\xd7\xd4\x68\x16\xfe\xe0\xec\x79\x88\x75\x58\x24\xee\x36\xe5\xef\x03\x15\xff\xd9\x9d\xe4\xd3\x4f\xbf\x2d\xbd\x36\x17\x02\x53\x8b\xa4\x1f\xf4\xeb\x83\x75\x2f\x9f\x8e\x7f\x6d\xd1\xba\x0b\x90\x59\x5c\xc5\xf8\x89\xd7\xc0\x3d\x5f\x8a\x31\x06\x81\xc9\xaf\xbe\x73\x15\x60\x95\xda\xf0\x9f\x38\xe4\xa3\x97\xc9\x9a\x11\x0b\x57\xc3\xd6\x7a\x72\xf3\x68\x26\xe8\xd6\xa4\xad\x82\xf1\x54\x99\x22\x4f\xc1\x96\x8c\x8c\x7e\x19\x9a\xd3\x63\xc1\x82\x32\xf2\x47\x6f\xad\x5f\xf9\x6e\x07\x55\xce\x21\x00\xc3\xff\xbc\x5c\x37\x38\xc3\x1a\xc1\x4a\x26\x62\x61\x6d\x81\x4d\x00\x3d\xc9\xb7\x1a\x8f\x0b\x48\x78\x1b\x6c\x21\x2a\x6c\xdd\x92\x82\x84\x82\x6a\x2c\xd7\xc2\xee\x4e\x18\x0d\x00\x10\x57\xaf\x5e\x35\x6c\xcc\x1d\xc6\x53\x27\x2f\xee\x34\x4f\x75\xee\x4e\x98\x90\x36\x96\xa2\x2d\xee\x45\xd3\x6c\x4b\xe3\xa0\xfa\xaa\x4d\x06\x1f\x54\x46\x37\xba\x3a\x65\xc5\xaf\x9b\x94\x5b\xc5\x69\xcb\xd3\x1b\xf3\xaf\x0c\xd9\x14\xcf\x5c\x43\xcd\xca\x7e\xa5\x87\x63\x1c\xff\xe5\xab\x92\x08\x75\x7b\xa7\x06\x3f\x7e\x47\xd4\xbb\xea\xfa\x74\xba\x2a\x13\x20\xdd\xa1\x15\xac\x29\x63\x90\x95\xbd\xf6\x65\x01\x05\x1e\xfa\x4c\x53\x83\x0b\x29\xfe\x36\xf6\xa1\xad\xc1\xf9\xfe\x0e\xf2\x3e\x04\x4e\xeb\xd8\x86\x36\x45\xaf\x7f\x17\x05\x59\x7e\xdc\x4d\x1d\x52\x06\xfc\x34\x01\x30\x2e\x54\xfd\x70\x75\x8c\xd1\x81\x41\xa0\x37\xa7\xab\xe2\x41\x09\x40\x11\x52\x00\x92\x4a\x3f\xa4\x54\x55\x75\x99\x46\x4c\x65\x3b\x47\xf9\xeb\xb2\x04\xfc\x30\x3e\xa5\x87\x55\x8d\x31\xc0\xac\xe5\x12\xd7\x38\xab\x89\x51\x3e\x34\x4d\x3c\x30\x61\xb8\x88\xc8\x46\xca\x94\xa4\x03\x68\x00\x96\x2e\xeb\x60\x3a\xad\x32\xbd\x3a\x00\xe2\x33\xa2\xba\xa4\xaa\xd4\xd0\x64\x82\x55\x6a\xc0\x3e\x57\x0a\xc4\x32\x47\x3c\xdb\xa5\xe2\x57\xba\x2c\x65\x7f\xb6\xdb\x35\x94\xf7\x44\xe5\x66\x92\x6d\xe6\x4a\xc5\xb5\xc9\xc3\xa2\xfd\x51\xf1\xe1\xa5\x50\x59\xb1\xff\x13\x99\xe1\x70\xd2\xb2\xc9\x41\xaf\x3c\x7f\x25\x73\xa4\xec\x67\x23\x55\x2e\x60\x27\xc5\x18\x35\x65\x82\xda\xb8\x94\x6d\x4e\xec\x3b\x99\x36\x08\x2d\x69\xcb\x38\xf4\x3f\x1d\x97\x89\x46\x01\x80\xcc\x8b\xc3\x65\xa5\x2c\x01\x9e\x27\xe3\x16\x01\x2f\x21\x39\xd2\xc4\x0a\x87\x5c\x1d\xbb\x7b\x90\x3c\xd4\x31\xd2\x4d\xb2\xe9\xa0\xe5\xf3\xcb\xb6\x08\x9b\x1c\xca\x03\xf7\xd3\x26\x1f\xdb\xc0\xf6\x22\xf2\xbd\x2e\x0f\x8b\xc4\xdd\x14\xce\x67\x87\x42\x6e\x91\xe7\xa2\xce\x63\x53\xe5\xfb\x19\x41\xe0\xba\xd1\x29\xf6\x07\xf8\x2c\x89\x62\x40\x42\x39\x72\xd0\x38\xd6\x99\x75\xc7\x31\x27\x7a\x28\x55\x01\x0f\x44\xc4\xa8\x52\x6d\x41\x96\xc2\x8e\x98\x84\x23\x80\x98\x75\xc3\xd3\xd2\x9d\x5d\xe7\xdb\x1e\x5b\xe0\x5a\xda\xa1\x49\xb9\x2d\xe3\xae\x4d\xa8\xf6\x8f\x89\xfc\x81\xc5\x40\xea\xa2\xef\xff\x90\x3c\x2e\xd2\x49\x9a\xde\xb7\x85\xf7\xf3\xdd\x46\x57\x1e\x94\x2e\xad\xf8\x09\xad\x2c\x33\x60\x86\x00\x29\x20\xa5\x30\xdb\x67\xeb\x40\x2e\x58\xe7\xe0\x82\x2b\x84\xf2\x99\xc6\xd0\x5c\x27\x19\xa0\xee\xe4\x85\x05\x53\x4c\x19\xb1\x77\x8e\x3f\xc5\xda\xb0\xa3\xf4\x8c\x39\x61\xcb\xe6\x17\x9c\xbd\x70\xa0\x85\xc6\x11\x7e\xba\x1a\x54\x79\xa0\xde\x0c\x5b\x30\x03\xc3\x01\x3b\x1c\x1c\x81\x31\xa7\x1a\x9d\x95\xa6\x4c\x01\xe4\x50\x62\x33\x65\xb2\x6f\x00\x00\x31\x36\x46\xe9\x7c\x92\x54\x84\x4c\x09\x64\x26\x9c\x93\xb7\x76\x03\x84\xcb\x9d\x1a\xff\x42\x0a\x95\x65\xf6\x6c\xb3\xa2\x5e\xca\x7f\xc6\x6e\xd2\xc0\x44\x83\x3d\xd8\xba\xd4\x9f\x83\x78\x40\x87\x06\xb3\x4c\x14\xab\x32\x38\x9f\xd3\x31\xc8\x74\x5d\xbb\xdf\xb8\x88\x9a\xdc\x78\x0a\x19\x2a\x73\xa1\xd2\x34\x56\xa9\x39\x86\x81\xc2\xdf\x33\x54\xfe\xf2\x37\xa4\x38\x0f\xca\x3a\x37\x3d\xab\x53\x8c\x8b\xf8\xe1\xcf\xea\x98\xe4\x45\xfd\x6a\xff\x75\x86\x52\x5b\xdc\xfa\xd9\x41\xcb\xd6\x14\x5f\x9d\x9f\xa6\x21\xa3\x50\xfa\x6d\xe0\xc7\x7f\x16\x02\x54\x4d\x69\x70\xbf\xa1\xb2\x4a\x3f\x50\x28\xa1\x50\xe5\xd7\x56\x8a\xbb\x9b\xad\x0a\xfe\xf2\x78\x94\x27\x14\x5d\x96\xd3\x55\xf8\xc1\xbe\xa1\xc1\x81\x23\x99\x99\xc5\x09\x36\x4e\xac\xec\x64\x35\x33\x4b\x0d\x5a\x58\xe8\x30\xee\x59\x1f\xc6\x90\x63\x16\x70\xf9\x4e\x94\xe7\x2d\x89\x86\x32\xd6\x3e\x63\x6e\x11\x44\xde\xd4\x41\x0e\x12\xc6\xef\x08\x07\x49\xbb\x2e\xce\x83\x52\xab\x3e\xbb\xa1\x7f\xeb\xca\x76\xa7\x14\x74\x28\x8e\x45\xeb\x6f\x51\xcb\xc8\x71\x41\xc0\xac\xdb\x85\x80\x34\x8a\xd1\x51\xff\xd6\x62\x36\x20\xba\x30\x87\x39\xc9\xe1\x29\x2c\xf7\xda\xa2\x69\x1e\x6b\xe9\x8f\xca\x78\x59\x92\xca\x28\x7b\x18\x94\xc0\x47\x9c\x8c\xe3\x60\x83\x2b\x4d\xde\x67\xcb\x30\x1a\x2c\x68\x74\xc5\xba\x61\x55\x01\xc3\xf6\x27\x3f\x29\x13\x56\x39\xf0\xa4\x12\x4e\xf7\x67\xae\xa6\x49\x69\x60\x52\x24\xe6\x0e\x8b\x70\xca\xc1\x96\xc9\xd4\x4f\xf1\x7d\xa4\x61\xb2\xfc\x34\xeb\x9d\xf0\xfd\xd5\xf9\xcf\x84\xca\x66\xb1\x1c\x4b\x81\xcc\x93\x6c\x45\x38\x5d\x77\x26\x42\x9d\x73\x97\x99\x53\xca\x65\x9b\x95\x53\x3c\x3d\x2c\xa6\x0d\x39\xeb\x87\xcc\x7b\x32\xfe\xf5\xbc\x17\x5f\xd6\xb2\x6c\x19\xbc\xa3\x48\x65\x69\xac\xc6\xb3\x58\xa6\xd2\xf3\xee\xb4\xf5\xb0\xbc\xe3\x7d\xbe\x4e\xb7\x84\xfc\xeb\x30\xa1\xe7\xbe\x22\xf5\xe3\xae\x8b\x8f\x3f\x0b\x85\x0d\xc5\xed\xbb\x3a\xb9\x17\xca\xb7\x2f\x83\x16\x05\x00\xa1\x34\x75\xb8\x45\x98\xe3\x83\xc4\x57\xe7\x0e\xc2\x66\xf1\x72\xf9\x71\x37\x95\xd9\x07\x2b\x4d\xdf\xd8\xf8\xad\xb3\x5e\x9b\x3e\x58\xed\x7d\xc3\x32\x60\x7b\x4f\x4a\x16\x74\xa9\x05\x1c\x56\xbe\xba\x4b\xff\x0a\x4b\x46\x87\xaf\x66\x86\x3f\xd2\xac\x0b\xf1\x77\xc4\xee\x89\xdc\x30\xca\xce\xea\xd7\x32\x97\xfc\x7c\x07\x05\x39\xca\x9c\xeb\xbd\x18\xc2\xc3\x62\x7c\xf7\xe0\xd2\x85\x1a\x53\x87\x32\xe3\x5b\x00\x00\x20\x00\x49\x44\x41\x54\x9b\xb5\x1f\x6a\xe8\x8b\x28\xdb\x3a\xeb\x20\x44\x8f\xb6\xc5\xd3\xd4\xc0\x43\x20\x84\xc7\x55\x87\xbe\x9b\x3a\xb0\x9f\x5e\x08\xad\x87\xe2\xf6\xd3\x08\xe5\xb9\x09\xb8\xb5\x75\x4c\x3f\xff\xc6\xbf\x3f\x54\xe4\xb4\x03\x00\x4a\x90\x2c\x87\x8a\xe0\xa9\x69\x17\x9d\x38\x4e\x59\x42\xb0\xb8\xad\x3a\xd3\x68\xb5\x12\x37\x6a\xba\xcc\x57\x79\xc7\x9b\x34\x8f\xd4\xa2\x26\x0b\xea\xfd\x74\x18\x20\xb1\xe9\xea\xb6\x1d\xca\xb9\xd3\x51\x0c\x00\xe1\x30\xc2\x49\xc2\x6a\x55\xab\x80\x79\x47\xd6\xef\x5d\x9a\xc5\x28\x60\x18\xc3\xa3\xca\x26\x14\x79\xf4\x32\xa9\x57\x33\x99\xea\x22\xa9\x88\x52\x29\x68\x56\x6e\x6f\x80\x90\x6b\x98\xc3\x54\x9d\xe4\x1a\x88\x23\x8d\x64\x3a\xea\xc8\x61\x46\x6a\xaa\xab\x53\x7f\x1f\x8b\x1d\xac\x31\x65\x97\x43\xf3\x52\xeb\xb4\x2c\x10\x33\x46\x19\x18\x28\x36\x67\x5a\xb1\x15\x67\x2e\x56\x64\x73\x05\xed\x81\x9b\xaa\x4c\x1b\xca\x02\x6a\xa5\x14\x14\x01\x99\x50\xd3\x69\x27\x1f\x4e\x3a\x72\xaa\xc8\x2d\xa3\xdf\xfe\xd9\xbb\x45\xe5\x92\xef\x16\xe9\x8b\xbe\xbb\x93\xb8\x7d\x30\xd0\xa4\xc4\xdb\x00\xd4\x22\xf9\xba\x13\xf9\xbb\xa8\x6b\x2b\x7f\x1d\x38\x6b\xcb\x43\x93\xff\x3a\xe0\xd7\xe4\x16\xd1\x27\x7e\xdc\xb5\x91\x34\x25\x72\x27\x4c\x80\x71\x7e\xa7\x96\x04\x48\x82\x84\x5d\x91\x63\xac\x06\x6b\x6d\xd8\xb0\xe4\xcb\x24\x36\x3e\xef\x84\xe7\x1d\xbd\x95\xb9\x04\x34\x55\xaf\x7b\xab\x0b\x82\x1a\xa2\x28\xf2\xa9\xf7\xe7\xa8\x2d\x7b\xdd\xe6\x47\x81\xeb\x26\x17\x6a\xe8\x4d\x88\xb4\x2e\xcd\xb6\x30\x4d\xf1\x2c\x6a\xbd\x84\xe2\xac\x4b\xa3\x2e\xce\x26\x86\x6f\xd1\xb8\x43\x7e\x17\x89\xfb\x20\x75\xe9\x58\x6b\xfe\x50\x91\xe3\x08\x52\x46\x94\xa9\x08\x63\x05\x48\xde\xb2\x98\xae\x0a\x38\x72\x95\x0d\xf3\x67\x87\x0f\x14\x7b\x59\xfc\x35\x35\x7d\x47\x51\xda\xa7\x2c\x45\x15\xce\x8f\xbf\x57\x00\xe9\x38\x9a\x52\x33\x9d\xd8\xa1\x80\xb8\x8e\xf6\x15\xb6\x65\x0c\x78\x78\x9d\xa6\x8d\xc3\x49\x43\xbf\xe2\x00\xc5\x61\x5b\x7c\x38\x57\x0a\x08\xad\xff\x01\xc8\x08\x99\x8c\x90\x01\xe4\x6f\x5a\x66\xda\x42\x4b\x7f\x36\xae\x6e\xf7\xd6\x69\x47\x4e\x6f\xf7\xe7\x3b\x69\x2c\xf7\xcc\x30\x9f\xce\x0a\xff\xf5\x8a\x48\xca\xd9\xce\xcf\x96\x84\x88\x55\x09\x99\xd5\x45\x9a\x50\xd2\x05\xf7\xc8\x35\xc7\x85\x8c\x3c\x3d\xac\x66\xfd\x14\xe9\x64\x42\x8d\x87\x49\x7e\x63\xdc\xc9\xc7\x80\x7b\xa0\x2c\x5f\xaa\xac\xf3\xe3\xd5\x51\x13\xf3\xdb\xe4\x7c\x0b\x3c\xa4\xf4\x16\x51\xb4\x8b\x80\x8e\x83\xb8\x3a\x03\x68\x11\x06\x69\x51\xf9\xd9\x14\x47\x5d\x5e\x9a\xe2\x6c\x03\x66\x6d\xe9\xb4\x85\x59\xb4\x5e\x17\xd1\x31\x4d\xef\x24\xb0\x18\x45\xdf\xf4\x31\x9c\x0c\xd7\x8d\xef\x56\xe6\x9e\xa0\x38\xeb\x87\x8b\x5d\xee\x2a\xe4\xa5\x23\xc3\xa8\x1a\x00\xd5\x4e\xe8\x3b\x7f\x32\xaf\x79\xc6\x04\x9d\x7e\x4a\xae\x27\xf7\xd2\x18\x87\x56\x9c\xe8\xf2\xb5\x8c\x8f\x2f\x32\xec\xe2\xd3\x8b\x8b\x0c\xc5\xd4\xb1\x0f\xa1\x74\x16\x19\x9e\x69\x8b\x3b\x74\xbf\x48\x3b\x6a\xa2\x2f\xeb\x68\xd5\xa6\x70\x75\x65\x09\xc5\xd1\x14\x77\xa8\x0c\x07\x89\xbb\xd5\x4a\xcf\x3b\x48\xf3\x0e\x0d\xe1\x4f\x00\x2d\x1b\x94\x33\xea\xa1\x4d\xdf\xd2\x55\xda\xa2\xe2\xac\x89\x47\x93\xf0\x89\xaa\xa5\x3f\x6d\x41\x2b\xf6\x8e\x42\x9d\x4b\x5b\x0f\x3c\x3f\xe5\x1f\x3f\x36\xc3\x84\xe2\xe7\x88\x29\x65\x34\x23\x67\x49\x6d\xb4\xf6\x1d\xb1\x88\x89\xe5\xdb\xb1\x16\x14\xef\xaf\x9a\x9a\x50\xf6\x9a\x23\x12\xa5\x82\x7e\x88\x4a\xc6\x4a\x1b\x25\x95\xfa\x35\x1d\x39\xcd\x63\x1a\xe7\x1d\x31\x56\xc2\xf9\x8e\x77\xa2\x4c\x9c\xb3\x7a\x94\x52\x46\x46\x8e\x3b\x72\x7a\xa3\x3f\xdf\xde\xef\xe6\x5b\xb9\x50\x53\x5b\x91\xf6\x97\xa7\x6e\xb2\x18\x02\xac\xf0\xaa\x00\x70\x48\x37\x5d\x5e\x9f\x61\xd1\x01\x2a\xc3\x77\xca\x8d\xdb\x47\x49\x92\x94\x1c\x25\xf9\xce\xad\xa5\xec\xfa\xb4\x23\xa7\xac\x5c\x75\xf5\xe0\xbb\x26\x43\xe5\x4e\xc2\x01\xed\xec\x46\x9d\x0e\x5b\x44\x26\xd5\x19\xe5\x75\x6c\x4d\x9d\x5b\x44\xc6\xea\x67\x8b\x82\xb9\x26\xff\x6d\xc0\xae\x49\x06\x87\xe2\x6e\xf3\xdf\xa6\x4f\xfe\x10\xff\x8d\x69\x2f\x82\xd6\xda\x40\x4c\x85\x11\xf0\xe7\xb3\x70\xfa\x9c\x5b\x04\x75\xc6\x66\x41\x7f\x6a\xdf\xd6\xd5\x29\x88\x5a\xa3\xd5\xf1\xc3\xad\xe2\xfa\x67\x3a\x36\x93\x07\x62\xc2\x01\x28\x37\xde\x32\x73\x5c\x0a\xbf\x35\x54\xb1\x47\x9b\x72\xeb\xa3\x8d\x45\x58\x84\xba\x0c\x85\x0b\xc5\x59\xf7\x7b\xa7\x71\xf3\x36\xd1\xc6\xd4\x2c\x62\x81\x34\xe5\xcb\x07\x6e\x6d\x4c\x4a\x53\xbe\x42\xac\x4a\x13\xa3\x13\xca\x4f\xc8\xbf\xf0\xad\x4f\xae\xb0\x00\x48\x05\x92\xf3\x84\x76\x8a\x95\x2b\xcc\x15\x0d\xca\x99\x13\xc2\xd9\x85\x4a\x73\x37\xfe\x18\xb3\xe2\x6c\x51\xcb\x68\x84\xd2\x9f\x9d\x98\x5a\x9a\xf8\x7c\xe2\x83\x1f\x37\x58\x18\xf6\x17\x9c\xb6\x61\x86\x23\xca\x7f\x7c\xa8\xcc\xf8\xd1\x50\xc8\xbe\xb3\xcc\x90\xce\x0f\x6c\x02\x7a\x72\xbc\x63\x9b\x68\x7f\x36\x33\x4e\xd9\x89\x0a\x60\x65\xca\xce\xae\x75\x06\xb5\x66\x57\x2c\xbe\xb2\x0e\x65\x44\x69\xde\xa1\x61\x1e\x23\x05\x48\x7a\x4a\xf9\x20\xca\xa4\xd2\x4e\x88\x9d\x3e\x8c\x82\x75\x19\xde\x5a\x9a\x7f\x92\x45\x72\xca\x03\xfa\x06\x9c\x95\x35\xf6\x9e\x57\x93\xf6\xeb\x84\x63\x55\xa9\x65\xac\xff\xdd\x2a\xcf\xc9\xad\x12\x8e\xed\x78\xbe\x32\xa1\xc6\x7b\xbd\xfc\xfa\xee\x52\xb6\x9d\x46\x2a\xf5\xca\xd5\x54\x0f\x77\xea\x0e\x12\xc7\xa2\x32\x26\xf4\x7c\x51\xb9\xa9\xaf\x0f\x22\x3f\xdb\xea\xc7\xd7\xab\x6d\x60\x6e\x11\xff\x07\x01\x82\x8b\x00\xf2\x90\xff\x3a\xc0\x78\xd0\x6f\xb6\x08\x96\x08\x39\x01\xb4\x1f\xb2\xa8\x15\x87\xaf\x10\xea\x98\x00\x89\x00\x75\xee\xed\x26\x2b\x15\x94\xe4\x42\x5c\x5b\x57\x05\x58\x60\x82\xb3\x42\xbd\xb8\x4e\x19\xeb\x93\xa5\xe7\x05\xe1\xf7\xb5\xf3\x65\x54\x8d\x70\x0e\x44\x44\xe5\x58\x94\x28\xb6\x71\x37\x08\x92\xef\x61\xd3\x34\xd7\x07\xed\x08\xbd\x62\xc5\xb5\x84\x39\x88\xe3\xdf\xf3\x0f\x11\x3a\x07\xe9\x2c\xdc\xdf\x41\xca\x72\x27\x65\x3e\x48\x98\x3a\x00\x79\x60\x57\x1e\xfb\xe0\x7f\xff\x42\x71\xa9\x62\xa3\xc2\x79\x97\xf6\x94\xa0\x14\xb9\xea\x3b\x8d\x92\x37\x4e\x7f\x5e\x98\x93\x88\x7d\xa0\x1c\xff\xf5\xf4\x23\xc3\x2f\xb0\x73\xba\x3c\xab\x41\xd9\xed\xfd\xbd\x42\xd9\xc8\x34\xbb\x02\x94\xbb\x49\x53\x35\x59\xd6\xb9\xfc\x1d\xfe\x0d\xe3\xc1\xe3\x09\xe6\x95\xd8\x23\xcf\x18\x60\x71\x99\xf3\x87\xbc\x49\xbe\x36\x62\xdd\x59\x81\x60\x5d\xeb\xec\x12\xa0\x04\xa6\x79\x07\x63\x19\x53\x0a\x82\xa4\x02\xbc\x18\x7f\xfe\x30\x48\x8d\x33\x3b\x86\x73\x10\x5b\xfe\x65\x00\x32\x10\xb2\x49\x47\x0e\x6f\x0c\xe6\x5b\xf7\xef\xaa\x9d\x6e\x86\x35\x5b\x9e\x70\x36\xb5\xf1\xe4\x17\x13\x08\x36\x17\x83\x4b\x2d\xbb\xc2\xbe\x6d\xc8\x3f\xaa\xf7\x0e\x8e\x2c\x9f\xcf\x62\xb9\x77\x7b\x29\xbb\x3e\xea\xe6\x7b\x05\x6b\x58\x94\x49\x83\xbc\x16\x20\x03\xb4\xcb\x9d\x3a\xff\x4d\xae\x49\x4e\xde\x49\x3a\x7f\x2c\xd9\xbb\x68\x98\x90\x81\xd6\xa4\x67\x5b\xe3\xfc\xfa\xd7\xbf\x2e\xf4\x11\x24\x81\x3c\x39\xee\x87\x3f\xfc\xa1\x7f\x1e\x53\x28\x5f\x6d\xee\xa0\x75\xdc\x64\x94\xfa\xef\x1b\xaf\x43\xc0\xa5\xae\xd2\xea\x98\x17\xfe\xce\xf8\xf1\x4f\x8a\xd6\xf7\x52\x9f\xf1\xc3\x22\x70\xc4\x26\xef\x34\xe4\x8e\xd9\x57\x40\x80\x6f\x7d\xa2\x5e\x08\x18\xca\xba\x7c\xe2\x5b\x2b\x26\xdf\x28\xa7\x08\xf3\x09\x67\xdc\x4f\xf1\x2b\x48\x41\x88\x16\x2a\xf0\x80\xcb\x04\xfd\x4e\x84\xc0\xbb\x83\x76\xa4\x10\x63\x11\xea\x24\x15\xd6\xac\x26\x0f\xfa\x9a\xc7\xed\xa7\x11\x12\x06\xfa\xb7\xce\x7f\x28\x6f\x75\x88\xbc\x2e\xef\xa1\x76\x1b\xaa\xd3\xb6\xfa\x6b\x8b\xdb\xdc\xbf\xf4\xd2\x4b\x78\xe1\x85\x17\xe4\x60\x30\x70\xea\xca\x59\x12\x0d\x92\x20\xc8\xf9\x92\xd8\xd5\x7b\xb9\x80\x94\x30\x00\xdd\x03\x20\xe6\xb6\x32\x6e\xa0\x7f\xab\xfb\xae\x98\x77\x95\xee\xc1\x28\x43\xb7\x91\x33\x05\x65\xd7\xde\x69\x43\xc0\x01\x05\xcc\x9c\x37\x7d\x92\x29\x41\x7b\x6d\xc1\x0c\xf1\x34\x6c\x40\xe8\x21\x20\xab\x58\xf5\xd6\xf4\xe4\x19\x20\xaa\x52\x1e\x17\x5a\x79\x77\x9c\x4d\x81\xf2\xca\xc1\x6a\x43\x83\x00\x36\xf9\x54\x0a\x9a\xe6\x1d\x1a\x16\x73\x5c\x82\x4c\xc9\x42\x2e\x00\x70\xb4\x82\x37\x00\x66\x16\xcb\xe9\xf6\x60\x7e\x6d\x77\x29\xbb\xb2\x3c\x8b\xee\xe9\xe4\xd4\xe3\x75\xe6\x7c\x7b\xa7\x2e\x1b\x36\xf3\xd4\xe1\x8a\x2b\xeb\x4f\xa1\x00\x2d\x75\x74\x0e\x5c\x43\x4e\x3f\x2e\x0e\xca\xb4\xdf\x30\x17\x2a\xdb\xeb\xe6\x5b\x37\xfb\xf3\x4f\xca\xf9\x2d\x99\xfe\xd3\xf5\xe4\xaf\x26\x7d\xfb\xed\xb7\x9d\xad\xf5\x59\xbd\x84\xe4\xdc\x22\xfd\x31\xd8\x9f\x4f\x9c\x38\x81\x47\x1e\x79\xc4\xf7\xeb\x5c\xff\xf6\xb7\xbf\xc5\xf6\xf6\x36\xcf\xc3\x22\xae\x2d\x5f\x4d\x65\x58\x44\x0e\xf9\xf5\xb0\x08\x38\x71\xe2\x58\x5d\x5d\xc5\xe7\x3f\xff\x79\xc7\x83\x7f\x04\x49\xdd\x7c\x2b\x00\xe2\x1b\xdf\xf8\x86\x73\x3c\xcf\x5b\x6f\xbd\x85\xcb\x97\x2f\x87\x64\xeb\xa2\xdf\x6a\x11\xbf\x07\x01\x31\x8d\xf5\xd7\xc4\xb8\x84\xd0\x50\x9d\xb2\x93\x80\x19\xdf\xe5\x96\x87\x71\xbc\x63\x97\x6c\x8b\xe4\x72\xd5\xc1\x05\xba\xf3\x04\x3a\xb2\x13\xa7\xf7\x0b\xb8\x2c\x0c\xef\xb3\xdc\x8a\x0b\x59\x2b\xd6\x90\xd4\x12\x83\x59\x86\x9a\x3a\xd5\x79\x02\x8a\x53\xae\xa5\x7b\x4e\x87\x3e\xbb\x83\x83\x36\x6f\x86\xfd\x22\x08\xb3\x0e\xb4\xf8\xfe\xfd\x0e\xd0\x04\x20\xfc\x34\x9b\x86\x60\x9a\xd2\x0e\x81\xd7\x45\xca\xd4\x94\x56\x9b\xff\xb6\x0e\x7e\x27\xa8\x5d\xdf\xb7\x95\xa7\x29\x6e\x5c\xbd\x7a\x55\xce\xe7\x73\xc1\x87\x06\x99\xbf\x92\x71\x51\x12\x84\x2c\x5d\x12\xb7\xf3\x98\xf6\xe2\xb9\xda\x80\x22\x61\xe9\xfa\x00\x18\xf7\xcd\x6c\xf2\x3d\xa0\x61\xa8\x07\xf6\x3d\x9f\xd8\x50\xf6\xa3\x6a\x3b\xb7\x81\x0b\xa5\xee\x9d\x8f\xc3\xae\x8d\x72\xf3\xa2\x75\xfc\x1a\x4f\xb6\xcf\x99\xe1\x08\x38\x07\x1b\x42\x69\xc0\x61\x3d\x94\xf9\xa3\x6a\x79\x78\xc1\xbc\x31\x13\x13\xa6\x7c\x60\x98\x07\x9e\x1f\x9d\x6f\x06\xb4\x14\x80\x3c\xa6\x61\xd6\xa1\xa1\x14\x54\x80\xca\xf2\x8f\x31\xc5\x8d\x0a\xef\xf6\xed\xdb\x38\x77\xee\x1c\x9e\x79\xe6\x19\xa0\x2a\x23\x0d\x68\x01\x90\x49\x42\xba\xdf\xcd\x76\xaf\xac\x4e\xdf\xd9\x18\xc5\xa7\x62\x19\x1f\xe7\x55\xc7\x87\x70\xdc\xb2\xd6\x6c\xff\x0f\xdb\x0c\xcc\xc1\x96\xac\x5e\x1c\x83\x8b\x7d\x17\xe3\x85\x5f\x57\xbe\x5b\x11\xe7\xa4\x23\x77\xb6\x07\xe9\xc7\x37\x97\xe7\xd7\xd2\x58\x4d\xe1\x82\x31\x1f\xe8\x81\x88\x70\xeb\xd6\x2d\xdc\xbe\x7d\x5b\x47\x5d\xa7\x08\x81\xf6\x7e\x6e\xae\x9f\x79\xe6\x19\xd1\xeb\xf5\x78\x7c\x58\x5f\x5f\xc7\x5d\x77\xdd\x15\x4a\xc3\x5c\x0b\x21\xe4\x70\x38\x74\xc2\xed\xee\xee\xe2\xfc\xf9\xf3\x07\x01\x32\x4d\xae\xce\x08\xd3\xf7\x7e\x1b\x3a\x48\xba\x8e\xdf\x13\x27\x4e\x88\x93\x27\x4f\x02\x00\x96\x96\x96\x70\xe2\xc4\x89\xa0\xe1\xec\xaf\xf0\xf2\x74\xb1\x00\x20\x8f\x1f\x3f\xee\x8c\x8c\x24\x49\x22\x1f\x78\xe0\x01\x01\x14\x47\x23\x5c\xb8\x70\xc1\x4f\x7f\x11\xc0\xd1\x56\xde\x45\xbe\x77\xc8\x55\xe2\x68\x1b\x2a\xe2\x09\x34\x21\x4b\x00\x46\x71\x3b\x81\xd9\xe9\xc9\x85\x7f\xb2\x43\x45\xfa\xf0\x33\x3e\xff\x85\x60\x11\x3f\xa7\x9c\xfd\x8e\xab\xca\x10\x66\xd9\x20\x78\x87\x0e\x6d\x6c\x6e\x9d\x63\x4c\xb2\x67\x4e\xbe\xf5\x7b\xcf\xfa\x29\x05\x44\x1c\x29\x4a\xa2\xe2\xfc\x19\x78\x40\xc5\xd4\x8b\x72\x8f\x56\xaf\xfb\x68\x07\x61\x51\x7c\xa1\x58\x87\x54\xfd\xf4\x78\x3a\x6d\x8c\x04\x02\xfe\x42\xf1\x34\xe5\xb1\x29\x4f\x8b\x30\x2e\xfe\xbb\x50\xdc\x75\xec\xcb\x41\xeb\xd9\x07\x30\x6d\xf9\xae\xc4\x13\x58\x89\xe2\xfc\xa9\x02\xb8\x0c\xb3\x84\x76\x92\x29\x8e\xa3\x18\x66\x2c\x03\xbb\x40\xba\x68\xbe\xac\x4d\x7b\x0d\xd1\xec\x33\xc4\x84\x92\x7b\xde\x57\xe9\x8f\xeb\x7e\x8f\x39\x54\xe5\xe4\x55\x3d\xe9\x56\x2b\x74\x55\x9e\x0f\x64\xfd\xb8\x56\x83\x65\x70\xbc\xe1\x22\x07\x60\x79\x26\xbb\x82\xe1\x74\xcc\x96\x05\xe5\x3f\x1b\xdc\xee\xdf\x62\x11\x96\xed\xdd\x9a\x95\x71\x00\x4a\xc9\x3e\x69\x40\xe4\x0b\x68\xcb\x08\x95\x79\x20\x13\x93\x99\xee\xa2\x04\xd2\x2c\xa1\xdd\xac\x2b\x6e\xab\xc8\x55\xc8\xde\xf0\xb6\xfe\xae\x15\x37\x99\x4c\xf0\xc1\x07\x1f\x68\xe0\x02\x0f\xf0\x18\xd0\x02\x20\x05\x21\x9d\xc6\x72\x78\x79\x6d\xfa\xc1\xdd\x7b\xc9\xa5\xa5\xb9\xd8\x8c\x25\xf5\x8c\x41\xc5\xbe\xb7\x59\x12\xcd\x65\x4f\x80\xe9\x32\xe0\x44\xe9\x36\x51\x95\x99\x95\xb8\xd9\x35\x42\xef\xcb\xb8\x73\x52\xe9\xad\xa5\xf9\x95\x4f\x57\xd2\x0f\x6f\xf7\xf2\x9d\x92\x31\x2c\xca\x62\xcb\x25\x3d\x39\xe7\xd7\x57\xa8\xbf\xb6\xf5\x49\xd1\xed\x76\xf1\xf8\xe3\x8f\x9b\x07\x9f\xf9\xcc\x67\x90\x24\x49\x48\xbf\x00\x56\x59\xfb\x8c\x8b\x3c\x7e\xfc\x78\xa5\x6f\xef\xef\xef\xcb\x6e\xb7\xab\x9f\x8b\x5f\xff\xfa\xd7\x75\x79\xaf\x73\x8b\x2a\xe0\x3b\x91\xf1\xdc\x09\x00\xf2\xf4\xe9\xd3\x62\x63\x63\x03\x77\xdd\x75\x17\xee\xb9\xe7\x9e\x90\x4c\x04\x60\x0e\x77\xe5\xcf\xea\x9c\xbf\x12\x4c\x1e\x3b\x76\x4c\x1c\x3b\x76\x0c\x00\xb0\xbb\xbb\x2b\x97\x97\x97\xc5\x74\x3a\xc5\x1b\x6f\xbc\xa1\xfd\x35\x31\x45\xf0\xee\x0f\xc2\x36\xd5\x3d\x6f\xac\xaf\x45\xce\x2a\x6a\x53\x08\x46\xf0\x6b\xc6\xa5\x69\x0b\x74\x05\x40\x16\x43\x45\x12\x5e\xe7\xf1\x0d\x0e\x67\xde\x21\x8c\xd8\x31\xef\xf4\xba\x04\xe2\xd6\x06\xb9\x71\x38\x09\x33\x61\xc6\x85\x42\xc5\x83\x47\x05\xf9\x8a\x85\x40\x22\x92\x14\x0b\x45\x71\x29\x14\x0d\xf3\x42\xf6\x54\x60\x9f\x71\x09\xd5\x1d\x10\xfe\x40\x75\x1f\x7a\x91\x86\x52\xf7\xc1\xeb\x04\x49\x5d\x3e\xda\xe2\xa9\x73\x4d\xe5\x69\x4b\xa7\x2d\x0f\x6d\x16\xc0\x41\xe2\xd6\xcf\x9a\x84\x4a\x5b\x7a\x41\xff\x2e\x50\x2f\x58\x97\x3c\xa1\xf1\x7c\x89\xb6\xd4\x10\x0f\x93\x44\xcf\x80\x04\x68\x20\xcd\x8f\x0b\x2c\x1d\xb7\xbc\x61\xfb\x93\x3f\x71\xdd\xf6\x35\x1b\xc8\x2a\x3a\x1b\x56\x95\x60\x42\x0f\x03\x15\xde\xcb\xf7\x1a\x00\x50\x01\x50\x38\x83\x61\x73\xa1\xcf\xcb\x71\x20\x07\xcc\x99\x43\x3e\x95\xc9\xd1\x93\x06\x0f\x8a\x0d\xe1\xe8\x8d\xe0\x2a\xe5\x75\x81\x56\xb0\x9e\x98\x81\x62\xea\x45\x87\x51\x70\x9e\x73\x5a\x82\xd7\x91\x8a\x30\x9d\xf7\xc4\xce\x3c\xa1\xa1\x24\xaa\x30\x09\x58\xac\x4f\x38\xc0\xd7\x9f\x90\x0b\x36\xb4\x02\x20\xcd\x05\xc6\xbb\x4b\xd9\xce\x87\x1b\xd3\x0b\x87\x47\x9d\x53\x2b\xd3\xf8\x1e\x40\x09\x73\x12\xb4\x96\x33\x16\xbf\x59\x79\xc8\x65\xa5\x0f\x3a\xc8\x7d\xce\xdb\x93\x36\xf2\x38\x80\xf5\xcf\xc8\xf4\xd3\x56\x50\x18\x27\xf9\x8d\xad\x95\xf4\xd2\xf6\x60\x7e\x75\x16\xcb\x31\x0a\xc0\xa2\x41\x8b\x0f\xf2\x42\xf5\xa5\xdd\xc2\xf2\x69\x65\x65\x45\xdc\x77\xdf\x7d\xe8\xf5\x7a\x78\xe2\x89\x27\x42\x5b\x0d\x38\x4a\x99\xcb\xdb\x96\x74\x8d\x3b\x74\xe8\x10\x9e\x7c\xf2\x49\x03\x76\x27\x93\x89\x54\x4a\xe1\xfd\xf7\xdf\x17\xd3\xe9\xb4\x4e\x66\xd4\x29\xe3\x36\x23\xae\xce\x4f\x6b\xdc\x67\xce\x9c\x41\xb7\xdb\x15\x0f\x3d\xf4\x10\x36\x37\x37\x2b\xc3\x60\x80\x65\xf9\xbd\xe7\xbc\x3d\x6a\x7f\xfc\xde\xd7\xeb\x4e\x3d\xad\xad\xad\xe1\xc9\x27\x9f\xc4\x64\x32\x91\x52\x4a\x00\x10\x17\x2e\x5c\x68\x9a\xfa\xe0\x03\xa5\x45\x74\x50\x5b\x1d\x36\x1a\xe0\xa1\xd3\xa1\x9b\x86\x34\x9a\x2c\x60\x00\xa8\x58\x81\xfe\x73\x59\x6e\x1d\x2d\x49\x95\x5b\x6c\x57\x0f\x4d\x0b\x0d\x21\x69\xc1\x57\x01\x1d\xca\x1f\xcb\x46\x65\x12\xae\xa5\x8d\x2d\xf5\xea\xf4\x5a\xd6\xf3\xb5\x55\xe7\x58\x2d\x2c\x2f\xa5\x65\x22\x22\x89\x24\x92\xc5\x49\xa9\xfe\xe7\x6c\x98\x9c\xdb\x36\x9c\x13\x02\x13\x6d\xcc\xc7\x41\x86\x8a\x6a\x59\x83\x05\xdc\x41\x99\xa1\x3b\xb1\x30\x0e\xea\xee\x84\xfd\xf1\xdd\x22\xf9\x6c\xab\x6b\xb0\xe7\x3c\x4e\x2d\xe0\x33\x29\x90\xce\x96\xc5\x96\xdc\xa1\xa9\xc8\xd4\x80\xe0\x9f\x98\xee\x36\x60\xbd\x39\xa2\xf2\xdf\x81\x01\x14\xad\xa5\xc1\xe6\x6f\xc0\x85\x1a\xfc\x8e\x4c\x3b\x57\x00\xef\x4b\x4e\x3e\xe0\x84\x29\x94\x27\xcb\x85\xb7\xa7\x8b\x06\x32\x7c\x68\xc6\x82\x06\x1b\x07\xe7\x40\x39\x26\x32\x7e\x1d\xbb\x41\xd9\xce\xc6\xca\x66\x64\x80\x66\x72\xc8\xcd\x3d\xab\x0e\x3b\x89\xb8\x24\x80\xc0\xeb\xa7\x2c\x77\x1e\xd1\x70\xde\xa3\xdd\x3c\xa1\x31\x84\x65\x10\xe0\x0a\x54\x73\xbf\xb5\xb5\x85\xbd\xbd\x3d\x5e\x5d\x02\x80\x9c\xcf\xe7\xf8\xe0\x83\x0f\x0c\xd5\x1e\x08\xaf\x59\x8a\x14\x84\x34\x8d\xd4\xf0\xf2\xda\xec\x83\x63\x7b\xc9\x85\x5e\x26\x56\x92\x4c\x0c\x80\x62\x95\x22\x83\x99\x00\x51\x85\x19\xe1\x8e\x9f\x81\xed\x3e\x37\xb5\x61\xae\x6a\x66\x46\x85\xcc\x35\x28\x00\x69\xa4\x86\xd7\x07\xe9\xa5\xab\xab\xb3\x4b\xc3\x6e\xb6\x0b\xc2\x14\x2e\x70\xe1\x43\x6b\xc6\x5d\xbb\x76\x4d\x96\xc3\x44\x8b\xc8\x1a\xa3\x57\xd6\xd7\xd7\xb1\xbe\xbe\x8e\x23\x47\x8e\xe0\xb3\x9f\xfd\x6c\x45\x49\x97\xfa\x43\x1b\xc5\x8e\x82\x2e\xf5\x42\x85\x8d\x81\xfb\x1d\xcc\xaf\x37\xff\x52\x3e\xf7\xdc\x73\x02\x00\xe2\x38\x96\xfb\xfb\xfb\xe2\xfa\xf5\xeb\x28\x87\x97\x5a\xf3\xed\xf9\x39\xc8\xf0\x87\x1f\xc6\x89\xeb\xfe\xfb\xef\x17\xcf\x3e\xfb\x2c\x96\x97\x97\x39\x30\x13\xb0\xc4\x80\x00\xcc\xa2\x10\xc7\x68\x26\x90\x28\x95\x92\x30\x7d\xb2\x38\x8f\x4b\xf7\x07\xa7\x8d\x97\x8c\x19\xbf\x07\x00\xf4\x7a\x3d\x7c\xe1\x0b\x5f\x00\x00\xcc\x66\x33\x29\xa5\x14\x57\xaf\x5e\xc5\x6c\x36\xab\xab\x8f\x90\x3b\x88\x01\xdc\x66\x68\x9a\xe7\x4d\x93\x73\xeb\x04\x75\x1d\xea\xe4\x28\x10\xfc\x9a\x0f\x97\x48\xa1\x64\x26\x54\x26\x0b\x41\x61\x24\x96\xdf\x79\xf8\x9d\x66\x90\x8d\x90\x2c\xdf\xf2\xd3\x65\xab\x02\xd0\x1e\x1f\x67\xa9\x70\xf7\xbe\x00\x4e\x96\x6e\x2e\x23\x75\xf2\x4d\x2c\x6e\xfd\x9a\x00\x11\x29\x4a\x62\x49\x5d\xa1\x20\x32\x66\xa1\xb2\xa1\x22\xdf\xf9\x68\x98\xa3\x5e\xdf\x9f\xff\x3c\xa4\x38\x43\x71\x87\xae\x5b\xbf\x57\x4d\xdc\x6d\xe9\x34\x09\xa5\x90\x12\x6f\x2b\x8b\x9f\xcf\x45\x41\xc9\x22\x6c\x60\x28\xee\x50\x39\xea\xe2\xaa\x13\x46\x4e\x9b\x0f\xac\x28\x91\x4a\xa9\x8c\x40\x52\x0a\x64\xd3\x81\xb8\x9e\x77\x68\x2f\x4e\xd5\x06\xa4\x12\xc1\x31\x4b\x00\x7a\x18\xc5\x02\x0b\x06\x64\xcc\xc4\x52\x77\xe8\x84\x33\x82\x26\x2f\x9c\x6d\xe0\x5a\xbd\x44\x0c\x64\x14\x7b\xc9\x9b\x38\x71\xdb\xb3\x96\xc8\x1b\xfa\x71\x01\x06\x59\xf6\x46\x77\x52\x06\x34\xec\x29\xd6\x3c\x7e\xe6\xca\x67\x7a\xf5\x0b\x39\x28\xc5\x78\x32\xf5\x62\xf2\xed\x4c\xe8\x80\x93\x5f\x7f\xa5\x94\x61\x13\x8c\xdd\x52\xce\x6f\x49\x68\x77\xde\xa3\xdd\x3c\x86\x99\xbb\x51\x19\xda\x66\x71\xbf\xfe\xfa\xeb\x60\xa7\x12\x1b\x37\x1e\x8f\xe5\x2f\x7e\xf1\x0b\xf1\xc0\x03\x0f\xa0\x8c\x43\xcf\xf7\xb3\xc3\x44\x40\xa2\x94\x4a\x89\x28\x55\x84\xe9\x5e\x2f\xdb\x7d\xe7\xe8\xf8\xf7\x2b\xb3\xf8\xe8\xd1\xfd\xe4\x6c\x92\xa3\xcf\x61\xa4\x99\x6b\xe4\xa2\x19\x0f\xa0\x5a\xd9\xe7\xb3\xd3\xb6\x62\xec\x27\xe7\xce\x8b\xb6\xfc\xce\xc5\x65\x26\x54\x76\x73\x79\xfe\xf1\x07\x87\xa7\x17\xae\x1f\x4a\xaf\xa6\xb1\x1a\xc2\x82\x16\xc3\xb8\x28\xa5\xcc\x04\x5d\x1d\xcd\xf9\xf3\xe7\x71\xe5\xca\x95\x45\x14\x90\xe9\x6b\x2b\x2b\x2b\x78\xfc\xf1\xc7\xf1\xd0\x43\x0f\x85\xe4\x18\xff\xe5\x43\x42\xce\xd0\x08\x81\x04\x13\xd4\x92\x55\x44\x08\xbc\x84\xfa\xb3\x7c\xf6\xd9\x67\x05\x00\xbc\xf6\xda\x6b\xf2\xf2\xe5\xcb\x18\x8d\x46\x62\x7f\x7f\xbf\x09\x88\xb4\x19\x8a\xc1\xf2\x06\xe2\x10\x00\xa4\x10\x42\x1c\x3d\x7a\x14\x00\xc4\x57\xbe\xf2\x15\x24\x49\xe2\x94\x5d\x5f\x13\x91\x9e\xa2\x10\x13\x48\x10\x20\x62\x59\x8c\x02\x44\x12\x71\x2c\x29\xee\xe4\x22\x8e\x25\xc5\x42\x42\x10\x48\x66\x42\xc9\x2c\x52\x59\x4e\x2a\x9b\xc5\x32\x9d\x47\x4a\x4a\x52\x99\x24\xcb\x98\x69\x00\x43\x44\xfe\xf0\x9f\xfc\xea\x57\xbf\x2a\x00\xe0\x97\xbf\xfc\xa5\xbc\x74\xe9\x92\x98\xcd\x66\x8b\x1a\xc0\x75\xf2\xb7\x56\x96\x06\xfc\x54\xae\xe3\xba\x17\x2c\x02\xee\x9a\x14\x0d\x00\x83\x7e\x8d\x10\xf7\x84\x39\x72\x52\x59\x26\x54\x9a\x93\xca\x14\x94\x14\xa5\xe5\x59\xb0\xdf\xf6\x50\xc4\xca\xaa\x1e\xe3\x89\xcb\x63\xd7\xaa\xd0\x17\xbe\xd5\xa8\x10\x88\x4b\x77\x72\x06\x7c\x28\xe0\xdf\x8d\xc9\x78\x10\x42\x52\x5c\x0e\x17\x09\x12\xa6\x61\x39\x08\xd8\x73\x6d\x8a\x3e\xe4\x9a\xac\xfb\xba\xb0\x75\xd6\xc0\xa2\x08\x77\x11\xa1\xb3\xc8\xfb\x36\xa4\x5d\x07\x84\x17\xb5\x58\x16\xa9\x1b\xdf\x5f\x53\xbb\x6e\x7a\x1e\x4a\x1b\x00\xe4\xfe\xfe\xbe\x38\x74\xe8\x90\x8c\xe3\x38\x54\xdf\xd2\x28\x30\x42\x36\xeb\x8b\x9b\xf3\x2e\xdd\xe8\x4c\x70\x8f\x50\x88\x8d\x62\x62\x4e\x69\x76\xc2\x80\x69\x36\x0c\xc3\x58\x47\xb8\x60\x99\x8d\xd4\xb0\x25\xcf\x1c\xd8\x33\x76\xc5\x31\x26\xf4\x84\x0f\xd2\x71\x17\x41\x1c\xeb\xd5\x1f\x87\x35\xca\x30\x94\x8e\xbe\x2c\x19\x03\x58\x66\xc7\xe4\x9d\xbc\x62\x73\xc6\x94\xd1\x31\x3c\x2f\x96\x2c\xd5\x16\x07\x19\xc3\x83\x88\xcc\x61\x91\xa4\x19\x55\x27\x7e\xc6\x9c\x5a\x19\x93\xcd\xbb\xb4\x33\xef\x89\x9b\x32\x26\xbd\xa9\x5a\xa6\x85\xb6\xfe\x76\x35\xf3\x37\xea\x9c\x04\xcc\x22\x05\xfd\x97\x95\x0a\x3e\x05\x30\x55\x4a\x25\x44\x94\x48\x60\x78\x65\x6d\x76\x79\x39\x1d\x9f\xeb\xe4\xd4\xdf\x18\x75\x4e\x74\x24\x7a\x7a\xf3\x7e\xc3\x2c\x95\x88\x82\x1b\x56\x5a\x56\x1a\xb4\x61\x66\xe6\x96\xab\xb4\x7c\x66\xcd\xd4\x08\x67\xe7\x8a\x70\xbc\x5e\xca\xb8\xe5\xed\xa5\xf9\x95\xf7\x37\x27\xbf\xff\x68\x63\xfa\xfe\xb8\x23\xf7\xca\x7c\x4f\x01\x4c\xcb\x72\xa4\x1c\xb4\xe8\x3a\xaa\xd9\x70\xb3\xce\x70\xc1\xf2\xf2\xb2\x88\xe3\x18\x4f\x3d\xf5\x14\xce\x9c\x39\xa3\x99\x05\x07\x9c\x54\xfe\xca\xfd\xb3\x84\x82\x10\x4a\xc4\xa4\x20\x84\x22\x41\x0a\x22\x52\x06\xbc\xc8\xac\x50\xcc\xb2\x5c\xc1\x2a\x25\x29\x59\xec\xd8\xee\x1a\x16\xec\xcf\xc8\x88\x27\x9f\x7c\x52\x3c\xf1\xc4\x13\x78\xe7\x9d\x77\xe4\xb9\x73\xe7\xc4\x64\x32\xa9\x2d\x03\x5c\xd9\xd2\xa8\x6c\x03\x75\x62\xc2\x46\x51\x24\x8e\x1c\x39\x82\xbf\xfc\xcb\xbf\x34\x0c\x13\x0a\x70\x66\x00\x8b\x52\x2a\x26\x22\x5d\x07\x71\x24\x29\x8e\x14\xc5\xcb\x69\xd4\x5b\x99\xc6\x83\x43\xb3\x68\x65\x79\x16\x0d\x7a\x99\xe8\xf7\xe6\x62\xd0\xcb\xc4\x20\xce\x29\x51\x04\xe4\x42\x4d\x67\xb1\x1a\x8f\x92\x6c\x77\xaf\x9b\xef\xde\xea\xcf\xf7\x46\xdd\x7c\x38\xee\xc8\xe9\x3c\x52\x69\x2e\x54\x86\x62\x2b\x80\x0c\xac\xed\xc3\xea\x70\x28\xa5\xe4\x97\xbe\xf4\x25\x01\x40\xbe\xff\xfe\xfb\x22\x4d\xd3\xd0\xb7\x6e\xfa\xee\x68\x78\x17\x32\x94\xfd\x70\xa6\x4e\x35\x70\x59\x54\x41\x85\x2c\x52\xe3\x18\x5d\xa7\x1b\x34\x00\x77\x03\xba\x5c\x28\x39\x8f\xd4\xac\xa8\x28\x97\xd9\x00\x18\x5d\xc9\xc6\x79\xb4\xf5\x64\x26\xe9\x69\x9f\x6c\xa0\xd6\x9d\x23\xc0\x87\x8f\x6c\x87\x36\xec\x0d\x9b\x78\x68\x42\x39\x16\x0b\x13\xc2\x80\x23\x07\x35\x4d\x17\x29\xc4\x1d\x49\x49\x9c\x93\x98\x47\x55\xeb\x4f\xbb\xc0\xc4\xcd\x26\x66\xe3\x0f\x41\xb1\xfc\xba\xae\xa3\xf8\xe1\x43\xe9\x36\x81\xae\xa6\xb8\xf8\x7d\xc8\x5f\xa8\x0c\x7e\xdc\x8b\x3a\x1f\x88\x84\xde\xf9\xcc\x56\x9d\x3f\xff\x7a\x91\x7b\xf3\xfc\x27\x3f\xf9\x89\xfc\x8b\xbf\xf8\x0b\x71\xcf\x3d\xf7\xf8\x00\xc9\x28\xae\xf2\x37\x9d\xf7\xc4\x70\xb6\x2c\xae\xf4\xf6\xe5\x59\x91\xa3\x0f\x70\x45\x5f\xb8\xa2\xbd\x71\xd3\x59\x03\x6e\xdb\xd6\x7d\x45\xaa\x59\x12\x2a\x01\xbf\x46\x06\xc6\x0a\x67\xcc\x4c\x81\x89\x88\xf9\x2b\x97\x22\xdb\x5b\xd7\x39\x33\x42\x6d\x7c\xee\xc4\x2f\xab\x1c\x39\x80\x32\x69\xc0\x05\x19\x9c\xed\x34\xf3\x6a\x4c\xdc\xd6\x3a\xa1\xb2\x8f\x5b\x46\xa8\x9a\x15\xde\xe7\xad\xd1\x04\x33\x07\x8e\xd8\x3b\xcd\xee\x00\x0a\x32\xa6\xbd\xd9\xb2\xd8\x4a\x97\x68\x37\x17\x48\xa9\x9c\xe3\xe2\xb3\x08\xfe\x1c\x01\x84\x81\xb0\x00\x80\x34\x4d\xd1\xe9\x74\x8c\xb1\xc6\x28\xf8\x0c\x40\x4a\x44\x71\x09\x00\x12\x10\x92\x9c\x30\x7c\x6f\x73\xfc\x6e\x6f\x4e\x83\xcf\xc8\xe5\x64\x6d\xd2\xb9\x27\x96\x2a\x31\xdf\xdc\x80\x33\x6f\x2e\x9f\xc5\x76\x8c\x89\x2b\x19\xab\x92\x75\xd2\x86\x9d\x86\x71\xf6\x9b\x84\x0c\x3b\x7b\x3b\xec\xe6\x3b\x1f\x1c\x9e\xfe\xfe\x9d\x23\xe3\xb7\x47\x49\xbe\xa3\xa0\xc6\x04\x9a\x12\xd1\x54\x29\xc5\x27\xe5\xf2\xa1\x35\x00\x90\x59\x96\xe9\x39\x11\x80\x57\x37\xdc\x1f\x00\xc4\x71\x8c\x3f\xff\xf3\x3f\xc7\xd1\xa3\x47\xf9\x2a\x18\xad\xa8\xfd\xbf\x98\x40\x42\x48\xc4\x91\x24\xd1\xcb\x44\xb2\x3c\x8b\x7a\x87\x66\x51\x6f\x90\x46\xfd\xde\x5c\xf4\x62\x49\x89\x50\x14\x47\xc5\x4a\x4f\x4c\x63\x39\x1e\x75\xf3\xe1\xa4\x93\xa7\xd3\x58\x4e\x47\xdd\x3c\x1d\x26\xf9\x74\x1e\xa9\x4c\x11\x65\x4a\x39\x20\x46\x7f\x7b\x67\x74\xe0\xa1\x87\x1e\x12\x71\x1c\xcb\x97\x5f\x7e\x59\x28\xa5\x90\x65\x19\x2f\x43\x08\xb0\xb4\x19\x53\x5c\x2e\x19\x39\x45\x44\x38\x72\xe4\x08\xbe\xfd\xed\x6f\x73\x56\x45\xfb\xd1\xc6\x70\x0c\x20\x86\x42\x2c\x14\xe2\x5e\x26\x92\xf5\x71\x3c\x38\x32\x4c\xd6\x8e\xed\x27\xc7\x37\xc6\x9d\xc7\x96\xe6\xe2\x6c\x9c\xd3\xd1\x48\xd1\x86\x50\x34\x20\x85\x3e\x14\x44\xd9\x1e\x32\x45\x2a\x55\xc0\x4e\x1a\xa9\x2b\x93\x6e\x7e\x61\xb7\x97\xbd\x7d\x73\x79\x7e\xe5\xfa\x20\xbd\x71\x73\x79\xbe\x37\x4a\xe4\x34\x2b\x0e\x83\x75\x96\xbb\xeb\x3f\xdd\xae\xbf\xf8\xc5\x2f\x0a\x21\x84\x7c\xfb\xed\xb7\x21\xa5\x6c\xd3\x35\x6d\xba\xa5\x8e\x28\xa9\x0b\xe7\x30\x2e\xa1\x4a\xd6\x9e\x42\x99\xe1\xef\x8c\x2b\x0b\xea\x2c\xc7\xf2\xe3\x96\x28\xe6\xb8\xe4\xa4\x52\x45\xc8\x04\x28\x31\x7d\x91\x01\x18\x16\x29\x5b\xaa\x57\x0a\x1f\x2d\x61\x99\x10\x73\x6c\x0a\x6f\xff\x06\xbf\xa3\x72\xab\xce\x9c\xca\xca\x18\x19\xe5\x7b\x73\xcb\x08\x05\x40\x28\x4a\x3a\x39\x25\xb1\xa4\x4a\x1d\xb6\x58\x68\x75\x1f\xa9\xe9\xfd\x9d\x86\x6d\x65\x0c\x16\x4c\xf7\x20\xcf\xdb\x00\x4b\xc8\xdf\xa2\x61\x16\xf1\xdf\x56\x8e\x45\xd2\x5f\xb4\x4c\x95\xe7\x4c\x59\x49\x58\x6b\x3b\x03\x90\xe5\x1d\x4c\xc7\xab\xe2\xc3\xe5\x5b\x74\x23\x9e\xab\x15\x28\xc4\x95\xa6\x52\x25\x0b\x02\xe0\x99\xb1\x1a\xde\x38\x00\x1f\x22\xb1\x93\x69\xdd\x70\xce\xea\x1c\x83\x58\x9c\xd4\x58\x7e\xc8\xf3\x03\xa3\x4c\x9d\x79\x2b\x3c\x2a\xe2\x61\x61\xb6\xa3\x37\x13\x68\x59\xdf\x34\xd1\x7a\x61\x9c\xf0\xdc\x9f\xfe\xcf\xf2\xe2\xf8\x65\x0c\xaa\x95\x0f\xd5\x49\xc5\x59\x57\xdc\x98\x0e\xc4\x56\xd6\xa1\xa1\xfe\x3e\xb0\xc2\xda\x9f\xeb\x12\x32\x40\x00\xa6\xb0\xe6\xf3\x39\xfe\xf1\x1f\xff\x11\x7f\xff\xf7\x7f\x2f\xe2\x38\x06\x60\xd9\xb6\x52\xf1\xe8\xf8\x53\x00\x53\x94\x8a\x68\x16\xc9\xdd\xb7\xef\x1a\xbf\x41\x8a\xe2\xb3\x37\xfa\x9f\x5b\x1f\xc7\xc7\x3b\x39\xf5\x4c\xd9\x3c\x60\x5b\x29\xaf\xf7\xdc\xe1\xc6\x02\x9f\x33\x24\x06\x15\x00\x49\xc8\x46\x49\xbe\xf3\xde\x91\xc9\xab\x6f\xdc\x3d\x7c\x6d\xd8\xcd\x6f\x28\xc2\x98\x40\xe3\x32\xbf\x86\x6d\x81\xa7\xd4\x74\xdd\xfc\xf8\xc7\x3f\xc6\xd6\xd6\x96\x97\x60\x50\x61\x89\xef\x7e\xf7\xbb\x58\x5d\x5d\x35\xf7\x70\x95\xb4\x00\x10\xb3\x89\xa7\xf1\xa1\x59\xd4\xbb\x7b\xaf\xbb\x76\x64\xd8\xd9\x5c\x9b\xc4\xc7\x06\xb3\xe8\xc4\xd2\x5c\x9c\xee\xe4\xe2\x9e\x48\xd1\x0a\x29\xf4\x08\x94\x10\x10\x2b\x00\x12\x6a\x2f\x17\xea\x46\x16\xa9\x1b\xf3\x48\x6e\x8d\x92\xfc\xa3\x9d\x7e\xf6\xe1\xb5\x43\xe9\xd6\xf5\x41\xba\x7b\x7b\x29\x9b\xe6\x64\xc0\x97\x28\xcb\xc1\xf7\xf2\x01\x50\xac\xe8\x39\x7d\xfa\xb4\xdc\xd9\xd9\xc1\x0f\x7e\xf0\x03\x9e\xdf\x3a\xa3\x67\x51\xb9\x63\x7e\x8f\x1f\x3f\x2e\xbe\xf5\xad\x6f\x69\xa6\x85\x83\x96\x98\x83\x16\x22\x8a\x93\x8c\x92\xbb\xf6\xbb\x6b\x67\x6e\xf4\x4e\x1d\xdb\xef\x3e\x35\x98\x46\x9f\xeb\xe6\xe2\x61\xa1\x70\x8c\x14\x25\x54\xd6\xb5\xf3\xe9\x75\xa3\x28\x66\xe7\x1f\x4f\x24\x1e\x5d\x9e\x47\x7f\xbe\x3e\xea\xec\x1c\xbf\xdd\xbd\x34\xea\xe4\xbf\xbb\x7e\x68\xfe\xeb\x8f\xd7\xa7\xef\x5c\x59\x9d\xdd\x18\xf6\x72\x3d\x74\xca\xff\x8c\x23\x22\xf9\x85\x2f\x7c\x41\x24\x49\x22\x5f\x7b\xed\xb5\x45\xe4\xed\x22\x3a\x6d\xa1\xba\xd2\x2f\x9a\x96\x43\x2f\x3a\x44\x21\x00\xe0\xf5\xd7\x5f\xc7\x6c\x36\xc3\x97\xbe\xf4\x25\x67\x82\x2e\x60\x00\x8d\x04\x8a\xba\xcb\x85\x92\xb9\x28\x86\x8a\xb8\xcd\xe4\x3a\xc6\xa8\x38\x32\x36\xec\xbb\x11\x2a\xb4\x39\x2d\x50\x2b\x43\x51\xc1\x5c\x81\x00\x08\x85\x38\x96\xd4\x8b\x0a\xe0\xc2\xad\x03\xd7\xbf\x52\x78\xfe\xf9\xe7\xd1\xed\x76\xc5\x9b\x6f\xbe\x59\xd7\xd8\x9b\xdc\x41\x94\xfa\x41\xe2\x3d\x48\xb8\x83\x32\x42\x7f\x2c\xb7\x28\x7b\xc3\xfd\xff\x6f\xe6\xad\x2d\x7e\xde\xc1\xb4\x00\x34\x56\xbc\x22\x4c\xc7\x87\xa2\x4f\x67\xfd\xec\x93\x64\x82\x63\x51\x86\x15\x00\x61\x05\x53\xba\xd0\x63\xb7\x0b\xb0\xc0\x8c\x49\xac\xf4\x2b\xf6\x2e\x30\xa5\xb5\x21\x35\xfb\xdc\x31\xf6\x35\xda\xf0\x18\x80\x0a\x85\xe4\x44\xeb\x0e\xc8\x56\x01\xbe\xcb\xa2\x36\xb9\xd0\x70\x87\xcb\x9a\x7a\xc9\xb3\x7c\x29\xa2\x6c\xd6\xa7\xad\xd9\xb2\xd8\xce\x3b\xa4\x57\xcb\xf8\x2c\xc2\x22\xca\xa8\xad\x2d\x70\x8b\x3e\x05\x63\x10\x60\x15\x53\x3c\xe9\xc8\x9d\x37\xef\x1e\xbd\x36\xea\xe6\xc3\xb3\xd7\xfb\x4f\x1c\xdb\x4f\xce\xf4\xe6\x62\x20\xbc\x09\xdc\x65\xc9\x11\xaa\x20\x1f\xc7\xf1\x9b\x06\xb1\x09\x05\x85\xb9\x50\xd3\x5b\xcb\xd9\x27\xef\x1c\x19\xff\xe6\xc2\x5d\xa3\x37\xa6\x1d\xb9\xa3\x80\x21\x8a\xbf\x71\xf9\xe7\x4f\xce\x75\xd8\x16\xaf\xdc\xa1\xba\x30\xee\xef\xfe\xee\xef\xc0\xf6\x64\x11\xb0\x43\x22\xae\xa2\x06\x25\x87\x47\x71\xef\xc4\xce\xd2\xd1\x7b\xf6\x92\x87\x37\xc6\x9d\xa7\x97\xe6\xe2\xd1\x4e\x4e\xc7\x85\xa4\x35\x02\xfa\x64\x65\x84\x57\x57\x04\xe4\x24\x31\x87\x54\x14\x65\x6b\x93\xce\xde\xd1\x7d\x79\xe5\xfe\x9d\xde\x9b\xfb\xbd\xfc\xf5\xed\x41\xfa\xce\xe5\xb5\xd9\xc7\x1f\x6d\x4c\x77\x61\x27\x1a\x6b\x80\xe9\xb3\xa6\x58\x5f\x5f\x97\x7f\xfb\xb7\x7f\x2b\xfe\xf5\x5f\xff\xf5\x8e\x8d\x9a\x90\x7b\xf0\xc1\x07\xc5\xf3\xcf\x3f\xaf\x6f\x39\x70\xd3\xf5\x90\x00\x88\xe3\x9c\x92\xa3\xfb\x9d\xb5\x53\x3b\x4b\xa7\xee\xdd\xed\x7e\x7e\x6d\xd2\x79\x3e\xc9\xe9\x61\xa1\x30\xa8\x96\xbd\xda\x42\xbc\x56\x23\x00\x24\x91\xc2\xb1\x68\x2e\x8e\x26\x99\x78\x62\x90\xc6\x5f\x3d\xba\xdf\x39\x77\x72\xd0\xfb\xd5\x47\xeb\xb3\x0b\x1f\x6f\x4c\xb6\x46\x89\xd4\xdf\x9c\xd7\x8b\x06\x31\xf2\xa9\xa7\x9e\x12\xdd\x6e\x17\xaf\xbe\xfa\xea\xff\x86\xcc\x6d\x94\xb5\x51\x43\x40\x5f\x77\x0b\xb8\x84\x84\xef\x4f\x1d\x3e\x7c\x98\xee\xbf\xff\x7e\x0d\x35\x04\x11\x45\x65\x1a\x1d\x22\x4a\x00\x24\x80\xea\xae\xcc\x3a\x1b\x47\x87\xc9\xa9\x95\x69\x7c\x5c\x28\xea\x70\x4a\xdb\x62\x95\xaa\x00\xf3\x3b\x9f\x6f\x6f\xda\x61\x26\x8f\x39\xd1\xef\x95\x1e\x77\x77\x2d\x59\xc7\xaa\x0d\x08\x3e\x27\x0f\xe5\x6f\x16\xa9\xe1\xee\x52\xf6\xd1\x8d\xc1\xfc\xe3\x51\x27\xdf\xd3\x54\x2a\x11\x69\x2b\x5b\x01\x50\x44\x24\x85\x10\xea\xea\xd5\xab\xb8\x76\xed\x1a\xcf\x92\xbe\x0e\xd5\xab\xf0\xde\x2b\xe6\x8f\x1a\xc2\x2b\xef\x5e\xd4\xf8\xf7\xc3\x4a\x34\xc7\x2f\xbd\xea\xe4\xf1\xfb\xbf\xa1\x36\xd2\x96\xa7\x3a\x7f\x3c\xdd\x50\x9d\xf8\xf5\x55\xf7\xde\x8f\xdb\x77\xa1\xfc\x85\xc2\x03\xd5\xb2\xe3\xec\xd9\xb3\x34\x18\x0c\x88\xec\x04\x8b\xa8\x14\x40\x11\x4a\xe5\x84\xc2\x12\x4c\x88\xd0\x49\x26\x6a\xbd\x3b\x96\xf7\x46\x19\x0e\xc1\x63\xfc\x5c\xe5\xed\x2a\x7a\x87\x46\xf0\x1b\x6c\xf9\xb0\x50\x52\xfe\x3c\x86\x12\xc8\xe8\x30\x21\x73\x5c\x47\x1f\x04\x14\x65\xec\xca\xbf\x29\xe2\x72\xb0\x0a\xf1\xb9\x26\x36\x8d\xea\xf0\x29\xd7\xaa\x30\xb5\x5d\x0c\x7d\x28\x1b\xa7\xbf\x24\x48\x97\x86\x0d\x39\x19\x59\x41\x60\xc6\x52\x59\x56\x55\x84\xe0\xf9\xc9\x12\xda\xd9\xdf\x8c\x5f\x1f\x6e\xc4\xef\xe5\x09\xdd\x02\xd1\x18\xc0\x04\xc0\x4c\x29\x35\x23\xa2\x39\x80\x1c\x56\x58\xab\x9f\xfd\xec\x67\xf2\xea\xd5\xab\x90\x52\xfa\xed\x02\x60\x6d\xe6\xdd\x77\xdf\xa5\x53\xa7\x4e\xa9\x24\x49\xa8\xac\x07\x02\x40\xde\x30\x04\x0f\x03\x10\x44\x2e\x94\xdc\xef\x66\xe3\x71\x22\x47\x04\xa8\x6e\x26\xba\x91\xa4\x9e\x28\x26\x5f\x9a\xef\x63\x87\xae\x2c\x58\xe3\xc0\x24\x38\x9c\xa6\x9b\x94\x32\x55\x02\xa8\xc2\x80\x1c\x27\xf9\xad\x6b\x2b\xe9\xfb\x6f\xdd\x3d\xfa\xf5\x3b\x47\xc6\x6f\x4f\x3b\x6a\x17\xc0\x3e\x08\xfb\x00\x46\xe5\xdf\x04\xc5\x3c\x97\x49\x59\x37\x73\xa5\x54\x5e\xca\xb8\x1c\x00\xfe\xfd\xdf\xff\x5d\x5e\xbf\x7e\x1d\x4a\xe9\x0f\x56\xed\x83\x51\x14\x89\xbf\xf9\x9b\xbf\xa1\xe5\xe5\x65\x70\x66\x05\x45\x7f\x89\xca\x7e\xd2\x25\x85\x64\x39\x8d\x06\x9f\xb9\xb6\x7c\xfc\xd1\x4f\x97\xbf\x78\xf2\x56\xef\xaf\x36\xc7\x9d\xbf\x5c\x4e\xa3\x67\x93\x9c\x4e\x0a\x45\x6b\x04\xf4\x48\x91\x20\x22\x22\x55\x4e\x36\xa0\x62\x4e\x55\x31\x14\x4a\x28\x3a\x24\x09\x80\x62\xa1\xb0\x14\x4b\xda\xec\xe6\xe2\xcc\x72\x1a\x3d\xbe\x3a\x89\xcf\x6e\x8e\x3a\xeb\xab\x93\x78\x3e\xed\xc8\xe9\x34\x96\x52\x11\x34\xeb\xa1\xbf\x9b\xe2\x2b\x90\x3a\x9d\x8e\x3a\x7b\xf6\x2c\xbd\xf9\xe6\x9b\xf0\xcb\xc6\xbe\x69\x9b\xbc\x32\xb2\xf2\x33\x9f\xf9\x0c\x3d\xf3\xcc\x33\x7a\x12\xae\x01\x70\x65\x3d\x74\x94\x52\x5d\x22\xea\x2c\xcf\xc4\xf2\x83\xdb\xfd\x07\xfe\xe4\xda\xe0\xcb\xc7\x77\x7b\xdf\x5d\x9d\xc6\x5f\x4b\x72\x3a\x45\xa0\x3e\x95\x13\x2d\x88\xed\xc9\x54\x69\x03\xca\x76\x31\x2e\x66\xca\x79\x67\x44\xa0\x4e\x2c\xb1\xde\xcd\xc4\xc9\x41\x1a\x9f\x59\x9b\xc4\x87\xfb\x69\x34\x9b\xc6\x72\x7f\xdc\x95\x5a\xae\xfa\xb6\x80\x22\x22\xb5\xbe\xbe\x4e\xfd\x7e\x1f\x97\x2f\x5f\x6e\xd2\x31\x07\xb9\x76\xd2\x08\xd4\x31\x80\x3b\x63\x5c\x84\xf7\xcb\xfd\x07\x85\x1e\xf1\xcd\x9c\x88\xa4\x9e\xa0\xab\x0a\xaa\x0e\x7c\x6f\x86\x26\x63\x2b\x38\x1f\x00\xd5\x7b\xfe\xeb\xc8\x5a\x16\xb8\xf2\x15\x9c\x67\xd5\x3b\x3f\x9c\x50\x88\x3b\xb9\xe8\xc5\x92\x0c\xb5\x57\x76\x46\xdd\x29\xcb\x3c\x2b\xa0\x5a\x67\x8b\x58\x28\x4d\x74\xa4\xef\x57\xfb\xe1\x61\x17\x89\xfb\x20\x56\xa5\x3f\x8e\x1b\xf2\xb3\x88\xf5\xb1\x08\x63\xe1\xe7\xb3\x2d\x8e\x45\xac\xa0\x83\xa4\x7b\x60\x7f\xba\x8d\x97\xdf\x9e\x5b\xda\x66\xc3\x2e\x22\xca\xf2\x0e\xc6\x93\x15\x71\x65\xf9\x16\x6d\xc5\x33\xb5\x11\xe5\xe8\xf1\x46\xcd\xd9\x03\xad\xc4\x0b\x40\x52\xed\x1f\x66\x17\x15\xc5\x9e\x97\x5a\xce\x80\x03\xad\xd8\x75\x9b\x36\x3f\x8c\x77\x51\xba\x0c\x28\xd3\xf2\x36\x76\xf4\x2d\x00\x73\xa3\xa0\x27\xd6\xf2\x1e\xa3\x41\x85\x99\x9b\xa6\xdc\xbe\xc7\xe7\x8e\x59\xdc\x62\xe7\xbf\x38\xdb\x1b\xe8\x3c\x99\x30\x85\x64\x36\x00\x0d\x70\xea\x85\x7c\xad\x6d\x0b\x06\xbd\xca\x70\xbe\x24\xb6\x26\x87\xc4\x27\xc5\x89\xdd\xe4\xb0\x2d\x54\xb3\x27\xc9\x78\x3c\xe6\x73\x1c\x7c\x67\xfa\xc4\x70\x38\x84\x94\x52\x2b\x3f\x63\xa1\x32\xfa\x3f\x45\x21\x77\xa7\xe0\x4c\x2d\x01\xb3\x58\xe1\x93\xd5\x19\x26\x1d\x39\xdd\x5d\xca\x76\x8e\xef\x76\x4f\x6d\x8c\x3b\xf7\xf4\xd3\x68\x25\x02\xc5\x8e\xcc\x62\xf5\x13\x7c\x6e\xea\x15\x76\x54\xbd\x7c\x27\x49\xc9\x69\x92\x0f\x77\x7b\xf9\xf5\xad\x95\xd9\x87\x1f\xaf\xcf\xde\xdb\x3a\x34\xbb\x3c\x8b\xe5\x2e\x88\x42\x4c\x8b\xfe\x33\x4c\x0b\x79\xab\x89\x46\xa3\x91\x7f\xf6\x8d\x53\x57\xfd\x7e\x5f\x7c\xe3\x1b\xdf\xc0\xca\xca\x8a\xae\x07\x87\x79\x2a\xff\x92\x38\xa7\xe4\xc8\xa8\xb3\x71\x66\x7b\xe9\xe1\xe3\xbb\xbd\xaf\xac\x4c\xa3\xe7\x92\x5c\xdc\x23\x14\xfa\x00\x12\xce\x16\x2a\x56\x07\xba\x9d\x3a\x3b\xae\xb3\x7a\x40\xc1\x5e\x25\x42\xa9\x44\xe4\xd4\x8f\x65\xb4\xd9\xcb\xc4\x99\xe5\x59\xf4\xe8\xda\xa4\xf3\xff\x5e\x5e\x9b\xfe\xfe\x83\x8d\xe9\x27\xe3\x6e\x3e\x66\x6d\x02\xe5\xf0\x11\xf4\x37\x5c\x59\x59\xc1\x77\xbe\xf3\x1d\xf9\x93\x9f\xfc\x44\xaf\xac\xe1\x6e\x11\xe6\x41\x02\xc0\xa3\x8f\x3e\x8a\xc7\x1e\x7b\x0c\x4b\x4b\x4b\x9c\x61\xd1\xa0\x25\x41\x61\xf0\x24\xab\x93\x78\x70\x66\x7b\xe9\xe1\x07\x76\x7a\x5f\x3b\x3c\xee\x3c\x9f\x64\xe2\x64\x51\x17\x0c\xd0\x92\xfd\xc6\x0e\x38\x81\xfb\xdd\xad\x71\x52\x05\xb7\x00\xc5\x91\xc2\x46\x6f\x4e\xfd\x58\x76\x36\xbb\x99\x38\xde\x9f\x47\x3f\x7d\xef\xf0\xf8\x37\x1f\x6c\x4e\xb7\x50\xb4\x5b\xbf\x9c\x32\x49\x12\x79\xe6\xcc\x19\x10\x91\x7c\xe5\x95\x57\x6a\xcb\xdb\x72\xad\xdd\x22\x8c\xb9\x00\x20\x0f\xc2\xb8\x68\x33\x49\x7a\xef\x35\x5a\xa2\xcd\xcd\x4d\x9c\x3c\x79\x52\xfb\x13\x00\xa8\x14\xe4\x9d\xf2\x2f\x01\xd0\x1b\xa4\xd1\xea\x91\x61\x72\x72\x7d\x12\xdf\xd7\x91\x62\xc9\x08\x20\x68\xb9\xeb\xb5\x3c\xfd\x2e\x80\x6a\x7c\xaf\x55\xb4\x59\x77\x88\x1c\x80\x4a\xe3\xd6\xaf\xd8\x72\x54\x66\xca\xd8\xe1\x2f\x42\x2e\x90\x0e\xbb\xf9\xd5\xed\xc1\xfc\xd2\xed\x5e\x76\xab\x1c\xff\xd5\xd6\x48\x46\x44\x39\x60\x26\x26\xab\x2b\x57\xae\xa8\x6b\xd7\xae\x85\xea\x95\x3b\x8e\x3c\xf9\x6f\x1b\xba\xf7\xfd\x35\xa5\x51\xf7\x3e\x84\x7a\xfd\x30\x3e\xb3\xd1\x96\xce\x41\xd3\x08\x95\xe9\x7f\xd3\xb5\xe5\x87\x3b\xee\xcf\x09\xb7\xb7\xb7\x47\xab\xab\xab\x18\x0c\x06\xdc\xca\xe6\x16\x54\x84\x42\x30\x77\x00\xea\x80\x20\x92\xa9\x3a\x9c\x4c\xd5\x11\x91\x63\x59\x0b\xa0\xd2\x8e\x01\x27\x24\x0c\xa0\x0f\x59\xd2\x5a\xe4\x90\x79\x60\x4c\x78\x00\xea\x6a\xf7\x0f\x00\x00\x20\x00\x49\x44\x41\x54\x96\x75\x81\x13\xa1\x69\xcb\x3a\x26\xe7\xc4\x60\x06\x32\x94\x06\x26\x25\xe3\xe1\x9b\x5d\x8e\xd6\xf4\xbb\xac\x03\x26\xdc\x4a\x74\xca\x67\x7e\x6d\x59\xf4\xfc\x1d\xb3\x9d\x81\xb2\x61\x2c\xdb\x62\x27\xf5\x07\xc4\x82\x2d\x00\x32\x40\xcd\xbf\x2b\xcb\x1c\x01\x90\x31\x86\xc3\xc3\xf1\xef\xf7\xee\x8a\x2f\xcc\x7b\x74\xa3\x64\x5b\x46\xb0\x2b\x67\xe6\x25\xab\x90\xa1\x60\x13\x24\x00\x5c\xbc\x78\x51\x8d\x46\xa3\xb6\xfe\x01\x00\xb4\xbb\xbb\x8b\xbb\xee\xba\x4b\xf5\x7a\x3d\x6e\x13\x71\x28\xc6\xfb\x10\x99\x6b\x02\x72\x42\x36\xeb\xc8\xe9\x5e\x2f\x1b\xee\x2e\xe5\xb7\x67\x1d\x39\x04\x21\x17\xc5\x81\xae\x24\xca\xdd\xba\x2b\x12\x4d\xb1\x98\xc8\xb2\x2a\xba\x7e\x25\x14\x32\xa1\xd2\x49\x27\xdf\xdf\x59\xce\x3e\xbd\xbc\x36\x7b\xe7\xbd\x23\xe3\xb7\x3e\x3c\x3c\x7d\xef\x66\x7f\x7e\x75\x16\xcb\x5d\x00\x23\xb2\xc0\x45\x83\x97\x29\x0a\xc6\x65\xee\xd5\x8d\x01\x78\xff\xf5\x5f\xff\xa5\xb6\xb7\xb7\x7d\x36\xca\xf4\x91\xd5\xd5\x55\xf1\xa5\x2f\x7d\x49\xef\xfa\xaa\xfb\x86\x06\x2d\x09\x0a\xdd\xd0\xed\xcf\xc4\xf2\xfd\xb7\x7a\xf7\x3f\x7c\x6d\xf9\x8b\xf7\xdd\xea\xbd\xb8\x3a\xed\x3c\x9f\xe4\x74\x82\x80\x3e\x40\x51\x68\xcf\x21\xdb\x26\xcb\x2a\x24\x0a\x36\x08\xa5\xff\x17\x4c\x8c\x00\x28\x89\x14\x56\x92\x5c\x1c\x5b\x4e\xa3\x93\x87\x66\xf1\x4a\x92\x8b\xd9\x24\xc9\x47\xb3\x82\x7d\xe1\xdf\x4d\x9a\xb8\x01\x35\x18\x0c\x68\x63\x63\x43\x6d\x6d\x6d\x51\x9a\xa6\xf6\xfb\xb9\x8e\x3f\x77\xde\x3f\xf6\xd8\x63\xe2\x4f\xfe\xe4\x4f\xb0\xb2\xb2\xe2\x80\x16\xa5\x54\x0c\x20\x21\xa2\x84\x24\xba\x9b\xa3\xce\xfa\x43\xdb\xfd\x27\x4f\xdf\x5c\x7a\xf1\xf0\x28\x79\x21\xc9\xc4\x29\x01\x5a\xa2\xf2\x10\x2a\x3d\x79\xdb\xeb\x76\xd5\x82\xb3\xbe\xe6\xf4\x17\xdd\x3e\x4a\xd4\x57\xb2\x55\xb1\x50\x38\x94\x48\x71\x64\x39\x15\x77\x2f\xa7\x71\x07\x50\xb7\x76\xfa\xd9\xa8\xda\xe8\xa0\x00\xc8\x38\x8e\xd5\xca\xca\x8a\x5a\x5e\x5e\xa6\x92\x79\xa9\x03\x1f\x21\xb6\x3f\xdc\x17\xea\xe5\xb2\x02\x5c\xc6\x25\xc4\xa0\x1c\xc4\x22\x77\x2c\x71\x9f\x1a\xe6\x4b\xa4\x73\x52\x59\xb1\x09\x1d\x9b\xfc\xc6\x63\x64\x13\xec\xdc\xc6\xc9\xac\x4c\xd7\xab\x1f\xb4\xb8\x2e\xa5\xa4\x1f\x87\x4e\xd0\x7f\xe6\x6c\xb4\x05\x26\x4c\x59\xc4\xfa\x59\xc1\xb8\x50\xbf\x93\x53\x8f\xec\x6c\x78\xf0\x3a\x08\xd5\x05\x9a\xeb\xb9\x89\x61\x69\x62\x6d\xb8\x1f\xa0\xf9\x3b\xfa\xcf\xea\x50\x6e\x1b\xe3\x16\x4a\xaf\x89\xe9\xa9\x2b\x77\x5b\x98\x50\xba\xa1\x38\xda\xe2\x0a\xb9\x50\x1d\xd4\x31\x57\x21\xa6\x51\x00\x90\x5b\x5b\x5b\x18\x8d\x46\x7e\xbc\x7c\x55\x89\x99\xe7\xa0\xa0\xd2\xb4\x27\xf6\xc6\xab\xd1\x87\x4b\x7b\xf2\x64\x9c\xe6\x6b\x24\x91\xe8\x65\xc9\x66\x88\x03\x30\x43\x3d\x80\xa7\x88\x7c\x25\xe5\x80\x06\xbf\x55\x07\xa4\xb8\x41\x40\x3c\x9d\xd2\x2f\x1b\x4f\xb0\x4a\x80\xdc\x98\x14\x63\x48\x4c\x94\x9c\xd1\x61\x79\x70\x37\x1e\x61\x86\x09\xcb\x9f\x29\x8f\x8b\xce\x0a\x7c\xa2\xd8\x6b\xbd\x82\xc6\x82\x17\xcb\xc8\xe8\x25\xe1\x16\x68\xe9\xf8\xb8\xbc\x48\x7b\x62\x6b\xb4\x2e\x3e\x9c\x77\xc5\x2e\x84\x1d\xde\x45\x75\x62\x6e\x9d\xab\x63\x9c\xb5\x93\x57\xae\x5c\xc1\x7f\xff\xf7\x7f\x8b\xa7\x9e\x7a\x4a\x1e\x3e\x7c\x58\xc0\xb6\x85\xcc\x8b\x47\xc0\xef\xff\x84\x2c\x8b\x54\xb6\xd7\xcb\xd3\x49\x47\x8e\xf6\x96\xb2\x9d\xeb\x83\xf9\xd6\xd1\x51\xe7\xd8\xfa\xb8\x73\x74\x65\x1a\x6d\x2c\xcd\xa3\x7e\x92\x51\x2f\x96\x94\x90\x22\x21\x14\x04\x11\x84\xa6\x1b\x54\xf1\x69\xa5\x14\x4a\xe6\x02\x69\x1a\xc9\xe9\xa4\x23\x87\xc3\x6e\xbe\x7b\x6b\x69\xbe\x73\x63\x79\xbe\x75\x73\x79\x7e\x7d\xaf\x97\x6f\xcf\xe2\x7c\x08\xa2\x31\x14\xc6\x25\x68\x19\x83\x81\x16\xa5\x94\x99\x94\x5b\x0e\x83\x9b\x89\xab\x52\x4a\xf9\xca\x2b\xaf\xe0\xd2\xa5\x4b\xe0\xcb\x89\xb8\xdb\xd8\xd8\x10\x4f\x3d\xf5\x14\xee\xbb\xef\x3e\x3d\x0c\xa3\x59\x05\x51\x2e\x0d\x8f\x01\x24\x83\x59\xb4\x72\xff\x4e\xef\xd4\x99\x1b\x4b\x5f\x3a\x32\x4c\xbe\xbc\x34\x17\x67\x85\xa2\x35\xde\xe6\x39\x9b\x50\x6d\xe5\x2e\x88\x76\xfc\xb2\x05\x1d\x8e\x86\x54\x24\x22\x60\x6d\x69\x2e\x1e\x89\x65\x67\xad\x93\xd3\x46\x47\xd2\x4b\xef\x6f\x4e\xce\xdf\x58\x9e\xdf\xc8\x22\x35\x65\x49\x18\xc6\x41\x29\x25\x4f\x9c\x38\x21\x9e\x7d\xf6\x59\xf9\xdb\xdf\xfe\x16\xbb\xbb\xbb\xa1\xa2\xd7\xc9\x60\x71\xe4\xc8\x11\xac\xae\xae\x56\x86\x87\xca\xe9\x14\x31\x80\x64\x6d\x12\xaf\x3c\x74\xbd\xff\xa7\xf7\xef\xf4\xbe\xb5\x36\x8d\xff\xb4\x93\xd3\x3d\x84\x72\xff\x16\xf2\xca\x6b\x32\xe6\xd5\x0d\xc1\x99\x32\xe6\xc8\x09\x05\x47\x8c\xc0\xed\x5b\x22\x92\x6a\xa3\x9f\x46\x8f\xdf\xbd\x47\x83\x48\x22\x4e\x23\xf5\xe3\xcb\x6b\xd3\xad\xdc\xa5\x3a\x8c\x8c\xec\x76\xbb\x78\xf0\xc1\x07\xa5\x94\x12\xaf\xbe\xfa\xea\x22\xfa\xa5\x4d\x47\x35\x3a\x0e\x5c\x16\x51\x76\x0b\x25\xc8\x68\x52\xe3\x38\xb5\x28\x09\xce\x50\x51\xd0\x59\x99\x54\x69\xa0\x55\xcb\xcf\x09\x56\x0a\x47\xd7\x13\xf9\x9e\x10\xf8\x88\xfe\xf8\xb1\x29\x8f\xcd\x87\x7e\x27\x14\xc5\x89\x14\xfd\x24\x17\x3d\x28\x33\x4c\x56\x01\x2f\xfe\x12\xbb\x40\x96\x17\xfd\xa8\x75\xc3\x31\x75\xc3\x29\x4d\xf1\x87\xde\x2f\x4a\x7b\x1e\x64\xc8\x46\xbb\x3a\x10\xc4\x7f\xef\x04\x38\xfb\xa0\xf9\x40\x8d\xbf\x26\xee\xb6\xeb\xba\x67\xba\x0d\x98\xbc\x30\x45\x98\xa1\x5c\x61\x04\x20\x55\x11\x8d\x27\x87\xc4\xa7\x93\x43\xe2\xe3\x64\x2c\x8f\x75\x66\xea\xa8\xb3\x97\x09\x97\x3c\xcc\x5a\xd2\x2f\xca\xd1\x77\x03\xb3\xab\xa0\xc5\xfa\xe3\xed\xaf\x02\xd4\x0d\x90\xb0\xe9\xb8\x2b\x91\x94\x05\x09\x5e\xb6\x2c\xa0\xd2\x21\x74\x46\xdd\xf8\x2a\x4c\x8d\x0a\x3c\xd3\xb1\x38\x56\x87\x2d\x38\x79\x8f\x2a\x7e\x0c\x90\xf1\xfc\x78\x63\x58\x32\xc2\x74\x72\x48\x5c\x1a\xaf\x46\x9f\xca\x18\x63\xd8\x55\x3e\xfc\x1b\x55\xb6\xb0\x7f\xe3\x8d\x37\x24\x03\xa6\x4d\x7d\xcd\xb8\x0f\x3f\xfc\x50\x3e\xf4\xd0\x43\xe2\xf0\xe1\xc3\x65\x56\x28\x43\x21\x6f\x0d\x88\x45\x55\xa6\xda\x74\x09\x59\x1a\xc9\xec\xd6\x92\x1a\x0f\x93\xfc\xf6\xcd\xe5\xf9\xd6\x72\x1a\xad\xad\x4c\xe3\x8d\xd5\x49\xb4\x76\x68\x16\xaf\x2d\x65\xa2\x1f\xe7\x94\x74\x72\x8a\x23\x45\x89\x90\x24\x14\x15\x0b\x1f\x32\xa1\xd2\x4c\xa8\x6c\xd2\x91\xe3\x61\x37\xdf\xdb\x5d\xca\x76\xf6\xbb\xd9\xee\x28\x91\xbb\xc3\x6e\x7e\x3b\x8d\xe5\x50\x11\xa6\x28\x57\x0d\x51\xc1\x3c\xf1\x3f\xbd\x92\xc8\x59\x61\xc2\xe5\xb8\x52\xc5\x49\xd0\x75\x75\xb0\xb9\xb9\x29\x1e\x7f\xfc\x71\x3c\x60\x77\x14\xe6\x93\x4f\x0d\x68\xe9\xa7\x62\x70\xdf\xad\xee\xa9\x33\x37\x96\xbe\x76\x6c\x3f\xf9\x6a\x77\x2e\xce\x0a\xb0\x95\x55\xec\x73\x9a\x6b\xd4\x9b\xe4\x15\x9d\x11\x00\xc3\xee\xb4\x01\x4a\x3a\x39\x9d\x58\x9b\xc4\xbd\xd3\x37\x97\xfa\x91\xa4\x7e\xb4\x39\xfe\xcd\xf5\xc1\xfc\xfa\x3c\x56\xdc\x7f\xca\xe2\x93\xa7\x4f\x9f\x16\x17\x2f\x5e\x94\x0c\xb8\xd4\x29\x6c\x53\x47\x0f\x3e\xf8\x20\xd6\xd7\xd7\x75\x1d\xe8\x3a\xd1\x43\x65\x31\x14\x7a\x49\x4e\xfd\xd3\x37\x97\x1e\x3d\xb9\xd3\xfb\xd6\xda\x24\x7e\x2e\x96\xb4\x09\x14\xc7\xcb\x70\x25\xe4\xee\xd9\x83\x8a\xdd\xe0\x1b\xfe\x8e\xd1\xe3\x76\xd1\x4a\x1d\x13\x08\x42\x61\xd0\x9b\x8b\x87\xef\xda\x4f\xf0\xc8\xb5\xe5\x51\x2e\xd4\xff\xf7\xe9\x4a\xfa\x49\x66\xb7\xff\xd0\xe5\xca\x88\x08\xdd\x6e\x17\x8f\x3c\xf2\x88\x4c\xd3\x14\xaf\xbd\xf6\x9a\xd0\xfb\xc0\xb0\x4f\xb1\x08\xf9\xe1\xd7\x65\xd0\x78\xad\x63\x5c\xee\x44\xc1\x56\x1c\x5f\x55\xc4\xc0\x8c\xd4\xab\x8a\x24\xa9\x2c\x04\x34\xf4\xb7\x50\x4a\x95\xe3\x96\x45\x8d\x73\xcb\xa9\xce\x39\x86\x1c\xa3\xc0\xf8\x0e\xb9\xce\xa9\xb4\xe5\x17\xe5\x42\xd4\x87\x45\xe4\xe5\x0b\x0a\x20\x85\xa4\x93\x53\xaf\x93\x53\x4f\x28\x88\x9c\xdc\x33\x9a\x80\xca\x3d\x10\x60\x63\x50\x6d\xe8\x21\x3f\x75\xcc\x03\x07\x4a\x4d\xac\x80\x9f\x4e\x28\x4e\x3f\x4f\x22\x70\x5f\xc7\x6a\xb4\xb1\x3a\x41\xa6\x22\xe0\x37\x94\xd7\x45\xc1\x50\xad\x85\xb3\x60\xdc\x6d\x96\x74\x13\xbb\x23\xae\x5e\xbd\x8a\xf5\xf5\x75\xb9\xb1\xb1\x61\x80\x66\x39\x64\x18\xb3\x0d\xc8\xec\xb6\xef\x4b\x62\x67\xb2\x1a\x7d\xbc\xb4\x2f\x4f\xc6\xf3\x7c\x4d\x48\x24\x76\xdf\x13\x58\x8a\xc5\xd2\x14\xec\x5d\xd9\xaf\x4a\xe9\x64\x01\x85\x7e\x6f\x51\xb6\x99\x37\x52\xd1\xea\x6e\x5f\x31\x97\x6c\x1f\x95\x02\xfc\x58\x33\xce\x55\x1c\x06\x36\x39\xcc\x87\x89\xcf\xb0\x41\x7a\x47\x5b\x65\xb6\x68\x31\x40\x83\x95\x8f\x74\xb9\x8c\xf1\x60\x64\x47\x85\xa1\xa1\x92\x55\x30\x42\xdb\x48\xe0\x22\x72\xa5\xcb\xc1\x00\x17\x00\xa4\x5d\xba\x3e\xda\x88\x2e\xa5\x3d\xb1\xa3\x04\xe9\x79\x1b\xce\x4a\x99\xd0\x1c\x97\x37\xdf\x7c\x13\xa3\xd1\x68\x91\x36\xe9\xbc\xbf\x7c\xf9\x32\x56\x56\x56\xe4\xfa\xfa\x3a\x7f\xee\x1b\x6b\x7e\x1b\xd6\x00\x4a\x33\x41\xd3\x79\xac\xa6\xbb\x71\x36\xbc\xb5\x34\xbf\x99\x0c\xc4\x56\x7f\x2e\xfa\x4b\xf3\x68\xd0\xcd\x44\x2f\xce\x29\xe9\x48\x03\x5e\x62\x09\xc8\x79\xa4\xd2\x79\x24\xb3\x5c\xa8\x74\x16\xcb\xf1\xb8\x23\xc7\x93\x4e\x3e\x4c\x23\x35\x51\x84\x14\xe4\xcc\x5b\xd1\x7f\x63\xf6\x9b\x96\xc3\x66\x86\x8d\x62\x75\x22\x01\xc8\xf9\x7c\x2e\xdf\x79\xe7\x9d\x4a\x99\x79\x59\x36\x37\x37\xc5\x99\x33\x67\xb8\xbc\xd1\x9b\xa8\x25\xfa\xb7\x3b\x17\x83\x7b\x77\xbb\xa7\x4e\xdf\x58\x7a\xe1\xae\x02\xb4\x3c\x4c\x8a\x12\xce\x9e\xe8\x1f\x07\x74\x33\x52\xcd\xb0\x28\x15\x43\x14\x6e\x60\x83\x85\x03\x66\xaf\x82\xe8\x48\x71\x6c\x65\x42\x5f\x7c\x40\x16\x4b\x9e\x72\x31\x3e\x77\x7d\x90\x5e\x97\xc2\xf1\xef\xcc\xf5\x38\x71\xe2\x04\x86\xc3\xa1\xb8\x7d\xfb\x76\x93\x92\x16\x00\xe4\xa9\x53\xa7\xc4\x93\x4f\x3e\xc9\x97\x81\xf3\x39\x3e\x09\x14\x12\x02\x7a\xf7\xdf\xea\x9d\x3c\x7d\x63\xe9\xff\x5a\x9d\xc4\x7f\x16\x4b\x3a\x0a\x55\xce\x67\xa9\x74\x58\xd7\x00\xd0\xdd\x84\x2f\xc6\xad\x68\x33\xae\xcb\x54\xe0\x39\xeb\xe7\xe5\x4f\xd2\xcd\xc4\xc3\xf7\xde\xee\x7e\x3b\x8d\x54\x3a\x17\xea\xd5\x1b\x83\xf9\x56\x16\x29\xd7\x28\x2a\x64\x1c\xf4\x86\x82\xbf\xff\xfd\xef\xf5\x3e\x6e\x75\xb2\xb8\x4d\xf6\xd6\x19\x8a\x02\x70\xf7\x71\x09\x09\x65\x3f\x60\xc8\x55\x1a\xad\x1d\xaf\x76\x36\x72\x32\x19\xc9\x85\xca\xd2\x48\x4d\x73\x52\x69\x50\x78\xfa\xf1\x78\xff\x5d\xf9\xce\xa6\x19\x06\x59\x16\x93\x17\xfb\xdc\x5f\x76\xa4\xb8\x91\x68\x27\x1b\x3a\x7a\x83\x47\x4d\x0a\x42\x41\xc4\x92\xfa\xdd\x5c\x2c\xc5\x92\xe2\x3c\x52\xfe\x52\x36\xcd\xc0\x2c\x82\x38\xf5\xbb\x45\x87\x4d\xea\xe2\x6b\x63\x31\xea\xe2\x3e\x08\xbb\xd2\x04\x50\x9a\xe2\x6c\xcb\x77\xc8\xfa\x6c\x72\x6d\x40\xc9\xf7\xd7\x56\x0f\x8b\x96\x2f\x98\xc6\xc5\x8b\x17\xb1\xb1\xb1\x21\x36\x36\x36\x38\xe3\x28\x51\x4e\xca\x05\x3f\xaf\x06\x48\xf3\x18\xe3\xc9\x8a\xb8\x3a\x59\x11\x1f\x26\x13\x79\xb4\x33\x55\x47\x01\x18\xa0\x8d\x12\xb0\x73\xbb\x10\xe0\xb4\xb7\xaf\xdc\x59\x6e\x4c\xdb\xb6\x12\xa8\xd8\x59\xd6\x3e\xb2\x42\xce\xa6\xa7\x1b\xbc\x2b\x0c\xc9\xe9\x03\x8e\xf9\x66\xd2\x74\x15\x81\x89\x9b\x31\x21\x8a\xf4\x46\x77\x3c\x32\x3b\x67\x0c\xc4\x36\x85\x2c\xe6\x21\xb0\xee\x49\xde\x04\x61\x72\x46\xa3\xb8\x72\x73\x8d\x10\xeb\x47\x46\x18\x4f\x56\xa2\xf7\x46\xeb\xd1\x47\x32\x02\x3f\x30\x30\x85\xdd\x6f\xc7\x61\x13\x88\x08\x1f\x7d\xf4\x91\xcc\x32\x07\x6b\xb4\x01\x18\x23\x47\x2f\x5c\xb8\x20\x01\x88\x47\x1f\x7d\x54\xae\xad\xad\x71\x3f\x59\xc0\xa8\x31\xed\x05\x96\x09\x4a\x01\xf4\xca\xdf\x29\x11\x25\xf3\x58\x4d\x6f\xc7\xf9\xad\xdb\x4b\x79\xb1\x64\x58\x21\x16\x8a\x84\x90\xe8\x08\xa5\x19\x17\x48\x49\x6a\x5e\x9e\x49\xe3\x4c\x10\x67\x65\x0e\x81\x17\xfd\x3c\x2d\x99\x16\x5d\x37\x66\x8f\x13\xa5\x94\x4c\xd3\x54\x5e\xba\x74\x09\xaf\xbc\xf2\x4a\xad\xa5\xbc\xba\xba\x6a\xd8\x26\xb0\x61\x31\xcd\x2e\x10\x51\x12\xe5\xe8\x1f\xdb\x4f\xee\x39\x73\xa3\xff\x85\xbb\xf7\xba\x5f\xed\xcd\xc5\x59\x02\x25\xfc\x60\x50\xef\x07\x00\x9c\x61\xca\x10\x06\xf1\x19\x17\xaf\x79\x1a\x9d\xc1\x99\x4a\xdd\xde\x62\x45\x1b\x87\x66\xf1\x9f\x9e\xb8\xd5\x9d\xce\x62\x39\x9e\xc6\xf2\x77\xb7\x97\xb2\x5d\x65\xe3\xd0\x75\x2a\x81\x62\xbe\x0a\x00\xf9\xd6\x5b\x6f\x89\xf2\x1c\xab\x50\xfb\x90\x00\xf0\xb9\xcf\x7d\x0e\x6b\x6b\x6b\x7c\xc8\x4c\x83\x96\x18\x40\x2c\x14\x7a\xeb\x93\xce\xe6\x9f\x7c\xba\xfc\xc2\xc6\xb8\xf3\x7c\x47\xd2\x51\x02\x09\x5f\x57\x15\x5d\xca\xca\x81\xf2\xb1\x61\x62\xed\xc4\x7a\x77\x53\x56\xa7\x22\x0c\x6b\xe3\x02\x1c\x72\x2b\x5a\xd7\x53\xb2\x34\x17\x8f\xdf\xb7\xdb\x1d\x4f\x3a\xf9\x70\x56\x4c\x1e\x97\x70\xf7\xf2\x31\xf2\x9b\x88\xe4\xfd\xf7\xdf\x8f\x8f\x3f\xfe\x58\xd4\x4c\xd8\xae\xc3\x18\x8b\x18\x92\x12\x08\xaf\x2a\xaa\x1d\xcb\x47\x55\xb9\x08\x2f\x5c\x9d\xd3\xc2\x40\x02\xc5\x59\x18\x69\x24\xc7\x99\x50\xd3\x10\xb5\xe5\x3a\x8f\x54\x56\xac\xa2\x19\xed\x0c\x47\x58\x32\xe4\xe8\x0b\xb8\x10\x14\x2d\x03\x9a\x5d\x28\xf5\x2b\x23\xe4\x99\xb2\xb0\xe9\x8a\x48\x52\xd2\xcd\x68\x90\xe4\x22\x49\x63\x83\x2e\x9d\x7a\x08\x08\x28\xdf\xb5\x31\x5d\xa8\x79\xb7\xb0\xe5\x17\x78\xb6\xc8\xb0\x4a\x1b\x4a\xae\xcb\xd7\x22\xf9\x08\xbd\x6b\x8b\xa7\xcd\x2d\x5a\x17\x07\x61\x71\x78\xbc\xad\xf9\xdb\xdf\xdf\xc7\x70\x38\x94\x83\xc1\x80\x6f\x24\xa5\x99\x17\xbd\x7b\x6a\x5a\xee\x40\x3a\x9d\x2d\x89\x9d\xe1\x7a\x74\xa9\x3b\x92\xf7\xc4\xf3\x7c\x45\x94\x1b\x8f\xe9\x69\xa9\xfc\x8c\x20\x33\x20\x63\x07\xee\x19\x6b\x51\xf8\x31\xc3\x37\x54\x6d\x73\xce\x9c\x14\x6f\x4f\x17\x7f\xab\x7c\x2a\xfd\x68\x36\x43\x8b\x41\x47\x23\x54\x4c\x60\x7b\x6f\x04\xa8\x61\x3c\xf4\x44\xc2\x8a\x06\x29\xfd\x7b\x66\x33\x57\x56\x7e\x7f\xd6\x41\xd9\xe4\x44\xe3\x91\xd5\x99\x3e\x36\x04\x44\x50\x02\x59\xba\x44\xd7\xf7\x8e\xc4\x17\xa6\xcb\x62\x07\x05\xdb\x92\x7a\xf3\x5b\x1c\x66\x41\x83\x98\x97\x5e\x7a\xa9\x6e\x35\x51\x93\xa1\x61\xda\xda\x85\x0b\x17\xa4\x52\x4a\x3c\xf1\xc4\x13\xf2\xd0\xa1\x43\xc6\x83\x9e\xef\xc2\x41\x2e\x03\x08\x86\x75\x41\x09\x22\x94\x52\x09\x80\x5e\x09\x28\x04\x8a\x0d\xda\x62\x10\x89\x9c\x94\xc8\x05\x44\x01\xfa\x1c\xd0\x0c\xb0\x61\x1e\xb8\x60\x4d\x1f\x41\xa0\xe3\xd7\x60\x85\xfb\xab\xb0\x50\x69\x9a\xca\x0f\x3f\xfc\x10\xbf\xfc\xe5\x2f\x9b\x8c\x1d\x71\xea\xd4\x29\x3c\xf2\xc8\x23\xbe\x7e\x88\x4b\xa6\x25\x06\xd0\x5b\x9d\xc6\x6b\x0f\xdc\xec\x7d\xee\xee\xfd\xe4\xcb\x4b\x99\x78\x98\x80\x9e\x6e\x81\xbe\x42\xf5\xc5\x35\xc0\x7b\x85\xaf\x94\x5d\xc6\xc5\x32\x70\x70\xfd\xd9\xaf\x61\xfe\x2b\x28\x44\x8a\x36\x56\xa7\xf1\x33\xf7\xdf\xea\x0d\xa7\x1d\x39\x7c\x27\x1e\xbf\x39\xe9\x48\xff\xb8\x00\x0d\x40\xe4\x63\x8f\x3d\x26\x46\xa3\x91\x3c\x7f\xfe\x7c\x9d\x8c\x11\x9b\x9b\x9b\x88\xe3\x58\x7f\x1f\x7f\xa3\xbd\x98\x40\xbd\xff\x9f\xbd\x77\xed\xb1\xe3\xb8\xce\x46\x9f\x55\x7d\xd9\x7b\xf6\xec\x19\x0e\x87\xe4\x90\xa2\x48\x89\x96\x2d\xc7\x91\x1d\x45\x4e\x1c\xdb\x70\x12\xbf\x3e\x81\x91\x1c\x07\x48\xe0\x2f\x71\x00\xe7\x53\x92\xff\x15\x24\x41\x10\xc0\x41\x10\xdb\xc8\xdd\x3e\xb1\x1d\xc3\x71\x6c\xcb\xb1\x6e\x14\x25\x51\x12\x45\x8e\x78\x19\xce\x8d\x33\x7b\xf6\xb5\x77\x77\xd5\xf9\xd0\x5d\xd5\xab\xaa\xab\x2f\x43\x39\xef\x7b\x0e\x90\x02\x66\x76\x5f\xea\xde\xab\x56\x3d\xf5\xd4\xaa\xaa\x5e\x2a\x86\xcf\xed\xac\x3e\xb7\x75\x12\xff\xdf\x51\x46\x57\x80\x72\x73\x53\xeb\x64\x77\xb0\xc1\x86\x7b\xd6\x5f\xd1\x58\x2a\x7d\x8e\x6e\x17\xd0\x00\xa5\xbe\x4f\xe2\x76\xa4\xda\x9b\x50\xe8\xaf\x26\xc1\x0b\x4f\x3d\xea\xdf\x3f\x58\x5d\xee\xcf\x22\x39\x9f\x47\xd2\xb7\xe7\x8d\x50\x4a\xe1\x8b\x5f\xfc\x22\xfe\xfa\xaf\xff\x5a\x3a\xb6\x7f\xae\xeb\xa2\x93\xbd\xcf\xeb\x4e\x87\xf6\x45\x5a\x37\xb5\x50\x41\x51\x7c\x03\x3a\xcd\xb4\x70\xa3\xae\x54\xa8\x74\x11\xca\x79\x6e\xfc\x64\x0d\xa5\xca\x4a\x53\x25\x0a\x26\xf6\xbc\x44\xe3\x8c\x2e\x07\x90\x1b\xa5\x11\x53\x76\x7c\xc9\x64\x35\x8c\x46\xd0\x46\x29\x13\x15\x34\x79\x75\xda\xc8\x9e\x0f\x2d\x47\xc2\x81\xa4\x38\x4e\xc5\x20\x4a\x29\x56\xb1\xe2\x2c\x8b\x36\xb8\x32\x61\x7b\xbd\x1e\x7a\xbd\x9e\x7b\x38\x55\xd3\x94\x0e\x77\xbe\x6f\xd0\x04\x64\xea\xa6\x9d\xdc\xb4\xe1\x09\xe3\xc6\xc7\xfd\xd6\x4d\x13\xb9\xf1\xbb\x69\xf9\xf2\xe7\xf3\xd3\x94\x8f\xa6\xfa\xe1\xce\x17\xb7\x8b\xd8\xdb\xa6\xb6\x4e\xfb\x5c\x00\x90\xaf\xbd\xf6\x9a\x0c\xc3\x50\x7c\xea\x53\x9f\xd2\xd3\xa3\xfa\xd0\x32\x0d\x5a\x62\x14\x23\x67\xa5\x54\x2c\x23\x1a\xcf\xd6\x83\x7b\x93\xb3\xf2\x9d\xde\x54\x6e\xc5\x53\x75\x25\xef\x87\x4b\xc0\xa2\x7b\x66\x8b\x07\xb1\x78\x70\xc6\x6c\x14\x2f\xad\x25\xd2\x54\xca\xb0\xe9\xfc\x5d\x24\xe0\x03\x20\x5c\x41\x22\xbf\xb7\x40\xb8\x95\x3f\x4b\x87\xc2\x42\x1b\xba\xfd\x70\xca\x9f\x2d\x67\xce\x3b\x99\x22\x2d\x33\x62\xd4\xc0\x03\xa5\x2e\x00\x5b\xa6\x6d\xa6\x9f\x4c\xe1\x4d\x1d\x18\x3d\x51\x62\x21\x99\x45\x18\x4d\x36\x82\x37\x4f\x2e\x84\xef\xa1\x98\x26\x61\x46\xa7\x2e\xdb\xc2\xcf\x27\xea\x02\xf4\x5b\x41\xfd\x1b\x6f\xbc\x21\xb3\x2c\x13\x9f\xf9\xcc\x67\x64\xbf\xdf\x37\x36\x12\x80\xb5\xac\xd8\x80\x16\x06\x74\xe3\x02\xe8\xc6\x85\xec\x4c\x51\x2c\x95\x45\xb1\x3f\x10\x1b\xb9\x17\x9f\x89\x78\xda\x9c\x1d\xc8\xed\xab\xd8\xb4\x65\x01\x56\x34\x38\xe2\x40\x2e\xe1\x61\xb5\x1c\x2f\x97\x4b\xf9\xde\x7b\xef\xe1\xfb\xdf\xff\x7e\x53\x99\x45\xa1\xeb\xcc\x3d\xfb\x33\xa0\x45\x48\xf4\xaf\x1c\xf5\xae\x3d\x71\x12\xff\xfa\x20\x11\x1f\x13\x8a\x06\x9a\x7c\x73\xfa\x0f\x23\x4e\xd0\x9f\xdb\x00\x0d\xb2\x46\xbd\xf6\xd1\x11\x60\xc0\x18\x46\x1e\x73\x3f\x45\x27\xae\x98\xe8\x13\x98\x0c\x01\xa1\x14\x5b\xe7\xa6\xd1\xe7\xae\x1d\xf6\x8f\xc6\xbd\xec\xf0\xf6\xd9\xf9\x76\x16\x18\x9b\x0d\x03\x0a\xf5\xb7\xec\xf5\x7a\x88\xe3\x58\x24\x49\xe2\xd3\xcd\xf2\x4b\x5f\xfa\x92\xe8\xf7\xfb\x82\x8a\x85\x1c\xc5\x6f\x48\x85\x51\x6e\x90\x51\x7f\x73\x1a\x5d\x7a\xea\x51\xef\xff\xea\xa7\xe2\x23\xa4\xfb\x66\x36\x5e\x50\xa6\x9c\xc4\x9a\x18\xb3\x49\x33\xe5\xd5\x95\xc5\x06\x1a\x0c\xb4\xf0\xee\xd0\x9a\x4e\x43\x39\xc0\xb1\xfa\xdf\xa2\x8d\x86\x12\x1b\x67\xe6\xc1\xa7\x9f\xd9\x5f\xb9\x7b\xd2\xcb\x8e\x1e\xac\x2f\x12\x29\x2a\xc0\xc5\xc8\xf7\xea\xea\x2a\x66\xb3\x99\x60\x86\xdb\x6d\x83\xdf\x2e\x03\x6a\x01\x40\xba\x1d\x12\x8f\x84\x47\xe4\x76\x00\x15\xe4\xe9\x8b\x83\x37\x22\xde\x58\x0b\xe0\x32\x5b\x06\x6a\x2e\x09\xa9\xae\x3d\x62\x42\xa9\x9d\x25\xa4\xc8\x3f\x94\xb9\x2f\x84\x4d\x69\x5a\xdc\xa5\x93\x99\xd2\xd3\x68\xb5\x8c\x8f\xeb\x6b\x5b\x91\x97\xab\x80\xdc\xfb\x22\x89\xe2\x3e\x90\x88\xe3\x54\x0c\xe2\x8c\x62\xe4\x34\x28\x5f\x5d\x64\xb9\x17\x5e\x78\x01\x2f\xbc\xf0\x82\x55\x3f\x8e\xf3\x75\xa4\xfa\xb7\xae\x13\x86\xc7\x8f\x1b\x97\xdb\xd8\x7c\x9d\xb8\xcf\x35\x31\x0f\xee\xb7\xf6\x81\x03\x5f\x5a\x6e\x18\x37\xbe\x36\xc6\xa3\x4d\xa8\xeb\xfc\xf9\x00\x9c\x2f\x5c\x5d\x7c\x75\xcf\xbd\x75\xc7\xa7\x4a\x35\xcb\xa8\x94\xd2\x23\x68\x6d\xbf\x90\x28\xa5\xe6\xc9\x0a\x1d\x8e\x37\x83\x5b\xd3\xf5\xe0\x96\x0c\x31\x55\xa8\xca\x9f\x75\x5d\x91\x45\x47\xf9\xb0\x8d\xa8\x74\x3b\x50\x9c\x95\xd1\x57\x06\x58\x94\x61\xb8\x33\x53\x38\x2c\xcd\x72\x3e\xbb\x78\xaf\xf8\x3b\x14\xe9\x30\x30\x43\x85\x3d\x19\xcb\x3e\xe9\xb6\x49\x65\xdb\xb4\x46\x80\x44\xc5\x20\x82\x4c\x1b\xd7\x8a\x99\x54\xd9\x4e\x4d\xd6\x59\xdb\xd6\x79\x34\x59\xcf\xd9\x96\x64\x31\x08\xee\x8f\x2e\x46\xd7\x97\x31\x46\x28\xa6\x40\xf4\x54\x08\xeb\xbc\x2d\xb6\x45\x29\x25\x3d\x67\xd3\xb8\xce\x27\xe7\xdc\x99\x30\x37\x6f\xde\xc4\x0f\x7e\xf0\x03\x48\x29\xb9\x4c\x68\x70\x60\x58\x8e\x02\x50\x4d\x81\x7c\x95\x8f\x52\x6a\x4c\xf9\x6a\x9f\x11\x80\x91\x52\xea\x08\x80\xf9\x23\xa2\x23\xfe\x4c\x5f\x3b\xbf\x87\xc5\xfb\x11\x11\x1d\xe9\xb8\x50\x2c\x7b\x56\x4a\x69\x03\xdd\xb9\x52\x6a\x5e\x18\x91\x5b\xf5\x21\xa5\x94\x6f\xbf\xfd\xb6\x06\x2d\x6e\x99\xad\xba\xf9\xd5\x5f\xfd\x55\x3c\xff\xfc\xf3\xee\x61\x89\xa1\x5e\xee\x0b\x85\xf0\xfc\x24\xde\xbc\x72\xd4\xff\xb5\x33\xb3\xe8\x85\x40\x8a\x8d\xfc\xdb\x39\x0c\x8b\x3b\x05\xaa\x4a\xb9\x56\x05\xc5\xae\x0c\xcb\xc8\x5b\x8b\x2a\x15\x3c\x13\x73\x9d\x80\xb2\x64\x31\xbf\xcf\x65\x31\x97\xdf\x22\x98\x88\x52\xba\x7c\x7e\x12\x7d\xee\xea\xa3\xde\x0b\xfd\x94\x86\x50\x88\x0b\xe6\x2b\x2c\xf4\xbc\x3e\x18\x12\x9f\xfc\xe4\x27\xc5\x27\x3f\xf9\x49\xaf\x0c\x04\x41\xa0\x07\xb5\x86\x71\x41\xd9\x5f\x84\x50\x88\x57\x52\xb1\xfe\xec\xde\xca\x73\x6b\x8b\xf0\x53\x42\xd1\x40\xf7\x78\xa6\x69\xaa\x12\x94\x99\x71\x85\x06\xfb\xda\xe9\x32\xf3\x36\xc9\x07\x0c\x28\xab\x53\x59\xa8\xcd\xd6\x17\xfa\x01\xf7\xa2\xd3\x89\xd3\xe0\xa9\x8b\xe3\xf8\xb3\x57\x1f\xf5\x3f\xb6\x3e\x0f\x37\x90\x03\x69\x03\xa6\x75\x99\x01\x88\x2f\x7f\xf9\xcb\x62\x73\x73\xd3\x57\x27\x95\x3a\x2a\x7e\x3b\x33\x30\x75\xa3\xd8\xd3\xd8\x1b\xb8\x7e\x8c\x5f\xab\xc3\x2f\x2c\x8c\x95\x52\x52\x0a\xc8\x65\xa0\xe6\x4b\x21\xa7\x92\xf2\xc3\x16\x75\xcd\x1a\xd5\x47\x96\x18\x96\xce\x92\x65\xbd\xe7\x45\xa1\x9a\xa9\xf4\x5f\xca\x2a\x83\x9c\xec\xb9\xfb\xab\xd1\xa5\x9b\x76\xe5\x1d\x7b\x2f\x14\xc5\x71\x46\xc3\x28\x13\x31\x43\xd2\x12\x0c\xc4\x68\x20\xe3\xa1\xe6\x38\xd8\x70\x59\x02\x17\xac\xb8\x4a\xb3\x6e\x8a\xae\x09\x04\xd4\x75\xde\xbe\x74\x9a\xc0\x8c\x8f\x39\xa9\x4b\xa3\x69\xfa\xd0\xe7\xa7\x4b\x1e\xf4\xbb\xba\x3a\xe0\xce\x2d\xa3\x1b\xc6\x97\x56\x53\xdc\xa7\x01\x79\xfc\xcf\x4c\x45\xe8\x69\xa2\xa2\x83\x9a\x43\xd0\x74\x3e\x0c\x1e\x8c\xb6\xc2\x1b\xf3\xd5\xe0\x36\x48\x49\xcf\xae\x43\xb9\x02\xd2\x42\xae\x97\x4e\x03\xb0\x34\x57\xd1\x16\x2c\xff\x0a\xc6\xbe\xa5\x02\x83\x4c\x67\x6f\xd1\x21\xce\x40\xc0\x19\xee\x2a\xa5\xb1\x85\x01\x19\xda\x9f\xdb\xd1\x38\x7a\x14\x26\x91\xe2\xf0\x22\xd3\x09\x95\xa3\x0f\x13\x97\x32\x05\x2c\x61\x57\xb9\xa1\x4b\xa9\xb0\x35\x10\x82\x52\xac\x8e\x94\xee\xa0\xd2\xc5\x40\xec\x8e\xb6\x82\x97\x47\x17\xc2\x3b\x54\xae\x9c\x71\x8d\x72\x65\xf1\x6d\x0c\xe8\x4d\xd3\x14\x7f\xf6\x67\x7f\xa6\xc1\x4b\x13\xeb\xc6\x7f\xdd\x6b\x2b\xcc\x7b\xef\xbd\x27\xff\xe9\x9f\xfe\xc9\x8c\x48\xc9\x5e\x2a\x6f\xa6\x12\x91\x03\x18\x03\x5e\x50\x82\x8c\x11\x11\x8d\x60\x03\x92\x43\x22\x3a\x2c\xae\x8f\xf4\x35\xfb\xe5\x40\xc5\xc4\x53\xc4\x6d\x00\x0b\x4a\xdb\x16\xbe\x2c\xdc\xd8\x72\xbc\xf2\xca\x2b\xf8\xc1\x0f\x7e\xe0\xa9\x82\x4a\x39\x35\x28\xe3\x75\x61\xec\x5a\x00\x84\x71\x46\x83\x8f\xec\xf5\x3f\x76\x71\x1c\x7d\x3e\x4e\xe9\x12\x15\xab\x32\xb9\x4c\x5b\x36\x4d\x45\x8f\x6b\xe3\x6b\xaa\xfc\x94\x58\xbb\x64\xde\x5d\xe0\x63\x80\x30\x8b\xc6\xe8\xf4\x42\x20\x4d\xd2\x8a\xe2\x95\x44\x5c\xbb\x38\x8a\x7f\xfd\xea\xa3\xfe\x15\xca\xa7\xea\xf4\x5e\x2b\x21\x60\xad\x92\xaa\x75\x7f\xfa\xa7\x7f\x2a\xf4\x46\x73\x8c\x91\x37\x7b\xb6\x84\x92\xfa\x9b\x93\xf0\xd2\x93\xc7\xbd\x5f\x8f\x53\xba\x62\xf2\xc8\xda\x2c\xef\xdf\x78\xe6\xdd\x7e\xaf\x68\x1d\xe6\x01\x39\xf5\x63\xc0\x8f\xc3\xd8\x56\x63\x66\xaa\x85\x01\x20\x91\xaf\x02\x7b\xee\xf2\x28\xfe\xe4\xc6\x2c\xbc\x84\xdc\x06\xcb\x07\x5e\x4e\xe3\xdc\xfe\xa4\x09\x6f\x08\xee\xb1\x2e\x22\xcb\x73\x5b\x64\xda\x39\x0d\x53\x5f\x5b\xef\x52\xa1\x92\x24\x54\x53\x29\xf2\xb5\xf2\x7c\xea\x86\x23\x43\xfd\x8c\x5f\xbb\xdf\xcf\x8c\xda\xcc\x6a\x0b\xdb\x4f\xb9\x95\x55\x09\x5f\xec\x7b\x18\xc5\x4e\x15\x49\x67\x1e\xdc\x42\x2b\xea\xf7\x53\xb1\xb1\xb2\x14\x43\x94\x16\xe2\x16\x6d\xeb\x8c\x3a\x7c\xce\xc7\x56\xb8\x60\xc2\xe7\xa7\x6e\xda\xa8\x0e\x6c\x3e\x16\xf8\x74\xee\xeb\xa6\x7e\xdc\xbc\x77\x49\xb3\x2d\x4c\x5b\x7e\xdb\xd2\xf1\x01\xb5\x26\xd6\xa7\x4b\xdc\xad\x75\xfa\xca\x2b\xaf\x80\xef\x20\x49\xb6\x81\x7a\xc2\xfe\xcc\x4a\x8e\x2c\xc2\x68\xbc\x19\xdc\x39\xbe\x14\xbe\xbc\x58\x11\x3b\x0e\x54\x2f\xe2\x01\x1b\x41\x32\xed\xeb\x78\x55\x9c\x71\x01\xa0\xf7\xfb\x26\x4b\x13\xf9\xc2\x98\x5e\x83\x01\x13\xc0\x6a\x49\xe6\x85\xfb\x9c\xdd\x93\xb3\xf2\x8f\xed\xac\x9b\x67\x97\x15\xc4\xb0\x9f\x0c\x00\xb1\x3c\x68\x06\xa9\x3a\xf8\x60\x9a\x9a\xe5\x4d\xe7\x99\x72\xa6\x45\xa6\x3d\x3a\x1c\x9f\x0b\xae\x1f\x3d\x11\xbd\x01\xdb\xf8\x94\x77\xd4\x06\xbc\x90\x6d\x1b\xc2\x5d\x17\x39\x6e\x73\x12\x00\x76\x76\x76\xf0\xf5\xaf\x7f\xdd\x27\x6f\x16\xf3\x52\xe4\x4b\x6f\x8a\xc7\xf7\x56\x19\xa3\x04\x34\xfa\xcf\x07\x4c\xcc\x7b\xa5\x14\x7f\xc6\x57\x0f\x99\x7a\x28\x18\x41\x3d\xb8\xb4\xf6\xb2\xf9\xf1\x8f\x7f\x2c\x7f\xf6\xb3\x9f\xb9\xe5\xf1\xea\xb3\xff\xf5\xbf\xfe\x97\xf8\xc5\x5f\xfc\x45\x57\xef\x09\x94\x9d\x5a\xff\xcc\x3c\xdc\xb8\x38\xee\x7d\x66\x25\x09\xae\x11\xd0\xb7\x95\x71\xc9\xd0\x29\x76\xeb\x02\x8e\xb2\x43\xe6\xc3\x58\xa7\x31\x18\x79\x60\xf7\x3e\xf5\xee\x09\xa6\xd3\x08\x14\x0d\xcf\x2c\xc2\xe7\x9e\x3a\xea\xff\xda\x4a\x22\x06\xc8\x3b\x6a\xce\x20\x99\x7a\xf8\xc4\x27\x3e\x81\xdf\xf8\x8d\xdf\xe8\x32\x8b\xc1\x97\x40\xf7\x87\x8b\x60\xf3\xc3\x07\x2b\xcf\x0d\x17\xc1\x27\x28\x8f\xdf\xca\x88\x52\x36\xb3\xa2\xac\x32\x97\x45\xe0\xf9\xb6\x5e\xf2\x5b\x7f\xd3\x61\x4e\x79\x2f\xb9\x9f\x50\xd2\xe6\xfa\x3c\xfc\xd8\xa5\x93\xf8\x99\x33\xb3\x60\x1d\xf6\xea\x28\xd3\xd7\x29\xa5\xf0\x7b\xbf\xf7\x7b\xb8\x72\xe5\x4a\x1b\x20\x39\x15\xbe\x00\x9a\x8d\x73\xf9\xb5\xaf\x23\xad\x84\x7b\xef\xbd\xf7\x40\x44\xf8\xcd\xdf\xfc\x4d\x77\xae\x55\xdb\xb8\x98\xf9\xd2\x34\xc8\xed\x5c\x8a\x13\x3a\x3d\x60\x84\xb9\x8a\x65\x1e\xca\xd5\x10\xfc\x21\x9c\x79\x78\xf3\xca\x03\xb3\x35\x84\xaf\x7c\xe4\xca\x99\xb7\xb5\x06\xb6\x42\x21\xec\x65\x62\xd8\x5f\x8a\xa1\x90\x08\xa5\x30\x1b\x2b\x99\x79\x67\x4f\xd8\xa6\x29\x1f\xee\xdc\x4e\xd5\xad\xf7\x0f\xa2\x4c\xbb\xcc\xdd\xd7\x85\xf9\x79\xa4\x7f\x9a\x74\x1e\xd7\xfd\x77\xe5\xaf\x39\x51\x29\x65\x9a\xa6\x7a\x29\x3c\xff\x86\xfa\x14\xda\x04\xb9\xd2\x9b\x17\xca\x6b\x0a\xa2\x30\xed\xe1\x70\x74\x21\xbc\x15\xcd\xe4\xf9\x60\xb9\x1c\x44\x4b\xe4\xcb\x50\x0a\x16\x84\x0b\xb0\x4b\x0f\xfb\x6c\x01\x50\x06\x76\x72\xa8\x57\xed\x94\xef\xab\xa2\x5d\x8e\xdd\xdc\x56\x56\x1f\x2f\x7f\xca\xde\x3b\x9a\x95\x7c\x41\x9d\x36\x68\x6c\x76\xbc\x38\x4b\x99\x73\x59\xf4\x48\x90\x97\x45\x8f\xba\xb3\x88\xc6\x93\xb3\xc1\x3b\x47\x97\xc2\x1b\x49\x8f\x8e\x40\x66\x7f\x12\x6e\x94\x5a\x39\x58\x51\x29\x85\xc9\x64\x22\xff\xe1\x1f\xfe\xc1\x97\x78\x9d\xeb\x2c\x6b\x4a\x29\x79\x70\x70\x20\xbe\xf6\xb5\xaf\x49\x00\xf8\x83\x3f\xf8\x03\x08\x61\xe9\x65\xae\x6f\x05\x4a\xb9\x71\x0f\x73\xe5\x7f\xda\xf9\x98\x72\x3d\x68\x4c\x99\x4c\x5a\xb6\x2b\xca\xde\xbb\xc6\xc8\xed\x77\xbf\xfb\x5d\xb9\xbb\xbb\x8b\xd9\x6c\xa6\xb7\xf3\xe7\x6c\xb0\xdb\x19\x4b\x00\x88\xa2\x08\xc5\xd4\x88\x61\x16\x4c\x27\xad\x10\x12\xd0\xbf\x38\x8a\x2f\xaf\xcd\x83\x8f\x05\x8a\xd6\xbd\xc2\xc0\x99\x11\x06\x7a\x7d\x9d\x74\x75\x58\xdb\xec\x0c\x79\xc8\xae\x5d\xc6\x42\xbb\x42\x96\xc2\x38\x15\x5b\xe7\x27\xd1\xa7\xae\x1c\xf7\xff\xeb\xe6\xd6\xf4\x1d\xe4\xec\x82\xb6\x49\x32\xdf\x20\x08\x02\x84\x61\x68\xea\xbe\xdf\xef\x8b\xdf\xff\xfd\xdf\xe7\xc9\xf3\xb3\x88\xcc\x5f\x9c\xd1\xc6\xe6\x24\x7a\xb6\x58\x45\x54\xa6\x0f\xcd\x7c\x38\xad\xca\x1d\xb8\x38\x4d\xa5\xb6\xbe\x9c\xb1\x86\xdb\xba\x2b\xb3\x0d\x64\x85\x66\x8e\xc4\xca\x52\x5c\x39\x37\x89\x9e\x5d\x9f\x87\x37\x8f\x57\xb2\x11\xca\xd5\x67\x7a\xaf\x22\x41\x44\x32\x8a\x22\xc1\xf4\x20\xd0\x61\x1a\xc8\xe3\xaf\xe2\xbf\x6e\xde\xd6\x87\x90\x9a\x46\xc2\x12\x00\x92\x24\xc1\x64\x32\x31\x73\x79\x80\xa1\x0c\xb5\x1f\xb3\x29\x57\x46\x2a\xc9\x6d\x5c\x54\x52\xa1\xf4\x0a\x57\xb2\xe3\x76\xe5\xe6\xae\x98\xbb\x57\x0c\x38\x93\x53\xf1\xd6\xfc\xbb\x9b\x04\x55\x3e\xa4\x8e\xdf\x3c\xe6\x46\x84\x1e\x47\x0a\x61\x94\x8a\xe1\xca\x32\x58\x8b\x32\x61\xe6\x3d\x4b\x5b\x00\xb3\xb2\x84\x3b\x5e\xbf\x80\x5f\x01\xf1\x77\xee\xaf\x3b\xc5\x51\x37\x3d\xd3\xa4\xdc\xea\x18\xb5\xa6\x78\xeb\xa6\x5b\xea\xc2\x35\x4d\xb1\xd4\x95\xa1\x69\xaa\xe9\x34\xd7\x4d\x75\x59\xe7\xb7\x0e\xf5\x37\x4d\x2f\x79\xf3\xb1\xbd\xbd\x8d\x17\x5f\x7c\xd1\xd4\x31\x9b\x82\x30\x9b\xd0\x11\x5b\x5d\xa4\x94\x9a\x2b\xa2\x69\xb2\x42\x7b\x47\x97\xc2\x1b\xd3\x8d\xe0\x66\x16\x20\x31\xf2\xaa\x19\x11\x23\xe8\xa5\x24\x1b\x1b\x2e\x2e\xb8\xca\xfa\x31\xfe\x6c\xa0\x52\x04\x50\x9e\x6b\x76\x08\x0c\xe9\x60\x2a\x4f\x57\x29\x4f\x7e\x4c\x3e\x50\x12\x37\x6c\xb8\x9c\x83\x0b\x65\xda\x93\x95\x41\x36\xbd\xa3\xa7\x8c\x88\xe5\xd7\xd8\xd3\xa0\xcc\xbf\x3d\x12\xe5\x85\xcd\xef\x65\x88\xe9\x74\x4d\x6c\x1f\x6f\x85\x37\x66\xeb\xc1\x3d\x08\xaa\x30\x0d\x54\x2e\x37\xb6\x56\x46\x10\x11\xa4\x94\x18\x8d\x46\xae\x12\xf5\x5d\xfb\xda\x44\xdb\xa8\x52\x48\x29\x71\x7c\x7c\x8c\xe3\xe3\x63\xf9\x0f\xff\xf0\x0f\x98\xcd\x66\x52\x29\xc5\xe5\xc4\x30\x30\x54\x1c\xda\x8a\xfa\x25\xcc\x53\xe7\xda\x3d\x5f\x88\xb3\x4b\xda\x30\xd9\x9c\x9d\xc5\x7e\x79\xda\xf8\xee\x77\xbf\x2b\xef\xdc\xb9\x83\xe3\xe3\x63\x24\x09\xdf\xba\xc4\x3b\x4d\x2c\x01\xe0\x73\x9f\xfb\x9c\x78\xe2\x89\x27\x00\x94\x7a\x9f\xec\xc3\x14\xe3\x5e\x2a\xfa\x97\x4e\xe2\x5f\x58\x59\x8a\x2b\x22\xdf\xb7\x24\x17\x25\x87\x62\xd7\x9f\x5c\x4f\x6f\x90\x2a\x9f\x11\xf3\x6f\xc2\xd9\xe2\xf8\x58\xce\x6a\x3e\x5a\x9e\x40\x10\x0a\x83\x41\x12\x5c\x7b\x62\x14\x7f\x84\x14\xfa\x50\xd6\xb4\x88\xf5\xfd\xaf\x5c\xb9\x82\xcf\x7c\xe6\x33\xa6\x1f\x28\x96\x3f\xbb\x7f\xc6\xde\x27\x4e\xa9\xbf\x31\x0b\xcf\xaf\x2e\x83\xa7\x72\xdb\x96\x32\x13\xc4\xcb\xa6\xca\xfc\x19\x36\x12\x8c\x7d\x61\x1d\x1c\xc1\x0e\x9b\xb7\x27\x58\x15\x54\x68\x02\xeb\x81\x3b\xe6\x31\x53\xc6\xfc\x71\xd1\x3e\x43\x49\xe7\xcf\xcc\xc2\x8f\x6c\x4e\xa3\x2b\xfd\xa5\x18\xa0\x3c\xd9\xbb\xa2\xcf\x3f\xf3\x99\xcf\xe8\x9d\x93\x1b\xc1\x48\x83\xab\x65\x5c\x7c\x2c\x8b\xfb\x0c\xce\xf3\xda\xf7\x9c\x65\x60\xd3\x46\xfa\xbd\x84\x9e\x2a\x0a\xe4\x34\x13\x48\x5c\xbd\x6b\x46\x85\xb0\x1e\xb2\x55\x11\x25\x23\xc2\xd9\x11\xfd\x3d\xcd\x2f\x33\x26\x74\xf1\x8c\x41\xf3\xc5\x3b\x3d\x52\xb3\x89\x19\x2a\x3f\x3a\x31\xa6\xd1\xdc\x93\x08\x25\x0d\x06\x4b\xb1\xd1\x4f\x45\xbc\x88\x64\x05\x2c\x30\xbb\x17\xee\x5c\x70\x58\x87\x42\xeb\x18\x8e\x26\xea\xad\x4d\x30\x78\x7a\xae\xdf\xb6\xf4\xea\xfc\xb4\x85\x6f\x9a\x62\xf9\xa0\xfe\x4e\x05\xae\x1b\xfc\x76\x19\x05\x74\xca\xeb\x6c\x36\x93\x87\x87\x87\xe6\x1b\x71\xd9\xd7\xc0\x5d\x83\x16\xb0\xd3\xa3\x65\x80\x70\xbe\x16\xdc\x7b\x74\x39\x7a\x39\x5c\xaa\xf5\x95\x91\x7c\x06\xb2\x50\xee\x46\x38\x6d\x61\xae\x6c\xfd\xcd\xc9\x0e\x2a\x57\x05\x18\xfb\x13\xc6\x2c\x96\x3f\x8c\xc1\x40\x95\xd1\xe1\x37\xd6\xd8\x8f\x03\x7f\x72\xe2\x63\xf1\xf2\xfc\x5b\xed\x96\x34\xf8\x20\x58\x3b\x07\xb3\x94\xf2\x68\xca\x72\x98\x87\x04\x1b\xb0\x15\x81\x65\x80\xf9\x7c\x28\xb6\x47\x5b\xe1\xab\x93\xb3\xc1\xbb\x32\xa0\x11\xaa\x9d\x39\xdf\x2d\x57\x33\x2d\x92\x88\x70\x74\x74\x24\xff\xf3\x3f\xff\x13\xa8\x57\xb2\x6d\xa3\x47\x9f\x2e\x85\xe7\x17\x00\xb0\xb3\xb3\x23\xff\xfd\xdf\xff\x5d\x84\x61\x28\x5f\x78\xe1\x05\x9c\x3f\x7f\xde\x8a\xb3\xc8\x97\x05\x96\x99\x81\xa7\x7e\x56\x71\x4c\x07\x5b\x9b\x7f\x02\x25\xa3\xe2\xe6\x49\x4a\x29\xbf\xf3\x9d\xef\x00\xc8\x37\xcf\x5b\x2e\x97\x4d\x9d\x4b\xa5\x2f\x38\x77\xee\x5c\xe5\xd0\x40\xd8\xac\x4b\xbc\xb6\x08\xd6\x37\xa7\xd1\x73\x91\xa4\x0d\x93\xf7\x0a\x7b\x5e\x0e\x36\xeb\x44\xb1\xd4\xf1\xe5\xaf\xb5\xa1\x9a\xae\x07\xee\x37\xaf\x18\x4b\xaf\xfb\xc6\xa4\x46\x84\xcd\x42\x90\x9c\x15\x39\x3b\x0b\x7f\x61\x65\x29\x7e\x34\x8d\xa4\x96\x23\x0d\xc8\xa4\x1e\xa4\x0e\x06\x03\x3c\xfb\xec\xb3\x72\x38\x1c\x22\x08\xac\xfd\xf1\x35\x98\xd1\xbf\x21\x80\x70\x65\x19\x0c\xcf\x4d\xa2\xcb\x71\x2a\x2e\x91\x82\xd9\x1d\xd7\xd9\xee\xa8\x3a\x48\xb0\xfb\x57\x7f\x05\xb1\x1a\x20\x27\x8e\x4a\xb1\x2b\xa4\x8a\xbf\x3e\x4b\xfb\x4e\xf4\x57\x96\xe2\xf2\x99\x59\x78\x75\x90\x88\x9b\xf3\x48\x6a\x36\x33\x44\xc9\x12\x4a\x20\x3f\xf6\x61\x30\x18\xb8\x2c\x1d\x77\x4d\xfa\xda\x37\x80\x36\xc0\xa5\x4d\xf9\xd7\x35\x44\xb7\x03\x14\xbc\x70\xce\x3b\x4b\x41\x64\x42\xa5\x8b\x50\xcd\xf5\x5e\x2e\xb9\x33\x5a\x28\xbf\x75\x21\x60\xad\x94\x35\x3f\x76\x83\xf1\x0d\x8e\x6c\x23\x3f\x14\xa3\x42\x7b\x3f\x17\x4e\x2f\x72\xc1\x87\x02\x42\x89\x78\x25\x15\x1b\xbd\x94\xf4\xdc\xa4\x41\xe1\x4c\xb9\xf8\x5c\x53\x27\xd8\xe4\xd7\xbd\x6f\x02\x31\x5d\xe2\xf3\x29\xdf\xb6\xf4\x4e\x93\xd6\x07\x0d\xf7\x7f\x3a\xfe\xc7\x8a\xf7\xd1\xa3\x47\x78\xf5\xd5\x57\xe5\xf3\xcf\x3f\x6f\xda\x48\xb1\x14\x55\xcb\x06\x3f\x25\x38\x04\x10\x2a\x20\xcc\x22\x1c\x8d\xcf\x05\xef\x05\xcb\x68\x78\x4e\x2e\xe3\xde\x58\x5e\x11\x06\xbc\x80\x11\x22\xca\x74\xea\x96\x86\x77\xdb\x83\xd1\xce\x65\xfb\xa9\x9b\x00\xca\x83\xfb\x9e\x7b\xba\x10\x8d\xe0\x6b\x06\x07\x4e\xa4\x25\xeb\x62\x0d\x36\x1c\xc5\xeb\x4b\x8d\x65\xbd\x32\xe3\x0b\x58\x0f\xa4\x40\x32\x1f\x8a\xfb\xc7\x5b\xe1\x8d\x93\xf3\xe1\x3b\xcb\xbe\x38\x02\x55\x98\x89\x0a\x68\x41\x09\x2e\x31\x9f\xcf\xf1\xfe\xfb\xef\xbb\xac\x68\x9d\x6b\x02\x28\xae\xab\x95\xa3\xed\xed\x6d\x09\x00\x59\x96\x89\xb5\xb5\x35\xf9\xd4\x53\x4f\x69\xbb\x00\x9f\xae\xf5\x82\x16\x77\x09\x31\xd7\xc1\xee\xb4\x3d\xbf\xd6\x53\x63\xaf\xbe\xfa\x2a\x94\x52\xb8\x75\xeb\xd6\x69\xf2\x5f\x5b\x66\x66\x84\x9a\x77\xee\x0a\xa1\x50\x88\xcf\x4e\xc3\xcd\xd5\x45\xf0\x11\x21\x89\x9d\x40\x69\xc1\xe1\x5c\x07\x93\xcf\x10\x80\x3f\xf0\x08\x5c\x4b\xf7\xc0\x07\xb3\x6d\xce\x05\xf0\x81\xa4\xe1\xea\x22\x78\xe6\xfc\x38\x3a\xbf\x7d\x76\x31\x46\x3e\x5d\xa4\xe5\x48\xeb\x7a\xa9\x94\xc2\x60\x30\xc0\x87\x3f\xfc\x61\x5f\xb4\x15\xe6\xa5\xbf\xa4\xf5\xb3\xd3\xe8\xc9\x28\xa3\x4d\xcf\xbe\x7b\x65\x39\xea\x10\x9c\xd3\x65\x56\x9c\xb1\x39\xb3\x4d\x16\x9a\x74\x80\xc9\x06\x53\x2d\x6e\x75\x13\x08\x51\x26\x36\x56\x13\x71\xa9\xbf\x0c\x86\x40\x7a\x08\xff\x74\x26\xf0\xc1\xf4\x32\x6f\x8b\x26\xbe\x3a\x0b\xe0\x2e\x0c\x00\x8f\xd4\x6d\x60\xd6\x8a\x22\x36\x8f\x0a\x14\xe0\xa5\xb0\x71\x99\xa6\x85\x71\x6e\x2e\xc4\xd5\x73\x49\xca\xf5\xe4\x25\xa3\x62\xaa\x93\x21\x4f\xfe\xfd\x5c\xa0\x58\x55\xd7\x65\x98\xf2\xae\x4c\x8b\xf7\x01\x95\x3e\xa1\xe8\x28\xf4\x7e\x5a\x42\x51\xdc\x5b\x8a\x8d\x5e\x2a\xfa\xc5\xc8\xc2\x5d\x49\x64\x28\xb2\xad\xad\x2d\x3c\xf5\xd4\x53\x42\x2b\x2a\xc7\xd5\x8d\xd4\xda\x3e\x7e\x1b\x33\xe2\x0b\x5f\xc7\x9a\x55\x46\x51\x35\x69\xb6\xb1\x71\x4d\xf9\x6e\x2b\x4f\x5d\x3e\xea\xea\xc7\x0d\xa3\x5d\x5b\x7e\x7c\xf7\xbe\x77\x5d\xfd\x5b\xd7\x27\x27\x27\xf2\xb5\xd7\x5e\x13\x41\x10\xc8\xe7\x9e\x7b\x8e\xb3\x6e\x29\x4a\x85\x9e\x14\x23\x2f\x8b\x79\x49\x63\x1c\x8d\x2e\x86\x6f\x84\x4b\x0c\xce\xa8\x65\xd8\x9f\xc8\x4b\x86\x79\x31\xa0\x99\xf5\xe2\xc5\x8e\xb4\x16\x2c\xd0\xe0\x86\xb4\xdd\x47\xb1\x17\x8c\xb1\x0f\x71\xae\x5d\x25\xc6\x35\x15\xb7\x9c\xb7\x1a\x5a\x19\xc6\xc2\x4f\x86\xa2\x2c\x57\x28\xd9\x7a\x57\x55\x7a\x86\x7c\x7f\x0d\x3e\x28\xb0\xf7\x61\xd2\x06\xf8\x39\x5b\xca\xc6\xd1\x9a\x69\x11\x48\x17\xab\x62\xe7\xf8\x42\x78\x7d\xb4\x15\xbe\xb9\x18\xd0\x1e\xa8\x72\xca\x31\x5f\x4d\x54\x99\x26\x3a\x3a\x3a\x92\x6f\xbf\xfd\xb6\xce\x52\xdd\xe0\xa0\x0d\xe8\x3f\x36\x80\xbe\x73\xe7\x0e\x8a\x7c\x88\xbd\xbd\x3d\x79\xf6\xec\x59\x3c\xfd\xf4\xd3\xae\xbd\x54\x25\x5d\x3e\x25\xcd\xa6\xa9\xdd\x30\x95\x3c\x1f\x1c\x1c\x60\x7b\x7b\x1b\xd3\xe9\x14\xaf\xbf\xfe\xfa\x69\x07\x33\x96\xfb\xd8\xc7\x3e\x26\x56\x57\x57\xdd\xc7\xe6\x40\xc5\x1c\xb8\x50\x7c\x76\x1a\x6e\xc5\x19\x9d\x27\x20\x34\x3b\x22\x93\x2b\x6e\x6c\x43\x35\x65\x0f\x1e\xf3\x87\x4e\x5f\x01\x3d\xad\x61\x0f\x40\x7d\xa0\x9a\x5f\x97\x7e\x6d\x71\x54\x95\x38\x09\xa4\x54\xdc\x4f\xc5\xe5\x8b\x27\xf1\xe5\xed\xb3\x8b\xbb\xd0\x83\x8d\xfa\x7d\x74\x00\xbb\xc3\xd5\xfd\xa2\x69\xe7\xa4\x10\xf7\x52\xb1\xbe\x9a\x88\xad\x40\xd2\xb0\x02\xc4\x58\xbe\xf8\x2c\x81\xd9\x4c\x8e\x4d\x0d\x59\xc1\x2a\x20\x23\xff\x6f\xdb\x5b\x96\xfb\x3a\x55\xea\x87\x45\xca\x07\x10\x56\x7a\x04\x04\x0a\xc3\x95\x65\x70\x7e\xb0\x14\xeb\xa4\x10\x2b\xf2\x4f\x9f\x01\xc0\xd5\xab\x57\xf1\xe8\xd1\x23\xb1\xbb\xbb\xdb\xd4\xf7\x35\xe9\x78\x30\x3f\xad\xc6\xb9\xee\xbd\xef\x9d\xd7\xb9\x28\xdf\x59\x69\x24\x53\xa1\x92\x79\x28\x67\x49\x90\x2f\x89\x0e\x14\x85\xf6\xa1\xb2\xf6\xc8\xc1\x06\x11\x85\x40\x52\x59\xf9\x1c\x4b\xfa\xb1\x7a\x15\x5f\x5a\xbe\x0c\x40\xaa\x8c\x2d\x0d\xd3\x62\xde\x53\xa9\xf7\x85\xa2\x38\x4e\xc5\xfa\xca\x32\x18\x12\xc8\x65\x5b\x04\x1f\x09\x3d\xf1\xc4\x13\x38\x39\x39\xfd\xcb\x2c\x69\x00\x00\x20\x00\x49\x44\x41\x54\xc1\xf6\xf6\xb6\xaf\xca\xea\x94\x4c\x9b\x12\x6c\x1b\xed\xf9\xbe\xa5\x4f\x01\xb7\x81\xd2\xa6\xf8\x7c\xef\x3a\x8f\xce\x5a\xfc\x35\x31\x80\x6d\x71\x77\x09\xd3\xc5\xef\x69\xfc\x9b\x7a\x9b\x4c\x26\xf2\x95\x57\x5e\x11\x1f\xff\xf8\xc7\xdd\x3c\x6a\xe6\x45\x1f\xb4\xc7\x0d\xba\x43\x10\x85\x49\x0f\x87\x47\x97\xc2\xeb\x24\x55\x4c\xbb\x29\xe2\xa9\xbc\x24\x32\xc4\x2e\x30\xb1\xe8\x5f\x2a\xa5\x5f\xdb\xbe\xe4\x1b\x4a\x01\x06\x6d\x10\xe0\xee\x8a\xc9\xa0\x3b\xaa\x1a\x4b\x6b\x37\xc7\xab\x73\x6d\xd8\xc8\x32\x23\x86\xb9\xe4\x01\xcc\x08\xdb\x69\xa2\x54\xf4\x4e\xe5\x68\x8f\x0f\x62\xc8\xf6\x67\xf5\x74\x0a\x52\x50\x9a\x0c\x68\x67\x74\x21\xbc\x31\xda\x0a\x6f\x2e\x56\xc5\x43\x08\x1a\xb1\x25\xc5\x2e\x70\xa9\xec\xf8\x79\x74\x74\x24\x5f\x7f\xfd\x75\xbc\xf1\xc6\x1b\xc0\xe9\xe4\xba\xc9\x75\x09\x57\x69\xbf\x77\xef\xde\x95\x77\xef\xde\xc5\xd6\xd6\x96\xde\xb0\xd2\xb8\x8f\x7e\xf4\xa3\x1a\x90\xf0\xce\xd2\xc7\x78\x54\xf2\xf2\xfe\xfb\xef\x63\x3a\x9d\x9a\x07\x3b\x3b\x3b\x78\xeb\xad\xb7\x74\xba\x1f\x88\x35\x7a\xfe\xf9\xe7\xb1\xbe\xbe\xee\x76\xd4\x96\x31\x6a\x20\x11\x0f\x17\xe1\xc5\x40\xd2\x20\x7f\x5f\x32\x2b\x36\x30\x51\xe5\x68\xbf\x86\x65\xaf\x68\x78\xd2\x83\x65\x1b\xd0\xc2\x89\xdb\x4b\xb8\x90\x5f\xac\xf9\xf4\x0a\x01\x22\xca\xc4\xfa\x99\x79\xf8\x24\xfc\xf6\x2d\x1c\x9c\xf0\x6f\xc2\xfb\x48\x6b\xc7\xdc\x40\x52\xd8\x4b\xc5\x7a\x9c\x89\x4d\x91\xdb\xcd\x38\x85\x72\xf2\x52\xbc\xb0\xa7\x51\x3d\xc5\xa9\x3c\x2b\x0f\x64\xb5\xca\xe8\x02\x38\xe7\x5a\xd7\xa7\x99\x86\x73\xe2\x0d\xf2\x55\xb5\xe7\x07\x49\xb0\x19\x4a\x8a\x97\x81\xe2\x40\xce\x0c\xd8\x01\xe0\x99\x67\x9e\xc1\xfe\xfe\x3e\x76\x77\x77\xab\x19\x6e\xd7\xb7\x95\x6b\xdf\x21\x8b\x6d\xa3\x5d\x37\xf2\x3a\xf0\xc2\xdf\xe9\x4d\x97\x0c\xeb\x92\x11\xe4\x22\x94\xd3\x45\x28\xc7\x92\x54\x12\x28\x0a\x95\x35\x85\x53\x80\x13\x68\x75\xe7\x83\x1e\x25\x98\x40\x19\xd2\x02\x1f\x86\xd1\x2e\xc6\x6d\x5a\x18\x38\xff\x92\x0f\x0a\xcb\x10\xfa\x23\x5b\x9f\x9b\x01\x28\x7d\x41\x00\x48\x21\xee\x65\x62\x7d\x90\x88\x61\xa0\x10\xa6\x50\x96\x30\xb3\x86\xe7\x8e\xda\xea\xae\x9b\x40\xa3\x1b\xc6\xf5\xd7\x25\x0d\x1e\x57\x5d\xbc\xbe\x6f\xda\xc6\x66\xf8\xd2\xa9\x73\x5d\xd8\x25\x1f\x7b\xd4\x25\x7c\x13\x72\x6f\x92\xe7\x2e\x61\x80\xfa\xbc\x7a\xcb\x9c\xa6\x29\xde\x7f\xff\x7d\x79\xf5\xea\x55\x03\xde\x8b\xbf\x54\xef\x75\xe1\x18\x30\x1a\x23\xef\xc5\xaa\x78\x78\x74\x29\xbc\x0e\x00\xeb\x7b\xa9\xec\x4d\xe4\x25\x91\x51\xdf\x52\x3f\x5c\xd0\xad\xd1\x64\x21\xaf\x9a\x15\x61\x53\x3b\x7c\xe4\x55\xda\x98\xd4\x0c\x4b\x7d\x8e\x0d\xcb\x4a\x96\x92\x69\xda\xca\x48\x50\xb1\x68\xf9\x10\xc4\xd1\xce\x28\xda\xa9\x2a\xef\x0c\x66\x62\xf9\xe4\xed\x38\x07\x2d\x62\xe7\x78\x2b\xb8\x7e\x7c\x31\xbc\x3e\x1f\x8a\x7b\x4a\x90\xb5\x4f\x09\xfb\xe3\x4b\x8e\x25\x50\x4e\x5d\xdf\xbf\x7f\xbf\x8d\x75\xa8\x93\x2d\x38\xfe\xba\x0c\xfa\xea\x40\x82\xe5\x67\x77\x77\x57\x3a\x8a\x5e\xac\xac\xac\xf8\xd2\xe9\xe4\x5e\x7c\xf1\x45\x1c\x1c\x1c\x74\xd1\xeb\x6d\x79\xad\x95\x77\xde\x71\xa9\x72\x87\x58\x41\x20\x11\x28\x8a\x07\x4b\x71\x5e\x28\xbd\xe4\xb7\x6e\x3a\xc8\x33\x58\xe5\xac\x88\x2a\xe5\xb8\xd4\xcf\x1c\xe4\x90\xcd\x1c\xf0\x0e\xc2\x1a\x1c\xfb\xc5\x9c\xcf\xae\xb2\x0c\x0a\xa1\x10\xf7\x53\xb1\x89\x62\xcf\x12\xa7\x93\xf6\x4d\xd3\x71\xc7\xfd\x84\x4a\x29\x11\x4a\x11\xf7\x53\x31\x88\x24\x0d\x09\x14\x5a\xc9\x91\x9d\x7c\xd9\x66\x39\xb8\xaf\x96\xc1\x18\xeb\xa3\xe8\xe3\xf4\x1c\x2b\x60\xb5\x33\xbb\xb9\x57\x67\x2e\x72\xff\x64\xe5\xc7\x0d\x47\x8a\xc2\x7c\xd0\x2e\x36\xa2\x8c\xe2\x65\x60\x9d\xbf\x94\xb0\xfa\x91\x85\x4e\xab\x6b\x37\x1c\x7b\xc0\x79\xe6\x5e\x03\xb0\x81\xcb\xe3\x8c\xbe\x5d\xbf\x96\x32\xe7\x86\x65\x15\xbb\x17\x42\xba\x0c\x54\x32\x8b\xe4\x28\x13\x48\x22\x89\x72\xb7\xc0\x4a\x12\x8e\x20\x18\x7d\x47\x95\xb7\xbe\xb9\x38\x0d\x88\xec\x58\x6c\xf4\xa9\x9c\x38\xcb\xd0\x65\x9c\x25\x85\x58\x52\xf0\x02\x10\x71\x46\xc3\xd5\x24\x38\x17\x65\x22\xcc\x6c\x03\x5d\x43\xe3\x3a\xc2\xdc\x85\x31\x78\x9c\x51\xdf\x69\xd8\x8f\x26\x60\xc3\xf3\xe0\xcb\x8b\x2f\xfe\x3a\x36\xae\x0b\x9a\xf6\x29\xc7\x53\x2b\xe6\x9a\xb0\xbe\xeb\x53\x23\x7c\x4f\x98\x4e\xa3\xf0\xf9\x7c\x2e\xff\xf5\x5f\xff\x55\x7c\xf9\xcb\x5f\xc6\xe6\xe6\x26\x84\x10\x12\xc5\x09\xc1\x85\x4c\x24\x40\xb9\x61\x61\x21\x2b\x46\x86\x66\x6b\xe2\x1e\x28\x92\x4a\x20\x5d\xdf\xcd\x64\x7f\x92\x5d\x16\x29\xfa\xf6\x29\xce\x00\x47\x2d\x7a\x3a\xc5\x66\x3c\x4a\xb0\x60\x8f\xb0\x08\x0c\x29\x30\x9f\x6c\x4e\xa8\x00\x3d\x46\x25\x72\x80\x63\x02\xe4\xc3\x32\x4b\xe9\xb3\x9e\xc2\xcf\xf0\x54\xcf\xa4\x01\x6c\x96\x46\x41\x8f\xf6\xca\x6d\xfd\x8b\x52\x40\x52\x31\x3d\x74\x31\x7c\xf9\xe8\x52\x78\x63\x31\x10\x0f\x54\x69\x8c\xcb\xff\xdc\x29\x22\xfd\x0d\x24\x11\xc9\xe9\x74\x2a\xc7\xe3\xb1\xff\x03\xe6\xae\x4d\xf7\xb5\x51\xdc\xbe\x70\x5d\xda\x54\x25\x0f\xff\xf2\x2f\xff\xd2\x12\xf5\xa9\x5c\x5d\x3b\xac\xcb\x7f\x1d\x63\x6b\x75\xdc\xac\x03\x37\xec\x73\x71\x18\x64\xd8\x4b\x83\xcd\x9c\x99\xae\x58\xb6\x94\x03\x4a\xcd\xbc\x71\xbd\xcb\x30\x71\xc9\x7c\x73\x50\xee\x38\x2a\x17\x78\xe8\x93\xd1\x5d\x0c\xe3\x4e\x3f\xb9\x0c\x44\x39\x1b\x6b\x12\x08\xa3\x4c\x0c\x09\x08\x95\x62\xd3\x60\xb0\x58\x76\xe9\xd6\x03\x98\x1e\xe5\xc6\xb9\xa1\x44\x1c\x65\xa2\x4f\x92\x62\x9e\x15\x53\x04\x96\x2d\x3e\x1b\x40\x8e\x1f\x5e\x06\x62\xfa\xa0\x64\x5c\xcb\x7a\x28\xfb\x4c\x1f\x49\xe0\x80\x9e\x1a\xa2\x80\xd5\x88\x10\x0a\x71\x94\xd1\x6a\x20\x89\x4f\x9d\xe9\xb2\xe6\x7e\xab\x0b\x54\x9a\xe4\xbe\xe9\x19\x50\xc8\x5d\x97\x91\xb5\xef\xba\x42\x8f\x69\x3f\x59\x96\x61\x36\x9b\x01\x30\x15\x22\x9d\x3f\x63\x18\x97\x0a\x35\x9f\x47\x72\x9c\x0a\x39\x05\x98\x3a\x53\x79\x23\x70\xd9\x29\x63\x37\x43\xec\x1a\xf6\xb5\x57\x8a\x55\xf5\xd6\x80\x95\x26\xc7\x99\x6f\x85\xca\x67\x2c\x14\xb4\x08\x33\x1a\xac\x26\xc1\xf9\xc2\x40\xd7\x27\xcc\xa6\x61\x7b\x5c\x17\x10\xe2\x73\x75\x4c\x57\x57\x3f\x6d\x1d\x6f\x1b\x3b\xe1\x5e\xfb\xd8\x9c\xae\xe0\xa3\x91\xb5\xa8\xf1\xcf\xf3\xe8\x73\x6d\xb2\xdd\xe6\xea\xfc\x76\x89\xc3\xaa\x0b\x29\xa5\xfc\xbb\xbf\xfb\x3b\xbd\x0b\xab\x54\x4a\x69\x06\xd2\xdd\x74\x4c\x33\x03\x66\xb3\x31\x22\x1a\xcf\x87\xe2\xc1\xa3\xcb\xd1\xf5\xa3\xcb\xc1\xcb\xb3\xb5\x60\x5b\x86\x98\x2b\x22\x8e\x10\x4a\xd0\x02\xa0\x3c\xa7\x2b\x7f\xa5\xf4\x08\xb5\x02\x1c\xf2\x10\x65\x5c\x7c\x54\x9b\x03\x05\xb3\x83\x2d\x1f\x7d\x15\x72\x5c\x9d\xf6\x61\x0c\x09\x1b\xfd\x02\xb0\x56\x28\x28\xf6\xdf\xf6\xc5\xda\x88\x66\x90\x1c\x4f\x4a\xbf\x22\xa4\xf3\xa1\xb8\xff\xe8\x72\xf4\xd3\xc3\x27\xa3\x57\xe7\xab\x06\xb4\xe8\x0d\xd7\xa6\xc5\x54\x51\x65\x35\x91\x62\xbb\x78\x2f\x16\x0b\xf9\xea\xab\xaf\xe2\xe5\x97\x5f\xe6\x00\xbe\x2b\x10\x69\x02\xe7\x6d\x72\xe2\xd3\xa7\xbe\x38\xea\x58\xc8\xba\xeb\xae\x69\x37\xb5\xe1\xb6\x3c\xb9\x71\x48\xa0\xec\x00\x75\xc7\xa5\x99\x43\x14\xc6\xb9\x51\x46\xfd\x38\x43\xb9\x9a\x48\xe5\xdd\x6b\x7e\xc9\x20\x85\xd2\xe7\x55\x95\x32\xa2\xc0\xaf\x51\xea\xf4\x1a\x1d\x4e\xce\xc6\x87\x46\x84\x48\x59\xf1\xe9\x28\x7c\x3d\x48\x29\xb3\x46\x86\xc3\x28\xa3\xf5\x5e\x2a\xf4\x72\x68\xa3\xe7\x1d\x9b\x4e\x00\x16\xdb\xae\x9d\xde\x4d\x3d\x7f\xaf\x28\x0e\x24\x7a\x54\x10\x08\x0a\xd5\x3e\x89\xb7\xb9\x32\x36\xc6\x4a\x3a\x28\x46\x39\x25\xb6\xe1\x21\xdb\xa2\x8f\xcd\x54\x94\xc1\x09\xc6\xb6\x0c\xd5\xf7\xc5\xd9\x08\x16\x0b\x46\x8a\x84\xcf\x44\x02\x0e\x98\xf5\x38\xe1\xfc\x01\xdd\x64\x5a\xfa\x5e\xea\x17\x2e\x30\x71\x23\xae\xed\xf4\xee\xdf\xbf\x2f\xff\xf9\x9f\xff\xd9\x28\x20\xa7\xb3\x96\x5c\x69\xa4\x42\x25\xb3\x28\x1b\xa7\x02\x73\x5d\x21\x00\x60\x68\x3f\xfd\xac\xf8\x57\x45\x86\xca\x8c\xc2\xcc\xe7\x22\xfe\x79\xd9\x33\x2e\x58\xb0\x81\x88\x56\xd6\xae\x30\x73\xc1\x37\x5f\xca\x49\x83\x40\x08\x24\xf5\x57\x93\x60\x6b\x90\x04\x7d\xb0\x1d\x15\x59\xd9\x05\x1b\x85\xf0\x7a\xd4\xd7\x6e\xfd\xb6\x75\xba\xbe\x8f\xea\x7b\x26\x9d\xf7\x4d\x71\xb8\xe9\xbb\xca\x8d\x3b\x57\xa9\xfb\xf2\x5d\xa7\x04\xeb\xf2\xe1\x03\x3e\x4d\xf7\x3e\xea\xb1\x89\x21\x6a\xf3\xef\x5e\x77\xa1\xd0\x9b\xf2\x59\x71\x7a\xaf\x0e\x2a\x0f\x5e\xb4\xc0\x8b\xca\xcf\x89\x99\x22\xdf\x6b\xc3\xec\x7a\xaa\xa0\xc6\xc9\x8a\x78\xf8\xe8\x62\x74\xe3\xe0\x4a\xf4\xd3\xc9\xd9\xe0\x66\x16\x61\xec\x2a\x5c\x80\xc9\xb6\x67\x8e\x9f\xd8\x7f\x93\x27\x70\x05\xad\xac\x25\xc7\xf9\x28\xd7\xa1\x3f\x58\x84\xa4\x87\xc1\x9a\xc7\xd7\x69\x7b\xce\x3e\x62\x1a\x98\x37\x25\x9b\xb5\x01\xac\x36\x5e\x19\x29\x14\x4e\x06\x48\x66\xeb\xc1\xf6\xc1\x53\xf1\x0f\x0f\x9f\x0c\x5f\x4d\x56\x68\x8f\xed\xd5\x32\x2e\xa6\x88\xf4\xaf\x6f\x7b\x7f\xd3\xd1\xbe\xf8\xe2\x8b\x60\xa7\xfa\xfa\x00\xf4\x69\x99\x36\x1e\x97\x8f\xd1\xf0\x16\xa9\xe1\xf9\x69\x99\xd6\x26\xd9\x6d\xf3\x53\xf7\x9e\xb7\xd1\x3a\x96\x89\xfb\x15\x00\xb8\xae\x13\x04\x08\x52\x08\x81\xd2\x90\x95\x0f\x4c\x39\x7b\xae\x0f\x13\xb4\x6d\x32\xca\xf3\xa9\x0c\x5b\xe2\x50\x10\x56\x5b\xe0\x32\x6f\xb1\x04\x76\x87\x5e\xfa\x61\x61\x6d\x91\xe4\x79\x10\x42\xa1\x1f\x65\x14\x93\x03\x5a\x3c\x1d\xb6\x0b\x68\x4c\x9d\x58\x83\x59\x0d\xc6\x35\x50\x77\xf2\x51\xe2\x33\x56\x48\xaa\x2e\x6f\x06\xca\xb6\xe7\x03\x76\x06\x68\xb0\xc7\x7c\xf0\xce\x7b\x47\xd6\x54\xed\x2a\x21\xcd\xe3\x94\x79\xa5\xc2\xc8\x58\x28\x6b\x6b\x15\xb8\xd7\x9e\x41\xbb\xaf\x9d\x74\x6d\x07\x9d\x1b\x52\x53\x43\xf0\x76\xb6\x0c\x7d\x6b\x01\x97\x40\x69\x9c\x4b\x44\x72\x19\xca\x64\xdc\x93\xa3\x24\x94\x63\x6b\x44\x07\xfd\x7d\x6c\xf1\xca\x3f\x88\x2a\x8f\xb3\x87\x8d\xaa\x75\x38\xeb\x63\x95\x19\x42\xe5\xb6\xf8\xf8\xe5\x51\x01\x16\x0d\x66\xc5\xc1\x95\xbe\x25\x13\x04\x04\xf9\x99\x16\x5b\x6b\xf9\xa1\x53\xba\xcc\xda\x7a\xdc\xaa\x97\x67\x9f\x7d\x56\xfc\xee\xef\xfe\x2e\x7f\xe4\xfb\x70\x6d\x53\x2e\x3e\x85\xd6\xa6\x60\xbb\x28\x41\x5f\x3e\x9a\x14\x5c\x57\xff\x6d\x79\xaf\xf3\xdb\x74\xef\x8b\xa3\xa9\x01\xb4\xf9\xef\x52\xe6\x0f\x44\x77\xfe\xc5\x5f\xfc\x85\x3c\x3e\x3e\xe6\x69\x48\xd8\x7b\xba\xe8\x73\x63\xac\x2d\xdd\x89\x68\x04\xc2\x28\x5d\x11\x0f\x8f\x2f\x85\xaf\x3f\x7c\x26\xfe\xc1\xe1\x93\xd1\x4f\x16\x03\xda\xf1\x02\x11\x36\x65\x94\x3b\xfb\x9e\xeb\x90\x8a\xd2\xae\x3c\xd0\xb1\xda\x8f\x95\xa5\x1d\xa9\x6c\x4b\x06\xcc\x38\xc1\x8d\x82\xd4\x3d\x4a\xb9\xda\xc9\x8d\x1b\xac\x0c\xf6\x43\xc8\x65\x8f\x0e\x8f\x2f\x86\x2f\xef\x3c\x1b\xff\x3f\x8f\xae\x44\xaf\xa5\xb1\x38\x40\x7e\x7e\x8f\x75\x70\x20\x1a\xf6\x6d\xa1\x72\x4f\x93\xd6\x6f\xd6\xe2\x4e\xcb\xea\x3d\x0e\x33\xf3\x41\xdc\xe3\xea\xf7\xba\xf6\xfa\x38\x6c\x2a\x00\x40\x01\x22\x23\x05\x59\xec\x94\x0e\x54\x54\x32\xac\xe7\x5c\xaf\x73\xe6\x9b\x0f\x2e\x5d\x99\xf1\xa7\x6b\xeb\x70\x1f\xb5\xe2\x84\x2d\xed\xc4\x2a\xb1\x49\x45\x48\x53\xa1\xa0\x18\x70\x21\xcf\xb6\x17\x4e\xff\xa7\x9d\x35\x68\x4b\x02\x29\x67\x91\x5c\x64\x42\x25\x26\xbd\x1a\xc6\xc5\x21\x30\x35\xeb\x68\x97\xa1\xa8\x37\x02\xf8\x1e\x92\xde\x42\x72\xf0\x61\xbd\xe2\x7e\x5c\xff\xec\x99\xaa\xc6\xeb\x25\x39\x3c\xa6\x22\xdc\x75\xe9\x5b\xbc\xae\x8d\x0e\x74\x23\x68\x53\xfe\x16\xc2\x62\xbb\x41\xea\x5f\xe3\x57\x29\x25\x97\x42\x25\x93\x38\x9b\x2c\x42\x39\x96\x50\xb2\x04\x04\x9a\xce\x2b\x9c\x8b\x9e\x1d\x84\xcd\x30\x88\x57\xef\x36\xb1\x8a\xca\xc0\xf7\xd2\x31\x10\xef\x75\x5c\x26\x8a\x11\x6b\xd8\x4f\xc5\xe6\x99\x45\xb0\x19\x66\x88\xa1\x6c\x1a\x8c\x51\xa6\xc2\x41\x9e\x5d\x18\x90\x26\x9a\xba\x2e\x4c\x13\xbb\xd2\x55\xd9\xfa\xa8\x3c\xd7\x7f\x13\xc5\xd7\xc4\x2a\xf9\xee\x7d\xf9\xa8\x2b\x63\x9d\x9f\xae\x71\x37\x31\x2e\xbe\xf8\x9b\x7e\x5d\x7f\x4d\xef\xc4\x37\xbf\xf9\x4d\x3c\x7c\xf8\x10\x80\xd5\x26\xf8\x0e\xa6\x09\xec\x5d\x5e\xf9\x19\x35\x63\x19\xe0\x68\x7a\x26\x78\xff\xe0\x6a\xf4\xf2\xc1\xd3\xf1\x0f\x27\x67\x83\x9b\x59\x80\x79\x1e\xbd\x2a\x77\xba\x05\x60\xed\x2a\xab\x0c\xf4\x77\xc4\x9d\x50\x02\x8b\x42\xa2\x55\x39\x02\x34\xc6\x5f\x3a\x9e\x32\x94\xd1\x5e\x4a\xb1\x11\x55\x1d\xdf\x5d\x0c\xef\x0c\x37\xaa\x98\xad\x8d\x62\x43\x4b\x9d\x19\xc5\xb5\x81\x42\x16\x60\x3e\x5b\x13\x77\x0f\xaf\x46\x3f\xd9\xfb\x50\xfc\xa3\xf1\x66\x70\x47\x52\xe5\x8c\x1e\x3d\x45\xa4\xeb\x4e\xef\x4e\x6c\x8c\x71\xd9\x1f\xbe\xf7\xbd\xef\xe9\x55\x35\xda\x75\x69\x33\x3e\xdd\x78\x5a\xf0\xd1\xc5\xff\x69\x40\xd1\x69\x01\xc5\x69\xd2\xef\xe2\xb7\x92\xa6\xde\x12\x02\xba\x6d\x11\x84\x0c\x94\xcc\xa8\xec\x07\x14\x93\x55\x6b\x74\xef\xe2\x64\x46\x13\x10\x93\x39\x3f\x63\x60\x3b\xee\xc7\xf5\x57\x7b\xed\x01\xf8\xc8\x33\x2d\x13\xa1\x92\x65\xe0\x4f\xcd\x31\x5f\xa8\x63\x9c\x81\xa2\x4f\x48\x05\xe4\x3c\x94\xc9\x32\x50\x53\x55\x1c\x36\xcc\x9b\x01\x1f\x1b\x94\xed\xd1\x26\x9a\xbc\xf9\x46\x09\x4c\xba\x98\x43\xf8\xe2\xb0\xf2\x82\x32\x2f\xfc\xdb\xa4\xa4\xe6\x27\xbd\x74\xf7\x70\x65\xf9\x70\x16\xc9\x94\x79\x3f\xad\x7c\x37\xe9\x68\xef\x75\xd3\x72\x68\xf7\xd7\xe7\xdc\xf7\x06\xbc\x38\xc6\xb8\x6e\x18\x09\x20\x95\x84\x34\x09\xe5\x74\x1e\xca\x51\x26\xd4\x3c\xca\x97\xc9\x59\xb4\xa1\xcf\xf1\xfd\x56\x2a\x88\xda\x78\x82\x25\xf0\x1a\x89\xe6\xe1\x3d\x48\x93\xeb\x67\xc6\xa3\x51\x41\xe9\xf0\xb3\x91\xca\xd7\x66\xfa\x2a\x8c\x32\x31\x5c\x9f\x85\x4f\xc4\xa9\xe8\xa7\xb1\x31\xd0\xad\xcc\xf1\x35\x18\xe9\xba\x14\x6c\x53\xbd\xbb\x61\xb5\xab\x0b\xe3\xa3\xac\xbb\xb2\x2f\x3a\x5e\xdf\x3b\xf7\xbb\xd7\xd1\x7e\x1c\xd4\xb6\x8d\xee\xea\xde\xd5\xb9\xae\xe1\x4f\xcb\xd0\xb4\xf9\x7d\x9c\x72\xc8\xc5\x62\x81\xef\x7c\xe7\x3b\xe2\x37\x7f\xf3\x37\xe5\x93\x4f\x3e\x09\x00\xda\x90\x2f\xf5\x8d\xdc\x9c\x38\x24\x88\xa4\x12\x4a\x26\x03\x91\x1e\x5d\xa4\x64\xb1\x22\x46\x67\xf6\x96\xbb\xc3\xfd\xec\xa3\xd1\x1c\xe7\x09\x10\xc6\xf0\x4e\x33\x93\x6e\x0f\x50\xbb\x9c\x02\x66\x60\x40\xdc\x9f\xb1\x69\x21\xfb\xb9\x8e\x95\x3c\x8d\x8d\xf9\x29\x07\x14\xac\xd3\x71\xd2\x2f\x63\xb0\x1b\xa6\x14\x94\x2e\xfb\x74\x34\x3d\x13\xdc\x1e\x5d\x08\xdf\x99\x6c\x04\xdb\xcb\x15\x3a\x90\x84\x31\xd9\xfb\xb4\x18\x43\xdc\x62\x8a\x48\xb3\x58\x7c\x4a\xce\xac\x22\xfa\xee\x77\xbf\x2b\x6f\xdf\xbe\xad\xcf\xe0\xe1\x75\xec\xbb\x46\xcb\x73\x9f\xfc\x7f\x50\xd7\x95\x35\x74\xaf\x5d\x7d\xdc\x25\xee\x3a\x56\xb7\x29\x9d\x46\xe7\x4e\x89\x2b\x00\x19\x01\x99\x50\x7e\xc6\xa5\xa2\xbc\x2b\x0f\xbd\x1b\x10\x6a\x96\xa2\xce\xd0\xd6\x4d\x87\xdb\xf3\xfa\x18\x05\xee\xa7\xd2\x44\x08\x72\x19\xca\x69\x26\x0c\x28\xf1\xce\x32\x14\xd7\x8d\x60\x92\x88\x90\x09\x85\x24\x94\xc9\x32\x90\x73\x45\x90\x56\x39\x9c\xce\xad\x2d\xaf\x56\xbe\x99\xc7\xa6\x01\xb8\x1e\xb3\xf0\xa4\xac\xf8\x14\xab\x73\xa7\x0f\x05\x80\x65\x20\xc7\x47\x2b\xe9\xfd\x83\xd5\xe5\x7e\x12\x58\x40\xad\xc9\xb6\xc5\xe7\xda\x64\xad\x72\xed\x03\x2e\xbe\x8e\x4d\x78\xde\x35\xd1\x90\x15\xff\x9a\x9e\x65\x73\xfc\x12\x40\x61\xe7\x22\x47\x99\x50\x49\x98\xa9\x41\x69\xec\xa7\x15\x20\x98\xbe\xcd\x47\x69\x96\xc5\x76\x41\x79\x68\x49\x2c\x97\x83\x31\x55\x58\x11\x6a\xa6\x5c\x75\x7a\x96\x34\x68\x8b\xec\x52\x12\xfc\x9f\xa0\x94\xb2\x40\xaa\xc1\x30\x09\x2e\xf5\x32\x11\x4f\xf3\x8d\xfd\xf4\x51\xee\x95\x2d\x90\x5b\x5c\x17\xd0\xd2\xc5\xb5\x01\xce\xd3\x84\x6b\x02\x49\x5d\x15\xf6\x69\xcb\xf3\xf3\xa8\x83\xff\x4f\xba\x93\x93\x13\x99\x24\x89\x69\x23\xcc\x1e\x2c\x75\x1a\xbb\x36\xf0\x33\x4c\x41\xd1\x7e\x52\x05\xc8\x65\x1f\xa9\x0c\x83\x59\xb2\x42\xa3\xd9\x30\xdb\x5f\xdf\x4b\x3f\xba\x32\x92\x57\x82\x25\x86\xa4\x20\x34\xb5\x6e\x56\x17\x30\x79\xd6\x2b\x8f\x38\x83\x99\x67\x02\xe5\x30\x95\x88\xe1\x0f\x06\xdb\x9d\x06\xc5\xd7\x1f\xf0\x95\x47\xe5\x0a\x23\x07\xe8\xb8\x15\xe2\xcc\xf7\x16\x34\xb8\xcc\x62\x8c\x67\x6b\xc1\xfd\xf1\x66\x78\x6b\x72\x36\xd8\x5e\xac\xd2\x6e\x1a\xd1\x31\x04\x4d\xa9\x3c\xf9\x58\x2f\x7b\x76\xf7\x6a\x99\x17\xf5\x59\xd9\x21\xf7\x7b\xdf\xfb\x9e\xbc\x73\xe7\x4e\xdb\x96\xf6\x5d\x5c\xd7\x41\x86\xeb\x4e\xe3\xf7\x34\x71\xfb\xf4\xb6\xaf\x53\xe8\x32\x70\xf9\xb9\x3b\x45\x4a\x26\x81\x1c\x2b\xe8\x4e\x8e\x01\x5b\xc5\xc0\x04\x99\xcd\x2b\x58\x60\x67\xc9\xae\x83\x93\x2d\xe7\xde\x73\x0a\x82\xb7\x05\x5f\xd8\xa6\xfc\x03\x32\x09\x8a\x9d\xde\xf3\x70\x6d\x03\x9e\xd6\x81\x48\x2a\x54\x92\x84\x72\x5a\x6c\x09\x62\xed\xe5\xe2\xf6\xfb\x65\x31\x8a\xb6\x59\x5c\x93\x53\x19\x6e\xb1\x9a\x77\xca\xb6\x7f\xed\xf4\x4a\xb3\x0c\xe2\x7d\x72\x71\x95\x84\x6a\x3c\xea\x67\xfb\x93\x38\x9b\x82\x2c\x39\xd3\xfd\xbb\xbe\xff\xa0\x8e\xcb\xab\x00\xec\x9d\x73\xeb\x84\xbc\x76\xf4\x58\x13\xd6\x72\x6c\x69\x98\x35\xb7\xac\x57\x55\xa4\x42\x25\xd3\x28\x1b\xa7\x42\xcd\xfb\x66\x44\xc6\x84\x94\x18\x25\xc6\x8d\x73\xa9\x5c\xea\xc5\x91\x05\x07\x35\xca\x8c\x18\x01\x6d\x75\x98\x33\x35\x25\x8c\xf5\x7d\x54\x2d\xd4\xee\x53\xeb\xca\x44\x9d\x87\x0f\x14\x85\x83\x44\x6c\x0d\x17\xc1\xf0\xd1\x4a\x6a\xd6\xf8\xab\xf2\xe0\x45\x3d\x55\x24\xcf\x9e\x3d\x8b\x4f\x7d\xea\x53\xe2\xa7\x3f\xfd\x29\xaf\xc7\xc7\xe9\xa8\x5d\x54\xef\x2a\xd1\xb6\xa9\xa6\x26\x7f\x75\x0c\x49\xdd\x73\xf7\x5d\x1d\x4b\xe3\x63\xf4\x80\x6a\xde\xdb\x18\x25\xdf\xb5\x9b\xb7\x3a\x45\xde\xe6\xaf\x2e\xcd\xba\x7b\xed\x9a\xca\x63\x85\xbf\x7e\xfd\x3a\xe2\x38\x96\x7a\x6b\xf7\x42\xde\x53\x54\x9d\x7b\x7a\x6f\xc1\xbc\x40\x2a\x85\x34\x0b\x91\x66\x43\x31\x4f\x63\x9a\x2e\x56\xc5\xd1\xf0\x20\xdd\x59\x3d\x92\x4f\xc5\x53\xb9\x15\x2e\xd5\x80\xf2\x65\x8a\xb6\x8c\xeb\x73\x81\x94\x06\x17\xa5\x91\x7b\xa9\xc9\x8a\x36\xc0\x86\x5d\x39\xd8\x61\x03\x0b\x7d\x96\x8b\x79\x57\x8e\x80\x8d\xb2\x73\xa7\x84\x88\x6c\xf5\x57\xf4\x42\xba\x2d\x29\x22\x29\x23\x9a\x2e\x06\xb4\x3b\xd9\x08\xee\x4e\xce\x06\xdb\xb3\xf5\x60\x67\xd9\xa3\x03\x25\x68\x0a\x32\xf6\x2b\x53\xa5\x14\x37\xc0\xe5\x2c\x0b\x3f\x44\xd0\xb0\x2d\x00\xe4\xf7\xbf\xff\x7d\xbc\xf7\xde\x7b\x1c\xb4\x74\x6d\x2f\xae\xeb\xc2\x6c\x74\x89\xfb\x34\x61\xbb\xb4\xd3\x2e\x60\xc5\x6d\x9f\x4d\x72\xdb\xd4\xde\xdd\x3c\x34\xba\x8c\x20\x8f\xfb\xe9\x7e\x26\x90\x04\x19\xfa\x5a\x3d\x3b\xe4\x02\x00\x06\x93\x35\xe6\x75\x80\xaf\xbb\xca\x93\x8f\x41\xad\x70\x28\xc4\x57\xa3\x0d\x2a\xf5\xbb\xd5\x24\xb8\x7f\x8e\xb3\xcb\xf1\xb3\x5c\x06\x6a\x3a\xea\xa5\xfb\xbc\x2e\x6a\x98\x05\xab\xae\xd9\x12\x61\x7e\x6e\x14\x40\x90\x49\x28\xe7\x27\xbd\xec\x70\x19\xa8\x69\x24\x31\xb4\x62\x71\x88\x27\x17\xab\xe5\x4d\xb8\x04\x12\x50\x6c\x00\xc1\x9b\xb2\xa2\x0a\x5b\xc5\xba\x44\x56\x3f\x2e\x13\x55\x06\x72\x59\x52\x49\x2a\x9d\x46\xd9\xd1\xa8\x9f\x1e\xce\xf3\xb3\x9b\x78\xdf\x0e\x36\xe0\xea\xe2\x6a\xf5\xa4\xe7\x19\x80\xfa\x7d\x5c\x4e\x9b\x98\x15\x76\x32\x99\xe0\x67\x3f\xfb\x99\xfc\x95\x5f\xf9\x95\xca\x56\xd4\xdc\x38\x17\x80\xcc\x84\x4a\xa6\xb1\x1c\xa5\x02\x66\x4b\x47\x72\x84\x94\xff\xe6\xd7\x64\x7e\x2b\xe8\x52\x95\x82\x69\x21\x74\x68\x20\x83\x92\x95\xa1\x32\xae\x0a\x7b\x6e\x6d\xe3\x5b\xa5\x16\x4b\x61\xd2\x79\x41\xd8\x4f\xc5\xd6\xfa\x3c\xdc\x20\xb5\x08\x51\xae\xd7\x07\x60\xaf\x2a\x5a\x5d\x5d\xc5\xd3\x4f\x3f\x8d\x9f\xfe\xf4\xa7\x3e\x80\x78\x1a\x45\xea\x2a\x17\xfe\xac\x4d\x21\xd6\xb1\x25\x3e\xe5\xd6\xa4\xa4\xeb\x40\xae\x0f\x9c\xf8\xc2\x9d\x66\xe4\xd7\x94\x56\x5b\xde\x9a\x9e\x77\xa9\xe3\xc7\xb9\xaf\x6d\x8c\x3b\x3b\x3b\xf2\x95\x57\x5e\x11\x4a\x29\x59\x9c\x9c\xaa\x1b\x7c\x3e\xd7\x5d\x1e\x91\xe1\xc6\xad\xff\xcc\xe9\xbe\x00\x92\x65\x0f\x49\x16\x05\x93\xa4\x4f\x47\xb3\x33\x72\x77\x70\x94\x5d\x5e\x39\x91\x97\x7b\x13\xb9\x19\x2c\xd5\x50\x48\x15\x53\x41\x65\x80\xca\x3d\x5e\xf2\xad\x07\xec\xc5\x8f\x7c\xa4\x55\x5a\x00\x3a\x9a\xcf\x03\xeb\x15\xb1\xf3\x93\x74\x28\x0e\x54\x8c\x0e\x28\x43\x99\xfd\xf1\x04\xd2\x2c\x12\xd3\xc5\x40\xec\xcf\xce\x88\xfb\xd3\xf5\xe0\xfe\x6c\x4d\xec\x24\x2b\xe2\x40\x86\x18\xc3\x06\x28\x7a\x4a\x68\x0c\x1b\xb4\x24\xc8\xed\x5a\x78\xdd\x48\x00\x52\x4a\x29\x7f\xf2\x93\x9f\xe0\xe6\xcd\x9b\x90\xd2\x7c\x96\xae\xcc\x43\x1d\xe0\x78\x9c\xe9\x5c\x5f\xba\x6d\x61\x9b\x80\x48\x27\x79\xab\x09\x7b\xda\xc1\x6a\x53\xdc\x75\x6d\xdc\xf8\xc9\x48\xc9\xc3\xd5\x74\x3f\x09\xd4\x28\xca\x68\x48\x2c\x4c\x65\x8a\xa2\x78\x56\x3f\xa3\x59\xc8\xb0\x52\xc6\xc8\xbb\xec\xd8\xcb\xa9\x4d\x13\x1f\x1f\x00\x03\x36\xc8\x29\x7c\xaa\x02\xd0\xbb\x7a\x5e\x41\x21\x13\x6a\x7e\xdc\x4f\xef\xde\xdd\x58\xdc\xe3\x65\x62\x7b\x95\x58\xfd\x96\x06\x2b\x6e\x27\xae\x41\x8b\x1e\x8c\xcc\x42\x39\x3d\x18\x2c\x77\x9f\x0a\xe5\xd1\xca\x32\xd8\x62\x9c\x25\xef\x7e\x9c\xb1\x02\x55\x9a\xa4\x0b\x58\x14\x0b\x67\xda\x18\xeb\xe3\x4c\x34\xaa\x88\x58\xb7\x4d\x5e\x74\x4f\xdd\x6b\x97\x09\x35\x9f\xf4\xb2\xc3\x93\x5e\xfa\x68\x19\x28\xde\xd6\xc0\x06\x59\x4d\xee\x71\xf4\xbe\xf1\xd7\xb6\xe5\x7f\x5d\x03\xab\x43\xd8\x02\xc8\x4f\xc7\x7d\xe3\x8d\x37\xc4\xaf\xfc\xca\xaf\xe8\xc4\x78\xc2\x46\xf1\x22\x67\x5c\xe6\x93\x5e\x36\x4a\x42\x39\xe6\x23\x31\x65\x46\x85\xa8\x7e\x40\x76\xed\xd6\xad\x8f\x5e\x33\xd0\xc5\x01\x51\x76\x40\x16\x46\xaf\x99\x27\xcd\xf4\xf0\x77\x0c\x99\xb3\x57\xa4\x20\xe2\x54\x6c\x6c\xcc\xc2\x8b\x91\xa4\x38\x09\x14\xdf\x16\x5a\xcf\x79\x6a\xd6\x45\xd7\x05\xaf\xb7\xd3\x28\xc7\x2e\xcc\x41\x57\x14\xeb\x73\x3f\xaf\x69\x1a\x57\xe0\xda\xd8\x8b\xff\x6e\xf7\x38\x69\x7d\x90\x3c\x36\x76\x8c\xf7\xee\xdd\x93\xc8\xc1\xad\xbc\x72\xe5\x8a\xa0\xfc\x4c\x2f\x20\x07\x25\x21\x8a\xdd\x75\x39\xdb\xc2\x94\x60\x5a\xbc\x4f\x89\x28\x21\x50\x2a\x85\x4a\x17\xc3\x60\xbe\x5c\x11\x8f\x66\x43\xb1\xdb\x1f\xcb\xfb\x83\x91\xbc\xb4\x32\xca\x2e\xc5\x33\xb9\x19\x26\x6a\x28\x32\xc4\x24\x29\xac\x0e\xaa\xf8\x60\x81\x8d\xb4\xc8\x3c\xa9\xb4\xb5\xd2\xee\xab\x68\x5f\x7c\xe8\x86\xb2\x2d\xbb\x03\x0c\xed\x43\x09\xa4\x32\x40\x92\x85\x34\x4f\x56\xc4\xe1\x74\x5d\xec\xcc\xce\x04\x77\xe7\x6b\x62\x37\xe9\x8b\x23\x19\x60\xa2\x08\x53\xbd\xd2\x0a\xf6\x74\x50\xed\x89\xcf\x1c\xb4\x28\xa5\xe4\x72\xb9\x94\x37\x6e\xdc\xe0\xcb\x9e\xf9\xf7\xf8\x20\xdf\xb7\x4d\xae\x7d\x6c\x45\x27\x76\xc2\x93\x46\xd3\xf3\x9f\xd7\x54\x95\x4f\x7f\xb8\x83\xa3\xae\x75\xe6\xca\xbd\x94\x04\xf9\x68\x90\x1e\xcc\xa3\xec\x70\xb0\x14\x97\xa8\xae\x2e\x5c\x8c\x5c\x7d\x0d\x6b\xc8\xa8\x01\xb3\xe9\xcc\x9d\x08\x58\x67\xee\x8b\xb7\x1c\xc4\xb2\xce\x1e\x30\x67\x67\x29\x40\x2e\x42\x39\x7e\xb8\x96\xdc\xdc\x5b\x4b\x0e\x51\xb6\x3f\x5f\xbb\xe4\xf7\x75\xb6\x2e\xc6\xdf\x22\x92\xf3\xc3\xd5\x74\x6f\xdc\xcb\x76\xd7\x16\xe1\xb5\x20\xa3\xb8\x64\x39\x94\x01\x64\x9c\x9d\xf2\x57\x4e\xe9\xd7\xaa\x27\xd3\x5f\xb9\x23\xf3\xc2\x4f\x11\x61\xed\xac\x19\x67\x4f\xd9\x7d\x12\xa8\xf1\xa8\x97\xed\x4f\x7a\x72\xa4\xa8\xdc\x1b\x89\x1a\xce\xd4\xea\xe0\x7c\x40\xda\xdb\xb6\xea\x6c\x5c\xf8\xb5\xaf\xf1\xb9\x91\x36\x4d\x11\xf0\xb9\x7c\xcb\xd6\x05\x80\x4c\x05\xd2\x71\x9c\x9e\xcc\x43\x39\xd2\x67\x16\xf1\x1d\x3f\x15\x95\x8a\x2f\x47\x9c\xaa\x50\xa2\x0c\xdd\x32\x94\x5a\xce\x0e\x95\x07\xb3\xc1\x41\xc5\xb6\x12\xad\xce\x77\x72\xc1\x77\x05\xde\x07\x5a\x8a\x1b\x11\x4a\x1a\x6c\x4e\xc3\xa7\xe2\x54\xf4\x97\x41\x16\xaa\xbc\xec\x66\x4f\x97\x06\x4a\xf1\xb4\x20\xc4\xa7\x3c\x7c\xa3\xa8\xba\x67\xbe\x3c\xf8\xf2\xc3\xf3\xd5\x16\x57\x9b\x42\x6b\x4a\x07\x9e\x77\x4d\xe1\x7c\xfe\x7c\x79\xec\xca\x5e\xf9\xe4\xd7\xd7\xd9\xd4\x3d\x3b\x4d\x3a\x56\x1c\xf7\xee\xdd\x93\x4a\x29\x11\x04\x81\x7c\xe2\x89\x27\x0c\x78\xd1\xf6\x2e\xee\x14\x91\xb6\x71\x41\xb9\x71\x9d\xde\x03\x26\xa5\xfc\xc4\xe9\xbe\x0c\x29\x59\x0c\x83\x69\x32\x10\x07\xb3\x75\x75\xbf\x3f\x0e\xb6\xfa\xe3\x6c\xab\x3f\x91\xe7\xe3\xa9\xdc\x8c\xe6\x6a\x3d\x58\xaa\x81\x90\x08\x49\x41\x40\x15\xe0\x9a\xe7\x54\x39\x8a\x90\xd3\xd6\xbc\x83\x30\x43\x63\xed\x8f\x4d\xbf\x12\xef\x06\x00\x45\x24\x15\x41\x2a\x81\x34\x0b\x69\xbe\xec\x89\x51\x32\xa0\xa3\xc5\xaa\xd8\x9f\x0d\xc5\xce\x6c\x3d\xd8\x5d\xae\xd0\x23\x45\x34\x55\x50\x09\x11\xcd\xa9\x9c\x16\x9a\x33\x00\x63\xd9\xb2\xa0\x58\x52\xae\xa7\x86\x8a\xba\xc8\x3b\x86\xc5\x42\xbe\xfd\xf6\xdb\xf8\xc9\x4f\x7e\xd2\xa5\xa3\xef\x22\x6b\xa7\x95\x41\xd7\x35\x0d\x26\x7c\x32\xd5\x25\xaf\xa7\x7d\xde\x36\xa8\x69\x6b\xab\xbe\xb8\xeb\x9c\xd1\xfb\x0a\x48\xc7\xbd\x74\x7a\xd2\xcb\x76\xce\xcc\xc2\x8f\xe4\x7b\x7f\x68\x78\xeb\x0c\x4a\x3d\xa3\x54\xdf\xb4\xbe\x66\xd3\x01\x7b\x7a\x24\x67\x0d\xa1\x81\x87\x01\xde\x75\x53\x42\x96\x1f\xf3\x9b\xbf\x94\x84\x74\x12\xcb\xfd\xfb\xeb\x8b\xdb\x8b\x40\x25\x80\x92\x80\x65\xb3\xe9\x63\x48\x9b\xfa\x4e\xf3\x97\x92\x4a\xc6\x71\x36\x3a\x1c\x2c\xef\x9f\x9f\x44\xe3\x50\x06\x9b\xa5\x57\xbf\x65\x8a\x05\xaa\x74\x7f\x57\x30\xa3\x64\xd9\xa5\xf1\x7a\xd5\x47\x24\xa0\xf4\x83\xa2\x5e\x5d\xfb\x21\x9d\x8e\xa7\xcf\xca\xd7\xf8\x41\x4e\xe2\x6c\xff\x68\xb0\xdc\x9d\x46\xd9\x14\xe5\x80\xa1\x02\xe8\xc0\xe2\x72\x9c\x4f\x06\x7d\x6d\xd4\xeb\xa7\xcb\xaa\x22\x37\x42\x9f\x7f\xed\xc7\x37\x35\x20\x75\xc6\xb5\x52\xe6\xc6\xb9\x12\x48\x67\x91\x9c\x4e\xe2\x6c\x3f\x13\x6a\x1e\xa4\x34\xe4\x86\x40\xd6\x0a\x23\x06\x37\xed\xed\x8b\xa9\x54\xb4\x1c\x7c\x38\xae\x34\xe6\x65\xcf\x38\x42\x29\x1f\x3a\x40\xa6\x70\x8c\x72\x2c\x51\xb9\x56\xcb\x04\x21\x11\xaf\xcf\xc3\x6b\xab\xcb\x60\x30\x8d\xb3\x50\x01\x21\x08\x7a\xca\xc8\x30\x2e\x00\x64\x14\x45\xb8\x74\xe9\x12\x76\x76\x76\x1a\x3f\x90\xe7\x9a\x3f\xe3\x75\x5f\xf7\xcd\x9a\x14\xa0\xab\x70\x7c\x69\x36\x29\xfc\xae\x48\xba\x2e\x6e\x5f\x1c\x5d\xd3\x6b\xea\x14\x7c\x79\x6f\x52\xda\x4d\xfe\xea\xea\xac\x4b\xdc\x4d\xe9\xe8\x7b\x71\xff\xfe\x7d\x99\x65\x99\xf8\xdc\xe7\x3e\x27\x2f\x5c\xb8\x50\x39\x49\x9a\xf9\x95\x4c\x39\xa4\x00\xfa\xfa\x9e\x2d\xa5\xce\xa7\x4b\xa0\xfa\x08\x28\x49\x56\x69\x9a\x0c\xc4\xa3\xf1\x66\x70\x37\x9e\xc9\xf5\xfe\x58\x9e\xef\x8f\xb3\xf3\xbd\x89\xda\x8a\xe6\x72\x3d\x5c\xa2\x1f\xa4\xaa\x2f\x32\x15\x93\x44\x08\x05\x51\xb4\x2a\x01\x33\x65\x64\x80\x07\x8c\x41\x6f\xfe\x04\xc6\x20\xbe\xb0\x17\x2b\x0c\x12\xa0\x08\xb2\x38\x53\x48\x2a\x22\x29\x03\x24\x59\x44\xf3\x2c\x12\xd3\x65\x8f\x46\xc9\x80\x8e\xe6\xab\x62\x77\xbe\x16\xec\x2e\x06\xe2\x28\x8b\x68\x02\x2a\xc1\x08\x81\x38\x9b\xa2\x41\x8b\x0b\x58\x0c\x70\x23\xa2\xd4\x35\xfc\x9f\xcd\x66\xf2\xd6\xad\x5b\xf8\xcf\xff\xfc\x4f\x5f\xdb\xa8\x63\x14\x7c\xee\x34\x32\xe8\x7b\x27\x9c\xdf\xa6\xb0\x5d\x74\x6e\x53\x5a\x6d\xf1\xba\xd7\x6d\xed\xc1\xf7\xbc\x11\x98\xb1\x4e\x5c\x02\xe0\xe0\x3b\x9d\x85\x72\xba\x3f\x5c\x6e\x5f\x98\x44\xa3\x70\x11\xf4\x73\xd6\x85\x6d\x28\x0a\xc0\x35\xc8\x28\x75\x6e\x95\x37\xe1\xba\xb9\xec\x1e\x8a\x4e\x92\x34\xfc\xe0\xc7\x10\xd4\x94\xcc\xa3\xef\xf5\x00\x38\x0d\xd4\xfc\x78\x25\xdd\xd9\x5b\x5b\x3e\x04\x21\x55\x0a\x29\xd9\xed\xd1\x2a\x6f\x43\xdd\x69\xb0\x63\x58\x41\x22\x4a\xe7\x91\x1c\xef\xac\x25\x77\x9f\x3c\xee\xef\xf6\x96\x62\x43\x40\xef\x7d\xc2\x06\xe0\x06\x60\xe8\x81\xb5\x7d\x1a\xbc\xb6\x59\x33\xc5\x2e\x6a\x93\x98\x3f\xd3\x46\x2d\x3f\xf0\x9a\x66\xb8\xcf\xcb\x7c\x10\x16\x61\x36\x3e\x5c\x5d\xde\x3d\x18\x2c\x1f\x2c\x42\xa9\xa7\x69\xf9\x74\x91\x99\x36\xd2\xbf\x47\x47\x47\xf2\xe4\xe4\x04\x38\x3d\x3b\x78\x6a\xc6\xa5\x49\x48\xdb\x3a\x5b\x09\x87\x65\xe0\xa0\x85\x85\x4d\x41\x48\x33\x81\x64\xdc\xcb\x0e\x53\xa1\xe6\x31\x69\x03\x25\x9f\xfd\x8a\x62\xc2\xc5\xde\x57\x8c\xfe\x18\x6a\x66\x4a\xd5\xa2\x04\x9d\xe7\x1c\xa9\x1b\xe3\x45\xc7\x59\x73\xff\x28\x1b\x8a\x8e\x4f\x10\xc2\xc1\x32\xb8\x7c\x76\x1a\x6e\x3e\x5a\x59\xee\x26\x81\xd9\x3d\x31\x2c\x0c\x75\x4d\x7d\xac\xaf\xaf\x8b\x2f\x7e\xf1\x8b\xf2\xaf\xfe\xea\xaf\x78\x7d\x76\x61\x46\xdc\x8e\xd3\xf5\x7f\x9a\x11\x21\x60\xa7\xdb\x94\x8f\xba\x78\x5c\x57\x97\xcf\x36\xa5\x5d\x07\xb0\x9a\x9e\xbb\xf1\x35\xb1\x4d\x75\x1d\x55\x9d\x12\xf6\x01\xf0\xb6\x32\x77\x01\x8b\xbe\xbc\x8b\x87\x0f\x1f\xca\x7f\xff\xf7\x7f\x17\xbf\xf5\x5b\xbf\x25\x89\x08\x1b\x1b\x1b\x40\xae\x10\xcd\x77\x75\xe6\xcb\x2d\xf6\x45\xef\x57\x42\x44\x49\xc1\x4e\xf4\x01\xf4\x95\x52\x31\x80\xbe\x8c\x68\x3a\x8f\x82\xe3\xf9\x9a\x78\x28\xd2\x70\xa5\x37\x95\x1b\xbd\xa9\xdc\x88\x67\x6a\x23\x9a\xc9\x8d\x78\x2e\xd7\xc3\x44\x0d\x45\x8a\x58\x48\x15\xe7\x53\x4a\x08\x49\x42\x90\xe2\xbb\x9d\x12\xcb\xbf\x06\x58\x79\xdb\x53\x44\x12\x04\x29\x05\x52\x19\x50\xaa\x02\x9a\x67\x21\x25\x69\x4c\x39\x58\xe9\xd3\x51\x32\x10\x47\x8b\x81\x38\x4a\x56\x68\x94\x45\x62\xaa\x48\x2d\x0a\xa6\xc8\x05\x24\x06\xa8\x14\xe5\xe1\xef\x38\xc3\x64\x6d\x2c\xa7\x99\xdc\x24\x49\xe4\xbb\xef\xbe\x8b\x1f\xfe\xf0\x87\x9e\xea\x37\xf5\xee\x7e\xbb\x3a\x19\x6d\x92\x2b\xd7\x2f\x77\x6d\xe0\xd7\x97\x8f\x3a\x79\x75\xf3\x71\x9a\xfc\xd5\xc5\xcf\xe3\x69\xeb\x4c\x9a\x64\xda\xaa\x3b\xbe\x18\x83\xb1\xec\x29\x00\xb9\x0c\x54\x72\xf7\xcc\xe2\xbd\x27\x8f\xe3\xfb\xfd\xa5\xd8\x20\x49\xfd\x52\xfb\x92\x99\xd1\xa8\xd8\x63\x58\x73\x38\x9c\x59\x67\x9c\x9e\x51\xcd\x8c\x3d\xe0\x46\x2d\x2c\x1e\xd7\x04\x80\xeb\x7b\xb3\x47\x0c\x00\x45\x90\xf3\x30\x1b\x1d\x0c\x96\xdb\x93\x38\x1d\xa3\x04\xc9\x29\xef\xcb\x18\xf3\xa2\xdb\xa8\xa5\x5f\x58\xdf\xc7\xc3\xa5\x00\xd2\x45\x28\xa7\x3b\x6b\xc9\xbd\xdd\x61\xf2\xce\x70\x11\x5c\xee\xa5\xb4\x5e\xe6\xba\xcc\x37\x31\xb4\xa1\x89\x4e\xdb\x38\xc8\xae\x27\x3b\x3f\xec\x64\x76\x38\x41\x14\xca\x01\x89\x63\x3b\xe3\xe6\x43\x42\xc9\x93\x5e\xb6\xf3\x60\x2d\xb9\x7d\xb4\x92\xee\x67\xa4\x12\x02\x55\x6c\xca\x5c\x06\xea\xd5\x57\x5f\xc5\xbb\xef\xbe\xeb\xb6\x31\xed\x7c\xed\xa1\x0e\x7f\x48\xc0\xcf\xb8\xf8\x5c\x1d\x40\x69\x54\xcc\x6c\xe4\xe8\x66\xcc\x08\xb2\x52\x4a\x16\x86\x4f\x47\x49\x20\xc7\x2b\xcb\xe0\x3c\xe0\x56\x9c\x36\x26\xac\x56\xba\xfe\x82\x15\x22\xca\xbc\x2a\x0f\x67\xb3\xc2\x9a\x8f\xe4\xf2\x86\x64\x0b\x40\x25\x2e\xff\x7e\x2e\xc5\x23\x11\xa7\xe2\xfc\x85\x93\xe8\xc9\xed\x8d\xf9\x6d\x6d\xe7\xa2\x05\xd9\x65\x5d\x58\x7d\xa0\xe6\xda\xe7\xcf\xe7\xbf\x0b\xb0\xec\x12\x4f\x53\x67\xeb\xa6\xe7\x3a\x1f\xdb\xd0\x65\x84\x59\x97\x87\xba\x3c\xba\xf1\x37\xd5\x9f\xef\xb7\xc9\x6f\x5d\x9e\x9a\xd2\xf4\x3d\xef\x52\x8f\x95\x8e\xe0\xf0\xf0\x50\xfe\xed\xdf\xfe\xad\x08\xc3\x10\x5f\xfd\xea\x57\x65\xaf\xd7\xd3\xfe\x53\xbe\x32\x41\xff\x31\x05\x9a\x10\x51\x5f\xef\xc0\x5b\x80\x16\x0e\x60\xe6\xc8\x4f\xb4\xed\x83\x28\x94\x11\xa6\xb3\x33\xc1\xc9\xec\x4c\xf0\x00\x4a\x45\xc1\x12\x83\x68\x2e\x07\xf1\x4c\x0d\xa3\x85\x1c\x06\x09\x06\xe1\x52\x0e\xc2\xa5\x1a\x04\x4b\xc4\x94\x1b\xf6\x16\x20\x46\x69\x56\x46\x2a\x40\x2a\x41\x52\x11\x52\x45\x90\x2a\x40\x9a\x85\x94\x64\x21\x4d\xb3\x1e\x4d\x97\x31\x4d\xd3\x58\x8c\x93\x01\x8d\x93\x3e\x8d\xb3\x88\xe6\x0a\x58\xf0\xa9\x2e\x02\xf1\xc3\x0f\x0d\x48\x29\xa6\x7e\xe6\xce\x6f\xc2\xca\xcb\x6d\x7c\xc0\xea\x44\xa6\x69\x2a\x6f\xde\xbc\xa9\x99\x96\x36\x57\x07\x12\x7c\xae\x0d\x14\x00\xcd\x71\x74\x01\xfb\x4d\xe1\xbd\x72\x53\x13\xb6\x6b\xd9\xeb\xf2\x56\xcb\xa8\xf8\xf2\xb2\x58\x2c\x20\xa5\x94\x42\x08\xa3\xfb\xcd\xd2\x7d\xb3\x84\x3f\xff\x76\x7b\xc3\x64\x7f\x77\xb8\x7c\xe7\xcc\x2c\xba\x12\x26\xaa\x6f\xf8\x16\x0e\x56\x2a\xba\x97\xe9\x60\xce\x24\x18\x26\xc2\x66\xd3\x4d\x70\x77\x04\xca\x28\x1a\xcb\xdc\x80\xf7\xdb\x05\x30\x02\xe5\x46\xb9\xa3\x7e\xb6\xf3\x70\x2d\xd9\xce\x44\xc9\x68\xba\x1d\xb5\xae\x17\xd7\x30\xb5\x68\xb7\xae\xed\x87\x01\x2d\x00\x12\x09\x95\x8c\x7b\xd9\xd1\xbb\xe7\x66\x37\x2e\x4c\xa2\x8f\xc4\x93\x28\xdf\xce\x40\xaf\xe6\xe3\xe5\x47\x15\x74\xb9\x65\xd0\xe5\x2c\x4f\x87\xf6\xa0\x41\xe6\xdf\xd8\xb9\x58\xd3\x68\xf6\xb4\x93\x5e\xb5\x95\x04\x6a\xbc\x37\x5c\xde\x7e\xb8\x96\xdc\x9b\xc6\x72\xec\x0c\x1e\x0c\xa0\x63\x26\x21\x4d\x26\x12\xbc\x3e\xea\xfc\x78\x7f\xdb\x80\x8b\x6f\xd4\xec\x76\x5e\x4d\x0d\x89\x2b\x04\xbe\xa4\x33\x65\xcf\xd2\x54\xa8\xf4\xd1\x20\x3d\x58\x84\xea\xc8\x01\xd6\xb9\x63\x07\x66\x91\xbb\xee\x4d\xa3\x67\x1e\xce\xfe\x3e\xf5\xf4\x20\x69\x44\x5e\x06\x60\x48\xbb\x32\x7b\x94\xc7\xe5\x31\x64\xa2\xd2\x47\xa0\xd0\x3f\x3f\x8d\x9f\x89\x25\xfd\xd7\x0c\x30\x76\x2e\xaa\x3c\xe2\xdb\x6f\x1c\xec\x77\x5d\x94\x19\x3c\xef\xbb\x28\xad\x0f\x12\xd7\x07\x79\xf6\x38\x79\xf8\xa0\xfe\x7e\x9e\xee\x34\x20\xa7\x4b\x3c\x95\x70\x69\x9a\xe2\x2f\xff\xf2\x2f\xf1\xc7\x7f\xfc\xc7\x22\x0c\x43\x59\xd8\xba\x00\xf6\x7e\x40\xbc\x4d\x85\xc8\x47\x72\x31\x80\x98\x75\xee\x31\x38\x68\xc9\xed\x43\xe2\xe2\x2f\x04\x10\x83\x28\xcc\x62\x9c\x64\x71\x10\xce\xd7\x11\x02\x88\xa0\x54\x7e\x9a\x6f\xa6\xc2\x60\xa9\xe2\x20\x45\x0c\x09\x21\x24\x42\x92\x4a\x90\x2c\xda\x36\x41\xca\x80\x4a\xd0\x12\x50\x9a\x45\x94\x64\x21\x12\x08\x4a\x8a\xf2\x2c\xc1\x14\x1b\xd9\x07\x4b\xf2\xe9\xad\x39\x0a\xc6\xa8\xe1\x97\x8f\xec\xf4\x09\xdb\x56\xc7\x01\x40\xbe\xfa\xea\xab\xee\x8a\xbd\xb6\xef\x71\xda\x6f\xe5\xea\xc3\xae\x20\xc6\xf7\xbc\xcb\x20\xa6\x4b\x5e\x9b\x94\x7f\x5b\x1e\x9a\xee\x3b\x81\xa3\x6f\x7e\xf3\x9b\xf2\xf7\x7e\xef\xf7\xc4\x13\x4f\x3c\xa1\xeb\xc3\x00\x6d\x6d\x7b\xa4\xbf\xdd\x3c\x92\xd3\xbb\x1b\x8b\x77\x2e\x9e\xc4\x1f\xeb\xa7\xf1\x7a\x28\xd1\x07\xaa\x7a\xda\xd8\x9d\x30\x95\xef\xdd\xbe\xc2\xa2\x66\x6a\xe2\x70\x1e\x54\xec\x1a\x9d\x28\x88\x00\x09\xc8\x49\x9c\x1d\xee\xac\x2f\x6e\x3e\x5c\x4f\x1e\x28\xaa\x9e\x2e\xae\xeb\xa0\x66\xaa\x88\x1f\xb4\xc8\xe5\x94\xcb\x70\x4a\x44\xc9\x32\x50\xd3\xbb\x1b\xf3\xf7\xdf\x3f\xee\xbd\xba\x3e\x0f\x2f\xc7\x16\xeb\x52\xcd\x9b\x42\xd9\xd7\xb9\x65\x28\x8b\x69\xbf\xf0\x0e\xfc\xf9\xbd\xd5\x67\x92\xf5\xac\xa8\x0f\x1c\xaf\xa4\xf7\xef\x9e\x99\xbf\x33\xea\xa7\xfb\xaa\x9c\xda\x35\xe7\x80\x39\xc0\xcd\x67\xac\x7b\x5a\xdd\xee\xfd\xad\x03\x2e\x6d\x53\x41\xbe\x0c\x58\x82\x3d\x99\x4c\xf0\x67\x7f\xf6\x67\xf2\x4f\xfe\xe4\x4f\x04\x50\xda\xb8\xe8\x78\x39\xcd\x9d\x09\x95\x9c\xf4\xd2\xd1\x34\xce\x0e\x15\xa9\x94\x14\x42\x6b\x2a\x88\x0b\x15\x03\x0e\xae\x41\x15\x1c\xff\xdc\x29\xf3\xdf\x15\xfa\x6a\x80\x36\x58\xe1\x02\x2b\xeb\x8c\x23\x85\x70\x6d\x11\x3c\x33\x9c\x87\xeb\xe3\x58\xee\xa7\x81\x0a\x15\xdb\xf2\x1f\x36\xa0\x03\xfc\xc0\xaf\x49\xf9\xb9\x54\x2f\x1c\x7f\x4d\xd3\x43\x75\xcf\x9a\xf2\xd0\x04\x9c\x7c\x53\x29\x5d\xf2\xe2\xe6\xb9\x2e\x4f\x5d\xfc\xf9\xf2\x5a\x57\x8e\xa6\xbc\xd5\xd5\x7f\x5d\xbe\x9b\xfc\xfb\xbe\x91\x9b\x07\x5f\x59\xad\x38\xfe\xfc\xcf\xff\x1c\x7f\xf8\x87\x7f\x88\xb5\xb5\x35\xce\x5e\xf2\xb0\x5a\x09\xea\x15\x6c\xda\xde\x23\x01\x03\x27\x4a\xa9\xb8\x00\x31\x21\x4a\xe0\x12\x17\xd3\x48\x82\x88\xc2\x62\x3a\xb3\x88\x87\x84\x22\x25\xb2\x90\xc2\x2c\x2c\x0f\x84\x73\xca\xc3\x9d\x03\x1e\x6c\x2a\xdc\xf9\x93\xb0\xa7\x7a\xb8\xe2\x4b\x9c\x3f\x6e\x78\xac\x47\x74\x5a\x6f\x54\xd2\xfd\xb7\x7f\xfb\x37\x79\xeb\xd6\x2d\x9f\x21\x60\x93\x3b\x2d\x0b\xd2\xb5\x7d\xb9\xcf\xdb\x18\x0c\xed\x47\x3f\xeb\xaa\x17\x7c\xb2\xe3\x8b\xbb\x29\x8d\xa6\xbc\x3e\xee\xc0\xc9\xed\xa8\xcd\x37\x55\xc0\xfc\xc1\xda\xe2\xde\xfb\x1b\xf1\x8d\x41\x12\x6c\xae\xcf\x83\xcb\x42\x91\x30\xb3\x22\x9a\x09\x80\x4d\x12\x98\xce\x98\x4f\x95\x30\xe7\x33\x15\xb0\x00\x4b\x8d\x1f\x37\x12\x0d\x8e\x92\x48\x8e\x77\xd6\x93\x77\xde\x3b\x37\x7f\x63\x16\x4a\xbd\xf4\x9e\x1b\x82\x7b\x0d\x51\xef\xde\xbd\x8b\x7f\xfe\xe7\x7f\xc6\x60\x30\x90\x7f\xf4\x47\x7f\x54\x37\xdb\xe0\xca\xfa\x7c\x19\xa8\xf1\x8d\x4b\x93\xd7\xce\x4d\xa2\x6b\x97\x4f\xe2\xe7\xc3\x0c\x7d\x5f\x79\xeb\x56\xb6\x96\x33\x00\xbe\x81\xb5\x27\x1c\xbf\x56\xd5\xe7\x6e\x05\x9d\xf4\xd3\xfb\xef\x9d\x9b\xbd\x7c\x77\x63\xf1\xde\x2c\x92\x23\xd8\x07\x98\xf2\x36\x5b\x56\xa7\x52\xf8\xd6\xb7\xbe\x25\xef\xdc\xb9\x03\x9c\xae\xad\x35\xfa\xed\x6a\x9c\xdb\xe6\xbc\x53\x13\x52\x4a\x51\x28\x1a\x41\x55\xaa\xcc\x28\x36\x05\xa4\x49\x98\x9f\x7b\x90\x0a\x35\x8f\x33\x1a\x02\xb0\xe7\x36\x99\x73\x11\x28\x50\x22\x4f\x7e\x72\x34\xf7\x41\x95\x10\xb6\x17\x6e\x65\xed\xdb\x12\xbd\x3c\xec\x9b\x3f\x2c\xfd\x31\x22\x48\xac\x2c\xc5\xe5\xad\x49\x74\xe9\x60\x75\x79\x3f\x15\xbc\x43\x80\xde\xa3\x03\x44\x84\x7e\xbf\x8f\xaf\x1c\x54\x60\xd3\x00\x00\x20\x00\x49\x44\x41\x54\x7e\xf5\xab\xf8\xeb\xbf\xfe\x6b\x5d\x27\xbc\x7e\xb4\xab\x1b\xe5\xd4\x7d\x9b\x2e\x0a\xac\x4b\x9c\x6d\xe9\xf8\xe2\xee\x82\xae\x9b\xe2\x6b\x8a\xab\x29\x8e\x3a\x74\x5e\xf7\xcc\xbd\xef\x4a\xb3\xd7\xf9\x69\xcb\xcf\x69\xc3\x03\x39\xb8\xc7\x37\xbf\xf9\x4d\x21\x84\x90\x9f\xff\xfc\xe7\x71\xf5\xea\x55\xf3\x92\xed\xf9\x62\xda\x5e\x00\x38\x40\xc7\xbf\xd1\xc1\x6b\x39\x4b\x01\x88\x02\x9c\xc4\x0c\x98\x68\xe0\x22\x18\x98\xe1\x32\x5a\x18\x94\xe7\x9b\x27\x16\xcf\xb5\xb3\x80\x0b\x5f\xa5\xa0\xf3\xe0\xfc\xb9\x27\x60\xfb\xfe\x5c\x9b\x95\xc4\x0d\x53\xd3\x49\x58\x75\xfc\xed\x6f\x7f\x5b\x6e\x6f\x6f\x43\xd9\x67\xc4\x74\x71\x6d\xdf\xfa\xe7\xdd\x16\xbb\xe6\xa7\x49\x96\x4f\x9b\x46\xdd\x20\xa0\x4b\xd8\xd3\xfa\x77\xc3\xf2\xbf\x9c\x59\x23\xf4\x67\xb1\x1c\xdf\xd9\x9c\xdd\x5c\x9b\x07\x5b\x51\xd6\x1f\x0c\x96\xc1\x66\xae\x7a\x73\x45\x6a\x80\x07\x67\x01\xd8\x85\x6f\x70\xe9\x63\xc8\xb9\x6d\x63\xc5\x4f\x4d\x24\x04\x42\x4a\x2a\x3d\x1c\xa4\x77\xdf\xdf\x58\xbc\x79\xb0\xb2\xdc\x07\x54\x02\xd8\x2c\x20\x6c\x39\xd6\xe5\x45\xb1\x2a\x50\x4a\x29\x7d\x83\x4b\xde\x66\xb5\xfc\xcf\x41\xe8\x4b\x60\x7e\x38\x58\xee\x5f\x7f\x62\xfc\xa3\x48\xae\x0d\x2e\x8c\xe3\x8f\x86\x12\x31\xd5\x94\xd7\x2d\x03\x79\x9e\xd9\xae\xec\xf0\x2a\x75\xe5\xd4\x8f\x3b\x3d\x35\x8d\xb2\xa3\x3b\x67\xe7\xaf\xbe\x73\x7e\x76\x73\xdc\xcb\x8e\xe0\x37\x92\xf7\x4d\x9d\xe9\x7d\x93\xba\xe8\x73\x8e\x3b\xea\xda\x9d\x04\x6c\xc6\xc5\x0d\x50\x37\x12\x68\x4a\xb8\x02\x7a\x1c\x7a\xca\xb5\x38\x37\x3b\xe8\x4a\x52\xc9\xa8\x9f\xed\x73\xe0\x02\x00\x0e\xa3\xc7\x98\x13\xfd\xda\xae\xf1\x92\xa9\xe1\xc6\xbb\xfe\x78\xdc\xe9\xa4\x92\xe1\x29\x5f\x94\xc8\xdd\x23\x0d\x2e\xf5\x56\x78\x8e\x32\xda\x38\x3f\x8e\xae\x46\xe7\xe8\xcd\x59\x04\xce\xb8\x80\xdb\xb9\x08\x21\xb0\xba\xba\xda\x04\x12\x7d\x4c\x82\xeb\xea\x90\x6a\x1d\x23\xe3\x0b\xe3\x4b\xd7\x17\x8e\xc7\xcf\xe3\xe1\xfe\xba\xb0\x36\x75\x6c\x43\x1b\x0b\xe1\xcb\x87\x97\xad\xf0\xbc\x6b\x03\xe2\x75\x61\xf4\x75\xd3\xbb\xba\x6b\x5f\x1a\xbe\xfc\xd4\x32\x33\xb3\xd9\x4c\x02\x10\xff\xf1\x1f\xff\x81\x4f\x7f\xfa\xd3\xf2\x43\x1f\xfa\x90\x9e\x33\xe7\x7e\xcd\x00\x01\x76\xa7\xaf\xa7\x90\x92\xe2\x3a\x54\xca\xd8\x5d\x59\x2c\x0b\xbb\xd6\xf1\x85\x4c\x56\xf5\x5c\xbd\x70\xc0\x0a\xcf\xb3\xb5\x3b\x36\x63\x46\x4c\x7e\xdc\xd5\x14\x70\xc0\x49\x0d\xb3\x62\x96\x37\xb3\xf8\x0d\x40\x21\x22\x7c\xfb\xdb\xdf\x96\x77\xef\xde\x75\xcf\x1d\xe2\x75\xde\xe5\xbb\x37\xf9\xe5\xba\xf1\x71\x06\x74\x68\x08\xd3\x85\xad\x69\x0b\xd7\x55\x3f\xb7\xa5\xf1\xb8\xe5\xf4\xa5\xe7\x02\x58\xcd\x9e\xe5\xb6\x4a\x84\xf9\xfe\xea\xf2\xe1\xed\x73\xf3\x1b\x83\xa5\xd8\x78\x62\xd4\xeb\xc7\xa9\x18\x54\xa6\xe2\xf9\xe0\x92\x3d\x77\x77\xb7\x75\xf5\x79\xc9\xda\xd8\x8a\xdf\x5a\x06\x8c\xb2\x7f\xe0\x71\x4b\x52\xf2\xa4\x9f\xee\xbc\xbf\xb1\x78\xf3\xfe\xfa\xe2\x4e\x12\xaa\x31\xf2\x55\x6d\x2e\xb3\x50\x01\xd2\xdb\xdb\xdb\x52\x1b\x84\x2f\x16\x0b\x7c\xfd\xeb\x5f\x97\x5f\xfe\xf2\x97\xf9\xc0\x5d\xb7\x0f\xde\x2e\x35\x78\x09\x25\x10\x6f\x9f\x9d\xdf\xe9\xa7\xe2\x27\x42\x51\x7c\x6e\x12\x5d\x0b\x25\xc5\xc6\x9a\xc1\x19\x53\xfb\xea\x44\x31\xbf\x66\x26\xc2\x41\x81\x56\xd9\x89\xc7\xc1\xce\x01\x2c\xa8\x98\x24\x50\xf3\x7b\x67\x16\x37\xde\xda\x9a\xbe\x7a\xbc\x92\x3e\x94\x84\x31\xc8\x5a\xe1\x67\x80\x8b\xb3\x9f\x4b\x9b\xfc\xf8\x64\xac\xad\x1f\xab\x65\x5c\x7c\x91\xb6\x81\x98\xce\x1d\x04\x95\xcb\xc7\xf8\x9c\x58\x2a\x09\xe9\xe1\x20\xdd\x4b\x02\x39\x1a\x2c\xc5\x79\x13\xc0\xb5\x57\x71\xae\x6c\xa6\x04\x16\x1a\x2f\x11\xba\xc3\x96\xb0\x0f\xab\x6f\x6c\x23\x22\x17\x99\x7a\xf9\x16\x70\x7e\x87\xd3\x78\x42\x51\x7f\x63\x16\x5d\x5b\x59\x8a\xe1\xb8\x97\xc5\x52\xb0\xd1\x6c\xae\xa4\xeb\xe8\xec\x2e\x23\x7f\x5f\xe7\xd8\x04\x14\x9a\xa8\xed\xa6\x6f\x55\x17\xa6\x4d\xd0\x9a\xf2\xdc\x86\xac\xdb\xca\xee\x4b\xb7\x2e\xbd\xba\xf8\x9a\x1a\x4b\x5b\x1e\xba\xf8\x6b\xca\xf7\xe3\xa4\x03\x00\x72\x34\x1a\xe1\xbf\xfe\xeb\xbf\xc4\xcd\x9b\x37\xe5\xd5\xab\x57\xf1\xf1\x8f\x7f\xdc\x7a\xcf\x40\x86\xae\xdb\x14\x39\x40\xd1\x20\x44\xdb\x59\x59\xe0\xa5\xf0\xeb\xfe\xea\x6b\xe8\x7b\x62\x1b\x69\x39\xd7\xf6\x36\xe6\xc5\x37\x25\xb6\x92\x44\xff\x7a\x40\x89\x05\x6c\x78\x18\xcf\xb5\xb5\xe4\x54\x29\x25\xbf\xf5\xad\x6f\x01\x00\xee\xdf\xbf\x8f\x34\x4d\xeb\x80\x71\xd3\x33\x5f\x5d\x6b\xbf\x75\xef\xba\xca\x65\x53\xdc\x5d\xda\x5c\x1d\xb8\xad\x93\xfb\xc7\x01\x3f\x6d\xe9\xd7\xc5\xe1\x8d\xf7\xc7\x3f\xfe\x31\x3e\xfb\xd9\xcf\xca\x4b\x97\x2e\xb9\x2c\xa0\x40\xde\xb9\x85\x54\xae\x0e\x8b\x93\x40\x8d\x1e\xac\x2f\xee\xac\x2e\xc4\x46\x2f\x15\xc3\xf3\x93\xe8\x5a\x24\x85\x39\xaf\xc7\x1d\xf5\x93\x8f\x09\x2f\x18\x1a\x72\xe8\x79\xab\x73\xa7\x72\x50\xd9\xc6\xe0\x48\x52\xf2\xa4\x97\xed\xde\x39\x3b\xbf\x7e\xe7\xec\xec\xcd\x93\x7e\xba\xcf\x3a\x69\xce\x2e\x70\xf9\x36\x6e\x3e\x9f\x63\x34\x1a\x49\x00\x42\x4a\x29\xf7\xf6\xf6\x34\x68\xe1\xdf\x2f\x2d\xda\x25\x67\x19\xa7\xc8\xdb\xdc\x74\x11\xaa\xa3\xdb\x9b\xf3\x77\xa3\x4c\x0c\x9e\xc5\x8a\x38\x37\x8d\xae\x44\x99\xe8\x9b\x4c\x73\xbb\x16\x5f\x99\xd9\x2f\xaf\x33\x5e\x45\x75\xec\x15\xdf\x0f\x0d\xa4\xb0\x08\xd5\x78\x67\x7d\x71\xf3\x8d\x8b\xd3\x97\xf7\x86\xc9\x83\xa5\x50\x63\x90\xd9\x4b\xa9\x02\x5a\x5c\xc0\xf2\xc3\x1f\xfe\x50\xee\xed\xed\xa1\xc6\xb5\x0d\x18\xe0\x79\x2e\x01\x20\x60\x0f\xdc\x9e\xd4\xbd\x17\x28\xab\x4c\xb2\x7b\xed\xd7\xb5\x91\x05\x11\xd1\x27\x3f\xf9\x49\x10\xe9\xe5\x3a\xd0\x69\x8a\xe2\x37\x00\x10\x15\x7f\x31\x40\xbd\xa7\x1f\xf5\x9f\x1d\x2c\x83\x2d\x02\x84\xb5\x03\xa2\x05\xc3\x19\x7c\xe1\x31\x3b\x68\xd3\xf5\x5f\x2e\x81\x66\xe1\x08\xc8\x8d\x7f\x35\x44\xc9\xfd\x6b\xc4\x69\x6c\x60\x9c\x25\xd2\x7a\x73\x23\x17\xed\x16\xfe\x85\x02\x16\x07\xab\xcb\xb7\x4e\xfa\xd9\x7e\x1a\xa8\x05\x4a\x23\xc5\x0c\xb9\x12\x56\xc5\x47\x56\xc3\xe1\x10\xf7\xef\xdf\x27\xc9\xf6\x22\x77\xea\x5d\x3f\x77\xeb\x9b\x7f\x03\xf7\xbd\xfb\xcc\xfd\x5e\xae\x3f\xee\x7c\xcf\xf9\x33\x37\xdd\x2e\x61\xdc\x7c\xd4\xa5\xcd\x9d\x2f\x9d\xb6\x77\x6d\x61\xba\x28\xf2\xa6\x38\x3e\x88\xf3\xc5\xdb\x39\xad\xf9\x7c\xae\x8e\x8f\x8f\xd5\xc9\xc9\x09\x01\x50\x5b\x5b\x5b\x5a\xd2\x75\x78\xc9\xee\x15\x4a\x10\xa1\x65\x2e\x2b\x94\x65\x06\x60\x59\x5c\x2f\x51\xae\x92\xe0\xab\x26\x16\x6c\x25\x4f\x42\xc5\x88\x93\x88\x16\xb0\xf7\x57\x59\x00\x98\x11\xd1\x82\x88\x66\x00\x66\x00\xb4\x9f\x59\xf1\xbb\x60\xcf\xf9\x2a\xa1\x45\x91\xde\x92\xfd\x72\x26\x26\x53\x4a\x65\x00\x4c\x5b\x39\x39\x39\x91\x3f\xfa\xd1\x8f\xd4\x9d\x3b\x77\x70\xeb\xd6\x2d\x79\x7c\x7c\xac\xa4\x94\x6e\x5b\x20\xcf\x75\x93\xfc\xba\x32\xe9\xfa\xff\x79\xc8\x42\x9d\xdc\x37\xc5\xed\xe6\xa1\x4b\x7b\xf5\x95\x9d\xa7\xcf\xf3\x83\x0e\x7e\xeb\xea\xa9\x22\xb7\x93\xc9\x44\x5d\xbd\x7a\x95\xce\x9e\x3d\x5b\xe0\x0c\xd3\x0d\x08\xa5\x14\x11\x91\xd6\xfd\xb9\xfe\x27\x04\x69\x7e\x42\xf2\x12\x00\x7a\xa9\x58\xe9\xa7\x62\x90\x6f\x42\x9a\x27\xcd\xb7\xaa\xe0\xbd\xac\xd5\x49\x6b\x66\x05\x54\x65\x1d\xc0\x19\x16\x7b\x3b\x0b\x00\xe5\x14\xbf\x02\x14\x29\x8c\x7b\xd9\xc1\x9d\xcd\xf9\xf5\x77\x2e\xcc\x5e\xdb\x5b\x5b\xbe\xbf\x0c\x30\x02\xe1\x04\xf9\x26\x88\xb3\x42\xc6\xb5\xdc\x6a\x7d\x9e\x29\xa5\xe4\xdd\xbb\x77\xe5\xeb\xaf\xbf\x8e\xf1\x78\x6c\xf5\x87\xe3\xf1\x18\x97\x2f\x5f\x56\x41\x10\x98\x7a\x2f\x58\x78\x62\x83\x00\xd2\x75\x02\x02\x2d\x03\xa5\x66\x91\x9c\x65\x42\x2d\xc3\x4c\x84\x71\x46\xfd\x40\x52\x2f\x9f\x49\xc8\x0b\x67\x36\xd8\xab\x19\xdc\x17\xb5\x5f\x02\x16\x5d\x0f\x55\xfc\xc7\x66\x1b\x0a\xc5\x41\x4a\xce\x22\x79\x7c\x6f\x63\xf1\xe6\x8d\x8b\xd3\x9f\xde\xdf\x58\xdc\x5a\x84\xea\x08\xf9\x59\x61\x13\x54\x77\xb2\x5e\x16\x3a\x24\x2b\xfe\x24\x00\xbc\xf8\xe2\x8b\xaa\x00\x72\xba\xec\xae\x8c\xb9\xe0\xbc\xad\x6f\x02\x60\x03\x97\x36\x57\xd7\xe9\xd5\x75\x9e\x00\x40\x52\x4a\x5c\xbc\x78\x51\x15\xc0\xc0\x7c\x2c\xa5\x54\x80\x72\xd4\x17\x29\xa0\x27\x09\xe1\xd5\xe3\xde\xb5\xf5\x45\x78\x25\x50\x14\xf9\x0c\x74\xb9\x40\x5b\x3b\xe6\xea\xe7\x1c\x98\x14\xa1\x0b\xf0\x58\xb1\x94\x36\x31\xb1\x8f\x69\xe1\x20\x2e\x0c\x36\xe3\x68\xc3\x54\xd7\x6f\xf1\x6f\x16\xc9\xf7\xf7\x87\xc9\xfd\x45\xa4\x26\xc8\x11\xe9\x52\x77\x22\x2a\x6f\xd5\x8a\x88\xe4\xf9\xf3\xe7\xf1\xda\x6b\xaf\x21\x4d\xd3\x26\x65\x5a\x57\xd7\xc2\xf3\x4b\x9e\x67\xae\x70\xf8\xfc\xf9\xd2\x68\x53\x78\x6e\x9c\xbe\x5f\xee\xc7\xc0\xc5\x9a\xfc\xf0\x3f\x59\x13\x17\x50\x2d\x03\xcf\x1b\x79\xde\xd7\x8d\x1c\x2d\x08\xeb\x94\xcd\x8d\xbf\x4b\xd8\x26\xd7\xf4\x7d\xdd\xba\xf2\x95\x01\x00\xc4\x7c\x3e\x97\xa3\xd1\x88\x66\xb3\x99\x3a\x38\x38\x50\x17\x2f\x5e\x24\x95\xf7\x0c\x0a\x80\x9e\x46\x51\x44\xa4\x94\x52\x59\xd1\xe9\x67\x00\x32\x06\x5e\xb4\x92\xd1\xd7\x4b\xfe\x57\xc8\xaa\x56\xd0\x09\xf2\x65\xcc\x09\x80\x85\x52\x6a\x51\x00\x95\x45\xf1\x7c\xae\x94\xd2\xa0\x64\x81\x72\x59\xf3\x02\xb9\x92\xe7\xf1\x24\x45\xf8\xa4\x48\x43\xa7\xc9\x19\x18\xad\xfc\x54\x31\x2d\xa6\xf6\xf6\xf6\xe4\x8d\x1b\x37\xd4\xf6\xf6\x36\xde\x7a\xeb\x2d\x79\x70\x70\xd0\x04\x56\xea\x3a\xf2\xba\xef\xe0\x53\x9c\x70\xfc\xf8\xda\x0a\x7f\x5f\xd7\x7e\x7c\x69\x76\x0d\xdb\x76\xef\xe6\xcd\x4d\xa7\x09\xc4\x48\xc7\x6f\x5d\x38\x5f\x67\xe2\x9b\x62\x52\x00\x20\xa5\xa4\xe1\x70\xa8\x86\xc3\x61\x3e\xe5\x50\x28\x5d\x36\x78\xd5\xf9\x0d\x00\x90\x22\x50\x12\xca\x6c\x16\xa9\x44\x12\xd2\x5e\x26\xfa\xbd\x54\xac\x06\x8a\xf2\x05\x1a\x8a\x75\xc4\x45\xae\xcc\xb8\xd4\x1d\x74\xf2\x0e\x59\xe3\x13\xad\x71\xb4\xfe\x67\x7a\x9c\xeb\xfc\x4c\x28\x39\xee\x65\x7b\xdb\x67\xe7\xaf\xbf\x7d\x61\xfa\xda\xee\x5a\x72\x27\x71\x3a\x6a\x2a\xcf\xcb\x9a\x23\x97\x59\x23\xa7\x00\xd4\xed\xdb\xb7\xd5\x9b\x6f\xbe\xc9\x65\x89\x00\xc8\x83\x83\x03\xfa\xa5\x5f\xfa\x25\x44\x51\x54\x76\x1f\xac\x6e\x74\xbd\x14\x8c\x68\x5e\x4f\x04\x4a\x02\x99\x4d\x62\x39\x4d\x42\xb9\x10\x8a\x10\x67\xa2\x17\x4a\x8a\x85\x22\x61\x95\x53\xf7\x8d\x1a\xb4\x81\x29\x26\xeb\x46\xa7\x0d\xcb\xd9\x46\xbb\x0a\xa9\x50\xc9\xb8\x27\x0f\xef\x9e\x5d\xbc\xf5\xd6\xc5\xe9\xcb\x77\x37\x16\xef\x16\xa0\xe5\x44\x29\x35\x21\xff\x69\xec\x4b\x14\x03\x8d\xa2\x8f\xc3\x2b\xaf\xbc\x22\xef\xde\xbd\xcb\xfb\x35\xde\x7e\xf8\x80\xc2\x7d\x66\xc9\x94\xcf\xb5\x9d\x55\x54\xe7\x9a\xfc\x98\x77\x4a\x29\xf9\xd2\x4b\x2f\xe1\xf9\xe7\x9f\x17\x41\x10\x58\xf3\xe2\xe4\x59\x61\xb4\x0c\x64\x32\xea\x67\xbb\xa9\x50\x49\x94\xd1\xc0\x8e\x36\x2f\x57\x01\x3d\xac\x3b\xa0\x64\x40\x72\x01\x55\x4c\xb2\xb5\x07\x07\x78\x94\x8f\x8b\xfc\xf0\xa4\xf2\x2f\x59\xd6\x64\x79\xcc\x00\x3f\x94\xca\x6c\x6e\x54\x54\x37\x3f\xe0\x2a\xcc\x68\xfd\xfc\x34\xba\x36\x48\x82\xf5\x51\x2f\xdb\x97\x64\xdb\x10\xb0\xba\x38\x2d\x9d\xeb\x3a\xdf\xf4\x8b\xef\x1d\x3a\xf8\xe3\xd7\xee\x54\x4e\xdd\x54\x90\x3b\x05\xd4\x94\xae\xfb\xac\xe9\xb9\xeb\xba\xd2\xeb\x5d\xdf\xf1\x67\xa7\x99\x46\xe8\xf2\xae\x8b\x7b\x9c\x29\x25\x73\x7f\x7c\x7c\x8c\x97\x5e\x7a\x49\xf6\xfb\x7d\x21\x84\x90\x00\xf0\xdc\x73\xcf\xa1\xd8\x46\x43\xb7\x2f\x73\xc8\x27\x4a\x50\x67\xf6\x13\xa2\xd2\xb8\xd7\xbc\x83\x2d\x9f\xa2\x88\xcb\xbc\x77\xf7\x65\xd0\xd3\x44\xec\x19\x9f\x2a\xe2\xf9\x97\xfc\x9d\x8f\x56\xe6\x7e\x74\x3a\x0f\x1e\x3c\x90\x07\x07\x07\xd8\xdd\xdd\xc5\x3b\xef\xbc\xd3\x65\x7a\x44\xe7\xdb\x4d\xdf\x05\x28\x6d\xdf\xdb\x17\x47\x9d\xab\xfb\x5e\x75\x69\xf2\x69\x83\xb6\x6f\x2d\x9c\x5f\x5f\xda\x82\xdd\xd7\xe5\xdb\x4d\xbb\xc9\xb5\x95\xa7\xf6\x3b\xdc\xbe\x7d\x5b\x5e\xbe\x7c\x59\x5c\xbc\x78\x11\x00\xe0\x7c\x67\xcd\xea\x85\xc8\x3b\xbc\x10\x40\x98\x09\x84\x8f\x06\xcb\x07\x52\x28\x64\x42\xc9\x54\xac\xa4\x17\xc6\xd1\x53\xbd\x54\x0c\x84\x75\xd6\x0f\x1b\x98\xfa\x55\x7c\xf5\xba\x18\x94\x82\x14\xeb\x3d\x00\x1d\x89\x02\x21\x15\x32\x39\xee\x67\x3b\x77\x37\xe6\x37\x6f\x9d\x9f\xdd\x78\x38\x4c\xee\x14\x1d\xf5\x54\x29\xa5\xcf\xca\x72\xa7\x89\xac\xbf\x87\x0f\x1f\xca\x9d\x9d\x9d\xda\x3a\x7c\xf3\xcd\x37\xc5\x2f\xfe\xe2\x2f\xca\x5e\xaf\xa7\xdb\x93\xae\x0f\xa1\xeb\x85\x88\xa6\x6c\xdb\x0c\x91\x91\xc2\xa8\x9f\x62\x19\xc8\x74\x1e\xc9\xf9\x34\xce\xa6\x97\x8f\x7b\xd7\xd6\xe7\xc1\x56\x9c\x89\xbe\x80\xd9\xe5\x1a\xac\xfb\xab\x76\x74\x8a\x81\x3e\x1f\xd3\xc2\x58\x96\x79\x28\xc7\x47\x2b\xe9\xee\x83\x33\xc9\xed\xdb\x67\x67\x6f\xee\xac\x27\x77\xd2\x40\x8d\x00\x8c\x51\x82\x37\x0e\x5a\xac\x15\x83\xac\xdd\xe3\xfa\xf5\xeb\x28\x6c\xf4\xb4\x6b\x93\xcd\x3a\x57\x91\xfd\xb6\xb3\x8a\xdc\xc0\xdc\x8f\x70\xae\x9b\x1a\x57\x65\xe5\x01\x37\xe2\xd1\xf3\xd9\x8a\x90\x1e\x0e\x96\xbb\xcb\x40\x8d\xfb\x4b\xac\x93\xf9\x30\x80\x0b\x39\x5c\x00\x52\x32\x32\xfc\x9c\x14\xe8\x87\x0c\xa6\xa3\xfa\x1c\xb0\x61\xa7\x01\x40\x3a\xea\xf2\xac\x24\x0d\xf9\x39\xa0\xd1\x52\xa1\x69\x48\x52\x80\x00\xe2\xb5\x79\xf0\xd4\xc6\x2c\xdc\x3a\x1c\xa4\xf7\x17\x91\x1c\x17\xf5\x13\xb2\x79\x5f\x53\x5f\x4f\x3f\xfd\x34\x6e\xdd\xba\x25\x96\xcb\x25\xaf\x27\xb7\x5e\x1f\xb7\x73\x07\xaa\xdf\x4f\x3f\x6b\x13\x2c\x9e\xb6\xef\xfb\xba\xe1\xeb\xf2\xf1\xb8\x80\xb8\x4d\x1e\xbb\x74\x48\x75\xfe\xba\x80\xb1\xa6\x67\x6d\xe9\x9c\xc6\x6f\xdb\xb7\xf3\xd6\xcb\x7c\x3e\x37\xc6\x80\xbd\x5e\x4f\x04\x41\x20\x01\xe0\xe2\xc5\x8b\x58\x5d\x5d\xad\xf8\xe7\x8a\x91\x81\x10\x73\x0f\xd8\xf6\x2c\x70\x3a\x45\x72\x35\x5f\x35\x7e\x17\xc4\xe8\x5f\x73\xed\xfa\x71\x0c\xf6\x01\x00\x0f\x1e\x3c\x90\xf3\xf9\x1c\x6f\xbd\xf5\x16\xde\x7f\xff\xfd\x2e\xf5\xd9\x05\x3c\xd4\xf9\xe5\xf2\xe0\xfa\x69\x02\xf9\x8f\x9b\xa7\xba\x78\x9a\x64\xe7\x71\x40\x74\x53\xd9\xdb\xe4\xd4\xd7\x5e\x3a\xb5\xad\x83\x83\x03\x1c\x1e\x1e\xca\xcd\xcd\x4d\xae\xf7\xf5\x26\x8a\x1a\xbc\xf0\x4e\x3a\x94\x02\xe2\xa8\x9f\x3e\x48\xcf\xcd\x96\x8b\x50\xcd\xa7\x51\x6f\x7c\xf1\x24\xbe\x36\x4c\xc2\x8d\x50\x22\x06\xec\x81\x6a\xc9\xa8\xa8\x62\xc0\x48\x9e\x4e\xa1\x50\xd9\x54\xea\x70\x33\xa4\x27\x05\x49\x90\xcb\x40\x4e\xf7\x57\x93\xbb\x77\x36\xe7\x6f\xde\x39\x3b\x7f\xe7\x70\x90\x3e\x48\x85\x3c\x42\xd1\x41\x6b\x96\x45\x95\xbb\x37\x5b\x1b\xad\x69\xd9\xbd\x7d\xfb\x36\xee\xdc\xb9\x53\x5b\x9f\x2f\xbe\xf8\xa2\x7c\xfa\xe9\xa7\x45\xbf\xdf\x87\x23\xef\x7a\x79\x35\x90\xb7\xaf\x29\xca\xc1\x83\x00\x20\x66\xb1\x94\x77\xcf\x2c\xd2\x49\x2c\xc7\x47\x2b\xe9\xfe\x13\xa3\xf8\xda\xf9\x71\x74\x79\x98\x84\x1b\x51\x46\x7d\x91\x4f\x3b\x95\xf3\x0f\x7c\x20\x6d\xfa\x30\x5d\x1b\x6c\xd0\x81\xbc\x0f\xcb\xeb\x41\xcd\x4f\x7a\xe9\xd1\xde\x70\x79\xf7\xde\x99\xc5\xad\x07\xeb\x8b\xed\xe3\x7e\xf6\x30\x0b\xd4\x18\x39\x68\xd1\x7f\x2e\xd3\x92\xa0\x6a\xdf\x22\x6f\xdd\xba\x85\x34\xb5\x56\x46\xeb\xf2\x6a\x77\x1a\x5d\x5f\x09\xe7\x4e\x15\xf9\xa8\x49\x4e\xe9\x70\x6a\xdb\x85\x03\xca\x09\x6b\xdc\x0b\x2f\xbc\x40\x61\x18\xe6\xcc\x55\x49\x87\x09\xe4\x53\x45\x01\x80\x48\x29\x15\x01\x14\x91\x42\x74\xf5\xa8\xff\xd1\x95\x7c\x79\x5c\xa0\xc5\xd5\xe5\x91\xac\x67\x4a\x19\xe1\xe4\xec\x9b\xbb\x14\x4e\x07\xe4\x54\xa3\xf9\x94\x44\x76\xdc\x0c\xa1\x6b\x10\x93\xff\x51\xd9\x08\xcc\x43\x94\xbf\x26\x8d\x9c\xc8\x9c\xc5\xf2\xee\xe1\xea\xf2\xfe\x3c\x07\x2e\xa9\x52\xca\xb2\x73\x29\xa6\x8c\xe4\xb5\x6b\xd7\xf0\xce\x3b\xef\x60\x3e\x9f\xf3\x8f\xe4\xa3\x68\x95\xe7\x97\x3b\x3e\x85\xe1\xd2\xbf\x92\x3d\xaf\x03\x2d\x6e\x78\x97\x4e\xae\xa3\xaf\x85\xe3\x0f\x8e\x5f\x9e\x6e\x1d\xfd\xed\x52\x85\x6e\x19\x78\x5a\x12\xf5\x62\x51\x17\x37\x17\x1b\xaa\x09\xe3\xcb\x87\xf2\xdc\xbb\xf9\x69\x2a\x43\x1d\x05\xea\xab\x13\xb7\xdc\xba\x5e\x9b\xd2\x07\x00\xdc\xbe\x7d\x9b\x6e\xdd\xba\x25\x6f\xdd\xba\xa5\xfa\xfd\x7e\x2e\xc6\x44\x2a\x8e\x63\xe8\xa9\xa4\x42\xd9\x2a\x22\xca\x8a\xa9\x25\x09\x40\x4f\x29\xe9\x69\x25\x3e\x65\xa3\x95\x52\x56\xc8\x6e\x65\x55\x90\x9e\x76\x2a\xe2\xe0\xf3\xdc\x29\xfb\x35\xab\x83\x8a\x74\xf5\x3c\x78\xa6\xa7\xb4\x76\x76\x76\xd4\x78\x3c\x56\xe3\xf1\x58\xfd\xe8\x47\x3f\xc2\xf5\xeb\xd7\xe5\x68\x34\xaa\x93\x73\xb7\xfe\xdb\xea\xd8\xf7\x9d\xb5\x5f\xdd\x0e\xb8\x8e\xf3\xd1\xd7\x95\x3a\x6f\xc8\x93\xef\xba\x2d\x2f\x4d\x72\xc7\x9f\x35\xb5\x21\xb7\xbd\xd6\xe5\xb1\x0d\x80\xd5\xe9\x89\x26\xbf\x00\xa0\x0e\x0e\x0e\x54\xaf\xd7\xa3\x27\x9f\x7c\xd2\x6a\x67\x0c\xac\x52\x71\x5f\x19\x8d\x26\xa1\x4a\x47\x2b\xe9\xc9\x71\x3f\x3b\xce\x02\x35\x0f\x25\x85\xa1\xa4\x50\x80\x82\x22\x05\xd2\xf4\x39\x11\x8a\xf3\xb3\x6a\xc1\x74\x99\xb8\xa6\x69\x00\x48\xca\xb7\xdf\x18\xf7\xb2\xc3\x07\xeb\xc9\xad\x37\x2f\x4e\x7f\xf6\xce\x85\xd9\xcd\xe3\x95\x6c\x47\x0a\x8c\x40\xc4\x3b\xe9\x29\x72\x1b\x2e\x6d\xab\x95\x20\xb7\xe7\x30\x3a\xfc\xe8\xe8\x48\xde\xb9\x73\x07\x8f\x1e\x3d\x6a\xd2\x57\x6a\x6b\x6b\x8b\x86\xc3\xa1\x0a\x43\xc3\x17\x28\x56\x31\x56\xd8\xc2\x26\x48\xb7\x4f\x64\xa4\xb2\x59\x2c\x67\x8f\x56\x96\xc7\x47\x2b\xd9\xa3\x79\xa4\x4e\x14\xa9\x0c\xf9\xa1\xec\x92\x14\x99\x9e\xa8\x2c\xb8\x33\x4a\x2f\xbb\x33\x48\x82\x4c\x03\xb5\x9c\x47\x6a\x32\xea\xa7\x87\xbb\x6b\xc9\xf6\x7b\xe7\xe6\x6f\xbc\x7d\x61\x76\xfd\xde\xc6\xe2\xf6\xa4\x27\xf7\xa5\xc0\x18\xc0\x09\xf2\xa9\xb2\x13\x5d\x1f\x4a\xa9\x39\xf2\x29\x62\x3d\xcd\xab\xa7\x87\xa4\x94\x32\xdb\xd9\xd9\xc1\xbf\xfe\xeb\xbf\xba\x06\xf3\xbc\x3e\x80\xfa\x7a\x6a\x6b\x23\x0a\xa8\x9f\x2a\x02\xaa\x9d\x1a\x7f\x56\xe7\xc7\x1b\x66\x34\x1a\x61\x73\x73\x53\x16\xc6\x49\x86\x69\x81\xbb\x57\x83\x42\xfa\x68\x90\x8e\x4e\x7a\xe9\xee\xc6\x2c\x78\x26\xc8\x4a\x0b\x73\xcb\x7a\xba\x80\x93\x25\x41\x62\x4f\xe1\xe8\xd2\x59\xd4\x20\xa7\x50\x00\x6b\x37\xc6\x32\x0d\x7e\x5d\x02\x1f\xc5\xb7\x27\xd4\xcb\xc5\xac\x47\x7a\x7b\x64\x7b\x65\x52\x28\xc5\xc6\xb9\x49\xf4\xd4\x6a\x12\x6c\x3c\x5a\x49\x77\x41\xa8\xec\xe9\xc2\x29\x79\xf8\x15\x44\x17\x96\xe3\xb4\xac\x4c\x53\x9c\xa7\x41\xc5\x6d\x8c\x81\x6f\xc4\xe9\x8b\xaf\x6b\xde\x9b\xe2\xad\xf3\xe7\x8b\xfb\x34\xcc\x55\x17\xe6\xa9\x6e\x04\xff\x41\xea\x84\xa7\xd9\x25\x9f\xd6\xfd\x8b\x2f\xbe\x28\x01\xe0\x13\x9f\xf8\x84\xf8\xf8\xc7\x3f\x2e\x01\x20\x08\x02\x68\xdb\x03\x4f\x3a\xf0\x5c\x6b\x86\x06\x80\x91\x55\x6b\x45\x9c\x33\xfd\x0b\xc0\xde\xe6\xdb\x61\x57\xac\xf7\xcb\xe5\x52\x4e\xa7\x53\x13\xe7\xdf\xff\xfd\xdf\x77\x61\xc4\x7c\x32\xd7\xa5\x8e\x4e\xc3\x94\xb8\xe1\x4f\xc3\x4e\x9c\x46\x16\xdc\xb0\x5d\xe3\xee\xda\x26\xdb\xd2\xa9\x63\x2b\xdd\xfa\xaf\x8b\xa3\x36\xce\xc5\x62\x81\xd9\x6c\x26\x57\x56\x56\x78\x1e\x53\xe6\x87\xff\x96\x8e\x20\x93\x40\xc9\x87\x6b\x49\x72\x34\x48\x8f\xf6\x57\x97\x3b\x1f\x3a\x5c\xf9\xd8\xe6\x24\xbc\xb4\x9a\x04\x1b\xbd\x54\x0c\x42\x89\x90\x58\xdf\x95\xab\x7e\x2d\xa3\xbc\xb7\x53\xe6\xbf\x12\x90\x19\x29\xb9\x14\x2a\x99\xc6\xd9\xe8\xd1\x20\xdd\x79\xb0\x9e\xdc\x7e\xff\xec\xfc\xd6\xc1\x60\xb9\x57\x2c\xf1\x9d\x02\x18\x2b\xa5\xc6\x44\x34\x56\xe5\x89\xe4\xda\x98\x9c\xaf\x9e\x31\xa9\xbc\xf4\xd2\x4b\xfa\x1c\x1e\xd7\x59\xdf\xeb\x7b\xdf\xfb\x9e\xfc\xc2\x17\xbe\x20\xae\x5d\xbb\x26\xe3\xd8\x74\x6d\x1a\xd0\x5b\x75\xc8\xda\x92\xee\x2f\x53\x05\xa4\xf3\x50\x26\x0f\xd7\x92\xe9\xe1\x60\xb9\x77\x77\x23\xdc\xbe\x74\xd2\xbb\x7c\x6e\x12\x5e\xda\x98\x85\xe7\x57\x93\x60\xbd\x97\x8a\x41\x24\x29\x16\x92\x04\x01\x82\x8a\x93\xdf\x15\x29\x29\x49\xa5\x92\x20\x33\x42\x9a\x84\xd9\x7c\xdc\xcb\x8e\x0e\x57\xd2\xdd\xbd\xe1\x72\x67\x6f\x98\xec\x8c\x56\xd2\x83\x24\x90\x63\x95\xdb\xac\x4d\x09\xa4\xa7\xca\x34\x80\x33\x6c\x0b\x95\xc7\x6f\xe8\x41\x89\x24\x22\xb9\x5c\x2e\x79\x3b\x36\xf2\xe0\xd4\x87\xcb\x70\xfa\xde\x5b\xf5\xe1\x86\x75\x81\x4b\x9b\x52\xae\x53\x24\xae\x3f\xeb\xfe\xeb\x5f\xff\x3a\xbe\xf2\x95\xaf\xe8\x83\xe3\xcc\x7b\x46\x2f\xe5\x00\x86\x90\x2e\x02\x39\x3d\x1a\xa4\xf7\x2f\x9d\xf4\xa6\x51\x86\x81\x28\xe2\x37\xcb\x8e\xf5\x35\xfb\xce\x9a\x3d\xb1\x58\x16\xee\x4a\x0f\xe5\x23\x46\xa1\x71\x02\xcd\x80\x15\xe4\x53\x3f\x86\x86\x34\xe1\x74\x40\x06\xa4\x2a\xeb\xd0\xf2\x6b\x21\x55\xbc\xb6\x08\x9e\x5a\x9f\x85\x5b\xbd\xd5\x64\x7b\x11\xa9\x29\xeb\x08\xb4\x31\x96\xa9\xef\x28\x8a\x40\xb9\xe1\xb2\xef\xa3\xba\xca\x84\xbf\x6f\x52\x4a\x6e\x87\x8b\x0e\x7e\xdd\x67\x6e\x3a\x75\x9d\xb8\x7b\x0d\x27\x8e\xa6\xf2\xb8\x4e\xbf\x6b\x53\xa2\x5d\x46\x84\x6e\xde\xba\xc6\xd1\x2a\xdb\x2d\xf1\xb4\x0d\x02\xdc\x3a\x76\x9f\x37\xe5\xa1\x4b\x9a\xe2\xfa\xf5\xeb\xf2\xfa\xf5\xeb\x02\x80\xbc\x78\xf1\xa2\xf8\xd2\x97\xbe\x64\xc5\x15\x45\x91\x13\x6d\x09\x2c\x0a\xf9\xb4\xd2\x75\x40\x49\x05\xb0\xbb\x4a\x9d\xbf\xcf\xb2\xcc\x5a\x38\x77\xef\xde\x3d\x7c\xfb\xdb\xdf\x6e\x93\x81\x2e\xae\x49\x46\xdd\xf7\x70\xde\xd5\xd5\x5d\x13\x30\xf5\xa5\xcd\xef\xdb\x80\x67\x5b\xdc\x6d\x03\x02\xd7\x75\xf1\xdf\x54\x06\xdf\xfb\x3a\xd9\xac\x4b\xd3\xea\x1b\x6e\xdc\xb8\x21\xd3\x34\x15\xbf\xf1\x1b\xbf\x81\x30\x0c\xb9\x5c\xe8\xa9\x22\x67\xa0\x57\xa6\xa1\xa0\x24\x04\xa5\x73\x92\xc9\x3b\xe7\x67\xb3\xfb\x67\x16\xbb\x17\x4e\xa2\xad\x4b\x27\xbd\xcb\x17\xc6\xf1\xe5\x33\xf3\xe0\x7c\x3f\x15\xc3\x30\xa3\x50\x28\x0a\x85\x44\x28\x90\x9b\x15\x18\x8a\x8a\x00\x05\x25\x33\x81\x34\x0d\xd4\x3c\x09\xe4\x7c\x1a\xc9\xf1\xd1\x60\xb9\x7b\x7f\x3d\xd9\xbe\x7f\x66\x71\xf7\xb8\x9f\x3e\x92\xc2\xb0\x08\x53\x82\x99\x1e\xd2\xbb\xe4\xea\xce\x9a\xaf\xba\xd3\x9d\x35\x00\xc8\x34\x4d\xb9\x4c\x37\x0d\x40\x01\xe4\xe0\xe5\xf3\x9f\xff\xbc\x78\xf6\xd9\x67\xa1\x07\xf2\x2c\x3e\xab\x1e\x8a\x77\xd2\x61\x3a\x13\x00\xe9\x32\x54\xc9\xde\x70\x39\xdf\x5f\x5d\xee\x85\x8a\x6e\xae\x2d\x82\xe1\xb9\x49\x74\x7e\x73\x12\x6d\xae\x2d\x82\xf5\xfe\x32\x18\xc6\x92\x62\x21\x11\x2a\x00\x69\xa0\x92\x24\x90\xf3\x79\x24\xa7\xb3\x50\x4e\x8f\x57\xd2\xa3\xfd\xe1\x72\xf7\xb8\x9f\x8e\x93\x40\xe9\x93\xd9\xe7\x4a\x61\x4e\x79\x1d\xe8\xf2\x9b\x7a\x28\x98\x16\x33\x65\x56\xfc\xea\xfe\x5b\x2a\xa5\x64\x61\xea\xd0\xe6\xea\xfa\xa2\x26\x90\xc3\xc3\x36\x70\x6c\x65\xa0\xba\x48\x9a\x94\x6d\xc5\x7d\xe5\x2b\x5f\x11\x1b\x1b\x1b\xba\x23\xe2\x3b\x78\x0e\x00\x0c\x95\x52\x43\x22\xda\x00\xb0\xf1\x0b\x0f\x07\xbf\xfc\x6b\xdb\x6b\x5f\x39\x3b\x8b\x9e\x0a\x14\x85\x1a\x59\xe4\x6c\x5f\x95\x2a\xa9\x70\xc2\x1c\x89\xb4\x39\x87\xa9\x71\xe3\xab\x0b\x62\xf3\x59\x9c\xdf\xb1\xfd\xcd\xc3\xec\xee\x9b\x5b\xd3\xbf\xbd\x7e\x79\xf2\xdd\x83\xd5\xe5\x5d\xd8\xf3\x84\x95\x6d\x92\xff\xf1\x1f\xff\x51\xde\xbb\x77\xaf\xcb\x08\xea\x7f\xdc\xff\xb8\x0f\xec\xbe\xfa\xd5\xaf\x8a\xe1\x70\x68\xc9\x98\x03\x5c\x00\x7f\x9b\xaf\x74\x5c\xba\x73\x62\x80\xc7\x8a\xf7\x3b\xdf\xf9\x8e\xcf\xc0\xf6\xff\xcf\xae\x8d\xc5\x78\xdc\x38\x3e\x48\xb8\x36\x16\xe5\x83\xb8\xd3\xa6\x89\xa7\x9f\x7e\x5a\xfc\xce\xef\xfc\x8e\xd6\xfb\xf9\x20\x34\x3f\x82\x22\x44\x7e\x7e\x96\x3e\x47\xab\x8f\xbc\x2f\xd0\xbf\x03\xa5\xd4\x80\xf2\xdd\x9d\x07\x00\xfa\xa4\xb0\x32\x48\xc4\xe0\xfc\x24\x3e\x7f\x6e\x12\x6d\x0e\x17\xc1\xfa\x60\x29\x86\xfd\xa5\x18\xf6\xd2\xa0\x2f\x14\xf2\xf3\xb3\xa0\x20\x09\xe9\x32\x90\xc9\x24\xce\x46\xc7\x2b\xe9\xd1\xa3\x95\xf4\xf0\xd1\x20\x3d\x1c\xf5\xd3\x51\x12\xaa\x09\xca\x5d\x5f\xad\xce\x19\xd5\x65\xbe\x7c\x9b\x7f\xdd\x51\x9b\xbf\x7f\xfc\xc7\x7f\x84\xa3\xaf\xdb\xea\x0a\x00\xf0\xd9\xcf\x7e\x56\x3c\xff\xfc\xf3\xbc\x5e\x04\xec\x8d\x20\xfb\xec\x4f\xd7\xd1\xc0\x7d\xa6\x94\xea\x53\xb9\x23\x76\x08\xa0\x17\x64\x08\x43\x29\xc2\x40\x51\x28\x8a\xce\x2c\x23\x25\xd3\x40\xa5\xa9\x50\xa9\x22\x2c\x8b\xbc\x55\x8e\x1d\xf0\xfc\xf1\xbe\xaa\xb2\x77\x0b\xaf\x8b\xa3\xa3\x23\xfc\xcd\xdf\xfc\xcd\xff\x96\xf6\xdd\xe5\x74\xe8\xa6\xd1\x81\x0f\x95\x6b\xe7\xfd\x70\x0c\x65\xeb\x02\x9b\xcd\xa7\x0a\x64\x29\xf7\x86\xc9\xc3\x49\x2c\xf7\xd7\x17\xea\x92\xc8\x28\x24\xcb\x8a\x81\x4f\x05\x15\x8f\x4c\xdc\xce\x03\xaf\x2b\x38\x15\xcb\xd2\xc1\x99\x0b\x54\x2e\xa3\xe3\x61\x71\x74\x28\x05\xdf\xa8\xc1\xe4\x25\x92\x62\xe3\xfc\x34\xba\x36\x5c\x04\xe7\x0f\x56\x97\xbb\x28\x37\xa2\xb3\x8c\x74\xf5\xea\x0c\x4f\x86\xff\xbb\x05\xa1\xa9\x81\xfd\x0f\x68\xfa\x3f\xe3\xfe\xb7\xd5\xfb\xd7\xbe\xf6\x35\xaf\xdc\x3d\xf3\xcc\x33\xf8\xc2\x17\xbe\xa0\x01\x89\xcf\x28\x57\x02\x95\x51\xb3\x38\x3c\x3c\x94\xdf\xf8\xc6\x37\xbc\xa3\xff\x2c\xcb\x7e\x1e\x59\x3e\xcd\x54\xc8\x69\xe3\x3b\x6d\x47\xff\xf3\xf8\x46\x8f\x1b\xc7\x69\x99\x95\xff\x4e\x79\xea\x92\x8e\xa9\x57\xc6\x30\xcc\xe1\x00\x01\xd8\xe6\x03\x09\xf2\x4e\x3a\x01\x10\x2b\xa0\x3f\x89\xe5\xc9\x34\x9e\x3f\x7a\x7f\x63\xde\x23\x20\x0c\x24\x85\x51\x26\xe2\x38\xcd\x6d\x61\x32\xa1\x64\x26\x94\x94\x02\x69\x46\x2a\x5d\x06\x2a\xcd\x48\x25\x8a\xb0\x54\x65\x87\xcb\x3b\xe2\xb9\xb3\x72\xc8\xed\xa8\xf5\x8a\x9f\xca\x76\xf6\xdf\xf8\xc6\x37\xd0\x61\x73\xb5\xd3\xd4\x1d\x9f\x32\xd2\x75\x93\x16\x40\x4f\xd7\xcb\x1c\x25\x78\x99\x17\xc0\x8e\x1f\x9c\x1a\x66\x02\x61\x26\xcc\x71\x03\x2e\xc1\xc0\xeb\xd8\x77\x46\x98\x0b\x5c\xf4\x16\x06\x96\x71\x32\x6c\xd0\x82\x07\x0f\x1e\xe0\x9f\xfe\xe9\x9f\x7c\xe5\xfb\x6f\xd1\x65\x6d\xc0\xa5\x6d\x34\xd1\x44\x4f\x36\x09\xb0\xbb\x1c\x32\x65\x74\x58\x32\xee\x65\xe3\x51\x3f\xdd\x39\x3f\x89\x3e\x12\x65\x6a\xa0\x19\x96\x72\x3a\xa7\x02\x35\x8c\x7d\xac\xeb\xaa\xe4\x4b\x69\x79\xed\xe2\x1c\x0d\x50\xec\x79\xd2\x2a\x97\x42\x75\x37\x8c\x8a\xd1\x79\x11\x12\xfd\xe1\x3c\x78\x6a\x73\x1a\x5e\xde\x1d\x8a\xdb\xb3\x58\xce\x91\x0b\x82\x6f\x75\x87\x76\xbe\x69\xa1\x3a\xda\xb6\x89\x15\xf3\xbd\x77\x5d\x13\x00\xed\x32\xba\xf2\xe5\xa7\x49\xf9\xfb\xf2\xeb\xe6\xc3\xe7\x7c\x53\x4f\x4d\x65\x76\xdf\x9d\x66\xea\xca\x97\x9f\xb6\x7c\xf3\x77\xbe\x7c\xf8\xc2\x9c\xe6\x9b\x9c\xb6\x7e\x9a\x64\xc0\xc4\x5d\x80\x89\x4a\xbe\x6f\xdd\xba\x85\x07\x0f\x1e\xf8\xde\xd5\x39\x09\x00\x52\x4a\x6d\x94\xd7\xa6\xb0\x4e\xa3\xd0\x4e\x3b\x15\xf2\xb8\x4c\x48\x97\xfc\xb4\xc5\xdd\x65\x10\x70\x1a\xe6\xa2\x4b\xbe\x7d\xb2\xd2\xc5\x7f\x17\x77\x9a\x7c\x68\xff\x26\x0f\xf7\xee\xdd\xc3\xb7\xbe\xf5\x2d\xf9\xdb\xbf\xfd\xdb\x02\xb0\xec\x9f\x2a\x87\xf1\xe9\xfe\x40\xdb\x4e\x28\xa5\xf4\x66\x88\x73\x00\x7d\x05\x35\x27\xa2\x58\x01\xb1\x22\x84\x50\x08\xb3\x40\x89\x65\x90\x89\x69\x04\x41\x9a\xd1\x21\x93\xbe\x54\x40\x0a\xa8\x14\x79\xdc\xbc\xa3\x36\x2b\x85\x0a\x1b\x0e\x0e\x64\x74\x9a\x6e\x27\x6d\xca\xf5\xf5\xaf\x7f\x5d\x1e\x1c\x1c\x34\x1d\xe8\xd9\xf8\x8d\x5f\x7a\xe9\x25\x28\xa5\xe4\x2f\xff\xf2\x2f\xbb\xfe\xdc\x69\x23\x77\x39\x79\xcc\xf2\xaa\x99\x17\x03\x5a\x60\xce\x1a\xb3\xfe\xdc\x3e\xdb\x3a\x2b\xac\xa8\x6f\xf7\x48\x03\xeb\x9e\x9c\x23\x3a\x74\xfd\x02\xf9\x31\x07\xdf\xff\xfe\xf7\xeb\x8e\xdc\xf8\x79\x0c\x8a\x2b\x7e\xbb\x6c\x40\x27\x60\x5b\x02\x0b\xf6\x5b\x67\xf9\x5b\x89\x63\x67\x67\x07\x5b\x5b\x5b\x6a\x75\x75\x95\x8a\xb0\x7a\x75\x91\xd9\x88\x8e\x88\x02\x22\xea\x49\x42\x7c\x76\x1a\x6d\x9e\x9b\x44\xd7\x7a\xa9\x18\x72\xfe\x83\xef\x74\xa8\x41\x83\x8d\x1d\xec\x43\x16\x7d\xe4\x8b\x01\x3a\xf6\x0c\x51\x1e\x4a\x95\x20\xc9\xd8\xd4\xb0\xd9\x29\x77\xb3\x1e\x9d\x86\xbb\xf9\x51\x99\x0e\x09\x80\x54\x12\xa8\xbd\xd1\x4a\x7a\x7f\xdc\xcf\x46\xcc\xd0\x4b\x5b\xa6\xcb\xc2\xbb\xba\x70\xe1\x82\x1a\x8d\x46\x28\x56\x53\xb8\x16\xd8\x7c\xd5\x03\x9c\x67\xc2\x73\x0d\x8f\x7f\x9f\xe3\xab\x07\x7c\x69\xb8\xf1\xb9\x69\xd7\xad\x64\xa8\xb3\x0a\xf7\xc5\xc1\xf3\xd1\x16\xae\x29\xcd\xba\x3c\xf8\xc2\x77\xf1\xe7\x4b\x9f\xd7\x95\x2f\x3f\x4d\xf9\xf2\xc5\xed\x73\x6d\xf9\xf1\xf9\xaf\xf3\xd7\xa5\xac\x96\x7f\x29\xa5\x4a\x92\xe4\xd4\x7f\xcb\xe5\xd2\xcd\x83\xa8\xb9\xe6\xcf\x74\x83\x6d\xfa\xf6\x3e\xd7\x16\x77\x97\x38\xba\xc8\x79\x9b\xff\x2e\x7a\xd0\x1e\x0b\xb5\xe7\xd1\x97\x8f\xb6\xfa\x69\x6a\xb7\x3e\xff\x75\xef\xeb\xe2\xee\xea\xdf\xc4\x2f\xa5\x94\x93\xc9\x84\xf6\xf7\xf7\xd5\x87\x3f\xfc\x61\xbd\x52\xc6\x8d\x5b\xaf\x70\x53\x28\xf5\x61\x46\x44\x7a\x67\xe7\x0c\xf9\x4a\x1e\xbd\x8a\x25\xdf\x89\x9c\x30\x57\x50\x09\x88\x16\x20\x2c\x54\xfe\x37\x07\x61\x8a\xfc\x77\x96\x5f\xd3\x14\xc5\x26\x72\x05\xbb\xa2\x37\x94\xe3\x3b\xc0\x9a\x5d\x9e\x29\xdf\x38\x51\x4f\x0f\xe9\xd5\x6f\xfa\x4f\x7d\xf3\x9b\xdf\x94\xfb\xfb\xfb\x28\x8c\x5b\xf8\xb7\xac\x93\x9f\xca\xf3\x2c\xcb\xe8\xd1\xa3\x47\xc8\xb2\x4c\x3d\xf1\xc4\x13\x26\x8e\x02\xc0\x29\xd8\xba\x58\xa2\x5c\x85\xe7\xae\xda\xe3\x3b\x4f\x73\xc0\xa1\x37\x7e\xd4\xe5\xd2\x3b\xff\xea\xb2\xea\x72\x9b\x0d\xe5\x0a\x20\xa7\x77\xbf\x9e\x17\xc0\x91\xaf\x1e\x5a\xb2\x7c\x48\x00\xb8\x75\xeb\x96\xfc\xf1\x8f\x7f\x8c\xf1\x78\xec\x0e\x1c\xda\x64\xec\x71\xdb\xbf\x00\xa0\xba\x00\x17\x37\x03\x4d\x4a\xaf\x36\xe1\xd9\x6c\xa6\x3e\xfc\xe1\x0f\xd3\x70\x38\xcc\x09\x8f\x12\xb4\x68\xd6\xc1\xec\xa2\x0b\x42\xdc\x5f\x8a\xd5\xad\x71\x7c\x6d\xb0\x0c\xce\xe6\x4b\xe1\x14\xf4\x92\xe3\x92\x31\xa9\x4e\xe1\x94\x3b\xe9\xba\xcb\xa8\xb5\xd1\x2d\xb3\x4f\xa1\xf2\xbd\x0e\x6d\x31\x3b\xaa\x64\x72\x0c\x26\xb1\x41\x89\x7d\x06\x86\x1d\x59\x09\x7e\x14\x48\x0a\x35\x3e\x1a\xa4\xf7\x0e\x56\x97\xbb\xca\xde\xb0\x47\xef\xa4\x2b\x89\x48\xf5\xfb\x7d\xba\x7b\xf7\xae\x3a\x3c\x3c\xe4\x1f\xd2\x27\x08\xee\xb3\x3a\xc6\xa3\xae\x61\xb9\x00\x54\x7a\x9e\x2b\x27\x3e\x37\xce\xb6\xf8\x7d\x0a\xba\x49\xf9\xe9\xd1\x9a\xaf\xd1\xd7\xa5\xdb\x35\x0f\x4d\x61\xdc\x3c\xf8\x1a\x12\x7f\x5e\x57\x87\x5d\xbf\x55\x5d\x7e\xda\xd2\x6d\x2b\x83\x2f\xbd\xae\x71\xf8\xca\x50\x97\xff\xba\xfa\xf6\x39\xee\xd7\xe7\x8f\xcb\x5e\x9b\xac\x36\xc5\xed\x0b\x7b\x1a\x19\x3c\x0d\xa3\xe0\x96\xa7\xeb\x77\xd0\xae\xae\x53\x6b\xcb\x77\x97\x7a\xef\x02\xbe\x7c\xf1\xd5\xc5\x51\x07\x36\xbb\x94\x41\xb3\x70\x6a\x3c\x1e\xd3\xe1\xe1\xa1\xfa\xd0\x87\x3e\x54\x01\x2f\x7a\xa9\x7e\xe1\x5f\x2f\xcd\x37\x07\xf0\x16\x40\x66\x59\x00\x09\xdd\x49\xeb\x9d\x9a\xf5\xb5\xee\xa0\x67\x70\x3a\x69\x77\x65\x4c\x01\x58\x66\xec\x6f\x8a\xf2\x98\x0a\x0d\x04\x96\x7a\xe1\x88\xb2\x8f\x9d\x90\xdf\xff\xfe\xf7\xf9\x29\xe4\x6d\xf2\xed\xfa\x31\x60\x77\xb9\x5c\xca\xd1\x68\x44\xcb\xe5\x52\x5d\xba\x74\x89\x88\x48\xef\x30\xaf\xeb\x41\x6f\x1d\xa0\x60\xef\xd2\xab\x41\xcb\xb2\xa8\x2b\xbd\xdb\xb5\x06\x19\x1c\xb4\x98\xe3\x37\x0a\x56\x85\x97\x59\xd7\xcf\x8c\x88\xf4\x0a\xaa\x59\x11\x4f\x52\xfc\xf9\x00\x8b\x04\x80\x77\xde\x79\x47\xbe\xf4\xd2\x4b\x38\x3a\x3a\xd2\x8c\x9c\xdd\xe5\xd6\x97\x9d\x3b\xee\xbf\x4e\xa6\x2a\x75\xd9\xc5\xc6\x45\x47\xd2\x85\xc2\xac\xf3\x63\xf9\x65\xd3\x22\xbc\x22\xac\x03\xd7\x8e\x06\xe9\xde\xa4\x97\xed\x67\x53\xf5\x54\x90\x51\xac\xc3\x70\x98\x62\x41\x13\x0f\x68\xb0\xfd\xf3\x33\x1d\x9c\x5d\x14\x61\x87\xd3\x51\x95\x5b\x29\xb3\xfd\x60\x54\x09\x7a\x00\x58\x3b\x12\xe6\x64\x8d\x9d\x11\x05\x40\x28\x0c\x56\x93\xe0\xca\xb9\x49\xf4\xf4\xda\x3c\xbc\x39\x5a\x49\xf5\x81\x5a\x2e\xa5\xc7\xed\x0d\x78\x9d\xb5\x51\x70\x5d\xae\x85\x73\xed\x9b\x0a\x91\xa8\xa6\x59\xf7\x8d\xbb\xbe\xab\x03\x55\x3e\xd7\xf5\x5d\x53\x7c\xa7\xad\x97\xd3\xa6\xe3\xfb\x2e\x75\x34\xbd\xaf\x0e\x9b\x9e\xb5\xe5\xb5\xad\x0c\x6e\xdc\x6e\x5e\xf9\x77\xef\x12\xf7\x69\xf3\xea\x73\x75\x74\xb9\xfb\xae\x49\x36\xba\x3c\x6f\x6b\x23\x75\xed\xc9\x95\x7b\x9f\xf3\xe5\xad\x8b\x1e\xac\x7b\x7f\x9a\xb6\x5d\xe7\xf7\x34\x65\x73\xd3\xd6\xfe\xea\xf2\xd5\x54\x56\xa0\x5a\xae\x36\x19\x10\x69\x9a\xca\x5b\xb7\x6e\x89\x5e\xaf\x27\x3f\xfb\xd9\xcf\x82\xed\x65\xe2\x4e\x1d\xc9\x62\x00\xab\xed\x5c\xf4\xe9\xc9\xda\xa0\xd7\x18\xb0\xaa\x7c\xe3\xb5\xd0\x31\x24\xe7\x71\xca\x22\x3e\xab\x6f\x41\xc1\xa6\xa0\x5c\x21\xe4\xda\x6e\x58\x1b\xaa\x11\x91\x9c\x4c\x26\x78\xe9\xa5\x97\xda\xbe\x95\x5b\x5f\x3e\x3f\x56\x9d\x8d\xc7\x63\xbc\xf9\xe6\x9b\x98\x4e\xa7\x32\x8e\x63\x7c\xfa\xd3\x9f\xf6\xd5\x0b\xaf\x6f\x59\x94\x55\x1f\x94\x9a\x14\xef\xf8\x69\xee\xee\x9f\x04\x60\x4d\xc7\xb1\x78\xf9\xe1\xa6\x96\xbd\x69\x31\x5d\xc7\xeb\xcf\xe4\xfb\xed\xb7\xdf\x96\xaf\xbd\xf6\x1a\x0e\x0f\x0f\xbb\x96\xd7\xbd\x3e\x8d\xfc\x54\x9c\x8f\x71\xa9\x43\x45\x3c\xb1\xb6\x0e\xc8\x45\x5b\x04\x40\x7d\xf4\xa3\x1f\xa5\xf5\xf5\x75\x05\x40\x6f\xb0\x43\x00\xdc\x73\x8b\x7a\x00\x62\x49\x2a\xb8\x30\x89\x9e\xd8\x98\x87\x97\xe3\x8c\x86\xa4\xc8\x02\x0c\x65\x42\x6c\xb7\x40\xa0\x02\x60\xac\x33\x88\xc8\x09\xc3\xfc\x2a\x7e\xca\xa8\x52\x66\x79\xb5\x29\x46\x89\x5b\xf2\x18\x88\x2c\x46\xc6\x80\x17\x3e\x4f\x54\x04\x15\x45\x6c\xa9\x50\x87\x27\xfd\xf4\xde\xd1\x20\x3d\x52\xe5\xb9\x45\x9a\x79\xe1\x23\x0e\x35\x1e\x8f\x31\x99\x4c\x7c\x08\xb4\x89\xad\x68\x1a\x61\xf1\xb0\xbe\x11\x42\xdb\xc8\xeb\x34\xae\x6e\xd4\xf7\x38\x71\xb5\x95\xa9\x29\xed\xa6\x67\x8f\x9b\x87\xba\x78\x9a\x46\xd8\xff\xdd\xae\x6d\x64\xdf\xf4\xdd\x1f\x37\xee\xae\x7e\xeb\xf4\x49\x5b\x9e\xba\x8c\xbe\xea\x9c\x6f\x94\xd7\xf4\xdd\x7c\xe9\xb4\xc9\xb0\xc5\x2a\x34\xb8\x36\xa6\x88\xa7\xcd\xfd\x9b\x91\x79\x4d\x1c\x75\xf1\x71\xc6\x83\xe7\x93\x8f\x6a\xbb\x4c\x55\xe9\xb8\x24\xec\x32\xfb\x46\xc7\xbe\x38\xf8\x7b\x13\x66\x6f\x6f\x4f\x29\xa5\xe8\xdc\xb9\x73\x7c\x23\x36\xbd\x29\xa2\xee\x54\x15\xca\xe9\x23\xbe\x89\xa1\xde\xb1\x56\x6f\x02\x67\x1d\x06\x8a\x92\x69\xd0\x7f\xdc\xd8\x56\xb3\x0e\x0b\x14\x87\x83\x52\x79\x96\x56\xca\x7e\xf5\xf4\x7d\x5a\xe4\x43\x8e\x46\x23\xf9\xca\x2b\xaf\xa8\x1b\x37\x6e\x60\x6f\x6f\x8f\xd7\x07\xaf\x27\x57\x46\xda\x64\xd6\xc8\x65\x92\x24\xb4\xb7\xb7\x27\x0f\x0e\x0e\x48\x29\x65\x4d\x1d\xb1\xfa\xd0\xfd\x83\xd9\xec\x0d\x36\x18\x5b\xd6\xfc\x2d\x50\x18\xd7\xa2\x38\x57\x0c\x1e\x3b\x16\xc6\xd6\x68\xf0\xa2\xd9\x1c\x9e\x96\x02\x72\xa6\xe5\xb5\xd7\x5e\xc3\xfe\xfe\x3e\xcf\x5f\x5d\x5d\x34\xb5\xa9\xa6\x3a\x6a\x64\xaf\x7c\xc0\xa5\xa9\xb2\xdb\x84\xd6\xf7\x01\xcd\x6f\xbf\xdf\xa7\xf5\xf5\x75\xf4\x7a\xbd\x02\xb3\xe4\x07\x6d\x15\xb6\x2d\x02\xe5\x32\xe9\x50\x02\xf1\x5a\x12\xae\x9d\x9b\x46\x4f\xad\x2c\x83\x33\x02\x24\x48\xa3\x03\x30\x56\x84\x5d\xe7\xdb\x3f\x97\x4c\x4a\x0e\x74\x94\xb1\x5b\xd1\x3e\xf3\x93\x40\x35\xd0\x50\xc5\x86\x8a\x25\x38\x21\xb2\xcf\x42\x22\x82\x39\x3d\xd4\x30\x3f\x54\x18\xf1\x12\x63\x63\x4c\x9e\x98\xb1\x2d\x99\x13\x4e\x85\x22\x35\x9b\xf4\xe4\x83\x83\xd5\xe5\x03\x19\x98\xd3\x79\xf5\xe9\xa2\x59\x31\x72\x90\x67\xcf\x9e\xa5\xa3\xa3\x23\xb5\xbb\xbb\x6b\x66\x9b\x58\x3d\xfa\xe8\x64\x57\x49\xb9\x42\x51\x17\x86\x3f\xf3\x3d\x97\x2d\xfe\xa8\xe6\x8f\x7f\x02\xed\x7c\x69\xc3\x73\xed\xf3\xe3\xbe\x83\xf3\xbc\x4e\x69\xe8\x30\x12\xd5\xb8\x79\x59\xdc\x3a\x72\xf3\xd3\x36\x0d\xc1\x3b\x99\xb6\x72\xd7\xd5\x81\xaf\x6e\xbb\x86\xa9\x2b\x5f\xd3\x77\x6b\x2b\x23\x8f\xbb\xad\xdc\x3e\x70\xd0\xf4\xcc\x75\x4d\x32\x0b\xf8\xbf\xbb\x2f\x3e\x9d\x37\xb0\xe7\x75\x65\xee\x0a\x50\x9a\x5c\x9b\x3c\xd6\xb5\x41\x77\xe4\xa9\x65\x87\x3f\xf7\xe5\xa9\x4e\x16\xc8\xe3\x5f\xd5\x5c\xbb\x71\xfa\x1c\xff\x76\x6e\x9a\xae\x3c\xb8\xd7\x3e\x67\xc9\xd5\xce\xce\x8e\x8c\xa2\x88\x8e\x8e\x8e\x54\xaf\xd7\x43\xaf\xd7\xcb\x35\xb0\xbd\xf4\x5e\xa1\xd4\x8b\xba\x83\x36\xd3\x22\x28\x3b\x6b\x7d\xf8\x67\x1d\x70\x31\xf7\xcc\xd8\x77\x01\xdb\x2e\x84\x1f\x98\xa8\xff\x00\x40\x1e\x1f\x1f\xcb\xd7\x5f\x7f\x1d\xaf\xbf\xfe\xba\x0f\xb0\xf8\xca\xe7\xfb\x26\xbe\xfa\xa9\xd4\xa9\x94\x52\x3d\x78\xf0\x80\x06\x83\x81\xda\xdc\xdc\x54\xc5\xb9\x63\x0a\x80\x75\x70\x2a\x18\x88\x61\xe0\x42\xff\xf1\x03\x4b\xb9\x71\xed\x92\x95\x5b\xff\x9a\x3f\x6e\x7c\xab\xfb\x25\x36\x98\x96\x40\x0e\x58\x1e\x3e\x7c\xa8\x5e\x7b\xed\x35\x1c\x1c\x1c\xf0\xfa\x68\x02\x24\x4d\xba\xd9\xa7\x5b\x3a\xb5\xd1\x2e\x8c\x8b\x2f\x53\xbe\x8e\xce\xcd\x64\x25\xce\x87\x0f\x1f\xd2\xc5\x8b\x17\xb1\xb9\xb9\x49\x9a\x71\x51\xe5\x71\xe7\xfa\x2f\x06\x10\x01\x88\x42\x29\xe2\x73\x93\xe8\xea\xda\x22\x38\x27\x14\xc5\xa0\xd2\xa2\x85\xcc\xb1\xa1\xb6\x95\x0b\x71\x3f\xfc\x7f\x09\x20\x72\x80\x52\xa8\x0a\xb3\xad\x1d\xd9\x1a\xcf\x3d\x75\x1a\xd6\x56\xff\x79\x24\x39\x9b\x53\xf8\x53\x36\xa3\x83\x02\xbc\x94\x53\x52\x14\x12\x20\x17\xa1\x3c\x38\x5e\x49\xdf\x9f\xf4\xe4\x98\x1b\xe8\x22\x6f\x94\x32\x07\x44\xa4\x26\xcb\x3b\xa4\xb4\x00\x00\x20\x00\x49\x44\x41\x54\x93\x89\x3a\x3e\x3e\xd6\x47\x00\xb8\x4a\x08\x9e\x67\xbe\xf7\xa8\x09\xc3\x85\x46\xa1\x39\xbc\x1b\xd6\x77\x5f\xf7\xc7\x9d\x1b\xd6\xd7\xb1\xf9\xf2\xc1\xdf\xf9\x3a\x0a\x9f\x62\x77\xcb\x56\x77\x5d\x57\x47\x6e\x7e\x7c\x8d\xcf\x1d\x89\xba\x69\xa0\xc6\x5f\x97\x74\xda\xbe\xed\x69\xc3\xb4\x75\x62\x5d\x9f\xd5\xe5\xc7\xd7\xee\x4f\xa3\xcc\x79\x9d\xfa\x98\x86\x26\x7d\xe4\xa6\xe9\x93\x93\xba\xb2\x34\xc5\xdd\xa5\x63\xae\x2b\x8b\x2f\x6e\x77\xd0\xe7\x96\xd3\x8d\xdf\xa7\xcc\xeb\x64\xa1\x2b\xb0\x6b\x8a\x9b\x3b\xb7\xee\x7d\xdf\xaf\x4b\x1d\xba\xce\xc4\x75\xff\xfe\x7d\xb5\xbd\xbd\xad\x82\x20\xc0\x99\x33\x67\x54\x1c\xc7\x7c\x9a\x3c\xd3\x7b\x02\xb1\xce\xd3\x3d\x39\x9c\xaf\x88\xe1\xd7\x86\x65\x40\xd9\x41\xeb\xce\x5b\x33\x33\x1c\xfc\xf0\x81\xa3\xb1\x23\x79\xf4\xe8\x91\x7a\xf8\xf0\xa1\x7c\xef\xbd\xf7\x70\xfd\xfa\xf5\xae\x53\x19\xa7\xa9\x9f\xba\xef\x4e\xdb\xdb\xdb\x72\x63\x63\x83\x4e\x4e\x4e\x54\xbf\xdf\x57\x61\x18\xc2\xb5\x7f\x29\xfe\x34\xa8\xab\x4c\xff\xa0\x04\x63\x1c\x90\x68\xe0\x97\x39\x8c\xbf\x7b\x50\xa2\xb1\xa5\x91\x52\xaa\x3b\x77\xee\xc8\xa3\xa3\x23\xf5\x83\x1f\xfc\x00\xb7\x6e\xdd\x92\xb3\xd9\xcc\x95\x61\x9f\xce\x73\xcb\xeb\xd6\x85\x0f\x0c\xd7\xc9\x74\xa5\xfe\xba\x30\x2e\x75\x8d\xc7\x27\xcc\xdc\xf1\xc6\x61\xc2\x3d\xf3\xcc\x33\x74\xf6\xec\xd9\x82\xd8\xc8\x11\x40\x01\x60\xf4\x72\xae\x00\xf9\x7c\x66\x2c\x09\xc1\xe6\x2c\xba\x70\x66\x1e\x5e\x8a\x33\x1a\xf2\x6d\xf8\xf3\xb3\x85\xf4\x8a\x1e\x55\x9e\x1b\x84\x52\x2a\xf2\x6b\xcd\x7e\x70\x78\x03\x7b\xe7\x5c\xd2\x85\x60\xe0\xa6\x88\x24\x0f\x59\x05\x43\x0a\x25\x50\x81\x7b\xad\x4a\x40\xc3\x1d\x01\x24\x05\xc6\xe3\x5e\xf6\xfe\xfe\xea\x72\x5f\x41\x19\xe1\xca\xab\x40\xe9\x9d\x12\xd5\x85\x0b\x17\x68\xb9\x5c\xaa\x7b\xf7\xee\xb5\x29\xcf\x26\x96\xc2\xf5\xe7\x0a\xc2\x69\x46\x4d\xbe\x78\xba\xf8\xab\x1b\xed\xf2\xfb\x2e\x4c\x0a\x3c\xf7\xdc\xaf\xae\x70\xe9\x3c\xeb\x52\x1f\x5d\xea\xb6\x29\x1f\x2e\xfb\xc4\xdb\xc6\x69\x98\x9d\x2e\xdf\xa5\xae\x5e\x4f\x13\x77\x97\x8e\xae\x2d\x0f\x75\x2c\x9d\x0f\x34\xb8\xca\xda\x55\x6e\x60\x61\x9a\x64\x14\xa8\xff\x9e\xdc\x75\x91\xa7\x3a\x60\xe0\x4b\xa7\xed\x3b\x75\xe9\xb8\xdd\x70\x3e\x65\xed\xf3\xdf\x54\x5e\x5e\xaf\xbe\x32\xd7\x7d\xf7\xb6\xb8\xeb\x64\xc0\x65\x60\x7d\xfe\xda\xf4\x90\xe5\x1e\x3e\x7c\xa8\x82\x20\xa0\x38\x8e\x95\x94\x52\xf5\x7a\x3d\x00\xd0\x9d\xb4\x06\x30\xba\xb3\xe6\x1d\xb4\xd6\x9b\x19\xbb\xe6\x80\x44\x1b\xaf\xf2\xe7\xe6\xbc\xad\x22\x4e\xc3\x54\xb0\xce\x1a\xa3\xd1\x48\xbe\xf4\xd2\x4b\xea\xc5\x17\x5f\xc4\xee\xee\x2e\x2f\xb3\x76\xbe\xf2\xf9\x64\xda\xe7\xda\xfa\x4d\x05\x00\xb7\x6f\xdf\x56\xef\xbe\xfb\xae\x5a\x5b\x5b\x23\x6d\xbc\x5c\xec\x72\xad\xc3\x58\xd3\x6a\xc8\xa7\xdb\x32\x56\x2e\x05\x06\xc8\xd8\xaf\x66\x53\xac\x73\xc4\x58\xfd\xea\xb0\x2a\x4d\x53\xb9\xb3\xb3\xa3\xfe\xe5\x5f\xfe\x45\xbe\xfb\xee\xbb\xe4\x39\x7b\xa8\xad\x2d\xe8\xfc\xfa\xf4\x43\x2d\x28\x41\x89\x19\x7c\xfa\x45\x02\xdd\x97\x43\xbb\x54\xb4\x9b\x31\xb0\xf7\xbe\x8c\x99\x0c\x5c\xbe\x7c\x19\x1b\x1b\x1b\x7a\x7e\x53\x50\xbe\xc5\x3d\x15\x53\x45\x01\xe5\xcb\xa2\x63\x00\xa1\x22\x84\xc3\x45\x78\x66\x73\x1a\x5d\x1e\x2c\x83\xcd\x1c\x83\x94\x5b\x88\x1b\x30\x61\xed\x7a\xab\xd8\x91\xe7\x04\xd4\x82\x88\x62\x95\x91\xca\x41\x07\xdb\x2d\x34\xff\x65\xc0\x06\x60\xe0\xc8\x89\x43\xff\xd7\xc5\xa4\xf2\x25\x74\xe4\xc6\xce\x46\x21\x50\xc0\x72\x16\xcb\x9d\xdd\xe1\x72\x3b\x0b\xb1\x28\x84\x88\x53\xa2\xaa\xc8\x87\x7a\xf8\xf0\x21\x07\x2e\x75\x8a\xd8\x65\x18\x5c\x57\x27\x50\x26\x97\x1d\xc2\x72\xd7\x49\x21\xc1\xff\xfd\xf9\x73\x9e\xaf\xda\x06\x5c\x93\x07\x9f\x5f\x37\x9e\x36\xa5\xcf\x1b\x44\x93\x02\xef\x52\x5e\x85\x6a\x1e\x38\xdb\xe2\xeb\x04\x9b\xf2\xda\x56\x5f\x75\x79\xf3\x85\x71\x29\x6e\x77\x4a\xc2\x17\xde\x17\x87\xeb\xcf\x27\x77\x6d\xdf\xb2\x0d\x94\xc0\xf3\xbc\x4b\xfd\x77\x01\x37\x6d\x75\xd5\x25\xee\xba\x6f\xd9\x94\x8e\x8e\xc3\x37\x0d\xd4\xe4\x4e\xe3\xc7\x57\xef\xbe\x34\xbb\xb6\xf5\x3a\x36\xd4\xf7\xeb\x5e\xff\xbf\xed\xbd\x69\xaf\x26\xc9\x51\x30\x1a\x91\x55\xcf\x7a\xd6\x5e\x4e\x4f\xf7\xe9\x6d\x3c\xd3\x77\xd6\x9e\x19\x7b\x3c\x30\xf6\xd8\xf2\x80\x2d\x19\x18\xe0\x7d\xaf\x10\x12\xdf\x90\x10\x88\x3f\x05\x1f\xfc\xf5\x5a\x7c\x43\x08\x09\x24\x90\x41\x66\xd3\x35\x18\xdb\xaf\x19\x8f\xa6\xc7\x3d\xed\xde\xb7\xb3\x9f\xf3\xac\x15\xef\x87\xaa\xac\x8a\x8a\x27\x22\x2b\xeb\xe9\x86\xf7\x0a\xdd\x6c\x9d\x7e\xaa\xb2\x22\x23\x23\x33\x23\x23\x23\x22\x37\x8d\x5f\x82\xc6\xc9\x83\x07\x0f\xe8\xe3\x8f\x3f\xa6\xd1\x68\x84\x67\xcf\x9e\xa5\xf9\x7c\x4e\x9d\x4e\xc7\x5f\x0c\x5a\xf3\x30\x40\x35\xb8\x96\xbf\xcc\xeb\x52\x9b\xee\x80\x4a\x29\xa9\x2d\x32\xe5\x6b\x0b\x0b\x18\x22\x22\x38\x39\x39\xc9\x46\xa3\x11\xfd\xf3\x3f\xff\xb3\xbf\x7b\xc8\xaa\x2f\x2e\x3b\x64\x1d\xc4\x2a\x6d\x51\x72\xf4\xd6\xad\x5b\xf4\xf1\xc7\x1f\x53\xa7\xd3\xc1\xb5\xb5\x35\x9a\x4c\x26\x94\x65\x59\xc6\x94\x18\xbe\xc0\xb5\x5c\x2b\x49\xd5\xa5\xa9\x35\xe5\x8c\x4d\xbb\xd5\x14\x1f\xbf\x83\x69\x32\x99\x64\xc7\xc7\xc7\x34\x99\x4c\x68\x67\x67\x07\xfe\xe2\x2f\xfe\xc2\x1a\x5b\x78\x3b\x4b\xa5\xd6\x2a\xab\xe4\xa9\x90\x37\xc6\xf2\x68\x03\x40\xf8\x00\x3a\x4f\x0c\xaf\x18\x67\xc0\x80\x02\xa3\x31\x70\xf6\xfd\xef\x7f\x1f\x88\xc8\x5d\xbf\x7e\xdd\xc3\xd7\x56\x6f\x03\x3b\xd1\x6f\xee\x68\xb2\x33\x98\x3e\x38\xe8\xcd\x1f\x9f\x3a\x4e\xaf\xa4\xe8\x86\x5e\x21\x29\x15\x8c\x42\x01\xe1\xc3\x23\xe5\x9a\x48\xa9\x4a\x2c\x28\x1d\x39\x92\x45\xa5\x05\xbc\xb2\x53\x7e\x28\x5d\x29\xc8\xbd\x39\x54\x79\x71\x2a\x85\x07\xaa\x35\x33\x9e\x2e\xac\x3c\x33\x39\xa7\x63\xda\x9f\xb9\x73\x67\x0f\xbb\xaf\x5c\x38\xe8\xfe\xfb\xcf\x4f\x8f\x0e\x01\x61\x02\x8b\x2b\xc2\xbd\x9b\x94\xdf\x5d\x14\x6a\x97\xa6\x36\xb4\x42\xd3\x8a\xf8\x98\x85\xd8\x31\x79\x69\xf1\xb1\xb8\x65\xe7\x88\x0d\x16\x3c\xef\x64\x9a\x80\x6d\xaa\x93\x98\x78\x08\xc4\xb7\x29\x73\x0c\xbe\x36\x78\xda\xd6\x61\x28\xdf\x58\x3c\x9a\x80\xb3\x9e\x25\x6f\x6b\x38\xb4\x78\x0b\x4f\x13\x4d\x21\xbc\xc0\x70\x73\x78\x80\x70\x7e\x12\xa7\x95\x97\x8c\x8f\xf9\xf5\xa1\x89\x76\xad\x0e\xe5\x77\x8d\xd6\x36\xf0\xb2\x2e\xc0\x78\xe7\xf1\xb2\x0c\xb5\x3c\x3e\xfd\xf4\x53\xf8\xf4\xd3\x4f\xb3\x73\xe7\xce\xb9\xdf\xfe\xed\xdf\xce\x00\x00\x5c\xbe\xd0\xc3\x7b\xa2\xbd\x3c\xf4\xf2\xd8\x01\x2c\x1a\xa6\x52\xde\xb3\xdd\x34\xb5\xbc\xfd\x74\x94\x3f\xd1\xf9\x2f\xff\xf2\x2f\xfd\xda\x0d\x4e\xa7\x55\x47\x56\x1d\x6a\xbc\x21\xeb\xa0\xcd\x2f\x00\x00\xfc\xe0\x07\x3f\x80\x1f\xfc\xe0\x07\x19\x00\xb8\xcb\x97\x2f\xc3\xb7\xbf\xfd\xed\xf2\x5b\x92\x24\x7e\xa7\x51\x99\x7f\xb5\x84\x81\xfc\x38\x62\xdd\x33\x96\x11\x51\x79\x90\xde\x27\x9f\x7c\x02\xff\xf0\x0f\xff\xc0\x69\xb5\x82\xc6\x83\x4d\x7c\x15\x53\x57\xb2\xcf\xc9\x74\x39\x3f\x18\x44\x2d\x23\xe0\x9a\xd2\x97\x71\x1f\x7c\xf0\x81\x7b\xf3\xcd\x37\x1d\x1b\xac\xbb\x94\x1f\x6b\xdc\x87\xea\xde\xa2\x75\x22\xda\x5c\x1f\xa7\xdb\xef\xdc\x5d\xfd\xf0\xb5\x07\xc3\x6f\xac\x4e\xd2\x73\x5c\x25\xf3\x81\x4a\xad\x65\xd1\x4f\x5f\xc1\x2c\xfa\x49\xf9\x2f\x18\xe9\xa0\xe9\x1b\x43\x40\xda\x77\x11\xe6\x48\x93\xfd\xde\xfc\xe3\x4f\xce\x1d\xfd\x3f\xff\x72\x75\xff\xef\xe6\x0e\x76\x21\xbf\xbf\xc8\x9f\xda\xc8\x2d\x07\xf8\xe4\x93\x4f\xb2\xef\x7d\xef\x7b\x3e\x79\x8c\x00\x69\x12\x94\x5a\x08\x76\x1a\x25\xbf\x90\x90\xb6\xe8\xb4\x42\x2c\xfd\x31\x69\xda\xe6\xe3\xdf\x63\xea\x53\xcb\x67\x19\xa5\xce\x1a\xec\x42\x79\x72\x3a\x35\x9a\x43\x79\x6a\x83\x45\xcc\x60\xca\xd3\xc4\x2a\x1c\xf2\xbb\xf6\x1e\xa2\xd5\x8a\x7b\x1e\x4a\x6b\x8c\x30\x5d\x56\x71\x6d\x8b\xe3\x59\x60\xb4\xb0\x6c\xfd\x3c\x8f\x7a\x8d\x81\x5d\xaa\x5e\x3b\x9d\x8e\xfb\x83\x3f\xf8\x03\x4d\x69\xd4\x4e\x1b\xb7\x68\xf0\x69\x80\x3d\xd7\xf2\xfd\x93\x3f\xf9\x13\x30\x8c\xc3\xff\x2f\xd5\x8f\x0a\x93\x24\x89\xfb\xc3\x3f\xfc\xc3\x12\xbe\x50\x40\x32\xa6\xd8\xd5\xca\xa5\x28\x71\xee\xaf\xfe\xea\xaf\xb2\x9b\x37\x6f\x2e\xd3\x56\xcf\x52\x3f\xcb\xe2\x73\x00\x8b\xb7\x43\xfb\xf0\x2c\x4a\x8b\x95\xde\x8a\xf3\x1e\x05\xff\x57\xba\xfd\x10\x71\x36\x4a\xb3\xc3\xdd\xfe\xec\xfe\x71\x37\x7b\x3a\x9c\xd0\x59\x47\xe8\xb8\xa2\x00\x50\x9b\xa0\xa9\x9f\x60\xcb\x02\x8a\xdf\x3c\x7d\x7e\x03\x34\x77\xd8\x54\xdf\xd8\x7b\x91\x11\xbf\x0a\xa0\x54\x7a\x58\xda\x72\xb7\x92\xcc\xbc\x88\x07\x02\x70\x00\xdd\xe1\xd4\x6d\x6f\x1d\x76\x5f\x3f\xbf\xdf\xfd\xe9\x9d\xcd\xc9\x31\xb0\xb3\x09\xb0\xba\x9c\x8e\x7b\x5a\x64\xdd\x69\x5a\xab\x7c\x0f\xa5\xb1\x34\xdf\xa6\xb4\x56\xba\xd8\x77\x2d\xc4\xd2\xff\x9f\x95\x4f\xe8\xb9\xcd\xb7\xd8\xbc\xb5\xf2\x2d\x43\x5b\x53\xde\xa1\x7a\x6c\x6a\xe7\xb6\xf4\x3c\x6b\x1d\x3d\xab\xbc\x09\xe1\x6b\xf2\x40\xc4\xd0\x61\xf5\x9d\x58\x39\x27\xe3\x63\x60\xb4\xfc\xac\xb0\x6c\xfd\xb5\x4d\x17\x03\xaf\xd5\x77\x9b\xf2\x96\xf1\xd3\xe9\x14\xbe\xf3\x9d\xef\x94\x75\xfd\x9b\xbf\xf9\x9b\xb0\xb5\xb5\x05\x00\xfa\xf4\x7f\x0c\xfe\x9f\xff\xfc\xe7\xf0\xbd\xef\x7d\xaf\x16\xef\xbd\x0d\x4a\x3a\x8b\xbe\x26\x2f\x4c\x28\x2c\x5b\x3f\x2a\x6f\xcc\xe7\x73\xf8\xce\x77\xbe\x63\xc1\xc4\xf4\xc5\x6c\x36\xd3\x2e\xa7\x8e\x0a\xcf\xc2\x3f\x51\x0a\x8a\xf2\x9c\x01\xe8\x53\x45\x6d\xac\x2b\x9e\x26\x44\x8c\x96\xb6\x7c\xc7\xfa\xa1\x38\xb5\x7b\x14\x66\x09\x4d\x76\x07\xb3\x47\x7b\xfd\xd9\xc3\x53\xc7\xe9\x8b\x2e\xc3\x3e\x47\x1c\xbe\x09\xda\xfe\x58\xfa\x67\x6a\x6b\x59\xaa\xb3\x78\xd9\xc4\x50\xfe\x9d\xb9\x65\x16\xfa\x0c\x3f\xd5\xd7\x2b\x29\x2c\xe7\xfa\x3b\x42\x9a\xc1\xea\xc6\x49\xfa\xca\xf9\xfd\xde\x95\x3b\x9b\x93\xfb\x90\x2f\x46\x9e\x41\xa5\xb0\x00\x22\x3a\x44\xcc\x5e\x7c\xf1\x45\xc8\xb2\xcc\xfd\xfd\xdf\xff\x7d\x9b\x4e\xd1\x14\x62\xb5\xde\x65\x2d\x8f\xff\xee\xe1\xff\xaf\x8f\xff\x9c\x60\x29\x05\x6d\x07\x10\x0d\x4f\x50\x10\xb6\xc0\xad\x85\x90\x51\xd0\x06\xb7\x46\xd7\xb3\xe0\x7e\x1e\x7c\xda\x16\xc7\xb2\xf4\x69\xcf\xd9\x64\x32\x29\xe3\xff\xfa\xaf\xff\xda\x15\x6b\x23\x17\xf2\x58\x5b\x5b\x83\xdf\xf8\x8d\xdf\x00\x00\x80\x3f\xfb\xb3\x3f\x83\xfc\x34\xfe\xc5\x30\x99\x4c\x60\x32\x99\x2c\xab\x20\xb6\x29\x8f\x05\xd3\x54\xf6\x18\x9a\xb8\xf2\xe3\x8c\xf2\x34\x85\x67\x51\xbe\x9a\x70\x2c\xeb\x89\x89\x36\xd2\x34\xc5\x85\x0f\x54\x4d\xd6\x95\x89\xd8\xf8\x9e\x01\x80\xfb\xc9\x4f\x7e\x02\x69\x9a\xc2\x6b\xaf\xbd\x06\x00\xe5\x5c\x63\xc6\x7e\xfd\x21\x43\x33\xca\x2f\x5d\xdc\xdd\x1b\xcc\x1e\x8e\x53\xda\xef\x4c\xa0\x54\x5c\xb0\xfc\x8f\x79\x42\x6a\x4a\x85\xe9\x43\x51\x63\xa8\xf2\xa3\x54\xee\x14\x8f\xa6\x88\x5e\xb8\xdb\x08\xb8\xf6\x9f\x2b\x30\xd6\x14\x95\xff\xe0\x08\xba\xc3\x69\x72\xe5\x85\x83\xce\xeb\xa7\x8e\xd3\x4f\x76\x86\x33\x7f\xb1\x97\x3f\x31\xb2\x54\x18\x7a\xbd\x1e\xac\xac\xac\xf0\x36\x09\x29\x16\xda\x77\x2d\x34\x09\x6d\x99\x36\x24\x3c\xad\x69\x0e\x4b\x99\xd5\xe0\xfd\xbb\x45\xbb\xc4\xa7\x3d\x6b\xdf\x24\x3d\x31\x74\x5b\xcf\x4d\xf9\x48\xbc\xda\xb7\xa6\x7c\x9a\xe8\xd1\xf2\x54\x5d\xe9\x0d\x74\xc6\x94\x2f\x04\x67\xb5\x91\x05\xd7\x14\x62\x15\xe8\x58\x1c\x5a\x59\x63\x14\x94\xe7\x21\x88\x9f\x97\x12\xb3\x4c\x68\xf2\x88\x86\xe2\xdb\xd6\x43\x13\xdd\x6d\xdb\xaf\x91\x6e\xe5\x3e\x9c\xf2\xfd\xe0\xe0\xc0\xfd\xf9\x9f\xff\x39\x00\x80\x3f\xcd\xb5\x6d\x3b\xf0\x20\x79\xf8\x59\xea\xd5\xc2\x6d\xe1\x7b\x16\x1e\x0c\x8d\x11\xb1\xb4\x36\xa5\xe5\xf2\xe4\x59\xf8\x76\x19\xbe\x2f\xf3\xb6\xce\x71\xf1\x85\xe7\xdb\x91\xe4\xb3\xb5\x05\xaf\x91\xd8\xf1\x78\x4c\xa7\x4f\x9f\xc6\xed\xed\x6d\xf4\x01\x00\xfc\xce\x22\x87\xf9\xb9\x2e\xf9\x61\x74\x08\x29\x00\xa5\xc3\x49\xb2\x71\xfa\xa4\x73\x7e\x38\x71\x67\x6b\x53\x43\x82\x18\x60\x5f\xf8\x85\x89\x40\xb8\x30\x8d\x23\x1d\x27\x39\x8e\x7c\x61\xad\x5f\x9c\xeb\x17\xde\x02\x54\x4a\x0b\x15\x73\x3f\x95\x5e\x53\x51\x51\x2a\x2a\x62\xe7\x53\x99\x5f\x71\xf8\x0b\x12\x38\x40\x98\x1e\x75\xb3\xcf\x1e\xad\x4d\x1f\x41\xb5\xb5\x2f\x03\x80\xda\x29\x92\x69\x9a\x52\xbf\xdf\x87\xbb\x77\xef\xfa\xd5\xd6\x0e\x16\x77\x09\xc8\x38\x60\xef\x9e\xac\x0c\x16\xdb\xcb\x29\x69\x9c\x80\xe5\xb8\xb5\x15\xf6\xd6\xee\x03\x6d\x05\xb9\x45\xa3\xd6\x61\x64\x19\x43\xcf\x56\xbe\xa1\x9d\x01\xbc\x7c\x99\xf8\x66\x95\xc7\xca\x47\xe2\xb5\xfa\x85\x86\xdb\x3f\xf3\x3e\xa6\xd1\x63\xd5\xbf\xfc\xd6\x44\x67\x4c\xf9\x42\x34\x80\x91\xc6\x82\x6b\x0a\x5a\x1a\xb9\xb3\x4a\xf2\xa9\x46\x8b\x0f\x1c\x56\xf2\x70\x28\x9d\x5c\x22\x67\xc1\x3b\xb0\x69\xb2\xe8\x8b\xa1\x5b\x83\xb7\xe8\xe6\xf1\xb2\xef\x73\x19\xad\x95\x7f\x59\x9a\xac\xfa\x91\xf4\xf2\x1d\x67\x31\x7d\x2b\x14\x2c\x18\xde\x57\xfc\x69\xe3\x74\x78\x78\x18\xe2\x77\xad\xce\x42\x74\x49\xfe\xab\xe5\xa9\xa4\xb3\xf0\xb7\x29\x73\x13\x0f\x3a\xf1\xde\xd4\xf7\x42\xed\x64\xc9\x2f\x2d\xad\x26\x4f\x62\x70\x58\x79\x5a\xfd\x2b\x94\xae\xcc\x5b\xb3\xc8\xb9\xd5\x62\x59\xf3\x99\x88\xb3\x32\x93\xbf\x35\x78\xbf\x0a\xba\x58\xd9\x2c\xf1\x96\x27\xff\x4d\x13\x1a\xed\x0f\x66\x8f\xf7\xfa\xb3\x87\x33\x47\x23\x5e\x52\xb9\xb0\xb6\x0c\x04\x90\x9f\x5a\xcb\x01\x03\xf5\x53\xec\x42\xca\x47\x8f\xfa\x8a\x18\x76\x44\x4c\x11\x8b\x35\x67\xcc\xe2\xc4\x92\xf0\xc2\x40\x31\xa5\x55\x20\x43\x00\x70\x04\xfd\xd5\x49\xf2\xd2\x85\xfd\xee\xab\xc3\x89\x5b\x45\xc0\x2e\x11\x75\xa1\xd8\x61\x54\xdc\xc3\xe1\x00\xc0\x0d\x87\x43\x77\xf9\xf2\x65\x9f\x7d\x8c\xa5\x13\x6a\x57\x0e\xa7\xc5\xfb\x38\xcb\x9a\x96\xb8\xb5\xbc\x9c\x02\x2b\x71\x3a\x01\xab\x59\x20\x4e\x81\x0b\xe5\x2b\xe3\xad\xba\x90\xbc\xa9\x79\x62\x42\xf0\xa1\x60\xe5\x69\xd1\xc7\xd3\x58\x1e\x83\xa6\xe7\xd8\xef\x5a\xbc\x55\xbf\x19\xe8\xe5\x0e\xf1\x40\x13\x7f\x34\xd5\x5f\xe8\xbb\xe6\xe5\xb1\x9e\x63\xdb\x93\xbf\x87\xac\x6a\x99\x4f\xc8\xf3\x64\x85\x58\x7e\x95\xcf\x16\x1d\x21\x0f\x40\xac\x35\xdc\xd4\x3f\xe4\xb3\xcc\xc3\x82\x91\xb4\xb5\xe1\xe1\x10\x4c\xa8\x6f\x85\xe0\xb4\xba\x6c\x92\xa1\x5a\xb0\x3c\x21\xda\xf7\x98\x3e\xec\xdf\x2d\x1c\x5a\x3e\x4d\xde\x43\x2d\x8f\x36\xa1\xa9\x1f\x3d\x0b\xaf\x37\xc1\x47\xf7\xe7\xb6\xb7\x43\x6b\x15\x26\xb5\x01\xa9\x71\x6b\x1a\x1b\x38\xe7\xb0\xdf\xef\xd3\xc6\xc6\x86\xb7\x0c\x1c\xe4\xbe\x08\x7f\x63\x74\x07\x72\xaf\x4b\x87\x00\x3a\x8e\xb0\xbb\x36\x4e\x4f\x9d\x3a\xe9\x5c\xe8\xce\xdd\x4a\xee\xd5\x80\xd2\xa3\xb2\xb8\x92\x05\xeb\x5b\x9b\xa1\xbe\x88\x77\x11\xdc\xaf\x6d\xa9\x54\x17\x7e\x13\x34\x00\x94\xe7\xc3\x14\xe0\xb5\x6d\xd4\x8b\xb9\x2f\x3e\x81\x4f\x93\xcf\x39\x21\x12\x76\x11\xf0\xe4\xe9\xca\xec\x67\x07\xfd\xd9\x11\xb8\xf2\x0a\xf7\x8c\x1f\x48\x57\x3c\xd3\x7c\x3e\xf7\x77\x65\x70\xed\xdf\x07\x5e\xbf\x9a\x96\x2d\xad\x01\xcd\xab\x66\xb5\xb5\xff\x26\x3d\x3e\x3c\x5f\x1e\x34\x4b\x5c\xc2\x86\xe8\x5d\xd0\xb0\x15\x7c\x56\xf9\x24\x8c\x86\x5b\xf2\xa6\x46\xa3\x56\xc6\x58\x0b\x31\x64\x8d\xf3\x6f\x08\xf5\x72\x6a\x69\xda\x58\xe7\x96\x67\xc0\x82\xe1\xef\xa1\xf6\x92\x78\x2d\xab\x33\xb6\xcd\x7d\xf0\x38\xac\xb6\xd3\xe0\x42\xd6\xbb\x55\x5e\x99\x4e\xeb\x3b\xa1\xfe\xa2\x59\xc1\xd2\x02\x6e\xf2\x3e\x5b\xdf\xad\x3e\xa7\xd1\xa3\xf5\x49\xfe\x2c\xcb\xcf\xfb\xb6\x86\x53\x2b\xb7\x84\x6b\xe2\x39\x9e\x8f\x05\x13\x83\x2f\xb6\x8d\x65\x3e\xb2\x3d\x24\x9c\x35\x6e\xf1\x3c\x2d\x7a\x39\x4d\x3c\xbe\x49\x4e\x5a\xf8\xfc\xb3\xec\x3b\x96\x67\xcc\x6a\x4b\xad\xde\x3c\x0c\x1f\x7b\x79\x9c\x35\x5e\x48\x7c\x4d\x6d\xac\x95\xbd\x2d\x0e\x09\xd3\x54\xaf\x3e\xae\x2c\x9b\x35\x55\x64\x15\x34\x54\x69\x1c\xb1\x35\x8d\x54\x0e\x94\x07\x07\x07\x98\xa6\x29\x5c\xb9\x72\x85\xcd\x16\x81\x7f\x70\x7e\x97\x0d\x00\x74\xf2\xe9\x22\xe8\xf4\x67\x6e\xed\xf4\x49\xba\x35\x9c\x24\x67\xb1\x98\x6f\xc9\x6b\x83\x4d\x1d\x51\xa1\x70\x14\x9a\x0d\xa1\xa1\xae\x50\xbd\xa6\xaa\x7b\x90\xf4\x75\x30\x39\x75\x55\x8c\x3f\xf6\xbf\xba\x94\xb1\xba\x24\xc0\x5f\x08\xe9\x51\xd5\x76\x1b\x15\x77\x1c\x15\x38\x5d\x92\x61\xe7\xa4\x9b\xdd\x78\xbc\x3a\x7d\x38\x75\x34\x01\xac\x0e\x46\x2a\xd6\xfb\x10\x22\x42\xb7\xdb\x85\x33\x67\xce\xd0\x8f\x7f\xfc\x63\x62\x64\xc9\xb6\x40\xa8\x93\x2c\x19\x1f\x45\x5a\xee\x16\x0a\x31\xde\x32\x03\x78\x53\x08\x29\x3f\xcb\xe0\x8f\xed\x88\x16\xff\x5a\xf8\x96\x0d\xa1\xf4\xcf\x52\xee\x10\xcd\x21\xe5\x73\x59\x9c\x56\x78\x1e\x3c\xa0\xd5\x43\x48\xd9\x6a\xca\x33\xd4\x96\x4d\xca\xb6\x0c\x52\x59\xd1\x06\x48\x60\x71\x1a\x4e\x99\x67\x48\xd9\x88\x2d\x9b\x06\x1f\xa2\x0d\x8c\x6f\x21\x5a\xdb\x86\x26\xa5\x2d\x26\xcf\x65\x65\xcb\xb2\x3c\x01\xa0\x2b\x0c\xb1\x0a\xb9\x86\xbb\xc9\x60\xb4\xd2\x35\x0d\xfa\x21\x63\xcb\x52\xd8\x78\x1c\x9f\x42\x08\xf1\x51\x28\x58\x8a\x8f\x46\x13\x0f\x4d\xfd\x2e\xa6\x7e\x7c\x5c\x19\xdf\xb4\x38\x97\x23\x6f\x5a\xe0\x63\xb9\xfa\x43\x30\xd2\x85\xc7\xa7\x8a\x26\xfc\x6f\x92\x64\xc7\x7b\x83\xd9\x83\x9d\xc1\xec\xfe\xe9\xa3\xce\x4b\xdd\x0c\x87\xd5\x2d\xcf\xb9\xd2\x41\x20\xbc\x24\xa8\xad\x86\x29\xde\xb0\x4c\xad\x4f\xf7\x10\x00\x30\x18\x1f\xaa\x83\xe8\xea\x17\x2e\xfa\xc4\xe8\x77\x17\xb1\x5c\xbd\x12\xa5\xec\xd3\x76\xdd\x99\xdb\xde\xde\xeb\x7e\xe9\xd6\xa9\xce\x67\x93\xb5\xc9\xf1\xac\x50\x5e\x8a\x2b\x10\xf8\xa2\x65\x48\x92\x04\x2e\x5d\xba\xe4\x6e\xdf\xbe\x2d\xdd\x85\xdc\x83\xc2\x9f\x65\x08\xa5\xd1\xe0\x64\xfb\xf0\x34\x9a\x46\x1c\x5a\xd0\x26\xe1\x2c\x5a\x2c\xbc\x16\x9e\x10\x8f\x49\x38\x10\x69\x42\x96\x98\x95\xc6\x0a\xa1\x34\x4d\x65\x68\x0a\xa1\x36\xe5\x21\xc6\x95\x1d\xaa\x87\x26\x7a\x39\x3e\xab\x8f\x87\x42\x4c\x3d\x34\x7d\x8f\xc1\xa1\x3d\x37\xb5\xb5\x0c\xda\xf4\x4b\x08\xbe\x09\x9f\xc5\xa7\xcb\xd2\x15\xd3\x2f\x2c\x78\xad\x9d\x2d\x7e\x8d\x79\x6e\x9a\xce\x8a\xad\x63\x2b\xb4\xc1\x09\xca\xf7\x18\xba\x9b\xea\xc1\xc2\xef\x4e\x9f\x3e\x0d\xc3\xe1\x50\xa3\x55\x8d\x7b\xfa\xf4\x29\x1c\x1f\x1f\xcb\xfc\x43\x79\xc4\xb6\x89\x15\xa4\x3c\x8f\xc9\x33\x84\x63\x59\x3a\x34\x98\x18\x3d\x63\x21\x3e\x15\x1f\x39\xb2\x58\x61\x22\x3b\x48\x88\x80\x5a\x18\x8d\x46\x70\x70\x70\x90\xad\xaf\xaf\x3b\x00\xf0\x07\xe3\x64\x00\xb5\x53\x74\x67\x00\x30\xcb\x1c\x8c\x0e\x7a\xf3\xdd\x27\x2b\xd3\xbb\xdb\x7b\xbd\xdd\xce\x08\x87\xa5\xc2\x80\x6c\x51\x2c\x40\xe9\x01\xa9\xd4\xbc\xc2\x0b\x82\xdc\xfb\x51\x3f\x39\xb7\x9c\x2a\xaa\xe9\x37\x8b\xbe\x1a\x8e\xbf\x8c\x60\xd3\x46\x25\x5c\x81\xbb\x52\x82\x16\x4f\xf0\x45\x40\x70\x40\xdd\x53\xc7\x9d\x77\x2f\xee\xf6\x7e\xb0\x3b\x98\x3d\x3e\xea\xce\x8f\x29\x5f\xe7\x92\x16\x87\xd1\xf9\x6b\x11\xb2\x7e\xbf\xef\x7e\xfd\xd7\x7f\x3d\xfb\xd3\x3f\xfd\x53\x59\xcf\xa1\x8e\x68\x85\x26\xc1\xe9\xbf\x35\x29\x40\x16\x3e\x8b\x1f\x42\x02\x44\x4b\x63\xd1\x17\xc2\x27\xe1\x9a\x94\x9b\x26\xdc\x16\x9e\x98\x34\xa1\xfc\x62\x3b\x7d\x53\x9d\x36\xa5\xd1\x06\x28\x8d\xae\x98\x3a\x8d\x55\x68\x42\x34\xc9\x74\xcb\x28\x33\x21\xdc\xda\xb3\x65\x8c\x59\xed\x6a\x0d\xea\x1a\x4c\x08\xb7\x16\x9a\x04\xfe\xb3\x0c\x46\x56\x9d\x71\x3a\x63\xea\x5b\x83\x8d\xed\x43\x6d\x06\x33\x0e\x17\x33\x68\x4a\xbc\x6d\xea\x4a\x3e\x6b\x34\x58\xf9\x96\xdf\xce\x9c\x39\xc3\xe9\x80\xf7\xde\x7b\x0f\xae\x5e\xbd\x1a\x7b\x28\x5e\xf6\x2f\xff\xf2\x2f\xf0\x8b\x5f\xfc\xa2\x4c\x3f\x99\x4c\xe0\xe0\xe0\x20\x56\xb1\x92\x74\x69\x65\x68\x52\x52\x83\xf4\x19\xf1\x16\x3f\x34\xf1\xba\x85\xdb\xaa\xef\x28\x99\x93\x06\x3e\x36\x75\xd2\xd8\x81\x4f\x86\x52\xc0\xdd\xbc\x79\x33\x23\x22\xf7\x6b\xbf\xf6\x6b\x32\xcd\x0c\xa0\xbc\x83\x62\x52\x6c\x15\x9e\x8d\xd3\xec\xf8\xe9\x70\xfa\xf0\xa0\x3f\xbb\xbf\x36\x4e\xb6\xa5\x37\x85\xfc\x8d\xd1\x5e\x69\x29\x15\x92\x4a\x83\x28\xa7\x8e\xb8\x07\xa4\x88\xab\xcd\xa1\x60\x0d\x75\x5d\x11\x11\xeb\x56\x72\x14\xd2\x33\x53\x4b\x5e\x28\x44\xc8\xfc\x3e\xa5\x06\x05\x83\xa9\x7b\xf1\xd2\x6e\xff\x4b\x77\x36\xc6\xb7\x46\x69\x76\x58\x78\x5d\x4a\xe5\xa5\x38\xd3\xa5\x3c\x90\x6e\x30\x18\xb8\x93\x93\x13\x5f\x57\x21\xaf\x00\xff\x16\x1a\xb0\xda\x5a\x58\x6d\x3d\x09\x21\xe5\x21\x56\x08\xc5\x7e\x8b\xb5\xb6\x9f\xc5\x8a\x6f\x03\x17\x53\x6f\x96\xb0\x69\xca\x77\x99\xef\x6d\xdb\xba\x29\xaf\x18\x65\x27\x26\xbd\xe4\xcd\x26\x21\x17\xa2\x39\x46\xf8\x3d\x6b\xb9\x3d\x8e\x90\x52\x1c\x33\x08\x69\xf9\x34\x29\x4a\x92\x06\x2b\xb4\xe9\x17\xcf\xab\xbe\x35\xbe\x6e\xc2\x11\xe2\xa1\x10\xff\x2e\x43\xb7\x15\x6f\xca\x26\xe7\x1c\xf4\x7a\xbd\xb2\x1c\xbf\xf3\x3b\xbf\x03\xc5\x0e\xd8\x5a\xe0\xd7\x10\x18\x4a\x4c\x06\x00\xee\x97\x7e\xe9\x97\xe0\x97\x7f\xf9\x97\xcb\xc8\x3b\x77\xee\x64\x7f\xf3\x37\x7f\x53\xe2\x2b\x64\x7b\x28\x58\x72\x2d\x24\x93\x63\xe5\x75\x93\xf2\x18\x93\xae\x6d\x7d\xcb\x71\x2a\x94\x0e\x00\xc2\x6b\x5c\xe4\xbc\x73\x26\x7e\x43\xf3\x55\xa1\x39\xf8\x1a\xd1\x9b\x9b\x9b\x78\xed\xda\x35\xbe\x80\xc8\xc3\xf9\x2b\x01\x52\x44\xec\x00\x40\x3a\x47\x48\x10\xb0\xb3\x3e\x4a\x36\x4f\x9f\x74\x2e\x26\x19\x76\xcb\xb5\x26\xe5\xda\x93\xfc\x19\xfd\xe2\x5c\x80\x9a\x02\x93\xcf\xda\x88\x4b\x1a\xa1\x3a\x78\x4e\x4e\xf3\xf0\xfb\x87\x00\x74\x86\x24\x89\x03\x84\x67\xa6\x28\x59\x7d\x1a\x0a\xca\x35\x35\x0e\x30\x49\xf3\xb5\x2e\x37\x77\x87\xb3\x47\x93\x94\xc6\x80\xb5\xdb\x4f\x09\x20\xdf\x22\x8d\x88\xf8\xce\x3b\xef\xe0\x4f\x7e\xf2\x13\x9a\xcf\xe7\x72\x7e\x5d\x9b\x73\xe5\x0d\x5e\x73\x4c\x89\xf8\x65\x9e\x43\x6b\x0a\x64\xd0\x78\x4a\xf2\x0a\x9f\x7f\xcd\x14\x38\x8b\xef\xac\xb5\x02\xa1\xb9\xd7\x50\x5e\x5a\x7a\x8d\xf6\x26\x38\xeb\x5b\x53\xfd\xc8\x45\x6c\x5a\xb9\x63\xd7\x04\x68\xe9\x62\xeb\x3e\x34\xaf\x1d\x6a\x0b\x2b\xf0\xb5\x22\x52\xce\x48\xde\xe4\xf8\x25\x1c\x18\xf1\x5a\xb9\x62\x64\x95\x7f\xd6\xd6\xb2\x84\x84\xb3\x25\xeb\xe4\x37\x8b\x06\x59\x06\xab\x9c\x1e\x87\x8f\xd7\x64\xb4\xcc\x5b\xe2\xd0\xea\xc7\x19\xcf\xb1\xed\x10\xaa\x6f\xfe\xcd\xaa\x63\xc9\x0f\xfe\x17\x8c\xe7\x4c\xa1\x4b\x2b\xaf\x1c\xe8\x62\xca\xa3\xd5\x05\x02\x00\x6e\x6f\x6f\xc3\xef\xfe\xee\xef\xba\x77\xde\x79\x07\xdf\x79\xe7\x9d\x72\x41\x26\x54\xed\x80\x90\x8f\xa5\xe5\x3b\xe6\x3b\x2a\xca\xa3\x3e\xd8\x45\xc2\xe0\xbf\xfb\xfc\xd7\xd6\xd6\xd0\xe3\x7e\xeb\xad\xb7\xe8\x5f\xff\xf5\x5f\xf9\x78\x18\x92\x99\x21\xb9\xa0\xf1\xb7\xc5\x03\x00\xf5\x3a\xb6\x70\xcb\xf8\x98\xfa\xb6\xfa\xab\x6c\x07\xa9\xc8\x70\xbe\x90\x78\xcc\x35\x2e\x1c\x81\x8c\xf3\xef\x4e\x79\x0f\x69\xff\x1a\xfe\x32\x4e\x28\x04\x19\x88\x13\x74\x01\x60\x02\x08\x93\x93\xce\x7c\xff\xe1\xda\xf4\xf6\xa5\xbd\xd9\xfd\x33\xf3\xee\x35\x00\x5f\x22\xac\x8e\xdf\x5f\x38\xb0\x45\x5f\xa7\x02\x55\x62\x50\xa2\x98\x62\xc3\xa6\x77\xc4\xb4\x14\x5b\xf1\x52\xcf\x12\x20\xbf\xec\x11\x44\x8d\x17\x89\xaa\x8d\xda\x79\xc4\x60\xea\x5e\xba\xba\xd3\xff\xa5\x7b\xeb\xe3\x5b\x27\x9d\xec\x70\x96\xd0\x04\xf2\xf6\xf1\x6d\xc4\xeb\x38\xa6\x9e\x7d\x9a\x98\xb8\xff\x8a\xd0\xc6\x52\xb4\x2c\xaa\xd8\x34\x6d\x42\x2c\xfe\xe7\x91\xd7\xb2\x74\x3c\xef\xfc\x96\xa9\xfb\x36\x38\x96\xc5\xdd\xb6\xdd\x63\xea\x29\x26\xad\x66\x05\xc6\xd0\xf4\x3c\xbc\x22\xb1\x70\x4d\x9e\x0c\x2d\xb4\xf1\x42\x3d\x4b\x9f\x6b\xc2\x2d\x2d\x6d\x39\x76\xc8\x5f\xeb\xbb\x65\xb1\xcb\x7c\x9e\x55\xb6\x64\x00\x00\x6f\xbd\xf5\x16\x7c\xf5\xab\x5f\x75\xb0\x38\x3e\xb9\xc0\xaf\xa7\x53\x5e\x7a\x58\xd6\x15\x7b\xce\xc4\x3b\x20\x22\xfc\xf1\x1f\xff\xb1\x03\x80\xec\xbb\xdf\xfd\x2e\xec\xee\xee\x5a\xb4\x97\xe9\x95\xf8\x90\x57\x6a\x19\x1e\x08\xd1\xd0\x84\x73\x99\xbc\x1a\xe9\xb0\xb6\x43\x4b\x6d\xd9\xc7\x69\xd6\x7b\xc6\xde\x43\x41\x73\xf9\xd1\xc1\xc1\x01\x3e\x78\xf0\x00\xae\x5d\xbb\xc6\xb5\x50\x2c\xbe\x27\x44\x94\x94\xbb\x8b\x00\x52\x42\x4a\x11\xb0\x7f\xfa\xb8\x73\x66\x63\x94\x5e\x74\x50\xb9\xec\x4a\x97\x0d\xf3\x6e\x54\xca\x45\x45\x72\xed\x5b\xe9\xf9\xa8\x9b\x00\xfa\x4c\x65\x0e\x21\xa7\x95\x16\x26\x90\x8a\x8f\x95\xe2\x53\xa7\xad\x1e\x57\xa6\x4a\xd2\x0c\xbb\xa3\x0e\xfd\x62\xaf\x3f\x7b\x3c\x4a\xb3\x13\x02\xf2\xd7\x94\x97\x07\xd3\x41\xde\x89\xe8\xd5\x57\x5f\x85\xcf\x3f\xff\x1c\xc7\xe3\xb1\xb4\x3a\x42\xd6\x18\x0f\x21\x2b\x70\x19\x38\x99\xb7\x45\x87\xc4\x17\x4b\xbb\xfc\x26\x2d\xae\xa6\xfc\x62\xeb\x45\xcb\xd7\x4a\xa3\x59\x7d\x31\xe9\x42\x30\xff\x19\xed\x12\x13\x64\xdb\x59\x6d\x62\x59\xe9\x31\x74\xb6\xe5\xa5\x65\xd2\xc5\xa4\xb5\xbe\xb7\x7d\xd6\xf8\x38\xc6\x13\x62\x59\xfd\x6d\x82\xd5\x87\xa4\x97\xc5\x87\x98\xbe\xb8\x2c\xad\x9a\xd7\x28\x94\x4e\xa3\x15\x22\xbe\x6b\x7c\x68\x79\xac\x9a\xd2\xc9\x50\xc6\x7f\xf0\xc1\x07\xee\xc3\x0f\x3f\xc4\x4b\x97\x2e\x41\x92\x24\xdc\x5b\xe2\x3d\x2b\xde\xbb\xe2\x0f\x4a\x75\x90\xdf\x37\xe7\x10\xb1\x53\x8c\x59\xae\x78\x97\xf0\x12\x87\xf7\xc8\x38\x44\xe4\xca\x11\xbe\xfc\xf2\xcb\xf4\xd6\x5b\x6f\xe1\xde\xde\x1e\xee\xed\xed\x59\x65\x6b\xe2\xc1\x98\x36\xb6\xbe\x69\x7c\x10\xea\x5b\x6d\xfa\x5a\x13\x0d\x41\x5a\xe5\xe2\x5c\x39\x1d\xd4\x64\xe5\x87\x3c\x2d\x21\xad\xaf\x7c\xcf\xb2\x2c\x1b\x8d\x46\x5c\x3b\xe5\x5e\x9e\xac\xb8\xc3\xa7\xdc\x5d\x34\x47\x18\x1d\x76\xe7\x3b\x4f\x56\xa6\xb7\xb7\xf7\x7b\xfb\x83\x49\x72\xba\x54\x12\xa8\x52\x46\x74\xc5\xc3\x2b\x18\x5e\x01\x29\xdd\x1f\xd5\x76\x65\x2a\xfc\x27\x35\x2f\x8d\x3f\x85\x17\xfd\xab\x3f\x58\xb7\x76\x9e\x0b\x00\xd4\xce\x96\x29\x53\xd3\x82\xd3\xa7\xf4\xd1\x50\x91\x00\x11\xa1\x37\xc3\xed\xed\xbd\xee\x97\xee\xad\x8f\x6f\x1e\xf6\xe6\xbb\x53\x57\x79\x5d\xfc\x99\x2e\x50\x68\xf2\x83\xc1\x00\x84\xe6\x6e\xd5\xb3\x15\x42\xd6\x12\x88\x6f\xcb\x78\xd3\x62\x78\x22\x26\x8d\xf5\x4d\xb3\xd4\x42\xe9\x9e\x87\x47\xa6\x0d\xee\xd8\xfa\x6a\xea\x27\xcb\xd0\xb5\x4c\x78\x6e\xd6\x10\xd8\x96\xb1\xc5\x73\x1a\x9f\xb5\xcd\xc7\xa2\x31\x04\x17\x4b\x9f\xf5\x1c\xf2\x00\xc4\xb6\x6b\x53\x3b\x36\x79\x4d\x62\xd3\x3e\x0b\x8f\x7a\x5c\x31\xb8\x9b\xfa\x5b\x4c\x79\x38\x3f\x58\x38\x65\x5c\xdb\x36\x5e\x80\xf9\xd6\xb7\xbe\xe5\x36\x37\x37\x61\x75\x75\xd5\xaf\x69\x71\x00\x00\x85\x12\xe2\xd7\xb5\x98\x7f\x09\xa1\xeb\xce\x9c\x4b\x33\x74\x5e\x32\x67\x0e\xb2\xb9\x23\xc8\x80\xb2\x69\x4a\x19\x61\x39\x96\xf2\x31\xb5\xbc\xaf\x8f\xc9\xf9\xac\xdf\xef\x3b\x00\x80\x0f\x3e\xf8\x20\x4b\xd3\x14\x6e\xdc\xb8\xa1\xd1\xad\xb5\x43\xdb\x3a\xb1\xf0\x35\xc1\x5b\x7d\x21\xb6\x1f\xcb\x36\x8e\xce\x9b\x7b\x5c\xa4\x96\xcb\xe7\x7a\x43\x56\xab\x36\x47\x69\x59\x1e\xaa\x46\xb6\xb2\xb2\x02\xaf\xbf\xfe\x3a\x77\x8e\x2c\x78\x5e\x8a\xbf\xe2\x0a\x00\x48\x3b\x73\x37\x38\x7b\xd4\x3d\xbf\x32\x71\x5b\xd5\xee\xa2\x45\x05\x01\x01\xaa\xdb\x3f\xb1\x52\x5d\xca\x88\x92\xd2\x6a\x3d\x0a\x0a\x0f\x0c\x01\x2e\x2a\x43\x0c\x05\xd6\x76\x0c\xe5\x5a\x0a\x9f\x08\xaa\x34\x9d\x22\x09\x16\x9e\x96\x5a\x2d\x22\x00\x40\x92\x10\xba\x49\x4a\x0f\xf7\xfb\xb3\x07\xa3\x0e\x9d\x00\x96\x07\xd2\xd5\xbc\x2e\x00\x00\x67\xce\x9c\xa1\x47\x8f\x1e\xe1\xc9\xc9\xc9\xb2\x96\x77\x93\x20\x94\x3c\xf1\xac\x56\xfe\xf3\xf4\x10\xfc\x77\x09\xff\x1d\xeb\xa4\xa9\x4c\x92\x9f\x9a\x2c\x70\x8b\xef\x62\xea\xce\x77\x63\x6b\xde\x5d\xc3\x1d\xdb\x26\x21\x9a\x42\xd6\x69\x9b\x36\xb7\xe8\xb6\x60\x96\xcd\xa7\xc9\xb3\x42\x22\x4e\xe6\x19\xf2\x1c\x59\x5e\xa0\xa6\xf2\xc8\x3c\x43\x21\xd6\x9b\xa4\xc2\x7c\xf3\x9b\xdf\x74\x57\xae\x5c\x81\xb5\xb5\x35\x97\xa6\xa9\x1f\x77\x7c\xb9\x9c\x5f\x67\xc9\xfe\xba\xfd\xa9\xeb\x6d\x9e\xa4\xab\x5b\x87\x9d\x8d\xf3\xfb\xbd\xd3\x97\xf7\x7a\x17\xae\xec\xf6\xaf\x5c\xde\xe9\xbf\x7c\x69\xaf\x77\x75\xfb\xa0\x7b\xe5\xc2\x7e\xef\xe2\xf6\x7e\xef\xc2\xb9\xc3\xee\xe6\xe6\x28\x1d\x0c\x27\x49\xaf\x37\x73\x1d\x47\x90\x66\x08\x2e\x73\xb9\xb7\x05\x00\x80\x1d\x68\xc6\x9d\xfe\xd4\xeb\xf5\xf0\xd4\xa9\x53\x74\xf5\xea\x55\x1c\x0c\x06\xf8\xf0\xe1\xc3\x18\x9e\xf0\xdf\xda\x7a\x2e\x43\x6d\x1c\xf2\x28\x5a\xed\xda\x94\x27\x6f\xe3\x68\xef\xa3\xf7\xb8\xc4\x5a\xc2\x6d\xe6\xb7\x2c\x6b\x52\x6a\xd3\x70\x70\x70\x00\xff\xf8\x8f\xff\x08\x5f\xf9\xca\x57\x6a\x5b\xa2\x01\x60\x56\x68\xa0\xb5\xb5\x2e\x33\x47\xc7\x4f\x56\xa6\x0f\x76\x86\xd3\xdb\x67\x8e\xd3\x6b\x49\x06\x5d\xa9\x92\xd4\xb4\x20\xaf\x58\x88\x49\x23\x9e\x80\xaf\x5d\x91\x01\xe5\x33\x2e\x7e\x40\xf4\xdb\xab\xeb\x18\x72\x78\x5c\x80\xe7\xe9\xd8\x9b\xeb\xcf\xdc\xf6\x85\xbd\xde\xdb\x8f\x56\xa6\x9f\x1f\xf6\xe6\xfb\xe3\x24\x9b\x15\xe5\x2f\x2f\x60\x2c\xdc\x8a\xd9\xf9\xf3\xe7\x5d\xaf\xd7\xd3\x2c\x3d\x1f\x34\x0d\x58\x6a\xc3\xd2\x92\xe2\xf1\x9a\x15\xac\x59\xcb\x5a\x1a\x0d\x17\x4f\x23\x2d\x39\x49\x5f\x1b\x6f\x4f\x28\x8d\x85\xa7\xe9\x3d\x94\x8f\x46\x77\x6c\x78\xde\xf4\x78\x1a\x62\xac\x57\xad\x6e\x00\xc2\x75\xa5\xb5\xa5\x96\x46\xd2\x14\xa2\xcb\xb2\xde\xdb\x7a\xff\x62\x9e\x39\x2d\x12\x97\x8c\x7f\x1e\xf9\x3c\x8b\xd7\x48\x7b\x8e\xb1\x6a\x79\x88\x81\x6f\xe3\xb9\x69\x6b\x49\x37\xb5\xe5\xb2\xf1\xcb\xc8\x05\x0d\x97\xa4\x17\x3e\xfc\xf0\x43\xf7\xe2\x8b\x2f\x42\x9a\xa6\xdc\x83\xe2\xe1\xcb\xa9\x20\x20\x70\x8e\xa0\xbb\x3e\x4a\xfb\xa7\x4e\xd2\xf5\xd3\x47\x9d\x73\x9b\x27\xe9\x95\x95\x49\x72\xbe\x3f\xc3\x17\xba\x73\x77\xba\x33\x77\xa7\x93\x0c\x87\x6c\x04\xce\x08\x69\x36\x73\x74\x38\x4e\xb3\x87\xa3\x94\x1e\x9e\x74\xe6\x0f\x0e\x7b\xf3\xbb\x3b\xc3\xe9\xfd\x47\x2b\xd3\xc7\xbb\x83\xd9\xe1\x34\x25\xbe\xa6\x53\x7a\x5f\x66\xa7\x4e\x9d\x72\xa7\x4e\x9d\x82\xf5\xf5\xf5\x0c\x00\xe0\xc7\x3f\xfe\xb1\x56\x6f\x96\xcc\xb6\xea\x22\x66\x7c\x68\xaa\xcf\x65\xdb\xd8\x92\x5d\x72\x0c\x51\x69\xf0\x1e\x97\x90\x96\xa3\x7a\x49\x60\xd1\x8a\xb1\xb4\x74\x8e\x43\x56\x2c\x01\x00\xcd\x66\x33\x3c\x3e\x3e\x86\xb7\xdf\x7e\x5b\xea\x08\xc8\xdc\x73\x69\x41\x6f\x4a\x00\x1d\x42\x48\x56\x26\x6e\xe5\xec\x51\xf7\x72\x77\xee\x56\xe5\x8e\x21\xef\xe4\xf0\x44\x58\x67\xac\x94\x85\xe0\xf0\xfe\xbb\x3f\xd8\x8e\x9d\xf3\xb2\x70\x5e\x4b\x91\x20\x9f\x9f\xcc\xe7\x9c\xc8\x3b\x5e\x7c\x29\x44\xbe\x3c\xad\x77\xd2\x78\x6f\x10\x12\x74\xd2\x0c\xd3\x59\x42\xbb\xfb\xfd\xd9\xfd\xe3\x5e\x76\x04\x39\x13\x7b\x8f\x0b\x9f\x22\xa2\x24\x49\x68\x6f\x6f\x0f\x4f\x4e\x4e\xb8\x95\x82\x50\x6f\xf0\x90\x95\x43\xca\x9f\x8f\xd7\x18\x30\x64\x89\x91\x88\x93\x5e\x3b\x14\xf0\x32\x3d\x28\x30\xb1\x56\xb5\x25\xd0\x2c\xaf\xd1\x32\x56\x36\xc7\x91\x41\x73\x9a\x90\x35\x2f\x3d\x95\xcb\xd2\xd3\x54\x4f\x5a\xdb\xf0\x3c\x35\xde\xd0\xda\x47\xb6\xad\x45\xa7\x06\xef\x83\xcc\x37\xb6\xad\x2d\xab\x4c\xf2\x8d\xc6\x5f\x1e\x2e\xe4\x89\xd0\xbe\x69\x65\xe4\x3c\x26\xf3\x09\xc5\x69\x41\x83\x0f\xc9\x53\x8b\xaf\xe5\x33\xcf\xd3\xaa\x2b\x59\x1f\x4d\xb0\x1a\x8c\xcc\x4b\xc2\xc7\x58\xe6\x1c\x87\x96\x3f\x2f\x73\xa8\x7d\xb8\x6c\xb1\xf2\xf1\x34\x95\x75\x98\xa6\x29\xbe\xf7\xde\x7b\xf8\xe6\x9b\x6f\x42\x92\x24\xa5\xd2\xc2\xd6\xa6\x74\x00\xa0\x43\x44\x69\x42\xd8\x3b\x75\x92\xae\x5d\xde\xeb\x5f\x7c\xe9\x49\xff\xed\x17\x9f\x0e\xbe\x76\x71\xaf\xff\xcd\x73\x87\xdd\x0f\x4f\x8d\xd2\xaf\xac\x4e\x92\xb7\x07\xd3\xe4\xf5\xde\xcc\xbd\xdc\x9d\xbb\x2b\x9d\xb9\xbb\xd4\x9d\xbb\x4b\xdd\x39\x5e\xec\xce\xdd\x95\xde\xcc\x5d\x19\x4e\x93\x97\x56\xc7\xc9\x2b\x1b\xa3\xce\x6b\x9b\x27\xe9\xff\xb5\x39\xea\x5c\x58\x1b\x27\xab\x83\x69\xe2\x92\x0c\xb3\x69\x9a\x65\x73\x57\x79\x5b\x10\xf9\xe8\x00\x40\x44\xd8\xef\xf7\x61\x7d\x7d\x9d\x00\x00\x1f\x3d\x7a\xd4\xd4\x7f\x65\xfb\xb4\x6d\x6f\x59\x77\x5c\x96\x7b\xba\x96\xe5\xd3\xd0\xb8\xc1\x9f\x65\x19\x1c\x00\x50\x22\x23\x94\x67\x39\xe8\xf8\x42\x00\x34\x77\x62\x59\x10\x4d\x78\x02\x00\x10\x22\x62\x9a\xa6\x74\xee\xdc\x39\x82\x9c\x79\x80\xb9\xcd\x52\xb6\xe0\xc9\x5f\x03\x90\x10\x42\xe7\xdc\x61\xf7\x85\xd5\x49\x7a\x0e\x01\x9c\xdf\x02\x5d\xdb\xbe\xcc\x88\xf5\x21\xff\x94\x7f\xe1\xb5\xef\x4f\x9f\x2b\xbf\xb3\x93\x71\xb9\xf7\x86\xe3\xad\xc7\x63\xa5\x80\x20\xe4\x0a\x4c\x0d\xa6\x4e\x10\xcf\xa7\xc4\x47\x88\x8e\xb0\x9f\x10\x4e\x8f\x3b\xf3\x07\xbb\x83\xd9\xa3\x79\x02\x13\x44\x9c\x17\xdb\xa1\xcb\x93\x74\x89\x28\x3b\x7d\xfa\x34\x76\x3a\x1d\x3a\x38\x38\x80\x42\x79\xe1\xfe\x20\x8d\xa9\x64\xbc\xd6\xe9\x7d\xe0\xed\xc4\xe1\x2c\x5e\xb1\xda\xbd\xcd\x40\xcf\xf3\xe5\xb4\x4a\xdc\xb2\x0c\x99\x48\xcf\x71\xca\xc1\x5a\xc6\x49\x1a\x2c\xd7\xbb\xe4\x75\x0b\x8f\xa5\x8c\x48\xe5\xcd\xb2\xd8\x9b\x06\x07\xd9\x16\x5a\xfb\xf1\xfa\x93\xdf\x43\xf0\x6d\xea\x5e\xa3\x35\x34\xb8\xc9\x78\x2d\xce\x12\xba\x3e\x84\x70\x87\xd2\x5a\x6d\x2a\x71\x86\x82\x56\x0e\xf9\x4d\x93\x9d\x5a\x5d\x59\xf0\x1a\xbd\x12\x57\x28\x34\x19\x93\x3e\x4f\xdf\x5f\xb8\x54\x6a\xea\xd3\xd6\x00\x15\xea\x23\x32\xdf\xd8\x7e\xeb\xdf\xad\x32\x6b\x6d\xdf\xc4\x3f\xe5\x7b\xaf\xd7\x73\xd7\xaf\x5f\x87\x2f\x7f\xf9\xcb\xb5\xb5\x2b\x85\xd2\x92\xdf\x91\x47\xd4\x71\x80\x9d\xc1\x34\x59\xbd\xb0\xdf\x3b\xff\xf2\x93\xc1\x9b\xd7\x1e\x0f\xbf\xb9\xbd\xdf\xfb\xf6\xa9\x93\xce\x07\xc3\x69\xf2\x4e\x77\x8e\x5f\x48\x33\xb7\xe5\x00\xd7\x90\xb0\x8f\x80\x29\x62\x8e\x0b\x01\x1c\x12\x26\x00\x98\x38\xc4\xae\x23\x5c\x71\x84\xa7\x52\xc2\x0b\xdd\x39\x5e\x1c\x4e\xdd\x95\xf5\x71\xe7\xea\xa9\x93\xf4\xfc\xda\x38\x59\x49\x33\x07\x73\xa4\xe9\xa8\x93\xcd\x01\x80\x0f\x5c\xde\x88\xcf\x00\x00\xfb\xfd\x3e\x9c\x3e\x7d\x9a\x26\x93\x09\x3e\x79\xf2\x64\x59\xbe\x8e\xe5\x79\x4b\xb1\xb4\x64\x7a\x4c\x3b\xc8\x78\xad\x8f\x48\x79\x5d\xe3\x53\x6d\x8d\x8b\x56\x28\x4e\xb8\x13\xf1\x4d\x9d\x58\xba\x11\x55\xe5\x65\x3e\x9f\xd3\xdd\xbb\x77\xf1\xdd\x77\xdf\x05\x00\xe0\xcc\x84\x00\xc0\x57\x67\x27\x88\x98\x10\x40\x3a\x4d\x32\x3c\x75\xd2\xd9\x3c\x75\x92\x5e\xea\x64\xd8\xf7\xae\x8e\xea\xc0\xb9\x7a\x69\xeb\x45\xc1\xea\x3b\x5b\x20\x9b\x2f\x87\xa1\x72\x7a\xa9\x7e\x6d\x00\x54\x5e\x13\x0f\xc7\x71\x21\x00\x15\xf8\x91\x2a\xaf\x4e\x29\x45\xb4\x95\xbb\x50\x3f\x01\xa6\x48\x9d\xa4\x19\xa6\x19\xd2\xd1\x41\x3f\xbb\x77\xd0\x9b\xef\x17\x3b\x8c\xe6\x00\x40\x6c\xa7\x11\x20\x22\x9d\x39\x73\x06\x77\x77\x77\xe9\xe1\xc3\x87\xa5\x17\xcb\x68\x1b\x19\xcf\x99\xcf\x62\x1e\xdf\x7e\xdc\x5a\xb1\x78\xc5\x52\x10\x9a\x98\x58\xd2\xa2\xd1\xaa\xd1\x2c\x69\xb0\xca\xec\xe9\x97\xb8\x34\xc1\x2e\x71\x58\x96\x89\x7f\xd7\x94\x0f\x4b\xe0\x6a\xf5\xd2\x24\x6c\xac\xfe\x15\x2a\x33\xaf\x23\xdf\x6e\x21\x8f\x83\x85\x53\x83\xb7\xe2\x2d\x5a\x24\x6f\x71\xc5\x4d\xf2\x85\xe5\x35\xb1\x94\x25\x4b\x01\xe3\xb4\x69\x03\xa9\xc4\x1d\xcb\x9f\x4d\x8a\xbb\xc4\xcd\xdf\x35\x05\x52\x96\x41\x2b\x9b\x55\x5e\x4b\xf0\x73\x5e\xb4\xe8\x95\x7d\xda\x09\xf8\x58\xf9\x2d\xcb\x18\xca\xd3\xe7\xa5\x29\x56\x72\x7c\xd1\x60\x64\xfd\x4b\xa5\x49\x33\x94\x78\x28\xe9\x19\x0c\x06\xee\x95\x57\x5e\x81\xf7\xdf\x7f\xbf\x1c\x5f\x00\xca\xfb\xf1\xbc\x97\xa5\xd3\xcd\x5c\x6f\xf3\x24\x3d\x7d\x65\xb7\xff\xf2\xab\x0f\x87\x5f\xb9\xb2\xd3\xff\x8d\xcd\x93\xf4\x5b\xfd\x99\xbb\x9e\x10\x6e\x39\xc0\x3e\x02\x3a\xbf\xb1\x03\xd1\x8f\x01\x50\x9d\xc0\x8e\x50\x79\xd9\xb1\x1a\x13\x80\xa0\x93\x80\xdb\xe8\xcc\x71\xbb\x3f\x73\x2f\xae\x8d\xd3\xcb\x9b\x27\x9d\xcd\xee\xdc\xcd\xc6\x29\x1d\x8f\x3b\xd9\x2c\x2b\xa6\x11\x0a\x23\x9e\x88\x08\x01\x20\x43\x44\xec\x76\xbb\xf0\xc2\x0b\x2f\xd0\xe1\xe1\x21\xec\xec\xec\xf0\xf2\x5b\x7c\xa1\x19\xac\x31\xcf\x52\xe6\xf3\xb6\xb4\xd2\x49\x5d\xa1\xa9\xfd\x3c\x8c\xc6\x53\x72\x8c\x02\x80\xba\xe2\x62\x05\xd9\xf1\xa5\xd0\xd1\x60\x7d\x08\x59\x0d\xb2\xb3\x80\x73\xce\x2b\x2e\xd2\x6b\xe0\xb7\xa4\xd5\x2e\x5e\xcc\x1c\xb8\x4e\x86\xdd\xad\xc3\xee\x95\xc1\x2c\x59\x47\x28\xf6\xce\x23\x80\x3f\x44\x97\x2b\x09\x08\x22\xa2\x60\xae\xf2\x90\xb8\x72\x81\xae\xbf\x1d\xba\x9a\x1e\xf2\xc8\x10\x20\xd7\x8f\x7c\xba\x02\x65\x95\x17\x2e\xe4\x5b\x7d\x12\xf7\x29\x51\x15\x5f\x16\x18\x0b\xd4\x04\xbd\x24\xc3\x6c\x92\xd2\xa3\x27\x2b\xd3\x87\xf3\x04\x26\x50\xcd\x79\x97\x4a\x8b\x2f\xc9\xfe\xfe\x3e\xed\xee\xee\xe2\x64\x32\xb1\x04\xaf\x16\xac\xc1\x9f\x93\x1d\x1a\xec\x42\x1a\x72\xd3\x20\x16\xa2\x25\x86\xe6\xd8\x8e\x17\x1a\xe4\xb4\x41\x2f\x46\x71\xb0\xbe\x87\xac\x53\x4b\xd0\xc7\x96\x3b\x34\x58\x86\xac\x79\x2e\x78\x9a\x2c\xf6\x36\xd6\x51\x13\x4d\x3c\xad\x9c\x1e\x96\xe9\x3c\x7d\x96\x5c\x91\xf2\x07\x94\x67\x09\x6b\x29\xcd\x31\x75\xa5\x95\x8d\x0f\xba\x12\x7f\xaa\xb0\xb1\x98\x00\x00\x20\x00\x49\x44\x41\x54\x4c\x3d\x68\xb4\x84\xca\xa3\x0d\x02\x4d\x2e\x78\x8b\x77\xb9\xe7\x8d\xe3\x94\x4a\xa4\x25\xaf\x2d\x65\x32\xd4\xcf\x24\x1e\xab\x0c\x72\x20\xd4\x8c\x12\xcf\x23\x72\x8d\x8b\xe4\x8b\x50\x9b\x64\x00\xe0\x06\x83\x01\x5e\xbb\x76\xcd\x9f\xcf\xe2\xbf\xa5\x90\x1b\xc4\xe5\xc2\xdb\xee\xdc\x0d\xb6\x8e\x3a\xe7\x5e\x7d\x38\xfc\xe2\xab\x0f\x87\xdf\x3e\x77\xd8\xfd\xf5\xc1\xd4\xbd\x97\x66\xee\x34\x22\xba\x85\x3b\xec\xca\xea\x5b\x1c\x77\x3c\x71\x3c\xca\x8f\x1d\x08\x00\xc1\x35\x3e\xca\xe8\x1c\xe1\x30\xcd\xf0\x42\x7f\x96\x5c\xdd\x18\xa5\x67\x56\x27\xc9\xf4\xb8\x9b\x1d\x8c\x3a\xd9\x64\x8e\xb9\xa2\xe2\xcb\x55\x3c\x67\x00\x80\x9d\x4e\x07\xae\x5e\xbd\x4a\x0f\x1e\x3c\xc0\xc3\xc3\x43\x9f\xab\x56\xbf\xdc\x88\xd1\xe4\xa1\x25\xb3\xe5\x78\xcd\x79\x25\x96\x1f\xad\x67\x50\xe2\x2d\x65\x97\xc3\x2e\x78\x5c\xb4\x84\x4d\x1d\xbf\xad\xb5\xa8\x09\xa9\x12\x06\x11\xf1\x0b\x5f\xf8\x02\xf4\xfb\x7d\x2a\x1a\x96\xef\xa1\xcf\x3d\x2d\x95\x2b\x2f\x05\x80\xce\x38\xa5\xec\xdc\x51\xf7\xfc\xfa\x38\xd9\x4a\x33\xec\x79\xc5\x21\x9f\xaa\x29\x4e\xd0\xf5\x59\x12\x56\x4a\x03\xf8\xfb\x8c\x3c\x4c\x75\xbf\x11\x32\x22\xbd\x02\xc3\x15\x12\x2e\x01\xfc\xbb\xc7\x97\x6b\xd3\x54\x2a\x29\x20\xf1\x21\xc7\x0b\x50\x5e\xe4\x28\x38\x1b\x01\xd3\x84\xb0\x8b\x00\xa3\xe3\x6e\x76\x67\x67\x30\xdb\x85\xea\xe6\x68\xff\x47\xc5\xb4\x11\x9d\x3b\x77\x0e\x67\xb3\x19\xdd\xbd\x7b\x37\x46\xab\xd6\xde\xb5\x38\xc9\x44\x12\x5e\x76\x04\x4d\x68\x49\xfc\x9a\x25\x64\xd1\x1c\x2a\x83\x36\xe0\x48\x6b\xdb\xea\x84\x16\xde\x98\xc1\x59\xab\x07\x9e\x87\x2c\x9b\x85\x37\x14\x42\xb4\xc9\xb2\x58\xd6\xa7\x26\xc0\x35\xab\xcb\x12\x66\xa1\xc1\x55\x2b\x97\x36\x6d\xc0\xd3\x5a\x38\xb8\x70\x8a\x55\x84\x62\xda\x49\xe2\xb4\x78\x33\xa4\x64\xfb\xd0\xa4\xb0\xc4\xf4\x99\x26\x25\x9a\xc3\x68\xca\x42\x93\xec\x0d\xf5\x67\x5e\xcf\xd6\x00\x22\x69\x97\xe2\x4b\x96\x45\x1b\x20\x79\x3d\x6b\xb4\x4a\xfe\xf3\x69\xb5\x81\x90\x97\x01\x60\x71\xfd\x9a\xcc\xa7\x91\xa6\x5e\xaf\x87\xaf\xbc\xf2\x4a\xa9\xb4\xb0\xb1\xc4\x2b\x2f\x5d\x00\xe8\xa4\x73\x1c\x9e\x3f\xe8\xbe\xf0\xda\x83\x95\x5f\x7e\xe9\xe9\xe0\x7f\xae\x8f\xd2\x6f\x75\xe6\xee\xaa\x43\x4c\x4b\xa3\x98\xcb\x71\x82\xfc\x2a\x19\x21\xc3\x6b\xb7\xca\x88\x81\x85\x9f\x91\xea\x97\x45\x38\xc2\x95\xee\x1c\x2f\xaf\x4c\x92\x0b\xeb\xa3\x74\x74\xd8\xcb\xf6\x46\x9d\xf9\x78\xee\x20\x2b\x0c\x65\xd9\x86\xe8\x9c\x83\x57\x5e\x79\x85\x7e\xf4\xa3\x1f\x41\x96\x65\x5a\x3f\x0a\x29\x2b\x3c\x34\x8d\xe9\xb2\xbe\x63\xe4\xa9\x7f\x0e\xf1\x04\x7f\x8e\x91\x0b\x04\x50\x2d\xce\xb5\x12\xf2\x4e\xd4\x34\x4d\x60\x59\x34\x12\xbf\xd9\xd9\x88\x88\x7e\xfa\xd3\x9f\xd2\xdb\x6f\xbf\x8d\xce\x39\x2c\x0e\xe4\x41\x00\x70\x7e\xbd\x0b\xe6\xf7\xf7\xe4\xda\x31\x42\x67\x9a\x92\x5b\x1d\x27\x83\xd3\x27\x9d\xed\xde\xcc\xad\x22\xa0\xab\x7a\x5a\xc5\x45\xf9\xfa\x17\x4f\x34\xbf\x19\x9a\xf7\xcb\x82\xc1\x00\xaa\x05\xb6\x05\x83\x02\xc9\xb3\x5d\x7c\xf1\xb1\xb6\x20\x98\x3c\x4e\x04\x40\xaa\x2b\x43\x85\x53\xa7\x72\x1d\x12\xe4\x0a\x8e\xcf\x87\xe5\x81\x00\xe0\x08\x3a\x09\x21\x4e\x1d\x3d\x7d\xb8\x3e\xb9\x5d\x9c\xa6\x4b\x00\x30\xa7\x5c\xa3\xf3\x07\xd4\x01\x00\xd0\xa3\x47\x8f\xe8\xfe\xfd\xfb\x90\x65\x59\x1b\x46\x95\xed\xa3\x05\xa9\xf9\x5a\x02\xbb\x69\xa0\xd1\xbe\x6b\x78\x42\xc2\x48\x4b\xcf\x79\xd4\x2a\x83\x4c\xaf\x0d\x4c\x1a\x0d\x31\x65\x8c\xc9\x4f\xe2\xf5\x41\xeb\x2f\xa1\xfa\x90\x03\x19\x44\xc6\x69\xf5\x23\xcb\x63\x59\xf7\x32\x68\x03\x92\xc6\x73\x20\xe0\xb4\x34\xd6\x60\xc8\xbd\x04\xa1\xf6\xe0\xcf\x9a\x95\x86\x4a\x5c\x88\x27\xb5\xf6\x91\x16\x7e\x93\xa2\xeb\x7b\x78\xec\x02\x79\x9e\x8f\xff\xae\xf1\x8a\x55\x0f\x12\x27\xa7\x81\xb7\x4b\x48\xe9\xb6\xea\x84\xf3\x4d\x93\x02\xc2\x69\xd4\xea\x4c\xf2\x9f\xec\xe7\x16\x9f\x4b\x9e\xe4\xf0\xda\xb8\xe4\x61\x7c\x3c\x26\x49\x82\x6f\xbe\xf9\xa6\x9f\x1e\x02\x80\xf2\x4a\x19\x7f\x88\x5c\x0a\x00\x3d\x97\xc1\x60\x7b\xbf\x77\xee\xcd\xfb\x2b\x5f\xbf\xba\xd3\xff\x9f\x2b\x93\xe4\x7d\x47\xb0\xc1\x65\xbf\x5f\x12\x50\x9e\xd0\x8e\x55\x65\xf0\x21\xa2\xbe\x61\x94\x31\x7d\xb1\x89\xa3\x54\x6a\x98\xcc\x47\xc0\xb4\x93\xb9\xed\xe1\x34\xb9\xb0\x31\x4a\xa7\xc7\xbd\x6c\xe7\xa8\x3b\x1f\xcd\xf3\x7b\x6c\x32\xc8\x8d\x79\xbf\x5c\xc0\xa3\x84\xff\xf8\x8f\xff\xa0\xe9\x74\x1a\xea\x53\xb2\x8e\xad\x60\xc9\xa6\x18\xd9\xa2\xe1\x90\xed\x17\x03\xef\xab\x43\x6b\x77\x02\xd0\x77\x15\x49\xe0\x58\x61\x2d\x0b\x63\x75\x38\x2d\x4d\x2d\x7c\xf1\x8b\x5f\xc4\x34\x4d\xa9\xd0\x88\xcb\x4e\x58\xcc\x41\x22\x54\x6e\xbd\x04\xf2\xb5\x2e\x70\xee\xb0\x73\x61\x75\x9c\x9e\x49\x08\xbb\x1e\x0f\xe7\x1b\x2e\x29\xd9\xd1\x73\x55\xcb\x7b\x62\x10\xaa\x1d\x47\xc8\xf0\x30\xe6\xaa\x42\xce\x8d\xe5\x82\x5d\xf4\x5e\x14\xff\x79\x31\x8d\x64\xe6\x3c\x3d\xd4\xf0\x54\x9f\x31\x71\x04\xbd\x84\x70\x3e\x4f\xe8\xf6\xc3\xb5\xe9\x0e\xe4\xdb\xe5\xe6\x7e\x9d\x0b\xe5\x0b\x74\xbc\xd7\x85\x86\xc3\x21\x7c\xfe\xf9\xe7\xda\xe0\x13\x62\x58\xcd\x7a\xb1\x06\xf6\x90\x75\xad\x59\x99\x31\x5b\xea\xb4\x34\xa1\xb4\x9a\xa7\x60\x99\x7c\x38\x0b\xc8\xf8\x18\x2f\x40\x93\x10\xd0\xe0\x2c\xcb\xc5\xb2\xce\x6b\x02\x58\xa4\xb7\x16\xc7\xc9\xb6\xe4\xdf\x00\x9a\xdb\xd9\x52\x1a\xac\xb2\x84\x14\x17\x4b\xf9\x0c\xc1\x78\x3c\x7c\xc0\x6c\x6a\x5f\x8f\x33\x34\xf0\x59\x79\x87\xf8\x55\xcb\x5f\xd6\x85\xc6\x8b\x21\x85\xc8\x92\x85\x4d\xb4\x48\xda\x35\xdc\x1e\x46\xca\x6d\x39\xa0\x85\xea\xc4\xca\x8f\x0f\x8c\x4d\x83\x9f\x36\x68\xca\x20\x07\x5a\x8b\x87\x38\x4e\x4d\x91\xb1\x68\x28\xf1\xbd\xf7\xde\x7b\xf0\xde\x7b\xef\x95\x4a\x4b\xf1\xe7\xbd\x2d\x1d\x00\xe8\x03\x40\xff\xca\x4e\xef\xdc\xf5\xfb\xab\xdf\xbc\xbc\xd7\xff\xbf\x87\xd3\xe4\x5d\x97\xe1\x50\xca\x65\x3f\x86\x94\xca\x08\x1b\x44\xea\x46\x69\x3d\x51\xae\xb4\x54\xc6\xf2\xe2\x92\x81\x0a\x3c\xcd\x70\x6b\x30\x75\x17\x57\xc7\xc9\x78\x7f\x30\x7f\x7c\xd8\x9b\x1d\x51\x6e\xdc\xd6\xa6\x8e\xfc\xdf\x5b\x6f\xbd\x85\x9f\x7e\xfa\x29\x89\x93\xd4\x43\xe3\x3a\x0f\x16\x6f\x6a\x7d\xb4\x29\xce\x0a\x52\x66\x85\x1c\x1c\xa0\xfc\x72\x1c\xe6\x1a\x17\xad\x63\xb7\x11\xda\x5a\xbc\x45\xec\x02\xbe\x7f\xff\xf7\x7f\xc7\x6b\xd7\xae\x41\xbf\xdf\x07\x60\x42\xd4\x2f\xd8\x2d\x7e\xcb\xe9\xa2\x93\x4e\x96\xad\x8f\xd3\xd5\xcd\x93\xf4\x42\x77\xee\x86\x0e\xd0\xd5\x5d\x73\x75\x4f\x46\xf5\x5b\x9f\xa6\xe1\x92\x1a\x05\x47\x72\x7d\xa4\x56\xa8\xc2\xb3\x92\xc3\x60\x0d\x48\xf2\x6e\x19\x47\xc5\x13\x5f\xf3\x52\x78\x5c\x00\xea\x0a\x8c\x23\xe8\xa6\x19\xf6\x13\xc2\xf1\x6e\x7f\x7e\xeb\xa8\x37\x1f\x41\x75\x05\x40\xc6\xbd\x2e\x88\x08\x67\xce\x9c\xa1\xb3\x67\xcf\xe2\x8d\x1b\x37\x34\x01\x6c\x85\x10\xb3\xc8\x77\xeb\xd9\xbf\x87\xbe\x5b\x79\x6b\x69\x9a\xe8\x7d\x1e\xf9\x58\x9d\x23\x54\xde\x18\x61\x2f\x83\xe6\xf9\x0a\x0d\x2a\x72\x90\x94\x83\xb0\x4c\x1f\x32\x0a\xac\x41\x4c\xe2\x08\xa5\x69\x6a\x7f\x5f\x2f\x9a\x02\x19\x63\xe5\x6b\x0a\x92\x96\x4f\x48\xc1\xd3\xca\xa1\xe5\x11\x82\xe5\x74\x34\x79\x91\x78\x7c\x0c\x2f\x5a\x30\x31\x65\x5e\xa6\xbc\xa1\xa0\x95\x2b\x26\x5d\x1b\x78\x8d\xe7\x65\xba\x67\x89\xd7\x78\xc6\xa4\xe5\xe2\xc5\x8b\x70\xe1\xc2\x05\x2c\xe0\xfd\xee\xa1\x0e\xe4\x4a\x4b\x17\x00\x06\xa7\x0f\xd3\xcd\xb7\xef\xad\x7e\xeb\xf2\x6e\xef\x77\x06\xd3\xe4\x3a\x12\xf4\x17\xbc\xec\xc4\x86\x15\x2f\xee\x99\x01\x5a\x93\xf9\xfc\x9d\x79\x66\x00\x14\xcf\x8c\x62\x65\x3b\x82\x8d\xfe\x2c\x39\xb7\x32\x4e\xc6\x87\xbd\xf9\xe3\xfd\xc1\xfc\xd0\x4f\x17\x15\x5e\x17\xf0\x9e\x77\x00\x80\x37\xde\x78\x83\xee\xdc\xb9\x83\x47\x47\x47\xbc\xae\xa4\x01\xa3\xf1\xb2\xd6\x56\x72\xdc\xd7\xda\x5d\xab\xf7\x50\x1f\x6d\xea\xd3\xd1\xb2\xc2\xba\x1d\x3a\x24\x9c\x2c\xe6\x0a\x59\x69\x3e\x84\x2c\xfb\x9a\xf0\xbb\x7e\xfd\x3a\xf6\xfb\x7d\xae\x67\xf8\x3f\x57\x4c\x15\xf9\xbb\x1e\x52\x40\xe8\x22\x41\x72\xe6\xa8\x73\x7e\x65\x92\x9c\x4e\x08\x3b\xc8\xaa\x80\xa0\xae\x0c\x54\xcc\xc5\xb9\xa7\x5e\x62\xee\x65\x91\x61\x61\x6a\x07\x8b\xfb\xa8\x05\x38\x4a\x78\xa8\x76\x3c\x79\x9a\x16\xce\x9a\x61\x0a\x56\x41\x3e\x3a\xc2\x5e\x9a\x61\x0a\x00\x8f\x6f\x9f\x1a\xdf\x81\x7c\xad\x0b\x11\xd1\xbc\x58\x6d\x0e\x5c\x79\xd9\xdb\xdb\xa3\x1b\x37\x6e\xc4\x0e\xaa\xb1\x21\xd6\xbb\xf0\xdf\x3d\xc4\x0a\x4b\x99\xe6\x59\x60\xdb\xb8\x77\xff\x4f\x85\x36\xc2\xcd\x07\xe9\xe1\xe1\x71\x96\x32\x66\x29\x14\x56\x1d\x59\x5e\xb5\x26\x45\x24\x46\xd1\xd0\x04\xed\xf3\xe6\x8d\x18\x05\xca\x82\xb7\x68\xd1\x2c\xf2\x18\xdc\x6d\xe0\x2d\x65\x33\x46\x81\x8c\x19\xcc\xa2\x79\xe0\xfd\xf7\xdf\xc7\x37\xde\x78\xa3\xbc\x77\x08\x0a\x8f\x3d\x11\x75\x10\xb1\x4b\x44\xfd\x34\xc3\xc1\x3b\xf7\x56\xdf\xbb\xba\x33\xf8\x1f\x2b\x93\xf4\xba\x23\x58\x91\x0b\x70\x7d\x6e\xb9\xac\x16\x46\x29\x56\x3f\xf5\x2b\x63\x68\xf1\xd2\x5f\xad\x24\xc2\x53\x93\x17\x02\x31\x21\x58\xeb\xce\xdd\x5a\x9a\xe1\xc1\x71\x37\x7b\x72\xd8\x9b\x9f\xf8\x32\x22\xa2\x57\x5a\x08\x20\x5f\xb8\x7b\xf5\xea\x55\xda\xd9\xd9\x81\xfd\xfd\x7d\x39\xae\xca\xf5\x4d\x92\x7a\x59\x87\x3c\x9d\xa4\x16\x04\xac\x6c\x2f\x0e\xd7\xa4\x88\xf0\x36\x8e\xe1\x27\x04\x00\x72\x0a\x40\xc8\xfd\x66\x7d\xcb\xc4\x9f\x8f\xe3\xf8\x9d\xf8\x16\x9b\x47\x89\x97\x88\x32\x22\x9a\x21\x62\x79\x77\x51\xf1\x37\x7a\xb4\x3a\x7d\xf0\x68\x75\x7a\x6b\xd4\xc9\xf6\x09\x28\xc7\xe1\xb5\x5c\x76\xf6\x8a\x8f\xae\x49\x27\xa9\x70\x08\xaf\x89\x0c\xda\xd4\x8e\x57\x64\x64\x1a\xcf\xe4\x79\x36\x8b\xda\x7b\xa9\x9d\x30\xda\xea\xcf\x08\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xdf\xfb\xda\xb5\x47\xc3\x2b\x90\xbb\x35\xd3\xa2\xd3\xa5\x50\x58\x10\x44\x04\x44\x04\xe7\xcf\x9f\x87\x5f\xf9\x95\x5f\xf1\xee\x50\x80\xca\x35\xca\xe3\x64\x70\xe2\x57\x06\x39\xed\x24\xf1\x37\xe1\xb3\xe0\x9b\xe2\x65\x5c\xe8\x59\xa3\xcb\xa2\x31\x44\x83\x45\x8f\x0f\x92\xb7\x25\x0d\x1a\x5e\x09\xab\xa5\xd7\xf2\x0e\x95\xd9\xa2\x5b\xcb\xcf\xa2\x35\x54\x3f\x31\x70\x1a\x5d\xbc\x7e\x2c\x9a\x78\x90\xb2\x03\x60\x91\xdf\xac\x74\x5a\x68\x23\xd7\x62\xe8\xb3\x82\x5c\x14\x2e\xf3\xb1\xda\x6e\x99\x3c\x96\xc1\x1d\x33\xbd\xa6\x85\x98\x3e\xd7\x94\xd6\xff\x6a\xf2\xbc\x29\xc4\x96\xd9\x1a\x5f\x6a\xb0\xbd\x5e\x0f\xba\xdd\xae\xf7\xb2\x94\x1e\xfb\xe2\xb7\x8b\x88\xfd\x57\x1f\x0d\xaf\x5d\xde\xed\xff\xea\xea\x38\x79\x23\x21\x58\xc5\xe2\x10\x2e\x7f\x5b\x0c\x31\xa1\x5e\x1b\x1f\x98\x0c\x2f\x6f\x96\x21\x36\x2e\x00\x02\x29\x4a\x0b\xc7\xb7\xa0\xd6\x01\xb3\xd4\x09\xbb\x83\xa9\x7b\x65\x7b\xaf\xf7\xe1\xa5\xdd\xde\xf5\x95\xb1\x5b\x87\xdc\x43\xc4\xaf\x1f\x70\x90\x8f\x01\x30\x18\x0c\x5c\x9a\xf2\x2b\x08\x17\xfa\xe3\x42\xfd\x04\x42\x68\xb1\x34\xff\x2e\xdb\x2b\x86\x4f\x9b\xa6\x11\x83\x3c\x1d\xda\x0e\xed\xb5\x28\xa9\xf1\xca\x78\x27\x9e\x2d\x4b\x45\xd3\xd4\x34\x8b\x0a\x00\x00\x76\x76\x76\x70\x6b\x6b\x8b\x06\x83\x41\xe5\x5d\x63\x8b\x75\xa1\xde\x70\xc9\x1c\x21\xed\xcd\x5d\xf7\xd4\x49\xfa\xc2\xca\x24\xd9\x4c\xb2\x7c\x05\x38\x00\xd4\xe6\x10\x4b\x64\xc4\x76\x01\x79\x18\xce\x60\x58\xf7\xac\xf8\xc4\x08\x50\x9e\xef\xe2\x3d\x33\xe5\xee\x25\xbe\xd0\x16\xf8\x8e\xa6\x2a\x8f\x9a\x93\x07\xb1\x5a\xa8\x05\x20\x56\x9a\xd7\x15\x9e\xe2\x44\xdd\x7e\x9a\xe1\xc1\xa3\xd5\xe9\xe7\x93\x34\x9b\x8a\xb3\x5d\xca\x29\xa3\x34\x4d\x61\x75\x75\x95\x36\x37\x37\xe1\xf3\xcf\x3f\x47\x80\x72\x2b\x67\x68\x3e\x92\xeb\x4c\x52\xfb\xd6\xda\x95\xb7\x5f\x8c\x45\xe4\xf3\x97\xf0\x12\x8f\x13\xf0\x31\xfc\xc4\xd3\x4b\x7c\x16\x8d\x52\x74\x68\x6b\xba\x42\xfc\x6b\x59\x22\x56\xd9\x24\xac\x46\x8f\x96\xb7\x55\x3f\xa1\xb2\x6a\xf9\x39\x68\xc6\x6d\xd1\x68\xb5\x1d\x28\x71\xd2\x52\x0b\x59\x5c\xe6\xae\x81\x06\xfc\x5a\x88\xe1\x93\x36\xb0\xaa\xf5\x6e\xc0\xc4\x78\x11\x62\x3c\x21\x3c\x70\x18\x0d\x5e\xc3\xed\x94\xf7\x26\xba\x9a\x68\xb5\xea\x27\x54\x66\xc7\x9e\x3d\x6c\x53\xf9\x43\x63\x87\x95\x3f\x80\xcd\x67\x04\x00\xf0\xee\xbb\xef\xba\x97\x5e\x7a\x09\xba\xdd\xae\xf7\xb4\x38\xa8\x4e\xc4\xed\x22\x62\xff\xdc\x41\xe7\xec\x9b\xf7\x57\xbf\x75\xee\xb0\xfb\xcd\xee\xdc\x5d\x70\x50\x8d\x1d\xc8\x7f\x99\xfc\xf6\x8f\x7c\x9a\x87\x9f\xd7\xe2\x01\x84\xc8\xaf\x91\x57\x9b\x05\x28\xc7\x96\xfa\x38\x54\xa0\xef\x26\x84\x3d\x47\x30\x3a\xee\x66\x0f\x76\x56\x66\x7b\x50\x2c\x13\xe0\x0b\x75\x0b\x7c\xb4\xbe\xbe\x4e\x47\x47\x47\x58\x78\x5d\xa4\x1c\xd6\xea\x92\xb7\x4b\xd3\xba\xc8\xd0\xf8\xb1\x4c\xdf\x6d\xea\xcf\x92\x06\x07\xa0\x7b\x5c\x78\x08\x69\x4f\x5c\x8b\xd3\xbc\x2c\x21\x0b\x30\x14\x1c\x00\xc0\xdd\xbb\x77\xb3\xf1\x78\x2c\xe9\xe0\x7f\x75\xaf\x0b\xc2\xe8\xc1\xda\xe4\xde\xa3\x95\xe9\xad\x93\x4e\xb6\x9f\xa1\xa8\x2f\xac\x8f\xca\x24\x17\xc2\xa2\xff\x52\xc1\x94\x73\x96\x58\xbf\x64\xb1\x54\x48\x10\xca\xdd\x47\xfc\x22\x47\x0f\x43\x24\xda\x04\x99\x26\x5d\xed\xe3\xaf\x3c\x43\x00\x95\x26\x5e\xe4\xed\xbd\x28\x08\x90\xf6\x66\xee\xfc\xb9\x83\xce\x07\x5f\x78\xd2\xbf\x96\xdf\x87\x81\x29\xe4\x16\x43\xa9\x79\xfb\x75\x40\xbd\x5e\xcf\x5d\xbc\x78\xd1\xd7\x5d\x4c\xd0\xac\x5e\xfe\xad\x8d\x05\x2d\xd3\xb6\xa5\xa3\x0d\xfc\xf3\x08\x6d\xf3\x6a\x63\x21\x3c\x8b\x45\xdf\x94\x77\x1b\xdc\x6d\xcb\x68\x79\x11\x9e\x17\xbc\xb4\xd2\x42\x65\x69\x63\xe9\x2f\x93\x76\xd9\xb0\x6c\x5b\xb4\xc5\xdd\x54\x9f\x7c\x31\xfb\xf3\xf0\x2c\x85\xf2\x6b\xe3\x41\x0b\xbd\x4b\x5c\x31\x75\x29\xe1\x1b\xe9\xdc\xda\xda\x82\xd5\xd5\x55\x07\x50\x9c\xf1\xc5\x0c\x5e\x44\xec\x02\x40\xf7\xca\x4e\xff\xc5\x33\x47\x9d\xf7\x7a\x33\xb7\x8d\x50\x6d\xee\x00\xc8\xe5\x71\x29\xc5\x85\x42\x51\xc2\x68\xb9\x7b\xaf\xbc\x84\xf3\xc3\x84\x98\x05\xf0\xcf\xfa\xea\x04\x84\xce\x1c\xcf\x9d\x39\xee\x7c\xf1\xd2\x5e\xef\xfa\xa9\xe3\x74\xd3\xd3\xce\xb6\x73\x97\x75\xb3\xb5\xb5\xe5\xd6\xd6\xd6\x24\x92\xb6\x7d\xd2\xf2\x84\x3c\xef\xd0\xd4\xd6\x52\x36\xd4\x3c\x2e\x9a\x56\x63\xad\x02\x97\x2b\xfd\x2d\x8d\x4c\x5a\x80\xdc\x53\xe3\x89\xd1\xb4\xee\x32\xdf\x2c\xcb\x70\x63\x63\xa3\xf4\xba\xf8\x33\x5d\xd8\xd9\x2e\xfe\x0a\x80\x14\x11\x93\x99\x23\xec\xcd\x5d\x7f\xe3\x24\x3d\xb3\x32\x4d\x36\x1c\x61\x9a\x13\x8d\x0b\x4c\x87\x44\xf9\xde\xfb\x1a\xe1\x58\x7e\x2f\xe1\x44\xc1\x90\x01\x30\x57\x50\xed\x4c\x18\x60\xf1\x04\x04\xf9\xd6\xb7\xfa\x37\x8e\x10\xf9\xb3\xf0\xd6\x78\x4f\x4e\xf1\xde\x49\x33\x5c\x4b\xc8\xed\xed\x0e\x67\x77\x8e\x3b\xd9\x09\x39\x98\xfa\xb3\x5c\xf2\x2a\x2a\x17\x6d\x65\x88\x48\x49\x92\xe0\xbd\x7b\xf7\xb4\xb6\xf0\x6d\x68\x59\x42\xd2\x22\xe6\x96\x8d\x65\xc9\x59\xde\xb7\x90\x85\x25\x69\x08\x05\x0d\x67\x28\x1f\xeb\xbd\xa9\xdc\xfc\x59\x96\xa7\x91\x6f\x05\x8c\xf4\x4e\xb6\xb1\x3a\x2d\x1a\x78\x9e\x56\x9d\x58\x56\x77\xe8\xdd\xf2\x7c\x84\xea\x51\x5a\xd8\xb1\xf8\x9b\xca\xc2\x83\xc5\x1b\x56\x3d\x6b\x69\x63\xbc\x1c\x3c\xc4\xf0\x07\xcf\xa3\x09\xd6\xb2\x6a\x79\x68\xa2\xb1\xa9\xfe\xfc\xb3\xa4\x09\x20\xdc\x7e\x6d\x42\x0c\x7f\x68\x41\xcb\xd3\xc2\x61\xc5\x37\xc9\x89\x1a\x8e\xd7\x5f\x7f\xdd\x5d\xbd\x7a\x15\x8a\xb5\x92\xd5\x9a\xc8\xe2\xbc\x16\x20\xe8\xaf\x4e\x92\xcd\xb7\xee\xad\xfc\xca\x99\xe3\xee\x87\x9d\x0c\x4f\x23\x55\xe7\x4b\xf8\x25\x87\x35\xa9\x4d\x6c\x1c\x60\x44\xd5\xac\x62\x36\x80\x78\x65\x05\x11\x8a\xf3\x5e\x58\x21\x88\x7b\xd5\x19\x4e\xaa\xd2\xfa\x13\xd8\x81\x30\x71\x04\x1d\x40\x1c\x1d\x75\xe7\xb7\x1f\xad\x4c\x9e\x16\xde\xf6\x59\x91\xa2\x5c\xb0\x0b\x90\x9f\xae\x7e\x7c\x7c\x8c\x07\x07\x07\x56\xbf\x68\x92\x85\x31\xf2\x8a\x87\x58\x79\x1a\xca\xc7\x6a\xeb\x05\xdc\xd6\x25\x8b\xd6\xa0\xc4\x85\x8b\x35\xe8\x58\xc2\x93\x4f\x57\xf0\x3c\x2c\x86\x85\xa7\x4f\x9f\xe2\xf6\xf6\x36\x9c\x3a\x75\xaa\x6c\x57\xb6\xb3\xc8\xbb\xfe\xca\x13\x0f\x09\x21\xcd\x90\x68\x75\x9c\x6e\x6e\x8c\xd3\xb3\x9d\x39\xae\x38\x10\x0a\x05\xf7\xa2\x08\x0e\x2c\x33\x61\x0c\x05\x00\xe5\x22\x5c\x14\xef\x8b\x6e\xbd\xea\xd0\x39\xef\x3a\xc1\x82\xf3\x17\x6e\xa6\x66\x3b\x9d\xc8\x67\x5e\xd2\xc0\x70\x0b\xfc\x8e\xa0\xdf\xc9\x5c\x6f\x8e\x70\x6f\x77\x38\x7b\x32\x49\xb2\x31\xb8\xf2\xfe\x22\xbf\x58\x2b\x43\x44\x70\xce\xc1\xf9\xf3\xe7\x69\x34\x1a\xe1\x93\x27\x4f\x90\x2a\x17\x10\xff\xb5\x84\x1b\x7f\x0e\xb9\x19\x41\xc4\xc7\x0a\x6a\xce\x17\x16\xbf\x85\xf8\x92\xe7\xc3\x79\xd2\x82\x97\x69\x62\xca\xad\x95\x27\x66\x60\x6d\xc2\x11\xc2\x23\xcb\xdd\x94\x5e\x8b\xd3\xfa\x59\x2c\xad\x5a\x08\xd5\x63\x88\x46\x4f\x8b\x26\x80\x34\xfe\xb2\x84\x64\x48\x19\xf0\xef\xbc\xcc\x3c\xb8\x86\x6f\x31\x83\xa4\x46\x6b\x8c\xc2\x17\xdb\xc6\x1a\x7c\xd3\x40\xaf\xd5\x2b\xb7\x52\x25\x5d\xfc\x9d\xd7\x77\x93\x01\x10\x1a\xb0\xac\x7e\x67\xf5\x5d\x4d\xc1\xf7\xb4\xf0\x32\x58\x75\x6f\xe5\x23\xcb\x05\x00\x00\x5f\xff\xfa\xd7\xf1\xcc\x99\x33\x8e\xe1\xf4\xbb\x88\x52\x22\xea\x27\x84\xc3\x2b\xbb\xfd\xcb\xd7\x1e\x0f\x7f\x73\x65\x92\xbc\x8a\x80\xdd\x72\x7f\x44\xa1\x68\x94\xe3\x05\x00\x94\x8b\x6e\x19\x4c\xe9\x75\x07\xa1\x98\x94\x67\x7b\xb1\x29\x21\xa6\xb4\x60\x19\x2f\x06\x21\xa8\x5e\xa5\x91\x8c\x08\x29\x12\xcc\xc7\x1d\x7a\xfc\x78\x75\xfa\x8b\x69\x42\xd3\xa2\x3e\x67\x00\x00\x5e\xf6\x13\x11\xad\xaf\xaf\xe3\xe1\xe1\x21\xdd\xbb\x77\x0f\xa0\x3e\x6e\xcb\xba\x92\x7d\xc3\xaa\x4f\x8b\x07\x40\xf9\x6e\xf1\xa9\x25\xab\x63\xfb\x5c\xf9\xec\x1b\xd5\x33\x3c\x7f\x06\xf1\xec\xdf\xb5\x29\x22\x1e\xb8\xab\xbf\xc9\xf5\xa4\xe1\xaf\x85\x87\x0f\x1f\xc2\xfe\xfe\x7e\x79\xb1\x20\x54\x57\x7f\xcf\x88\x68\x46\x44\x33\x28\xa6\x8b\x88\x68\xb4\xdf\x9b\xed\xde\x5f\x9b\xdc\xda\xeb\xcf\xee\x67\x0e\x26\xa5\x92\x81\x04\xf9\x3f\xd6\x6b\x91\x6a\xd3\x39\xe4\xeb\x86\x55\x13\x41\xe5\xd6\xf3\xa1\x9c\xe6\x59\x70\xa0\x50\xa9\xfc\x78\x2f\x8c\x47\x57\x22\x63\xdf\x4b\x7c\xec\xaf\xca\x43\xd6\x44\x15\x06\x53\x77\xed\xf2\x6e\xef\xab\xdb\x7b\xdd\x4b\xfd\x99\x5b\x05\x82\x2e\x14\x0b\xb6\xfc\x62\x5d\xff\xe7\x9c\x73\x5f\xfb\xda\xd7\xf8\x82\x2d\xa7\xfc\x6a\x6d\x2e\x7f\x41\x81\xe1\xef\x1a\x3c\xe7\x17\xed\x4f\x5b\xc0\x6d\xe5\x25\xe9\xd4\x82\x45\x43\x13\x8d\x56\x5a\x0d\xbf\x05\x17\xc2\x69\xa5\xd7\xf2\x96\x96\xb3\x45\x4f\xa8\xef\xca\x3a\xb7\xe8\x8a\xa9\x13\x2d\x1f\x8d\x16\x0b\x6f\x9b\x29\x0f\x0e\xe7\xc4\xbb\x85\xa3\x69\x6a\x24\x34\xa5\x10\x9a\xa2\x8a\x99\x9e\xb1\xf2\x6d\xe2\xa1\x26\x39\x28\xf3\xb1\xe4\xb0\xa4\xa5\x69\xfa\x44\x4e\xc3\x3a\x25\x4e\x3e\x87\x82\xc5\xab\xd6\x92\x81\x50\xdb\x85\xf2\x0f\xc9\x16\xed\xdd\x5d\xbe\x7c\xd9\xf5\x7a\x3d\x89\xc3\x11\x91\x03\x80\x2e\x02\x76\xbb\x73\x37\xbc\xb8\xdb\x7b\x69\x38\x71\xaf\x38\x82\x72\x0b\x6b\xae\x58\x40\x39\x0e\x60\x29\xb7\x0b\x2d\x86\xd8\xe0\xe0\x61\x0b\xf8\x12\xb6\x34\x6c\xeb\x06\x2b\x15\x0f\xe5\xa8\x53\x2e\x02\x66\xe3\x34\x31\x18\xff\x8c\x00\x48\xd8\xed\xcf\xdc\xf6\x99\xa3\xce\xeb\xe7\xf7\x7b\xe7\x89\x88\x2f\xd2\xf5\x65\xf3\x0b\x90\x65\x5d\x86\x7e\x2d\x99\xdd\x66\xca\x30\xb6\x1f\x2d\x33\xbd\xba\xc0\x1b\x09\xd4\x35\x6f\xef\x15\x91\xda\xb1\x7f\xe6\xf1\x5e\x8b\x05\xa8\x6b\x44\x5a\xd0\xb4\x72\x2d\x7e\xc1\x5a\x7b\xf0\xe0\x41\xb6\xb1\xb1\x81\xe7\xce\x9d\xf3\x79\x39\xcc\xf7\x00\xbb\x42\x39\xf0\x97\x2f\xa6\x88\x98\x12\x42\x4a\x48\xb4\x32\x4d\x37\x36\x4e\xd2\xad\x6e\x86\x43\xbf\xf8\x95\x7b\x4d\xbc\x67\xa3\xae\x40\x48\xcd\x97\xa0\x5c\xab\x82\x50\x3e\x2f\xec\xed\x37\xd2\x97\xbc\x4f\x50\x4d\x01\xf1\xcd\xfe\x8a\xb2\x5d\xbb\x2e\x80\xbc\x02\x53\x01\x22\x20\x38\xc0\xb4\x33\xc7\x75\x24\xdc\x3b\xe8\xcf\x1f\x1d\x77\xb3\x63\x72\xe0\xb5\x6f\x2a\xb6\x48\x7b\xb7\x61\x86\x88\xd9\xdd\xbb\x77\xe1\xe8\xe8\x08\x89\x48\x32\xa5\xd5\x06\x9a\x35\x2d\x61\x40\x81\xd1\xb4\x66\x32\xfe\x64\xe7\xd0\xb4\xec\x10\x1d\x12\x56\xa6\xb1\xca\xd1\x54\x5e\x07\x7a\x5e\x16\x0e\xfe\xce\xcb\xa4\x79\xaa\x42\xf4\x84\xe8\xb2\x68\xb1\xea\x47\x7e\xd7\x70\xca\x76\xb0\xac\xb1\x50\xb9\x43\x78\x43\x81\xd7\x31\x29\x71\x96\x4c\x71\x01\xf8\x90\x85\x68\xb5\xa9\xe5\x11\xb2\xd2\x69\x2e\x71\xf9\xdd\xf2\x78\x58\x74\xf9\x78\xad\x4e\xf8\x33\xcf\xcf\x2a\x8f\x85\x43\xab\x37\xeb\x7b\x88\x5e\x2d\x68\xfd\x8e\xc7\x71\x7a\xe5\xaf\x56\x3f\x8e\xa5\xb7\x06\x52\xd9\xd6\x35\x9c\xbf\xf5\x5b\xbf\x85\x6b\x6b\x6b\x7e\x00\x4f\xfc\x69\xeb\xc5\xda\x90\x8e\x23\x18\x9e\x3a\x49\xcf\xbc\xf6\x70\xe5\xc3\xcd\x93\xce\x57\x11\xa0\x53\x49\x58\xa8\x9d\x9c\x5e\xb7\x28\xa1\x3a\x0d\xbd\x72\x9f\xd4\xe5\x3a\x00\xd4\x3c\x2d\x04\xd5\xc6\x8b\x02\x27\xf7\xc2\x00\xf8\xf1\x01\xea\xa7\xf1\x52\xfd\x7b\xa1\x14\x21\x01\x8c\x8f\x3b\xd9\x2f\xee\x6d\x4e\xee\x12\xd0\x1c\x11\xfd\xa1\xa4\x19\x40\x75\x0d\xcc\xc1\xc1\x01\xed\xec\xec\x60\x71\x28\x9d\x0f\x4d\x3c\xa9\x79\xe3\xb4\x20\xdb\x92\xe3\xb1\xfa\x28\x0f\x52\xbf\x08\xf1\xe3\x02\x0e\xcd\xaa\x69\x5a\x1c\xa9\x2d\xba\xd2\x16\x5b\x59\xef\xb1\x5a\x96\x45\x83\x9f\x0a\xf1\x9e\x97\x72\x4b\x34\x11\x8d\x00\xe1\x78\xbf\x3f\x7f\x7a\x7f\x6d\x7c\x6b\x77\x30\xbd\x3f\x47\x98\x49\x77\x06\x09\x8d\x39\x7f\x14\x75\x8b\x00\x44\xde\xb3\x52\xed\x0f\xd2\xf6\xf6\xf3\x6d\xd0\xe5\x33\x11\x83\xe4\x72\x11\x4a\xf7\xa3\xd7\x6a\x88\xa8\x48\x0b\xb9\xd2\xe2\xd3\x96\x08\x10\x6a\x0a\x39\x11\x74\xe7\x6e\xfb\xc2\x41\xef\xeb\x2f\xee\xf4\x5f\x5b\x1f\x25\x9b\x48\xd0\x07\xb6\x4d\xae\x58\x0b\x04\x50\x68\xe2\x1f\x7d\xf4\x91\x3b\x7f\xfe\x3c\x24\x49\x12\x6b\xf1\xc5\xb6\x93\x84\x6b\xb3\xa0\xeb\x79\x2d\xfe\xd2\x78\xb6\xc9\xea\x8d\xc1\x17\x1b\x62\xbd\x03\x31\x79\xb7\x0d\x6d\xf1\x69\xf0\x96\x15\xf6\xbc\x17\xe7\x59\xf5\xa4\x59\xea\x31\xe9\x34\x59\x14\x4a\x1b\x8a\x0b\xd1\x64\x05\x4b\xee\x69\xf8\xac\xfc\x39\xdd\x4d\xf4\xc7\xe0\x8b\x89\xd7\x42\x5b\x4b\x38\xa6\x2d\x79\x5c\xec\xf8\xe2\xbf\x35\x79\x06\xb4\xba\xaf\xe1\x2c\x94\x03\xe9\x35\x4c\x89\x28\x4d\x32\xec\x9e\x3a\xee\x9c\x1d\x4e\x92\x17\x73\x6f\x4b\x5d\xef\x2d\xfc\x20\x35\xa2\x6a\xa3\x7b\x4d\xa4\xe3\x22\x84\xd7\x44\x8a\xcf\xc8\xa2\xab\x21\x9a\x58\x12\xac\x9d\xf7\x42\x3c\x13\x66\x6d\x23\x41\xb7\x37\x77\xe7\xd6\xc7\xc9\xd5\xde\x0c\x87\x6c\x63\x86\xf7\xb4\x97\x4a\xd1\xab\xaf\xbe\xea\xde\x7e\xfb\x6d\x10\xa1\x89\x67\xad\xa0\x79\xbd\x2c\x4f\x9f\xf5\x6c\xf5\xc5\xd0\xcc\x8d\x4a\x47\x2c\x83\x5a\x4c\x12\x1a\xb4\xb4\x74\x4d\xae\x4c\x99\xaf\x03\x00\x37\x9f\xcf\x61\x3e\x9f\x67\x85\xb7\xc0\x9f\xe7\xe2\x71\x71\xe5\x65\x02\x00\x93\x99\xa3\xd1\xe3\x95\xe9\x9d\x07\x6b\xd3\x9b\x93\x34\x3b\xf4\xaa\x70\x39\x55\xe4\x17\xcd\x22\x95\x8a\x03\xfa\xef\xa5\xe2\x51\x4d\xd7\x94\x6a\x3d\xd3\x80\x4b\x45\x83\xc4\xb4\x8f\xdf\x26\x8d\x5c\xd9\xf0\x71\x15\xbf\x56\x3a\x09\x96\x9e\x20\xbe\x8b\x49\x28\xef\x15\x2d\x54\xe5\x31\x1c\xbb\xeb\x57\x9f\xf6\x3f\xbc\xb8\xd7\x7b\x69\x30\xb1\xa7\x8c\x8a\x75\x41\xf0\xd1\x47\x1f\xb9\xad\xad\x2d\xde\x1e\xbe\x8e\xa5\x6b\x17\x94\x38\x4d\xe9\x6c\x52\x82\xac\x67\x8d\x06\x19\x1f\xeb\x4e\xb7\xf2\xd0\xdc\xd8\xb1\xee\xcd\xd8\x32\xf0\xbc\x42\x69\x9a\x04\x6e\xa8\x7e\x35\x1c\x16\x2d\x1a\x0d\x21\x63\xc1\xaa\xfb\x26\xbc\xa1\xf7\x10\x9e\x98\x10\x3b\x75\x11\xab\x98\xb6\x11\x8a\x16\x4c\x9b\x41\xda\xa2\xa3\x6d\xfe\x6d\x60\x63\x8c\xcc\xa6\xf8\x18\x05\x89\xc3\x3e\xef\x32\xc4\xf0\x4c\x2b\xe5\x8a\x4f\xbf\x14\x86\x9c\xdf\x79\x99\x3a\xc2\xee\xea\x24\xd9\xec\xce\xdc\xb9\x1c\xd6\x27\x42\x76\x36\x4b\xdd\xf4\xe4\xf2\x58\xb1\x5f\xa1\x66\xaa\xd6\x12\x08\x40\x64\xf0\xc2\x9b\x53\x37\x71\xb1\xdc\x55\x5a\x82\x10\xa6\x9d\x19\x6e\xae\x8d\x93\x4b\x67\x0f\xbb\x9b\x50\x2d\x36\x96\x0a\x5a\x1b\x03\xc0\x0a\x4d\x7d\xa7\xad\x71\xa8\xf5\xe9\xb6\x0a\x73\x16\x03\x18\x43\x98\xa6\x89\x49\x82\x42\x5a\x5e\x48\x0b\xcb\x00\x00\xfe\xe9\x9f\xfe\x09\xfe\xed\xdf\xfe\x8d\xad\x2d\xc1\xcc\x2f\x44\x02\xa6\xb0\x20\xe2\x08\x00\x46\x80\x30\xda\xef\xcf\x9f\xde\x5d\x1f\xdf\xdc\x19\x4e\x6f\x53\x81\x87\x9f\xab\x52\x69\xd8\xf5\x38\xaf\x34\x70\x86\xaa\x69\xcb\xc0\x98\xb8\x40\xc1\xd7\xce\xd4\x13\x54\xbf\x54\xba\x02\xa1\x64\xd0\xfc\xaf\x62\x4a\x8f\x63\x81\xe7\x39\x2d\x0c\x67\x02\xd8\xdd\x3c\x49\x7f\xf9\xda\xe3\xe1\xd7\xce\x1f\x74\x2f\xa5\xf9\xbd\x1a\x5d\x28\xa6\xcd\xd8\x56\x39\x59\xcf\x9a\xa6\x1c\x1a\x30\xa4\x67\x4d\x7e\xb7\xe2\x42\x83\x4f\x8c\xb6\xde\x94\x57\x53\x1e\x56\x3e\x6d\xbd\x8a\x4d\x34\x34\xa5\x89\xa9\xa7\x50\xfd\x36\x7d\x0b\xd1\xd0\x64\x0d\xc5\x94\xb5\x29\x4d\x0c\x5f\x2c\x13\x1f\x0a\xb1\x6d\xf1\x3c\xf2\x5e\x86\xbe\xd8\x74\xcf\xdb\x03\xb7\x2c\xee\x36\xb4\xc6\x1a\x15\xd6\xf7\x90\x4c\xb2\xbe\x87\xe0\xd5\x7c\xa4\xc7\x05\xab\xab\x62\xba\x8e\x60\xb8\x3a\x4e\x5e\xe8\x66\x78\x3a\x87\xf5\x89\xaa\xe9\xa1\xda\x8a\x00\xee\x4c\x61\x51\x7c\xae\x0a\x35\x39\xcd\x13\x70\x3c\x42\x67\xf1\xf1\x0b\xa7\x78\xa0\x58\xce\x80\x00\x8e\xb0\x3b\x98\x24\xe7\x36\x4f\xd2\xb3\xc5\x3a\x17\x5f\xae\x90\x91\x02\xf0\xfc\x95\xe0\xb6\x7d\xf0\xb9\xe5\xdd\xc4\x70\x31\x42\xcf\x5b\x9b\x1a\x33\x87\x94\x19\x2b\x7f\x89\x6b\x81\x06\xe1\x6d\xc9\xf8\x02\x5d\x00\x18\x01\xc0\xf1\xdc\xd1\xf1\xd3\x95\xe9\x9d\x3b\x1b\x93\x4f\x8b\xd3\x74\xa1\x5a\x9e\xcb\x14\x07\xef\xea\x28\x02\x5f\x60\x6b\x85\x45\xbd\x04\xeb\x93\xe3\x8b\x1e\xbe\x0a\x27\xca\x38\xc6\x94\xec\x97\x44\x5a\x0b\x77\x9a\xe1\xd9\xad\xc3\xce\xd7\x5f\x7a\x32\x78\x7f\xeb\xb0\x73\xb6\x98\x32\xe2\xd3\x46\x35\x0d\xfc\xa3\x8f\x3e\x82\x17\x5f\x7c\x31\xd6\x02\x6f\x0b\xc3\xbf\xc5\x58\xef\x4d\x70\x31\x02\x2f\x36\xc4\x5a\x07\x6d\xbc\x07\x31\x5e\x8f\x98\x32\xb4\xf1\x8a\xc4\x86\x58\x0f\xcd\xb3\xe0\x8e\xf1\xbe\x34\xe1\x90\xf8\x42\xdf\x43\xcf\xcb\xe2\x6e\x4a\x17\x82\xd7\xbe\x5b\x16\xa4\xf5\xdc\xc6\x5b\x13\x93\x0f\x18\x30\x4d\x8a\xc1\xb3\xd4\xb1\x95\xa7\x95\x2e\xd6\xda\xce\xa0\x7d\x99\xe1\xf7\x7f\xff\xf7\xdd\xca\xca\x8a\x84\x71\x00\xc5\x1d\x45\x04\x69\x7f\xe6\xfa\x2b\x93\xe4\x6c\x92\xc1\x26\x80\x58\x50\x24\x35\x12\x19\xf8\xf2\x94\xf2\x9e\xba\x0a\x9e\xa8\x8e\x43\x1e\xe7\x25\xf3\xf0\x67\xc5\x48\x23\xb5\x96\x8c\xd1\x83\x00\x69\x4a\xb8\x3e\x98\x39\xef\x71\x89\xf1\xb6\x40\x64\x7c\xd3\xf3\xf3\xee\x97\x16\xee\x60\x3a\x79\x72\xae\x83\x6a\x9c\x74\xb0\xd8\x6c\x56\x5c\xc6\xbe\x79\x1c\x19\x83\xe5\xdf\x84\x4e\xb9\xb0\x20\x8e\xe3\x28\x9f\x9f\x3c\x79\x02\xd3\xe9\x94\x2e\x5e\xbc\x88\x88\x5c\x3f\x06\x57\x2c\xd0\xf5\xe5\x29\xaf\x29\xcf\x1c\xa1\x23\xec\x6e\x9e\xa4\x1b\x6b\xe3\xf4\x9c\x2b\x26\x65\xfc\xc4\x11\x02\x54\xc7\x33\x97\x3f\xc8\xdc\x7c\x54\x7b\xb7\x94\x99\x72\xfa\xa7\xb6\x76\xa5\x3e\xbd\xc3\xe3\xbc\xea\x84\xe5\xff\xf5\xea\xf0\x1d\x82\x6f\xb9\x2e\x3d\x31\x28\x2b\x0d\x21\x21\x5c\xe9\xce\x5d\x32\x4b\x68\x67\xbf\x3f\x7b\x34\xee\xd0\x04\xf2\x8b\x18\x01\x98\x90\xf0\xda\xfb\xf6\xf6\x36\x9d\x9c\x9c\xe0\xd3\xa7\x4f\x65\x9b\xf0\x2e\x2b\x83\x63\xdf\x2d\x98\xa6\x2e\xaf\xc5\xc7\xe0\x92\xb0\x56\x9a\x50\x08\x95\x2b\x0b\xc0\x69\xe9\x78\x5d\x84\xf2\x89\x2d\x83\x84\x8b\x6d\x93\x50\x88\x29\xc7\xb3\xe2\x96\xe9\x35\x7c\x31\x32\x83\xe3\xd3\xea\x96\x3f\x23\xe8\x75\xa8\xd1\x27\x69\xd5\xbe\x5b\xe9\xda\xe4\x23\x65\x58\x88\x0e\xa7\x7c\xd3\x82\x26\x87\xdb\x94\x37\x14\xac\x3a\x69\xaa\xfb\x18\x78\x2b\x3f\x0d\x96\x8f\x0b\xbc\x0f\x6a\x75\xaf\x8d\x1d\x2a\xec\x7b\xef\xbd\x87\xce\x39\x7f\xde\x97\x1f\x13\x12\x28\x8e\xf7\x77\x04\x83\xd5\x71\x72\xe6\xea\x4e\xff\xcd\x53\x27\x9d\x2f\x22\x80\xab\x9f\xbf\xc5\xb0\x62\x25\xbf\xe5\xf1\x19\xa5\xb4\x16\xde\x95\x6a\x4b\x75\x01\xa1\x78\x5f\xe4\x89\xbb\x88\xb4\x38\x16\x69\x5e\x9b\xfc\x37\x9b\x3a\x3a\xdc\x1d\xcc\x6e\xfc\xe2\xf4\xf8\x73\xc8\x0d\xf6\x39\x00\x4c\x21\x37\xe6\x4b\xd9\xbf\xb1\xb1\x41\xab\xab\xab\x78\xeb\xd6\x2d\x5f\xf7\xda\x58\x1c\xdb\xde\x31\xdf\x65\x5b\xb6\xc9\xc7\xe2\x23\xde\x17\xd4\xa9\x22\xcd\xed\xcb\x35\x38\xa9\x01\x4b\x22\x2d\x1c\xfc\x1b\xcf\xd7\x29\x71\x12\x47\x06\x00\x30\x99\x4c\x60\x34\x1a\xc9\xef\xde\xeb\x22\x17\xea\x4e\x00\x61\x34\x4d\xe8\x78\x67\x38\xbd\x77\x77\x7d\xf2\xd9\x49\x27\xdb\xf5\xde\x16\x3f\x7f\x58\x2e\xf5\x46\x5a\xb8\x8b\x42\xf3\x86\x10\x80\x58\x24\x5b\x45\x96\x8b\xc4\xa9\xc2\xc1\x7b\x29\xf7\xe9\x40\x89\x3b\x57\xa3\x90\xf2\x74\x3e\xbf\x5c\x41\x29\x35\x9c\x12\x4f\xc9\xbb\x54\xc7\xe9\x08\xfa\xab\xe3\xe4\xb5\xcb\xbb\xfd\xaf\x5d\xda\xeb\x5f\x4b\xe7\x38\x24\xa2\x3e\xe4\x6b\x5d\x6a\xf3\x9f\x88\xe8\x86\xc3\xa1\xfb\xf2\x97\xbf\x0c\xaf\xbd\xf6\x9a\xd6\x7e\x00\x8b\x1a\x70\x5b\xaf\x43\xcc\xb7\x50\x58\x36\xdd\x32\xe1\x79\x4f\x53\xf0\xb0\xac\x87\xa8\x8d\xdb\xfe\x3f\xa3\xae\xda\x78\x9d\x96\x09\x96\x97\x16\x8c\xb8\xb6\xe1\x79\xd4\x4d\x1b\x3a\xda\xc2\x4a\x39\x6a\xc1\x59\x75\x14\x1b\x9a\xfa\x26\x97\xed\x6d\xf3\x6a\x82\x8f\xc1\x6d\x4d\xd9\x5a\x63\x82\xe5\x95\x51\x03\x9b\x62\xa9\x79\x23\x10\xc0\x39\x82\x14\x09\xba\xd5\x92\x81\xc5\x40\xc5\x7f\x7e\x41\xad\xbc\x73\x88\x7b\xd0\x79\x1a\xaa\x43\x70\x6c\xe2\xa9\x78\xe7\x02\x5e\xc1\xa7\xc4\xb8\x84\xa0\x9b\x66\xd8\x47\xaa\xdf\x57\x04\xa2\xde\xbb\xdd\x2e\x0c\x87\x43\x8e\xa0\x69\x9a\x1c\xe0\xbf\xa6\xdf\x34\x79\x14\x35\x9c\x25\x0f\x84\x5c\x37\xda\x1c\xb9\x64\xc0\x26\x57\xa4\xf5\x6d\x99\xf9\xb2\xec\xf6\xed\xdb\xf0\xc3\x1f\xfe\x30\x03\x00\xbf\x60\xa9\x36\x65\x04\x95\xf2\x32\x02\x80\x11\x01\x8c\x8e\xba\xf3\xdd\x7b\x1b\xe3\x5b\x4f\x56\xa6\x37\x09\x8b\x3c\xbc\x42\x50\x32\x09\xd6\x16\x81\x73\x18\x80\x4a\xf3\x15\xb3\x4a\x79\x1a\xac\x3a\x08\x79\x20\x60\xf0\x3c\xbd\xc6\xe9\x5e\x63\xe7\x79\x30\x6d\x07\xd9\x67\x62\x49\xea\x8f\x08\x9d\x0c\x37\x4f\x1f\xa7\x5f\x7c\xf1\x49\xff\xab\xdb\x7b\xbd\xed\x62\xad\x4b\xbf\x58\xe7\xc2\x2f\x63\x04\x22\x72\xeb\xeb\xeb\x6e\x75\x75\x15\x8c\xc0\x85\x84\x6f\xaf\xe7\x31\xa0\x68\x41\x0a\x38\x6e\x8d\x6b\xb0\x16\x8e\xd0\x73\x1b\x45\x4c\xc2\xc5\x2a\x6f\x5a\xbe\x9a\xa2\x1f\x23\x14\x2c\xc5\x41\x4b\xaf\xd5\x55\xac\xe0\xb1\xca\xa7\x0d\x1c\x21\xda\x9a\xe8\xd3\xd2\xc6\x4c\x29\x58\x79\xc6\x06\xc9\xc7\xcb\xe2\x6e\x03\x1f\x82\xb5\x06\x72\x8b\xc7\x62\x07\x97\x26\x81\xff\xbc\x71\x87\x94\x16\xce\xfb\x4d\x83\x64\xa8\x3f\xc7\x28\x46\x51\xc1\xef\xae\x04\x60\x67\x9d\x00\x3a\xcc\x07\xfc\x02\x86\xc3\xb3\xc4\xcc\xd3\xe1\x1f\x4d\xb7\x01\x05\x96\x19\xb0\x4b\x1b\x51\xe6\x01\x00\x04\x72\x00\xaa\x60\x17\xe0\x00\x1c\x00\xa6\x48\x51\x8b\x72\xdb\xc8\x4c\xde\x76\xfe\xfd\x79\x1a\x31\x6d\xd2\x5a\x3c\xb8\xe0\x71\xd1\x94\x10\x49\x78\x8c\xa5\xc0\x07\x9e\x90\x50\x6c\xc2\x21\xd3\xc1\xc1\xc1\x41\xf6\xf0\xe1\x43\x00\x00\x60\x8b\x73\xb9\xd7\x65\xe1\xfe\xa2\x69\x42\xc7\x4f\x86\xd3\x7b\x77\x36\xc6\x9f\x1e\x75\xe6\x8f\x01\x2a\x85\xa5\xa6\x0f\x17\x4c\x57\x6e\x4d\xc6\xfa\x7a\x18\x10\xb0\x00\x54\x31\x21\x54\xf8\x78\x5c\x75\xb3\x68\x1d\x83\xf4\xbe\x54\xbb\xb3\xa9\x74\x4b\x2e\xdc\x73\x54\xcb\x1f\x6a\xb4\x15\xca\x4b\xda\x9b\xb9\xed\x17\x0e\xbb\x5f\xb9\xf6\x78\xf0\xfe\xd6\x41\xe7\x2c\x40\xb5\xcb\x88\xdf\x69\xe1\x17\xad\x5d\xbe\x7c\xd9\xbd\xfc\xf2\xcb\x16\x73\xca\x35\x4c\x6d\x19\x36\xd6\x82\x93\x02\x6e\x41\xbb\x16\xb0\x4d\xf9\x68\xcf\xda\x6f\xa8\x3c\x16\x3d\x4d\xf0\x16\x0d\x1a\x3e\x2d\x48\xc1\xd1\x44\x4f\x13\x7c\x53\x68\x2a\x9f\xf6\x4d\x33\x42\x62\xcb\x17\x1a\x48\x63\x07\xd6\x58\x9e\x0a\xc1\xb7\x55\xc2\x9b\xf0\xf1\xfe\x11\x82\x6d\xf2\x30\x84\xbc\x9f\x6d\x69\x92\x69\xb5\xba\xb7\xda\xbf\xa9\x7e\x42\xfd\xa7\x8d\xb2\xd1\xa6\x4f\xc9\xb8\x90\x72\xcd\xf3\x2b\x77\x55\x02\x78\x4f\x76\xb9\x48\xb7\x6c\xb7\xda\xee\x65\x3f\x1d\xcf\xbc\xe6\xda\xac\xcd\xc2\x73\xed\xb8\x75\x41\x09\xc3\x09\x40\x0b\x06\xb0\xa6\xf1\x84\x0e\x21\x25\xa0\xac\xd8\xf0\xb1\xac\x72\x11\xdb\x2f\x64\x3d\x87\xfa\xb0\x16\xd7\x96\xaf\x42\xb0\x6e\xe1\xa1\x21\xb4\x51\x5e\x42\x02\xb5\xa9\x92\xa5\xb2\xb3\xc0\x9c\xbb\xbb\xbb\xf0\xb3\x9f\xfd\x4c\x1b\x18\x54\xaf\x4b\x06\x74\x7c\xdc\xcd\xf6\xef\x6c\x8e\x6f\x3e\x5a\x9d\xde\x9c\x23\xcd\x34\x07\x1c\xdb\xb1\x94\xbb\x07\xb9\xfb\x64\x41\x89\xc8\x57\xc8\xb0\x69\xd0\x12\x86\x4f\x19\x55\x6b\x5e\x98\xaa\xc2\xcf\x6c\xf1\x2a\x87\xf0\xfc\xf8\x2f\x1e\xce\x2b\x31\xa5\xf2\x8f\x00\x40\xf5\x2d\xd3\x08\x00\x8e\xa0\xbf\x32\x49\x5e\xba\xb8\xd7\xfd\xc6\xcb\x4f\x06\x5f\x5c\x1d\x27\xfe\x0a\x74\x7e\xbe\x4b\xe9\x79\xd9\xda\xda\x82\xb7\xdf\x7e\x1b\x5e\x7a\xe9\x25\x59\x1d\x9a\x60\x6d\x3b\x90\x34\x09\x78\x1e\x67\x85\xb6\x83\x54\x9b\x10\x23\xf8\x96\xc1\xa7\x85\xd8\x3c\x96\x19\x50\x9f\x17\xfd\x5a\x68\xc2\xbd\x6c\xdd\x6b\x4a\xed\xb2\x0a\x8f\x86\xbb\xc9\xf3\x13\x13\x6f\x09\x65\x0b\x77\xac\x07\xc9\xf2\xae\x48\xbc\x96\x0c\x0d\xe1\x96\xcf\x9a\xfc\x8d\x49\xc7\x83\x55\xf7\x56\x7c\xc8\xc3\xd5\xb6\x8f\xb4\xa1\xb7\xc9\xb8\xaa\xda\x0e\xc9\x11\x02\x64\x08\x99\xe6\x5c\x81\xd2\x88\xad\xe2\xf3\x3b\xe7\x02\xd8\x65\xc0\xc2\x10\x95\x13\x47\x94\x7b\x4d\xea\x5f\xd8\x4a\xc7\xc6\x3c\x08\x00\x21\x23\x07\xd9\xcc\xd1\x4c\x28\x3b\x96\xb3\x40\x0b\x4d\xce\x84\x36\x4a\x26\x87\x6f\xcb\xaf\x31\xf1\x9c\x06\xc7\x01\x43\x4c\xcb\xad\x6e\x1e\xdf\x94\x01\x1f\x18\x62\xac\x10\x99\x9f\x2a\x94\x77\x77\x77\xe1\xe3\x8f\x3f\x2e\xa7\x8a\xd8\xd9\x2e\x35\xaf\x0b\x11\x4d\x88\x68\x84\x88\x93\xb9\xa3\xc3\xa7\xc3\xe9\x83\xdb\x9b\xe3\x4f\x8e\xba\xf3\xa7\x00\x95\x26\xcd\x19\xc8\xbf\xfb\x29\x9d\x52\x31\x59\x38\xf2\x1f\x4a\xd7\x4a\xed\x46\x2e\x86\x47\x4e\xe7\x54\x60\x95\xb2\xa2\x6d\x85\x06\xf0\x8b\xc1\xaa\xb3\x5d\x8a\x4b\x13\x2b\xdc\x3e\x5e\xac\x69\x42\x40\x48\x32\x58\x5d\x1b\xa5\x6f\x5c\x7d\x3a\xf8\xd5\x17\x9f\xf4\xaf\x75\x66\x38\x2c\xd6\xb9\x94\xca\x0b\x11\x95\x07\xd4\x6d\x6d\x6d\xb9\x2f\x7d\xe9\x4b\x70\xf5\xea\x55\x4d\x28\xc7\x0c\x8a\x5a\x1a\x4b\x78\x59\x1e\x1c\x2b\xbd\xcc\x27\x94\x87\xf6\x3d\x94\x87\x0f\x96\x02\xd3\x94\xd6\x1a\xc4\x9a\x42\x93\xf0\xb5\xf2\x89\xa5\x4b\xa6\x89\x69\x1f\x59\x16\xff\x9c\x29\xdf\x63\xf2\x09\x3d\x6b\x69\x25\x2d\xa0\xc4\xfb\xe7\x26\xfe\xe1\xf2\xc3\x0a\x31\x42\x5d\x1b\xf4\x25\xde\xd0\x20\x6d\x7d\x8f\xf1\xe0\xb5\x09\x96\x7c\x8d\xe1\x4d\xcb\xc8\xb4\xda\x20\x46\xf9\xf3\x38\x2d\xf9\x1f\xa2\x45\x3e\xb7\x19\x50\x17\xda\xdc\xf2\x5a\x67\x00\x30\x71\xd9\x6c\x92\x66\x23\x02\x66\xc8\x16\x83\x02\x95\xb2\x9c\xea\xc7\xfd\xfb\xb5\x2e\xc4\xbd\xe4\xd5\xff\x45\xa6\xe5\x2e\xa1\x7c\xb1\x6d\x75\x0a\x7a\x81\xa8\xb8\x22\x00\x4b\x45\xa6\x3c\x2b\x03\x98\x82\xe4\xf3\x28\xbd\xf6\x15\x1d\x04\x90\x4d\x1d\x8d\x46\x9d\xec\xd8\x4f\x7d\x01\x80\x93\xe5\x0d\x79\xed\x65\x5d\xb5\xf8\x6e\xe9\x01\xda\x78\x6d\xc9\x0c\xad\x7f\x5a\x7d\x8e\xe7\xe3\xb4\x0f\xa1\x4e\xa8\x09\x31\xf9\xac\x65\xc8\x05\x8d\x16\x2c\x42\x43\x1d\x2e\x1b\x8f\xc7\x70\xf7\xee\xdd\x0c\xa0\x9a\x32\x2a\x7e\x6b\x0b\x75\x11\x31\x3f\x51\x17\x61\x34\x4a\xb3\xfd\xdb\x9b\xe3\x9b\x8f\x56\x27\x9f\xcd\x1d\x4c\xbc\x96\x5b\x6e\x65\x26\xb1\x20\x17\xeb\xca\x84\x0c\xf2\xc8\x66\x1f\x7c\x1a\xee\x25\xa9\xf1\x8f\x32\x81\xba\xe0\x8a\x64\x6e\xcb\x9a\xbe\xce\xa7\xa6\x6a\xda\x91\x3f\x34\x89\x00\x01\x5d\xb1\xde\xe5\xdd\x57\x1e\x0d\x7f\xf5\xc2\x41\xef\x12\x02\xf6\x81\x6a\xd3\x46\x0e\xa0\x72\xa1\x9e\x3e\x7d\xda\xbd\xff\xfe\xfb\xb0\xbd\xbd\x2d\x8b\x19\x63\xe9\x4a\x25\x95\xa7\xb3\x94\x02\xe9\xa2\xd6\x94\x57\x99\xce\x52\x9e\xa5\xa0\xe4\x38\x42\x82\xd6\x12\x80\x9a\x90\xb6\x84\xaa\xa9\x60\x0b\x5c\xb1\x41\x13\xf6\x96\x11\x20\x15\x41\x3e\xa0\x5b\xf5\xa9\x95\xc1\xfa\x0d\x19\x14\x1a\xee\xd8\x78\xed\xd7\x8a\x0b\xc1\x84\x8c\x21\x19\xa4\xcc\x6a\x52\x56\x35\xbe\x8f\x1d\x58\x65\x3a\x0f\xd7\xc6\xd8\xe3\xb8\x9b\x78\x2b\x24\xec\xb5\xba\x0c\x29\x3a\x21\xda\x24\x4c\xe8\x59\x2a\x44\x31\xfd\x20\x46\xf6\x73\x5a\x9a\xe8\x30\xaf\x66\x21\x04\x98\xa4\x34\x3b\xee\x64\x87\x73\x47\x23\x00\x28\xaf\x75\x01\xe0\x9e\xed\xfc\x8e\xbb\x3c\x11\x94\x82\x1a\xa1\x0e\x5b\xfa\x4b\xbc\xc1\x89\x00\x48\xd5\xd9\x5e\xb5\xdd\x48\x1c\x87\x47\x50\x9b\x36\xaa\x16\x35\x2e\xe6\x53\x54\x00\xd2\x6c\xd4\xc9\x76\xf7\xfa\xb3\x3d\x7f\xad\x8b\x56\x4e\xa3\xfc\xa1\xf1\x5a\xbe\x4b\xbd\x40\xf2\x8e\xd6\xee\x3c\x58\x32\x43\xcb\x53\x2b\x83\x26\x93\x33\x1e\x83\x9e\xa9\x5b\x00\x00\x16\x15\x49\x44\x41\x54\xc1\x99\x2d\x24\xd4\x6b\x89\x03\x85\x90\xe9\xac\x8e\x1e\xd2\x9e\x4d\x0d\x6c\x77\x77\x17\xfe\xee\xef\xfe\xae\x96\xae\xf0\xbc\x48\xa5\xa5\x9a\x32\x42\x18\xed\x0c\xa6\x8f\x6e\x9d\x1a\xff\xf4\xb0\x3b\x7f\x4c\x08\x99\xf7\xb6\x78\x2f\x8b\x3c\xf6\x5f\x5b\x8c\x15\x0c\x54\x67\xfa\x32\xae\xee\x72\xa9\x4d\xef\xf0\xdf\x32\x33\x8f\x87\x2d\xe4\xaa\x6d\x9f\x13\x89\xaa\xbb\x90\x0a\x6f\x0e\x61\xda\x99\xe3\xf9\xb3\x47\x9d\x6f\x5c\xbf\xb7\xf2\xb5\xb5\x71\xb2\x09\xf5\xb3\x5d\x52\x22\x2a\x4f\xd7\x45\x44\xd8\xd8\xd8\x70\xdf\xf8\xc6\x37\x64\x89\xb8\xc6\xac\xb5\xb5\x54\x5c\xe5\x20\x1b\xb2\xfa\x9a\x2c\xd3\x10\x3f\x49\x3c\x96\xe2\x1d\xca\xc7\x12\xa8\x4d\x4a\xbc\x15\x62\x04\xaf\x65\x7d\xca\xb4\x56\xbf\xb2\x06\x04\x39\xa0\x87\x04\x4c\xec\x60\x6b\x09\x38\xcd\x70\x59\xa6\xcc\x4d\xb2\xa0\x8d\xd2\x17\x93\x7f\x48\x59\xb2\xde\x7d\x5c\xdb\xc1\x54\x4b\xdb\x44\xa3\x05\xd3\xa4\xf0\xc4\x04\x8b\xef\x2d\xbe\xd0\x60\x2c\x85\x47\x06\x4b\x76\x6b\xf4\x58\xe9\x63\xe1\x82\xf9\x98\x1e\x07\xcc\xa7\x59\x8e\xbb\xf3\xc3\x89\xcb\x0e\xf3\xb8\xca\x52\xad\x4f\xef\x30\xa1\x5b\xb9\xe0\x6b\xde\x71\x36\xd3\xcf\xf2\xc0\xfa\x6e\x24\x12\x30\x52\xa9\xe0\x16\x6e\xa9\x24\xd5\xbd\xf8\x7e\xca\x6a\xee\x68\x74\xd8\x9b\x3d\xde\x19\xce\x76\x8b\x71\x0f\x00\x4a\xe3\x3d\x63\x1b\x57\xb4\x10\xd3\x17\x43\xc6\x42\x0c\xcf\xc4\x04\xa9\x94\xb4\xe2\x09\x4d\xf0\x69\x0c\xeb\x7f\x43\xdf\xda\x58\x40\x3c\x58\xf9\x68\x95\x52\xd2\x49\x44\x70\x78\x78\x58\x6a\x74\x6c\xb1\x6e\xa9\xbc\x10\x51\xa9\xb8\x00\xc2\xf1\x2c\xa1\xe3\x5f\x6c\x8e\x7e\xfe\x68\x75\xf2\xd9\xb4\xd0\xb4\x8b\xa1\xde\x7b\x2b\x54\x25\xc5\xf3\x14\xf3\xdc\x55\xa1\x74\xe5\x55\xee\x90\xda\x04\x10\x2e\xf0\xe0\x42\x5a\xee\xa9\xac\x69\xe0\xbe\xcf\xa0\x48\x53\x73\x53\xb2\x75\x35\x6c\x9f\x34\x02\xa6\xbd\xa9\xbb\xb2\xbd\xd7\xfb\xf6\x17\xef\xac\xbd\x5d\xdc\x22\xbd\x70\x9f\x11\x40\x71\x28\x13\x22\x38\xe7\xa0\x38\xb8\xc9\x07\x4d\x63\x06\x58\x64\x66\x2d\x64\xca\x5f\x88\xe9\xb5\xb8\x98\xce\xd7\xa4\x1c\x87\xac\xe3\x26\xfc\x21\x25\x43\xc2\x87\x06\xc6\x58\xda\xda\x08\x95\x90\xd0\x6e\xea\x7f\x9a\x92\x60\x59\x46\x12\xaf\x2c\xab\x55\xf6\x58\x5a\x2c\xb8\x36\x32\x24\xa4\x04\x49\x01\xd9\x36\x34\x0d\xc2\x16\x2d\xa1\xb6\x0d\x79\x28\x34\x18\x2b\x9f\x58\x45\x67\x41\x7e\x06\x60\x25\x4d\x16\xac\xa5\x50\x87\x68\x93\x34\x5a\xf2\x40\x53\xe0\x2d\x3c\xd6\x18\x54\xed\xf6\xac\x14\x98\xcc\xbf\x67\x48\xd9\x61\x6f\xbe\x37\x49\x69\x1f\x20\xf7\x90\x94\xf2\x96\xd8\x75\x2d\x7e\xea\x87\x79\x5c\xf8\x20\x50\xdb\x8d\x5a\xae\x5f\xe4\x00\x75\x8f\x0b\x95\xee\x72\x31\xad\x53\x58\xb8\x54\xd3\x84\xaa\x34\x7e\x1d\x25\x01\x64\xe3\x94\x0e\xf7\x7b\xf3\xc7\x7b\xfd\xd9\x71\x51\xa6\x8c\xe7\xc9\x97\x16\x28\xe1\x59\xfa\x01\x40\x33\x1f\xb7\xcd\xaf\x89\x17\x55\xf8\x26\xe6\xb2\x06\x0f\x4b\x70\xc5\x58\x15\xfc\xbd\x69\xf0\x32\x05\xd0\xe1\xe1\x61\xf6\xdd\xef\x7e\xd7\xa2\x77\x06\x00\x33\xe1\x75\x99\x64\x40\xc7\x4f\x86\xd3\xc7\xb7\x4e\x8d\x3e\x3e\xe8\xcd\x1f\x66\x08\x33\x7f\x52\x6e\xa5\x10\x53\x7d\x4e\xd2\x3f\x17\x0c\x58\xe3\x5b\x76\xa1\x62\x39\xed\x83\x9c\xef\xea\x1c\xe8\xa7\x73\x7c\x1a\xbf\xbb\xa9\xd4\xc8\x19\xb3\x51\xa9\x29\x51\x4d\x11\x07\xac\xa6\x44\x51\xe0\xad\x92\x53\x51\x51\xd8\x1d\x4c\xdd\xf5\x2f\x3c\xe9\xff\xf6\x2b\x0f\x87\xd7\x7a\x33\x5c\x05\x82\x3e\x11\x75\x11\xb1\xf4\xba\x14\xeb\x5d\xdc\xea\xea\xaa\xfb\xbd\xdf\xfb\x3d\x70\xce\x49\x2b\x3a\x86\xd9\x63\x60\xda\x0c\x00\xff\x19\xa1\x6d\x27\x79\x5e\x69\x9f\x77\x08\x79\x54\xb4\xd0\xa4\x14\xb4\xc1\xd5\x36\xb4\xf1\xb8\xb5\x4d\xd7\x26\x7f\x2e\x3f\xda\xd0\x14\x1a\xb0\xdb\x78\xe6\xac\xf8\x18\x25\xc2\x7a\x0f\xc9\xdd\xb6\x1e\x1e\x4d\xf1\x90\x0a\x88\x65\x1d\x73\x7e\x5c\xd6\xb3\x14\x8a\x8b\x81\xaf\xd1\x5a\x1c\xfb\x90\x01\x54\xcb\x09\x8a\xf8\x0c\x11\xb3\x0c\x69\x76\xd8\x9b\x1f\x9e\x74\xeb\x3b\x4d\xbd\xe1\x59\x1d\x71\xaa\x9c\xf4\x52\x78\x65\xa4\x13\xc5\x6f\xd8\xe0\xe7\x7f\x11\x77\xc3\x97\x8f\x15\x46\x2f\xf6\x91\x5d\xe8\xcb\xe9\xa9\xaf\x08\x40\xc8\x1c\x4c\x46\x69\xb6\xbb\xdf\x9f\x3d\x9c\xba\x6c\x22\x96\x4a\x70\x43\x5e\xa9\xb2\xb2\x9e\x64\xfd\x85\x78\x56\xeb\x3f\x21\xbc\xb1\xa1\xa9\x4d\x83\xfd\xa8\x8d\x6b\x32\x64\x01\xcb\xb4\x6d\x06\xb1\x26\xc5\xc8\xfa\x56\x06\x76\x05\x40\x4d\x71\x01\xb6\x35\xba\x58\xa8\x3b\x42\xc4\xd1\xe7\xa7\x47\x37\xee\xaf\x4f\x3e\x19\xa7\x85\x9b\x10\xa0\xbc\xa3\xc8\x33\x5f\xdd\xed\x57\xe4\x23\x97\xb5\xb0\x9d\x48\x28\x94\x09\x1e\x6a\xde\x41\x9e\x06\x40\x9f\x5e\xf2\xcf\x05\xbc\x36\xb5\x24\xd7\xc4\xf8\xcb\x1a\x3d\x84\x9f\x5b\x75\x04\xdd\x8d\x71\xfa\xc1\x9b\x0f\x56\x7e\xf3\xc5\x9d\xc1\x95\xde\x0c\x57\x11\xb1\x0f\xf9\x29\x92\xe5\x85\x8c\x7e\xbd\x4b\x9a\xa6\xf0\x47\x7f\xf4\x47\xd0\xe9\x74\x94\x92\x00\x40\xb3\xb0\x5b\x46\xe1\x89\x11\x8e\x31\x69\xda\xe6\x63\x09\x70\x0b\x77\x5b\xab\x38\x84\xa3\x4d\x9e\x9a\x37\xd2\xb2\x56\xb5\x7c\x62\xeb\x98\xe3\x0e\xd5\x4f\x08\x4f\x6c\x9d\xb4\x11\x74\x4d\x65\x8d\xc9\x87\x0b\xe0\x18\x45\xad\xc9\x80\xfa\xaf\x0a\xcb\x7a\xa2\xda\xa6\x6b\xf2\x06\xca\x6f\x96\x77\x2e\x94\x4f\x5b\xcf\x5c\x8c\xb1\xa0\xe6\xcd\xee\xf8\xa9\x7d\xf7\x03\xfc\xdc\xc1\xe4\xc9\x70\xba\xfb\x78\x65\xf6\xd9\x34\xa1\x72\x1c\xe0\xc2\x75\xe1\x60\x38\xbe\x94\x05\xaa\xcd\x1b\x0b\x6e\x78\x66\xdd\x22\x4f\x04\x4c\x21\x61\x4b\x5c\xb4\xc0\xc7\x06\x6e\x2c\xcf\x1c\x8d\xf6\x06\xb3\x87\x8f\x57\xa6\x0f\xa4\xb2\x92\xe3\x25\xe9\x6d\x69\xcb\xc7\x12\x46\xeb\x3f\x6d\xc2\xb2\x46\x51\x30\x1f\x79\xe4\xbf\x0f\x54\x64\xc2\x7f\x65\xe0\xf1\x0e\xea\xf5\xab\xc1\x87\x70\x59\x41\xa3\xa1\x7c\xce\xb2\x0c\x7f\xf2\x93\x9f\xc0\x9b\x6f\xbe\x09\x49\x92\xc8\x71\x1d\x19\xbc\x3f\xfa\x19\x01\x20\x9d\x24\x04\x69\x86\xc9\xc6\x49\x7a\x76\x30\x75\x1b\x09\x61\xc2\xf9\x93\xca\xe3\xf6\xa9\x60\x7e\xaa\xbb\x52\xca\x35\x25\xc5\x6f\x01\x87\x0c\xac\xf0\xab\x80\xbf\x32\x80\x1f\xf5\xef\xa7\xa6\x80\x2b\x3c\xb5\xc5\x2c\xb5\xc7\x6a\x0a\xaa\x38\x16\x9a\x2b\x50\xa5\xf7\xd2\x7b\x85\x20\xd7\xf2\x73\xe5\xab\x50\x92\x08\x7a\xdd\xb9\x7b\x61\x65\x92\x64\xc7\xdd\xec\xe1\x71\x67\x7e\x3c\x4f\xf2\xed\xe3\x88\x48\x45\x07\xe0\x8e\x50\x7c\xe3\x8d\x37\xe8\xb3\xcf\x3e\xc3\xc9\x64\x22\xfd\x9a\xd6\xb3\x7f\x0f\x7d\xd7\x82\x95\x26\x94\xf6\x79\xe5\xa3\xe5\xd5\xb6\xbc\x31\x81\xc3\x95\xfe\xb5\x16\x79\x92\xf1\x1c\x93\x27\x41\x7c\x1d\x6b\x69\xa4\x77\xa7\x09\xcf\x32\x75\x24\x1c\xf0\x8d\x38\xb5\xc0\x65\x84\x06\xaf\xe5\x11\x9b\x4f\x53\x5a\x4b\xf6\xb9\x96\x30\x1a\x2d\x31\xf2\x77\xd9\xfa\xb1\xca\x65\x05\x0b\x56\xa3\x31\xa6\x5e\x9f\x25\xde\xac\x93\x77\xdf\x7d\x17\x9d\x73\x5e\x9c\xfb\xb1\xc9\x1f\xfb\xdf\x81\xe2\x88\x08\x72\xd4\xe9\xce\xdc\xe0\xdc\x61\xf7\x0b\xbd\x99\xdb\xf0\x87\x51\xd4\x0d\xcd\x22\x33\x66\x95\x72\xb9\xeb\x13\x94\x32\xdc\x07\x26\xef\xfd\x8e\x24\x3e\x84\x68\xe7\xb8\x10\x40\x6d\x0c\xa9\xb4\x9a\x7c\x7c\xc9\x80\xb2\xc3\xde\xfc\xc1\xad\x53\xa3\x1f\x7d\x76\x66\xf4\xb3\xcc\xc1\x21\x00\x1c\x43\x3e\xa3\x30\x86\x7c\x6d\xe7\x94\x6d\x54\xc9\x00\x80\x76\x77\x77\xe1\xc6\x8d\x1b\x6c\xf4\x0a\xd6\xab\xc5\x13\x4d\x7d\x34\x66\x6c\x97\xed\x27\xd3\xc4\xca\xf1\xa0\xbb\xa6\x69\x6e\x53\x6a\xba\x4d\x9a\x98\x14\x80\x31\x41\xa3\xa1\xf6\x3c\x1e\x8f\x35\x3a\xb8\xd7\x85\x9f\xeb\x52\xee\x32\xba\xb3\x31\xfe\xc5\xbd\x8d\xf1\xa7\x47\xdd\xf9\xd3\x0c\x28\xab\xb7\x6a\xe5\x15\xf1\xef\xfc\x04\x5b\xe9\x5d\xf1\x77\x0a\x01\x67\x4c\xa8\xb4\xed\xda\xc9\xbb\x55\xec\x82\x27\xa5\x54\x5a\x40\x74\x82\x12\x37\x56\xb7\x14\xb0\xb4\x1e\xbe\xea\x50\x45\x2f\x29\x73\x41\xe8\xcc\xf1\xec\xd9\xa3\xce\xaf\xbc\xf6\x60\xf8\xe1\xf9\x83\xde\xa5\xce\x0c\x87\x50\x9d\xf1\xc2\x4f\xd6\x75\x00\x00\xdd\x6e\xd7\x7d\xf4\xd1\x47\x70\xe6\xcc\x99\x26\x2f\x43\xac\xeb\x5d\xc2\x87\xbe\x69\xe9\x9b\xbc\x10\x5a\xbe\x96\x77\x60\x59\x37\xa5\x45\x6b\xe8\x59\x86\x18\x57\x6d\xdb\x3a\x8d\xa5\x47\xe2\x88\xf1\x40\xc5\x4c\x47\x34\xd5\xa7\x06\xdf\x94\x47\xc8\x23\x65\xc5\xc5\x7c\xb3\x68\x0a\x05\xcd\x6a\xb4\xac\xd7\x36\x56\x25\x4f\x6b\xf1\x7e\x8c\xc5\xdc\xa6\xbc\x12\x4f\x1b\x58\xab\xbd\x9b\xea\xa7\x09\x5f\x2c\x7c\x53\xbc\xba\xf4\x40\x39\x65\x7d\x06\x08\xb3\x0c\x61\xf2\x70\x6d\x72\x6f\xb7\x3f\xbb\x35\x77\x34\x29\x0f\xf5\x2c\x86\x4f\xbe\xed\x19\x98\xdc\xd5\x4e\xb4\x2d\x8d\x47\x66\x22\xe4\x5e\x6f\xac\x7b\x57\x8a\xef\xd5\x1a\x9a\xea\xd7\x2b\x2b\x8b\x5e\x98\x1c\xc7\xcc\xd1\x68\xbf\x3f\xbf\xff\x64\x38\xbb\x3d\x4d\x68\x04\xf5\xb3\xcb\xfc\x73\x39\x45\x06\x00\x70\xe3\xc6\x0d\xf8\xfe\xf7\xbf\xcf\xcb\xef\xc3\x32\x5e\xd2\x50\xba\x18\xdc\x16\xdf\x34\x79\x6e\x17\xe8\xd3\x3c\x2e\x52\xd3\x6f\xd2\x8a\x24\x1c\xf7\xbe\xf0\xb8\x0c\xea\xb8\x24\xde\xa6\x6f\xdc\x6b\x56\xfb\x7e\xff\xfe\x7d\xbc\x74\xe9\x12\x75\xbb\x5d\x6d\x36\x05\x89\x28\xf1\x0b\x51\x8b\x32\xa7\xb3\x84\x88\x10\x60\x7d\x9c\xae\x0f\x27\xe9\x46\x9a\x61\xaf\x96\x48\xd1\xae\x81\x40\x78\x3b\xbc\x9a\x50\xfc\x62\xc5\xd4\x5c\xf9\x20\xc6\x94\xb2\x23\x50\x81\x94\x2b\x43\x8a\xce\x52\x53\x58\xf8\xa5\x5f\x3e\x9f\x72\x3b\xb7\xcf\xd3\x5f\xf0\x55\xd1\x8e\x49\x86\xab\xbd\x59\xb2\x92\x10\x8e\x46\xdd\xec\xe9\x71\x27\x3b\xc9\x5c\xde\xb1\x0b\x2d\xdd\xbb\x57\x09\x11\xa9\xdf\xef\xe3\xd6\xd6\x16\xed\xee\xee\xe2\xe1\xe1\x61\xc8\x4a\x0f\x59\x48\x1a\xff\x58\x69\x2c\xcf\x80\xf6\x2c\xbd\x03\x12\x8f\x95\x9e\xc3\x37\x59\xbb\xa1\x60\xd1\x20\x9f\x43\xe9\xad\xfc\x9a\xea\xd4\x07\x49\x7f\xd3\xb3\xc4\x11\xaa\xd3\x50\xbe\x21\x3c\xb1\xf0\x4d\x69\xa4\x15\x28\x8d\x9e\x26\x5e\x91\xf8\x63\x3c\x2e\x21\x19\x24\xe1\x35\xf9\x24\xf3\x8d\xf1\xb2\x70\xbc\x1a\xbc\x85\x5b\xa6\x6d\xe2\x59\xad\xae\x90\xfd\x69\x7d\xd5\x4a\x27\xe5\xbc\x06\x6f\x8d\x23\xa1\x36\x96\x63\x86\x84\xe7\xf4\x71\xba\x6b\xe1\xfe\xfd\xfb\x78\xe5\xca\x15\x3f\xdd\xed\x8a\x4b\x79\x4b\xd9\x0f\xf9\xf4\x78\x07\x00\xbb\x93\x84\x70\x7d\x9c\xae\x6d\x8e\x3a\xdb\xdd\xb9\x5b\x45\xa8\xae\xf0\xcd\xcf\xd0\xaa\x32\x2b\x09\x5d\xd4\x2c\xaa\x78\x4e\x15\xe6\x72\xb8\x76\x11\x63\xf1\x5d\x7a\xd3\x17\x6e\x70\xac\x50\x14\x70\x04\x27\x9d\xec\xc9\xed\xcd\xf1\x4f\x6f\x9e\x19\xfd\x64\xd4\xcd\x76\x01\xe0\x08\x72\x8f\xcb\xb8\xf8\x9b\x42\xbe\xb6\x73\xe6\xeb\xee\xfe\xfd\xfb\x74\xe3\xc6\x0d\xcd\x61\x10\xc3\xa7\x1a\xbc\xd5\x7e\x31\xb2\x74\x59\xdc\x0b\xe9\xb8\xe2\x62\x29\x28\x92\xa1\xe5\xb3\x87\xa9\x8d\xf1\x4a\x9c\xd6\x31\xa5\x62\x23\x71\x3a\x96\x2e\x63\x69\x6b\x4c\x7e\x78\x78\x88\x7b\x7b\x7b\xb0\xb5\xb5\x45\xfd\x7e\x5f\x16\xd4\x33\x2e\x14\xbb\x67\x12\x00\x70\x80\xe0\xc6\x69\x46\xdd\xb9\xeb\xad\x8d\xd3\x53\x83\x99\x5b\x75\x94\xdf\x32\x5d\x31\x66\x9e\x75\x4d\x11\x21\xc8\x77\xef\x10\x56\xeb\x54\x80\x9d\x78\x2b\x18\x93\x58\x1c\xb1\xe9\xa1\x8a\x6f\xd9\x3d\x49\x24\xd2\xf9\xca\xc4\xfa\x37\x64\xef\x9c\x56\xbf\x25\x9a\x7b\x76\xca\x06\x41\x04\x47\x98\xa4\x84\xeb\xfd\x19\xf6\x11\xf0\xe8\xa4\x9b\xed\x1e\x77\xe6\x27\xe0\xd0\x0b\x88\x05\xe1\xbf\xb2\xb2\x82\xeb\xeb\xeb\x74\x74\x74\x84\x07\x07\x07\x4d\xc2\x51\x0b\x21\xfe\x79\x1e\xe1\x59\xf0\x35\xa5\x5b\x86\xee\x65\xe8\xb1\xd2\x84\x94\x7b\x58\x22\x9f\x65\xc3\xf3\x6e\x33\x8e\x33\x24\x5b\xd4\xfe\x6e\xd0\x65\x7d\xd3\x06\x40\x2b\x70\xf9\x64\x29\x3a\x5a\x9e\x52\xb6\x69\xf8\x64\x7c\x68\xd0\x97\xb8\x9b\xea\x47\xd2\x67\x0e\xea\x4a\x7e\x1c\x7f\x48\x81\xd1\xca\x10\xf2\xa0\xcb\x7a\x6f\xa2\x9b\x2b\x67\x72\x3c\xb0\x06\x36\x95\xc6\xc3\xc3\x43\xba\x7e\xfd\x3a\x0a\x43\xd6\x2b\x2e\x0e\xf2\x1d\x95\x1d\x40\x48\xc9\x41\x67\x8e\x44\x9b\xa3\xf4\xf4\x70\x92\x9c\xc9\x0d\x58\x43\x33\x09\x04\xbf\x5b\x08\x85\xc5\xeb\xd7\x2a\x2e\xaa\x25\x2c\x14\x42\x5e\xc2\x20\x5b\x2f\x30\x73\x34\x7a\xb2\x32\xbd\xf9\xf3\xd3\xa3\x7f\xbf\xb7\x3e\xfe\x9c\x1c\x1c\x43\xae\xb4\x9c\x40\x35\x9b\xe0\x6f\x87\xf6\x63\x25\x3d\x7a\xf4\x88\x8a\x9b\xa1\x7d\x68\x52\x4e\x79\x68\xe2\x03\xad\x8f\x86\xd2\x69\xfc\x6b\x29\xc0\x16\x2c\x01\xd4\x15\x97\x10\xa3\x73\x04\x72\xbe\x5b\x12\x2e\x99\x95\xa7\x91\x15\xc8\x71\xf8\x02\x64\x81\xf4\x4e\xc0\xfb\x78\xdc\xdb\xdb\xcb\xae\x5d\xbb\x86\x2b\x2b\x2b\x88\x88\x58\x78\x11\x2a\x87\x03\x51\x02\xb9\x12\xe3\x0a\x0f\x4c\x32\x4f\x00\xe7\x8e\xb2\xe1\xc4\xad\xac\x8e\x93\xcd\xce\x1c\x57\xbc\x22\xe2\x8b\xc4\x0b\x07\xe0\xf9\x08\xcb\x9d\x40\x5c\xd1\xe0\xef\xc0\xd2\x55\xd3\x48\xf5\x2b\xce\xab\x35\x34\x75\x6f\x09\xcf\x8f\x47\x78\x5c\x75\x85\xc5\xe7\xeb\xb5\xa3\xc5\x6f\xa5\xc2\x8f\x00\x0e\xb0\x93\xce\xdd\x5a\x6f\x8e\x3d\x02\xd8\x3f\xe9\x66\xbb\x27\x69\x36\x01\x2c\xdd\x8c\xc4\xb6\xd3\x11\x22\xd2\xea\xea\x2a\xae\xac\xac\xd0\xc9\xc9\x09\xee\xef\xef\x87\x18\xd2\x12\x9a\xf2\x39\xc6\xbb\xa6\x31\x32\x17\xac\x3e\x1f\xe9\xa2\x8c\x11\xda\x32\x0f\x2d\x4f\xce\x9f\x00\x8b\xf4\x6a\x9e\x45\x60\xf9\xc7\x74\xc6\x90\x25\xcd\xbd\x94\xbc\xac\xb1\x42\x21\x34\x08\x05\x85\x82\x02\x17\xaa\xd3\x26\xc1\x63\xd1\x25\x07\x2a\x39\xf8\x73\xfa\xfd\xbb\x1c\x28\x43\x8a\x86\x36\xd8\x69\xb4\x59\xd6\xa6\x25\xec\x35\x78\x29\x17\x2d\x1c\xbc\x1d\x63\x14\x03\x8d\xb7\xb4\xfa\x91\xf1\x1a\x7e\xad\x1d\x64\xbb\x5a\x83\x90\x46\x8b\x55\x3f\x4d\x3c\x63\x0d\x70\x56\xdd\x37\xd1\xa2\xf6\x87\xb7\xde\x7a\xcb\x2b\x2e\xa5\xd2\xc2\x0c\x57\xff\x97\x02\x40\x67\x9c\x66\xd4\x99\xbb\xee\xfa\x38\x3d\xd3\x9f\x25\xeb\x8e\x30\xa9\x19\x7d\x05\x45\x04\x50\xf3\x6e\x83\x7f\x66\x86\xa8\x37\x62\x3d\x2c\x00\xd4\xd6\x2b\xfa\x71\x02\x58\x1a\x5e\x59\xfe\x8d\xbc\x4c\x27\x80\xcc\x51\x76\xd0\x9f\x3f\xf8\xfc\xf4\xf8\x47\x37\x4f\x8f\xfe\xd7\x51\x77\xfe\x14\x11\x0f\x89\xe8\x18\x11\xf3\xe3\x3e\x00\xc6\x44\x34\x43\xc4\x19\xe5\xc2\x7b\x7e\xfb\xf6\xed\xec\xe3\x8f\x3f\x06\x61\x70\x36\xf1\x9d\x25\x97\xb4\xfa\xb6\xfa\x9f\xd5\xc6\x9c\x27\x78\xbb\xc7\xf0\x7a\xad\xff\x73\xc5\xa5\x89\x48\x8e\x4c\x1b\x6c\x2c\xa1\x6a\x31\x97\x14\x54\xbc\x30\x16\x43\x5b\x42\x06\x01\x00\x93\x24\x81\xcd\xcd\x4d\xea\xf7\xfb\x5e\x21\xf0\x4c\x0b\x98\x07\x80\xea\xfc\x92\x04\x00\xdc\x24\x21\x4a\x32\x4c\xd6\xc6\xc9\xe6\x70\x9a\xac\x27\xe4\x3a\x7c\x35\x6d\xe9\xdd\x00\xa8\xa6\x89\x3c\xb3\x72\xc6\x84\x32\x49\x49\x1d\x16\x08\xf8\xfa\x13\x00\xaa\xd6\xce\x20\xe6\x27\x2c\x96\x8b\x68\x2b\x0e\xe7\x4a\x8d\xcf\x33\x5f\x74\x5b\x57\x9a\x38\x5c\xf9\xec\x61\x79\xde\x75\x25\xa9\xdf\x99\xbb\xf5\xde\xdc\xa5\x19\xc2\xfe\x71\x37\xdb\x1d\xa7\xd9\x14\x10\xfc\x42\x5d\xbf\x68\xb7\x20\x13\x69\x7d\x7d\x1d\x07\x83\x81\xa5\xbc\xc8\x36\x6c\xea\x1c\xa1\x8e\x64\xa5\x97\xcc\xce\x07\x3d\x14\x71\x31\xf9\x4b\x1a\x9a\xf8\x53\xd2\x2b\xe9\x91\xb8\x42\x69\xad\x3c\x43\xf9\x84\x06\x8c\x90\x41\xa1\xe5\xa1\xf5\x23\xab\xce\x3d\x6e\x8b\x56\x4b\xc0\x85\xea\x46\xc6\x6b\x4a\xa8\x55\xfe\x18\xd9\x20\x83\xa5\xa0\x84\xda\x20\x66\x50\xf5\x70\xa1\x1d\x1a\x5c\xf8\xc6\x28\x2c\x3c\x1f\x4b\x79\x96\x71\x21\x05\x0e\x94\xf8\xa6\xbe\x22\xeb\x55\x33\x3c\x2d\xf8\x26\x9e\x89\x6d\x33\x0b\xb7\xd6\x86\x0b\xe3\x8b\x50\x5c\x00\xa0\x3c\x29\x1c\xa1\x90\xfd\xc5\x6e\xca\x4e\xe6\x20\x9d\xa4\xd9\x7c\x75\x92\xac\xad\x8e\x93\x53\xdd\x0c\x87\x7e\x4f\x12\x31\x04\x5e\xd9\xe0\x8b\x76\xab\xa9\x79\xa8\xe4\x35\x93\xf7\xc8\x61\xa0\x4a\xc3\x0f\xe4\xe5\xcb\x04\xa8\x58\x36\xc0\xf1\x8e\x3a\xd9\xde\x9d\x8d\xf1\x4f\x6f\x9c\x3d\xf9\xe1\xe3\xd5\xe9\x1d\x72\x78\x04\x00\x47\x88\x78\x4c\x44\x27\x88\x38\x85\x7c\x61\xae\xdf\x70\x31\x47\x44\xfa\xf4\xd3\x4f\xe9\x93\x4f\x3e\x69\xbb\xae\xd4\xea\xcf\x9a\x32\x43\xca\x77\x50\x60\x9a\x70\x6b\xbc\x6b\xa5\x73\x00\x40\xd6\xae\x22\xcd\x1a\xd2\xe2\x43\xd6\x93\x86\x4f\x06\x8b\x69\xdb\xc2\x13\x40\xee\x16\xbb\x78\xf1\x22\x6e\x6e\x6e\x72\x86\xe5\xc1\xef\x2c\xf2\x8a\x4b\x92\x39\xc0\x99\xa3\xac\x3b\x77\xfd\xf5\x71\x7a\xaa\x37\x75\x6b\x0e\xf3\x21\xbb\xa6\x39\x7b\xa6\x2d\xa9\xcb\x01\x6a\x8c\xe7\x61\xc8\xa7\xa9\xee\xa9\xf0\xcc\xe8\x95\x96\xf2\x9a\x46\x84\xfc\x97\xa0\xae\xa8\x94\x19\x15\x05\xf4\x1d\x83\x77\x1e\xa8\xb4\x72\x1f\x89\xc0\xe2\x0b\x32\x81\x75\xaa\xfc\x15\xc1\x11\xf4\xbb\xb9\xf2\x92\x64\x8e\x76\x8f\x7a\xf3\xbd\x49\x42\x53\x90\x17\x20\xb1\xdf\xf5\xf5\x75\x1c\x0e\x87\x74\x78\x78\xc8\xd7\xbc\xc4\x4e\x23\x58\x5e\x8d\xd0\x7b\x0c\x7e\xab\x33\x68\xf9\x5b\xfc\x69\x7d\x8b\x1d\x64\x64\x7a\xcb\xd5\x1d\xa2\x2f\x36\x68\x03\x6a\xcc\xe0\xcb\xdf\x63\xeb\xc7\x1a\x94\x43\x75\x18\x6a\xbf\x90\x41\x24\xeb\xcb\xf2\xca\x59\xb4\xcb\x6f\x32\x4d\xa8\xcc\x5a\xbc\xb6\x29\xc1\xaa\x4b\x8b\x56\xcd\xc2\xb4\x3c\x54\x5a\x5e\x0b\x02\xdb\x80\xb7\x78\xd6\xb2\x60\xf9\xb7\x10\x5e\x69\x90\x5a\xe5\x94\xf8\xac\xf5\x8c\x5a\xbb\x6b\x74\x59\xf5\x63\x79\x3b\x17\x8c\xe6\x95\x95\x15\xdc\xd8\xd8\xa0\x34\x4d\x79\x5a\x00\xc8\xd7\x3c\x02\x40\xc2\xbc\x2f\xe9\x38\xcd\xef\x5b\x5c\x99\x26\xab\x83\x69\xb2\x9e\x66\xd8\xe5\x07\x4c\x70\x0f\x49\x5d\x9b\x01\xf0\x06\x65\x15\x9f\xbf\x23\xfb\x56\x8a\x68\x86\x8f\xb0\xee\x71\x97\xc6\x2a\x01\xc0\xd4\x65\xa3\x87\x6b\xd3\x4f\x3f\xdd\x3a\xf9\xd7\xbb\xeb\x93\x9f\x4f\xf3\x03\xf3\xca\xdd\x44\x85\xc7\x65\x02\xb9\xc7\x65\x8e\x88\xf3\x22\x29\xdd\xbb\x77\x8f\xee\xdd\xbb\xb7\x8c\xac\xd1\xe4\x98\xd5\xaf\xa5\x0e\xd0\x84\x8f\xff\x4a\x78\x8b\x0f\x16\xfa\x7f\x68\x3b\xb4\xf6\xac\x69\xed\x21\x78\x4f\x80\x15\x1f\x12\x34\x5a\x01\x38\x9c\xda\xe1\x36\x36\x36\x70\x7d\x7d\x9d\x3a\x9d\x8e\xdf\xd2\x9c\x0f\xe9\xd5\xd5\xe6\xa5\xd6\x9d\xcf\x8a\x60\x3a\x49\x29\x23\x44\x5c\x99\x24\xab\xeb\xe3\xe4\x74\x9a\x61\x0f\x10\x00\xd9\xa2\x59\x5f\xf8\xb2\x90\x58\x9d\x95\xe2\x39\xb2\xc6\x94\xfe\x91\x2b\x40\x35\x3c\xe5\x92\xde\xfc\xad\xd6\x11\xbc\x46\x5e\x21\xd5\x3a\x4d\x99\x07\x02\x77\x12\x2d\x6c\xcb\x13\xaf\x65\xaa\x84\x60\xd0\x9b\xb9\x8d\xde\xcc\x75\x66\x8e\x9e\x1e\xf6\xe7\x7b\x53\x47\x19\x57\x5e\x8a\xce\x54\x53\x5e\x36\x36\x36\xe8\xe9\xd3\xa7\x78\x7c\x7c\x2c\xad\xe4\x26\xe1\xda\x34\xb8\x73\x41\xe6\xdb\x89\x17\x55\xe6\xa3\xf1\x82\xc5\x3b\x9a\x72\xad\x79\x07\x2c\x7e\xb3\xca\xc7\xf9\x5b\x96\x8b\xe3\xd4\xbe\x69\x65\x0a\x95\x2f\x66\x40\xe5\x71\x72\xb0\x0c\x2d\x90\xd7\x06\x81\xa6\x41\xdd\xe3\xe5\xb8\xe5\x60\x24\x07\x18\x9e\x97\x36\xa8\x36\xc9\x14\xcb\x30\x92\x7c\xd8\x66\xfd\x05\x2f\x8b\x56\x6e\x6d\x70\x8c\x91\x91\x9a\x42\x66\xf1\x60\x93\x72\xd6\x24\x3f\xb5\x10\xaa\x43\x1f\x17\xe2\x73\x59\x1f\x21\x39\x1f\xd3\x7e\x4d\xed\xe6\xe3\x34\x58\x1e\xc7\xd3\xa9\xb8\x6f\xdf\xbe\x8d\x5f\xf8\xc2\x17\x60\x65\x65\x45\xca\x14\xef\x7d\x4f\x8b\x77\x07\x00\x29\x20\xb8\xe3\xce\x7c\x42\x08\xd4\x9f\xb9\x61\x7f\xea\x56\x13\x65\xbd\x4b\xed\xc6\xe8\xd2\x98\xad\x84\xb4\x7f\xa7\x82\xa2\x9a\x62\xc2\x0a\x97\x23\x13\x9b\x32\x84\xb1\x39\x73\x34\xd9\x19\xce\x7e\x71\xe3\xec\xf1\x0f\x3f\x3f\x35\xfa\xd9\x51\x6f\xfe\x84\x00\x0e\x20\xf7\xb6\x9c\x14\xde\x96\x31\x14\xeb\x5b\x0a\xa5\x65\x0e\x00\xd9\xce\xce\x4e\xf6\xf9\xe7\x9f\xc3\xd3\xa7\x4f\x9b\xfa\x8e\x16\xb4\x7e\xa9\xc9\xcc\x90\x62\xc3\xf3\x0c\xb6\x95\x41\x9f\x26\x97\xcb\x5f\x6d\x71\x6e\xa8\x70\x31\x0a\x84\x7c\x27\x91\x8e\xc7\xcb\x77\x4b\xf0\x59\x2e\xe4\x85\xce\x7f\xef\xde\xbd\x6c\x63\x63\x03\xcf\x9d\x3b\xe7\x15\x96\x72\x9d\x78\xa1\xa8\x20\xe4\x73\x9b\x5e\x99\x71\x80\xe0\x26\x09\x65\x09\x41\x67\x63\x9c\x6e\x0e\x26\x6e\xd3\x81\x73\xa5\x02\x50\xd3\x84\xcb\x53\x52\x2a\x3d\x9a\x29\x17\x25\x73\xfa\x4f\x8c\x53\xfd\xa9\xbc\xd5\x92\x5e\xa8\x16\xec\x02\x87\x03\xe0\x13\xa7\x15\xce\x1c\x96\x18\x4d\xc8\x70\x7b\x3c\xa5\x12\x53\xf4\x9e\xdc\xcb\x53\x1e\xad\x57\xe5\x01\xe8\x12\x82\xb5\xfe\x3c\x39\x3d\x9c\xba\x64\x92\xd0\xc3\xc3\xfe\xfc\x68\x96\xd0\xac\x38\x61\x12\xb9\xd2\xe2\x7f\x57\x57\x57\x71\x6b\x6b\x8b\xee\xdd\xbb\x07\xa3\xd1\x48\x13\x50\xa1\x41\x58\x6b\x3f\x8b\x59\xad\xc1\x53\x76\x2c\x8b\x5f\xb5\x0e\x56\x2b\x4b\x20\x0d\x7f\x0f\x0d\xe4\x1a\x3c\x80\x3e\x10\x85\xea\x87\xbf\x4b\xbc\xb1\x03\x9a\x86\x4b\xd6\x63\x88\x56\x4d\x60\x59\xf9\xf9\x3a\x95\x03\x9c\x55\x1f\xda\xa0\x28\x95\x9e\x90\x3c\x69\x6a\x03\xcd\xe2\xd7\x2c\x36\x8d\x16\x5f\x66\x00\x1d\xbf\x54\x7e\x65\xfb\x69\x8a\x1a\x08\x78\x59\xc6\x4c\xc0\x58\xfd\xc5\x92\xc7\x5a\x19\xb4\x77\x2d\x9e\xd7\xbf\xc6\x17\x21\x05\xce\xaa\x53\x09\x23\x0d\x10\x0d\x17\x08\x18\xcf\x0b\x92\x36\x89\xdb\x52\x92\x79\xa0\x0b\x17\x2e\xe0\xda\xda\x1a\x25\x49\xc2\x61\x73\x7b\xb3\xb8\xe6\xa4\x98\x2e\x4a\x88\x28\xc9\x12\xc0\xa3\xee\xfc\x84\x90\xb2\xc1\xcc\xf5\x07\x33\xb7\x9a\x64\xd8\xcd\x2d\x51\x36\xf5\x8e\xb0\xb0\xc6\x51\x06\x2c\xfe\xab\x8d\x05\x40\xc5\x54\x10\x41\xa5\xb4\xd4\xe5\x32\x15\xe9\xe6\x48\xb3\x9d\x95\xe9\x9d\x4f\xcf\x1e\xff\xbf\x9f\x9d\x1d\xfd\xaf\x83\xfe\xfc\x51\x86\x70\x80\x88\x27\x6c\x8a\xe8\x04\xaa\xab\x6d\x66\x88\x38\x2f\xd6\x28\xd2\x0f\x7e\xf0\x03\xfa\xd9\xcf\x7e\x56\xa2\x64\x64\x35\xf1\x86\x66\xec\x71\x3c\xb2\xdf\x6a\x38\x6a\xed\x20\xf0\x4a\xfe\x91\x7d\x10\x15\xb8\x05\x45\x35\x61\x48\x33\xa8\x77\x28\xad\x43\xf0\xce\xa7\x15\x0e\x94\x77\x50\xde\x79\xd0\xb4\xac\x26\x41\x15\xd2\xfa\xdc\x85\x0b\x17\xe0\xcc\x99\x33\xe4\x9c\x2b\xd7\xba\x14\x4a\x4b\x0e\x54\x79\x61\xbc\xd6\x9d\xcc\x5d\xe6\xe6\x0e\xb2\xee\xcc\xf5\x36\x4f\x3a\x5b\x9d\x39\x0e\x4b\x17\x1f\x53\x8b\xa9\x3c\x1f\xc5\x97\x96\xbf\xd7\x0f\x9c\xf3\x4a\x84\x67\x5a\x20\xa6\x9f\x97\x8c\xbf\xa0\xd3\x17\x59\x15\x79\xf3\x35\x2c\xde\xcb\xe3\x69\x2a\x20\xf5\x75\x2e\xbe\xa3\xd5\x3d\x3b\x40\x45\x67\x41\xf4\xde\x20\x4c\x32\x5c\xed\xcf\x92\xb3\x2b\xe3\x24\x39\xee\x64\x77\x77\x07\xb3\x23\x40\x24\x02\xca\xf2\x75\xce\x94\x15\xf5\x45\x45\x1e\xb4\xb2\xb2\x82\x97\x2f\x5f\xa6\x1b\x37\x6e\xe0\x6c\x36\x93\x0a\x2d\x17\x2c\xfe\x19\x04\x8c\x6c\x67\x80\x45\xc1\x28\x05\x93\x13\xdf\xb4\xe9\x05\xad\x73\x48\x01\x6a\xe5\x63\x09\x5c\xab\xc3\x69\xb4\xf1\x3a\xd0\x82\xaf\x0b\x8f\x93\x3f\x6b\xfc\xcf\xeb\x45\xd2\x28\xcb\x0e\x0d\xf5\xa3\xd1\xa2\xe5\x17\x53\x56\xde\xc6\x00\x8b\xf8\x9b\x04\x99\x54\x72\xb4\x01\x54\x1b\xe0\xad\xa0\xe1\xe1\xcf\x21\x79\xc6\x07\x4c\x4b\xa9\xe1\xf5\xc9\xeb\x07\x40\x57\x8a\x43\xca\x89\xc6\x9b\xb2\xee\xa5\x6c\xd3\x94\x5d\x9e\x9f\xcc\x5f\x06\xad\xef\x59\x0a\x8f\xc5\x2b\x5e\x51\x95\xfc\x2d\x79\x50\x6e\xb0\xb0\xc6\x04\x5e\x56\x59\xbf\x5a\xff\x91\x03\x98\xec\x9b\xb5\x70\xf3\xe6\x4d\x7c\xe1\x85\x17\x60\x73\x73\x93\xa7\xcf\xc5\x6f\x2e\x30\x13\xf1\xeb\x66\x09\xc1\x61\x6f\x7e\x9c\x21\xd0\x60\x9a\x0c\xfa\xb9\xf2\xd2\x91\x72\x5a\x2a\x26\xf9\x38\x51\x51\x46\xec\x9b\xa7\x8e\xc0\x1f\x99\xc1\x76\xa1\xb2\x13\x4b\xfd\x4d\xd4\x99\x83\xd9\xd3\x95\xe9\xad\xff\x38\x77\xf4\xcf\x9f\x6e\x8d\x7e\xba\xdf\x9f\x3d\xca\x1c\xec\x03\xc0\x31\x22\x1e\x16\xbf\xc7\x50\x9c\x0a\x8f\x88\x13\x3f\x45\x84\x88\x34\x1e\x8f\xe9\xd6\xad\x5b\xf4\xe4\xc9\x13\x4f\x01\x27\xdb\xe2\x6f\x8d\x9f\x35\xfe\xd0\x78\x47\xc2\x6a\xc1\xb7\x9d\x36\x66\x73\x1c\x9a\x5c\x58\xc0\x9d\xb0\x8f\x1a\x12\x2e\xb0\x64\x86\x5c\xf0\xca\x8e\x68\x05\x4d\x98\x59\x9a\xb5\xe6\x8e\x0e\xd1\x59\x7e\xbb\x73\xe7\x0e\x26\x49\x02\xdb\xdb\xdb\x65\xc3\x14\x83\xae\x03\xc8\x6f\x43\xc6\xea\x5c\x17\x07\x00\x09\x20\xba\x69\x9a\x65\x99\x03\xb7\x31\x4a\x57\xd7\x47\xe9\x96\x03\x2c\x8f\xe3\xf5\x25\x2d\xd7\xbb\x20\x94\x8a\x44\xa5\x6a\x60\x05\x03\x82\x99\x0b\x2e\xf7\x0c\x4f\x25\xce\x4a\xe3\xf6\x58\xaa\xff\xa1\x5a\xb8\x5b\x91\x20\x60\xa1\x52\x5a\xd8\x33\xef\x45\xb9\x12\x44\x65\x7c\xa5\x08\x41\x31\x1d\x86\x98\x10\xac\x0e\x66\xc9\xf9\x8d\x51\x9a\xec\x0d\xe6\x37\x0e\xfa\xb3\x31\x20\xfa\x33\x5e\xa0\x58\xb4\x5b\x90\x94\x13\xde\xeb\xf5\xe8\xf5\xd7\x5f\x87\x1f\xfe\xf0\x87\xa1\x45\x95\xf2\x19\x1a\x9e\xad\x81\xcd\xc2\xad\xc5\x5b\x7c\x12\xa2\x2d\xd4\x61\xac\x01\x36\xa6\x4c\x32\x68\xf9\x35\x09\x82\x10\x6c\xdb\xfa\x0e\xe5\xa1\xe1\x0c\xe1\xb3\x68\x0f\xe5\xd9\x26\xc4\xd6\x69\x5b\x5c\xfc\x3d\xc4\x2f\xa0\xc0\xf0\x6f\xda\x00\xab\xc9\xc1\x50\xfd\x58\xde\xc0\xa6\xe7\x18\xcf\x4a\xc8\xb3\x67\xd1\x63\x85\x90\x8c\x97\x0a\x48\x93\x8c\x97\xc6\xaf\xcc\x5f\x2a\xce\x16\x1e\x1f\x67\x29\xe8\x74\xed\xda\x35\xdc\xdc\xdc\xf4\xb8\x3c\x3c\xff\xf3\x71\xe5\xfa\xc7\x59\x42\xd9\x61\x6f\x7e\x34\xea\x64\xc7\x9d\xb9\x4b\x06\xb3\x64\x35\xcd\x5c\xaf\x94\xbf\x04\x35\x61\xcc\xd7\x40\x7a\x6c\x72\xdc\xf0\x63\x06\x10\x1f\x13\xea\x78\x00\x01\xe6\x8e\x66\x4f\x87\xb3\x9b\x3f\xda\x3e\xfc\xc7\x1b\x67\x4f\x7e\x76\xd8\x9b\x3f\x26\x07\x07\xc0\x94\x16\x60\xa7\xe5\x12\xd1\x98\x4f\x11\x01\x40\xf6\xb7\x7f\xfb\xb7\x59\x71\x76\x4b\x93\x4c\x91\xcf\xcf\xc2\x1f\x4d\xe1\x79\xf6\x65\xf8\xdf\x05\x07\x12\x44\x8e\x84\x17\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x87\xf5\x52\x8c\xea\xb6\x01\x00") - -func web_uiV1StaticMstile310x150PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticMstile310x150Png, - "web_ui/v1/static/mstile-310x150.png", - ) -} - -func web_uiV1StaticMstile310x150Png() (*asset, error) { - bytes, err := web_uiV1StaticMstile310x150PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/mstile-310x150.png", size: 112362, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticMstile310x310Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x23\x40\xdc\xbf\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x02\x2e\x00\x00\x02\x2e\x08\x06\x00\x00\x00\x98\x4a\x83\xdf\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xdc\xbd\xfb\x93\x25\xc7\x55\x3f\x78\x32\xab\x6e\xdd\xdb\xb7\x7b\x7a\x7a\x5a\x33\xa3\xb1\xa4\x19\x8d\x85\x2c\xc9\x46\x18\x61\x19\x6c\x8c\xbe\x0b\x18\xaf\xe1\xbb\x66\x59\x08\x82\x30\x8f\x20\x02\x47\x20\xfd\x51\xb2\x03\xfc\x03\x01\xf8\x07\xf8\x81\x0d\xff\xc0\x06\x0f\x47\x7c\xc1\xf1\x35\xeb\xd7\x1a\xfc\xc0\x36\xb2\x24\x8f\x47\xd2\xa8\xd5\xd3\xd3\xd3\x7d\xfb\x3e\xaa\x32\xf7\x87\xaa\xac\x3a\x79\xea\xe4\xab\xee\xed\xb1\x77\x53\x31\xea\xaa\xac\x93\xe7\x9c\x7c\x9d\xf3\xa9\x93\x59\x79\x01\xea\x24\x81\x4f\x32\xf2\xaf\x8f\x07\xe5\x67\xfe\x71\x79\x1c\x5f\x70\x94\xe1\xf4\x74\xf1\xf4\xd5\xcf\xf7\x7c\x9d\xe4\xaa\x4b\xec\xb3\x14\x19\x9b\x48\xa9\xbc\x5c\x7d\x30\xb4\x4e\x5c\x3f\xa4\xc8\x70\xf1\x0c\x3d\x0b\x8d\xfd\x18\x5e\x29\x72\x31\x8d\x6b\x5c\xfb\xe6\xd9\xba\xf2\x53\xdb\x6e\x9d\x76\x18\x9a\x5c\x63\x68\xd3\xb2\x63\xc6\xea\xba\x73\x74\xa8\x1e\x43\xf2\xcf\x2b\x6d\x4a\xde\x50\x3e\x3f\x6e\xf9\x9b\x96\xf7\xa0\xfa\xf5\x27\x69\x7c\x6f\x5c\x4e\x08\x7c\x84\x1c\x92\xcf\xd8\x86\x14\x0b\x19\x6e\x4c\x13\x03\x9a\x86\x00\xad\x14\xc3\x1c\xdb\x06\xbe\xb4\x69\x47\x70\x5e\x93\x71\x28\xd8\x48\xe1\x31\xd4\x31\xbb\xf4\xd8\x44\x5b\x84\xea\x73\x5e\x40\xd7\x27\xd3\xa7\xcb\x3a\x3c\xe8\xb3\x75\x78\x0e\x01\x57\xeb\x38\xb2\x07\x05\x1e\x62\x9f\xc7\x94\xdd\x04\x8f\xd8\xfc\xf3\xd0\x23\x75\xfc\xbb\x7c\xcb\xba\xe5\x63\x93\xcb\xbf\xa4\x94\x4f\x2d\x77\x9e\x7d\x7c\x1e\xbc\x63\x9f\x0f\x91\xf7\xc0\x80\x6a\x08\x15\xc5\x18\xf5\x18\x19\x2e\x70\x93\x0a\x00\x7c\x13\x23\x64\x58\xb9\x49\xb8\xae\x23\xde\x44\x99\x07\x8d\xc6\x1f\xd8\xe0\x5a\x93\xb7\xab\x3f\x87\x3a\xe5\xd8\x76\x1e\x02\xc0\x5d\xfc\x87\xf4\xed\x10\x30\x3c\x84\x87\x8b\xee\x3c\x0c\x5e\xe8\x45\xe2\x41\xcd\x81\x75\xd2\x4f\x92\x2e\x00\xeb\x83\xb9\x4d\xbd\x3c\x3c\x28\x79\x43\xe5\xae\x2b\x2b\xe6\x39\xf5\x71\xeb\xf0\x1c\x4a\xbb\x09\x19\xae\xb6\x4d\x7d\x69\x49\xf1\xd3\x49\xc9\xd5\xc8\xa9\x08\x9b\xe3\x1b\x02\x26\x21\xe7\x32\x04\x10\xb9\x64\xd1\x7c\x1f\xff\xd8\x4e\x7b\x50\x29\x76\x00\x6d\xda\x01\xa4\x38\xf8\x21\xfc\x63\xe5\xad\x4b\x9b\x5a\x6e\x13\x20\x75\xc8\xb8\x4a\xd5\x2d\x16\x58\xf9\x78\x0f\x9d\x63\xb1\x69\x88\x31\xa4\xf9\x31\xe3\x39\x96\x6f\x2c\x88\x8d\x95\xef\x93\xb9\xae\xfd\x5c\xe7\xf9\xba\xb2\x52\xe7\x74\x2c\x8f\x21\x7e\x61\xa8\x1e\xb1\x73\x70\x9d\x31\x4a\xcb\x85\xc6\x93\xcf\x6e\xaf\x9b\xd6\x99\x9f\xa9\x75\x4e\xf5\xcf\x3e\x7e\x6b\xd9\x64\xca\x9c\x2a\xe6\xba\xf7\x31\xa7\xf4\xa1\x67\xa1\x81\x96\xe2\x0c\x42\x7c\x62\x0c\xd6\x10\x39\x9b\x4e\xa9\x7a\x9e\x87\xcc\xa1\xc6\xc5\x65\x10\x36\x6d\xcc\x7d\xe3\x28\xd5\x90\x70\x65\x36\x09\x76\x42\x6d\x95\x0a\x62\xce\x73\x4c\xa6\xf2\x8e\x31\x4c\x31\x36\x81\x33\x8a\x43\xfa\x60\x48\xdf\x73\xe5\x5d\x3a\xfb\xe6\x49\x2c\x7d\xea\x1c\x49\x6d\x9f\x18\x9d\x62\xed\x76\xac\x4e\x9b\x6c\x57\xd7\x1c\x71\xf9\x25\xaa\x93\x4f\x8e\x8b\x96\xd3\x35\x96\x9e\xa3\x49\x29\x07\x01\x9a\x98\xf1\x14\xab\x5f\x48\xf6\x3a\xfa\xbb\xf8\xc4\xd4\x6d\x23\x76\x2d\x85\x81\x6b\x30\xb9\x1a\x34\x34\x71\x5d\xc6\xdc\x37\x69\x7d\x93\x3a\xc4\xdb\x25\x8f\x5e\x73\x3a\x70\x29\x66\x70\xa6\x94\x09\xd1\xc5\x18\xc6\x75\x53\x2a\xcf\x50\xdf\x70\xbc\x63\x8c\x07\xce\xf7\x19\xb7\xd8\x76\x0a\xd1\xc4\xea\xe3\xe2\xed\x1b\xe7\x3e\x1e\xdc\xdc\x19\x22\xd3\x77\xef\x9b\x33\x1c\x5d\x28\xf9\xf4\x8c\x31\x7c\x31\xfc\x52\xe8\x63\xfb\x72\x68\xdd\x7e\x5c\x69\x93\xba\xa4\xf6\x47\x4a\x1b\xa7\xf0\x4f\x75\x5a\x43\xda\x20\xa5\x9f\xd7\xb1\xc7\x9b\xa0\x5d\x27\x85\xec\xad\xab\x0c\x2e\x7b\x9e\xe9\x81\xb6\x59\xc8\xc1\x87\x04\xc7\x38\x2e\xae\x9c\xaf\x6c\x08\xc4\xb8\x74\x48\x35\xce\x31\x80\xc6\x55\x6e\x68\xd9\x94\xb4\x29\xe3\x10\xd3\xaf\x31\xed\xba\xe9\xc1\x7f\x1e\x20\xcc\x97\x9f\x32\xf1\x43\xbc\x62\xef\x5d\x3c\x42\x00\x28\xf4\x2c\x26\x85\x40\x94\x8f\x76\x28\x0d\xa6\xdb\xd4\x78\x89\x19\x27\x43\xe5\x6c\x9a\xb7\xab\xcf\x62\x41\x6a\x0a\x7f\x97\xcc\x75\xd3\x50\x3b\x9a\xc2\xcf\x77\x3d\x94\x37\xbe\x3f\xcf\x31\xe8\xca\xdf\xc4\x18\x34\xf7\x29\x7e\x2b\xd5\xae\xfb\xae\x87\xa6\xd0\xb8\x4c\x2e\xec\xa3\x0d\x01\x0e\x9f\x73\x8e\x31\x8a\xd2\xf3\x2f\xa4\x47\xc8\x79\xfa\x74\xf4\xf1\xe5\x68\x43\xf9\xbe\x14\xd2\x7f\x13\x29\xd6\x59\x6e\x6a\xe2\x84\x9e\xf9\xf4\x09\x4d\xaa\x94\x09\x13\xf3\xdc\x65\xa0\x42\x63\x7b\x1d\xdd\xd6\xed\xdb\x54\x90\x10\xea\xdf\x90\x83\x74\xf1\x4c\x29\xc3\xb5\x73\x8a\x51\x8c\x99\x27\x29\x3a\x85\xe6\x44\x48\x4e\x2c\x4d\xaa\x53\x88\xd1\x6b\xd3\xbc\x5d\x32\x62\x1c\x5f\xac\x9d\xf7\xb5\xdf\xd0\x76\x0b\xf5\xa3\x6b\x7e\x0f\x9d\x07\xbe\xf6\x8b\xe1\xed\xe2\x43\x79\x50\xde\x21\xf9\xa1\xbc\x54\x5d\x5c\xf2\xcd\xfd\x10\xdb\x96\x52\xb7\xa1\xf3\xdf\x22\xf4\x0d\x52\x6e\x90\x0c\x99\x0c\x31\x95\xe5\x78\xc4\xca\x88\xe1\x93\x32\x60\x63\x52\xea\x00\x8a\x79\x36\x44\x8f\x21\xb2\x87\xd0\xc6\x38\xa4\x4d\xc8\xdb\x04\xef\x18\xe3\x18\xab\x4f\x4c\x19\x97\x11\x8f\x31\xbc\xdc\xb3\xd8\x36\x58\xb7\x1d\x63\x9c\x4f\xc8\x90\xf9\x64\xf8\x6c\x09\xcd\x8f\x71\x36\x2e\xde\x5c\xf9\xd8\xba\xc4\xb6\x79\x6c\x5b\xc5\xe8\x80\xf3\x7c\x6d\x10\x7a\x36\x84\xb7\x2b\x8f\x93\xe9\x92\xc3\xc9\xf5\xf5\x71\x6c\x79\x17\x7d\x4a\x1b\x84\xe4\xb8\xe4\x85\xc6\x46\xaa\x0e\x38\x6f\x1d\xde\x9b\xd2\x29\x76\xdc\x85\x6c\x99\x6f\x6e\xf8\x74\xf1\xc9\x0b\x8e\x1f\xdf\x00\xf5\x29\xcb\x3d\x4b\x51\xc0\x55\xf9\x94\x81\xeb\x6b\x50\x2e\xc5\x4e\x26\x9f\xac\x54\x79\xbe\xfb\xd8\xb2\x2e\x9a\x90\x0e\xa9\x03\xea\x3c\x53\x4a\xbb\xaf\x2b\x67\x28\xdf\x98\x32\xa9\x86\x98\xcb\x8b\xe9\xcf\x58\x7d\x86\x96\xf1\xd1\xae\xdb\x27\x31\xc6\x76\x1d\x59\x29\xf3\x68\x88\x0c\x9f\x03\x88\x29\xcb\x95\x0b\xd9\x55\x9f\xac\x18\xe7\x10\x23\x6b\x48\xf9\x4d\xb5\xeb\xa6\xc7\x94\xef\xf9\xba\xf3\x6b\xc8\xbc\x0b\xe5\xc7\xce\x81\xd4\xf1\x13\xab\x53\x8a\x3e\x2e\x7e\x9b\x9c\x63\xa9\x7c\x9c\xfa\xae\x3b\x08\x5d\xc0\x23\x04\x86\x42\x46\x2e\x16\x24\x71\x3c\x62\xc0\x8d\x0b\x40\x71\xfa\xba\xe4\x84\x52\xec\x60\x8c\xe5\xe3\x2a\xbb\x09\x30\xb0\x69\x70\x11\xd3\x46\x43\xda\x25\x46\xb7\xf3\x06\x47\xeb\xf2\xd8\x74\x7f\xa5\x3c\x73\xd1\x6d\xd2\x98\x51\x9a\x98\x3a\x6f\xca\x69\xc4\x38\x0a\xdf\x9c\xf7\x95\x19\xa2\x5b\x4a\xbd\x69\x3b\xb9\xda\x3b\x56\xf7\x90\x4e\x31\x34\x43\x64\xad\x33\x36\x37\x31\xaf\x63\xc7\x5d\x4a\x3b\x84\x52\xa8\xbf\x62\xe8\x38\xb9\x43\x75\x4a\x69\x67\x97\xcf\xe4\xca\xac\xd3\x7f\x3e\x3a\x97\x5f\x76\x16\xe4\x94\xf6\x81\x0e\x60\xe8\xb8\xb2\x2e\xf0\x10\xd3\xa1\xb1\x13\xc9\xc5\xcf\xa5\xbf\x8b\x6f\xe8\x19\xa7\xaf\x4f\x6f\xd7\x5f\x57\x9e\x8b\x77\x0c\x5d\x68\xb2\xf8\xea\x16\xba\x8e\xd5\x6b\xd3\x0e\xc0\xd0\xc5\xea\x38\x44\x4e\xac\x01\x09\xc9\x89\xa1\x4b\xd5\xe5\x3c\xd3\x26\xda\x3f\xc4\x37\xb5\xaf\x39\x79\x9b\xa4\x8f\x1d\x9f\xa9\x8e\x97\xb3\x1d\x29\xc6\x3f\xb5\x0e\x9b\xe8\x83\x18\x7b\x91\xaa\x4b\xac\xa3\xf3\xd9\x43\xdf\xf3\x58\x1b\x34\xd4\x0e\xc5\xd8\xbf\xd4\xb9\x30\xa4\x5f\x63\xea\x1a\x3b\xfe\x42\x3c\x52\xda\x2a\x86\xee\xbc\xe7\xba\x53\x1f\x5f\x83\xb8\x2a\x1c\x52\xc0\x37\x08\x62\x27\x59\xec\xc4\xc3\xf4\x21\x23\xc4\x75\xf8\xa6\xd2\x83\x72\x40\x3f\x29\x29\xc6\x00\xa4\x8c\x91\x54\x99\x43\xe9\xd6\xed\xa7\x18\x63\x3a\xa4\xfc\x26\xd2\x83\x1c\x83\xa1\x7e\x8e\x71\xa0\x3e\xbe\xb1\x86\x18\xe7\x0d\x31\x8a\x31\xf9\x29\x4e\xfd\x3c\xec\xcb\xd0\xb6\xf4\x95\x8d\x2d\x17\xc3\x77\xc8\xfc\x8f\x95\xed\xea\xe3\x14\x30\x97\x22\x73\x88\x63\x1f\xda\xc6\x31\x72\x52\xc6\x54\xca\xd8\x5d\x07\x70\x0c\x9d\xa3\x31\x7a\x38\xcb\x85\x08\x39\x00\xe0\x43\x78\xdc\x00\xf6\x35\x56\x8c\xb1\xf1\x81\x29\x8e\xc6\xa7\x8f\x0f\x14\x6d\xa2\x53\x37\x9d\xce\x13\x54\x0d\x1d\x44\xae\xb2\xff\x5f\x68\xa7\x9f\x34\xa0\xf0\x20\xf5\x89\xe9\xef\x14\x47\x3b\x94\x2e\x05\xd8\x84\xf8\xf9\x1c\x59\xc8\x90\xfa\x00\x40\xc8\x4e\x0c\x05\x6a\xa9\xf4\xa9\xfd\x91\x32\xa7\x37\x01\xec\x62\x69\x62\x6c\x49\x6c\xf9\x21\x20\xc5\xe7\x67\x62\xc7\x49\x8c\xbc\xf3\x98\x13\xf8\x7a\xc8\x3c\x49\x1d\x3f\xa9\xbc\xd7\xe1\x9f\xe2\x63\xa2\xe4\xc4\x1a\x84\x68\x84\xc4\x3c\x0b\x19\x88\x90\x2e\x34\xcf\x07\x70\x62\x01\x8f\x2f\x0d\x1d\xfc\x3e\x3e\x43\xe4\xc6\xf0\x1c\x0a\x4e\x42\xf9\xf8\xf9\xba\x93\x27\x56\xb7\x18\x1d\x63\xfb\x35\xd5\xb0\xac\x3b\x66\xb8\x32\x29\x06\x3e\x95\x26\xd6\x10\x84\xda\x87\x6b\xfb\xd8\x31\xe6\x2b\x3b\xa4\x5f\x42\x36\x22\x24\x2f\xd5\x26\xe1\x72\xb1\xb6\xc8\x37\x1f\x62\xfb\x60\x1d\x07\xb8\x8e\xbd\x4e\xad\xb3\xeb\xd9\x90\xe4\x6b\x9b\xd8\x31\x1a\xa3\xcf\x3a\x76\x33\x76\x1c\x0f\xb1\xb9\xb1\xf2\x52\xcb\xc6\xb4\x6b\xaa\xcd\x8c\xad\x5f\x0c\x0f\xdf\x35\x57\xa6\x47\x9b\xda\x30\xb1\x42\x7c\x13\x20\xd4\xf9\xae\x89\x14\xfa\x1b\xd2\x8f\x6b\x80\x4d\x4c\xbc\x4d\x74\xe8\xd0\x72\xeb\xea\x9f\x2a\x2f\x55\x66\x6c\x1b\xfb\x26\xcd\x10\x67\x17\x4b\xb7\x29\x43\xec\x73\x10\xae\xf9\x90\x22\x77\x48\xfb\xc4\xf2\x1b\xd2\x3e\x29\x7d\x3a\xd4\x0e\xf8\xee\x71\x7e\x48\xa7\x50\xfb\xfb\xf4\x1b\x52\xdf\xd8\xb4\xee\xdc\xf7\xf1\x08\x39\x0a\x4a\x3b\xb4\x5f\x5d\xed\x9a\x62\xa3\x53\x74\x0d\xc9\x48\x1d\xaf\xa9\x63\xd4\xa7\x63\x8a\x9f\x0c\xe9\x34\xb4\x8f\x63\xf8\xc6\x8c\x6f\x5f\x9b\xba\x92\x4b\xef\xd8\x3e\xf1\xb5\x31\xab\x6b\x88\xd0\x59\x90\x49\x9b\x00\x02\xf4\xde\xf7\xcf\xc7\xc7\xc5\x8b\x93\x97\x32\x71\x63\xd2\x26\x9c\xea\x26\x74\x38\x2f\xfe\x31\x93\x76\x13\x86\x39\xe6\x3e\x95\xdf\x79\x26\xd7\xd8\x74\x19\x22\x6e\x8e\xc5\x1a\xf0\x58\xa3\xec\x7a\x96\xe2\x54\x62\x78\xc7\x1a\xbf\x50\x7f\x84\x9c\xa1\xef\x9a\xca\x8d\x29\xef\xd3\x63\x48\xbe\xcb\x46\x0d\x6d\x9f\x21\xe5\x42\xba\xb8\x52\xaa\x1d\x4c\xe5\x3f\x24\xa5\x3a\xcf\x98\x3c\xca\x3b\xb6\x5c\xc8\xb9\x86\x64\x86\xfa\xce\xe7\xb7\x62\xfb\x9d\xa3\xa7\xcf\x39\xbd\x62\xf3\x5d\xfc\xd7\xa5\x8d\xcd\xf7\x8e\x85\x98\x09\x31\xa4\x3c\xe5\xe1\xaa\xa8\x8b\x97\x4b\x56\xa8\xf3\x5c\xbc\x63\xf9\x87\xae\x87\xa6\x75\xf9\xf9\x26\xc8\x26\xf9\x6d\x22\xa5\xf2\x8e\x19\x1b\x43\x79\x0f\x2d\x33\x84\x5f\xc8\x70\x72\x7f\x87\xc8\xdc\x84\x03\x19\x5a\x76\xdd\x7e\x89\x75\x08\x29\xfc\x37\xd5\xa6\xf8\x7a\x28\xcf\x18\x59\x43\xf4\xf1\xd1\x87\xec\x68\x8a\xdd\x0b\xd1\xc7\x8c\xbb\x18\xdb\x3b\x74\x1e\xc7\x82\x0c\x4e\x8e\x6b\x0e\x86\xfa\x7a\x53\xf9\xae\x94\x3a\x9f\x53\x6d\xc1\xd0\x79\x11\x3b\x66\x37\xd9\x0e\xbd\x72\xd4\xc9\x87\x3a\x9b\xd2\x84\x0c\xce\x10\x00\x13\xa2\x8b\x75\xf6\x21\xfd\x42\x29\x05\xf4\xc4\xb6\x1f\xf7\x2c\x34\x89\xb8\x3a\xa7\x18\x30\x2e\x3f\xa6\x4d\x5d\xfd\xe3\x4b\x29\xba\xc4\x4e\xcc\x94\xf6\x8a\xd5\x27\x94\xd6\x71\x76\xf4\x3e\xd4\xbe\x2e\x5e\xeb\x8c\xd9\x14\xa3\x15\x63\xc4\xb9\xf2\xeb\x3a\xbe\xd8\xfb\x98\xbe\x0d\xcd\x3d\x8e\x5f\x4c\x1b\xa5\xf6\x5b\xac\x3d\x0c\xd9\xdc\x14\xfb\x11\xa3\xb3\xeb\xb9\x4f\x46\x6c\x1f\xc7\xd0\xfa\xec\xa4\xcf\x2e\x0e\x99\x87\x3e\x7b\x19\x23\x23\x46\x57\x4a\x1b\xd2\xc9\xc5\xdf\xf7\x9c\xca\x0c\xd9\x50\x57\x3f\xc4\xd6\x2f\xa4\x9f\xcf\xa6\xb9\x74\x8a\xd5\x23\x96\x2f\xc7\x67\x23\x29\x34\x20\x63\x26\x71\x4c\x43\xfa\x26\x36\x47\x93\x6a\xb4\xce\x2b\xa5\x1a\xfb\xd0\xb3\x21\x13\x7b\x08\x8f\xa1\x46\x64\xc8\xb3\x90\xfc\xd0\x64\xe6\xe4\xac\x53\xef\x4d\xa6\x75\xfa\x70\x48\x5d\x37\xd9\x67\x3e\x59\xb1\x8e\xcb\x55\x96\xa3\xdf\x44\x7d\x42\xe9\x3c\x8d\x61\xc8\x06\x6d\x92\x37\xe5\x9b\x3a\xa7\x53\xe6\x54\x4c\x4a\xe1\x31\x44\xee\x26\xc6\x44\x68\xdc\x0d\xd5\x25\x95\x47\xea\x58\x3f\x8f\x31\xfb\xa0\xe5\xfb\xec\x60\xb4\x2e\x2e\xe0\xe0\x02\x02\xb1\x20\xc3\x65\xd4\x7c\x13\xce\x75\x1f\x23\x9b\xd2\xc7\xd4\x85\x93\xe7\xe2\x39\x24\xc5\xe8\x38\x84\x6e\xa8\x41\x8c\x9d\x54\x9b\xe2\x35\x44\x5e\xa8\x6f\x63\x53\x2a\x68\x49\x95\x19\xeb\x98\x42\xf7\x3e\x19\xe7\x41\x93\x92\x62\xc1\x88\xb9\x1f\x5a\x37\x8e\x3e\x46\xf6\x79\xb4\xc9\xba\x63\x2f\xa6\xbf\xf1\xb3\x18\x79\xa9\x6d\x32\xa4\x0e\xb1\xfd\x99\xc2\x77\x28\x38\x48\xe9\xd7\x1f\x47\xff\xc6\xd8\x6e\x88\xa0\x89\xe9\x33\x2a\x37\x44\x13\x9b\xb7\xa9\x76\xe3\x68\x36\x35\x77\x93\xe8\x63\x3b\xd6\xd7\xe8\xa1\xc6\x0a\x81\x0f\xca\x23\x06\x68\xa4\xe8\xe7\xe3\xe3\xd2\x2f\x45\x6e\x8a\x81\xf0\xf1\x49\x49\x9b\x36\x1e\x1c\x0f\x1f\x70\x4a\xd1\xc7\x05\xc6\xd6\x31\x6a\xb1\x46\xc2\xa5\x0f\xbd\xf6\x95\x4f\xbd\x4e\xd5\x2b\x56\xd7\x21\xf4\xa1\xf2\xeb\xf0\x4f\x31\x5c\x21\xba\x50\xd9\x75\x68\x36\x59\x6e\x08\xef\xd4\x3e\x4f\xe1\x1d\x5b\x6e\xdd\x34\x14\x38\xd0\xf2\x34\x6f\x5d\x7e\xeb\x8c\xaf\x75\xd2\x26\xc0\x98\x8b\xf6\x41\x8e\xcd\x07\xc1\x3b\xd5\xc6\x7a\x89\x69\xa1\x10\x10\xf0\x39\xf7\x54\x83\x19\x6b\xf0\x63\x40\x92\xcb\x09\x85\x1c\xe4\x79\x1b\x80\x58\xa7\xe8\x2b\xbf\x09\x79\xeb\x0c\xa6\x18\xba\xf3\x72\x2e\x43\xc0\x20\x7d\xe6\x1b\x7b\xb1\xfa\xc7\xd0\xa7\xe6\xc5\xb6\xc7\x3a\x6d\xec\x2a\xbb\x09\x43\x1f\xe2\xe1\x03\x86\x43\x80\x62\xa8\x1d\x52\x78\xc6\xf4\xa3\xcf\xa6\xa4\x38\xac\xd4\x39\xe9\xd2\x83\x2b\x93\xea\x38\x63\xc7\xc1\x3a\x0e\x79\xe8\x98\x8b\x1d\xbb\x31\x65\x42\x32\x53\xfd\x4d\x8a\xdc\x54\x9b\x42\xf3\xd6\xe9\x07\x9f\x0f\x4e\xa1\x89\x91\x45\xf3\x7d\xba\xfb\xca\x26\xd9\x64\x49\xfe\xb9\x94\xe0\xee\x5d\x79\xa1\x46\xf7\x4d\x44\x9f\x71\x88\xed\xc8\x90\xae\x9c\x9c\x75\x52\xaa\xe3\x09\x3d\x4b\xe1\xe7\x6a\x9b\x75\x75\xda\xb4\x83\xf3\x4d\x9a\x21\x3c\x86\xf2\xdb\x74\x1f\xf8\xca\xa5\x18\xcf\xa1\x6d\x3a\xd4\xe1\x0c\x91\x15\xa3\x47\x8a\x43\x1d\x32\x17\x43\x72\x38\xbb\xe4\xd3\x25\x64\xb0\x53\x75\x3b\xaf\x76\x4f\x71\x16\xa9\xb4\x2e\x3b\x4c\xf3\x7c\x3a\xae\x3b\xf7\x86\xd2\xc7\xc8\x8e\xa9\xdf\x26\xda\x31\x96\x76\x13\x69\x53\xe3\xd2\xa7\xff\x90\x36\x0a\xb5\x87\x4f\xb7\x58\xdb\xcc\x32\xe0\x94\x0d\x35\xd2\xba\xcf\x62\x8d\x4b\x4a\x8a\x9d\x78\x9b\x92\xb7\xa9\x14\xdb\xf1\xa9\x03\x84\x96\x4b\x7d\xf6\xa0\x53\x8c\x03\x3c\x0f\x63\x10\x92\x97\xc2\x63\x1d\xba\x4d\x00\xbd\xa1\xb2\x7e\x1c\x29\xb5\x6d\x7f\x12\x74\x5e\x37\x0d\x01\x6c\x0f\x32\x85\x9c\x9d\x8f\xc6\x55\x2e\x76\x5e\xa5\x8e\xf7\x18\x9d\x7e\x92\xda\x90\xa3\xfb\xff\xcb\x98\xe6\xae\x63\xe8\x37\x22\xd4\xdc\xfb\xd0\x39\x30\xcf\x62\xc1\xce\x26\xca\x50\x9d\x63\x74\x73\xd5\xc3\x27\xcf\xc5\x3f\x35\x3d\x08\x07\x92\x32\x69\xcf\xcb\x11\xae\x93\x36\xa1\x67\x6c\x1b\xac\x6b\x98\xcf\x03\x3c\x9e\x67\xe2\xea\xb5\x09\xc7\xb9\xc9\xf6\x72\xbd\x40\x85\x74\x19\xe2\xe8\x52\xf9\xa6\xe8\x1f\x92\xcd\xdd\xbb\xea\xcc\xd9\x2d\xee\x6f\xcc\xdc\x19\x62\x83\x62\x6d\x72\x4a\x99\x54\x19\x2e\xba\xd8\x3e\x4c\x4d\x3e\xbe\xae\xfe\xa0\x34\x21\x5d\x86\xfa\x03\x97\x9f\x76\xd1\xc5\xce\x97\x4d\xcc\x21\x2a\x2f\x34\x97\xb9\xbc\xa1\x76\x35\x99\xc9\xd0\x0e\xf2\x19\xd2\xd0\x64\x48\xd5\x2b\xa4\x83\xcb\x60\xa6\xf2\x8f\x9d\x38\x0f\xca\x79\x9d\x17\x40\x1b\x32\xb8\x7c\xed\x39\x64\x0c\x0d\x75\xc4\xb1\x06\x86\x8e\x09\x97\x8c\x94\xf1\x1d\x93\x86\x3a\xbe\x90\x5c\x9f\x9e\xb1\x3c\x62\x52\xca\x78\x7f\x10\xf3\x60\xa8\x53\x4c\x29\x1b\x9b\x36\x2d\x23\xd5\xd9\x6c\x3a\x0d\x95\x1d\xeb\x4c\xcf\x4b\x8f\x9f\x84\x71\x97\xea\x33\x36\xad\xcb\x10\x3b\xb6\x49\x5d\x06\xdb\x18\xce\x69\xc7\x18\xe7\x75\x1c\x90\xab\x8c\x0f\x40\xb8\x74\x88\x95\x1d\x32\xcc\xb1\xfc\x43\xe5\x53\xe9\xd6\x6d\xc3\x58\x67\x7d\xde\x93\x20\x15\xa4\x0e\xe5\x1d\x5b\xe6\xc7\x41\x37\x04\x40\xfb\xe6\xdc\xba\xce\x96\x03\xe1\xa9\xbc\x93\xd3\x6f\xfe\xe6\x6f\x4a\xfc\x97\xe8\x03\x24\x8f\x26\x1f\x10\x0d\x19\x79\x97\xbc\xd0\x1c\xe1\x6c\x1f\x47\x9f\x02\x5e\x63\xec\xd9\x3a\x4e\xcb\x67\xa7\x43\x7c\x42\xe3\x25\x86\x5f\xac\xdd\x71\xc9\x8d\x6d\x43\xac\x5b\x4c\x39\x5f\xbb\xc7\xfa\x3a\xdf\xb8\x4b\x1d\xb3\x3e\x1d\x53\xe6\xa6\xaf\xbf\x5d\xf6\x24\xd6\x0e\x87\xfa\x3b\xb6\x7e\x9b\x48\x31\xe3\x55\xa6\x10\xc6\x0e\x68\x17\x4f\x8e\x3e\x65\x12\xf8\x06\xdd\x3a\x29\x85\xcf\x26\x3b\x2b\xd5\x88\x9f\x97\xdc\x21\xe5\x53\x79\x0c\x95\x19\x72\x34\x29\x3c\x42\x4e\x29\xc4\x3b\xc6\xb0\xc5\xf2\x4a\x49\x29\xf3\x8a\xd5\xe7\xd7\x7e\xed\xd7\x24\xbe\xa6\xf7\x5c\xfe\x83\x4c\xe7\x20\x77\x28\x10\xe0\xfe\xfe\xb8\x53\xcc\x18\x5a\xc7\xd1\xc5\xea\x30\x24\x0d\x05\x35\xe7\x95\xce\x5b\x46\xac\xdf\x73\xe5\x3f\xa8\x7e\x09\x95\x1d\xe2\x0f\x1f\xc4\x18\x69\x93\x60\x0a\x2a\x94\xa7\xc8\x73\x73\x4f\xf3\xcd\xb3\x94\x84\xf9\xe0\xbf\xa9\xe5\x39\x5e\x2e\x7a\xaa\x27\xe5\xe1\x7b\xee\x92\xef\xa2\xa1\x6d\x38\xa4\x7d\xb0\x3e\x43\x79\x84\xca\xac\xd3\xee\xbe\xfc\x54\xd9\xa9\xed\x9f\xa2\x1f\xa7\x1b\x96\x95\xa2\xab\xab\x9e\xdc\x9c\x09\x8d\x9d\x94\x67\x12\x00\xd4\xf5\xeb\xd7\xe5\xf5\xeb\xd7\xe1\x8b\x5f\xfc\x22\x5b\xfe\x23\x1f\xf9\x88\x34\xcf\x5e\x7a\xe9\x25\xf9\xf2\xcb\x2f\x5b\x74\x2f\xbd\xf4\x92\xd4\x5a\x83\x10\xc2\x21\x7e\xb3\x09\xcb\x72\xc9\xd5\x5a\xb7\xd7\x42\x08\x30\x3a\x63\xfd\x3f\xf2\x91\x8f\x48\x00\x80\x2f\x7e\xf1\x8b\xca\xd4\x11\xd7\x15\xfc\x6d\x1e\xd3\xff\xe6\x3e\x75\x1c\xbb\xc6\x1b\xe6\xc7\xe9\xe5\x1a\xfb\x9c\x5d\xc3\x34\x5c\x72\xd1\x87\xf4\x0a\x8d\x7f\x9f\x2e\x3e\x9b\x87\x65\x00\x84\xdb\xd3\xc7\x3b\xe4\x9f\x86\xe8\xcf\xa5\x50\x7b\x71\xf9\x58\x9f\x21\xbc\x43\x7d\xe5\xea\x27\x5f\xbb\xa6\xd8\xb6\x90\x0f\xf5\xcd\x1b\x9f\x1c\x17\x46\xf0\xd1\x87\x74\xb6\xf2\x42\xd6\x6b\x1d\x03\xef\xba\xf6\x19\xfe\x75\x27\x9a\x4b\xef\x21\xfa\x6e\xba\x8c\xab\x7c\x2c\xcf\x14\x10\x15\xdb\x4f\x10\xc1\xd3\x27\x7b\x48\xdd\x87\xc8\x59\x87\x37\x24\xf2\x4c\x31\x42\x21\xe0\x95\x5a\x3e\xa9\xee\x2f\xbe\xf8\xa2\x74\x01\x10\x1f\x48\xc0\xf9\x5a\x6b\x29\x84\x50\x00\x10\x05\x68\x28\x10\x31\x49\x08\x11\x2d\xb3\x49\xed\x38\x65\x74\xf2\xf2\xa3\x60\x8c\x4b\x3f\xf7\x73\x3f\x27\xbf\xf6\xb5\xaf\x9d\xe7\xf8\xdd\xf4\x58\xf5\xc9\x81\x0d\xcb\x4a\x71\xf4\x3e\x50\xb7\x29\xb9\xeb\xd0\xa6\xf2\x34\x69\x13\xf5\x59\x47\x97\x4d\x95\x8d\x05\x5c\x9b\xf2\x53\xeb\x94\x49\x7d\x29\x70\x26\x6c\x15\x52\x10\x20\x40\xbf\xe3\x39\x64\x4c\xcb\xc7\x26\x9f\x13\x8e\x79\x23\xa1\x68\x8f\xf2\x03\xa6\x5c\x2c\x8a\xc4\xd7\x43\x3a\xc2\x05\x32\xd6\xe1\xe9\xa2\x8d\xb9\x37\xe9\xbc\xc0\x83\x2b\x0d\x01\xc5\x94\x8e\xd3\x7f\x5d\x9d\x36\x09\x62\xd7\xd2\xcf\x44\x1c\x5e\x7a\xe9\x25\x09\xc0\x47\x2f\x18\xe7\xde\x03\x20\x06\x60\xf8\xc0\x00\x2e\x87\xe9\x7d\x89\xd3\xc1\x05\x42\x48\xea\xb5\x85\x4f\x66\xc3\x43\xc5\xd2\x03\x84\xc1\xcd\x33\xcf\x3c\x23\xbf\xf3\x9d\xef\x9c\x17\x18\xe7\x52\x8a\x41\xc7\xf9\x00\x71\x76\xc2\xc7\xcf\xf7\x36\x1d\x63\xd7\x42\xfa\xbb\x64\x02\xf8\xe7\xd3\x50\x5b\x77\x5e\x80\xc3\xe7\x0b\x28\x5d\x2a\xf0\x71\xf9\x1f\x8e\x26\x56\xde\xa6\xda\x61\xc8\x4b\x97\xeb\xde\xc7\x27\xf6\xe5\x9b\xe3\x61\x95\x15\x0c\x21\xd7\x79\xe0\xc8\x0b\x0d\x4a\x5a\x36\x26\x6d\xa2\x11\x5d\x0e\x23\xe4\x48\x52\xdf\xcc\x42\x1d\xe1\x92\x13\x5b\x7e\x5d\xb4\x7b\x5e\x03\xdd\xc7\x6f\x13\x32\x63\xdf\x8c\x1e\x14\xc8\x1a\x22\xd7\xa2\x79\xfc\xf1\xc7\x25\x00\xc0\x6b\xaf\xbd\x66\x95\xc3\xe0\x84\x73\xc6\x24\x2f\x06\xfc\xf7\x68\x1c\x20\x27\x18\x61\x71\x81\xa3\x26\x4a\x63\xd1\x98\xba\x72\x3c\x03\x72\x54\x04\x1d\x4b\xe3\x89\xf0\x28\x5f\xbd\x22\x22\x36\x21\xc7\x14\xf3\x96\x1b\xba\x77\xd1\x6c\x82\x2f\xe6\x15\x72\x7a\x43\x9c\xa5\x4f\xe7\x28\xc7\x93\xf0\xcc\x47\x13\xca\x1b\x02\x3e\x62\x7d\xc4\x26\xc0\x9d\x8b\x86\x93\xed\x03\x98\x31\x63\xcb\x55\x2e\xa6\x4f\x52\xe6\x43\xcc\x18\xe6\xe8\x52\x80\xae\x14\x01\x82\x21\x42\x63\xf8\x85\x26\x1d\x97\x38\x19\xae\xc6\xe5\x74\xf1\x36\x84\x47\xbf\x94\x8e\x0d\xd1\xc5\xf2\x48\x41\xf4\xeb\x82\xad\xa1\xb2\x52\xe8\x53\xfa\xd9\x27\x13\xe7\xa5\xf2\xdb\xa4\x71\xa4\xcf\x2c\x9a\x2b\x57\xae\x48\x00\x80\xb7\xdf\x7e\xbb\x57\x0e\x47\x4f\x00\xd8\x28\x88\x33\x62\x62\x9e\xd3\xa5\x1a\x03\x6a\x98\x88\x89\x24\x65\x2d\x39\x38\x9f\x00\x02\x49\x68\x39\x79\xbd\x72\x8e\xa4\x02\xd1\x14\xe5\x00\x47\x2e\xf0\xd1\x5b\x5a\x72\x95\x21\x6d\x6c\xc9\xa1\x7f\x0d\x98\xf9\xdd\xdf\xfd\x5d\xf9\x37\x7f\xf3\x37\x43\xe7\x5c\x28\xf9\x9c\x12\x97\x1f\x23\x33\x55\x17\x97\xfd\x4d\x9d\xdb\x43\x64\xbb\xca\xa7\x38\xd4\x4d\xa6\x18\xbb\xbf\x4e\xfb\xc6\xe4\x87\x68\x52\x7d\xa4\xcf\x4f\xc7\xca\x4c\x49\xeb\xb4\x95\x8f\x9f\x17\x27\x08\x86\x30\x84\x38\x5d\x0a\x53\xfa\x54\x20\xb1\x8e\x03\x76\xe9\x1e\xe3\xa4\x53\x69\x36\x3d\xa9\xce\x6b\x92\x0e\x79\x23\xa0\xb4\x10\x41\x9f\xca\x73\x5d\xda\xa1\x20\x31\x36\x0d\xe6\xb1\xb3\xb3\x23\x4f\x4e\x4e\xda\xb2\x66\x0f\x0a\x75\xdc\xcd\xbd\x74\x39\x59\x70\x83\x17\x49\xf8\x48\x0f\xd8\xa0\xa0\x85\x2d\x4b\x1c\xb8\x55\x06\xeb\x8e\x79\xe0\x67\xcc\x5f\xc5\xf1\x30\x51\x19\x17\x40\x41\x3c\x14\x91\x4d\x81\x8d\x32\xed\x41\x79\xe2\x25\x25\x06\xdc\x58\xb2\xb1\x3c\xd7\x72\x57\xcc\x5e\x9a\x84\x74\x1e\x63\x33\x65\x8e\x87\xe6\x0d\x24\xf0\xf2\xe9\x12\x92\x3f\xd4\xce\xa7\x3e\x4f\xb5\x13\x21\x7b\xb7\x8e\x3f\x58\xd7\x16\x0f\xa1\x8f\xe1\x07\x01\x9e\x43\xed\x75\x0a\x10\x75\xe1\x0d\x6f\x7f\xd2\xaf\x8a\x62\xd0\x2f\xad\xb0\xf5\xe6\xe6\xe1\x45\xf3\x39\x5a\x5a\x8e\xca\xf3\x81\x2a\x9f\x5e\xdc\x5b\xbf\x8b\xaf\x8b\x3f\x96\x33\x74\x32\x87\x00\x13\x30\x74\x21\xd9\x29\x60\x70\xe8\x1b\x8d\x0b\xdc\xa6\xb6\xd1\x10\xe0\x1a\xab\x9f\xd1\xc7\xc7\x37\xb6\x7d\x92\xf5\x33\x91\x14\x9a\x30\xb8\x88\x78\x26\x9b\x7c\xd7\xd2\x90\xb9\x97\x0c\x4d\x4b\x8b\x41\x88\x10\xa2\xe3\xa1\x2d\x7e\x35\x90\x31\xd7\xda\xda\xf0\xe6\x92\xcb\x3d\x33\x89\xb6\x8d\x75\xaf\x01\x14\x12\xa0\x9a\x3c\x9b\x56\x58\xe5\x70\xf9\x36\x8f\x00\x12\x27\x2d\xb7\x2f\xa6\xa7\x13\x02\x49\x28\x8f\x2b\xd7\x26\x0c\x66\xb2\x2c\x93\x55\x55\xc5\x8c\xd9\x58\x9b\x4a\x75\xf4\x39\x03\x97\x0c\x7a\x1d\x2a\x1b\x72\xc2\x9b\x9c\xf3\xae\x72\x86\xef\x3a\xce\x34\x16\x98\xad\xdb\x06\xb1\xf6\xc2\x57\x36\xb5\xff\x53\xed\xf6\x10\xa0\x34\xb4\xff\x38\x3d\x69\xb9\x98\x36\x4d\xaa\x63\x0e\x7c\x03\xba\xfe\x02\x62\xee\x02\x1f\x9c\xc1\x71\x5d\x73\x1d\xe6\x92\x49\x79\x18\x1a\xee\x19\x6d\x34\x17\x10\xe2\x74\x0b\x25\x1f\xad\xcb\x50\x72\x65\x7c\x46\xd5\x25\x23\xc4\xc7\x6b\xa8\x1d\x29\x66\xe0\xd0\x7a\xb8\xc0\x5e\x8a\xdc\x58\x43\xe5\x4b\x46\x57\x1f\x2f\xc5\xd0\xb9\xfa\x25\xb9\x2d\xb9\x4f\x8e\x4d\xf2\xec\xf7\xa8\x41\x43\x1f\x9c\x70\x63\x9f\x9b\x8b\xd2\x05\x5a\x00\xcd\x4d\x04\x5a\xda\xbf\xb9\x12\x72\xba\xcc\xf2\x71\x25\xe5\xa8\x02\x39\x2e\x65\x31\x59\xc9\x62\xba\xca\x8a\xa2\x12\x45\xa6\x44\x2e\xb5\x90\x52\x89\x5c\x6a\xc8\x33\x05\xb9\xd4\x22\x17\x20\xa4\xd4\x20\x85\xae\xef\xa5\xae\xc1\x8e\x12\xa0\xb4\x00\xa5\x85\x2e\xb5\x00\xa5\x84\x56\x4a\x40\xa9\x04\x94\x20\x40\x55\xa0\x55\x99\xe9\xe5\x22\x57\xcb\xb3\x91\x9a\x2f\xf2\x6a\xb9\xca\x74\xb9\xca\xb4\x5a\x49\x5d\x2e\x33\x55\x2e\x73\x55\x9e\x8d\x94\x52\x82\x1d\x67\x80\xae\x15\x93\x47\x9f\x63\xf0\xe1\x9b\x7f\x26\xe2\x62\x8d\x77\x0f\x68\xb1\xe8\x7c\xfd\x0e\xf6\x58\x74\x39\x25\x20\xf9\xb1\x4e\x91\xb3\xd7\x3e\xdb\xe6\x92\x8b\xe7\x04\x47\xe7\x9a\x33\x54\x1f\x57\xf2\x95\xe7\x9e\x53\x1d\x86\x00\x0c\x9f\x0e\xbe\xf2\x2e\xdf\x14\x6a\x47\xce\x0e\xd2\x3e\xa0\x36\xd3\x65\x87\x7c\xf5\x71\x81\x19\x4e\xa7\x18\x7e\x54\x5f\xda\x46\x9c\xfe\x9c\xfc\x58\xff\x16\x33\xae\x7c\x7e\xbc\x37\x3e\xb8\x88\x0b\x40\xbf\x33\xb8\xc2\x29\xf7\x94\x17\x4e\x1c\xa8\xa0\x7c\xb8\x32\x2e\x7e\x34\x85\x40\x0b\xc7\x77\x48\xc7\xc7\xe6\x0f\xe1\x85\x9f\xa5\x20\xd3\x21\x06\x27\x25\x0d\x35\x24\x29\xe5\xd7\x05\x37\x21\x3d\xa2\xfb\xef\x53\x9f\xfa\x94\xfc\xf3\x3f\xff\x73\x15\x38\x0b\xa5\x1d\x9b\xdc\xf2\x0d\xf7\x17\xd1\x71\xf7\x2d\x6d\x13\xa1\xc1\xf7\x20\x40\xc8\xa2\x94\x72\x7b\x29\x8b\x9d\x65\x36\x99\xae\xb2\xe2\xc2\x3c\xdb\xdd\x59\x66\xbb\xe3\x95\x9c\x8e\x2a\xb1\x93\x29\x31\xc9\xb4\x98\x66\x1a\xb6\x33\x25\x26\x99\x12\x3b\x52\xc3\x54\x6a\x31\xcd\x94\x98\x4a\x2d\x26\x42\x43\x21\x00\x72\x01\x20\x9b\xc8\x8c\x04\x10\x52\x00\x48\x51\xeb\x90\x0b\x93\x6f\x47\x6e\x00\xa0\x06\x2f\x00\x60\xa2\x2a\x4a\x37\xff\x00\xb4\x02\x01\xa5\x06\x58\x6a\x01\xa5\x02\x58\x6a\xa1\xe7\x4a\xe8\xb9\x12\xb0\x54\x42\xcf\x94\x80\xb9\x92\x7a\x56\xd6\xff\xee\xaf\x32\x7d\xb2\xcc\xd5\xf1\x59\xae\x4e\x66\xe3\xea\xf8\x74\xa4\xe6\x8b\x5c\x2d\xe7\x23\xb5\x3c\x1d\x55\xcb\xf9\x48\x95\xab\x5c\xab\x66\x99\xa7\xe7\x7c\x51\x3e\x80\x6d\x94\x7b\x40\x87\x89\xb0\x18\xf0\xa3\xe8\xd2\x11\xa2\x6f\xf3\x3f\xfd\xe9\x4f\xab\x17\x5f\x7c\x51\x7e\xfa\xd3\x9f\x56\x7f\xf2\x27\x7f\x22\x3f\xfb\xd9\xcf\xb6\x7f\xb9\x31\x81\x64\xb8\x6c\x58\x8c\x63\xe2\x52\xec\x38\xe6\xf8\xba\xe6\x83\x4b\x17\x5f\x7d\x38\x1b\xc5\xd9\x2c\x97\x1d\x4b\xb5\xf7\x21\x3f\xc4\xd1\xd1\xba\xc4\xf8\x03\x9f\x7e\xae\xfc\x54\x9b\x16\xe3\x8b\x5d\xe5\x7c\xed\xca\xf5\x9f\x6f\x8c\x71\x6d\xea\xa2\x8f\xed\xc7\x4d\x8e\x6b\x49\x2d\xaf\xaf\xf1\x53\x9d\x5e\x6c\xa7\xa7\x00\x0b\x4c\x63\x52\x8a\x33\xdf\xb4\x13\x5c\x17\x18\x6c\x1a\xdc\xac\x9b\xd6\xd5\xdf\xd5\xe7\xe0\xc8\x1f\x3a\x9e\x36\x61\xa4\x9d\x63\xe1\x93\x9f\xfc\xa4\x04\x00\xf8\xdc\xe7\x3e\xa7\x00\xc2\xcb\x40\xcc\x66\x58\xbc\x7f\xc4\x02\x1a\xcd\x33\x8b\xae\xd1\xa5\x03\x29\x1a\x64\xa6\x21\x97\x4a\xc8\x4c\x03\x8c\x2a\x99\x4f\x97\xb2\xd8\xae\x81\xc9\x74\x6b\x29\x77\xa6\xab\x6c\xb7\x28\xe5\x6e\x51\x89\xbd\x51\x25\x2e\x8d\x2a\xb9\x37\xaa\xc4\x5e\xae\xc4\x5e\xae\xc4\x4e\x0d\x48\x60\x22\x00\x72\xa1\x45\x21\x74\x03\x4a\x40\x14\x0d\x18\xc9\xa1\x89\xa0\x60\xd9\x9e\xe5\x22\xda\xce\x38\x85\xfa\xb1\x06\x03\xdd\x75\x69\x80\x4e\xf3\xb7\xac\x81\x8e\x2e\xb5\x80\xa5\x16\x7a\xa9\x04\xcc\x95\x80\x79\x25\xf4\x5c\x49\x3d\xab\x24\x9c\x94\x52\x9d\x94\x52\x1f\x2f\x33\x7d\x77\x95\xab\xa3\x79\xae\x0f\x66\xa3\xea\xe8\x64\x5c\x1d\x9f\x8d\xd4\xfc\x64\x5c\xce\xcf\x46\x6a\x59\x4a\x5d\x2a\x01\x4a\x49\xad\x2a\xa1\x95\x92\x2d\x78\xa1\x20\xa6\x07\x7a\xc8\x73\xae\x6e\x3d\x90\x43\xd3\xcb\x2f\xbf\xac\xfe\xf0\x0f\xff\x50\xfe\xe5\x5f\xfe\xa5\xfa\xe4\x27\x3f\x29\xcd\x38\x82\x34\x67\x6d\xf2\xa9\x9c\x10\x8f\xa1\x2f\x03\x3e\xe7\xb7\x8e\x9d\x4a\x29\xeb\xb3\xcf\xae\xb9\xed\xa2\xf7\xe9\xb4\x6e\xf2\xb5\x71\xa8\xde\x2e\x10\x31\x54\x1e\x47\x17\x02\xa2\xb1\xd7\xeb\xe8\xb2\x6e\x59\xaf\x7e\x82\x3c\xf0\x21\x33\x17\x8a\x03\x54\xc6\x67\xd0\x7c\x28\x2e\x76\x92\xac\x33\x19\x5c\x7a\x71\xbc\x5d\xba\x87\x06\x2b\xc7\xcf\x97\x97\x0a\x14\x63\x26\x8c\x8b\x2f\x97\x42\x48\x3d\x86\x3e\x45\x7e\x6c\x99\x58\x1d\x38\xbd\x53\x26\xaf\x33\x71\x60\x85\xf9\x0c\xb8\x05\x25\xf8\x2f\xda\x63\x62\x00\x8c\xa4\xd1\x13\x00\x90\x42\x83\xcc\x6a\x70\x92\xe7\x95\x90\xa3\x4a\xe6\x5b\xa5\x2c\xa6\x8b\x6c\xb2\xb3\xcc\x76\x76\x16\xd9\xe5\xad\x95\xbc\x3c\xae\xe4\xe5\xf1\x4a\x5e\x29\x2a\xb1\x9f\x57\x72\x37\x57\x62\x27\x57\x75\xc4\x44\x2a\x31\x91\x00\x93\x06\x9c\x18\x80\x92\x43\x1d\x3d\xe9\xe9\xd6\x5d\x77\x10\x85\x8b\x1b\x69\x4f\x3e\x00\x80\xd0\x00\x5a\xd4\x34\x1a\x00\x84\xd6\x00\xae\xaf\x8b\x1a\x66\x86\xa7\xee\x4b\x50\x68\xc7\x8b\x01\x39\x1d\xb0\x10\xa0\x34\x74\x51\x9b\x26\x62\xb3\xac\xc1\x8c\x3e\x59\x65\xea\xa4\x94\xfa\x68\x91\xa9\xc3\x55\xae\xdf\x59\x65\xfa\x68\x91\xa9\xa3\x59\xa1\x0e\x4f\x8a\xea\xf0\x64\x5c\xcd\x4e\xc6\xd5\x7c\x91\xab\xb2\x94\xba\x2c\x33\xa5\xaa\x66\x29\xcb\x15\x9d\xc1\xf9\xe4\x9a\x6e\x00\xb6\x80\x0c\x17\x91\x31\x0f\x7f\xeb\xb7\x7e\x4b\x02\x00\xfc\xdd\xdf\xfd\xdd\x90\xf1\x0b\xd0\x1f\xf7\x38\x0d\x75\x36\xbe\x17\x82\xd8\x79\xec\x92\x89\xf5\xa2\x72\xe8\x33\x5f\x9d\x7d\x3a\x72\xb2\xb8\xfc\x18\x50\x14\xa3\x47\x48\x9f\x54\xdb\x1b\xb2\xf7\x26\x0d\x01\x08\x43\x7c\xea\x10\xfd\x21\x70\x8d\xe9\x87\xe8\x4f\xf3\xc1\x05\x5c\x5c\xc2\x29\x73\x9c\x86\x3a\x2d\xee\x2f\xc7\x2f\xa5\x41\x5d\xfa\xfb\xea\xe3\xd2\xd3\xc7\xdf\x55\x36\x34\x50\x42\x3a\x0c\x49\x31\x86\x2e\xc5\x08\xa5\x82\x31\xd7\x64\x5e\x07\x44\x85\x74\xa4\xf2\x93\x0c\xfb\xc7\x3e\xf6\x31\x99\xe7\x39\x5c\xbf\x7e\x1d\x3e\xfd\xe9\x4f\x2b\x47\x64\x45\x32\xd7\xce\xbf\x08\xdc\xe0\xeb\x1c\x00\x64\x0d\x4e\x44\x5e\x54\xb2\xd8\x5a\x35\x11\x94\xa5\xdc\xdd\x5a\x65\x7b\x5b\x2b\xb9\x37\x2e\xe5\xe5\x49\x29\x1f\x1a\x97\xf2\xf2\xb8\x94\xfb\x45\x25\xf6\xf2\x4a\xec\x65\x5a\x4c\xa5\x82\xa9\xd0\x62\x22\xa0\x06\x27\x00\x4d\xd4\x04\x7a\xe0\xc9\x7b\x1c\xb6\x6e\x00\x46\x0b\x38\xf0\x33\x74\x1f\x73\x8d\xcb\x81\xeb\x13\x65\x43\x8f\x2f\x0c\xe2\xc1\x34\x84\x31\x95\x89\x92\x01\x39\x0a\xa0\x01\x34\xed\x52\x94\x9e\x37\x91\x9a\x59\x25\xf5\x6c\x95\xa9\xe3\x65\xa6\x0f\x17\xb9\x3a\x38\x1b\xa9\xb7\xe7\x79\x75\x30\x2f\xd4\x9d\xd3\x42\x1d\xcd\x46\xd5\xf1\xac\xa8\x66\xf3\x5c\x2d\x17\xb9\x5e\xae\x32\xa5\x56\x99\x6e\x23\x41\xe8\x1f\x04\xc0\x0d\x5e\x56\x72\x6d\x1e\xb6\xd2\x72\xb9\x84\xcf\x7e\xf6\xb3\xea\x63\x1f\xfb\x98\x04\x00\xf8\x87\x7f\xf8\x87\x10\xe0\xf6\xd9\x4e\x60\xe8\x81\xd0\x92\xf6\x0b\xd2\x86\xe6\x7d\xaa\xed\xa7\xcf\x5c\xfe\x26\x86\x8e\xa3\xf5\xd9\xbe\x98\x36\x0c\xd9\x2c\x9f\xbe\x1c\xbd\x4b\x0f\x73\x1f\xb2\x8f\xb1\x3e\xcf\xd5\x3e\x58\xc7\x50\xfd\x86\x80\x9a\x58\xfb\x1c\xe3\x87\x62\xc7\x8c\xa5\x0f\xdd\xe3\x62\x92\x6b\xb0\xf8\x1a\xa8\xc7\x9c\x3c\xf3\x4d\x0a\xcc\x3f\xc5\x41\xb9\x64\x50\xbd\x52\x1a\x3a\xe4\x64\x7d\x9d\x11\xaa\x4b\xaa\x11\xf1\xb5\x23\x95\x13\xdb\x8e\x9c\x8c\x50\x7e\x2c\xbf\x50\xf9\x10\xdf\x18\xba\x54\x5d\xda\xf4\x4b\xbf\xf4\x4b\xf2\x5f\xff\xf5\x5f\x15\x80\xfd\x9b\x3d\xf4\x0c\x13\xc7\x97\x3e\x74\x59\xa7\xbd\xc6\x7b\x4f\xcc\xb5\x50\x20\x8b\x4a\xe6\x45\x25\xf2\x71\x29\x27\xdb\xcb\x6c\xba\xbd\xcc\x76\xb6\x17\xd9\xfe\x74\x25\x2f\x4f\x57\xf2\xea\xd6\x32\x7b\x78\x5c\xca\xcb\x45\xbd\xcc\xb3\x9b\x2b\xb1\x2b\x15\xec\x48\x10\x53\xa1\xa1\xdd\x77\xd2\x80\x13\x09\xd0\x07\x1a\x26\xcf\x05\x42\x30\x4d\x9d\xaf\x41\x34\xe1\x0f\x2d\xf8\xf2\x1a\xdd\x09\x12\x2d\xc1\xc9\x00\x96\x0e\x08\xd5\x54\x5d\x14\xc6\x51\x48\xf0\x59\x3d\x6c\xe3\x90\xad\x11\xf8\x61\xc0\x4d\x03\x2c\xb4\x01\x35\x73\x25\x60\xa6\x84\x3e\xa9\xea\xe8\xcc\xd1\xa2\x06\x33\x87\xf3\x51\x0d\x68\xce\x46\xd5\xc1\xe9\xb8\x3a\x38\x2d\xaa\xe3\xd9\x48\x9d\xcc\x47\x6a\xb9\xc8\xd5\x72\x9e\xab\xa5\x12\xa0\x34\x68\x10\x42\x94\x00\xd6\x9e\x18\xc5\x01\x17\xa4\x03\xfe\x6b\x5d\xe3\xf1\xf6\xf2\xcb\x2f\xab\x5f\xf9\x95\x5f\x91\x5f\xf8\xc2\x17\x62\x9c\x4a\xc8\x81\x82\x87\x36\xc5\x01\xfa\xca\xc5\x3a\xb1\x90\x6d\x59\xd7\xd6\x86\xea\x80\xeb\xe1\x03\x84\x1c\x6d\x48\xa7\x58\xd0\x18\xd2\xd9\xc7\x3b\x66\x0c\x84\xc6\x8c\x0f\x70\xba\xfa\x38\x94\x17\xd3\x7f\x29\xfe\x35\xd4\x8e\x6c\x7d\x5d\x9f\x43\xd3\x6b\x9a\x42\xc8\xd5\x55\x66\x28\x60\x88\x01\x2d\xc0\xe4\xc7\x38\xe0\x4d\x4e\xa0\x21\x4e\x35\x76\x22\xc7\x18\x20\x1f\x6d\x2c\x28\x08\xc9\x58\x17\xc4\x70\xcf\x52\x8c\x5c\xac\x41\xb6\x78\x9a\x83\xc5\x98\xa8\x8a\xef\xde\x02\x29\x64\x09\x48\xa2\xe7\x32\x53\x90\x8f\x4b\x99\x4f\x56\xb2\x18\x97\x72\xb2\xb5\x92\x3b\xdb\xcb\x7c\x77\x7b\x29\xf7\xa7\xcb\xec\xf2\xce\x32\x7b\x78\x6b\x29\xaf\x4d\xca\xec\xf2\xa8\x14\x97\x47\x4a\xec\x67\x5a\xec\x0a\x0d\x3b\x35\x40\x11\x39\xd4\x91\x99\xbe\xaf\xaf\x37\xe1\x36\x40\xa3\xb9\x6e\x9e\xc5\x44\x4c\x5a\x1e\x66\x3f\x4e\x03\x34\x80\x94\x05\x30\x4b\x40\x1a\x31\x10\x48\x4e\x0b\x7b\xea\x6b\xf3\x09\xb5\xb0\xd1\x85\x37\x42\x63\x65\xd4\x37\x3d\xe0\x02\x1e\xe0\xe3\x62\xe5\xc9\x47\x7b\x6b\x0c\xa0\x99\x37\x1b\x82\x4f\x2a\xa1\x8f\x96\xb9\x3e\x68\xa2\x32\x6f\xce\x8a\xea\xed\x59\xa1\xee\x9c\x8e\xaa\x83\xfb\x93\xf2\xf0\x2c\x57\xb3\x79\xae\xe6\xf3\x91\x9a\xcf\xeb\xfd\x33\x0a\x04\x94\x1d\x3f\x0b\xa4\x58\xc0\x06\xe5\x73\x9b\x7d\x7b\xe3\x96\xf9\x4a\x29\xd5\xc6\xc4\xd8\xc9\x90\x63\x48\x01\x3c\xae\xf2\xa1\x72\xb1\x20\xc2\xa7\x37\x30\x34\x2e\xba\x18\xf9\x94\x5f\x0a\x40\xf2\xe9\x19\xdb\x3e\x29\xa0\x91\x96\xa1\x3a\x70\x29\xd4\xe6\x94\x47\xaa\xaf\xa5\x72\x7c\xb6\x9d\xf6\xb5\xab\xac\x2b\xf5\x36\xe7\xf6\x08\x02\x0c\xa8\x30\xaa\x48\x6c\x4a\x45\x71\xa1\x41\xbc\x8e\x73\xdd\x44\x3d\x7c\x79\xa1\x7a\xb8\x68\x7c\x13\x20\x16\x71\x0f\xd1\x7f\x1d\xda\x90\xae\x9b\x48\x16\x3f\xee\x6c\x0d\x0a\x56\x68\x54\x05\x7f\xfd\xd3\x5c\x4b\x72\x8d\xc1\x4b\x2e\x9a\xaf\x6d\xcc\xa7\xc4\xe3\x52\x4e\xb6\x57\xd9\xee\x85\x79\xb6\xbf\x3b\xcf\x2f\x6f\x2f\xe5\xe5\xe9\x32\xbb\xb2\xb5\x92\x57\xc7\xa5\xbc\x36\xaa\xc4\xe5\x5c\x89\x7d\xa9\xc5\x9e\xa8\x37\xcc\x16\xcd\x17\x3b\xde\x93\x67\x31\x4c\x70\x25\xdd\x78\x69\x81\xee\x05\x41\x0d\x2d\x30\xf0\x6c\x43\x71\xf1\xc3\x3c\xed\xc8\x54\x2d\xc0\x6a\x47\x46\x5f\x1a\x95\xa1\xb0\xa2\x03\x52\x0d\x88\xd1\x5d\xd4\xa6\x05\x42\x58\x3e\x88\x1e\xa2\x69\x41\x19\xd8\x7b\x6f\x30\x30\xc2\x80\xaf\xc5\x65\xc2\xec\xa5\xd1\xaa\x89\xcc\x1c\x57\x52\x1f\xad\xa4\x3e\x58\xe6\xea\xce\x3c\x57\x77\x4e\x8b\xea\x8d\x59\x51\x1d\xdc\x1f\x57\x77\xee\x6d\x95\x87\xa7\x45\x75\x32\xcf\xf5\x6c\x91\xd7\x5f\x3a\x95\x99\xa6\x20\xc6\x02\x34\x24\x1a\x83\xc7\x65\x7b\x4d\x81\x8c\xd6\x1a\x6e\xdf\xbe\x0d\x9f\xff\xfc\xe7\x7d\xb6\x24\xd5\x41\xfb\xf2\x63\x40\x42\x6c\xf2\xbd\x6c\xf8\xae\x43\xfc\x5c\xf4\x9b\x02\x34\x29\x20\x31\x54\xc7\x54\xde\xeb\x82\xad\xf3\xb0\xd9\x1c\x7d\xac\xac\x14\xbf\x66\xae\x69\xf2\xca\xa1\x7b\x5c\x5c\x02\x5c\x0c\x43\x0e\x16\xa0\xcf\xc7\xd7\x10\x3e\x7e\xae\x32\xe0\x79\xe6\x03\x21\x43\xf8\xa7\xa4\x21\x13\x65\x93\x29\x16\xbd\x52\x5d\x36\x3d\x11\x7c\x74\xa9\xe0\x27\x5a\xc7\x50\x64\x85\x82\x15\xf2\x29\xb2\xec\x45\x56\x34\xe4\xb9\x12\x72\x5c\xca\xc9\xb8\x14\xc5\xb8\x94\x3b\x7b\x67\xa3\xbd\x4b\x67\xf9\xe5\xdd\x79\x76\x75\x67\x91\x5d\x9f\x2e\xb3\x47\x8a\x4a\x3e\x32\xaa\xc4\xe5\x4c\xc3\xbe\xd4\x62\x57\x68\x31\x01\x00\x29\xb4\x06\x2d\xf8\xe5\x17\xbc\x87\xc3\x5a\xde\x31\xd1\x0f\x00\x10\x78\x5f\x88\xb5\x31\x16\x3b\xe4\xc6\x51\xa3\x25\x20\x9a\x3a\xde\x35\x1a\x68\x41\x01\xf0\x65\x4c\x54\xc5\x12\x8f\x81\x02\xb8\x97\x91\x04\x66\x8e\x83\x32\x8e\x82\x6d\x94\xc5\xa5\x3c\x27\x83\xcb\x27\x00\xad\xbd\xef\x3d\xe0\x19\x68\x68\xbf\x70\x9a\x55\x52\x1f\x94\x52\x1f\x2e\x33\x7d\x7b\x3e\xaa\x6e\x9f\x14\xea\x47\xc7\x93\xf2\xcd\x7b\x5b\xe5\x9d\x7b\x93\xf2\xe8\x74\x5c\x9d\x2c\x33\x3d\x5f\xe4\x6a\x3e\xcf\xd5\x12\x00\x14\x34\x5f\x4a\x41\x37\x46\x2d\x40\xe3\xf9\x04\xbb\x17\x89\xc1\x51\x98\x9b\x37\x6f\xca\x57\x5f\x7d\xd5\x65\xb3\x00\xd2\xe7\xed\xd0\x79\x19\x1b\x35\xd8\x34\x58\x49\xd1\x37\xa6\x4d\xce\xbb\x9c\xaf\x9d\xd7\x79\xc1\x74\xe9\x31\x14\xb0\xd1\x32\x2e\x1d\x01\xe2\xfa\x25\x75\x5c\xc5\xb4\xa7\x45\x23\xc0\x6e\x5c\x27\x61\xa4\xa0\x18\xfa\x41\x8e\x08\xe9\x87\x75\xa4\xfc\x5d\x72\x80\x3c\x8f\xe9\x90\xd4\x49\x38\x14\xa8\xac\x33\xb0\xb8\xf2\xa9\xfd\x46\xe5\xb8\x64\x85\xe4\xb8\xda\x2b\x24\x3f\x05\x60\x79\xe9\xb9\x5f\x51\x36\x7a\xd1\x53\x64\x39\xb0\x02\xd0\x46\x57\xa4\xd6\x3a\xcf\xb4\x90\xa3\x4a\x14\x45\x25\x8b\x51\x25\xa6\x3b\x8b\x6c\xe7\xf2\x69\xb1\x7f\xe9\x2c\xbf\x7a\xf1\x2c\xbf\x3e\x5d\x65\x8f\x8d\x57\xe2\x46\x51\xc9\x6b\x99\x86\x6b\x52\x89\x5d\x01\xa2\x00\xc0\x0b\x2a\x75\x12\x64\xed\x03\xef\x07\xc1\xb1\x0a\x13\x23\xe8\xc5\x2e\x5a\xe7\x6f\x3f\xe1\x97\x59\x78\xde\x56\x6a\x22\x26\x5c\x08\xc6\xe2\x89\x40\x07\x30\xf9\x58\x02\x17\xd9\xc0\xca\xf9\x96\x76\x00\x3f\xb3\xa2\x26\x8e\x72\x9e\x65\xa4\x1e\x40\x0a\x95\xc1\xfa\x35\xca\x98\x3d\x36\x28\x32\x53\x2a\xa1\x4f\x2a\xa1\x0f\x56\x99\x7e\x73\x99\xa9\xdb\x67\x85\xba\x75\x5a\x54\x3f\xba\x37\x29\xdf\x3c\xdc\x2e\x0f\xee\xec\x2c\x0f\x97\x99\x9a\xad\x6a\x20\xb3\x34\x87\xf0\x01\x58\x5f\x2f\xd1\x6b\x0c\x56\xac\xf1\x4c\x97\x97\xcc\x17\x4a\x0f\x3f\xfc\xb0\x7c\xeb\xad\xb7\x86\x38\x73\x57\x4a\x7d\x43\x1e\xc2\x23\xc6\x2e\xf9\x78\x40\x04\x4d\xac\x7e\xe7\xd1\x66\x43\xea\x39\xd4\x56\x87\x74\xf0\xd1\x6d\x02\x30\xc5\xf0\xf6\xe9\xc9\xe5\xc5\xea\x0e\x00\xfd\xcf\xa1\x81\x10\xe0\xa4\x48\xbe\x0b\xec\xe0\x7b\x2e\xb9\x3a\x2f\xc6\x31\xc6\xa2\xb2\x46\xa7\x60\xce\x00\x00\x20\x00\x49\x44\x41\x54\x54\x5e\xeb\x0c\x6a\xae\x4d\x42\xfa\x84\x78\x73\x20\x82\xeb\x40\xee\x79\x6a\xbb\xfa\xf4\x19\xd2\x27\x9c\xae\x43\xda\xc0\xe4\x01\x57\xfe\xc2\x85\x0b\xf2\xb9\xe7\x9e\x83\xf7\xbe\xf7\xbd\x2c\x50\xc1\xc9\xf1\xa5\x0f\xb7\x57\x25\x17\x0a\x64\xae\x44\x91\x2b\x51\x6c\x2f\xb3\xe9\x95\x93\xd1\xfe\xd5\x93\xe2\xda\xc5\x79\x7e\x6d\x7b\x91\x3d\x3e\x29\xe5\x8d\xa2\x12\x8f\xe5\x95\x7c\x2c\x53\xb0\x27\x00\x26\xc6\x3b\x0b\xb0\xf7\x90\x38\xf6\x5a\x30\x91\x0b\x8d\x1c\x2d\x8a\x64\x90\x48\x81\x59\x76\xe9\xca\xd8\x10\xa7\xdb\x73\x82\xc0\x84\x69\x1b\xc4\xc3\x06\x44\x88\xb7\xe1\xd5\xe6\xd9\xf7\xad\x8a\x08\x5e\x59\x75\xf7\x2c\x6d\xc5\x04\x3b\xec\xfa\x85\x31\x07\x6d\x27\x1a\x09\x72\x15\xee\xf3\x0e\x2f\xc9\xf5\x64\x82\x5e\x2a\xa1\x4f\x4a\x09\x07\xa5\xd4\xb7\x17\xb9\xba\x75\x36\xaa\x5e\x3f\xda\xaa\xfe\xeb\xed\x9d\xe5\xed\xdb\xbb\xcb\xc3\xd3\x71\x75\x52\x66\x6a\x5e\x4a\xbd\xac\x1c\x20\x86\xfc\x03\xe6\xaf\xf5\x1b\x50\x14\xc8\x5c\xb8\x70\x41\xde\xbf\x7f\x3f\xc5\xc1\xb9\xec\x95\xef\x45\xc4\xc5\x2f\xc6\x79\x73\x7c\x62\x81\x08\x2e\x17\xf2\x3d\x31\xfa\xb9\x78\xd3\x32\x38\x6d\xca\x76\xc6\xc8\x0f\xc9\x1b\x02\xe0\x62\x6c\x39\xe7\x4f\x7c\xbc\x42\xbc\x39\x9d\x86\xf2\x66\x13\x06\x2e\x98\x71\x68\xd0\x50\xc6\xa1\xeb\x4d\x0c\xf4\x10\x62\x73\x25\xda\xd9\xf8\x7a\x28\xd0\xe0\x64\xc4\xe8\xe7\xcb\xf3\x81\x27\xd7\x80\x8d\x1d\x94\xae\x3a\x6d\x32\x2f\x06\xfc\x85\xca\x39\x69\xf3\x3c\x97\x65\x59\xb6\x74\x78\x29\xc8\xf5\x25\x10\xb9\xee\x01\x15\xad\xb5\x6c\x36\xc5\x4a\x59\x9f\x7f\x52\x5c\x98\xe7\x93\xeb\x47\xe3\xcb\x0f\xdf\x2f\x1e\xbb\x74\x36\x7a\xcf\x74\x99\x3d\x39\x2e\xc5\xcd\xbc\x12\x8f\x64\x4a\x5c\x96\x00\x3b\x02\x03\x0c\x14\x55\x20\x5f\xf9\x22\xd0\x00\x6e\xaf\x0b\x9c\xe3\x74\x87\x13\x68\x64\x85\x73\xb8\x3d\x80\x64\x71\x6b\x36\xd5\xb6\x40\x04\x45\x48\x22\xf8\x77\xd1\x0c\x0a\x66\xf8\xe4\x05\x20\x9e\x4d\x37\x3e\x9e\x16\x1d\xb7\x2c\x04\xe1\xc2\xbe\xbd\x45\xb1\xc2\x31\x50\x6a\x96\x96\x8e\x56\x99\xbe\xb5\xcc\xd5\xab\xb3\x51\xf5\xfd\xfb\xe3\xea\x07\x6f\xef\xac\x5e\xbf\x7d\x71\xf1\xe6\xc1\xf6\xea\x78\x99\xa9\xa5\xae\xcf\xa4\x59\xba\x40\x0c\xf3\xe9\x35\xfe\x0b\xdc\x7d\xc4\x8f\x41\x0e\x9d\x9b\xb1\x3c\x36\x51\x6e\x08\x5d\x48\xff\x4d\xf3\x4c\xf5\x0b\x31\x69\xc8\x0b\x9d\xc9\x87\x35\xf5\x39\xcf\xb1\xb0\x4e\x5b\x05\xcb\xc6\xbd\x66\x6c\x48\xd8\x86\x79\x0f\x19\x50\x43\x74\x1c\x3a\xb0\xd6\xe1\x3d\x74\x40\xb9\x68\xd7\x31\x5c\x31\x60\x2b\xf6\x2d\x83\xbe\xd1\x44\xeb\xf4\xa7\x7f\xfa\xa7\xf2\x33\x9f\xf9\x0c\x05\x2e\xb2\xf9\xa1\x3c\xfa\xdb\x3d\x00\x2e\xa0\x52\xef\x5d\x31\xa7\xc5\xe6\x12\x44\x7e\x61\x9e\x4f\x9e\x7c\x67\xeb\xea\xb5\xe3\xe2\xc9\xdd\x79\xfe\xf4\x74\x29\x9f\x2a\x2a\xf9\x44\x5e\x89\x6b\x52\x8b\x3d\xd1\x1d\xe6\xd6\x4b\x3e\xf0\x10\xe5\x78\x81\x82\x1d\x97\x2f\xc7\x48\xc7\xed\xf0\x87\xf0\x8e\x5e\xc2\x19\x90\x3a\x99\x38\x56\xe3\xa0\x69\xc0\x9f\x91\xc9\xca\xc7\x34\x64\xf9\xac\xf7\x39\x36\xaa\x9c\x2f\xfa\xc5\x6d\x48\xc6\xca\x69\xa4\x8c\xf9\xba\x8b\xaf\x49\x57\x1f\x25\xf5\x71\x25\xf5\x9d\x65\xa6\x5e\x9f\xe7\xea\x95\xd3\x42\xfd\xe7\xe1\xf6\xea\x95\x1f\x5d\x5c\xdc\xfa\xe1\xde\xfc\x68\x31\xd2\x73\x68\xc0\x0a\x80\xf5\x95\x12\xbe\x06\x74\x8d\xe7\x47\x6f\xae\xbc\xfc\xf2\xcb\x8a\xf9\xfd\xa4\x98\x17\x4a\x8e\xdf\xa6\x5e\xdc\x58\x5d\x37\x90\x1e\x94\xde\xa9\xc0\x2a\x64\x67\x63\x5e\x34\x63\x74\x4d\x01\x07\x31\xb6\x3f\xd5\x4f\xac\x9b\xd6\xf6\x99\x02\xfa\x83\x80\xbb\xe7\x1c\x0e\xbe\xc7\xf4\x9c\x72\xa9\x51\x02\xee\xde\x57\x11\x4e\xbe\x4b\x97\x18\xfe\xb4\x6e\x31\xfc\x0d\x4d\x8c\x51\xe0\x92\x6b\x20\x52\xde\x54\x1f\x5f\x19\x1f\x5f\x97\x3e\x21\x20\xe2\xa3\x77\xf1\xa7\x63\x0b\x20\xa2\xbf\xf6\xf6\xf6\xe4\xef\xfc\xce\xef\x00\x00\x80\xf9\x8d\x20\x87\x2e\xd2\x6c\xb6\x35\x79\x0d\x60\xc1\xc7\xd9\xb7\x60\x25\xab\x44\x7e\xe9\x2c\xdf\xb9\x79\x38\xb9\xf6\xf0\xfd\xe2\x89\x0b\xf3\xfc\xe9\xe9\x4a\xbe\x6f\x5c\xc9\x1b\x59\x25\xae\x4a\x0d\xbb\xa2\xf9\x34\x19\x3b\x42\xe3\xe1\x04\xd9\x6b\xc2\x6d\x3a\x35\x4b\x2f\xdc\xeb\xbf\x1b\x24\xd8\x9b\x2d\xdc\x80\x48\x77\x9e\xb7\xae\x6c\xe3\xb4\x6d\xee\x02\x2f\x0f\xe9\x66\x41\x0a\x6d\x4e\x71\x39\xea\x6e\xe9\xa8\x93\x55\x3b\x6b\xdb\x5d\xb3\x4b\x32\xa0\x5b\x60\x01\xe0\x8f\x23\x69\x52\xcf\xee\xb9\x15\x8e\x62\xf7\xbb\x70\xfb\x62\x50\x11\xab\xee\x80\xca\x38\x03\x5f\xcd\xe6\x69\xc1\x68\xd1\xa7\x61\x74\x21\xe0\xa7\xeb\x0f\x28\x35\xc0\xbc\x92\xfa\x70\x95\xe9\x37\x6b\x10\x53\x7d\xf7\xee\xb4\xfc\xf6\x6b\x97\xe6\xaf\xbc\xba\x3f\x3f\xac\xa4\x2e\x41\x40\xd9\x44\x5b\x4a\x80\xf6\x9a\xdb\x1b\x63\xf8\x2a\xf2\x17\x00\xba\xe8\xcb\xef\xff\xfe\xef\xcb\xbf\xfe\xeb\xbf\x4e\x9d\xfb\x94\x77\x8c\x5d\xf3\xd9\x76\x9f\x1d\x0d\x39\x76\x60\x9e\x6f\x52\x7f\x57\x19\x97\x9c\x14\xa0\x17\x92\x1b\x02\x97\x3e\x80\xe1\x4a\x43\xfb\x8c\xea\xc1\x95\x89\x7d\x31\xf5\xe9\x42\xe9\x5c\xed\xe9\x6a\x4b\x2b\x89\x00\x81\x0b\x85\xc5\x34\x44\x28\xb9\x90\x6d\xa8\x4c\xa8\xe1\x62\x75\x8a\x71\xee\x31\x3c\xd6\xa9\x77\x0a\xbf\x75\x11\xf0\x50\x80\xb7\x09\xda\xc1\x89\xd9\x70\x6b\x01\x14\xe8\x80\x09\xbe\xb6\x80\x0a\x00\x48\xa1\xa0\x78\x68\x36\xda\xb9\x7e\x34\xb9\x76\xf5\xfe\xe8\xa9\xdd\x45\xfe\xf4\xf6\x42\x3e\x31\x2e\xb3\x1b\xb9\x12\x97\x9b\xfd\x2a\xcd\x59\x2a\xc2\xfe\xf2\x87\x2c\x07\xf5\x9c\x94\xd9\xd7\x82\x9c\x6c\xe8\x8d\x1f\xc0\x91\x87\x32\x39\x67\x4b\x1d\x37\xf6\xec\x2e\x40\x84\xf5\x14\xc8\x99\x9b\x64\x03\x81\x76\xc7\x4d\x7d\xef\x89\x82\x58\xd8\x89\x94\xc3\xbc\x59\x5d\x80\xd7\x97\x7b\x88\x63\x35\xec\x92\x16\x39\x9b\xc6\x1b\x41\xa2\x4b\x4b\x0c\xad\x5d\x2f\x1b\x08\xf9\x74\x04\x70\xc9\xd5\x00\xd0\x9e\xf2\x3b\xaf\x84\x3e\x5c\xe6\xea\xf6\x6c\xa4\xbe\x7f\xbc\x55\x7e\xf3\x9d\x69\xf9\xdd\x5b\x7b\xf3\x5b\x6f\x5d\x58\x1e\x2f\x73\xbd\x84\x1a\xb8\x94\xe6\xd0\x3b\xc7\x3f\x30\xd7\xcc\xcf\x10\x80\x52\x0a\x70\x84\x12\xa5\x58\xe7\x1b\x5b\xce\xf5\x3c\x36\x2a\x10\xe3\xbc\xb8\xbc\x10\x60\x8a\x79\xb9\x0e\xe9\xe1\xd2\x85\xca\xa4\xfc\x43\xfa\xc7\xbe\xe8\xba\xea\x15\x93\x62\xc1\x1f\x27\x2b\xb6\x9c\x0f\x84\xf8\xee\x43\x2f\xc6\x41\xd9\x66\x9e\xb9\x3a\x38\x46\x40\xec\xc0\xf3\xa5\x10\x8f\xd0\x40\x0c\x81\x90\xd0\xe0\x0b\xd1\x3d\xa8\x34\x04\x28\x0d\x05\x4f\x43\xea\x99\x62\x8c\x7c\xa8\xdb\x99\xfe\xe0\x0f\xfe\x40\xfe\xd5\x5f\xfd\x15\xf7\x0b\xcc\x2e\xc0\x42\xff\xb5\x80\x45\x6b\x9d\xef\x2e\xf2\xc9\xa3\xf7\xc6\x57\xaf\x9c\x14\x4f\xec\xcf\xf2\xf7\xee\xce\xf3\xa7\xb6\x56\xf2\xe6\xa8\x92\x75\x64\xa5\x3b\xfc\x4d\x72\x6f\xf2\xc6\x5d\xe2\xf8\x87\x75\xb2\xac\x45\xc7\x27\xd7\xbe\x90\xae\x7c\xe7\xf4\xbb\xd8\x89\xdf\x11\xdb\x6f\xfb\xd4\x71\xd3\x2f\x8f\x34\x2a\xd4\xe9\xed\xab\x6b\x47\xa3\x41\x68\xc1\xfe\x2e\x51\x48\xaf\x8e\x1e\x9c\xcb\x35\xbd\x36\x6b\x0a\xb4\x35\xc0\x08\x10\x85\x5e\x38\x00\x13\x97\xec\x12\x14\x4c\x41\x7b\x56\x4c\x93\x17\x01\x74\x82\xe2\xa0\x53\xb6\xf9\xbc\xbd\xd4\x00\xa5\x12\x70\x52\x66\xea\x60\x9e\xab\x5b\x27\xe3\xea\x95\x7b\x93\xea\xdb\x87\xdb\xab\xef\xbf\x71\x61\x71\xfb\x60\x67\xd5\x82\x98\xe6\x9f\x42\x11\x19\xe7\x5e\x18\xfa\x49\xb5\xe3\x50\x3b\x53\x26\xf6\x45\x30\x75\x3e\xa7\xbe\x94\xa6\x38\xe6\x58\x07\xeb\x8a\x70\x60\x1e\x3e\xfe\x29\xb4\xb1\x11\x09\x5f\x5f\x6c\x5a\x17\x57\xe2\xda\x2f\xe6\xa5\xdf\xa5\x8b\x6f\x6c\x84\x02\x1d\x9c\x8f\xe7\xe4\xf5\xfc\x7e\xda\x9c\x77\xa7\xa1\x91\x89\x54\x54\x38\xb4\x4c\x0c\x4f\xda\x68\x9c\x8c\xf3\x00\x0e\xb1\x83\xfd\xc7\x0d\xaa\x5c\x3a\xa4\x4c\x94\xde\xc4\xfa\xd0\x87\x3e\x24\xbf\xf4\xa5\x2f\x29\x03\x58\x5e\x7c\xf1\x45\xfc\x8b\xcb\x78\xd3\x2d\xde\xa3\x02\x82\x7c\x0d\x04\x35\x50\x91\x02\x44\x3e\x2e\x65\xf1\xf0\xfd\x62\xef\xca\xc9\xe8\xc6\xfe\xd9\xe8\x99\x4b\xb3\xfc\xe9\x9d\x45\xf6\xc4\xb8\x94\x8f\xe4\x4a\xec\x0b\x0d\x53\x03\x56\x6a\xd6\xe6\x0b\x9c\xce\x49\xb5\xfb\x1e\x8c\xbf\xb4\x96\x22\xf0\x97\x3c\xe8\x4b\x0f\x20\x60\x02\xa0\xf7\xcc\x3c\x72\xee\x0b\xb5\xf8\xc5\x7f\xed\x82\x38\x80\x89\x4c\x00\x10\xa0\xc0\xe8\x4a\xaf\x63\x5d\x73\x7f\x99\xa8\x5f\xa9\xb6\x3d\xc8\xd7\x30\x02\x9f\x1f\x43\x36\xc9\xb6\xcb\x47\x5a\x60\x9c\x05\xed\x31\xff\xa0\x9b\xe8\x12\x69\xf3\x76\xbd\x06\xc0\x3e\xd0\x0e\xda\xe5\x28\x4c\x62\x12\xdd\x3b\x8d\x37\x54\xeb\x86\x31\x77\xe2\xb0\x01\x74\x18\x9d\x75\x9f\xb4\xd3\x98\x56\xa3\xb6\x75\x48\x5e\xab\x79\x59\xff\xbe\x92\x3e\x5e\x65\xfa\xce\xd9\x48\xbd\x7e\x6f\x52\x7e\xff\xee\xb4\xfc\xcf\x83\xed\xe5\x2b\x77\x76\x56\x6f\x1e\x4d\xcb\x93\x4a\x6a\x03\x60\x68\x14\xa6\x6c\xf4\xe6\x0e\xba\xb3\xe6\x65\xc4\x26\x5e\x9c\xd6\x79\xcb\xef\xc9\xf6\xf0\x06\x72\x1d\x53\x9e\xca\x4b\x01\x0b\x31\xcf\x53\x5e\xc6\x53\xea\x8c\x93\x2f\x10\xc0\xb5\x4d\x0c\x40\x1a\x02\xc8\x42\x41\x89\x10\xd8\x70\xe9\x18\xa3\x53\x28\x71\x6d\x2b\x01\xec\x3d\x2e\x58\x81\x50\x4a\x89\xc8\xf8\x94\x0a\x21\x3f\x17\x1d\xc7\x3f\x86\x0f\xd5\xdf\xa5\x53\xaa\x6c\x5f\x59\xd7\x7d\x4c\x8a\x1d\x40\x94\x7f\xcc\x75\xea\x7d\x6c\x3f\xb9\xea\xd0\xa3\x79\xe1\x85\x17\xe4\xbf\xfc\xcb\xbf\x28\x80\xde\x81\x71\xf8\x77\x84\xe8\x61\x70\x00\x68\xef\x8a\xd0\x90\x4b\x0d\xf9\xa8\x92\xc5\xee\x3c\xdb\x79\xe8\x74\x74\xf5\xd2\x59\x7e\xf3\xca\x49\xf1\xd3\x17\xcf\xf2\x27\xb7\x4a\x79\x73\x54\x89\xab\x52\x89\x1d\x51\x7f\xba\x2c\xa9\xc3\x76\x85\xf9\x3b\x87\x66\x42\x06\xda\xda\xeb\xc1\x95\x61\x0a\x23\x67\x15\xff\xb6\xce\x2e\x89\xf4\xe4\xd1\xf3\x5f\xe2\xf8\x02\xa3\x0f\x0b\x74\xcc\xff\x1b\x04\x81\x41\x99\x15\x95\xa0\xba\x52\xb0\x17\x50\xce\x80\x92\x3e\x98\x43\x3d\xa0\x1b\x56\x5c\x1b\x7a\xf8\x5b\x8f\x98\xc8\x8f\xb7\x7d\xf1\xda\x12\x2d\xeb\x08\x37\xb9\xf4\x33\x40\x85\xf2\xc7\xd8\x07\x40\x2f\x95\xa8\xf7\xc3\x2c\x32\x7d\xeb\x64\x5c\xbe\xf2\xce\x76\xf9\xed\x77\xb6\x97\xdf\x7d\x67\x7b\x75\xeb\x60\x7b\x75\x78\x96\xab\xa5\xae\x3f\xad\x36\x00\x86\x5b\x4e\xa2\x3f\x0c\x09\x80\xe6\x9d\x01\x30\x2f\xbc\xf0\x82\xbc\x7b\xf7\x2e\x7c\xf3\x9b\xdf\x34\xcf\x43\x6f\xc6\x21\x7b\x84\x93\xcf\xf6\xa6\x3a\x5e\x97\x03\xe3\xf4\x0e\xd9\xf9\x58\x3f\x82\x53\x0c\x78\xf0\xb5\x09\xa7\x97\xcf\xb7\x50\x1a\xaa\x97\x0b\xd8\xb8\xea\xc3\xf9\x2a\x9f\x2e\xf8\x99\x4b\xa7\x14\x7b\xcf\xf1\xf5\x81\xce\x60\x1f\x08\x70\x37\xb2\x6b\x10\xc4\x0c\xde\x98\xc6\xa4\x4a\x85\x92\xcb\x89\xa6\x94\x89\x41\xc4\x31\x28\x14\xcb\x4e\x41\xae\x21\xc0\xe3\xd3\x21\x54\xe7\x50\xfb\xc4\x1a\x8b\x58\x04\x1e\xd2\x37\x2a\x51\xc0\x62\xfe\x32\x51\x15\xfc\x2f\x07\x0d\xf9\x48\x89\x7c\xba\xcc\xa6\x97\x66\xf9\xfe\xfe\x6c\xf4\xd8\x43\xb3\xd1\x93\xfb\xa7\xf9\x7b\x2e\x2c\xf2\x27\xc7\xa5\xbc\x29\x35\xec\x49\x0d\x13\x00\x91\x73\xfe\xb3\x96\x01\x40\xf7\x4e\x98\x08\x0c\x4e\xf8\x2d\x9a\xdb\xa4\x0a\xd6\xbd\xf5\x8b\x3e\xd0\x73\x58\x8e\xc4\x39\xd1\x16\x28\x30\x1b\x4d\x01\x3c\x3a\x90\xf3\x5e\xfa\x9a\x11\x39\x24\xd2\xd3\x2e\x85\x99\xc8\x03\xd8\x51\x27\xcc\x81\x8b\x0b\xc5\x2e\xe5\xc4\x80\x08\x8c\x1f\x62\xca\xf2\x72\xfa\x67\xd2\xb0\x74\xcc\x67\xd2\xd1\x40\x27\x42\x8f\x96\xc6\xbf\xdc\xa6\xea\x73\x62\xe0\x78\x95\xa9\x37\xcf\x0a\xf5\xca\xdd\xad\xf2\xbb\x6f\xef\x2c\xff\xf3\x60\x7b\xf5\xca\xdd\xad\xf2\xe0\x74\x5c\xcd\x16\x0d\x88\x69\xf6\xc3\x28\x40\x9b\x7a\xa1\x9b\x8b\x0a\xc0\xfa\xd5\x6a\x0b\xc0\x7c\xf2\x93\x9f\x94\x9f\xfb\xdc\xe7\x42\x8e\xcd\xe4\xc5\xd8\xd2\x10\xc8\x01\xc7\x73\x97\x03\xa7\x7a\xb8\xe4\x85\x9e\xc5\xbc\xa4\x51\x39\xb1\x36\x2d\x06\x0c\xa5\xfa\x38\x1f\x7f\x5f\xd9\x21\x76\x38\xd6\x9f\xfa\xe4\xfa\xf8\x85\x5e\x80\x7d\xb4\x6c\x9b\xd2\x88\x0b\x66\x98\x3a\x30\x39\x94\x44\x95\x72\xf1\x8b\xa5\x0b\x01\xa2\x90\x9e\xc0\x5c\xbb\xca\xc5\xea\x10\x5b\x76\xd3\x29\x04\x26\x20\x52\x97\x54\x9d\x63\xe8\x83\x34\x64\xd3\x6d\x0b\x58\xcc\x5f\x26\xd2\x52\x9f\xb7\xa2\xa0\x18\x55\xb2\xd8\x59\xc8\xe9\xde\xd9\xe8\xf2\x95\xd3\xd1\xcd\x2b\x27\xc5\xd3\xfb\xb3\xfc\x7d\x5b\xab\xec\xc9\x51\x25\xae\x09\x2d\x76\x05\xf9\x84\x19\xff\x26\x0e\xde\xc3\x01\xe0\x78\xd3\xe6\x7c\x5c\xf3\xda\x4f\xa3\x1c\x1d\x68\xe0\xf7\xc2\xd8\x40\xc1\xb5\xfc\xc3\xbb\x3c\xfb\x13\x5f\x7c\xdd\xa5\xa0\xa3\xb4\x80\x0f\x0f\xaa\x38\x20\x44\x23\x15\x00\xf4\x0c\x98\xae\xde\xa6\xf6\x00\x82\x2c\xab\xf1\xfa\xf5\x40\xa4\xb3\x5d\xba\xe7\x00\xb4\x35\x6d\x2d\x5c\xbc\xe9\xd7\x40\x6e\x2d\xb8\x27\x7e\x60\xe6\x66\x11\x17\x03\xf3\x69\x50\x8f\x53\x5d\x6a\x80\x79\x29\xf5\xe1\x32\xd7\xaf\xde\xdb\x2a\xff\xe3\xed\xed\xe5\x7f\x1e\x6c\xaf\x5e\x3d\xdc\x5e\xdd\xbe\x3f\xae\x8e\xcf\x46\xf5\x21\x77\x40\x7e\xfc\x11\x01\x1a\xe7\xcf\x0c\x00\xf4\x96\x90\x5c\x2f\xa4\x31\x36\x11\x18\x3a\x9f\x9d\x8a\xb1\xf7\x21\x3e\x29\x3a\xc7\x82\x25\x97\x7f\xf3\x95\xf5\xc9\xc1\xbc\x29\x7f\x57\x39\xaa\xd7\x90\x7c\xca\x9b\xa6\xa1\x7d\x15\x0b\xf2\x62\xf8\xb9\xfc\xb3\xaf\x3f\xad\x88\x8b\x8f\xa1\x0b\x98\x84\x00\x0b\xa5\x89\x71\xb0\xbe\xfc\xd4\x01\xe3\x1b\x88\x1c\xbd\x8b\xcf\x26\x53\xec\x1b\x42\x6c\x99\x75\xcb\xc6\x0c\xd2\x10\xa2\xa6\x74\xed\xf5\xbb\xdf\xfd\x6e\xf9\xf0\xc3\x0f\xc3\xff\xfc\x9f\xff\x93\x6e\xb8\x95\xa4\x2c\xbb\x77\xa5\x01\x2e\xb9\x54\x90\x4f\x4a\x39\xd9\x99\xe7\xbb\x97\xce\xf2\xab\x57\x4f\x46\x37\xae\xd6\xcb\x41\xcf\x4e\x4a\xf9\x64\x5e\x89\xab\xcd\x71\xfb\x32\xf6\x48\x7c\x68\x9f\x85\x0f\x72\x33\x91\x0f\xee\xeb\x15\xfa\x69\xb4\x55\x06\x2d\x83\x18\xf7\x6e\xfe\x6f\xd3\xd9\xf7\xd8\x29\x72\x4b\x5a\x9d\x3e\x60\xfd\x8e\x51\x1f\x10\x74\x57\x74\x89\x2b\x74\xdd\xde\x13\x00\x47\xdb\x94\x03\x70\x4e\x77\xcc\x1c\xca\x37\x6c\x2f\x4f\x42\xea\x85\x49\x5c\x20\x31\x04\x35\xc2\x9a\x06\x81\x9a\x6b\x39\x89\x53\x93\x3c\x03\x80\xb2\xf9\x11\xc8\x5b\xa7\x45\xf9\xad\x83\xed\xd5\x37\xdf\xbe\xb0\xfa\xfe\xdb\xdb\xcb\x5b\xf7\xb6\xaa\xa3\xd9\xa8\x9a\xad\xb2\x1a\xc0\xe0\x4f\xab\x01\x00\x10\x88\x01\xb0\xe7\x6d\x1b\x8d\x79\xf9\xe5\x97\xd5\xbb\xdf\xfd\x6e\xf9\x83\x1f\xfc\x20\x06\x18\xe0\x67\x94\xa7\xeb\x59\x2a\x88\xf1\x01\x80\x4d\xbc\xb4\xf9\x74\x8c\xa1\x5d\x37\xf9\xea\x6d\xe4\xac\x4b\x13\x5b\x36\xd4\xc7\x29\xed\x99\x12\x1c\x18\xe2\x6b\x5b\xe0\xc2\x09\x08\x31\x8c\x75\x70\xa9\x9d\xec\x6a\x54\x20\xd7\x80\xf2\xd6\xe1\x8f\x79\xf8\x3a\xcf\xf5\x7c\x68\x1d\x53\x79\x87\x00\x5d\xaa\xec\x50\x5d\x53\x78\xf5\xf8\x5e\xbb\x76\x4d\x3e\xf3\xcc\x33\xf0\xd4\x53\x4f\x59\x05\xcc\x29\xb7\xf8\xe8\x7d\xb0\x41\x4b\x77\xf6\x8a\x86\x3c\x53\xa2\x18\x57\xa2\xd8\x9d\x67\x7b\x57\x4e\x8a\x6b\xd7\x8e\xc7\x4f\x5c\x3e\xcd\x7f\x76\x67\x91\x3f\x3b\x2e\xe5\xcd\x4c\x8b\x7d\xd1\x9e\xb9\x82\xe4\x04\xdf\xe0\xbb\x37\x6a\xeb\x6d\xdd\xbf\x92\xc0\x94\x88\x7b\x12\xe2\xc6\x2f\x19\x38\x00\x95\x03\x48\xd0\xbb\x78\x40\xd0\x97\x1e\x5c\x7a\x21\x20\xce\x55\x0e\x1f\xee\x66\x6d\x94\x45\xeb\x3f\xf5\x6f\x02\xb9\xbe\xe6\xb1\x3d\xbd\x55\x77\x06\x04\xd0\x9f\x42\xa8\xe9\x3b\x42\xbc\x4c\x83\x15\xc6\x4b\x66\x6d\x5c\xa7\x95\xd9\xc0\x06\x61\xa2\x49\x4d\xe4\x09\x84\x55\xd6\x6e\x03\x0d\xda\x00\xd6\xae\x38\xd3\x8e\x80\x1b\xa7\xad\xb3\x46\x60\xb7\x55\xa5\xad\x86\x06\x05\x30\x5b\x65\xfa\xf6\x59\x51\x7d\xeb\xee\x56\xf9\x8d\xb7\x2e\x2c\xbf\xfd\xe6\x85\xe5\xad\xc3\x69\x79\x38\xaf\x01\xcc\x5c\x0b\xef\x17\x49\xf4\xb7\x90\xf0\x19\x31\xf0\xcf\xff\xfc\xcf\xf0\xbd\xef\x7d\x2f\xd5\x59\xc5\xe6\x73\xcf\x87\x38\xce\x98\x37\x79\x57\xf9\x21\x20\x64\x13\x2f\xb2\x21\x5d\x36\xe5\x47\x43\x72\xb9\x97\xfc\xd4\x17\xd4\x75\x74\xf4\xd5\x33\x08\x26\x05\x7a\x00\xa4\x10\x4e\x31\x51\x0c\x5f\x0a\x45\x3a\x52\x22\x1f\x31\x4e\xdf\x27\x93\x2b\x17\x42\xa0\x9c\x1c\x5f\xfe\xda\x88\x32\x81\xd6\x57\x36\x86\x4f\xec\xdb\x54\x6c\x5f\xc1\x27\x3e\xf1\x09\xf9\xf9\xcf\x7f\xde\xfa\x42\x08\xfd\xa0\x21\x00\x58\x3f\x66\x28\xf1\x3d\x34\xfb\x57\x32\x0d\xf9\xb8\x94\xd3\x8b\x67\xa3\xdd\x47\x8e\x8b\x6b\x8f\xde\x1b\xbf\xef\xd2\x2c\xff\xb9\xe9\x52\xbe\x3f\x57\xf2\x31\xa9\xc5\x0e\x5d\x3e\x01\xc7\x7d\xef\x37\x7d\x9a\xff\x8b\xc6\xeb\x68\xe3\x40\x63\xcb\x74\x61\xfc\x56\x96\x3b\xb2\x63\x2f\x6f\x70\x07\xd7\x79\x9d\x7d\x93\x47\xaf\x3b\x7e\x24\xea\x81\xc0\x01\xd6\xbb\xd5\xb3\xf7\xdc\x3e\xf2\x9f\xd3\xbb\x95\xab\x01\x34\x73\x60\x1c\x5f\x77\x5e\x4f\x67\x72\x44\x22\x58\x3e\x8d\x42\xed\x57\x3f\xc0\x14\x44\x25\x52\xe2\x39\x5c\x5f\x44\x1c\x52\xcc\xf2\x70\xb5\x87\x3d\x96\xe2\xf4\x68\xf3\xc8\x20\x50\x00\xcb\x4a\xea\x83\xf9\xa8\xfa\xce\xbd\x49\xf9\xd5\x3b\x17\x56\xff\x7e\x7b\x77\xf1\xfa\x9d\x9d\xd5\xc1\xd9\xa8\x9a\x95\x99\x9e\x6b\xb0\x36\xf3\x5a\x4b\x48\xd0\xb2\xb1\x52\x7b\x6f\x96\x91\xc6\xe3\xb1\x5c\x2c\x16\x21\xbb\x32\xd4\x8e\xa7\x3c\x07\x86\xd6\x95\x52\x64\xc4\xf0\x48\xe1\xcb\xe9\x39\xa4\xce\xb1\xd7\x3e\x7d\x43\xba\xc7\xf0\xc5\xf5\x02\x08\xd7\x35\xa4\x53\x08\x9c\x7a\x79\x89\x08\x22\xaa\x28\xa5\x0f\x01\x19\xaf\x93\x63\xca\xc4\x0c\xca\x10\x60\xe2\x74\xa3\xe5\xb9\x32\x29\x83\xda\x37\x49\x29\xbf\x94\xc1\xe4\xe2\xed\x42\xa3\x9b\x4e\xa1\xbe\xc3\x34\xbd\xe7\xbf\xfd\xdb\xbf\x2d\xaf\x5c\xb9\xe2\xfb\x75\xe6\xf6\x1f\x39\x92\x3f\x87\xfa\xf7\x82\xf2\x71\x29\x27\x0f\x9d\x8e\xf6\x1e\x3f\x9c\xdc\xb8\x76\xbf\x78\xdf\xde\x59\xfe\xa1\xe9\x32\x7b\x2e\xd3\x70\xb5\xf9\x8c\xd9\xda\xb3\x52\x5b\x74\xd1\xbd\x2d\x33\x9e\x47\x13\xd7\x81\x7f\x80\xd0\x72\x34\x3d\x07\xda\xbd\xfd\xba\x12\x5e\x7d\xb0\x37\x77\xb6\x99\xad\x7e\xdd\x1b\x2e\x80\xe5\x6f\xbd\xbf\xfd\xd3\xbe\xc3\x03\xd4\x35\x64\x37\xdf\xd2\x4f\x8d\xad\xfa\xb7\xb2\x03\xf0\xa2\x39\xb3\xc5\x24\xce\x79\xb6\xed\x47\xda\x91\xd6\xa3\xd7\x4e\xb4\xce\x29\x89\x89\x8c\x38\x7f\x6b\x88\xa3\xf7\x00\x05\x27\x48\x08\xab\xd3\xcf\xb7\xda\x02\xdc\x4d\xdd\x66\xd3\x33\x77\xf0\x98\xe8\x6e\x42\xe7\xc9\x68\x00\xa5\x84\x3e\x5e\xe4\xea\xbb\x27\xe3\xea\xab\x07\xdb\xcb\xaf\xdc\xda\x5b\x7c\xff\xf5\xbd\xc5\x9b\x67\x45\x35\xaf\x04\xd4\x67\xc2\x08\xef\xcf\x0b\x00\xbd\x36\xd1\x26\xf3\xcb\xd4\x4c\x1a\x6a\x27\x7f\x52\xf8\x50\x7b\x1a\x0b\xbe\x62\x5f\x2e\x87\xea\x63\x52\xa8\xdd\x87\xe8\xef\xe2\x1b\x0b\x6a\x4c\xf9\x90\x5f\x0f\xc9\xf1\xf9\x67\xef\x4b\x32\x9d\x4a\x2e\x20\x80\x93\x0b\x30\xa4\x22\x2e\x2c\x8f\x73\xfc\x94\x37\x97\x62\xe4\x71\x1d\xeb\xe3\x79\x9e\x29\x76\xb0\x9f\xb7\x7c\x1f\xf2\x5f\x7b\x42\x32\x5f\x0a\x49\x72\xdd\x82\x15\xad\x75\x2e\x84\xc8\x01\x20\x1f\x95\xa2\x78\xf8\xa4\xd8\x7f\xe2\x9d\xc9\xcd\x6b\xc7\xe3\x9f\xbf\x38\xcf\x3f\x3c\x59\xc9\xf7\x65\x5a\xec\x73\xd1\x06\xf3\x96\x8e\xf3\x69\x84\xc2\x84\xd8\xb9\x90\x7e\xc7\x86\x46\x69\xa8\xbf\xe9\xfe\x8f\x79\x77\x0e\x9c\xe6\xf3\x91\x14\x57\x8a\x73\x9c\x68\x53\xb1\x75\x9c\x3d\x17\x31\xe9\x74\xe0\xee\x31\x77\x0c\xda\x00\x03\x2b\x86\x47\x28\xea\xc3\xe9\x4f\x23\x24\x01\x3f\xde\x4f\x3a\xbd\x5c\x04\x5e\x70\xea\xee\xa6\xef\x00\x72\x7d\x3b\x20\x14\xc3\xc8\x71\x83\x54\xfc\xdc\x5f\x0b\x3c\xce\xb5\x00\xd0\xa0\xe7\xab\x4c\xbf\x3e\x2b\xaa\x2f\xbf\xb3\x5d\xfe\x8f\x57\xf7\xcf\xbe\xf5\xea\xfe\xfc\xce\x69\x51\x99\xe5\xa3\x25\x80\x15\x79\xe1\xbe\x46\x02\x7c\xed\xd9\xc0\xeb\xca\x4b\x89\x0c\x84\xa2\x0f\x31\x3c\x37\xa1\x53\xac\x2c\x4a\x67\xd2\x50\x60\xe0\x92\x11\x7a\x29\x76\xc9\x89\xe5\x1f\x92\xe1\xe3\x1b\xa3\x6f\x48\xaf\x21\x01\x0a\x05\x90\xfe\xf2\x13\xab\x18\x4e\x21\xc5\x28\x4d\x4c\x65\x62\x78\x73\xfc\x5c\xe8\x94\xa3\x1f\x82\xf0\x43\x03\x3c\x84\x8a\x39\x5a\x97\x5e\xa1\xbc\x98\xe7\x31\xbc\x9d\x75\xb9\x70\xe1\x82\xfc\xbd\xdf\xfb\x3d\x00\x00\xf8\xb3\x3f\xfb\x33\x6e\xf3\xad\x04\x00\xd0\xe4\xcb\xa0\xe6\x9f\x39\x34\x2e\x1f\x57\xb2\x78\xec\x68\x7c\xf9\xe6\xe1\xe4\x99\xab\x27\xc5\xf3\x17\xe6\xf9\x07\x27\xa5\x7c\x4a\x6a\xd8\x07\xa0\x4b\x2d\xf6\x92\x46\x78\x97\x85\xfd\x04\x87\xe8\x7d\xee\x20\xda\xb1\xe2\x32\x6c\x54\xc3\xbf\xfc\x40\x97\x85\x9c\x74\x10\xaa\x37\xd5\x61\x18\x70\xe2\x97\xb2\xf8\xcf\xc3\x53\xbe\xd3\xc1\x07\xce\xd1\xbd\x31\x5d\x14\xa5\xb9\x6b\xcf\x8c\xd1\xcd\x2d\xe7\xda\xa1\x3d\xdb\xc5\x84\xc9\xda\xf3\xe9\x18\x90\xea\x5c\xbe\xd1\x80\x0f\x83\x63\xeb\xde\x1d\xb6\xd2\x45\xb4\x70\xe4\xc8\xe2\x49\x0f\xd4\x43\x51\x32\xac\x0c\x62\xd9\xfc\xc0\x64\x17\x19\x03\xe8\xd7\x19\xb7\x21\xae\x53\x57\x7d\x0c\xa2\xdb\xff\x2f\xcb\x4c\xdf\x3e\x2d\xaa\x7f\x3b\x9c\x96\x5f\x7a\xfd\xd2\xfc\x3f\x5e\xdd\x9f\xdf\x3e\x9e\x94\x33\x6d\x22\x30\xf6\xa1\x76\x66\x0f\x0c\xb8\x96\x92\x3c\x87\xd8\x0d\x75\x94\x9b\xce\xe7\x9e\x0f\xe5\x9d\xea\x88\x53\x68\x86\xe8\x97\x6a\xef\x53\x80\x5b\xaa\x4f\x1a\x02\x60\x86\xf6\x65\x2f\x99\x69\xe0\x03\x1b\x31\x8d\xc0\x25\x8a\x0e\x53\x1c\xba\x8f\xa7\x4b\x37\xaa\x77\x0a\xff\x18\x3e\x3e\x3d\xd6\xa5\x0b\xd1\x6f\x62\x02\x6d\x6c\xd0\x3c\xf6\xd8\x63\xf2\xd6\xad\x5b\x0a\x00\xe0\xc5\x17\x5f\x94\x00\x96\xa1\x95\xe8\x2f\xfe\x97\x03\x80\xf9\x65\xe6\x5c\x08\x91\xe7\x95\x28\x6e\x1e\x4e\xae\x5e\x3f\x1a\x3f\x73\xe5\xa4\x78\x7e\x77\x9e\x3d\x37\x2e\xe5\x93\x99\x12\x7b\x02\xa0\xb0\x5d\x89\x9d\xe8\xef\xee\xe0\x28\x88\x71\x13\xee\x08\x0b\x9f\x58\xc7\xd6\x5c\x68\xf4\x25\x0a\x0b\x32\xa8\x2c\x14\x65\xb0\xf5\x8b\x88\xfa\x90\x28\x43\x4f\x80\x89\x34\xa1\xa5\x31\x27\x48\xf1\x9c\x68\xdb\x53\xb7\xd9\x2f\x42\x97\x8a\x7c\x7a\xd7\xc5\xf8\xbe\x70\xb6\x27\xa3\x8c\x5b\x7f\xe8\x9d\x5c\xcc\xd1\x50\x61\x6e\x30\xc1\x30\x0a\x20\xbc\x36\x6a\x24\xdc\xf5\xf1\x43\xd5\xb8\x28\x50\x4a\x10\x87\x03\x60\x36\x36\x6a\x47\xb9\x52\x02\x66\xab\x4c\xdf\x3a\x29\xaa\x6f\x1c\x4e\x57\x5f\xf9\xd1\xde\xe2\x1b\x3f\xdc\x9b\xdf\xbe\xbb\x55\x9e\x68\xd9\x03\x30\xd6\xf2\x11\x3e\xc8\x0e\x6f\xe0\x8d\x38\x85\x37\xf5\x05\x10\x22\x69\x38\xfe\x30\xa0\xdc\x26\x69\x37\xf5\xb2\x1b\xeb\x27\x63\x68\x01\xfc\xed\xe3\xcb\x1f\xd2\x07\x0f\xd2\x1f\x82\x80\xfe\x00\xf0\xa5\xd0\x1b\x7f\x08\x95\xb9\x10\x23\x40\x5a\x85\x28\x7f\x1f\x1f\x6e\x80\xbb\x80\x5a\x8c\x2e\x31\x83\x62\x68\x5a\x97\xdf\xd0\xf2\x83\x06\x9e\xd9\x7c\x6b\x9e\xd1\x7d\x2c\x24\xd2\x52\xff\x6b\x4e\xba\x7d\xf2\x60\xeb\x91\x77\x1d\xb7\x80\xe5\xfd\x93\x95\xbc\x99\x2b\xb1\x5f\x03\x16\x21\xdd\xa1\x74\x3b\xf9\xc1\x40\xf3\xcc\x38\x7a\x86\xce\x77\xd6\x4a\xeb\xcc\xd1\x1e\x99\xb0\xef\xec\x03\x27\xfc\x97\x82\x03\x2f\xf8\x61\xf8\xe1\xf2\x34\x1a\xe2\x02\x24\x3d\x1d\x3c\x74\x7c\xdd\xdc\x9f\x7b\x63\xc9\xec\xbe\x1b\xe0\x97\x3a\xb8\xe8\x12\x20\x80\xe2\x72\xcc\x3c\x00\x08\xa1\x1f\x2c\x87\xd9\x1b\xc3\x61\x19\x07\x88\x60\x01\x6a\x68\x80\x86\xc0\x88\x4b\x7d\xd2\x79\x61\xd0\x84\x4e\x52\x46\x91\xad\x66\x43\x76\x59\x09\x38\x59\x66\xea\xd6\xc9\xb8\xfa\xd6\xe1\xf6\xea\x6b\x6f\xec\x2e\xff\xe3\x87\x7b\x8b\xd7\x0f\xb7\x57\xc7\xd0\x2c\x1f\x81\x03\xc0\xa0\x6b\x36\xfa\xb2\xb3\xb3\x23\x4f\x4e\x4e\x0c\xdd\xb9\xbf\x71\x83\xff\x65\x9b\xf2\xe5\xec\xa2\xcf\x8f\xc5\xc8\xa6\xfe\x0c\x98\x6b\xae\x4c\x48\x2f\x97\x0c\x8e\x8f\x8b\xbf\xb9\x37\xc9\xe5\xdf\x5c\xfe\x33\x55\x46\x8c\xbf\xe4\x52\x4a\xc4\xc7\x4a\x06\xb8\x18\x26\xa1\xeb\x18\x05\x70\x4a\x41\x90\x38\xcf\x37\xd0\x52\xd0\xea\x26\x68\x63\xf4\x76\xd1\x01\xa3\x73\xa8\x4c\x2c\x02\x0e\xb5\x47\xaa\x9c\x60\xfa\xf5\x5f\xff\x75\xf9\xf7\x7f\xff\xf7\xca\x75\xda\x2d\xf3\x0f\xff\x42\x73\x91\x57\xa2\x78\xf4\xde\xf8\xf2\xa3\x47\xe3\xf7\x3d\x72\x5c\xfc\xfc\xee\x3c\x7f\x76\xb2\x92\x37\x73\x2d\xf6\x85\xb6\x8f\xe3\x07\xb0\x23\x1e\xae\x97\x64\xfe\xcb\x1d\xf2\x06\x4a\x22\x18\xfd\xe8\x06\x0f\x4a\xe8\xb2\x0b\x18\x99\x78\xa9\x80\xf3\xc0\x74\xa9\x06\x45\x5f\x62\x7c\x1c\x07\x7e\xdc\xb4\x71\x00\xaf\x57\x3a\xe2\xf7\x07\x38\xe7\xe8\x03\x47\x3d\x3a\x12\x2d\x71\xeb\x48\xe0\x4d\x2f\x7a\xc0\xf0\xc7\x7d\xe0\xd0\xcb\x55\x21\x17\x10\x6a\xc9\x4c\x17\x46\x36\x6a\x77\x2a\x6f\x54\xb3\x46\xd5\x93\xcb\xf3\x5d\x03\x70\xfd\x63\x2b\xa4\x6b\x5d\x97\x4a\xc2\xf1\xa2\x06\x30\xdf\x39\xd8\x5e\x7d\xed\xf6\xc5\xc5\x37\x6e\xed\xcd\x5f\xbf\xb7\x55\xcd\x00\xec\x08\x0c\xd9\xfb\x42\x41\x4c\xcd\x57\x6b\xba\x79\x37\xf4\x42\x19\x63\xcb\x69\x19\x2e\xdf\x65\x2f\x5d\xf2\xb8\x32\xbe\x97\x6b\x00\xb7\x9e\x14\x18\xc4\x00\x21\x9f\x73\x4e\x01\x11\x2e\x5d\x01\xfa\xba\xbb\xea\x0c\x90\xae\x43\x4c\xdb\xba\xf8\xfa\xf4\xc1\x34\xae\x3a\x58\xb4\x5c\xc4\xc5\xd7\xf8\x1c\x8a\xa3\xf9\xdc\xb3\x10\x40\xe1\xca\x71\x89\x03\x50\xae\x41\xe6\x1b\x88\x3e\xbd\x42\xfa\xac\x0b\x6a\x86\x94\x4f\x19\xe8\xbe\xb2\x29\x20\xa8\x97\x68\x84\x85\xfc\xc5\xfb\x57\x24\xd9\x74\x3b\x79\x68\x36\xda\x7b\xf4\xde\xf8\xc9\x47\x8f\xc6\xcf\x5f\x3e\x1d\x7d\x60\x6b\x25\x9f\xca\x1a\xc0\x22\x40\xd8\xed\x8e\x22\x24\x00\x00\xa2\x39\xf9\x14\x20\xec\xa4\x7b\x38\x82\xd2\xea\x06\x18\x20\x7e\x2e\x46\xf8\xd3\x5f\x27\x3f\x26\xa6\xc0\x82\x0a\xe7\xe9\xad\x5d\x19\x68\x23\x3d\xee\x28\x0a\x06\x37\xf4\x8b\x9e\x5e\x64\xc7\xda\x6b\x41\xda\xce\x75\xe4\x3c\xf2\x75\xbd\xe8\x04\xf7\xe6\x8f\xdf\xec\x7b\xbc\x9a\x3a\x93\x72\x6d\x19\xce\xd1\x33\x20\x8f\x75\xd8\x3d\xa7\x4f\xfa\x8a\x03\x26\xb8\xce\x4c\xc3\xf6\x64\x06\x96\xd9\xb8\xfa\x02\xd3\xe6\x4e\x80\x42\xc6\x84\x97\x37\x49\x6e\x40\x4b\xc6\x4e\xbb\x77\xa6\x53\xcd\x00\x98\x4a\xc2\xd1\x32\x57\xb7\x8e\xc7\xe5\x7f\xbc\x79\x61\xf9\x95\xdb\x17\x17\xff\xf1\xda\xfe\xfc\xd6\x32\xd3\x73\xe8\xf6\xc0\x28\xe8\xf6\xbe\x94\xe6\x67\x03\xc8\xb9\x2f\xad\xcd\x78\xf9\xe5\x97\xd5\x23\x8f\x3c\x22\x6f\xdf\xbe\x3d\xe4\xc5\xd0\x17\x5d\x70\x39\x69\x00\xde\xfe\x03\x43\xeb\x02\x25\x94\x17\xe7\x3f\x7c\x72\x7c\x75\xa0\xf9\x2e\xfd\x7d\x3e\xcb\x55\xb7\x98\x7a\x86\xea\x00\x4c\x59\xac\x1b\x27\xcb\x07\xca\xf0\xbd\x2b\xc5\x82\x48\xaa\x6f\x7b\x1f\x7a\x39\x78\x90\x8e\x78\x48\x4a\x75\xf4\x90\x90\xbf\x49\x7d\xa8\x9c\x4d\xd5\x3f\x55\x07\xdf\x73\xb6\x1d\x3e\xf8\xc1\x0f\xca\x2f\x7f\xf9\xcb\x38\xca\x62\x6d\xc0\x25\xe7\xb0\x98\x25\x21\xa9\xb5\x2e\x46\x4a\x16\x17\xcf\xb2\xbd\x6b\xf7\xc7\x37\x1e\xb9\x37\x7e\xf6\x5d\xc7\xc5\xf3\xdb\xcb\xec\xd9\x51\x25\x1e\x11\x00\x53\x1c\xe5\xb0\x6d\x3e\x0a\x7e\x13\xdf\xd1\xfb\xfc\xb7\x79\xed\x8e\x0d\xe1\x47\x45\x2a\x1a\x70\x13\xbb\x41\xd2\x06\x04\x10\x88\x2e\x40\xcf\x89\x38\x81\x16\xba\xb1\xc1\x42\xfd\x37\x6a\x29\x23\x22\x61\xdd\x7d\x11\x03\xd6\xe1\x23\x9d\xd8\xfd\x19\xa6\x3d\xcc\x29\xbf\x9c\x07\x37\x20\x11\x7f\x8a\x4d\xf6\xcd\xd4\xf7\x46\x4e\xd7\x28\xfd\x3d\x44\x26\xd3\x6c\xa4\x65\x7e\x7b\x48\x77\x4b\x81\x1d\x2b\x74\x30\x9e\xb0\x41\x0b\x3e\x24\x8e\xfb\xa5\x68\x1a\x65\xc3\x27\x2c\x5b\x87\xd7\x39\x42\x3e\x6d\xc4\x44\x98\xbe\x25\x9f\xe9\x1b\x16\x40\xea\xdb\xed\x4e\xb6\x78\xb2\xa0\x93\xe9\xa3\x0e\xc0\xe8\xc3\x79\xae\x5e\x39\xda\x2a\xbf\xfe\xea\x43\xf3\x2f\xbd\xb5\xb3\xfc\xee\xdb\x17\x96\x07\x8b\x4c\x2f\x35\xe8\x25\x00\x94\xe6\xf0\x3a\x40\x40\xa6\x61\x63\xfd\x8d\x8c\xbe\x18\x7a\x9f\x23\x8e\x01\x25\x43\x00\x84\x2b\xa5\xda\xcd\x50\x14\xc3\x07\xba\x42\x00\x8e\xca\x08\x01\x13\x5a\x06\xc0\x2d\x8f\xe3\x81\x69\x38\xf9\x21\x5d\x7d\x6d\x11\x02\x42\x2e\x39\xde\xb6\xc1\x23\x3b\x36\xb2\x12\xd3\x01\x31\xa8\x0d\x27\x57\xd4\x84\x2b\x0b\x9e\xfc\x10\xa2\x8e\xa1\xa7\xf9\x9b\x04\x18\x29\xfc\x52\xdb\x94\xcb\x0b\x0d\xbc\x5e\x3f\x34\xbf\x0f\xa4\x00\x00\xfe\xf8\x8f\xff\x58\x6e\x6d\x6d\x71\xf4\x92\xf9\xd7\xee\x63\xc9\x14\x14\x3b\x8b\x7c\xe7\xca\xc9\xe8\x91\x47\xee\x8d\xdf\xf7\xe8\xbd\xf1\xf3\xbb\xf3\xfc\xb9\xa2\x12\x37\xa4\x16\x3b\x86\x4f\x1f\x30\x60\x07\x60\x7f\xe6\x8b\xa3\x08\x76\x68\x5c\x37\xd7\xdd\xbb\xaa\x66\x8d\x77\xe3\x21\x2c\xcb\x6d\x3b\x1c\xfe\x6d\x97\x8f\xa8\xb4\xfa\xa3\xc8\x8c\xf3\x0c\x8f\x88\xe4\xe4\x8f\x28\x68\xfc\x87\x46\x30\x00\x80\x8d\x62\xb8\xda\x8b\x46\x23\x42\x11\xa1\x90\x3e\x1c\x7d\x7a\x14\xa1\xdf\xde\x7e\x7a\xca\x98\xd3\x34\xae\x2b\x86\x80\xbe\x60\x69\x26\xdb\xee\x0f\x4f\x64\xa9\xc5\x36\xfc\x27\xef\xbe\x68\x4f\x8c\x6a\xdd\x63\x0d\x1a\x60\x5e\x49\x7d\x30\x1b\xa9\x6f\xdd\xb9\xb0\xfc\xb7\xd7\xf6\xe7\xff\xcf\x9d\x9d\xe5\xab\xf7\x26\xd5\xd1\x32\x57\x73\x05\x7a\x69\x3e\x9d\x06\xe8\xfd\x26\x92\x42\x20\xd1\x05\x60\x70\x0a\xd9\x2d\x57\x5a\xc7\x4e\xfb\x6c\xa1\xcb\xdf\x85\xf4\x75\xd1\xc7\xe8\x10\x4b\x13\x0b\x18\x7c\x91\x1c\x7c\x1d\xfb\xe2\x1a\x13\xfd\x08\xa5\x50\x9b\xa7\x02\xbf\x36\x65\x8c\x92\x9a\xfc\x33\xcf\xf1\x9c\xa1\xcf\x70\x59\x20\xcf\x01\xe5\x61\xfe\x86\x9f\x62\xca\x08\x86\x1e\xeb\x21\xa0\x2f\x83\x36\xb4\x29\x8f\xe5\x63\xbe\x02\xd1\x63\x3d\x0c\x2d\xfe\x6b\xf8\x6b\x72\x2d\xa1\x5f\x4f\x8e\x9e\xf2\xc5\x34\xb4\xae\xb4\x2e\x1a\xdd\x0b\x42\x03\x24\x8f\xde\xfb\xda\xca\xd4\x9f\xf6\x67\x4b\xf7\xe1\x0f\x7f\x58\x10\x7a\xa9\xb5\x16\xcd\x12\x90\x68\x96\x83\x46\x50\x03\x96\xb1\x54\x50\x4c\x97\xd9\xce\x95\x93\xe2\x91\x9f\x7a\x67\xeb\x67\x9f\x7a\x7b\xfa\xd1\xc7\x8e\xc6\x1f\xbf\xb0\xc8\x7f\xbe\x50\xf2\x31\x09\x62\x0b\xcc\x3b\x22\xda\xa4\xd0\x76\x0c\x5e\xbe\x31\x20\x03\xdb\x63\xf3\xc6\x8e\xde\x68\xf1\xff\x01\x00\x74\xe3\xb5\x6b\x21\x1d\xbf\xee\xe5\x14\xbd\x19\x13\x47\x4d\x1b\x8e\x7b\x6b\x15\xc8\x5d\x77\x6f\xe5\xcd\x1b\x3e\xe0\x4d\xb3\x00\xe6\x00\x13\x81\xbf\x7d\x6d\x28\xad\xb7\x63\x53\x67\x22\xd3\xd2\x07\x81\xae\x7e\x87\xe3\x3a\x77\x00\xc5\x80\x29\xb3\x61\x43\xa0\xff\xda\x76\x36\x72\xdb\xb6\x68\x80\x43\xe3\x39\xe9\x39\x35\x1d\xc0\xb1\x5d\x28\x05\x7a\x86\x9e\xfa\x4b\x7a\xdf\xb5\x88\xad\x15\x6d\x0f\x0e\x08\xb5\xbc\x2c\xa6\x4d\x2d\xda\x71\xd3\x5f\x42\x62\x4f\xe8\x45\xcb\x57\x16\xb9\x63\xc9\x8d\xde\xdb\x87\x14\x22\x2a\x06\x30\x98\x76\x14\xa4\xcd\xe9\x58\x04\xa2\x7f\x3b\x8e\xbb\xe1\x83\xc4\x79\x90\x09\xd7\xe8\x76\xe7\x83\x10\x22\x97\x1a\x76\x8b\x4a\xbe\xeb\xc2\x22\x7f\xfc\xa1\x59\x7e\x79\xba\xcc\xc6\x52\x0b\xad\x84\x2e\x2b\x09\x5a\x35\x83\xbf\xb1\x01\xd0\xfc\x15\xa2\x69\x20\x21\x5a\xad\x04\x00\xe8\x0f\x7e\xf0\x83\xe2\xc6\x8d\x1b\xe2\x3b\xdf\xf9\x0e\xb5\x9b\x9c\xcd\x0c\xd9\x53\xac\x39\xf5\x13\x9c\x5d\xa5\xfc\x5c\x36\x12\xf3\x75\x39\x64\xaa\xbf\xc9\xe3\xf2\x5d\x75\xe0\xfc\x24\xa5\xe5\x40\x45\x2c\x2d\x1d\x11\x00\xfd\x3a\xd2\x3c\xcc\x13\xfb\x43\xdc\x16\x94\x07\xe7\x47\x5c\xed\x00\xe8\x39\xe7\x7b\x71\xd2\x60\xf7\x19\xe6\xdb\xd3\x99\x0e\x69\x17\x42\x03\x46\x10\x57\xc6\x97\x86\xa0\x62\x9f\x5c\x17\xcf\x14\xc4\x1a\x43\x93\x52\xff\xd8\x37\x80\x75\xda\x6c\x08\x6f\x6f\xde\x78\x3c\x96\xfb\xfb\xfb\xf0\xc6\x1b\x6f\xf4\x36\xde\xd2\x73\x59\xd0\xd2\x50\xfb\x95\x10\x00\xe4\xe3\x52\x4c\x2e\xce\xf3\xfd\x47\x8f\xc6\x37\x6e\x1c\x4d\x9e\x7f\xe8\x74\xf4\xe1\xad\x95\x7c\x26\x57\xe2\x32\x80\xc8\x2d\x00\xd2\xa4\xd0\x17\x31\x1d\x9d\xeb\x99\xfd\x84\xa3\x0b\x7d\x62\xea\xfa\xcd\x1d\x4a\xe3\x73\x5e\xbc\x66\xee\x13\x51\x63\xca\x07\x13\xc3\xa4\xb7\x14\x80\xee\x75\xf3\x3f\xeb\x3e\x5a\x8f\x61\x1a\xb7\xa5\x9a\x0b\x7c\x6f\xfb\x5a\xbe\x75\xec\x4d\xb2\x1d\xa0\xa2\x4b\x87\xf6\x8f\x58\x82\x0d\xba\x1a\x7a\xeb\xbc\x9c\x36\xcf\xbd\xd4\x68\xef\xdd\xb1\x79\x61\xad\xeb\x36\x6d\x74\x03\xcc\x5f\xdb\x20\xda\x12\xd0\xd1\x43\x0b\xa8\xbb\x9f\x91\xb0\x4f\x25\xee\xea\x82\x75\xa3\x7b\x8f\xb4\x17\x64\xe2\x7a\x35\xcf\xe9\x6f\x07\x34\x3c\xcc\xbd\x12\xfa\x64\x99\xe9\x57\x8f\x27\xe5\x97\x7f\xb4\xb7\xf8\xd2\xeb\x7b\xf3\xef\x1c\xec\xac\xee\xcc\x46\xd5\x89\x92\xb0\x6c\xf6\xbb\xe0\xbd\x2f\x78\xdf\x4b\xef\xd7\xa8\x07\x1c\x60\xe7\xca\xe3\x9e\xb9\xa2\x03\x31\xcb\x2a\x43\x96\x48\x5c\xbe\x31\x36\xc2\x4d\xf5\xa2\x79\xb1\xfa\x85\xa2\x16\x2e\x99\x21\x5d\x37\xe5\x57\x5d\x72\x62\xfc\x64\x54\xc4\xc5\x24\x0e\x11\xf9\x90\xa8\x29\xc3\x09\xc5\x08\x8b\xa2\x29\xfc\x17\xd3\x51\x45\x5d\xe8\x8e\x8b\xc4\x50\x1e\x26\x51\xa4\xc7\xe9\x4b\xf9\x62\x99\xb8\x9e\x1c\x9a\xe6\xde\x00\x5c\x28\x14\xd7\x0d\xc8\x73\x0e\x89\x53\xbd\x5c\x65\x7d\x75\xc1\xc8\x97\x45\xb1\x4f\x3f\xfd\xb4\xf8\xc1\x0f\x7e\x80\x7f\x5b\xa8\x8d\xb0\x00\x80\x10\x42\x64\xe6\xbe\x01\x2c\x23\x21\xc4\x08\x34\x8c\x32\x0d\xe3\xe9\x2a\xdb\xb9\x71\x77\x72\xfd\xd9\x37\x76\x7e\xf1\xa7\xde\x99\xfe\xd6\xe5\xd3\xd1\xc7\x27\xa5\x7c\x26\xd7\xf2\xa2\x68\xbe\x14\xa2\x7b\x09\x00\xa0\xd9\xd3\xd0\x7d\x91\x21\x00\xd8\x33\x3b\xb8\x37\xdc\xfe\x13\xde\xb5\x0a\xd7\x03\xf3\x3c\x04\x5a\x1a\x1a\x73\x4d\x65\x21\x9f\x8a\x68\x34\xf9\xc5\xe6\xfe\xa2\x8a\x7d\x47\x00\x58\x2f\xd2\x63\x7b\x7e\xdb\xe9\x77\x8f\x5b\xd7\x89\xa3\x39\x4d\xbe\x00\xdb\xb9\x9b\x7f\x6c\x7d\x7b\x6e\xdc\xa1\x2d\xae\x37\x06\x06\x84\xbf\x69\x8a\xf6\x99\xe8\x68\xfb\xfc\x11\x90\x6d\x0a\xd4\xe5\x1b\xa7\xdc\x54\xaf\xe3\x29\x6c\x5e\x6d\x24\x43\xb4\xec\xcc\xf8\x33\x34\xa6\xed\x04\xca\xa4\x93\xd8\x8c\x0b\xdd\x28\x22\x10\x2f\xa3\x53\xc7\x5f\x20\x1e\x06\xf0\x74\x11\x98\xae\x1f\xec\x3a\x1a\xbd\x4c\xfd\x04\x34\x75\x03\x61\xcb\xec\xfd\xc8\x24\xe9\x0f\xa2\x43\xbb\xa4\x6a\xed\xc3\xe9\x9a\xb9\x89\x8f\xb4\xa3\xd2\x44\x23\x4d\x9d\xeb\x89\x2f\x8a\x5c\x89\xcb\x5b\x2b\xf9\xee\xbd\xb3\xfc\xb1\xbd\x79\x3e\xc9\x95\x58\xae\x32\xbd\x5a\x65\x5a\x35\x16\xa2\x7e\xfb\x6d\x7e\x87\xcc\x44\x5e\x9a\x7d\x3d\xba\xb9\x17\x00\xa0\x9f\x7f\xfe\x79\xf1\x95\xaf\x7c\x45\xef\xed\xed\xc9\xc9\x64\x02\xcb\xe5\x52\x68\x6d\x8e\x0c\x6c\x35\x34\xc9\xd8\x1f\xda\x35\x38\x71\x65\xe9\x14\xd5\x8e\x67\x1c\x0f\x9c\xb0\x1d\xe6\x7c\x1f\xc5\xfd\x9c\x0c\x5a\x1f\x0d\x7d\x7d\x28\xd0\xa0\xba\x70\xba\x51\x79\xae\x28\x90\x49\xd8\x7f\xbb\xf4\xa3\xed\x10\xd3\x56\x2e\xdd\x80\xe8\xe4\xeb\x27\x97\x8f\x0c\xe9\xd7\xb3\x5d\xeb\x20\x32\x17\x9f\x21\xf7\xa9\x29\x84\x74\x53\xf5\xc3\x79\x43\x74\x0b\x21\xd6\x10\x6f\x1f\x92\x8e\xe1\xe3\x43\xb6\x12\x00\x54\x9e\xe7\xb2\x2c\x4b\x05\x10\xfc\x5a\x48\xa2\x7f\xf5\x11\xfd\x20\x72\x51\x7f\xde\x3c\xd9\x9f\x8d\x76\x9f\x7e\x7b\xeb\x99\xc7\x0f\xb7\x7e\xfd\xc2\x3c\x7b\x21\x57\xe2\x9a\xd0\x62\xd2\x6d\xa4\x84\xde\x9b\x7f\x37\xdb\xf9\x37\x49\x36\x4a\x62\xbf\xce\x5a\x65\x00\x1a\x63\x4e\x36\x54\x0a\x61\x9f\xbe\xd2\xb1\xb0\xe5\x50\xa4\x49\xbf\xc8\xc1\x5a\xf7\xa2\x2f\x68\xc3\x66\x7b\xaa\x2a\xb8\x37\xf6\x52\xe7\xde\xff\xfd\x22\xf7\x6f\x0f\xb1\xa7\xe2\x52\x13\xda\x03\x1d\x1c\x10\xea\xf4\xe9\x45\xc1\x7a\xb2\x7c\x75\x47\xfd\xca\xf5\x19\x95\x8f\x94\xee\x1c\x70\xb3\xeb\x46\x37\xe0\x44\x34\xc0\x49\x37\x51\x07\x32\x1e\x2c\x39\xba\x03\x38\xd6\xb8\x62\xfa\x0f\x3b\x7c\xab\xed\x11\xea\xb1\xa2\x6f\x06\x24\xd2\x7a\x69\xe8\xe9\xd5\x3b\xe1\xd7\xd0\x20\x10\xc9\x45\x4e\x1a\xcd\x7a\x73\x00\xa0\x03\x64\x86\x17\x5d\xc6\xa2\xe3\xc6\x44\x50\xec\xa8\x8d\x05\x03\x3b\x79\xe6\x97\xb2\x2d\xfd\x85\x55\x4f\xdc\x67\x5a\x80\x2a\xa5\xbe\x73\x5a\x54\x5f\x7f\xeb\xc2\xf2\x1f\x5f\x79\xe8\xec\xab\xb7\xf6\xe6\x6f\xce\x46\x6a\x46\x0f\xb0\xe3\x7e\xc0\x91\x46\x5f\x00\xea\x08\x0c\xde\x4f\x07\x71\x36\xdc\x17\x9d\x70\x95\xf3\x45\x21\x70\x7e\x28\x1a\xe2\x93\xe3\x8b\xf8\xa4\xe8\xef\x2a\x47\xf3\x5d\xf2\xa8\xae\x43\x22\x5b\x31\x75\x4b\xe1\x3f\xc4\xc7\x85\x74\x82\x9c\x30\x73\x11\x52\xc1\xa9\x8e\x9c\x56\x7c\x5d\x7e\x38\x49\x72\x3f\x84\x97\x6b\x80\x05\x01\x00\x43\xe7\xd2\x8b\xca\xa3\x00\x81\x0e\x40\xcc\x97\xe3\xcd\xe5\x53\xbd\xf0\x5f\x5c\x06\x7e\xe1\x17\x7e\x01\xbe\xf8\xc5\x2f\x5a\x05\x9b\x03\xe3\x00\xc0\x3a\x4c\x2e\x6f\x22\x30\xe6\xf3\xe6\x42\x00\x14\x17\x16\xf9\xf4\xdd\x07\x93\x1b\x4f\xbe\xb3\xf5\xa1\x2b\x27\xc5\x6f\x16\x95\x78\x56\x68\x51\x00\x20\x47\x62\xbd\xe1\x35\xd7\x80\xaf\x6d\xb3\xda\xee\xed\xc0\x06\xd4\x94\x69\x7d\x28\xf1\x8e\xe8\xad\x12\x7f\x7a\x2b\xda\x42\x7d\xd9\xed\xdb\xa9\xb0\xf3\x3b\x96\xbd\x9c\x4e\x17\x46\x3e\x06\x47\x54\x6e\xe3\xaf\x2c\xc0\x62\x57\x87\x36\x4e\x07\x16\x68\x7b\xb0\xe0\xa3\x57\x07\x22\x1b\x33\xe8\xd5\x93\xcb\xa4\xb2\x3a\x54\x80\xf7\x9a\x10\x51\x3d\xf0\x60\xcb\xa1\x4a\x76\x4e\xb2\x75\xdb\x56\x79\x01\x56\x24\x83\xc8\x69\xeb\xd7\x61\x00\x26\x40\xd9\xbf\x0e\xeb\xd5\xb7\xa7\xa7\x25\xcf\xd1\xf6\x0d\x73\x3a\xcc\x08\x76\x63\xf5\x56\x21\x1f\xb7\x00\x00\x20\x00\x49\x44\x41\x54\xb2\xc0\x4f\x93\xdf\x8d\xed\x26\x8a\x81\xc7\x05\x8e\x7e\x20\x80\xc1\xe9\x84\xa3\x4d\x56\x7d\x3b\x50\x61\xf1\xc6\xff\x47\x15\xc3\x2d\x81\xfa\x18\xe5\x11\xbd\xda\x17\x80\x9a\x5c\x8e\x94\xb8\xb6\x3b\xcf\x3e\xba\xb5\x9a\x3c\xf5\xd0\x2c\xff\x97\x47\x8e\x8b\x7f\xfc\xee\x95\xd9\xb7\x7e\xb4\xb7\x3c\x04\x68\x7f\xff\xc8\x7c\x5d\x68\x1d\x5e\xd7\x80\x96\x9e\x0d\x45\xa0\x05\xc0\xef\x6f\x42\xf9\xbe\xe7\xbe\x3c\x0e\xc0\xe0\xeb\x58\x3d\x38\x7a\x97\x5c\x17\x18\x0a\xa5\x90\x7e\x9c\x2f\x88\x01\x1a\x3e\x39\x2e\x59\x2e\x5a\x57\x5e\x4c\xf2\x61\x82\x1e\x4f\xde\xa2\xd5\x29\x25\x0a\x91\x82\x9e\x5c\x32\x62\x11\x9d\x4b\x5e\x6a\x94\x25\x94\x52\xa3\x22\x31\x65\x52\x65\x9b\x6b\x93\x5c\x3c\x43\x3a\x3a\xdb\x19\xfd\xbe\x10\xde\xbf\x62\x40\x4c\x77\xe2\x6d\x73\x88\xdc\x74\x29\xa7\x8f\x1e\x8d\xaf\xfe\xd4\xc1\xd6\x73\xd7\xee\x8f\xff\xd7\x9d\xa5\xfc\x70\xa6\xc4\x7e\xcd\x2d\x66\xc7\x0a\x4a\x4e\xb2\xc8\xf2\x89\xd4\xf6\x5b\x79\xdf\x71\x73\x7c\xd2\x34\xe1\xcb\x84\xee\x63\x84\x59\xce\xcd\x47\xcf\x54\x2c\xba\x0e\xf8\x8d\x3e\x50\xc6\xf7\x9c\xdb\xdf\x03\x00\xbd\x25\x40\xb6\x6c\x43\x4c\xf7\xb1\x70\xc0\xac\x2b\xc3\x9d\x37\x43\x42\x51\x24\x5a\xd1\x82\x99\x98\xc6\xd1\x58\x07\x61\xd1\xf7\x8a\x3b\x22\x83\x6d\x04\xc7\x45\xcf\xc8\xe4\xf2\xb5\x83\x06\x8f\x09\xd7\x0f\x8f\x9a\x3c\xeb\xc0\x3c\x60\xe6\x01\x02\xda\xb6\xb8\x9a\x93\x02\x98\x2d\x73\xfd\xca\xd1\xd6\xea\x9f\x7e\xb0\x3f\xff\xc7\xef\x5d\x99\xbd\x7a\x6f\xab\x34\x7b\x5f\x96\xcd\xde\x17\xeb\xf3\x69\xbc\xff\xc5\xf0\x53\x4a\xc1\x67\x3e\xf3\x19\x5f\xc4\xc0\x97\x52\x6c\xec\x50\xff\x90\xea\xb7\x52\xea\x90\xaa\xd3\xa6\xeb\xbb\x0e\xfd\x83\x90\xe3\xa5\xa5\x11\x17\x9c\x28\x82\x6b\x11\x34\xc3\xd0\x15\x95\x00\x07\x3d\x97\x9f\xd2\x00\x21\xfe\x29\x3a\x84\x64\x0c\x45\xff\x9b\x48\xb1\x1d\x1d\x02\x71\xbd\x76\xc6\xfb\x59\x4c\x94\xc5\xac\x55\x03\x02\x2b\xe6\x20\xb9\xbc\x12\x93\xab\xf7\x47\xfb\xef\x3e\xdc\x7a\xe6\xd1\x7b\xe3\x5f\xda\x3b\xcb\x3f\x32\x5e\xc9\x27\x64\x7b\x1e\x4b\x67\x1e\x9b\xe0\x38\xfa\x3f\xf0\x4e\xd1\xe9\x00\xb0\xd3\xa3\xa1\x74\xe8\xbd\x3d\x1b\xff\x03\xe6\xac\x8f\x26\xa7\x83\x51\xf8\xab\x15\x2a\x01\x2c\x63\x4f\xe5\xd4\x3e\x08\x7d\xd9\xd2\x3c\x70\xf9\x27\xca\x9b\xdf\xdf\xc2\x04\xf1\x89\xa3\xa2\x7e\x8b\x46\x16\x00\xa0\xfd\x51\x41\xcb\x79\x91\xfd\x38\x02\x97\xd1\xda\xda\x0f\xd1\x4b\xc2\x6e\x53\xac\x47\xdf\xe1\xda\x15\xb7\xc1\x03\x8e\x22\xa0\x78\x94\xb0\x8b\xd6\x4b\x35\x60\xf1\x31\x91\x1b\x4b\xff\x76\xd9\x88\x57\xbb\xd7\x6e\xa2\xd3\xa1\x1d\x07\xed\x98\x21\x7a\xf7\x4e\x4d\xb6\x6b\xaa\x99\xc1\x6a\xb7\xad\x59\xea\x32\x51\x9d\xe6\x5e\x40\xef\xe4\x60\xcc\x05\xb3\x65\x97\xd9\x1c\xf9\xb4\xff\x4d\x1b\xb7\x4b\x61\x18\x70\x38\x00\x48\x1b\xe5\x69\xc7\x37\xb4\x9d\x2c\x28\xbd\x46\x7f\x44\x2d\x54\x0a\x3d\x1d\x97\xe2\x99\xcb\xa7\xc5\xd5\xad\x95\x7c\xea\xf2\x6c\xf4\x8f\xff\xf5\xd0\xd9\x97\x5f\xdb\x9f\xbf\x39\x1f\x29\x73\xfa\x6e\x1b\x79\x61\x7e\xb4\x11\x00\x40\x49\xd9\xb9\x97\x9f\xf9\x99\x9f\x81\x7f\xff\xf7\x7f\x5f\xc7\x07\xd0\x94\xba\x14\x13\xa2\x71\xad\x18\xb8\x6c\x6d\xac\xed\xf6\xd1\x71\x11\x95\x75\xfd\x4e\xca\x0b\xf9\x3a\xc1\x04\x57\x7e\xec\x8b\x38\xfe\xdb\xf3\x6f\xc2\x41\x30\xa4\x73\x53\x2a\x19\xc3\x6f\x68\x0a\x2d\xe7\xa4\xf2\x02\x0f\x3f\xf3\xcc\xd7\x16\xb4\xa3\x42\xa8\x3c\xe6\x39\xd7\xce\xb4\x0c\xab\xdf\xa7\x3e\xf5\x29\x99\xe7\x2d\x5e\x95\x28\xd2\x62\xa2\x2e\xb9\x10\xa2\x05\x2c\x00\x50\xec\xcd\xf2\x9d\x1b\x77\xc7\x37\xaf\x1f\x4d\x7e\xfe\xf2\xc9\xe8\x23\x3b\xcb\xec\x7d\x99\x12\x97\x05\xd4\x4b\x43\x00\x9e\xb7\x6f\xe3\xa4\xa0\x33\xe4\x00\xfe\xb7\x6f\x1b\x9c\xd0\x93\x40\x81\x6c\x74\x24\x91\x94\x90\x3e\xd0\x77\xc4\xae\x32\x7c\x04\xa6\x3b\x28\x0d\x03\x0e\x2f\x5f\xd7\xdb\xb6\x27\xd1\xc8\x0a\xfe\xcc\xda\xf7\x37\x3d\xb9\x4b\xd2\xba\x70\x54\xa9\xf9\xae\x67\x74\xbf\x91\x8b\x76\x78\x3d\xdd\x89\xab\x67\x50\xce\x00\x45\x2c\x39\x5c\x7d\xd9\x20\x51\x00\xd1\x32\xfc\xb9\x36\xa3\x00\x37\xaa\x9d\x99\x71\x8b\x65\x00\x68\xa5\x05\xcc\xe7\x99\x7a\xe5\xee\xb4\xfc\xe2\xad\x4b\xf3\xff\xf1\xca\x43\x67\xdf\x79\x67\x5a\x1e\x95\x99\x9e\x43\xb7\x84\x84\xa3\x2e\xf8\xf0\x3a\x30\xd7\x8e\xaf\x8e\x42\x36\x3b\x35\xf2\x3e\xc4\xcf\xa5\xa4\x75\xf8\x0d\xf5\x95\x29\x6d\x34\x24\x42\x02\x09\xfc\x53\xf4\x59\x0b\x1b\x98\xaf\x8a\xcc\x4b\x8e\x84\x7a\x5c\xc6\x30\xc4\x11\x48\xc9\xe4\xe1\x7b\xc9\x3c\xe3\xf8\x71\x74\x31\x65\x5d\x7a\x99\x97\x47\x0d\x3c\x0f\x09\x78\x1e\xf2\xbc\x34\xb9\xa7\xcf\xb8\x0e\xe0\xe8\x34\x53\x8e\x93\xed\xd3\xd5\xf5\x8c\xcb\xa7\x32\xe1\xa5\x97\x5e\x92\xe8\x2d\xc7\x44\x58\xa4\x10\x42\x36\x5f\x0e\x8d\x84\x10\x23\xad\xf5\x48\x08\x31\x2e\x4a\x31\xbd\x71\x77\xf2\xe8\xd3\x6f\x4f\x7f\xfe\xdd\x87\x5b\xbf\x71\xe5\xb4\xf8\xd5\xed\x55\xf6\xbe\x4c\x8b\xfd\x66\x83\x6e\xd7\xc0\x16\xd8\x40\x46\x50\xa0\x68\x87\x40\x6f\xf3\x82\x01\x25\xa6\x08\xb2\xa0\x34\x6a\xa2\xa1\x2f\x47\x90\x6b\x9f\x3f\x11\xe4\xaf\xb9\xee\x1b\x7a\xbc\xf9\x11\x9f\xad\x22\x2c\xe0\x44\xdf\x5c\xe9\x96\x15\xfc\xb2\x4e\x9d\x16\xe5\x4d\xf5\xec\x36\x78\x02\xfb\x36\xdc\xb5\x3d\xb3\x69\x97\x4b\x8e\x57\x7b\xd7\xc6\x5a\x2a\xcb\x62\x05\x76\xbb\xd1\x7a\xf8\x80\xa5\x60\x32\xbb\xa2\x5d\x04\x44\x43\xff\x79\x08\x04\xf6\x7e\x5f\xca\x11\x75\xa0\xba\x75\xfc\xfa\xd1\x39\x4e\x98\x6e\x95\x01\x9b\x9a\x00\xeb\x4e\x07\x3b\xf2\x86\xb7\xfd\xe0\xe3\x80\x34\x7a\x2e\x5a\x0a\xaa\x4a\xf3\x7f\xca\x13\x50\x79\xab\x2d\x48\xdf\x20\xd0\x64\x98\xba\xa2\x59\xed\x18\x33\xfa\xa0\xb5\xbc\x7a\x17\x96\x18\x65\x4a\xec\x6d\x95\xf2\x91\x0b\x8b\xfc\xea\xce\x22\xcf\xa5\x16\xf3\xc5\x48\xad\x96\xb9\x56\xcd\x59\x2f\x75\x73\x59\x1b\xa7\x50\x75\xa0\xfb\xea\x08\x00\xe0\x43\x1f\xfa\x90\xf8\xd1\x8f\x7e\x84\xed\xa4\xcb\x1e\xfa\xec\x2e\x2e\x87\x6d\x27\xf5\x0f\x3e\xdf\xc2\xf1\xf0\xa5\x90\x7c\x73\x4d\xe5\x52\x70\x81\xfd\x83\x65\x66\x19\x39\x02\xec\x76\xa2\x7a\xba\xae\xa9\x1c\x4e\x3f\x0e\x0b\x50\xfe\x54\x3e\xd5\x81\xa3\xa7\x7c\xa9\xee\xb4\x7c\x8f\x96\xfb\x1c\xda\x55\x39\x9f\x42\x9c\xe3\xa4\xcf\xe9\x33\xda\x19\x2e\x3a\x60\xe8\x42\xc9\xf0\x07\xe8\x0f\x08\xca\x1b\xcb\xc5\x9d\x16\x0b\x98\x7c\x20\xc3\x95\x6f\x3a\xc3\x55\x2f\xae\x7d\xb8\xf6\x72\xf1\xee\xd1\xe0\x23\xfb\x9b\x33\xa3\x64\x43\x2b\xa1\x5e\x16\x32\x80\x65\x24\x84\x18\x5f\x3c\xcb\x2f\x3c\x79\x30\x7d\xfa\xa9\xb7\xb7\x3e\xfa\xe8\xbd\xc9\xc7\x77\xe7\xf9\x07\x8b\x4a\x5e\x97\x20\xa6\x26\x28\x6e\x39\x36\x62\xf8\xb0\x39\xed\xac\x14\x35\xb4\x82\x2f\xd3\x18\xfa\xce\x95\x74\xb4\x36\x30\x68\x0c\x78\xc4\x17\x30\xd8\xe4\x1b\x59\xf4\x0b\x1a\x0b\xfc\x58\xcb\x17\xf4\x94\x59\xe4\x78\xb0\x3e\x8c\xf1\xef\x3b\x46\xb0\x1c\x29\x07\x5a\x70\x0d\xbb\xa7\x6e\x60\x60\x3b\x6a\xcf\x57\x4a\x78\x23\xb3\x43\x1f\x2f\xf0\xe9\x69\xd7\xd7\x01\xf3\xb0\xc0\x28\x2d\x67\xfb\x7a\x10\xed\x92\x4d\xf7\x55\x8f\xd5\x34\x18\x24\x08\x52\x4f\xe8\xb7\xa7\x6e\x96\x0d\x5b\x08\xd4\x21\x45\x4b\x09\xe3\xe0\x7b\xb5\x42\x08\x89\x46\x46\x74\x0f\xa5\x77\xb5\xb5\xc6\x03\x46\x4e\x44\x42\xe3\xc9\xed\xf6\x69\x2b\x8e\x1a\x06\xec\xf1\x27\xcc\xff\x38\x1a\x0b\x60\xd7\xb5\xb3\x96\x06\xdb\x7a\x0a\xc0\xcd\x82\xa7\x8e\x99\x7a\x66\xd9\x0b\x7f\x19\xd5\x36\x23\x02\x55\xb5\xc1\x11\x99\xd4\xb0\x33\x2e\xe5\xd5\xed\x65\x76\x6d\x67\x99\x5d\x18\x97\x42\x29\x09\x67\x8b\x91\x2e\x55\x6d\x79\xb0\x5d\xa2\x4e\xd8\x02\x2f\x1f\xfd\xe8\x47\xc5\x37\xbe\xf1\x0d\x8e\x96\x6d\x46\x47\x72\x01\x14\x97\x1e\xa9\x3c\x86\x96\xe5\x7c\x25\xe7\x03\x31\x70\xe0\xca\x50\xde\x18\x10\xf8\x7c\x97\x64\xe8\x29\xf0\x70\xb5\x0f\x0e\x50\xd0\x17\x69\x0e\x9c\x60\x53\x60\xca\x2b\xe8\xeb\x46\x69\x7d\x98\x40\x9b\x02\x5c\xc5\x4c\xf2\x85\x80\x86\x86\xc5\xb8\xa5\x93\x4d\x6d\x66\x72\x95\x19\x12\x9e\xc2\x3c\xc0\xc1\xc7\xc5\x17\xd7\x11\x97\x05\xb0\x81\x14\xbd\xa7\xbc\x06\x95\xd9\xdb\xdb\x83\xe7\x9e\x7b\x0e\xbe\xf0\x85\x2f\x28\xb4\xf9\x16\x00\xea\x03\xe4\xf0\xe6\x5b\xad\x75\xbb\x9f\x45\x80\xc8\x73\x05\x93\xab\x27\xc5\xe5\x9b\x87\x5b\xcf\x5e\xbf\x3b\xfe\x6f\x17\xcf\xf2\x0f\x8e\x2b\x79\x43\x6a\xb1\x63\xc1\x80\xd6\xe9\xf7\x0d\x7b\x4b\x83\xf2\xe8\x73\x6c\xd3\xb9\x41\xc8\xcd\x7a\xaf\x43\xd5\xc0\x7c\x61\xc3\xf3\x15\xd6\x85\x7d\x9d\xe2\xb8\x5d\xb4\x94\x75\xa7\x93\x9b\xbb\x1d\xf5\xb0\x41\x9b\x49\x5c\x3b\xc4\xe8\xdb\xea\x10\x41\xdc\x5a\x0f\x0a\x1c\x28\x2f\xae\x90\xb9\x8c\x69\x98\xe6\x9e\x2e\x81\x51\x1a\x0a\x82\x42\x55\x60\x9f\x07\xfa\x97\xfb\x2c\x3e\x28\x23\x65\xcc\x20\x50\x00\x3e\x5a\x86\xa7\x57\x27\x26\x33\x34\x0f\xd9\x0c\x47\x05\x5c\xb2\x7d\x3a\x29\xd0\xf3\x55\xa6\x6f\xdf\x9f\x94\xdf\x78\xe3\xc2\xf2\x4b\xaf\x5f\x9a\x7f\xfd\x8d\xdd\xe5\xeb\x27\x93\xea\x04\xba\xa5\xa3\xde\xe6\x5d\x8b\x05\xf4\x96\x8e\x62\x93\x6f\x59\x24\xc6\xf6\xfb\xec\xba\xaf\xfc\x79\x2f\xc7\xa4\xf0\x8a\xdd\xbf\x72\x5e\x29\xa6\xdd\xd7\xd6\x03\x1f\xf9\x8f\xe7\x95\x0f\x15\x71\xf7\xb1\xd1\x09\x1c\x69\xc0\xce\xdc\x57\x16\x47\x4f\x28\xfa\x0b\xa1\x5e\x8a\xe0\x68\x79\x83\x1c\x85\xe3\x9a\x22\x50\xee\x2f\x17\xe6\xa3\xff\x38\xa4\x89\x9f\x51\x3a\xac\xbf\x22\x65\x28\x7a\xb7\xda\xf0\xd2\xa5\x4b\xe2\xe8\xe8\x48\x7d\xfc\xe3\x1f\x17\x1f\xf8\xc0\x07\x4c\x74\x56\x0a\x21\x44\x03\x56\x24\xd4\xfd\x9e\x09\x21\xf2\xe6\x5f\x21\x41\x8c\xb7\x56\x72\xe7\xfa\xbd\xf1\xe3\xef\xbd\xb3\xfd\x4b\x37\x0f\x27\xff\xdb\xde\x3c\xff\x48\x13\x65\x99\xd4\x07\x63\xd9\xce\x15\x6f\x06\x74\x39\x03\x5c\x11\x9c\x8c\x5b\x66\x3f\xf1\x05\x00\xd1\x1e\x24\x16\x07\x10\xa8\x1e\xdc\x92\x41\xbb\xa4\x63\xc9\xed\x14\xa5\x67\x84\xe0\x51\x67\xd7\x9d\xaf\x13\x56\x0c\x2f\x05\x74\x75\xf0\x2c\xcb\x60\x67\x4d\x4e\x82\xc5\xf5\xc2\xd8\x86\xfd\x21\x48\xa6\xb1\xda\xf2\x08\x19\xe0\xc9\x8e\x8b\xb4\x7f\x39\xf0\x80\xda\xb0\x5f\x01\x54\xf7\xa6\x01\x7a\x20\x46\x40\x2f\xba\xd5\x49\x80\x76\x3c\x59\x87\x14\x02\xf4\x22\x09\x66\x7c\x50\x25\xf1\x79\x27\x1a\xeb\x23\xb0\x14\x8d\x36\xfb\xe2\xb3\x62\x9a\x1e\x22\xfd\xdf\x45\xf5\x9a\x7b\xf3\xd7\x81\x2a\xf0\x52\x56\xd7\x81\x08\xa1\x35\xad\x8f\xbe\x51\xea\x74\xc3\xa7\xdf\xa2\xf1\x4f\xf9\xe2\x36\x31\x87\xc7\xb5\x27\xef\x1a\x10\x86\x3f\xcf\xd2\x64\x99\xd5\xb4\x07\x42\x8b\x26\x92\x65\xf7\x19\xb3\x6c\xd6\xca\xb7\x1b\xb7\xd3\x53\xe4\x99\x16\x17\xc7\xa5\x7c\xf8\xc2\x32\x7f\xf8\xc2\x32\xdf\xce\x95\x28\x4b\xa9\xe7\xf3\x91\x5a\x69\xbc\xaf\xbd\x5b\x46\xb2\x5a\x5d\x6b\xad\x9f\x7f\xfe\x79\xf1\xd5\xaf\x7e\x95\xda\xf6\xd0\x92\x0b\x9e\x2e\x8a\xd0\xb9\x1c\x39\xb6\xf7\x86\x86\x4e\x0f\x9c\xc7\x45\xee\xa9\x8d\xe6\x74\x76\xe9\xae\xa1\xcf\x8f\xfa\x20\x4e\x2e\x27\x83\xd3\x1b\x27\x8e\x2f\xe5\xcd\xc9\x89\xc9\xa3\x3a\x98\x3c\x6e\xc5\xc3\xa5\x83\x20\xff\x9c\x6d\x6e\x80\x0b\x26\x0a\x55\x9a\xbb\xe7\x14\xe1\x12\xe7\xf8\x63\xca\x50\x27\x6f\xe4\x87\xc2\x62\xbe\x8e\xc6\xc8\x14\xeb\x43\x4d\x12\x57\x16\x37\x2c\xd6\x0b\xe7\xe3\x01\x8b\x75\xa1\x80\x09\x08\x2f\x2c\x83\x5b\x07\xa4\x9d\xaa\x01\x40\x5c\xbe\x7c\x59\xcc\x66\x33\x3d\x9f\xcf\xb5\xf9\x62\xa8\x01\x29\x82\xfc\xcd\xa1\x06\x2d\x23\x00\x18\x81\x86\x71\xae\xc4\xd6\xde\x59\xbe\xff\xf8\xdd\xc9\xd3\xcf\xbe\xb9\xf3\xab\x8f\x1c\x4f\x3e\x31\x5d\x65\x3f\x9b\x69\xb1\x2f\xb5\x90\x6d\x78\x18\x5b\x30\x63\x10\x99\x70\x8b\xff\x6d\xbd\x3b\x00\xcb\xb5\x4c\x22\x0c\x7f\x7c\x4f\xf8\x08\x26\x1f\x13\xf4\x97\x7e\xb0\xe5\x37\x80\x08\x2d\x5d\x51\x9d\x71\x7d\x68\xdd\xb1\x12\xcc\x2d\x17\x81\xf2\x3d\xeb\xb1\x15\x8c\x3e\x8c\x6c\xe3\x78\x01\xd0\xe1\x64\xce\x46\x31\x45\x05\x21\xeb\xef\x33\xea\xe9\x6e\xfb\xc0\x7e\x1d\x10\x30\xa8\x9f\xa1\xb3\x4b\x7a\xfa\x88\x0e\x40\xb6\xed\x2a\xac\xb1\xd0\xfb\xc6\x87\x34\x04\x1d\x1f\x46\x2e\x3e\xf7\xc6\xe0\x05\xe8\xf0\x42\x0b\x15\x5a\x5a\x6d\xff\x6d\xeb\xa5\x3b\x1e\x08\x6d\x34\x72\xed\x7a\x6b\x2c\xcf\x26\x47\xe0\xb5\x91\xd9\xf6\x69\xd7\x07\xd6\x18\x35\xe0\x82\xdb\xf7\x24\xac\x3f\xed\x18\x36\x6d\xac\x9b\x31\xd0\x2d\x61\x8a\x16\xf8\xb4\x2f\x18\x94\x65\x3b\xce\x84\xcd\xbf\xed\x5f\x7b\x5c\x50\x7d\x5a\xfe\x80\x8c\x72\x2b\x4a\x6c\x8d\x2a\xf1\xd0\x74\x95\x5d\xbb\x38\xcf\xf6\xb7\x56\x12\x56\xb9\x3e\x3d\xcb\xd5\x5c\x09\xd0\x04\x74\x6b\x04\x4e\x45\xa3\xbb\x36\x7b\x5e\x50\xd2\xe4\x9a\xfa\x04\xce\x57\xf8\x7c\x0c\x7e\xc6\xd1\x84\x1c\xb3\xab\x1c\xf7\x9c\xd3\x9d\x26\xea\x8f\xa8\x9d\xa7\xba\x50\x19\xd8\x47\xf8\xea\xc3\xf9\x52\x9f\x1c\x0e\xb4\xf8\xf6\x17\x99\x44\xfd\xa4\x8f\xde\xe8\xcd\x2d\x8d\x61\xfd\x24\x00\x28\x0e\xb8\x70\x28\xc7\xa5\x28\x1d\x34\xb4\x1c\x4d\xb1\x68\x0e\x3f\xa3\x95\xa7\x9d\x13\x0b\x9a\x38\x5d\x05\xd8\xfc\x31\xc8\xc0\xe0\x82\xb6\x03\x1d\x1c\x74\xe2\x50\xf4\xce\x0d\x32\xda\x51\x40\x68\xb8\xc1\x45\xe9\x25\x00\xe8\x4b\x97\x2e\x89\xc3\xc3\x43\x05\xc0\x7f\xe6\xdc\xfc\xcb\x9a\x7f\xed\x7e\x16\x09\x62\x3c\x29\xe5\x85\xab\xf7\x8b\x77\xbd\xe7\x60\xfa\xdc\x7b\xdf\xda\xfe\xc4\x43\xa7\xa3\x8f\x17\x95\x7c\x42\x80\x98\x50\x07\x61\x6b\x88\x0c\x0f\x71\x64\xee\x6d\x1b\xfc\x9b\x9d\x36\xfc\xf0\xb3\x56\x8c\x6e\xad\xa9\xed\x80\x80\x9c\x1e\x4a\x40\x14\x3a\x05\xd5\x36\xc2\x5d\x7e\xed\x28\x90\xdc\xde\x69\xa4\xa6\xa5\xdd\x8e\x44\xe3\xc8\x10\x01\x1b\x38\xaf\xbf\xbf\xa7\x6d\x46\x3b\x22\x60\x74\x40\x7c\x7a\x8e\xc3\x92\x21\xec\xbe\x80\xfe\xdb\x3c\xe6\xd3\xea\xd5\xb6\x8a\x20\x75\x20\xa7\xe3\x9a\xf6\x6a\x9d\x1c\xab\x46\x0f\xc8\xe0\x3a\xb7\x27\xcb\x42\xc7\x44\xa0\x82\xd8\xe1\xeb\xe6\xff\x78\x5f\x46\x17\x11\x69\x78\x03\x8a\xd8\xd0\x08\x0e\xee\xc3\x76\x7f\x0f\xfa\x1d\xa0\x06\x69\xe0\xd3\x6f\x0d\x18\xb1\x37\xc9\xea\x4e\x3f\x1c\x86\xd1\x4d\xab\xd7\xcd\x0e\x00\x48\x3f\x04\x54\xa8\xee\x46\x47\x8e\xbe\xfd\x94\x5a\x77\x2d\xc0\xcd\x85\x5e\x5b\x6b\xf3\xe9\xb5\xb0\x06\x92\xe9\xc7\xee\x86\xd7\x97\x6e\xdc\x35\x7b\xa2\xa0\x69\x23\xcb\xfb\x91\x86\xea\xa2\x99\x9d\x29\xec\xa2\x45\xed\xdc\xc9\x33\x2d\x2e\x4e\x4a\xf9\xc8\x85\xc5\xe8\xda\xc5\x79\x9e\x2d\x46\xea\x78\x31\x52\xab\x4a\xd6\x36\x4e\x83\xd6\x0d\x50\x69\xd4\xd6\xba\x89\xc2\xb4\x7b\x5e\xae\x5f\xbf\x2e\x8f\x8f\x8f\x5d\x8e\x3b\x26\x1f\x3f\x8b\x8d\x2e\x70\xfe\x8f\x2b\x3b\x24\x42\xe1\x2a\xab\xc9\x33\x6e\xc3\x2e\xf5\x27\x2e\xbf\x16\xd2\x8d\xfa\x52\x5a\xc6\xb7\x9c\xe3\x92\xcf\xd1\x71\x75\xa6\x7e\xd7\x3c\xe7\x74\xa7\x2f\xfe\xda\x10\x61\x05\x42\xfb\x40\xd6\x59\xcb\xdb\x64\x72\xe9\x3a\x54\xa7\x94\x72\xbe\x76\xf2\xe5\xd1\xb6\x33\x29\xf5\x53\x36\xb6\x0f\xcc\xe6\x5b\x74\xe2\xad\x79\x6e\xfe\x75\xe7\xb2\x80\xc8\xa5\x86\xc9\x74\x95\xed\x3c\x7a\x6f\x7c\xe3\xa9\x3b\xd3\x5f\x7c\xf8\x7e\xf1\xd1\xad\x95\x7c\x5f\xa6\xc5\x2e\xab\x89\xb6\xfe\xf4\xc0\x09\x67\x60\x39\x16\x22\x90\xd3\x13\x88\xc1\x45\x02\x7f\xd7\x9e\x11\xcc\xd9\x70\x37\xcf\x38\x39\xdc\x17\x40\xd6\xd7\x50\xba\xdf\x16\xbc\x6e\xfd\x43\xd9\x04\xb9\x72\xd5\x09\x80\x38\x56\xa4\x0b\xe6\x60\x01\x9f\x44\x7d\x6c\x89\x0c\x78\x13\x44\x7e\x4f\x6b\xab\xf5\x81\xeb\x37\xab\x8c\x86\x66\x39\xa7\x43\xaf\x66\x89\xa3\x05\x22\xad\x5c\x02\xa6\x30\x98\x44\x4c\xa9\xd4\xae\x5d\x50\x0b\x35\x07\xab\x58\x80\x0a\x3b\x6e\x0b\xd0\xe8\x16\xd8\xb5\x8e\x9c\x01\xb7\x58\x4e\x7f\x39\xb0\xd1\xca\x6a\xbb\x4e\x3e\x06\x39\x1a\x3a\x00\xd3\x45\x24\x34\xfa\x90\xc7\xfe\x69\x89\xfe\x1c\xec\x9f\x5d\x84\x0f\x9b\xa3\xdd\xad\x09\x00\xc1\xbf\x1d\x66\x97\x63\x7a\x5b\x03\xe0\x9f\xd4\xc0\xe3\xb4\xaf\x0b\x80\x16\x7a\x59\x4a\x7d\xeb\xee\xa4\xfc\xa7\x6f\x5f\x3b\xfd\xfb\xd7\xf6\xe7\xaf\x1c\x8f\xab\xa3\x4a\xea\x39\x08\xeb\xe0\x3a\xf3\xa3\x8d\x00\xc8\x36\x06\xf6\xbc\x84\x6c\x71\x8c\xdf\x0a\xd9\x5a\x8e\x1e\x3c\xcf\x7d\x7a\xc6\x96\x1d\xea\x6f\x63\xea\x9e\xd2\x0e\xa9\xf2\x31\xfd\x50\x7e\x5e\xfd\x32\x86\x88\x43\x3c\x14\xc9\x99\x6b\x0e\x39\xb9\x94\x08\xd1\x18\xba\x18\x44\xeb\x42\xdb\x29\x1d\x4b\x91\x2e\xa7\x2f\x57\x3f\x6c\x13\x29\x52\xa5\xeb\xaa\x98\x8e\x76\x18\x87\x74\x39\x04\x8a\x79\x5b\x79\x45\x51\x40\x55\x55\x1a\x81\x16\x89\x3e\x39\x34\xe7\xb3\xe4\xd0\x44\x5a\x84\x10\xb9\xa8\x7f\x3c\x6d\x6b\x7f\x36\x7a\xe8\x99\x3b\xd3\xf7\xff\xf4\x1b\xdb\xff\xfb\xd5\x93\xe2\xbf\x4f\xca\xec\xbd\x19\x88\x2d\xec\x04\xf1\x4b\xa0\x79\x13\x6d\xff\x76\xfe\xa6\xd5\x48\x00\x80\x59\x6b\xe7\xa0\x80\xf1\x53\xdd\x72\xbf\xed\x8c\x84\xc0\x65\x04\x74\x54\x8c\x83\xa5\x96\xb2\xbd\xec\x1c\x40\x67\x6e\xed\x5f\xdb\x15\x86\xb8\x71\x5a\x5d\x1d\xec\xaf\x42\xe8\x1e\x92\xee\xcd\x1e\x1d\xaf\x27\x04\x72\xb0\xb4\x0e\xb8\x36\xfd\x3a\xd0\x36\xe8\x3b\x61\x68\xdb\xbe\x17\x99\x01\xd1\xbe\x00\x5b\x83\x93\x78\x33\xfc\xdb\x34\x18\x2c\x58\x75\x30\x4e\x1c\x04\x58\xdf\xf2\xf2\x6b\x2d\xb6\xa2\xa4\x36\xf6\xb5\x5d\x99\x3e\x68\xe9\xfa\xb6\x55\x5b\xd8\xe3\xa5\x5e\x4e\x12\x96\x33\xaf\xc7\x60\xd3\xbe\xe4\x00\xb9\x76\x19\xd2\xd2\xa2\x1b\x47\x75\x30\xab\x01\x4a\x40\x96\xa8\x04\xea\x63\x81\x75\x13\xed\x9e\x1a\x21\xfa\x75\xea\xe6\x8b\xfd\xb9\x7e\x57\xd7\x4e\x27\x8d\x80\x92\x0d\x7e\x85\xd5\xbf\x1d\x28\x33\x32\xd1\x12\x17\x91\xd1\x8d\x15\x3c\x7e\xbb\xa8\xa2\x69\xcc\xfe\x27\xeb\xdd\xbc\x10\xa2\xfb\x02\x49\xa3\x76\xac\x71\x9e\xb0\x36\xbe\x77\x80\xad\x1b\xd7\x56\x9f\xa1\xb6\xa8\xfb\x04\x40\xd4\x5f\x1e\x5d\xda\x2a\xb3\x9b\x0f\xcd\x46\x0f\x4d\x57\xd9\xc9\xc9\xa4\x3a\x59\xe6\x6a\x51\xef\x7b\x11\xca\x34\x87\x89\xb8\x00\x6a\x5e\x66\xd9\x08\x27\xea\x33\x8c\x2a\x46\x1d\xce\xd6\xfb\xa2\x1d\x5c\x39\x9a\xb0\x4d\x8f\x4d\xd8\x96\x73\xbe\xcd\xe7\x97\x5c\x7a\x73\x3e\xd3\x55\x8e\xee\xc5\xf1\xf9\x56\x1f\x7d\x28\x6a\x85\xf9\x60\xf3\xe4\xf3\xb9\xae\xf2\x34\x09\x00\xd0\xe6\x24\x32\xac\xa0\x72\xfc\xf5\x5d\x03\xf8\x81\x43\x6c\x07\xbb\xf4\x48\x41\xd4\xbe\x64\xe8\x42\xb4\xbe\x28\x0e\x6d\x17\x0e\x3d\xfb\xda\xc9\x75\x1f\x2b\xb3\x95\xb7\x5c\x2e\x2d\x46\x68\x89\x48\x02\xb4\xe7\xb4\xe4\x4d\x99\x02\x00\x0a\xa9\x61\xf2\xe8\xbd\xf1\xd5\x67\xde\x9a\x7e\xe4\xd1\x7b\xe3\xff\x3e\x5d\x66\xcf\x65\x5a\xec\x51\xdf\x44\x9d\x87\x25\xa7\x45\x32\xc8\x19\xb5\x46\x97\x5b\x10\xb1\x0a\xb7\xb9\x14\x24\x19\x02\xa6\x14\xcb\x87\x73\x9f\x6d\x79\xec\xe8\xb1\xb3\x40\x06\x18\xf0\x35\x90\x59\x85\xca\x60\x39\xf6\xdf\x16\xfd\x58\xbc\x63\x6a\x43\xdb\xa0\xad\x93\x36\x4e\x13\x6c\x7d\xd1\x5b\x6f\x6f\x63\x2a\x70\xed\xd0\x39\x90\x1e\x18\x22\xff\xb7\x1c\x8d\x85\x3f\x2c\xae\x68\x3c\x8a\xd6\x3a\x0a\xbb\x88\xb4\xea\xa3\x6d\x30\xd7\xca\x12\x44\x5f\x32\x10\xda\x5b\x82\x85\x0c\xe0\xb0\x37\xde\x22\xd0\x05\xba\xfd\xe4\x1b\x03\x3f\xae\x71\xa8\x23\xc6\xe3\xd2\xd6\x4d\x23\x79\x0d\xe0\x13\x75\x7f\x70\x23\x1d\x3b\xf6\x5a\xbc\x35\x52\xf8\x29\x41\x41\x08\xe9\x2f\xb3\x71\x98\xab\x8b\xf5\x82\x41\x32\x31\x79\x0b\x86\x9a\x1b\x2d\x00\xac\x23\x07\x10\x31\x3d\x28\x52\xf7\xf4\xc3\xd2\x9c\x13\xb1\x03\xdd\x60\xc6\x89\x80\x4c\xc1\xfe\xee\x3c\xff\xf8\x7b\xde\x9e\x3e\x76\x71\x96\xff\xdd\xb7\xaf\xcd\xfe\xf9\x87\x97\xe6\xb7\x4e\x8b\x0a\x34\xc0\x1c\x95\xb6\x7e\xef\x88\xa4\x98\x88\x45\x8c\x8d\xe7\xec\x2c\x8e\x86\xc7\x46\x0b\x42\xd1\x05\x17\x1d\xa5\x8d\x89\x40\xe0\xf2\x2e\x3f\x11\x2a\x47\xe9\x63\x22\x4c\x98\x3e\x24\x93\x2b\xc3\xe9\x34\x38\x45\xf9\x88\x44\x81\x9b\x5e\x42\xda\x14\xbf\xd4\xd0\x1e\x8d\x72\x98\x44\x43\x7d\xa9\xcb\x43\x2e\x80\x12\xb5\x2c\x24\xd0\x2f\xaa\xbe\xf8\xe2\x8b\xad\x6e\x06\xac\x20\xe0\x62\x1d\xd9\x0f\x00\x45\x51\x8a\xe9\x7b\xdf\xda\x7e\xe2\x3d\x6f\x6f\x7d\xe2\xf2\xe9\xe8\xa3\x45\x29\x6f\x0a\x80\x02\x3b\xfb\xe4\x11\x41\x52\xcf\x58\xd2\x6b\x22\x03\xc3\xf2\x14\xde\xdc\x03\xf6\x79\x62\x9d\x7a\xfa\x30\xfa\x86\xea\x64\xf1\xea\x63\x0c\xb7\x6a\x9e\x0a\x78\x7c\x83\x33\x1f\x5f\xd7\x7b\x55\x40\x69\x00\xd0\xa2\x1e\x53\x4a\x68\xa5\x04\x94\xcd\x5f\x55\x49\x5d\x9a\x7f\x4a\xe8\x52\x09\x50\x5a\x80\xd2\xa0\x41\xd5\xed\xab\x94\xd0\x4a\x49\x50\xba\x19\x97\x02\x00\xa4\x06\x29\xb4\x90\xf5\xdf\xe6\x1a\x40\x66\x4a\xc8\x4c\x43\x9e\x29\x91\x67\x4a\xe4\x52\x8b\xfa\x39\x80\x94\x0d\xbd\x54\xf5\x41\x86\xa0\x41\xd2\xb7\x77\x7a\xed\xaa\x77\x4a\x17\x7b\x69\x63\x18\x05\x68\xa2\xc6\x73\x6a\x67\x6e\x2a\x0d\x98\x0b\xe1\xf1\x19\xae\x33\x2d\x56\xd3\x6b\x55\x4a\x78\xf3\x64\x5c\xfd\xd3\x2b\x0f\x9d\xfd\x9f\xdf\x7e\xf8\xf4\xeb\x07\x3b\xab\x23\xe8\x7f\x32\x0d\xd0\x8c\xb5\x81\x9f\x48\xff\xb8\xd2\x26\x96\x76\xce\x33\xfd\xb8\xfd\xf4\x5a\xf2\xcd\xdb\x78\x4a\xb4\x22\xb4\x36\x96\xc2\x6b\x5d\x99\x29\xfc\x7c\x6b\x95\xa9\x65\x39\x40\x83\x79\x85\x90\xe9\x10\x64\x0b\x00\x00\x7f\xf4\x47\x7f\x04\x7f\xf1\x17\x7f\x01\x00\x28\x22\xd0\xfc\x38\x22\x40\x7b\x84\x7f\xf7\x4b\xce\xcd\xdf\xfd\xd3\xd1\xde\xfb\xde\x9c\xbe\xff\xc6\xdd\xc9\x27\x2e\xce\xf3\x0f\x8f\x2a\x71\x55\x00\x14\x56\x44\xa0\xf7\x66\x6e\x27\xec\xa8\xe9\xa9\x9d\x98\x05\xf3\x26\x6e\x45\x15\x28\x7d\x6c\xaa\x65\xd7\x48\xc0\x02\x05\x2c\x68\xe9\x5e\xa3\x5d\x27\xf4\xf6\x2b\x86\x9d\x61\xb7\x69\xd7\xa5\x6f\xaf\x4e\xe8\x55\xdb\x55\x1e\x93\xf5\xde\xce\x05\xd8\xdb\x09\xf0\xeb\x37\xa3\xae\x6e\xff\x69\xd0\x0d\x28\x51\x42\x97\x4a\x42\x59\x09\xad\x2a\xa9\xcb\x32\xd3\xe5\x32\x53\xf3\x45\xa6\xe7\x8b\x5c\xcd\x97\xb9\x5a\xae\x32\xbd\x2c\x33\x5d\x2e\x32\x35\x5f\x66\x6a\xb9\xcc\x75\xb9\xcc\xf4\x72\x95\xa9\x06\xb4\xd4\x00\x45\x77\x60\xa5\xe5\xaf\xeb\x63\xde\x15\x8e\x58\x34\x60\x05\x04\x80\x14\xba\xb9\x07\x80\x4c\x09\x29\xb5\xc8\xa5\x06\x99\x2b\x91\xe7\x4a\xe6\xa3\x4a\xe4\xa3\x4a\xe6\x45\x25\x8a\xa2\x14\xc5\xa4\x94\xc5\xa8\x92\x93\x71\x29\x26\x45\x29\x8b\xa2\x92\x93\x51\x25\xf2\x5c\x89\x22\xd3\x90\xe7\x4a\xe4\x52\x89\x5c\x68\x21\x6b\x59\xa2\x96\x21\x34\x68\xb3\x2c\xa4\x51\xfb\xa1\x36\x36\xe1\x02\xe7\x86\x62\x14\x66\x10\xa2\x1f\x85\xc1\x7b\x52\xba\x50\x11\xd9\x0b\xd2\x6c\x40\x11\x34\x02\xd9\xcc\x91\x36\xcc\x22\x6c\x59\x16\xd8\x46\x7a\xf4\x3e\xe3\x47\x7a\xf7\xbe\x00\xd7\xf6\xc0\xc5\x23\x5c\x37\x8d\x20\x48\xe5\xed\x7d\x52\x35\x7d\xff\xf3\x74\x3b\xb5\xc0\x84\xce\x33\x1a\xa5\x01\x52\xc7\xb6\x2c\x8d\xec\x68\x00\x10\x32\x57\xfa\xda\xce\x22\x7b\xe1\x5d\xc7\xc5\x9d\x37\x76\x17\x6f\x1e\xec\xac\xcc\x59\x2f\xad\x3d\x6b\x7e\x26\x20\xb4\xd7\x24\x25\x2a\x12\x93\x42\x2f\x99\xf8\x9e\x7b\xc1\xa5\xd1\x14\x80\xbe\x5e\x98\x5f\xea\xaa\x42\x6c\x3d\x7d\xcf\xd6\x91\xe9\xe2\x47\xf3\x5d\xc1\x02\xea\x3b\x5d\x6d\xe9\x2a\xa7\x72\xe6\x21\x97\x62\x14\xf4\x55\x2a\x96\x77\x68\x59\x26\x46\xa7\x54\x59\xae\xb2\xb1\x60\xc6\x17\x7a\x73\xc9\x8e\xd5\xbb\x2d\xb3\xb7\xb7\x07\x47\x47\x47\xb0\xb5\xb5\xd5\xdb\x88\x8b\xa2\x2d\xe6\x5c\x96\xfa\x50\x39\x0d\x45\xa6\x44\xbd\x34\x74\x67\xfa\x91\x77\xdd\x2b\x7e\x7d\x67\x99\xbd\x3f\x57\x62\x0f\x40\xf4\x7f\x60\x13\x6f\x10\x64\x12\x76\xd4\xfc\x2e\x96\x8e\x4f\x07\x2e\x98\x2f\x75\x0c\x19\xd8\xc6\xd2\x0a\x8d\x23\x19\xb6\x85\x44\x0e\x02\x19\x52\x0c\x6a\x88\xb6\xe0\x36\xc9\x9d\xf1\x17\xa8\x2e\xda\x2a\x63\x1b\x5d\xbc\x81\xb4\x97\x04\x23\x93\x0b\xcb\x08\x47\x11\xda\x20\xe4\x94\x33\x25\x34\x28\xd9\x45\x48\x4a\xa9\x97\xa5\x54\xcb\x45\xae\xe7\x67\xa3\x6a\x36\x1f\xe9\xf9\x22\xaf\xe6\xf3\x5c\xcd\xcf\x46\xf5\xbf\xf9\xa8\x06\x27\x06\xac\x54\x42\x97\xba\xde\x54\x59\xea\x0e\xa0\x28\x55\x03\x13\xa5\x41\xab\xa6\x5d\x7b\x60\xdd\xf8\x60\x00\xa8\xc8\xb3\xac\x0e\xe8\x00\x00\x32\x4a\xc2\x5c\x6b\x00\x09\x42\x36\xc0\xa6\x8b\xca\xd4\xd7\xb9\xd4\x42\x66\x4a\xe4\x23\x25\xf2\x1a\xb4\xc8\x62\x5c\x8a\x62\xba\xcc\xa6\xd3\x55\x36\xd9\x5a\xc9\xe9\x64\x25\x27\x93\x52\x4e\xc7\xa5\x9c\x14\xa5\x2c\x72\x05\x45\xae\x64\x51\x47\x72\xa0\xe1\xdd\x6d\x5a\x35\xfb\x82\xec\x86\x35\x4e\x9d\x71\xb0\x68\x53\x30\xbb\xdf\x0a\x3b\xe2\x66\x6c\xb6\x5b\x53\xdb\x4d\xaa\x35\x50\xea\x30\x0e\x06\xae\x5d\xc7\xe2\x8d\xb7\xf5\xd2\x93\xe8\xe6\x09\x5d\x97\x69\x8a\xe2\x1a\x00\x34\xfb\x96\x5a\x5d\x70\x32\x6d\xd0\x7d\x49\x45\xeb\xdc\x91\xa2\x76\xb0\x5b\xc5\x6a\xb6\x0e\x0c\x22\x18\x22\x0c\x78\x83\xe6\x5c\x1c\xe8\xcd\x09\x8d\xeb\x84\xf6\x22\x99\xf6\x55\x00\xe5\x32\x57\x77\x0e\xb6\x57\x3f\x3a\x9e\x94\x33\xe8\x7e\xdc\x55\x61\x79\x38\x3d\xfe\xf8\xe3\xf2\xb5\xd7\x5e\x4b\x59\xd6\x00\x08\x3b\x4a\x5f\x59\x57\x9e\xcf\x51\xfb\xf2\x5d\xbe\x2c\xf4\xdc\xf5\x12\xec\xd3\x2b\x14\xcd\xe7\xf8\x0f\xf1\xa5\xdc\xbd\xe1\x25\xa1\x2f\x33\x14\x5d\xe2\xca\x59\xbe\x3a\x67\x1e\x1a\x86\x58\x40\xc8\xb9\xc7\x76\x3e\xf7\x6c\x68\xb8\x68\x48\x64\x67\x5d\xb9\xbe\xe5\x1c\xdc\x66\x5c\x87\x72\x13\x85\x96\xe1\xfa\x00\x00\x00\x7e\xf9\x97\x7f\x19\x1e\x7e\xf8\x61\xa9\xb5\x36\x13\xda\x7c\xee\x9c\xa3\x88\x8b\x39\x09\xb7\x90\x20\x8a\xc9\x4a\xee\x3c\x7e\x77\xf2\xd8\x7b\xde\x9e\xfe\xea\xc3\xf7\x47\x1f\xdb\x5a\x65\x4f\x4a\x0d\x3b\x02\x84\xc5\xbb\x35\x58\xc2\xb5\x23\xc3\x4e\x9d\x11\xed\x36\x7e\x62\xb3\x68\xbf\x7d\xe2\xdf\x8d\xb6\xb1\x05\x95\xd5\xf2\xec\x39\x10\x87\x56\x18\xa7\x10\xbb\x6c\xe9\xd3\x93\xd1\x61\x09\xee\xfc\x10\x9b\x25\x7a\xde\x62\x27\x62\xa0\x49\x19\x4b\xa6\xe8\xf8\x60\x90\xc5\xbd\xe1\x9a\x37\x5a\x00\x0d\x26\xea\x51\x49\x55\x96\x52\x2f\x57\x99\x5e\x2e\x73\x3d\x3f\xcb\xd5\xec\x6c\x54\xcd\x66\x85\x9a\xcd\x8a\x6a\x76\x5a\x54\xb3\xb3\x91\x9a\xcf\xf3\x6a\xbe\xca\xf4\xb2\x92\xba\xac\x04\x2c\x95\xac\x41\x4a\x25\x41\x69\xa1\xcb\x3a\x72\x02\x15\x00\xa8\x46\xba\x02\xd0\xf5\xb8\x33\x5f\x70\x68\xad\x00\x7d\xb9\x02\xcc\xfc\xc6\x11\x06\xec\x58\x84\x34\x7d\x66\x7d\xd5\x06\xd0\x8c\xe3\x0a\xda\x31\x6a\x18\xe1\x7b\x03\x6a\x46\x75\xb4\x46\xc8\x4c\x41\x9e\x69\xd1\x2e\x33\xe5\x4a\x14\x75\x94\x46\x16\xe3\x52\x4e\xb6\x97\x72\xba\xb3\xc8\xa7\xdb\xcb\x6c\x77\x6b\x25\x27\x93\x95\xdc\x29\x2a\x51\x8c\x2a\x59\xe4\x4a\xe4\x59\x03\x88\x84\x06\x49\x47\x42\x0b\x28\xac\x68\x84\x0d\x88\x0d\x7d\x7f\x8c\x22\x70\x84\xf8\x9a\xcf\xac\xfb\x40\xa2\x9f\xba\xaf\x75\x44\x3b\x86\x35\xb3\xe9\xb6\x3d\xc8\x4f\x77\x7a\xb5\x5a\x0a\x4e\x3b\x5c\x4d\x34\xca\xf0\x38\xb7\xf8\xe3\xb9\x29\x28\x4e\xee\xed\xb5\xc1\x91\x20\x0b\xdc\xbb\xd4\x10\xfd\x83\xfb\x3a\xd0\x07\x6a\x91\xab\xdb\xb7\x2e\xce\xff\xed\xfb\x97\xcf\xbe\x7f\x77\x5a\x2e\xa1\xf3\x47\x38\x82\x6c\x81\x98\x06\xb4\x98\xc4\x45\xbd\xb9\xe4\x72\xee\x3e\x1f\xe0\x7a\xeb\x8f\xe5\x1d\x02\x03\x31\xbe\x28\x25\x3a\x12\xa3\x63\xaa\x2f\x0c\x01\x24\x57\x1d\x63\xdb\xdb\xf5\x22\xef\xf3\xdb\x00\x80\xd0\xad\x83\xe1\x3a\xe1\x36\x1f\x7d\x0a\xd2\x8d\x2d\x3b\x94\x6e\x68\x72\x75\xa4\x8f\x2e\x76\x50\xf7\x74\xbf\x7a\xf5\x6a\xfb\xcc\x9c\xcf\x62\xf6\xb3\xb4\x11\x96\x06\xb8\xe4\x5a\x4c\x76\xe7\xf9\xde\xbb\x0f\xb7\x9e\xba\xf9\xce\xe4\x97\xaf\x9c\x14\x1f\x1d\x97\xe2\x86\x00\x98\x58\x67\x60\x34\xc9\xb2\x3b\x38\x84\xcd\x28\x86\xe9\xf1\x9b\xa8\xeb\x08\x74\x6b\x99\xa6\x7b\x65\xf4\xa4\xce\x98\xf3\xfc\x90\x0e\x0e\xa0\x42\x93\xb3\xbe\xa2\x1f\x9a\x17\xa8\x10\x17\x1d\xea\x87\xeb\xfb\x06\x9e\xd3\x00\x7f\xa2\x6b\x74\xd0\xe8\xa9\xd9\x63\x62\x40\xca\x7c\x54\x9d\x9c\x16\x6a\x76\x5a\x94\x27\x27\xe3\xea\x64\x56\xa8\xd9\xd9\x48\xcd\xe6\x79\x1d\x41\x29\xb3\x9a\x6e\x25\xf5\xb2\x94\x7a\xa9\xa4\x2e\x35\x40\x05\xf5\xfe\x15\xf3\x49\xa9\xb9\x56\xc8\x01\x28\x00\x50\xcd\x4b\xbe\xc9\xaf\xc7\x5a\x43\xe3\x02\x2d\xe6\xbe\xf7\xa5\x55\x03\xa4\x09\x1d\x05\x2f\xd2\xca\x17\xd6\xbd\xd4\x00\x52\x81\x96\x42\x0a\x09\xa0\x65\x99\x81\x6c\x5a\xa8\x76\x66\x1a\xa4\xd4\x30\x92\x5a\xe4\x99\xaa\x97\x90\x9a\x65\xa5\x62\x5c\xca\xc9\x64\x25\xa7\xd3\x55\x36\xdd\x5e\x64\xd3\xed\xa5\xdc\x99\xae\xb2\xe9\x74\x29\xa7\x93\x52\x4e\x47\x95\x2c\x32\x25\x8a\xac\x06\x34\xd2\x00\xf4\xee\x33\xe3\x7e\xdf\x5a\x11\x8a\x36\xd2\x06\x1d\xf2\x84\xee\xde\x8c\xc5\x6e\x15\x84\x44\x48\x4c\x79\xe8\x3a\xbd\x03\xa9\x60\x8d\x35\x1b\xf8\xda\x60\xa6\x8d\xa1\xd0\x73\x59\x1a\x25\xf0\x67\xdb\x86\x8b\x05\x40\x88\x1e\x06\xbb\xb5\xd1\x26\x8c\x43\x9a\x33\x62\x7a\x9f\x9c\x53\x99\x16\x7d\x37\xaa\x7b\x5f\x3f\xb5\x20\xa6\x2e\xb1\xcc\xd4\xd1\x9b\xbb\xcb\xaf\xfe\xe7\xd5\xd9\xbf\xbf\xb5\xbb\x38\x5a\x4a\x65\x00\x56\xfb\x13\x25\xe8\x63\x03\x25\x84\x80\x97\x5e\x7a\x49\xa2\x7d\x2e\x9c\x33\xf7\x81\x9a\x14\x3f\xe6\x8a\xa0\x84\xe8\x63\xe5\xd1\x08\x8b\x4f\x1f\x6e\x65\xc0\xb5\x5a\x10\xf2\xb7\xbe\xe0\x84\x4f\xb6\xef\xda\x45\x3b\x84\x77\x2c\x58\x84\xfe\x72\x81\x9d\x7c\xa8\x2a\x26\xc5\x38\xe5\x50\x83\x84\x74\x8a\x95\x1d\x3b\x58\x63\x13\xd7\xc8\x5c\xb4\x24\x75\x70\x99\x32\x12\x00\xd4\x6f\xfc\xc6\x6f\xc8\xeb\xd7\xaf\x1b\x43\x60\x96\x88\xda\x37\x12\xf3\x5b\x43\x42\x88\x42\x6b\x9d\x17\x95\x9c\x5e\x3e\x1d\x5d\xbd\x79\xb8\xf5\xec\xcd\xc3\xc9\xaf\xee\x9d\xe5\x1f\x2e\x2a\xf9\x18\xd4\x6f\xb5\x00\xd0\x19\x1a\x76\x4d\xa8\xf7\x12\xe5\x83\x04\xe8\x31\x31\x62\xdd\x82\x38\x8a\x34\x60\xcb\x4e\xd9\x10\x27\xc0\xad\xac\xd8\x25\x75\x6b\xc0\x0d\x51\xef\xd3\x6b\x73\x8d\xbc\x08\x7d\x93\x04\xcb\xcc\x3b\xaa\x88\xce\x6f\xa1\x0b\xfd\xf5\x2d\xfe\x30\x94\x69\x31\x6d\xd3\x29\xd0\x50\x22\x90\xb2\xcc\xd4\xf2\x6c\xa4\x66\xb3\x42\x9d\x9c\x16\xd5\xc9\xfd\x71\x75\x72\x32\xae\x4e\xce\x8a\xea\x64\x9e\xab\xf9\x22\x57\xf3\x55\xa6\xe7\xa5\xac\x23\x2a\xba\x8e\x9c\x94\x0d\x20\x29\x1b\x1d\x4b\x00\x50\x02\x84\x02\xf4\x45\x06\x02\x2d\xed\x3f\x04\x4c\x54\x53\x37\x6c\x04\x71\x1e\x6d\x03\x85\xae\x7b\x51\x17\xe8\x40\xb5\x33\xf2\x82\x36\x8f\x9b\x3c\x0c\xc0\x25\x90\x31\x8e\xf6\x6c\x49\x25\x40\x2a\xd0\x79\x99\x81\x5c\x80\x96\xa7\xf5\x52\xb7\x14\x0a\x46\xb9\x16\xf9\xa8\x8e\xc8\x4c\x8a\x4a\x4c\x26\x2b\x39\x99\xae\xb2\x9d\xed\x65\x36\xdd\x59\x64\xbb\x35\xa0\xc9\x76\xb6\x56\x72\xa7\xa8\x64\x31\xaa\x44\x0d\x66\x50\x44\xa6\x73\xea\xfd\xbd\x21\xdc\xf8\xa0\xd3\x47\x50\x5a\x32\x18\x71\x9e\x46\xf7\x1a\x65\x38\xc7\x10\x40\x3b\xc2\xf0\x98\x17\x88\x21\x8d\xc0\xd0\x68\xa4\x70\xe9\xc1\xec\x71\xa1\x9f\x89\x5b\xd7\xe8\xf3\xfa\x7e\x14\xb2\x6f\x39\x34\x2e\x0b\x02\x56\x52\xcd\xdf\xd9\x5e\x7d\xe7\xbb\x57\x66\x5f\x7b\x63\x77\x79\x67\x91\x6b\xd5\xec\x17\x92\x74\xdc\x08\x21\x14\x8e\xf2\x35\x4b\x45\xe6\x31\x05\x17\xd4\x16\x0f\x7d\x41\x0e\x45\x38\x62\x7c\x85\x2f\x02\x8f\x75\x08\x05\x07\x52\x7c\x52\x4c\x04\xc9\x47\xeb\xab\x17\xa7\x53\x4c\x04\x67\x28\x3f\x6f\x1b\x63\xe0\xe2\x2a\x94\x1a\x71\x09\xd1\xa4\x94\x77\x0d\x94\x21\x11\x97\x18\x70\x14\x42\xce\xbe\x67\x34\xb9\xe4\xe1\xfa\xf8\xde\x16\x14\x00\xc0\x8d\x1b\x37\x70\x9e\x99\xd4\xed\x19\x2d\x66\xf3\x2d\x68\x28\xb6\x56\xd9\xce\xc3\x27\xc5\x23\x4f\x1c\x4c\x3e\x70\xfd\x68\xf2\xab\xbb\x8b\xfc\x03\x99\x12\x57\xad\xb7\xfb\x36\xec\x2c\x78\xeb\xd8\xcb\x13\x76\xb6\x79\xa3\x34\xc6\x1d\x19\xc7\x9e\x11\xb3\xde\xe0\x0c\x99\x23\xc0\xdd\xd9\x42\x67\x34\xa5\x7d\xde\xa0\x0f\x81\x7e\x03\xc6\xec\x2f\xc0\x6f\x86\x3d\x5b\x2a\xec\xaa\xf5\x3f\xf5\x44\xda\x59\xc6\xba\x71\x18\xcc\x33\x6e\x8f\x0f\xae\x87\x6e\x32\xca\x7a\xb3\xec\x72\x95\xa9\xe5\x22\x57\xf3\xd3\xa2\x32\x20\xe5\xf8\x74\x5c\x5f\x9f\x8d\x9a\xa8\xca\xa8\x9a\x2d\xea\x65\x9f\x25\x08\x58\x41\x3d\x16\xda\x1f\xa6\x6b\xa2\x26\x25\xca\xef\x81\x15\xe8\xc6\x57\x0f\xbc\xe0\x08\x0c\xf4\xe7\xb9\x33\xd2\x42\xee\x7b\x1b\x53\xc9\x12\xa6\x49\x56\xa4\x85\x82\x16\xf4\xcf\xca\x43\x20\xc6\xfa\xac\x1f\xfd\x38\x28\x98\x48\xa3\x96\x20\x97\x5a\xe5\xab\x4c\xc8\xd3\x51\x95\x0b\x21\xa4\xd0\x30\xca\x94\x28\x8a\x52\x4c\xb6\x56\xd9\x74\xcb\x00\x99\x45\xb6\x7b\x61\x91\xed\x5c\x58\x64\xbb\x0d\x90\x99\x16\xa5\x9c\xe4\x4a\x14\xb9\xf9\xf2\x09\x2f\x71\x98\x3e\x44\x51\x17\x6b\x73\xab\x00\x70\xec\xc1\x6d\x89\x08\x98\xeb\x1e\x19\x52\xad\x3b\xe7\x6e\xa2\x24\xac\x40\xb0\x3e\x53\xb6\xa2\x27\x2d\x89\x06\x0c\x61\xb0\x5e\x9a\x8c\x7f\x3b\x8a\xc8\x9f\xb8\x8c\x0f\xbc\x03\xe0\x0f\xdf\xb3\xa2\xa8\xd6\xbe\x19\x3b\x4b\xd7\xda\xa9\xe3\x49\xf5\xfa\xf7\x2f\xcf\xbe\xfa\xc3\xbd\xc5\xad\xf9\x48\xb5\x67\x3a\xa0\x76\xea\x45\xf5\x4c\x42\x4b\x45\x31\x8e\x78\x68\x94\x85\x8b\x66\xb8\x64\xf8\x5e\xec\x39\x1f\x40\xf3\x52\x80\x50\x2c\x8d\xcf\xf7\xf9\xf8\xad\x1b\xa8\x70\xc9\x8f\x8d\xd6\x44\xaf\xd0\x70\x11\x17\x5f\xc8\x27\xe4\xf0\x53\x97\x86\x42\xe0\x82\x22\xea\x14\xfe\x1c\xf8\x01\x86\xce\x55\x7e\x08\x12\xf6\x0d\x06\x7a\xed\xa2\x87\xf7\xbc\xe7\x3d\xf0\xbd\xef\x7d\x0f\x5e\x7c\xf1\x45\xfa\x06\x62\x8c\x79\xde\xe4\x15\x50\x6f\xc2\x9d\x6c\x2f\xe5\xce\x23\xc7\xe3\x1b\x4f\x1c\x6c\xfd\xe2\xa3\xf7\xc6\xbf\xb2\xbd\xcc\xde\x9f\x69\xb1\x6b\x87\x9e\xcd\x1b\x13\xca\x74\xae\xa3\x40\x6b\x28\xbb\xdf\x4e\xe9\x2c\x64\x6f\x73\x2a\xb9\xed\x45\x5f\x98\xb7\x56\x6c\x0c\x31\xc6\xe8\x0c\xaa\xfd\x0c\xcb\xea\x01\xa7\x1e\x2a\xa1\x85\x8c\x4c\x6d\x01\x2b\x0c\xc6\x6c\xe0\xe3\x58\x42\xea\xa9\xd2\x7f\x62\xbe\xf2\x29\x85\xf9\xaa\x47\x2f\x67\xa3\xea\xe4\x74\x5c\x1d\xdf\x2f\xaa\xe3\xfb\x93\xf2\xf8\xfe\xa4\x3a\x3e\x29\xaa\x93\x59\x0d\x58\xe6\xab\x4c\xcf\x75\x0d\x52\x4a\xb0\x7f\x3d\x17\xff\xad\xa3\x2a\xcd\x09\xa3\x80\xa2\x2e\xcd\x9b\xa9\x02\x00\x73\x0d\x0d\xad\x05\x66\x30\x60\xc1\x91\x17\x93\x47\xfe\x76\xf5\xb4\x97\x91\x70\x3e\x77\x8d\xc1\x8b\x35\xde\xcd\x78\x46\x20\xa7\x17\x81\xa1\xff\xf0\x27\xfe\x4d\xd9\x76\x1e\x40\x37\x1f\xf2\x86\x5f\x0d\x70\x04\xe4\x65\xa6\xf3\x32\xd3\xf9\x6c\xac\x24\x68\xc8\x05\xc0\x68\x5c\xca\xe9\x74\x25\x9b\x25\xa5\x6c\x77\x77\x9e\xef\x5e\x58\x64\xbb\x3b\x8b\x6c\x77\xda\x00\x99\x51\x25\x8a\x91\x12\x85\x54\xf5\x06\x76\x7b\x23\x2e\xae\x3b\x8d\x26\xd8\xcb\x30\xf5\x03\x12\xa1\x82\x6e\xcc\x61\xa0\x6f\x00\xb9\x6e\x90\x84\xf9\xdb\xce\x3b\x02\x06\xf0\x98\x6c\xf3\xda\xb5\xac\x0e\x4e\x0b\x24\xcc\x06\xfe\xd0\xcd\x6f\x82\x8f\x0c\xaf\x7a\xee\x99\xf9\x0e\xf5\x57\x5c\x8d\x40\xa1\x11\xa8\xe9\x14\x47\xc0\x0b\x47\x2a\x3b\x9d\x67\x45\x75\xf0\x83\xfd\xb3\xaf\xff\xe0\xa1\xf9\x7f\xcd\x8a\x6a\xa6\x85\x75\x5e\x0b\x3b\xc6\x4c\x42\xcb\x44\xd4\xdf\x50\x10\x43\x53\x4c\x54\x7f\x88\xc3\xa5\xe5\x52\xfd\x60\xe8\x05\x96\xca\x89\xa5\x89\x01\x09\xb1\xa0\x2e\x76\x25\x82\xab\x9b\xd1\x25\x46\x77\x8e\x17\xed\xd7\x96\x27\xfd\x1c\xda\xe5\x54\x43\x1d\x41\x3b\x2b\x36\x42\xe2\xea\xe4\xd4\x86\x72\x35\x58\x2c\x7a\x74\xe9\x1f\x13\x79\xc2\x6d\xe6\x93\xe5\x03\x30\x00\x00\x70\xf5\xea\x55\xf9\xc2\x0b\x2f\xc0\xdf\xfe\xed\xdf\x2a\xf3\x9b\x43\x80\x8c\x7d\x53\xc6\x6c\xc0\xcd\x85\x10\x05\x68\x28\xb6\x97\xd9\xee\x8d\xbb\xe3\x27\x9e\x3c\x98\xfe\xb7\x6b\xc7\xc5\xaf\x4c\x4a\xf9\x4c\xa6\xc5\x14\x1b\x37\xeb\xba\x75\xd8\xdd\x81\x5d\x3d\x22\x80\xce\xb1\xd3\xd0\x05\x2a\x67\x15\x31\x51\x15\xf4\xa9\xb4\x6f\x23\xab\x09\x1d\xd3\xd4\x1d\xd8\xca\x84\xb0\xdb\xb0\x37\x2d\x67\x7e\x1d\xd7\x06\x3b\x38\xf2\x21\x18\x7d\xf0\xdb\xa2\xed\x94\x90\x43\x6e\xc9\x88\x61\x06\xdc\xbe\xcd\x3e\x15\xa1\xcb\x7a\x8f\x8a\x9a\xcd\x8a\xea\xe4\x64\x5c\x1d\x1f\x8f\xcb\xa3\x7b\x93\xf2\xe8\xfe\xa4\x3a\x3e\xa9\xa3\x2b\x33\x0e\xa8\x34\xfb\x52\x30\x70\x71\x82\x17\xb3\x87\xa5\x01\x14\x06\xd0\x60\x07\x60\x45\x5a\x9a\x65\x1d\x0b\xa4\x90\xe5\x1f\xe3\x34\x54\xaf\xcf\xd0\x1b\x30\x8e\xb2\x30\x74\xb8\xed\xa8\x2d\x31\xcf\x5c\x91\x17\xf6\x1a\x1f\xa8\x08\x68\xf3\x26\x8e\xc2\x40\xb7\xbf\x8b\x1e\x07\xd0\x3e\xd7\xa0\x73\x10\x22\x3f\xcb\xab\xfb\xf3\x91\x2a\x0e\xa7\xe5\x48\x2a\xc8\xeb\x8d\xbe\xd9\xce\x4e\x13\x85\xd9\x9d\xe7\x7b\xbb\xf3\x7c\xef\xc2\x22\xdb\xdd\x5e\xc8\xdd\x71\x25\x27\xb9\x92\xb9\x54\x90\xe3\x78\x21\x8e\x02\xda\xd1\xb9\xb6\x35\x3a\x6a\x6b\x2c\xf5\x01\x10\x7a\x68\xd3\x63\xf4\x63\xfe\x58\xcb\x3e\xe8\x40\x3c\xc0\x63\x96\xf6\x8b\xb0\xe8\x7b\x11\x48\x66\x99\xa9\x5d\xe2\x65\xeb\xd6\x94\xd5\x06\x4c\x09\xab\x21\x5a\x35\x05\xfa\x4d\x28\xd0\xb0\xcc\xf5\xec\x47\x17\x17\xdf\xfa\xee\xd5\xb3\x6f\x1e\x8f\xcb\x63\x25\xac\xb1\x6f\xef\xb7\xaa\x53\xac\xbd\xda\x21\x2d\x00\x00\x20\x00\x49\x44\x41\x54\xdf\x08\x81\x84\x98\x17\x4e\xae\x1c\x95\xe9\x92\xe1\x03\x2b\x9c\xbe\x31\x2f\xd1\x3e\x70\x16\x0b\x32\x5c\x7e\xd1\x45\xef\xd2\x3d\x86\x36\xa6\xdf\x62\xdb\xd6\xd5\xaf\xed\x3d\x9d\x3e\xb1\x88\x71\x28\x42\x0b\x55\x3e\xa6\x6c\x6a\x54\x67\x5d\x1e\xbe\x01\xe7\x1b\x80\x29\x3c\xdb\xe7\x2f\xbd\xf4\x92\x44\x6f\xfb\xf8\x0d\xd5\x84\xc8\x8d\x41\x2e\x04\x88\xc9\x74\x29\x77\x9f\x3c\xd8\x7a\xea\x3d\x07\xd3\x5f\xbb\x7c\x32\xfa\x5f\xc6\xa5\x7c\x42\x80\x28\x3a\x67\x0b\xc4\xd4\x82\x75\xc7\xfd\xc5\xc9\x7a\x86\xc2\xc3\x7d\xc7\xcd\xe4\x91\xb7\x38\x9a\x5c\xa1\xf3\x5e\xb4\xdd\x21\xc7\x28\x2b\x7c\x85\x48\x88\xbc\xff\x49\x76\x17\x20\xb7\xf6\xd9\x20\x36\xb4\x1d\x70\x59\x0d\xa0\x2a\xa9\x55\x29\xf5\xf2\x6c\xa4\x66\x27\xe3\xea\xf8\x68\xab\x3c\x3c\xda\x5a\x1d\x1c\x6d\x95\x47\xcd\x7e\x95\xe3\xf9\x48\xcd\x35\xc0\x42\x43\x0d\x4e\x9a\x3d\x29\x14\xa8\x2c\xa1\x03\x25\x2c\x78\x31\x11\x16\x64\xe8\x7b\xfb\x59\x10\xd0\xa0\x20\x06\x03\x14\xf3\xbc\xfd\x6b\x80\x0c\xe9\x17\x6b\xec\x72\x9f\x82\x77\xcb\x09\x9a\x03\x2d\x26\x49\x44\x2b\x51\x59\x49\xca\xe0\x68\x4b\x7b\x6f\xc6\x3f\xa1\xc9\x3d\x7f\xe9\x75\x3b\x6f\xc8\x33\x73\x3f\xca\x14\x14\x93\x55\x36\xbd\xb0\xc8\x76\x76\xe7\xf9\xee\xfe\x2c\xdf\xbf\x34\xcb\x2f\xef\x2e\xf2\xbd\xed\x65\xb6\x5b\x94\x62\x92\x57\x32\x97\x75\xf4\xa6\x03\x31\x68\xa9\x85\x1d\x82\x64\x79\xc9\xf8\xf8\xde\xb8\xc6\x4b\x41\xa4\x3c\x40\x07\x56\xcc\x62\x90\x3d\xd7\x50\x1f\x20\x30\xc3\xcd\x6b\x6a\x1b\x28\x0d\x5e\xda\x01\x10\x8d\x5e\xcc\xcf\x44\x98\xf9\xd2\xd2\xf7\x2b\x68\xf6\x76\x95\x52\xcf\xef\x5c\x58\xbe\xf2\x7f\x5f\xbf\xff\x7f\xfd\xf0\xd2\xe2\x7b\x95\xd0\x47\x20\xe0\x18\x00\x8e\x01\xe0\xa4\xf9\x37\x83\xfa\xf4\x5c\x7c\x00\x5d\x3b\x46\xef\xdd\xbb\x07\x9f\xfb\xdc\xe7\x62\x5e\x6a\x87\xa4\x98\x17\xf5\x75\xf9\xc3\x06\x65\xf8\xa2\x43\xeb\xf2\xf2\xe5\x0f\x95\x13\xd2\x97\x03\x66\x4e\x59\x34\xe2\x12\xeb\x80\x37\xa1\x38\xf7\xcc\xd7\x48\x2e\xc0\xe1\x43\x92\xf4\xd9\x10\x80\x81\x13\x87\x7c\x25\x43\x87\x9f\x73\xfc\xad\x8e\xd9\xda\xda\x92\x67\x67\x67\xca\x9c\xcf\x62\x0c\x3b\x32\xea\x39\x7a\x93\x2c\xb4\xd6\x85\x04\x31\x99\xac\xe4\xce\x4f\xbf\xb9\xfd\xec\x93\x07\xd3\x4f\xec\x9d\xe5\x2f\x14\x95\x7c\x04\x80\x6c\xc2\x6d\x93\xb0\x2c\x68\x77\xd0\x7b\xdf\xa8\x01\x98\xcc\x2e\xc4\x5c\xeb\x55\xe7\xe1\xdf\x83\x69\xdf\x00\x19\x99\x3e\xd0\xd2\xd4\xb3\x8b\x64\xd0\xb7\xc2\x06\x71\xd0\x75\xf9\xda\x90\x37\x7a\xd1\x07\xe0\xb8\x47\xe0\x85\xbe\x11\x1b\x03\x2c\x04\xb0\xce\x85\xb2\x35\xbb\x11\xcc\x57\x40\x67\xa3\xea\xe4\x78\x5c\x1d\xdd\x9d\x96\x07\x87\xd3\xd5\xc1\xdd\xe9\xea\xf0\xde\x56\x75\x7c\x5a\x54\x27\xab\x4c\x2f\xb5\xd6\x0b\xa8\x23\x1e\xcb\x06\x90\x2c\xa1\x01\x2c\x5a\xeb\x65\x03\x28\xb0\xa1\x36\x4b\x3d\x06\xbc\xb4\xd7\x74\xef\x0a\xf4\xc1\x8a\x89\xae\x98\x67\xa6\x9d\xdb\xb9\x85\x96\x8a\xe8\x5e\x02\x0c\x5e\x7a\x79\xa6\xbf\x7c\x91\x17\x0c\x5e\x28\x88\x41\xf4\xec\x3d\x74\x73\x88\x03\x2d\x38\xe2\x68\xfd\x43\x80\x06\xe7\x59\xc0\xc5\x00\x7e\x13\x85\x31\xd7\x5a\x6b\x73\x40\x63\x0e\x00\x79\x25\x21\x3f\x29\xca\x7b\xa7\xe3\xaa\x78\xeb\xc2\x72\x54\x54\x62\xb2\x3b\xcf\x77\x77\xcf\xf2\xdd\xfd\xb3\xfc\xf2\xfe\x69\x7e\xf9\xe2\xd9\x68\xff\xc2\x22\xdb\x1b\x97\x72\x9a\x37\x67\xd2\xd4\xd1\x09\xd1\x8e\x4d\x0c\x1c\xea\x3a\xa2\x01\x24\xd8\x4b\x76\xbc\x75\x91\x0b\x94\x89\x18\xdb\x73\xad\x3b\x4b\xc5\xf5\x52\x82\x53\xff\xc5\x06\x81\x20\x33\x57\xda\x8b\x0e\x28\x01\xa0\xb8\xa3\x89\xba\x76\x64\xf6\x9b\x0d\xd4\xf3\xa5\x12\x50\x1e\x6d\x95\x77\xbe\x7b\xe5\xec\xab\xb7\xf6\xe6\x3f\xac\x04\xcc\x40\xc0\x1c\xa0\xfd\x67\xc6\x7f\x6f\x7c\x37\x22\x15\x00\x70\xa0\x65\x9d\x97\x64\x9a\x52\x5e\x86\x53\x78\xc7\xbc\xec\xc6\x80\x26\x1a\xad\xa7\xfe\x8d\xe3\x1f\x03\x3c\x86\x06\x13\x42\x7e\x77\x68\x7b\x4a\x47\x9e\x55\xce\xe7\x5a\xb8\x82\x2e\x94\x34\xb4\x21\x5c\x00\x63\xa8\x3e\x43\x68\x43\xf2\x5c\x0d\x18\x7a\xee\xe3\xd3\xcb\xc7\x4b\x43\x00\x2d\x68\xc1\xa1\xf2\x42\xd7\xbf\xec\x5c\x00\xd4\x7b\x5a\x3e\xf8\xc3\xdd\x5f\x78\xfc\x70\xf2\x3b\x17\x16\xd9\x07\x73\x25\xf7\x85\x1b\x40\xf5\x92\xb5\x87\x03\x3b\x2b\xc7\x86\x8e\x36\xda\xa2\x7b\xb6\xa9\x29\x86\xc2\xe8\xd6\x1b\x26\xde\x2b\xd2\x0f\xb5\xd7\x20\xa1\x2e\xd0\x8f\x86\x18\x03\xab\x1b\x0c\x65\xf6\x02\x18\x7a\x72\xca\x28\x53\x27\xf3\x36\xdc\xbd\x21\xa2\x43\xe6\xd8\xe8\x01\xa2\x6f\x33\xba\xe7\x4a\x80\x5a\xe4\x6a\x76\x77\xba\xba\xf3\xce\xb4\xbc\xf3\xf6\xce\xf2\xce\xe1\xb4\x3c\x3a\x9e\x94\xc7\x67\xa3\x6a\x56\x66\x30\xd7\x5a\xaf\x1a\xd0\xb1\x84\xce\x28\x2f\xa1\xee\xef\x16\xc0\x70\xe0\x04\xec\x65\x22\xd0\xdd\x67\xcd\x25\x07\x52\xf0\x3f\x12\x31\x31\xa0\x03\x47\x5f\x00\xd1\x01\x7e\x1e\xca\xb3\xdb\x88\x1f\x3b\xbe\x68\x0c\x90\xb1\x89\x40\x79\xfb\xcc\x15\x69\x04\x00\x20\x73\xa1\x07\x68\xf0\x3e\x18\x4d\x7e\xf6\xa2\x79\x6e\xef\x0b\x63\x7e\x12\x03\xec\x08\x4c\xd1\xc8\x29\x00\x60\x3c\x2a\xc5\x64\x7b\x99\x4d\x2f\xce\xb3\xbd\xcb\x27\xa3\xcb\x57\x4f\x8a\xab\x0f\xcd\x46\xd7\x76\x16\xf9\xde\xb8\x14\x93\x7e\x23\x01\x6a\x17\x68\xc7\x1d\x9e\x05\xbd\x39\x63\xe6\x41\x83\xb4\xcd\x7c\x33\x80\xa6\xae\x2f\x40\x4d\x89\x5e\x3c\xf0\xb8\xb6\xc6\x78\x03\x0e\x41\x74\x60\xdf\xd0\xa3\x25\x1c\x1c\x55\xe9\xe8\x1b\x9a\x26\xa4\xa2\x35\x74\x3c\x05\x7e\xe1\xe9\x64\x99\xf3\x69\xda\x4f\xc9\xeb\x83\xf9\xd4\xfd\x71\x75\xf0\xdd\xab\xb3\x7f\xfb\xfa\xa3\xf7\xbf\x74\x52\x54\x77\x84\x10\x26\xd2\x72\x0c\x00\x27\x5a\xeb\x99\x10\x62\xa6\xeb\x5f\x88\xc6\x73\xa6\x8d\x14\xbe\xfc\xf2\xcb\xea\xea\xd5\xab\xf2\xce\x9d\x3b\x2e\x5b\xbb\x29\x87\xec\xa2\x05\xf0\xfb\x01\x1f\x7d\x48\x7e\x8a\x1f\xf3\xd1\x87\xe4\x0c\xd1\xc5\x77\xef\x02\x53\x29\xf4\xa9\xfa\x4b\x80\x7a\x8f\x8b\x2b\x29\xe6\x9a\x0a\xe2\x14\x0c\x29\x13\xc3\x97\x26\xaa\x7c\x08\x30\xb8\x64\xa4\x74\x38\x47\xe7\x92\x11\x93\xd7\x6b\x3b\x13\x69\x01\x00\xcb\xe0\x6b\xfb\x87\x12\xbb\xa5\xa1\x7a\x4f\xcb\xe4\xca\xe9\x68\xef\x17\x5e\xdb\xfd\xd8\xbb\x8e\xc7\xff\xc7\xd6\x4a\x3e\x2b\xb5\x98\x06\x82\x1b\xbd\x84\xdf\xcc\x2c\x67\xc3\x81\x16\xe8\x00\x85\x1d\x15\xc1\xc5\x44\x8f\x16\x15\xb0\x68\x8c\x18\x43\xab\x1b\xc3\x49\x7d\xa4\xc0\xe5\xf0\x5b\xa6\xad\x4c\x3f\x1f\xc9\x32\x9b\x0a\xbb\x88\x8a\x60\xe9\x01\x30\xe0\xea\x40\x94\x16\x02\x94\xd0\x6a\x91\xab\xf9\xf1\xb8\x3c\x7c\x7b\x67\x75\xfb\x8d\x8b\x8b\xdb\x07\x3b\xe5\xc1\xfd\xa2\x3c\x59\x8c\xd4\xec\xff\x65\xee\x5d\x9f\xe4\x38\x8e\x7b\xd1\x5f\xf5\xf4\xf4\xcc\xce\x3e\xb0\xbb\x58\x2c\x16\x20\x00\x82\x24\x44\x91\x12\x45\x49\x04\xa4\x63\xcb\x3a\xb6\x1e\x47\xb6\xac\x7b\x64\xcb\xd2\xb5\xef\xf5\xe3\x3a\x42\x61\x51\xf7\xf3\xfd\x77\x40\x2b\xec\x70\xf8\x11\x76\x84\x3f\x39\xec\x90\xc3\xef\x63\xfb\xf8\x04\x25\x50\x12\x5f\x22\x40\x80\x78\x10\x00\x81\xc5\x62\xb1\xd8\x9d\x9d\x67\x4f\xd7\xfd\xd0\x5d\x3d\xd9\xd9\x59\xd5\xd5\xb3\x2b\x1d\x17\x62\x31\xdd\xd5\x59\x59\xd9\xd5\x55\x59\xbf\xca\xca\xaa\x4a\x14\x86\xc8\xc0\x49\x36\x05\x44\xc1\x4a\x01\xb8\x64\xca\xb9\x34\x0d\x44\xe3\x34\x59\xe6\x6c\x9e\x83\x00\x14\x3e\x0d\x84\xa9\x35\x05\xec\x79\xf6\x5e\x85\xe5\xcd\x36\x25\xc3\xa7\x88\x48\xb9\xe8\xc2\x46\x60\xdc\xea\x62\x4b\x47\x64\xa2\x21\x20\xf1\x85\x81\x0b\x05\x32\xc4\x8a\x13\xb0\xb8\x1c\xb8\x64\x32\x99\xeb\x80\x5d\x53\x2b\x8c\x01\x27\x00\x9b\x36\x22\xd6\x1a\x0a\x68\x22\x73\x9f\x59\x6f\xa2\x71\x88\x68\x27\x8c\xa3\x9d\x4e\xbc\x75\xe7\xc8\xe8\x76\x67\xd4\xef\x1c\x19\x84\xcb\xc7\xba\xcd\xb5\xe3\x7b\xd1\xc6\xd1\xfd\x68\x63\x69\xd8\x58\x0e\x27\xaa\x3d\xb5\x1e\x52\xe0\xa1\x08\x8c\x00\xbb\x22\xf5\x0e\xd3\xfa\x3e\x1d\x2c\xf0\x05\xf7\xe5\xf6\xa6\x49\x9d\x35\x96\xca\x42\x0e\xd4\x72\x8a\xb4\x5e\x17\xc0\x0f\xe5\x9a\x8f\x4a\x0c\x10\x51\xe6\x12\x45\xdb\x0b\x72\xb0\x32\xb5\xf8\xa0\xc0\xb3\x17\x4d\x76\x6e\xae\xf6\xdf\x7c\xe7\x78\xef\xf5\xfd\x56\xb2\xad\xa0\x06\x48\xa7\x84\xcc\xb4\xd0\x80\x58\x21\x4b\x96\x17\x5a\x7f\x18\x68\xe1\xa1\x54\x9f\x05\x1a\x17\xbd\x09\x52\xe7\x4a\x07\xd7\x2e\x3e\x55\xf4\x75\x07\xd1\x75\xfb\xc5\xaa\x30\x8b\x51\xc1\xd5\xe7\xd7\xc5\x08\xb3\x00\x2f\x91\xae\x6a\x1f\x97\x3a\xa1\x4e\x01\x02\xe5\x0a\xe2\xe2\x31\x0b\x88\xf0\xe5\x63\x0b\xb6\x0f\xe7\x53\xf9\x78\xa5\x15\xe9\xe9\xf4\x10\x90\x76\x10\x98\x8e\x26\x73\x9f\x16\xa5\x54\x7a\xb2\x73\x92\x9e\xec\xfc\xd2\xed\xc5\xff\xe3\xf8\x5e\xf4\x2b\xed\x71\xf0\xb4\x02\xca\xa3\x3d\x1e\x2c\x56\x14\x17\xd8\xa1\x49\xca\x74\x2c\x86\x10\x2b\xe9\xde\xc2\xbc\xc0\xdf\x03\x79\x59\x5e\xa3\x1c\x4f\xe6\xdc\x53\x60\x56\xa4\x12\xf9\x14\xcc\xdb\x40\xa2\x34\xe2\x86\x1e\x75\x5b\x93\x9d\x87\x9d\xf1\xbd\xfb\x8b\xa3\x7b\x9b\x8b\xa3\xcd\xdd\xf6\x64\xa7\x1f\x4d\x7a\x63\xa5\x07\x3a\x05\x2c\x23\xa4\x80\xc5\x00\x12\x0a\x54\xa4\x5f\xee\x68\xcb\x57\x08\x51\x6b\x4a\xbe\x42\x88\xc5\x9b\xc0\xf7\x5c\x29\xb5\x09\x63\x39\x01\xa6\x96\x14\xc1\x1a\x33\x2d\x06\x61\xaa\x88\x4e\x2f\xf1\x40\xf9\x33\x5e\x05\x2b\x0a\xe1\xeb\x1a\x54\xf0\x78\xb0\xf8\xc0\xf1\x5b\x8a\x23\x56\x96\x1c\xc0\x90\xa9\xa5\x90\x3c\x97\x7c\x60\x0a\x67\x7d\x91\xf8\x28\x0e\x74\xb4\xd7\x9e\xec\xed\xb7\x26\x3b\x0f\x16\xc6\x9b\xd7\x57\x07\x37\x96\x07\xe1\xd2\xb1\x6e\xb4\x7e\xf2\x71\x74\x66\xb5\xd7\x5c\x9f\x1b\x07\x0b\x8d\x44\x85\x8a\x03\x06\x5b\x41\xb2\x36\x51\x68\x7f\xfc\x1b\x11\x5e\xc5\x36\x3a\x65\xc2\xeb\xb7\x12\x6e\x0a\x83\x0f\x9a\xc6\x76\x4d\x88\x69\xde\xd2\xb5\x06\x30\x08\x93\xee\x07\x4b\xa3\xab\x57\xd7\xfa\x6f\x3e\x9a\x1b\x3f\x40\x0a\x54\xa8\x2f\xcb\x00\xa4\xed\x08\x3e\x5a\xb6\x60\x1b\xd1\xd7\xb1\xb8\xd8\xe8\xab\x3a\x66\x7e\x4d\xef\x7d\xf3\x73\x81\x2c\x9b\xdc\xbe\x71\xbe\x41\xca\xa7\x8e\x71\xc0\x87\x9f\x2d\x1c\x44\xee\x54\x27\x79\x66\x5e\xd7\xdc\x64\xee\x81\x7a\x42\xd6\x31\x37\x99\xc0\xe3\x6d\xf7\x52\x5e\xe6\xf9\xac\x66\x2b\x9f\x60\x4d\xc3\x41\x0b\x33\x7b\x53\xd0\xd2\x6e\xc6\xaa\x73\x7a\xa7\x75\xf2\x63\x1f\x2c\x7c\x69\x63\x37\xfa\x5a\x2b\x3b\xd9\x59\x71\x27\x90\xda\xc1\x06\x07\x2a\x52\x39\x46\xd9\x36\x45\xa6\x2c\x34\x55\x52\xf8\xf0\xd0\xd9\xd0\x56\x12\x89\xa6\x9f\x5a\x8b\xca\x39\x6a\x00\x71\x90\xc4\xfd\x66\xd2\xdd\x99\x8b\xb7\x36\x17\x47\xf7\x36\x17\xc6\x9b\x8f\xe6\xc6\xdb\xbd\x68\xb2\x3b\x0c\xf5\x60\x12\xe8\xbe\x06\x46\x1a\x7a\x84\x74\xb4\x18\x6b\xad\x47\x00\x72\x4b\x0a\x31\x79\x97\x56\x0a\x11\x7f\x95\x7c\x25\x90\x26\xfb\xb2\x90\x7b\x73\x0d\x10\x2b\x0a\x9d\x0e\xca\x42\x42\xc0\x43\x22\x01\x09\xd7\xd4\x0f\x05\x16\x2c\x8d\xb9\x37\x79\x05\xec\xda\xc8\x43\xad\x31\x41\x26\x43\xe0\xaa\x1f\xb6\x40\xa6\x7e\x7c\x9e\x15\x9c\xd8\x4d\x9c\x70\x4d\xa7\x95\xc2\x8c\x17\x07\x2c\x1c\xbc\x14\x2c\x2f\x6c\x3a\x69\x0a\x62\x34\x22\x00\xed\x40\x23\x6a\x68\xd5\x6a\xc5\xc1\xc2\xe2\xa0\xb1\x74\xb4\xd7\x5c\x3b\xb1\xdb\xda\x58\xeb\x36\x4f\x2e\x0d\x1b\xcb\x51\x1c\xb4\x83\xec\x90\xc8\xf4\x65\xb2\xba\xa8\x40\xa6\x3d\xa7\x06\xc0\x6c\xb6\x67\x3a\xfd\xc2\xb7\xe3\xcd\xd9\x90\x69\x1e\x32\x85\x93\xbe\xa3\xb1\xc4\x4c\x83\xab\xed\x18\x8b\x09\xa7\x2b\xd3\x16\x0d\x95\xc5\xb6\x3e\x9d\xae\x1a\x87\xc9\xe0\xde\xe2\xe8\xbd\xb7\x8f\xef\xbf\xfa\xde\x5a\xff\xc7\xa3\x86\xde\x86\xc2\xae\xd6\x7a\x57\x29\x45\x9d\x71\x7b\x28\x5a\x26\x0b\xa7\x42\x6b\xad\xf1\xca\x2b\xaf\x24\x8b\x8b\x8b\xc1\xde\xde\x9e\xcb\x3a\xe2\x1b\xea\x4e\xcb\xb8\xd2\xb8\xf8\xfb\x4c\x27\xb9\xe2\x5c\xd3\x53\xae\x7c\x79\x1c\x84\x78\x57\xfa\xaa\x81\xb9\x0f\x98\xb1\x95\x9f\x4d\x9e\x3a\xfd\x2f\x00\x24\xca\x43\xd0\x59\x32\x98\x35\x54\x59\x31\x66\x31\x35\xf9\xf2\xf4\x49\x3f\xab\x0c\x85\xf0\xf5\xaf\x7f\x3d\x58\x5b\x5b\x03\xed\x04\xd8\x1c\xbd\x59\xee\x1c\x02\x68\xb7\xc7\xc1\xc2\xe9\x47\xad\x33\xcf\x6f\xce\x7f\xf1\xc4\xe3\xe8\x2b\xad\x38\x38\xa7\x80\xd0\xb2\x95\x1b\x80\xa9\xf2\xf3\xc5\x24\x39\xa9\x94\x46\x88\x73\x82\x88\xc2\x33\xbb\x10\x54\x51\x56\x9d\xe0\x2c\x83\x17\x62\x45\x29\x38\x1e\x97\x15\x6c\x9e\xa2\xa4\x78\x53\xf5\x3f\x6e\xe8\x41\xb7\x35\xd9\xd9\x5c\x18\xdd\xbb\xb7\x38\xba\xf7\x70\x7e\xbc\x95\xae\x06\x9a\x74\x47\x0d\xbd\x9f\x28\x8c\x34\xf4\x00\x99\x49\x9b\xce\xc7\x53\x6b\x8b\x26\x0e\xb8\x96\xbf\xdc\x9a\x62\xf1\x59\x01\x50\xda\xa6\x9f\x5b\x3d\x0a\xf5\xce\x80\x16\xa0\x08\x3c\xd8\x75\x42\xe9\x2b\xc0\x4a\x79\xc5\x97\x90\x46\xb2\xb4\x70\x0b\x8b\xc5\x1a\xe3\x0a\x2e\xe0\x92\x3f\x67\xf2\x15\xac\x2d\xa4\x5d\x51\xeb\x4b\x61\x3a\x89\xfd\x15\x2c\x31\x98\x82\x19\x3e\x7d\xc4\x7f\xdb\xda\x38\xf8\x6a\x44\x0a\x88\x82\x44\xcd\xb7\x26\xaa\xdd\x19\x35\x96\x96\xfb\xe1\xea\x7a\x37\x5a\x5f\xdf\x6b\x6e\x2c\xf7\x9b\x6b\x9d\x71\xb0\x10\x4e\x54\x14\xd0\x1a\x9c\x35\x54\x05\xfa\xad\x80\xd4\xaa\x51\x9e\x92\x05\x48\x5b\xa0\x60\x87\x58\x6c\xf8\xf3\xe9\x14\x12\xa6\x56\xc5\x29\xf0\x15\x2c\x3a\xc5\x7c\x35\xf1\x56\xcf\xa5\xb2\x81\x28\x00\xb1\xd2\xf1\xc3\xf9\xf1\xed\x2b\xeb\xfb\xdf\xbf\x72\xac\xff\xc6\x5e\x6b\xb2\x89\xe9\x0a\x22\xb3\x8a\x88\x5a\x5d\x06\x9a\xf8\x72\x81\x58\x3e\xc8\xde\x2d\xc0\xec\x7d\x95\xaf\xde\xf6\xed\xbc\x25\x3e\x75\xfb\x06\x5b\x67\x7e\x10\xc0\x70\x10\x5a\xc9\xe2\xe9\x92\x05\xc2\xb3\x2a\x7a\x29\xcd\x4c\xc1\xa6\x4d\xaa\x10\xe7\x41\x80\x83\xab\x80\xea\x14\xb2\x0b\xc1\xf9\xc8\x50\xa7\xf2\xd2\x50\x95\xbf\xf5\x7d\x4f\x9f\x3e\x8d\x4f\x7e\xf2\x93\xd8\xd8\xd8\x28\x3c\xa3\x53\x44\x28\x2a\xc6\x68\x7e\xdc\x58\x3a\xf3\xa8\xfd\xf4\xb3\x0f\x3a\x9f\x3f\xb1\x1b\xfd\x62\x6b\x1c\x3c\x1d\xa4\x0e\xba\x95\x18\x43\x52\x7c\x32\x8c\x98\x9e\x8b\xcc\xed\x11\x32\x40\x29\x4f\xbb\x54\x61\x24\x1b\x90\x28\xcb\xc6\x73\x98\xd5\x26\x54\x95\x57\xba\xda\x61\x14\x26\x83\xbd\xd6\x64\xf7\xfe\xe2\xe8\xf6\xbd\xc5\xe1\xdd\xed\xf9\x78\x7b\xaf\x35\xd9\x19\x86\x49\xcf\x58\x57\xa0\xf2\x11\xe1\x08\x99\x92\x35\xf7\x06\xc4\xa0\xe8\xa7\x42\xe7\xea\xad\x2b\x83\xd8\x14\x0f\x5d\xb2\x0c\x4c\xad\x27\x85\x38\xc0\x0e\x2c\x08\x2f\xab\xc3\xac\x19\xc1\x02\xc0\xcb\x2f\xbf\x1c\x00\xc0\x2b\xaf\xbc\x92\xd0\x6b\x00\x38\x77\xee\x5c\x00\x00\x57\xaf\x5e\xcd\xef\xaf\x5e\xbd\x9a\x48\xf1\x36\x3a\x13\xe7\x0a\xd4\xea\xe8\x11\x4a\xb4\x82\xd5\xa5\x74\x6d\xac\x35\x04\xbc\x18\x9a\x12\x80\xa1\xbf\xba\xb8\x1f\x8c\xe4\x03\x63\xac\x31\xe6\x3a\x52\x4a\xb5\xa1\x11\x05\x1a\x51\x73\xa2\xe6\xe7\xc6\x8d\x85\xa5\x41\xb8\x7a\xb4\x17\xae\x1d\xdf\x8b\xd6\xd7\xf6\x9b\x1b\x0b\x83\x70\xa9\x99\xa8\xa2\x15\x86\xbe\x13\x58\xdd\xb7\x8c\x12\x9c\x56\x4b\x8d\xe2\xd9\x43\x15\xc1\xb7\x1d\x4b\xe9\x40\x64\x4c\xa0\x93\xc7\xed\x78\xf3\xda\x5a\xff\xf5\x2b\xeb\xbd\x1f\x6e\xcd\x8f\xdf\x4f\x82\x12\x68\xe9\x02\x85\x55\x45\x25\x4b\x0b\x80\xe4\xe2\xc5\x8b\xae\x7a\x34\xeb\xc0\xb1\xae\x95\x40\xba\x77\xf5\x3b\x3e\x96\x94\x83\xa6\x9b\x75\x30\x3d\x0b\xb8\x82\x07\x9d\x2b\x9f\x83\xc4\x5b\x83\x54\x47\x0f\x8d\xb9\x90\x56\x02\x28\xae\x0f\xe6\xfb\xac\xea\xa3\xfb\xc8\x36\x6b\x70\xc9\x51\xfa\xf0\x64\x9f\x16\x69\x55\x84\x71\x08\x8c\x14\x54\x7b\x61\xd8\x58\x3a\xbd\xd3\x3a\xf7\xa1\x07\x9d\x5f\xd8\xd8\x8b\xbe\xd0\x1e\x07\xe7\xe8\x1e\x2d\x85\x8f\xc7\x7c\x34\x44\xe5\xe3\x69\x4d\x11\x83\x64\x75\x29\x80\x91\x22\x98\x01\xe0\x04\x40\x75\xc3\x74\x14\x29\x4c\x77\x08\xbc\x4b\xa3\x46\x12\x1f\x07\x7a\x34\x6c\x26\xbd\xc7\xed\x78\xfb\xc1\xc2\x78\xf3\xfe\xc2\xe8\xde\xc3\x85\xf1\xe6\x6e\x6b\xb2\x33\x6e\x24\xfb\x89\xca\x96\x68\x2a\x48\x96\x95\xfc\x1a\xd9\xf4\x10\x05\x2e\x64\x0a\xa8\x60\x5d\x01\x4a\xbb\xd7\x52\xeb\x0a\x58\x5c\x6e\x25\x11\xac\x20\x25\x6b\x0b\xb7\x6c\x98\x51\xea\xb7\xbf\xfd\xed\xe0\xd6\xad\x5b\xf8\xee\x77\xbf\x5b\x59\xbf\x3f\xf6\xb1\x8f\x05\x00\xf0\xc6\x1b\x6f\xf8\x8e\xf6\x7c\xdb\x5c\x1e\xf7\xb1\x8f\x7d\x2c\x78\xe3\x8d\x37\x12\xfa\x6b\x88\xe8\xfd\x1b\x6f\xbc\x91\xd0\x03\xf5\xcc\x8a\x3b\xc7\xf4\x93\x04\x7e\x0a\x71\xac\xad\x89\xd7\x28\x9f\x4e\x5c\x9a\x46\x22\x40\x45\x02\x30\xed\x2c\xbe\x8d\xec\x18\x0e\x00\xed\x46\xa2\x5a\x73\x71\xb0\xb0\x34\x68\xac\x1e\xdd\x6f\xae\x1d\xdf\x6b\x6d\x1c\xeb\x36\x37\x96\x06\x8d\xe5\x68\x12\x74\x82\xec\xbc\x24\x5e\xbf\x8b\x96\x0e\x14\x1b\x16\x38\x50\x49\x37\x85\xe4\xbe\x32\x3c\x14\x2c\x3c\x0c\x21\x49\xb3\xce\xd3\xe9\x1f\x3d\x6d\xc7\x46\x3e\xa1\x8d\xf5\x9a\x93\x9d\x1b\xab\x83\x37\xdf\x39\xbe\xff\xc3\x7b\x4b\xa3\x6b\xa3\x20\xd9\xc9\xa6\x86\x0c\x70\x31\xd3\x43\x3d\x36\xc5\x9a\x03\x7a\xad\x75\x62\x00\x34\x04\x1d\x6a\x89\x73\x85\xc3\xb0\xb8\xb8\xac\x0c\x55\xf2\xf9\xb6\x1f\x97\x3c\x9c\x9f\x4b\x16\xe9\x99\x4f\x3e\x55\xf1\x34\x5f\xdb\xb5\x8d\x9f\x6f\x99\xf0\x20\xf6\xf5\xbc\x9e\x1e\xb4\x13\x97\x42\x1d\x8b\x4b\x5d\x1e\x75\xcc\x58\xbe\xc1\x56\xc0\xd2\x87\xa2\x41\xaa\xf0\x05\xb9\xcd\xa8\xd6\x32\xea\x9b\x2a\x43\x8d\xf6\xd2\xb0\xb1\x7c\xe6\x51\xfb\xdc\x33\x0f\xe6\x3e\xbf\xb1\x17\x7d\xae\x15\x4f\x2d\x2d\x75\x42\xa5\xaf\x41\x01\xf0\xb8\xa7\x6b\x78\xbc\x6d\x4e\xdc\x23\xab\x32\x2f\x32\x27\x5f\xc5\x8f\x4e\x6b\x55\x8d\x2a\x09\x60\x49\xc6\x0d\x3d\xea\x45\x93\xee\xce\x5c\xbc\xbd\x35\x3f\xde\xdc\x5c\x18\xdd\xdb\x9e\x9f\x02\x16\x4c\xad\x27\x03\x1b\x58\x21\xbe\x2b\xe6\xda\xac\x14\x4a\xf4\x74\x53\x39\x0a\x58\x8c\xd5\x84\x9e\x21\x94\x83\x12\x3a\x1d\x04\x4c\x57\x51\x48\x16\x14\xfa\x2d\x2f\x5e\xbc\x98\xbc\xfc\xf2\xcb\x81\x51\xf0\x9f\xfe\xf4\xa7\x03\x00\x78\xf5\xd5\x57\x13\x7a\x4d\x8a\xe2\x20\x23\x36\x5e\xf7\xa5\x36\x50\x05\x62\xea\xb4\x61\x6b\xf8\xdc\xe7\x3e\x17\xfc\xf3\x3f\xff\x73\xa1\x4d\x49\xf5\x5b\x17\x97\x5b\xf3\x3c\x01\x7f\x4b\xcc\x74\xf7\x5d\xe6\xd8\x8b\xac\xcd\x1a\x8b\x8b\xf4\x97\x5b\x61\x80\x48\x69\xb4\x5b\x71\x30\x7f\xa4\x1f\x2e\xaf\xed\x37\x37\x8e\xef\x45\x1b\xc7\xba\xcd\x8d\xc5\x74\x49\x75\xa7\x91\xa8\xd0\xac\x1d\xf2\x69\x7f\xb9\xe5\xc5\x36\x2d\x2a\xf0\xa8\xdd\x66\xa7\xd8\xc9\x99\x81\x06\x30\x6a\x24\x83\xbb\x47\x86\x57\xde\x3e\xde\xfb\xfe\xfb\x2b\x83\xcb\x83\x66\xb2\x9d\xf9\xb4\xf0\x4d\xe6\xe8\xd2\x67\x3e\x85\x9a\x00\xa5\x29\x22\xdf\x70\x58\x23\xfd\x2a\xe0\xe2\xc3\x6f\x96\xbe\xf4\x20\x69\x0e\xc3\x22\x73\x10\x79\x7c\x74\x87\x2f\xef\x4a\xdd\xe0\xaa\xbf\xb3\xa0\xcf\x2a\x5e\xd2\xfd\x61\x15\x4e\x9d\xf8\xba\xa1\xae\x55\xa8\x14\xc8\xa8\xb1\xb4\xac\x13\x04\xb4\x28\x8d\xf6\xe2\xa0\xb1\x7c\xf6\xd1\xdc\x73\xcf\x6c\xcd\x7d\x7e\x7d\xaf\xf9\xf3\xed\x74\x37\xdc\x7c\x05\x98\x8f\x45\xc5\xcb\xc7\x45\x93\xad\xfb\xc9\x7c\x38\x9f\x2b\x37\xfc\xc0\xe6\xd4\x95\x43\x69\xb2\x6c\x08\x6d\x79\x9a\x29\xa5\x29\xee\xc9\x62\x05\x38\xa0\xa0\x45\xf6\x01\xa0\x21\x21\x80\xe5\x51\xea\x70\x7b\x77\x73\x61\xea\xc3\x32\x09\xd0\xd7\x5a\x0f\x94\x52\x03\xa2\x4c\xcd\xa6\x58\x12\x58\xa1\xbf\x25\x47\x5b\x14\x2d\x2c\x20\xf1\x00\x51\xcc\x6c\x3a\x08\x00\x0a\x20\x86\x02\x18\x32\xfa\x04\x00\xfc\xc2\x2f\xfc\x42\xf0\x2f\xff\xf2\x2f\x39\x60\xb1\x00\x14\x9b\xa2\xf5\xb1\x98\xd8\x68\x24\xd0\xe2\x1a\x59\xb9\x00\x8f\x0b\xd4\x58\x65\x59\x58\x58\x08\xba\xdd\x6e\xa9\x3c\x4e\x9f\x3e\x8d\x3f\xfe\xe3\x3f\x4e\xb8\x75\x86\xf9\xd8\x70\xb0\x15\xb0\xeb\x1c\xbc\x10\x4b\x4c\x61\x59\xb5\xf9\x65\xd3\x48\x74\x33\xbb\x12\x68\xa1\xe0\x25\xb3\xa6\x46\x61\x82\xf9\x23\xfd\x70\xf5\x78\x37\xda\x38\xbe\x17\x9d\x5c\xeb\x36\xd7\x97\x06\xe1\x6a\x3b\x0e\x72\x00\x03\x6d\x9c\x73\x69\x1b\x4a\x2f\x4c\xfb\x04\x4c\x5b\xd5\x59\xfb\x2c\xef\x6f\xc4\xdb\x12\xbd\x2a\x9e\x2d\x84\x69\xdb\xcf\x07\x12\xba\x9c\x57\x6a\x76\x29\xe8\x88\x58\xe9\x78\x6b\x61\x74\xeb\xc7\xc7\x7b\xaf\x5e\x3b\xda\x7f\xab\xdb\x9e\x6c\x62\x3a\x35\xb4\x8b\x14\xac\x74\xd5\x74\xbf\x16\x33\x45\x94\xa0\xe8\xef\x55\xaa\xef\xa8\xa7\x7f\xab\xfa\x96\x2a\x40\x5d\xc5\xc3\xd5\xbe\xaa\x3a\x63\x5b\xff\xe9\x3b\xb8\xb7\xe5\xe7\xfb\x0e\xd2\x80\x9b\xf3\xb4\xc9\x2e\xd1\xbb\xde\x81\xcb\xcc\xe5\x72\x0d\x64\xaa\xbe\x77\x5e\xa7\xab\x94\x9c\xeb\x65\x7c\x80\x41\xdd\xca\xe2\xcb\xcf\xa7\xa2\xcc\x82\x8e\x5d\x8a\x99\x3e\x77\x16\xee\xf1\xe3\xc7\xf1\x99\xcf\x7c\x06\x6b\x6b\x6b\x00\xac\x96\x96\x5c\xd9\x19\xd0\xf2\xd4\xc3\xb9\xe7\xce\x3d\x9c\xfb\xe2\xb1\x6e\xf4\xb9\x56\x1c\x9c\x51\x9e\xcb\xd6\x9d\x73\xde\x34\x9e\x81\x0d\x9b\x3f\x89\xcb\xbf\xa5\xf4\xcc\x28\x4b\xc6\xbc\xcc\x83\x3b\x22\x4a\xa3\x65\xbb\x7c\xd2\x73\x89\x2e\x81\x4e\xe2\x86\x8e\x7b\xcd\xc9\xee\xa3\x4e\x0a\x58\x3e\x58\x1c\xdd\x7d\xb0\x30\xde\xec\x45\x93\x6e\x02\xdd\x47\x06\x50\x18\x58\xc9\x41\x0b\xfb\xa3\x9b\xc8\x89\xce\xb6\x80\xb8\xb5\x3e\x05\x2b\x26\xce\xbc\x7f\x69\xd9\xe7\xc5\x8b\x17\x93\x6f\x7d\xeb\x5b\xc1\xef\xff\xfe\xef\x27\x00\xf0\xe5\x2f\x7f\x39\x00\x80\xef\x7e\xf7\xbb\xc9\xe9\xd3\xa7\x83\xf7\xdf\x7f\xdf\xd7\x8a\x61\x53\x2c\x3e\xa3\xc8\x3a\xa3\xcb\x83\x0c\x68\x6c\xe1\xc0\x7c\xbe\xfc\xe5\x2f\x07\x66\x8a\x8c\x1d\xa3\x21\xe5\x93\x5f\x13\xc0\x62\xe2\x28\xa0\x29\x80\x18\x5d\x5e\x9d\x54\x9a\x42\x22\x7f\x39\x70\x01\xd0\x36\x40\x26\x48\x30\xb7\xdc\x0f\x57\xd7\xf7\xa2\x8d\x13\x7b\xd1\xc9\x63\xdd\x68\x63\x69\xd0\x58\x6d\xc5\x8d\x4e\x23\x41\x18\x40\xf2\x67\x42\x3e\x2a\xc9\x41\x3c\x78\x9b\xe1\x91\x16\x47\xdf\x9c\x37\x6b\xd7\xc6\x9a\x69\xb1\x84\x4e\xbd\xe2\x52\x6b\xe6\x6e\x3b\xde\xbc\xbc\xde\xfb\xfe\x3b\xc7\x7b\xaf\xef\xcc\xc5\x77\x34\xdb\xce\x5f\xa7\x9b\xcc\x75\x31\x6d\x63\x92\xa5\x25\x71\x58\x5a\xea\xea\xfa\xba\x7a\xdf\x05\xac\xeb\xc8\x72\x90\xe0\xcb\xb7\xce\xc0\xbf\x4e\x3f\x58\x95\x27\x6a\xe4\xeb\x92\xa5\x2a\xef\x4a\xde\xa6\x43\x34\x2f\x46\x1b\x2c\x8d\x97\x84\xad\x03\x3c\x7c\x14\x5f\x55\x21\xf0\xbc\x5d\xa3\xa7\x84\x5d\xd7\x41\xa8\xfc\x7d\xa5\xb4\x3c\x8f\x12\x22\x5d\x59\x59\x09\xee\xdf\xbf\x9f\x1c\x3b\x76\xcc\x76\xc2\x73\x01\xb4\x40\xa3\x3d\x3f\x0c\x96\x9e\x79\x38\xf7\xdc\x87\x1e\x74\x7e\xf9\xe8\x7e\xf3\xe7\xa3\x49\x70\x4a\x31\xde\x2e\x23\x0a\x8f\xb7\xd2\xb1\x07\x4a\xba\x16\xc0\x81\xca\xfe\x37\x7a\x33\x3d\x39\x3a\x7d\x90\x2b\x56\xa6\xe5\xca\x32\xd1\x91\xa0\x2c\x21\xdd\x77\x85\x2a\x48\x55\x78\x2e\x01\x18\x8d\x04\xc0\x24\x40\xdc\xcf\x00\xcb\xfd\xc5\xd1\xed\xbb\x4b\xc3\xdb\x9b\x8b\xa3\xad\x7e\x33\x79\xac\x33\xff\x15\x05\x35\x62\x96\x16\xc9\xca\x92\x9b\xb2\xf5\x74\xb5\x50\x01\xa8\x90\xdf\xd2\xce\xb5\xd4\xa1\x16\x40\x09\xa4\x50\x7f\x14\x20\x5d\x6d\x06\x00\x9b\x9b\x9b\x40\x56\xdf\xbe\xfb\xdd\xef\xe6\x3c\x32\xd0\x62\xab\xcb\xbc\x4e\xf3\xfa\x2d\xb5\x5b\x57\x9b\x93\xda\x9a\xd4\x5e\x6d\x8a\xdf\xb7\x8d\xf1\x20\xf1\x71\xc9\x2a\x76\x3e\x06\xb4\x7c\xfd\xeb\x5f\x0f\xa4\xce\x30\x73\x0a\xce\xe3\x99\x95\x2b\xc9\xda\xab\x59\xee\x5d\xe0\x9d\xc5\xc5\x98\xb6\x61\xf3\x3b\xca\x7e\x73\xa7\xdd\xcc\xda\x12\x21\xed\xac\x8d\xe5\x65\x80\x14\xc8\xb4\x93\x00\x83\x87\x9d\x71\xff\x51\x27\xde\xbe\xbf\x34\xba\xbb\xb1\xdb\x3a\x79\x62\x37\x3a\x35\x05\x30\x41\xbb\x01\x84\x65\x1f\x2f\x52\x97\x94\xa5\x9d\x91\x79\x58\x6d\x96\x5c\x67\x0d\x3b\x6f\x3b\x79\x63\x52\x45\x3e\xc6\xf2\x42\xda\x31\x95\x01\x6a\xba\x33\xef\xb0\x99\x74\x6f\x1f\x19\x5d\x79\x6f\xad\xff\xce\x6e\x3b\xbe\xaf\x55\x61\xd5\x50\xcf\xb4\x33\x10\xc7\x75\xb3\x8a\x48\xdb\xf7\x6e\x91\xea\xb3\x0d\x68\xd8\x00\xb4\xc4\xab\xaa\xfe\xdb\x3a\x56\xa9\xff\xa9\xea\x17\x5c\xef\x23\xb5\x01\x57\x7f\x4b\xf9\xbb\xfa\x21\x5b\xfb\x92\xe2\x5d\x03\x1f\xe9\x39\x6f\xff\x75\xcb\x40\x92\xd1\x35\xf0\xb1\x02\x52\x5b\xdf\x56\x85\xe8\x66\x45\xb3\x55\xc1\x07\x0d\xfb\x80\xa0\x59\xdf\xa1\x4e\xfe\xd2\xc7\x0a\x00\x24\x9d\x4e\x27\xf8\xc6\x37\xbe\x81\xb9\xb9\xb9\x9c\x2f\x73\x02\x0c\x90\x99\x97\x91\x29\xb3\x56\x1c\x2c\xbc\xf0\x41\xe7\x23\x1f\x7a\xd0\xf9\xd5\xd5\x5e\xf3\xe7\x9b\x93\x60\x83\x83\x96\x5a\xc1\x6b\xbe\xc5\x41\xef\x62\x2d\xcc\x7b\xdb\xa6\x7d\xaa\xc4\x12\x79\x5b\x08\xec\x96\x96\x54\x81\x4e\x14\xe2\x61\x33\x19\x3c\x9a\x8b\x37\xef\x2e\x0d\x6f\xdd\x59\x1e\xdc\xba\xbf\x30\xde\x1c\x36\x93\x3d\xad\x30\xc8\x14\x68\x6e\x55\x61\x0a\xb5\x60\x69\xd1\xc2\xb6\xfc\xd9\x1f\xdd\xd9\x96\x76\x7c\x74\xf9\x72\x69\xf7\x5a\x5a\x2e\xbc\x23\xcd\xa6\x7b\xcc\xad\x4b\xc1\xf8\x8e\xae\xea\xc4\xf3\x3c\xad\xf5\x5a\x48\x23\xf1\xb6\xb5\x2b\x13\x6c\xcf\x7c\xda\x97\x24\x7f\x2d\x1d\xf1\x1b\xbf\xf1\x1b\xc1\x5f\xfc\xc5\x5f\x24\xbf\xfd\xdb\xbf\x1d\xfc\xc9\x9f\xfc\x49\x02\x58\x57\x36\xe5\x71\x06\xbc\xe8\x6c\xf5\x1f\x9f\xea\xd5\xc5\xf3\x92\xa4\xcd\xec\x6c\x16\x18\xf3\x97\x5b\x64\x82\x04\xf3\x4b\xc3\x70\xe9\xc4\x6e\x74\xf2\xe4\xe3\xd6\x99\xf5\xbd\xe8\xe4\xd2\x20\x5c\x6b\xc5\x2a\xca\xf5\x01\x9b\x12\x2a\xfc\x02\x19\xa8\x28\x4e\x15\xeb\x6c\x1e\x48\xb1\x79\x61\x3a\x55\x5c\x9e\x26\x32\x0f\xe8\x34\xf2\xf4\xb8\x02\x00\x98\x28\x3d\xba\xbd\x3c\x7a\xe7\xb5\x53\xbb\xff\xe3\x83\xa5\xd1\xf5\x71\xa8\x77\x00\xec\x66\xd3\x42\xfc\xf0\x44\xba\x8a\xa8\xb4\x0d\x80\xc5\xda\x62\xab\x7b\x75\xda\x42\x9d\x8e\x95\xd3\xfb\xf4\x3b\x36\x1e\x36\x59\x7d\xda\x8c\x8f\x5c\x3e\xf2\xf8\xf4\x89\x3e\xfd\xe3\xac\x7d\x2f\xa7\x85\x23\x2f\xd7\x73\xd0\x67\x4a\x78\xe8\x53\x80\x2e\xe1\x7c\xd2\xf8\xa4\xad\x42\x64\x36\x65\xe8\xfa\x08\xbe\x05\x6a\x53\xde\xf4\x5a\x46\x82\x4a\x05\xdf\xfa\xd6\xb7\x00\xe4\xca\x85\xef\xd3\x62\x0e\x81\xcb\xb7\xf0\x07\xd0\xf9\xc4\xdd\x85\x73\xcf\xdf\x9b\xff\xcd\xd5\x5e\xf8\xb9\x30\x09\xd6\x14\x10\x70\x9f\x15\x80\x7e\x30\x32\xe9\xc2\x7d\x5b\xb2\x0b\xaf\xbd\xe9\xa8\xf2\x82\x03\xdb\x18\x47\xc0\xec\xda\x00\x17\x6b\x1a\xc2\x77\x3a\x54\x2b\x13\xf3\xf9\xf8\xfc\x1d\x73\xf9\x05\x9f\x18\x63\xc6\xce\xcb\x01\x18\x85\x49\xef\xd1\x5c\xbc\x75\xf7\xc8\xe8\xc6\xad\x95\xfe\x8d\x0f\x96\x46\xf7\x46\x0d\xbd\xaf\x91\x83\x93\x11\x05\x2e\xe6\x9a\xfc\xda\xf6\x62\xc9\x01\x0b\xb9\x36\x8e\xb6\x05\xcb\x8a\x01\x2b\xdc\x89\xd6\x48\x4a\xa7\x80\x58\x70\x8d\x9e\x5c\x34\x94\xce\x17\x50\xd8\xea\x74\x95\x4c\xb3\x80\xa2\xba\xfa\xc1\x96\xde\x57\x29\xd6\x1d\x28\x89\xc1\x05\x64\xa8\x05\x86\x00\x99\x80\xc4\xdb\x00\x0c\x07\x31\x66\xea\xc8\x4c\x1b\x95\x00\xcc\xc2\xb0\xb1\x7c\x72\xb7\xb5\x71\xfa\x51\xeb\xec\x89\xdd\xd6\x99\xa5\x61\x63\xb5\x91\x18\x5f\x37\x45\xfe\x37\x21\x6d\x18\xae\x76\xef\x35\x2d\xcc\x74\x87\xec\x27\xa3\xa1\x15\x92\x47\x73\xe3\xdb\xdf\x3b\xb3\xf7\xf7\xd7\x8e\xf6\x2f\x8f\x43\xbd\x9d\x01\x16\xe9\xc4\xe7\x02\x68\x41\xb1\x3d\x89\xbe\x5c\x15\xa1\x4e\x5f\x32\x6b\xa8\xd3\x4f\xb9\xae\x25\xfa\x9f\x54\xbb\x39\x2c\x1e\x75\xf3\x39\x48\x59\xd5\x0e\x9e\x63\x6c\xaf\xf0\xd3\xae\x40\xb3\x14\xc2\x41\xc0\x56\xad\xe7\x99\xf2\x93\x56\x2e\x44\x64\x45\x42\x5b\x41\x75\x3e\x71\x77\xe1\xe9\x8f\x7e\x30\xff\xff\x2c\xf7\x9b\x5f\x08\x13\xb5\x4c\x2d\x2d\x35\x0c\x21\xb5\x83\x2f\xef\x32\x9d\x3d\xa5\xaf\x9f\x0d\x7d\xc6\x47\x87\xbe\x41\x23\x5d\xc9\xb0\x33\x17\x6f\xde\x59\x1e\xde\xb8\xb9\xd2\xbf\x71\x6f\x71\xb4\x39\x6c\xea\xc7\x28\x5a\x54\x46\x98\x9a\xac\x47\x5a\xeb\xdc\xba\x42\xa6\x84\x4a\xfe\x2b\x7a\xba\x7c\x39\xe6\xa3\xc3\x2c\x24\xec\x37\x57\xc0\x74\x39\x2f\x09\x75\xea\x69\x81\xaf\x07\x9f\x3a\x75\xdb\x37\x7d\x15\x28\xf2\x19\x24\x1c\x44\x2f\xfc\xb4\x74\x4a\x00\x20\x39\x7b\xf6\x6c\x70\xe3\xc6\x8d\x52\x7e\x99\xc3\xaf\x04\xf8\xe8\x2f\xbd\x96\xc0\x4b\x00\xbb\x05\x86\x02\x97\x0e\xb9\x6e\x07\x09\xe6\x3a\xa3\xc6\xf2\x13\x8f\x5b\x1b\x4f\x3d\x9a\x7b\xfa\xe4\x4e\xf4\xf4\xfc\xa8\xb1\x6c\xf6\x80\xa1\x6d\x28\x9f\xde\x25\xc0\xde\x05\x4c\xe8\x84\x2d\xb5\xb8\x14\xd2\x17\x06\x09\x53\x06\x09\x90\xf4\xa2\xc9\xce\xeb\x4f\xec\xff\xe3\x8f\x4e\xee\x5d\x1a\x35\xf4\x0e\x54\x69\xaf\x16\x7a\x26\x11\x9d\x7a\x05\xa6\xc0\x65\x96\x15\x44\x55\x20\xbe\x0e\x1f\xdb\xe8\xde\x65\x45\x70\x0d\x0a\x7c\xac\x18\xb3\x58\x5c\x24\xde\x87\x05\x16\xea\x58\x4d\x0e\x23\x1c\x58\x27\x34\x6a\x26\xc8\xdb\x08\x8b\xd7\x24\x3e\x10\x68\x66\x11\x4e\x3b\x78\x9b\xca\xa5\xd9\xaf\x8d\x0f\x1c\x74\xfc\xbd\x7c\xd2\xc0\xf5\x9c\x2c\xd1\x54\xc0\xf4\x00\x38\x55\xdc\xff\xa1\x1d\x26\xaa\xf3\xe1\x07\x9d\x53\x2f\xde\x59\xf8\x9d\x95\x7e\xf8\x85\x30\x51\x2b\x40\x71\x53\xaa\x9f\x04\x68\x31\x4a\x8c\x5a\x43\x7c\x7c\x67\xa6\x34\x76\xa9\x94\x83\x52\xf2\x49\xc9\x97\x7f\x56\x8c\xf0\x78\x8e\xe3\x20\x89\x1f\x75\xe2\x7b\x37\x57\x07\x97\x7f\x7c\x7c\xff\x8d\xab\x6b\xfd\x77\xb7\x16\xc6\xf7\xe3\x06\x76\xa1\x72\xc5\xd9\x05\xd0\x55\x4a\xed\x21\x55\xa0\xfb\x4a\xa9\x1e\x80\xbe\x52\xaa\xaf\x94\xea\x03\x18\x12\x4b\xcc\x50\x6b\x3d\x06\xd9\xbe\x1f\xe9\xf2\xe6\x89\x52\x6a\xa2\xb5\xd6\x64\x0a\x8c\x36\x3c\x4d\xad\x2c\xe7\xcf\x9f\x57\x96\xd1\xa3\x29\x76\x9f\x3a\x25\xd5\x47\xde\x1e\x78\x1a\x5b\xe0\x75\x5c\x0b\xf1\x9a\xd1\x6b\x46\x4f\xd3\x24\x24\xde\xd6\x5e\xb4\x40\xe3\xd2\x0d\xd2\x33\x5f\x9d\xc2\xcb\xc8\xb7\x8c\x0d\x3d\x00\xe8\x9d\x9d\x1d\xdd\x6a\xb5\x82\xc9\x64\xa2\xe7\xe7\xe7\x83\xf1\x78\xac\x01\xe0\xc2\x85\x0b\xbc\x8c\x78\x55\xd5\x60\xf5\x21\xfb\x33\x75\x68\x92\x3d\x9f\x64\x7f\x31\x80\x31\x8a\xd6\x87\xb1\x79\x96\x59\xfc\x26\x00\xc6\x1a\x88\x47\xa1\x1e\xed\xcc\xc5\xdd\xad\xf9\xd1\xc3\x5e\x94\xec\x40\xe9\xb8\x99\xa8\x28\x4c\x54\xa4\x4a\xeb\x87\xa6\x8d\x2c\x07\x1d\xac\xdd\x69\xe3\xd8\x4b\x0e\x83\x4c\x2b\x66\x66\x25\xa5\xa0\xa6\x60\x29\x9d\x5a\x74\x06\xcd\x64\xef\xfa\xda\xe0\xb5\x1f\x9d\xec\x5e\x1a\x34\x93\x1d\x00\xbb\x50\xd8\x47\xda\xe6\xf6\x01\xf4\xb3\xbf\x61\xf6\x6e\x63\xad\xf5\x44\xa5\xcb\x0a\x13\x5a\x9e\xe3\xf1\x58\xdd\xbf\x7f\xdf\xd4\x0f\x57\x1b\x31\xdf\x59\xa1\xd8\xc1\xd2\xef\x22\xf5\x4f\x36\xfd\x6e\x6b\x47\x25\x4c\xc8\xe4\xe2\xf9\xd8\xe8\xa5\xfa\x4c\x41\x42\x55\xff\x45\xe5\xa7\x74\x52\x9b\xa5\xef\x66\x2b\x13\xa9\x1c\x78\x7b\x06\x8b\x93\xe4\xb1\xb5\xcb\xaa\xb6\x47\xdf\xc5\xa7\x8d\xf2\x3c\x73\xb9\x14\x13\xf2\xa0\xa3\x24\x5f\x5e\x87\xc5\x1f\x35\xf9\xd4\x31\xd3\xd9\x46\x99\x60\xcf\x01\x00\x2b\x2b\x2b\xf8\xf5\x5f\xff\xf5\x7c\x7f\x0d\x6a\x65\xc9\x4c\xca\xd3\xd5\x43\x4a\xb5\x9b\xb1\xea\x9c\xdd\x6e\x9f\xfd\xf8\xdd\x85\xaf\xae\x77\xa3\x5f\x69\x4e\xd4\x3a\x80\x80\x3b\xa2\x3a\x83\x04\x3a\x66\xb4\x5c\x1c\x1e\x40\xf2\xb3\xc6\x18\x2b\x0b\x37\x6b\x97\xb5\x46\xd1\x39\x37\x0e\x74\xbc\xd7\x9a\xec\xdc\x5b\x1c\xde\xba\xbd\x3c\xbc\x75\x7f\x71\x74\x77\xb7\x1d\xef\x8c\x1b\x7a\x2f\x73\xbc\xa5\x7f\x3d\x64\x96\x17\x64\xab\x19\x88\xdf\x0a\x77\xbc\xcd\x7d\x57\xd8\xca\x20\xd1\x5f\xc5\xdc\x9b\xe5\xb6\x40\xba\xeb\xec\xf2\xf2\x72\xb0\xb3\xb3\xe3\x63\xa1\xf3\xad\xbf\x52\x3d\x34\xf7\xbe\x23\xbf\x82\xcc\x15\xbc\x7d\xa6\x90\x7c\x78\x57\x85\x2a\xbd\x70\x58\xa3\x49\x57\x7e\x75\xe5\xe3\xd3\x48\x01\x7b\x5c\xb2\xc0\xe8\xe2\x51\x03\xd2\xe1\x8e\xc5\x4d\xeb\xca\xfe\x2f\xe9\x9f\x46\x3b\xd0\x68\x47\x13\x75\x64\xb5\xd7\x5c\x7b\x62\xa7\x75\xea\xd4\xe3\xd6\xd9\xb5\xfd\x68\x63\x6e\x1c\x2c\x04\x9a\x9c\xe3\x94\x35\x2e\x4d\x80\xc9\x61\x35\x72\x0d\x8d\x61\x98\xf4\x6e\x2f\x0f\xdf\xbe\x74\x6a\xef\x7f\xdc\x5b\x1a\xbd\xaf\x01\x63\x6d\x31\x2b\x88\xba\xd9\x00\xc1\x9c\x43\x44\xcf\xec\xa2\x56\x4b\xd7\x2a\x22\x13\xfe\x77\x8e\xfc\x0f\xa5\xce\x1c\x20\x9f\xc3\xb2\x20\xfd\x34\xa6\x73\x7e\xaa\x6d\x57\xaa\xca\x75\x80\x46\x1d\x20\xe0\xc3\x7b\x16\x40\x41\xe3\xc0\x9e\xf9\x74\x0e\x07\xa9\xbc\x39\xff\xaf\x7d\xed\x6b\xc1\xfa\xfa\x3a\x00\x51\x59\x99\xed\xc3\xdb\x00\xa2\x56\xac\x96\x4e\xed\xb4\xcf\xbc\x70\x77\xfe\x97\x4e\xec\x45\x5f\x69\xc5\xc1\x59\x64\xa0\x45\x0e\x76\xb3\xc8\xe1\x82\x0e\x8f\xc0\x32\xcc\x01\x46\x61\x55\x06\xb7\xac\x10\x7a\x61\x8f\x09\x9f\x77\x48\xa0\xd1\x8b\x92\x9d\xfb\x8b\xa3\xbb\xb7\x97\x07\x37\xee\x2d\x8e\xee\x3e\x9e\x8b\xb7\x07\x61\xf2\x38\x51\x18\x68\xe8\x5e\x06\x46\xf2\x7d\x22\xc8\x54\xd1\x40\xb3\x83\x10\xd9\x9f\xd9\x92\x3f\xc9\xae\x4b\x1b\xc4\x65\xb2\xa7\x68\x9f\xec\x0f\xe2\xb1\xe7\x04\x07\x1a\xc5\xd7\x92\xd3\x56\xd5\x5b\x5b\x1b\xa8\x32\x65\x4b\xcf\x24\xde\x36\xf0\x53\x87\x7f\x15\xc0\xa9\xfb\x0e\x2e\x59\x6d\xfc\x7c\xd2\x7a\xf1\x58\x5b\x5b\x0b\xb6\xb6\xb6\x92\x13\x27\x4e\x04\x1f\x7c\xf0\x41\x22\x2c\xb1\x36\x40\x85\xaf\x20\x34\xbf\x74\xba\xd8\x76\xa0\xa3\x04\x60\x3a\xd9\x75\x47\x6b\xdd\x56\x50\xed\x30\x51\x9d\xb9\x71\xb0\xb2\xb6\xdf\x5c\x3b\xb5\xd3\x3a\x73\xf2\x71\xeb\xec\x4a\xbf\xb9\xde\x8a\x55\x1b\x04\xac\x94\xda\x95\xf1\x3b\x23\x0f\x34\xa6\x66\x99\x82\x43\xbd\xce\xd2\xb3\xb6\x3e\x0e\x92\xc1\xe6\xe2\xe8\xc6\xeb\x27\xbb\xff\xf3\xfa\xea\xe0\xc7\xc6\x19\x17\x6c\x8a\x28\x5b\xfe\xcc\x0f\x4f\xa4\xab\x87\x12\xa0\x30\x4d\x64\xfb\xf6\x2e\xa0\x0e\x81\x5e\x8a\xaf\xdb\x01\x4b\xf9\xd9\xfa\x2e\x58\x68\xaa\xae\xeb\xf6\x99\xb3\xf6\xb1\x3e\x72\x48\xef\x60\x6b\x0b\x75\x06\x4b\xb6\x32\x9c\x05\x17\x14\x64\xf9\x49\xfa\xb8\x70\x65\x75\x18\xa8\xb2\xae\x32\x3b\x0c\x1a\xd7\x47\xc0\xf1\xe3\xc7\x71\xff\xfe\xfd\x84\xec\x8a\x6b\x56\x1f\x84\x2a\x3d\xe1\xd9\x9c\xf4\x1c\x01\x68\xb7\xe3\x60\xe1\xe4\x6e\xeb\xec\x47\xee\xcd\x7f\xf1\x89\x9d\xd6\x97\xdb\x71\x70\x2e\x80\x0a\x7d\x01\x48\x9d\x8e\xdf\x87\x27\xdf\x14\xae\x8a\x47\x7a\x9f\xfd\x5f\x95\xd6\x01\x60\xbc\xf2\xca\x46\x8e\xe3\x86\x1e\x3d\xec\x8c\xef\xbd\xbf\x32\x7c\xef\xce\x91\xe1\xed\xed\xce\x78\xb3\xdf\x9c\x3c\x8e\x03\xf4\x32\xc0\x62\xc0\xc9\x80\x02\x16\x02\x56\x06\x20\x4b\x9a\x33\x00\x92\x1f\xea\xa6\xc9\xf9\x41\x59\xd6\xe2\xc6\x70\x26\x5c\xbc\x78\x31\x79\xe6\x99\x67\x02\x00\xb8\x76\xed\x9a\x6f\xa3\x05\x79\x2e\x81\x18\x13\x5c\x0a\x44\x52\x32\xae\x67\x3c\x1f\x5f\xde\xb3\xe4\x23\xd1\xf9\x0e\x08\x66\xed\x58\x7c\x78\xd7\x09\x33\xe9\x0e\x61\xf7\xde\x40\xb8\x0e\x84\x3f\xea\x0b\x33\x3d\xee\xa3\xb8\x13\x6f\xc1\xf2\xa2\xb5\xee\x28\xa5\xda\x4a\xa3\xd3\x9c\xa8\xf9\xc5\x41\xb8\x7a\x7c\xaf\xb9\x71\xea\x71\xfb\xec\x89\xdd\xe8\xd4\xe2\x30\x5c\x4d\x37\xb0\xab\x08\x06\xaf\xc0\x5f\x77\xc4\x41\x12\x3f\xec\xc4\xb7\x2f\xaf\xf7\xbe\x7f\x79\xbd\xf7\xa3\xfd\x28\xde\x44\x71\x3b\x7f\x73\x06\x91\xe4\xd7\xc2\xdb\x98\x0d\xb4\xd4\x0d\x3f\xc9\xb4\x87\xdd\x37\x71\x7a\x40\x6e\x93\x55\xe0\xc7\x37\xbf\xba\x60\x5e\x4a\x7f\x90\x81\xc0\x41\xf8\x39\x83\xd7\xc6\x66\x9e\x19\x4a\x42\xdb\x3e\x4a\x5d\xa5\xe6\xca\x43\x4a\x57\xa5\x40\x7d\xd0\x34\x7f\x07\x31\xfe\xa5\x97\x5e\x0a\x4e\x9f\x3e\xcd\x47\x58\xc6\x14\x1c\x60\xaa\x8c\xda\x51\xac\x16\x4e\xec\xb5\xce\x3c\xbb\xd9\xf9\xaf\x27\x1f\xb7\xbe\xd0\x4e\xb7\xf1\x0f\x01\x7f\x04\x49\x15\x24\x07\x2d\x85\x6b\x03\x1a\x9c\xe8\xc5\x10\x19\x4b\x09\xdb\xe8\x4a\x48\x4a\x3d\x57\xa6\x6e\x3c\x05\x8e\x39\xdb\x3a\xa0\x05\xa0\x1b\xd3\x01\x50\x1a\x93\x06\xe2\xfd\xe6\x64\xf7\xfe\xd2\xe8\xf6\xf5\xd5\xc1\xd5\xfb\x8b\xc3\xbb\x7b\xad\xc9\x76\xdc\xd0\xfb\x1a\xe8\x41\x61\xa0\xa0\xf8\xf4\x90\xb4\x91\x9c\xf1\x55\xa1\x7e\x2b\x54\x91\x26\xe9\xfb\x14\xb7\xdf\xa7\xd2\x71\x93\x76\x06\x58\x00\xb9\xce\x73\x50\x42\x69\x12\x46\xe7\xaa\xa3\x2e\x9e\x3c\xde\x45\xc3\x65\xb1\xe5\x61\xcb\xcf\xd5\xa6\x13\x76\x2d\xa5\xa9\x7a\x3f\x4a\xe3\x33\x42\xab\x6a\xff\x75\x47\x73\x55\x03\x2b\x9a\x67\x89\xf6\x3f\xfe\xe3\x3f\xf0\xe6\x9b\x6f\x26\x80\x73\x7f\x18\x93\x2e\x80\xac\x9f\x62\xa4\x7a\xc3\xec\x75\x62\xf6\x80\xc9\x0f\xf4\xc4\xf4\x50\xcf\x36\x94\x1a\x8d\x42\x3d\x78\xd4\x19\xf7\xfb\xcd\xc9\xee\xe3\xb9\xc9\xce\xa3\xce\x78\xeb\x89\x9d\xd6\xd9\x63\xdd\x68\xa3\x1d\x07\x0b\x41\xa2\x02\xc5\x46\x1d\xc6\x29\x57\x29\x55\xd0\x1b\xb4\xfd\x71\x9f\x18\x00\x98\x28\x9d\xec\xb5\x26\x5b\xb7\x97\x07\xef\xdc\x5c\x19\x5c\xed\x45\x93\x1d\xa4\xd3\x41\x74\xe5\x90\xd4\xee\x68\xb9\x15\x40\x4b\xa7\xd3\x09\x7a\xbd\x9e\x4f\x27\x4d\xe3\xaa\xbe\xa7\x44\x6b\xfb\xb6\x12\xe0\xf6\x09\x3e\x83\x70\xdf\x3e\x53\xba\xf6\x79\x5e\x95\x3f\xa5\xa9\x5b\x76\x26\x6d\x9d\x77\x74\x7d\x2f\xd7\x73\x5b\x1a\x27\x60\xe3\xce\xb9\x01\x64\xa7\x19\x5f\x47\x1a\xee\xb0\xc4\x9d\x88\x24\x67\x24\xea\x94\x65\x7b\x4e\x9d\xb1\x5c\x00\x33\x40\xcc\xbf\xce\x5b\x34\x7d\xb0\x58\x3a\xdd\x00\x00\x20\x00\x49\x44\x41\x54\x95\xe3\x13\xcf\x83\x07\x9b\x73\x55\x21\x7c\xe1\x0b\x5f\x48\x55\x41\x6a\x65\x81\x52\x2a\x50\x4a\x35\x00\x04\x5a\xeb\xa6\x52\x2a\xf7\x69\x39\xb1\x17\x9d\xfe\xd0\x83\xce\x67\xcf\xec\xb4\xff\x5b\x67\xd4\x78\x3e\x80\x6a\x59\x64\x2b\xe4\xa8\x33\x45\x63\x03\x12\x26\xbe\x00\x60\xa8\x0b\x14\xa1\xa1\xc0\x82\x9a\x95\x33\xd9\x4b\xbc\xad\x62\x91\xed\xc8\x79\x1a\x5f\xc0\x52\x7c\x9f\xa9\x15\x29\x09\x74\x32\x68\x26\xfb\x5b\xf3\xe3\x7b\xd7\xd7\x06\x97\xdf\x3d\xd6\xfb\xf1\x9d\xe5\xe1\xf5\x6e\x6b\xb2\x35\x09\xd0\xd5\xd0\x7b\x48\x1d\x6d\xf7\x01\xec\x21\x53\x9e\xd9\x7d\x1f\xa9\xf3\x6d\xbe\xa2\x88\x99\xac\x8d\x13\xe4\x04\xc0\x44\x29\xa5\x33\xc0\xa2\x8d\x5f\x4b\xe6\x40\x08\xa5\x14\x5e\x79\xe5\x95\x24\x08\x02\x35\x3f\x3f\xaf\xb6\xb7\xb7\x5d\x75\x4e\x8a\xb3\x39\xd1\x71\x3a\x9b\x93\x1d\xa7\x91\x78\xd9\xea\x31\xaf\xbf\x86\x27\x77\xf4\xb3\x05\x9b\xa3\xa3\xe4\x60\xe8\x92\x1f\x24\x8d\xab\x1c\x24\xbe\x92\xd3\x23\xe5\x45\x7f\xa9\x8e\xe0\xbc\xb9\x4c\x92\xae\xe1\x32\xd2\x77\xe3\x65\x51\x78\x8f\xcd\xcd\xcd\xfc\xfe\xd2\xa5\x4b\xda\xfc\x9d\x3f\x7f\x5e\x65\x75\x89\xf2\x48\x58\x9e\x26\x2e\x41\x5a\x27\x35\xb9\x4e\x32\xa7\xf0\x49\x06\x60\x4c\x9d\x35\x0e\xbe\xb1\x56\x98\x64\x47\x5a\xec\xef\xb5\x27\x7b\xbd\x56\xd2\x1d\x37\xf4\x38\x4c\x54\x23\x4a\x54\x2b\xd0\xaa\x01\x20\x9b\x1e\xca\xf6\x79\xc9\xda\xbd\xce\xc4\x52\x00\x54\xe6\x6c\x56\x28\x74\x32\x9d\xd4\x8b\x26\x8f\x6e\x2f\x8f\x2e\xbf\x7b\xac\xff\xe6\xd6\xc2\xe8\x76\x76\xe2\xb3\x99\x1a\xca\xdb\x9d\xd6\x7a\xa8\x94\x32\x0e\xb9\xd4\xd2\x92\xd7\x93\x8b\x17\x2f\x26\xad\x56\x2b\x18\x0c\x06\xb4\x0c\xa4\xf2\x35\xdf\xd5\x7c\x5b\xde\xa1\x55\xb5\x09\x6d\x49\x03\x76\x6f\x6b\xa3\x92\x33\xab\x24\x9f\x54\x4f\x6c\x69\x4d\x1a\x2a\x9f\xad\xef\x73\xb5\x19\x29\xd8\xda\xac\xe1\x2b\x3d\xe3\x6d\x86\xd2\x49\xed\xc1\x26\x2b\x95\x81\xb6\x45\xca\xcf\xa4\xa5\x32\x19\xde\x3c\x0d\x84\xeb\xfc\x9e\x02\x17\xf3\x12\x52\x03\x76\x8d\x70\xaa\x94\x91\x4f\xa8\xa2\xe5\x2f\x52\xe7\x63\x9a\x30\x6b\x25\xb0\xa6\xa3\xe7\x0f\x01\xc8\x97\x3d\x03\x68\x28\xa5\x42\xa5\x54\x0b\x40\xd4\x48\x30\xb7\xde\x8d\x4e\x7c\xe8\x41\xe7\xbf\x3c\xf9\x68\xee\x4b\xf3\xa3\xc6\xc7\x1a\x50\x73\xf9\xdb\xb8\xfc\x56\xd4\x14\x50\x94\x0c\x28\xd9\x8d\x6c\x15\x91\xe3\x0a\xc0\xc2\x95\xaf\x84\x92\x28\x3f\x55\xce\x38\x4d\x22\x27\xe4\xbd\x10\x80\x7c\xae\xdd\xc4\x25\xd0\x88\x1b\x7a\xb4\xd7\x9e\x6c\xdf\x3d\x32\xbc\x7e\xf5\x58\xff\xc7\xef\x1d\xed\x5f\xde\x5a\x18\xdf\x19\x37\x74\xba\x6a\x41\x61\x2f\x03\x28\x06\xb4\x18\xa5\xb9\x8f\x6c\xb5\x10\x80\x21\x9b\x2a\x8a\xb5\xd6\x63\xa3\xfc\xcd\xca\x06\x03\x58\x90\xd5\xfb\x0c\xc4\xe0\xd6\xad\x5b\xf8\xf3\x3f\xff\xf3\x64\x7e\x7e\x5e\xdd\xbc\x79\x53\xdf\xbd\x7b\x57\x6f\x6f\x6f\xd3\xfa\xa0\xc8\x9f\x54\x47\x68\x43\xb4\x29\xcb\x40\x48\x4f\x95\x83\xf4\x8c\x2b\x43\xdb\xbd\xa4\xac\x25\x03\x1d\x7d\xce\xaf\x6d\x4a\x8e\xf2\xe6\xe9\xa8\x52\x76\x76\xf6\x02\x6f\x2a\x23\x97\xc1\xc6\x8b\xbe\x53\x95\x8e\xaa\x52\xb8\x3c\x1f\xcd\xe2\x6d\x40\xd0\x1a\xe6\xe7\xe7\x55\x18\x86\x68\xb7\xdb\x86\x5f\x0a\x1f\xd2\xd5\x69\xb4\x33\xd7\x59\x9c\xc6\x74\x05\x52\x82\xb4\xae\x9a\x15\x46\x06\xac\x18\x20\x33\xc9\x69\x15\x26\x3a\x40\x3c\x0c\xf5\xa8\xdb\x9a\xec\xef\xb6\x27\x3b\xc3\x66\xd2\x0b\xb4\x52\xd1\x24\x88\x1a\x89\x6a\xa6\x06\x50\x05\x14\x56\x12\x11\xaf\x3a\x45\x7e\x88\xb5\x54\x03\x18\x85\xba\x77\x7f\x71\xf4\xde\xd5\x63\xbd\xd7\xef\x2c\x0f\x6f\xc4\x21\x1e\xa3\xbc\xe4\xd9\x0c\x18\x46\x59\x5b\x9b\xca\xc7\x46\xef\xaf\xbf\xfe\xba\x1a\x8d\x46\x14\xc0\x49\xe5\x69\xea\x99\xad\x43\xf3\xfd\x26\x95\x9d\xa0\x23\x2d\xcd\x43\x02\x22\xbc\xde\xd1\xf6\xca\x65\xa5\xf5\x8a\xd7\x71\x57\x1f\x6a\xd3\x2d\x52\x1a\xa9\x1d\x53\x3d\x64\x6b\x47\xd2\xbb\xf3\x7e\x5f\x1a\x84\xb9\xbe\x99\x8b\x9f\x54\x3e\x92\xae\xe4\x21\x7f\x4e\x81\x8b\xed\x85\xe8\x4b\xbb\x94\x11\x57\xbe\x3c\x43\x1b\x02\xf5\x09\x92\x92\x77\xf1\x91\x3a\x17\xdf\x8f\x6f\x9e\xbb\x4c\x8c\xf8\xf6\xb7\xbf\x5d\x3a\x34\x31\xb3\xb6\x98\xc3\xd7\x22\xad\x75\x2b\xd0\xaa\xbd\xda\x6b\x1e\x3b\xb7\xd5\x39\x7f\x76\x7b\xee\x17\x97\x86\xe1\x4b\x0d\x8d\xf9\xa2\xa6\x28\x06\xd7\x9e\x26\xca\x7a\x63\x02\x43\x03\xfc\xa9\xb6\x5b\x44\xac\xbc\x2b\x40\x4c\xca\x77\xba\x15\x79\xd1\x51\xd7\x9c\x61\x94\x32\xb2\x39\xf0\x26\x4a\x27\x83\x66\xb2\xb7\xb5\x30\xbe\x7b\x63\x35\xb5\xb2\xbc\xbf\x32\xbc\xde\x6b\x25\x0f\xb5\xc2\x1e\xd2\xa5\x96\xf9\x72\xcb\x0c\xbc\xf4\xc8\xf2\xe6\x01\xb2\x55\x43\xc6\xa7\x45\x29\x35\x06\x50\x02\x2c\x28\x8e\x6c\xb5\xb1\xac\x5c\xba\x74\x49\xaf\xad\xad\xa9\xef\x7d\xef\x7b\xe8\xf7\xfb\xfa\xe6\xcd\x9b\x52\x5d\xa7\x8a\x87\xd7\x2d\x3e\x82\xe3\x16\x04\x5a\x9f\x24\x85\x2c\x29\x33\x9a\x07\x57\x8c\xfc\xde\xd4\x77\x40\xce\x8f\x2b\x4d\x0e\x70\xa8\x0c\x34\x48\x7c\x5c\xef\x64\x53\xc6\xd2\xc8\x53\x7a\x57\x1e\x6c\xba\x43\x6a\xdb\x34\x2f\xaa\x10\xe9\xbb\xd9\xf4\x89\xa4\xe3\xe8\x7b\xd1\xfc\x6d\xba\x28\xff\xbd\x79\xf3\x26\xde\x7a\xeb\xad\xe4\xd2\xa5\x4b\xfa\xa9\xa7\x9e\x52\xd9\x4e\xda\x5a\x29\x83\x5d\xa6\x4b\x83\xb3\x38\xf3\x9b\xa8\x74\x09\x3e\xb5\xc4\xc4\x19\xdf\x82\xf5\x45\x4f\xb7\xce\x9f\x28\xa5\xe2\x49\x80\x51\x3f\x4a\xfa\x3b\x9d\x78\x77\x3f\x9a\xec\x06\x1a\x68\x26\x41\x14\x26\xaa\xa1\x34\xc2\x7c\xe7\x5b\xb6\x23\xee\xd4\x6f\xae\x78\x96\xd8\xa4\x81\xd1\xc3\xf9\xf1\xed\xab\x6b\xfd\xd7\x6f\xad\x0c\xdf\xed\x35\x27\x0f\x95\x52\x7b\x5a\x6b\xb3\xb5\x40\x57\x6b\x6d\x06\x0c\xa6\xbd\xe5\xd6\x16\xba\x32\xef\xe2\xc5\x8b\xc9\xda\xda\x9a\xba\x72\xe5\x8a\xa4\x53\xab\xc0\x29\xff\x6e\x1c\x80\x4b\xb4\xb6\x6b\xdb\x37\x76\x01\x13\xa9\x2f\x71\xf1\xe1\xb2\xda\xea\x89\x4d\x56\x6e\x85\x90\xda\xb9\x0d\x44\x28\xe1\x9a\xcb\x41\xd3\xf1\xa9\x18\x29\x0f\x3e\x98\x92\x06\x0b\xb6\x6f\x26\xb5\x17\x1a\x78\x39\xd9\xf0\x42\x9e\xb6\x6a\x1f\x17\x49\x59\xf3\x17\x34\xd7\x12\x2a\x96\x4c\x71\x2e\x0b\x0e\x0f\xb6\x8e\x80\xf3\xe1\x05\xa2\x21\xcb\xcc\x9f\xdb\x02\xcf\x8b\xcb\x83\xf3\xe7\xcf\x2b\x00\x05\xd0\x02\xb6\x53\xa6\x82\x9a\x5b\x1a\x35\x96\x3f\xf4\xa0\xf3\xb1\x67\x1e\xce\xfd\xd2\xf2\xa0\xf9\xa9\x50\xab\x23\xe5\xb6\x27\x00\x0a\x1b\x70\x70\x81\x08\x0d\x90\xe1\x54\xe9\x11\x66\xd8\x8a\xbf\x20\x97\x2b\x6f\x95\x8e\xe0\x52\x11\xa6\x44\xf9\x14\x57\x3e\x0e\xcf\x4c\xd3\x06\xcb\x40\x23\x0e\x30\xda\x6b\xc7\xdb\x77\x8e\x0c\x6f\x5c\x39\xd6\x7f\xeb\xda\xb1\xfe\xe5\x87\x0b\xf1\x07\x99\x39\x7a\x1f\xd9\xc9\xb2\xc0\xd4\xda\x92\x29\xce\x3e\x52\xb0\xd2\x43\xba\x5f\x84\x99\x16\x1a\x23\x75\xba\x35\x23\x3f\x33\xc2\x15\x01\xcb\xe9\xd3\xa7\xd5\x3b\xef\xbc\xa3\x01\xe0\xda\xb5\x6b\xba\xdf\xef\xdb\x3a\xd0\x2a\xb3\xae\xad\x73\xe3\x9d\x3e\x4f\x2b\xe5\x63\xa3\x73\xdd\xf3\x3a\x2f\x75\x04\x36\x05\xe7\x6a\x13\x92\xdc\xf4\x57\x1a\x65\x9a\x20\xe5\x47\xad\xbb\xfc\x5d\x24\xc5\x6e\x7b\x0f\x6b\xfb\x44\xb9\xfc\xa5\x72\x92\xf8\x49\xe5\x24\xe5\x6f\xbb\x16\xcb\x73\x30\x18\xa8\xbf\xff\xfb\xbf\x4f\x2e\x5d\xba\xa4\x5f\x7a\xe9\xa5\x7c\x0a\x49\x67\x08\x42\x29\x65\xa6\x28\x35\xd2\xba\x69\xea\x29\xb7\x5a\xe4\x00\x06\x53\xab\x61\x6e\x81\xd1\x5a\x4f\xa0\x54\x12\x37\x74\xbc\x33\x17\xef\x3e\x6e\xc7\x8f\x93\x40\x0f\x1b\x5a\x85\xcd\x24\x08\x73\xeb\x8b\xca\xec\x2d\x6a\xba\x13\x0c\xf2\xb6\x9e\x1d\x9e\xa8\x90\x3c\x6e\xc7\x9b\xd7\x8f\x0e\xde\x78\xef\xe8\xe0\x9d\xc7\x73\xf1\xa6\x52\xaa\x9b\xb5\x45\x3a\x78\x30\x53\x44\x66\x3a\x36\x95\x23\x93\xcf\x80\x16\x20\x6d\x5f\x8e\xef\x55\x15\x4f\xcb\x54\x1a\xa5\xdb\xbe\x0d\xb7\x9c\xb8\xa6\x14\xe9\x35\xef\xb8\xab\xc0\x2b\x4d\x23\xb5\x7f\xfe\xdc\x65\x0d\xe4\xf1\x36\x59\x5c\xf2\xbb\xae\xa5\xbc\x79\xfe\xae\x36\x63\xfb\x5e\xbe\xf9\xd3\xb4\xb6\xc1\x95\x24\x63\x00\x40\xfb\xfa\xb8\x54\x99\xe0\x6c\x69\x0c\x9d\x0d\x7d\x72\xde\x5c\x69\x71\x9e\xd2\x07\xb6\x01\x21\x6e\x25\xf2\xb5\xd4\x48\x0a\xb9\x80\x30\xf9\x06\x73\x40\xbe\xfd\x77\x33\xb3\xb6\xb4\xa0\xd1\x6e\xc7\x6a\xfe\x43\x0f\x3a\xcf\x9f\x7b\x38\xf7\x95\xd5\x5e\xf3\x33\xcd\x24\x58\x43\xce\xbc\xb8\xf8\x99\x82\x83\xd2\x96\xdd\xe4\x46\xda\xce\xdb\x14\xaa\x0b\xd0\xa4\xce\xb2\x76\xb3\x49\x19\x4a\x31\xb9\xb8\x1c\xe6\x56\x1b\x3a\x76\xf8\x22\x4d\x66\x88\x33\xb4\x62\x64\xd5\xd0\x18\x85\x7a\xb0\xdd\x19\xdf\x7f\xef\x68\xff\x9d\x1f\x1f\xdf\x7f\xf3\xf6\xf2\xe8\xc6\xb0\x99\xec\x98\xbd\x20\xb2\x5f\x63\x69\xe9\x2a\xa5\xf6\xb3\x11\x5e\x0f\x64\x4e\x3d\x1b\x79\x8e\x91\x8d\xfa\x90\x29\x50\x62\x7e\x37\x1d\x81\x06\xd2\x65\xcc\x1f\xfe\xf0\x87\xd5\x1b\x6f\xbc\xa1\x0d\x68\xc9\x82\xab\x3e\x71\x33\x28\xb7\x3a\x48\xf5\x96\xd7\x67\xc9\xbc\x6a\x6b\x5b\x2e\x2b\xa6\x14\x7c\xea\x38\x57\x08\x2e\x90\x66\x68\x25\x99\x6c\xf2\x72\x7e\x1c\xac\x98\x38\xa9\x5d\x52\xf9\x00\xb7\x5c\xb6\x77\xe3\x32\xfa\xb6\x7f\xde\xde\xa5\x51\x68\xd5\xaf\x95\xfe\xd1\xa3\x47\x79\xfd\x78\xee\xb9\xe7\xd4\x1f\xfe\xe1\x1f\x26\x97\x2e\x5d\xd2\x17\x2e\x5c\xa0\x7e\x30\x40\xda\xd9\x53\xe5\x6d\x2c\x30\xa6\xfe\x52\x00\x93\x20\x05\xe8\x39\x70\xc9\x7e\x53\x1a\x05\xdd\x8f\x92\xe1\xd6\xfc\xf8\x51\xbf\x99\x74\x03\xad\xd0\x9c\xa8\x66\x33\x51\xcd\x40\xa3\x01\x14\x7d\xdc\x34\xa8\x8e\xd0\xe8\x47\xc9\xe3\x5b\x2b\x83\xb7\xae\x1e\xeb\xbd\xf9\x70\x7e\x7c\x47\x07\xd8\xcd\x06\x0c\xa6\x4d\xf6\x91\x4e\x13\x0d\x49\xdb\x8b\xcd\x3b\x98\xf7\x98\x4c\x26\xf8\xc1\x0f\x7e\x20\x95\x17\xff\x36\x55\xf1\x92\x7e\xe6\x16\x4d\x5b\xe7\x2c\x0d\xac\xab\x82\xad\x2f\x92\xfa\x1e\x5b\xbd\x74\xdd\xf3\x3a\xca\x03\x6f\x3b\xb6\xf2\x31\xa1\x4e\x3d\x95\xf8\xf2\xe0\xab\x77\xea\x94\x29\xe5\xcd\x01\x98\x24\x23\x20\x00\x38\xb3\xaa\x48\x6a\xa8\x2e\xef\x64\x1e\xa4\x91\x0f\x8d\xa7\xe6\x5a\x9e\x87\x94\x8f\xcd\x22\x43\xa7\x6f\x78\x1e\x81\x40\x63\x93\x91\xf3\xe1\x72\x4a\xf1\xf8\xfa\xd7\xbf\x1e\xac\xad\xa5\xd8\x83\xed\xd5\x62\x96\x3c\xa7\xd6\x16\x8d\x76\x43\xab\xf6\x53\x0f\x3b\x67\x9f\xd9\x9a\xfb\xd2\xea\x7e\xf3\x33\xe1\x24\x58\x87\x2a\xf6\x16\xa5\x90\x3d\x94\x3a\x7f\x13\xac\xd0\x83\xa2\x0e\x62\x26\x49\x95\x91\x2d\x51\x05\x6f\x7a\xda\x9a\x15\xd9\xb0\x4b\x87\xd0\x0a\x80\x56\x3a\xaf\x81\xfd\x66\xd2\xbd\xbf\x34\xba\x71\xe5\x58\xef\xed\x5b\xcb\x83\x5b\xfb\xd1\xe4\x11\x80\x9e\x82\x1a\x64\xa0\xc5\x2c\x75\x36\x53\x42\xf4\x80\xc4\x38\x9b\x16\xa2\x2b\x86\x12\xad\x75\xee\x10\xa8\xa6\x07\xd0\x25\xe9\xeb\x4c\xcf\x43\xf9\xa5\x5f\xfa\xa5\xe0\x4f\xff\xf4\x4f\x8d\x84\xb6\x3a\xc0\x9f\xd9\xda\x85\x94\x86\xc6\x4b\xf9\xf0\xfa\x2f\xd5\x6b\x97\x2c\x2e\x79\xea\xa4\x71\xc9\x26\xbd\x03\x97\x95\xfe\xba\x74\x03\xa7\x73\xb5\x57\x29\xcf\xaa\x50\x6a\xaf\x42\xfe\x3c\x8e\xa7\xab\x7a\xee\xa3\x5b\x24\x39\x0a\xbf\xa4\xde\x61\x32\x99\xe0\x3b\xdf\xf9\x8e\xd9\xb4\x32\xe7\xa3\xa7\x27\x54\xd3\xe3\x06\xe2\x6c\x3f\xa8\x18\xa9\x55\x37\xc1\xd4\xe9\x9c\x1e\x0e\x1a\xd3\xb8\x61\x53\x8f\xae\x1e\xeb\xef\x3f\xea\xc4\xdb\xcf\x6c\xb5\xb7\x9e\xdc\x9e\x7b\xf6\x68\xaf\x79\xb2\x15\xa3\x9d\x36\xe9\xec\x14\xf6\x6c\x19\xa2\x06\x30\x0e\xf4\xe0\xfe\xc2\xe8\xea\xb5\xb5\xfe\xdb\x0f\xe6\xc7\x77\x26\x01\xba\x5a\xeb\x7c\x15\x51\xb6\xe5\x40\x8f\xe5\xc9\x4f\x7b\x4e\x2c\x4b\x9e\xa5\xdf\x3a\xcf\x29\x3f\xdb\x77\xb7\xc5\xc3\x42\x23\x5d\x57\xb5\x15\xa9\x4e\xd7\xe5\xe1\x13\x5f\xb7\xdc\xe0\x78\x5e\x55\x2e\x3e\xe5\x26\x85\xba\xef\x29\xf1\x77\xe9\xad\x42\x1a\x63\x71\xa1\x08\x87\x76\x53\x3c\xf8\x22\x2b\xc9\x94\x45\xcd\x40\x75\x78\xd9\x64\xa0\x23\x58\x93\x9f\x2f\x6f\x5a\x28\xb6\x91\x17\xc0\x90\xed\x67\x3f\xfb\x59\x45\x9d\x71\x91\x9a\x5c\x1b\x98\x4e\x11\xb5\x94\x52\x51\x00\xb4\x9f\xda\x9e\x3b\xfd\xc2\x07\xf3\x5f\x3d\xde\x8d\x7e\x31\x9a\x04\x27\xcc\xea\x43\x2f\xe0\x61\x01\x2d\xb6\x50\x62\x5c\x32\xfd\xce\x18\xf8\xb4\x13\x07\x29\x42\x70\x61\x1c\x13\x92\x00\xf1\xf6\x5c\x7c\xef\xea\x7a\xef\x07\x3f\x3a\xb9\xff\xc3\x3b\x47\x86\x37\x87\x4d\xbd\x8d\xd4\xd9\x76\x2f\x33\x47\x9b\x69\xa1\x3d\xa4\x53\x43\x46\x51\x9a\xd5\x42\x43\x90\x95\x42\x6a\xba\xfa\x22\x37\x4f\xd3\x15\x42\x17\x2f\x5e\x4c\xce\x9f\x3f\xaf\x5e\x7b\xed\x35\x0d\x00\xd7\xae\x5d\xa3\x75\x94\x5b\x51\xcc\xab\xd0\x6b\xa9\x5d\x48\x23\x74\x73\xcd\xeb\x29\xe5\xc9\xad\x1d\xb4\xbe\x25\x2c\x1f\x57\x9a\x84\x3c\xa3\x41\x4a\x63\x33\x51\x27\x1e\x69\xb8\x3c\x74\xf4\xa3\x84\xf4\xb6\x20\x8d\x36\xf9\xb5\x09\x55\xa3\x50\x17\xef\x3a\x81\xa6\x93\x78\xdb\x46\x81\xf4\xda\xf6\xbc\x32\xcf\x1f\xfc\xe0\x07\x0a\x80\x7e\xed\xb5\xd7\xf2\x95\x48\x40\x3e\x55\x94\x12\xa7\xe0\x5b\x03\x25\x87\x72\x6a\x65\xc9\x57\x21\x61\xba\x72\x2e\x01\x39\x72\xa0\x1f\x25\xbd\xad\x85\xf1\xa3\x6e\x2b\xd9\x51\xc0\xa4\x35\x09\x5a\xcd\x49\xd0\x0e\xa0\x94\xca\x37\x75\x51\xd0\x40\xf2\x60\x61\xfc\xee\x5b\x27\xba\xdf\xbb\xb3\x3c\x7a\x6f\xd4\xd4\x3b\xc8\xa6\x69\x55\xba\x6f\xcb\xbe\xf1\x29\x43\x6a\x6d\xa1\x5b\x0e\x24\x44\x4e\x5c\xba\x74\xc9\xb7\x5c\xea\x3e\xe7\xfd\x49\x5d\x7e\x94\x07\xa7\xaf\x92\xd9\xa7\x1e\xdb\x78\xb8\x2c\x38\x2e\x99\x6c\x41\xd2\x47\x36\xde\x36\x30\x50\x37\xcf\x2a\x39\x6c\xbc\xab\xe2\xbd\xf5\x83\x6d\x1f\x97\x3a\x48\xcb\x37\xbd\x0b\x7d\x1e\x46\x5e\x3e\x68\x4d\x92\xc5\x36\x0a\xb6\x22\x66\xe3\xd7\x92\x59\x58\x02\x64\x7e\x2d\x2a\xdd\x38\xaa\xbd\xb1\x1b\xad\x7f\xf4\x83\xf9\x5f\x3a\xb6\xdf\xfc\x6f\xcd\x89\xda\x80\xcf\xe8\xf1\x20\x00\x43\x08\x92\xa5\xc5\x05\x2a\x5c\x40\x43\xce\x40\x46\x45\x1c\xe3\x18\xe7\x5c\x9d\xe5\x32\x08\x93\xde\xfd\xc5\xd1\x8d\xcb\xeb\xfd\x37\x6f\xae\xf4\x6f\x0d\x9a\xc9\xa3\x44\xa5\x2b\x13\x8c\x95\x05\xe4\x44\x59\xb3\x0b\xae\xca\x56\x09\x29\xb6\x17\x0b\xdd\xf1\x56\xb1\x8d\xe2\xf8\xd4\x58\xc5\xe9\xb3\x36\x6b\x00\x20\x7f\xbf\xaa\x11\x3e\xa5\x71\x59\x3d\x24\xde\x55\x23\x50\x9b\xfc\x36\x19\x7d\x2d\xa5\x3c\x1f\xc9\x2a\xe2\x3b\xc2\x93\x2c\x48\x75\xda\x3f\x2f\x2f\x13\x67\x1b\xa5\x49\xbc\x6d\xd6\x59\x1e\x5c\x16\x23\x5b\xe0\xbc\xab\xe8\x2a\xc3\x57\xbe\xf2\x15\xb1\x2e\x64\xf5\xda\x58\x77\x81\xe2\x19\x47\x11\xb9\x8e\x49\x5c\x9c\xb5\x97\x0e\x7d\x36\x6c\xe8\xf8\xe6\xca\xa0\xbf\xd7\x8a\x77\x76\xe6\xe2\xcd\xa7\x1e\xce\x3d\x77\xb4\x17\x9e\x8a\x26\x41\x3b\xf5\xb6\xd1\x78\x3c\x17\xdf\xbe\x7a\xac\xf7\xda\x9d\xe5\xe1\xb5\x41\x98\x6c\xa3\xb8\x1b\x2e\xdf\xaf\x25\x06\xe4\x0d\xe6\x3c\x82\x4d\x07\xe7\xef\xee\x48\x5b\x55\x9f\x5c\x16\x00\x93\xbe\x4a\xd6\x59\xac\x08\x55\x6d\x4e\xa2\x43\x05\xad\x4f\xbe\x12\x8d\x2f\x6f\x5b\x3f\xc8\xf9\x4a\xf4\x3e\x3a\x46\x7a\x57\x9f\x72\xb5\xf6\xd1\xa1\x23\x51\xdd\x50\xa5\x9c\x7d\x0b\xdc\x56\xd8\x2e\x7e\x36\xe5\x61\xa3\xa3\x05\x47\x0b\x86\x5f\xe7\x72\x90\x33\x4a\x02\xfa\x47\x77\xba\x54\x1a\xed\xa5\x41\xb8\xf4\xf1\x3b\x0b\x9f\x3f\xde\x8d\x7e\xb1\x15\x07\x27\x15\x50\xbd\x8b\xa5\x25\x48\xb3\x3f\x5e\xbb\xd1\x0a\x34\x2e\x60\x42\x79\xfa\x02\x18\x4e\x57\x94\x95\x3a\x01\xa7\xa0\x65\xa2\x74\xbc\xd7\x8e\xb7\xdf\x5f\x1e\x5e\xb9\x72\xac\x77\xe5\xc1\xc2\xe8\xde\x28\xd4\x8f\x35\xd0\xd3\xd0\x5d\x05\x35\xc8\x14\x63\x0e\x5a\x30\x3d\x5b\x68\x80\xa9\xe9\xdb\xcc\xa1\x1b\x65\xed\xec\xdc\xff\xf6\x6f\xff\x16\x37\x6f\xde\x74\x75\xda\x2e\xd3\xac\xf4\xdc\x66\x1a\x96\x82\x04\x04\x5c\x79\xf9\xc4\xd3\xe7\xbe\x4a\xde\x96\x37\x7f\x4e\xf9\x70\x7a\x17\x78\xe2\x6d\xb7\x0a\xd4\xd9\xf2\xaa\x63\x56\x76\xe5\x23\xc9\x2c\xc9\x66\xe3\xed\x52\xf8\x92\x7e\x70\x81\x17\xef\x8e\xef\x6f\xfe\xe6\x6f\xf2\x38\xb6\x91\x1d\x7f\x4f\xaa\x83\x80\x6c\xf3\x3a\x4c\x01\x4c\x1b\xe4\x84\xf3\xc2\xd4\x91\x42\x67\x12\xe8\xd1\xf6\xfc\x78\x34\x0a\x93\xee\x5e\x6b\xb2\xfd\xcc\xd6\xdc\x73\x27\x77\xa3\x73\x73\xe3\x60\xb5\xdf\x4c\xb6\x6e\xac\x0e\x5e\x7b\xef\xe8\xe0\x72\xaf\x99\x6c\x43\x15\x0e\x2b\x35\x53\x44\x39\x68\x21\x03\x87\x52\x5b\xbc\x76\xed\x9a\x54\x1e\x36\x40\x6e\x6b\x57\xae\x7e\xa5\xaa\xc3\x74\xe5\xe9\x13\x5c\x75\xd1\x35\xf0\xa5\x34\x9c\x97\x53\x5f\xc1\x2e\xb7\xab\x1c\x6c\xb2\xf1\x7a\x4f\x83\xad\x7d\xbb\x82\x4d\x1f\x54\xc9\xc6\xaf\xeb\xbe\x4b\x49\x06\x5b\x1f\xe5\x83\x7c\x7c\xd2\xcd\x4a\xe3\x13\x7c\x65\xf2\x95\xa1\xc4\xaf\xd5\x6a\x05\xc3\xe1\x30\xa1\xa0\x25\x9b\x26\x0a\x40\x56\x10\xa9\x74\x0b\xee\x76\x67\x14\x2c\xbd\x74\x7b\xf1\x67\x9e\x7d\xd0\xf9\x66\x67\xd4\xf8\x48\xa0\xd1\xce\x97\x16\x82\xbb\xe3\x16\xed\xed\x85\x8e\x5f\xa0\xf5\x09\xb9\x45\xc5\xb1\x7a\xa8\x40\xab\x61\xf5\xa5\x71\xc9\x90\xcb\xaa\x01\xad\x38\x5d\xfa\x74\x6a\xdd\xd1\x18\x35\x92\xc1\xc3\x4e\x7c\xf7\xc6\xd1\xfe\x95\xf7\x8e\x0e\xae\xee\xcc\xc5\x0f\xe2\x40\xa7\xa3\x38\x68\x6a\x6d\x19\x50\xe0\x42\xf6\x61\x19\x01\x48\xb2\x7b\xd3\x20\x0d\x78\x49\x74\x71\x77\xd2\x7c\x05\xc3\x93\x4f\x3e\x19\xdc\xb9\x73\x07\x71\x1c\x57\x75\x90\xd2\xe8\x59\x02\xd1\x2e\x50\x6d\x8b\xb7\x29\x37\x9a\xc6\x05\x1a\xaa\xe8\xa4\x74\x52\x1a\x7a\x3f\x4b\x3e\x55\x69\xa4\x7b\x4e\x0f\x8f\x78\x29\x1c\x96\xce\x38\xcc\x7c\x0e\x7b\xa4\x2c\x06\x36\x60\xa2\xfc\x68\x3c\xb5\xfc\xe6\xab\x1a\x51\x3c\xef\xa8\x5d\xb8\xd6\x88\x02\x9d\x1e\x41\x72\xac\xdb\x3c\x76\x6e\xab\x73\x6e\x63\x37\x7a\xfa\x71\x3b\xbe\x7b\xe9\xf4\xde\xbf\x3f\x58\x18\xdf\x8d\x03\xdd\xcd\x80\x8b\x59\xf6\x3c\x60\x03\x0b\x33\x98\x48\xd8\x5f\x69\xa7\x69\x8f\x32\xf8\x69\x7d\xe3\xc3\xc8\xff\xb0\xfa\x9c\xba\x69\xfe\x33\xb6\x99\x3a\xf9\xb9\xfa\xdd\x5a\xf9\x48\xab\x8a\xf8\x1c\x19\x65\x2c\xcd\xe9\xd2\x40\xe7\x83\xf9\x2f\xa5\xa9\x12\xac\xce\xfc\xa4\x34\xc7\xe7\xe2\x2d\xf9\xdf\xd0\x77\x54\x00\x74\xa7\xd3\x09\x06\x83\x41\x02\x00\x2f\xbd\xf4\x92\xca\x68\xcc\x5e\x2d\x81\x52\xaa\xa9\xa6\x9b\xcc\xb5\x5a\xb1\x3a\xf2\xdc\xe6\xfc\x47\x9e\x7d\x30\xff\x7f\x2e\x0e\xc3\x97\x02\x8d\xb9\x29\x68\x01\xe8\x76\xda\x06\x2c\x50\x07\x81\x82\x8b\x0a\x07\x0c\x82\x19\x44\xb4\x8c\xe4\x96\x93\xb2\x43\x8d\x08\x92\x94\xcb\xe7\x76\x1a\xa3\xf5\x94\x7e\x0a\x8e\x52\x78\xa2\x4a\xa6\x1a\x95\xef\xaa\x9b\x04\x3a\xe9\x45\xc9\xde\x07\x47\x46\xd7\xdf\x5d\xef\xbd\x75\xfd\xe8\xe0\xdd\x9d\xb9\xf8\xde\xa4\x81\x3d\x0d\xbd\x6b\x56\x0b\x65\xf3\xe6\xf9\x9e\x2c\xe4\x6f\x84\xd4\x7f\x65\x94\x39\xdd\xc6\x2a\xdd\xdf\x22\xdf\xf5\x96\x38\xdf\x6a\xa0\xa8\x30\xbb\xdd\xae\x9a\x4c\x26\xa6\x23\xa6\xbe\x1b\x34\xae\x54\x2c\x28\xd6\x05\xde\x61\xdb\xe6\x66\x6d\xfe\x0e\x01\xb9\x36\x3c\x79\x3e\xbc\x1e\x2b\x46\x0f\x21\x0d\xed\xc8\xf8\xfc\x34\xf7\x43\xe1\xef\xe4\xf2\x5d\xa1\xef\x69\xa3\x03\xa1\xa3\x6d\x5c\xf2\x39\xe0\xed\xb3\xaa\xdd\x4a\x7a\xc3\xa5\x4f\x38\x0f\x9a\x07\xbd\xf6\xa1\xe5\xef\x67\xbb\xa6\xbe\x48\xb4\x9c\x6c\xfc\xf9\x3b\x54\xc9\x42\x83\x3a\x79\xf2\x24\xc8\x06\x75\xe9\x84\xce\xf4\xb0\x42\xc3\x5b\x63\xfa\x3d\x12\x4c\x7d\x5c\x34\x90\x1f\x22\x6a\xe2\xc6\x50\x98\x68\x85\xf1\x38\xd0\x83\x7e\x94\xec\xed\xb5\xe2\x07\x7b\xad\xc9\xbd\xbb\x47\x46\x97\xef\x2d\x8d\xde\x8f\x1b\xba\x8b\x74\xef\x24\xe3\x90\x9b\x3b\xe3\x22\xf5\x2f\xcb\x57\xee\x81\x00\x16\x00\xfa\xe2\xc5\x8b\xc9\xca\xca\x4a\x30\x18\x0c\x5c\x7a\x9f\xbf\x2f\xf7\x33\xb3\x7d\x63\x5b\x99\x4b\xb4\xbc\xde\x70\x1f\x31\xde\xe6\x78\xbd\xe1\x7f\x92\x1f\x08\x7f\x0f\x5b\x3d\x95\xf8\x54\x7e\x7b\xc6\xcb\xb7\x6e\x4a\x7d\x1c\xa7\x75\xc9\xea\x1b\x78\x1b\x75\xd1\x48\x20\x4c\xd2\x03\x52\x19\x95\xea\x89\x62\x89\x5c\x1d\xba\x2f\x62\xf6\x4d\x73\x10\xf4\x35\xeb\xc8\xc8\xe7\x1d\xb0\xb4\xb4\x84\xdd\xdd\xdd\xfc\x04\x58\xf2\x4c\xf4\x69\x69\x8d\xd5\xd2\xe9\x47\xed\xa7\x3f\x79\x67\xe1\xd7\xd6\xbb\xad\x2f\x87\x09\xd6\x4a\xd6\x95\x1c\x54\x14\x62\xf3\xa3\xe7\x45\x20\x52\xa2\x2d\xfb\x6d\xd8\xa9\xd3\x50\x67\xda\x47\x4a\xc3\xe5\x72\xdd\xd3\xeb\x58\x25\xf1\x5e\x7b\xb2\x7d\xe7\xc8\xe8\xbd\x1b\xab\xfd\xab\xf7\x96\x86\xb7\xf7\xa3\xe4\x51\x02\x9d\xef\xb6\x49\x7c\x5a\xe8\xe1\x88\x85\xa9\x21\x35\x3d\x08\xd1\x4c\x11\xd1\x53\x9a\x13\x00\xf9\x6a\xa1\x8f\x7e\xf4\xa3\x41\x1c\xc7\xb8\x7c\xf9\x32\xe0\x67\xd5\xe0\xf7\x2e\xcb\x8c\x6b\xf4\xe3\xca\x47\x4a\xeb\x0a\x92\x85\xc4\xc5\x9b\xa7\x93\xd2\x48\xbf\x5c\x36\xdf\xf2\x71\xe5\x23\xd1\xdb\x64\xfc\xcf\x10\x0e\x32\xa2\xe5\xf4\x75\x47\x9c\x5e\xfa\x74\x7e\x7e\x3e\xd8\xdf\xdf\xcf\xe9\x88\x05\xc6\xd0\x04\x00\xf2\x55\x8e\xd9\x6f\x88\xf4\x8c\x34\x73\x22\xbd\xb1\xc2\xd0\x03\x1b\x23\xa4\x9b\x64\x86\x0a\x2a\x6c\x68\x84\xad\x38\x08\x27\x0a\xa3\x61\x98\xf4\xa0\x72\x3f\x96\x5e\xd6\x1e\xf3\x93\xd6\x21\xfb\xb6\xc0\xfc\x66\x83\x87\xba\xba\xbc\x4e\xdd\xf0\x6d\x63\x87\x6d\x75\xa8\xdb\x8e\xeb\x58\x98\xaa\xfa\x4a\x58\x9e\x1f\xa6\x4c\x9c\xae\x4e\x99\xd6\xa9\xff\x3e\xdf\xda\x25\x43\xa9\x5f\x73\x29\xb5\x9f\x04\x00\xa9\xe2\x35\x6b\x21\x1d\x54\x21\xe5\x0a\x42\x4f\x8f\xa9\x0f\x32\x45\x60\x94\x42\x5b\x29\xd5\x6e\x4e\xd4\xc2\xf1\xdd\xe8\xd4\x8b\x77\x17\xbe\x74\x66\xa7\xf5\xb5\x56\xdc\x38\x03\x20\x10\x2d\x19\x16\xcb\x09\xca\xd1\xce\xa0\x81\xf2\xee\xba\x0c\x19\x49\x40\x48\x4c\x67\xe3\x5f\x43\x1e\x9e\x76\xdc\x48\x46\x8f\xe6\xc6\xf7\x6e\xad\x0c\xdf\xbb\xb9\x3a\xb8\xfa\x60\x7e\x7c\x77\x18\x26\x8f\xa1\x72\x93\xb3\x01\x2e\xc6\xaf\x85\x82\x16\xb3\x45\x3f\x5d\xe6\x0c\xb2\x43\x28\x80\x29\x68\xf1\x34\x49\x4b\xf5\xc1\x84\x59\x94\x6c\x55\x9c\x2b\x9d\x0d\x20\x01\xf5\xf8\x54\x05\x57\xdb\xb1\xe5\x35\x4b\xc7\x6d\x78\x1d\x44\xa1\x49\xb4\xb3\x94\x2b\x0d\x55\x7c\x7e\x52\x20\xca\xf7\x9b\x56\x81\xe3\xd2\xf5\x85\x0b\x17\x82\xef\x7f\xff\xfb\x09\x50\x39\x85\x54\x3a\x75\x1a\xc5\xe9\x23\xfa\x67\x00\x8e\xe1\x43\x7d\xc9\x4a\x87\x96\x66\xed\x73\x44\x7c\x67\x24\xd0\x52\xf9\x2e\x42\x39\xf8\xdc\xd7\xd5\xeb\xbc\x9d\x57\xc9\x65\xe8\x7c\x06\x2e\x3c\x1f\xdf\x4e\x98\xe7\x21\xd1\xf8\xe8\xaf\xc3\x00\x2b\x55\x83\x99\x59\xf9\xd7\xd5\x05\xae\x41\x8e\x09\x85\xef\x50\xd5\x3f\xd5\x41\x81\xb3\xa0\xb4\x2a\x9e\x12\x0f\xdf\x4a\x55\x25\x5f\x29\xfd\xca\xca\x4a\xf0\xc2\x0b\x2f\xe0\xf9\xe7\x9f\xcf\x79\x18\xe0\x42\x1a\xb7\x19\xa9\xb4\x1b\x5a\x75\x8e\xee\x37\x37\x3e\x72\x7f\xfe\x33\x1f\x7a\xd0\xf9\xb5\xce\x28\x78\xd1\x9c\xf6\x5c\x19\x6c\xe8\xc0\x81\x1a\x0a\xd6\x0d\xd1\x82\x53\x26\x74\x5a\x4c\x7c\x11\x8a\x83\x1f\x25\xd1\xd0\x18\x86\xba\xf7\x60\x61\x74\xfb\xc6\xea\xe0\xca\xfb\x2b\x83\x1b\x8f\xe6\xe2\xfb\x71\x43\xef\x62\x7a\xa6\x09\x9f\x2b\xef\x11\x65\x58\x58\x35\x84\xe9\x68\xae\x30\xaa\x33\x3e\x2d\x02\x68\x01\xfc\x1b\xe3\x61\x29\x11\x5b\xfe\x55\xf7\x36\x00\xe3\xcb\x5b\x52\xca\x12\xed\x2c\x8a\xc5\xd5\x56\x5c\x32\xf9\xc8\x5c\x47\x71\xf9\x74\x7c\xbe\xf4\xde\x00\xc1\x91\xce\x97\xc6\xf5\x5e\x2e\x1e\x10\xe8\xad\xe5\x2b\x0c\xae\x4a\xfb\x4b\x61\xea\xf7\x92\x83\x98\x6c\xd0\x15\xd2\x81\x18\xc9\x27\xc1\xb4\xfd\x0d\xb2\x01\xc3\x00\xd3\x55\x4a\xb4\x6d\xc6\x54\xe6\x9b\x37\x6f\xe2\xd2\xa5\x4b\xd8\xda\xda\x9a\xe5\xdd\xea\xe8\x73\x1b\xe0\xb0\x85\x3a\xf5\xc7\x07\x28\xd9\xde\xeb\x20\x75\xdd\xf0\x39\x2c\x1e\x12\x3f\xe9\x1d\x5c\x72\xcf\xda\x8e\x6c\xb2\xd6\xd5\x9d\x56\x1e\xae\x4e\xd6\x47\xe1\xf9\x22\x43\x57\x45\x30\x7c\x5c\x05\x5c\x15\x66\x05\x2d\x85\x3c\x4f\x9e\x3c\x89\x7f\xfd\xd7\x7f\x4d\x9e\x7f\xfe\x79\xe3\x84\x0b\xa4\xe0\x25\x20\xe0\x25\x9d\x26\x82\x8a\x16\x46\x8d\xe5\x33\x3b\xed\x8f\x3c\xb9\xdd\xfe\x85\xb9\x71\xf0\x9c\x12\x40\x4b\xd9\xea\xa2\x53\x1f\x17\x65\xf1\x2e\x51\x29\x00\xc8\xb7\xcf\x4f\x93\xe4\xfe\x28\x39\x19\x01\x12\x00\x39\x5f\x24\x7b\x96\x02\x9b\x32\xff\xe9\xb4\x4e\x85\x03\x2f\xcd\xdc\x03\x21\x69\x68\xf4\x9b\xc9\xee\x07\x4b\xa3\x1b\xd7\xd6\x7a\xef\xdc\x59\x1e\xde\xe8\x46\x93\x87\x49\x00\xb3\xfb\x6d\x0f\xd9\x92\x4a\x4c\x37\xb0\x32\x0e\xb8\xe6\x6c\x21\xae\x14\xcd\x46\x56\x26\xc3\x04\x00\x36\x37\x37\xd1\xef\xf7\x4d\x9c\x54\x87\x7c\x1b\x57\x22\xa4\x05\xfc\xea\x68\x1d\xe5\x20\xd5\x65\x29\x5d\x55\x07\x59\x25\xa7\xd4\xe8\x5d\x8a\xcc\x95\x86\x07\x9f\xf7\xa5\x74\x86\xb6\xea\xfd\xaa\x80\x1e\xcf\xd3\xa6\xf8\x6c\xf9\x48\x65\x55\xe7\x5a\x92\x85\xca\xe9\x92\xdf\xf6\xdc\x16\xaa\xea\x44\x81\xbf\x01\xee\xd9\x94\x76\x92\xf9\xde\xd1\x7a\x42\xbf\x99\xf9\x0b\x33\x1a\xa3\xcb\x0c\xb8\x01\xa3\x1d\x21\x6d\x93\xf9\xea\x21\x14\xa7\x6c\xa9\xb5\x85\x5b\x5a\xa4\xf7\x72\x05\x1f\x80\x5c\x37\xde\xa9\xeb\x19\x8d\x8d\x8f\xad\xbd\x49\xdf\xa7\xea\xbb\xd9\xe2\xeb\xbe\x73\x55\x1f\x5b\x15\xea\xb4\x87\xba\xe9\x5c\xef\x52\x47\x47\xba\xf4\x5c\x02\x14\x91\xb6\x4d\x50\x89\x81\xad\x32\xd8\x1a\xb9\xeb\x5e\x02\x19\x92\xb0\x2e\xc5\x69\x93\x93\xe7\xeb\xac\x88\x6f\xbd\xf5\x56\xbe\x82\xc8\xec\xd5\x82\xe2\xa8\x25\x32\xcb\x9f\x5b\x71\xb0\xf0\xc4\x4e\xeb\xe9\x73\x5b\x73\xff\x75\x71\xd8\x78\xa9\xa1\x55\x27\xcf\x8d\x74\xf6\xa5\x2e\x5f\x51\xef\x97\x32\x20\x48\xa1\x40\x31\xad\x12\x4c\x26\x14\x92\x88\x1c\x33\x47\x59\x7e\x02\x33\x84\x34\xe5\xfc\xa7\xc4\x06\x12\x99\x69\xa6\x14\x14\x69\x72\xa6\x89\x86\x06\x92\x5e\x94\x74\x6f\x2f\x0f\xae\xbc\xb3\xde\x7b\xf3\xde\xd2\xf0\xf6\x20\xd4\x8f\xcc\xd4\x10\xb1\xae\x74\xb3\xd1\x5b\x61\x17\x5c\x97\x95\x85\xef\xcd\x62\xb1\xb2\x00\xf6\x7a\x0a\x12\x67\xeb\x34\x7c\x94\x41\xe0\x78\xc6\x83\xab\xfe\x51\x5e\x5c\xa6\x2a\x45\x5a\x95\x47\xd5\x88\x46\xe2\x21\x81\x2a\x57\xe7\x63\x1b\x85\xb9\x64\xa3\x7c\x5d\x72\xdb\xbe\x17\x2d\xef\xaa\x51\xa0\x0f\x4d\xdd\x72\xe2\xef\x60\x64\xa2\xbf\x55\x72\x4b\xcf\xb9\xbc\x75\xe4\xce\xaf\xf7\xf7\xf7\x31\x3f\x3f\x0f\x0b\x5d\x6c\xf2\x33\xbb\xd9\x12\xbe\x46\xff\x4b\x60\x33\x01\xd9\xff\x85\x00\x95\x04\x28\x5a\x3d\x99\xdf\x0d\x7d\x27\x29\x54\x01\x81\xaa\x0e\xce\x15\x6f\xe3\x5d\xb7\x8f\xf3\x01\xd3\x52\xdf\x97\xc7\xad\xaf\xaf\x07\x9b\x9b\x9b\xce\xef\x26\xa4\xb3\xd5\x0b\x9b\xcc\x10\x9e\xdb\x06\x11\x07\x0d\x75\xda\x91\xab\x3c\xb9\xfe\xb4\x81\x15\x1b\x3f\x00\xe9\xce\xb9\x2e\x0f\x7d\xb0\xe7\x26\x5e\xf2\xc2\xb7\x79\xd6\xbb\x78\x73\xfe\xe6\x5e\xf2\xa4\x76\x79\xa0\x73\x2f\x6a\x13\x27\x79\x9f\x73\x4f\x73\xdd\x6e\xb7\x83\x38\x8e\x35\x39\x83\xc8\x34\x66\x63\x6d\x69\x20\x3d\x87\xa8\xa9\x94\x6a\x35\x12\xcc\x9f\xde\x69\x9d\x7d\x7e\x73\xfe\xf3\xeb\xdd\xe8\xf3\xd1\x24\xd8\x28\xc0\x80\xaa\xa5\xc8\x0e\x23\x46\xd5\xcc\x0d\x5d\x91\xe4\xa2\xcf\xc1\x86\xa2\x74\xba\x08\x44\x4a\xcc\xcb\x20\xa9\x90\xde\x5c\x2b\x05\x9d\x71\xd1\x0a\x49\x2f\x9a\xec\x5e\x5f\x1d\xbc\xf5\xe6\x89\xfd\x1f\xdc\x5b\x1a\xbd\x3f\x6a\xe8\x9d\x6c\x45\xc2\x1e\x50\x38\xd5\xb9\x8f\xf4\x7c\xa1\x41\x76\x3d\xcc\x56\x3a\x8c\x30\x3d\xe9\xd6\xec\x02\x6a\x56\x47\xe0\xe2\xc5\x8b\xc9\xb3\xcf\x3e\xab\x86\xc3\x21\xde\x7c\xf3\x4d\x5b\x7d\x29\x7d\x57\x94\xeb\x85\x6d\x65\x00\xf7\xac\x97\x3c\xfc\xb9\x1f\x72\x40\xe8\xa4\xfa\x4a\xf3\xe0\x72\xd1\x34\x09\xb9\x96\x78\xf3\x46\xeb\xf2\xde\xa7\xcf\xb9\x1c\x54\x56\x1a\x68\x75\x48\x48\x5c\x82\x22\x2f\xd7\xfb\xb9\xde\x19\xc2\x33\x9a\x2f\xe7\xc3\x79\xf1\xef\x2a\xe5\xeb\xfa\x7e\x2e\x19\x7d\x03\xfd\x1e\xd2\x8a\x0d\xe9\x7b\x71\x99\x6c\x3a\x55\x3b\xe2\x5d\x72\xe7\xd7\x8d\x46\x43\xfd\xf5\x5f\xff\x35\x3f\xc0\xd1\x1c\x41\x9d\x00\xf9\x79\x47\x40\x0a\x3a\xcc\x8a\x3c\x73\x72\xba\x39\xef\x28\x06\x30\xce\xe2\xe9\xaa\x21\x71\x40\x61\x06\x11\x64\x77\x5c\x2a\x17\x2d\x27\xdb\xbb\xf3\x20\xd5\x4f\x5b\x1d\x54\xec\xd7\xc5\xdb\x56\x86\x54\x4f\xd8\xfa\x17\x5e\x07\x4d\xba\x04\x00\x16\x17\x17\x83\xd1\x68\xa4\xb3\x6b\x65\xae\xf7\xf7\xf7\x2b\xbf\x9b\xe5\x1d\xab\x64\xa5\xf9\x4b\x3a\xcf\xd6\xee\x69\x1d\xf5\x0d\x55\xf5\x91\xf7\xc3\x89\x40\xc3\xf5\x9a\x04\x4c\xaa\x78\x97\x64\xae\xb3\x73\xae\x0b\x69\xcd\x82\x0c\x6d\xc1\x36\xda\xf5\x41\xaf\xae\xfc\x25\x59\x12\x00\x18\x0c\x06\x89\xcd\xd9\x8d\xcd\x05\x47\xd0\x88\x8e\xef\x45\x6b\xcf\x6c\xcd\x7d\xea\xf8\x6e\xf4\xd9\x28\xdd\x64\x0e\x40\x19\x0c\x88\xe0\x00\x28\xae\x22\x12\x12\xf1\xbd\x55\x28\x2d\x07\x16\x1a\xfe\x20\x88\xee\xb8\x22\x3a\xee\xf2\xa9\x21\x87\x9f\x0c\xa0\x91\x28\x24\xfb\xd1\x64\xe7\xbd\xb5\xfe\xeb\x3f\x3c\xd9\x7d\x6d\xb7\x1d\x3f\x48\x94\xee\x21\x5b\xde\x4c\x9c\x70\x8d\x7f\xcb\x88\x6d\x60\x95\xa0\xb8\x89\x95\x19\xcd\xe5\xd3\x43\x46\x39\xfe\xd9\x9f\xfd\x99\x41\xe4\x52\xdd\x03\x8a\x75\xc6\xc7\x6a\x41\xd3\xd9\x46\x29\xae\x91\x80\x4f\xfd\x74\x05\xce\x9b\x8f\xd4\x5d\x69\xaa\xd2\xdb\xd2\xb8\x82\x6d\xa4\x69\x9e\xd9\xda\xb3\xaf\x95\xc0\x57\x0e\x9e\x87\x34\x8a\xe6\xb4\x5c\x5f\xd8\x78\xd6\x91\x53\x1a\x19\x73\x99\xa4\xbc\x7d\x46\xec\xae\x7b\x9f\xd1\xbd\x89\x03\x80\xe4\x87\x3f\xfc\xe1\x34\xf3\x24\x41\xa3\xd1\x00\x52\x70\x91\xa7\xcd\xae\x63\x20\x3f\xfb\x28\xc9\xa6\xbf\x91\x4d\x31\xf1\xf7\x34\xd7\x31\xb5\xd4\xd0\xb3\xbf\x4c\x88\xa2\x28\x18\x8d\x46\x3e\xdf\xb8\x6a\x44\xed\x3d\xe2\x66\x32\xd6\xb1\x06\xf0\xb4\x94\x87\xb3\x2e\x35\x1a\x8d\x20\xdb\x5e\x21\xf9\x9d\xdf\xf9\x9d\xe0\x8f\xff\xf8\x8f\x93\xdf\xfc\xcd\xdf\x34\x7e\x45\x05\x5f\xa3\xaa\x60\xf4\x1a\xe1\x59\xb8\x16\xde\xa1\xaa\x5e\x49\xf1\x52\x7a\x1b\x8d\x6f\xfb\xb0\x05\x1b\x9d\xad\x6d\xd8\x74\x9d\x57\x1d\x99\x75\xf1\x88\x14\xea\x28\xa6\xc3\xe0\x7d\x90\xce\xa2\x14\xf8\xce\xb8\x74\x59\x21\xc8\x46\x4e\x2b\xbd\x70\xf5\x63\x77\xe7\x7f\xfe\xdc\xc3\xce\xaf\x2e\x0c\x1b\x9f\x08\xb4\x6a\x4b\xfc\x6c\xa0\xc5\xf7\x79\x5d\xba\x59\xc2\xac\x32\x68\x68\x4c\x02\x8c\x76\xe6\xc6\x5b\xef\xae\xf5\x7f\xf8\xc6\xc9\xfd\xd7\x7b\xcd\xc9\x23\x9d\x2d\x75\x36\xfb\xb2\x98\x3f\xb2\x9c\x92\x6e\x15\x9e\xa0\xe8\xc7\x92\x10\x05\x99\x37\xec\xdf\xfd\xdd\xdf\x0d\xfe\xe8\x8f\xfe\xa8\x4a\x29\xda\x1a\x61\xdd\xce\x72\xd6\xce\xc6\x87\x9f\x4f\x1a\x4a\x07\x07\xed\x41\x78\xd7\x49\x6f\x53\x32\xae\xf2\x3d\xc8\x37\xf0\x91\xf3\xb0\x42\x1d\x70\x55\x57\xd7\xcc\xda\x91\xda\xea\x98\xaf\xfe\x2b\xd0\x09\x4b\xa7\x0b\xbf\xa6\xc3\x25\xd7\x12\x08\xcb\x3b\x3e\x33\xa0\xa8\xb1\x92\x0f\x42\xfc\x61\x84\xba\x9d\x9e\x8b\x8f\x4b\xee\xfc\xf9\xca\xca\x8a\x39\xe1\x1b\xdf\xfe\xf6\xb7\x03\x5a\x06\x96\xa9\x32\xa7\xcc\x3c\xbd\x63\x0a\x5c\x92\xb5\x4e\xdb\xf2\xa9\x83\xb3\xd6\xd7\x59\xc3\x81\x75\x82\x74\x3a\x74\xdd\xc6\x62\x82\x6f\xe7\x62\xbb\x77\x05\x89\xce\x86\xea\x7c\xf8\x94\xf2\x66\xcb\x9e\x03\x64\x7e\x2d\xda\x9c\xf8\x0c\xb4\xdb\x71\xa3\x73\xee\xc1\xdc\x0b\x67\x76\xda\x9f\xef\x8c\x82\x8f\x28\x8d\x02\x68\xa1\x1d\x7c\xd9\x42\xe1\x0f\x64\xb8\x1d\xd4\x46\x37\x4b\xa0\x3b\xe2\xda\x2c\x45\x3c\x70\xd0\x32\x6a\xe8\xc1\x83\x85\xd1\xad\xcb\xeb\xfd\xd7\xdf\x3d\xd6\x7b\x67\x10\x26\x8f\x31\xdd\x12\x9c\x5b\x5b\xa8\x85\xc5\xac\x4e\xc8\x1d\xfc\xa8\x09\x1b\x40\x61\xd7\xdf\x66\xb3\x49\x4f\x70\xe6\x81\x77\xaa\x3c\x1e\x28\xd6\x49\x51\x21\x09\x69\xe8\xa8\x8b\xa6\xb1\x8d\x60\xa4\x06\x0f\x54\xf3\x97\xe4\x91\x46\x50\x9c\xce\xf6\xcc\xf5\xae\x5c\x1e\x1a\xf8\xfb\x26\x2c\xce\x04\x57\x7a\xe9\x79\x15\x00\xa8\x0a\x87\xad\x38\x6d\xba\xcb\x36\x6a\xa5\xa1\xae\xae\x91\xf8\xd5\x01\xa1\x2e\x3e\x2e\x99\x24\x9d\x46\x4f\x48\x2f\x8e\x5a\xd3\xc1\x42\xa0\xb2\x43\x49\x6d\x79\x98\x36\xea\x70\xe6\x97\xea\xfa\x4f\xaa\xd3\xe3\xf9\xd9\x82\x4f\x27\xec\xdd\xaf\x18\xd0\x62\x82\xcb\xaf\xc7\x67\xe7\x72\x4f\xb0\x53\x25\x57\x9d\xba\xe8\xa2\xb7\xd5\xd7\x9f\x14\x90\x39\x08\x9f\x04\x98\xbd\x0f\x3c\xa8\x85\x63\x96\x42\xf0\x05\x54\xb5\xf2\xfa\xe6\x37\xbf\x19\x34\x9b\xcd\x02\x70\x41\x71\x09\x61\xbe\x55\xf6\xf3\xf7\x3a\xcf\x7d\xe4\xde\xfc\xaf\xad\x77\xa3\x2f\x44\x13\xb5\xa1\x3c\xba\xfe\x02\x20\xd1\x53\x5f\x91\x99\x01\x88\x25\xa1\x04\x7c\xbc\xd8\x78\x0a\x62\xa6\x87\xfa\xcd\x64\xf7\xde\xd2\xe8\xc6\xe5\x63\xbd\x37\x6f\xae\x0e\xde\x1b\x84\xc9\x23\x14\xb7\x05\xcf\x37\x96\x63\x1b\x56\xd1\xb3\x4d\xf2\x39\x73\x09\xb8\xb0\xc3\x10\x7d\x46\x73\xbe\xa0\xa4\x2a\xcc\x32\x2a\xa6\x71\x75\x41\xd2\x4f\x53\x1e\xdf\x11\x5a\x55\x5e\xa8\xc9\xcb\x05\x18\x00\x77\xbb\xa5\x79\xb9\x68\x6d\x79\x01\xee\xbc\x41\x68\x7c\xc0\x2c\xbd\xae\x2a\x0b\x9a\x87\x4b\x6e\x1f\x40\xe5\x93\xae\x94\xcf\xd2\xd2\x52\xb0\xbb\xbb\x9b\x00\x00\xf3\xdf\xb3\xc9\x49\x83\x08\x44\x2f\x5e\xbc\x98\x7c\xe3\x1b\xdf\x08\xfe\xf2\x2f\xff\xb2\xce\xb7\xaf\xf3\x2e\x07\xe1\x37\x6b\x59\x3a\xe9\x49\xd9\x71\x7a\xe9\xda\x07\xb8\x70\x80\x59\x00\x8e\x15\xdb\x3c\xb8\xc2\xa1\xd6\x9f\x0a\x7e\xbe\x7a\x4d\x6a\x2f\x55\xe9\x5d\xed\x3d\x05\xdd\xc2\x03\x57\x38\xec\x51\xd0\x61\x84\x03\x81\x23\xb2\x3b\x6e\xc0\x80\x0b\x3d\xeb\xa3\xbd\xb1\x1b\x9d\xfc\xc4\xed\x85\x5f\x3e\xbd\xd3\xfe\xef\x73\xe3\xe0\xe9\x00\x2a\x02\x50\x1b\x31\xfc\x24\xa6\x7e\x0e\xc2\xd3\x80\x29\x97\xaf\x0c\x00\x24\xd0\xe8\x45\x93\x9d\x3b\x47\x86\xef\xbd\x7b\xac\xff\xe6\x9d\x23\xc3\x5b\xfd\x66\xf2\xd0\xac\x1c\xca\xfe\x0a\xd3\x43\xc6\xd2\x92\x2d\x79\x2e\x1c\x7b\x6f\xfe\xe8\x9c\xb9\xd6\x1a\xef\xbd\xf7\x1e\xfe\xe1\x1f\xfe\xa1\x0a\x84\xda\x3a\x35\xdf\xc6\x50\x87\x8e\x5f\x03\xd5\x0d\x9c\xe7\x33\x8b\x25\x44\xe2\xef\xe2\x6d\xa3\xf3\x0d\x07\x79\x57\x57\x5e\xff\xbb\x75\x86\x4f\xe7\x79\xd0\x8e\x75\x56\x80\xe9\x9b\xb6\x4e\xb0\x76\x36\xc2\x28\xbf\x64\x21\x60\xd7\x3e\x1d\xea\x61\x85\xba\xe5\xe0\xaa\xff\x87\x92\x07\x9f\x6a\x23\x9b\x5f\x9a\x78\xfe\xcb\xf3\x02\xcd\x4f\xf0\x0f\x4a\xe8\xaf\x79\x4e\xbf\x81\x29\xf3\xa7\x9e\x7a\x2a\xb8\x7e\xfd\xfa\x7f\x86\x76\xe4\x1b\x4f\x9f\x43\xa0\x99\x75\x00\x17\x00\xee\x7d\x5c\xa4\x70\xd8\x0d\x8c\xf3\x9d\xa5\x70\x0e\x2c\x93\x6b\xc3\x26\xad\x75\xb4\x30\x6a\x2c\x3d\xb3\x35\xf7\xe2\xf1\x6e\xf4\x99\x76\x1c\x9c\x52\x06\xb4\x00\x05\xc4\x60\x0e\x50\xb0\x5a\x32\xb8\x73\xed\x34\xda\x0f\x78\x68\x96\x47\x59\x84\x4a\xe6\x7c\xda\xca\x58\x80\xa8\x5f\x2e\x97\x27\x81\xc6\x7e\x6b\xb2\x7d\x7b\x79\x78\xf5\xea\x5a\xef\xed\xbb\x4b\xa3\x5b\xfd\x66\xf2\x28\x3b\xd5\xd9\x58\x59\xcc\x14\x11\x3d\xd3\x24\xdf\x9f\x85\x38\xe0\xc6\xb4\x01\x9b\x86\xfa\xca\x2b\xaf\x24\x67\xcf\x9e\x0d\x6e\xdc\xb8\xe1\x3b\x62\xf2\x01\x04\x55\x48\x3f\xb0\xd0\xd9\x46\xa5\xf4\xd9\xac\x8a\x96\xca\x4f\x79\xd3\x78\x2e\x33\xff\xe5\xd7\x9c\x7f\xdd\x91\x50\x82\x32\x6f\x69\x44\x69\xa3\xb3\x95\xad\xaf\x2c\xd2\x73\x1f\x10\x56\x27\xef\x2a\xf0\x22\xf1\xa6\x3c\xa4\xb4\x52\xfd\xb1\xc9\x2a\xf1\xb6\xc9\x35\xab\xb2\xb7\x75\xa0\x09\x90\x76\x82\x5f\xfd\xea\x57\x83\xbf\xfa\xab\xbf\x4a\xe8\xe9\xd3\x14\x9c\x48\xd7\x17\x2f\x5e\x4c\xce\x9e\x3d\x2b\xf1\x96\x64\x95\xea\x73\x9d\x77\xb0\xca\xef\xc9\xc3\x36\x40\xf1\xee\x5b\x28\x60\x21\x7e\x40\x05\x57\x02\x66\xbd\x0a\x38\x2d\x84\x6f\x48\x2c\xcb\x79\x3b\x35\xfb\xef\x08\x74\x00\x90\x2f\x1a\x79\xf8\xf0\x21\xae\x5f\xbf\x6e\x93\xdb\x56\x57\x6d\xf5\x8a\x86\x3a\x03\x27\x5b\xbe\x2e\xfa\x83\xf0\xe7\x32\xe6\xef\xc5\x81\x4b\x1d\xf4\x2a\x65\xce\x83\x2b\xbd\xef\xa8\x4d\x2a\x7c\x9b\x8c\xae\xd1\x55\xa9\x22\x65\x95\x82\xff\x4d\x81\x8b\x46\xd4\x4c\x82\xf6\x93\xdb\xed\xb3\xa7\x77\xda\xbf\xb0\x30\x6c\x3c\x1b\x68\x90\xfd\x5a\x60\x5d\x79\x23\x4e\xe7\x94\x4e\x52\xae\x69\x2d\x51\x80\x72\x6e\x08\x27\xf0\x65\xf2\xd9\x40\x95\xb1\xb8\x70\x03\x92\x86\x4e\xba\xad\xc9\xce\xfb\xcb\x83\x2b\xd7\xd6\xfa\x6f\x7f\xb0\x34\xba\xd9\x6f\x26\x3b\x50\xe8\x2a\xe4\x3e\x2d\xc6\xda\x92\x9f\x67\xc2\x76\xc2\xa5\x1b\x56\x15\x3a\x13\xad\x35\xde\x7e\xfb\x6d\x00\x00\x01\x2d\x80\xfc\x8d\x5d\xa0\x82\xa7\xb3\xf1\x71\x75\xd6\xf4\xba\xaa\xe3\x75\x29\x89\xaa\xce\xda\x26\xb3\xab\x93\xe6\xfc\x6c\xe0\x46\x92\x49\x52\xe6\x3e\x8a\xc5\xa7\x4c\x6c\x6d\xd1\xf5\xfd\x7c\x3a\x15\x4e\x5b\xa5\x84\x5d\xdf\x52\x7a\x07\xfe\x8c\xf2\xb5\xd5\x0d\x9b\xd2\x96\xe2\x5d\xba\xc8\x96\x7f\x1d\x85\xef\x2a\x33\xfe\x0e\xf9\x77\xbb\x74\xe9\x12\x80\xb2\xf5\xc4\xe6\x20\xfa\xfc\xf3\xcf\x07\x40\xa9\x6d\x4a\x79\xf2\xb8\xaa\x50\x05\x3e\x7c\xfb\x02\x49\x1e\x4a\x5b\x05\x40\x13\x60\xea\x32\xc0\x79\x33\xe7\xe5\x00\xc8\x2d\xf3\x86\x26\x20\xb4\xf9\xb5\x43\x2e\xde\xf6\xf2\x3f\x06\x6c\x72\xff\x23\x00\x38\x7a\xf4\xa8\x8d\x1f\xbf\xb6\xe5\xcf\xe9\x28\xad\x0b\x99\xa8\x02\x6f\x00\x00\x20\x00\x49\x44\x41\x54\x98\xf0\xb6\xe0\x93\x8f\x44\xeb\xd2\x91\x94\x9f\x0b\x8c\x99\x50\x6b\xaa\xc8\xa7\x32\xb9\x40\x86\x0f\x5f\x5f\xa5\xc6\xd3\xd6\xa6\x11\x56\x11\x4d\x97\x3c\x67\xdb\x62\x07\x50\x9d\xf5\xbd\x68\xe3\xd3\xb7\x96\x7e\xed\xe4\xe3\xd6\xaf\xb4\x63\x75\x52\x41\x85\x56\x3f\x13\x3f\x4c\x91\x11\xa7\x3c\x4a\x69\x1c\x48\xc6\x3a\x2b\xf5\x13\x5a\x7a\x94\x40\x27\x7b\xad\xc9\xf6\xad\x95\x14\xb4\xdc\x5b\x1c\xbd\x3f\x68\x4e\x76\xb2\xe5\xce\x5d\xba\x23\x2e\xd8\xea\x21\x76\xd6\x90\x69\x88\xf9\xaa\x21\xcb\xb6\xfd\x55\x80\xd3\xa7\xf3\xaa\x53\x17\xaa\xea\x8f\xd4\xc9\x55\xd5\x4d\x97\x8c\x36\x5a\x1f\x79\x7c\x47\x55\x92\x1c\x55\x6d\x4c\xe2\x2f\xbd\x8b\x4b\x1e\x97\x8c\xb3\x84\xaa\xf7\xf2\x69\xfb\x55\x69\xab\xf2\xac\xea\x84\x7c\xca\xb0\x4a\x1e\x17\x3f\x57\x3a\x5f\x3a\x2f\x79\xce\x9f\x3f\x1f\x5c\xba\x74\x29\x39\x7f\xfe\x7c\x00\x00\x97\x2e\x5d\xf2\x29\x1f\x97\x2c\x36\xe0\x50\xc5\xb3\xee\xb7\xf1\x29\x7f\x91\x67\xa3\xd1\x08\x3e\xfe\xf1\x8f\xe3\xfc\xf9\xf3\xe0\x96\x12\x66\x55\x31\x7d\x04\x77\x27\x08\xc2\x89\x0a\xe7\x47\x41\xb4\x30\x6c\x74\xe6\xc6\x8d\x85\xe6\x44\x75\x14\x10\x2a\x8d\xc0\x28\xe5\x44\xe9\xd1\xb8\xa1\x7b\x83\x66\xd2\xdd\x8f\x26\x83\x5e\x33\x19\x8d\xc2\x64\xa4\x55\x49\x2f\xd2\xa5\xe7\xe6\x3d\x4a\x1d\xfd\xce\xce\x0e\xfe\xe2\x2f\xfe\x42\x2a\x33\xdf\xfa\x5d\xb7\x9f\xae\xd2\x25\xae\x30\x8b\x0e\x70\xc9\x17\x00\xf6\x7d\x5c\x6c\x68\xde\x57\x28\x1f\xa4\x66\x43\x5e\x3c\xce\x55\xc0\x2e\x1e\x52\xfa\x42\xe0\x28\x9a\x9e\x47\x14\x40\xb5\x3b\xa3\x60\xe9\x99\x87\x73\x2f\x1c\xdf\x8b\x7e\xbe\x15\xab\x93\x30\x5b\xfa\xdb\xf6\x4d\x11\xe3\x6d\xe6\x0d\x8b\x13\x97\xc5\x71\x97\xae\x06\xe2\x22\x14\x2d\x39\xd3\xd4\x2e\x3c\xc3\x77\x6e\xe2\x74\x89\xd2\xc9\x5e\x34\xd9\xbe\xb9\x3a\x78\xe7\xdd\x63\xbd\xb7\x37\x17\x46\x37\x87\x61\xb2\xab\x81\xae\x42\xbe\x23\x6e\xbe\x82\x88\x2d\x75\x36\xdb\x85\xf3\x11\x45\x7e\x48\xe2\x3b\xef\xbc\x03\xad\x35\x16\x16\x16\x82\x6e\xb7\x0b\xd8\x1b\x83\x84\xb8\x5d\x60\x86\xf3\xb0\xa1\x7d\x5b\xe3\xa0\xbc\x25\x10\x6d\xcb\x43\x4a\x53\x35\x8a\xe0\x41\x92\xcf\xd5\xb9\xd9\x64\x90\x46\x52\x52\x5e\xb6\xb6\x28\x75\xd8\xb6\x32\xe5\xef\x2e\xd1\xbb\xe2\x6c\xcf\xab\x78\xd5\x01\x20\x34\x0d\xe7\x2d\x3d\xf7\x91\x55\xe2\x53\x07\x40\xfa\xa6\xa7\xe9\xb8\x5e\xad\x92\xd1\x1b\x04\x19\xa0\x62\x01\x2c\x2e\x7e\x3e\x75\xb9\x94\x9f\x40\x67\xeb\x33\x6c\xf1\xb3\xc8\x52\x08\x93\xc9\x24\x79\xed\xb5\xd7\x70\xe1\xc2\x05\xda\x5e\x02\xa0\xe4\x3e\x10\x20\x3d\x22\x21\x00\x10\x86\x13\x84\x2b\xfd\xe6\xd2\xfc\xb0\xb1\x3a\x3f\x6a\xac\x2e\xf7\x1b\x6b\xcb\xfd\xe6\xfa\xc2\xb0\x71\x2c\x9a\x04\x4b\x81\x46\x04\x20\x50\x48\xc1\xcb\x44\xe9\xc1\x30\x4c\xb6\x7b\xd1\xe4\xe1\x6e\x6b\xb2\xfd\x78\x2e\xde\xda\x6b\xc5\x9b\x7b\xed\xc9\xf6\x6e\x6b\xd2\x1d\x84\x13\xb3\x3d\x84\xb1\xb0\x14\x8e\x53\x30\xcf\xb4\xd6\x09\x00\x2c\x2f\x2f\xdb\xde\xcf\xb7\x7e\xfb\x80\x1c\x9e\xce\x17\xd4\x9b\x67\x3e\x7d\xb3\x44\x2f\xe5\x57\xfa\xf6\xb6\x7e\xed\x20\x23\x25\x89\x87\x2f\x4a\xab\xa3\xd8\x68\x1c\x2c\xe9\x0a\x1f\xe7\xdc\xb9\x73\xc1\xd5\xab\x57\x93\xcc\x4b\xbc\x50\x31\xcd\x56\xfe\x48\x37\x99\x6b\xb7\x62\xb5\x7c\xf6\x51\xfb\xe9\xf3\xef\x2f\xfd\xe6\xd1\xfd\xe6\x97\x03\x8d\xb6\x6d\x9b\xfc\x62\x48\x21\xc1\x14\x18\x08\x7b\xd5\x96\x9c\x49\x8a\x10\x83\x83\x14\x94\xf8\xa0\xb4\x4b\x9d\x94\xc6\x2e\x9d\x1d\xd4\x64\x5b\xf8\x63\xaf\x3d\xd9\xbe\xb1\xda\x7f\xf3\xca\xb1\xfe\x9b\x9b\x0b\xa3\x3b\xe3\x50\xef\x20\x9b\x12\x62\x67\x0f\x0d\x90\x2d\x7b\x06\x39\x88\x8d\x6d\x5a\x65\x80\x0b\x2e\x5e\xbc\x98\x7c\xe9\x4b\x5f\x0a\xfe\xee\xef\xfe\xae\x6e\x27\x57\x55\x87\xea\x80\x19\x9f\x7b\x29\x4f\x54\xdc\xdb\x80\x8e\x4d\x6e\x57\xc7\x2b\xbd\x8b\x4b\x06\xdf\xd1\xa6\x8b\x1f\xa7\xe1\xe0\x09\x02\xbd\x0b\x00\xfa\x2a\xc6\xba\xed\xbe\x0a\x98\x56\xf1\xa8\x0b\x78\xaa\xc2\x61\x8d\x3c\x7d\xf5\xe4\x2c\xf9\xd4\x05\x92\xb6\xfa\x7c\x18\xef\x59\x15\xea\xe4\x33\x73\xb9\x0a\x87\x54\x96\xfe\xb4\xd6\x81\x82\x0a\x03\x8d\x28\x9a\x04\xd1\xc2\xb0\xb1\x70\x64\x10\x6e\x3c\xb5\xdd\x3e\xb7\xd6\x6d\x3e\xdf\x19\x35\xce\x34\x27\x6a\xa3\x91\xa8\xd5\x40\x63\x29\xf3\x7f\xa4\x40\x08\x00\x12\x0d\xf4\x12\xa5\x7b\x89\xc2\x6e\xdc\x48\xee\x75\x5b\xc9\xd5\x07\xf3\xa3\xcb\x1f\x2c\x8d\x6e\x3c\x9c\x1f\x6f\xee\x47\x93\x9d\xfd\x68\xd2\xd3\x01\xcc\x4e\xc6\x66\xbb\x88\x98\x59\x60\xf2\x5f\xc1\x5a\x4d\x69\x0e\x23\xcc\xd2\xa6\xea\xe8\x3f\xce\x0b\x8e\xe7\x85\x3c\x95\x25\x43\x2e\x98\x6f\x25\xae\x52\xe6\x2e\x85\x28\x29\x5f\x4e\x57\x25\x9f\x14\x0f\x00\xc9\x33\xcf\x3c\x13\x7c\xf1\x8b\x5f\x2c\xa4\xe5\x9b\xcc\x69\xad\x23\x05\xd5\x0e\x13\xb5\xb0\xbe\xd7\x3c\x79\xfe\xf6\xe2\x2f\x9f\xde\x69\xff\xdf\xcd\x89\x5a\x37\x87\x1e\x02\xf2\x5e\xd3\x25\xfc\x21\x9d\x8c\x68\x1e\x31\x32\x6e\x74\xe1\xe0\x22\xcf\x43\xf0\xa9\xa9\xb2\xaa\x4c\x1d\x82\x39\x38\x92\xad\x3a\x1a\x40\x2f\x4a\x76\xae\xad\xf5\x5f\xff\xf1\xf1\xfd\xd7\xb7\xe6\xc7\x77\xb2\xd3\x9d\xf3\x25\xcf\xe4\x9a\x1f\x7b\x6f\x3b\xd5\x59\x6a\x68\xbe\xe1\xa0\x8a\xb0\x8e\xc2\xf6\xe9\xfc\x67\x91\xe7\x30\x3a\xa4\xff\x2c\xfc\x0f\x92\xd6\x47\x7f\x54\x75\xba\x75\x01\x08\xd7\x31\x2e\x5a\x5b\xa8\x53\xbe\x36\x65\x0e\x21\xde\xc5\xcf\x07\x34\xce\x22\x1f\xe7\xed\xd2\x9f\x55\xd7\x46\x9e\x83\x96\x8f\x2f\x8d\x6f\xfd\xb1\x96\x77\xbb\xdd\x0e\xcc\x4e\xe9\xb6\x53\xb5\x4d\xbf\xa0\xb5\x0e\x15\x54\xd8\x9c\xa8\x68\x69\x18\x2e\xad\x77\x9b\x27\x9f\x7c\xd8\x7e\xf6\x78\x37\xfa\xd4\xdc\xb8\xf1\x62\x38\x51\x27\x03\x8d\x05\x05\xd5\x56\x59\x9e\x1a\x45\x3d\xcd\x17\x54\x68\x20\xd1\xd0\x23\xad\xb0\x1b\x07\xfa\xde\xa0\x99\x5c\xd9\x99\x8b\xdf\x78\x7f\x79\xf0\xfa\xcd\xd5\xc1\x8d\x9d\x76\xbc\x33\x6e\xa4\xab\x30\x35\xf2\xad\x23\x0a\x03\x41\xfa\x6e\x93\xc9\x04\xdf\xf9\xce\x77\x66\x29\x6f\xdf\x72\x9d\x05\x88\x1c\xa4\xbd\xf2\x38\x31\xff\x50\x78\x48\x83\x88\xf4\x84\x6b\x1a\x67\xd0\x6a\x55\x7a\x4a\x2f\xf1\xa4\x32\xb9\xe2\x5d\xa0\x25\x01\x80\x8d\x8d\x8d\xe0\xda\xb5\x6b\xc9\x17\xbf\xf8\xc5\xbc\x92\x12\x39\x83\x6c\x93\xb9\x40\x29\x15\x2a\x8d\x68\x61\xd8\x58\x7e\x6a\x7b\xee\x85\x8d\xdd\xd6\x17\x9a\x93\x60\x1d\x40\x69\x45\x90\x22\xb8\x44\x4b\xfb\xf4\xe7\xc7\x37\xcb\x8e\x2f\xb9\xb3\x2c\x77\x54\x31\xc6\x98\xf2\xce\xfb\x05\xfe\x74\x15\xd0\x14\xc5\x14\x23\x54\xe1\x84\x87\x22\xe2\x51\x05\x91\x75\xe6\x88\x8b\x64\x10\x26\xbd\x5b\x2b\x83\xb7\xdf\x38\xb1\xf7\xda\x76\x27\xfe\x60\xa2\x74\x17\x7a\x0a\x56\xc8\xae\xb8\xf4\xb0\xc4\x11\xd2\x65\xcf\x31\xb5\xb2\xd0\xfd\x59\xe2\x38\x2e\x95\x01\xe4\x6f\xcf\xbf\x67\x1d\xa5\x29\xd1\x49\xcf\x6c\x75\xbe\x0a\x88\xbb\x82\x4f\x87\xc5\x69\x5d\x83\x06\x5b\x1e\x9c\x9f\x6f\x79\xd9\xf8\xbb\x06\x25\xb4\xbc\x5c\x69\x5d\xf2\x55\x7d\x57\x54\xc4\xd9\xf8\xf1\x6b\x9b\xbe\x70\xf1\xf5\x0d\x55\x1d\x03\xa5\x91\xbe\xa7\x4b\xcf\x19\x1e\x3e\xef\x6e\x4b\xe3\x03\x54\x5c\x74\xae\xf2\x72\x7d\x33\xdf\x7e\xc1\x87\xf7\x41\x68\x24\x79\x38\xe0\x03\x50\x3c\xde\xc5\xe2\x64\x1b\x1a\xd0\x12\x40\x45\xad\x38\x68\x1f\xeb\x36\xd7\x3e\xf4\xa0\xf3\x91\x33\x3b\xad\x2f\x75\x46\x8d\x0b\xe1\x44\x6d\x28\xa0\xa3\xa0\x02\x3e\x00\x54\x48\xa7\xee\x81\x6c\xa8\xcb\xfa\x01\x05\x04\x0a\xaa\xad\x35\xda\xd1\x44\xad\x35\x27\xea\x5c\x67\x14\x7c\x7a\xa5\x17\xbe\x7e\x7c\x2f\xfa\x87\x1f\xaf\xf7\x5e\xbb\xb7\x34\xbc\x37\x68\x26\x83\x24\x9d\x7e\x37\xf2\x99\x41\xa1\x59\xa6\x1e\x00\x48\xb2\xe3\x1d\x52\xa2\x20\x08\x92\x24\xf1\x2d\x33\xa9\x7e\x56\xb5\xc9\x59\xfa\xeb\xc3\xf8\x96\x94\x7f\x00\xa4\x87\x2c\x02\xc5\x81\xbd\x21\xd2\x35\xae\x69\x50\x59\x06\xfc\x19\xa5\xa7\xcf\xb2\x3e\xb3\xc4\x8f\xcb\x44\xe9\x5d\xf7\x26\x5d\x1e\xdf\xed\x76\xf5\xcb\x2f\xbf\x5c\xa8\xa4\xd9\x4e\x90\xe6\xf0\xc4\x86\x52\xaa\x05\x8d\xb9\xf6\x38\x58\x3c\xb5\xd3\xfa\xd0\x0b\xf7\x16\x7e\x65\x71\xd8\xb8\x10\x40\x35\xcc\xea\x1c\x71\xe5\x90\x46\x76\xe8\x20\x64\x03\x8b\x2a\x02\x06\x9e\xbc\x74\x67\x7e\x44\x2f\xdc\xe2\x6d\x4e\x43\x91\x4d\xda\x72\x08\x11\x4b\x6b\xc4\x21\x24\xa6\xb0\x86\x61\xb2\x7f\x77\x79\x78\xe5\xfb\xa7\xf7\xfe\xd7\xc3\x85\xf8\x6e\xa2\xb4\xf1\x63\xe9\x22\xf5\x69\xd9\xc7\xd4\xa7\xa5\x8f\x29\x60\x19\x29\xa5\x0a\x3e\x2d\x99\x3f\x8b\x7e\xe5\x95\x57\x92\x4f\x7e\xf2\x93\x8a\x8c\x0a\x78\x3d\x30\xf5\x85\x8a\x09\x81\x56\xb1\x74\xf4\x3a\x20\xbf\x9c\x97\xab\xde\x05\xc2\x2f\x37\xa4\xb9\x40\x82\x8d\x37\xad\x83\x92\x7c\xe6\x1a\x02\x0d\xe7\x1b\x30\x7e\xbc\x5d\x28\x4b\x3a\x45\x9e\xb9\xda\x37\xff\xe5\x72\xf1\xc0\xe5\xa1\x81\x56\x29\x1e\xa4\x36\x2e\xc9\xe3\xca\xcf\x15\x6c\xcf\xab\x74\x97\xad\xfc\x6c\x81\xcb\x22\x95\x2f\xaf\x9b\xbc\x1e\x71\x7e\x36\xc0\x6c\xfb\x66\xfc\x19\x2a\xe2\xe9\xb7\xaa\xfa\xbe\x52\x5e\xbc\x9d\x54\xc9\xc6\xe3\xea\x7e\x77\x57\xdf\xe2\xe2\x69\x6d\x8f\x41\x10\xa8\x17\x5f\x7c\x51\xfd\xea\xaf\xfe\xaa\xa9\xa3\xd4\xe2\x62\xac\x2d\xf9\x4e\xe9\x01\x54\xab\x33\x0a\xe6\xcf\x6e\xb7\xcf\x7c\xfc\xee\xe2\xe7\x4e\xef\xb4\x7e\x7b\x7e\x14\x7e\x36\xd4\xea\x78\x3a\x1d\xa4\x4a\xea\x37\x1f\x8c\x66\x31\x74\x87\x72\x95\xe9\xe6\x29\x4d\xaa\xad\x95\x56\xcd\x00\xea\x48\x34\x51\x67\x16\x87\xe1\x73\x1b\x7b\xd1\x91\x56\xa2\x76\xf6\x5a\x93\xfd\x71\x98\x24\x1a\xd0\xd3\x3e\x21\x35\x9d\x67\xbb\x21\x6b\xa5\xd2\x93\x32\x2f\x5c\xb8\xa0\xce\x9f\x3f\xaf\xae\x5f\xbf\x8e\x7e\xbf\xcf\xeb\x92\x4f\xdb\xa1\x7a\xcd\x56\xc6\xe6\xda\x56\xfe\x55\x79\xd0\xbc\x7c\xeb\x9d\x24\x9f\x36\x11\x80\xbd\x51\xf1\x67\xbe\xe8\x49\x44\xbb\x15\x61\xd6\x51\x12\xb5\xf0\x38\xd3\xa9\xec\x30\xb1\xec\xc3\x07\x60\xfb\xb5\x04\x1a\xed\xb5\xfd\xe6\xc6\x87\x1f\x74\x7e\x76\x69\x10\x5e\x08\xc8\x7e\x2d\xa5\xd2\xe4\x20\xa4\xca\xbd\x84\x59\x4b\x4a\xe4\xb6\x4f\xe9\x04\x3b\x16\x5a\x0b\x11\x1f\x19\xd0\x30\x6c\x26\xdd\xdb\xcb\xa3\x77\x2e\x9d\xda\xfb\x9f\x5b\x0b\xe3\xf7\x35\x74\x57\x29\xb5\x0b\xc0\xfc\x99\x95\x44\xc6\xda\x32\x02\x30\xa0\x4b\x9e\xb5\xd6\xb9\x3f\x8b\x71\xc2\x05\x80\x1b\x37\x6e\xd0\xac\xa4\xef\xc3\x47\x3e\xe6\xda\x55\x97\x02\xf6\x2b\xf1\xb6\x59\x04\xa4\x67\x34\x3d\xa7\xab\x0a\xbe\x7c\x6d\xef\x23\xbd\x0b\x4f\xeb\x23\x97\xcb\xa2\xe9\xca\x97\xde\xd3\x32\xb0\x95\x31\xa7\xf1\x6a\x7f\x8e\x67\xae\x3a\xc1\x2d\x3e\xb3\xe8\x16\x9e\x47\x1d\x0b\x01\xcf\xb3\xae\xf5\xc6\x65\xb1\xf2\x49\xe3\xa3\xa3\x7f\x1a\xf2\xb8\x64\xa8\x63\x65\xf9\x49\xc4\x57\xa6\x4b\x92\x24\xf9\xd1\x8f\x7e\x54\x28\x53\x66\x71\x09\x01\x44\x4a\xa9\xb6\x52\x2a\x3a\xba\xdf\x5c\xfe\xe4\xed\xc5\x0b\x17\xde\x5f\xfa\xe6\x89\xdd\xd6\xff\xdb\x8e\x1b\x2f\x05\x48\xb7\xc2\x28\x0c\x1e\x49\x26\x79\x8f\xaf\x8b\xf1\x1a\xc8\xa7\x8b\x4a\x41\x19\x01\x54\x3b\x9a\x04\xe7\x56\x06\xe1\x6f\xbd\x70\x6f\xe1\xff\xfb\xf4\xad\xa5\x9f\x39\xd6\x8d\xd6\x1a\x09\x3a\x00\xda\x99\xff\x65\x48\x66\x07\xf8\x3b\xe0\x1b\xdf\xf8\x46\x55\x99\xf8\xb4\x9d\xba\xd6\xb6\xaa\xc0\xf3\x94\x74\x6c\x15\xcf\x52\x7c\x03\x32\xca\x91\x46\x7b\x12\xea\xb6\x85\xaa\x11\x57\x15\x8f\x2a\x3a\x8e\xac\xad\xc8\xfb\xf7\x7e\xef\xf7\x82\x4f\x7d\xea\x53\xa9\xd1\x64\x0a\x92\x1b\x99\x6f\x4b\xd3\xfc\x29\xa5\xda\x2b\xbd\xf0\xd8\xb3\x0f\xe6\x3f\xfd\xe4\x76\xfb\xbf\xb7\x26\xea\xb4\x22\xe6\x12\x83\x9a\xe9\x14\x4e\x3e\xd4\x62\xa0\x84\xbe\x30\x9d\xc1\x91\x67\x8d\x32\x2a\xc2\x73\x9a\x67\x7a\xce\x08\x30\x45\xec\x25\x0b\x8c\x39\x8f\x84\xe4\x9f\xc6\x01\x5a\x29\x26\x8f\x2e\xbc\x83\xce\xe2\xfa\xcd\x64\xf7\xfd\xe5\xe1\xe5\x1f\x3d\xb1\xf7\xea\xbd\xa5\xd1\x6d\xad\xd0\x05\xd4\x2e\x54\x6e\x69\xc9\x4f\x78\x56\x4a\xf5\x95\x52\x43\x00\x43\xb0\xdd\x70\xd5\xf4\xcc\x13\xad\x94\xca\xb7\xee\xbf\x71\xe3\x86\xd2\x14\xc9\x94\x0b\x40\xfa\x96\x7c\x54\x6f\xab\xa3\xae\x91\xa3\x2d\x8d\xe1\x2f\x59\x0e\x6c\xf2\xf0\x34\xe6\xb9\x64\xe5\x71\x05\x89\xb7\x16\xee\xab\xd2\xd8\xac\x1e\xb6\x34\x5c\x6e\x9f\x7c\x7c\xf2\x70\xc9\x6d\x82\xd4\x9e\xa5\x6b\xfa\x0b\x0b\x6d\x5d\x0b\x89\x6f\xde\x2e\xde\x55\xa3\x50\xdb\xa8\xd6\x27\xcf\x2a\xf9\xab\xf2\x76\x5d\x57\xc9\xe2\x23\x53\x1d\x7e\xf4\xda\x57\x6e\xda\xbf\xf0\xbe\xc6\x95\xd6\xbb\x1c\x3e\xfb\xd9\xcf\x06\xb7\x6e\xdd\xd2\xc4\xaf\x45\x01\xb9\x2f\x4b\x03\xc5\x9d\xd2\xa3\xf5\xbd\xe8\xe8\x47\xef\x2d\x7c\xf6\xdc\xd6\xdc\xff\xb5\x34\x0c\x3f\xdf\xd0\x58\x93\x2c\x2c\x26\x50\x95\xac\x24\x02\xb0\x7e\x80\x29\x71\x45\x98\x28\xa0\x19\x4e\xd4\x89\x85\x51\xe3\xf4\xfc\xa8\xb1\xdf\x8f\x92\xc7\xfd\x66\x32\x9a\xa8\xfc\xbc\x28\x9d\xbd\x83\xa8\xa3\x2e\x5d\xba\xe4\x2a\x3f\x5b\x3d\xad\x6a\xb7\xf4\xba\x6e\x1d\xac\xdb\xa6\x5c\x79\xe7\xd7\x8d\x0a\xa1\xe9\x94\x0f\x57\xd6\x55\x0d\xce\xc6\x8f\xf2\xb2\x05\xa9\x43\xe0\xcf\x0d\x4f\xe9\x63\xe4\xf7\x3f\xf8\xc1\x0f\xf4\xf9\xf3\xe7\x15\x43\xd7\x0d\x00\x4d\xad\x75\x53\x29\xd5\x04\x30\x17\xc5\x6a\xfe\xcc\x4e\xfb\xf9\x67\x1f\x74\x7e\x71\x71\x18\x7e\x22\x80\x8a\x8a\x55\x2b\x33\xfb\x71\x90\xa2\x88\xe9\x8f\x36\x57\x3a\x5b\xa3\x8a\xbf\xc5\x7a\x5b\xac\xe5\x53\x33\xa2\xc9\x2f\x3b\xdc\xcc\x00\x1b\xb6\x89\x5d\xbe\xab\x63\x9e\xde\x2c\xb1\x2e\xc6\xa3\xc0\xd3\x14\x90\xc6\xa0\x99\xec\xde\x5e\x1e\x5e\x79\x6b\xa3\xfb\xda\xbd\xa5\xd1\xcd\x49\x80\x5d\x0d\xbd\x4b\xa6\x88\xf2\x03\x13\x91\x59\x5a\xb2\xa5\xcf\xb9\xc7\x3b\x39\xdd\x19\x48\x01\x0c\x5e\x7d\xf5\x55\x6c\x6f\x6f\xab\xc9\x64\xa2\x33\xd0\x52\x57\x79\xd5\x4d\xc3\xff\x24\x65\xc8\xc1\x8a\x4d\x41\x07\x96\xf4\x26\xd0\x67\x7c\x0a\xac\xaa\x43\xae\x7a\x87\x2a\x25\xee\x2a\x1f\xa9\x2d\x98\x78\xc0\x5e\x96\xb6\x3c\x25\xe5\xe2\x23\xb7\x04\xf0\x60\x89\x83\x10\xc7\xbf\x0d\xbd\xb6\xf1\x90\x82\xd1\x21\x1c\x08\xd9\x78\xd7\xcd\xd3\xf6\x2d\xaa\xd2\xf9\xea\xce\x59\xe5\xf6\x95\x85\x7e\x33\x4e\x23\xa5\xa3\xa1\x4a\x16\x5f\x59\xa5\x6f\xee\x93\xd6\xbc\x63\x25\xad\x01\x2d\x40\x6e\xa1\x08\x30\xb5\x5a\x14\x8e\x77\x39\xda\x0d\x57\x9e\xdf\xec\xfc\xcc\x53\xdb\xed\xaf\x2d\x0c\xc3\x0b\x0d\x8d\x23\x4a\x2b\x71\x47\x71\x13\x0a\x71\x59\xae\xd2\x6c\x7d\xde\x0f\x64\xfc\x94\x26\x40\x27\xa7\x57\x50\x50\x8d\x30\x51\x6b\x73\xe3\xc6\x89\xce\xb8\x31\xec\x47\xc9\x76\xaf\x95\x0c\x92\x20\xd5\x35\x14\xb4\x90\x2d\x35\x34\x90\x02\x97\xd3\xa7\x4f\xab\xdd\xdd\x5d\xdb\x37\xf6\x69\x33\x55\x75\x1d\xc2\xf3\x83\xb4\x23\x57\xfd\x12\x07\x86\x36\x8b\x8b\x69\x30\xbc\xd2\x4a\x95\xc5\x16\x38\x5f\x29\x0f\x5b\x23\x93\xf2\x96\xf8\x57\xf9\xd2\xd0\xb3\x88\x0c\x78\x09\x0c\x60\xc9\x40\x4b\x0b\x40\xfb\xc4\x6e\xeb\xf4\x87\x37\xe7\x7f\xfe\x78\xb7\xf9\xd9\x66\xa2\xd6\x4c\x27\x6f\xab\xac\xc5\xd7\x32\x35\x32\xcb\x58\x95\xd3\x14\xf8\xa8\xf2\x33\xa0\x08\x48\x0a\xf4\xc4\x54\x63\x56\x37\x71\xe9\xa6\x57\x4a\x60\x00\x91\x73\xbf\x99\xec\xde\x3e\x32\xbc\x7a\xf9\xf8\xfe\x8f\xee\x1e\x19\x5d\x1f\x37\xf4\x63\x9d\x82\x95\x3d\x4c\x9d\x71\x0b\xa0\x05\xd3\x3d\x5a\xb8\x4f\x0b\xb2\x6b\xbc\xf2\xca\x2b\xc9\xce\xce\x8e\x1a\x0e\x87\x26\x6b\x5e\x67\x68\xc7\x26\xc1\x39\x6d\xa1\x73\xa5\x31\x75\x41\x5b\xe8\xcc\xbd\xcb\xd7\x80\x77\xb0\x94\x9e\x7e\x35\xfe\x2c\x60\x74\x5c\x66\x2a\x03\xcd\x4f\x7a\x07\x1a\x27\xbd\x37\x37\xb5\xda\x9e\xf1\x32\x30\x7c\xe9\x2f\x4f\x4f\xf3\x96\xbe\x85\xad\xec\xe9\xfb\xf1\x6f\x00\x46\x73\xd0\x50\xa7\xd3\xa7\x4e\x87\x3e\xfa\xc4\xf6\xdc\x27\x7e\x16\x1d\xe6\xca\xd7\xa6\xdf\xaa\xd2\x51\x59\x7c\x2c\x3b\x55\x6d\x43\xd2\xff\x3f\xe9\x50\xd5\x37\xc0\xe3\x79\x21\x9c\x3f\x7f\x5e\x65\xf4\xf4\x2f\x44\x3a\xfd\xd2\x52\x4a\x45\xcb\xbd\xf0\xc8\xf3\x9b\xf3\x9f\x7a\xea\x61\xfb\xab\x4b\xc3\xf0\x7c\xa8\xd5\xb2\x9a\x2a\x5e\xab\x4e\x2f\x34\x0a\x95\xaa\x6a\x5b\x23\x31\xbc\xe8\x35\xa5\x99\xa2\x7e\xd5\x08\x13\xb5\xdc\x8e\x1b\x2b\x61\x82\xfd\x6e\x6b\xb2\xb5\xdf\x9a\x0c\x32\xf5\x6f\x7c\x5c\x0c\x88\xc9\xeb\xf7\xf9\xf3\xe7\xd5\x3f\xfd\xd3\x3f\x49\x7e\x79\x5c\xff\xd8\x06\x3a\xb6\x3a\x2b\x0d\xa4\x68\xf0\xf9\x16\xb3\xd4\x1d\x51\x1e\x6e\x71\xa1\xa3\x48\x09\x85\xfb\x08\xee\x42\x77\xbc\x21\x71\x34\x65\x33\x05\xf2\x91\x9f\xab\x03\xd2\x40\xba\x13\xe4\x57\xbf\xfa\xd5\x14\xd0\x66\xbe\x2d\x5a\xeb\x86\x52\x2a\x24\xe6\xc1\x36\x80\xb9\x23\xfd\x70\xe5\xdc\x56\xe7\xc2\x93\x3b\xed\xcf\x77\xc6\x8d\x67\x94\x46\x98\xd2\xa3\x34\xb5\x53\xd2\xd6\x19\xb4\x2e\x54\x3c\x8d\xf2\x99\x42\xf4\xf0\x32\x94\xea\x2e\x54\xc6\x87\xf7\x1a\x39\xfd\xf4\x78\x7a\xf2\x4c\x4d\x4f\x9c\xc6\x54\x56\x03\x9e\xcc\x4d\xf1\x1d\xd2\x9a\x3f\x08\x93\xee\xdd\x23\xc3\x6b\x57\xd6\x7b\x6f\xdc\x3d\x32\xba\x36\x0c\xf5\x23\x28\xd5\x55\xe9\xdf\x1e\x9b\x1e\x1a\x28\xa5\x46\xd9\x5f\x61\x37\x5c\x64\x53\x44\x40\x71\x7a\x28\x8e\x63\xda\x89\xd1\x40\x1b\x92\x64\xd5\xe3\xf5\xad\xce\x35\x2d\x32\xe9\x99\xa4\xd0\xf9\x33\x9e\x9e\x82\x75\x9e\xaf\x2d\x2d\xcf\x5f\x6a\x2f\xb3\xbc\x83\x94\x8f\xeb\x19\x30\x6d\x2b\x55\x9d\x5c\x95\xdc\xbe\x74\x9c\x9e\x86\x2a\xd3\xb2\xed\xb9\x8d\x8f\x8b\x1f\xb7\xee\xda\x3a\xe0\x3a\x83\x31\x1f\xb9\x69\xa0\xca\x5e\xb1\x7b\xcd\x68\x38\x6f\xc5\xfe\x7c\xd3\xd1\xbc\x60\xa1\x91\xde\x89\xcb\x5b\xf5\x4d\x5d\x56\x41\x97\xde\xf7\xb9\xb6\xf5\x37\xb6\x6f\x6c\x7b\x27\x0d\x14\x76\x49\x57\x99\x4f\x6b\x03\xd3\x01\x6c\xa4\x94\x6a\x35\x12\x74\x9e\xbb\x3f\xff\xb1\x73\x5b\x73\x5f\x5d\xee\x87\x9f\x6e\x26\x6a\x0d\x50\x41\xda\x81\x64\x8c\x34\x80\x7c\xc5\x10\x2d\x95\x54\xc9\xf2\x42\x57\x26\x11\xb3\x8a\xe7\x56\x92\x62\x47\x02\xd3\xe7\x20\xb3\xaa\x2b\xa8\xb0\x91\xa8\xa5\x68\x12\x34\xe3\x86\x7e\xd4\x6d\x4d\x1e\x0e\x9a\xc9\x08\xa9\xce\xd5\x19\x2f\x73\x9d\xfb\xeb\xbe\xf4\xd2\x4b\xea\xb5\xd7\x5e\x93\xea\x7d\x41\x6a\x4b\xb9\xda\xe8\x29\x46\xb3\xd5\xd7\x3a\xdf\xd8\xb7\xfd\x8b\xf1\xd4\xfc\x6d\x2a\x02\x75\xc4\x92\x1c\xb9\xaa\x1c\x68\xea\x38\xe7\xd5\xe5\x4d\xe5\x72\x86\x4b\x97\x2e\x25\x5a\x6b\x68\xad\x5d\xa7\x3f\x87\xe1\x04\xed\x93\x8f\xa3\xa7\x9f\x78\x1c\x9d\xef\x0c\x83\x73\x4a\xa3\x9d\xdb\x2e\x14\xfd\x8a\xe9\x15\xab\x6b\xe0\xf5\xcf\x10\x95\x2a\x31\x01\x2d\x05\x8e\xf4\xb3\x5b\x82\x7d\x76\x35\x6b\x13\xaa\x08\x4e\x0a\x1a\x4f\x95\xf3\x1c\x35\x92\xc1\xfd\xc5\xe1\x8d\x6b\x6b\xfd\xb7\xef\x1e\x19\xde\x30\x67\x0f\x81\xec\xd1\xa2\xb5\x36\x7f\x83\xec\x74\xe7\x7c\xc9\x33\x71\xc0\x2d\x38\xe2\xbe\xfa\xea\xab\x68\xb7\xdb\xa6\x4e\x99\xb2\x96\x82\x79\x96\x08\x74\x36\xe7\x2d\x4a\xc7\xeb\xad\x44\x2b\xd1\xf1\x3c\x7c\x78\xbb\x9c\x63\x6d\xfc\x25\x59\x5c\xd7\x3c\xce\x26\x8f\x44\x63\xa3\xb3\xc9\x50\x25\x93\xed\xfb\xd9\x64\x73\x95\x1d\x0f\xb6\x6f\x2b\xe9\x0e\xc9\x49\xd8\x46\xcf\xbf\x93\xcb\xd9\x57\x92\xc9\x55\x57\x5d\xc1\xd7\x69\x95\xeb\x52\x97\xac\xb4\x6d\x70\x7a\x1f\xc7\xc9\x04\xe5\xfc\x5c\x32\xd2\x34\x12\xad\xab\x8e\x55\xc9\x15\x58\x9e\xf3\xf8\x80\xc5\xd3\x7c\x6d\x75\xa2\x2a\x94\xca\x95\x6d\x83\x41\x8f\x78\x69\x3f\xb1\xd3\xda\x38\xb3\xd3\xfa\xb9\x23\x83\xf0\x13\x99\xc5\x3d\x28\x0d\x2e\x15\x32\x40\xc1\xe3\x8b\xfb\x96\x9b\xf8\x54\x2f\x4f\x01\x4d\xae\x87\xe9\x08\x53\x9b\x28\xea\xa7\x38\xcd\x21\xd0\x6a\x61\x7e\xd8\x78\xf1\xf4\xa3\xf6\xcf\x9d\x7c\xdc\x3a\xd7\x1a\x07\x0b\x48\x07\xdc\xe9\xee\xbc\xe9\x3b\x04\xd9\x75\xce\xcb\x11\x5c\xed\xd2\x45\xeb\x53\x77\x4d\x1a\xdb\x37\x93\xbe\xbd\x0f\xef\xd2\xb5\xaf\xc2\xa9\x52\x8a\x9c\x8f\x04\x2e\x66\x51\x0c\x86\x57\x15\x8f\x3c\xfe\x99\x67\x9e\x09\x80\x14\x65\x1b\xff\x10\xc5\x4e\x7f\xce\x3c\xb3\x43\x00\xd1\xda\x7e\xb4\x7e\x6a\xa7\xf5\xc9\x95\x5e\xf3\x85\x30\x51\xcb\xd3\x65\x6b\x1c\xa8\x14\x2b\x43\x0a\x46\xcc\x15\x4a\xcf\x68\x48\x2b\xad\xce\x51\xb8\x42\x0a\x7a\x28\xdb\x2a\xfc\xa2\xa1\x45\xeb\x0f\xcf\xcf\x36\xec\x33\x21\x0e\x92\xd1\xd6\xc2\xf8\xd6\x7b\x47\x07\x6f\xdf\x39\x32\x7c\xaf\x17\x25\x0f\x34\x0a\x07\x25\xe6\x7f\xd4\xd2\xa2\xb5\x1e\x91\x1d\x70\xf3\x5f\x03\x5a\x2e\x5e\xbc\x98\xbc\xfd\xf6\xdb\x18\x0c\x06\x92\xf8\xbe\x1d\x83\x2f\x5d\xd5\x48\xcb\x76\x5f\x07\xc8\x48\x7c\x6d\x40\xdb\xd5\xd9\x4b\x0a\x99\x5f\x4b\x4a\x9a\xe6\xe1\x03\x4e\x6c\x72\x48\x32\x4a\x1d\x00\xed\x2c\x0f\xa3\xad\xba\xe4\xab\x1c\x78\x30\xda\x2a\xfa\xba\xba\x46\xfa\x8e\xae\xf7\x76\xd5\x15\x57\xf0\xfd\x6e\x9c\x77\x9d\x3c\x38\x7f\xdf\x76\x26\xc5\xd5\x19\x94\xfa\xd4\x93\x2a\x7e\xbc\x3e\xf0\x4e\xce\x95\xde\x0b\xc4\xd0\x93\x9e\x4d\x5f\xc0\x57\x94\xce\x0f\x1b\x0b\x4f\x3f\x9c\xfb\xc4\x6a\xaf\xf9\xe9\xe6\x44\x6d\x28\xa8\xb0\xa0\x47\x75\xb5\x5e\xcd\x01\x08\x27\xd2\xd3\x9f\xd2\xf0\x53\xa1\xb8\xda\x48\xeb\xa2\xd5\x3c\x0b\xcd\x44\xad\xad\xf4\xc2\x97\x9e\x7c\xd4\xfe\xd4\xb1\x6e\x73\x03\xd9\xa0\x3b\xfb\x0b\xc8\x2f\xcc\x2f\x7d\x6f\x12\x5c\xdf\x58\x0a\xb3\xd0\xba\xbe\x99\x4d\xf7\xd4\x0e\xe6\xac\x22\x1f\xe4\xc4\xe3\x5d\xa8\x59\x1a\x09\x49\xca\x25\x81\x3f\x3f\x89\x7f\x49\xb6\x6b\xd7\xae\xb9\x46\xc8\x21\x52\xa4\x1d\x01\x68\x77\x46\xc1\xd2\x99\x47\xed\xe7\x8e\xef\x45\x2f\xb5\xe2\xe0\x54\x90\x9d\x45\x54\x34\xec\xa1\xb4\x09\xae\x46\x19\xd0\x94\x76\xf1\x07\x31\x09\x22\x45\xd1\x9a\xb0\x35\xfb\xc4\x69\x4c\xcd\x8c\xe2\x8a\x25\x14\xa7\x92\xe8\x33\x63\xc3\xe1\x67\x18\xe9\x6c\xfe\xc8\xac\x4a\x32\xd3\x4c\x93\x00\xf1\xa3\x4e\x7c\xef\xfa\x6a\xff\x9d\xf7\x57\x06\xef\x75\x5b\x93\x07\x3a\x3d\xe5\x99\xee\x8a\x4b\x4f\x79\xce\x7d\x5a\xb2\x32\xa7\xbb\x37\x26\x00\xf2\xa9\x21\x00\x18\x8d\x46\xde\x88\xf9\x80\x74\xae\xf8\x59\xf9\xf9\xa2\x7e\xd7\x88\xc1\x26\x5b\x9d\xd1\x45\x1d\xd9\x6c\xed\x6b\x96\x32\xa9\x7a\x1f\xdf\x11\x17\x7f\xe6\x23\x63\x55\xdb\xb6\xe9\x14\xa7\x2e\x98\xe1\x99\x24\x93\x4f\xda\x2a\x99\xaa\x80\xb6\xed\xdd\x7c\x69\x7d\xbf\x89\x2b\x7f\x5f\x30\x59\x95\x57\x95\xbe\xf6\x2d\x57\x1f\x7d\x5f\xc5\x93\x3e\x0f\x80\xf2\x6e\xe9\x00\xa2\x53\x3b\xad\x53\x1b\xbb\xad\x9f\xed\x8c\x82\xb3\x81\x46\x87\xeb\x5e\x51\xf7\x6b\x2d\x5a\xd2\xa7\xba\x1f\x50\x4a\x43\x97\x56\x64\xa4\xbf\x74\x16\x69\x0a\x52\x88\x2b\x41\xa1\xcf\x51\x41\x6b\x12\x9c\x59\xef\x36\x2f\x9c\xdc\x6d\xdd\xdc\x9a\x1f\x6f\x0d\xa2\x84\xef\x52\x6e\xde\xcd\x55\x66\x75\xbf\x43\x55\xbd\xf6\xa1\xad\x23\x8b\x37\xb0\x92\x46\xb8\x2e\xf0\x41\x33\xf4\x69\x9c\xb6\x46\xc8\x1b\x9d\x2f\xda\xb7\x8d\xa6\x13\x00\x38\x79\xf2\x24\x80\x12\xda\x34\x15\x36\x47\xa7\x5a\xeb\x48\x69\x44\x27\x1f\xb7\x4e\x3d\xf1\xb8\xf5\xa9\xc5\x61\x78\xae\xa1\xd3\x35\xfa\x52\x28\x38\x5b\x69\x19\x55\x97\x76\xb9\x85\xa9\xd4\xda\x90\x90\xca\xaf\x73\x10\x43\xcd\x8c\x45\xb4\x9d\xc2\xfc\x29\x3a\x9f\x42\x77\x02\xa9\xc0\xa5\x49\x2d\x33\x99\x41\x53\x93\x86\xa5\x90\xec\xb5\xe3\xad\x1b\x2b\xfd\xb7\x6f\xac\x0e\xae\xec\xb6\xe3\xfb\x49\x30\x3d\x7b\x08\x53\x4b\xcb\x20\x3b\x7f\x28\x9f\x1a\x42\xb6\xe4\xd9\xac\x20\x32\x87\x7d\x5d\xbc\x78\x31\xf9\xdc\xe7\x3e\x67\xb3\x92\xd0\xf8\xc0\xf2\x07\x14\xd3\x4a\xf1\x92\x15\xc1\x75\xed\x4a\x23\xc9\xe7\x4a\x63\x8b\x4f\x2a\xe8\x6c\x79\x24\x28\xf3\x73\xe5\xeb\xfb\x3e\x55\x69\x7d\xf9\xfa\xf0\xb0\x95\x23\x0f\x52\x9c\xed\xb9\x2f\x68\x74\x5d\x53\xf9\xa4\x8e\xd8\xb7\x63\xae\xa2\x97\xf2\xf4\x05\xbb\xb6\xbc\xa4\xfb\xc2\x00\x01\xd5\xa0\xc6\xc6\xa7\x2a\xf8\xf0\xa4\xb4\xb6\x36\xcc\xcb\xc2\xa6\xd7\x7d\xbf\xab\xad\x9f\xb1\xe5\x57\xa8\x87\xbf\xf5\x5b\xbf\x15\x08\x56\x07\x3a\xb5\x12\x42\x23\x6a\x8d\x55\xe7\xa9\xed\xf6\x8b\x4b\x83\xc6\x27\x1a\x99\xc5\x5d\x72\xe6\x30\x61\xaa\x8f\x55\x61\x4a\x86\xbb\x0c\xa4\xe0\x86\xfa\xbd\x18\x84\x32\x1d\x16\xd3\x3e\xc3\x58\xf0\xf3\x7c\x4d\x5f\x90\x09\x10\x68\xd5\xe9\x8c\x1a\x4f\xaf\xef\x35\x3f\x7a\x6c\xbf\xb9\x8e\xe9\x4a\x28\x3a\x55\x54\x28\x03\xe9\xfd\xc9\xb5\x54\x8f\x79\x3c\x7d\x56\x07\x10\xd7\x19\x10\xd1\x78\x9b\x4c\x25\x79\xaa\xd0\x10\x45\x42\x9c\x19\x4f\x1b\x08\x71\x12\xbf\xaa\xca\x5e\x12\x12\x72\xc1\x72\xd9\x70\xf7\xee\xdd\xe4\xe5\x97\x5f\x0e\x8c\x6f\x0b\x90\xcf\x6b\xe6\x27\x7b\x66\xd7\xd1\xfc\xb0\xb1\x7c\xe6\x51\xeb\xe3\xab\xfb\xe1\x8b\xcd\x49\x3a\xa7\x09\x4c\xa7\x1d\xe9\xb6\x23\xe9\x7d\x7a\x2d\x4e\x1f\x3a\xa6\x14\x0b\x48\x3c\x9f\xdb\x99\x5a\x58\x44\x5a\x9d\xd2\x14\xf9\xaa\x52\x23\xe2\x10\x26\x8d\x29\x3a\xbb\xe8\xec\xdf\x7e\x34\xd9\xb9\xb5\x32\x78\xfb\xda\x5a\xff\xed\x9d\xb9\xf8\x83\x49\x50\x3e\x30\x11\x64\x1b\xff\x6c\x6a\x28\x3f\x27\x03\x98\xfa\xb4\x00\x29\x68\xf9\xc2\x17\xbe\x10\xfc\xf3\x3f\xff\xb3\x6b\xb4\x46\xbf\xab\xf4\x67\x82\x4f\xe3\xe0\xca\xcc\x76\xed\xaa\x83\xb6\xfa\x44\xd3\xd8\x3a\x0b\x2e\xb7\x4b\x21\xd3\xf7\x71\x8d\x72\x6c\xef\x41\xef\xb9\x0c\xb6\xe7\x75\x3a\x08\x49\xa6\xaa\xd1\x98\x0b\x24\x80\x3d\xb3\x7d\x03\xa7\x32\x72\xc4\xfb\x76\xaa\xe6\xb7\x8a\xde\x46\xe3\xab\xcc\xa5\x60\x03\x8a\x52\x7a\xe9\x9b\xd2\xef\x29\x05\xd7\x37\xa4\xf9\xdb\xde\xa1\xaa\x73\xf2\xed\x98\xa4\x36\x6c\xd3\x01\x2e\x9e\x36\xc0\x5b\xf5\x4c\xca\xaf\xa4\x53\xfe\xf4\x4f\xff\xb4\xd0\xe7\x70\xff\x16\x00\x51\xa0\xd1\x3e\xde\x8d\xd6\x56\xf7\x9b\x9f\x6c\x4d\x82\x0d\x95\x59\xdc\x01\x94\xe6\xdf\x4b\xd3\xf2\x1a\x45\x52\x46\xa3\xa9\x93\xa3\x09\xaa\x0c\x84\x0c\x7d\x6e\x71\x37\xf7\x82\xef\x40\x98\xa8\xd5\xe5\x7e\xf8\xec\xfa\x5e\x74\xb6\x91\xe4\x7e\x2e\x66\x65\x54\x5e\x66\xf6\x2d\xb3\x6a\xd5\x6f\x9b\x5e\xf1\xe1\xcd\xf9\xf0\x6b\x9f\xc1\x8e\xb3\x7e\xdb\x00\x89\x2d\x31\x45\xdc\x1c\xa9\xbb\x1a\x13\xe7\xe1\x42\x58\x92\xe2\xab\x6a\xf8\x79\x3e\x66\x1e\x93\x38\x2a\x15\x2a\x2b\x80\x76\x90\xa0\xfd\xf4\xc3\xf6\xd9\xe3\x7b\xd1\xa7\xe7\xe2\xe0\x4c\x00\x15\x69\x56\x53\x0b\x68\x1a\x45\xc0\xa2\x59\xf5\xd3\xe0\xa9\xa7\x60\x27\x9d\x22\x2a\x82\xa0\xd2\xbe\x2e\x24\x1f\x9d\x99\x54\x14\x43\xdc\xe6\x39\x78\x7c\x01\x60\xe9\x69\x94\x9e\x4a\x35\x6c\xe8\xde\x9d\xe5\xe1\x95\xcb\xeb\xfd\x37\x1f\xce\xc7\x1f\xc4\x0d\x4d\xb7\xf1\x2f\xf8\xb5\x20\xdb\xa7\x85\xae\x1e\xe2\xcb\x9e\xcd\xf4\xd0\x3f\xfe\xe3\x3f\x56\x01\x0d\x9f\x50\xa5\xf4\x7c\xf9\xd8\x46\xbf\x52\x3d\xaa\x02\x21\x9c\xde\x16\x6c\x72\x4b\x6d\x43\x92\xcd\x27\xd8\xda\xa0\xed\x9e\xa6\xa9\x02\x10\xb4\xb3\xb4\x75\xa6\x5c\x06\xa9\xdc\x78\x7e\x9c\xde\xd7\x0a\x50\xd5\xe1\x1b\x1a\x1f\xbd\xe5\xd3\xf9\xb9\x64\x70\xe9\x26\x29\x8d\x0d\xf8\x4a\xf2\x49\xf9\x71\xb9\x68\x47\x2b\xd1\xfa\x5c\xdb\xea\x1b\xe7\x2b\xc9\x5b\x25\x6b\xd5\xf5\xac\x20\xd5\x47\xa6\xca\x3a\x40\x8e\x78\x29\x9c\xfe\x9c\xfb\xb7\x68\x44\x0d\xad\xda\x27\x1e\xb7\xce\xce\x8f\x1a\xcf\xa6\x8b\x32\x50\xf2\x55\x31\x3a\xd9\x0c\x3c\x0b\xfe\x29\x4c\x39\x4f\xa7\xee\x01\xde\x4b\x50\xeb\x4d\xae\x99\x79\x5e\xd4\x6a\x9f\xf1\xa7\xe7\xcd\x05\x1a\xed\xce\xb8\x71\x6a\xb5\xd7\xfc\xf0\xe2\x20\x5c\xc0\xd4\xcf\x25\xcc\x7c\x77\x00\xe4\x4e\xba\x81\xd6\x1a\x5f\xfc\xe2\x17\x83\x4e\xa7\xe3\xaa\xbf\x52\x1d\x93\xfa\x77\x1e\xb8\x6e\xf1\xad\x03\xb6\x81\x92\x44\xc7\xd3\x04\xfc\xa1\xaf\x82\xe6\x99\x56\x35\x4c\x9f\x51\xa0\x54\x61\x25\x85\x68\x93\x27\x2f\x40\x6a\x1a\xa3\x16\x17\xad\x75\xc1\x21\xf7\xc8\x20\x5c\x3a\xbd\xd3\x3e\xbf\x34\x08\x9f\x6b\x24\x6a\x21\x4d\x40\x81\x8a\x62\x60\x44\x93\xff\xa7\x56\x8d\x14\xa0\x98\xa5\x6b\x28\x54\x44\x03\x76\x34\xa5\x57\xb2\xf9\x11\xa0\xce\xc0\x6c\x7a\x49\x4d\xe5\xa0\x0d\x45\xb1\xda\x6e\xf2\xcc\x4d\x8e\x59\xfc\x24\xd0\xa3\xcd\xc5\xd1\x7b\x6f\x6f\xf4\x7e\xb8\xb9\x30\x32\x27\x3d\xef\x6a\xad\xbb\x66\x8a\x28\x9b\x1a\x1a\x20\xb3\xb4\x20\xf3\x6b\xa1\x27\x92\x9a\x43\x13\x27\x93\x09\x17\xbd\xaa\x21\xd8\x82\xad\xa2\xfb\x56\x68\x5f\x45\x67\xa3\x77\x35\x34\x5f\xe5\x5a\x45\x2f\x75\xa0\xbe\x79\xb9\xf2\xb0\x01\x23\x4e\x6b\xb3\x86\x48\x72\xfa\x0c\x3a\x5c\xf1\x86\x8f\x4b\x0f\xd8\x3a\x52\x1b\x80\xb4\x0d\x62\xc4\x41\x0b\x93\xaf\xae\x72\x94\xe4\x92\xe4\xa3\x79\x56\x01\xab\xaa\xf7\x75\x05\x49\x7e\x1b\x20\xac\x1a\x0c\x72\xf9\xf8\x7b\x48\xe5\x6c\x93\xbb\xaa\xcc\x7c\x75\xb7\xd4\x8f\x54\x95\x9b\xa1\xb1\xbd\x6f\x7e\x6d\x3a\xef\xec\xda\xbc\x5f\xbe\x92\x48\x01\xe1\xdc\x38\x58\x38\xd6\x8d\x3e\x1c\x4d\xd4\x49\x05\x84\x66\x8a\x26\x9f\xd1\xd1\x65\xfd\x0d\x4c\xf5\x30\xdf\xfc\x13\x48\x61\x8b\x19\xb0\x16\xac\xec\x20\xfd\x82\xcb\x44\x4f\x42\x71\xa5\x11\x00\xa8\xa0\x39\x51\x6b\xcb\x83\xf0\xe9\xe3\xdd\xe8\x24\xca\x4e\xba\x85\x72\x54\x4a\xe1\x99\x67\x9e\x41\xaf\xd7\x93\xca\x5c\x8a\x03\xca\xe5\xed\xdb\x07\x83\xdc\x57\xf1\x76\xd5\x09\x49\x8e\xd2\x73\x5b\x25\x74\x29\x62\x7e\x5f\xa7\xc1\xb8\x78\xba\x1a\xb3\x8d\x26\x01\x80\x6f\x7e\xf3\x9b\x25\xde\x8a\x1c\x9e\x45\xa6\x89\xda\x00\xa2\x67\x37\x3b\xcf\xae\xed\x37\x3f\x1d\x4d\x82\x75\xc0\x9c\xf9\x00\x86\x90\xd9\x7e\x29\x82\x50\xb9\xd3\x6c\x16\xa4\xf3\x28\x4a\xf3\x9e\x2c\x2e\x7f\xa6\xcb\x94\xe6\xff\x29\x46\xa9\xaa\xf0\xc5\x26\x31\x51\x48\x1e\xcd\xc5\xf7\xde\x3a\xb1\xff\xea\xed\x23\x83\x9b\x19\x68\xe1\xfe\x2c\xb9\xa5\x25\x3b\x77\x48\x02\x2d\x00\xd2\xe9\xa1\xcb\x97\x2f\x03\xf6\x51\x1d\x55\x3c\xb6\x51\x11\x4f\xe7\x02\x03\x5c\xb9\xf2\xfc\x4c\xbc\x4b\x1e\x57\x27\x27\xc9\x24\x8d\x3e\xea\x04\x17\x10\x97\x68\x69\x59\xd9\x40\x0a\xa7\xe3\x69\x29\x2d\x50\x2e\x37\xda\x31\xb9\xda\xa9\x0d\x54\xb9\xca\x57\x92\xe9\x30\x82\x24\x2f\x97\x85\xca\x53\xa5\x47\xaa\x3a\x65\x89\x77\x55\x9e\xb6\x7c\x0e\xab\x0c\xaa\xf2\xf4\x1d\x70\xda\xe2\x6c\x1d\x4c\x15\x38\xf5\xc9\xdb\x05\xee\x24\x9e\xbe\xe5\x66\xd3\x1b\x2e\x39\xe8\x5f\x08\x20\x0c\x13\xd5\x3e\xb6\x17\xad\x2d\x0f\xc2\x67\xc3\x44\x2d\x1b\xfd\x5b\x98\xe1\x31\x56\x14\xee\xbf\x58\xa1\x87\xd9\x0c\x7f\x6e\x81\x07\x50\x04\x22\xaa\x18\x57\xea\x63\x74\x31\x2b\x05\x20\xd0\xaa\xdd\x19\x05\x1b\xcb\xfd\x90\x02\x17\x03\xca\xaa\xf4\xd5\x41\xea\xb7\xab\x5d\xd9\x70\x80\x8d\xb7\x8f\x2e\x76\x06\xd7\x48\x50\xca\xb4\x0e\xbf\x83\x06\x6f\x5e\x7f\xf0\x07\x7f\x20\x29\x53\x80\x78\x8e\x2b\xa5\x22\xa5\x11\x6d\xec\x46\x6b\xa7\x77\xda\x3f\x37\x3f\x0c\x9f\x0b\x34\xda\xdc\x02\x62\xab\x92\x29\x48\x99\xde\x6b\xf2\x40\x98\x8e\x2c\xd3\x59\x82\xc4\x47\xa2\xa0\x7e\x36\x55\xbc\xb5\x06\x12\xa5\x93\xdd\x76\xbc\x79\x79\xbd\xf7\xfd\xab\x6b\xbd\x77\x13\x35\xb5\xb2\x10\xb0\xd2\x15\x56\x0f\xe5\x9e\xea\xc6\x09\x37\x03\x30\x00\x80\x7f\xff\xf7\x7f\x77\xbd\x4e\x9d\x4e\xc3\x36\x32\x96\x68\x0c\x9d\xab\x83\xb4\x35\x5a\x1b\x78\xe2\x40\x40\x92\x57\x52\xe6\x55\xa0\x4d\xca\xcb\x27\xcc\xda\xe1\xf9\x96\xb9\xad\xc3\x72\x95\xa9\xed\xbb\xcd\xa2\x1c\x0f\x1a\x6c\xa0\xd8\x27\x5f\xdf\x67\x75\xea\x2f\x97\x69\xd6\x30\x6b\xda\x3a\x83\xc3\xba\xf4\x2e\x99\xaa\xbe\xaf\xef\x00\xe3\xa0\xa1\x04\x60\xa2\x28\x2a\xf0\x67\xbe\x1e\x05\xe0\x12\x24\x68\x2f\x0d\x1a\xab\xad\x58\x9d\x02\x50\x52\xde\x05\x5f\x16\xa6\x78\x55\x89\xa8\xd8\x07\xe4\x56\x1b\x92\x56\x72\xf8\xe5\xfd\x86\xd2\x2c\x2b\x41\xa6\x40\x23\x6a\xc5\xc1\xfa\xe2\xa0\xf1\x64\x7b\x14\x74\xc0\xc0\x0b\xdc\xe5\xec\x63\x31\x3b\xa8\x1e\x73\xf1\xa6\x7c\x5d\x7d\x42\x65\xbc\xa4\xb4\x5c\xe8\xc9\xc6\x8c\x8e\xe8\x28\xaf\x2a\x25\x6f\x6b\x4c\xd2\x68\x5b\xba\xce\xf9\x92\x69\xa2\x42\x05\xcd\xff\x34\xa2\x30\x51\x9d\xa7\xb7\xda\xcf\x2d\xf7\xc2\x0b\x61\x82\x05\x6a\xd9\xc8\xd7\xe7\xb8\x1c\xb1\x14\x9d\xd2\x29\x3b\xf0\x16\xd2\x50\x9e\x34\x2e\x5f\x1c\x34\xcd\xa8\x50\xe9\x4b\xfe\x33\x6a\x3a\xd7\x49\x10\xba\x46\x71\xfe\x53\x13\x01\x74\xa0\x93\xcc\x19\xf7\xcd\x77\xd6\x7b\x6f\x4f\x54\xbe\x7d\x7f\x37\xdb\x9b\xc5\x1c\x9c\x38\x42\xba\xf4\x99\x02\x17\x00\x85\x03\x13\x13\x00\xf8\xde\xf7\xbe\x97\xe5\xa3\xf3\x38\x4b\xa0\x75\xc0\xc7\x8a\xc6\xe3\x78\x3d\x74\x9a\x0c\x19\x5d\x95\x45\xd0\xf6\x5c\xca\x43\xca\xd3\xf6\x4e\xb6\x7c\x5c\x60\x87\xa7\xf1\x1d\xe5\x56\xb5\x4d\x9f\x11\x8e\x4d\x1e\x9e\x86\xd3\x48\x32\x54\xc9\x64\x6b\xb7\x75\x94\xa2\xa4\x53\x5c\x20\xcb\xb7\x73\xad\x93\xff\x41\xc3\xac\x3c\x7c\xc0\x14\xd5\x99\x87\x21\x8b\xeb\x3b\xf9\x5a\x3c\x78\xdd\xf7\x05\xe6\x55\xe0\xcb\xda\x77\xd0\xed\x18\xc8\x56\x14\x05\x8b\x8b\xf1\x71\x09\xb4\x8a\xe6\x47\x8d\xd5\x70\xa2\x96\x29\x8f\x5c\xff\x66\x0a\x55\x2b\x2d\x5b\x58\xc4\xe5\xa5\x64\x1a\xc9\xfc\xa7\xa6\x53\x46\x65\xc0\x23\x2c\xb7\x90\x78\x1a\xca\x94\x3c\x68\x24\x6a\xa1\x33\x6a\xac\xaf\x0c\xc2\x25\x90\x3e\x2e\x7b\x37\x23\x83\x79\x5f\xce\xae\xea\x1b\xd8\xda\x3d\x2d\x47\x1a\x57\x15\x24\xfa\x83\xd6\x03\xeb\x3e\x2e\xbc\x11\x54\x8d\xc6\xa8\x62\xf4\x35\xf7\x49\x23\x26\xae\x00\x6d\x4a\xd5\xd6\x50\xcd\xe9\x9f\xb4\x90\x43\x20\x05\x2d\x27\x1e\xb7\x36\x9e\x78\xdc\xfe\xd9\x76\x1c\x9c\x55\xd9\xbb\x97\xac\x25\x04\x1c\xf0\xb8\xf4\x72\xea\xdf\xc2\xe7\x38\xf3\xd3\x97\xc1\x4c\x8e\x84\xdf\xd4\x01\x2b\xf7\xe6\x62\xf5\x5f\xb8\xcb\x96\x55\x4f\x97\x38\x67\x4f\xa8\x5c\xd9\x75\xa2\x34\xfa\x61\xd2\xfd\x60\x69\x74\xf5\xf2\x7a\xef\xcd\xfd\x68\xf2\x10\x2a\xdf\xa3\x65\x90\xf9\xb5\x18\x9f\x96\x81\xd9\x5c\x0e\x99\xb5\x85\x1f\x98\x08\xa4\x7b\xb5\x90\x1d\x71\x69\xe0\x60\xd5\x56\x49\x79\xdd\xb0\xd5\x2f\x89\x8e\xf2\xb0\xc5\xdb\xd2\xd8\x78\x57\xe5\xc3\xf3\x94\x3a\x7a\xdf\x77\x80\x40\x23\xc9\xc9\x01\x9f\x8f\xdc\x9c\xb7\x4d\x3e\xdb\x60\x62\xd6\x32\xe5\x79\x72\xf9\x29\x6f\x1b\xa8\xa9\xd2\x39\x3e\xd7\xb6\xf4\x55\xa0\xa6\x2e\x3f\x57\x3e\xbe\x80\xc1\x17\x54\xcc\x12\x24\xd0\xe6\xca\xaf\x4a\x6e\x5e\x17\xab\xf2\x74\x3d\xaf\xfb\xde\xbe\x65\x5a\xfa\xa6\x51\x14\x05\xa3\xd1\x28\x31\x83\x58\xd3\x91\x93\xe3\x52\xd2\xe5\xd0\x3a\x9d\x2a\x6a\xc7\x8d\xa3\x61\xa2\x96\x28\x53\x7a\xb8\x2d\xbd\x07\x50\xe8\x14\x34\xd3\xfd\x66\x10\x69\x9d\xce\x17\x74\xb5\xd9\x67\x2b\x07\x37\x96\x50\xec\x87\x14\x02\xad\xa3\xf6\x24\x58\x5e\x18\x36\x96\x01\x6c\x66\xef\x1f\x50\xf7\x08\xe3\x93\xc8\xe4\xf1\x29\xd7\xaa\x7a\x61\xbb\xb7\xa5\x73\x01\xa1\xaa\x3a\x6a\x4d\x17\xd2\x1b\x81\xd0\x67\xe4\x2c\x85\x59\x46\xdc\x55\x15\x5d\x54\x4c\x2f\xbf\xfc\x72\xbe\x82\x28\xdb\x80\x87\x83\x96\x50\xe9\x74\xb3\xb9\x27\xb7\xdb\xcf\xae\xf4\xc3\x97\xd2\x3d\x5b\x8a\xeb\xf5\x69\x90\x00\x07\x0f\x72\x9c\xf2\xa2\xa7\x26\x43\x2e\x83\xbd\x02\x17\x1d\xc4\xa6\x60\xa9\x78\x3d\x6a\xe8\xde\x83\x85\xd1\x8d\xab\xc7\x7a\xaf\x3f\x58\x18\x7f\x90\x28\xdd\x85\x4e\x57\x0f\x19\xd0\x92\x5d\x1b\xd0\x92\x4f\x0f\x19\x0b\x8b\xa9\xf4\x40\xea\xd7\x02\x80\xef\x88\xeb\x53\xe9\x6c\x88\x59\x02\xac\x36\x3a\x09\x0c\xf9\x28\x34\xdb\xa8\xac\x2e\x3f\xde\x41\xd9\x82\x6d\x54\xca\x9f\xb9\xea\x76\xdd\xe0\x2b\x0f\x2d\x8b\xaa\x8e\x98\x86\x2a\x59\x7d\xd3\x48\x60\xc6\x36\x10\xaa\x63\x35\xe0\xbc\x7d\xd3\xcd\x02\x20\x5c\x40\xa7\xee\xa0\xcd\x84\xba\xef\x5a\x27\x4d\xd5\xb7\xa9\xe2\x53\xb7\x83\x93\xbe\x43\xdd\xfa\xe6\x1b\xef\x5d\x66\xd4\xe2\x42\xfc\x1c\x83\x40\x23\x6c\xc5\x41\xbb\x3d\x0e\x96\x1b\x5a\x59\xf7\xef\xa2\x0a\xda\x1c\x9e\x98\xf3\xe6\x34\xd4\x65\xc0\xd6\x09\xb0\x24\x46\x46\x63\x51\xa9\x74\x61\xcc\xf9\xab\x30\x8c\xd5\xd2\xdc\x38\xa0\x16\x97\x80\xf4\x7f\x1e\xfe\x90\xd6\x60\x03\xc1\x3e\xdf\xc6\xd5\xbe\x39\xbd\x94\xce\xfb\xdb\xda\x2c\x17\x26\x24\x84\x86\xa6\x01\x8b\x0f\x18\xad\x34\xba\xe3\xe9\x5d\xf7\x52\x1e\xa5\x02\x35\xdb\xfa\x9b\x38\xe9\x2c\x22\x00\x51\x73\xa2\x3a\xc7\xbb\xd1\xc9\x93\xbb\xd1\x7f\x69\xc7\xc1\x19\xa0\x0c\x14\xa8\x45\x8d\x2f\x41\x36\x2b\x8c\xec\x3e\x25\x64\xb5\x0f\x9d\x33\x62\x66\xba\xd2\x9c\x66\x16\xab\x2c\x8c\xa5\xe5\xf8\x4a\x67\x73\xa1\x5c\x7e\x68\xc4\x41\x32\x7a\x34\x3f\xbe\x7b\xfd\xe8\xe0\xed\xdb\x47\x86\xd7\xe3\x86\xde\x25\x87\x25\x76\xc9\x75\xbe\x8d\x7f\xb6\xec\x99\x2e\x79\x06\x07\x2d\x59\x90\x46\x61\xd2\xaf\x54\x31\x4d\xbc\x54\x41\x79\x1a\x17\xa0\xad\xba\x96\xac\x18\x36\x19\x6d\xe0\x9c\xcb\xc0\x1b\xaf\xd4\x66\xaa\xde\xdb\xd6\x91\xd8\x64\x72\xbd\x83\xeb\x7d\x5c\x69\x66\xe1\x0d\xb8\xcb\xa7\xea\xfd\x6c\xc1\x47\x41\x49\x3a\xc7\xf6\xbc\x2e\xbd\xeb\xda\xaa\x6f\x1c\xbc\x5d\x8a\x9d\x5f\xfb\x58\xcd\x24\x7a\x1f\x5a\xca\xd7\xa6\xb7\x39\x4d\x55\x70\xf1\x98\x45\xbf\xdb\x9e\xcd\x04\x4e\x0c\xfd\xdc\xdc\x5c\xc0\xa6\x8a\x02\x76\x1d\x20\xed\xdc\xf2\xd7\x76\xdc\x00\x00\x20\x00\x49\x44\x41\x54\x43\xa5\x11\x36\x27\xaa\xdd\x4c\xd4\x42\xba\x00\x2c\x40\xd3\xbf\x7f\x17\x71\x4a\xa1\xfd\x80\x65\x34\xa9\x69\x8f\xa0\xa6\x31\xb9\x2d\xbe\xd0\xa9\x14\xdd\x09\x38\xa6\xb1\xb9\x09\xe4\x2e\x05\xdc\xef\x25\xa5\x0d\xc2\x44\x75\xa2\x38\xe8\x80\x0e\xd0\xa7\x03\x78\xd0\x69\x23\xb2\x34\xbc\x4e\x9d\xe6\xed\xbe\xaa\x3e\x72\xfe\x2e\xde\x26\xde\xb7\x0d\x97\xea\x89\x4f\xc5\xa5\x0a\x9b\x0a\xe7\x52\xa2\x36\x41\x0d\x8d\x4b\x41\x48\x7c\xad\x8d\x9e\x6d\x2c\x44\xff\x42\xad\x75\x14\x24\x68\x2f\x0e\xc2\xe5\xd3\x8f\x5a\xcf\x2f\x0f\xc2\x4f\x28\xad\xda\x92\x61\xce\xac\x2a\x9a\xce\x71\x92\x67\x10\x0e\xca\xa2\x69\xa5\x1b\x3a\x2f\x04\x8b\xe5\x46\x67\x84\x36\xeb\x22\xf3\x3a\x07\x90\x6f\x6c\xc4\x93\x24\x0a\xc9\x6e\x7b\xb2\x79\x73\x65\xf0\xce\xad\x95\xc1\xd5\x7e\x73\xb2\x43\x96\x3b\xf7\xb2\xdf\xfc\xc0\x44\xad\x75\xac\x94\x8a\xe9\xa1\x89\x40\x6a\x6d\xb9\x78\xf1\x62\x42\xc0\x98\x2f\xd0\xa4\x7f\xb9\x58\x2c\x4d\x22\xd0\x49\x15\x58\xca\xcb\x96\xc6\xd5\x00\x38\x1d\x97\xd7\xd6\x30\x6d\x0a\x95\xa6\x71\xc9\x63\x0b\x2e\xb9\x7d\xde\x95\xf3\xb2\xf1\x76\xf1\xe0\xef\x63\xeb\x2c\x6d\xed\xd5\x25\xb7\x24\x9f\xad\x43\x92\x78\xb8\x3a\x2f\x9e\x8f\x0d\x8c\x49\x69\x79\xb0\x3d\xe7\xba\xae\x4e\x5a\x13\xaa\x3a\x63\x5f\x40\x67\x03\xc2\xbe\x72\xf8\xea\x62\x5f\x39\x24\x7a\xdb\x3b\xb9\x74\x46\xd5\x3b\xf0\x7a\x21\xf5\x3d\x25\x19\xfa\xfd\x7e\xc2\xcf\x25\x62\xcb\x96\x03\xc0\xec\x71\x52\x18\xe0\x66\x09\xd2\xff\xb8\x6f\xac\x04\x36\xb2\x93\x9b\x73\xa8\x32\xed\x21\x50\xa4\x34\x27\xe0\x12\x1e\xd4\x3a\xce\xa8\x73\x8b\xbd\x49\x6a\xac\x30\x42\xbf\x13\x04\xa9\xcf\x66\x1b\xac\x6d\x1a\xab\x8b\x79\x67\x87\xe5\x45\xfa\x0e\x3e\x60\xd7\x06\x7a\x7d\xea\x4c\xd5\x60\xaf\x2a\x5d\x2e\x5f\xc0\x08\x5c\xca\xb7\xaa\x41\xf3\xc0\x79\x27\x96\x78\x9e\x07\x97\xa5\xd4\x00\x8f\x1f\x3f\x1e\x7c\xfb\xdb\xdf\x36\xfe\x2c\x85\x82\x24\xfb\xb5\x84\x0a\x2a\x6c\xc5\x41\x67\xbd\x1b\x9d\xda\xd8\x6b\x5d\x68\xc5\xc1\xa9\xbc\x32\x12\x28\xcb\x7d\xc6\xd3\x7d\x50\x64\x01\x45\xf0\x91\x9f\x57\x51\x86\x35\x52\x05\xcd\x9f\xd9\x4c\x2d\x42\x9e\x1a\xba\xb4\x23\xa2\xc6\x14\x6c\xf5\x9b\x93\x9d\x3b\x47\x86\xef\xdd\x5c\x19\x5c\xd9\x69\xc7\x0f\x30\xb5\xae\xe4\xa0\x05\xa9\x03\xee\x00\xa9\xc5\xa5\xb0\xb9\x9c\xd9\xca\xdf\x54\xf4\x1f\xff\xf8\xc7\x10\xfc\x5a\xa4\x4e\xcf\x36\x4a\xb7\x75\xa4\x55\xa3\xf3\x2a\xa0\xe4\x0a\x2e\x45\x9d\xc0\x5e\xdf\x6d\xc1\x67\x04\x20\xe5\x6b\x03\x32\xae\x4e\xbc\x4a\x41\x73\x70\x28\x29\x10\x1b\x50\xb4\xc9\xc6\xd3\x70\xf9\xea\x96\x8f\x2f\xc8\xaa\xe2\x25\x05\x5b\xe7\xe8\xca\xd7\x95\x5e\x8a\xb7\x95\x7f\x1d\x0b\x80\x0b\x18\xf2\x7c\x5c\xd7\x75\x82\x8f\x7c\xd2\xb7\xf5\x01\xc7\x55\xc0\x94\xdf\x27\xe4\x0f\xec\xda\x27\x54\x81\x37\x51\x9e\x23\x47\x8e\x04\xcc\x42\x5c\xf0\x75\xcc\xac\x10\xe9\x40\x57\xe9\x20\x51\x08\x12\xa5\x4b\x72\x49\x83\x45\x9b\x76\xe7\xce\xb6\xae\x19\x22\xc9\x1d\x41\x06\x2f\xec\x3a\x3f\x77\x6e\x9a\x99\x02\x02\x05\x15\x36\x12\xd5\x22\x47\xd9\x18\x60\x56\xfa\x2e\x82\x9f\x0b\x0f\xb6\x81\x43\x15\xc8\xf6\xf9\xae\x55\x75\xcc\x37\x5d\x41\x46\x09\xdd\x02\x76\x25\x51\x95\x91\x4d\x49\x43\x88\x77\xbd\x34\x55\xe4\x25\x9e\x4f\x3c\xf1\x04\x80\x62\xc5\x44\xf1\xc3\xa5\x4b\xde\x34\xda\x4b\xc3\x70\xf5\x89\xc7\xd1\xf3\x4b\x83\xf0\x85\x40\xab\x08\x30\xc6\x90\x6c\xd2\x52\x6b\x28\xe2\x09\x5e\x70\xb6\xb2\x4c\xf5\x14\x7e\x45\x73\x8b\x2d\xa6\x68\x36\x94\x2c\x3f\xbc\x71\x4c\x2b\xb7\x2a\x1e\x9f\xae\xa7\x17\xa3\x86\x1e\x6c\x2e\x8c\x6f\xdd\x5a\x19\x5c\xd9\x9a\x1f\x7f\xa0\x83\xe9\x5e\x2d\x5a\x6b\x73\xca\xb3\xf9\x33\x3e\x2d\xd4\xb7\x25\x5f\x45\x64\x1a\xff\xbf\xfd\xdb\xbf\x25\x83\xc1\x40\xaa\x9c\x92\x42\xe2\x71\x36\xe5\x45\xc1\x83\xad\x1e\x48\x69\xaa\xf2\xf6\xe5\x31\x0b\x6f\x58\xe2\xeb\xe6\x29\x85\xaa\x11\x07\x2d\x2b\x57\xb9\xfa\xc8\x5a\xd5\x91\xb8\xe2\x5c\x79\x56\xbd\xb7\x0f\x58\xf5\x51\x92\x26\x70\x25\x2b\x7d\x4b\x1e\x7c\xc1\x70\x65\x07\x69\x89\xf7\xb1\xd0\x50\x45\x4c\x41\xa1\x0d\x2c\xce\x92\xbf\x6b\xc4\x5c\x05\xb6\xa5\xe0\x2a\x57\x5e\x56\xfc\x3d\xa5\x3c\x79\x98\x05\xb4\x89\xf2\x3c\x7e\xfc\x38\xa1\xbb\xe5\x4a\x79\x15\x80\x8c\xd2\x48\x80\x84\x6b\x78\xba\x6a\xb4\xf8\x44\x95\x2c\x1f\x9a\xa4\x2a\xa4\xe1\x6e\x07\x9a\xe9\x75\x73\x40\x23\x24\x38\x44\x56\x11\x01\x25\xab\xbd\x99\xd6\x52\x1a\x81\x9a\xee\xdd\x02\xa0\xb0\x82\x28\x2f\x07\xc7\xaa\xa2\xaa\x01\x55\x5d\xa0\x51\xca\x5b\xc8\xb7\xaa\xce\x49\x32\x71\xbd\x17\xd8\x08\x6d\x99\xd2\xdf\xba\x0d\xdf\x85\xba\x5c\x23\x53\x51\xa6\x0b\x17\x2e\xe4\x1f\x84\xec\x90\x9b\x5b\x5b\xb4\xd6\xe9\x01\x5a\x71\xd0\x39\xda\x6d\x9e\x3a\xbe\x17\xbd\x18\xc5\x6a\x83\x57\x93\x14\x78\xa8\xdc\x43\xbc\xf0\x89\xa5\xa9\x1e\x2d\x3b\xd6\xa6\xcf\xb5\x50\xd9\x49\x7e\x0c\xe5\x94\x2a\xad\xa6\xf1\x12\x4f\x66\x17\xca\x1e\x24\x01\x92\x9d\xb9\xf8\xee\xcd\x95\xc1\x95\x7b\x8b\xa3\x9b\xe3\x86\xde\x25\x53\x43\xbd\xcc\x11\xb7\x97\x9d\x3d\x44\xcf\x1f\x8a\x81\xf2\xf9\x43\xec\x15\x6c\xdf\xcb\x15\x27\x7d\x6b\x8e\x98\x6d\xcf\x6c\x7c\x78\x90\xe8\xf8\x73\x17\x9d\xa4\xe0\xab\x14\xbe\x44\x23\x35\x72\xe9\x9a\x77\x5a\x36\xde\xfc\xbe\x4e\x59\xf9\x3c\x73\x7d\x3b\x57\x19\x48\xb2\xda\xf2\xe5\xf4\x75\xc1\x80\x6f\xc7\x5b\xc5\x87\xc6\xd9\x3a\x59\x17\x5f\x9f\x0e\x5b\x8a\xab\xe2\x67\xd3\xa5\xf4\x9b\x9b\xe7\x12\xaf\x2a\x80\xe9\x13\x24\x10\x63\x4b\xeb\xf3\xcd\x6c\x20\x55\xd2\x27\xb6\x50\x07\x78\x8a\x81\x9e\x54\x4f\xfa\x07\x00\x53\xbf\x3d\xe3\x0c\x3b\x51\x40\x12\xe8\xa4\xe8\xbd\xa8\xc4\xc1\x24\x0d\x92\x75\x84\x9f\x10\xcd\x67\x8b\xca\xc7\xce\xd1\x85\x21\x8a\xe8\xfb\x69\x72\x49\x8a\x7c\xd0\xaa\x80\x44\xe9\x24\x56\xda\x4c\xe9\x07\xf9\xbb\x09\x8e\x91\x96\xb3\x8b\xaa\xea\x4a\x01\x28\x90\x50\xd5\x1f\x1c\x46\x3d\xaa\xa4\xb1\xa1\xaa\xaa\x8a\x22\xbd\x10\x6f\x88\xae\xca\xec\xdb\x20\x0b\x69\xe9\x06\x43\xcc\x24\x96\x9f\xfa\x99\x81\x97\x48\x69\x44\x4b\x83\x70\xf5\xe4\x6e\xf4\xfc\xe2\xa0\xf1\x91\x00\x2a\xd4\xc6\x01\xcb\xf0\xc0\x14\x90\x00\x80\xd2\x5a\x74\x88\xcd\x41\xca\xff\x4f\xdc\x9b\x3e\xd9\x71\x5c\xf7\x82\xe7\x64\xd5\xad\x7b\xfb\xf6\xed\x46\xa3\xd1\x6c\x81\x20\x48\x41\x14\x48\xd1\x12\x45\x69\x08\x4a\xd6\xe2\x27\x79\x91\x57\x79\x26\x34\x5e\x43\xe1\x78\xb2\x47\x11\xe2\x97\xf9\x8f\x40\xdb\x11\xf6\x17\x87\x17\xf9\x83\x17\x8d\xc7\x21\xd9\x63\xca\x4f\x4f\xb6\x45\xca\x96\x44\x59\xa2\x28\x10\xa0\x48\x10\x68\x00\xbd\xf7\x5d\xab\x32\xe7\x43\x55\x56\x9d\x3a\xf7\xe4\x52\x0d\xc8\x2f\x23\xba\x6f\x55\xe6\xc9\x93\x27\xb7\x93\xbf\x3c\xb9\x14\xb6\x41\x0b\xe5\xd1\xda\x56\x5e\x87\x35\x7e\xad\xa5\x27\x02\x52\xa8\x30\x75\xc3\xad\xc3\xa9\xdd\x52\x00\x57\x60\x60\xdc\x2b\xf6\x7f\xb4\x31\x7d\xf5\xad\x8d\xd9\xb5\x93\x7e\xb1\x0b\x08\xad\xcb\xe5\xec\xe9\x21\x7b\x23\x2e\xb4\x8f\x3c\xdb\xa5\x22\xb8\x7a\xf5\xaa\xfe\x95\x5f\xf9\x15\x69\x90\x95\x06\x67\x69\x20\xa0\x16\x02\x80\xe5\x86\x2f\xb5\x07\x1e\xc6\x67\xec\x9c\x1f\x08\xcf\x92\x93\x68\x43\xed\x93\x82\x04\x5f\x7c\x5f\x1a\x52\x9c\x98\x99\x06\xa5\xf5\xf1\x97\x2c\x1a\x52\x3a\x92\x3c\x4b\xb3\x16\x07\x6f\x97\xa2\x0a\xc9\xc3\x5d\x97\x41\x94\xd7\x85\x94\xa6\xc4\xd7\x05\x24\x25\x7a\xca\x33\xa4\xdf\x7c\x7a\x31\xa4\x80\x63\x74\x9d\xab\xfc\xb9\xe3\x79\x95\x00\xa2\x2f\x4e\xa8\xcf\xc4\x0e\x14\x52\x9b\x88\x29\x6b\xfe\xeb\x6a\x7b\x3c\x4d\x57\x5a\x2e\xbe\x4b\x8e\x02\x15\xee\x0c\x02\x2c\x12\x9d\x4f\x53\x3d\x35\x68\xe6\x52\x7c\xba\xb7\x65\x79\x92\xba\xbc\x61\xb6\xb5\x4c\xc4\x36\xd4\xf2\x7d\x2d\xd4\x7f\x79\x49\x4a\x26\x66\xe0\x46\xe7\x09\x4c\xa7\x3d\x7d\xc2\xf3\x47\x37\xe8\xda\xf7\x8e\x27\x8c\x5c\x7d\xca\xd5\x27\x25\xbd\x11\x6a\x3f\x9c\xbf\x14\xd7\xdb\x47\x5d\x0d\xd0\x47\xcf\x05\x72\x01\x18\x4e\x47\xc3\xb8\x5f\x48\x59\x2a\x80\xf2\x82\x21\x72\x46\x1f\x00\x5a\x6b\x7a\x0a\x11\x53\x44\x4c\x11\x30\xcd\x0a\x1c\x9e\x3b\xe9\x3d\xf6\x8e\xa3\xec\x99\xac\x50\xe7\x4b\xfb\x5a\x83\xa8\xdb\x0d\xd3\x22\x85\xe5\x5d\xaf\x1c\xa4\xd0\xdf\x86\xc8\xd8\xbd\x5d\x4b\xae\xf5\xe1\x2c\xc2\x53\xe2\x84\xb2\x77\x05\x6a\x2c\x3c\x6a\xf6\xe5\x2c\x12\x33\xbd\xb5\x3e\x7f\xf5\xfa\xe6\xf4\xd5\xfd\x95\xfc\xb6\x69\x40\x8b\xdd\x88\x3b\xb5\x37\xe3\xda\xcd\xb8\xd0\xdc\x8c\x5b\xbb\xa2\x28\xe0\x97\x7f\xf9\x97\xd5\x97\xbe\xf4\x25\xde\x08\x7d\x0a\xd6\x35\xbb\x96\x94\x95\x6b\xe6\xe5\xe3\x25\xcd\x8c\x43\x8d\x9a\x5b\x00\x42\x79\x71\x75\x4c\x5f\x27\x74\xc9\xe3\x02\xde\xbe\x4e\x4c\xc1\x19\xa7\xed\x3a\x43\x89\x19\xc4\xb9\xf3\x81\x0e\x9f\x6c\x3e\x7e\xb1\x83\x8b\x54\xde\x1c\xac\x86\x66\x63\x12\xd8\x74\xa5\x27\x0d\xe2\xa1\x01\x58\xf2\x77\x29\x62\x5f\x9c\x28\x65\xec\xe0\x11\x0b\x72\x7c\xfc\x43\x3a\x3a\x14\xb7\x4b\x1f\x91\xca\xd4\x07\xa0\x38\x4f\x1f\x2f\xdf\xd8\xb2\xf4\x61\x45\xc9\x19\x63\xc0\x20\xe8\x79\x6a\xe6\xc7\xfd\x62\x7f\x5e\x7e\x70\x56\x04\x15\x58\x05\xb4\xb6\x0f\xd0\x30\x1b\xcf\xb4\x41\x8b\x74\x92\xc3\x98\xe6\x43\x8d\x74\xe9\x88\x92\x1a\x43\x6c\xf0\xd8\x8e\xdb\xca\x34\x9a\x7c\x96\x14\xc7\x27\x59\x31\x16\x33\x09\xcb\x00\xa6\x72\x31\xfa\xc5\x35\x71\x08\xb5\x39\xd7\xc4\xcf\x86\x49\xba\x4a\xea\xef\x21\xbd\xa5\x00\xe8\xae\xea\xe5\x84\x78\x02\x2e\x81\xe9\x7b\x68\xf6\x45\x69\x62\x85\x95\x06\x07\x69\xc3\x91\x82\xea\xf8\x33\x02\x0c\xce\x4e\x7a\x9b\x8f\x1c\x66\x3f\xb1\x3e\x4b\x9e\x54\xd5\xe7\xca\xc5\x4d\x50\x66\xd9\x5f\x02\x2b\xd4\x71\x24\x6e\x81\xc5\xb2\x99\xb1\xa4\xe0\xf4\xcd\xc7\x17\xdb\xf1\x96\xf8\x42\xdb\x88\xc9\x25\xda\x1d\xe6\x6f\xbc\xb6\x35\xf9\xee\xdd\xd1\xe2\xad\xea\x8b\xcf\x63\x28\x6f\xc8\xad\xbf\x45\x04\xd5\x75\xfe\xd5\x09\x22\xfe\xa5\x67\x2d\x2c\x0f\x01\xc8\xca\xc5\xa5\x8c\x62\xfd\x5d\xbc\xbb\xf2\x8d\x7d\x76\xf1\xeb\xca\x27\x26\x1f\xf7\x33\xcb\xed\x22\xd7\xfd\xca\x13\xc3\x53\x7a\xee\xc2\xcf\x57\xde\x5d\xd2\xa4\xcf\x5d\x74\x0b\x57\x86\x92\x8b\xa1\x75\xe9\xc0\x90\xa2\xe5\xb3\xc8\x58\x99\x5c\x32\x72\x79\x7c\xb4\xae\x81\xc0\xe5\xdf\x15\xb8\x75\x71\x31\x03\x92\x2b\x8f\x54\x6e\x89\xfe\x34\xe5\xd9\x72\x1a\x8d\x3e\xee\x17\x7b\xf3\xd4\xec\xaf\x2c\x60\x1b\x8d\xb0\xa4\x03\x50\x7b\x18\x20\x3b\x07\x18\xf0\x30\x35\x22\x41\xe1\x0b\xcf\xd5\x7c\x98\xcd\x60\xa9\x7e\x47\xa8\x40\x11\x1d\x18\x80\x8c\x0d\xf5\xd2\x52\x99\xb0\x46\x98\x8f\x33\xbd\xbb\xbf\x92\x1f\xb2\x03\x2a\x65\xbc\xe6\xd6\x60\xc9\xb9\xca\x96\x87\xf3\xe7\xfb\xa5\x75\xa5\x7d\x2a\xbd\x1b\x42\x60\xa1\x44\x68\x78\x0c\xf8\x08\xa1\x36\xca\x9b\x77\xfc\xa5\x46\x4c\xf6\xb7\xd0\xeb\xfd\xb3\x5e\x81\x83\xed\xa3\xec\xf2\xf9\xc3\xec\x83\xbd\x5c\x9d\x07\x80\x6a\x43\x94\xb0\x15\x0a\xa1\xde\xe3\x02\xb0\x6c\xf2\x5b\x76\x46\x30\x1f\xda\xe3\x71\x12\x6e\x97\x41\x50\x93\x06\xdf\xf7\x12\x30\x21\x56\xee\x70\x90\xef\xfc\x60\x6b\xfc\xad\xb7\xce\xcc\x5e\x9f\xa6\xda\x1e\x7d\x3e\xae\xf6\xb3\x4c\xab\xfd\x2c\xd6\xda\xa2\x81\x6c\xc6\xad\x4e\x10\xd5\x68\xfc\x17\x7e\xe1\x17\xa4\x59\xb2\x04\x18\xb5\x10\x26\xbd\xfb\x9e\x41\x78\x96\xf8\x71\xde\xdc\xf9\x78\xfb\xd2\x92\xe4\xe6\x61\x3e\x39\x5d\x74\xae\x7c\xfb\x78\xc7\xca\xe3\x7b\x8e\xe1\xed\xe2\x47\xdd\xfd\xc4\x09\x95\xdd\x7f\x85\x8b\x1d\xe4\xef\x87\xb6\x0b\x7d\xac\x82\x8e\xe1\x13\x4b\xdb\xf5\x99\xeb\xd9\x07\xc9\xdb\xc5\xc3\xe5\xaf\x1c\xfe\x2e\xb7\x54\x3e\x74\x8f\x0b\xfd\x5c\x09\x90\x31\xc4\x4e\xdc\x34\x42\x7e\x38\x28\x8e\x27\x69\xb1\x0b\xe0\x00\x2d\xc4\xf1\x65\x7d\x6a\x9c\x2f\xad\x26\xcb\x9b\x77\x4b\x39\x04\xcf\xca\xb5\x74\xbd\x30\x48\xe0\xd2\xf8\x81\x60\x10\xf4\x2c\xd5\x87\x07\x2b\xf9\xce\xde\x70\x71\x48\x40\x8b\x06\xa8\x41\x4b\xab\x1c\x88\xd5\xc5\x07\x58\x28\x8d\xf4\x7c\xbf\xb4\x31\x2e\x5a\x67\x50\xa5\x73\x3f\x09\x4b\x8a\x8b\x86\xf9\x78\xf3\x99\x8d\xd3\x71\x53\x60\x55\x29\x76\xb9\x28\x03\x80\xcc\x18\x93\x6e\x9d\xf4\xb6\x2e\x1c\x66\xef\x5b\x9d\x27\x8f\xa3\xbd\xda\x9f\x9c\xa9\xf7\x39\xde\x40\x97\xf7\xcf\x2e\x83\x11\xda\xb0\x00\xe4\x76\xea\x68\xbb\xad\xe3\x77\xa1\x65\x29\x63\x4a\xd4\x3d\x4b\xf4\xf8\x47\x1b\xd3\xef\xdc\xd8\x9c\xbe\x36\xc9\x8a\x7d\x20\xcb\x43\xec\x04\xd1\x1c\x00\xec\x7d\x2d\x4b\x40\x13\x11\xe1\x67\x7e\xe6\x67\xd4\xdf\xff\xfd\xdf\xf3\x19\x0c\x6f\xe0\xbc\x7e\x97\x14\x02\xc4\xd7\xb3\x7d\xf6\xb5\x3b\x27\x58\x65\xbf\xae\x74\x5c\xb3\x3b\x17\x0d\x97\x5d\x1a\x80\x25\xa0\xce\xc3\x24\x59\x7c\xbc\x29\x1d\xc0\x72\x19\xf9\x1c\x8f\xe3\x1b\x60\x5d\x75\xeb\x1b\x2c\x7c\xb3\xe1\x18\x19\xbb\x0c\x60\xa1\x7a\x0d\xd5\x8d\xcf\x75\x01\x50\xff\x55\xc0\x2b\x04\xc6\xbb\xc6\x3b\x2d\x6f\x5a\xc7\x5d\xf3\x1b\xa2\x8f\xa9\x33\x57\x5b\x72\x81\x70\x6f\x9f\xa0\xf7\xb8\x38\xf8\x6a\xa8\x26\x6e\x85\x32\xfa\x70\xb0\x38\x3c\x58\xc9\x6f\xe6\xca\x4c\xad\x86\xe6\x7a\x9a\x6f\x9c\x95\x5c\xbd\x75\xd2\x2c\x8f\x30\x16\x94\x48\xf1\xb9\x8e\xe7\x7b\x67\x5a\xab\x3c\x76\x73\x8b\x32\xf3\x71\x56\xec\xef\xaf\xe4\xb7\x72\xb5\xb4\xec\xdf\xd2\x43\x7c\x63\x32\x3c\xf8\x3a\xee\x1a\x2f\x46\xc7\x46\xc5\x93\x06\x9b\xd0\x2c\xab\xab\x40\xb1\x96\x18\xef\xcc\xe6\x77\x7e\xe7\x77\xea\x4b\x75\x00\x5a\xdf\x65\xa8\xaf\x3c\x06\x80\xac\xa7\xd5\x70\xfb\x28\xbb\xbc\x75\xdc\x7b\xaa\x57\xa8\x2d\xa8\x2c\x21\x16\x60\x88\xa8\x18\xa0\xe5\xdb\xb2\xcc\x58\x60\x61\x2a\x73\x5e\xb0\x05\xdb\xb5\xd1\x36\x61\x6b\x2f\x8d\xd0\x38\x6b\xd9\xa4\x5d\xe1\x84\x89\x41\xd0\x77\x57\x17\xd7\x7f\xb8\x35\xfd\xde\xe1\x20\xbf\x53\x20\x1c\x03\x82\x3d\xf2\x6c\x97\x88\xf8\xd7\x9e\xeb\xdb\x71\x2d\x22\x47\x44\xf8\xcf\xff\xfc\x4f\xf8\xc7\x7f\xfc\xc7\x98\x01\x32\x66\xf6\x27\x0d\xa4\x52\x3c\xa9\x91\xfa\xf8\xbb\xe8\x42\x03\xb1\xc4\x87\xd3\xb9\x00\x43\xec\x6c\xd7\x07\xba\x24\x1a\x9f\xdc\xbe\x4e\xeb\x02\x94\x31\x1d\xbd\x0b\xb8\x88\x49\x47\x8a\xe3\x03\xae\xa7\x1d\xa4\x5d\xb4\x21\xf0\xc3\x5d\xa8\x0e\x1f\x84\x32\x8f\xc9\x63\xcc\x20\x7d\x5a\x39\xee\x37\x0f\xbe\xf7\xd3\x02\xc5\x98\x49\x86\xcb\x79\xc7\x02\x17\xff\xbf\xfe\xeb\xbf\xae\x03\x5b\x1f\xc0\x65\x17\x6c\x22\xa2\x36\x00\xf3\x71\xa6\xc7\xb7\xd6\xe6\xd7\xa7\x3d\x7d\xd7\xd4\x69\xb4\x01\x0c\xb5\xa3\xcb\xea\xbf\xa2\xaf\x14\x78\x79\xdf\x56\x23\x83\x34\xde\xb4\xc0\x10\xdb\xc4\x8b\x04\xe4\xb4\x56\x7b\xb0\xde\xd7\x38\xde\x5f\xc9\x6f\xde\x19\xcd\x6f\x03\xd6\xa7\x42\xad\x25\xbd\xb5\x44\x44\xbe\x39\x27\xb9\x50\x1d\xbb\x26\x5c\x0f\xb2\xdd\x75\x8d\xa7\xa8\x07\x07\x28\x2e\xe5\x15\xe3\xba\x34\x38\x1a\x1e\x54\x06\xab\xab\xab\x00\x20\x6e\x36\x52\x40\xae\xf8\x7f\xe8\xb8\xb7\x75\xfe\x28\x7b\xdf\xea\x3c\xb9\xa4\x0c\x54\xf7\xb6\xb4\x97\x71\x44\x54\x0c\xe4\xd6\x42\xc1\x32\x83\x14\xf9\x2c\xc5\x15\x18\xb3\x35\x46\x03\x00\xc8\x3e\x34\x44\xd7\x4d\x9b\xc6\x8a\x4e\x6c\x64\xa0\x3c\x45\x74\x63\x73\xf2\xdd\x5b\x6b\xb3\xb7\x16\x89\x39\x36\xd0\x1c\x7d\x66\x97\xcc\xd5\x47\x9e\x01\x96\x06\x3f\x78\xe5\x95\x57\xe0\xab\x5f\xfd\xaa\x1d\x70\x7c\x83\x0e\x6f\x23\xd4\xd2\xe0\xa2\x07\x0f\x0d\xb0\xf0\x50\x1c\x57\xa7\x92\x9e\xb9\x6c\x2e\x85\x4c\xf3\x2d\xa5\xe7\xea\xbc\xb1\xf2\xb8\xd2\x77\xc5\x91\xde\x5d\xf2\xb8\xd2\xf7\xf1\x0e\xc9\x22\xa5\xe3\x73\x12\x9d\xab\x5d\xdc\x2f\xb8\x8a\x75\x21\x30\xd0\x55\xe1\x9e\xc6\xfa\x15\xeb\xdf\x25\x1d\x57\xbb\x88\x91\x2f\x04\xf8\x62\xac\x75\xa7\x4d\xa7\xcb\x64\x87\xf3\xe8\xe2\x6a\x1e\xf7\xee\xdd\xab\x3d\xc9\x00\xae\x2b\xcb\x3c\xd5\x83\xb9\x01\x93\xe7\xca\xcc\x6f\x9e\x99\xbd\xb5\xb7\x92\xbf\x51\x28\x33\x37\x60\x6a\x1d\xdd\x4c\x52\xb1\x35\xe9\x5d\x1a\x19\x28\x3d\x94\x3a\xbe\xf5\x21\x5d\xc1\x35\x96\x16\xd3\x58\x63\x6a\xb0\xe3\x5e\x17\xd0\x68\xf2\x71\x4f\xef\xdf\x5b\x5d\xbc\xb9\xbb\x92\x1f\x02\xb9\x48\x14\xaa\xc9\x29\x40\xfb\x8a\x0b\xb6\xff\xa5\xcb\xa4\x27\x76\x92\xd7\xc5\x9d\xa6\x9f\x73\x1d\xac\xa9\x67\xec\x60\xd4\x25\x91\x2e\x33\xa0\x28\xbf\x6a\x59\x88\xca\x44\x41\x4b\x96\x68\x18\x3c\x7c\xd8\xbf\xbc\x75\xd2\x7b\x2a\x2b\xad\x2d\xaa\xb5\x3e\x48\x79\xd1\x5f\x8a\xce\x6b\xfa\x6e\x4b\x3e\x34\x50\x42\xe6\x74\xb3\x96\xe4\xc4\xfd\x2f\x2d\x59\x0c\x2c\x12\x33\xbe\xbd\xb6\xb8\x76\xfd\xec\xf4\xb5\x69\x4f\xef\x6b\xa8\xef\x69\xa9\x97\x87\xec\x97\x9e\xe9\x7d\x2d\xf6\x56\x5c\xcb\xef\xea\xd5\xab\x7a\x7f\x7f\xdf\xbe\xd2\xfa\x72\x59\xcb\x5c\x20\x56\x02\xbe\x92\x0b\xf1\x76\xc5\xf1\xbd\xbb\x9c\xab\x2d\x4b\x1d\xc0\x95\x77\x4a\x03\x8c\x26\xa6\x7d\xc7\x00\x24\xce\x5f\x4a\x2f\x24\x8f\xf4\xcb\x5d\x2c\x08\xf1\xc9\x15\x53\x3e\xf7\x9b\xae\x0f\x3c\xbb\xc0\xa3\xab\xbc\x42\xfa\x44\x7a\xb6\xe9\x84\xca\xd3\x15\xd7\xe5\x42\xb2\x86\xe2\xd1\xb8\xb1\xc0\x41\x4a\x33\xe4\x62\x69\x25\xde\xa7\xe9\x13\xb1\xe9\x47\xe7\x81\x7e\xab\x48\x90\x4f\x43\x09\x62\x6a\x0b\xb4\x01\x98\xef\x0d\xf3\xfd\xdb\x6b\xf3\x6b\xd3\x54\xef\x1b\x00\xcd\xf7\x00\x78\xf5\x3d\x21\xf5\x6d\x64\xe4\x80\x87\x4f\xa1\xeb\xf8\x66\x79\x22\x4b\xe3\x2c\x12\x33\xde\x1b\x2e\xde\xbc\x3d\x9a\xff\x68\x91\x98\x31\xb0\x8b\x44\x41\xb0\xba\x00\x88\xf7\x73\x71\x17\x53\xc6\x5d\xf4\xcb\x83\x00\xec\x96\x37\xa7\x53\x3c\xd1\x58\xe5\xe0\x9b\x59\x8a\x89\x38\x04\xe2\xfc\x78\xd8\x92\xb3\xa0\x85\x5c\xba\x43\x37\xe5\xa6\xe7\x4e\x7a\x5b\xdb\xc7\xbd\xf7\xad\xce\x92\x4b\xca\xc0\xa0\xb5\x76\x08\x76\x09\xc7\xee\xd6\xae\x78\x36\x7c\x01\x98\x69\x8f\xc7\x6f\xfc\x1a\x73\xa2\x5d\xde\x31\xa6\x41\xcf\x76\x97\x38\x37\x05\x02\x18\xc0\x0a\x9a\x53\x64\xdd\x5e\x47\x35\x2d\x8f\x32\x6d\x03\x05\x42\x7e\x38\xc8\x77\xae\x6f\x4e\xbe\xbb\xbb\x9a\xdf\x36\xcd\xe9\x21\x7b\xe4\xb9\x3e\x41\x04\xd5\xbe\x16\xfa\xf1\x44\xb6\x59\x0d\x5e\x79\xe5\x15\x69\xd0\x94\x1a\x93\xa4\x70\x39\xa0\x91\x00\x8e\x0b\x24\x48\x20\x28\x14\xdf\xc7\xe3\x34\xfc\x78\x1b\x0b\xf1\x93\xfc\x7d\x71\x5c\x74\x5c\x36\x17\x8d\x0f\x34\x4a\x65\x1f\xaa\x07\xd7\xe4\x24\x26\xdf\x3e\x19\x7c\x4e\x1a\xcc\x7c\x03\x36\x97\xcf\x37\xe0\x4b\xbc\x63\x01\xb0\x4b\x26\x9e\x7e\x17\x7e\x2e\xc0\xc3\xc1\x90\xc4\xdb\x55\x3e\xb4\x5e\x7c\x3a\x57\x92\xb5\x0b\x60\x91\x9c\x2b\x1d\x1f\xb8\xb4\xe9\x86\x00\x5f\x0c\xf8\x8f\x91\x65\x89\x87\xbd\xe7\x8b\x0c\xd4\x1a\x00\xa4\xcd\xa9\x39\x00\xcc\x01\x21\x5f\x24\x66\xfc\xd6\x99\xd9\xf5\xfd\x95\xfc\xcd\x3c\x31\xd3\xe5\x0f\xea\xd2\x25\xa7\x65\xe1\x9a\x13\x45\x2d\x5f\xf2\x68\x6a\x1d\x4e\xb7\x05\xd0\x05\xa9\xd6\x56\x80\xfa\xb1\x9d\xae\x46\x93\x1f\xf7\xf3\x9d\x5b\x6b\xf3\x6b\x77\x47\x8b\x5b\x06\xda\x13\x54\x9b\x37\x7b\x3f\x97\xcd\xf7\x29\x96\x8a\xf8\xbb\x0b\x17\xf0\x70\x5f\x9b\xf1\xa5\xef\xc3\x14\x2e\x3d\x1c\xdd\x40\x35\xf1\x73\x29\x5e\x97\x90\x5d\x10\x59\x2b\xdd\xc7\x1f\x7f\x5c\xfd\xfa\xaf\xff\xba\x62\x57\x39\xd7\xb3\x7c\x63\x4c\x6a\x2f\x9c\x03\x03\xd9\x85\xc3\xfe\xa5\x73\x27\xbd\x27\xb3\x42\x6d\x02\xa0\xb2\xbb\x4a\x4a\xc4\xdb\xac\x45\xb6\xef\x72\x61\x8b\x8c\xd0\x80\x13\x7b\xae\x9e\xef\x8d\x31\x04\x29\x97\xcb\x3d\xcd\x25\x3f\x48\x78\xb5\x90\x78\xe5\x69\x08\x5c\xe1\x00\x09\x5b\x11\x9b\x47\x03\xa0\x27\xbd\xe2\xf0\xe6\x99\xf9\xab\x6f\x9c\x9d\xfe\x70\xa1\xf4\xb1\x01\x63\x3f\x9e\x38\xa5\x1f\x4f\xac\xfe\xf8\x32\x11\xd8\x93\x44\xd7\xae\x5d\xa3\xe5\x68\x9d\x4f\x19\xd1\x5f\xa9\x11\x4b\xd6\x14\x88\xf0\x77\x35\xd6\x50\x7c\x17\x9d\xab\x23\x48\x74\x5d\x3b\x9b\x0b\x60\x4b\x65\x14\x9a\x7d\xc7\x28\x6b\xd7\x20\x1e\x5b\x26\x52\xba\x96\x6f\x0c\x3f\x5f\xbe\xba\xe4\x95\xa6\x69\x9f\x7d\x83\x9c\x0f\x1c\x49\x20\xc0\xd7\x6e\x69\x1c\xee\x7c\x83\xa8\xab\xec\x43\x69\xfa\xd2\xf1\x01\x09\x5e\x26\x2e\x1a\x29\x3c\x16\x94\xb9\x5c\x08\x64\xf8\x9e\x5d\xf5\x10\xaa\x93\xd3\x02\x60\x17\x7d\xed\xc7\x2c\x2e\x34\x9c\x7e\x93\xcd\x0e\xf4\xb5\xbe\xdc\x59\x9b\xbf\xfd\xd6\xc6\xec\x7b\xc7\xfd\x62\xa7\x40\xc8\x6d\xc4\x52\xf7\xd3\x3d\x23\x24\xa0\xfa\xad\x75\xb6\xb4\x67\xa0\xda\x0b\x80\x15\x1f\x1a\xbf\xd4\xeb\x64\x70\x30\xad\x98\x60\x0c\xe5\x61\x60\x96\xea\xc3\x9d\xd1\xe2\xfa\xcd\xf5\xd9\xeb\xe3\x9e\x3e\x46\xc4\xb9\x31\xc6\x5e\x2c\x6a\xc1\x98\xcd\x6b\x25\x6f\xf9\xfb\xdb\xbf\xfd\xdb\x92\xae\xe5\x65\x04\x84\x26\xb6\x2d\xc7\xf0\x8b\xa1\xe5\xbc\x7d\xe0\x56\x75\x4d\x38\xd4\xc8\x7c\x8a\xc5\xa5\xf8\x5d\x33\x41\x00\x00\xb8\x76\xed\x9a\xfe\xe2\x17\xbf\xa8\xd9\xf2\x10\x20\xa2\x3d\x02\xad\xa0\xb2\xb6\x8c\x66\xc9\xfa\xf6\x51\xf6\x13\xab\xf3\xe4\x62\x63\x6d\x69\x1a\x86\x61\xfb\x5c\xda\x36\x93\xb6\xb3\x7b\x5e\xec\xb7\x81\xe4\xcd\xbc\xcb\xcf\x75\x7b\x36\xcb\x7e\xdc\x21\x22\x60\x04\x5d\xb5\x44\x34\xdd\x5d\x5d\xbc\x79\x63\x73\xfa\xea\xc1\x4a\xb1\x0b\xa5\x95\xc5\xde\xd3\x52\x2f\x13\x41\xb3\x49\xab\x05\x5a\x6c\x7a\x2f\xbc\xf0\x82\xfe\xc6\x37\xbe\xc1\x93\x08\x81\x00\x9f\xb2\xec\x82\xc6\x5d\xca\xd7\x55\xff\x9c\x3e\x34\x9b\x0b\x29\x7d\x9f\x4c\x31\x00\xc6\xa6\xef\x03\x07\x31\xc0\x8e\x87\xb9\xde\x5d\x32\x48\xfe\x21\xde\xbe\x01\x5f\x2a\x0f\xfe\xee\x02\x11\xb4\x4c\x62\x00\x0d\x4f\x23\x04\x12\xa8\x8b\x55\x9c\x54\xa6\xae\x83\xa8\x6f\x52\x26\x39\x1f\x08\x73\xa5\xe9\x93\xc3\x07\x22\x25\x3e\x5d\x2c\x2b\x5d\x00\x5f\x8c\x8b\x19\x0f\x24\x40\x16\x02\xd7\xa7\xf6\x4f\xd3\x74\xc9\x8f\x1c\x0f\xa6\x7f\x76\x19\x7d\x6e\x8c\x99\x8f\x33\x7d\xf8\xfa\xe6\xf4\xfb\x6f\xaf\xcf\x5f\x9d\xf4\x8a\x7d\x03\xa5\xc5\x42\xda\x6b\x62\x68\x00\x42\x73\x69\x9c\x6b\x63\x8a\xe4\xc8\x04\xd9\xf0\xd9\x2b\x34\x7b\x1f\x0d\x40\x75\xcb\xaf\x99\xde\x5b\x5d\xbc\xf9\xa3\x8d\xe9\x6b\xf7\x56\x17\x3b\x95\xb5\xc5\xee\x6f\xa9\xb7\x03\x90\xfc\xd5\x7b\x7a\x10\x11\xfe\xf4\x4f\xff\xd4\x07\xa0\xef\xa7\x4d\x49\xf1\x24\xdd\x23\xf1\xf5\xb5\x09\x9f\x8e\x68\x59\x5c\x24\xa5\x25\x31\x74\xcd\xc8\x78\xa2\x3c\x21\xdf\xc0\xc2\x05\x55\x00\xe5\x17\xa0\x01\xc4\x23\x6e\xca\x18\x93\xd6\xb7\xe4\x96\xa7\x8a\xb2\x8b\x07\xfd\x8b\x9b\xe3\xf4\xa9\x5e\x81\x5b\x60\x9a\xcf\x01\x58\x4b\x5e\x8d\x7a\x09\x23\xfa\x4e\xd1\xb5\x05\x2b\x7c\xbf\x8b\xbc\x4e\x09\xd5\x31\x65\xd2\x9e\x6d\xa3\x33\xa6\xc5\x1f\x80\xf1\x40\x96\x06\xdb\x6b\x63\x00\xa0\x40\xc8\x8f\xfa\xf9\xdd\x37\x37\x66\xaf\xde\x5c\x9f\xfe\x08\xd8\x12\x11\xd9\x90\x6b\xd7\x6e\x5b\x4b\x44\xd0\xcc\x36\x00\xa0\xfc\x18\x59\xf5\x48\x7f\x25\x05\xee\x9a\x89\x4a\x0d\x50\x52\xf4\x3e\xe5\xef\x7a\x77\xf1\xf2\xd1\x49\x83\xad\x0b\xec\xf8\x66\x92\x3e\xb9\x5d\xe9\xd2\x32\x71\xc5\x97\xe2\xf0\x67\xd7\xbb\xcb\x9f\xa7\x19\xe2\x4d\xf9\x85\x06\x30\x1e\x9f\x0f\x3e\x3c\xcc\x95\x47\x29\x3d\x57\x5a\xdc\xf9\x80\x64\x68\x20\x93\xca\x86\x86\x87\x40\x86\xc4\xcf\x25\x1b\xf5\xf3\xe9\x4f\x09\xa0\xf9\xca\xc7\x05\xba\xa8\xf3\xd5\x5d\x17\x7f\xc9\x85\x00\x94\xf4\x4e\xfd\xa5\x3a\xe8\x02\xca\x63\x64\x5a\x2a\xbf\x3c\xcf\x5b\x3c\xe8\x27\x4d\x00\x5a\x27\x70\xac\xae\x9c\xdb\x65\xf6\x9d\xb5\xf9\xad\x6b\x9b\x93\xef\xde\x1d\x2d\xae\xcf\x52\x3d\x66\xb6\xf8\x8a\xdf\xf2\xd8\x40\xac\xe2\x84\xb0\x09\x5b\x5a\x0e\x62\x64\xc8\x00\x0b\x1f\x67\x0a\x34\xf9\xe1\xa0\xb8\x75\xe3\xec\xf4\xbb\x6f\x9d\x99\xfd\x70\xd6\x33\xc7\x40\xb6\x05\xd8\x1b\xd1\xed\x12\x51\x35\x86\xd4\x56\x17\xc7\xf7\xe7\xa8\x8b\x01\xe6\xf4\x39\x34\x91\x0a\xa5\x17\x9a\xa8\x84\xfa\xa6\x02\x08\xdf\x9c\xeb\x1b\x38\x7c\x8e\x2b\x36\xfe\xec\xe2\x51\xfb\xdd\xbe\x7d\xbb\x7e\xb6\x77\xb5\xd8\x5f\xf2\x95\xcf\x14\x00\xb2\xb4\xc0\xc1\x23\x07\xfd\x9f\x18\xcd\xd2\x4b\x89\xc6\xa1\x05\x01\xf6\xf2\x1d\x7a\xfd\x71\x7b\x49\xc7\x80\x31\xe5\xb6\x5d\x7b\x9a\xa7\xb5\x6c\x63\x0c\x18\x6b\xea\xab\x02\xeb\x9b\x10\x89\xd0\xf4\x08\x5b\xc9\xd5\x2e\x13\xd9\xa3\xd8\x58\xa3\x6b\x74\xf0\x28\xc9\x6b\xa9\x00\x01\x41\x83\x81\x59\xaa\x8f\x77\xd6\x16\xd7\x6f\x9c\x9d\xbd\x3a\xed\x95\x1f\x50\x24\x7b\x5a\xe8\x86\x5c\x7b\x3b\x6e\xfd\xc5\x67\x5b\x9e\x8e\xcd\x59\xb6\x3e\x7c\x56\x15\xd7\xc0\xef\xab\x57\x89\x6f\x48\x11\x87\x64\xf1\xc9\x4f\x9f\x7d\x9d\xa6\xab\x4c\xae\x34\xb8\xf3\xc9\xfb\xa0\xd2\xa0\xe5\x23\xa5\xe9\xe3\xe5\x8b\x13\xb2\x4a\xb8\xca\x34\xb6\x8e\xb8\x93\xda\x89\x14\xdf\x05\xd4\x78\x98\xc4\xab\xab\x1c\x31\xb4\x9c\x7f\x08\xac\x72\x99\xba\xe4\x55\x4a\xf3\xb4\xce\xd7\x4e\x68\xf8\xfd\x00\x25\x1e\xdf\x55\xc7\xae\xbe\xe3\xd2\x1f\xb1\xe9\x3b\xe3\x12\xfd\x6f\xeb\x2a\xaf\x26\xba\x76\xa9\x68\x0a\xe5\xc1\x8e\xb9\x41\x98\xbe\x79\x76\x7a\x63\x34\x4b\x36\xfb\xb9\x1a\x6d\x9d\xf4\x2e\xf5\x0a\x18\xd8\x4d\x06\xe5\x5e\xc8\x8a\xaf\x4d\x80\x20\x8f\xd6\xde\x48\xb6\x3d\x80\xc6\x31\x84\x96\x8e\x53\x2d\xbe\x55\xb8\x06\xa3\x4f\xfa\xc5\xdd\x37\x36\xa6\xdf\xbd\xb1\x39\x7d\xf5\x70\x50\xec\x92\xcf\xb8\x58\xfd\x4f\x27\xad\x75\x9b\x74\xdc\x9e\xdb\x55\x1f\x75\xad\x07\xd7\xc4\xd6\xa5\xdf\x63\x75\xe7\x52\x9a\x92\x52\x3b\x0d\xda\x8e\x51\x66\x54\x89\x86\x7e\x01\xa0\xbc\x70\xae\x55\xb1\xcd\x12\x51\x7d\x4b\x2e\x00\x64\x0f\x1f\x64\xdb\xe7\x4e\x7a\x4f\xf7\x73\xdc\x42\xc0\x14\x90\x6c\xb8\x65\x08\xa3\x8d\x7c\xab\x75\x47\xa1\xf1\x59\x7a\x24\xe8\xb9\x36\xe1\xb5\x96\x78\x4c\x1d\xb7\x8e\x46\x08\x10\xb0\xd9\x94\xd5\xde\xcc\xd2\x72\x34\x5d\x7b\x02\xaa\x50\x66\xbe\xbf\x92\xdf\xfa\xd1\xc6\xec\xd5\x3b\xa3\xf9\x6d\x28\xad\x2d\x53\x20\xdf\x22\x02\x62\x65\xa9\xd0\x77\xcb\xc2\x22\x6c\xce\xf2\x21\x5a\xd7\xe0\x2e\xcd\x20\x25\x5e\x5c\x99\x4b\x00\xc8\xd7\x76\x2c\x9d\x6f\x26\xa6\xc0\xdd\xc0\x39\x7f\x17\xf0\xf6\xb6\x3b\x70\x77\x42\x97\xa3\x32\xbb\x06\xb1\x18\x1e\x31\xe0\x82\xe7\xd5\xc7\x5b\x02\x74\x5d\x14\x17\xf5\xa3\xf1\x79\xbd\x4a\x75\xee\xe3\x1f\x1a\x9c\x5c\xf5\xc2\xe5\xf1\xa5\x1b\x2a\x17\xae\xe7\x42\x65\xe9\x8a\xe7\x93\x2d\xd4\x56\x39\x0f\x5f\xdb\xa5\x7e\x54\x0e\x2e\xbb\x4f\x26\x17\xaf\xd3\xb8\x50\x9b\x0a\xe5\xcb\xa5\x4b\x5c\xef\x3e\x9e\x4b\x72\xd8\xc9\x9a\xd5\x85\x64\x29\x85\x2e\x13\xe5\x50\x01\x00\x00\x18\x4f\x13\x7d\xf8\xfa\xb9\xc9\x7f\x5e\x3b\x37\xf9\xf7\xdd\xe1\xe2\x8d\x45\xb5\x59\xd7\x2a\xe7\xa5\x2d\x00\xd8\x80\x8f\x7a\xbf\x0b\x9f\xc1\x42\xfb\xbd\x05\x4e\x0c\x3d\x18\xd2\xf8\xd9\xbd\x97\xe3\xac\xd8\xbf\x71\x76\xfa\x9d\x57\xb7\xc7\xdf\xda\x1d\x2e\xde\x86\xf2\xbe\xae\xb1\x5d\xe2\x02\x62\x3d\x62\x4b\x45\xf5\x9d\x5d\x9e\xb2\xa2\x4e\xd2\x5f\x31\xba\x85\xd7\x07\x07\x1a\xa1\xfe\x6b\x5d\x8c\x2e\x68\xf9\x27\x42\x04\x53\x11\x53\x8b\x98\x6b\xdb\xb4\x2b\x3c\x04\x64\x5c\xf1\x5b\x7c\xae\x5c\xb9\x82\xe4\x23\x8a\x58\x2d\x11\x29\x63\x4c\x0f\x11\x33\x00\x58\x01\x80\x95\x0f\xbe\xb5\x76\xe5\xe1\xc3\xec\x67\xfb\xb9\xda\x56\x80\x09\xb5\xd4\xf1\xef\x00\x59\x7f\x8e\x7c\x69\xe2\x02\x60\x6e\x85\x51\x20\x8b\xe4\xae\x68\x6a\x69\x69\xb1\x60\x40\x45\x5a\x0e\x45\xd3\x0e\x30\x00\x30\xce\x8a\xbd\x37\x36\xa7\xdf\x79\xed\xa1\xf1\x77\xa6\x3d\xb3\x07\x00\x27\xc6\x98\x23\x44\x3c\x41\xc4\x71\x65\x6d\x99\x01\xc0\xa2\xfa\x2b\x00\xa0\xb0\xc8\xfb\xea\xd5\xab\xfa\xe5\x97\x5f\xb6\xa2\xf3\x3a\xa5\x56\x4f\x45\x7e\xe9\x60\xe4\xa2\xa5\xef\xb4\xce\x68\x98\xad\x37\xca\x17\x60\xb9\xae\x51\x88\x63\x65\xe0\xb2\xd1\x34\xed\x3b\x8d\x4f\xf9\x5a\x79\xb8\xe2\xa3\x16\x59\x1b\x46\xe3\x2b\x12\xc6\xf3\xaa\x60\x99\x3f\xe7\xc5\x69\x24\x99\x68\x39\xd2\x41\x97\x96\x03\xcd\x8f\x94\x57\x9b\x37\x57\xde\x79\x1e\x78\x1e\x8d\x10\x97\x03\x55\xde\x55\x78\x7e\x24\xb9\x79\xbf\x97\xca\xc2\x57\x3e\x5c\x16\x1a\xee\x4a\xc3\xc5\xc3\xf5\xce\x65\xa0\x6d\xc2\x55\x96\x86\xfd\x51\x1a\x5e\x5f\xbe\x74\xb8\x73\xa5\x29\x85\x4b\x7c\x5d\x32\x71\x7a\xd7\xbb\x54\x1f\x21\x99\x62\x1c\xed\x13\x5d\x65\x0a\xc5\x91\xda\xe4\x92\x7b\xe9\xa5\x97\xcc\x95\x2b\x57\x2a\x95\x8c\x80\x25\x4a\x50\x00\xa0\xb0\x74\x56\x4e\x05\x00\x09\x22\xaa\x59\xcf\xe8\xc3\x41\x71\x5c\x20\xe8\xe1\x3c\x19\x0e\x72\xb5\x96\x02\x26\x25\x8f\x76\xe2\x75\x46\xd9\xfd\xff\xb5\x2e\xe7\x63\x07\x36\x71\xe9\x38\x62\x48\x98\x8d\x73\x92\xe9\xbb\xd7\x37\xa7\xdf\xfc\xce\xc3\x27\xdf\xb8\xbb\xba\x78\xab\x48\xe0\x18\x4a\xfd\x6f\x75\xff\x04\x1a\xd0\xb5\x40\xc4\x02\x4a\xfd\x5f\xb7\x07\xf2\x09\x04\xae\xc7\x79\xf9\xd2\xba\x02\x12\xee\x6b\xbb\x31\x6d\x3b\xd4\x8f\xbb\xd4\x79\xcb\x49\x4b\x45\x3e\xd0\x11\x9a\x3d\x58\x17\xb2\xbe\x44\x39\x76\x55\xb1\x5d\x22\xb2\xfb\x5a\x52\x30\x90\x6d\x9d\xf4\x36\xde\x71\x94\x5d\x19\xe4\xc9\x05\x04\x7b\xe1\x1c\x2c\xb5\x2e\x6e\xec\xa8\x7f\x09\x9d\x04\x28\x1a\xe7\xf8\x18\xa2\x5d\x03\xb2\xd6\x9b\x9a\x5f\xf9\x20\xb5\x18\x2a\x5f\xb9\x0f\x66\x19\xfc\xe4\x89\x9e\xde\x5d\x9d\x5f\xff\xd1\xc6\xec\xd5\x83\x41\x71\x17\xda\x1f\x50\xac\x77\xc4\x63\xf3\xc5\xe7\xa5\x0d\xb9\xcc\xb9\xac\x0f\xf4\xd9\x65\x9a\x8b\x9d\xb1\xbb\xe8\x7c\x6d\x26\x14\x27\x24\x53\xac\x3c\x31\x69\xf9\x9e\x63\x65\x08\xb5\xf3\x98\x38\x5d\xd2\x09\xd5\xb7\x6f\x36\xc3\xeb\x25\xa6\xfe\x63\xe4\xa4\xce\xa5\x33\xba\x5a\xb4\x42\xf9\x7d\x10\xbc\xef\xc7\x3f\x24\x47\x57\xf9\x24\x6b\xd9\xfd\xc8\xd7\xa5\x4c\x38\xd8\x3f\x4d\xbd\x76\xe5\xd1\xd5\x9f\xa7\x27\x59\x68\xb8\xb3\x56\x69\xbb\x94\xa2\xa0\x1c\x03\xc7\xd0\xdc\xbe\xae\x8e\xb3\x02\x5e\xdd\x1e\xff\xc7\xb4\xa7\xc7\x4f\xed\x0c\x8f\xcf\x1f\x66\x4f\x0e\xf2\x64\xd4\x9a\xf8\x1a\x02\x36\x2a\xa5\x5d\x8f\x1f\x7c\xa2\x6a\x00\x0c\x94\x11\xca\x71\xc0\xd4\x56\x75\xa8\xb7\x34\x94\x84\x1a\x8d\xde\x5f\x29\x6e\xbe\xfa\xd0\xf8\x1b\xdf\xdb\x3e\xf9\xce\xd1\xa0\xb8\xad\x11\x0e\x8d\x31\xc7\x88\x78\x4c\x0f\x65\x40\xb3\xb7\x51\x57\x79\x6b\x59\xdb\x4f\xe9\x4e\xdb\x77\x24\x8c\x00\x10\xd7\x0e\x62\x79\xd7\xcf\x29\x2c\x27\xe8\x03\x28\x21\x05\xed\x12\xac\x73\x61\xba\x8e\x40\x03\x59\x26\x52\x06\xb2\x77\xdd\x5b\xb9\xbc\x36\x4b\x9e\x4a\x34\x0c\x2d\x50\x40\x00\xe7\x47\xb3\x38\x54\x6f\x6d\x8e\x32\x4d\xe3\xa2\xc0\xa7\x82\x25\x35\xdd\x92\xe5\xa6\x65\x82\x69\x3f\xd0\x9d\x33\x92\x25\x87\xaf\x43\x22\x80\xfd\x72\xe9\xdd\xb7\x36\xe6\xd7\x76\xd6\xe6\x6f\x01\xc2\xb4\x3a\xfa\x3c\xae\x8e\xc1\xd5\xeb\x9b\xc4\x64\xd8\xba\xd2\x1f\xa0\xfc\x4c\xc2\x5f\xfe\xe5\x5f\xc2\x64\x32\x01\x68\xd7\xa7\x75\x92\x9f\x14\xc6\x1b\x9f\x0d\xe7\xbc\xa4\x30\xa9\x6d\xc5\xc6\xe1\xb2\xf8\x64\xa0\xe9\x48\xca\xac\x8b\xdc\xbc\x5c\x4e\xc3\xdb\x95\x8e\xd4\x91\xa5\xf2\xbf\x5f\xde\x52\x1a\x3e\x65\xcf\x15\xbf\xaf\x4d\x84\xe4\xe7\x75\x1e\x8a\x4f\xd3\x73\xe9\x0f\x29\x3c\xa4\x9b\x5c\x3c\x7d\xf1\xba\x80\xeb\x2e\xb4\x2e\x17\xe2\xe7\x6a\x9b\x31\x60\x32\x16\xf0\xc5\xf2\x73\xc9\x18\x9b\x67\x9e\x56\x4c\xf9\xc4\x0e\x76\x5e\xc0\x62\x1f\xaa\x89\x9e\x05\x2d\x73\xa8\xc6\x93\x6a\xef\x60\x39\xc6\x20\xc0\xa4\xa7\xd5\x8d\xcd\xe9\x0f\xa7\xbd\x62\xfa\xf8\x60\x65\xff\x91\xfd\xfe\x93\x67\xa6\xbd\xed\x9e\xc6\x72\x72\x4c\x27\xbb\x82\xfa\x6f\xcd\x9b\x91\x58\xfe\x4d\xa3\xf3\xa9\x75\xde\xa0\xd1\xd3\x9e\x3e\xbe\x33\x9a\x5f\xff\xc1\x43\x93\x6f\xbd\xbe\x39\xb9\x36\xe9\xe9\x7b\xba\xfc\xa4\xcb\x31\x42\x0b\xb0\x4c\xab\x65\xae\x39\x00\xf0\xbb\xba\x7c\x65\x11\xe3\xdf\xb5\xef\xf8\x74\xa4\x2b\x1d\xc5\x7e\x7d\xb2\x89\xf2\x25\x20\x9b\x91\x7c\xa6\x77\x97\x79\xce\x0a\x11\x32\x2d\x5a\x1e\x3e\x5e\x74\x99\x48\x99\xf2\x50\x7b\x0f\x11\x7b\x50\xed\x6b\x41\x03\x2b\xa3\x59\xb2\xf1\xcc\xdb\xa3\x9f\xd9\x9c\xf4\x7e\x32\x31\xb8\x6a\x9b\x87\xa9\xc4\x68\x50\x2d\x6b\x68\xc2\x2f\x00\xb4\xd6\x1b\x6d\x83\xe4\x66\x41\xee\xc4\x30\xde\x6a\x83\x34\x6d\xef\x79\x62\x4e\xde\xdc\x98\x7d\xef\x87\xe7\xa6\xdf\xde\x1b\xe6\xb7\x0c\xd4\xcb\x43\x27\x55\x07\x1b\x43\x65\x6d\xa9\x3a\xe2\x02\xda\x83\x84\xd9\xdb\xdb\x83\x3f\xfd\xd3\x3f\xd5\x79\x9e\x53\x93\x1e\x6d\x64\xbc\x8e\xad\xb9\x90\xd3\xdb\x86\x48\xdb\x06\x6d\x9c\x7c\xc9\x05\x08\x0f\x69\x99\x05\xa1\x9d\xbe\xd4\xd7\x25\x3a\xc5\xf8\xb9\xe2\xbb\xe4\x11\x75\x0a\xe1\x27\x99\x31\x79\x7e\x68\x87\xf4\xc9\xe0\xca\x03\x2d\x73\xca\x8b\xd2\xf1\x3a\xa0\xcf\xdc\xfc\xce\xdf\xa5\xbe\x65\xdf\x01\xda\x7c\xa4\xfc\x21\xa3\x07\x58\xae\x63\xde\x16\xa8\xcc\x9c\x9f\xcf\x49\xa6\xe6\x2e\xa6\x69\x4e\x43\xe5\x52\x84\x9e\xfb\xf9\xe2\x81\x83\xc6\xe5\x42\xa6\x6f\xea\x62\x74\xaa\x4b\x0e\xde\xf6\x62\x5d\x8c\xee\xe6\xed\xd2\xe7\x78\xfb\xef\x2a\x47\x4c\xbb\xe0\xbc\xe9\xb3\x24\xa7\x57\x76\xbb\x5c\x64\x8c\x41\x44\xba\x63\xb1\xfe\xad\xf0\x43\x6b\x07\xa2\x01\x04\x2c\x94\x29\x4e\x32\x3d\xdd\x1b\xe6\x87\x27\x7d\xbd\x6f\x00\x16\xbd\x02\x07\xa9\xc6\x3e\x36\x53\x5c\xa7\x93\x42\xdb\x13\x65\x00\xad\x8c\x9e\xf6\xf4\xd1\xdd\xd1\xe2\xcd\xd7\xcf\x4d\xbf\xfd\x9f\xe7\x4f\xbe\xf5\xa3\x8d\xe9\xeb\xd3\x9e\xd9\x35\x08\x47\x80\xe5\x12\x11\x00\x1c\x43\x69\x19\x9a\x00\xc0\x0c\x11\x67\x95\xfe\x5f\xc0\xb2\xb5\xdd\x44\xdc\x96\xeb\x72\x52\xdf\xe1\xfe\xd4\x71\x5d\x05\x10\x6e\x77\x46\xf8\xe3\xce\xcb\x83\x2e\x15\x85\x10\xb9\xa5\x91\x66\x59\x7c\x66\xe5\x73\x5e\x64\xf6\xfc\xf3\xcf\xab\xab\x57\xaf\x52\xf4\x48\x4f\x11\xd5\x16\x97\x54\xe3\xe0\xe2\x41\xff\xe2\x99\x49\xfa\x74\x5a\xe0\x3a\x80\x35\xe1\xd9\x25\x1d\x6c\xcc\x77\x6c\x98\x32\x58\x9d\xf4\xe1\xcd\xd8\xf2\xa8\xd6\x8f\xea\x8d\xc1\x6c\xa8\xab\x7b\x3a\x01\x44\x36\x5d\x03\xd6\x84\x58\x52\xd5\x23\x04\x1f\x2e\xb1\xe1\x66\xc8\xf7\x2d\x34\x1a\x7d\xb0\x92\xdf\x7a\x6b\x63\x76\x6d\x6f\x75\x71\xdb\x20\x4c\x11\xd0\xa2\x6c\x7b\xe1\x50\x7d\x82\xc8\x6e\xcc\x25\xe5\xa8\x01\x00\xfe\xe2\x2f\xfe\xc2\x87\x78\xed\xb3\x34\x23\x8b\x99\xa5\xb9\x5c\xcc\x4c\xcc\xf5\xeb\x4a\xcf\x25\x4b\x4c\x7c\x57\x58\x28\x5f\xae\x32\xe9\x2a\x43\x6c\x5e\x7d\xb3\x14\x29\xbd\xd0\xbb\x34\xeb\x96\x66\x37\x52\xfc\x2e\x33\x6a\x89\x2f\xb7\xbe\xf8\xac\x59\xa1\xd9\x39\xa7\x0d\x59\x07\x24\x19\x5d\x56\x8c\xd8\xb4\x5d\xb2\x70\xb9\x24\x7e\x5d\xfb\x92\x8f\x77\x6c\x1e\x5c\xb2\x76\x29\x93\x98\x7a\xea\xe2\x1f\x2b\x2b\x97\xd3\xe7\xa2\xeb\x90\x58\xa1\x15\x79\xb6\xcb\x46\x73\x68\xc6\x16\x45\x68\x40\x83\xd1\x8b\x04\xf4\xfe\x4a\x9e\x4f\x7b\x7a\xbc\xb7\x92\xef\xdf\x39\xe8\xdf\x7a\xc7\x71\xef\xb1\x8d\x71\x6f\x6b\x34\x4f\x36\x7a\x05\x0e\x94\x41\xb5\xa4\xdf\x05\x47\x97\x88\x16\x4a\xcf\x27\x99\x3e\xdc\x5b\xc9\x77\xee\x8c\xe6\xb7\x76\x46\x8b\x9b\x77\x57\xe7\xb7\x8e\x07\xc5\xbd\x85\x32\x87\x00\xa5\xa5\x05\xaa\x2d\x02\x64\xc2\xda\xba\x21\x9d\x2c\x0f\xd5\xd6\xf6\xc0\x6d\xb9\xb1\xfd\x2f\xc6\x75\xe5\x11\x4a\x3f\xd4\x76\xeb\x36\x82\x8e\x48\x5d\x5d\xc8\xc4\x49\x69\x82\x0d\xfb\xf9\xe7\x9f\xb7\x8d\x87\x5e\x32\x97\x01\xc0\x00\x00\x86\x60\x60\xb8\x3a\x57\xdb\x1f\xb9\x71\xe6\x67\x9e\xd8\x19\xfe\x5e\xbf\xc0\x0b\x14\xfd\xd2\xa3\xd0\x74\x5d\x11\xa0\xbd\xe4\x43\x69\xb9\x93\xda\x61\x83\x73\x9a\x50\xdb\x18\x5d\x71\x24\x27\x4d\xd5\xed\xd1\xeb\x49\xaf\xd8\x7f\xf5\xa1\xf1\xbf\x7e\xf7\xfc\xc9\xbf\xde\x19\x2d\x6e\x18\x84\x7d\x63\xcc\x21\x22\x1e\x57\xbf\xf5\x17\xa0\x85\x65\x22\x0d\x00\x40\x36\x65\xf9\xea\x34\x46\x19\x5b\x27\x01\xd6\x90\x92\x0b\x0d\x58\x12\x3f\xdf\x00\x15\x4a\xd7\x95\x16\xf5\x97\x9e\x43\xbc\x24\x39\x7c\x03\xaa\xf4\x1c\x13\x46\x9d\x4f\xa1\x87\xca\xf2\x7e\xf2\x1a\xdb\x57\xa5\x3c\x50\x17\xd2\x23\x3e\x60\x10\xe3\x4e\xa3\xab\x1e\xb4\x7e\x3b\x2d\xef\x18\xda\xd3\xf2\x8b\x05\x5c\xff\x55\xee\x41\x97\xcb\xa9\x5d\x75\x1f\x98\x6d\xaf\xf6\x6a\x8d\xfa\x64\x6a\xf5\x37\x30\xc6\x0c\x11\x71\x08\x00\xed\x3f\x03\x83\x54\xe3\x68\x38\x57\x67\xcf\x4c\xd3\xcd\x8d\x71\xba\x7d\x6e\xdc\xdb\x3a\x3b\xe9\x6d\xad\xce\xd5\x7a\x96\xab\x41\xaf\x50\x83\x54\x43\x8a\x06\x53\x6a\x7a\x04\x00\x5d\x28\x93\x2f\x12\x33\x9d\xa5\x7a\x3a\xe9\xe9\xf1\x51\x3f\xdf\xdf\x1d\x2e\x76\xee\xad\x2e\x76\xf6\x57\xf2\xbb\x27\x99\x3e\x98\xa7\xfa\xd0\x20\x58\xfd\x6e\xef\x6b\xb1\xe0\x65\x4a\x8e\x42\x73\xe0\x62\x6f\xfb\xd5\x00\xad\xeb\x2f\x7c\x63\x6d\x2c\xc0\x0c\x81\xf3\x90\x7b\x90\x00\xa9\xd6\x3d\xae\x7b\x5c\x62\x80\x08\x75\xbe\xcc\xba\x68\x7c\xf1\xeb\xf4\x48\x03\xab\xff\x52\x8d\x83\xb3\xe3\xde\xe6\xe6\x49\xef\xc9\xac\xc0\x2d\x1b\xa1\x06\x02\xf5\xba\x10\xdd\x97\xd2\x80\x0b\xea\xe8\xfd\x2d\xf5\x85\x71\x88\xe5\x91\x66\x61\xff\x09\x7f\x92\x4c\x31\x14\xd6\x48\x50\x46\x5a\xa6\x02\x44\xd0\x68\xf4\xde\x70\x71\xf3\x31\x7e\x83\x60\x00\x00\x20\x00\x49\x44\x41\x54\xe6\x99\xd9\xb5\x83\x41\x7e\xc7\x20\xd8\x2f\x3e\xd7\x17\xcd\xb1\x63\x70\x2d\xc0\x82\x88\x70\xf5\xea\x55\x7d\xe9\xd2\x25\x75\xfd\xfa\x75\x3b\x4b\x73\x01\x10\x10\x9e\x01\xda\x75\xe1\x02\x16\xc0\xe2\x84\x14\x24\x9f\x39\xf2\x01\x4f\xa2\xa7\x69\xb8\xda\xa2\x24\xf7\x69\x3b\x99\x6b\x76\xca\x1d\x2f\x2f\x9f\xf3\xe5\xd5\xc7\xc7\x57\xd6\xbe\x77\x97\xfc\x31\x0a\x8a\xfb\x2b\xf6\x6b\xf9\xf8\xea\x96\xc7\x73\x95\x63\x4c\x1d\x85\xe2\x87\x1c\x57\xb8\xf7\x03\x94\x42\xe0\xbf\x2b\xaf\x50\xf9\x4b\x60\xb4\xab\x6c\x3e\xba\xfb\x19\x8c\xba\xc4\x3d\x6d\x19\xff\x58\x40\x4c\xa5\x27\x15\xbd\x94\x0e\x4a\x00\x50\xa7\x8b\xcd\x37\xdd\xec\x5f\xa9\x6b\x11\xe6\xb9\x32\xf9\xe1\xa0\x98\x8e\xb3\xe2\xe0\xde\xea\x62\xe7\xd6\x6c\xbe\xbe\x36\x4b\x37\x57\xe7\x6a\x34\xc8\x93\xe1\xca\x5c\x0d\x07\xb9\x1a\x66\x05\x66\x68\xca\x4f\xce\x68\x04\xad\x11\xf2\x79\xa2\xe7\x27\x59\x71\x3c\xce\xf4\xf1\xa4\x57\x1c\x9f\x64\xc5\xe1\x49\x5f\x1f\x4e\x7a\xc5\xd1\x22\x31\x63\x83\xf5\xde\x95\x31\x99\x9c\x5a\x0b\x8b\xdd\x1a\x60\xad\xee\xf6\x86\xf4\xa5\xcd\xb8\x57\xaf\x5e\xd5\x67\xce\x9c\x51\xe4\xa2\x51\xea\x42\x3a\x2e\xa4\x93\x68\x58\xcc\x24\x07\xc0\xdd\x96\x7d\x78\xc2\x25\x6b\xad\x4f\x43\x17\xd0\xb9\x84\x0a\xcd\xce\x62\x0a\x67\xc9\xd1\x5b\x72\xab\x06\xd4\x5a\x26\xb2\x37\xe6\x66\x05\x0e\xcf\x1f\xf5\x2f\xae\xcd\x92\xcb\x0a\xca\xcd\x52\x50\xe1\x0c\x8a\x37\x24\x8b\x89\x64\x5b\x41\x83\xe5\x66\xde\xd6\x26\x5b\x6e\xc1\x81\xda\xb6\xd2\x5a\xe0\xa7\x4c\x69\xba\x06\x9a\x0d\xc2\x84\xc6\x67\xe1\x99\xa5\xfa\xf0\xed\xf5\xf9\xb5\xbb\xab\x8b\xb7\xe7\x69\x79\x43\x22\x47\xd8\xd0\x5e\xcf\xac\x01\x8b\x7d\xfe\xc4\x27\x3e\xa1\x5e\x7c\xf1\x45\x0e\x3e\x40\x78\xf7\xd1\xc4\xd2\xf9\xde\x63\xc3\x5c\x83\x0b\x80\xbb\xa3\x71\x40\xc5\xe9\x43\xb2\x87\xf2\xe1\xf3\x77\x01\x3c\xfe\x2c\xe5\xa9\x4b\x7f\x08\x81\xa8\x10\x5f\x57\x58\x4c\x3c\x9e\x87\x10\x6f\x89\xa7\x8f\x87\x0b\xcc\xb9\xea\xdb\x07\xb6\x5d\x8a\x50\x02\x7d\xae\x32\x75\x29\xd6\x58\xe5\x7f\x3f\x96\x0d\x9f\xc2\xe7\xb2\x76\x99\x20\xf0\xb8\x5d\xe4\xe8\x3a\x71\x75\xf1\x93\xe8\xbb\x96\x55\xac\xd5\xcf\x99\xce\xbb\xde\xf5\x2e\x75\xf5\xea\x55\x5d\x8d\x2f\x35\x78\xa9\x96\x8a\x52\x28\x2d\x17\x2d\x3d\x0a\x50\x03\x9d\x9c\x5c\xec\x39\x47\xc4\xc1\x42\x99\x69\x9e\xe8\xf1\xa4\xa7\x0f\xf6\x86\xf9\x9d\x54\x63\x3f\xd5\x98\x65\x39\x0e\xb2\x42\x65\xbd\x02\x33\x34\xa0\x0c\x02\x68\x00\x6d\x94\xc9\x17\xca\xe4\xb3\x54\x4f\x17\x89\x99\xe6\xca\xcc\x0a\x65\xa6\x1a\x61\x0e\x08\x73\x63\x4c\xbd\x1d\xc0\xde\xd3\x05\xcd\x64\xb5\x1e\x03\x08\x68\x69\xbe\x70\x5d\x82\x17\x80\x12\xc8\x00\x00\xc0\xc1\xc1\x81\xcd\x82\xaf\x3d\xc4\xf6\x29\x9f\x3e\xeb\xca\xdb\xa5\x7b\x96\x2c\x2a\x10\x70\xae\x3d\x2e\xd2\x00\x10\x12\x20\x16\xe0\xd8\xe7\x3a\xee\x60\x30\x50\x4f\x3c\xf1\x04\x95\xcb\x9a\xf2\xe8\x73\x79\xc5\xbf\x86\x6c\x38\x4f\xd6\x1f\x3a\xee\xbd\x7b\x90\xab\x8b\x00\x40\xf6\x95\x90\x5f\x68\x03\x15\x69\x77\x50\xbd\x0b\x0b\x3d\x20\xc7\x34\x80\x46\xb2\x94\xd0\xd3\x4b\x1c\xc4\x60\x0b\xc9\x54\x8f\xfc\x8e\x67\xb2\xb7\x65\x6f\x25\x7f\xf3\xe6\xfa\xfc\xfa\x71\xbf\xd8\x37\xc4\x34\x48\x7e\xe9\xed\xb8\x4b\x16\x97\xbd\xbd\x3d\x20\xa0\x25\x04\x3a\x25\xe4\xcc\xdf\x5d\xca\x3c\xa4\x2c\xa4\x5f\x89\x9e\xc6\xe1\x32\xc4\x0e\x00\xbc\x5d\xfa\x06\x1c\x2a\x83\x94\x16\x97\x57\x92\xd9\x37\x20\x4a\x32\xc5\x74\xc6\x2e\xb3\x98\x58\x4b\x85\x2b\x2f\xae\x32\xa6\x61\x21\xe5\xe5\x9a\x91\xc5\x2a\x9e\x98\x76\x10\x03\x0a\x62\x40\x86\x2f\x4d\x49\x2e\x17\x88\xee\xea\x5c\x7d\xc1\x27\x4b\xec\x20\xcf\xcb\x3f\x34\x80\x84\xc0\x91\xef\xd9\xe7\x27\x39\x5a\x7e\x0a\xdc\x75\x06\xb0\x2c\x5b\x68\x52\xe0\xaa\x4f\xaf\x6c\xaf\xbf\xfe\xba\x06\x28\xad\x11\x16\xbc\x54\x63\x8a\x95\x93\x1e\x91\xb6\x7e\x9a\xea\xda\x0a\x30\x64\x50\x82\x97\x39\x00\x4c\x0d\x42\x96\x27\x26\xcd\x93\xea\x52\xd4\x0c\x52\x04\x48\xd1\x34\x72\x1a\x00\x00\x2c\xf9\x99\xd2\x72\xa3\xa1\x99\x84\xda\x09\xa9\x05\x26\xf5\xad\xb8\x95\xae\xa7\x93\xd6\xd6\xb7\x89\xc8\x49\xa2\x3a\xef\x37\x6e\xdc\xf0\x95\x47\xa8\x1e\x24\x1a\x60\x34\x3e\x1e\x9c\xd6\x17\x8f\xcb\xe4\x1a\x67\x9c\xbc\xed\x1e\x12\x29\xb1\x18\xc1\x43\x34\x3e\x9e\xb5\x90\xd3\xe9\x54\x7f\xfb\xdb\xdf\x86\x8f\x7e\xf4\xa3\xb4\x61\xb6\xae\xf8\xa7\xd6\x96\xcd\x71\xba\xbd\x31\x49\x2f\xa7\x85\xda\x00\xa0\x20\xc5\x6e\x88\x35\xf5\xb1\x33\x8b\x0d\x38\x30\x29\x41\x89\xa9\x36\xe3\xd2\x7d\x30\xed\x2b\xfe\x9d\x9b\x56\xaa\x70\x17\x88\x89\x72\x58\xee\x90\x01\x00\x98\xa7\xe6\xf8\xed\xf5\xd9\xb5\xbd\xe1\xe2\xf6\x22\x31\xc7\x06\x8c\xbd\xce\xb9\x65\x6d\x21\x1d\xa9\xfe\x36\x85\x5d\x22\xb2\xe5\x06\xb2\x02\x04\xc1\xdf\x37\x88\x4b\x03\x94\x6b\xe0\xeb\x02\x38\xa4\x41\xcf\x97\x26\xa7\xf1\xcd\x9e\x43\x80\xc9\xa5\xf8\x7d\x79\x89\x01\x63\xd2\xb3\x24\xb3\x2f\x1f\x2e\x79\x42\x7c\xf8\xbb\x0b\x78\x85\x06\x71\xd7\x20\x17\xca\xab\xab\xce\x24\x00\xd0\x05\x90\x74\x51\x6a\x31\xca\xd6\x55\x5e\x34\x7e\x8c\xf2\x74\xf1\x88\x0d\xb7\xfe\x96\x36\x54\x3e\xb1\xfa\x59\xe2\x21\xf5\x11\xfa\xee\x2b\x13\xa9\xdc\x42\xc0\xd4\xd5\x3e\x7d\x00\xdc\x35\x80\xba\xe4\xec\x52\x57\x4b\xbc\xee\xdd\xbb\x07\xe7\xce\x9d\xab\x37\xeb\x42\xa9\x53\x53\xa8\xc0\x0b\x00\xd0\x2b\x25\x2c\x60\xb1\x20\xa3\xfc\x3c\x40\x09\x30\xec\xbe\x98\x66\x1b\x03\x42\x6a\x00\x94\x41\x51\xbf\xd8\xbf\xfa\xe6\xde\x8a\x37\x3d\x70\x51\x03\x95\xea\xd9\xd2\xb9\xac\xed\x1a\xa0\xd9\xd3\x32\x1c\x0e\xa5\x89\x87\xab\x0d\x48\xe5\xe7\x6b\xbb\x31\x7a\xdd\xa7\x57\x7c\xcf\x56\xbe\xe8\x3e\x9f\x06\x84\xe1\x89\x87\x3a\x61\x8c\x52\xe6\xfe\x1a\xa0\x7d\xbd\xbf\x31\x46\x01\x80\x3d\x6b\x5f\x83\x16\x30\x90\x0d\xf2\x64\xf4\xd0\x71\xf6\xe8\xea\x3c\xb9\x84\xc6\xa4\x50\x83\x93\x36\x74\x11\x56\x63\x6a\xb7\xb4\x17\xa6\x72\xf5\xf1\x69\x5f\x1c\x68\x2f\x47\xb5\x89\x84\x80\xa5\x7d\x2f\x94\x1c\x2b\xf0\x02\x70\x30\xc8\x6f\xbe\x75\x66\x76\xfd\xa4\x57\xec\x9b\xe6\xa2\x39\xbb\xc7\x85\x82\x97\xba\x1e\xaa\xb2\x92\x94\x52\x48\xe9\xf9\x06\x40\xc9\x3f\x34\xa8\xf9\x94\xaa\x2b\x5c\xea\x18\x3c\x1f\x3e\x99\x68\x1c\xda\x39\x79\xa7\xf5\x29\x41\xde\xd1\x7d\xb2\x72\xe7\xe3\xcd\x01\x0f\x8f\x47\x7f\x39\x3f\x57\xa7\x0d\xd5\x93\x2b\xef\xbe\xfe\xcd\x95\x85\xe4\x62\x81\x6a\xa8\x1d\x50\x3f\xdf\x40\x46\xd3\xec\x3a\x68\x53\x3e\x3c\x5f\x21\xdd\xe5\xa3\xf1\x29\x5b\x97\x8b\x01\x07\x52\x1c\x5f\x9f\x95\xca\x4c\xa2\x0d\xa5\x25\xc5\x73\x81\x6b\x69\x40\xe1\x71\x79\xda\xbc\x5f\xb9\x68\x63\xc7\x0e\x5e\x3f\xa1\x3e\x21\xc5\x57\x00\x00\x5f\xfc\xe2\x17\xf5\x6f\xff\xf6\x6f\xab\x33\x67\xce\x50\x9a\x9c\xc9\x4c\xbf\xae\xac\xab\xf0\xcc\x18\x93\x61\xf9\x61\xc6\xac\x7a\x6f\x2e\x43\xad\x8c\x00\x76\xb2\x4d\xf8\xd8\x93\x3e\x76\x13\xad\x26\x16\xf3\x1a\x98\xd0\xef\xcd\x41\xb3\x2c\x54\xef\x67\x01\x72\xad\x3f\x3d\x45\x44\x0e\x62\xc0\x78\x3c\xe6\xf9\x8d\xd1\x7f\x12\x60\xe1\xe5\x27\xbd\x87\x74\x8b\x14\xcf\x07\x48\x42\x40\xa6\x95\x6e\x52\x3d\x84\xce\xd6\xd3\xbb\x10\x90\xbd\x6b\xf2\x4e\xb7\x7f\xf0\xc4\xf8\xb9\xec\x9a\xcf\xa3\x8f\x3e\xaa\x9e\x78\xe2\x09\x0b\x54\xb0\x72\x09\x94\xf7\xcc\xa4\x88\xd8\x07\x80\xbe\x32\x30\x3c\x37\x4e\x1f\x7e\xf7\xbd\xe1\x87\xce\x8d\x7b\xcf\x25\x80\x7d\x9b\x58\xfb\x7f\xe3\xc4\xe3\xc8\x0c\x5f\xf0\xad\xb6\xd2\x3e\x94\x36\x8d\x8c\x5c\x78\x1c\x7a\xba\x69\x39\xac\x61\xba\x48\xcc\xf8\x87\x5b\x93\x7f\xbb\x7e\x6e\xfa\xfd\x49\xa6\xef\xd1\x63\x70\x88\x38\xb1\x48\xbc\x3a\xb3\x6f\xaf\x77\xb6\xe0\xc5\x30\x6b\x0b\x5d\x29\x73\x9d\x91\xa7\xf5\x23\xad\xa2\xd9\x5f\xcb\x4f\x3a\x9f\xcf\xe9\xa5\x76\xe4\xbb\xb7\x81\xc7\xf3\xdd\x1d\x60\xe9\x91\x85\xbb\xee\x15\xe0\xef\x9c\x0f\x0f\x73\x95\x85\x94\x8e\x54\x2e\x3c\x6d\x4e\xcf\xe5\xe6\x65\xc5\x79\x6b\x47\x98\x2b\x2d\x97\x9f\x2f\x8c\xfb\x4b\xef\xbc\x4e\xba\xf0\xf5\xb9\xa5\x3d\xf2\xd0\x28\x2a\x9a\x26\xd7\x23\x3c\x9e\xab\xcd\xc5\x28\xd5\x98\xf6\x46\xf9\x49\xf5\x6d\xf5\x98\x4f\xd7\xf9\xca\xce\x27\x97\x75\xb4\x2f\x2b\xf2\x6b\xd3\xe5\xed\x1b\x84\xb8\x92\xbf\x2d\x6f\xba\xaa\xae\x59\x3c\x5f\x9f\x71\x95\x9b\x2d\x7b\xca\x8f\xcb\x2d\x8d\x13\xae\xfe\x42\xe3\xd0\x7a\xa0\x03\xb3\x4b\x07\xf1\xbe\x6d\x00\x00\x5e\x79\xe5\x15\xf3\xd2\x4b\x2f\x99\x67\x9f\x7d\x16\xb1\xfc\x14\x80\x01\x28\x75\xa9\x29\x2f\x7c\xb1\x16\x17\x43\x96\x8e\x8a\x0a\x44\x14\x50\xde\x9b\x95\x23\xe2\x0c\x4a\x00\x32\x83\x72\x62\x39\x83\xea\x8e\x95\xea\x53\x2c\x76\x89\x7f\x82\xd5\x15\xfd\x76\xf3\x6d\xa5\xd3\x4f\xa0\xbc\x97\x65\x5a\xe9\xf9\x59\xc5\xc3\x5e\x2e\x4a\xd3\xa4\x17\xcd\x69\x80\x72\x7c\x79\xcf\x7b\xde\x83\xdf\xf9\xce\x77\x78\x5b\xe5\xe5\xca\xeb\x86\xfb\x53\xe7\xd3\xd9\x9c\xce\xa5\x57\x5d\xed\x91\x03\x4e\x2e\x97\xab\xef\xf0\x74\x97\x2c\x2e\x1c\x01\x03\xb4\x1b\x1f\x30\xfa\x18\xb4\xe4\x72\x1a\x00\xe0\x9d\xef\x7c\xa7\xfa\xc5\x5f\xfc\xc5\xa5\xc1\xdd\x1e\x87\x26\xdf\x27\x4a\x57\x16\xc9\x70\xeb\x24\x3b\xbf\x31\x49\x2f\xa7\x1a\xd7\x69\x0b\xc7\x76\x3c\x30\xa4\xfd\x57\x8b\x47\xcd\x3b\xb9\x62\x19\xa0\x5a\x1c\x32\xd0\x2c\xf5\xd4\x5f\x69\x96\x81\x8f\x01\x6c\xde\x5b\xfe\x64\x33\x2e\x2c\x03\x19\x68\x85\x01\xd8\x23\xda\x07\x2b\xf9\x9b\x3f\xda\x98\xbe\x76\x92\x15\xbb\x06\x5b\x9b\xb2\xec\x91\xb7\xda\x64\x89\xec\xcc\x3e\x00\xc0\xbb\xdf\xfd\x6e\xf5\xc3\x1f\xfe\x90\xd6\x87\x84\xb8\xbb\xf8\x87\x66\xd7\xd4\xf9\xac\x0e\x3e\x7f\x29\x6d\x4e\x17\x83\xe8\x69\x1c\x2e\x8f\x6b\xa6\xe8\xca\xa3\x24\x8f\xc4\xdf\x57\x2e\xae\xf4\x79\x98\xc4\xcb\x15\x26\xc9\x12\x92\x31\x26\x2f\x3e\x17\x93\x6e\x8c\x5f\xcc\x0c\x8b\xff\xc6\xca\xe2\x9a\x05\x86\xf2\x1b\x92\xc3\xe7\xcf\x1d\xcf\x63\x4c\xbb\xf1\xc9\xc7\xe9\x5c\x72\xaa\xc8\xf8\x21\xff\x98\x72\xe5\x8e\x87\x4b\xf4\x52\x1e\x5c\xe3\x85\xcb\xb9\x64\x75\xc5\x8f\x91\xab\x76\xd6\x5a\xf1\xfc\xf3\xcf\xdb\xcd\xba\x76\xa2\x99\x57\x5b\x14\x6a\x4b\x09\xb1\xae\xd4\xb7\xed\xd2\x3f\x6e\x69\xa1\xba\x9f\x3c\x5b\xab\x4b\x7d\xff\x0a\xdb\xb3\x38\xaf\x64\xae\xc3\xe9\x7e\x16\x7a\x4f\x0b\xb5\xb4\x08\xe5\xc5\x75\xac\x54\x1e\xae\x32\x74\xf5\x0d\x29\xdc\x37\xfe\xfb\xd2\x70\xc9\x15\xea\x3b\xf5\xb3\x34\x88\x48\x0d\x0e\x84\x77\x29\x61\x29\x51\x1b\x2e\x29\x67\xb8\x71\xe3\x06\x57\xb6\xf5\x11\x68\x7a\xd6\x1e\x11\xab\x4d\xb9\xd9\xbb\x86\xb3\xe4\x12\x00\xb5\x82\x98\x66\x8a\x56\x7f\x01\xda\x5e\x43\x67\x37\xc8\xda\xa7\x66\xc3\x6c\x7d\x51\x1d\xf1\xa6\x20\x88\xfe\x1a\x24\xd3\x04\xdf\xde\x17\x1b\xc1\xb5\x21\x97\x85\x2d\x12\x33\xfd\xd1\xd9\xd9\x77\xee\x8c\x16\x6f\x17\xca\xd4\xc7\x9f\xa1\x39\xfa\x4c\xcd\x85\x76\x23\xae\xdd\xb8\x4c\xbf\xfe\xec\x1a\x1c\xa5\x7a\x04\x16\xe6\x1b\x6c\xa4\x7a\xe4\x75\xb9\x54\x87\xcc\x71\x7e\xf4\x4f\x31\x3a\x29\x2e\xe7\xc1\xfd\xa9\x73\xb5\x53\x29\x1f\xae\xb2\xa0\x69\xc4\x0c\x72\xae\xb4\x7c\x8a\xd4\x55\x56\x52\x3a\xae\xbc\x52\x3f\x57\x1d\x5b\x1a\x69\x52\xc2\xf9\x71\x7f\xa9\xec\x25\xde\x2e\xb9\x7d\x72\x85\x14\x5a\x0c\x18\xe0\x2e\x66\x30\xf3\xc9\x21\xea\x28\x70\xd7\x55\x97\x01\x3e\xa6\xdd\x48\x74\x52\xfd\xfa\xf8\x75\xf1\x77\xe9\x77\x5f\xdb\x0c\xb9\x98\x41\x2b\x54\x16\x31\xe1\xae\x72\x89\x76\xfd\x7e\x5f\x01\x2c\x7d\x49\x9a\x6f\xca\xb5\x3a\xd8\x6e\xa2\xb5\xa7\x7e\xec\x5d\x2b\xc7\x00\x70\x88\x88\x87\xd5\xef\x3e\x00\x1c\xb2\xbf\x7d\x80\xf2\x3e\x2e\x1b\x07\x11\x8f\xc9\x33\xbd\x9b\xcb\x5a\xd7\x5b\x13\xd5\x4a\x2e\x1f\x68\xe1\xe5\x23\xb9\x98\xf6\x1d\xea\xa3\xb1\x7e\xd6\x5f\xe2\xed\x03\x57\x21\x39\x34\x80\xff\x38\x74\x97\x86\xe1\x43\xf1\x92\x9f\x02\x00\x7d\xf9\xf2\x65\xf5\xda\x6b\xaf\xd9\x46\x53\x87\x59\xe4\x8a\xcd\x47\xb0\xd2\x2c\xc7\xc1\xd9\x49\x6f\xfb\xec\x38\x7d\xbc\xa7\xc9\xdd\x2d\xc6\xc6\x2d\x21\x87\x31\xd6\x6a\xd2\x4e\x5c\x02\x23\xf5\x2f\xb5\xb6\x10\x27\xd9\xb3\x5b\xe1\x66\x79\xc9\xa9\x75\x9b\x2e\x34\x97\xd3\xd9\x77\x30\x4d\x5e\x0d\x82\x3e\x1c\xe4\x37\x6f\x6c\x4c\xae\x4d\x7b\xc5\xb1\x69\x1f\x7f\x96\x8e\xc0\xd5\x47\xdf\x2c\x4f\xa1\x11\xc7\x28\x75\x57\x7d\x85\x90\xb4\x0d\xe3\x03\xba\x94\x86\x8b\x87\xaf\xad\xc4\xc8\xe4\x0a\x97\x9c\x2b\x4e\x57\x19\x42\xef\x5d\x06\xe4\x98\x38\x5d\xd2\x89\x51\xfe\xa1\xfa\x76\xcd\x8c\x5d\xf2\x84\xe4\xa4\x2e\xc6\xe2\x22\xd1\xba\xfc\x69\x7e\xba\xcc\x1a\xef\x47\x0e\x57\xfb\x0d\x59\x78\x62\xf3\x23\x39\x17\x50\x97\xf2\x1d\x7a\x8f\x91\xab\x8b\xd5\x28\xf6\x59\xe2\xef\xca\x87\x34\x79\x02\x07\x2d\xe5\xe9\xa2\x09\x3d\xab\xd9\x6c\x26\x96\x3d\xb5\x6c\x10\x7d\x5b\xeb\xbd\x6a\x42\x6d\xf7\xc5\xd4\x07\x5c\x4c\xf3\xe1\x46\x3b\xf9\xb6\xfc\xb4\x5d\x7e\x22\x96\x94\xa5\x1b\x6f\x01\x9a\xe5\x20\x60\x75\x61\x65\x11\xac\xf8\x5d\xfa\x51\x0c\x4d\x17\x7f\xd7\x84\xb7\x4b\xbb\x77\xe1\x0c\x6f\xfd\xa5\xe4\x85\x47\xee\x02\x58\x7c\xb4\xce\x4e\x65\x41\x0b\x0b\x03\x80\xa5\x4d\x4e\xe9\xca\x22\x19\x6e\x8e\xd3\x47\xd7\x66\xc9\x25\x65\x20\xb3\x96\x11\xbb\xe4\x42\xaf\xdb\x07\x68\x5b\x4e\x24\xd7\x0a\x27\xa0\x85\xaf\x00\xb9\xf8\xd8\xb4\x5a\xcb\x54\xcc\x8f\xdf\xd2\x6b\xbf\x02\x6d\x2a\xea\xb9\x32\xe3\xb7\xd7\xe7\xaf\xde\x5b\x5d\xdc\x2e\x10\xc6\x06\xcc\x1c\x4c\xeb\xab\x9f\x74\x13\x17\x05\x2d\xb4\x53\xd1\x32\x8d\xfd\xf5\x29\x26\x80\xe5\xc6\x17\x52\x92\x9c\x26\xc4\xab\x4b\x1c\x97\xc2\xa3\xf1\x63\xf2\x40\xe9\x42\x3c\x42\x79\x93\xc2\x42\x9d\x96\xcb\x10\x3b\xb8\xfa\xf2\x06\xc2\xbb\x4f\xb9\x87\xe4\x91\xf2\xc3\xd3\x95\xe2\x50\x19\x7c\x83\x7a\x17\xfd\x12\x3b\xa0\x4b\xfe\xa1\x74\x42\x32\xc5\x0e\xea\x92\xeb\xaa\x43\x63\xf8\xd8\xf7\x98\xfe\xe9\x4a\xf7\xb4\xe5\x1d\x02\x24\x3c\x6e\x8c\xce\xf0\x95\x65\xec\xc0\x76\x9a\x7a\x75\xc6\xa7\x47\xa5\xb1\xb9\x43\x8c\xea\x0a\x0d\xed\x71\xc9\xca\x66\xef\x80\xa9\xaf\xef\x00\xa8\x0f\x4e\xd4\x60\x83\x82\x97\x2a\xbc\xce\x27\x7d\x06\xa8\xef\x63\xd1\x84\x87\xc6\xf6\xc9\xd1\x50\x9e\x63\xda\x9d\xaf\xac\xa4\xba\x8e\xa9\xab\xd3\xb6\x3b\x49\x47\x79\xeb\x2f\x75\x04\x84\x14\x68\x8c\x50\x2e\x50\xd3\xe2\x4b\x2f\x9d\x03\xa8\x91\x6a\x0d\x58\xa0\xfc\xa0\x62\xb6\x36\x4b\x36\xcf\x8e\xd3\xc7\xfa\xb9\x3a\x5f\x03\x82\x0a\x21\x2c\x5d\xe3\x6f\xff\x33\x33\x0a\xdd\x11\xb6\x04\x46\x2a\xf2\x52\x86\x06\x00\xb9\xc0\x0f\xb7\xdc\x48\xb4\x2e\xd0\x83\x60\xa0\x40\xc8\x8f\xfb\xf9\xce\xcd\xf5\xd9\xb5\x49\x4f\x1f\x42\xb3\x91\x8b\x9a\x26\xed\x9a\x67\xfd\x47\x01\x8b\xa3\x21\xc7\xcc\x78\x7c\x03\xac\xa4\x38\x7c\xf5\x4c\x1b\x5e\x68\xa0\x77\x0d\x90\xbe\x38\x52\x3a\x2e\x9a\xd0\xac\x4e\x72\x2e\x9e\x31\x03\x27\xcf\x03\xf5\x93\xf8\x84\xde\x25\x99\x5c\xfd\x27\x26\x4f\x1c\xa4\x85\xfa\x32\xaf\x47\x57\x58\x48\x0f\x84\xc0\x92\xcb\xc5\x0c\x8c\x34\x8d\x58\x90\x70\x5a\x79\x42\xbc\x63\xfb\x08\x95\x83\x0f\x86\x5d\xd2\xa6\xf1\x62\xda\x91\x94\x36\xe7\xe9\x9a\xd9\xfa\xe4\x90\xde\x7d\x2e\xa6\x9e\x24\x99\x62\xcb\x88\xc7\x8b\x95\xa5\xe5\xac\x3e\x25\x17\xd5\x01\x94\x60\xa5\x05\x22\x80\xf5\x13\x02\x64\x80\xf9\xd7\x1e\x04\x9c\x50\x19\xa4\xfa\x68\x7d\xe5\x39\xa0\xeb\xb9\x0b\xe9\xfe\x18\xfd\xcf\xe5\x39\x4d\x7a\x5d\xea\x98\xfa\x47\xd7\xb7\x35\x73\x49\x83\x48\x48\x31\x74\x41\x49\xa2\xb2\xfb\xcc\x67\x3e\xb3\xa4\x28\xc9\x32\x51\xbd\xf1\xa9\x57\xe0\x60\x7d\x92\x6c\x9d\x99\xa6\x17\x7b\xba\xfc\xa0\x62\x49\xbc\x0c\x32\x9a\x77\x5c\x5a\xfe\x11\x41\x88\xa9\xd1\x4f\x63\x39\x61\x5f\xcc\x2a\x01\x30\xf9\xfe\x11\x08\x27\x88\x58\xfa\x86\xc2\x16\x92\x86\x05\x4f\x8b\x44\x4f\xef\xad\x2e\xde\xd8\x19\x2d\xde\xd6\xaa\xb6\xb2\xd0\xbb\x5b\xa8\xc5\xa5\xb6\xb6\x10\xc4\xde\x2a\x4b\xf6\x2b\xf9\x73\x80\xc0\xc3\xf8\x20\xe7\x8a\x1b\x03\x76\x62\x9f\xbb\xd0\x75\x49\xe7\x34\x72\x84\xd2\xf1\x0d\x3a\xa7\x51\xf6\xb1\x65\xc2\x9d\x6b\xa0\x39\x8d\x3c\xae\x78\xa7\x29\x7b\x17\x4d\xec\xc0\xe8\x0b\x97\xda\x1f\x6f\x97\x2e\x85\x2c\x59\x87\x62\x81\x69\xcc\x3b\x78\xc2\x1f\xd4\xb3\x8f\xb7\x4f\xbe\xae\xe5\x1d\x2b\x07\x8f\x1f\x3b\xd1\xed\x2a\x9f\x8b\x37\x4f\x87\xca\x2e\xa5\xe3\xf2\x13\x79\x73\x00\x53\xe9\xfd\xfa\x53\x01\x15\x90\x51\x00\xf5\x44\x32\x34\xa1\xaa\xd3\x64\x20\x08\x08\x8f\x56\x78\xf5\x5c\x6f\x05\x60\xd7\xf8\x9f\x06\x30\xf8\x26\x88\x5c\x66\x89\x3e\x06\xf0\x48\x79\x8e\xd1\x57\xb1\x6d\xbd\x8e\x97\xc0\xf2\xf1\x23\x7e\x9c\xd0\x77\x5c\x90\xff\xb9\x32\x23\x66\xf4\x7b\xdf\xfb\x9e\xb9\x72\xe5\x8a\x35\x80\xa8\xea\x2f\x81\x72\x97\x76\x0f\xcb\x63\xd0\x83\xd1\x2c\xd9\x78\x74\x7f\xf0\xfe\x0b\x87\xfd\x0f\xf5\xf3\xe4\x7c\x73\x52\xa8\xbd\xc7\x04\x80\x2f\xdf\x34\xdb\x74\x97\xf7\x9b\x50\xa0\x42\xac\x36\xd2\x51\x68\x6c\x36\xfd\x3a\xd6\x19\x1b\x0b\x4c\x0d\xa2\x48\x6a\xe4\x6a\x5e\x04\x00\x8d\x90\x1f\x0f\x8a\x9d\xd7\xcf\x4d\xbe\xf9\xa3\xb3\xb3\xd7\x0b\x34\x07\x00\x70\x52\x6d\xd2\x9a\x54\xc7\xe7\xa6\xd0\x00\x97\xa2\xda\x94\x6b\x00\xc0\xbc\xf0\xc2\x0b\x5a\x6b\x8d\x7b\x7b\x7b\x58\x14\x85\x2d\x3f\xe9\xb8\xa1\x75\xbc\x11\xf0\x3a\xb5\x45\xc2\x1b\x2e\xaf\x6b\x1a\x87\xa6\x27\xa5\xcf\x65\xf1\xc5\xf1\x1d\xad\xf4\x1d\x8b\x94\xfc\xbb\xca\x13\xcb\x1b\xc9\x9f\xf6\xc4\x91\xf2\x1a\x4a\xc7\x86\x41\x40\x6e\x9b\xb6\x75\xbe\xbc\xd2\x34\x81\xbd\xd3\xb6\xe0\x93\x27\x54\x8e\x4a\xf8\xe5\x61\x94\xa7\xd4\x36\xa5\xfc\x73\x47\xf5\x12\xcf\x17\xd7\x53\x52\x99\x71\x39\x62\x74\x95\x24\xbf\x2b\x2e\xef\x2b\x12\xad\x54\xfe\x9c\x86\x96\x8f\xd4\x4e\xa5\x70\x5e\x2e\x21\x7e\x94\xa7\x4f\xb7\x4b\xf2\xf1\x36\xe2\x4b\xd3\x15\xcf\x25\x13\x75\x31\x79\x90\x74\x53\x48\x6e\x5e\xa6\xde\x36\xf1\xd2\x4b\x2f\x99\x97\x5e\x7a\xc9\x8e\x51\x06\xcb\x63\xd3\xf6\x17\xc8\x33\x05\xd4\x96\xaf\x06\xa8\xbf\x27\x64\xfd\x0a\xc6\xc3\x00\x80\xdd\xfb\x52\xf3\x7d\xe1\x85\x17\xf4\x4b\x2f\xbd\x64\x5e\x7e\xf9\xe5\x5a\xa6\xd9\x6c\x16\x53\x6e\x92\xa3\x79\xf5\x95\x8f\xd5\x2d\xb6\x3d\x69\x07\x3d\x0a\xcf\x3c\x7e\xa8\xce\xb8\x93\xda\x8c\xab\x2f\x20\x00\x18\xba\x39\x97\x23\xaa\x10\x3a\x05\x70\x23\x2f\xea\x9c\x28\x91\x2e\x13\x11\xe4\x6a\xff\x52\x28\xaf\x4f\xce\x46\xb3\x74\x7d\x63\xd2\xbb\xd8\xcf\xd5\x76\x69\x0c\xb1\xc7\x9b\xcb\xfc\xd1\x92\xa2\xcb\x40\xf4\x42\xb9\xe6\x6e\xdc\xe6\x2c\x51\xbd\x06\x49\x85\x62\x47\xa1\x5b\x41\x8e\x0c\x12\x83\x0a\x38\x23\x93\xa0\x5c\x99\xe9\xfe\xca\xe2\xe6\xed\xb5\xf9\x9b\x8b\xd4\x8c\xc1\x94\xd6\x16\xba\xa3\xdc\x5e\x36\x04\xd0\xda\x90\x5b\xa3\xf1\x6f\x7e\xf3\x9b\xbc\xae\xac\x93\xde\x7d\x2e\x84\xc6\x25\xe4\xeb\x4a\x9b\xf2\xa0\x61\x1c\x31\xfb\xe4\x0b\x59\x0e\x38\x4f\x4e\x2f\xcd\x7e\x5c\x8e\xe7\x87\xfb\xf3\x34\x5d\x3c\x68\x1c\x29\xcf\xd4\x85\xac\x01\x3e\xd7\x85\x96\xe7\x4d\xaa\x3b\x57\x1c\x5f\x7b\x90\x66\x46\xb1\x2e\x34\xbb\x76\xc9\x23\xd1\xf8\x66\x9f\xa1\x36\x14\x23\x43\x97\x78\xd4\xb9\x66\x8a\x94\x6f\x97\xb6\x11\xfb\x1e\xf2\x97\xd2\x89\xa1\xe5\xf1\xba\xe8\x7e\x1e\x8f\xf7\xd7\xd8\xb8\x3e\xe7\x2b\x07\x1b\xdf\xd7\x3e\x24\x5e\x2d\x9e\x7c\x99\x86\x7c\x36\x40\xda\x67\xe8\x74\xc2\xa6\xdf\xda\x45\x9e\x14\x72\x8d\xcd\x3e\x19\x62\xe2\xc5\x96\x0f\x0f\x93\xac\x27\xfc\x5d\x4a\xdb\xd7\xaf\xa3\xfc\xa4\x6f\x15\xb9\x84\xe6\x8d\xcf\xa5\xb0\x7c\x15\x58\x87\xfd\xfc\xcf\xff\x7c\xad\xe0\x85\x06\x90\xda\x13\x45\x69\x81\xd9\x99\x49\xba\xbd\x3e\x4d\x2e\xa6\x1a\x47\xb5\xe5\xa2\xfa\x30\x62\x8d\x11\x8c\xc5\x1c\xa5\x4f\xbd\x64\x44\x40\x84\x31\x08\x68\x97\x81\x0c\x50\xf3\x5c\xf9\x6c\x2a\x68\x53\x83\x19\xcb\xab\xfc\x2d\x3f\xe2\x48\x64\xb5\x80\xa5\x36\xdd\x40\xf5\xb1\x46\x39\xf3\xc6\x18\x30\x0a\xf4\xa4\x57\x1c\xde\x5d\x5d\xbc\xb1\x3b\xcc\xef\x40\xfb\x24\x91\x3d\xcb\x6f\xef\x6d\xd1\xe4\x8f\x5f\xed\x0f\xd0\xad\xe1\xd8\x67\xc9\x49\xf4\x12\xef\x50\xda\x2e\x39\xba\x74\x0c\x97\xf3\xe5\xc9\x27\xa3\x12\x68\x7c\xfc\x68\x98\x4b\x39\xb8\xd2\x97\xd2\xe1\xa0\xcd\x25\x67\x88\xb7\x14\xcf\xe5\xef\x52\x5e\x3c\x3c\x54\x6e\x2e\xfe\xbc\x8d\x48\x83\x59\xec\xe0\x48\xe3\xc6\x94\xeb\x69\xe8\x7d\x75\x12\xeb\x0f\x42\x98\x0b\x3c\xf3\x67\x1e\x9f\x0f\x26\xdc\x8f\xba\x98\x81\xc7\xe5\x62\xfb\x0c\x77\x31\xe5\xed\xa2\x8f\xe1\x77\xbf\xcf\xa1\xfa\x00\x16\x7e\xdf\xed\x64\x75\x75\x55\x9d\x9c\x9c\x68\x80\x36\x90\xf9\xc2\x17\xbe\xa0\xec\xe6\x5b\x80\xe5\x31\x45\xd8\xa4\x5b\xff\x5a\xb0\xf2\xc9\x4f\x7e\x52\x01\x00\x7c\xe4\x23\x1f\x51\x5f\xff\xfa\xd7\x63\xe4\x96\x9c\x6b\xe2\xe5\x9a\x1c\x75\x29\x07\xce\xe7\x34\x65\xc9\xf1\x43\x17\xde\x4b\xb4\x76\x89\x06\x1c\x44\x5d\x5c\x6c\xa7\xaa\xe9\x9e\x7f\xfe\x79\x55\x5d\xef\x6f\xff\x52\x2c\xaf\x53\x1e\x00\xc0\x10\x00\x46\xa3\x69\xb2\xf5\xcc\xdb\xa3\x9f\x7b\x6a\x67\xf8\x7f\xac\x4d\xd3\xf7\x02\x98\x1a\xa8\x34\xdf\x18\xa2\x76\x17\x6b\x57\xb2\x00\x45\xfe\x1a\x73\x49\xd1\xd8\x6a\x10\xe4\x1b\x6e\xdb\xf4\x6e\xab\x8b\xe5\x47\x25\x92\xdc\x3c\xd1\xd3\x5b\x6b\xf3\xef\xfd\xc7\x23\x47\xff\xf0\xc3\xad\xe9\x2b\xc6\x98\x7d\x28\xcf\xf9\x1f\x42\x75\xa6\xbf\xfa\x16\x86\x3d\x0a\xad\x81\x9c\x2a\xd2\x5a\xc3\xef\xff\xfe\xef\x5b\x76\x92\x02\x04\xcf\xbb\x04\x60\xa4\x46\xe4\xe2\x41\x69\x5c\x75\xed\xea\x34\xb1\x6d\x43\x92\x89\xf3\xf6\x0d\x5e\x10\x78\xf7\x0d\xb6\x31\xf2\x74\x19\x08\x63\xe3\xf0\xf0\x50\x9e\x5c\x65\xea\x52\x00\x52\x7c\x9f\x9c\xa7\xc9\x0f\x4d\x0b\x1c\xe1\xa7\x75\x5d\x07\xec\x10\x8f\x98\xb2\x8f\x49\xb3\xb3\xc2\x0d\xd0\x84\x78\x77\x75\xa7\xc9\x4b\x57\xde\xff\xab\xdd\x69\xc1\x54\x0c\xfd\xfd\xb4\x0d\xd1\xfd\xd2\x2f\xfd\x92\xfa\xbb\xbf\xfb\xbb\x1f\x57\xdf\xe8\x22\x57\x4c\x5e\x4e\xcb\x3b\x94\xe6\x7d\xbb\xd8\x06\x1d\x0a\xf3\xa1\x3a\xee\x6a\xd0\x62\x3d\xc8\xf1\xb3\x1a\xc0\x00\x40\x0a\x06\xd2\xd1\x3c\x59\x5f\x9f\x26\x17\xfb\x0b\xb5\x55\x2e\xf1\x54\x0b\x3d\xad\xaf\x2c\x13\xd0\x62\xec\x53\x7b\x09\xc8\x10\x38\xd3\xfc\x36\x8b\x4a\x95\x20\x84\x7e\xf9\xb7\xcd\x8f\xfd\x1a\x9a\x62\x23\x4b\xf9\x6b\xd3\x36\x30\x4b\xf4\xe1\xbd\xd5\xc5\x9b\x77\x57\x17\xb7\xa1\x3a\x3d\x54\xfd\xd1\xcf\xa7\x6b\xf6\x07\x88\x08\x45\x51\xc0\xdd\xbb\x77\x81\xf8\x87\x66\x20\xd6\x49\x0d\x90\x77\x48\xc5\xc2\x68\x1c\x4e\x2b\xc5\xe3\x61\x9c\x9e\xfe\xf2\x3f\xea\xb4\x23\xdc\x95\x57\x4a\xaf\x1d\x34\x20\xbc\x4b\x65\x20\xfd\xd2\x70\x2a\x03\x95\x8d\xb7\x7d\xfe\x1c\x2a\x3f\x1e\xc6\xf3\x20\x01\x4e\xee\x5c\x7d\x4f\x2a\x13\x57\x1d\x4a\x8a\x3b\x54\xc7\x92\xbf\xa4\x0b\x38\xad\xab\xfe\x25\x9e\x34\xff\x5d\xca\x80\xc6\xe1\x75\xef\x92\x35\x04\xc8\x24\xb9\xa8\x73\xb5\xa9\xd8\x7e\xca\xe9\x5d\x65\xe9\x93\x8f\xcb\xe2\x6a\x3f\x3c\x3d\x17\x3f\x57\x1d\xc7\xd2\x87\xc6\x85\xae\x74\xf4\xdd\x25\x87\xaf\x6f\xbb\xe8\x7d\xed\x8e\xbe\xbb\x26\x7b\xc1\x7a\xaa\x40\x4b\xcc\x38\xe9\xe3\xef\xaa\x37\x57\x3c\xe9\x3d\xa4\xdb\x79\x58\x97\x74\x42\x61\xb1\xe5\x45\xe9\x5b\xb4\xae\x0b\xe8\x24\xa5\x29\x39\x9e\x79\x69\xa0\xe0\x9d\x50\x4a\xa7\x06\x2f\xd5\x97\x3a\x15\x22\xa6\x89\x81\xec\xec\x38\xdd\x3e\x33\x49\x2f\xa6\x1a\xd7\x9b\x25\x1b\x43\xb0\x4a\x1b\xc4\x20\x36\xdf\x78\xb6\xcb\x3e\x00\x1c\xc6\x00\x58\xcb\x8d\xfd\x3a\xb3\x5d\x6a\x6a\x6d\xe2\x35\x34\x3e\x77\x36\x15\x9b\x2e\x03\x37\x86\x8a\x55\x3e\x14\xca\xcc\x8f\x06\xc5\xdd\x3b\xa3\xf9\x1b\x07\x83\x62\x17\xaa\x7d\x2d\xe4\x24\x11\xbd\x6c\xae\xfe\x5a\xa9\x2d\xb7\x3f\xf8\x83\x3f\x08\x95\x2f\x2f\xd7\xd0\x8c\x5c\xaa\x17\x29\x4c\xaa\x43\xa9\xd3\x4b\x7c\xa4\xf4\xb9\x2c\x3e\x3e\x34\x8c\xd2\xb8\xc2\x39\x1f\xd7\x8c\x81\x0f\xe4\x31\x65\x1b\x2a\x03\xfe\xec\x53\xb4\x3e\x5e\x9c\x1f\xcf\x8b\xc4\xd3\x35\x18\xbb\xf2\x16\x92\x95\xf3\x72\xe9\x01\x57\xfb\x70\x95\x7b\x57\x9e\x2e\x1e\xc0\xc2\x7c\xf4\x21\xa5\x1b\x93\x8e\x8f\x5e\xaa\x2b\xa9\x2c\x7c\x6d\xd1\xd5\x7e\x5d\x32\x85\xfa\x97\x8b\x5e\xd2\x0d\xb1\xe5\xe3\x92\xd9\xd7\xbe\xe8\xbb\x4b\xef\x84\xf8\xbb\xfa\xb2\xaf\x0c\x5d\xfc\x43\xed\x8e\x3a\x9f\x9e\x8c\x75\xae\x3e\xef\xd2\xdb\x2e\xdd\x17\xe2\x43\xe5\x8f\x91\xdb\x55\xbe\x31\x60\xc8\x17\x2f\xa6\x5d\xc6\xd0\xb9\xfa\xb0\x02\x58\xbe\xf2\x5f\x12\x86\xfa\x73\x3a\x29\x2e\x7f\x16\x07\x1c\x72\x55\xbd\x82\x12\xb0\x28\x28\x01\x4b\x7d\x14\xba\x57\xa8\xc1\xd9\x49\xef\xd1\xd5\x79\xb2\xad\x0c\x66\xcd\xe1\x9c\x72\xbd\xd0\xee\xed\x2e\x37\xda\x36\x09\xd7\x9b\x72\x0d\xb5\x7c\x50\x1b\x4b\xb3\x45\x17\x0d\x00\x56\x66\x1a\x43\xe3\x02\x30\xab\x0e\xf9\xa9\xac\x2b\xc6\x98\xfa\xdd\x34\x10\xa8\xda\x2a\x6e\x88\x4c\x06\x0c\x18\x98\x27\x66\xbc\xb7\x92\xdf\xba\xbb\xba\x78\x1b\x10\x5a\xf7\xb5\x18\x63\xe6\x92\xb5\xc5\x96\xd3\xd5\xab\x57\xf5\x67\x3f\xfb\x59\xdf\x80\xcd\x07\x6b\x69\x80\x8f\x51\x74\x52\x63\x91\x14\x0b\x4d\x47\xe2\xed\xea\x80\x2e\xde\xbe\x78\x3e\x3e\x31\x69\xb9\xde\x5d\xf9\x72\x3d\x77\x19\x10\x79\x1a\x21\x99\x38\xad\x8b\x8e\xfb\x49\xf5\xcc\xc3\x39\x8f\x18\xe0\xe7\x8a\x2b\xc9\xe9\x92\x81\xba\xd3\x94\x5d\x8c\x9f\x14\x16\xe2\x1d\x02\x69\xb1\xe9\x86\xea\xc5\x95\xb6\x34\xc0\xfa\x80\x45\x28\xed\x50\x5b\xe0\x34\x31\xbc\x5d\x7c\x62\xea\x99\xa7\x29\xbd\xd3\x81\x48\xfa\x8d\xed\x37\xa1\xf2\xf2\xe5\xe3\x34\x65\xec\xe3\xc3\xf3\xe4\x8b\xe7\xd2\x2d\xae\x71\xd6\x55\x06\xde\x7e\xe2\xb8\x36\xa3\x99\x90\x57\xc7\xba\x1d\x32\x2a\x41\x1e\x91\x9f\x87\x47\x50\xc6\x08\x7e\x4b\xe5\xe2\x6a\x24\x5d\x1b\x0f\xf7\x0b\xa2\x2e\x52\x70\x36\xac\xfe\xab\xac\x2e\xe9\xfa\x24\x5d\x3f\x3b\x4e\x1f\xef\xe7\x6a\xab\x0c\xc3\xd6\x37\x83\x9a\x13\x40\x0d\xf0\x00\x02\x3c\xea\xa3\xc9\xd8\x58\x56\x38\x8d\x41\x00\xbe\x44\x44\x4f\x26\x01\xa1\xa3\x46\x1e\x2b\xbb\xdd\xeb\xdb\x3e\xc1\x54\xfe\x47\x42\x67\x10\xf4\xa4\x57\xec\xde\x5b\x9d\xbf\xb9\xb7\x92\xdf\x05\x72\x8a\x08\x88\xa5\xc5\x18\x93\x1b\x63\xb4\xfd\xb3\x77\x07\xfc\xda\xaf\xfd\x9a\xfa\x93\x3f\xf9\x13\x5b\x37\x1c\x20\x72\x8b\x00\x90\x77\x4a\x07\x8c\x2e\xa4\x3c\xa4\xb8\xbe\xc6\x4c\xc3\xf8\xb3\xcb\x85\xe2\x84\x64\x0a\xc9\xe3\x7a\xf7\x3d\x73\xde\x21\xa5\xe8\x03\xf8\xbe\x38\xfc\xb9\x4b\x5e\xe9\xaf\x24\x9f\x8b\xb7\x44\x13\x8a\x13\xaa\x6f\x5f\x19\x85\x06\x72\x97\x8b\x51\xfe\x31\x7c\xbb\x28\x48\x69\x10\x8a\x91\x25\x54\xe7\x21\x79\xa8\x7f\xd7\x72\x8a\xe5\xdf\x85\xd6\x55\x0e\xe0\xf1\xe7\xe1\xb1\x65\xe2\x03\xc9\x3e\x17\x02\x2c\x31\xf2\x87\x40\x5e\x8c\xeb\x0a\xb0\x5d\xb4\x5d\xc0\xb1\xe8\xf8\x65\xae\x00\x50\x6f\x1a\xe6\xe1\xd6\xdf\x18\xa3\x2f\x5d\xba\xe4\x6a\xdf\xae\x49\x8a\xcf\xc5\xf6\xd5\x2e\x7d\x86\xc6\xd5\x00\xee\xa5\xa2\xfb\x71\x7c\x06\xc1\x13\xb6\x9b\x72\x39\x1a\xac\x01\x0b\x22\xa6\x89\x86\xec\xa1\x93\xde\xf9\xf5\x69\xf2\x58\x4a\x2f\x9d\x03\x00\x6a\xdf\x68\xf6\xbd\xb8\x0f\x81\x63\x2b\x0e\x5b\xe2\x69\xb1\xad\xb8\x7a\xee\x69\x59\x0e\x20\xa7\x98\xaa\xf5\x21\x69\x6b\x6e\xae\xcc\xf4\x60\x50\xec\xec\x0d\xf3\x5b\x8b\xc4\x8c\x41\xbe\x6c\x8e\x7e\xe0\xab\x75\xe1\x1d\x73\x5e\x34\x4a\x9c\x34\x9b\x8b\x99\x1d\xf3\xfa\x73\x29\x23\xa9\xc1\x87\x94\x21\x57\x38\xb1\x1d\xd3\x25\x13\xcf\x0f\xe7\x2f\xe5\x59\x1a\xf4\x7d\xca\x5a\x8a\x13\x02\x34\x52\xb9\x4b\xf9\x91\xf2\xe0\x92\xdb\x15\x9f\xcb\x1f\x03\xb6\x80\xd1\xf0\x74\x24\xf9\x38\xff\x90\xdc\xf7\x3b\x08\xff\x57\xbb\x18\x10\xe3\x8a\x27\xe5\xdb\x07\x2a\xbb\xf0\x3e\xad\x0b\xd5\x81\x2b\x3c\x26\xcd\xff\xd5\xf5\xab\x01\x00\x3e\xf7\xb9\xcf\xa9\x3f\xfe\xe3\x3f\x8e\x96\xe3\x13\x9f\xf8\x84\x7a\xf1\xc5\x17\xbb\x80\xa3\x07\x9d\x47\xa9\x6d\xc4\xb4\x13\x00\x00\x78\xe2\x89\x27\xd4\x47\x3f\xfa\x51\xb0\x79\xfe\xdd\xdf\xfd\x5d\xf5\x47\x7f\xf4\x47\x22\x38\x91\xdc\x17\xbe\xf0\x05\x05\xd0\x18\x0e\xae\x5e\xbd\xaa\xaf\x5f\xbf\x7e\xda\x3c\xc6\xe4\xe1\x41\xf0\x5e\x72\x12\x70\xe1\x11\xb8\xa2\x0b\x29\x65\x3e\xa0\x88\xb4\xec\xce\x16\xc5\xde\x53\xa5\x31\xdb\x98\xa4\x8f\xae\x2c\x92\x2d\x34\x90\x95\x27\x89\x2c\xd8\xa9\x00\x88\x41\x30\xd8\xec\x49\xb1\x4b\x46\xf6\x18\x74\x7d\x6a\xd9\x54\x34\xb5\xb9\x84\x9e\x91\x86\x1a\x7c\x2c\x9f\x28\x22\xe7\x84\x0c\x89\xd9\x22\x6b\x16\x88\x0c\x3d\x7f\x5d\x2d\x23\x61\x75\xe7\xcc\x2c\x35\xc7\xbb\xc3\xfc\xd6\xde\x4a\x7e\xdb\x80\x99\x23\x60\x7d\xf4\x19\x9a\x3d\x2d\x4b\x1f\x52\xf4\x1c\x81\x06\xe6\x47\x07\x13\x00\x59\x39\x4a\x40\x44\x0b\xfe\xfc\xd9\x35\xbb\xf1\xbd\xc7\x3c\x73\xe7\x6a\x47\xa1\xb8\xb1\x69\x75\x95\xcf\x57\x1e\x5d\xe2\x3c\xa8\x74\x1f\x44\x79\x77\x29\xc3\x07\x21\xab\x4b\xb9\x49\xcf\x5d\x06\xf4\xfb\xe1\x1d\xf3\x1c\x93\xa6\xcf\xcf\x15\xcf\x05\xf4\x24\x7a\xeb\xba\x96\x25\x8d\x23\xa5\x23\xe9\xf8\xd3\x80\xcd\xd8\xb2\x90\x40\x71\x0c\xaf\x96\xff\x6f\xfe\xe6\x6f\xaa\x3f\xff\xf3\x3f\xd7\x00\xe5\x00\xfc\xc2\x0b\x2f\xe8\x7e\xbf\x5f\x0f\xd6\xf4\x56\x73\x76\x1b\x6d\x7d\xf4\xf8\xf1\xc7\x1f\x87\x17\x5f\x7c\x51\x92\x23\xd4\x0e\xba\xb6\x9f\x2e\x6d\x2c\xba\xcc\x7f\xf0\x83\x1f\xe8\x1f\xfc\xe0\x07\x2d\x80\x42\x8e\x64\x03\x22\x2a\x9e\x77\xc7\x04\x58\x03\x2c\x1b\x11\x3c\x9f\x16\xe8\xd2\x46\xba\xe4\xdd\x35\x39\xf2\xca\x81\xdc\x23\x20\xd0\x03\x71\x15\xea\xa3\x80\x25\x33\xc6\x64\x00\x30\x40\xc4\x21\x00\xac\xaf\x4f\x92\xed\x8f\xbf\x7e\xe6\xb3\xef\xdc\x1b\xfc\x42\x3f\x57\xdb\xfc\xd6\x5b\x00\x0a\x19\xa0\x46\x2c\xc8\x68\x2c\x1d\x7f\x97\x78\x71\xbe\x36\xdc\x65\x6d\x59\x3a\x69\x64\x38\xa8\x29\x69\x0a\x34\xf9\x9d\xd1\xfc\xd5\x6f\x5d\x38\x7e\xf1\xd5\xed\xf1\x4b\x85\x82\x5d\x63\xcc\x3e\x96\x9f\x36\xb7\x9f\x3a\xb7\xdf\x29\xe2\x9f\x33\xa7\x8d\x29\x06\x99\xc7\x76\xba\x90\xb2\x73\x29\x1b\x17\xb0\x95\xf8\x73\x9e\x9c\x6f\xcc\xe0\x12\x23\xaf\x8b\x96\x77\x0a\xfe\xec\x0b\x73\xe5\xe1\x7e\xf2\xc7\x5d\x6c\x9e\xa8\x3c\x9c\xbe\x6b\x1e\x42\x03\x8b\x4b\x39\xc5\xd6\x8d\x44\x2f\xb9\xd3\x0e\x14\x5d\x9d\x54\x1f\xb1\xf1\x7c\xed\xb3\x8b\x5c\xa1\x78\xbe\xf7\x1f\xa7\x5e\xfe\x2f\xd3\xf9\x1d\xd2\x72\xd2\x79\xac\x09\x9d\xdb\x5f\xe4\xb7\x7f\x82\x7c\xee\x83\xb6\x73\x7c\x21\xff\x52\x79\xd4\x20\x6e\xe9\x9e\xb2\xb6\xf3\x82\xa7\xab\x57\xaf\xea\xcf\x7f\xfe\xf3\xea\x0f\xff\xf0\x0f\x35\x00\x80\x52\x4a\x69\xad\x1f\x44\x5b\x39\x2d\x48\x6e\x39\xdf\xb5\x24\x0f\xb2\x51\xd7\xca\x93\xa0\x63\x55\xa1\x43\x7b\x77\x8b\xbd\xbf\x65\x04\x00\xeb\x97\xee\x0d\x2e\x7f\xe8\x8d\xf5\xff\x6b\xfb\x38\xfb\x70\xaa\x71\xc4\x85\x25\x86\x12\x11\x31\x88\xe0\x86\x38\x17\x78\x69\xf1\x6f\x3d\xc8\x20\x26\x74\xb7\x0b\x00\xc0\x34\x29\x8e\x5f\x3f\x37\xfd\xd7\x6f\x5f\x38\xfe\xa7\x9b\x67\xe6\xd7\xa0\xbc\xb7\x65\xdf\x18\x73\x5c\x81\x97\x63\xf2\x71\xc5\xd6\xad\xb9\xc2\x8d\x8a\xf7\xab\xd4\x7c\x71\x62\xd1\x31\x38\xe8\xba\x28\xe0\x10\xb8\xf0\xc5\x7f\xd0\x74\xd4\xc5\x82\x22\x29\x9e\x0f\xd0\xc4\xc8\x23\xc5\x8b\x01\x1e\x5c\x06\x1a\x4f\x72\x31\xe5\xe3\x72\x5d\x41\x91\x8f\xcf\x69\x68\x4f\xab\x97\x62\xf3\xd6\x05\x6c\x76\xe5\xdf\xc5\x3d\x88\x7c\xc6\x96\x5b\x2c\x20\x8b\x69\xe3\xa7\x75\x75\x9a\x9f\xfe\xf4\xa7\xd5\xdf\xfe\xed\xdf\x6a\x6b\x49\x10\xe8\x5c\xf1\xb9\xd3\x00\x6d\xab\x83\xf4\x7d\x20\x80\x28\x4b\x43\xc8\xaf\xab\x8b\x6e\x47\x6c\x6f\x0a\x2f\x13\x25\xfd\x86\xee\x24\x23\x69\xf0\xdf\xd6\xf7\x92\x00\xca\xb2\xf9\xd4\xa7\x3e\xa5\xbe\xfc\xe5\x2f\x9f\x06\xb4\x73\x59\x1f\x48\x3f\xf6\xed\x71\x89\x55\xd2\xd2\x4c\x50\x8a\xab\x7f\xf5\x57\x7f\xb5\x2e\x5c\x7e\x77\x4b\x55\x21\xf5\x87\x15\xcf\x8d\x7b\xe7\x87\x0b\xb5\x95\xd8\x65\xa2\xca\xd5\x9b\x67\xed\x2d\xb5\x50\x9d\x11\x62\x08\xa2\x0d\x3a\xda\xdf\x29\xe2\x68\xc3\x0b\x46\x5c\x74\xe4\x96\x5d\x9f\xd3\x60\x60\xda\xd3\xfb\xf7\x56\x17\x37\x0f\xfb\xc5\x2e\x54\x9b\x71\xa1\xb4\xaa\x58\x0b\x8b\x26\x16\x96\x7a\x43\x2e\x33\xef\x49\x75\xd1\xa5\xb3\x85\xe2\xf0\x30\x89\x4e\xac\x57\x4f\x1c\x5f\x23\xe5\x1d\x26\x94\x3f\xd7\xf3\x69\xe4\x91\xc2\x7c\xfe\x31\xb3\xf6\x25\x05\x10\xe0\xed\x93\xdb\x27\xcf\xfd\xd4\xdf\x69\x78\x9f\xb6\x7c\x5d\xf1\x63\x69\x5d\x83\x69\x0c\x30\x96\x9e\xbb\x96\x87\x0f\x64\x4b\x32\x9f\x56\x21\x87\xc0\x6b\x97\x3c\x72\xd7\xb5\xcf\xf8\x26\x2b\x34\x8f\xbc\x2c\xba\x00\x1a\x97\xdc\x75\x9c\x0b\x17\x2e\xd0\xe5\x0f\xd7\x40\xbd\xf4\x2c\x58\x19\x34\x40\xbd\x9f\x43\x7b\x74\x75\x0b\x24\xbd\xf9\xe6\x9b\xf0\xa5\x2f\x7d\x49\x5f\xba\x74\x49\x91\xfd\x1f\xbe\x89\x45\x97\xb6\x2c\xb5\xeb\x5a\x8e\x8f\x7d\xec\x63\xf0\xb5\xaf\x7d\x0d\x00\x9a\x25\xa0\x2a\x3f\x8a\x7c\x27\x4f\x91\x78\xf5\x2f\xfd\xe0\x23\xbb\x89\xbe\xe6\x6f\x1f\x08\x38\xb1\x20\x4e\x4b\xb7\xff\x02\x94\xc6\x06\x3b\x16\xfd\xdc\xcf\xfd\x9c\xfa\xca\x57\xbe\x22\xf5\xa7\x98\xfc\xba\xe2\xb8\x26\xb1\x4e\x1e\xbe\x7b\x5c\x7c\x0d\x18\x84\x67\xee\xb7\x44\xf7\x37\x7f\xf3\x37\xb4\x81\xd0\x82\x6f\x81\x96\xb4\x80\x6c\x63\x92\xbe\x33\xcb\xd5\x06\x9a\xb6\x8c\x6d\x40\xd1\x5c\xc5\xdf\xbc\x91\x5f\x7b\xaa\x87\x1e\x71\x06\xb2\xf7\x05\x0c\xd8\x6f\x1f\x89\x69\xf8\x1c\x4a\x77\xc3\xb4\x9d\x01\x00\xad\xcc\xfc\x70\x50\xec\xec\x0e\xf3\x9d\x71\x56\x1c\x93\xef\x11\xcd\x8d\x31\xf6\xd2\x39\x0d\xd5\xf2\x10\x99\x1d\x68\x80\xf2\x3a\xe8\x7f\xfa\xa7\x7f\x8a\x55\x2c\x2e\x25\xea\xea\x2c\x5c\x01\xc5\x28\x6b\xa9\x51\x71\x5e\x2e\x25\xe6\xe2\xe5\x7a\x76\xc9\x0c\x20\x37\xec\x50\x47\xe0\xf2\x70\x99\x5c\x74\xae\x34\xb9\x8b\x2d\x6b\xdf\x00\xcc\xfd\x7c\x75\xe5\xcb\x5f\x48\x19\x70\xf9\xc0\x11\x16\x52\x28\x3c\x1e\xaf\x83\x2e\x83\x78\x57\x50\x14\x03\xa8\xba\xa4\xef\x72\x2e\xc5\x2b\xf9\x75\x4d\xaf\x8b\xdc\x5d\xf2\xe5\x02\x7e\x31\xb2\xc4\xa4\x23\xd1\xc4\xe4\x5d\x6c\x1b\x9f\xfe\xf4\xa7\xd5\x23\x8f\x3c\x42\xe9\xe8\x00\xcc\xc1\x0a\x1f\xb4\x01\x9a\xc9\x30\xd8\x78\xcc\x72\xd0\x02\x5d\x16\xd4\x90\xf7\x1a\xec\x5c\xbc\x78\x11\x00\x00\x9e\x79\xe6\x19\x30\xc6\xa8\x1b\x37\x6e\xf0\x76\x1c\xd3\xbe\x5d\x34\xbc\xac\x5a\xf1\xbf\xf6\xb5\xaf\x69\x80\x96\x95\xc5\x96\x43\x6b\xbc\x24\x80\x4e\x31\x1a\x5a\x3e\x92\xe5\xc5\x82\x13\x9a\xbe\x06\x68\x4d\x9e\x15\xb4\x81\x9e\x46\xc4\x5a\xa6\xaf\x7c\xe5\x2b\x5d\xf2\x4b\x9d\x0b\xc4\x84\xda\xcf\x92\x7f\x0a\x7e\x45\xed\x52\xd2\x3e\x45\xc5\x05\x05\x00\x80\xdf\xfa\xad\xdf\x82\x3f\xfb\xb3\x3f\x6b\x85\x57\x77\xb7\xd8\x0d\x45\x35\x78\x19\xcd\xd2\xd1\x9a\xfd\x36\x51\x85\x24\x9b\x1b\xde\xec\x85\x2a\xd8\x1c\x87\x26\x9b\xb2\xaa\x40\x76\x33\x2e\xdf\xe7\xd2\x1c\x7a\x36\xd5\x47\x3a\xf9\x17\xa4\xc3\xd7\xfb\x03\xbb\x64\x6e\xd9\x21\x00\x2c\x12\x33\xde\x1b\x2e\x6e\x1e\x0e\xf2\x3b\x5a\xc1\x14\x01\xeb\x3b\x5b\xd8\x65\x73\x9a\xce\x12\x00\xca\x0f\x6f\x3d\xf9\xe4\x93\xb6\x21\xc6\x82\x11\x10\xc2\x62\xc1\x03\x77\xd2\x60\xe8\x1b\xb8\x5c\x4a\xdc\x07\x2a\x24\x3a\x9e\x66\xac\x62\x94\xd2\x93\x1c\x07\x10\xae\x34\x5c\xe5\xc2\xd3\xa0\x4a\xc5\xc7\xcf\x05\x0c\xa4\x77\xa9\x4c\x24\x1e\x2e\xb9\x63\xca\xd4\x95\xbe\x54\x76\xbe\x3a\xf6\xd5\x29\x77\x31\x03\x28\x77\x31\xf4\x2e\xbe\xbe\x3c\x9d\xc6\x3d\x08\x3e\xae\xd9\x64\x97\xb4\xba\x0e\x02\x3f\xce\xbc\x77\x2d\x93\x16\x2d\xdb\xbb\x41\x2d\x27\xad\xc1\x5a\x78\xe7\x34\x00\xd0\x1a\x0f\xb8\x4e\xad\x7f\xc9\x55\x13\xca\x02\x9c\x8a\x5e\x01\x34\x5b\x1a\xfe\xea\xaf\xfe\x2a\x7a\x30\x05\xbf\xde\x0d\x3a\xc7\x1e\x16\x6a\x49\xa9\xff\xd8\x4a\x85\x02\x00\xb5\x32\x57\xd9\xea\x3c\x19\xf4\x73\x35\x4c\x34\x64\xca\x60\x8a\x55\xb9\x18\x00\x5d\x28\x33\xcf\x95\x99\x2e\x12\x33\x9f\xf4\x8a\xe9\xa4\xa7\x73\x8d\xad\xfd\x94\x1a\xca\xf1\x08\xc8\x7b\xcb\x19\x63\xf4\xf3\xcf\x3f\xaf\x84\xa5\x35\x57\x1b\x08\x95\xc1\xa9\xe2\x49\xc3\x6e\xa8\x11\xba\x06\xae\x60\xe3\x65\x28\x52\x41\x09\x9c\xe8\xb7\x89\x86\x00\xb0\x7e\xf9\xce\xca\x53\x3f\x79\x63\xfd\x0b\x67\xc7\xbd\x67\x12\x03\xc3\x1a\x4c\x08\xeb\x76\x22\xc0\x08\x6c\x46\x11\x37\xd1\xf2\x9b\x73\x3d\xc8\xa5\xa6\x25\x1b\x82\x0d\x61\x5a\x82\xa4\xb2\xf3\xec\xaf\xe4\xd7\x5f\xbe\x78\xf4\xe5\xd7\xb6\x26\xdf\x9c\x64\x7a\x07\xc8\x77\x89\xaa\xbf\x29\x94\x1b\x73\x6b\xeb\x8b\xed\x68\x55\xe3\x90\x14\x6f\x8c\xa2\xb8\x1f\x85\xed\x4b\xf3\xb4\x7c\xbb\xb4\xab\x1f\xa7\x8b\x4d\xe7\x7e\xe5\x71\x01\xf9\xd8\x0e\x2f\xf1\x83\x0e\x32\x75\x69\x23\x12\xff\x1f\x47\x7d\xb8\x40\xb3\x94\xa6\x6f\x90\x94\xe2\xba\xd2\xeb\x02\x0a\x5c\x13\x34\x7e\xbf\x77\xa0\x00\x00\x20\x00\x49\x44\x41\x54\x57\xdb\xef\x9a\xbe\x0b\xd8\xb9\xfa\x1b\x80\x3b\x3d\x5f\x5b\x72\xa5\x1b\x13\x37\x56\x7e\x9e\x07\xee\x5c\xf5\xd4\xe2\x49\xf7\x00\x2f\x40\xd0\xbf\x3c\x02\x2c\xdd\xeb\x05\x74\x60\xa6\xcf\x60\x20\x4d\x35\xaa\xac\xc0\xb4\x97\xab\x34\xd5\x98\x29\x53\xc6\xd1\x08\x5a\xa3\xd1\x5a\x41\x9e\x2b\x93\xcf\x53\x9d\xe7\xca\x68\x83\xe5\x60\x5c\xe9\x5a\x3a\x58\x03\xd1\xbb\xb5\x6c\x16\xd0\xd8\xcb\x3f\xbf\xfa\xd5\xaf\xc2\x9b\x6f\xbe\xe9\x6b\x07\xa1\xb6\xcc\x01\xfe\x52\x39\xb0\x32\xae\x81\xca\xd2\x37\xfd\x00\x55\x62\x20\x5d\x99\x27\x83\x95\x85\x1a\xf5\x34\xae\x6f\x1d\xf7\x36\xb7\x8f\xb3\xf3\x6b\xb3\x64\x33\xcb\xd5\x99\x54\xe3\xd0\xae\x58\x68\x05\xd3\x45\x62\xc6\xb3\xa4\xd8\x3b\xe9\xeb\xc3\xdd\xe1\xe2\xee\xee\x30\xdf\x1d\xf7\x8a\xfd\x71\xa6\x8f\xa7\xa9\x9e\x16\xca\xe4\x80\x35\x78\x69\x01\x19\x3a\x2e\x55\x65\xc8\x4f\xbc\xfa\xf2\x2b\xb9\x98\xb6\x0c\x82\x3f\x00\xf8\xef\x71\x71\x15\xb2\x0b\x51\x4a\x1d\x71\xc9\x59\x13\x17\xbd\x29\x17\x9a\x46\x99\x1a\x63\xd2\x87\x8e\xb3\x0b\x83\x5c\x6d\x29\x03\x59\xcb\x6a\xb2\xf4\x2d\x21\x53\x2f\x03\xd5\x76\x92\xd6\xd2\x0f\x39\xce\x8c\xcd\x15\xff\x4b\xa0\xa3\xda\xab\x62\x88\x4d\xc6\xb3\x25\xa6\xf5\x95\xe8\xe6\xb2\x3b\x64\xf4\x08\x39\x9a\xf9\x51\xbf\xb8\xbb\xbf\x92\xdf\x9d\xa6\xfa\x18\xaa\x1b\x72\xc9\x6d\xb9\x9a\x1c\x81\xd6\x9c\x8f\xa7\x3c\x7d\x0a\x8b\xd3\xf8\xea\xc5\x15\x8f\xc7\x95\x66\x02\x21\x05\x29\xb5\x1b\x5f\xfa\xae\x46\x1c\x6a\xfc\x54\xee\x90\x32\x77\xc9\x16\x03\xc6\x63\x65\x95\xe4\x89\x19\x24\x63\x40\xa2\x12\xfc\x42\x4e\x52\x00\xb1\xe5\xdd\x45\xfe\x2e\x03\xba\x54\x1f\xad\x41\xc3\x91\x1e\x6f\x97\xbe\xb6\xac\xc1\x2f\xbb\xaf\x8d\x52\x3f\x5f\x5e\x5c\xc0\x4a\x6a\xf3\x52\xfb\x73\xf1\x77\xb5\xc1\xd0\x20\xe0\xca\xaf\xd4\xc7\x7d\x3a\xc5\xd5\x26\x7c\x20\x46\xe2\xc7\x69\xea\x74\xb8\x95\xc5\x65\x61\xa9\xc6\x04\x85\x88\x4a\x01\xa6\xbd\x1c\xb3\x2c\x57\x83\x7e\x81\xc3\xd1\x2c\x1d\x9d\x1d\xa7\xeb\x67\x26\xe9\xfa\x70\x91\xac\x67\x05\x0e\x0c\x00\x2c\x12\x33\x5d\x24\x7a\x3e\x4f\xcd\xf4\xa4\x57\x8c\x77\x87\x8b\xfd\xe3\x41\x71\x3c\x4b\xf4\xb8\x0c\x33\xf3\x85\xd2\xf5\xf5\x13\x50\xe9\x5f\x0a\x5e\xaa\x67\x05\xd0\x58\x5f\x2a\xd0\xc2\xcb\x2f\xa6\x1f\x4a\xed\xb6\xce\xbf\xbd\x5b\x05\xa0\xb1\xae\x90\xc3\x2b\xf5\x38\x69\x8c\x29\x01\x8b\xc6\x6c\xb8\x50\xc3\xf5\x69\xba\xf9\xc8\x41\xff\xc2\xc3\x07\xd9\xa5\xb5\x59\xf2\xc4\x20\x4f\x1e\xeb\x15\x78\x41\x19\x58\x47\x83\x43\x64\x2b\x2a\x1a\x61\x0a\x60\xa6\x1a\x61\x9c\x2b\xb3\x33\x4d\xf5\xb5\xfd\x95\xfc\xfb\x37\xcf\xcc\xae\xdd\x5e\x9b\xdf\x3a\x58\xc9\xf7\x27\x3d\x3d\xce\x95\x99\x03\x82\xbd\x10\x55\x61\xf9\x1d\x3d\xba\x6f\xc8\xd6\x17\xb5\xbe\x48\xfd\xc5\x57\x4e\xd2\xb3\xab\xaf\x2c\xc5\xe7\xc0\x45\x4a\x94\x27\xc2\x5d\x70\xa0\xb1\x9f\x04\x27\xfb\x37\x5a\x95\x52\x2f\x13\x19\x48\x95\xc1\xec\xec\x24\x7d\x67\xaf\x50\x1b\x08\xa0\xe8\x9e\x15\x72\x45\x4a\xeb\x36\xdc\xd6\x7d\xb7\x74\xff\x0a\xbf\xb3\x85\xee\x4a\x69\x7d\x59\x1a\xeb\xd0\x16\x78\x21\xb1\xf9\xc9\x23\x24\xd6\x15\x4e\x6b\x37\x0e\xe7\xca\x4c\xf7\x56\x16\x37\x4f\xb2\x62\xcf\xa8\xf2\xb8\x33\xdd\xdb\x02\x6d\x64\xdb\xf0\x31\x06\xe6\xf3\x39\x7c\xe0\x03\x1f\x50\xff\xf1\x1f\xff\x21\x0d\xa8\xb4\x9c\x43\x0d\xc5\x85\xf6\x39\xbd\xe4\x24\x85\xe5\x73\x2e\xf0\xe4\x6b\x88\x12\x68\x00\x90\xe5\xf2\x0d\x02\x3e\x7a\x9f\xac\xd2\x80\x29\xc9\x21\x29\xe2\x10\xd8\x09\xbd\xbb\xe4\x71\xc9\xc2\xe9\x42\x40\x34\x04\x78\xa4\x01\x0e\x00\x40\xa5\x69\x0a\x79\x9e\xeb\xd1\x68\xa4\x00\x00\x8e\x8f\x8f\x5b\x84\xa3\xd1\x08\x8e\x8f\x8f\x79\x78\x68\x80\x95\xf2\x26\xb5\x2f\xd7\xe0\xeb\x72\x31\x79\x92\xfc\x62\xdb\x4b\x8c\x1e\x94\xd2\x8b\x01\xbb\xd2\xb3\x2b\x5c\x72\xbe\x36\xe9\x2a\xef\x10\x58\xf2\xc9\xe3\x72\xae\x81\x0b\x00\xea\xed\x00\x1a\xa0\x3d\x50\xdb\xf0\x96\x35\xa5\xfc\x4b\xa1\xb4\xa0\xa4\xa9\xc1\x34\xcd\xd5\x60\x90\xab\xe1\x3b\x8e\xb2\xcd\x8b\xfb\xfd\xc7\x1e\x3a\xe9\x3d\x31\x9c\x27\x97\x7b\x05\x5e\x48\x35\x6e\x40\x69\x99\xcf\x00\x00\x0c\xc0\xdc\xa0\xc9\x01\x60\xae\xd1\x1c\x2f\x12\x73\x73\xd2\xd3\xd7\x0f\x07\xf9\xeb\x77\xd6\xe6\x6f\xde\x5c\x9b\xdf\xba\x3b\x5a\xec\x2f\x94\x9e\x17\xaa\x3c\x28\x61\xa0\xfe\xdc\x4a\x7d\xf9\x67\x25\x17\x08\x83\x34\xbd\x1b\xa5\x4b\x5d\x2d\x95\x97\xb4\x97\x85\x8e\x8f\xd5\xf6\x89\xd2\xc2\x64\x30\xcb\x72\x35\xdc\x1c\xf7\x36\xde\x7d\x77\xe5\xf2\xa3\xfb\xfd\x9f\x1c\xcd\x93\x67\xd3\x42\x3d\x96\x68\x58\x07\x28\xcb\xc0\x1e\xb4\x05\x68\x26\xd7\x68\xca\xc1\xb4\x1c\x9b\x10\xb2\x02\xf2\x41\xae\x3e\xbc\x3e\x4b\x76\x1f\x3e\xca\xae\x1f\xf7\x8b\x6f\xbd\x75\x66\xf6\x6f\xaf\x9f\x9b\xbc\xba\x33\x5a\xec\xce\x13\x3d\xd5\x25\x78\x99\x5b\xc0\x52\x81\x96\xdc\xe6\x9b\x02\xbb\xab\x57\xaf\xea\xe1\x70\xa8\xc6\xe3\x71\x4c\xdf\xb7\xae\x4b\x5f\x68\xc5\x77\xed\xd0\x08\x82\x11\x8f\xbf\xb3\x93\x56\x1b\x73\xa9\x75\x25\x03\x80\x0c\x11\x87\xc6\x98\x21\x02\xae\x6f\x4c\xd2\xf3\xbf\xf4\xbd\xcd\xff\x7b\xeb\x24\xfb\x48\xa2\x61\x54\x83\x89\xa5\x4d\xb4\xcb\x27\x85\x6a\xcb\x09\xbd\x85\xce\x10\x2b\x46\x6b\xaf\x4c\xb3\x65\xc6\x5e\x62\x67\xea\x8f\x38\xb6\x97\x8c\xec\xe9\x25\xe9\x68\xb4\x6b\x45\xc9\x80\x81\xc3\x7e\xf1\xe6\x37\x1e\x3b\xfc\x12\x5d\x26\x32\xc6\x1c\x56\x47\xa0\xc7\xc6\x98\x31\x36\xb7\xe7\x6a\x80\x1a\xe9\x4b\xcb\x44\x70\x8a\x3a\xe8\x02\x18\x7c\xf4\x52\xda\x3e\xe0\x21\xc5\x0b\xc9\xe9\x03\x64\x21\xe7\x6a\x73\x2e\x40\xe1\xf2\xf7\xf1\xee\x2a\xbf\x14\xde\x15\x5c\x49\xe9\xc4\xca\xed\x92\xa5\xb3\xa3\x0a\xdb\x9e\x30\x78\xe1\x85\x17\xb4\xbd\x04\x8c\xd3\x44\xba\x07\x22\x1b\xe3\x07\x10\xee\x2f\xb1\x69\xfb\x74\x60\x97\xb0\xd3\xfa\xc5\x4c\x28\x42\x61\x0f\xaa\x0f\x3d\x10\x7e\xdc\xca\x02\xd0\x3a\xde\x9b\x02\xb4\x27\xb1\x00\x90\xf6\x0a\xcc\xb6\x8f\xb3\xf5\xcb\x77\x57\x1e\x7f\xc7\x51\xf6\xcc\x68\x96\xfc\x6f\xfd\x5c\x5d\x4e\x35\x9e\x47\x83\x23\x04\x48\xd1\xb1\x72\x50\x4d\x36\x75\x05\x64\xa6\x1a\xcd\x7e\x9e\x98\x9b\xe3\x5e\xf1\xad\xdb\x6b\x8b\xff\xf9\xea\xf6\xf8\xbb\x6f\xad\xcf\xf6\xf3\xc4\x4c\x4d\xb5\xd7\xd0\x80\x69\x59\x62\xec\x1f\xdf\x7f\x18\x71\xb7\x96\x37\xec\x63\x1f\xfb\x98\x7a\xfa\xe9\xa7\x6b\x3a\xb6\x8f\x25\x25\x40\x2e\x03\x53\x96\xc3\x43\xc7\xbd\xcd\xc7\xef\xad\x5c\x7e\x6c\x7f\xf0\xf1\xb5\x69\xfa\xb1\xac\xc0\x27\x95\x81\x11\x02\xaa\xd6\x40\xe4\xd8\x2a\x51\x8f\x63\x8c\xc4\x00\x68\x8d\xe6\x70\x9e\xe8\x57\xf7\x87\xf9\x8b\xd7\xcf\x4e\xbf\xfa\xda\x43\xe3\xd7\x0e\x06\x05\xb5\xbe\xd4\x27\x60\x01\x5a\x7b\x84\xc0\x96\x8f\x70\x75\x47\xa8\x7c\x7c\xb4\xde\x78\xae\xa5\x22\x49\xc1\x4b\x8c\xa9\x9f\x6b\xf6\x5a\xbb\xda\x4a\x51\x55\xd0\xd2\x86\x23\x80\xf4\x91\xc3\xfe\xf6\xca\x3c\xb9\xa0\x34\x0c\x6a\x4b\x48\xab\xc4\xab\x22\xe7\xcb\x46\xd8\x9c\x1e\x6a\x5d\xe8\xcf\xd7\x78\x2a\x6f\xf2\xd3\x7c\x6f\xa8\xfe\xf6\x11\xe1\x41\x59\xb8\x4e\x2f\xd5\x5b\x81\x9b\xc4\x34\x80\x3e\xea\x17\x3b\xf7\x86\xf9\xce\x2c\xd5\x63\x80\xd6\x47\x15\xf9\x25\x73\x74\x66\x42\x3b\x45\xcc\x00\x25\x85\x49\x28\xd5\x87\x60\x43\x7e\xbc\xae\x43\x71\x24\xb9\x4e\x2b\x67\x8c\x8b\x91\x21\x56\x4e\x17\xef\xae\xf2\x4b\xe1\x3e\x1e\x5d\x65\xe8\x12\x2f\x96\x5e\x74\x14\x90\xd0\x67\xaa\xa8\x62\x40\x0b\x05\x3a\x1d\x65\x8b\x55\x7e\x0f\x24\xbf\x2c\x7e\x48\x07\x72\x9d\x07\x24\x0c\x48\x78\x8c\x52\x8e\x55\xfc\xf7\x03\x7e\xe9\x73\x17\x39\x62\xf8\x89\xb2\x6c\x6f\x6f\xc3\xce\xce\xce\x12\x03\xc9\xca\x62\x27\xb4\xca\x60\x7a\x66\x9a\x0e\xdf\x77\x6b\xf4\xf8\xe3\xf7\x06\x9f\x1e\xcd\x92\x9f\x4a\x35\x3e\x86\x06\x86\x08\x90\xd1\x93\xa2\xae\xc9\x23\x1a\x03\x06\x51\x29\x80\x81\xd1\x30\x48\x50\x6d\xa4\x1a\x1e\xeb\xe7\xea\x99\xb5\x69\xfa\xb3\x8f\x1c\xf4\xbf\x71\x67\xb4\xf8\xca\x77\xce\x1f\xff\xfb\xcd\x33\xb3\xfd\x79\x62\xa6\x64\x62\x6d\xf7\x1b\xd2\xcd\xaa\x5d\x00\xb1\x8b\x4e\x01\x80\x7e\xdf\xfb\xde\x47\xdf\x5b\xa0\x05\xa0\x3e\x65\x9b\x01\x40\x36\x5c\xa8\xc1\xe5\x3b\x2b\x97\x9e\xb8\x33\xfc\xe4\xd6\xb8\xf7\xa9\x2c\x57\x4f\xa9\x12\xb4\xa9\x7a\x7d\x80\x6c\xcb\x34\x95\xc9\xa5\x35\x9e\x61\x7b\xcc\x6a\x0d\x8b\x00\x2a\x31\xb8\x31\xc8\xd5\x73\x0f\x1d\x65\x97\xd7\x27\xe9\x47\x1e\x3e\xec\xff\xbf\xdf\xdf\x3e\xf9\xff\x5e\xdb\x9a\xdc\x5a\xa4\x66\x4c\x64\xb5\x63\x57\x6b\xe9\xc8\x53\x26\x2e\x80\x1f\xa2\xf5\xc6\x4b\x1d\x81\xae\x0e\xc9\x19\xf3\x81\xcc\x39\x4b\xe7\x1b\x73\xd9\xce\xf1\xf2\x1b\x45\x06\xb2\x87\x8e\x7a\xef\xca\x0a\xb5\x49\x76\x43\xb7\x80\x86\xc1\xe5\x05\x20\x42\x52\x57\x9c\x03\x59\xb6\x9e\x6d\x84\xd6\xad\xbc\x7c\x03\xb0\x60\x65\xb1\xcd\x81\x2e\x31\x71\x57\x24\x66\xba\xb7\xba\x78\x73\x9c\x15\x07\xe5\xda\x62\x65\x92\x64\xa7\x89\x48\x14\x5f\xc5\x2b\x4f\x98\xcb\xd1\x38\x5d\x66\x52\x3c\x9e\x54\xc7\xb1\x3c\x5d\x71\xb8\x9c\x31\x0a\xd0\xc5\xa3\x4b\x1c\xd7\x4c\xd9\xe7\x0f\xb0\xdc\xb6\x7d\xf9\xf0\xc5\x09\x95\x8f\x94\x3f\xc9\x85\x2c\x2f\x51\x83\xd4\xef\xfd\xde\xef\xa9\x5e\xaf\x57\x03\x10\x76\x75\xf8\x52\x5f\xa0\xfe\x92\x73\xec\xcf\x02\x80\x12\xd8\xf8\xc2\x03\xae\xeb\x40\x1d\x0b\x46\xbb\xd2\x76\x89\xdb\x35\x8c\xb7\xd5\x2e\x00\xfe\xb4\x60\x3d\x66\xa0\xb8\x6f\xde\x3b\x3b\x3b\x4b\xd6\x16\x02\x5a\xec\x35\x18\xaa\x02\x2c\xd9\xda\x2c\x1d\xbe\x6b\x6f\x70\xe1\xdd\x77\x86\x1f\xd9\x3a\xe9\x7d\x7a\x90\xab\xf7\x2a\x03\xeb\xa5\x5c\x64\xcf\x63\xf5\x6b\xc0\x01\x5e\xc8\x4d\xea\x64\x3f\xa2\x42\x03\xa3\x9e\xc1\xcb\xc9\x34\xb9\xb8\xb2\x50\x1f\x59\x9f\x24\x7f\x7f\x6d\x6b\xf2\xff\x7c\xf7\xfc\xf8\xb5\xa3\x7e\x7e\x0c\xe5\xe4\x52\x55\x93\xcc\x14\xaa\x81\x1a\xc8\x98\x28\xec\xed\xe0\xe5\xe0\x72\xda\xca\x43\xcb\x03\xda\x96\x16\x7b\x21\x6b\x76\xee\x38\x5d\x7f\x6a\x67\xf5\xe9\x4b\xbb\x83\x5f\x3e\x33\x49\x3f\x91\x6a\xbc\x40\x2d\x4c\xae\x31\x90\x4e\xec\x25\x1a\xe9\xd2\x55\x00\x54\x89\x31\x9b\x2b\x0b\xf5\xe1\x87\x0f\x7b\x17\x56\x16\xa3\x77\x0e\x17\xc9\x17\xbf\x75\xe1\xf8\xda\x42\x99\x31\x60\x6d\x25\x03\xbe\xef\xc5\xd3\xb7\x5d\x6d\xe9\xbe\x5c\x42\x9e\x4d\x95\x08\xdf\xd6\xa1\xc8\x33\x77\x86\x85\xd3\x5f\xa3\x94\x52\xa6\xd2\x72\xcf\x3e\xfb\x2c\x56\x68\x16\xab\x06\x9b\x54\xa8\xb2\x0f\x00\x19\x02\x0c\x12\x83\x6b\x4f\xdf\x1a\x7d\x6c\x63\x9a\xbe\x3f\x31\x38\xb0\x90\xa0\x55\x21\xb0\x8c\x18\xc1\xf1\x4e\x8f\x37\x4b\x34\xae\x78\x2d\x6b\x0e\x2e\xa7\x4f\xdf\x5c\x07\x98\x26\xbd\xe2\xde\xf7\xb7\xc7\xff\xb6\x33\x5a\xdc\x58\x24\xfa\x10\x00\x26\x00\x30\x41\xc4\x59\x75\x97\xcb\x02\x00\x16\xd8\x5c\xfc\x63\x00\xca\xf3\xf2\x07\x07\x07\xb8\xbb\xbb\x6b\xb3\xc9\xfb\xa5\x86\x36\x86\xa2\x74\x00\x4d\x7d\x58\x1a\x3b\x68\xd1\x67\x1b\xce\xeb\x5b\x09\xfc\x01\xda\xf5\xcf\xd3\x06\x68\xcb\xc9\xe9\x0c\x2c\xa7\xc1\xf3\x46\x0b\x95\xfa\xab\x00\x0f\xe3\xe0\x45\xf3\x48\xfd\xc0\xf1\x4e\x79\xd0\x8e\xc6\x31\x2f\x7d\xa7\x32\xd0\x32\xf0\xc5\xe1\x79\x05\x16\xc7\xc5\xdb\x3a\x5a\x8f\x3e\x79\xea\xb8\x4f\x3f\xfd\x34\xfe\xf4\x4f\xff\x34\xbe\xf2\xca\x2b\x35\x38\xb9\x72\xe5\x0a\x3e\xf7\xdc\x73\x98\x24\x65\xf7\x7f\xee\xb9\xe7\xf0\xca\x95\x2b\x55\xd3\x47\x9a\x0e\x22\x22\x1a\x63\x90\xbe\xd3\x5f\xfb\x4c\xe9\xec\x33\xa1\x31\x96\xff\x95\x2b\x57\xf0\xca\x95\x2b\xf8\xd2\x4b\x2f\xb9\x74\x8a\xe4\xb8\x0e\x92\xe2\x4a\x65\x15\xa3\xc3\xee\xc7\x49\x7c\x7d\xba\x52\x8a\x27\xb5\x55\x17\xef\xff\x2a\x17\x93\x6e\xa8\x7c\x6b\x3f\x3a\x69\xb5\xfa\x9f\x81\x96\x14\x00\x7a\x89\xc1\xc1\xb9\x71\xef\xdc\xfb\x6f\xad\x7e\xe0\x3d\x77\x86\xbf\x75\x6e\xdc\xfb\x4c\x3f\x57\xef\x51\x00\xab\x65\xcb\x6c\x8f\x07\x56\x50\xda\x79\x25\x5d\x4c\x2f\x27\x2d\x69\xab\x66\x5a\xa6\xb9\xd6\x2f\x92\x4b\xeb\xb3\x64\x7b\x6d\x9a\xcc\x16\x89\x19\x4f\x7b\x7a\x9e\xa3\x31\x95\x8c\x86\x2c\x67\x19\x28\x3d\x10\x00\xcc\x73\xcf\x3d\xe7\x6b\xc7\x62\xfd\x7d\xfe\xf3\x9f\x57\xcf\x3d\xf7\x1c\x92\x7e\x46\x41\x4b\x8a\x88\x3d\x00\xc8\x94\x86\xc1\x85\x83\xfe\xb9\xa7\xdf\x1e\xfd\xb7\x77\xee\x0d\x7e\xfd\xcc\x34\xfd\xa9\x9e\xc6\xf3\x08\x98\x80\x41\xf0\xce\x01\xaa\x54\xe9\xd8\x45\xcb\xaa\x29\x07\xa9\x1c\x11\x00\x20\x49\x0c\xae\x65\x85\xba\xb0\x3e\x4d\xce\x0d\x72\x75\xef\xee\xea\x62\x3f\x57\x46\x57\xdb\x31\xea\x71\x9e\x02\x96\x2b\x57\xae\x80\x50\x1e\x0f\xa2\x4d\x2f\xc5\x49\xd8\xbb\xcd\x8f\x6b\x80\xa3\x8e\x86\xd3\xf7\xfa\xd7\x90\x4f\x6a\x5f\xb9\x72\x85\x2a\x3d\x7a\xe1\x5c\x66\x8c\x19\x28\xc0\xe1\xfa\x2c\x39\xfb\xde\x5b\xa3\x9f\x1e\xcd\x93\xcb\x08\x90\x2c\x83\x8e\xf0\x85\x71\xf4\xa8\xb3\xeb\x82\x38\x4b\xd3\x7c\x32\x00\xca\x7d\x2e\x06\x5b\xcb\x4e\x00\xb4\x43\x54\xff\x97\xee\x8c\x91\x46\x2c\xa3\xf7\x56\xf3\xd7\xbf\xbf\x3d\xfe\xe6\xe1\x20\xdf\x31\x0a\x4f\x10\xf1\x04\x11\xc7\x50\x82\x97\x45\xf5\x57\x00\x40\x81\x88\x05\x96\xf7\x08\x98\xab\x57\xaf\xea\xdd\xdd\x5d\x0a\x3a\x6c\xd9\x5a\x40\x51\x67\x83\x24\xab\x99\x3f\x7f\xe6\x20\x42\x0a\x97\xe2\x4a\xf5\xcb\xc3\x38\x4f\xea\x5c\x69\xb9\xe2\x48\xf2\xf9\x78\x48\x34\x3c\xdd\x18\xde\xf4\x19\x1d\xfe\x5c\xee\x2e\xb2\x85\xe4\x09\xf1\xee\x1a\xa7\x8e\xbb\xb3\xb3\x63\x3e\xfe\xf1\x8f\xa3\x05\x0c\xd8\xdc\xbe\x69\x4d\xf5\x14\x80\x24\x50\xce\x34\x39\x48\x49\xc8\x60\xd3\x32\xef\xb3\x67\xe0\x71\x4d\x35\x52\x41\xa3\x5b\x6a\x20\x63\xff\x9e\x7d\xf6\x59\x7c\xf9\xe5\x97\x5b\xf9\xdd\xda\xda\x52\xe3\xf1\x58\xaa\x13\x80\xc0\x40\x09\xcb\x16\x99\xae\xa0\x86\xfb\xb9\xe8\x5d\xe0\xd2\xc5\x9b\xeb\x4c\x17\x0f\x2a\xb3\x4b\xd9\xbb\xd2\xe9\xf2\xdc\x85\x37\xf7\xa3\x32\xba\x26\x4e\x00\xd0\x4c\x5a\x01\x80\xef\xe3\xb0\x9f\x7b\xe9\xa5\x05\xae\xbc\xe3\x38\x7b\xc7\x4f\xdc\x5e\xfd\xd0\xbb\x76\x57\x3e\x73\x66\xda\xfb\x64\x4f\xe3\xb6\x32\xd8\xa3\x96\x13\x9b\x68\x09\x23\x4a\x45\xce\x81\x89\x25\xa8\x85\xa3\x61\x36\xd8\xd4\x50\x48\x29\x83\x2b\x59\xa1\xce\xaf\x2e\x92\x87\x57\xe7\x89\x29\x94\x39\x9a\x64\x7a\xba\x50\xba\xbe\x5d\xd6\x22\x0d\x9b\xb7\xea\xdd\xb0\xb6\x4b\xcb\x4a\xb4\x2e\xb8\x40\x0b\x54\xcb\x64\x50\x5d\x0f\xf2\xd0\x51\x6f\xe3\xfd\xb7\x56\x3f\xf9\xe8\xfe\xe0\xd7\xd7\xe6\xe9\xb3\xa9\xc6\xb3\x00\xa8\x90\xe4\xc7\xe5\xc8\x15\x67\x74\x4c\x02\xe9\x9a\x0f\xb9\x21\x22\x40\x79\xdc\x7a\x25\xcb\x93\x77\x8c\x16\xea\x6c\xaa\xf1\xce\xbd\x61\x7e\x58\x24\xa0\xab\xc1\xd0\x54\xd6\x16\xcb\x42\x43\xd5\xaf\x3d\x60\x4e\x6a\x27\xd4\xc5\xb4\x5d\x00\x68\x8e\x4b\x71\x53\x0e\x2f\xf8\x98\x75\xd0\x25\x73\x90\xfd\x30\x93\xc7\x4c\x58\x2b\xbf\xa4\xc0\x74\xf3\xa4\xb7\xd1\xcf\xd5\x76\x79\xf6\xdc\x42\x15\x0a\x0c\x4a\x08\xc9\xef\x61\x69\x15\x3e\xab\xd4\xd6\xa5\x72\x55\x3c\xbb\x3f\xb7\x6e\xec\xd8\xf0\x06\x9b\x0e\xe5\x49\xff\xb7\xda\x6f\x6b\x37\x4d\x53\x10\x0a\xf2\xbd\x95\xfc\xcd\x93\xbe\x3e\xd0\xaa\x5c\x26\x32\xc6\xd0\x8b\xe6\x5a\xc7\xf0\x4a\xd9\x96\xea\x5a\x5a\x5a\x70\x99\xcc\x5d\x4b\x10\x9c\xce\x15\x8f\xd6\x0f\x4f\xdb\xfe\xba\xcc\x7c\x3c\xbd\xae\xcb\x22\xbe\x65\x8f\x10\x0f\x29\x4d\xf0\x84\xc5\x96\x11\xe7\x17\x92\x0d\x1c\xfe\xae\x72\x3e\x4d\x9d\x71\xff\xa5\x72\xfc\xd9\x9f\xfd\x59\xf8\x87\x7f\xf8\x07\xfd\xb9\xcf\x7d\x4e\xf5\xfb\x7d\x69\x59\x47\x01\x00\x5d\x02\xa2\xc7\x2f\x01\x00\xea\x67\x62\x06\x56\x1c\xac\x4b\xf7\x29\x59\x67\x37\x97\x5b\x1a\x5c\xbe\xfc\xab\x95\x37\x6b\x6a\xe6\xdf\xa5\xf1\x7c\x11\xdd\x55\x2e\x5d\xcc\xd0\xa7\x32\xef\x07\x9e\xa5\x7e\x12\x6a\x5f\x31\xe9\xbb\xc2\x63\xfc\x43\x34\x5d\xf2\xee\xe3\xeb\xe4\x43\xaf\x8b\x87\xe5\x81\x3a\x03\x80\xac\x57\xe0\xe0\xe1\xc3\xec\xc2\x13\x77\x86\x1f\xbe\xb8\x37\xf8\xc5\xb5\x59\xf2\x6c\x62\x70\xb3\x34\x01\x2e\x5b\x51\x6a\x0d\x6c\x01\x8d\x83\xc0\x85\x08\x85\xcf\xc3\xa8\xc4\xe0\xc6\xea\x3c\x79\xf6\xc2\x41\x7f\x08\x00\x2b\x06\xe1\x9f\x7e\xb4\x31\xbd\x3e\xeb\xd5\x7d\x61\x4e\x80\xbb\x6d\xe7\xf4\x06\x5e\x5a\x0e\x92\xbe\x28\xd3\x5a\x06\x2d\x14\xc8\x65\x08\x98\x9d\x99\xa6\xeb\x3f\xb1\xb3\xfa\x91\x47\xf6\xfb\xff\xfb\xea\x2c\x79\x3a\x31\xb0\xc1\xc7\x24\x53\xfd\x93\xba\x21\x1f\x93\x5a\x23\x95\x8b\xbe\x2a\x93\x36\x40\xc4\x34\x35\x66\xeb\xcc\xa4\xf7\x53\xef\xbe\x3b\x3c\x3c\xc9\xf4\xf4\xb5\xad\xc9\xb5\x59\x6f\xe9\x63\x8b\x73\x20\x3a\xcc\x8e\xf7\xc2\xbe\xb7\xae\xfd\x0e\x40\xd6\xa1\x3a\x01\xb9\x7e\x5d\x75\xee\x33\xf5\xf0\x30\x63\x8c\x31\x6c\xdd\x3c\x81\xca\xe2\x62\x8c\x49\x00\xa0\x87\x88\x03\x00\x18\xa4\x1a\x47\x97\x76\x57\x9e\x78\xe4\xa0\xff\x53\x99\xc6\xb3\x58\x21\x14\xac\xd7\x26\xcd\x52\xe1\x73\xb3\x97\x0b\x88\x4a\x1b\x6d\x25\xc0\xd1\xa2\xb5\x99\x00\xde\x00\x1a\x4a\xd6\xfe\x6b\x90\x34\x4d\xf4\xc1\x6b\x0f\x4d\xfe\xf5\xf6\xda\xfc\xc6\x22\x31\x07\x06\xcc\x04\x11\x27\x88\x38\x03\x80\x29\x22\x2e\xa0\x7d\x14\xba\xb0\x65\x77\xfb\xf6\x6d\x3c\x3a\x3a\xb2\xa8\xdd\x8a\x68\x97\x06\x5c\xf5\x84\xec\x99\x37\x0a\x8e\x74\x69\xd6\x69\x1c\xc9\xf2\x60\x7f\x15\xb4\x8b\xda\x08\x7c\xe8\x4c\x8c\xce\xd2\xa8\x4c\xe2\xe4\x89\xa5\x45\xe5\x5e\x36\x68\x2d\xe7\x91\x5a\x93\xb8\x3c\x9a\xbc\x53\x7a\x1a\x4f\xe2\xc1\x9f\x79\xde\xe9\xb3\x72\xf8\xdb\x67\x69\xe9\x89\x97\x8f\x24\x23\xe7\x4d\xf3\x43\xeb\x0c\x3e\xfe\xf1\x8f\xe3\x8b\x2f\xbe\xa8\x9f\x7f\xfe\x79\x95\x24\x09\x05\x16\xd4\xaa\xa2\x00\x5a\x96\x95\xda\xc2\x42\xfd\x90\x6d\x14\xac\x7e\x13\x44\x4c\xaa\x7e\x5b\xff\x59\xbf\x2a\x3e\xe5\x6b\x67\xd9\x75\xba\xd0\x28\xe9\x3a\x8f\x76\xfa\xc9\xac\x32\xc6\x65\x89\x61\x75\xc6\x9d\x64\xd1\xf0\xd1\xd1\xb2\xa5\x2e\x14\x5f\x72\xa1\x38\x31\x56\x16\x9f\x7e\xbd\x9f\xb4\x63\x68\x5c\x96\xa4\xae\x32\xd5\x71\x2d\x68\x41\xb6\x01\x97\xfc\xf5\x50\x43\xff\xfc\x51\xf6\xf0\x7b\xee\xac\x7e\xf4\xb1\xbd\xc1\xaf\x54\xa0\xe5\xac\x4b\x97\xd3\xce\x52\x77\x1a\x53\x35\x9c\xa5\x49\xab\x3c\x26\x18\x46\xdb\xd0\x61\x2f\xd5\x78\x76\x90\x27\x6b\x89\xc6\xd9\x2c\x35\x07\x27\x59\x31\xd6\xaa\xbe\xfe\xde\x96\x83\x21\xef\x2e\x2b\xc3\x52\xf9\x91\x09\xbc\x6d\xe7\x49\xab\x2c\x00\xfb\xfd\x1c\x47\x4f\xbf\x3d\xfa\xe0\xe3\xf7\x56\xfe\xcf\xf5\x59\x7a\x25\x31\x70\x06\x01\xeb\xc1\x86\xe6\x15\xed\xbb\xab\xb0\x88\x73\x8f\x8d\x8d\xa4\x7c\x69\xa9\xa2\x40\x65\x70\xd8\x2b\xf0\x4c\x4f\xe3\x6c\x9c\x15\x77\xc6\x59\x31\x29\x14\x14\xd8\xdc\x7d\x43\xf3\x0b\x50\x59\x63\x84\xbe\x1b\x72\x52\x1f\x31\x2c\xcc\x00\x94\x05\xe7\xea\xb8\x52\x83\x95\x3a\xbb\x7d\x97\xac\x01\xe6\xe5\x97\x5f\x36\x95\x89\x9a\x2a\xcd\x04\x11\x53\x44\xec\x43\x69\x1a\xeb\xf7\x0a\xb5\xfe\xc4\x9d\xe1\x07\x1f\x3a\xc9\xae\x24\x06\xcb\xdb\x72\xe9\x5d\x29\xe5\xb2\x62\x65\xde\x73\x80\x09\xa1\xa5\xd6\xbb\xcf\x5b\x1f\xe0\x82\x7a\x97\xb5\x27\x2a\xd9\x8c\x08\x00\xf6\xc8\x34\x98\x0a\xe9\xda\x1b\x73\x69\xc3\x29\x1f\x8e\xfb\xc5\xdb\xff\x79\x7e\xfc\x2f\x07\x83\xfc\x96\x56\x70\x82\x88\x27\x50\xdd\x90\x0b\x25\x3a\x5d\x40\x69\x7d\xb1\x4b\x45\x06\x11\xe1\x85\x17\x5e\xd0\x04\xb4\x70\x20\x21\x99\xd5\xe8\xa0\xec\xa2\xb3\x7e\x54\xa9\x9b\xc8\x38\x34\x2e\x08\x32\x49\x69\xf3\x30\xce\x5f\x4a\xdb\x25\x47\x2c\x1d\x07\x20\x12\x58\x01\x90\xcb\x80\xcb\xea\x7a\x0e\xc9\xcd\x9f\x69\x1d\xf2\x74\x5d\xbc\x21\x10\x26\xca\xf8\xfc\xf3\xcf\xab\xed\xed\x6d\x6b\x92\x07\x02\x18\xec\x24\x01\x2b\x80\x51\xf7\xbf\x4a\x26\x0b\x52\xec\x0c\xd8\x2a\xd2\x5e\xf5\xde\x43\xc4\x14\x01\x7b\x08\x98\xa2\x31\x29\x1a\xc8\x94\x86\x9e\x32\xd0\x43\x80\x1e\x02\x24\x80\x98\x02\xb6\x4e\x43\x34\xf7\x4f\x34\xe0\xa7\xb5\xbf\x0d\x1a\xbd\x61\x9d\xdd\x17\x63\xe8\x33\xdf\x13\xf3\xec\xb3\xcf\xe2\xdb\x6f\xbf\x2d\x0d\xaa\x4e\xf3\xbc\x40\x4b\x95\xa2\x71\xd0\x74\x79\xe6\xe0\x32\x04\x4a\x38\xe8\xf5\x01\x06\x57\xda\x2e\xde\x5d\xe8\x5d\x69\x4b\x03\x48\x2c\x6f\x04\x80\x7a\xc2\x4a\x2c\x78\x08\x00\x16\xe4\xf6\xa0\xda\x22\xb0\x39\xe9\x6d\x3e\x71\x77\xf8\xdc\x3b\x77\x07\xbf\x54\x0e\xd4\xb8\x51\x33\xa9\x94\x72\xad\x67\x81\x5c\x38\x8a\x6d\xc1\xcb\x41\x9d\xdc\x5b\x52\x0b\x6e\xaf\xba\x68\xe2\xd8\x9b\x32\xc8\x7c\xb6\x1a\x23\x00\x14\x62\x9a\x68\x5c\xef\xe7\x6a\x25\x01\x9c\x4c\x7a\x7a\xf7\x24\x2b\x26\xa6\x39\xc4\x54\x54\xcb\x9f\x65\x41\x55\xcb\x25\x57\xae\x5c\xc1\x47\x1e\x79\x04\xbf\xff\xfd\xef\xf3\x72\x35\x5f\xf8\xc2\x17\x94\x1d\x07\xd9\x1d\x66\x09\x22\xf6\x8c\x31\x19\x22\x66\x89\x86\xd5\x77\xee\xad\x3c\xfa\xfe\x5b\xa3\x5f\xdb\x98\xf4\x3e\x91\x6a\x38\x8b\x06\x15\x20\xd4\xa0\xc2\xc2\x7b\x9b\x2f\x7a\xd3\x47\x2b\x3f\xa6\x29\x17\x3e\xf3\xb3\xae\x1e\xbb\xaa\x3f\x6c\x15\x68\x7b\xa6\x96\x18\x18\x65\xb9\x1a\x22\xe0\xc1\xd1\xa0\xb8\x37\xe9\x15\x13\x0d\xed\x23\xd1\xf6\xd7\x96\xcf\x95\x2b\x57\x70\x65\x65\x05\xdf\x78\xe3\x8d\x2e\xfd\x88\xb7\x47\x3a\x61\xae\xdb\x5b\x4a\x12\x74\x99\x32\xed\xbb\x15\xce\x67\xfe\x89\x35\x81\x5a\x45\x56\x9a\xde\x00\xd3\x5e\x81\x83\xd1\x2c\xd9\x4e\x0c\x0e\x2d\x51\xab\x57\x60\xd3\x68\x69\x68\xeb\xe6\x5c\x01\x56\x96\x0d\xb2\x1d\x6b\x19\xa1\xca\xdf\x28\xb2\x8d\x13\x09\x73\xba\xa4\xd4\x84\x35\x7c\x0c\x82\x3e\xee\x17\xb7\x8e\x06\xf9\x5e\xa1\xcc\xdc\x80\xc9\x11\x30\xb7\x4b\x45\x00\x4b\x5f\x82\x2e\x63\x1a\x03\x9f\xfa\xd4\xa7\xd4\x37\xbe\xf1\x0d\xd8\xdf\xdf\x77\x2d\xeb\x58\x47\xeb\x61\x69\xc9\x80\xbd\x73\x1a\x89\x1f\xa5\xa5\x74\xd4\xdf\xb5\x64\xe3\x5b\xd2\xf2\x2d\x77\x70\x79\x5d\x4b\x40\x52\x5a\x20\xf8\x53\x7a\x4e\xeb\xca\x9b\x94\x96\xe4\xef\x5b\x9e\x72\x3d\x77\xcd\xb7\xab\x1c\x5b\xe9\x6e\x6d\x6d\xa9\xbb\x77\xef\x6a\x00\xf7\xe7\xee\x0d\xf9\x06\x98\xe5\x65\xfd\xa0\x99\xf9\xb6\x97\x6c\xb5\x49\x93\xdc\xa8\x64\x61\xb2\x24\x87\x4c\x15\x90\xa1\x36\x19\x6a\xc8\xd0\x98\x54\x69\x48\xd1\x40\x0a\x1a\x14\x1a\x93\x02\x00\x18\xc4\xdc\x28\xd0\x46\x41\x6e\x10\x72\x28\xdf\xe7\x5a\xc1\xdc\x28\xcc\x8b\x14\xa6\x79\xa6\xe6\x45\x0f\x72\x68\x2e\xb0\xe2\x7f\x36\x6f\x54\x09\xd2\x63\x96\x00\xd0\xbe\x03\xe4\xe5\x97\x5f\x06\x12\x4f\x7a\x0e\xb5\xed\x2e\xcb\x4a\xdc\x9d\x76\xf9\xc5\x67\x26\xf7\xf5\x93\x98\xa5\x27\x89\x46\xd2\xe1\x5d\x96\x88\xa4\x34\x3b\xc9\x62\xdb\x24\x01\xc7\xec\x98\x6f\x32\x7a\xe7\xee\xe0\xa9\x47\xf7\xfb\xff\x6d\x6d\x96\x3c\xa3\x34\x6e\x18\x3a\xd0\x32\x3d\x6b\xb5\xf4\xd2\x40\x5c\x79\x60\x6b\xa2\x6b\x07\x7b\x6c\xf1\x62\x73\x4c\x68\xbd\x56\x7e\x89\xc1\xd1\xea\x3c\x79\xe6\x91\xfd\xfe\x74\x92\xea\xc3\x93\xac\x18\xef\xaf\xe4\xbb\x50\x5e\x87\x9f\x55\xe9\x58\x5d\x6e\xf3\xa9\xc9\x77\x8d\x5a\x7d\xf9\x85\x17\x5e\xb0\xed\x77\xf9\x92\xbd\xe6\x44\xed\x60\x34\x4f\x37\x2e\xdf\x59\x79\xee\xcc\x24\xfd\xa9\x54\xc3\x26\x42\x09\x5a\x04\x71\x81\xaf\x0c\x2c\x85\x5b\x40\x03\xcd\xa8\xdf\x72\x46\x18\x07\x51\x06\x38\x15\x7d\x3a\xc8\xd5\x93\x8f\x1c\x64\xff\x6d\x7f\xa5\x7f\x6b\x9c\x15\xc7\x07\xfd\xdc\xae\x1a\xd8\x3c\xe7\x55\x1e\x6d\x2c\xfd\xde\xf7\xbe\x17\xfe\xf9\x9f\xff\x19\x08\x0d\x7f\x96\xda\x4e\xb0\xad\xd2\xe3\xd0\xb4\xb0\x63\x3b\xba\xd4\xb1\x14\x00\x68\x7b\x5b\x2e\x25\xa6\x6b\xe6\xd5\xfa\xa0\x32\xc6\xa4\x89\x86\x6c\x34\x4b\xd6\x87\x8b\x64\x5b\xe9\xf2\xf6\xc3\x2a\x06\x01\x2b\x4d\x71\x22\x09\xb5\x4f\xc0\x68\xe8\xde\x96\x1a\x6c\xb4\xce\xb6\xb7\x79\xf3\xce\xb0\x54\x81\xdc\xa3\x7a\xe7\xa6\x3a\x0d\x26\xdf\x1b\xe6\x37\xa7\xa9\x1e\x6b\x04\x7b\xb9\x5c\xeb\x52\x23\x62\x5e\xab\xf7\x04\x20\x22\x7c\xf9\xcb\x5f\xf6\x29\x34\x09\x6c\xf8\x66\x99\xd2\xe0\xef\xa2\xe3\x03\xbe\x14\x26\xf1\x72\x85\xf3\x67\x9f\xac\x21\xb0\x15\x02\x71\x3e\x5e\xd4\x2f\x04\xb8\x25\xe7\xe2\xc5\xe5\xf1\x81\x0e\x17\x88\x09\xa5\xb5\xe4\x36\x37\x37\xd5\x07\x3e\xf0\x01\x78\xf7\xbb\xdf\x5d\xef\x1b\x20\x20\xa5\x35\x50\x58\x7f\x3b\x39\x00\xa8\xaf\x0d\x57\x58\xdd\x4a\xda\x9b\x9b\x2c\x5d\xe8\x81\x2a\x60\x94\xe4\x66\x98\x4d\xf4\x7a\x36\xd6\xeb\xe9\xcc\xac\xa7\x0b\x58\x57\xb9\x59\x4b\x72\x33\x42\x0d\x43\x34\x90\x81\x81\x0c\xa1\xb4\xba\x00\x00\x18\x80\x1c\x10\xe7\x06\xa1\xfc\x53\x30\xd5\x09\x1e\xeb\x14\x8e\xf2\x14\x0f\x17\x03\xdc\x9f\x0f\xd5\xe1\x6c\xa8\x0e\x75\x8a\x63\x9d\xc0\x38\xef\xe1\xb4\xe8\xe1\xdc\x24\x4b\x97\x7c\x51\x25\x68\xaf\x1a\xa7\x65\x6b\xcb\x7f\xe9\xb2\xbb\x34\x4d\x55\x9e\xe7\xb1\x20\xc6\x55\xf6\xb1\x3a\x2e\xd4\x96\xba\xa6\x11\x03\x58\x42\x7d\x98\xc7\xf1\xc9\x28\xe9\x94\xd3\x00\x39\xa7\x4c\x6c\xbf\x12\xbd\xb6\xbe\x1e\xa8\x13\x0d\xc3\x47\x0e\xfa\x17\x1f\xdb\x1f\x7c\x7c\x63\x92\x3e\x97\x6a\xdc\x6e\x01\x15\xc6\x93\xab\xdf\xa5\xc1\x75\x69\x10\xa6\xfa\x9f\xc5\x77\xe8\x72\xea\x12\x8d\xeb\xa3\x59\xf2\xcc\x85\xc3\xec\xee\xde\x70\x71\xf3\x24\x2b\xa6\x8b\xd4\xd0\xb6\x6a\xfb\x55\xbd\x8f\x8b\xde\x53\xd4\xeb\xf5\x60\xb1\x58\x2c\x5d\x31\x60\xcb\xc4\x96\x85\xdd\xa0\x9c\x2d\x70\x78\x71\xbf\x7f\xe9\xfc\x51\xff\x93\xbd\x42\x5d\x00\x57\xbb\xb5\xb2\xda\xf1\xc7\x8e\x73\xcb\xe6\xff\x06\x9c\x48\x68\x44\x44\x27\xb0\xb4\xff\xa7\x06\x3e\x88\x90\x68\x18\xae\xce\x92\xa7\x1f\x39\x18\xbc\x76\x67\xb4\xb8\x75\x92\x15\xe3\xbc\xb1\xba\xb4\xca\x04\xc2\x6d\x8a\xeb\x46\x1f\x80\x59\x6a\xa3\xd2\xe6\x5c\x27\x71\xa4\x9f\x06\x00\x38\x39\x39\xd1\x6c\x63\x56\x3d\x03\xac\x15\x68\x85\x3e\x53\x8d\xd9\xe6\xb8\xb7\xd9\xcf\xd5\x96\x6a\x9d\x51\x5f\xde\x47\x62\x8b\xd2\x77\x7a\xa8\x0d\x5a\xa0\x41\x92\x35\x68\xa1\x9c\x96\x5d\xdd\xc8\x2c\x6a\xf7\x55\x3c\xf3\x5f\xa4\xe6\xf8\xee\xea\xfc\x66\xae\xcc\x14\x2a\xc0\x22\xdc\xdd\x52\x2b\x6c\xc4\xf2\xc2\x39\x76\xcf\x8d\x54\xc6\xd6\x89\x40\x91\xd1\x49\x34\xd2\x20\xab\xd8\xb3\x94\xfe\xd2\xc0\x01\x72\x9b\x91\x5c\x48\x91\x86\x94\x66\x4c\x98\x94\x77\x9e\xaf\x18\x25\x4e\xe3\x4a\xef\xae\x67\x89\x0f\x8f\x1f\x33\x30\x78\x01\xe8\xf6\xf6\xb6\xfa\xc0\x07\x3e\x00\xef\x7a\xd7\xbb\x00\x00\xe8\x04\x00\x00\xc0\xf6\xb3\x65\x90\x52\x7f\x94\xce\xa4\xa8\x4d\x9a\x96\x16\x95\x61\x3a\xd7\xeb\x2b\x07\x7a\x73\xe5\x50\x9f\xcf\xa6\xfa\x7c\x3a\x37\x8f\x24\xb9\xd9\xc6\x02\x36\x51\x9b\x75\x34\x30\x02\x03\x03\x04\x33\x40\x83\x19\xd4\x57\xb0\x1b\x05\x80\x69\xf5\x2d\x75\x0d\x50\x7e\x98\xcd\xd8\xb6\x8d\x30\x35\x08\x63\x83\x30\x06\x05\x87\x5a\xe1\x6e\x91\xe2\x4e\x9e\xe1\x5b\xf3\x15\x75\x73\xb2\xa6\x76\x26\xeb\x6a\x37\xef\xab\xc3\x22\x85\x71\xd1\xc3\xa9\x56\x90\x57\x8a\xdc\x5e\xfa\xa5\xaa\xfe\x62\xbf\xdc\xdb\x02\x30\xa6\xfa\x42\xad\x2d\x20\x0b\x62\xfa\xfd\xbe\x9a\xcd\x66\xae\xba\x0e\xf5\x11\x4e\xe3\x1a\xdc\x7d\x00\xe9\xb4\x6d\xd9\x45\x13\xa3\xdc\x7d\x7c\x42\xa0\xcb\xc5\x2f\xa6\xcd\xba\xca\x81\x6e\x40\xb5\x9b\xc3\x9b\x6f\xed\x54\x1b\x72\xd7\xa6\xe9\xe8\xb1\xbd\xc1\x07\xb7\x4e\xb2\x8f\x64\xb9\xba\x88\x50\x8e\x0d\xad\x71\xb9\x1e\x9c\xdb\xe0\x43\x9a\x54\x72\x0b\x4d\xfd\xc1\x97\x6a\x9c\xa0\xcf\xe5\x09\x52\x68\xee\x04\x43\x61\x1c\x40\x80\x54\xe3\xe6\xd9\x71\xef\x83\x8f\xee\x0f\xae\xed\x8c\x16\x3b\xf7\x56\x17\x73\x03\xcb\xed\xd1\x3e\x53\x8b\xe1\x62\xb1\xd0\xb4\x2c\x48\x99\xb4\xbe\xcb\x87\x88\x99\xd2\x30\x58\x9b\xa5\x5b\x97\xef\xae\x7c\x68\x75\xa1\x9e\x51\x00\x69\x3d\x46\xf1\xbb\x94\x6c\x5e\xd0\x5a\x52\xa8\x69\xa5\x3d\xbe\xd1\xc5\x01\x71\xac\x63\xe5\x46\x97\xd3\x44\xd0\x83\x00\xa9\x56\xdb\x67\xc7\xe9\x33\xef\x38\xca\xbe\xbf\xbf\xb2\xb8\x7b\xb0\x52\xd8\x31\xcd\xae\xde\xd4\x6d\x87\x4c\x3e\x24\x27\xb5\x37\xa7\x21\x84\xd3\xa6\x92\xa7\x90\x88\x0f\xb0\x78\x15\x38\x2d\x74\x80\x66\x06\x48\xd7\xd6\x53\x8d\x83\xb3\x93\xf4\xa1\xac\x28\xd7\x37\xa5\x1d\x47\xd4\xab\x05\x42\x5a\x05\x6c\xc0\x18\x5c\x0a\xa3\x9d\x00\x00\x6a\x38\x44\xd7\x05\xeb\x4e\x41\xad\x32\xf5\x95\xba\x44\x0e\x68\x37\x86\x2a\x4f\x50\xed\x9f\xd2\xd3\x54\xef\xdf\x1b\x2e\xee\x14\x68\xe8\x0d\xb9\xf4\xab\xcf\xf5\x11\x3b\x9a\x3f\x76\x5b\x2e\xb0\xe7\x58\x85\x18\x5b\x77\x21\x25\xec\x0b\xeb\xc2\x2f\x34\xcb\x74\xfd\x9e\x46\x9e\x10\xc0\x72\xf1\x74\xd1\x48\xd6\x12\x1f\x5d\x57\xb9\x43\xf5\xd6\xf2\xfb\xcc\x67\x3e\x43\x5f\xeb\x09\x00\x79\x97\x6e\x21\x55\xa0\x4d\xaa\x34\x64\xaa\x30\x83\xde\xd4\x8c\x46\xf7\x8a\xf3\xa3\xbd\xe2\xf1\xfe\x58\xbf\x47\x2d\xcc\x25\x55\x98\x0b\xa8\x61\x13\x0d\xac\xdb\x5b\x49\xdb\xf7\x1f\xb5\xb5\x57\x33\x20\xd8\x13\x1d\x26\x03\x83\xf5\xf7\xb9\xd0\x70\x15\x69\x72\x83\x66\xac\x27\xb0\xbf\x72\x58\xec\xae\xdf\xc5\x5b\x79\x0f\xdf\x58\x0c\xf0\x07\xe3\x33\xc9\xb5\xa3\xad\xf4\xe6\x6c\x15\x0f\xb5\x82\xa9\x4e\x61\x8a\x0d\xb8\x57\x00\xc0\x67\x73\xb6\xff\x58\xd0\xa6\x01\x1a\x0b\x0c\x01\x2d\x21\xd0\xea\xd3\x59\x21\x1d\x28\x01\x9f\x18\xbd\xe9\xa3\xa1\x72\xf1\xb6\xcc\x65\x97\xf8\x4a\x61\x31\x80\x3d\x04\x94\xba\xe4\xa1\xae\x0b\xe6\x4f\x41\x4b\x0a\x00\x19\x1a\x18\x9c\x3f\xca\x2e\x6c\x1f\x67\x1f\x5a\x59\xa8\x4b\x0a\x1a\x2b\x7b\xeb\xee\x73\x24\xcf\xc0\x2d\x28\xf4\xb0\x06\xff\xd8\x6e\x15\x15\xd8\x9e\x17\x3a\xd1\x25\x13\xd2\xe5\xc1\xbd\xda\x3f\x02\x98\x0e\x72\x75\xf1\x1d\x47\xd9\x47\x2e\xed\x0d\xbe\x7f\xb0\x92\x1f\xe7\x09\xd8\xf6\x68\xc7\xce\xba\xac\x8d\x31\x2d\x6b\x20\xf9\x26\x13\xad\x4f\xfe\x1d\xa2\x74\x90\xab\xd1\xa3\xfb\xfd\x4b\xe7\x4e\x7a\x1f\x49\x0b\xb5\x05\x40\xf2\xc1\xc6\xc1\xd6\x7c\x99\x02\x0f\x5c\xc2\x18\xed\x48\xe5\x2d\xc2\x6d\x30\x88\x4d\x7e\x01\xec\x7e\x19\xfa\xcc\xc1\xa0\x01\x05\x98\x0e\x17\xea\xf2\xf9\xc3\xec\xfd\xb7\xd7\xe6\xd7\x0f\x07\xc5\xb1\x29\x57\x16\x52\x20\x56\x17\xa9\x7f\x82\xbb\x0f\xc5\x8e\x6f\x75\xdb\x72\x1d\x87\x76\x3d\xfb\x12\x58\x6a\xd4\x64\x16\x48\xcd\xd7\xed\xaf\x5e\x02\xa6\x89\xc6\xc1\xda\x2c\xdd\x4a\x35\x8e\x00\x38\x02\x2e\x35\x22\x62\xbd\x1d\x09\xe8\x42\x0f\x35\xc3\x35\xe8\xb1\x0d\x25\xad\xea\xb5\xcf\x76\x8d\xa7\x06\x35\x40\x14\x6f\x0d\x64\x0c\x4b\xab\xe2\x4b\x9b\xb9\xbd\x08\x08\xcb\xf9\xa7\x46\xd0\x47\xfd\xfc\xd6\x51\xbf\x38\xd4\x0a\xe6\x80\xf5\x6d\xb9\x9a\x83\x17\x0a\x90\xd8\x55\xe8\x12\x20\xa4\x6e\x09\xe9\x0b\x7e\x00\xed\xf8\x5c\x99\x49\xf1\xa5\xb4\x7d\x69\x49\x8a\xd3\xa5\xe4\x24\x05\xc9\x65\xf5\xc9\xe2\x52\xd8\x2e\x60\xe1\x03\xda\x5d\x78\xfb\xf2\xee\xcb\x03\x38\x68\xb8\x73\xa6\x6f\x3f\x72\x08\x20\x7e\x3d\xd6\xd2\xf3\xbf\xe6\x7b\x2f\xd5\x4d\xd4\x25\x58\xc9\xb7\xd7\xee\x16\x97\x07\x27\xfa\xfd\xe9\x5c\x3f\x95\xe4\x70\x09\xb5\xd9\x86\xe6\x0b\xb2\x40\x6c\xcf\x6d\x6b\x23\x54\x6a\xbc\x42\xff\xd8\x4c\xf5\xaa\x4e\xb5\xdc\x33\x6a\x8f\x92\x59\x8a\xda\xac\x27\x06\xd7\x01\xe0\x31\xc8\x4d\x9e\xce\xcd\x38\x1b\xc3\xee\xf0\x50\xbf\x71\xe6\x76\xfe\xea\x7c\xa8\xbe\x7d\x7c\x56\x7d\x77\xff\xe1\xde\xcd\x3c\xc3\xa9\xa9\xac\x95\xd0\x9c\x5a\xb0\x03\x83\xbd\xc1\xb4\xee\xf7\xd5\x73\x6d\xdd\xfd\xfa\xd7\xbf\x0e\xdf\xfe\xf6\xb7\x43\xfa\x4a\xea\x23\xbc\x0e\x5c\x7e\x31\xed\x9b\xd2\x72\x30\xd2\x45\x71\xfb\x80\x85\x94\x3e\xf7\x8b\xed\x07\xfc\x59\x92\xc1\xc7\x8b\xeb\x7d\x45\xea\xc9\xea\x7c\x7b\x67\x57\x36\x9a\xa5\xeb\x8f\xec\xf7\x9f\x5e\x9b\x26\x4f\x27\x1a\x46\xd4\x92\x42\x2f\x57\xa3\xf0\xb9\xfd\x0c\x4b\x6f\x00\xac\xfd\x21\xf3\x61\xd6\x9b\x2a\x29\x87\x45\xa2\xd9\x4b\xa9\x0c\x0e\x47\xb3\xe4\xa9\x8b\xfb\xfd\x8f\x5e\xdf\x9c\x5c\xbf\x37\xcc\xcb\x09\x29\xb6\x3f\x90\x6b\xdb\xa9\xbd\xbb\xcc\x02\x38\x62\x71\xa2\x65\x63\x3f\x6d\x90\x22\x60\xb6\xb2\x48\xd6\x1f\x3e\xec\xbf\xa7\x9f\xab\x4b\xd8\x6a\x93\xe5\xd8\x43\xad\x1f\x2d\x99\x25\xf9\xe9\x64\xbd\x2e\x53\x3a\x19\x6f\x77\xdf\x16\x90\x21\x56\x28\x6e\x3c\x28\xc3\xcb\xc8\x69\xa1\xb6\xcf\x4e\xd2\xa7\xb6\x8f\x7a\xaf\xec\x0e\x17\x3b\x87\xfd\xdc\xae\x28\xa4\x55\xfe\xa9\xa5\x85\xde\xe7\xe6\xc2\x17\x2e\x20\x4d\xc3\x5a\xf1\xb8\xc5\xc5\x45\x2c\x39\x2e\x4c\x4d\x4f\x37\x10\xda\x4d\x76\xf4\x6e\x08\x20\xb3\x43\x34\x90\xf6\x73\x35\x5c\x9d\xab\xed\x44\xe3\x68\x79\x3f\x0b\xd6\x9b\xac\x1a\x00\x82\xed\xa6\x8a\x8d\x3f\x40\xd9\xc8\x99\xa1\xa4\x7e\xaf\x2b\x14\x71\x29\xdc\xc6\x45\x92\x02\x88\xe9\x56\xcf\xed\xc9\x28\x14\x89\x99\xee\xae\x16\x6f\xcc\x53\x33\x36\xd5\xdd\x2d\x58\x5e\x8d\x9c\x57\x95\x57\xff\x21\x39\x4a\xc6\x51\x35\x84\x07\xf2\x56\x79\x3b\xe8\x7c\x0a\xcb\x07\x5e\x80\xf8\xbb\x68\x25\x3a\x9f\x2c\x3e\xab\x44\xcc\xe0\x11\xf2\xe7\x3c\x5d\x0a\xd8\xa5\xf8\x25\x20\xe6\x8b\x4f\xdf\x25\xd9\x7c\x03\x92\x04\x4c\x5b\x7c\x28\x68\xa1\x34\x74\x22\x40\xcc\xcd\xf5\x64\x00\xaa\x0b\x1d\x11\x31\x1d\x1c\x15\xa3\x33\xb7\xf3\x4b\x6b\xf7\x8a\x0f\x65\x63\xfd\x5c\xb2\x30\x4f\x2a\x0d\xdb\xd5\x12\x90\x6a\x5b\x34\xdb\x5a\xdd\xae\xee\xb6\x66\x6f\xf6\x5f\xdd\xe5\x9a\x38\xe5\x1c\xa1\xd2\xaa\x96\x86\x0e\x1c\x75\xdf\x2a\xf5\x1e\x1a\x58\x4f\x0c\xac\x9b\xb9\x7e\x4c\x2d\xf0\xb9\x6c\xa2\xef\x0e\xf7\xf1\xfa\xd9\x5b\xf9\x3f\x1f\x9d\x4b\xfe\x65\xef\x42\xef\xda\x6c\x55\x8d\x0d\xc2\xdc\x2a\x44\x28\x2d\x97\x0a\xc8\x52\xeb\xd2\x6c\x14\x91\x82\x96\x18\x17\x43\x1b\xea\x1f\xe0\x08\x97\xe8\xba\x00\x95\x10\x40\x0a\x0d\x06\xae\x74\x5c\xf4\xa1\xfc\x84\x78\xd5\x4e\x00\xd6\xcd\x26\x54\xc4\xf4\xe1\xa3\x6c\x7b\xfb\x38\xfb\x68\x3f\x57\xe7\x11\xb0\xdc\xe8\x0d\xcb\x58\x83\xaa\x57\xa6\x6a\xe5\x08\x0e\x27\x91\x71\x5e\x52\xda\x95\x53\x3d\x8d\x9b\x1b\x93\xf4\xd9\x47\xf7\x06\xff\x63\x6f\x78\x72\xa8\xc1\x70\x0b\x43\x0d\xae\x6d\x9b\xb4\xcb\xff\x7c\xaf\x0f\xb1\x8a\xa6\x88\x98\x2a\x0d\x83\x95\xb9\xda\x3a\x33\x49\x9f\x4c\x75\xb5\xe2\x50\xcb\x65\x27\xc6\xcb\x42\xd9\x57\x5a\x3e\x94\xa6\xdd\x77\x9b\x0e\x28\x6f\xc8\x6d\xee\xc3\x69\x40\x11\x2e\xf3\xaf\x02\x15\x80\x1a\x2c\xd4\xc5\xb3\x93\xf4\x5d\xa3\x59\xf2\xbd\xa3\x41\x71\x0c\x4d\xfd\xda\xcf\xd8\xd4\x7a\x59\x18\xdf\x5c\xc0\x5b\x72\x62\x1b\xe5\x16\x17\x10\xde\x43\x8e\x2a\xe0\x56\x3c\x2a\x30\x41\xde\xad\xc6\xdc\x2b\x30\x5b\x9f\x25\xa3\xc1\x5c\x6d\xa1\x81\xd4\xa2\x46\x43\x37\x57\x49\x68\x19\x68\xe5\x50\x64\xc8\xbe\x1a\x5d\xd3\x34\xbf\xed\xfd\x31\x0d\x43\xdf\x79\xf8\x86\xce\xd4\x4b\x55\x6c\xf9\x4a\xcf\x12\x7d\x7c\x67\x75\x7e\x73\x91\x18\xba\x21\x37\x87\xf6\xe6\xdc\xa5\xf2\x71\x7c\x69\x34\x76\x30\x0c\x01\x16\x4e\x47\x69\x79\x1c\xd7\x0c\x2e\x34\x2b\x93\xd2\x08\x01\x89\xd8\x38\xa1\x7c\xc7\xf2\x8e\x95\xaf\xcb\x40\x10\x33\x78\xb8\x64\x72\xc6\xa1\xa0\x85\x9a\xde\xe9\x52\x90\x05\x2a\xd8\x1c\x3b\xce\x00\x20\x1d\xee\xe5\x1b\x1b\xb7\xf2\xa7\x56\xf7\x8b\x8f\x66\x13\xf3\x6c\xb2\x30\x8f\xa3\x86\x4d\x00\x18\x00\x00\xd8\xf5\xd1\xb2\xed\xd2\x67\x80\x72\xa9\x95\xf4\x03\x63\x95\x5a\x45\x07\x36\xac\x6d\x63\x47\xdb\xeb\x28\x40\x31\x74\x6c\xc1\xfa\x38\x2b\x81\x3c\x00\x88\x0a\x0d\x0c\xb1\x80\xc7\x54\x61\x2e\x24\xb9\x79\x6f\x6f\x62\x3e\xb5\x76\x57\xff\xeb\xc9\x86\xfa\x9f\x07\xe7\xd3\x57\xc7\x67\x92\xdd\x22\x81\xfa\xf2\xaf\x4a\xf9\xe7\x00\xad\x2f\xd4\xd6\xed\xf4\xf9\xe7\x9f\x57\x45\x51\xc0\x1f\xfc\xc1\x1f\xf8\xc0\x73\x8c\xa5\xc1\xe5\x42\x71\x63\xd2\x89\x49\xf3\x41\x58\x4b\x62\xac\x83\x5d\xe4\x08\xa6\xc9\x2f\x2f\x84\xb2\xce\xca\x76\x6a\x20\xeb\xe7\x38\x7c\x74\xaf\xff\xde\xb5\x59\xf2\x5e\x65\x60\x60\x4c\xb3\x34\xd1\xba\xe8\x90\xf8\x5b\xc7\x27\x9a\x8d\xf5\xb1\x6d\x4f\xb7\x96\x09\x1a\xa7\xb6\x2e\x00\xd4\xb7\xa4\xb7\x07\x05\x42\x07\x6d\x8b\x3b\x1a\xc8\x56\x16\xea\xc2\xf9\xa3\xec\xfd\xdf\x36\x27\xaf\x41\xf9\xed\xb9\x0c\xda\x1b\xca\xe7\x56\x1e\x7e\xe9\x1e\xb9\x8c\xb1\x06\x2f\x76\x7f\xcb\xea\x3c\x19\x5d\x38\xcc\x2e\xae\xce\xd5\x25\x65\x60\xd0\x02\x54\xc2\x78\xd4\xf2\x12\xae\xf8\x68\x4b\x6e\xc7\xbb\x8a\x8e\xa1\xbf\x7a\x95\xa1\xa2\x81\x7a\x32\x5f\x1d\x7b\x31\xed\x3e\x5d\x17\x95\x01\xe8\x69\xdc\x5c\x9b\xa5\x17\x87\x8b\x64\x13\x00\x76\x48\x79\xa4\xd5\x84\x5d\x03\x4d\x1b\x00\x3e\xf8\xc1\x0f\xaa\x7f\xff\xf7\x7f\x97\xf4\x5f\xe7\x3e\x4a\x37\xd4\x58\x66\xbe\xce\xe2\x72\xad\x04\xac\xb5\xc5\x3a\x66\xde\x06\x20\xe8\xb3\x57\x60\xb6\x3e\x4d\x37\x7a\x5a\xad\xdb\x0d\x5a\xa5\x4e\x6c\xcc\x75\x14\x64\xd0\x05\xa3\x56\x1a\x60\x91\xa1\xad\x48\x5a\x11\x0c\xe8\xb0\xca\xe0\x7e\x5e\x0c\x4f\x91\x28\x21\x34\x08\xf9\xa4\xa7\x77\x0f\x07\xf9\x9e\x26\xfb\x5b\xd8\xe6\xc2\xfa\xcf\x96\x89\xe3\x86\x50\xc9\x0a\x41\xc3\xb9\x1f\x9f\xbd\x73\x3e\x52\x3c\xee\xcf\x5d\x17\x0b\x87\x4b\xa6\xd8\x01\xc1\xa7\xd4\xe9\xb1\x75\x00\x00\x20\x00\x49\x44\x41\x54\x60\x41\x08\x73\x3d\xbb\xf8\xba\xe4\x8e\xe9\x30\x2e\xde\x2e\xb9\x7d\x1d\xce\xf7\x5e\x3f\xf3\x63\xce\x00\x40\x97\x5a\xeb\xfb\x51\xec\x1a\x39\x18\x93\x65\x63\x33\xdc\xbc\xb9\x78\x72\xb4\x5b\x7c\x32\x1b\xeb\x0f\x27\x0b\x73\x49\x69\xd8\x84\xf2\x04\x90\xb2\x4b\xa3\x74\xf9\xd4\xce\x06\x1a\xe5\x87\x2d\xd0\xd2\x60\x13\xf2\xdf\x2e\x0f\xb5\xc6\x8b\x76\x7f\xe4\xb3\x37\xa8\x93\xa5\xdc\xda\x93\x06\x83\x90\xa2\x86\xcd\x74\x6e\x46\x49\x5e\x3c\xd6\x9b\xe9\x0f\xaf\x1c\xe9\x7f\x3d\xde\x4c\xfe\xc7\xe1\x76\xfa\xbd\xc9\x9a\x3a\x34\x09\xda\xaf\xab\x2b\x68\xbe\xae\x4e\x3f\x54\x0a\x00\xa0\xed\x37\x98\xec\x3b\xfb\x8d\x7d\x0e\x59\x3a\xa4\x34\x62\x68\x7d\x71\x43\xe1\x5d\xd3\xe9\x02\xfa\x63\xf2\xeb\x4d\x93\x1e\x30\x60\x96\x85\xda\x1a\xd8\xcf\xd5\x68\x63\xd2\x7b\xa2\x57\xe0\x06\x96\x61\x75\x3b\x6a\xcd\xcc\x3d\xb3\xc8\x46\x8f\xb7\x5b\x12\x35\xc2\x08\x86\x85\x76\x7b\x16\x09\xa4\xc9\x30\x02\x80\x51\x89\x56\xa3\x33\x93\xf4\xa9\xad\xe3\xde\xc6\xed\xb5\xf9\x18\x9a\x7d\x2e\xb5\x85\x81\xc8\xdf\xb2\x32\x60\x73\xe2\x8f\x4f\x38\xd2\x95\x45\xb2\x7e\xee\x24\x7b\x67\xaf\x50\xdb\xbe\xcb\x4f\x25\x7f\xba\x6a\xd0\x24\x87\x4b\xfd\x0b\x5d\x83\x1b\x4a\x65\xd9\xb6\xc0\xb0\xe2\xa9\xd3\x52\x1a\x87\xc3\x79\x72\xfe\xcc\x34\x3d\x3f\x58\xa8\xeb\x93\xb4\x98\x0a\xc6\x89\xba\x1c\xd8\x49\x40\xae\x57\xbb\xf4\x29\x00\x90\x2d\x2e\xe0\xf0\x73\x39\x91\x8e\xac\xf1\x59\x84\xd9\x32\x21\xda\xcc\x25\x1a\xb3\xe1\x3c\x39\x9b\x16\x38\x92\xda\x92\xd5\x8d\x7c\x77\x35\x5f\x83\x63\x60\x72\xc9\x21\xbd\x91\x87\xa5\x51\xb3\xf4\xc4\xe7\x04\x54\xbf\x03\x00\x68\x34\x7a\xdc\x2b\x76\x8f\xb3\xe2\x18\x00\xe6\x80\xf5\x26\x43\xbb\x4c\x54\x6f\x56\xaa\x9e\xc1\x18\xc3\xf7\xb7\x58\xc7\x07\x33\x3b\x20\x72\xe5\xe2\x02\x21\x12\x5d\x68\xf6\xc6\x79\xc4\xf2\xe2\xa0\x57\x1a\xc4\x63\x00\x89\x94\x0f\xfe\x1e\x3b\x3b\x8c\x9d\x49\x4a\x71\x63\x79\xf3\xf8\x2e\x5e\xbe\x49\x41\x8b\xfe\x37\x7e\xe3\x37\xd4\xe6\xe6\x26\x9d\x79\xd6\x16\x16\x68\xfa\x4d\x7d\x8c\x12\xb4\xc9\xd2\xb9\x19\xae\xed\x16\xe7\xd7\x77\xf2\x0f\x0f\x0f\xf4\xcf\xa4\x33\xfd\x5e\xa5\x61\x0b\x0c\x0c\x00\x40\xd5\x9b\xd2\x25\xe5\x45\x17\xc6\xf9\x87\xdb\xe8\x6e\xf6\xd6\x2e\x77\x26\x39\xef\x78\xcd\xde\x16\x42\x64\x96\x22\x35\x2c\xab\xd9\x68\xe9\xa1\x00\x60\x00\x1a\xb6\xd3\x99\x59\x57\x79\x71\x3e\x9d\xe9\x27\x07\xc7\xfa\xeb\xc7\xe7\x92\x7f\x39\x3a\x97\xbe\x31\x1b\xaa\x63\x28\x3f\xa3\x91\x42\x79\xd5\x80\x2d\xdb\x4a\xd4\x7a\xd6\x0b\xc6\x18\x10\xfa\xd6\x83\x72\x5d\x2d\x35\x5d\x5d\x0c\x10\x0f\xb5\xf5\x90\x25\xe6\xc7\xe1\xa4\x7d\x58\xe5\x32\x02\x40\xba\x3e\x4d\xd7\x57\xe7\xc9\x25\x55\x7d\x44\x97\x4e\x00\x63\x6f\x81\x0d\xb9\xa0\x1e\xef\x1c\x09\x21\x31\x66\xb8\x3a\x4f\x1e\xbf\x78\xd0\x7f\xec\xf6\xda\xfc\x2e\x40\xbd\x21\xb5\xb5\x64\x44\x22\xb5\xde\x69\x79\x90\x25\xa3\xac\x57\xe0\xfa\xca\x42\x6d\x27\x06\x87\x3c\xff\x14\xd8\x4b\x20\x62\x69\xf2\xde\x36\x84\x2e\xe5\x4f\x3c\x3d\x25\xe4\x3b\xa6\xec\x10\x30\xed\xe7\x6a\x6b\x6d\x9a\x3c\x3c\x5c\xa8\xd1\xb4\xa7\xeb\xe5\x22\x20\x06\x0a\x12\x45\x7f\xf6\xb3\x9f\x55\x7f\xf2\x27\x7f\xc2\xc7\x09\x97\x7e\xf4\xb6\xd1\x58\x65\x4d\xdf\x79\xb8\x97\x17\xdd\xa4\x03\x50\xcf\x20\xeb\xd9\x63\xaa\x71\xb0\xb2\x50\xeb\x89\x81\xea\xe2\x39\x43\xfe\xb7\x11\x61\x65\x3c\xb4\x1e\x00\x2d\x4a\x8e\x0a\xdb\x0b\x48\xa5\xb9\xda\xda\x6c\xa0\x34\xb3\x11\xfa\xc6\x88\xbd\xec\x4c\x29\x37\x18\x2c\x1b\x87\xa9\x96\x8b\x9a\x34\x0d\x14\xca\xcc\x4f\xfa\xc5\xdd\x59\xaa\xcb\x8d\x85\x65\xc3\xd6\x58\x5e\xbc\xd5\xba\xc7\xc5\xfe\x21\x62\x48\xb1\xf2\x41\xdb\x37\x73\x92\x1a\x80\x6b\x06\xe5\xe3\x25\xf1\xb6\x4e\xaa\x63\xce\x4b\x7a\x96\x68\xa4\xb0\x58\xd0\x12\x8a\xef\xcb\xb7\xc4\x2f\x26\x8e\x04\xde\x5c\x32\x84\xea\x4d\x4c\x73\x73\x73\x13\x00\x4a\xc0\x42\x67\x2f\x64\x96\x56\x7f\xee\x3e\x29\x60\xb4\xba\x5f\x9c\x7f\xe8\xc6\xe2\xc3\xe7\xde\x98\xff\xf7\xb5\xbb\xf9\x7f\xef\x4d\xf4\xc7\xd4\xff\xcf\xdc\xbb\x3e\x59\x76\x5c\xf5\x82\xbf\x95\x7b\x9f\x47\x9d\xaa\xae\xae\x6e\xb5\x5b\x6d\xb9\xfd\x92\x6d\x59\x36\xba\x46\xa8\x75\x6d\xf3\xf0\xd8\x77\x30\x04\x98\xb9\xe0\x09\x83\x81\x18\x0f\x10\x61\xa4\x3f\xaa\x15\x7c\x80\x70\x84\x81\xc0\x11\xf0\x85\x0f\x44\x4c\x40\x40\x30\x86\x18\xdb\xc8\xc6\x6f\xcb\xb2\x1e\x2d\xa9\xd5\xea\xae\xae\xae\xc7\xa9\x53\xe7\xec\x9d\x6b\x3e\xec\x7c\xac\x5c\x3b\x73\x9f\x53\x36\x31\x31\x29\x55\x9f\xbd\xf3\x9d\xb9\x33\x57\xfe\xd6\x23\x33\x5b\x5c\x47\xb7\x3b\xc8\xc4\xe3\x33\xc5\xb8\x4e\x24\x25\x5d\x18\x0b\x6a\xa7\xaf\xcc\xea\x04\x2c\x91\xa3\x0d\xfe\x12\xf4\xc8\xb0\xcc\x41\x10\xec\x54\x4e\xc1\x06\xc6\x57\x83\x45\x66\x12\x58\x31\x0c\x31\x66\xa6\xe5\xeb\xe3\x53\xfe\xf8\xce\x7e\xf3\xbb\x97\x5e\x5b\xfd\x9f\x57\x5e\x59\x7e\x6a\xf7\x6e\x73\xdd\x34\xbc\xc3\xcc\x63\xff\x07\x71\x3a\xaf\xda\x04\x10\x18\xa8\x5f\xfd\xd5\x5f\xd5\xb4\x2a\xf7\x2c\x5d\x89\xee\xad\x93\x62\xae\x03\xb4\xe7\x4d\x9b\x5b\x04\xa4\x2b\x81\xe8\x21\x5a\x2d\x69\xf2\xa6\x75\x32\x19\xff\x5e\xb9\x42\x55\x94\x82\x6e\x46\x5d\x59\x1a\x5f\x39\x19\x5d\x9d\xac\xe8\x7a\x77\x1f\x1d\xa0\xc7\x26\xa7\x3e\x69\xde\x8e\x76\xeb\x31\x2a\x92\xc7\x5f\x16\xf1\x11\xd5\x50\x22\xb3\x6c\x62\xd6\x01\xdc\x31\xbd\xc4\xa8\xc7\x2d\x5d\xb9\x72\x3c\x7a\x1f\x9c\x5a\x16\x62\x1d\x13\xcf\x80\x62\x6e\x98\xd9\xc8\x75\x2f\xcc\x67\x46\x3d\x6a\x69\x36\x6e\x69\x97\x18\x63\x72\xaa\xda\x5e\xbb\xd3\xe9\x94\xd4\x93\x85\x3f\xa9\xf9\xc8\x2c\xc2\x95\x90\x34\xc4\x4c\xa6\x9d\x08\xe3\x24\x56\xff\x9b\x30\xa3\xb6\xb4\xb3\xb5\x32\x57\x26\x2b\x33\xe3\xee\x50\x4a\xd9\x0f\xbe\xed\x21\xc9\xce\xce\x4e\xbf\x71\x9b\x01\xe8\xde\x38\xab\x73\xb1\x90\x27\xe2\xf2\x5d\x13\x6e\x1f\x66\x2e\x5d\xba\x84\xfb\xf7\xef\x87\x78\xfa\xe0\x1d\xa4\x83\xd9\xd4\x96\xc6\x5b\x2b\xb3\x5b\x59\x9a\x02\x41\xbb\xd6\x03\x15\x39\x3f\x1f\x53\x83\xc6\x44\x1f\x87\x08\x76\xe2\xce\x24\x74\x40\x26\x24\xf0\xbb\x92\x04\xd8\xd1\xd2\x95\xc4\x28\xa6\x87\x49\xed\xca\xf0\xe2\x70\xda\xdc\x6d\xaa\x6e\x47\x84\xd8\x49\xe4\x2f\x56\xcc\x19\x29\xe5\xdc\x10\xe1\x0b\xe5\x21\x25\x38\x39\x00\x39\x24\xed\x28\x01\x9d\x52\xfa\x92\x84\x45\x13\xc3\xa1\xb2\xb4\x04\x62\xd3\x34\xb9\xfa\xe6\x38\xcf\x9f\xb6\xed\x9b\xa6\x29\xb5\xbd\xd4\xbe\x52\x9a\x6c\x3c\x75\xaf\x8b\x36\xbe\x4d\x76\x21\x8c\xce\xec\x6c\xfb\x7e\x7b\x7d\xf7\xad\xe6\xe9\xed\xfb\xed\x27\x47\x0b\x7e\x92\x2c\xae\x00\xe8\xce\x57\x71\x54\x2a\x88\xe1\xe3\x8e\x06\x00\x4a\x1d\xe4\xdf\x83\xb8\x1e\x21\x4d\x32\x77\x59\x86\x89\x67\x07\x7a\xe2\xbc\x21\x24\xca\x73\x92\xcc\x06\xa2\x93\x69\xbc\x4d\x03\x75\x69\xc5\xc1\x91\x86\x18\xbb\xb4\xc2\x63\x5b\x47\xf6\x4a\xbd\xe4\x47\x46\x0b\xfb\xf6\xfa\xac\xfe\xd7\xa3\x2b\xf5\x4b\xab\x2d\xd3\x49\x37\x23\x4d\x91\x27\x53\x7b\x67\xf5\x81\x75\x48\xc7\xf3\x26\x84\xb3\x14\xa7\x44\x07\xd7\xe5\x21\xc7\xc1\xba\xb4\x9b\xd4\x7b\x5d\x3a\xed\x72\xf5\x5e\x97\xb6\x04\x90\x00\x44\x09\xbb\x97\x2c\x68\x5b\x46\x00\x75\xc5\x98\x5e\x9e\xd7\xef\x1c\x59\xb3\x47\x80\xe9\x86\x50\xee\xac\xae\xbc\xcb\x8e\xa3\x72\x64\x64\x14\x98\xc9\x6b\x5e\x80\xa8\xea\x13\xe8\x3d\x9b\xca\xd2\x6c\x67\x59\x3d\x32\x6a\x69\xbc\xaa\xb8\x66\x70\x2d\xda\xe9\x5d\xf8\xb6\x7e\x3e\x8b\x4d\x29\x7e\x7e\xbb\x43\xf8\xa8\x1e\xb5\x34\xab\xad\xd9\x21\xc4\x8b\x85\x01\x57\x37\x21\x41\x89\xa6\x10\x3e\x2c\x9d\x77\x1e\xb3\xf8\xf9\x4a\xe8\x83\x95\x8c\xa6\xa8\xd4\x3b\x42\xc0\x9a\x5f\x8f\x89\x08\x86\x79\x3a\x6a\xcd\xce\xa8\x35\x53\x61\x6b\x17\xbe\xbd\xd6\x92\xa8\xf5\xef\xbc\xe3\x3e\x59\x87\x4a\x48\x3d\x87\xf2\x4b\xe8\x3c\x29\xcc\xa3\x2a\x66\xce\x6e\x87\x16\x86\x5b\xb5\x61\xd4\xe3\xd6\xcc\xa6\x8d\xd9\xeb\x44\x87\xa9\xf3\x28\x30\xf2\x69\xde\x9f\x93\x5f\xed\xfa\xb2\x98\x02\x92\x67\x49\xad\x15\x22\xcd\xa2\xdc\xbc\xb3\x04\x7b\x56\xf3\xe1\xe1\xa4\xdd\x77\x86\xb9\x01\xb4\xc0\x11\x08\x69\xe7\xe2\xfb\xe6\xe6\xcd\x9b\x56\x6e\x75\xf5\xd9\xc9\xac\x75\x51\x48\x09\xde\x79\x09\xcc\x90\xbf\xff\x5b\x47\xa4\x4b\xef\xb2\xfc\x5c\x59\x9b\x70\xb6\xe7\x71\x9b\xb6\xb1\x54\x1f\xef\x97\xeb\xaf\xf3\xd6\x29\x97\x47\x69\xae\xf4\x38\x5f\x75\xf8\x20\x24\x17\x47\x6e\xeb\x24\x80\xb1\xb1\x98\x4e\x8f\xdb\x2b\x17\x6f\x37\x1f\xb9\xfc\xda\xea\x37\x2f\xdc\x6d\x3f\x37\x3e\xe5\x5f\x31\x16\xd7\x88\x51\xc7\x33\x54\x94\x84\x05\x81\x68\x22\xde\x42\xaf\xc6\x73\x60\x53\x39\x64\x91\x33\x72\xef\x12\x72\x4c\x13\x44\x27\xd1\x2f\xe5\x1a\xf5\xac\x61\x15\xc1\x17\x96\x90\x60\x57\x8c\xcb\x97\x51\x93\xe5\xab\xa3\x05\x3f\xb5\xb3\xdf\xfe\xf6\xe5\xd7\x56\xff\xfb\xe5\xd7\x56\x4f\x6d\x1d\xb6\x97\xc9\xf2\x0c\x9d\x1d\x4f\x22\x79\x51\x7f\xfa\x7c\x91\x9f\xc5\xe5\xe6\xe7\xcf\x92\xf7\xa6\xd2\x9a\xdc\x98\xdc\x44\xd2\x32\x94\x7e\x13\x37\x04\xe6\x43\x9e\x8e\xa6\x69\x4e\x3b\x01\x2f\x64\x69\xbc\xbd\xac\xaf\x9a\xee\x5a\x97\x6e\x5d\x00\x7a\xc3\x55\x8f\xba\x1e\xed\x5e\x47\x90\x45\x58\x42\xcf\x0b\xf1\x0b\xc2\x97\x5e\x00\x31\xd5\x93\x95\xb9\x3a\x69\xcc\x94\x84\x9d\x8a\xda\x29\xeb\x5d\xb2\xa3\x28\xa7\xf6\xad\x2d\x8d\x27\x8d\x99\x55\x96\x66\xc4\xdd\xee\xaa\x12\x7f\x9c\x03\x19\xbd\x7e\xe9\xcd\xbd\x14\xac\xac\xc3\x7b\x3a\x3f\x2a\xf4\x97\xf7\x27\x46\x5d\x5b\x4c\x6b\x8b\x29\x32\x73\xcf\x9b\x88\xf4\xa4\x5d\xe7\x9f\x2f\xbd\xb5\xa6\x56\x01\x43\xdc\x6b\x8e\x00\xf7\x90\xd0\xab\xaf\xbe\x9a\x5c\x51\xef\xec\x3b\xdc\x47\x09\x68\xbc\x86\xfb\x70\xb3\xa5\xd9\x19\x77\xc0\xa5\x8b\x13\x0f\x73\xcb\x74\xb4\x23\xc0\x41\x41\x43\x08\x46\x87\x02\x29\xf7\x24\x30\x81\x2e\x76\xf1\xc3\xf6\x6a\x4a\x89\x64\xaa\x5e\x8a\xce\x5d\xad\x58\x24\xe4\x96\xb8\x59\x8c\xda\x83\xe3\x49\xfb\x80\x85\x6d\x0b\x52\xc0\x12\xcb\x10\xe5\x3a\x55\x51\x6e\x01\x1d\x02\x30\x25\xc9\x41\x52\xad\x81\x7c\x4a\xd2\x85\x5c\xfe\x3a\x9f\x21\xf0\x32\x54\x56\x2e\xfe\x50\xba\xa1\x72\x37\xe5\x14\x37\xe1\x50\x73\x6d\x38\x4f\x3d\xd7\xd5\x63\x90\xbb\x2e\x48\x5a\xfc\xe4\x1f\x7b\x11\xac\x69\x31\xdd\x3a\xb6\x57\x77\xef\x34\x4f\x5c\xb8\xdb\x7c\x72\x3a\xb7\x1f\x35\x2b\xbc\x87\xc0\xe3\xc8\x7a\x79\x9b\x01\x3f\x3f\x04\xf1\x11\x12\x92\xe0\x25\x28\x34\x3b\x6e\x2d\xcc\x1d\x4d\xe8\x09\x42\x02\x93\xce\x4f\x39\x37\xbc\xcd\x4a\xd7\x16\x84\xdd\x77\x21\x4b\xf2\x12\x1e\x0d\x56\x9c\x98\x5c\x1a\x0f\x93\xb0\x81\xe8\xd4\xbc\x3b\xd5\x8a\x1e\xdf\x3a\xb4\x97\xeb\xe5\xea\x6a\xbd\xe4\x9d\xfb\x6f\x1f\x3d\x7f\x7a\xc1\xdc\xe5\x0a\x0b\x2f\x25\x42\x67\xb8\xeb\xea\x10\x54\x17\xe1\xb4\xdd\xaf\x7d\xed\x6b\xf8\xc6\x37\xbe\xb1\x89\x44\x22\xf7\x9e\x1b\x1b\xe7\x89\xab\xe3\x0f\x01\x12\x9d\x6f\x29\x6d\x69\x8c\xe5\xea\xb4\x89\x2b\xcd\x6b\xb9\x16\x24\x71\x14\x2d\xcd\x81\xc7\xda\x74\xa6\x01\xbb\xc4\x30\xc8\x8c\x97\x6e\x58\x44\x7a\x1e\xf2\x86\x64\x56\x3d\xf8\xce\xd3\x62\x76\xff\x48\x93\x2c\x3f\x0f\x72\x36\x1e\xb9\x35\x23\x39\x46\x5f\xd4\x82\xc0\x75\x6d\x69\x77\xdc\x9a\xe9\x09\xb7\x35\xa8\x2f\x61\xc8\xf4\x05\xa0\x40\x8c\x8b\xdb\x01\x97\xd6\x6c\x19\xc6\x54\x4b\x34\x24\x96\xcf\xae\x6b\x01\xef\xab\xe3\x22\x33\x69\x20\xda\x1f\x24\xa6\x32\x4c\xe7\x8d\xf8\x5d\xb4\xb6\x43\x4a\x51\x88\xbb\x33\xd8\x8c\xa5\x31\x98\x0d\xdc\xba\x2e\xcf\xf1\x91\xfd\x21\x00\x4c\x69\xbd\x19\x72\x6b\x25\x2e\xa5\xcc\xd7\x85\x87\xbc\x32\xa2\x31\x19\x27\xfc\x8d\x5b\x33\xde\x39\xab\x2e\x8e\x3a\xc3\x5c\xc3\x82\x98\xf5\x06\x58\xd8\xc6\x29\x06\x7c\x57\x00\x22\x21\xed\xb8\xb9\xf8\x51\xfc\xd6\x65\x97\x87\x8b\xef\xc5\x81\xf1\x8f\x13\x62\xef\xeb\x1e\x11\xa8\x48\xa3\x90\x3c\x83\xd1\x12\x96\xf3\xb1\xdd\x9f\x77\x86\xb9\x12\xb4\x04\xc3\x5c\x97\xa7\x7f\xb6\xcc\x8c\x2f\x7c\xe1\x0b\xeb\xa4\x2c\x25\x6e\x2c\xb7\xb8\xe6\xb8\x3f\x2d\xcd\x59\x27\xa5\xd0\x52\x17\x9b\x09\xcb\x81\xab\x1e\x87\x2b\xfc\x4b\x1c\x9b\x8c\xa3\xcb\xd8\xa4\xee\x43\xdc\xe6\xa6\x69\xf4\x22\xa3\xfd\x36\xcd\x7b\xa8\xcf\xf4\x3b\x00\xe0\x77\x7e\xe7\x77\xcc\x33\xcf\x3c\x13\x40\x8b\x10\x2b\x1b\x78\xe3\x5b\xb7\x13\xa3\x6a\x31\x9b\x1d\xb6\x8f\xec\xbd\xbe\xfa\xe8\xde\x9b\xcd\xef\x6c\x1d\xdb\x5f\xaf\x56\x78\x8c\xd8\x81\x96\x30\x90\xfd\xd8\xf7\xa3\xd6\x3b\xc1\xc6\x51\x37\x1f\xbc\x3e\x3c\xa8\x8f\xa4\x48\xd8\x4b\x3a\x14\x35\x25\xfd\x2c\x00\x49\x2c\x29\x4e\x36\xa9\xa9\x22\xea\x12\x51\x98\x5b\x92\xb8\xfb\xf8\xfe\x0c\xa5\xa4\xba\xe1\x85\xba\xd3\x7a\x6b\xd3\xe2\x91\xc9\x9c\xff\xd7\x8b\x6f\x36\xbf\xf7\xd0\xad\xd5\xc7\x67\x87\xed\x23\xa6\xc1\x0c\xee\x96\x5d\x67\x0b\x54\xcb\x05\x54\xd2\xa1\xa7\x9f\x7e\x1a\x6b\xdc\xa6\x8b\xbc\x1e\xef\x3f\x4d\x3e\xb9\xf9\x94\x63\x14\xb5\x5f\x8e\x1e\x68\xff\x21\xc6\x66\x93\x7a\xfc\x54\x2e\xbb\x83\x14\xdd\x99\x5d\xc6\xd2\x94\xe4\x5a\xe1\xc7\x2f\x10\xc6\x40\x6a\x7d\xe8\x16\x4b\x37\x1a\xba\xf1\x2d\xc5\x12\x3d\x7c\x9d\x4a\x2d\xfc\xaf\x07\xcb\xb1\xa8\x28\x30\x44\x61\x0c\x6b\xc7\x80\x61\x1a\x57\x96\xc6\x94\x31\x42\x15\xf3\x37\xd9\xda\x4d\x71\xcb\x7e\x88\x4f\xdd\x51\x00\xb5\x61\xd4\xc4\x30\x52\x88\x24\xdb\x10\xaa\xee\xeb\xe8\xd7\x1f\xc1\x8c\xe7\x99\x6d\x44\x13\x37\xe7\xe1\xf3\xa5\x42\xbc\xb4\x1f\x7b\xd4\x23\xb4\x47\x80\x19\x03\x50\x4d\x40\xed\x76\x04\xfb\x7e\xf0\x7d\xa2\xa5\x50\xd2\x9d\x67\xbc\x49\xb0\x6c\x74\xe2\x4d\xb8\x03\x19\x57\x2f\x46\x49\x3c\x09\x5e\x44\xfc\xf0\xc7\xcc\xf5\xa8\xa5\xe9\x6c\x55\xed\xd6\xd6\xec\x84\x34\x10\xe3\x98\xd3\x01\x20\x99\x34\xb9\x5d\x3a\x0e\x48\x02\x27\xc0\xa7\xaf\xe5\x94\x69\xfc\xc0\xed\x7f\xa4\xf8\xaf\x1f\x2c\x72\xa0\xeb\x62\x5b\xc3\xcb\x93\x71\xbb\xbf\xac\x83\x7d\x4b\xa2\x26\x12\x87\xcf\x85\x7e\x22\x22\x7c\xe9\x4b\x5f\x2a\x11\x1c\xf9\x5e\x92\x00\xe4\xd2\x6e\xba\x98\x0e\xfd\xea\x85\x7c\x1d\x38\xf2\xfe\x25\x20\x9b\x03\x3e\xeb\x08\x69\xae\x3d\x9b\xf4\x95\x7f\x1e\x6a\xb7\xac\x8b\x74\x25\x89\x92\x76\xeb\x24\x40\x43\xe0\xc8\x5e\xb9\x72\xc5\x00\xc0\xd5\xab\x57\x01\x20\x01\x2d\x42\x45\x14\x0c\x71\x3b\xd0\x62\x1f\xb9\xfc\x5a\xf3\xf1\x8b\x77\x9a\xdf\x19\x9f\xd8\x5f\x31\x2d\xae\xaa\xc9\x20\xa8\x1d\x8b\xc5\x80\x23\xae\xe1\x08\x68\x42\x58\xb8\x1e\x83\xa3\x01\xa0\x57\x37\xe9\xf8\x85\x15\x81\xd9\x7b\xc4\xb8\x2c\x8c\x82\x49\xaa\x91\x44\x22\x12\xe5\x91\xcf\x3b\x5a\xeb\xca\x4a\x87\x78\x09\xf7\xc7\xd8\x19\x2d\xec\x2f\x5d\x78\xab\xf9\xdc\x43\xaf\xae\x7e\x69\xf6\xa0\xbd\x5e\x35\xd8\x01\xf3\x14\x4e\x6d\xe4\xd4\x6c\x9a\xee\x18\x66\x0e\xaa\xa3\xad\xad\xad\x9f\x95\xb0\x96\xc2\x72\x20\xfe\x67\x75\x43\x75\x5a\x27\x41\x3a\xaf\xff\x3a\x66\xc7\x1a\x63\x0c\x90\x9c\xec\x0c\x20\x91\x72\x25\x7d\x6f\x98\xea\xca\x5d\xd0\xd9\x45\x94\xf4\x38\xfe\x24\x43\x51\x48\x02\xc3\x5a\xc0\x31\x0c\xec\xc0\xb0\x1c\xaf\xb2\x2e\x32\x9d\x58\x5f\xf4\xba\x20\xaa\x90\xa4\x55\xce\xa0\xb3\x23\xd3\x6a\x91\xd0\x6e\x11\xaf\xd4\x87\x21\xcc\x12\xd0\x12\xc0\x24\x24\x57\x99\x06\x24\xf5\x10\xcc\x40\xae\xb2\x72\x0a\x49\x4c\x98\x73\x52\x4a\xa3\xfb\x24\x5f\x9f\x94\x21\xb2\xc4\x4d\x6b\xb8\x69\x0d\x0f\xd1\xe6\x92\x5b\x47\x67\x4b\xb4\xd7\xca\xc0\xa1\x85\x27\xf7\xde\x43\x40\xb9\x82\x3d\x78\x51\xfa\xce\x60\x59\x5d\xb7\x34\x9e\xae\xaa\x9d\xca\x76\x3b\x8a\xbc\x0d\xb8\xec\xd0\xc8\x50\x46\x19\x8a\x1f\x8c\x11\x4d\xaa\x03\x77\x42\x4e\x31\xcf\x38\x80\x39\xa4\xe1\x24\x54\x4a\x5f\x5c\xbe\x7e\xd0\x48\x94\x2a\x14\x7f\xee\x83\xdb\x65\x6d\xe7\x47\x93\x76\xff\xac\x0a\x3b\x8a\xfc\x19\x13\xf2\x7e\x22\x7f\x05\x3a\x88\xba\xf3\x5b\x9c\xc4\x65\x48\x4d\x21\xdf\x4b\x8b\x79\x09\x68\xac\x13\x33\x4b\x97\x5b\xe8\x4b\x60\x47\xe7\x9b\x03\xb1\xb9\x7c\xe5\xaf\x6e\xa3\x4e\xa3\xff\x72\x65\x0f\x95\xa3\x41\xd2\x50\xdd\xbc\x5b\xd7\xd6\x9c\x64\xa6\xf4\x4d\x8a\xe5\xfc\xda\xaf\xfd\x9a\x34\x64\x4c\x40\x0b\xc5\xdb\x73\xc7\xcc\x3c\x26\xcb\xb3\xd9\x83\xf6\xda\xe5\x57\x97\xbf\x72\xe1\x6e\xf3\xb9\xd1\x82\x3f\x6a\x18\x7b\x11\xb4\x08\x6a\xaf\x45\x81\x62\x36\x74\x5c\x96\x07\x34\x9e\xbd\x22\x48\x60\x12\x24\x2d\xce\x40\x16\x44\x42\xcd\xc4\x11\x44\x24\x94\x31\x4a\x52\x20\xe2\x92\x07\x21\xfe\x0e\x0d\x37\x89\x02\xc6\x81\x9b\x73\x42\x2d\x1c\xa9\x71\x57\x6f\x0e\xec\xa1\x9f\xaf\x22\x2b\x57\x57\x02\x4d\x47\x67\xfc\xd1\x0b\x77\xdb\xcf\x5d\x79\x75\xf5\x2b\xb3\x83\xf6\xba\xe9\xc0\x4b\xcf\xe6\x45\xee\x34\x92\x5c\xe0\xe9\xe9\xe9\x90\x14\x23\xe7\x72\xa0\xbb\x94\x6e\x9d\xb4\x71\xa8\x1c\x19\x37\x37\xbf\x86\xea\x90\xab\x53\x6e\x2c\x0f\xb5\x71\x68\xce\x76\x01\xd6\x5a\x20\xa8\xbb\x35\x9d\x8f\x2a\x05\x22\x03\xee\x8e\xbe\x70\x17\x76\x76\x75\x4b\x44\x6b\x9c\xee\x9e\x11\x28\xd5\x0f\xd9\xc0\xed\xfb\xb1\xe0\xff\x42\xd4\x2e\x03\xbd\x58\x27\xaa\x53\x78\x29\x43\x8c\x55\x02\x3c\x09\x80\x72\x4d\xe6\x6e\xb1\xee\x84\x2f\x6e\xb7\x90\x1c\x5b\x05\x7b\x0e\x6f\xd7\x98\x7c\xa3\xd6\xb0\x5d\x56\xf6\xac\x25\x0e\x67\x11\xb1\xfa\xd5\x68\x42\xae\x7b\x92\x25\x08\x07\xee\xc5\xe9\x56\x92\x1b\x25\x6d\xf2\xd3\xba\x04\xde\xd2\x7a\xa5\xfb\x6e\x5b\xc2\x72\x51\xdb\xe3\x45\xcd\xcb\x6e\xc7\x6d\xb2\xab\x2a\x6a\x2e\xfa\xea\x32\xed\x4a\x02\x93\x22\x18\x1a\xe2\x42\xf5\x22\xb0\x6e\xd1\xc8\x39\x4f\x28\x82\x47\xd0\xe1\x77\x3b\x8a\x66\xd3\x95\xd9\xab\x98\xa6\x5e\x1c\x98\x1c\x20\x07\xc0\x0f\xc7\x4e\xe7\x18\x0f\x9f\xcb\x75\x82\x94\x9b\x90\x78\x62\x91\x46\x8a\xc4\xa3\xe0\x31\x97\x32\x3a\xb9\xfd\x59\xce\x2e\xb7\x45\xda\x9e\x55\x76\x7e\x32\x6e\x0e\xc5\x89\xb9\x16\xf9\xa3\xc9\x93\xbe\x52\x12\x97\xd2\x22\x9f\x03\x31\xda\x95\xd2\xc8\x70\x2d\x86\xd6\xc0\x60\x48\x92\x30\xf4\xbb\x8e\x28\x96\xd2\xe4\xdc\xa6\x9c\x6d\xae\xde\x3a\x2c\x57\xce\xcf\xd2\xd6\x5c\xbc\x4d\xe2\x24\xce\x1b\xaf\x4b\xd0\x02\xc7\xc9\xb9\xbf\x31\x98\xc7\x04\xcc\x26\x47\xf6\xf2\x43\x2f\x2f\x3f\x75\xe1\x5e\xfb\x7b\xa3\x33\x7e\xd2\x74\xc7\xf5\xa7\xec\x56\x22\x0d\x61\x11\xe6\x20\x7c\x22\xa6\x40\x94\x6c\x90\x18\xeb\x22\x6d\x94\xa0\x20\xcd\xcb\xcb\x98\x83\xbe\x5a\xcd\x93\x6e\x35\x40\x94\xf4\x50\xf4\x73\xdc\x47\x20\x7b\x14\xe7\x65\x60\x54\x3c\xa0\x61\xe1\xd7\x2f\x20\x99\xd7\x2e\xc5\x78\xb4\xe4\x27\x77\xee\x35\x9f\x7b\xe8\xd6\xea\x93\xdb\x0f\xda\x6b\x64\x21\x0d\x76\xc7\x40\xcf\x38\x12\x40\xd6\x60\x77\x1d\x17\xa8\xe3\xe5\x00\x3f\x94\xdf\xa6\x80\x39\x57\xe6\xa6\x4c\x48\x09\xa0\x97\xe6\xd3\x26\x80\x5b\xbb\xa1\x7a\x03\x48\x80\x4a\x3f\x35\xc1\x58\x62\xcb\x14\xee\xad\x89\x0b\x26\x47\x2a\x1c\xa0\x2b\xa5\x43\x36\xe1\xf6\xc5\x62\x1b\xd7\x82\x38\xd6\x93\xd2\x85\xda\x5f\x02\x91\xc4\x9c\xc1\x8d\x4c\x12\xa0\x23\x60\x71\x66\x07\x9e\x19\x20\xd8\x55\xc5\x8b\x95\x61\x0b\x0a\x47\x15\xe4\xd7\x22\x71\x72\xac\xef\x13\xad\x85\x58\x19\x8b\xd3\x91\x5d\x36\x86\x17\x0c\xb6\x2c\xe6\x88\x96\x08\xc5\xbe\x88\xd2\xa7\xc4\x3f\xf4\x0b\x87\x3c\x4a\x52\x14\xdf\xa7\xba\x9f\x43\xbb\x13\xe6\x47\xa5\x13\xcf\xad\xe1\xc5\xe9\xc8\x1e\x2e\x46\x76\x89\x0c\x30\xd1\xe3\x21\x03\xea\x86\x5c\x6e\x4c\x87\xf9\xbb\x8e\x7b\xd7\xfe\xda\x65\xfd\x15\xd2\x02\x90\xee\xed\x06\x60\x4c\x77\x47\xd1\x74\xda\xd0\x6e\x65\x69\x2a\xd1\x72\xd7\xa1\x11\x60\x48\x08\x23\x51\x66\x28\x4f\x48\x58\xa2\x5f\xfa\x51\x35\x92\x4d\x87\x68\x9a\x4e\x06\x49\x90\x94\xd0\x74\xe7\x6f\x89\x97\xcb\x9a\x0f\x4e\x47\x7c\xc4\xe0\xe4\xac\x16\xa1\x22\xb2\xde\xae\xc5\xe7\xf5\xb9\xcf\x7d\x6e\x9d\x28\x31\xe7\x6f\x55\xb8\x8c\x5f\xe2\xe8\x50\xf0\xcf\x11\xcc\x12\xc2\xd5\xf9\x0f\x95\xb1\x4e\x22\x31\x54\xaf\x5c\x9a\xa1\x3a\x6d\x52\x9f\xa1\xb2\x36\xa9\xc3\xd0\xc2\x52\xfa\x4e\x6b\x9d\xe4\x4e\xd9\x1d\x89\xce\xf1\x5c\x92\xe9\x78\xc1\x3b\xd7\x7e\xbc\xfc\xd4\xce\x7d\xfb\x7b\xf5\x19\x7f\x98\x18\xd3\xde\x00\x4f\x46\x76\xfa\xde\x11\x5d\x07\xd4\x19\x09\xe0\x4e\x06\x71\x88\x4d\x01\x6f\x30\x27\x5c\x66\xd6\x91\x3f\xd3\x9f\x49\xc4\x25\xf1\x17\x22\x76\x84\x9f\x52\xd8\x11\xf2\x80\x26\x76\x50\x7e\xe9\xb3\xe6\x44\xdd\x4f\x5d\xaf\xf0\x61\xb7\xe3\xe8\x93\xdb\x07\xed\x35\x30\xcf\x80\xde\x6e\x23\xad\xbe\xd0\xae\xb4\x90\xaf\xfb\xa6\xeb\x18\x8a\x4d\x5d\x2e\xfe\x26\x12\x9a\xf3\x96\xbd\x4e\xe2\xb2\xc9\x18\xde\xb4\x6d\xdd\x18\x07\xcc\xaa\x62\xbb\xaa\x78\xc1\x2e\x6d\xf8\xb2\x19\x0c\xec\x1f\x24\x9d\x96\xd2\x85\xde\x8e\x17\x6f\xf4\xdd\xf3\x8e\xeb\x08\x10\x17\x6b\xb9\xc6\xc0\x63\x13\xbd\xf0\xfa\x7c\x5d\x6a\x4b\x6c\xcf\x6a\x7b\x70\x3a\xb2\x0d\x17\xda\x5f\x5a\xbc\x01\x24\x86\xad\x00\x6c\x5b\xa1\x59\x8c\xec\x7c\x31\xb6\x87\x6d\x77\x29\x2f\x92\xce\xc8\xcc\xc1\xc8\xa7\x50\x3f\x4a\x60\x46\xd2\x36\x0f\xe5\x97\xf3\x8e\x92\xcd\xbe\x71\xae\x4c\xd3\x54\xbc\x58\xd4\xed\x7c\x55\xd9\xe4\xc2\x49\x14\xc6\xa3\xea\x9b\x75\x63\xac\x34\xa6\xed\x26\x89\x37\x22\xc2\x25\xe7\x8d\x74\xe4\xae\x09\x38\xa3\xb9\xda\x52\x3d\x6d\xcc\x6c\xdc\x9a\x1d\xc3\x18\x27\x80\x40\xe4\xa1\x81\x46\x1a\x9e\xc2\x8f\x12\xba\x44\x08\x4b\x49\xa7\x47\xd9\x52\x68\x98\x7b\xd4\xf9\x27\xe2\x32\xc3\xcd\x62\xd4\x1e\x2f\x46\xad\x3f\x06\x3a\x18\xe7\x02\x3d\xfb\x16\x8d\x3a\xa5\x64\x60\x13\xc9\x96\x41\x3a\x40\x4a\xf1\x87\x16\xfb\xdc\x37\xcd\x49\x75\x64\x1e\xe7\x21\xc0\xeb\x88\xe8\xa6\x63\x6a\x48\xf2\x51\x22\xe6\x39\xa9\x61\xa9\x2f\x36\xe1\x4c\xa5\x1b\xea\xb7\x52\xf8\x50\x5e\x41\xd2\xe2\x41\x0b\x11\x8d\x09\x98\xd6\x4b\xde\xbd\xf6\xc3\xb3\xff\x65\xfb\x7e\xfb\x87\xf5\x92\xdf\x8f\x6e\xf1\xed\x11\xa9\xee\x57\x80\x17\x81\xac\x69\x68\x42\x14\xfc\x93\x39\x96\x9b\x84\xc9\xbb\x26\x6a\x24\x26\x49\x0f\x61\x75\x31\x7a\xd3\xcb\x73\x62\xc2\x2f\x87\x98\x58\x53\x01\x4e\xde\x9c\xab\xab\x25\x3f\xbe\x73\xb7\xfd\xed\xcb\xb7\x9a\xff\xb1\x73\xdf\x5e\x85\xc5\x94\x53\xb5\x51\x4d\xca\x58\x50\x49\x5d\x7e\x1a\x49\xa0\x0e\x3f\x2f\x88\x3d\xcf\xdc\xda\x14\x78\x6f\x5a\xfe\x26\xf5\x5b\xcb\x14\xa8\xbb\x79\x8a\x8e\x89\xb1\xa8\xed\x21\x88\x1b\xfd\xf5\xce\x33\x54\x7b\xd8\xf6\x1c\x2e\xd0\x7d\x88\x1a\x90\xc2\xf5\xca\xf9\x78\x2d\x61\x79\x3c\x6e\xf7\x57\x15\x27\xdf\x4c\xb7\x7d\x60\xfb\x6f\x8f\x96\x9d\xd5\x76\x71\x38\x69\xee\xb4\xc6\xce\x35\x1b\x92\x02\xb7\x58\x7f\xe9\x79\x9e\x6e\xc8\x09\x49\x7b\x79\xf0\x40\x58\xea\xec\xb2\xb2\xf3\xf9\xd8\x1e\x2e\x2b\xd6\xd7\x6e\xf4\xc6\xcc\x9a\xf1\x71\x6e\x9c\x51\x4a\x50\x5a\xc0\x86\xd2\x1a\xa0\x33\xd4\xd2\xc8\x4a\xef\x67\x27\x77\x47\xd1\x74\x65\x2e\xd4\x96\x66\xb9\xee\xd1\x40\xa5\xf7\x51\x43\xa8\xfc\xed\x52\x26\x20\x83\xa5\x34\x26\x15\x59\x45\x44\xdd\x17\xbd\xa5\x95\xc9\x42\x1b\x30\xbc\x9e\x8f\x0f\x57\x15\x7b\xe0\x12\xc0\x88\xb3\x6b\xe9\xb8\x0b\xf7\xec\xdf\xbf\xf2\x95\xaf\x94\x54\x1c\xfe\x39\x27\x61\x59\xa7\x92\xd0\xc0\x66\x5d\x19\x39\xb7\xa9\xaa\x64\x28\xad\x2e\x2b\x17\xc7\x64\xe2\x0d\x49\xf7\x74\x1e\x25\xd1\xf8\x26\xaa\x9d\x75\x6a\x80\x92\x3a\x68\xa8\xcf\xd6\xf5\x2b\xc4\x6d\xb1\xc9\x89\xb8\x70\xc6\xb8\xcc\x3c\xad\x56\xd8\x7d\xdb\x4f\x96\x4f\xed\xec\xb7\xbf\x57\x2f\xf9\x31\x20\x6e\x95\xa4\x20\xb9\xf0\xae\x13\x8d\x78\xf5\x4a\x91\xca\x7b\x3b\x14\x2f\x63\x47\x8a\x0f\xc2\xa1\x8f\xfe\xe4\x4e\x8d\x30\x5c\xda\xa8\x76\xe2\x10\xdf\x4f\x9a\xd4\xae\x96\x62\x7c\x65\x88\xe0\x6d\xde\x28\x43\x7c\xfd\x7c\x8c\x4d\x4b\xe7\x1d\x73\x7a\x1c\x56\x86\xe0\x8e\xab\x15\x3f\xb6\x73\xbf\xf9\xf4\xc5\xdb\xab\x5f\xda\x3a\x6a\x2f\xfb\x7e\x45\xff\xb4\x53\x2f\xed\x2a\x9d\xf1\xb2\xa9\xd4\x4d\xfb\x6d\x22\xc5\x38\xcf\xf3\x79\x01\x76\x29\xfe\x4f\xdb\x86\x52\x1e\xc1\xff\xe6\xcd\x9b\xbd\xc3\x35\x93\x6f\xe7\x76\x54\xb6\x04\xfb\x60\xda\xec\x37\x26\x5c\xd5\x00\x20\x32\x8e\x52\x6a\xde\x7d\xef\x34\x2f\x4a\xc2\x15\x58\x08\x65\xe9\xb1\xad\xe2\x8b\x69\x12\x8c\x7c\x91\xda\x8d\xf8\x7c\xa4\x0f\x03\xd6\x56\xbc\x3c\x9a\xb6\x07\x00\x2c\x9c\x41\xad\x94\xa2\xa4\x1b\x49\x42\x06\x72\x3d\x80\xd8\x65\x6a\x01\xd8\x45\x6d\xe7\xfb\xb3\xe6\xee\x59\xcd\x87\xa1\x8d\x49\xd3\x18\xd1\x06\x33\xa2\x0a\x59\xbd\xc4\xf0\x5e\xa6\x64\x24\xbe\x24\xfc\xd3\x12\x84\x3f\xe9\xb0\x38\xef\x65\xb2\xee\x08\x10\x7b\x38\x1f\xb7\x47\xab\xca\x2e\xd1\x31\xe9\xb2\xbd\xba\x4f\x34\xb8\x5d\x37\xae\x07\xc7\xeb\x90\x98\xfd\x3c\x0b\x98\x01\x60\x3f\xf8\xc1\x0f\x26\xf7\xee\x88\x86\x24\x47\x1e\x03\xa8\x6b\x6b\xc6\x93\xc6\xcc\x6a\x4b\x33\x12\x1d\x53\x12\x4d\x79\xbf\x12\x6e\xd3\xe0\x24\xa4\x21\x79\xc2\x04\x52\x11\xa1\x48\xdb\xdb\x86\x97\x50\xd6\xe8\xaf\xc1\x4d\x53\xf1\x62\x31\xb2\x87\x67\xb5\x5d\x6a\xdb\x16\xa4\x1f\x33\xa7\x42\x03\xca\x44\x64\x93\x05\x33\x27\x61\xc8\xc5\xc9\xbd\x6f\xc2\x8d\xe5\xc6\xc7\x79\xb8\xb8\x21\xb5\x51\x8e\x20\x0e\xa9\x5e\x4a\x2a\x9c\xa1\x31\x5c\xca\x53\x03\x42\x1d\x7f\xa8\xde\xa5\xbc\x75\x9d\x13\x8e\x54\x1e\x32\x27\x8c\xfa\xfc\x01\x56\x63\x00\xe3\x7a\xc5\x3b\x7b\xb7\x57\x8f\xed\xde\x6d\xff\xe7\x68\xc9\x1f\x01\xd4\xf9\x0e\x4c\x01\x60\xfb\x93\x85\x3a\x49\x87\xa2\x38\x7a\x05\x90\xd0\xc0\x4b\x36\x29\x52\xb5\xc0\xc5\xf9\xfb\x8a\xb2\x13\x51\x9e\xb8\xeb\x22\x79\x40\xc2\x62\x8a\x10\xe0\x0f\xc2\x93\xc0\x26\x54\xd5\xdb\x04\x88\x95\x42\xad\x11\xf0\xab\x4b\x98\xa7\x7e\x9b\x34\x89\xf0\x40\x95\xa3\xa8\x96\xc0\x20\xc6\xac\x3e\xe3\x0f\xef\xec\x37\xff\x63\xf7\x4e\xf3\x64\x7d\x66\x77\x1c\x78\x09\xc0\x45\x9c\xbb\x61\x32\x04\x55\x3b\x3d\xff\xce\x23\x51\xdc\x04\x74\x94\xe2\x9c\x47\xca\x13\x9e\x3f\xfb\xd9\xcf\x9a\xcf\x7e\xf6\xb3\xbd\xb1\xfa\xd9\xcf\x7e\xb6\x94\xf6\x3c\x2e\x9b\x2e\x27\x71\x91\x2a\x11\xcf\xac\xb5\xc4\x76\x7f\x7b\xf5\xd6\xaa\xb2\xc7\x1c\xf2\xca\xd3\x56\xf9\xbd\x49\xd1\xdf\xee\x37\x1d\xef\x52\x00\x29\xb0\x6f\x3f\xbe\x9c\x50\x21\x6e\x26\x7f\x31\xd6\xdd\xa3\x5d\x19\x3b\x3f\x98\x36\xfb\x10\x74\x5d\x82\x96\x0c\x78\x4b\xe8\xbe\x6f\x0b\x8b\x8b\x77\x17\x23\xbb\xd8\x9f\xad\xee\x9d\x8e\xda\xbb\xde\x48\x57\x66\x23\xed\x3e\x89\xd3\x7a\xfa\xe1\xdf\x4d\x27\xea\x01\x12\x6d\xbf\x22\xfd\x93\xf7\x8c\x7f\x9c\xfe\x71\xde\xcb\x64\xab\xca\xce\x8f\x26\xed\xdd\x93\x71\x7b\x68\x29\x32\xea\x48\xd7\x3c\x79\x8a\xf5\xa6\x27\xc7\x7b\xa7\xc7\x5a\x32\xa6\x6b\x11\xe1\xbc\x2a\x01\x5d\x88\xf9\xc1\x0f\x7e\x60\xc5\xd9\x14\x01\x79\x4a\x89\x8b\xff\xab\x2c\xd5\xe3\xd6\x74\x87\xd7\x38\x27\x69\x66\x0e\xa4\x44\xc9\x8b\x87\x28\xd4\x0b\xcf\x80\xc6\x2e\xcc\x9d\x3e\xa4\x25\x26\xf1\xa9\x63\x1b\xfd\xe1\x74\xfa\xb4\xa2\x5c\xbe\x0c\xb6\x2b\xc3\xf3\xf9\xa8\x3d\x58\x55\xbc\xe4\x78\xbc\xbf\x57\x17\x01\x88\x37\x41\x4b\x24\xfe\xb9\xcf\x7d\xce\x28\xa9\x4b\xae\xff\x73\x44\x50\x4a\x62\x72\x12\x04\x1d\xa6\xdf\x37\xcd\x5f\xa6\xcd\xc5\xd7\xf9\xe4\xa4\x3f\xba\x4e\xb9\xfa\xe8\xba\x0d\x85\xad\x1b\x9f\xb9\xbe\xd9\x74\x4c\x4b\x69\x95\xae\xab\xcc\x47\x4b\x22\x73\xf9\x84\xf8\x6a\xab\xa8\x41\x5c\x38\xfd\x59\x2d\x63\x00\x63\xb3\xe2\xd9\xf6\x81\xbd\xbe\x77\xbb\xf9\xe4\x78\x6e\x9f\x86\x45\xe6\xd2\xd1\x38\x0a\xc3\x0e\x21\x74\x63\x3b\x84\xe4\x06\x7f\x96\x1b\x28\x50\x35\xb8\x03\xad\x34\xe7\xc5\x88\x36\x29\xba\x20\xea\x45\x8c\x06\x90\x49\xb0\x78\xf3\x92\x1d\x12\xb3\xb8\xff\xa0\x92\x89\x86\x64\xeb\xee\xf2\xb2\xd8\x1d\x9f\xf2\x47\x2e\xdc\x6b\x0f\x56\x53\xb3\xbf\xff\x4e\xf3\x5d\x4a\x6f\x68\x07\xc4\xfc\x24\xa2\xdc\x65\xa7\xe7\xa1\x85\x9b\x8c\xb7\x52\x9c\x9f\x8a\xee\xae\x3b\x09\xd8\x4b\xbe\xfd\x55\x07\x7f\xfb\xb7\x7f\x1b\xca\xf8\xf5\x5f\xff\x75\xf3\x0f\xff\xf0\x0f\xeb\x18\xa2\x4d\xe7\x1a\x6e\xde\xbc\x69\x45\x7d\x8a\x92\x56\x36\x68\xee\x6d\xaf\xf6\x8f\x26\xed\xeb\x5b\xcb\xea\x0a\xb9\x83\xd7\xd6\x2d\x67\x25\x9a\x1e\x5c\x21\xb0\x98\x26\x2b\x59\x28\xac\x1f\x6e\xcd\xb0\x04\xbb\xac\xf8\xf8\xc1\x56\xf3\x00\x7d\xa6\x32\xb9\x66\x82\xe3\xa5\xba\xf0\xbf\x6e\x0d\x90\x63\xd0\x02\x68\x1a\xc3\xcb\xe3\x49\x7b\xf0\x60\xda\xdc\xbe\x3c\x1f\x2d\xaa\x96\xb2\x17\xfa\xe4\x1a\xd4\xa3\x0f\xe7\xc2\x05\x65\x17\xfb\x20\x3d\xdc\x4e\x86\x9f\x8e\xec\xfe\xc1\x56\x73\xe7\x64\xd2\x1e\x23\x1e\xba\x6a\x05\x28\x4b\xd3\x64\x80\xdd\x39\x5c\x2f\xbf\x7a\x20\x70\x93\x85\xb4\x37\x58\x33\x6a\x22\xc9\xb9\x87\xf7\xda\x62\x3c\x6a\x69\x56\x59\x4c\xe5\x88\x51\x80\x38\xeb\xa8\x47\x0a\x07\x46\x22\xd2\x4e\x93\x83\x53\xe3\xec\x88\xbe\x39\x5c\x19\x9e\xa3\xf9\x7e\xd7\xa8\x25\x34\xcb\xca\xce\x4f\x47\x76\xde\x18\x0e\x12\x17\x89\x32\xd5\x2f\x24\x31\x29\xc4\x19\x02\x0e\xd9\x3c\xd1\xff\x4e\xb9\x77\xbd\x30\xaf\xe3\x00\x4b\xe0\x68\x1d\xc7\xb9\x49\x9d\x36\xe5\x32\xcf\x9b\x66\x68\xf1\xd8\xa4\x8f\xce\x53\xa7\xf3\x72\xca\x46\xff\x91\x3b\xab\xc5\x30\xa6\xd3\xb9\xbd\x7a\xf1\xcd\xe6\xbf\x4f\x8f\xec\xaf\x98\x96\xaf\x06\x30\x92\x19\xc3\x01\x67\x43\x10\xc7\x94\xbd\x4c\xe2\x21\x79\x75\xff\x0a\x20\x92\x1e\xc0\xe8\x41\x4b\x0a\x32\x72\xc4\x2b\x7b\x82\xa9\x07\x2d\x40\xfc\x15\x33\xce\x4f\x31\x8e\x6f\x5d\x0c\x27\xed\x91\x3b\x43\x38\x66\xd9\x3d\xfb\x38\xb2\x89\x1c\xeb\x2a\xce\xce\x36\xa6\xa5\x2b\xd3\x63\xfb\xd4\xc5\x3b\xcd\xdd\xe5\x8c\x0e\x8e\x1f\xaa\x6f\xa1\x23\xae\x63\x47\x5c\xfd\xf6\x55\xbf\x33\x24\x77\xa7\x91\x77\xe7\x01\x17\x25\xe0\x5d\x9a\x47\x83\x20\xc6\x03\x02\xa9\x86\xf0\xef\x24\x0e\x3b\xcb\xa9\x2b\x00\x58\x99\x5e\xc7\xf9\xfc\xe7\x3f\x6f\xfe\xfa\xaf\xff\xda\xfe\xc2\x2f\xfc\x82\xf9\x8f\xff\xf8\x8f\xf3\xb6\x27\x38\x09\xce\x95\x74\x21\xd8\xf8\x75\xcf\x68\x8e\x26\xed\xf1\xbd\xed\xd5\x4b\x97\xe6\xf5\x63\x55\x63\xa6\xfa\x6e\xba\x70\x06\x0c\xe2\x98\xd6\x74\x38\x2c\xa7\x0a\x07\x87\x72\x8b\xab\x42\x1f\x94\xe7\x18\xd9\x84\x71\x76\x15\xb1\xc4\xcb\xf9\xb8\xbd\x7b\x38\x6d\x0e\x5d\x7b\xfc\x42\x2d\xfb\x35\x39\xf6\x42\xf4\x89\x97\x36\x84\x85\x3d\xfc\x82\x9b\xd3\x51\x7b\xfc\xe6\x85\xd5\x2b\xd7\x0e\x27\xfb\xa3\xd6\x9d\x69\xa6\xea\x24\xc7\x3b\x65\xdb\xac\x5b\x19\x7d\x7d\x1a\x06\x77\x4c\x8e\xe8\x53\x8a\x89\xe2\xbc\x0c\xc2\x4c\xea\xc7\x03\xd0\x12\x2f\x8f\x27\xed\x9d\xfb\xb3\xd5\x9d\xf9\xc8\xce\xe1\xee\xe6\x83\x3b\xb1\x5a\x82\x97\x1c\xd3\xee\x5c\x09\x5f\x0c\x31\xd8\x21\x4c\x1f\xf9\xbf\x2e\x03\x99\xb8\x17\xe7\x83\x1f\xfc\xa0\x9f\x24\x72\x4f\x7b\x62\xe3\xe2\xc5\xb3\x95\xa5\xf1\xb8\xa5\x1d\xc3\x34\x8e\x23\xc5\x71\x6b\xd0\x1f\xa2\xff\x61\x3c\x55\xf7\x1f\xa8\x1b\x64\xf1\xa8\x66\x76\x5b\xa7\x25\x71\xf7\x8e\x5c\x5c\x26\x52\xf9\x0a\x6e\x56\xc6\xd5\xf5\x70\x33\xca\x1a\x5e\x2e\x47\xf6\x78\x51\xdb\x23\x0b\x6e\xc0\xc9\x16\xe8\x9e\x61\x2e\xfa\x75\x29\x81\x81\x12\x71\xdb\xe4\xc3\xae\x03\x9c\xd2\x6f\x48\xfa\xb1\xa9\x54\x44\xe7\x25\xdd\x50\xfa\xa1\xf0\x52\x3d\x91\x79\x1e\x8a\xab\xe3\x97\xd2\x0f\x49\x83\x72\xfe\xba\xce\xd9\xba\xe9\x7b\xa8\xc4\x79\x0f\xfe\xac\x96\x9a\x88\xc6\xa3\x05\xef\x5d\xb8\xdb\x3c\xbe\x7d\xbf\xfd\x95\x7a\xc5\x8f\x12\xc4\xbd\x25\x9e\x78\x27\x2b\xb6\x57\xc5\x14\xa0\xbd\x57\x56\xbb\xf4\xe1\xbe\x43\x8e\xc0\x84\xc2\x19\xe0\x08\x73\x46\x50\xea\x98\x1e\x10\x61\x5d\x1d\xd2\x53\xab\x7d\x58\x8c\x1b\xee\x71\x27\x0f\x28\xc4\xe1\x91\x2c\x6c\x65\x02\x32\x13\xe2\x68\xbf\x5a\x79\x62\xeb\xd5\x4e\x1e\x3d\x05\x7b\x1e\xc9\x6c\xc4\x7a\x87\x85\x8f\x51\x57\x0d\x3f\xb2\x75\xd8\x7e\x7c\xef\x0d\x7a\xed\x6c\x66\x0e\x57\x5b\xc6\x9f\x68\xed\xa5\xbc\x8d\x32\xd6\x2d\x7d\xdf\x75\x73\x6e\x13\x10\x6b\x32\x71\xb5\xb3\x00\xf0\xdb\xbf\xfd\xdb\xe6\xda\xb5\x6b\x49\x80\x36\x2a\x56\x76\x83\x39\x7f\x4f\x87\x7b\x0c\xa5\x07\x69\x40\x07\x8c\x32\x60\x4d\xb7\x21\x57\x77\xeb\xd4\x6c\xf6\xb9\xe7\x9e\xb3\xe2\xea\x8a\x24\x0f\xa1\x3e\xb0\x04\xb2\xcb\xca\x2e\xdf\xbc\xb0\x7c\xe5\x1d\x0f\x26\xfb\xe3\xd6\xec\x18\x8b\x3a\xaa\x65\x04\x10\x0f\xff\x00\xc9\xa3\x1b\x87\xfe\x88\xa0\x5e\x38\x10\xc7\x75\x6f\x7a\xf4\x59\xde\xdc\x0c\xd2\x60\xc1\x02\x76\x55\xd9\xf9\xfe\x56\x73\x6b\xde\x6d\xc2\x08\x52\x13\x21\x45\x49\x16\xe7\xcc\x37\x49\xe2\x3b\xe0\xd3\x00\x68\x16\xb5\x9d\xbf\xb1\x7b\xf6\xda\x3b\x0f\x26\x2f\xcd\x56\xe6\xea\xc8\x9a\x70\x6f\x9f\x04\x6d\x62\xd8\xa7\xcf\x03\xad\x94\xfd\xe0\xe7\x79\x6f\x5a\xb3\x8c\x83\x24\x8e\xec\x07\x4f\x19\xce\x46\xf6\xe0\xde\x6c\xf5\xfa\xc1\xb4\x79\xab\x31\xdd\xa1\xab\x1e\xc8\xa9\x3e\xb1\xa5\xb1\x59\x70\x9b\x80\xfb\x24\x82\x7e\xde\x84\xeb\xe8\xc5\xf9\xc1\x0f\x7e\x20\x27\x49\xcf\x28\x37\x70\x09\xdd\x19\x2e\xd3\x71\x6b\xa6\x86\x31\xf6\x40\x84\x05\xd2\xce\xa1\x49\x81\xe5\x7b\xa8\x39\x10\x52\xc1\xcd\xa5\x88\x92\xd3\x3c\xd6\x74\xa2\xdc\x0b\xaf\x07\xb2\xd8\x1e\xd7\x2c\x6a\x7b\xbc\x1c\xd9\x05\xc4\x60\x86\x42\xe2\xae\x4f\xf4\xc4\x2f\x2d\xd6\x32\x9f\x5c\x98\x5c\x0c\xfd\x9f\x8c\xaf\x3f\xbe\x4e\x3b\x04\x8a\xb4\xd3\x0b\xb2\x2c\x4f\xd6\x21\x57\xcf\x4d\x5d\x4f\x95\x92\x29\x7b\x28\xcf\x92\xc8\xdc\xf7\x89\xec\x9f\x4d\xa5\x24\x83\x62\xf8\x0d\xcb\x0e\x71\x04\x80\x37\x10\xb7\xe5\xc2\xa9\x88\xb6\x1e\xb4\xef\xda\xb9\xdb\xfe\xf7\xd1\xc2\x3e\x41\x96\x67\x31\xa9\x10\x5d\x00\x29\x15\xe3\x24\x96\x7b\xf0\xf1\x52\x8a\x1e\xe7\x8f\xb4\xe2\xf2\xbc\x2b\x92\x09\x27\xe3\x26\x79\x26\xf9\x65\x28\x1b\xc5\xc4\x51\x15\x4f\xfd\x2a\x91\x07\x4e\xca\xa6\x8c\xe5\x2c\x8b\x22\x1e\x4a\x26\xbf\x23\xbc\xe9\x2a\x05\xc7\xa9\xb8\xf8\x62\xd1\x62\x9e\xd5\x4b\x7e\x74\xfb\xa0\xfd\xc4\xee\x5b\xcd\xa3\x48\xb7\x47\xcb\xd3\x4f\x83\x53\x2a\x0f\xef\xd6\xd1\xc9\xa1\xb9\xa3\xe3\x0e\xc6\x7b\xf6\xd9\x67\x25\x68\x91\x73\x4e\xbf\x7b\x1b\x29\xff\x9c\xfc\x02\xa9\x2d\xcf\x40\x3e\xda\x06\x2b\x57\xbf\x6c\xdd\xfd\x22\xfd\xc7\x7f\xfc\xc7\x59\xd0\x82\x74\x81\x6f\x00\x34\x96\xb0\xbc\xb3\xb3\x7c\xe3\xc1\xa4\x79\xbd\x35\xbc\xcc\xae\x90\xd9\xb2\xdc\xaf\xfa\xfe\x39\x89\x89\x1f\x8b\x6a\xe4\x26\x00\x40\x16\x96\xe4\xa1\xa4\x8b\x4c\x80\x25\x34\xf3\xb1\x3d\xb8\x73\x61\xf9\x4a\x6b\xfa\x3b\x47\x55\x9b\x25\x50\x29\xfd\x86\x3c\x88\xa8\x69\x2b\x2c\x0e\xb6\x9a\xbb\xb7\xf6\xce\x7e\x78\x3a\xb2\xfb\x72\xcd\x49\x6a\xea\x19\x11\xe1\xa9\xdb\x18\x3c\xb9\xf7\x98\x8d\x4d\x28\xf4\x27\xf7\x63\x13\x80\x96\xb8\x79\x30\x6d\x5e\xbf\x7d\x61\xf9\xca\xd1\xb4\x3d\x00\x15\xfb\xc3\xbb\xf0\xfe\xe6\x9b\x6f\x66\xfd\x33\x6e\x08\xe0\x1b\x20\x4a\x5c\x86\x38\xc9\xdc\xc2\x91\xe3\xd6\xb3\x47\x3f\x43\x4c\x16\xcf\x35\x10\x60\x46\x2d\x8d\x47\x0d\xcd\x0c\xd3\x58\x22\x41\x41\x9f\xa0\xf3\x8a\xa2\x72\x05\x37\x15\xca\x95\x88\x32\x44\xe9\xa5\x8b\x84\x32\x32\xb2\xec\x06\x7c\xe4\xf8\xfa\x79\x20\x88\xab\x5b\xc2\x72\x59\xf1\x7c\x59\xd9\x85\x44\x99\xf2\xfc\x16\x44\x04\xaa\xc5\x65\x25\xe9\x88\xec\x33\x19\x0f\x85\xb8\x32\x1f\x4d\x7c\x86\x08\xee\x90\x24\x43\xbe\xeb\x31\x50\xf2\x93\xe9\x74\x99\x43\x6d\x1d\x4a\xef\xf3\x18\x4a\x2f\xe3\x0c\x01\x90\x75\x52\x16\x99\x4f\xc9\x0d\x7d\x07\x00\xc0\xde\xde\x1e\x0e\x0e\x0e\xb4\x88\x5f\x2e\x20\xde\x20\xb7\x26\x60\x3a\x99\xdb\xcb\x3b\xfb\xed\xcf\x4d\x4e\xec\x53\xa6\xe5\x2b\x51\x5f\xd2\x51\xdf\x28\x3a\xe7\xc0\x91\x4a\x89\x85\x1c\xa3\x51\x1f\x1d\x44\x98\x41\x05\x13\xa4\x91\xa9\x20\xdc\x25\x14\x93\xcf\x89\x79\xe2\xb5\x01\x99\xd5\x44\xb1\x60\x2c\xf3\xa6\x68\x4c\x08\xf8\x39\x1b\x57\x9d\x70\x79\x9b\x98\x47\x81\xe9\xf0\x99\x06\x35\x99\xa8\x63\xb0\x13\xc8\xf5\xba\x68\x2f\xe0\xec\xd9\x1c\x2c\xb2\xd8\x1d\x9f\xda\x27\x2e\xde\x69\x3e\x76\x74\xa5\xbe\xb5\xdc\x22\xcb\x08\x12\xd1\x06\x91\x2e\x85\x31\x36\xa0\x32\x02\xfa\xe3\xbe\xc4\x90\xac\x1b\x47\x09\x5d\x55\xbb\x31\x25\x10\x08\xe3\x48\xa8\xdd\xc3\xbb\xff\xcd\x70\xb3\x72\x21\x0d\x65\xb9\x31\x68\xc5\xe2\x1a\xc6\xb4\x04\x2f\xbe\xfd\xdb\xdb\xdb\x38\x39\x39\x29\xb5\x21\x38\x99\x5f\xc6\x9e\xa3\x01\xd0\x30\xb8\x21\xa2\xe6\x70\xda\x1e\xde\xb9\xb0\x7c\xf1\xd2\xe9\xe8\xd1\xdd\x96\xa6\x04\x32\x9c\x19\xbd\x69\xfe\xee\x17\xe2\x57\xad\x03\x5a\x32\xa0\x2f\x18\xf5\xd2\x04\x50\x5a\x86\xd4\x78\x46\x46\x37\x14\x82\xa6\xe2\xc5\xc1\x56\x73\xeb\xcd\x0b\xcb\x37\x41\x58\x42\x6d\xc0\x80\xf8\x96\xea\x1b\x5a\x3f\xb6\xbc\xf4\x4b\xa8\x8a\x1a\x22\x5a\x02\x58\x32\x73\xb3\xac\xed\xfc\xd5\xbd\xc5\x4f\xde\x71\x30\x79\x71\xb6\xaa\xae\x54\xd6\x1d\x81\xc0\x94\x2e\x59\x7a\x6d\x14\x7d\x10\x1e\x55\xe7\xf5\xe9\x43\x2f\x50\xb7\x8a\x8a\x00\x00\x20\x00\x49\x44\x41\x54\x69\xda\x21\xa2\x1c\xed\x7d\x3a\xb2\xfb\xb7\x77\x97\x2f\xbe\x75\x61\xf5\xda\xa2\xb6\x73\xa0\xeb\x0f\xd7\x9e\xe4\x18\x10\xad\x2e\xfa\xbb\xbf\xfb\xbb\xf3\x30\xb4\xa1\x1f\xdd\x6f\x32\x5f\x72\x0b\xdd\xa0\x54\x45\xf8\x27\x00\x2e\x40\xd1\xbf\x0b\xdf\x93\x4f\x3e\xa9\x8d\xdb\x00\x20\x99\x7c\x40\x27\xbe\xac\x2c\xd5\xa3\xd6\x4c\x47\xdd\x8e\xa2\xba\x27\x12\x64\xc8\x05\xde\x67\xd4\x13\xc3\x39\x7a\x1c\x74\xa2\x1a\x23\xca\x2c\x3a\xeb\x68\x75\x46\xae\x64\x64\xbd\x2e\xae\xa3\xc4\x3d\xb1\x96\xdf\xcd\x21\x78\x51\xb4\x86\x97\xcb\xda\xce\x57\xa6\x3f\x90\x85\x48\x30\xc9\xe3\x1c\x06\x80\x5a\x62\xa0\xd3\x6c\x1a\x9e\xfb\x83\x48\xab\xd3\xe4\xea\x31\x54\x46\x29\x7d\xae\x3c\x1d\x96\x2b\xab\xe4\x97\x4b\x3f\x04\x86\x74\x39\xb9\xe7\xd2\x7b\xae\x9e\xa5\x34\xc9\xf3\xc1\xc1\x41\xb2\x88\x79\xfd\x2e\x04\x17\xec\x54\x44\xd3\x7a\xc5\xb3\xd9\x41\xfb\xe8\xf6\x41\xfb\x54\xbd\xe2\xf7\x10\xc3\x04\xf0\x40\x29\xf7\x97\x5a\xf7\x53\x9f\x40\x39\x4e\x94\x05\xf2\x4f\x08\x95\x47\x38\x0e\x04\xb1\xd4\x75\x4b\x6c\xe1\x33\x83\x78\xf7\x80\x3e\x08\x61\xdc\x16\x6c\x0f\x88\x48\x1c\xd1\xef\xe7\x2e\x75\x44\xb7\x8b\x1f\xa5\x2b\x1e\x84\xf5\x19\x13\x88\xb8\x6e\xe7\x14\x8b\x55\xc6\xb7\x01\x14\xe2\xf8\x86\x33\xfb\x83\x29\xc5\xc9\xdb\x2e\x3d\x01\xc6\x34\xb8\x3a\x3d\xb2\x1f\xdf\x7b\x7d\xf5\x98\x69\x30\x23\x71\x97\x91\xff\x2e\x48\x69\x14\x06\x5c\x09\xdc\x4b\x3f\x1d\xb7\x28\x7d\x79\xe6\x99\x67\x8c\xdf\x26\x2f\x24\x23\x12\xa4\x18\x51\xd7\xe4\xf2\x4d\x00\x63\xea\x76\x4c\xc5\x6b\x22\xdc\x05\x93\x48\x25\x4b\xc1\x8f\xe2\xb5\x12\x5a\xea\x94\x80\x22\x2f\x85\x79\xfc\xf1\xc7\x73\xed\xee\xb5\x43\x00\x3d\x7d\x52\x78\xd8\xac\xe0\x16\xea\xe6\xac\xb6\xf3\x5b\x7b\x67\x3f\xde\x9f\xad\x5e\x5a\x56\x3c\xf7\xa0\x45\x4b\xb6\x7b\xd2\x3e\x2d\x03\x10\x36\x18\x32\x38\x8c\x00\x35\x3f\x92\xa1\x04\x41\xc9\x75\x3c\xc4\xb8\x96\xd0\x9c\x8c\xdb\xbb\xb7\x77\xcf\x5e\x70\xf6\x2d\xfe\x1e\xba\xc4\x20\xd5\xfd\x86\x3e\xf1\x76\x2d\x62\xcd\xd2\xeb\x82\x07\x74\x4b\x22\x5a\xb4\x06\x8b\xfb\xb3\xe6\xee\x4b\x97\x17\xdf\x3d\x9a\xb4\xb7\x2d\xc1\x26\x7c\x83\x40\x10\x89\x34\x46\xaa\x6b\x15\x3f\xd2\x8f\xdd\x97\x9e\xc6\x10\x31\xf3\xc5\x5c\x97\x40\xae\x31\xbc\xbc\xb7\xbd\x7a\xe9\xb5\x8b\x67\x2f\x1e\x4f\x9a\x03\x06\x2f\x99\xbb\x3f\xd1\x1f\x5e\x1d\xdb\x5b\x2f\x9e\x7c\xf2\xc9\x12\x23\x8d\x8c\xff\x20\x93\xa8\x27\xad\xe6\x7e\x87\x44\xe6\xc5\xc5\x4e\xee\xdd\x16\x7e\xa1\xac\x51\x4b\xf5\xb4\x31\xdb\x75\x6b\x02\xda\x76\x94\xa6\x8b\x4c\x91\xc0\x01\x08\x84\xcc\x03\x14\x86\xef\x68\x8e\x46\x47\x1a\x68\x80\x13\x8e\x2d\x47\x8a\x58\x94\x21\x39\xc3\x08\x84\xa2\x8b\x3a\xf8\x48\x1a\x5b\xc3\xcb\x65\xc5\xf3\xc6\xed\x63\x77\x7f\xe1\x9e\x22\xd7\xee\x04\x75\x02\xc0\x67\x3e\xf3\x99\x1e\xb1\x74\x4e\x4b\x33\xa4\xbf\x7e\xce\x49\x10\x7a\x80\xb2\x90\xd6\x3b\x09\x00\x86\x08\x93\x96\x52\x0c\x8d\x8b\x52\xbd\xb5\x5f\x49\xca\xb1\x6e\x40\xcb\xf7\x52\xfd\x86\xd2\xf4\x08\xf5\x06\xe9\x86\x5c\x92\xd7\x2f\xfe\xe2\x2f\x1a\x2d\x6d\x11\x63\xbf\xf6\x76\x2d\x60\x1e\x4f\x0f\xed\xd5\x9d\xfd\xf6\xe7\xc7\xa7\xfc\x04\xb5\xbc\x0b\x20\x21\x3e\xd2\xf8\x95\xd9\x49\x22\xa2\xc5\x6b\x00\xf9\xc1\xe9\x2d\xa9\x62\x06\xc9\x30\x0f\x7c\x82\xa4\x53\x73\x9c\x7e\x92\xb9\x3c\xa4\x3d\x49\x87\xab\x3c\xb1\xf4\x75\xe1\x70\xd1\x9d\x07\x50\x21\xbe\x4f\x1e\x08\xab\x5f\xa4\x3a\x5b\x17\xaf\xa5\xf2\x71\xa2\x04\x29\x56\x22\x59\x6c\x9c\xd4\x85\xc2\x56\x6c\x2f\x85\x91\x67\x71\xf8\x33\x99\xd8\x23\xaf\x71\xbd\xe4\xc7\x76\xef\x36\xbf\x3c\x3d\x69\x2f\x13\xc3\x9f\xeb\x32\xa6\xee\xf0\xbf\xf0\x0d\xbd\x7d\x9e\x97\x1e\xd7\x75\x2d\xc7\x48\x6e\x6e\x0e\xcd\x55\xff\xae\xe9\x6a\x00\x06\x0a\xd4\x02\x48\xd4\x3e\x01\x60\xb8\xed\xdc\x63\x22\x1a\x1b\x8b\xd9\xa4\x35\xb3\xe9\xca\xec\xcc\x96\x66\x77\x67\x59\xed\x6d\x9f\x55\x7b\x3b\xcb\x7a\x6f\xfb\xcc\xec\xcd\x96\x66\x77\x6b\x69\x76\xa7\x2b\xb3\x33\x6e\x68\xc7\x58\x4c\xc1\x09\x90\xd1\x20\xa8\xa7\x62\x72\xef\xb8\x71\xe3\x46\xae\x9d\x49\x3f\xfc\xf9\x9f\xff\x79\x78\xf6\x8b\xb7\xa7\x7b\x48\x17\xe9\x06\xc0\x92\x09\x8b\x3b\x3b\xab\x3b\xb7\xf6\xce\xbe\x7f\x34\x6d\x6e\x5b\x72\x3b\xbc\x4a\x44\x37\x04\x92\x1a\xca\xa5\x85\xb8\x8b\x1b\x04\x97\x90\x63\x3f\x22\xf4\xbc\x85\x8b\x8c\xcd\x58\x56\x7c\x7c\x77\x7b\xf5\xd2\xad\x8b\x67\x3f\x6e\x0c\xc2\x5d\x74\xea\xcf\x2a\xa0\x12\xc0\x9b\x94\x3a\xf8\xfe\xf0\xc0\x47\x00\xa0\x25\x80\x45\x63\x78\xfe\xe3\x2b\xf3\x1f\xbc\x7a\xe9\xf4\x5b\xa7\x23\x7b\xc0\x80\x0d\x73\xa0\x87\xf4\x55\xeb\xfd\xbc\x91\x60\x84\x63\x9f\x65\xe9\x45\x9a\x3c\x7d\x27\x39\x03\x01\x4b\x6c\x1f\x4c\x9b\x5b\x2f\x5f\x5a\x7c\xf7\xcd\x0b\xcb\xd7\xce\x6a\x3e\x06\xb0\x20\xa2\xa5\xb0\xd7\xe9\x31\x77\xbe\xdd\x37\x6f\xde\xb4\x8b\xc5\xc2\x67\x5f\x5a\xa3\x4a\x6b\x5f\x6f\x7d\xa8\x33\x11\x37\x95\x08\x24\x99\x3f\xff\xfc\xf3\xfa\x03\x25\xc6\xb9\x62\x32\x98\x51\x4b\xe3\x49\x43\xb3\xda\x62\x46\x9e\xb2\x05\x0e\xb1\xbf\x05\xcb\xdb\x11\x0a\x30\x8c\x94\x25\xf5\xf8\x59\x1c\x26\xe7\xc5\x67\xe0\x20\x3a\x0e\x14\x5f\x70\x9b\x29\x77\x49\xaa\x0c\xe9\xd2\xdb\xa9\x19\xb0\x2d\xf1\xf2\xac\xb2\xf3\x65\x15\x6e\x85\xb6\x40\x24\xec\x72\x30\xfb\xdf\x2f\x7e\xf1\x8b\xe6\xcf\xfe\xec\xcf\xb4\xb4\xa0\x24\x39\x58\xe7\x3f\x44\x48\x73\x20\x26\x97\x5e\xa6\x91\xe1\x39\xff\xf3\xc4\xcd\xb5\x2f\x37\x40\x4b\x63\x6c\xa8\x7e\xd2\xaf\x04\x60\x72\x52\x99\x52\x7f\x97\xe2\xad\x6b\x47\x2f\xed\x57\xbf\xfa\x55\xfb\xc4\x13\x4f\xc8\xeb\xdc\x83\x6d\x8b\x9b\x03\x63\x00\x75\xbd\xe4\xd9\xec\x41\xfb\xe8\xd6\x51\xfb\x91\xaa\xe1\x47\x92\xf1\x1a\xc4\x20\x71\xd0\x07\x42\x98\xb2\x8c\x51\xec\xe8\x10\x43\x98\x09\xec\xdf\x7d\x18\xc7\x79\x21\xf2\xd0\xb6\x58\x31\x6f\x3f\xd8\x25\x47\xc7\xe1\x2c\x09\x7f\x58\x5d\xef\x7c\x0c\xa9\x03\x82\x07\x24\xf9\xad\x90\xfe\x2c\x99\x30\x3f\x05\xe2\x11\x58\x4a\x88\xb3\xc5\x05\x8e\x61\xde\x4b\x09\x0e\x07\xbf\xd0\x3e\xb8\x3a\x5a\xec\x4d\x4e\xec\x47\x2f\xde\x6e\xfe\xe3\x6c\xcb\x1c\xb7\x63\x2c\x41\xd4\x38\x20\xe9\x69\x97\x27\xbe\xc1\x35\x4d\xb3\x09\x0d\x1c\xa2\x99\xbd\x31\xa5\x0c\x59\x7b\xc4\x5b\x48\xe5\x3a\x30\xc1\x30\x06\x54\x1b\x8b\x9a\x98\xea\x4b\xf3\x7a\xf6\xf0\xd1\x78\x77\xf7\xac\xde\xd9\x5a\x99\x9d\x71\x6b\xa6\x55\x77\xac\x84\xb1\xc4\xcd\xb2\xb2\xf3\x55\xc5\x8b\x55\x65\x97\x47\xe3\xf6\xf8\xcd\xdd\xe5\xe1\x83\x69\x33\x6f\x0c\x37\x96\x60\xe1\x16\x1a\x01\x28\x3c\x93\x19\xea\xe8\xc2\x0c\x10\x55\x67\xe3\xf1\xd8\x2c\x97\xcb\xde\xbc\xfa\xc3\x3f\xfc\x43\xb3\xbd\xbd\xed\xd3\xc9\xf4\x81\x99\x13\x7f\x0b\x00\xd3\xb3\x91\x3d\x7e\xf5\xd2\xe2\xc7\x97\x4f\xeb\xeb\xb3\x55\x75\x79\xb6\x34\x97\xe3\x1c\x48\xe9\xaf\x97\x05\xf8\x4f\x1e\xc3\x34\x05\x57\xfe\x5e\x72\x20\x24\xed\x2c\xf2\x29\x39\x3f\x87\x5a\xc2\xf2\xc1\xb4\xb9\xfd\xda\xde\xd9\xf7\xef\x6e\xaf\xee\xa2\x53\x13\x2d\x89\x48\x1e\x7d\x91\x35\x46\x55\x5b\xc4\xa1\xe2\x48\xd5\xca\xd2\xff\x31\x61\x71\x32\xb6\x07\xff\x79\xed\xe4\x1b\xb3\x65\x7d\xf9\xfa\xc1\xf8\x23\x93\xc6\xec\x64\xb1\x06\xf5\x9b\x10\xf8\x08\x17\x16\xe6\x1c\xf5\x13\xc9\x3e\x56\x3b\xa3\x02\x8d\xf0\x42\x01\x06\x30\x1f\xb7\xfb\xaf\x5c\x5a\x7c\xeb\xc7\x0f\xcd\x7f\x70\x32\x6e\x0f\xe0\x40\x8b\xaf\xbb\x00\x2f\x09\x90\x93\xf3\xfe\xfb\xdf\xff\x7e\x6e\x6d\xca\xbd\x63\x20\xcc\x02\xe9\x76\xe8\x9c\x2b\x71\xf5\x32\x0c\x00\xec\x93\x4f\x3e\x69\x9e\x7f\xfe\xf9\x9c\x15\x71\x20\xf4\x14\xb6\x42\x53\x3d\x69\xcc\xac\xb2\x34\x95\x44\xca\x0f\xc3\x48\x93\x23\x8c\x08\x4f\x72\xc7\x84\x54\xc3\x64\xd3\x09\xae\x52\x42\x12\xf9\xd1\xd9\xfd\x93\x0c\xee\xfc\xb8\x96\x52\x39\x26\xd8\x55\xcd\x8b\x65\x6d\xe7\x8d\x61\x29\x1e\xeb\x89\x4c\xe5\xaf\x03\x2d\xb2\x4f\xe5\x73\x8e\xe8\x95\x3e\xe8\xd0\xf3\x26\xf9\x96\xd2\xe4\xfc\x4b\x00\x6a\xd3\x3c\xd6\x95\xb7\x2e\xdd\xa6\xe5\x6c\x9a\x6e\x53\xbf\x52\x5e\x83\x5c\xb7\xf8\xde\xbd\xeb\x2e\x9c\xa8\x7e\x3c\x3d\xb6\x57\x66\x87\xf6\xbf\xd5\x67\x78\x94\x98\xc7\xc9\xe8\x17\xaa\x99\xde\x38\x14\xf6\x21\x11\xd1\x8b\x79\x20\xf0\x86\x36\x05\x4b\x72\x8b\x18\x41\xf8\x09\x9b\x98\x44\x04\xcd\x0e\x4c\x44\x75\x55\x17\x2f\x4a\x48\xbb\xb2\x04\x89\x15\xf9\x32\x28\xd9\x62\xd9\x4d\x37\xcd\x08\x08\x25\x0f\xcb\x72\x22\x46\x09\xbb\x00\x7b\xed\x4d\x0a\x4b\xb1\x9c\x78\xae\x1b\xbc\x67\xfb\xa0\xbd\x31\x39\xb5\x2f\x9e\xd6\xd5\x9c\x2b\x2c\x11\x99\x37\x0b\x08\x3b\x3c\x07\x66\x9e\x79\xe6\x19\xf3\x97\x7f\xf9\x97\x38\x3a\x3a\x2a\xd1\xc0\xd2\x5c\x49\x98\x85\x9f\xfb\xb9\x9f\x33\xdf\xf9\xce\x77\x24\x30\x00\x52\xd0\x12\xa4\x72\xf2\x99\x99\xeb\x9a\xa9\xbe\x34\x1f\x4d\xdf\x7d\x7f\x7a\xe5\x6d\xc7\xa3\x77\x5d\x3c\xad\xdf\x3f\x5b\x55\xef\xab\x5b\xba\x56\x31\x5d\x36\x8c\x1d\xc0\xdf\xba\xcc\x4b\x4b\x98\x33\xf1\xdc\x12\x1f\x37\x06\xb7\x4f\x47\xf6\x27\x47\x93\xe6\xa5\x7b\xdb\xab\x5b\xaf\x5d\x3c\xbb\xf3\xd6\xce\xea\x78\x31\xb2\x72\xf1\x94\xe7\x4e\x49\x17\x6c\x33\x00\xe0\x4f\xfe\xe4\x4f\x70\xf3\xe6\xcd\x5e\xa4\x2f\x7f\xf9\xcb\x80\x03\x38\x8a\x59\x6b\x80\x70\x17\x57\xb2\x48\x03\x58\xec\x6f\xad\xee\xbe\x74\x69\xf1\xdd\x9d\xb3\xfa\xf2\x23\x0f\xc6\xd3\x51\x4b\x33\x01\x3b\x83\x93\x70\x46\x9e\xe1\xc5\xbd\x38\xca\x71\xa4\xeb\xd1\x14\xa0\xe0\x14\x73\xcc\x80\x3d\x99\x34\x77\x5f\xbd\xb4\xf8\xee\x4b\x97\x4e\x7f\xdc\x18\x5e\x10\x68\x81\x0e\x78\x85\x7e\x53\xd2\xf5\x64\x2c\xde\xbc\x79\xd3\x3a\xdb\xa5\x40\xc7\x05\xd0\xf1\xfd\x51\xfb\xfe\x70\xcf\xe3\xbb\x3b\xab\x37\xbe\x7d\xed\xf8\xdf\xc6\xcd\x85\xd9\xc3\x47\xe3\xc7\xc6\xae\x5f\x12\x3b\x37\xa4\xbc\x8b\xee\x84\x94\x79\x4f\xda\x05\xdd\xc7\x29\xd3\x94\x1e\x8f\x00\x00\xcb\x9a\x8f\x6f\xed\x9d\x7d\xeb\xbb\xd7\x8e\xbf\x7d\x34\x6d\xf7\x99\x30\x07\xb0\x60\x66\x0f\x5e\x7a\x36\x2e\x4a\x5d\xe8\xdd\x10\xc3\xba\xa9\x90\x04\xc0\xfa\xed\xd0\x9b\x48\x63\x0c\x00\x3c\xff\xfc\xf3\x61\xfb\xa7\xb2\x45\x09\xbb\x2a\xfc\x9f\x61\xaa\x2b\x4b\x63\xc3\x6e\xdb\xa7\x1b\x60\xd1\x10\x31\xed\xe8\x3e\xba\x4c\xa1\x85\xff\x80\xe1\x63\x52\xff\xa3\x46\xc3\x3e\x35\x74\x85\x5f\x87\x61\x7a\xd4\xbe\xe7\x08\x80\x25\x6e\x56\x86\x17\xab\x8a\xcf\x00\xc8\xf3\x0a\x82\x7a\x28\xd3\x57\xde\x95\x24\x26\xeb\x80\x62\x4e\x8a\xa2\xf3\x19\x4a\x23\xcb\x28\x95\x33\xe4\x72\x52\x90\x52\x9d\x75\xfd\x86\xd2\xe7\xf2\x1a\xaa\xe7\xa6\x69\x36\xad\x83\xae\x87\xf4\x93\x69\x72\xbf\x49\x7a\x79\x00\x23\xc7\x93\x59\x93\xfb\x88\xaa\x25\xef\xcc\x0e\xda\xf7\x4f\x8e\xda\x27\x4c\xcb\x57\xe3\x51\xf6\x48\xc6\xa3\xdc\x1a\x1c\x06\x34\x10\xa4\x18\x41\xda\x20\x28\x2e\x89\x09\xd0\x71\x9c\x11\x10\x91\x9e\x14\xb1\x40\x27\x7a\x56\x71\x3c\xa8\x97\x9c\xad\x5f\x0c\x3c\xc8\xf1\x31\x5c\x59\x79\xc0\x9f\xf0\xcc\xf0\xd2\x4f\x39\xcd\x92\xd9\x4c\xd1\xea\x21\x61\x84\xd2\xea\xc4\xf6\x06\x75\x56\x9c\xbb\x29\x61\x76\x4d\xb1\x98\x4d\xe6\xf6\xc9\xdd\x3b\xed\x37\x57\x53\x73\xb0\xaa\x68\x41\xd1\x50\x52\x9e\x39\x15\xbe\xeb\x73\xcf\x3d\x67\x2f\x5c\xb8\x90\x1b\x8b\xfa\x59\xfb\x25\x61\x1e\xb4\xe8\x2d\xf2\x48\x01\x4b\x50\xdd\x10\x51\x3d\x59\x99\xf1\x23\x87\xe3\xcb\x1f\x78\x6b\xf6\xd8\x43\x27\xf5\xcf\x6f\xad\xaa\xc7\x27\x8d\x79\xac\xb6\xf4\x48\x07\x56\x72\x8c\x27\xa9\x5f\x34\x3b\x67\x66\x7e\x69\x5e\xdf\x7e\xfb\xe1\xf8\xa5\xf7\xdf\xdd\xfa\xfe\xfe\xac\xf9\xcf\x9f\x5c\x3e\xfd\xee\xcb\x97\x16\xb7\xe7\x13\xab\xed\x13\x12\xa9\x93\x07\x2d\x19\x83\xe5\xec\xb3\x62\xd6\x2c\xa2\x6d\x8b\x6f\xa3\x97\xba\x8c\x5b\x83\xe3\x5b\x7b\x67\x3f\x19\x77\xe7\x79\x8d\x1f\x3e\x1c\x3f\x36\x16\x5b\x81\x73\xed\xca\xd9\xc2\x48\x00\x93\x2e\xe4\x82\x5d\xed\x99\x12\xa8\x35\x22\x05\x2d\x98\x8f\xed\xc1\xcb\x97\xce\xbe\xfd\xc2\x95\xd3\x6f\x1e\x4d\xdb\x7d\x22\x9a\xbb\x7a\x7b\xc0\xd1\xdb\x4d\xa3\xec\x3a\x7a\x4e\x4a\x67\x04\x90\xab\x11\x41\x4b\x0d\x60\xce\xc0\xf8\xd5\xbd\xb3\x97\xeb\x96\xfe\xef\x0f\x55\xdb\xcd\xdb\x0f\xc7\x8f\x4d\x57\x66\xd7\x64\xc4\x2c\xb2\x0d\x69\x7b\xd4\xbc\x51\xf1\xb5\xbf\xf4\x09\xbb\x66\xc1\x58\x8c\xec\xc1\xcb\x97\x16\xcf\xff\xc7\xf5\xa3\x7f\xdb\x9f\x35\x6f\x58\xc2\x31\x80\x39\x80\x39\x11\x2d\x90\x4a\x5c\x12\xcc\x90\x91\xe6\x9e\x0b\x9c\x0c\xa5\xab\x32\xed\xc9\xbd\x0f\xb9\x10\xef\xe9\xa7\x9f\x26\x44\xd5\x50\xe5\xf2\xa9\x88\x68\x04\x60\x44\x44\x53\x00\xd3\x0b\x67\xd5\xa5\x6b\x47\x93\xc7\x1e\x9a\x8f\x3e\x50\x5b\xda\x49\x45\x5a\x91\xf0\x84\x8f\x90\xa0\x47\x11\x4e\x82\x18\x8a\x8a\x6b\x17\x07\xe6\xf0\x19\x31\x04\x0c\xa3\x72\xa1\x8e\x6a\x0c\x2f\x0e\x66\xab\x97\xde\xb8\x78\xf6\x83\x07\xb3\xf6\x2d\x00\xa7\x44\xb4\x60\xe6\x33\x00\x67\x00\x56\xee\x63\xb6\x14\x59\x51\xde\xdd\xdd\xa5\x97\x5e\x7a\x29\xb7\xf0\xf9\x2a\xf8\x30\x39\xb7\x34\x18\xc8\x81\x68\xad\x44\x90\xcf\x7a\x6e\xe7\xfc\x8c\xfa\xd5\xf5\xca\xd1\x8b\x12\x88\xf1\x75\xb2\xea\x5d\x96\x6d\x32\xcf\x3a\x4d\xae\x9e\xba\xbe\xba\x1f\x6c\xa1\xae\xf2\x33\x5b\xf4\xdb\xea\x7f\x0d\xd2\xe1\x67\x55\x78\xae\x4f\xf1\xcb\xbf\xfc\xcb\xf4\xea\xab\xaf\xf2\x8d\x1b\x37\xfc\x1c\x30\x00\x88\x88\x2a\x27\x65\x19\x11\xd1\x84\x99\xb7\x66\x87\xf6\xe1\x8b\x77\x9a\x4f\x6c\x1d\xd9\xa7\x8d\xe5\x4b\xe4\x0d\x3b\x7a\x6b\x8e\x00\x2d\xb2\x09\xdd\x40\x75\xe0\x84\x90\x18\xa9\x40\x3d\x8a\xb4\x52\xf3\x13\xf2\xf3\x12\x15\x3f\x93\x12\x95\x0d\x00\x0d\xe2\xa3\xa1\x8b\xeb\x88\x78\x76\x52\xcc\x3f\x37\x24\x63\x3e\xbd\xdd\x0d\xa2\x3e\xe1\x0c\x98\xc4\x3a\x50\xe4\x25\x90\x95\x84\x54\xa9\xe4\x45\xf4\x07\x03\x1c\x80\x13\x40\x4c\x5b\x6c\x70\x77\x71\xa1\xba\xd5\x8c\xe9\x18\x26\x99\xa3\x61\xd1\x66\x66\xfb\xf4\xd3\x4f\xd3\x8d\x1b\x37\xe8\xab\x5f\xfd\xea\x79\x08\x6e\x6e\xfe\xe0\xd9\x67\x9f\x35\x37\x6e\xdc\x20\x3f\x2e\x5c\xbc\xca\xfd\x8d\xe4\xdf\xa8\xa1\xd9\x3b\x1e\x4c\xae\x3c\xf1\xc6\xce\xcf\x7f\xf0\xce\xec\x33\x0f\x1f\x8d\x3f\xbb\xb3\xac\x3f\x3d\x6d\xcc\xcf\xd5\x4c\x6f\x23\x60\x06\x90\xe9\x4c\x91\xdd\x7f\xee\x26\x70\x4f\xbf\xe2\xbf\x64\x08\x98\x54\x4c\x17\x47\xad\x79\xf7\xa4\x31\x8f\x6d\x2f\xab\xf7\x3f\x34\x1f\xbd\xfd\xa1\x93\xf1\xb8\xb6\xb4\x7c\x30\x6d\xce\xac\xe9\x8d\xbe\xb0\x16\xba\x05\x88\x6e\xdc\xb8\x81\xaf\x7f\xfd\xeb\xc5\x75\xe1\xeb\x5f\xff\xba\x1f\xff\xf2\xcf\x88\xe7\x0a\x00\x05\x35\x18\xa1\x6a\x0c\xe3\x74\x6c\x97\x96\x60\x67\xab\x6a\x6b\x6b\x65\x2e\x56\x4c\x95\xff\x8a\xb2\x42\x70\x9e\x7e\x48\xf8\xa1\xab\x01\x70\x0f\x9b\xbb\x74\x7d\x73\x83\x38\x5c\x25\xb3\x3b\x1f\xb5\x07\xaf\x5e\x5a\xfc\xe7\x8f\xae\x9e\x3e\xff\xe6\x85\xe5\x6b\x96\x70\x84\x4e\xca\x70\x8c\x0e\x64\x2c\xe0\x68\x3c\xba\x31\xd3\x22\xd2\x04\xeb\xfb\x02\x08\x6b\x22\x98\x99\x29\x0e\x50\x72\xfd\x20\x6d\x9c\xba\xbe\x12\x9f\xf3\x78\xda\x9e\x9e\x8e\xec\x49\x65\x41\xd3\xa6\x9a\x8d\xba\x1d\x58\xc9\x8c\x48\x67\x56\x7e\xfd\xd3\x1d\xa9\xd3\xe8\xb4\x0c\xc0\x12\xdb\xe3\x49\xfb\xd6\x4b\x0f\x2d\xbe\xf9\xcd\x77\x1c\xff\x3f\x77\xb7\x57\xa1\x1f\x98\xf9\x04\xdd\x7a\x77\x2a\xfa\x63\xe5\xfe\x5a\xa4\x52\x17\xbe\x79\xf3\xa6\xad\xeb\xda\x58\x6b\xcf\x83\x2b\x06\xdd\x26\xdc\xb3\x8e\xab\xd3\x1b\x20\xb1\x18\xce\x49\x10\x82\xb8\x9c\x88\x50\x31\xd5\xb5\xa5\x31\x81\x6a\xad\xd6\xc9\xd1\xef\x54\xfd\xe4\x89\x35\x05\x32\xe7\xe3\xa6\x1f\x53\x5e\x9a\x28\x74\xf3\xe8\x23\x34\x20\xdf\x9b\x7d\x3f\xa1\x4e\x22\x5e\x76\x7a\x64\x5e\x00\x3d\x6b\x71\xcd\x79\x80\xdc\x89\x8a\xff\xf4\x4f\xff\xa4\x39\xb2\x1c\x37\x37\xf4\x5b\x7a\xd6\x79\xe8\xe7\x75\x6e\x48\x9d\xa3\xf3\xcc\xd5\x61\xa8\x4e\xeb\xde\x4b\x69\xc2\xf8\x5a\x53\xdf\x5c\xfa\x9c\xd4\x30\xf7\x9e\xcb\x77\xd3\xbe\x08\x65\xfd\xeb\xbf\xfe\x6b\xd0\x69\x4b\x55\x91\x68\xc3\x18\xc0\xb8\x6a\x31\xdd\x3a\x6c\xaf\x4f\x4e\xec\xe3\xa6\xc5\xe5\x60\x75\x97\xdd\x41\xc1\x0e\x54\x38\x2b\x8e\x04\x18\xb8\xdf\x60\x81\xe8\xe3\xc5\xf4\xc1\x5e\xd6\x83\x8a\x10\x24\x41\x90\x7b\xa6\xae\x2c\xbf\x43\xc7\xa7\x8f\xf1\x45\xde\xc1\xa2\x96\x53\x30\xc4\xaa\x6e\xa0\x6e\x45\xf0\x15\x61\x7f\xf1\xa2\x6e\xa2\xdf\x0f\xe4\x56\x10\x27\x39\x61\xb8\x1d\x43\x0c\x24\x17\x35\x46\xb8\x92\xec\x7e\x60\x76\x26\xfb\x2e\x2e\x87\x5a\x44\xca\x42\x16\x3b\x93\x13\xfe\xf0\xec\xa0\x7d\x57\xbd\xe4\x9d\x60\x2c\x8d\xe4\x5c\x14\xa0\x3c\xf6\xd6\xd1\xc4\x10\xf6\xf1\x8f\x7f\x3c\x84\x4b\xa9\xb3\x32\x06\x0e\x3b\x84\x98\x79\x7a\x69\x5e\xef\xfd\xb7\x37\xb6\x9f\x78\xea\xd6\x85\xcf\xbd\xef\xde\xf4\x8b\x6f\x3b\x19\xfd\xee\xd6\xca\x3c\x5d\x5b\xba\x42\xa0\x29\x40\xb5\xb8\x3f\x47\x7c\x93\xee\x7b\xb0\xe8\x1f\x1f\xea\xda\x5f\x1b\xd0\xb8\x62\xba\x32\x5d\x99\x27\x2e\xcd\xeb\xff\xed\xdd\xf7\x27\x5f\xfc\xf9\xd7\xb6\xff\x8f\x8f\xbe\xbc\xfb\xf1\x2b\x47\xa3\x3d\x00\x53\xf7\x27\x2f\xa4\x0c\xbb\xaf\x98\x39\x18\x9e\x7f\xf1\x8b\x5f\x4c\xfa\xe1\xd2\xa5\x4b\x52\xda\x6e\xc5\x5f\x38\x55\x15\xdd\xd6\xdf\xa5\xe3\xd4\x17\x00\xe6\x20\xcc\x4f\x3a\xfb\x89\x1f\xfd\xe8\xea\xfc\xf9\x3b\x3b\xab\x17\x97\x95\x5d\x88\xbc\x93\x51\xed\xe7\x40\x62\xe6\xa4\x9c\xc4\xe6\x61\xa8\x91\x87\xba\x22\x5f\x37\x78\xc2\x14\x04\x70\x32\x6e\xf7\x5f\xbe\xb4\xf8\xd6\x0f\xaf\xce\x9f\xbf\x7d\xe1\xec\xe5\xc6\xf0\xa1\x03\x2d\x7e\xeb\xaf\x97\x32\x24\x3b\x8a\xdc\x33\x80\x4e\x45\xf4\xf9\xcf\x7f\xde\xf8\x67\x65\x43\x12\xe2\x0b\x35\xdd\x52\xe4\xed\xfb\xe5\x78\x59\xf1\xe1\xeb\x17\x97\x2f\x7f\xf7\xed\xf3\x6f\xbc\x70\xe5\xf4\xf9\xfd\xed\xd5\xad\xa5\xb1\xcb\xd0\x0a\x4e\xa7\x92\xfc\x4d\xda\x27\xda\x98\xb6\x5f\x3c\xc3\x4f\x53\xc6\x59\x6d\xe7\x77\x76\x56\x2f\xfd\xe0\xe1\x93\xaf\x7d\xeb\xed\xc7\xdf\xb8\xb7\xbd\xea\x24\x2d\x0e\xbc\x11\xd1\xdc\x31\xe9\xbe\xde\xfe\xfb\x7a\xd0\xef\xb3\x0d\xb4\x72\x8d\xad\xd8\xba\x79\xd6\x73\x95\x7a\xd7\xeb\x7a\xe9\x59\xfa\x31\x00\xdc\xbe\x7d\x9b\x9f\x7a\xea\x29\x8f\xb0\x01\x24\x46\x66\x23\x66\x1e\x51\xb7\x75\x6f\x6b\x6f\x31\xba\xf2\xf6\xa3\xc9\xe3\x7b\xa7\xf5\x7b\x6b\xc6\x96\x84\xc2\x39\x94\xad\x59\x5d\x19\xae\x79\xac\xf0\xee\x29\x36\x1c\x1f\x27\x10\x75\x86\x2f\x73\xeb\x81\xb8\xab\xa8\xc7\x17\xa6\x6e\x59\xf1\xd1\xdd\x9d\xd5\x8b\xb7\x77\x97\x3f\x3a\xee\x8c\x95\xa4\xc4\x65\x89\x0e\x7d\x7a\x20\xc3\x70\xc8\xf3\x53\x9f\xfa\x94\x79\xe9\xa5\x97\x72\xec\xa8\xf4\x33\xe8\x7f\x0b\xe9\xa7\xb9\x3a\x2d\x2d\x29\xc5\x5d\x97\x47\x29\x4d\xa9\x5e\x43\x79\x40\xf9\xeb\x34\xb9\xba\xea\x70\x8b\x72\xdd\x4b\x69\xe2\x2a\xde\x97\x9e\xe8\xbf\xdc\x98\x5e\xd7\xde\x5e\xb9\x1f\xfd\xe8\x47\xe9\xb5\xd7\x5e\x63\xcf\x51\x73\x3c\x21\xb7\x72\xe3\x7e\x04\x60\x02\x60\x32\x3a\xb5\x97\x2e\xde\x69\x3f\x36\x7b\x60\x3f\x56\xb5\xb8\x42\xc1\xa0\x43\xb0\x83\x40\x5a\x4d\x79\xf9\x61\x20\xda\xde\xe6\x24\x61\xe2\x04\xae\x71\x3b\x87\xdc\x73\x37\x1d\x3c\x48\x89\x93\x2d\xaa\x87\x7c\x7e\xfe\x0c\x17\x69\xd8\xab\xf2\xf6\x12\xa2\xc4\x80\xd8\x9d\x44\x1d\xc0\x92\x64\xef\x22\x18\x49\xd5\x3f\x1c\x51\x95\x34\x4a\xf1\xc0\x84\xfc\x71\xe1\x3e\x2e\x44\x3d\x38\xb4\xd1\x97\x43\x32\x7f\x12\x45\x8b\x99\xee\x4a\x33\xed\x08\xaf\x9f\xee\x56\xaf\xb5\x13\x73\x02\x42\x8b\x4e\xea\xe2\xb9\x45\x96\xb6\x0b\x37\x6e\xdc\x20\x21\x69\xc8\xd1\xc4\x9c\xe4\x8e\x6f\xdd\xba\xc5\x40\xb8\x15\x3c\x00\x21\x49\x17\xdd\xd8\x18\x93\xc5\xe4\xe1\x93\xc9\x43\x1f\xbc\x33\x7b\xfa\x7d\xf7\x66\xbf\x75\xe5\x64\xfc\xab\x5b\xab\xea\xf1\x8a\xe9\x21\x03\x1a\x51\x14\x6c\xa5\xe6\x47\x90\xcf\x1e\x9e\xc9\x37\xed\x08\x06\x54\x1b\xc6\x6c\x64\xcd\x43\x5b\x4d\x75\x7d\xe7\xac\xba\xba\xbd\xaa\xb9\x31\xf6\xe0\xc1\x56\xbb\x80\x90\x06\x3b\x29\x01\x43\x7c\xd3\x1b\x37\x6e\xc0\x18\x13\xa4\x0a\x75\x5d\xd3\x7c\x3e\x07\x00\xfe\xc6\x37\xbe\x21\xa5\x2e\x8c\x6e\x1e\xb0\x9b\x13\x44\xdd\x0b\x89\xfe\x20\x10\xcc\xaa\xb2\xed\xe9\xc8\xae\x96\xb5\x3d\xad\x2d\x99\x49\x63\x66\x23\x6b\x26\xfe\x8b\x07\x62\xa9\x86\x70\xd1\xc9\xe1\xc4\x7e\x88\xc5\x31\x49\xa2\x3d\x84\x4e\xc2\xf0\x60\xab\x79\xf3\xe5\xcb\x8b\xef\xfc\xe8\xea\xe9\x7f\xde\xde\x5d\xbe\x72\x56\xf3\x7d\x44\xd5\xc8\x89\xfb\x4d\x24\x0c\x6e\xcc\x78\x7a\x63\x89\x08\x5f\xff\xfa\xd7\xf9\xde\xbd\x7b\x74\x7c\x7c\xcc\x40\x94\xba\xa0\x1b\x57\x72\xc2\xca\x4f\x08\xf1\xec\xfb\x08\x2d\xb1\x3d\x1d\xd9\xe5\xc9\xa4\x9d\x2f\x46\x76\x0e\xa2\xa6\x62\xaa\x47\x2d\x8d\x89\xc9\x24\xca\x0a\x95\x99\xef\x3b\x3f\x5d\xb5\xd3\x7d\xd8\x54\x76\x79\x38\x69\xef\xbd\x7e\xf1\xec\x85\x1f\xbd\xed\xf4\x9b\x3f\x79\x68\xf1\xfd\x83\x59\x73\xbb\x35\x38\x04\xe1\x08\x9d\xc4\xe9\x04\xc0\xa9\xff\x23\xa2\x15\x80\x33\x66\xf6\x73\x48\xaa\xcc\x58\xa9\x17\x73\xeb\x8e\xec\x0b\xa8\xb8\x45\x27\x6d\x5c\x80\x61\x5b\x02\x64\xde\xd3\xd2\x63\x4f\x04\xf4\xad\xfc\x0c\x00\x18\x8b\xba\xb2\x18\x13\xa3\xee\x7d\x3f\x61\x63\x92\x03\x31\xb9\x77\x9f\x26\xb1\x91\x11\x06\x47\x09\x04\x51\x71\x7d\x39\x1d\x1d\x4e\xe5\x3f\x31\xff\x7e\xa1\x96\xd0\xac\x0c\x2f\x1a\xc3\xfa\x6e\xa2\x44\xdf\x2b\x77\x59\x09\x3d\xb1\xd6\xa5\xe7\xfc\x7c\x9f\x01\x7d\x09\x40\xce\x3e\x44\xe6\xa3\xe3\x96\xbe\xdb\x3a\x69\x86\x7e\xd6\xf9\xe5\xea\x51\xaa\x9b\x19\x08\xcb\xc5\xd9\xd4\x95\x6c\x53\xd6\xe5\xa3\xfb\x65\x5d\xfd\xb4\xba\x2e\xf4\xdd\xd5\xab\x57\x93\xc3\x17\x85\xf8\x37\xb1\x71\x01\x63\x3a\x99\xf3\xe5\xc9\x89\x7d\xcc\xb4\x7c\x99\x18\x26\xa1\x1e\x19\x54\x1d\xb7\x13\x87\x51\x1a\x09\x2e\x8b\x34\x21\xad\xbc\x8f\x45\x50\x6f\x0f\x28\xd4\x0a\x40\x3a\x4d\x80\x78\xdc\x01\x13\x71\x35\x40\x2a\x97\x97\x79\xb3\xc0\x5d\x5e\x72\x12\xcb\x88\xa0\x03\x29\xb5\x74\x05\x72\xd8\x01\x25\xba\x22\xe0\x94\x2e\x0f\x76\x9d\x11\xfb\x22\xb6\x37\xbe\xb0\x20\x77\xa2\xae\x81\x31\xea\xf2\x32\x0d\x5f\x99\xcc\xed\xa3\x93\xb9\xbd\xba\xdc\x32\xfb\x76\x44\xde\xd6\xa0\xf6\xf6\x2e\x42\x8c\x0f\xac\x9f\x3b\xc5\xb1\x26\x77\x96\x38\x9a\x13\x6c\x58\x5c\x99\xe3\xca\x62\xfa\xc8\x83\xc9\xb5\xf7\xdf\x9d\x3d\xfd\x8e\x83\xc9\xaf\xee\x2e\xaa\xa7\x46\x96\xae\x12\xd3\x58\x72\xca\x39\x3a\x28\x36\x65\x8a\x9e\x28\xaf\xea\x71\x81\x23\x43\x8c\xd9\xa8\xc5\xf5\xdd\xb3\x7a\x67\x74\x9f\xf6\x26\x0d\x3d\x34\xb2\xe6\xff\xfa\xc9\xe5\xd3\xd7\x6d\x57\x6b\x2f\x59\x00\x9c\xe4\x44\xdb\x8a\x00\x45\x6e\x3a\xcc\x2f\xd7\x6e\x7d\x9e\x8b\x07\x48\x06\x40\x6d\x0d\xcc\xe1\xb4\x79\xf3\xe5\xcb\xdc\x2e\x46\x76\x39\x1f\xdb\xe3\x77\x1c\x4c\x1e\xbb\x70\x56\x5d\x31\x0c\x93\xec\x5e\x0b\xe0\x18\x71\x9e\xe8\xfe\x49\xc6\xb2\xf3\x4a\x06\x58\x1c\xd6\xcb\xca\xce\xef\x6d\xaf\x5e\x7f\xe5\xd2\xe2\x87\xaf\xec\x9d\xfd\xf0\xde\xf6\xea\xb5\xb3\xda\xee\x33\x78\x0e\xc6\x5c\xd8\xb7\x48\xdb\x16\xab\xfe\x00\xc4\xf3\x6c\x6e\xdf\xbe\xdd\xf3\x53\xa7\x13\x37\x88\x36\x3f\xc6\x49\xa2\x82\x24\x4e\x02\xff\x55\xc5\xb8\x37\x5b\x35\x8b\x91\x9d\xdf\xdf\x6a\xf6\x1f\x39\x9c\xdc\x79\xfb\xe1\xf8\x5d\x97\xe6\xa3\xab\x93\x86\x76\x6b\x6b\x6a\xdf\x64\xd9\x11\xf2\x5b\x71\x26\xbc\x7b\x65\x2c\x2b\x5e\xcc\xc7\xed\xc1\xfd\xad\xe6\xce\x9b\x17\x96\xb7\xde\xd8\x3d\x7b\xe5\xee\xf6\xea\x8d\xd3\xb1\x3d\xe0\x0e\xb8\x05\xbb\x16\x44\xe0\x16\xec\x7d\xfc\x0e\xab\x5c\x7f\x64\xdc\xd0\x9a\x21\xdd\x20\x0d\x97\x36\x2e\x7e\xa0\xc9\xcf\x2d\xfd\x34\x61\x0f\x73\xe5\x5d\xef\x7a\x97\xf9\xc4\x27\x3e\x41\x17\x2e\x5c\x80\x43\x8a\x0e\xd0\x92\xd7\xe3\x8e\x1d\x67\x31\x25\xd0\xf4\xf2\xe9\xe8\xe1\xb7\x1f\x4e\x9e\xb8\x78\x36\x7a\xb7\x61\x1a\x25\x86\x44\x5e\x77\x9e\xb1\x02\xd7\x76\xb3\xf2\x1b\x04\xc6\x0d\x71\xe2\x76\xb4\x53\x19\x01\x52\xe4\x47\xd4\x5c\x80\x1a\xd7\xaa\x80\x74\x4d\x39\xab\xed\xfd\x3b\x17\x56\x2f\xbc\x79\x61\xf9\x93\xb3\x11\x1f\x3a\x0b\x6b\x8f\x40\x97\x0e\x89\x37\x44\xc4\xfe\x4f\xa0\x4f\xb9\xdc\x48\x4e\x4d\x3f\x4b\xc9\x81\xfc\x16\xb2\x9a\xfa\x03\xcb\x34\x3d\x2e\x50\xa5\xd1\xe5\x0c\xa2\xdc\x4c\x7e\x43\xfe\xfa\x39\xd7\xce\x5c\x58\x2e\xfd\x50\x1e\xb9\xbc\x36\x69\x6f\xae\xdf\x86\xca\x29\x7e\xaf\x1f\xfe\xf0\x87\x2c\xb8\x2a\x62\xe6\xca\xcd\x81\x1a\xdd\x4e\xa2\x09\x80\x89\x69\xf9\xc2\xc5\x3b\xcd\xe3\x3b\xfb\xed\x27\x47\x2b\x3c\x42\x40\x15\x86\x98\x07\x0b\x10\xa7\xca\x72\xbc\x13\x28\x05\x16\x11\x94\x53\x1c\xf4\x9d\x9f\x38\x29\x97\x5d\x82\xc8\x5d\x52\x34\x54\x15\xd2\x0a\x79\x3a\x67\x04\x3d\x62\x77\x81\xdf\x55\xc4\xf9\x34\xe9\xc2\x41\x1d\x03\x40\x70\x1c\x2e\x07\x81\x8a\x5e\xf4\xba\x39\x46\x41\x8a\xc0\x6e\xd2\xf5\xa5\x48\x5e\xf2\x12\x57\xa0\xe4\xf2\x02\xd1\x2f\xf2\xa0\xbb\xb8\xa8\x05\x53\x5f\xdf\xc2\x0a\x06\xa7\xab\x89\x79\x75\xb9\x6d\xde\x6c\x47\x74\x8a\x4e\x37\xdf\x48\x0e\xda\xeb\xe8\x99\x99\xbf\xf1\x8d\x6f\x94\xc6\xa3\xf7\xd7\x92\x44\x79\x1a\x6e\x00\xb1\x00\x2a\xa1\x7e\x99\x56\x16\x5b\xef\x78\x30\x79\xfb\x87\xde\xdc\xfe\xe4\x3b\x0f\xa6\xbf\xb9\x7b\x56\x3d\x5d\x5b\xba\x4a\xa0\xba\x6b\x92\x1b\x13\xfe\xee\x35\x81\x17\x7d\xdb\x3d\xad\x0a\x9c\xb5\x58\xcc\x25\x45\x94\x07\xbd\x49\xb2\x46\x8c\xad\xda\x9a\xcb\xdb\xcb\xfa\xe1\xd9\xca\x60\x39\xb2\xf7\x8e\x27\xed\xa9\x35\x89\xc4\xd3\x52\xb2\x6d\x0c\xac\x24\x51\xc1\xdd\xb8\x71\x83\xbc\x5d\x8c\xe8\x47\x2f\x69\xd2\x52\x07\xb8\x4e\x06\x0c\xf1\xaa\xe2\xd5\x7c\x6c\x17\x27\xe3\xf6\xa4\xa9\xec\x99\x61\xa2\xda\x52\x6d\x98\x46\x01\xde\x92\x38\x91\x59\x48\x4d\xba\x16\x22\x1a\xab\x8b\xce\x48\xd5\x35\x00\x13\xa3\xa9\x78\x79\x34\x69\xee\xbd\xb6\x77\xf6\xc2\x0b\x6f\x3b\xfd\xf6\xcb\x97\x17\x3f\xd8\xdf\x6e\xde\x58\x55\x41\xd2\x72\x4c\x44\x27\xe8\xa4\x0c\x67\x70\xb6\x2d\x0e\x64\x34\x00\x5a\xd7\x1e\x86\x90\xb6\xa0\x4f\xa7\x0d\x00\xfe\xfa\xd7\xbf\xce\x4f\x3d\xf5\x94\xaf\x87\xec\x03\x7f\xc2\x2e\x90\xa3\x49\x04\xcb\x06\xed\x59\xc5\xab\x93\x71\x7b\x72\x34\x6d\x8e\x8e\x27\xed\xe1\xe9\xd8\x9e\x9c\x8d\xec\x89\x25\x6e\x81\xa0\x2c\xa0\x30\x42\x7a\x1b\x4d\x3a\x8d\x42\x6b\xb8\x59\x56\x76\x31\x1f\xd9\xa3\x83\xad\xe6\xad\xdb\x17\x97\x2f\xbf\x7c\x79\xf1\xa3\x97\x1e\x5a\xfc\xf0\xd6\xde\xd9\x8b\xfb\xb3\xe6\x8d\xb3\x11\x1f\x30\xf8\x18\xc0\x11\x11\x9d\x30\xf3\x31\x11\xcd\x99\xd9\x1b\xe5\x9e\xa1\x5b\xe7\xbc\xd4\xc9\x8f\x95\xd6\xf7\xf5\xcd\x9b\x37\xed\xd6\xd6\x96\x69\x9a\x46\xcf\x11\x20\xd3\x3f\x03\xe1\xd0\x71\xf5\x91\xff\x25\x9b\x09\xcd\x99\x27\x9c\xf4\x2b\xaf\xbc\x62\x7f\xe3\x37\x7e\x23\xe8\xf7\xc5\xae\x22\xc9\xb9\x18\x66\x86\x01\x99\xca\x52\x5d\x5b\xaa\x3b\x89\x0b\xa0\x67\x23\xa3\x8f\x16\x25\x41\xf3\x13\x30\xc4\xa0\xcc\xa9\x8b\x10\xb2\x55\x91\x8f\x1f\xcf\x9c\x06\x65\x79\x94\xfe\xf4\x8a\xae\xa5\xee\x4a\x72\xb5\x15\x5a\x9e\xdd\x92\x95\xbc\x7c\xea\x53\x9f\x32\xff\xf4\x4f\xff\x04\xe4\xa5\x23\x40\xbf\xaf\x4b\xfe\x32\xed\xa0\xae\x3d\x13\x6f\x13\x0e\x72\x48\xea\x26\xf3\x28\xe5\x5f\x92\xe2\xe9\xb2\x74\x99\x43\xe9\xd7\xe5\x5d\xfa\xcd\xe5\x3d\x24\xa5\x19\x7a\xee\xd5\xe1\xf7\x7f\xff\xf7\xa5\x14\x26\x79\x16\x8b\xd4\xb8\x3e\xe3\xd9\xf4\xd8\x7e\xa0\x5e\xf1\x55\x30\xd7\x71\x4b\x71\xb7\xca\x38\x12\xeb\xc6\x8b\x04\xd9\x72\x2c\xa6\x20\xdf\x13\xef\xc0\x79\x93\xb7\xfb\xf0\xf3\x43\xc4\x0f\xbf\x8a\xa0\x25\xc0\xde\x3d\x04\xf2\xe1\x6b\x25\xc1\x85\x8a\xe7\x19\x0c\x66\x78\x91\x4e\xb8\xed\x39\x00\x09\x17\x8c\x98\x41\x24\xdf\x6e\x71\x0d\xa0\x48\x1c\x6e\x40\x61\x26\x87\xea\x74\x0b\xb4\x6c\x83\x60\x42\x32\x37\x56\x53\xb2\xb8\x75\x35\xa8\x56\xfc\xc8\xf4\xc4\xbe\x73\x74\x66\xbf\xbf\x9c\xd2\x01\x4c\x94\xba\x00\xc9\x91\xf8\x20\x22\x2d\x2d\x1d\x1a\x3b\x9a\xbb\x96\xbf\x1e\xc8\xd6\x60\x8c\x09\x18\x3f\x74\x32\xba\xfc\xc1\x3b\xb3\x5f\xba\x7e\x30\xf9\xad\xed\x65\xf5\x61\xc3\xb4\x4b\x80\x89\xf8\x34\x25\x42\x09\xe3\x26\xd5\x65\x05\x62\x96\xda\x01\xea\x11\x81\x00\x1c\x0d\xb0\x33\x69\xf0\xf8\xb5\xc3\x89\x69\x0d\x2f\x97\x86\xff\xf1\xf6\xee\xf2\xf5\xa6\x0a\xeb\x87\x6f\x9f\xdc\x36\x1d\xec\xba\xa4\x4a\x40\x9c\x61\xa2\xe7\x5d\xe3\xfa\xd5\xef\x32\x0a\x97\xee\xfa\x6f\x64\xc1\x58\xd4\x16\x6f\x5e\x58\x2e\xe7\xe3\xf6\xf8\x60\xab\xd9\xbf\x76\x38\x7e\xcf\xdb\x4e\xc6\x8f\xec\x2e\xea\xcb\xd3\xc6\xcc\x8c\x45\xed\x5b\xa2\xbe\x34\x92\x2e\x73\x7e\xec\x3a\xce\x82\x3b\x49\x79\xcd\xcb\xf9\xa8\x3d\xbe\x3f\x5b\xdd\xb9\x73\x61\xf5\xca\x1b\xbb\x67\xaf\xdc\xdb\x5e\xbd\x71\x3a\xb2\x07\x16\x7c\x4c\x44\xc7\x6e\x81\x96\x0b\x75\x90\xb8\x50\x7a\x26\x4b\x4f\xb2\xe2\xdc\x90\x44\x41\xbe\xfb\xb3\x84\x96\x32\xad\xd2\x56\x74\xe5\x11\xec\xb2\xb2\xcb\xfb\x33\x5e\x1c\x4f\xda\x07\x6f\xed\xac\x6e\x5f\x38\xab\xf6\xf6\xe6\xa3\x2b\x97\xe7\xf5\x95\x9d\xb3\x6a\x6f\xd2\x98\xd9\xa8\x35\xe3\x91\xa5\x71\x65\xa9\x36\xee\xf3\x59\x62\xdb\x1a\xd8\x55\x65\x97\x8b\xda\xce\x8f\x27\xed\xe1\xf1\xa4\x3d\x3c\x9a\xb4\xfb\x07\x5b\xcd\xfe\xe1\xb4\xd9\x3f\x1d\xd9\x07\x8d\xb1\x73\x78\x09\x53\x94\x36\xc9\xdf\xb0\x0d\x9a\xd2\x9d\x44\x41\xd2\x22\x4f\x87\x3f\x3d\x3d\x2d\x49\x4d\xd6\x49\x5c\x4a\xce\x02\xf1\xcc\x80\xa1\x84\xeb\xc4\xfa\x16\x48\xf6\xac\x87\x08\x42\x4d\x12\xef\xd4\xb0\x30\x6e\x2b\xf4\x98\xbc\x4a\x29\xb2\x8b\x1d\x41\xe3\xc8\x4d\x72\xe0\x18\x24\x01\xce\x70\x6e\xca\xa5\x06\x6a\xa4\xde\xfa\xcf\x50\x7e\xe4\xea\x9f\x13\x8d\x02\x80\x35\xdc\xac\x2a\xbb\x70\x97\x6e\x85\x93\x22\x25\x68\xa1\xde\x22\x03\x69\x9c\x0b\xe4\xfb\x75\x68\x01\x06\xfa\x8b\xf1\x90\xc8\xda\x64\xe2\x95\x88\xef\xba\xf7\xa1\x78\x9b\x80\xa8\x1c\x68\xc9\xd5\x65\xa8\xdc\x8d\xc4\xf3\x1b\xa6\x97\x6e\x13\xff\xd2\xb7\xc2\x5f\xfd\xd5\x5f\x85\xb1\x2f\xce\x6d\x89\x7f\xcc\x06\xa0\xf1\xf8\xd4\xee\x4e\xe6\xf6\x51\xd3\x62\x87\x98\x8c\x66\x8a\x48\x22\x03\x00\x80\xdc\xea\x2c\xd8\x68\x21\x45\xe8\x23\xf3\x3e\x20\xe8\xff\xa6\x2e\xc0\x23\x79\x78\x9c\x04\xf6\x72\xeb\x75\x14\xd9\x08\x35\x96\xcc\x36\xda\xb9\x00\x69\x69\x3e\x6e\x32\x07\xe3\xd6\xf1\x44\x2a\x24\x53\x77\x58\x24\x2e\xd2\xe9\xbc\xec\xd3\x02\x92\x22\x88\x8c\x23\x00\xa6\xc5\xde\xf8\xd4\xbe\x6b\x74\xca\x97\xcd\x0e\x6e\x5b\x13\xb6\xa4\x6a\xe0\x19\xee\x9b\x71\xfe\x83\x73\xf6\xd1\x47\x1f\x35\x2f\xbe\xf8\xa2\x1e\xeb\xc9\xd9\x2c\x70\xc6\xb8\xdb\x67\xd5\xce\x07\xde\x9a\x7d\xe4\xfa\xc1\xe4\x37\xb7\x97\xd5\x13\x0e\xb4\x24\xad\x0a\xf4\x28\x7c\xa2\x54\x1d\x5e\x62\x4b\xa5\x82\x3c\x19\x0a\xb9\xce\x08\x3f\x34\x9e\x34\xf4\xf8\xdb\x0f\x27\xbf\x71\x5a\xdb\x93\xa6\xe2\x7f\xbb\xbb\xbd\xba\x2d\xc0\x8b\x77\x09\x78\xc9\x95\xaf\x0e\x60\xf3\x4c\x9d\x07\x2e\x06\x1d\x08\xe8\xd1\x57\x07\x04\x9a\xa6\xe2\xe6\xfe\x56\xb3\x3c\x1e\xb7\x27\x77\x76\x56\x77\x1e\x3e\x5a\x5e\x7b\xf8\x78\x7c\xfd\xd2\x7c\x74\x75\x7b\x59\xed\x76\x0b\x74\x58\x9c\x03\x7d\xeb\xe1\x6e\x82\x6d\x89\x9b\xa6\xe2\xe5\x59\x6d\x17\xf3\x91\x3d\x7c\x30\x6d\xf6\xf7\xb7\x57\x77\xee\xec\x2c\x5f\xbf\xb7\xdd\xdc\x39\x1d\xb5\xf7\x2d\x75\x86\xc2\x04\xf2\xbb\x87\x7a\x5b\x7e\x21\x54\x45\x42\x3d\xa2\xfb\x20\xc7\xe8\x85\x77\x7f\x93\x36\xa2\x0a\x2d\xb4\xd9\xf5\x91\xee\x13\x1f\xe6\xcb\x5c\x32\xb0\x5c\xd6\xbc\x5c\x56\xcd\xf1\x83\x69\x73\xef\xcd\x9d\xe5\xeb\xb3\x65\xb5\xb3\xbd\xac\x76\xa6\x8d\x99\x4d\x1a\x33\x1b\xb7\x34\x1d\xb7\x66\x6c\x6c\xd7\x2f\xad\x61\xdb\x18\x2c\x16\x23\xbb\x98\x8f\xda\xe3\x93\x49\x7b\x7c\x5a\xdb\xf9\xb2\xb2\x8b\xa6\xe2\x13\x4b\x58\x80\xb0\x44\x77\x56\xcd\x1c\xdd\x01\x73\x5e\x35\x94\xa8\x88\x1c\xc8\xca\x5d\xae\xb8\x8e\x26\x6b\x66\x32\x17\xbe\x91\xcb\x9d\x9c\xbb\x69\x66\xc5\x74\x8e\x10\xe9\x8b\xbf\x0c\x00\x53\x31\x99\xba\x43\x83\x63\xb0\xe4\x2c\x80\x88\x8e\x3d\xa7\x10\x45\x9b\xfa\x12\xae\x94\x34\x6a\x70\x22\xc5\xa3\xd1\x9f\xd0\x27\xa8\x1a\xc8\x44\xbe\xb7\x3f\xa9\x62\x5c\x06\x13\x37\xad\xe1\x65\xdb\x49\x5c\x00\x84\x8b\xdb\xb2\x7a\x60\x4e\x16\xa4\xa2\x14\x03\xe8\xf7\xab\xc9\x3c\x0f\x49\x33\xb4\xdb\x44\x92\x52\x9a\x6c\x26\x13\xbe\xc9\x73\xa9\x0e\x5a\xfa\xa1\xcb\xd3\xcf\xa5\xfa\x6a\x7f\xd9\x3e\xa8\xf7\x52\xbc\x52\x9d\x4a\xf1\x4a\xd2\x31\x7f\xf0\x96\x5e\x84\x03\x87\x0d\xa0\x26\xe6\x7a\x7a\x62\xaf\xd4\x4b\xbe\xde\x1d\x39\x1f\xcf\x41\x01\xa4\xb8\x3f\x4a\x37\x3c\x7a\x88\xc6\xb8\x62\x11\x92\xef\xa4\x38\x71\xf8\x85\x4e\xa0\x8a\x20\x32\x01\x7a\x0b\xba\x53\xe9\x74\x07\xc5\x79\xd1\x7a\x9c\x41\x01\x0c\x81\x04\xd0\x12\x20\x27\xa4\x76\x8e\xf4\xfc\x12\x52\x20\xea\xca\x0b\xd2\x25\x1f\x27\xa7\x03\x66\xf1\xc2\xaa\x2e\x89\xad\x9a\xcf\x33\x3d\x36\x61\x88\xf9\x20\xc6\xb8\x5e\xf2\xd5\xd1\xc2\x5e\xad\x1a\x7e\xd1\x8e\xba\xa3\xff\x25\xe8\x14\x34\xcc\x02\x9d\xea\x47\xdd\x35\xd6\x03\x34\x2f\xbe\xf8\xa2\x55\x76\x2d\x06\x48\x6c\x5a\x6a\x30\xc6\xa3\x96\x76\xde\x75\x7f\xfa\xe8\xfb\xee\x6e\xfd\xcf\xed\xb3\xea\x49\xc3\xd8\x4d\x3e\x89\xfb\x86\x41\x0a\xe5\xfb\xd4\x83\x15\x05\x2e\x53\xac\xd6\x57\x09\x89\xee\x13\xe3\xc3\xe3\xe4\xc8\x30\x12\xa1\x9e\xae\xcc\x47\xde\x75\x30\x39\x3c\x1d\xdb\xc3\x65\x65\x17\xf7\xb7\x1a\xcb\x26\x59\x9c\xfc\xd9\x5c\xa1\x2f\x9e\x79\xe6\x19\xf3\xd5\xaf\x7e\x15\x2f\xbc\xf0\x02\x16\x8b\x85\xfd\x83\x3f\xf8\x83\x1e\xa3\xe4\xfb\x52\x00\x18\xfd\x7d\x52\xee\xdd\x49\x47\xee\x6d\xaf\xe6\x87\xd3\xe6\xde\x1b\x17\x97\xaf\xef\x9d\xd6\x97\xf7\x4e\x47\x97\x2f\x9e\x56\x57\x2e\x9c\x55\x7b\xb3\x55\xb5\x33\x6a\x68\x6c\x98\x8c\x61\xd4\x86\x3b\x95\x0b\x13\x6c\x63\xb8\x59\x55\xbc\x5c\x8c\xec\xfc\x78\xdc\x1c\x3c\xd8\x6a\xf6\xef\x6f\x35\x77\x0f\xb6\x9a\xfd\x93\x71\x7b\x78\x56\xdb\x93\x96\x82\x44\xc5\x4b\x57\xbc\x2d\x87\xb6\xe7\x58\x0a\x1b\x9d\xe4\x80\x35\xe6\xe4\x0e\xba\x1c\x83\x19\xc6\xcb\x6f\xfd\xd6\x6f\xf5\x98\x7c\xb1\x66\x34\x29\x88\x4f\xfb\x84\xba\x13\x77\x97\xe4\x4f\xac\x25\x4c\x2d\x61\xb1\x20\x7b\xbc\xa8\xed\x83\x83\xad\x66\xec\xfa\x60\x64\x18\xb5\xb3\x63\x0a\xe3\x83\x09\x8d\x35\x6c\x5b\xe2\x33\xeb\x6f\x75\xa6\xb0\xd3\x6b\x89\x78\xa8\xdc\xc2\x3f\x23\x82\x95\x85\x88\xa7\xc1\x5b\x68\xa7\xb5\xe7\xe2\x27\x07\x41\x1e\xf2\xb4\xdf\x00\xb0\x75\x21\xb0\x94\x09\x90\x66\x10\xde\xb5\xb4\x45\x3b\xff\x41\x8c\x35\x75\x6d\x69\x62\x9c\x61\x6e\xc2\x0f\xca\x89\x8a\x38\xe9\x3a\x0e\x4e\x12\x71\x84\x88\x01\xa2\x24\x3b\x82\x90\x4c\xec\x24\x2f\x5f\x21\x39\xf1\x93\xb8\x94\x10\x80\x08\x55\x12\x22\x61\x9d\xaa\xa8\xb1\x14\x0e\x9e\x93\xbf\xd2\x79\x7f\x7c\xec\x63\x1f\x33\xff\xfe\xef\xff\x9e\x43\x9b\xa5\xf7\x6c\x5f\x9f\xc3\x0d\xa1\xda\x92\x94\x63\x13\xee\x72\x93\xbc\x86\xa4\x28\xa5\xb0\xa1\x7c\x36\xe9\xa3\x4d\xeb\xb3\x2e\xbf\x1c\x18\x1a\x4c\x2f\x74\xd4\xc9\xe2\xd7\xa9\x05\xb8\xa6\x16\xe3\xc9\x89\x7d\x87\x59\xf1\x1e\x9c\x8a\x34\x80\x13\x35\xde\xa2\x34\x02\x42\xfd\xe3\x55\x2f\x52\x4d\x9a\x61\xa3\xb5\xa0\x21\xe8\x68\x04\xac\x57\xa0\x04\x6e\xe1\x8f\xf5\x11\x84\x53\x58\x87\x4a\x43\x61\x96\x93\x27\x48\x79\xf2\x75\x89\x76\x37\x5d\xfe\x32\x0f\x22\x4e\xee\x2b\x8a\xe0\xcc\x17\x16\x57\xda\x68\x33\x13\x01\x53\xa2\x26\x93\x8c\x4d\x68\x76\x0a\x88\x24\x6e\x33\x0d\xae\x8c\x16\xfc\x50\xd5\xf0\x6c\xc5\xe9\x01\x70\x92\xf1\x12\x9c\x31\x3e\xf4\xa1\x0f\x99\xef\x7d\xef\x7b\xbd\xb1\x37\x1a\x8d\xb0\x5a\xad\xac\x3e\x60\xce\x8f\x05\x97\x5f\x0d\x60\x6c\x18\xd3\xcb\xf3\xd1\x95\x9f\xbb\xbd\xfd\x6b\xbb\x8b\xfa\x97\x2a\xc6\x6e\xc9\xa0\x56\x4b\x5c\x22\x38\xcc\xd0\x26\x89\x1c\xe5\x2b\xfc\x27\x16\xe3\xc5\xff\xb8\x84\x2c\xfc\x2a\xa6\xe9\xce\x59\xfd\xd1\xf7\xdc\x9b\xee\x3f\x98\x36\x87\xa7\x23\xfb\xed\xd3\xb1\xf5\xc6\xb9\x92\xce\x25\xf3\xe4\xdb\xdf\xfe\xb6\x7d\xef\x7b\xdf\x6b\x7e\xf2\x93\x9f\xe0\x9b\xdf\xfc\x26\xbe\xf7\xbd\xef\x69\x95\x91\x45\x54\x17\xb9\xf2\x93\x3e\xb6\x40\x38\x5d\x36\x6e\x15\xee\x00\xcc\xe2\x7e\xd5\xcc\x1f\x4c\x9b\x7b\xb7\x2e\x9e\x4d\xc6\x2d\x4d\x67\xcb\x6a\xe7\xc2\x59\xb5\xb3\xb5\xaa\x66\x75\x4b\xe3\x9a\xa9\xae\x5b\xaa\x09\x40\x63\xd8\x2e\x2b\x5e\x9c\x4c\xda\xe3\x93\x71\x7b\x3c\x1f\xb7\xf3\x45\x6d\x17\x8d\xe1\xd3\x28\x5d\xc0\x92\x40\x73\xbf\x40\x7b\x09\x83\x57\x0f\x39\xff\x00\x14\x7c\x9d\x44\x3f\x00\x48\x54\x23\x6b\xb5\x13\x47\x47\x47\x3d\xda\xa2\xb4\x14\x12\xd4\x59\x51\x66\xe3\xd4\x33\xde\xb0\x79\x0a\x60\xca\xe2\x62\x4d\x26\x8c\x5b\xc0\xb4\xf0\xdb\xfa\xd9\x97\x0d\x30\xaa\x6d\x38\x00\x00\x20\x00\x49\x44\x41\x54\x44\x09\x8f\xd7\x10\x84\x4b\x2f\x21\xb6\x63\x8b\xfc\xe5\xb6\xf5\xc6\x85\x95\xee\x68\xb2\x40\xa2\x2a\x1b\x62\x68\xcf\xc3\xf4\x16\xfd\x86\x24\x2e\x25\xee\x35\x1b\x2e\x44\x60\x00\xc2\xc7\x48\x44\xe6\x44\x64\x2a\x0b\x53\xb7\x34\xae\x9c\xaa\x28\xa0\x4b\x45\x70\x23\x87\xc7\x82\xfb\x12\x62\x70\x8e\x04\x93\x13\x15\x53\xa0\xc3\x00\x52\xe6\x2d\x2e\x08\xe2\x68\x63\x38\xc3\x37\xa6\x38\xb1\x49\x2c\x0f\x9a\x60\x30\xc0\x06\xd6\x12\x2f\x5b\x42\x77\xf7\x87\xe8\x0b\xc9\x89\x88\x01\x69\x84\xcd\x4b\xee\x83\x95\xd4\x38\x5a\x2d\xa4\xe3\xe4\x54\x1c\x43\xaa\x9a\x52\x98\x8c\x93\x2b\xab\x94\x87\x8e\x2b\xeb\xac\xdb\xa1\xe3\xc8\x77\x5d\xf7\xd2\x58\x2b\xf5\x9d\x45\x3e\xef\x4d\xeb\xa0\xc3\x36\x4d\x93\xad\xbf\xe2\xdc\xbb\x9d\x23\x2d\x4f\xc7\x73\xfb\x1e\x63\xb1\x03\xb0\x51\xab\xb4\x7b\x48\x47\x6a\xb4\x7f\x89\x0b\x7f\x37\xfe\x19\xfa\x2e\xa3\xe0\xfc\xdc\xc8\xc9\x14\xc5\x9c\xe9\xf9\x83\xd2\x15\x30\xd9\xae\xe2\xd2\x09\x84\x11\x2f\x30\x24\x35\xb9\xdc\x3f\x44\xa1\x9e\x51\xbe\x92\x82\x12\x71\x09\x62\x58\x40\xa3\xc9\x0f\x25\x80\x06\xf0\x32\xd8\x94\x4b\x97\x0b\xb6\xb7\xa1\x21\x52\x75\x0a\x69\x62\x2e\x04\x42\xd5\xf2\xde\x78\xc1\xd7\xea\x25\xef\x02\x7c\x47\x7e\x33\x47\xa4\xa5\xa4\x60\x48\xa2\x68\x57\xab\x95\xfb\x66\xc9\x22\x14\xc6\x81\x07\x2d\x60\x8c\xa7\x8d\xd9\xf9\xe0\x9d\xd9\x87\x1f\x9a\x8f\x3e\x5d\x31\x2e\x13\xc4\x65\xb4\xee\xf3\x92\xfe\xbc\x3d\x5c\x43\xbd\x27\x0d\x63\xf5\xbb\x57\x3b\xe6\x20\x92\x4e\x57\x31\xed\x5e\x3c\xab\x9e\x7e\xf7\xfd\xe9\x4b\xf7\xb7\x9a\x3b\xa7\xa3\xb3\x25\x15\x76\x8e\x78\xda\x26\x4f\xd7\xf5\xe0\x2e\x63\xef\x62\xd1\x2d\xc4\x39\x55\x7a\x00\x45\xdc\xbf\xcb\x67\xec\x24\x0c\x63\x6b\x78\xbc\xac\x6c\x7d\x32\xb6\xf7\xef\xed\xac\x8c\x63\x04\x46\xae\x1d\x71\xa1\x06\x2c\x08\x2b\xee\x9e\x97\x20\xa1\x6e\x89\xc7\xd5\x27\x12\x06\x22\x92\x8b\xf7\x82\xe2\xbd\x44\xb9\x9b\x8f\xed\x26\xa7\x09\xcb\xe7\x7f\xfe\xe7\x7f\xb6\x40\xaa\x32\x52\x9f\x22\xbc\x53\xdf\x96\xc6\x83\x98\xb1\xa8\xfb\x18\xe8\x5d\xa0\x29\xa5\x86\x71\xae\xa8\xfb\x92\x10\x6d\x76\xa4\x2a\xcc\xdf\xf6\x2c\xef\x21\x92\x3b\x87\x74\x3f\x68\x89\x53\xae\xed\x83\xed\x14\xcf\xeb\x80\x4c\x70\x25\x20\x32\xb4\xf8\x15\x9d\x57\x87\xe8\x5f\xf1\x6c\xfc\xe1\x73\xc6\x7a\xae\x33\x9d\x46\x8c\xc8\x4c\xc5\xf0\xb8\xa3\x20\x9c\x43\xd5\x47\x39\xe1\xda\x16\xa6\xfe\xa4\x96\xf9\x07\x71\x3c\xe2\x6f\xca\xb2\x50\x8f\x60\x84\x7a\x75\xe5\x37\xad\xc1\xb2\x35\x7c\xc6\x14\x75\x7c\x2c\x2e\x96\xf2\x12\x26\xe7\x2c\x00\x28\x69\xcb\x3a\x15\x44\xce\x0d\x82\x47\xe5\xaf\xff\x8c\x7a\x47\xe6\x79\x48\xd2\x30\x24\xa1\xd0\x6d\xca\xb5\x43\x0f\x54\x99\x66\x93\xf1\xb6\x89\x2a\x4a\xe7\x5d\xca\xab\x54\xa7\x75\xf5\x91\xf1\xec\x1f\xfd\xd1\x1f\x79\xa0\x12\x02\x35\x68\x71\xaa\x82\x7a\x74\xc6\xb3\xf1\x82\xaf\x93\xc5\x38\x00\xe2\xe0\xc4\x20\x93\x61\xe2\xdc\x89\x34\xae\xf0\x4f\x55\x90\xf0\xa0\x81\x93\xf8\x48\x45\x0d\x92\xbd\x56\x59\xfa\x60\x4e\xc2\xe3\xbc\x50\xe2\x9c\x98\x9d\x7c\x48\xe2\x43\x4e\x2b\x15\xee\x9e\x49\xb5\x09\x71\x3a\xf6\xa4\x47\x82\x16\xa4\x85\x3a\xa0\x97\x0d\x8b\xf6\x33\x5d\xb6\xee\xd7\x62\x67\x74\x66\xaf\x8c\xce\x78\xd7\xd8\x78\xe8\x1a\xd2\x31\x90\xcc\x4f\x21\x6d\x09\xee\xe2\xc5\x8b\x59\x06\x82\xe2\x99\x3e\x72\xeb\xf3\xec\xd2\x7c\x74\xed\x9d\x0f\x26\x9f\x18\xb7\x74\x1d\x80\x89\xb5\x54\x64\x28\x69\x81\x1a\x32\xce\x33\xa1\x95\x99\x4a\x24\x6e\x28\x82\x28\xc0\xc3\xe7\x51\x63\xae\x5f\x39\x1e\x3d\x75\xed\x68\xf4\xe8\xce\xb2\xda\x41\x7f\x81\xec\xe2\x93\xfe\x26\x00\xc4\x1c\x12\x8b\x7b\xf8\x55\xdc\x7b\x7a\xf8\x5a\xb7\x9b\xe7\x18\xc0\x21\x80\x03\xf7\x27\x9f\x0f\x88\xe8\x00\x84\x7d\x4b\x38\xb0\x06\xfb\xd6\xe0\x2d\x6b\x70\xaf\x35\x78\xcb\xfd\xdd\xb3\x06\xf7\x2c\xe1\x80\x09\xfb\xa0\x90\x6e\xdf\xfd\xea\xbc\x7d\x99\x73\x74\x6a\xa3\x60\xcb\x41\xfd\xdb\x8f\x65\x5b\xce\xeb\x4a\xfd\x22\xf3\xee\xdd\xeb\x24\xea\x75\xec\xea\x2e\xff\xf6\x45\x5b\x92\x67\xd7\xde\xdc\x9f\xec\xd3\x43\x20\x6c\x7b\xf6\x07\xcc\x25\x46\xc9\x12\xe8\x00\xc9\xc1\x7b\x1a\xb4\xe4\xda\x9b\x0b\xdf\x84\xc6\x96\xde\x93\xc4\x72\xb2\x6e\xb2\x88\xae\xe3\xde\x73\x88\x1a\x04\xa0\x62\xaa\x0d\x93\x09\xdc\x97\xe0\x3c\x15\x0d\x0d\x69\xba\xa8\xa5\x70\xea\xd1\x47\x62\x1d\x67\xf8\x57\xf2\xbc\xd9\xb6\x88\x67\x26\xb6\xad\xe1\x65\x4b\xc1\xbe\x25\x69\xa3\x73\x89\x38\xd1\xab\x8a\x54\xb6\x3d\xee\x05\xfd\xc9\x91\x93\x06\x94\xe2\x03\xe5\x09\x75\x1e\xc4\x3b\x24\x19\x29\x01\x03\x1d\xb6\xe9\x24\x5f\x97\xe6\x3c\xc0\x29\x97\x77\xe9\x7d\xe8\x79\xa8\xaf\x83\xfb\x8b\xbf\xf8\x0b\x0b\x24\xdf\x5d\xaa\x4b\x3b\xf5\x00\x60\x88\x51\x8f\x4f\xec\xe5\x6a\xc5\x8f\x10\x63\x0c\xc0\xb1\xd5\x4a\x38\x42\x29\xa6\xe8\x2d\x54\x6e\x80\x76\x53\xc6\xaf\x32\xa9\x81\x66\xb8\x9b\xc8\x9d\x84\x1b\x06\xb5\xc4\x4a\x0a\x37\x05\x90\xe2\x6f\x6b\x16\x13\xa1\x87\x8b\x44\x39\x41\xe8\x43\x22\x1e\xa5\x8b\x6d\xf7\xe0\x6d\x66\x3a\x4f\x66\xff\x4b\x21\x5d\x4c\x23\x4e\xec\xf5\xcf\x2e\x8d\x14\xbe\x0a\x48\xa2\x3a\x88\xdd\xff\xe2\xce\x68\xd6\x00\x2b\xe4\x5b\x57\x4b\xbe\x32\x5a\xd8\xab\x66\xc5\x53\xee\x4e\xb1\xad\x99\xd9\x03\x0e\xef\x02\x6d\x94\xe7\xf5\x20\x43\x03\x3d\x83\xe6\x7e\xfd\x8e\xb2\x9a\xbb\x5b\xc1\xc7\x3b\xcb\x6a\xef\x43\x6f\xce\x3e\x72\xe1\xb4\xfe\x28\x31\x66\xa2\xd6\xbd\xb6\x85\x30\x66\x77\xba\xb0\x28\x07\x48\x88\x1c\x23\x8e\x89\xb0\xab\x53\xc5\xd7\x79\x6b\xec\xac\x4f\x57\xa5\xae\xbe\x4f\xbc\xf3\x60\x7a\xe3\xa1\x93\xd1\x35\xdf\x06\x08\x40\xee\xda\x9a\xeb\x9f\x30\x57\x1e\x7e\xf8\xe1\x2c\x43\xe4\x6d\x46\x90\x3b\x39\x56\x2c\xa4\x70\x0b\x2c\x33\xeb\xc5\x79\x9f\x99\xc3\x62\x5c\x78\xbe\x2b\xfd\x45\x7a\xff\x2c\xcb\x38\x06\xe0\x77\x14\x79\x15\x49\x0e\xb4\x04\x77\xfd\xfa\xf5\xd2\x78\x18\x1c\x27\x05\x3f\x79\x51\x6f\x7a\x73\x74\x27\x05\xf1\xea\x2c\xd9\x3f\x87\xae\xce\xa1\x5f\x44\x7b\x75\x9f\x49\x50\x73\xe0\xc2\x0f\x99\xd9\x03\xa0\xde\x79\x2d\x94\x1a\xe2\xea\x3b\xf9\x32\x4d\xe8\xb5\xed\xa7\xc5\x12\x83\xf8\x42\xda\xb8\xf8\x45\xb2\xa4\x93\x82\x0a\x4b\x3e\xa2\x37\x50\x04\x90\x48\x1b\xbc\x98\xd5\xeb\x8c\x89\x61\x48\x58\x81\xfb\xd3\x36\x81\x94\x08\xf9\x49\x2c\x9f\x13\x31\x6c\x26\x5e\x1a\x37\x6d\x68\x8e\x33\x91\x79\xf4\x00\x4b\x10\x59\xf7\xe3\x78\xc3\x2f\x6b\x38\x1c\xca\xe4\x75\x7d\x6a\x77\x91\xce\x15\xc8\x83\x01\xe9\x0f\x11\x7e\x1e\x55\x47\x4e\x62\xb2\x49\x9c\x75\xae\xa4\x12\x19\x42\xd1\xa5\xb2\x65\xda\x4d\x54\x66\xba\x8e\xb9\x34\xa5\x3c\x75\x9a\x92\x4a\x2b\xd7\x9e\x4d\xd2\x00\x88\xdb\x5e\x85\x61\xae\x54\x0f\x18\x30\x6a\x62\x1e\x4f\x4e\xf9\x72\xa7\x26\x82\x91\xbb\x77\x28\x59\xb5\x52\x35\x47\x12\x06\x0e\x2b\x4b\xb0\x45\x81\x48\xe3\x5c\x7c\x94\x92\x96\xc4\x27\x3e\x27\xaa\x23\xc0\x5b\x80\xca\xdd\x42\x3d\x46\x3a\x5b\x37\xc5\xa4\xa8\x5f\x84\xd3\x78\x11\x84\x30\xce\x3b\x4c\xd8\x58\x1e\xc9\x84\xa1\xfc\x58\x47\x1f\x97\x45\xb8\x42\x7f\xbe\x3c\x1f\x1f\x1c\xf3\x76\x9d\xe4\x65\xad\xa6\xc5\xae\x59\xe1\x82\x97\xb8\x70\xbc\x18\x13\xc8\x7c\xef\x92\x48\x5c\x1d\x2e\x16\x6e\x99\x46\x54\x3d\x8d\xeb\x96\xa6\x97\xe6\xa3\x6b\x57\x8f\xc6\x1f\x1b\x59\x5c\xd3\x4a\xbb\xde\xb1\x1b\xa1\x1b\x14\xd2\x0c\xad\x4d\x37\x1e\x04\x0b\x5e\x4a\x0d\x73\xb3\xdf\x51\x86\xa3\x0f\x92\x7d\xfe\x75\x8b\x2b\x7b\xa7\xa3\x27\x1e\x3e\x1a\x7f\x6f\x7f\xb6\xba\x7b\x34\x6d\xbd\xba\x25\x98\x19\x78\x5a\x57\x90\xbc\xe0\xad\xb7\xde\xca\xed\x32\xf2\xb7\x26\x7b\x95\x1c\x44\x98\x3f\x98\xcd\x2f\xde\x63\x74\x67\x81\x05\xc9\x15\x62\xbf\xf6\x6c\x92\x44\x9d\x2c\xc5\x93\x5c\x13\xfb\x0c\x61\xe3\x21\xed\x3c\xe4\x8d\xcf\xd9\xc5\xda\xb7\x39\xa3\x1e\xf1\x4e\xae\xa7\x43\xce\x02\xa9\x2a\x4d\xa9\xcf\x82\x5a\x0d\x51\x42\xe5\xdb\xef\xfb\xcc\x6f\xe1\xf7\xaa\xc8\x48\x77\x5c\x9f\x0a\x7b\x99\x44\x1d\xe7\xf3\x56\x40\x49\xda\xbf\x48\x5b\xa3\xd0\x1e\xa9\x26\x23\xa2\x92\x5d\xcb\x60\x9b\xff\x2b\x9c\xb6\x71\x19\x22\xe4\x9b\x14\x1c\x06\xa0\xe8\xb0\x14\x79\x3a\xd0\x42\xbe\x63\xbb\x58\x81\xb0\x94\x30\x5c\x7f\x3a\x24\xa7\x3b\x20\xa5\xb8\xa5\x3c\x92\xbd\x0f\x85\x7c\xd3\x80\x5c\x38\x03\xd6\x12\x37\xce\x32\x1b\x10\x83\xd9\x4f\x62\xb5\xc3\x44\xab\x8d\x24\x40\x2c\x01\x16\xf9\x5c\xfa\x16\x39\x91\x36\x44\xfc\x92\xc4\xc6\xc7\xd7\x0b\x7e\x69\xc1\xd6\x65\x6b\xbf\x4d\x06\x6c\x69\x42\x0f\xa9\x89\x72\x7d\xa3\xd3\xe8\x38\x43\xc0\x5b\xbb\x52\x9d\x86\x40\x59\x70\x5e\x55\xe4\xc3\xc5\x62\x17\x54\x45\xe8\x76\x91\x98\xd1\xc2\xbe\x8d\x2c\xcf\x00\x18\xbd\x10\xf9\x03\x6a\xfb\xab\xb4\x0b\x97\x0b\xba\xb6\x47\x51\xc6\xa7\xfa\xa4\x5b\x69\x2b\xa2\x01\x44\xb4\xb3\x91\xcb\x5c\x3c\xe8\x2c\xbf\x88\xc6\x72\x82\x21\x3b\xe4\x3e\x3e\x57\x11\x52\x73\x33\xad\x64\xc8\xcb\x4f\x8b\xde\xf1\x2b\x7a\xaf\xb5\xae\x50\x50\x7b\xe5\x2a\x2a\xd2\x49\x90\xd7\x8b\x03\x18\x8b\x59\xd5\xf0\xae\x69\x79\x4a\x64\xe4\x7d\x45\xf2\x6f\x70\x7c\x3f\x78\xf0\x40\x8e\x55\xf9\x9b\xa8\x89\xb6\x97\x66\xf7\x91\xc3\xf1\x7b\xb6\x57\xe6\xfd\x86\x69\xa6\xab\x9f\xeb\xef\xf0\xb9\x49\x7e\xa1\x14\x94\x68\x06\xab\x07\x54\xca\x24\x51\x96\x24\xbe\x9f\xcc\x9a\xea\xe9\x8a\x1e\xd9\x3b\xad\xdf\xbb\xb3\xac\xbe\x7f\x34\x6d\x8f\x29\x35\x18\xf5\x0b\xa4\x75\xe0\xa1\xd7\x57\x7e\xa7\xc9\xdf\xfe\xed\xdf\xe2\xce\x9d\x3b\x3d\x9b\x17\x69\x34\x8a\x74\x4e\xfa\x77\x79\x93\xb2\xb4\xe3\x90\xa0\xa5\x37\x3f\x33\x36\x39\x01\xb8\x50\xdf\xd0\xb4\x11\x71\xe4\x6f\xb2\x58\xfb\xbc\x07\xd4\x23\xb9\x35\x74\x70\xfc\xc8\x93\x75\x05\x23\x0c\xea\x6f\xc3\xd7\x02\x86\x46\xb4\x5d\x9e\x82\x2f\xff\x64\x5f\x20\x93\x97\x6c\xab\x07\x68\xc9\xaf\xf8\x4b\xda\xf8\x9d\xef\x7c\xa7\xd4\xa4\x12\xb3\xb9\x49\xfc\x21\xbf\x24\x53\xf9\x3b\x54\xb0\x5e\x48\x7a\x9d\x83\xf4\xa3\x25\x20\x46\xa8\x8a\x3a\x89\x4b\x22\x02\xa1\x30\xd3\xbc\x64\x83\xc5\x73\xe7\x38\x91\x60\xe8\x73\x5d\x08\x11\xf8\x68\x35\x51\x4c\x97\x6e\xa8\xce\x81\xa1\x1c\x70\x62\x91\x87\x0b\xb7\x4c\x68\x98\x92\x8f\x2c\x8d\xa0\x92\x67\xa0\x1b\xe8\xce\xc6\x45\x2f\x96\x7a\x70\xc8\x49\x2d\xbf\x4f\x6e\x10\x95\xde\xa5\xcb\x81\x1e\x1d\x37\xf7\x9b\x23\xc6\xc5\x41\x5c\xc8\x73\x08\x40\xe4\xe2\xe5\xea\x9f\x73\xa5\x34\x43\xe9\x73\xf5\xd9\x64\x42\x95\xfa\x24\xa8\x8a\x80\x70\x23\x7a\x72\x52\x6a\xf7\xc7\x06\x8c\xba\x3a\xe3\xcb\x64\x51\x07\xf5\x87\x1b\xdc\xde\xa0\x54\xaa\x66\x92\x91\xe6\xa6\x86\xdc\xb6\xca\x6a\xe5\x8a\x61\x4e\x6a\x19\xd4\x50\x4e\xb2\x40\x8c\x70\x02\x2b\x62\xb9\x3e\x4d\x02\x74\xa4\x54\x27\x8c\x79\x16\xe5\xc4\x78\xdd\xb4\xf5\x75\xa7\x38\x61\x1d\xe0\xe0\x50\x98\x58\x80\xc3\xa5\x89\xb1\x93\x25\x8e\x8b\xed\x27\xf7\xec\x66\x2c\xc5\xba\xc7\x3a\x39\x7f\x97\x1f\x3b\x15\x10\x73\x07\xde\x64\x9e\x21\xef\x10\x17\x5e\x05\x33\xad\x1a\xde\x35\x0d\xa6\x50\xdb\xa1\x91\x71\x7a\xd7\x90\xf7\x53\x2a\x22\xe3\x9e\xc3\x42\xcb\xcc\xf5\xa4\x31\xbb\x97\xe7\xa3\x77\x8f\x5a\x73\x35\xc8\x7c\x0a\x9c\x91\x7f\x48\x04\x50\xbe\xbf\x32\x49\x12\x50\xe3\xfb\x93\x93\x6e\x2e\x17\x03\x38\xb0\x1a\xe9\x9f\x04\x42\x23\x6b\x2e\x5f\x38\xab\xde\x75\x61\x51\x5f\xa9\x2c\x8d\x3d\xb8\x13\xd2\x0e\xb8\x77\x30\x33\x9e\x7d\xf6\x59\xf3\xf4\xd3\x4f\xf7\xfa\xef\xce\x9d\x3b\xf6\xfa\xf5\xeb\xc1\x80\x57\x48\xa7\x35\xb0\xf0\xea\x11\x7f\x86\x4a\xd8\xae\x8c\x8c\x9a\x24\x63\xf3\xe1\xd5\x1f\x5e\xf5\x73\x2c\x9e\xf5\x56\x67\x6d\x90\xda\x38\x15\x56\x62\xc7\xe1\x7f\x6f\xde\xbc\xa9\x0d\x72\x87\x18\xaf\x75\x71\x00\x00\xd3\xe9\xd4\xf8\xbc\xa5\x21\xad\x28\xbf\x11\xcf\x3d\xc3\x59\xdf\x47\xae\xbf\xfc\xef\x7c\x83\x3f\x1f\x3f\x67\x98\x9b\xa8\xc8\xfc\xa6\x13\xff\xcd\x6e\xde\xbc\x69\xbf\xf5\xad\x6f\x95\x9a\x54\x6a\x6f\x0e\x2b\x48\xff\x21\x86\x34\x71\xfa\xe4\x5c\x9d\xa8\xb4\xf8\x64\x39\xf2\x44\x95\x13\x27\x30\x20\x44\x79\xee\xbf\x6e\x62\x7b\x4c\x2f\x88\x72\xc8\x0b\x42\x84\xea\x25\x32\x20\x35\xd9\x52\x17\xe2\x53\x4c\xdf\x4d\x7e\x7f\x16\x8c\x4f\x43\x69\xfc\xf0\x2b\xb9\x57\xb7\x48\xf8\xd8\x02\x58\x31\x01\x96\xd8\x32\xd8\x46\x50\x04\xa9\x2a\xb2\xba\x2f\x9e\x7d\xf6\x59\xf3\xcd\x6f\x7e\xd3\x1b\xe8\xca\xbe\x09\xe9\x0b\xef\x43\xd2\x10\xfd\x9d\x4a\x61\x39\xc9\x82\x1e\x44\xa5\xb4\xba\x2e\x43\x75\x2b\xf9\x69\x37\x54\x56\x49\x12\x55\xca\xaf\xd4\x2f\xeb\xda\x34\x54\x9f\x12\xc7\x10\x9e\x3f\xf5\xa9\x4f\x99\xf7\xbd\xef\x7d\x00\x22\xa8\x15\xa0\x05\x40\xb0\x71\xa9\x4d\xcb\xe3\x7a\xc5\x7b\x80\x3b\x02\x20\x0e\xce\x54\xed\x03\x29\x9d\x13\xd2\x17\x4e\xe3\xa5\x8b\x9d\x5f\xc9\xd5\x45\x8a\x2c\x9e\xd3\x98\x00\xcb\x63\xf8\x21\x26\x4b\x5a\xb7\x30\xe6\x3d\x62\x08\x80\x27\x73\x48\x9c\xac\x92\x53\x6b\xc5\x4b\x1d\x63\x78\x7f\xa1\xf6\x40\x4e\xb5\xad\x20\x61\x60\xd5\xae\x70\x82\xae\x10\xb3\xb3\xaa\x93\x8f\xef\x4f\xac\x97\xd7\x15\x90\xc5\xb4\x5a\x61\xa7\x6a\x78\x0a\xa6\x9a\x11\x4e\x72\xcd\x82\x17\x31\xaf\xad\xf2\x33\xe8\xe6\xbd\x16\xd9\x77\xa7\x26\x33\x8d\xb7\x97\xd5\x95\x0b\x8b\xfa\x3d\x95\xa5\x60\xdb\x92\x75\xd4\x7b\xe8\xc9\xac\x82\x1f\xa5\x42\xb3\x44\xe2\x22\xe8\x60\xee\xb7\x0f\x88\xf2\xe5\x19\x8b\xd9\xf6\x59\xf5\xc8\xc5\xd3\xea\xda\x64\x45\x2f\xb5\x13\xf2\x87\xf5\x35\xa2\x9d\x1e\x84\x00\x00\xbe\xf6\xb5\xaf\x65\x99\x96\x5b\xb7\x6e\x85\x85\xaf\xb0\xab\xc6\xc7\xf7\x7d\xe9\x55\x17\x89\x3a\x44\xfd\x01\xe9\xbc\x93\x52\x8b\x44\x72\x20\x9f\x85\x7a\x5f\xaa\x46\x02\x90\x92\xaa\x21\x05\x56\x74\x5d\xd7\xb9\x21\x06\x0e\x8b\xc5\xc2\x02\x40\x5d\xd7\x46\x4a\x5f\x84\x94\xc4\x88\x7a\x27\xb4\x4a\x48\x66\x02\xd3\xa4\xd4\x4d\xa1\x1f\x72\x75\xe2\x74\x6b\x77\xf2\x2c\xe3\x4a\x06\xdc\x7b\x1e\x1d\x1d\x0d\x31\xb0\x43\xcf\x25\xa9\xf8\x60\x3f\x49\x57\x8b\xe7\x75\xa2\xad\xc1\x70\x05\x54\x12\xdd\x9a\xca\xc3\x10\x77\xaa\xa2\x04\x88\x08\xdd\x7e\xf0\x42\xe4\x1c\x24\x53\x97\x2b\x9b\x12\x5d\xbd\x48\x10\x63\xf5\x44\xa1\x94\xd4\x8f\x42\x15\x7c\x7d\x54\x75\xa4\xeb\x06\x3e\x05\xb0\x92\xd5\xed\x6a\x9b\x9f\x0c\x68\x29\x4d\xda\xa1\xc5\x1b\x99\x30\x2d\x15\x2b\xe5\x3f\xe4\x5f\x5a\xdc\x73\xe0\x28\x07\x84\x64\xdc\x5c\xbe\x43\x03\x71\x08\xcc\x6d\x02\x8a\x86\x08\x60\x0e\xb9\xe7\x24\x4f\xb9\xfe\x2c\xa5\xc1\x07\x3e\xf0\x81\x6c\x9e\x9e\x90\x04\x11\xae\x65\x63\x5a\x8c\xab\x86\xf7\x9c\x9a\xb4\x73\x72\x70\x07\xab\xc8\x4e\x5a\x42\x3a\x0e\xa9\x78\x1e\xab\x38\x69\x8d\x5f\xa6\xc3\x72\x2d\x11\xbc\x88\x9f\x4e\x30\x71\x40\x5b\x1a\x29\xba\x88\xda\xd3\x18\xba\x3e\xbd\xe4\x94\xf1\x4c\x67\x53\x90\xf8\x04\x10\x54\x9e\x6d\x3d\x06\x25\x01\x2f\x11\xd9\x79\x20\xd6\xcf\xce\xf7\x89\x07\x47\x31\x2d\x31\xea\xaa\xe1\x59\xd5\xf0\x8c\x98\x6b\xa6\x9e\xea\x41\x8e\xf7\x64\x5c\xbc\xf7\xbd\xef\x35\x9f\xfe\xf4\xa7\x5d\x9d\xc2\x02\x02\x91\x2e\xa8\x34\xa6\x2b\x33\xdb\x9b\xd7\x57\xa7\x2b\x73\xcd\x30\xa6\xa5\xd6\x6a\x70\x91\xeb\x99\x3e\xe0\x48\x99\xb5\xa0\x45\x13\x3d\x84\xcc\x6f\xaf\xdc\xe2\x10\xa0\x7a\xd2\x98\x2b\xbb\x8b\xfa\x9d\xb3\x55\xf5\xad\xf9\xc4\x1e\x22\x55\xd7\x48\x35\x51\x69\xee\xf4\xe6\xe7\xd1\xd1\x11\xbe\xfc\xe5\x2f\xe7\xb6\x4b\x7b\xb7\x04\x12\x9b\x0d\x6f\xdb\x51\x02\x2d\x40\x5c\xe4\xa5\x4d\x87\xff\x4d\x9e\x95\x4a\x44\x4a\x7e\xe0\xda\x04\x65\xc7\x51\x72\x25\xc6\x70\x13\x50\x13\x9c\xbb\xac\xd2\x00\x71\x9b\xb5\x02\x77\x9a\xce\xcb\xad\xfa\xf2\x37\x79\xce\x81\xed\xc2\x73\xe2\x77\x8e\xf6\x9f\xd7\x6d\xda\x9f\xa5\xf7\xb5\x44\x7d\x5d\xe6\xc1\xe9\x85\x5b\xda\x79\x68\x47\x80\x09\xc4\x50\x6e\x15\x70\xf4\xa5\x27\xde\xf4\xaa\x24\xf6\xe1\x1c\x68\xbe\x2f\x9b\x55\x7c\x7d\x76\xa4\x3f\xbf\x21\x8a\x8f\x5d\x49\x3e\xef\xcc\xa4\x2d\x72\x44\xaa\x8e\x42\xd2\x12\xeb\xd3\xdf\x0a\x2e\x5d\x0e\x18\x6c\x22\x72\x94\xef\x7a\xe0\xe5\xc4\x70\x9a\x6b\x4c\x06\x7d\x26\xae\x74\x25\x89\x4c\xae\x4e\x25\x37\x04\x84\x4b\xf1\x37\x49\x53\x9a\x80\xba\xbd\x25\x00\x98\x4b\x3b\x94\xbf\x26\x18\x25\x97\x1a\xe6\x3a\xc2\x6e\x5a\x9e\x92\xc5\x2c\xa6\xe5\x1e\x28\xd0\x2b\x8c\x97\x16\x86\xb9\xa1\x41\x88\x07\x1c\x44\x3d\x35\x4a\x70\xbd\x15\xdf\xe7\x11\xf3\xea\x8e\x02\x20\x51\xbe\x28\x53\x26\xcd\xe5\x49\xbd\xd0\xf0\x2e\x7d\xbc\xea\x46\xab\x87\x08\x7e\x5a\x47\x15\x55\x5a\x20\xf7\xb2\xef\xa6\x6b\xa9\xa1\x91\x7a\x30\x29\x4a\x22\x16\xf3\x34\x3e\x8c\xb1\x3c\x35\x2d\x4f\x89\x51\x0b\x69\x0b\x50\x58\x08\xbc\x7b\xf7\xbb\xdf\x1d\x38\x50\xc5\xe5\xca\xbf\x1a\x40\xbd\xb5\xaa\x76\xf6\x16\xf5\xdb\xc6\x2d\x5d\x26\xbf\xa3\x52\x37\x17\xc9\x10\x48\xfd\x38\x13\x59\xb8\x1c\x28\x19\xa2\x5f\x62\x84\x0d\xc6\xf5\xfe\x23\x4b\xbb\xb3\x55\x75\x75\x6b\x65\x76\xd0\xb7\x35\x09\x52\x27\x4f\xeb\x94\xb1\x72\x76\xde\x7c\xf9\xcb\x5f\xd6\xd2\x8c\x1e\xb8\x10\x7f\xde\xae\x46\x6f\x13\x4e\x4e\xb7\x55\xbf\x5e\x0d\xa2\x8f\xed\xcf\xa9\x43\x1a\x55\x36\x9e\x7b\xee\x39\xad\x16\x2a\xb9\x12\xd3\x94\x73\x43\x74\xb6\xe7\x94\x6a\x4a\xf7\x49\xb6\x8f\xd4\xb3\x57\x7d\x35\x2a\x9e\x07\x6d\xb9\x6d\xde\x43\xed\x2f\xcd\x89\x4d\x70\xc3\xa6\xf1\xd7\xf6\xb9\x9c\xa0\xeb\x16\xb2\x92\x7f\x70\x4e\x2c\x07\xf9\xa7\xc4\xe8\x61\x57\x11\xf9\x7c\x94\x41\xa2\xa4\xdf\x1d\x1d\xea\x1f\x25\x1e\x4e\x0e\xcd\x31\x7c\x2c\xf3\x20\x35\x91\xa5\x15\x3e\x89\x7f\xf3\xf9\x48\xbc\x91\x3c\x3b\x69\x0b\x8b\x0e\x96\x86\xb8\xb9\xbe\xc8\x1c\x15\xee\xdd\xd0\x42\x9d\x03\x2d\x9b\x02\x11\x3d\xa8\x73\xf9\xe4\xe2\x96\xea\xb5\x49\x3d\xf5\x04\x28\x81\xb2\x1c\x40\x29\x2d\x16\xb9\xbc\x91\x89\x9b\xcb\x3b\x97\xc7\x3a\xe9\x54\x8e\xc8\x6a\x8e\x07\xcf\x3d\xf7\x9c\xd4\x47\x67\xaa\xd1\xc5\x27\xc0\x98\x16\x35\x31\x4f\xbb\xb1\x26\x00\x6d\x40\xde\x88\xe3\x8d\x29\xa8\x59\x58\x4c\x8a\x0e\x98\xa4\x8b\x31\x13\xbb\xf9\xe1\x6d\x58\x10\x6c\x44\x92\xbc\x5d\x40\x37\x9d\x62\x3c\x20\x62\x99\x60\xc7\x02\x72\x71\x39\x96\x47\x9d\x94\x22\xa6\x75\x40\x23\xb0\xf4\x11\x08\x78\x35\x57\xb8\xec\x91\xdd\xdc\xe8\x4d\x6c\x84\xfa\x90\x97\xba\x70\x0a\x90\x7a\x60\x46\x3a\x57\x7e\xb0\x5b\x71\x89\xe2\xbd\x67\x21\x93\x28\xd8\xf2\x82\xd8\x50\x4e\xe0\x94\x6a\xb2\x18\x3b\x89\x98\xb4\x53\xe9\x17\x2b\x08\xc1\x63\x8f\x3d\x96\xec\x2a\x53\x69\x03\x70\x61\xe6\xba\xb6\x34\x9b\xae\xcc\x9e\x61\x9a\x75\xd5\x92\x4c\x94\xef\x1a\x39\x36\x14\x98\x90\x86\x7b\xc9\xb7\xee\x83\xbb\x68\xd3\xe3\xbf\x6a\xd2\x82\x3e\x9e\xe3\x6c\x50\xe2\x8c\xa5\xd9\xb4\x31\x97\xa7\x2b\xb3\x4b\x8c\x60\xe7\xa2\xfe\x86\xe6\xc2\xe0\xfa\x71\xef\xde\xbd\x2c\x80\x71\x0c\x61\x58\x8c\x29\xee\xf8\x91\x47\xcf\x2f\x35\x40\xf1\x00\x87\xdc\xe1\x69\x48\x81\x4a\xa3\xf2\x0d\x36\x1c\xbe\xdc\xbb\x77\xef\x02\x00\x3e\xfc\xe1\x0f\x6f\x04\x62\x33\xae\x24\x11\xd2\xae\xb4\x2e\x24\x69\x7f\xf4\xa3\x1f\x69\xc9\x47\x11\xc0\x08\xa0\x92\x18\x22\x4b\x00\x23\x6c\x66\xf4\x33\x6e\xde\xbc\x69\x4f\x4f\x4f\x37\xa9\xef\x26\x0c\xe4\x3a\x86\x57\x33\x9b\x43\x65\x86\x78\x39\x1b\x97\x9c\xd8\x2b\x97\x49\xd1\x65\xb6\x75\xa1\x67\xe3\x22\x99\x4e\x05\xfb\x23\x33\xea\xe5\x26\xfa\xb7\x8b\x25\x61\x89\x66\x60\x3b\xbf\xf4\x7e\xa3\x94\x10\x0c\xd5\x1f\x01\x24\x25\xb4\x59\x54\x98\xc9\x81\x97\x14\xac\xf4\xd4\x43\x3e\x4c\xd8\xb8\x00\xe5\x85\xd5\x3b\x0d\x2c\xa4\x9f\x74\x7a\xd1\xd5\x7e\x5a\x04\xab\xe3\x6f\xf2\x9e\x03\x4b\xba\xee\xa5\xdf\x21\xa0\x91\x6b\xf3\x90\x1b\xaa\x9b\xae\x63\x09\x9c\x00\xfd\xbe\x2d\xe5\x07\xe4\xbf\x0d\x88\xc8\xfc\xe9\x9f\xfe\x29\x80\xac\x34\xcd\x8f\xf5\x30\x71\x89\xb9\x26\x4b\x75\x22\x41\x48\xc6\x53\xf7\x9b\x6e\x08\x92\x76\x24\x2e\x91\xba\x70\x31\x8c\x77\x39\x60\x5d\xbe\xe4\x16\xed\xe8\xef\x4f\xaa\xf5\x63\x95\x93\x19\xe4\x77\x1b\x25\xf6\x20\xee\x34\xe9\xae\xc8\x34\x2e\x7b\x69\x25\x3c\xf8\x88\x65\x44\x30\x12\x57\xc2\x70\x59\x64\xa8\x93\x9f\x27\xfd\xe6\x85\x73\xab\x7d\x87\x24\x75\x11\x3b\xf5\x00\x27\xb1\xf5\x6a\xa2\x98\x49\x6f\x7a\x87\x76\xc0\x8b\x79\x3c\xb6\x31\xd4\x01\x97\xdc\x76\xd2\x1e\x51\x25\xa2\x60\xa0\x2b\x76\x0c\x1a\x41\x03\x24\xc1\x0e\xf9\x55\x16\xd3\xda\xd2\x8c\xc2\x75\x0f\x24\xf2\x0c\x4f\xba\xd6\xc1\x25\xd7\x26\x24\xf6\x40\x29\xe3\x97\xee\x52\x52\xf4\xd1\xa7\x2d\x71\x7d\xa2\xdf\xe4\x10\x05\x03\x06\xa8\xeb\x96\x76\x26\xad\xd9\x31\x96\x6a\x6b\xe2\x39\x2e\xbe\x8f\x04\xbd\x33\x00\xec\x27\x3e\xf1\x09\xf3\x2f\xff\xf2\x2f\x43\xb4\x2e\xbc\x7f\xe5\x2b\x5f\xb1\x40\xef\xb2\xde\xc0\x1c\x38\x5b\x8c\x70\x02\x39\xa5\x3b\x6e\x7a\xeb\x0d\x90\x5c\x62\x28\xeb\x66\x45\xfc\x5e\xfa\x9b\x37\x6f\xda\xcf\x7c\xe6\x33\xe6\xef\xff\xfe\xef\x2d\x00\x7c\xf7\xbb\xdf\xcd\xd1\x62\xe9\x4a\x61\x9b\x2c\xf0\xb9\x34\x39\x9a\x8e\x7f\xfc\xc7\x7f\x0c\xfd\x23\xeb\x97\xb3\x13\xd2\x6b\x8f\xf4\x2f\x3d\x6b\xc9\xca\x0b\x2f\xbc\x30\x50\xcd\xb5\x6e\xd3\xf6\xe6\xc2\x87\xd6\xa4\x10\x57\xda\xb8\x6c\xe2\x72\x04\x1f\x40\x0a\x56\xd4\x02\x2e\x8f\x1d\x36\x4e\xe2\x02\xea\x08\xba\x98\x48\x29\xd0\xe8\x5c\x47\x7c\x03\x91\x12\xd3\x2a\x89\xe7\x8d\x0d\x45\x7c\x6d\x5c\xab\x49\x42\x6e\xed\x88\x79\x89\x8f\x0a\x81\xab\x52\x50\x64\x59\xf4\x83\x47\xec\xde\xe6\xc5\xf7\x83\xec\x1b\xb1\xab\x28\x37\x81\xbd\x2b\x2d\xc6\x3a\x5c\x3e\x6f\x32\xb1\xb2\x13\x22\x53\x4e\x49\xe2\xa0\x11\xf4\xd0\xe2\x5e\x9a\xec\x39\x70\x93\xab\x63\x2e\xbe\xae\x43\x89\x20\xe6\x00\x9f\xf7\x2f\xc5\x2b\x49\x65\xb2\x75\x63\x66\xfb\xdc\x73\xcf\x79\x03\x3a\xef\x17\xea\x22\x88\xb7\x01\xbb\x85\x91\xd9\x71\xf4\x51\xbc\xd2\x83\xd4\xb9\x05\x37\x63\xa8\xdb\x33\x62\x10\x71\xc3\x29\xd0\x72\x05\xf3\xab\x56\xb2\x1a\x49\x90\xe0\x1d\xc5\x4a\x78\x80\x13\xc4\x3d\x10\x79\x89\xb9\xe8\xcb\x0c\x9c\x08\x45\x80\x10\x70\x84\x07\x2a\x24\x38\x00\xcd\x9d\x73\x58\x58\xe3\x96\xed\x08\x56\x92\x2c\x5c\xd9\x24\xda\x18\xb2\x22\x41\x8b\x9c\x28\x83\x54\xbb\xbb\xf8\x9d\xa7\x03\x3f\x63\x62\x4c\xc4\xf9\x52\x39\x06\x21\x8c\x29\x2f\x3d\xf5\xd2\x96\xcc\xa2\xa9\x81\x4f\x6d\x98\xc6\xb5\xa5\x19\x65\x68\xae\xfc\x8c\x3d\x7a\x14\xea\x1b\xdb\x97\x4b\x9b\x30\x58\x3a\x1f\x45\x04\xfb\x34\x4f\x60\x62\x51\x8c\x34\xde\x66\xc0\x54\x8c\x69\xdd\xd2\xd4\x70\x3c\x3f\x45\xb6\x57\x83\x09\x05\x5a\x80\x61\x9a\x11\xfc\xf6\xf7\xf7\xf1\x95\xaf\x7c\xc5\xfe\xee\xef\xfe\xae\xf9\x9b\xbf\xf9\x1b\x2b\xe6\x59\xf6\x02\x5b\xe5\x67\x33\x7e\xde\x7e\x25\x71\xcc\xf9\xb3\x58\x3c\x28\xc8\xd4\x3b\xf7\xbe\x96\x91\x57\x6e\xb0\xed\x28\xd3\xb5\x6c\xfd\x72\xaa\xac\x67\x9f\x7d\xd6\xc8\x31\x2a\xed\x65\x36\xb5\x57\xf9\xea\x57\xbf\xba\x09\xa3\xfb\xb3\xb8\x92\xf4\x65\x23\x86\x56\x2f\x46\x9a\x60\xe7\x16\xab\x5c\x9a\x04\xac\x28\xa4\xdb\x3b\x65\x8f\x3c\x52\xd7\x83\xcb\x13\xa4\xc4\x53\xfa\x71\x12\x2f\x8d\x13\xb7\x44\xcb\xdc\x4a\x3c\x4c\x81\x0e\x38\xee\x4d\x6f\x8b\x16\x22\x5c\x8e\xd2\x16\x50\xb4\x3c\xf7\xaa\xa1\x52\x5f\x64\x8e\xbd\x86\x78\x97\x7f\x28\xfc\xea\xf0\xdc\xb3\x96\x74\xe4\xf2\xcc\x22\x58\xf1\x2e\xf3\xc8\x85\x97\xf2\xd7\x4e\xa7\xd5\x83\x7e\x53\x8e\x24\x17\xf6\xd3\x10\x92\xa1\x7a\x97\xf2\x1b\x6c\xab\xb3\xe3\xd2\x5c\x7a\xcf\x91\x05\xdc\x89\xb9\x1d\x67\x0a\xe4\x39\x5f\x88\x91\x46\x69\xbc\x00\x90\xfc\xbf\x72\x70\x53\xfa\xc7\x41\x0a\x11\xc4\x1d\xf0\x8b\x74\x8c\x2f\xf2\x25\x04\x55\x8e\xd0\x1a\x88\xfc\xb9\x9f\x7f\xd7\x01\x01\x5c\x74\xf9\x71\xf0\xf6\x65\x78\xbc\x14\x92\x24\x15\xee\x02\x82\xf4\x86\xc4\x49\xba\x12\xab\xf9\xb9\xd4\xeb\x83\x18\xdf\x17\xda\xe1\x1d\x21\x11\x92\x2b\xb2\x57\x59\x01\x42\x0d\xc5\x8e\x99\xe2\x9a\xdc\x99\x53\xdc\x9d\x9c\x8b\x9c\x93\xfe\x72\x11\x70\xe3\xc0\xaa\x78\x0e\xbc\xb2\x31\x4c\xe3\xca\x9a\x29\x81\xea\xde\xa1\x0b\x4a\x10\x07\xf1\x2b\xb7\xa2\xa7\xfd\xe8\x7a\x92\x55\x7c\xe6\xe4\xdd\xc7\x0d\x60\x12\x0e\xf0\x89\xf7\x12\x60\x16\x18\x13\x00\x0c\x59\xaa\x2b\xa6\xa9\x89\xe7\xa7\x40\xfc\x26\x1b\x34\x32\x9b\x32\xe4\x73\x69\x1e\x03\x88\xd2\x97\xbf\xf9\x9b\xbf\xb1\x5f\xf8\xc2\x17\x8c\xb7\xf3\x68\xdb\x16\x6a\x2b\xb5\x05\xa2\xaa\x43\xfa\x65\xfe\x42\x1d\x7d\x7e\x12\xb4\x6c\x6d\x6d\xe5\xe6\x6e\x76\x3e\x9f\x23\x7c\xd3\x78\x9a\x36\x97\xf2\xd0\xc0\x18\x99\xdf\x64\x5c\xca\xe7\xf9\x7c\x1e\x32\xfb\xc2\x17\xbe\x60\x76\x76\x76\x7a\x69\x55\xde\xa5\x35\xa0\x54\xbf\xdc\x73\x29\xce\x3a\xff\x5c\xdd\xc2\xbb\x56\x15\xad\xe3\x5a\x73\x71\x35\x42\x0c\x4e\x89\x0e\x45\x40\xca\x25\x78\x3f\x49\x38\xd3\x89\xe7\xdf\xa9\x10\x2e\x63\x44\xa2\x9b\xcb\xa3\xf4\xeb\xe3\x00\x19\xb4\x0e\xb1\x9d\x5a\x10\xcf\x1e\xbc\xc9\x48\x9d\xfc\xfb\x33\xcf\x3c\x63\xd4\xd5\xe7\x39\xe9\x02\x90\x0e\x9a\x21\xce\xbf\x04\x44\x4a\xd2\x97\x21\x29\x85\xf6\x5b\x27\xd1\x00\x86\x07\xb0\xae\xe7\x3a\x89\x90\xcc\x4f\xd7\x61\xd3\x3a\x9d\xb7\xcd\x43\xcf\xb2\xde\xb9\xba\x01\x08\xdf\xd8\xef\xa8\x00\x10\xc6\x40\xca\x71\xcb\x43\x18\xd9\x8d\x21\x39\x48\xc5\x60\x94\x2a\xc9\xfe\xa1\x6c\x62\x94\x87\x34\x42\xb2\xe2\x32\x21\xaf\x3a\x81\x28\x07\x62\x5c\x67\xd8\xfa\xa8\x2a\x8a\x8b\xa3\x0c\x4d\xde\x64\x25\x43\x3b\x38\x4a\x69\x12\xd6\xdd\x9f\x25\x93\xdb\xa5\xc7\x08\x12\x9a\x18\x5d\x95\x98\x9e\x9e\x1b\x05\x4e\xbe\xac\x54\x92\x13\xa5\x31\xae\x4e\xa9\x8e\x37\x86\x87\x3c\x09\xe8\xce\x95\x0a\xdf\x4b\xcd\xff\x64\x9e\x96\x6c\x38\x74\x1a\x3f\x06\x98\xd9\x18\x90\x31\x16\xb5\x71\x76\x34\x94\x13\x6f\x14\x5d\xda\x21\xaa\xde\x7d\x49\x89\x56\x0f\x49\x3f\x01\xe0\x7a\xe5\x2a\xc2\xca\xee\xbb\x84\xc3\x78\x63\x90\xec\x27\xcf\xb4\x6a\xc9\x53\x56\x0a\x92\x79\x2e\xc5\x09\xee\x4b\x5f\xfa\x52\xf0\xff\xb3\x3f\xfb\x33\x0b\xc4\xad\xd4\xff\x05\xbb\x5d\xc2\x7c\x3e\x3d\x3d\xcd\xe5\xb5\x2e\xff\x4d\xcb\x3f\x4f\xbc\x12\xb0\xdb\x64\x3d\x1e\xa2\xb3\xf8\xd2\x97\xbe\x24\x9f\xcf\xf5\x1d\x36\x70\xa5\xfa\x6d\x22\x4d\x1a\x6a\x6f\x96\xa9\x2c\x21\x20\x49\xa8\x4b\x48\xaa\x27\x56\x0d\xea\x20\xb1\x78\xab\xb0\xc4\x25\x80\x41\xcc\xa5\x14\xe8\x43\xd9\xa5\x71\xef\x80\x39\x0d\x5a\xc2\x99\x58\x99\xb2\x7a\xbf\x82\x8d\xc9\x95\x2d\xd3\xab\x3c\x7b\xe8\x73\x48\xa7\x98\x11\x49\x66\x39\x02\xf5\x5e\x92\x54\x0c\xa1\xe0\x4d\x07\xe4\xa6\x60\x54\x3a\x2d\xd1\xc9\x95\x51\x92\x56\x94\xdc\xba\x34\x83\x03\x78\x83\xfa\x94\xde\x87\x9e\x87\xfa\x3a\x38\xcf\x61\xae\x1b\xe7\x6c\x08\xf0\x97\x71\x4a\x16\x39\xac\xfb\x8a\x6d\x8e\x32\x85\xd4\xf9\x34\x61\x1d\xce\x40\x01\xf6\xe0\x45\xe4\x4d\xdd\x6f\x5e\x88\x20\xf2\x70\x71\xc8\xe3\x80\x50\x89\x7e\x7d\x38\x00\x03\x0f\x76\x3c\xd2\xea\x17\x12\x0c\x79\xb5\xd4\x40\x18\xdf\xb2\x7c\x62\x99\x36\x06\x66\xf0\x56\xcc\xc3\x13\x11\x59\x0e\x28\x8d\xa3\x8a\x08\x52\x0c\x82\x65\x43\x0d\x67\x00\x8b\xdf\x1d\x19\xcb\x8b\xcf\xea\xde\x22\x1f\x2e\x25\x0e\xdd\xf5\x01\x04\x63\x0d\x60\x0d\x1a\x10\x2c\x4b\x02\xc6\xf1\x53\xe6\x68\x8f\xa4\x57\x1e\xa7\xca\x40\x9f\x26\xd9\x31\xe9\xe2\xa9\x62\x8a\x2e\x84\x89\xe6\x6b\x3a\xc9\x00\x5a\xc3\x68\x88\xad\x8d\xed\xf4\xe0\x0c\x50\x92\x96\x01\x89\xcb\x7f\x89\xff\xcd\x9b\x37\x01\x00\xef\x7d\xef\x7b\x83\x9f\xfc\x1e\x03\x77\x4a\xc9\xe7\x12\xd3\x5d\x92\x44\x9c\xe7\x79\x9d\x5b\xb7\xf6\xae\x2b\x27\x57\x47\xcd\x7c\xe5\xca\xc9\x95\xbb\x49\x99\x39\xb7\x49\xdc\x52\xde\xe7\x01\x48\xbd\xbc\x37\x11\x61\xe5\x16\x4f\x19\x66\x7f\xf1\x17\x7f\xd1\x94\x26\xb7\x76\x8e\x50\x04\x09\x06\x90\x4e\xd8\x20\xd9\x10\xef\x91\x1e\x79\xaa\x2a\xf2\x63\x9d\x07\x4b\xfa\x95\xc4\x01\xfa\xe5\x74\x9b\x38\x28\xa1\x97\x39\x06\x48\x4a\x57\x08\x80\xe9\x38\xa7\x62\xff\xe5\xfa\xc3\x5d\xb2\x58\x12\xf7\x95\x44\x63\x39\xb7\x6e\x92\x0d\xa5\x59\x47\x14\x4c\xe6\x2f\x27\xfd\xd9\x74\x92\xf6\x00\x6e\xa6\xcc\xa1\xe7\xf3\xa4\x29\xf5\x63\x69\xd2\x0f\xe5\x5d\xf4\xcf\x71\x98\x45\x47\x00\x57\xb0\x36\xdc\x22\x4e\x90\xab\x48\xc4\x2a\xd2\x93\xd2\x30\x40\xa4\x61\x25\xd1\x48\x23\xc9\x94\x0a\xce\x17\xed\x24\xe2\xd8\xef\xe2\x26\x20\x42\x4a\x37\x64\x39\x94\xfa\x78\xf6\x5f\xe0\x9c\xb4\x39\x04\x10\xd8\x61\x1d\x16\xd2\xa3\x6e\x7e\x84\x43\x28\xc5\x89\xb7\xb1\x04\x0e\x71\x52\xda\xc2\xf9\x36\x09\x29\x41\xaf\xb9\x6e\x45\x8f\x17\x49\x73\x07\x5a\x0c\x6c\x07\x0a\x59\x82\x15\x13\x93\xa5\x8d\xf2\x12\x54\xed\xaf\xd5\xe2\x3e\x1f\xdb\x5d\xcc\xda\x30\xb8\x93\x06\xf9\x7e\x12\x1c\x14\x27\x7d\x92\xfe\xfa\xf8\xb9\x11\xd7\xb5\x35\xbd\xb7\xc8\xf7\xb9\xef\xcc\xcc\x27\x4f\xd2\x73\x2e\x20\xf5\xb2\x96\xd0\x34\x95\x6d\x98\xf4\xfd\x58\x1e\x20\xa6\xd7\x9b\xa8\x0b\x17\x4b\x0b\x6d\x8e\xde\x40\xc4\x95\xe9\xf4\xc2\x6c\x5e\x79\xe5\x95\xa0\xe6\x91\xcc\xa1\x94\x2e\xa8\x72\x72\x75\xd1\xfe\x5a\xd2\x5b\xa2\x29\xfa\x5d\xc7\xd7\x71\xcf\x4b\x03\x2d\xf2\x79\xc9\x75\x59\xd3\x64\x5d\xd7\x21\x26\x57\xc6\x5b\x07\x68\x74\x9a\x5c\x9f\xe5\xda\x21\xe3\x97\xca\x2b\xf5\x4b\x91\x56\x6b\x43\xb1\xdc\xe0\x28\x75\x52\xe2\x27\x55\x23\x1b\x10\x74\x0b\xc0\x7a\x0e\xc2\x63\x11\x4e\xe9\x24\x82\xe8\x1c\x03\x92\x10\xc9\x25\xb0\x20\xdd\x39\xe2\x2e\xf2\xf7\x04\x51\x2a\xd3\x25\xc3\xeb\x18\xd7\xc8\xb9\xc6\x14\x40\x38\x40\xaf\xec\x72\x13\x5b\x1c\x40\xe7\xfb\x60\xdd\xb3\x7f\x37\x99\x38\x72\x00\x6f\xe2\xd6\x49\x3f\x36\x0d\x2f\xc5\xd1\x75\x1c\x8a\xbb\x2e\xcf\xff\x8a\x34\x3f\x6b\xde\x45\x7f\x7d\x66\x8f\xf3\x2b\x8e\xfb\x8e\xa3\x47\xe3\x07\x71\xb7\x5e\xb9\x7f\xb3\x8b\x91\x5f\x6d\xe2\xc0\x75\xd0\x03\x01\xf8\x10\xe2\x20\x85\x97\x76\xa4\x79\xc4\x34\xee\x3d\xec\x54\xf2\xcf\x21\x23\x78\x03\x5b\x1f\x1e\x6a\x95\x70\x06\xbe\x9c\xb4\xc6\xdd\x1c\x8e\xf9\xf8\xf6\xc9\x9d\x30\xb2\x2e\xc9\x2d\x63\x3e\xad\xe3\x50\x92\x56\xb0\x2f\x52\xaa\x8b\xe2\x95\x07\x94\xf4\x45\x64\x72\x64\xd7\xc8\x4f\x12\xeb\x29\x9a\x66\x08\xfe\xfa\x0e\x46\x0f\x8c\x6a\xb5\x51\x70\xcf\x3d\xf7\x9c\xdc\xfd\x12\xe2\xcb\x71\x20\x9f\x5b\xc3\xcd\xb2\xb2\x0b\xa6\x38\x0e\x42\x17\xbb\x76\x45\x5a\x23\x7a\x38\x43\xc7\x12\xc6\x4e\xd0\x28\x52\x7d\x11\xc1\x4b\xec\x88\x5e\xfe\x2c\x7c\x92\x3a\xf9\xce\xef\xbe\x4a\x4b\x68\x56\x95\x5d\x9c\xd5\xbc\xb0\x05\xc2\xa7\xd5\xe4\x02\x48\xe4\xc0\x47\xee\x5d\xbb\xd2\x7a\x13\x9e\xdb\xb6\x45\x6e\xeb\xae\x52\xfd\xe4\xd6\x2e\xa8\xdf\x21\x1a\xbb\xae\x6e\xb9\xf8\xb9\x72\x74\x7c\x1d\x96\x03\x15\x43\xfd\x55\x7a\x2e\xd5\x23\x97\xf7\x50\x3b\x4b\x6d\xcb\x95\x3b\xd4\xde\x75\x71\x36\xed\xe3\x5e\xc5\x72\xc8\xb8\xf4\x61\x7a\xa0\xc5\x59\x20\x6f\xc8\x81\x32\x98\xc2\x8e\x9c\x14\x78\xe8\xe4\x3d\xb4\x92\xcb\x3f\x65\x5f\x35\xa7\x91\xa4\x52\xb4\x58\xb2\x66\xac\xf3\x51\x79\x6b\xee\xcd\x49\x5b\x92\x0e\x1d\x92\x34\x0d\xb8\x75\x28\x1e\xc8\x7f\xc0\xd2\xf7\xf9\xff\xca\xe9\xba\x9e\x47\xf4\xf7\xff\x17\xf7\x5f\xd6\x5f\x43\x63\x9f\x0d\x59\x26\x2c\x55\x8a\xe4\x27\x65\xb5\xbb\x41\x99\xaa\x05\xc4\x82\x0b\x3f\x5e\xe5\xca\x2c\x65\x0c\xf1\x9d\x59\xac\x46\x94\x86\xa6\x6f\xfe\x9e\x1f\x95\x07\xc5\x49\x95\x00\x78\x25\x01\x4a\x24\x2d\x9c\x42\x26\x59\x7d\xf6\xdc\x83\xfc\x13\x0b\x6e\x28\x8e\xd5\x62\x1c\x1b\x0e\x12\x5b\x9b\xfd\x75\x20\xb1\x19\x1c\xe3\x52\xea\x5f\xf8\x42\xdd\xbd\x63\x86\xce\x40\xe7\x1b\xc3\x05\xf5\x6f\xd6\x2d\x2b\x5e\x9e\x8e\xec\x71\x4b\xbc\xd4\xe0\x4c\xfc\x84\x36\xca\x4f\x96\xb1\xa5\x4d\xa4\xcb\xd2\xcf\xf7\xaf\x4c\x97\x05\x2d\x2a\x2c\xd0\xcd\x10\x47\x94\xc2\x80\x35\xbc\x5c\x8c\xec\xe1\xe9\xc8\xf6\x80\xcb\x06\x74\xcf\x8a\xbf\x92\x2b\x49\x36\x7c\x7a\xf9\xbb\xce\x0d\xd1\xa6\xd2\x62\x38\x04\x2e\xb4\x3b\x0f\xe3\x56\x72\x43\x92\x96\x52\x19\xb9\xba\xaf\x93\x5c\x94\xca\x2c\xb9\x92\x84\xa6\x08\x22\x36\xcc\x77\x13\xb7\xee\x9b\xf5\x22\x0e\xa1\x38\x0d\x66\xb2\x08\xad\x70\x9e\x45\xef\x9d\xe1\x0e\x6e\xcb\x10\x09\x46\x14\x80\xf8\xf7\x1c\xb1\x55\xc2\xd9\x30\xd7\x8b\x18\x47\x04\x32\x21\xe1\x6c\x18\x29\x61\xc8\xad\x15\xee\x9c\x2f\x91\x35\xf9\x83\xf4\xd2\x9a\x24\xdc\xdc\xe0\x64\x1e\xfa\x40\xeb\x90\x72\x2e\x8f\xa1\xb0\x12\x31\xc8\x89\xee\x34\xf1\xc8\x01\x29\x5d\x77\x1d\x3f\x57\x97\x75\x75\x58\xf7\xbc\x4e\xcc\xba\x2e\xac\x14\x9e\xe3\x08\xd7\xd6\x41\x9c\xd5\x91\x48\x5f\x72\x8e\x01\x6b\x2b\xb2\xd6\xd0\xc2\x8d\xfd\x04\x14\xc7\x73\x48\xc4\x38\x96\x1c\xb3\xc8\x48\x3a\x42\xb7\x43\xc6\xe3\x12\xee\x45\xed\x1f\xe5\x1f\x8f\x55\x49\x41\x88\x17\x43\x76\xd2\xd2\x08\x5e\xb4\x8a\x95\x72\x73\x31\x6e\xd3\x09\x15\xf1\xc7\x17\xb0\xcc\xc4\x4b\x49\x48\x4a\x5b\xe2\x96\x70\x4e\xf4\x24\x10\xcc\x83\xec\x90\x58\x57\x5f\x09\x92\x6d\xf0\x59\x30\x3b\x70\x23\x57\x7c\x21\xcd\x71\x86\x33\xbe\x3d\xb6\xa2\xc6\x56\x68\x62\x53\xfc\x82\x1d\xef\x22\xf3\xea\x23\x79\x8e\x8b\x8c\xab\xd2\x75\x55\xa2\x70\x53\xbc\x3d\xab\xed\xe2\x70\xda\x1c\x2e\x2b\x3e\xf6\xf5\x95\xf4\x2d\x60\x2c\x42\x9e\x81\x83\xfc\x92\x08\xfd\xad\xc1\x61\x38\xe7\x2a\x30\x64\x69\x36\x04\xf1\xa9\xd8\xb1\x6b\x0a\x14\xc7\xfc\xe2\x4e\xcd\x95\xe1\xf9\xc9\xa8\x3d\x38\x1d\xb5\x0b\x46\x1c\xf3\x42\x3d\x94\xf4\x55\x01\xc8\xeb\x39\xa9\x99\x61\xef\x34\x13\x96\x9b\xbf\x32\xed\x26\x34\xa6\x44\x2f\x4b\xcc\xe2\x50\x7c\x99\x2e\x57\xd7\x52\x7e\x3d\xa6\x1f\xfd\x7e\xd0\x65\xe7\x68\x72\xae\xaf\x74\xde\xb9\xfa\x0d\xf9\xe7\xda\x59\xea\xdb\x5c\x58\x4e\x5a\xa4\xcb\xd4\xed\xd1\x6e\x1d\x38\x0a\x7f\x9b\x7e\x64\x99\x61\xee\x63\xe5\x8d\x6f\x95\xbe\x97\x88\xdc\x05\x85\x80\x1c\xfc\x21\x1c\x3d\xda\x05\xcf\x7a\xb1\x60\xe9\x34\x3d\x4f\x98\xb7\xd2\x36\xc6\x20\x3a\x47\xc2\x7d\x75\x13\x33\x12\x01\x3f\xb1\x13\xee\xb2\x4f\x4c\x0c\x21\x48\x5d\xb2\x2e\xd7\x1f\xce\xc6\x05\x28\x7f\xa0\xa1\x81\xa0\xfd\x86\xb8\x90\x4d\xfc\x72\xe2\x3f\x8d\xb0\x73\x40\x2a\x27\x66\x85\x0a\xd3\xe5\x6c\xc2\xb9\x0c\xc5\x19\xca\xbb\x94\x76\x93\x7a\x0d\x95\x9d\x03\x94\x16\x48\xc1\x0a\x51\x7e\x0c\x04\x3b\x09\x02\xda\x1a\x4b\x3b\xa2\xb9\x14\xf5\xfb\xa7\x04\x5e\x04\x55\xab\xe2\x8a\xb5\x0b\x12\x04\x4a\xbc\x7c\x92\x54\x66\x22\xf8\x6c\x42\xdc\x0a\x2b\x19\x04\x4e\x9f\xbd\xc4\x23\x0e\x61\x2d\xad\x08\x77\x33\x47\x70\x4f\x14\xa5\x40\x3e\xfb\x6e\x72\x21\x48\x34\xb5\xe4\x20\x26\x0e\xea\xa2\x20\x20\x0a\x38\x48\xa3\x98\x58\x87\x64\xf2\x87\xbc\x29\x00\xc1\x80\xec\xe4\x76\xee\xd0\x2b\xae\x3c\x42\x63\x2b\x5a\xb4\x35\x2d\xd8\x31\x53\x52\xe5\x41\xe2\x2e\x32\xef\xef\x25\x2d\x5e\x55\xa4\xcf\x6d\x12\xaa\x22\x7f\x4c\x82\x3d\x1d\xd9\xe5\xfd\xd9\xea\xad\xd3\x51\x7b\xd7\x82\x1b\xf9\x09\x08\x51\xde\xeb\xa5\x26\xd2\xd8\xd6\x33\x4e\x92\xc9\x92\xe0\xb0\xcf\xb8\xc5\x6f\x20\xba\x46\x0b\x59\x62\xff\xa7\xd8\x32\x76\x6f\xf0\x67\x2c\x46\xf6\xf0\x68\xda\xde\x5d\x8c\xec\x82\xd2\xcb\x64\xe5\xe5\x84\x3d\x3b\x17\xe5\x24\xcd\xd1\xcf\x40\x7e\x4e\xe6\x18\x0c\x19\x67\x88\x46\xe9\x32\x65\x1e\xb9\xba\xc8\x72\xd7\x2d\xc4\xb9\x36\xc8\x67\xab\xe2\xeb\xb4\xb9\xf2\x72\xb4\x2e\x47\x93\x35\x70\xc8\x09\x14\x72\x7e\xa5\xb8\xb9\x75\x5f\xd7\x27\x97\xb7\x7e\xf6\xae\x54\xa6\xae\x97\x8c\x2f\x7f\x87\x80\xab\x05\x60\x87\x38\xd5\xd2\x7b\xee\x83\xe4\xc2\x01\xf4\x17\x70\x27\x55\xc9\x2e\x52\x29\x77\xa0\x08\x2e\x21\x10\x9b\x24\x7f\x95\x47\xdc\xaa\x29\xf2\x75\x04\x34\x10\xf7\x44\xf1\xdd\xe5\x42\xc9\x7b\x4a\xa8\x3d\x20\x4a\xea\xe7\xee\x1b\x39\x8f\x7a\x48\xd9\xb8\x00\x79\x30\x31\x84\x3a\xd7\xb9\xa1\x05\x78\xdd\xb7\x5a\xc7\x69\x94\x80\x45\xc9\xad\x1d\x1b\x03\xee\x3c\x65\x9d\xb7\x9f\x86\xe2\x9f\xb7\x8d\xc1\x65\x8c\x34\xc3\x19\x3f\xd6\x50\xd3\x8c\xe8\x20\xc9\x3f\x2c\x40\xdd\x4b\x50\xa1\x78\xe9\x43\x9a\x9b\x93\x84\x38\x49\x41\xe7\x25\x56\x96\x8c\xbc\x25\x91\xc4\xf8\x7f\x05\x1a\x29\x0c\x5b\x0f\xa0\xf0\xff\xb2\xf7\xae\x4f\x72\x5d\xd7\x7d\xe8\x6f\xed\x73\xfa\x74\x4f\xcf\x03\x03\x60\x38\x00\x41\x10\x84\xa8\x17\x25\xcb\x92\x2e\x29\x59\x26\xa3\xc4\x92\x6c\x39\xb2\xa3\xeb\x9b\xba\x29\xe7\x53\xae\xed\x4a\x15\xf1\x47\x81\x79\xd9\x4e\x4a\xce\xc3\x55\xa9\xbc\x6e\xca\xa9\x4a\x94\x5b\xb6\xa4\x28\x26\x43\xd3\x14\x45\x40\x22\x05\x92\x00\x01\x0c\x66\x06\x83\x9e\x9e\x9e\xee\xd3\xe7\xec\x75\x3f\x9c\xfd\x58\x7b\x9f\x7d\xba\x1b\x94\xfd\xe1\x56\xdd\x5d\x35\xd3\xe7\xb1\xdf\x67\xaf\xb5\x7e\x6b\xad\xfd\x20\x91\x6d\xf4\x2b\x61\x7f\x43\x17\x6c\x40\x97\x7d\x3d\x2b\xd3\x27\x00\x00\x20\x00\x49\x44\x41\x54\x26\xe2\x4b\xf3\x91\xa9\x0f\x05\xef\xc3\xba\xc4\x16\x01\xff\x50\x36\x51\xa8\x35\x36\xbd\xc7\x40\x51\x4f\x08\xbe\x21\xca\x22\x18\x5c\xa3\x50\xd6\x3d\x4c\xea\x9c\x4a\x50\x6b\x2f\x90\x56\x90\xdf\x26\x72\x15\x69\xc0\x1f\xf0\x27\xf2\xd0\x00\x74\xa5\x74\x39\xea\xd7\xa3\x47\x6b\xd5\xbd\x3a\xe3\xa9\xcb\x4b\x98\x00\x24\x40\xdb\xbf\x5d\xbc\x6e\x66\x77\x18\x87\x1f\x17\xc6\x3d\x46\x24\x9b\xc1\x02\x8f\xb1\x7b\xe1\xce\x65\x63\x59\x46\xa4\xd8\x09\xdc\x17\x18\xad\xac\xd5\x44\x1c\xf6\x59\x2b\x9e\x9e\x14\xd5\xe1\xd1\x5a\xf5\x60\x96\xeb\x72\x51\xff\xa4\x56\x94\x76\x84\x65\x72\x26\x15\x16\xd1\xe7\xaa\xef\x56\xb9\x4e\xd5\xa9\x4b\xde\x75\x85\x2e\xb9\xb9\x28\xee\xe3\xa4\x69\x8d\xd3\x2f\x7c\xe1\x0b\xad\x48\xf2\x59\xd7\xf5\xd6\xd6\x96\xcc\x73\x99\x1c\x58\xb5\x7e\x3f\x6f\xfc\xd4\xb7\x71\xcf\xe2\xc9\xb9\x8f\xa3\x99\x06\x26\x2b\x83\xb4\x83\x3d\x2d\x16\x55\x8a\xad\xf6\x8a\xf0\x38\x44\x6f\x15\x11\xbb\x66\xfa\xfc\x1d\x91\x49\xed\x20\xb8\xb6\x4c\xd2\x04\xab\xb9\x52\x32\x9d\xdc\x95\xd7\x47\x24\xb1\x3a\xa2\xad\x9d\x30\xfc\xe9\xd6\xcd\xc7\x35\x6d\x56\x5d\x26\x52\xb9\xaa\x28\x02\x2f\xb1\xd9\x2f\x46\xb5\xf1\xfb\x38\xa4\x4c\x8f\x5d\x71\x52\x1a\x4c\x2a\x2c\xcb\x67\x91\x69\x70\x15\xe2\x4c\xb5\xb7\xab\x1d\xa9\x3c\xe3\xb8\x5d\xed\xea\xd2\x72\x56\x21\x9e\x54\x5a\x17\x48\x6c\x3d\x6e\xe3\x50\x74\xb2\xac\xff\x23\x0d\x62\x5d\x15\x34\x62\x85\x8a\x34\x9c\x80\x17\x39\xc2\x1e\x6f\x91\x9e\x8b\x61\xad\x0e\x7e\x0c\x36\x40\x20\xe1\x0e\x42\x2c\x38\xfc\xc0\xf7\xfb\xbb\x84\x02\x9e\x5a\x84\x44\x41\xd2\xd8\xdc\x18\xdf\x79\xb1\xeb\x8f\xe5\x70\xc9\x58\xd0\x97\xa5\xa7\x80\xd0\x45\xd9\x96\xfe\x64\xce\x71\x33\x8c\x60\xb6\xe8\xc8\xef\x14\x1c\xb6\x83\x44\x19\x76\xc5\x92\xb3\x04\x90\xb0\xae\x2a\x2a\xeb\x1e\x8d\x75\x8e\x12\x44\x9a\x22\x7e\x67\x68\xd7\x3d\x93\xf4\x9d\xd8\x39\xd7\x9d\x92\x6c\xad\x2d\xf6\x17\x44\x7a\xda\xd3\xe3\xc3\xf5\xea\xde\x53\x8f\xf4\xa8\x57\xd3\x86\xb7\xcc\x18\x40\x12\xb5\xc1\xed\x3a\x6c\xda\x29\x17\x32\xc8\x4e\x71\x93\x8e\xa3\xfe\x94\xe3\xac\x89\x23\xf8\x93\xe8\x1f\x8e\xf8\x9c\xe4\xb5\xcc\x40\x99\xf1\xe4\xd1\xa0\xbe\x37\x1a\x54\x87\xb5\x42\x09\xf8\x93\x95\xc5\xb5\xe5\x73\x9a\xda\xbb\xd4\x26\xad\xf4\x48\xd3\xe2\x2a\x34\xef\xc2\x27\x3f\xf9\x49\xf5\x93\x9f\xfc\x44\xdb\x5f\xf1\x1c\x3f\xf9\xc9\x4f\x5c\x1c\x00\x30\xef\x17\xf1\xb1\x45\x9e\x86\x18\xac\xa5\x9e\xad\x1a\x16\xb5\x71\x51\x1c\x6c\x6d\x6d\xa9\xd1\x68\xd4\x6a\x2f\x00\x7c\xe5\x2b\x5f\x91\x56\x7d\xf9\xdc\xca\x29\xfc\xd2\x2f\xfd\x92\x93\xcf\x7f\xf1\x17\x7f\x01\x00\x18\x8d\x46\x2e\x9f\xdd\xdd\x5d\xec\xed\xed\x21\x51\x76\x0c\x6a\x56\xf9\xc6\x8b\x78\x72\x2a\xc4\x4a\x76\x4b\x31\xb0\xcf\x72\x11\x71\x55\x86\xbe\x30\x5e\xbc\xf1\x9a\x05\x34\xf6\x9a\xc1\x5a\x13\x6b\x67\xc5\xb5\x08\x1d\x11\xa8\x70\xda\x5b\x78\xde\x84\xa5\xf0\xa0\x9c\x58\xbb\x64\x3f\x43\xdf\x6b\x48\x14\x10\x68\xb0\x59\x9c\xb8\x17\xca\x61\x38\xdf\xc6\x98\xe6\x1b\x6b\x8d\xdd\x6d\x33\xb9\xea\xc0\x2d\x0d\x8f\xb5\x0f\xb1\xe5\x7f\x0b\x41\x8a\xfb\xc7\x11\xb2\x71\xbc\x54\xda\x55\x81\xc2\x22\x26\xb2\x2c\x5e\x57\x5b\x16\xdd\xa7\xea\xbf\x6a\x9a\xc7\x2d\x6f\x59\xdd\xbb\xca\x48\x7e\x03\x0b\x5a\xc4\x18\x0a\x18\x61\xf8\x9c\x35\x13\xf4\x7c\x40\x47\xac\x68\x0a\xf0\xb0\x11\x6e\x00\x1c\x60\xb7\x5a\xb1\x11\xfb\x66\x3f\x14\xbb\x09\x98\xd3\x8e\x25\x90\x10\x3e\x1d\xb9\x42\xc8\x6b\xe2\x16\xa4\xf8\xd5\x3d\x9e\x14\xe4\x0a\x23\x93\x3f\xc9\x8d\xeb\xac\x70\x37\x87\x29\x1a\x80\xd4\x58\x4b\x48\x58\x4e\xd8\x11\x6c\x53\x7d\x09\xdc\x7d\x19\xd6\xc2\xc2\x82\x36\x4d\x74\xdf\x1c\xc0\xd1\x9f\x15\xba\x9e\x72\x7d\x7c\xaf\x80\xc4\x2b\x93\x10\x09\x5c\xdb\x06\x2b\xd0\xad\x25\x88\xc4\x5c\x1f\x86\x56\x34\xad\x7b\x34\xd1\x39\x95\xd6\xe5\x01\x21\x90\x5a\x16\xe3\xc4\x9c\x16\xa9\xb0\x59\x81\x1e\xfd\x56\x00\xaa\x69\xae\x27\x0f\xd6\xcb\x7b\x27\xfd\xb5\xbd\xb5\x79\xb6\xab\x18\xb9\xc5\x16\x2c\xda\x1c\xf3\x1e\x3f\x2e\x4c\x1f\x0a\x55\x4f\x18\x9f\x02\xfe\xe9\x5c\x6f\xee\x01\x1b\x65\x50\xf0\x5a\x37\x26\x3c\xe8\x04\xc8\x7f\x07\x00\x4c\xac\x4f\x7b\x7a\xff\x68\x58\xed\x9d\x14\xf5\xd8\xf4\x8b\x3c\xc4\xcf\x8e\xf7\x14\x60\xb1\x21\x56\xc6\xe4\xf5\x22\x1e\x88\xcb\x97\x2f\xe3\xf6\xed\xdb\x49\xfa\xb5\xc0\xf1\xeb\x5f\xff\xba\x02\x80\xaf\x7d\xed\x6b\xc1\x46\x90\xf6\xb9\xdd\xa8\xee\xd7\x7f\xfd\xd7\xd5\x9f\xfc\xc9\x9f\x74\xf1\x82\x45\xfc\x76\x15\x9e\x9a\xca\xb3\x2b\xaf\x45\xcf\xba\x00\x91\x06\x3c\xc8\xf8\xfa\xd7\xbf\xee\xda\x17\x05\x65\xc6\x71\xeb\x9d\xf9\x3e\xae\xff\xa3\x03\x42\xf1\xca\x2b\xaf\xe8\xbd\xbd\xbd\xae\x36\x74\xf5\x4f\xca\xe5\xd5\x05\x50\x52\x3c\x39\x95\x4f\x0a\xe4\x06\x69\xba\x0e\x59\x8c\x23\xa6\xfc\x4d\xb1\x16\xba\xca\xb5\x16\xa7\xdb\xeb\x98\x39\xd9\x15\x04\x81\x32\x16\x68\x00\xf6\x60\x39\x72\xd6\x12\x73\xeb\xf2\xb0\x37\x2c\xee\xd9\x67\xe5\xdf\x51\x08\x64\x3c\xd3\xf4\x0f\x25\x98\xb2\x0c\xc6\x5e\x2b\x26\xa5\x18\x49\x2b\xcb\x12\x8b\xd3\x22\x54\x69\xef\xbb\x10\x6d\x57\xfc\xf8\x7a\xa1\xe0\xfd\x39\xe2\x2d\x8a\xbb\x92\xc6\xf0\x98\x69\x7e\x5e\x40\xbd\xcc\xa2\xb3\x2c\x2c\x64\x6e\xaf\xbc\xf2\x8a\xbe\x76\xed\x5a\x6a\x09\xac\x60\x3c\x8d\xc5\xa5\x5c\x53\x0f\x6b\x85\x69\x86\xf6\xd8\x93\xa8\xa4\xfd\x1f\x0e\x44\x04\x87\x2c\x4a\x8b\x8a\x10\xcc\x8d\x30\x12\xda\x77\x60\x5a\x09\x93\xfb\x7a\x8b\xf3\x86\xa4\x95\x03\x42\xb8\x09\x22\x63\x81\x38\x3c\xb5\x89\x64\x26\x7e\xec\x95\x72\xca\x87\x11\xa0\x10\x42\x53\x46\xf4\x75\x93\x6d\x09\x95\x14\xdb\x1f\x4e\x00\xc3\x0a\x6b\x6f\xd6\x21\x91\xbd\x54\x4c\x6c\x5d\x19\x04\x9d\x61\x52\xe7\x34\xd6\xc6\x92\x20\xfe\x60\xaf\x17\x2d\x75\x4f\x29\x6a\xe2\xb9\x26\xa2\xca\xfe\xce\x33\x9e\x1e\x0c\xe7\x0f\xf6\x36\xca\x77\xb7\x4e\xf3\xab\x83\x0a\xdb\x0e\x80\x49\x1e\xe6\x26\xde\x86\x6d\xb1\xc0\x91\x45\x33\xa5\xad\xda\xba\x88\x9c\x45\x8a\x48\x9c\xe7\x14\x7d\x57\xf9\xa9\xa9\x9d\xce\x82\xd0\x32\xe3\xc9\xe1\x70\xfe\xe1\xfe\xfa\xfc\xce\xb4\xa7\xa7\xf0\xa7\x2b\x57\x40\x60\x79\x09\xc2\xf5\xeb\xd7\xe5\x21\x8b\x5d\x16\x17\x1b\x02\xfa\xcc\xf3\x1c\x55\x55\x01\x00\x7e\xe3\x37\x7e\x03\x68\x2c\x9a\x9d\xf3\x67\x84\x95\x3f\xa9\xc8\x49\x1a\xb5\xc2\x3a\xde\x75\xf7\xfc\xf9\xf3\x38\x38\x38\x88\xeb\x13\x5f\xa7\xde\xaf\xf2\xfc\x71\x42\x92\xff\x7d\xe3\x1b\xdf\x50\x1f\xff\xf8\xc7\x83\xf6\xb3\xd9\xec\x30\xe2\x3d\x36\x1d\x80\xee\xe5\xf9\x68\x7f\x0b\x07\x64\x80\xf4\x19\x48\x51\x58\x66\x3d\x59\x66\x45\x8f\x9f\xcb\xf1\xb1\xc8\x6a\x03\x20\x74\x15\x7d\x14\x73\x58\xab\x52\xf1\xe0\x92\x66\xd4\xe6\x01\x34\x08\x15\x37\xda\xa8\xd7\x9b\x04\xff\x22\x44\x16\x11\xc1\x70\x9a\xa8\xd2\x85\x04\xc4\x27\xdd\x86\xa7\x42\x87\x93\x18\x65\x59\x52\xc3\x31\x5c\x21\x60\x50\xe1\x69\xd4\x86\x79\x34\x4a\xa6\x52\x8c\x9c\x98\x02\x17\x51\x84\x72\x2d\xf2\x4d\xf5\x59\xd8\x27\xed\xfe\x5c\xf6\x61\x53\x21\x26\x36\x99\x66\x15\x70\xb0\xaa\x90\x4f\x32\x87\x25\x75\x59\x84\xc2\xe3\xfa\xca\x34\xa9\xb2\xba\xe2\xa5\xea\x12\x03\xaf\xc7\x69\x67\xaa\x0d\x49\x3a\x48\x81\x16\x67\x36\x47\xa3\x71\x97\x43\x35\xae\x7b\x74\xc4\x33\xbe\xd8\x58\xea\x00\x80\x8d\x20\x92\x02\x06\x42\xed\xb6\x03\x95\x03\xfa\x08\x88\x41\x62\x14\x57\x1f\xf1\x6b\x8d\x22\x4e\xd3\x96\xae\x1c\x7f\xb6\x4f\x63\xd5\xb1\x60\xc3\xd2\x0e\x05\xbb\x50\x93\xa9\x93\x3b\x34\xd1\xd4\xd9\xe5\x61\xab\x27\xea\x14\x58\x45\xc1\x51\x9d\x84\xd0\x15\xc2\x52\xa2\x11\x8a\xdb\xec\x24\xb8\x48\x67\x6b\x6c\x2d\x40\x92\x41\x87\x3f\x01\x30\x00\x41\xd7\x3d\x35\xaa\x0a\x1a\xeb\x8c\x2a\x39\xd1\x14\xe6\x5b\xa7\x40\xcb\xcb\x2f\xbf\xac\xaa\xaa\x72\xc0\x55\x08\x55\xab\xe9\x06\xae\x22\x78\x41\x5f\x9e\x16\x7a\x74\xeb\xec\xe9\xcd\x0b\xc7\xc5\x73\xfd\x93\xde\x16\x31\xab\xe0\xe4\x6b\xf9\x3d\x48\x02\x96\xf0\x23\x3b\xdc\x47\xc6\x82\xe4\xfa\x41\x5a\xa2\x65\x07\x0a\x9c\x68\xbe\x91\xb4\x6c\xf9\xd5\x59\x02\x20\x80\x31\xee\xd7\x7b\xf7\xb6\xca\x77\x0f\x87\xf3\xbd\x8a\x78\x0a\x46\x0c\x58\x5c\x7f\x49\xde\xff\xf2\xcb\x2f\xab\xb7\xdf\x7e\x1b\x58\x0c\x5a\x02\x7a\xb2\x80\xe5\xa9\xa7\x9e\xc2\xdf\xfe\xdb\x7f\xdb\xc5\x97\x2b\xba\x58\x1c\x9f\x11\x7f\x1b\x92\x27\xb2\x7b\x19\xd4\x8a\xcf\xcc\x81\x90\x06\x1a\x41\x7d\xf9\xf2\x65\x75\xfb\xf6\x6d\x9d\x65\x19\xea\xba\x5e\x45\x30\xdb\xf7\x5d\x8a\xfd\x22\x5e\x1b\xf7\x43\x97\x7b\x24\x5e\xc5\x16\x80\x38\x9b\x2e\x92\x97\xc9\xb3\xb6\x84\xac\xd2\x22\x3f\x67\x31\x14\x69\xb4\x2d\xd3\xce\xe3\x1a\x0e\x87\xf6\xac\xa3\x54\x9b\x52\xed\x4d\x01\xd6\x94\x4c\xe8\xea\xdf\x14\x90\xf1\xe0\x36\x8a\xdc\x25\x70\x16\x69\xff\xea\xc5\x17\x5f\xb4\x9d\xe0\x4c\x54\x2d\xc0\x62\x02\x03\xd0\x86\x73\x85\xb3\x5b\xc2\xe0\xd2\x0b\xcd\xc0\xaf\x0b\x92\x83\x15\x10\x64\x17\xb8\x9f\xec\x9b\xf6\x00\xf7\xec\x9b\x7c\x44\x04\x1b\x5a\x45\x65\x4b\x65\x84\x18\x79\xae\xa9\xc8\x34\xe5\x88\xca\x4b\xb6\x21\x0c\x8b\x90\x6c\x4a\xe8\x76\xbd\xef\x12\xd2\xab\x5e\x77\x81\x83\xf8\x77\x59\x48\xc5\x5f\x04\x1e\x96\xa5\x5d\xb5\x5d\xab\xdc\xa7\xc2\x2a\xa0\x25\x8e\xb7\x52\x5f\xb4\xac\x8b\xcc\xda\x4c\xae\xd4\xe5\x9a\x1a\x55\x7d\xda\xc3\x04\xcf\x72\x6d\x5c\x04\xf0\xa6\xfb\x80\x04\x82\xf3\x77\xe0\x04\xb5\x63\xbc\x12\xe8\x04\xfe\x01\xa1\x30\x37\x48\xc4\x5b\x04\x9c\x45\xa6\x19\xc0\x12\xda\x87\xe0\xc1\xe4\x23\xa9\x33\xa8\x86\xc9\xcf\xb9\x1d\xd8\xd3\x18\x24\xf8\xf1\x02\xd1\x2a\x17\x91\xff\x43\x58\x4c\xe4\xaf\x17\xa3\x6e\x97\x59\xb2\xed\x37\x35\x35\xe5\xb6\xda\xef\xca\x82\x77\x15\x31\xc2\x32\x6c\x47\x01\xd0\x0a\xe5\x7c\x40\x87\xf3\x3e\x3d\x64\x45\x6e\xee\x86\x5c\x31\x23\x41\x89\xfd\xc6\xf1\x21\x76\x91\x60\x71\x2b\x89\x00\x54\x44\x64\x5d\x2a\x25\x80\xb2\xcc\x78\x72\x77\xab\xbc\x7b\xfb\xcc\xf4\xcd\xad\x69\x76\xb9\x5f\xa9\x2d\x16\xa6\x66\x07\x32\x65\x57\x45\x86\x30\x7f\x8a\xb6\x7f\x21\xf7\xbb\x89\x81\x4f\x3c\xac\xc0\x51\x7c\x84\x18\xc7\x7e\x87\x32\xe3\xf1\xde\xc6\xfc\xdd\x0f\xb7\xca\xf7\xc6\x8d\x9b\xa8\x24\xa2\xd2\xb4\x45\x9b\x76\x39\xfa\x08\x14\x4d\xe6\xf8\x74\xe8\x58\xf9\x80\xb8\xd7\x44\xa4\xaa\xaa\x8a\x01\x45\x2c\x4b\x62\x8b\x82\x7d\x96\x54\xe8\x48\x4c\x51\x10\x40\x46\x53\x7b\x3e\xa2\x16\x96\x18\x7c\xfc\xe3\x1f\xc7\xcd\x9b\x37\x57\xe5\x35\x8f\x63\x7d\xe9\xe2\x85\x2e\x2e\x89\xf9\x73\xd1\x06\x87\x41\xbf\x08\x65\x29\x75\x9d\x9c\x67\x2a\xc6\xb1\x12\x7d\x01\x53\x6e\xf0\xde\xd6\x33\xb2\xc2\x04\xfd\x18\xd5\xbd\xab\xbd\x5d\x4a\xee\xa2\xfe\x89\xef\x5b\xf2\x29\xd6\xfe\x1f\x47\xe0\xb8\xf7\xdf\xff\xfe\xf7\x17\x99\x53\x83\x41\xa5\x09\xba\x56\x28\x35\x35\x4b\x02\x59\x50\x4f\x68\x55\x41\xf0\x5c\x18\x4f\xbd\xb6\x61\x22\x06\x0a\x28\x45\xe9\x45\x3a\x97\x84\xbd\x26\xd3\xca\x87\xba\xd3\x79\xed\x8f\x54\xa6\xa9\xc8\x98\xe4\x1c\xa1\xa0\x9d\x56\x4b\xb0\xd7\x40\x6b\xcb\x7f\xc4\x69\xc4\x7d\x2b\xbf\x44\x7c\x9d\x88\xa7\x12\xcf\x96\xa5\x8f\xaf\xbb\xd2\xc9\xba\xa5\xe2\x77\xb5\x6b\x51\x7b\x53\xf9\xa7\xd0\x7c\x1c\x2f\x46\xe2\x5d\xed\xee\xea\xc3\x58\x2b\x48\xd5\x63\x95\x7a\x4b\xb3\xb5\x15\x78\xee\xda\x08\xb0\xc6\xb4\x9e\xa1\x9a\xad\xab\xdb\x3a\xc3\x54\xa6\xf7\x67\x65\x89\x81\xc7\xd1\x20\x16\xcc\xc5\x14\x6a\xa5\x73\x98\xcc\x46\xe5\x66\xec\x52\x94\x8e\x1c\xe1\xc4\x0b\xa9\x7d\xf9\x5e\xb1\x17\x69\xa4\xb8\x77\xe0\x27\x04\x01\x76\xfe\x97\xa4\x18\x32\x0d\x24\x8f\x36\x7c\x01\xa6\xee\x64\xae\xbd\x50\xb6\xbb\xed\x46\xfc\x44\x00\x32\x59\x6e\x90\xa7\xcc\x2f\xb6\xf2\x40\x76\x55\x53\xb6\xce\x69\x5c\x0e\xd4\x61\xd5\xa7\xb1\xa6\xf0\x84\xe1\x94\x79\xdd\x7e\xeb\xe7\x9f\x7f\x5e\x01\x50\x1f\x13\xe7\xe4\x90\x9f\xd3\x02\x99\x0f\x37\xfb\x9b\x38\x8b\x0b\x83\xa7\xd3\x9e\x1e\xbd\x7d\xe1\xf4\x47\x07\xeb\xd5\x4f\x2d\x1f\x74\xdd\x1c\x63\x3b\xeb\x32\x93\xcf\xa4\xb6\x65\xeb\x65\xf9\x64\xdc\x17\x32\x48\x80\x4b\xbe\x3d\x8e\xef\x89\x42\x18\xd0\x0f\xd7\xe6\xb7\xde\x3f\x3b\xbd\x79\xb4\x36\xdf\xd3\xc4\x53\x0b\x5a\x98\xd9\xfe\x4a\x3a\x72\x7f\xcc\x8c\xff\xf5\xbf\xfe\x97\xcd\x2a\xa6\xa3\x16\x80\xf9\xea\x57\xbf\xaa\x98\x59\xbf\xfc\xf2\xcb\x5d\xa7\x72\x3b\x9a\x34\x16\x17\xc5\xcc\x39\x33\xe7\x30\x27\x55\xcb\x3f\x19\x07\x8d\x10\xcf\x85\xa5\xa6\x05\x5a\xe4\xf3\x97\x5f\x7e\x59\x7d\xed\x6b\x5f\xeb\x3a\xeb\x28\xc5\x2f\x25\x1f\x8e\xf9\xd8\xb2\x38\xf6\x5a\x03\x50\xeb\xeb\xeb\x72\xd2\x7f\x60\x61\x32\xf2\x44\xb6\x4d\x01\xc8\x89\x28\x97\xbf\xf6\xcf\xf4\x4f\x61\xaf\x01\x14\xa6\x1f\x0a\x7b\x2d\xde\xd9\x5f\x9b\x37\x4c\x99\x2d\xbe\xc7\xcc\xfa\x99\x67\x9e\x49\xf1\xc8\x2e\xab\x91\xec\xc3\x2e\x7e\x1b\xf7\x0f\xa2\xfb\x96\x4c\x58\x24\x1c\x97\x09\x32\x17\x5e\x7c\xf1\xc5\x60\x3f\x83\x28\x38\xd4\x0b\x00\x6c\xce\xec\x30\x67\xb7\xf8\x7d\x25\x10\x29\x9d\x4d\x6c\x77\x1d\x68\x1b\x4d\x86\x26\x3f\x91\x8e\x3d\xe1\x06\x44\x1b\x11\xa5\xcb\xd7\xf2\x7d\x16\x5a\x9c\x80\x33\xf1\xc9\xab\xcd\x1b\x86\x02\x54\xa6\xa9\xc8\x35\x0a\xc5\xde\xdd\x26\x4d\x93\xc6\x75\x04\x7b\x0d\xb8\xc9\xb9\xab\x20\xce\xc7\x41\xf0\x5d\xa8\x34\xf5\xfd\x62\xa6\xb1\x0c\xb0\xa4\xca\xe9\xaa\xe3\xe3\x5a\x7c\xba\xf2\x8f\x9f\xa7\xc0\x75\xaa\x2e\xa9\x3c\x96\x59\xad\x52\xf5\x8b\xf3\x5c\x54\xef\x94\x36\x68\x35\xa7\x40\x23\xd5\x84\xf2\x74\x33\xbb\x57\xe7\x34\x46\xbc\x1d\x00\x45\x03\x34\x38\x74\xd1\xda\xf6\xe3\xf8\x3e\x9d\x1b\xf3\xd1\xe0\x6f\x91\xa3\xc3\x27\x7e\x8c\x87\x73\x67\xc2\x77\x3e\x9d\x15\x70\x1e\x28\xb5\xb2\xb6\x59\x90\x58\x0e\x6d\xf2\xb6\xb8\x8c\xa3\x36\xc8\x5a\xb8\xe8\x3e\x02\x98\x4d\x99\xb6\x56\xd6\x52\xc0\x22\x72\x8c\xf9\x0c\xb4\xf1\x65\x99\x6b\x16\xb4\x6d\xfa\xaf\xee\xe1\x68\x3e\xa0\xc3\xba\x47\x53\x0b\x30\x89\xbc\xcb\x08\xd1\xb8\x32\xcf\xf1\xda\x6b\xaf\x69\x00\xfa\xbd\xf7\xde\x33\x4d\x69\x6b\xc5\xc2\xed\x54\x11\x91\xb3\x54\x10\x51\xa9\x09\x93\x87\x6b\xf3\xfd\xb7\x2e\x8c\x7f\x38\x1a\xd4\x1f\xea\xc6\x75\x2e\xbb\xda\xb5\x45\x5a\x8a\x5c\x1f\xc8\x7e\x07\x82\x38\x1d\xc6\xdf\x74\x70\xd6\x38\x01\x9c\x4c\x9e\xa3\x41\xfd\xe1\xcf\xce\x4f\xdf\xfc\xf0\xcc\xec\x67\xa7\x3d\x3d\x26\xa2\xa9\x05\x2c\xa2\xaf\x5c\xdf\x48\x25\x2d\x52\x60\x63\xfa\x72\xbc\xe7\x5b\xdf\xfa\x96\x02\xa0\xff\xf4\x4f\xff\xd4\x1d\x9f\x60\x2d\x06\x42\x60\xdb\xf8\x39\x33\x07\x02\xda\x08\xe2\x9c\x99\x0b\xfb\x87\x46\x28\x4b\xe1\x5c\xd8\x74\x44\x54\x48\x41\xcd\xe2\xa0\x48\xc0\xf3\x6c\xe6\xe6\xb8\x82\x7f\xf8\x0f\xff\xa1\xfa\xea\x57\xbf\x9a\xb2\x28\xc4\x3c\x33\xc5\x2b\x52\xd6\x05\xf9\xa7\xe2\x74\x27\x27\x27\xce\xc2\x11\xcd\x9d\x53\x68\x00\x98\x12\x40\xa5\x80\x07\x2a\x05\x80\x01\x11\x0d\x00\x0c\x95\xc6\xb0\xa8\xd5\xc6\xa0\x52\xc3\x41\xa9\x36\x86\xf3\x6c\xa3\xa8\x68\x98\x69\x0c\x7b\x9a\x06\x26\x7e\x41\x44\xae\x8f\x4c\xff\x48\x20\x23\xfb\xdf\xd5\xe9\xda\xb5\x6b\xea\xbd\xf7\xde\x5b\xc6\xdf\x53\x80\x26\xee\xc3\x54\x5f\xa4\xf2\x4b\xf2\xeb\x2e\x0d\x13\x1d\xcf\x92\x02\x6f\x85\x2d\xff\x9d\x26\x52\x13\xf4\x3c\xd3\x65\x73\xe0\x18\x74\x17\xa5\xc5\x0c\x0d\x10\xda\x2d\xc7\x65\x79\x86\x6d\xb5\xb5\x38\x04\xd1\xa5\x0a\xd6\x52\x65\xa4\x7a\x63\x89\x51\xf2\x47\x02\x18\x4a\x31\xe5\x99\xa6\x9e\x12\x9b\xd0\x19\x93\x65\xa7\x90\x4b\x2d\x55\x5b\x10\x62\x94\xd9\x99\xaf\x88\xbf\x0c\xbc\xa4\xee\xe3\xf8\x2b\x03\xd6\xc7\x78\xf7\x51\xc3\x5f\x47\x9e\x3f\x4f\xfe\xcb\xfa\xc7\x86\x88\x49\x51\xc5\x8a\xaa\xd9\x3a\x1d\x54\x05\x1d\xca\xed\xff\xbd\x96\x2c\x81\xbf\xd5\xa4\xc5\xb5\xc8\xdc\x5a\x15\xc0\xdc\x02\x03\x22\x57\xf1\xc2\x03\x0f\xb6\x69\xdc\x2c\x79\x12\xda\x80\xad\x47\x90\x4c\x98\x31\xbb\xa5\xa2\x81\x50\x81\xf5\x24\x79\x60\xa2\x37\x84\x08\x0c\xc1\x7e\xda\x89\x00\x6b\x7e\x72\x6a\xd4\x46\x9b\x51\x64\x65\x90\x6e\x62\xb2\xd2\x98\xc4\xb5\xa5\xef\xa6\x04\x5d\x15\xea\x68\x3e\xa0\xa3\x3a\xa3\x29\x9a\x79\x28\xce\x4a\x22\x5d\x43\x1d\x0a\x19\xb4\xd6\xa6\x5c\xff\x3e\x61\x85\xb0\x93\x59\xad\x8b\x65\x0a\xf0\x74\x9e\xf1\xf8\x67\xe7\xa7\xef\xdc\xd8\x9d\xfc\x60\xdc\xaf\xf7\xb5\x38\x06\xa5\x65\xf5\x32\x0f\x93\xc0\x24\xe0\x4d\xae\x0e\x71\x94\xe0\xda\x81\x9c\x64\xab\x80\x93\xa2\xda\xff\xd9\xb9\xd3\x37\xde\xd9\x39\xbd\x79\xdc\xaf\x8e\x40\x98\x36\xf5\xc6\xd4\xb4\xc1\xad\x28\x82\xef\x2f\x97\x7e\x85\x89\x9d\xf8\xd6\xb7\xbe\xa5\x2e\x5d\xba\x04\xa0\x11\x88\x52\x40\xc3\x08\x69\x78\x4b\x82\x04\x24\x4e\xf0\xc2\x0b\xec\x82\x40\x83\x9c\x1b\xe1\x9c\x69\x0c\xc0\x18\x98\xb8\x71\x7c\x27\xb0\x05\x08\x52\x31\x88\xb9\x76\xed\x9a\xca\xf3\x1c\x7f\xfa\xa7\x7f\xaa\x01\xe0\x9b\xdf\xfc\xa6\xac\x7e\xac\x30\x3e\x4e\x68\x59\x72\x2e\x5e\xbc\xa8\x00\x3f\x97\x45\xb8\x67\x6c\x7d\x52\xd6\x94\x1c\x68\xda\x59\x54\x34\x3c\x3b\xc9\xb7\x2e\x3f\xec\xef\x7c\x7a\x6f\x78\xe9\x17\xef\x6e\x5c\x7d\xfe\xce\xe6\x73\xbf\xfc\xde\x99\xe7\xff\xc6\xad\x33\xbf\xfc\xe2\xad\x33\xbf\xfc\xcb\xb7\xce\x7c\xf1\x4b\xef\x6f\x3d\xf7\x99\xfb\xeb\x57\x9e\x39\x18\xec\x6c\x4f\xf2\xad\xfe\x5c\x6d\x10\x63\x60\x01\x1f\x04\x20\x14\x7f\x49\x00\x03\x00\x9f\xf9\xcc\x67\xba\xda\x15\x3f\x8f\xc7\xc3\xb2\x3e\x5b\x3a\x7e\x72\xb4\x91\xce\x22\x2d\xb3\x13\x3d\x03\x01\xda\x0e\x34\x15\xe9\x23\xae\x15\x57\x95\xe2\xb2\x26\x2e\x8d\x4e\xe1\x08\x28\x98\x38\xc8\x82\x4f\x3a\x9c\x11\x2d\xe7\x73\xf1\xa3\x99\x32\x14\xde\xc7\x84\x4d\xf2\x19\xf9\x6b\x97\x37\x59\xc2\xf6\x4c\x30\x14\x29\xa4\x32\x46\x91\x6b\x55\x64\x9a\xd4\x5c\x69\x4b\x6c\x80\x30\xb7\xc5\x40\x2e\xb1\x01\xdd\x2a\xa6\x35\xfb\x7e\x55\xe4\x1f\x9b\xe4\x64\x19\x29\xf4\x1a\xe7\xdb\x65\x16\x5d\x34\x98\x16\x01\xa2\x54\x1b\x17\xb5\x65\x11\x02\x4f\x95\x9b\xaa\x5f\x17\xe2\x5f\x14\xe2\x7a\x2e\xaa\x1b\x00\xa8\xdf\xf9\x9d\xdf\x09\xc6\xb6\x10\x78\x52\xf8\x55\x68\xac\x8b\xe5\x7c\xa0\x46\xb3\xa1\xfa\xb0\x7f\xa2\xaf\x92\xe6\x41\x23\x88\x3c\x48\x09\x8c\x1e\x91\x11\xc4\x8d\x65\x2b\xcb\xc5\xe0\x0d\x3c\x48\x80\x7b\x20\x6c\x41\x26\xcb\x68\x6f\x24\x58\x2b\x4d\x68\x5a\x0c\xb6\xd1\x87\x10\x74\x12\x54\xc4\xe6\x48\x00\x6e\xb5\x90\xa8\x5e\x38\xe1\x16\x01\x21\xd9\xd3\x9e\x1b\xb7\x96\x69\x80\xa3\xea\x70\x39\x78\x6c\x94\xb2\x0d\x0e\xf6\x79\x32\x66\x1d\x92\xed\x97\x84\x4e\x9e\xc7\xe8\x0c\x93\x72\x48\xf7\xca\x35\xf5\x50\xe7\x6e\x6f\x12\x39\xf1\x14\x88\x68\xc6\x6a\xe2\xcf\x3f\xff\xbc\x7a\xed\xb5\xd7\x00\x00\x45\x51\x28\x71\xe0\xa2\x9d\x3f\x61\xd3\x54\x66\xde\x81\x9d\xe3\x32\x05\x90\x83\xa8\x00\x63\x72\xda\xd3\x47\x37\x76\x27\x6f\xf7\x2b\xb5\xf5\xec\xfe\xda\xf3\x1b\x65\xb6\xa3\x40\xc1\xe1\xad\x12\xd0\x25\xa7\x35\x99\xe7\xc1\x42\x32\x69\x72\x23\xb1\xa8\x40\xc4\xf1\xdf\x54\x5a\x74\x18\xd3\x5c\x8f\x3f\xd8\x9e\xbd\x75\x73\x77\xf2\xe6\xd1\x5a\x75\x5f\x13\x26\xcc\x3c\x21\xa2\x14\x68\x09\x26\xea\x5a\xc0\xf4\xd2\x4b\x2f\xa9\xef\x7d\xef\x7b\x0b\x15\xaf\xff\xfc\x9f\xff\xb3\xbe\x76\xed\x9a\xb2\xee\x21\xd3\x6f\xd6\xf2\x21\x41\x84\x32\x16\x13\x05\x40\x29\x0d\xd5\xab\x55\x3e\xa8\x54\x3e\x2c\x55\xb1\x36\x57\x45\x51\xab\x22\xd7\x54\x28\x26\xa5\x74\x43\x9f\xb3\x5c\x4f\x4f\x7b\x7a\x3a\xcb\x75\x35\xcf\xb8\x3c\xed\xd5\xd5\xb4\xa7\xcb\x5a\xf9\x49\xc5\xf6\x8f\x99\xad\x95\x4d\xf4\x7b\x43\xd7\xd7\xae\x5d\x53\x66\xe2\x2e\x3a\x42\x2c\x07\xbb\x78\x7a\x52\xe9\xb7\x13\x82\x23\xb0\x62\xe7\xab\xc4\x80\xaa\x71\x7d\x81\xf2\x5e\x4d\xf9\xc6\x2c\x1b\x6c\x4f\xf3\xe1\x13\x27\xbd\x8b\xe7\x4e\x7a\xcf\x0e\xcb\xec\x63\x45\xa5\x76\x7a\x9a\xb6\x73\x4d\x1b\x99\xc6\x90\x98\x0a\x00\x5a\x13\x57\x5a\x61\x3a\x57\xfa\x70\xda\xd3\x1f\x8e\xfb\xf5\x3b\x8f\xd6\xaa\x5b\x87\x6b\xd5\xde\xc3\xe1\x7c\x34\x1a\xd4\x93\x59\xae\x4b\x36\xfd\x81\xd0\xa2\x26\xf7\x24\x72\x6e\xbd\xe3\xe3\x63\x3c\xfb\xec\xb3\xea\xee\xdd\xbb\xd6\x0a\x29\xdb\xd9\x02\x68\x89\x3e\x89\xfb\x27\x56\xb6\x53\x32\x41\x01\xed\xc9\xb9\x71\x26\xcb\x82\x06\x1a\x57\x91\x2c\x28\xf6\x21\xca\x6b\x4d\x8c\x4a\xf1\xac\x56\x5c\x31\x41\x2b\x16\x15\x0d\x51\x49\x5b\x23\x08\x88\xb3\xf9\x1f\x6b\x0f\x31\x81\xa6\x42\x12\xc8\xc8\x3a\xdb\xb3\x5a\xac\xa9\xd6\xaa\x88\xe4\x35\x48\xc5\x94\xf7\x6a\x2a\x7a\x9a\xf2\x59\xc2\x6a\x94\xb2\x3e\x45\x1b\xd0\x2d\x13\xe4\x49\x13\x59\x14\x2f\xce\x63\x99\xc0\x4f\xa5\x4b\x01\xd6\x78\x10\xa5\xac\x37\xa9\xba\xa5\xee\x63\x20\xb0\xc8\x2c\xd8\x55\xa7\x65\xe5\x2e\x2a\x7f\x51\x3e\x5d\x7d\xb9\x52\xdd\xfe\xe0\x0f\xfe\x00\x40\x7a\x23\x32\xe1\x2a\x72\x7f\x55\x41\xd3\xd3\x4d\xf5\xfe\xf0\x11\x7d\x2e\xab\xb0\xd5\x78\x1d\x0d\xa4\x30\xc2\x95\x21\x47\xb5\x09\x24\xa7\xca\x02\x76\xc4\xbb\x49\x87\xf6\x89\x15\x6e\x26\x56\x20\xe0\x0c\x10\x90\x81\xc4\x98\xf6\xd0\x46\xa4\x6c\xd1\xa1\xcf\xb1\xad\xe5\x37\xf5\x8c\x01\x8d\x05\x2d\xc1\xc1\xd2\x46\xd2\xb6\xec\x02\x96\xd6\x28\x2a\x27\x6a\x97\x7f\x6e\x35\x0a\xd3\x02\xab\xed\x48\x70\xe4\x4c\x12\x21\x6d\x57\x05\x1d\x4e\xd7\xd5\xde\xbc\xa0\x11\x03\x25\x09\x8b\x8b\xfd\x6b\xcf\x11\x6a\x7e\x7f\xf6\xb3\x9f\xc1\xc4\x41\x59\x96\xc1\x3b\x61\x7d\x50\x01\x78\xf5\x7f\x25\x33\x4f\x01\x14\x20\x9a\x3c\x1a\x54\xf7\x6f\xec\x4e\xde\xc8\x34\x15\x4f\x1f\xf5\x3f\xbb\x39\xcb\x77\x32\x4d\xb9\x04\x26\x0e\x80\x88\xa6\xb9\x3e\x97\x4d\xb3\xbd\xe6\x40\x9e\x80\xae\x02\xb4\xc9\x28\x36\x86\x26\xd6\xb3\x4c\x8f\x6f\x6f\xcf\xde\x7a\xfb\xc2\xe4\xf5\x83\xf5\xf9\xdd\x4a\xf1\x98\x11\x80\x16\xfb\x17\x58\x5c\x7c\x19\x8d\xf0\x8f\x40\x0b\x90\xa0\x1f\x41\x33\x4e\x93\x8f\x00\x8b\x9b\x73\x41\x44\xf9\x5a\xa9\x8a\xed\xd3\x7c\xb8\x35\xcd\xb7\x36\x67\xd9\xb9\x8d\x59\xb6\x3b\x2c\xb3\x8b\x83\x4a\x3d\x91\xd7\xb4\x91\x31\x06\xc4\x94\x2b\x34\xf3\x0e\xe7\x4a\x8f\xca\x8c\x8f\xca\x5c\x3f\x2c\x33\x7d\x74\xd2\xaf\xf7\x1e\x0d\xea\xbd\x87\xc3\xf9\xe1\xa3\x41\x3d\x39\xed\xd5\xd3\x9a\x9c\x2b\xcf\xd6\xdf\xed\x4b\x23\xeb\x9b\x38\x05\x5c\x86\x58\xc1\x49\x29\x95\x9d\x0a\xe3\xed\xdb\xb7\x21\xe6\xf6\xb8\x7e\x30\x00\x21\x17\x7d\x92\x03\xc8\xf3\x9a\x8a\x33\xa7\xf9\xf0\xd2\xa8\xb8\xf8\xc4\xb8\xf8\xc4\x99\xd3\xec\xd3\x9b\xb3\xfc\x13\x6b\x95\xba\x92\xd7\x74\x8e\x98\x86\x04\x0c\x88\x2d\xc8\x31\x32\xd9\x82\x34\xca\x4a\x3d\xe5\xf1\xf9\x09\xef\xcf\x46\xfa\xde\x49\x51\xdf\x1a\x0d\xea\x1f\x3f\xd8\x28\x6f\xde\xdf\x2a\x3f\x3c\x18\x56\x23\xb3\xec\x3d\x47\x04\x52\x8d\xf5\xd1\xad\x9c\xdb\xda\xda\xc2\x1f\xfd\xd1\x1f\x2d\x33\x70\xa4\xfa\x2b\xee\xab\xae\xfe\x4b\x5d\x6b\xa0\xbd\x73\xee\x22\xad\x13\xd1\xb3\x96\x20\x33\x44\xda\xf5\x91\x1b\xad\xb4\x99\x9c\xab\xb5\x5d\x12\x2d\x99\x8c\xa0\xa6\x98\x31\x2e\x0c\x22\x72\xaa\x68\x92\x24\x2b\x18\x5d\xc8\xe1\x13\x7e\x62\xc9\x18\x84\x99\x9c\x00\x28\x6d\x57\x16\xb5\x27\x87\xa5\xaa\x78\xed\xda\x35\x65\x77\x2a\x4c\x84\x55\xc0\xc6\x32\x50\xb2\x32\xd0\x7c\x8c\x78\x8b\xc6\xc1\xe3\x86\x55\xc1\xc8\xaa\x21\x65\x29\x5a\x35\xef\x55\x2d\x3a\x5d\x69\xba\x82\xd3\x3c\x53\x96\x17\x9d\xd1\xf4\x74\x2b\xbb\x33\x1f\xd4\x7b\xbd\x69\xbd\x93\xd5\x3c\x0c\x37\x82\xb3\xab\x86\x12\xf0\x40\x8c\x45\xa9\x2d\x23\xb0\x59\xb6\x41\x86\x9d\xc3\x60\x5f\x86\xdb\x08\x18\x82\x13\x87\x71\x85\x32\xde\x00\x11\x93\x36\xa8\x6b\x54\x0e\x99\xf7\x01\xb8\x61\x21\x43\x9d\x3b\xc7\xbf\xf7\x13\x7f\xd9\x4d\x98\x07\x42\xf0\x23\x15\x15\x89\x7b\xec\x03\xab\x5c\x90\x11\xd4\xb1\xf5\x54\x56\xd8\xb9\x94\x08\x7a\xbe\xa6\xf6\x66\xeb\x6a\xaf\xee\xd1\x44\xce\x6f\x81\x77\xed\x38\xa1\x2c\x5d\x21\x9f\xf9\xcc\x67\xd4\x8f\x7f\xfc\xe3\xd6\x38\xb0\xee\x11\x31\xa9\xd3\xa6\xa9\xd0\xf0\xc4\x12\xde\x14\x6f\x05\x43\xae\x15\xf2\xfd\xf5\xf9\x9d\x1f\x5f\x38\xc9\xcb\x4c\x97\x57\x8e\x06\xcf\x6d\x9f\xe6\x17\x7b\x35\x0d\xe4\x12\x65\xcf\xb2\xec\xac\x1f\x12\xff\x4d\xbf\xc5\x26\x32\x0e\x2d\xc5\x64\xd0\x63\x6c\xe5\xae\x89\xab\x93\xbe\x3e\xbc\x73\x66\xf6\xd3\x1b\xbb\x93\xd7\xee\x6e\xcd\xde\x2b\x33\x3e\x02\x61\x42\xa0\x09\x8c\x9b\x88\x88\x4a\x66\x2e\x85\x80\x6f\xed\xe3\x22\x8e\x41\x48\x0a\x1e\x09\x02\xac\x55\x01\x6d\xfe\xd9\xf0\x54\x46\xbe\x5e\xaa\xc1\xb9\x49\x6f\xeb\x89\x71\xef\xd2\xce\x49\xf1\xa9\xad\x69\xfe\xf1\xe1\x5c\x5d\x2a\x2a\xda\xcd\x6b\x75\x2e\x63\x6c\x11\x53\x41\xe1\x24\x5d\x30\x50\x32\xf1\x44\x13\xa6\x5a\xf1\xa8\xcc\x78\xff\xa4\x57\xbf\x3f\x5a\xab\xde\x79\x38\xac\xde\x3d\x18\xce\x3f\x3c\x1c\xce\x0f\x0f\xd7\xab\xb1\xf9\xde\x95\xa9\x8b\xb3\x22\x59\xc5\xc0\x0a\x6c\x6b\x7d\x89\xbf\xfd\x82\xd0\xd9\x17\x57\xaf\x5e\xc5\xe7\x3f\xff\x79\x75\xf1\xe2\x45\xab\x80\x38\xcb\x13\xc2\xb6\xe4\x00\x72\xa5\x51\x6c\xce\xb2\x8d\xdd\xe3\x62\xf7\xd2\xa8\xff\xdc\xc5\x51\xf1\xc2\xd6\x2c\xff\x5c\x51\xd1\xe5\x4c\xd3\x36\x01\x43\x80\xf2\xd6\xa4\x76\x37\x36\x9a\xff\x8a\x31\x54\x4c\xdb\xb9\xc6\xa5\xfe\x5c\x7d\x6a\xa3\xcc\xbe\x78\xf6\x94\xbf\x74\x7e\xd2\x7b\xfb\x89\x93\xe2\x2f\xee\x6d\x96\x6f\xdd\xdf\x2c\x6f\x1f\x0e\xe7\xa3\x32\xe7\xa9\xa9\x43\x25\x78\x9a\x05\x32\x0a\x00\xae\x5d\xbb\x16\xbb\x06\x63\x5e\x9c\xba\x7e\x5c\x6b\x4c\x4b\xc9\x5f\x65\xcb\xff\xb8\xf0\x96\x39\xec\xfb\xdf\xff\x3e\xbe\xff\xfd\xef\x4b\xdf\x9c\xf3\xb3\x0a\x94\x06\xa0\xd9\xea\xdf\xba\x8b\x98\xb8\x02\x51\x21\x89\xcb\xf3\xc9\xd6\xfa\x81\x96\xa9\xd4\xe9\xa1\x11\x93\x03\x42\xe0\x13\x10\xaa\x61\xde\xe9\x32\x43\x8b\x76\xb0\x17\x8c\x50\x6b\x18\x8d\xc5\x25\xaf\xcd\x92\xe8\xc5\xd6\x08\x17\x3a\xb6\xfb\x5f\x26\x10\x3b\xfb\x3d\x0a\x5d\x83\x45\xbe\x4f\xe5\xdb\x95\x87\xbc\x8f\x9f\xa5\xf2\x58\x56\xbe\x4c\xfb\x38\x08\x3b\x4e\x17\xd7\x69\x95\x3a\xac\xd2\x37\x29\x0b\xd3\xa2\x3e\x6c\xb5\x4f\x02\x16\xf1\xe7\x36\xec\x22\xa2\xb2\x1c\xaa\xa3\xd9\xba\xba\x3d\x18\xeb\xab\xaa\xe6\xa1\x77\xbf\x78\xe4\xee\x47\xab\x18\x89\x46\xc8\x47\x06\x09\x04\xa3\xde\xb9\x5a\x9a\x38\x1e\x18\x00\x96\x79\xb5\x30\x7b\x64\xc9\x70\xa2\x5f\x32\xc0\x84\x52\xe0\xe8\x30\xf0\x51\x70\x0b\xe0\xbb\x72\x49\xe4\xd9\x32\xd7\xf8\xcd\xd6\xa4\x9b\xc3\xd3\x9c\x79\x27\x41\x8f\xf9\x47\xce\xc2\xc2\xc6\x68\x43\xae\x2a\x31\x43\xb0\x69\xea\x1c\x93\xd9\x50\xdd\x2b\xd7\xd4\x81\xce\x30\x15\xa6\x71\xbb\x59\x9c\x13\x5c\x10\xe0\x05\x00\x0c\x68\x69\x8d\x8d\x5e\xaf\xa7\x7e\xef\xf7\x7e\x0f\x32\x2e\xf9\x3d\x5d\x2a\x23\x98\x4a\xa9\x41\xdb\x89\x90\x55\x06\x75\x7f\xb3\x7c\xaf\x52\x5c\xcd\x7a\x7a\xfa\xcc\xe1\xe0\xb9\x73\x93\xde\xa5\x7e\xa5\x36\x94\x39\x13\xcd\x37\x48\xf4\xaf\xe8\x1e\xe9\x12\x92\xdf\xcb\x7f\x67\xdf\xbf\x36\x1e\x13\xeb\x79\xc6\xd3\xd1\xa0\xda\xff\x60\x7b\x76\xf3\xa7\x3b\x93\xb7\xee\x6f\xce\xdf\xab\x15\x1f\x31\x78\x42\xa0\x31\x33\x4f\x00\x38\xab\x8b\x00\x77\x72\xe9\x38\x80\xc0\xb2\xee\xfa\x0d\xf0\x7b\x80\x44\x3b\xb5\x76\xb9\x42\x72\x02\xe5\x45\x4d\x83\xf3\x27\xbd\xed\x27\x47\xfd\x2b\x17\x47\xc5\x73\xe7\x4e\xf3\x5f\x1c\x96\xd9\xa7\x8a\x5a\x5d\x52\x1a\xdb\x04\x0c\x00\x6f\x99\x92\xe3\xc4\xdf\x9b\x11\x58\x43\xf7\xe7\x5c\xae\xcf\xb2\xa3\xb3\xa7\xf9\xbd\x0b\xc7\xfa\xd6\x71\xbf\xbe\xb9\xb7\x51\xfe\xe8\x83\xb3\xb3\x9b\xfb\xeb\xe5\xde\xa4\xd0\x53\xdd\x8c\x03\xeb\xda\x8b\xdd\xbe\x80\xb0\xbe\x44\xc2\x7a\x11\x7f\x6a\xf1\x96\x67\x9e\x79\x46\xdd\xba\x75\x4b\x7f\xf3\x9b\xdf\x94\x96\x26\xe9\x2e\x53\xe4\x27\xcb\x16\xfd\x5a\x15\x3b\x27\xbd\x9d\xa7\x8f\x06\x9f\xb8\xf4\xa8\xff\xc2\xb9\x49\xfe\xfc\xda\x3c\x7b\x2e\xd3\xd8\x25\x50\x28\xc3\x63\xd0\x12\x68\x22\xc2\xfd\xda\xb8\x9c\x86\x4a\xd3\x30\xd3\xbc\x53\x54\xea\xea\xc6\x2c\x7b\xee\xdc\x49\xfe\xe6\xce\x49\xef\xd5\xf7\xb7\xa7\x6f\x7e\x78\xa6\xbc\x7d\xd2\xaf\xa7\x76\xdc\x9a\x71\x6c\xdb\x69\xff\xd4\xcb\x2f\xbf\x0c\x22\xc2\xe9\xe9\x29\x5e\x7f\xfd\x75\xfc\xe5\x5f\xfe\x65\x0a\x9c\x74\xf1\xec\x2e\xd9\xb7\x48\xe6\xa8\xcc\x3c\x74\x8a\x91\xb9\xb7\xd7\x81\x7c\x8f\x2a\x11\xd8\xd3\x04\x68\x21\x66\x26\x63\xee\xca\x00\x64\x44\xd4\x63\xe6\x82\x88\xfa\x20\x14\x9b\xd3\x6c\x7b\x77\x5c\x3c\x7b\x66\x9a\x3f\x9d\x35\x68\xd9\x10\x93\x41\xb8\xa6\xc8\xe6\x39\x07\x93\xee\x2c\xd3\x95\xc0\xc2\xc6\x83\x7c\x6e\x4d\xd7\x92\xd1\x89\x71\x2d\x59\x80\xdf\x8b\xc2\xbe\x97\xc2\xa2\xad\xdb\x80\x18\xb5\xe2\x93\x47\x83\xea\x83\xfd\x8d\xf9\xad\x93\xbe\x3e\x42\x63\x42\x9d\x01\x98\xc3\x7f\x24\x96\x7d\x95\xe7\x39\xdd\xb9\x73\x27\x50\x82\x90\x16\x8e\x8c\x74\xe0\xc4\x3b\x25\x9e\xa7\xae\xe3\xb4\xa9\x3c\x64\x1c\x19\x28\xf1\xac\x2b\x8f\xb8\xac\x65\xf5\x8f\x99\xff\xa2\xf4\x32\x5d\xaa\x4e\x71\x1c\x7b\xaf\x3a\x9e\xa7\xd2\xda\x5f\x9b\xff\xa2\x76\x07\xef\x9e\x7f\xfe\x79\x32\x81\xd1\x30\x1d\x32\x65\x67\xe4\x57\x01\xf4\x00\x14\x4c\xc8\xf2\x92\x37\xfa\x27\xfa\x52\x5e\xe2\x0c\x00\xe5\xb6\xf1\x70\xc2\x55\x0e\x3c\xab\x9d\x02\x24\x77\x21\x23\x16\x38\x81\xbc\x95\x41\xd0\x0f\x9b\xb1\x6c\xf7\xfd\xb0\x04\x10\x00\x71\x01\xe4\x03\x0b\x88\x79\xee\x48\x29\xe8\x09\x2b\x04\xfd\x8b\x56\xdd\xcd\x3b\x16\x37\xe1\xa6\x90\x70\x60\xa6\xd9\xfb\x85\x02\x0b\x01\x02\x00\x22\x80\x9c\xd8\xf2\x95\x38\xcc\x1f\x9e\x29\x8b\x4d\x86\xd9\x4b\x70\x53\x9f\x72\x4d\x7d\x38\xda\xcd\x5f\x9b\x6c\x67\xef\xd5\x39\x3d\x22\xa2\x53\x22\x3a\x65\xe6\x99\xb1\x8c\x54\xcc\x3c\x27\xa2\xda\x7c\x53\x26\x22\x16\xd6\x84\xd6\x18\xd2\x5a\xf3\x6b\xaf\xbd\xc6\xcf\x3f\xff\x3c\x29\xa5\x40\x44\x24\x34\x76\x77\x2d\xbb\x92\xec\x83\xc6\xca\x46\xa7\x85\x9e\x9d\x14\xfa\xb4\xcc\xf9\x14\x00\x14\x53\x96\x69\xca\x1b\x77\xba\xb3\x8f\x85\x3b\x8c\x0b\x9e\x15\xf0\xc3\x00\xb4\x09\xc6\xc7\xcd\xb7\xad\x32\x2e\x4f\x0a\x7d\xf4\x60\xa3\xfc\xe0\xd6\xf9\xe9\x8f\x7f\xfa\xc4\xe9\x5f\xee\x6d\xce\x3f\xd0\x0a\xc7\x0c\x3e\x21\xa2\x63\x00\x27\x00\x4e\x89\x68\x02\x60\x66\xfa\x67\x0e\x60\x6e\x84\xb9\xed\x1f\x10\x11\x5f\xbf\x7e\x5d\xef\xec\xec\xa8\xc9\x64\x12\xf0\x9f\x2f\x7c\xe1\x0b\xf4\xed\x6f\x7f\xdb\x7c\x0e\x96\xae\x10\x2b\xa0\x33\x22\xea\x11\x51\x2f\x63\xea\x6f\x94\xd9\xd6\x53\x8f\xfa\x97\x3f\x73\x7f\xfd\x97\x9e\x3d\x58\xfb\x8d\x9d\x93\xe2\x9b\xeb\x65\xf6\xa5\xa2\xa6\x8f\x29\xa6\x33\x0a\x54\x10\xec\x21\xb7\x76\x38\xc8\x39\x51\x1c\x2a\xa8\x0c\x22\xa2\x3c\x03\x6d\xe4\x5a\xed\xf6\x2b\xf5\xcc\x7a\x99\x5d\xdd\x9e\xe6\x4f\x9e\x39\xcd\x87\x19\x53\xcd\x84\xaa\xcc\xb9\xd6\xca\x88\xf7\x46\xe1\x66\x61\x71\x91\xdf\x92\xbf\xf4\xa5\x2f\xd1\xab\xaf\xbe\x9a\xe2\x09\x29\xbe\x11\xc8\xcc\x47\x8f\x1e\xb1\x9c\x90\x2c\x81\x1c\xfc\x8a\xa1\x1e\x80\xfe\xa0\xca\xd6\x2e\x8d\xfa\x97\x3f\xb5\x37\xfc\xf2\xc7\x0e\xd7\xbe\x75\x7e\xd2\xfb\xc6\x60\xae\x3e\xab\x98\xce\x12\xc2\xfd\x6b\x64\xc1\xce\xcb\xe0\x91\xab\xe0\x0d\x32\x3e\xa3\xe9\x4b\x1a\xf6\x34\xed\x0e\xe6\xea\xf2\xe6\x2c\x7b\x72\xa3\xcc\x0a\x02\xcd\x66\xb9\x3e\x9d\x15\x3c\x37\xc3\x95\x4d\x3f\x48\x1e\xcc\xf6\xfe\x9f\xfe\xd3\x7f\xaa\xf7\xf6\xf6\xe2\xf6\xa6\x64\x1c\x10\xca\x27\x25\xe2\xa6\x70\x88\xcd\xc3\xe5\x9d\x25\x32\x5e\xc4\xd8\x53\xef\x15\x00\x7e\xf5\xd5\x57\xf9\x85\x17\x5e\x20\xd3\x40\x32\x83\xd2\x32\x70\xc7\xb8\x01\x0c\x36\xca\xec\xec\x13\xe3\xe2\xea\xf6\x69\xef\xe9\x9c\x69\x60\x33\x6d\x31\x3e\xdb\xad\xce\x07\xe9\x95\xba\x08\x57\xc2\x73\xa6\xe6\x63\x59\x1e\x11\xe8\x28\x96\x76\x6d\x0f\x39\x66\xe2\xf3\xb7\x11\x49\xc4\x0b\xa0\x92\x21\x88\x5a\x61\x76\x3c\xa8\x6e\x3f\x58\x9f\xbf\x7b\x3c\xa8\x2d\x70\x91\xfe\xdf\x1a\x1e\xc0\x10\x00\xfe\x77\xff\xee\xdf\xc5\x28\x7c\x59\x5f\xaf\x12\xba\xbe\xcd\xe3\xe6\xb3\x28\xef\x45\x60\xaa\x2b\x2c\x4b\xf3\x51\xeb\xf7\x38\xe9\x56\x89\x9b\x02\x78\xf1\xbb\x14\x91\xb9\xf0\xa5\x2f\x7d\xa9\xa1\x68\x21\x8b\xe0\x15\x02\xab\x1c\x34\x4b\x31\x15\xe5\xc4\x9c\x15\x13\x7e\xa2\x98\xea\xf3\x4a\x63\xd0\x30\x46\xc3\x20\x85\x65\x42\xca\x1b\x3f\x9e\xad\xd0\xb6\xfb\xa6\x84\xf6\x19\x38\x00\xee\xa5\xba\xb7\xd6\x18\x7a\x60\x84\xe5\x98\x66\x93\x00\x35\x31\x8b\x0b\x80\xbd\x75\xab\x8a\x0a\x12\x79\x10\x65\x15\x04\xb6\x35\x36\xc0\xc1\xc6\x21\x43\xa0\xa6\xc3\x5a\xf4\x69\xe9\xdc\x2a\x29\x36\x27\x17\x5f\xbc\x77\xf1\x25\x6f\x10\x96\x9d\x86\x7f\x34\x7d\xc1\x44\x60\x85\x72\xb2\x9d\xfd\xe8\xd1\x85\xde\x1b\xe5\xba\xda\x63\xc2\x09\x11\x9d\xa2\x11\xd0\x53\x34\xca\x47\x05\x60\x6e\x84\x72\x6d\xbe\x29\x5f\xb9\x72\x85\xde\x7e\xfb\xed\x85\x63\xca\x82\x17\x22\x62\x61\x81\xb0\xc2\x3d\xfc\x54\xfe\x19\x01\xd0\x0c\xe6\x59\x8f\xcb\x51\xbf\x1e\x9f\xf4\xeb\x51\x99\xf1\xa9\x26\xd4\x19\x53\x66\xe6\x02\x2a\x8f\x27\x3d\x70\xf4\xdc\x9d\x7c\x1f\x03\x7e\x75\x91\x91\x33\x9a\xa0\x2b\xc5\xf3\xd3\x42\x1f\x1f\xac\xcf\xef\x7e\x70\x76\x7a\xf3\xdd\x9d\xe9\x8f\xde\x3b\x37\xbd\xf9\x70\x58\xdd\x07\xe1\x18\xc0\x31\x11\x9d\xa0\x01\x2d\x27\x00\x26\x00\x66\x44\x34\x33\x7d\x32\x37\x7d\x62\x5d\x06\xd6\xca\x88\x57\x5f\x7d\x95\x27\x93\x89\x64\x9d\x0c\x00\x16\xb4\x40\x80\x7a\x0b\x5a\xd0\x58\x59\x7a\x00\x7a\x79\x4d\x6b\x67\x4f\x7b\xe7\xae\x1e\x0e\x3e\xf5\x99\xfb\xeb\x5f\x7b\x72\xd4\xff\xad\xf5\x32\xfb\x1b\x3d\xa6\xcb\x04\x1a\x04\xe0\xcd\x66\x0e\xcf\xc3\x25\x4f\x6f\xc6\x2b\xfb\xf1\x02\x8f\xb7\x89\xa9\xa7\x80\xed\x5e\xad\xae\xac\x97\xd9\x95\xed\x69\xef\xec\x7a\x99\x61\x9e\xf1\xe9\x2c\xd7\x65\x6d\xa5\xa2\x10\xca\xd1\xb7\x24\x22\xe2\x17\x5e\x78\xc1\x82\x17\x1b\xba\x8c\x00\xc1\x98\x11\x4b\x9d\x9d\xa5\x85\xc2\x55\x54\x3d\x30\x8a\xc1\x5c\x0d\x2f\x8f\xfa\x4f\x3f\xb7\xb7\xfe\xd5\xa7\x1f\xf5\xbf\xbd\x39\xcb\x5f\xec\x69\x7a\x12\xc6\xd2\xe4\x3c\x0e\x02\x94\x90\xe3\x1d\x1e\xb4\x04\x8a\x4a\xd0\x47\x62\xdc\x70\x53\x0f\x05\xac\xe7\xb5\xda\x1d\x56\xd9\xa5\xad\x59\x3e\x2c\x6a\x35\x3d\xee\xd7\xe3\x69\xae\x4b\x27\x26\x4d\x5e\x16\xd8\xd9\x36\x8a\xfe\x58\xc6\x4f\x21\xfa\x49\x2a\xb0\x94\x78\x1f\xe7\x41\x00\x38\x4b\x74\xf2\x2a\x21\x65\x95\xc1\x0b\x2f\xbc\x40\xdc\x38\xba\x89\xbc\x49\x34\x63\xe6\x1e\x35\x6b\xe8\xfb\x44\x54\x0c\xe7\xd9\x99\x27\xc6\xbd\x8f\x9d\x3d\xcd\x9f\xce\xb5\x1a\x5a\xca\x0d\x26\x0f\x3a\x45\x49\x70\xa8\x08\xb4\x58\x8d\x43\xba\x7a\x9a\x7c\xec\xb5\xf9\xb4\x42\x43\x81\xcf\x2d\x30\xbf\x3b\xe6\x2c\xca\xf6\xbf\x26\x06\x59\x5f\x3a\x50\x2b\x2e\x4f\xfa\xfa\xde\xfe\xfa\xfc\x9d\xa3\xb5\xf9\x21\x1a\x1f\xf0\x1c\x1e\xbc\x58\xe0\x62\xab\xca\x62\x90\xcb\x3e\x97\x1f\x28\xee\xdb\xf8\x3e\xf5\x8d\xba\x84\xab\x1c\x18\x71\x19\xa9\xf4\x5d\xf9\xdb\xfa\xc6\xe5\xc8\x5f\x12\x7f\xa9\x81\x19\xd7\xab\xeb\xdd\xa2\x7e\x49\xd5\xaf\xab\xbe\xcb\xfa\x70\x51\x3d\x17\x59\x1c\x63\x97\x13\xff\xda\xaf\xfd\x9a\xfa\xd7\xff\xfa\x5f\xeb\x2f\x7d\xe9\x4b\x76\xdc\x5b\xc6\x1c\xd0\x00\x2c\x53\x22\xf4\xb4\x42\xd6\x2b\x79\xb3\x3f\xe1\xdd\x7c\xce\x67\x24\x0e\x27\x23\xd8\xad\xa8\xb6\xbb\xe4\x3a\x01\x6c\xc6\xb3\x9d\xec\x1a\xee\xeb\x46\x4e\x03\x77\x20\x45\x02\x73\x00\x81\xb5\xc4\x02\x71\x0b\x26\xe0\xa4\xa2\x68\xbe\x60\x6f\x82\x3c\x25\xbd\x5a\xd6\xe5\x98\x27\xf9\x94\x96\xb9\x3a\x00\xc6\x22\x67\xd9\x00\x8a\x18\xac\x05\x27\xe0\x00\xb0\xb8\xd4\xd2\x72\xc4\x2e\x96\x11\xe6\xbe\x02\xce\x29\x6c\xea\x36\xef\xd3\x83\xd1\x6e\xfe\xea\xf1\x4e\xf6\x8e\x2e\xd4\x11\x11\x9d\x18\x77\x88\x75\x85\x94\xc6\x24\x5e\xa3\xa1\x61\x83\x49\xc1\xff\xe2\x5f\xfc\x0b\xf9\xed\x93\x74\xfb\x5b\xbf\xf5\x5b\xea\x3b\xdf\xf9\x8e\xb6\xe0\x45\xb8\xcc\x03\xd0\x62\x98\xbe\x64\x65\x36\x2f\x5d\x65\x3c\x3f\xee\xd7\x93\xc3\xe1\xfc\xe1\x71\xbf\x3e\x2a\x33\x9e\xd4\x0a\x35\x53\x5b\xc1\x14\xd8\xb6\x55\x25\x26\x68\x56\xe0\x5a\xf1\xbc\xcc\x78\x76\xd2\xaf\x47\x0f\x87\xd5\xdd\xdb\x67\x66\xef\xbc\xbb\x33\xfd\xd1\x3b\x3b\xa7\x37\xee\x6d\x95\x1f\xcc\x7a\xfc\x88\x99\x8f\x01\x9c\x10\xd1\x18\x0d\x60\x19\x9b\x49\xc4\xa7\x30\xd6\x64\x03\x56\x6c\xbf\xd4\xc6\xea\xc2\x00\x70\x78\x78\x88\xb7\xde\x7a\xcb\xb6\x43\x01\xd0\x5f\xfe\xf2\x97\x95\x04\x2d\x72\xf5\x90\x00\x2d\x39\x33\x17\x3d\xad\xd6\x9e\x18\xf7\x9e\x78\x6e\x6f\xfd\x0b\x9f\x7a\x30\xfc\x3b\xe7\x26\xbd\x6f\xf5\xab\xec\x33\x04\xea\x37\xdf\xae\x19\x2b\xd2\x82\x00\x41\x2b\x4e\x5e\x08\xcb\x92\x14\xd6\xb6\x7b\xe4\xd9\x4d\x0a\x94\x65\x4c\xe7\x06\x73\xf5\xb1\xcd\x32\xbb\xb0\x51\x66\xba\xcc\xf5\xc9\xb4\x93\x3d\x4b\xda\x00\x00\x20\x00\x49\x44\x41\x54\xa7\x67\x55\xc6\x15\x84\xa5\x45\x08\x69\x98\xef\xea\xc0\xcb\x68\x34\xa2\xc3\xc3\x43\x5b\x98\x0e\x4b\x0c\xf9\xa2\xd8\xaf\x46\x4e\xc8\x95\xfd\x51\x00\x28\xfa\x95\x1a\x5e\x7d\x38\xb8\xfa\xd9\xfb\xeb\xbf\x7a\x69\xd4\xff\xf6\x70\x9e\x7d\x5e\x31\x6d\x5a\x41\x46\x62\xfe\x99\xe7\x17\x70\x0a\x89\x79\x01\x0f\xe9\x20\xad\x46\x2e\xbe\x07\x3e\x96\x67\x10\x08\x94\x67\x1a\x67\x07\x95\xba\xbc\x39\xcd\xcf\x0c\x6a\x75\xb4\xbf\x31\x7f\x38\xcf\xb8\xb6\xe6\x3d\x31\x81\xd9\xf5\x8b\xb5\x44\x59\x00\xa3\x94\x52\x22\xa2\xf3\xc8\x98\xbf\x78\x7e\xa2\x1c\x3b\x8c\x44\xdf\x89\x3c\x38\x13\x0f\x52\x44\xb9\x4c\x90\x11\x00\x7e\xf1\xc5\x17\xd5\xed\xdb\xb7\xf9\x85\x17\x5e\x20\x1b\x84\xaf\x2e\x33\xd6\x16\x6b\x02\x1b\xac\xcd\xd5\xe6\x13\x27\xc5\x33\xe7\x26\xbd\xab\x85\xa6\x75\xc9\x58\x43\x50\x01\xf1\x04\x08\x78\xaa\xfb\x50\x61\x3a\xb9\xdc\xd3\x33\x32\x08\x20\x24\xd9\xb1\x2c\x57\x3c\xb1\x79\xca\xca\x90\xcf\x8b\x09\x60\xe2\x6a\x52\xe8\xfb\xfb\xeb\xf3\x77\x1f\xae\x57\xf7\xa9\x31\x31\x5b\x6d\xad\x86\x9f\xc4\x64\x3f\x08\xbf\xfa\xea\xab\xdc\xef\xf7\x55\x5d\xd7\x52\x30\xc6\xfd\xbb\xe8\x7e\xd1\xb7\x88\x99\x9a\x14\xba\x81\xb0\x7d\xcc\xfc\xe3\x77\xa9\x5f\xf9\x17\xc7\x8f\x41\x42\x60\xf2\x4b\xc4\x5f\xd5\x1a\xb5\x68\x1e\x4d\xfc\x3c\xae\x57\xaa\x9e\xb2\x4e\x31\x88\x89\xdb\xec\xae\xdf\x7d\xf7\x5d\xfe\xf6\xb7\xbf\xad\x36\x37\x37\xa5\xf6\x6c\xaf\x2d\x68\xb1\x00\xbe\xd9\xbd\x32\x23\x45\x8c\xbc\x38\xe5\x73\xbd\xa9\x3e\x47\x9a\xfb\x8e\x89\xc0\x8f\x53\x58\xa0\xec\x84\xb6\x90\xfe\xd6\xb2\x68\x2a\xd3\xa4\xf7\x62\xac\xe9\x74\xf3\xdf\x31\x16\x0b\xc4\xc9\x30\x7d\xd3\x0c\x7b\xe2\x73\x20\xec\xad\x85\xc5\x32\xca\xd6\x5a\x27\x6f\xd9\xf0\x59\x1a\x10\xe1\x69\xc7\x09\x16\x7b\x16\x8f\x7b\x0e\x5b\x98\xa8\x42\x7b\x1b\x83\x06\x30\x85\x2b\x9f\x58\x30\x6c\x07\x50\x1a\x55\x3a\xcc\xc7\x12\xb1\xab\x03\xf4\xe9\x99\xec\xc7\x0f\x2f\xf5\x5e\x2b\xd7\xd5\x7d\x56\x8d\x90\x26\xa2\xa9\xf9\x9b\xa1\x11\xd0\x73\x66\x76\x6e\x22\x98\xf9\x1b\x91\xe2\x91\x1c\x8b\x37\x6e\xdc\x60\xa0\xb1\xbc\x58\x7e\xe8\x87\x43\x98\x4e\x08\x44\x6d\xe2\xd4\x64\x8f\x0b\x20\xd4\xf3\x9c\xe7\xa3\xb5\x6a\xb4\xbf\x31\x3f\x7c\xb4\x56\xed\x8d\x06\xf5\xe1\x69\xa1\x4f\xe6\x99\x9e\xd6\x8a\xcb\x3a\x43\xad\x09\x73\xad\xb8\xd6\x04\xd6\xc4\xac\x09\x55\xa5\x78\x3e\xcf\x79\x3a\xeb\xe9\xd3\x71\xa1\x1f\x3d\x1c\x56\xf7\xef\x6e\x95\xb7\xde\x3f\x3b\xbb\xf9\xee\xf9\xd3\x1f\xbf\xb3\x73\x7a\xf3\xde\x56\x79\x7b\x5a\xf0\x43\x34\x56\x96\x13\x22\x3a\x31\x96\x96\x09\x33\x8f\xa9\xb1\x3e\x4d\xc8\x6c\x9e\x67\x94\x32\x3b\x57\xcb\xf1\x35\xb3\x3c\x9c\xfe\xfd\xbf\xff\xf7\x98\xcd\x66\x0c\x00\x45\x51\x50\x5d\xd7\x2c\xdc\x43\x52\x58\x3b\x21\x6d\x56\xcd\x14\x19\xd3\x60\x77\x5c\xec\x3e\xb7\xb7\xfe\xe5\x8f\x1f\xac\xfd\xdd\xad\x59\xfe\xf5\x9c\xd5\x45\xf2\xc6\x76\xff\xbd\xed\x58\x17\x56\x41\x3b\xf7\xc9\x0e\x07\x2b\x82\x19\x12\xa4\x7b\x9a\xb2\xd7\x76\xbc\x2b\x50\x91\x6b\xf5\xe4\xda\x5c\x3d\xb9\x39\xcb\x51\x65\x78\x34\xe9\xe9\xc9\x3c\x63\xed\x89\x24\x9c\xc3\x63\xc6\x06\x31\x33\xdf\xbd\x7b\x17\xe6\x54\xe5\x14\x6f\x65\x00\x3c\x1c\x0e\xd5\x7c\x3e\x67\xa3\xe0\x98\x2c\x28\xd8\x54\x0e\x40\x01\x46\x41\xc0\xe0\xe9\xa3\xfe\x53\x9f\xff\x70\xe3\x37\x2f\x1e\x17\xff\x7b\xbf\x52\x9f\x56\xa0\x41\x28\x1b\xbd\xe0\xb3\xc0\xcd\xcb\x39\x0a\x2d\x99\x08\x95\x02\x11\xd5\xf5\x65\x28\x11\x0d\xd5\x31\xad\x17\x35\x3d\xb5\x31\xcb\xb6\x32\xc6\xbd\xc3\xe1\xfc\xb8\xca\x78\x6e\xe8\x8d\xcd\x58\x75\x80\x5b\x22\x75\x03\x5e\x62\x50\x22\xff\x24\x9f\x8e\x79\xbf\xac\x66\xd2\x4b\x91\x5a\x0e\x9d\x9a\x54\x94\x9a\x29\x2c\xe3\xa6\x26\xe6\xb6\x8e\x88\xb7\x69\x34\x71\x55\x29\x6d\xb6\xfd\xf7\x93\x09\x1d\xb3\x31\x55\x8e\x19\xa5\x67\xbc\xf1\x0b\x7b\x1f\x7e\x92\x20\x1a\x99\x8f\x27\x60\x8d\xf7\xcb\xb7\x3f\x66\x5c\x84\x6c\x1b\x11\x41\x31\x15\x45\xad\x86\x85\x56\x03\x02\x94\x16\xa6\x3f\xe1\xb3\x6c\xa5\x7f\xf1\xc5\x17\xf1\xdd\xef\x7e\x37\x91\x33\x80\x6e\x61\xfc\x51\xc3\x5f\x65\x7e\x1f\x35\xaf\xae\x89\x58\x5d\xe3\x6c\x59\x19\xcb\xe2\xfd\x3c\xed\x8d\x27\x8f\xad\x94\xd7\x7f\xf8\x0f\xff\xc1\xee\xc3\x20\x8f\xbe\x90\x93\x73\x35\x9a\xc9\x9f\x8d\x3b\x91\x50\xce\xd6\xd5\x83\xd3\x33\xea\xd6\xda\xb1\xba\x92\x55\x7a\x0b\x80\x03\x24\xed\xf1\x2f\xc1\x05\x1b\x59\xdc\x3c\x0b\xe7\x8b\x88\x34\x06\x98\x30\xfb\x34\xde\x8f\x60\x0b\xb0\x68\xde\xe4\x8f\xc4\x0a\x25\x0b\x5e\x60\x28\x4a\x10\xa9\xdd\x6d\xba\xa1\x5f\x72\x8b\x93\x24\xe5\xc9\x49\xa1\x2e\x0f\x5b\x31\xc1\x80\xc5\x4e\x33\xbe\x5d\x16\x70\xb8\xba\x78\xa4\x16\xda\x2f\x7c\x8d\x7d\x9d\xfd\x53\x9b\x47\xd5\xa3\xa3\x93\x33\xea\xa7\xa7\x9b\xd9\x03\xdd\x6c\x3a\x67\xad\x2b\xd2\xcd\x0b\x84\x13\x33\x41\xd4\x9a\x8c\xb9\x2c\xc8\xb1\xd0\x9a\xb4\x2a\x26\x39\x02\x7e\xf2\x2f\xc8\xbb\x5f\xdc\xd8\xd1\xe0\xf2\xb4\xd0\xe5\xfb\xbd\xe9\xa3\x0f\xce\xce\xee\xac\x95\x6a\x73\xfb\x34\xdf\x3a\x33\xcd\xb7\xd7\xcb\x6c\xa3\xa8\x68\x50\xd4\xaa\x28\x6a\x35\xc8\x34\x72\x4d\xd0\xf3\x8c\xa7\x65\xae\xcb\x52\xe9\xf2\xa4\xa8\x47\x8f\xd6\xea\xd1\xd1\xda\xfc\x68\x9a\xeb\x49\xad\x70\xca\xe0\xa9\x01\x26\xf2\x6f\x62\xff\x4c\x7f\x4c\xc8\xaf\x22\x2a\xe5\xa4\x65\x5b\x3f\xdb\x06\x31\xf7\x07\x00\x54\x59\x96\xc1\xbe\x24\x26\x9e\xb4\x2c\x28\x08\x41\x7d\xfe\xa4\x77\xee\x53\x0f\x86\xcf\x7f\xec\x60\xf0\x7f\x6c\x94\xd9\x4b\x66\x49\x6f\xb4\xb5\x45\xb0\x36\x34\xe4\xd3\xc2\x12\xee\xe2\x3a\x00\x2b\x41\x78\xf4\x95\x04\xd8\x26\x42\xde\xaf\xb2\xcf\xee\x1e\xd3\x46\xae\x69\x2b\xd7\xf4\x7f\xff\x74\x67\xf2\xf6\x49\xa1\xc7\x16\x18\xa3\x19\x23\xd2\x0a\xa3\x89\x08\x2f\xbd\xf4\x12\xde\x7c\xf3\xcd\xe0\xdb\xc7\x63\x61\x32\x99\xe8\xc8\x45\x14\xfc\x31\x73\x4e\x68\x14\xfb\xad\x69\xbe\xf5\xb9\xbb\xeb\x5f\xdf\x1d\xf7\xbe\xdd\xaf\xd4\xb3\x60\xca\x17\xc9\xa8\x40\x86\x45\x6d\x74\x71\x84\x72\x12\x58\x44\x85\x5b\x55\x3e\xb7\xf7\x8a\xb1\xb1\x31\xcb\xfe\xd6\x27\x1f\xac\x4f\xe7\x19\x7f\xe7\x47\x17\x4e\xde\x9e\x14\x7a\xe4\x79\x11\x01\x66\xe5\x9c\x19\x13\xae\xfd\x9b\x9b\x9b\xea\xf8\xf8\xf8\x71\xe8\xa6\x0b\x6f\x00\x91\xbc\xb0\x16\x97\x45\xda\x6d\x97\xb6\xe9\xee\x6f\xdf\xbe\x6d\xfd\xba\x40\x83\x24\xad\xa6\x61\xb5\x4d\x3b\xbf\xa5\x07\xa0\x28\x6a\xb5\x79\x7e\xd2\xbb\xbc\x73\x52\x3c\x53\xd4\x6a\xdb\x76\xbc\x03\x91\x11\x68\x71\xcc\x4b\x7c\x1c\xff\x41\x24\x3f\x0b\xd8\xa3\xe7\x69\x42\xa3\x03\x04\x00\x92\x65\x06\xf9\xf8\x8f\x17\xcf\xa7\x11\x0c\x87\xca\x9c\x1f\x1e\x6c\x54\xef\xec\xaf\xcf\x3f\x64\x85\x29\x9a\x89\xb9\x33\xf2\xcb\xc6\x98\x9a\x99\xf7\x6c\xcd\x8a\x07\x07\x07\xb8\x75\xeb\x96\x44\x98\xb2\x5f\xed\x78\x7c\x1c\x57\x49\x8c\x4a\x6d\xcb\x62\xad\x50\xe6\x9f\xca\x6f\x91\xab\xd0\x99\xe8\x44\xbc\x55\x5d\x5a\xcb\xca\xb0\x79\x21\xf1\x2e\x55\x86\x6c\x47\xca\x5d\xd5\x55\xa7\x45\x79\xca\xfa\xa5\xbe\xc1\xb2\xbe\xe1\x57\x5f\x7d\xd5\xd2\x40\x33\x9c\x3c\x51\xcb\x09\xf0\xb9\xd5\x38\x75\x46\x04\x50\x5e\x4c\xf5\x56\x31\xd5\xe7\x14\xa3\x0f\x50\x20\x90\xfd\x3c\x0e\x29\xb0\x85\x25\xc4\x6a\x51\xce\xea\x41\x2d\x81\x6e\xb5\x2f\x3f\xfa\xe1\xb9\x5b\x60\x45\xa1\x28\x6f\x48\xa9\x21\x32\x25\x57\x27\x6f\x88\x26\xf7\x9a\x22\x09\x41\x96\xee\x1c\xa7\x14\x19\x3a\x15\x59\xa4\xb1\xd6\x20\xf3\x5e\x1e\x0c\xe8\x94\x8f\x2e\xee\x6c\xaf\x4d\x7e\x0d\x36\x32\xd7\x04\x3d\x3d\x93\xbd\x75\xf0\x74\xef\x7f\x94\x6b\xea\x01\x14\x1d\x1b\xcb\xc2\x09\x33\xcf\xe0\x97\xfb\xce\xe1\x81\x4b\xdd\x74\x2b\xe1\x83\x0f\x3e\xa0\x93\x93\x93\x78\x6c\xa4\xe8\xcc\x31\x5c\x3b\xdf\xc5\xb5\xdc\x5b\x58\x6c\xdc\xda\x28\xa9\x6c\xde\xd7\xcc\x5c\xa3\x01\xb9\xd6\x6a\x6b\x81\x55\x45\x44\xb3\x2a\xe3\xd9\x71\xbf\x1a\x1d\x6c\x54\xfb\x1f\x6e\xcd\xee\xdd\xd9\x2e\xef\xde\xde\x9e\xdd\xb9\xbd\x3d\x7b\xef\xfd\xb3\xd3\xf7\xdf\x3b\x3b\xfd\xd9\xad\xf3\xd3\x5b\xef\x9d\x3d\x7d\xef\xce\x76\xf9\xde\x83\xcd\xf9\xdd\x51\xbf\x3a\x9c\xe7\x78\xc4\x0a\xc7\x20\x4c\x88\x9a\xd5\x42\xa6\xed\xc7\x68\x40\xca\x18\x0d\x70\x39\x85\x01\x33\x76\x32\x2e\x37\xab\x6d\xdc\xbc\x16\x33\xb6\x99\x99\xf1\xda\x6b\xaf\xc5\xb4\x4d\x2f\xbd\xf4\x12\x3d\xf1\xc4\x13\x56\xb8\x53\x24\xa8\x33\xf8\x1d\x6c\x07\xe7\x27\xbd\xb3\xbf\x70\x6f\xfd\xc5\x67\x0f\xd6\xfe\xcf\x8d\x32\xfb\x8a\x62\x5a\x6f\x3a\xb5\x6d\x21\x08\xc6\x86\x97\xbc\x86\x06\xe4\x70\x90\x13\x95\xa9\x2d\xac\xc5\xc7\x73\x69\xcc\x4d\xce\x74\xa6\x5f\xa9\x8b\x6b\xf3\x4c\xcd\x33\x7e\xf0\x68\xad\x1a\xd5\x2a\x00\x97\xf6\xe0\x4d\x6b\x6d\x60\x66\xc6\x0b\x2f\xbc\x40\xbd\x5e\x8f\xee\xdc\xb9\xe3\x46\xa1\x1c\x0b\x72\x19\xb8\x95\x8d\xc6\x2b\x51\x90\x99\xff\x49\xa0\x7e\xce\xb4\xfe\xb7\xde\x3d\xf3\xd5\xcb\x47\x83\xff\xab\x5f\xa9\x8f\x13\xa8\x47\x24\x15\x80\xb6\x8c\x72\xe4\x27\x57\x15\x46\x32\x54\x26\x92\xe9\x2c\xcd\x3b\x39\x68\x5f\x39\x90\x43\x20\x50\xaf\xa8\xe9\xf2\xc6\x2c\xef\x57\x19\xef\x1d\xf7\xab\xe3\x32\xd3\x76\xd3\x3e\x36\x6d\xb2\xb9\x3a\x7a\xf8\xfe\xf7\xbf\x9f\x9a\xac\xdd\xe5\x0a\x52\x88\x9a\x16\xbd\x97\x2d\x69\x1f\xa2\x14\x85\xae\xf7\x4a\xfe\x66\x59\xa6\x24\xea\x66\xb6\x5b\x8b\x73\x52\x93\xae\x94\x2e\x67\x99\x9e\x54\x19\x4f\x03\x50\xb0\xe0\x3a\xd5\x22\xd9\xe1\x48\xb4\x0e\xf2\x39\xb7\xdf\xc9\x7c\xe3\x33\xe0\x6c\x92\x88\x45\xba\xf6\x11\xa0\x32\xc6\xa0\x3f\xa7\x8d\xa2\xa6\x02\x08\xb6\x8d\x16\x02\xc3\x0b\x82\x84\xd6\xd6\x75\xdf\x65\x51\x58\x94\x5e\xf6\xf3\xaa\x2e\x94\x55\x96\xa5\xc9\xf7\x32\x8f\x55\xf3\x5a\x05\x71\xc7\xcb\x07\xbb\xd2\xc6\xed\x8b\xfb\x6b\x59\xff\x76\xe5\x99\xaa\x47\x9c\xbf\x0c\xc9\x3a\x4a\x2d\xda\x30\x37\x20\xdc\xc4\xc9\x6a\xf5\x25\x80\xe9\x6c\x9d\xee\x8f\xcf\x67\x3f\x9d\xae\xab\x0f\x99\xa0\xd9\x18\x34\xdc\x81\x3c\x6d\x5e\x60\x4b\x82\xb7\x58\xd8\x6d\xff\xd9\xb0\x2c\x76\x83\x56\xb8\xa1\x7d\xbc\x66\xbb\x5a\xef\x06\x07\x1a\xd7\x0b\xc9\xb8\xf6\xca\xe7\x0d\xa3\xbb\x26\x09\xc2\xd5\xca\x03\x06\x57\x9e\xd8\xcc\xd1\x55\xdd\xc6\x76\xed\x25\x51\x57\x5b\xef\x26\xa2\x3d\xe5\xda\x56\x8d\x7c\x06\x2e\xae\xc4\x42\x2d\x0d\xdb\x58\xbf\xaa\x3e\xed\x3f\xda\xc9\xde\x9c\x9c\xc9\xee\xb3\xc2\x04\xe1\x7c\x96\x92\xfc\xce\xa0\x72\xe7\x5c\x77\x06\x9b\x71\x05\xc4\xfc\x6c\xe9\xd8\x36\x7c\xc0\x59\x9f\xad\x52\x63\xc0\x80\xb5\xc4\x4d\x89\xc8\xee\x50\x3b\x36\xc0\x62\x04\xe0\xc8\xfc\x8d\x88\xe8\x10\xc0\x08\xc0\x11\x11\x1d\x31\x73\xf3\x0b\x1c\x54\x8a\x1f\x4c\x73\xfd\x60\xd2\xd3\x77\x4f\x7b\xfa\xfe\x5c\xf1\x03\x06\x0e\x6c\x7a\x22\x3a\x64\xe6\x23\x93\xfe\xd0\xa6\x35\xf9\x8e\x89\x68\x04\xc0\x02\x17\xb7\xb5\xbf\x00\x4c\x76\x8f\x1b\x37\x19\x97\x99\x93\x7b\xb6\xfc\xca\xaf\xfc\x4a\xb0\x01\x9d\xa0\x03\xcb\x1b\xad\x5b\x64\xb0\x3e\x53\x1b\x9f\x7c\xb0\xf6\xc5\x2b\x0f\x07\x7f\x67\x7d\x96\x3d\xaf\x18\x1b\x9e\x37\x47\x5b\x56\xd8\x39\x2d\xf0\x82\x95\x80\x00\xdc\xd8\x5f\x8a\x06\xa9\x13\xfc\x10\x91\xe4\x65\x84\xcf\x73\x4d\x17\xcf\x9d\xf4\xbe\xf6\x89\xfd\xb5\x6f\x5e\x39\x1c\x5c\xc9\x6a\x0c\x21\x0e\x26\x14\x6d\xb6\xae\xaf\x80\xf6\x45\x56\x76\xbc\xb8\xbe\xb2\x20\x8e\xfd\x8a\x2a\x7b\x56\x50\xd1\xab\x69\xe3\xf3\x77\x36\x3e\x75\xf9\x68\xf0\xdb\xfd\xb9\xfa\x04\x01\x85\x25\x0c\x22\xbb\x60\x84\xc3\x36\x08\x72\x60\xd3\x29\xae\x2a\x76\x6e\x26\x07\x4d\x76\x3c\xc6\xf5\xb5\x11\xa6\x92\x27\xb8\x7e\x33\xf1\x15\x63\x63\x73\x96\x7d\xf5\x13\xfb\x6b\x7f\x73\xe7\xa4\xb8\xd4\xd3\x6a\x60\x5c\xdf\x45\x04\x4c\x5d\x78\xf9\xe5\x97\xd5\xfe\xfe\xbe\xe4\xa1\xd2\x9a\x62\x9f\xa5\x78\x78\xfc\xac\xc5\x6f\x97\x01\x17\x19\x64\xe5\x82\xcc\xea\xba\x0e\x08\xd8\x7e\x48\x8b\x4c\x01\x37\x70\x34\x00\x5d\x29\xae\x66\x39\x4f\xe7\x8a\xcb\xb4\x1a\xdb\xa5\xdc\x8a\xb7\x0e\x45\xdb\x8f\xc3\x6d\xde\x9b\x00\x2b\xcd\x4d\x22\x82\x88\xc7\xd1\x17\x64\x66\x3f\x60\x9a\x06\x02\x20\x64\x35\x15\xfd\x4a\x0d\x8b\x4a\x15\x08\x4d\xa2\xf2\x37\x08\xdf\xfd\xee\x77\x63\xb0\xd1\x15\x16\xe6\x83\xf0\xe3\xdb\xdf\x45\x69\x7e\x5e\x17\x4a\xca\x04\xfa\x51\xf2\xf9\xab\x0e\x1f\xa5\x1e\xab\x84\x45\x75\x5d\xe5\x9d\x34\xab\x5b\xb0\x52\x39\x13\x3d\x61\x5a\x15\x34\x9a\x9c\xc9\xde\x3b\x39\x9b\xfd\xb4\x2a\xe8\xd0\x01\xe9\x00\x21\x58\xc6\x1c\x21\x06\x61\xa1\x70\x3e\xef\x10\x8a\xc3\x4f\xd1\x20\x81\x83\xbc\x4b\xc7\x41\x08\x41\x38\xd6\x92\xe3\x72\x14\x79\x4b\x11\x11\x82\x22\x99\xc2\xa7\x71\x06\x15\x9b\x3a\x62\x8c\x8e\xc9\xb2\xff\x0d\x9b\x19\x6a\xdd\x91\x3f\xc0\x6b\x8d\x16\xdc\xb0\xcf\x80\x88\x1d\xd3\xad\x73\x4c\x26\x5b\xea\xe6\xe8\x42\xef\x27\xac\x30\xe1\xf0\xdc\x1d\xb7\x12\x90\xda\x7b\xf0\x2c\x03\xbe\x0b\x69\x74\x7d\x7d\xdd\x6d\x58\xc6\xd1\x19\x46\x06\x08\xb8\x93\x96\xd1\x00\x05\xe7\xb2\x31\x16\x10\x0b\x2a\x2c\xe8\xb0\x40\xc6\x02\x8f\x43\x10\x8e\x40\x38\xb4\x7f\x0c\x36\xcf\xc8\xc5\x35\xa0\x45\x82\xa0\x11\x80\x91\x01\x47\x16\xb0\xd8\xbf\xa9\x99\x94\x6b\x97\x85\xcb\x33\x89\x5c\xfb\x27\x93\x49\xb2\x4f\x7a\xbd\x9e\x7c\x1e\xbb\x44\x1c\x68\x01\x50\x5c\x7a\xd4\xbf\x7c\xe9\x51\xff\x6f\x6c\xcc\xb2\xcf\x99\x8d\xe4\x82\xfe\xb3\x8e\x9e\x06\xa8\x88\x55\x43\x01\xb8\x6e\x5b\x52\xec\xf3\x20\x2f\xf2\x50\xc8\x91\x8e\x48\x17\x96\x4b\xaa\xa8\xe9\xf2\x13\xe3\xe2\x6f\x3d\x7b\xb8\xf6\x37\x2f\x1c\xf7\x77\x94\x76\x67\x1e\xd9\xed\x0d\xe2\xb6\xe1\xd3\x9f\xfe\x74\xdc\x76\x00\xd0\xf6\x70\x42\x34\xf5\x4f\xf5\x47\xae\x34\x86\x5b\xd3\xfc\xdc\xc7\x0e\x06\x5f\x5f\x2b\xd5\xe7\x54\xb3\x4f\x4d\xe0\x2e\x65\xf6\x54\x28\xe9\x24\xd5\x76\x81\xfd\x5b\x71\x2d\x35\x4b\x2c\x47\xd2\x5a\x8b\xb0\x5f\x6d\xfc\x5e\x4d\xbb\x67\x27\xf9\x4b\xcf\x1e\x0c\xbe\x78\xe6\x34\xdf\x11\xfd\x51\x44\xed\xb2\x6e\xc1\xf8\x94\x6d\x1b\x52\x8a\x60\x0b\xf8\x74\x84\xc6\x58\xb2\x24\x92\x6d\x9a\x15\x5a\x52\xf5\x73\x60\x0c\x00\x7f\xf1\x8b\x5f\x54\x4f\x3d\xf5\x14\x10\x9a\x7e\x14\x9a\xbd\x2c\x14\x35\x7b\xb9\xf4\x88\xa8\x00\xa1\xbf\x39\xcb\x9f\xd8\x1d\xf7\xae\x6e\x96\xd9\x93\x24\xd8\xa8\x61\x3b\x90\xf7\xee\x97\xfd\xa0\x73\xbf\xf6\xeb\xb8\x81\x0d\x8f\xa0\x65\xdc\xc0\x04\x13\x46\x08\x3f\xba\x34\x45\xdb\x15\x11\xde\x1c\x2e\xe7\xc9\xd4\x8a\x27\xa3\x41\x75\xe7\xc1\xc6\xfc\x67\x93\xbe\x1e\xa1\x21\xf6\x39\xda\x4b\xa2\x19\x00\x3f\xff\xfc\xf3\xb4\xb5\xb5\x45\xb7\x6e\xdd\xb2\xcd\x8a\x69\x46\xba\x27\xe2\x38\xb1\xfb\x88\x13\xcf\x64\x9a\x55\x5c\x39\x5d\x2e\xa9\x38\xc4\xae\x9c\xd8\x65\x93\x8a\x9f\xaa\xf7\x22\xd7\x8d\x34\x21\x76\xc5\x89\xaf\xb1\x20\x6e\x97\x1b\x69\x51\x5e\xab\xb8\x87\x3a\xfb\x55\xba\x4b\x11\x22\x8f\x60\x95\x11\xdb\x53\x6e\x89\xb2\xc6\x65\x84\xac\x98\xf2\x66\x6f\xc6\xe7\x88\x91\x87\x8e\xea\xb6\x0e\x49\xf2\x5f\x84\x67\x9a\xe8\x4d\x1a\xb7\xc4\x9a\xa5\x66\x6a\xe6\xbb\x18\xf4\x22\xa7\x9a\x34\x9c\x4e\x10\x59\x82\x3e\x42\x0a\x05\x02\x77\x53\xaa\x2e\x08\xf7\x69\x75\xdd\x4b\x68\xe6\xc5\xa0\x0d\x5a\x62\x6e\xe0\xf2\xa0\xa8\x7e\xb6\xf9\x6e\x86\x3e\x05\x6d\x21\x30\x9a\xc3\x2d\xd5\xed\x87\x97\x7a\x3f\x3c\x39\x9f\xfd\x0c\x84\xb1\xb1\x6e\x8c\xd1\x2c\x81\x9e\xa1\x99\x54\x6f\x69\xb7\x86\x85\x41\xc6\xad\xf3\x5f\xff\xeb\x7f\xc5\x78\x3c\x26\xad\xb5\x44\x87\x04\xcf\x80\x63\x3e\x09\x00\x6a\x3e\x9f\x6b\x00\xd8\xda\xda\xa2\xf3\xe7\xcf\xdb\xa5\x18\x44\xe1\x6a\x23\x7b\x2d\xb7\x4f\xd0\xd4\x6c\x86\xe7\x56\xf0\xa0\x59\x8a\x6c\xeb\x58\xa2\x01\x18\x25\x1a\x17\x97\xdd\x63\x65\x4a\xcd\x29\xce\x53\x32\x4b\xbc\xd9\x6f\x20\x37\x41\x33\xf1\xd6\xee\xcb\x32\x31\x71\x4f\x4d\xdc\x12\xcd\x5e\x2d\xa5\x71\x0f\xd5\x40\xeb\x1c\x22\x0d\x00\x8f\x1e\x3d\x92\x5b\xbd\x3b\x9a\x79\xe9\xa5\x97\xd4\x95\x2b\x57\xf0\x95\xaf\x7c\xc5\x0d\x20\x6a\x16\x67\x28\x66\xce\x00\xf4\x88\xa8\xcf\xcc\x83\xb3\xa7\xbd\xb3\xcf\xed\xad\xbf\xf8\xe4\x71\xf1\x6b\x83\xb9\xba\xaa\xd0\xcc\xe3\x90\x43\xc7\x3b\x23\x45\x30\xbc\x38\x1a\x06\x01\x41\x86\xf0\xdd\x65\x16\x8f\x5c\xc1\x68\xdb\x34\x06\x50\x96\x6b\x5a\xcf\x35\xa9\x2a\xe3\xfd\xfd\x8d\xf9\xfd\xb9\xd2\x95\x49\xe2\xbe\xbb\x70\x97\x70\xaf\xd7\xc3\xab\xaf\xbe\xca\x5f\xf9\xca\x57\x94\x75\x19\xd9\xdd\x76\x0d\x6f\x50\xe6\xe3\x67\x44\x94\xd9\xc9\xc9\x00\xfa\x83\xb9\x3a\xf3\xe9\xbd\xe1\x2f\x5c\x7d\xb8\xf6\x77\xfb\xb5\xba\x0a\x3f\x9a\x7d\x9b\x48\x50\x05\x7b\x59\xd5\x92\x8f\xe6\xd7\xd2\x86\xeb\x27\xb6\x95\xf6\xf9\x01\x11\xc9\x77\xf4\xa1\x55\x07\x32\x4d\xeb\x39\x53\x3d\xcb\xf5\xde\xc9\x40\x1f\x95\xb9\x77\xad\x5a\x57\x9a\x4d\x66\xe9\xe7\x63\x1f\xfb\x18\x1d\x1f\x1f\xd3\x68\x34\x8a\xb3\x96\x74\x14\xcb\x3a\x5b\x74\x40\x53\xe6\x5a\xad\x8a\x70\x62\x2d\x43\xa2\xa3\x96\xe9\x5d\x9a\xe5\x6c\x43\xd8\x6f\x0f\x8d\x9a\xa0\xcb\x4c\x9f\xce\x15\x4f\x34\xb8\x72\x71\xa3\x8c\x28\x7e\x2e\x07\xaa\xfd\x08\x96\x09\xba\x54\x2d\xdd\xb4\x15\xdc\xce\xe4\x42\x81\x0b\x34\xc3\xe8\x5a\xda\x5b\xe4\x7b\xa5\xa9\x28\x2a\x35\xec\x19\x57\x11\xc2\x7e\x69\xdd\x13\x91\xb5\xb8\xac\xa4\xb1\x27\x9e\xaf\xe2\x2a\x4a\xbd\x8b\xef\x3f\xaa\x2b\x27\x36\xf1\x75\xa5\xed\x72\xbf\x2c\xd2\x60\xe3\xdf\x2e\x97\x51\x2a\x8f\x54\xdc\x2e\x37\xd2\xb2\xbc\x52\xf1\xe4\x37\xed\xec\xd7\x68\x92\xa2\x2c\x37\xd8\x4e\x9e\xc4\xc4\x48\x9d\x61\x3c\xdd\xcc\xee\x8c\xcf\xe7\x37\xcb\x35\x75\x8f\xc9\x6a\xe6\x1c\x98\xb7\x83\x6b\xfb\xaf\x99\x79\x0b\x3f\x98\x43\x9c\x15\xd0\x0f\xb3\xdf\x43\x45\xbc\x94\x56\x11\xf7\xc0\x17\x6a\xa2\xb2\xa9\x8f\xaf\x87\xa5\x3b\x59\x4e\x4b\xaf\x21\x0b\x1f\x6c\x24\x9b\x13\xb9\x6b\x97\x2c\xc6\x6a\xb0\xab\x42\x8c\x68\x31\x98\x25\x4d\xdd\xec\xcc\xe1\xec\xea\xcd\x60\x22\x5d\x15\x74\x38\x3e\x9b\xbd\x7d\xbc\x93\xbf\xc3\x8a\x26\xf0\x82\xdd\xba\x8a\xac\xc5\xa5\x65\xa2\xb6\x7d\xb5\xb7\xb7\x07\x03\x42\xe2\x38\x31\xff\x4c\xba\x09\xfe\xdb\x7f\xfb\x6f\xfa\xc6\x8d\x1b\xce\x6d\x24\xe6\x4a\x38\x90\x62\x2d\x30\xa6\x5e\x76\x8b\xfd\x09\x8c\xd5\xc5\xb8\x8f\xc6\x30\x96\x17\x66\x1e\x11\x91\xb5\xbc\x38\xf7\x91\x71\x03\x1d\x02\x38\xb4\xcf\xcd\xbb\x11\x8c\xb5\xc5\xe4\x23\x77\xc4\x75\xd6\x27\xf2\xbb\x07\xdb\x39\x0c\xce\x3d\x04\x34\x63\xfc\xcf\xfe\xec\xcf\x80\x36\x2f\xc0\xf7\xbe\xf7\x3d\xfd\x87\x7f\xf8\x87\xee\xac\x26\x03\xd4\xed\x75\x4e\xcd\x96\x18\x79\x4f\xab\xe2\xca\xc3\xfe\xd5\x0b\xc7\xbd\x17\xd7\xe6\xea\x2a\x35\x9a\x3b\xe2\xf1\xeb\x46\x92\x19\x77\x52\x63\x4b\x81\x16\xe2\x68\x18\xb1\x17\xd0\x8d\xcc\x68\x23\x6b\x07\x7c\xa3\x32\xc1\x80\x62\x0c\x37\x66\xd9\x73\x17\x47\xc5\x97\x77\x8f\x8b\x5d\x05\x1a\xd8\x76\x50\xb8\x89\x9e\xbd\x06\xd0\xec\x90\xfe\xab\xbf\xfa\xab\x2e\x4f\x31\xbf\xc5\xc5\x77\xca\x0b\x90\x67\x1a\x83\x33\xd3\x7c\xe7\xe9\xa3\xc1\x97\x07\x15\x5d\xa5\x66\x43\xb8\xb0\x0f\x10\x91\x89\xa1\x65\xeb\x69\xf0\x34\x26\x49\x38\x52\x6c\x48\x3e\xe2\xe0\xb9\x94\xa7\x1c\x7e\x86\x80\xbe\x33\xa6\x8d\xad\x69\xf6\xb9\x4b\xa3\xfe\x17\xce\x9c\xe6\xbb\x30\xd6\x33\xe3\x36\x52\x30\xf3\xf8\x00\xb7\x33\x32\xfe\xcd\xbf\xf9\x37\xfa\x83\x0f\x3e\x58\xe4\x0a\xb2\x21\x85\x29\x62\xb9\x03\x00\x7a\x15\xe0\x92\x12\x8e\x9d\x42\xcb\xfa\xfc\xd0\x00\x98\xf8\xc0\xaa\xc6\x64\xda\x6c\x84\x54\xce\x73\x3d\xd1\xaa\x99\xa9\x9d\xc8\xa7\xf5\x2c\xf8\x06\x8e\xe1\x26\x18\x59\x2b\x69\xc4\xd8\xed\x08\xa0\x54\x9c\xf6\x93\x78\x61\x99\x61\xdb\x50\x8c\xa2\x5f\xab\xad\x41\xa5\x06\x08\x99\x58\xdc\xaf\xab\xba\x33\x52\x42\xbb\x2b\x9f\x94\xab\x68\x59\xfc\xd8\xb4\xfd\xb8\xae\x9b\x94\x89\xef\xaf\x2b\x3c\x4e\xdd\x96\xf5\x9b\x0c\x8b\xe2\x74\xb5\x6f\x51\x1f\x2f\xcb\xc7\xd1\x8b\x31\xbb\x5b\xd7\x80\x71\x19\xd1\x64\xde\xa7\xa3\xf1\xb9\xec\xd6\xf8\x7c\x76\xb3\x2a\xe8\x88\x03\x16\xd5\xe2\x46\x80\x15\xe8\xd4\x58\x21\xcc\xd6\x49\x70\x60\x20\x66\xd0\x52\x53\xb3\x20\x5c\x72\x68\xa7\xc2\xf9\x39\x2d\x76\x29\x29\x2c\x36\x42\xb3\xdc\xd8\x5b\x23\x23\x80\xe3\x4c\x1d\xe4\xe9\xd2\x2a\x06\x64\xe9\x99\xdd\xbd\xfd\x25\x01\x80\x5c\x59\x8e\x36\xc9\xcd\xbf\x71\x02\x88\x3c\x66\x83\x13\x68\x91\xb6\x4c\xcd\x66\x7b\x55\x8f\x46\x93\xed\xec\xdd\xd1\x85\xfc\xed\xf9\x40\x1d\x21\x5c\x45\xe3\xe6\x6f\x40\xcc\x43\x12\x2e\x1d\x5c\xbf\x7e\x5d\x5f\xbf\x7e\x5d\x27\x56\x46\x2c\xa2\x83\xe4\xf8\xfa\xef\xff\xfd\xbf\xeb\x1b\x37\x6e\x98\xea\xf9\xe3\x04\xcc\x98\x08\x0e\x61\x84\xb7\xa8\xd8\xd5\x3f\x13\x34\x2e\x1d\x0b\x5c\xec\xaf\x74\xf9\x38\x90\x22\xde\x1d\x89\xf8\xee\xcf\x5a\x5c\xe0\xe7\xb4\xc4\x9b\x67\x3a\x20\x67\x79\x39\xe0\x81\xf9\x9d\x3b\x77\x62\x7a\x73\x6d\x4e\xb8\x06\x02\x97\x08\x80\xc1\x7a\x99\x6d\x5d\x1a\xf5\xff\xb7\xcd\x69\xfe\x59\xa5\x69\xc3\x6b\x92\xd1\x2a\x32\xf8\x1b\xeb\x2a\x02\xd8\x7b\xfa\x9b\x5b\x37\x7c\xc5\x23\xd3\xcf\xa1\xe0\x8f\xef\x1d\x08\xb6\x63\x4a\x94\x6b\x0c\xa7\xaa\x57\xd3\xb9\xb3\xa7\xf9\xe7\x2f\x1f\xf5\x3f\x5b\x54\x34\x00\x30\x60\x73\x54\x03\x22\xf7\x06\x11\xb9\xd5\xb5\xcf\x3e\xfb\x6c\xdc\x07\x29\x85\x36\x07\x50\x0c\xe6\x6a\xeb\xa9\xa3\xfe\xd5\xed\xd3\xfc\xf3\x99\xa6\xad\xa8\xff\x02\x13\x5f\x48\xbb\x5e\x11\x89\x2d\x24\x32\x6d\x48\x62\xbe\x87\xa5\xc4\x93\xf2\x54\xba\x8e\x03\x23\x44\x43\x67\xaa\x57\xab\x4b\xe7\x26\xf9\x73\x3b\x27\xbd\x2b\x6b\xa5\x1a\x22\xfc\xbe\x2d\x97\x8f\xed\x93\xa7\x9e\x7a\xaa\x4b\x19\x5d\xe6\x4e\x6a\xc5\x5d\xc6\xe8\x17\x69\x14\x41\x9c\xd7\x5f\x7f\xbd\xc5\xdc\x85\x86\x21\xb5\x0b\x0d\x40\xd7\x19\x97\x65\xc6\x93\x9a\xb8\x04\xa7\x90\x25\xb5\x9e\x01\x21\xf2\x26\x6e\x7f\x2c\x12\x33\xcc\x65\x97\x37\x1f\x8a\x5a\x03\xd8\xc7\x93\x8c\xdf\x15\x16\x7c\x78\x19\x8f\x00\x64\x4c\x45\xbf\xa2\xad\xc1\x5c\x6d\x98\xd3\x38\xdd\x87\x4b\x01\xaf\x8e\xd0\x05\x46\x52\x0c\x20\xf5\x3c\xce\xa3\x2b\xa4\xac\x0e\x29\xbf\xe2\xb2\xfc\x5b\xcc\x2a\x11\x37\xfe\x5b\x35\xdf\x4e\x6b\xd5\x92\x78\x5d\xf5\x48\x85\x55\x85\xce\xa2\xeb\xe4\xbb\xa7\x9f\x7e\x3a\x3e\x84\x4d\x82\x16\x6d\x4c\xfd\x72\x5e\xc3\x94\x99\xa7\x9c\xd1\x78\xba\xae\xee\x3f\xda\xcd\xdf\x9e\x9c\xc9\xde\x35\x4b\x75\xbd\x38\xb6\x86\x07\x13\x9c\x01\x5d\x0a\x7a\x08\x4d\xd4\xdd\x87\x4c\xc7\xab\x55\x21\xd5\xd8\x03\x0a\xfd\x28\x27\x37\x3f\xd8\xa6\x76\xe9\x02\x2b\x8c\x2d\x3f\xd4\x58\x03\x88\xe5\x64\x83\x61\xb0\xb1\x9e\xe1\x26\x6f\xfa\x02\xd9\x98\x4f\x02\x66\x2c\x81\x8f\x9b\xcf\x26\xd4\x0a\xf2\x14\xcc\x00\x74\x86\xc9\x74\x43\xdd\x7e\xf4\x44\xfe\xe6\xe4\x4c\x76\x87\xc1\x4d\x5f\x9b\xf9\x1b\xcc\xec\xac\x2d\x46\xc1\x92\x96\x05\x0d\x34\x42\x38\xcf\xf3\xae\xb1\x2c\xe9\xb1\x53\x90\xcb\xb4\x6f\xbc\xf1\x06\xae\x5f\xbf\xee\x2c\x2e\x96\x2f\xda\xf2\x8d\xb5\xa3\x92\xf3\x5e\xe0\x57\xf8\x58\x0b\x8c\x75\x73\x8d\x99\x79\xcc\xcd\xca\xa8\x00\x98\x98\xbf\x09\x33\xbb\x3f\x13\x7f\x62\xda\x3f\x31\x7d\x61\xc7\xa3\x9d\x6f\x23\x79\xb5\x9d\x97\xa3\x99\x19\xf7\xee\xdd\x8b\x3e\x5c\x68\x85\xfd\xfb\x7f\xff\xef\x2b\xd3\x7f\xf1\x3c\x0e\x2f\xa4\x19\x39\x81\x8a\x9d\x93\x7c\xf7\xec\xa4\xf7\xf9\xa2\x56\x3b\xe4\x5c\x44\x5e\x00\xbb\xc0\x1e\x13\x5b\xab\x8b\xdd\x0b\xc8\xca\x01\x27\x2f\x24\x0d\xc0\x0f\xf5\xd0\xac\x17\xd3\x51\x02\xbf\x43\xc8\x98\xe6\xd9\x60\x38\xcf\xae\x5c\x3c\x2e\xbe\x7c\xfe\xa4\xd8\x61\xe6\x02\x66\x0f\x1a\x63\x35\x51\xcc\xac\xb8\x59\x8c\xa2\x98\xd9\x81\x37\x7b\xea\xb3\x05\xaa\xc2\xda\xa2\xc8\x9c\x43\x04\xa0\x58\x9b\x67\xdb\x4f\x8e\x8a\xcf\x0c\x2a\x75\x15\x4c\xb9\x6b\x97\xb4\xa6\xc4\x16\x57\x73\x25\x27\xde\xba\x6b\x8e\xe2\x09\x79\x67\xe5\x2a\x8b\xf6\x86\x33\xe3\xc5\xa5\xe9\x58\x8e\xa2\x28\xa6\xc1\xb0\xcc\x9e\xdd\x19\xf7\x3e\xbe\x35\xcd\xb7\x11\x4e\x5c\x56\xb2\x4f\x60\x64\xe1\xb5\x6b\xd7\x94\x00\xbc\x40\xb7\xdc\x59\xc6\xdf\x35\x00\x95\xda\xc7\x45\x66\x12\xfb\x96\xe2\x02\xe5\xe0\xb5\x84\xdf\xca\xcc\x0c\xe6\x60\x0f\x80\x4a\x71\x59\xe6\x7a\xaa\x15\x97\x88\x06\x5d\x93\x48\xea\x9c\xfe\x4d\x90\xbf\xd5\x24\x39\xb1\x44\x12\x11\x11\x00\x80\x88\x17\x5b\xd0\x9a\xd7\xc6\x67\xe8\x34\xbc\x70\xf3\xac\x16\xcf\x65\x14\x45\xad\x36\xd6\xe6\xd9\x99\x5c\x53\x3e\xcf\x82\x55\x45\x8b\x84\xaa\x0c\x5d\x7d\xdc\xa5\xe5\xad\xea\xf2\x58\xf4\x7c\xd1\xfb\x65\xcf\x96\x59\x1f\x96\x59\x2d\x64\xdb\x96\xb5\xb1\xab\xfc\x2e\x8b\x91\x1c\x8b\x71\xbc\x2e\x41\xd3\xd5\x8f\x5d\x20\xb1\xab\x6e\xca\x98\x43\x01\xc0\x8e\x77\x4b\xbc\x76\x32\xa6\x82\x59\xde\x6a\x04\x91\x35\x9f\x17\x3a\xa7\xd1\xe4\x4c\xf6\xc1\xa3\xdd\xde\x9b\xbd\x29\x6f\x0f\x8e\xf5\xb3\x04\x28\xcb\xd3\x25\xa3\xb1\xfb\xa7\x04\x5e\x70\x6f\x20\x11\x34\x64\xc4\x3b\xc3\x4d\x56\xb5\xec\x9a\x41\x70\xfe\xef\x38\x13\x38\x08\xe1\xcb\x60\x0f\x84\xfc\x8e\x1a\xbe\x34\x4b\x3b\x8d\x4b\x8a\xfc\xbe\x4c\x2c\xc1\x8b\x67\x80\xde\xd2\x62\xe7\x2c\xc8\xfd\x24\x6c\x1d\xcd\xfb\x48\x32\xb1\x8c\x27\x0b\x31\x56\x28\x56\xa8\x66\x43\xb5\x77\xbc\x93\xbd\x3d\x3e\x9f\xbd\xa3\x73\x1a\xa1\x59\xb1\x23\x41\x80\x13\xda\xd6\x3d\x22\xbf\x6d\xe2\x10\xbd\xd4\x78\x5a\x74\x6d\xef\x5d\xfa\x87\x0f\x1f\x02\x08\x5d\x8a\xe6\xcc\x9a\x60\x4c\x19\x41\x27\xcb\x54\xa6\x8e\xce\x2d\x21\xca\x71\x2b\x5b\x82\xef\x10\x5a\x4b\x02\xe5\x51\x02\x26\x19\x4f\x00\x16\xeb\xca\xea\xea\x07\x79\xad\x01\xa8\x7f\xf5\xaf\xfe\x95\xdb\xbb\x85\x1c\x18\x6d\x00\x8b\x70\x8b\x14\x3d\x4d\x83\x0b\xa3\xfe\xd5\xf5\x52\x5d\x55\x0c\xb3\x5f\x0b\x3b\x00\x4b\x62\xfc\x09\x3c\x63\xc6\xb6\x9c\x4f\x45\x62\xa5\x91\x01\xf1\x9e\x91\x47\x7c\x3e\x86\xd3\x11\xb8\x46\x1b\xf8\x00\x36\x3f\x42\xae\xb1\x7d\x66\x9a\x3f\x77\xf9\x51\xff\xd9\x0f\xcf\xcc\xf6\x01\x14\x20\x77\x78\xaa\xfb\x1e\x2c\x4e\x11\x97\x7d\x66\xda\xe5\x40\x9c\x01\x2d\x39\x11\xe5\x99\x46\xb1\x5e\x66\xe7\xb6\x66\xf9\xb3\xb9\xa6\x2d\xaf\x3a\x78\x82\x77\xed\x45\x48\x37\x2c\x85\x64\xd0\x06\x0f\xe8\x2d\x79\x48\x2b\x0a\x40\x21\xaf\x08\xae\x23\x59\x6b\xe9\xd9\x64\x66\x65\x63\xbf\x56\xbb\x67\x27\xbd\x4f\x9c\x3d\xcd\xff\xf2\x60\x7d\x7e\x38\x57\xba\x24\xbf\xb1\xa0\x73\x17\xda\x6b\x66\xc6\x17\xbf\xf8\x45\x25\x0c\x1c\x32\x2c\x93\x81\x2d\x3e\xbd\xaa\x56\xea\x08\x28\xf1\xcc\x85\x05\x9b\x34\xb5\x36\x61\xaa\x09\x65\x99\xf1\xb4\xa6\xc6\x55\x14\xf0\x4f\xc4\x40\x39\xd4\x10\xe5\x32\x2f\xfb\x51\x43\x1b\x4a\x3b\x34\x83\xd3\x33\xf2\xc0\x9c\x63\x2e\xfc\x60\x97\x9a\xaa\x40\xe6\x0e\xdd\x3a\x11\xa0\xf2\x9a\x86\x6b\x73\xb5\x65\x57\x16\xa1\xdd\x4f\xab\x80\x17\x60\x35\x20\xf2\xf3\x84\x55\xeb\xf1\x57\x9d\x57\x17\xe3\x5b\x96\xff\xa2\x32\x16\xe5\x91\xb2\x78\x74\xa1\xfb\x55\x80\x5d\x17\x68\xef\x0c\xd7\xaf\x5f\x77\xe3\x5d\xce\x65\x80\x30\xc5\x8b\xf9\x15\xcd\x52\x58\xf0\xa4\xce\x31\x3a\xde\xc9\xde\x19\xed\xe6\x6f\xcc\x07\xb4\x07\x82\xb6\xda\x96\xd4\x8e\x2c\x90\x30\xb7\x42\x78\x8b\x77\x96\x36\x04\xe2\x31\x10\xc1\x59\x25\x1d\x33\xb2\x99\xd9\xc9\xaf\x4d\xbd\x9b\x3f\xa7\xaa\x19\x10\x63\x90\x8e\x9c\x04\xe8\x69\x87\x3d\x1d\x1b\x73\x28\x83\xc3\x73\x85\x5c\x2f\x19\xc6\x6b\xef\x48\xac\x72\x70\x34\xef\x11\x9b\x6b\x97\x53\x2a\x2c\x20\x83\x63\xe0\xdc\xac\x98\xaa\xe6\x03\xda\x1f\x9f\xcb\x6e\x1e\xef\xe4\x37\xe7\x03\x75\x08\xef\x12\x71\xcb\x7d\xc5\xdc\x96\x4a\x30\xda\x00\xbc\x24\x42\x8a\x46\x53\x63\x29\xf5\xce\x8d\x9d\xf5\xf5\x75\x77\x2d\x78\x66\x00\x2e\xe0\xc1\xae\xad\x63\xcb\x0a\x83\x06\x78\xb9\xa5\xd4\xdc\x80\x33\xe9\x02\x8a\x97\x36\xbb\x79\x2c\x08\x5d\x63\x12\xb8\xb9\x3e\xb8\x7e\xfd\xba\xfe\xf5\x5f\xff\x75\x75\xe5\xca\x95\x55\x00\x9b\x0d\x29\xab\x69\x63\x71\x01\x8a\x61\x99\x6d\xec\x8e\x7b\xbf\x50\x54\x6a\x87\x80\xdc\xae\x94\x91\x13\x4d\x53\x96\x82\xe6\xd6\x73\x5f\xcb\xcf\xed\x44\x5d\x37\xc4\x24\x80\x01\xc0\x62\xf0\x71\x22\xcf\x94\xd8\xe0\x40\x0e\x30\x88\x91\xf7\x2b\x75\x71\xe7\xa4\xf7\xc9\x5e\x4d\x03\x08\xd7\x88\xb0\x2e\xc4\xab\x4a\x9b\xbc\xbc\xa9\x42\xf6\x8b\x4b\x3f\x98\x67\x1b\xe7\x4f\xf2\xdd\xc1\x5c\x5d\x22\xa6\x82\xdd\x19\x63\x21\x7d\x08\x38\x11\x00\xb8\x80\x17\xc0\xd3\xae\xb7\x8c\x42\x12\x5d\xd0\x01\x12\xd4\xf9\x7c\x0c\x20\x74\x1a\x86\x8d\xcf\x41\x3e\x99\xc6\xd6\x66\x99\x5d\x39\x3b\xc9\x2f\x0f\xe7\x6a\x88\xf4\xca\x22\x2b\x53\x15\x11\xe1\xf5\xd7\x5f\xd7\x67\xcf\x9e\x95\xd6\xca\xb8\x6f\x3a\x3d\x3a\xf1\x7d\xea\x61\xd7\x60\x8c\x07\xf6\x22\xcd\x39\x58\xfe\x2c\x1e\x4b\x8b\x4b\x55\x9a\xad\xab\x83\x89\x41\x26\x22\x59\x86\x2a\x06\x9a\x33\x85\x39\xa1\x00\x07\x26\xdc\x47\x4e\x0d\x44\xf6\xe0\xc3\xa1\x6b\xb1\xb4\x92\x45\x3a\x79\x1d\xe2\x24\x86\x53\x23\xc5\xfb\x5e\x4d\x83\xe1\x3c\xdb\x16\xf3\x5c\xdc\x7e\x2e\xec\x00\x56\xf8\x6b\x42\x0a\xe4\x20\x71\xdf\xf5\x2c\x7e\xb7\x2c\x9f\x2e\x0b\xc2\x47\x09\x8b\xc0\xc0\x22\xe0\xd6\x65\x8d\x59\x35\x2c\x6a\x63\xd7\x58\x5e\x24\x58\x16\xd5\x43\x12\x58\xcc\xac\x53\xe5\xba\x78\x9f\xfe\xf4\xa7\x15\x80\xd6\x12\x58\x61\x7a\x8f\x05\x50\xe3\x06\x50\x34\x9e\xf7\xe9\xf0\xe1\x93\xbd\x37\x8f\x9f\xc8\xdf\x9c\x17\x74\x04\x82\xb6\xfb\x33\xb8\xb1\x2f\x54\x44\x22\xaf\x61\x59\x86\xeb\xa6\xbc\x98\x08\x52\xf7\x94\x4c\xcb\x63\xf6\x10\x40\xd8\x78\x1c\x44\xa4\xd6\xdc\x82\xd6\x44\x5e\x73\xf0\xa3\x8b\x6f\xf2\x63\xb7\x67\x84\x07\x37\x20\x78\x77\x94\x05\x41\xe2\x5d\x43\x6e\xdc\xae\x0f\xfb\x7a\x8b\xd9\x34\xf6\x81\x36\xf3\x85\xde\x7e\x74\xa1\xf7\xe6\x74\x53\xdd\x05\x41\x4e\x74\xb5\xd7\x16\x0c\x54\x16\x58\xca\xb9\x2d\x75\x5d\x8b\x86\x06\x63\x20\xfe\xee\xab\x5a\x60\x82\x3c\x4e\x4e\x4e\x82\xf1\x67\x26\xff\x9a\x6e\xe4\xd8\x22\x62\x81\xae\xb5\x0c\x49\xd7\x4e\x00\x48\xec\x5f\x04\x72\xe4\x5f\x25\x81\x0a\xf9\x0d\xe5\x9c\xb5\xe5\xfa\xf5\xeb\x7a\x7f\x7f\x1f\xf6\xa4\xe7\x3f\xf9\x93\x3f\xd1\xef\xbf\xff\x3e\xa2\x90\x12\x3e\x30\xee\x90\xc0\x25\x62\xdd\x22\x60\xe4\x04\x14\xdb\xa7\xf9\xf6\xd6\x34\x7f\x2e\x67\xda\x20\x78\x8b\x1f\x89\xb1\x11\x2b\x8b\x26\x77\x58\x22\x90\xef\x03\xf9\xca\x66\x57\x69\xf6\x20\x38\x1a\xfd\xad\x20\x66\x16\xb8\x78\x12\x5c\x9b\x51\xac\x72\x4d\x1b\x9b\xd3\xec\x13\xdb\xd3\x7c\x0b\x66\x19\xb0\xe1\xf3\x72\x5e\x87\x75\x19\x45\x65\xf8\x49\xca\xf0\x16\xb2\x9c\x99\xf3\xb5\xb9\xda\x3a\x37\xe9\x3d\x5d\xd4\xb4\x43\x60\xe5\xfa\x44\xd4\x23\xec\x87\xb6\x92\xef\xad\x27\xe4\xe5\x61\xe4\xbe\x95\xf2\xcd\xcf\x39\xf3\xa5\x04\x93\xed\xc9\xf3\x12\xaf\x9c\x88\x7e\x6c\xc0\xa6\x2a\x2a\xda\xdd\x9c\xe5\x4f\xad\x95\xd9\x16\xf9\x3d\x69\xdc\x52\x71\x29\x07\x6d\x79\xcf\x3d\xf7\x9c\xad\x96\xe4\xcf\x92\x66\xe2\x67\x49\xc5\x37\x76\x15\x2d\xd4\x14\x12\x21\x29\x94\xa4\xc9\x4f\xbc\x73\x7f\xcc\xac\xab\x8c\xcb\x59\xce\x93\x4a\xf1\x54\x72\x1e\x71\xd9\x1e\x74\xd2\xbe\x15\x40\x4e\xf1\x91\x83\xb3\x8a\x6c\xb2\xf6\x04\x3e\xb6\x44\x60\x07\x2e\x85\x66\xc8\x26\xa1\x19\x0e\x24\x0b\x74\x6a\x1e\x88\x9a\xad\xff\xfb\x95\xda\xee\x57\x6e\x65\x91\xfb\x70\x76\xc0\x0a\xed\x1b\x76\x79\x1c\xda\xc2\xd3\xf6\xe7\xe3\x5a\x5b\x52\xe0\x71\x55\x4b\xda\x5f\x45\xf9\x32\xef\x54\xfa\xae\xfc\x52\xc0\x6a\x59\xba\x45\x71\x96\xa5\x97\xe0\x7b\x59\xbe\x31\xd8\x59\x56\x4e\x90\xf7\x8d\x1b\x37\xf4\x8d\x1b\x37\xec\xa4\x34\xf7\xde\xba\x8b\xcc\xb8\xb0\x3b\xa2\x4e\x21\xb5\x52\x45\xf9\x6c\x1d\x6a\xff\xe9\xde\x9f\x67\x73\x0c\x36\x0e\xe6\x9f\xcb\xe7\xd8\x62\x86\xa2\x90\x4b\x8b\xe1\x68\x99\x7e\x6c\x6e\xf7\x07\xb1\xd9\xb8\x6e\x14\xdb\x61\x6c\xe9\xc5\x9a\xeb\x1d\xa5\x58\x4e\xe7\xcd\x1d\xcd\x81\xa5\x2c\x68\xc5\x13\xa1\x2b\xc6\x66\x0c\x06\xb3\xb7\xf0\x78\xda\x32\x75\x90\x2a\xb2\xcd\xc9\x58\x5d\x82\x13\x09\x7c\x94\x46\x2f\x6f\x98\xa6\xa9\xae\x69\xa7\x79\x5f\x15\x34\x1a\x9f\xcb\xde\x7e\xf8\x64\xef\x8d\xc9\xb6\xfa\xc0\x9c\x45\x64\x77\x89\x8d\x57\xcf\x94\xe2\x9b\x49\x4b\x07\x4e\x4e\x4e\xec\x18\x88\x95\x34\x85\xf4\x38\xea\xa2\xb7\xd8\x5a\x17\xe7\x01\x00\xea\xdf\xfe\xdb\x7f\x0b\x99\x9f\xd9\x1a\x5e\xfb\xf6\xb5\xdc\x3f\x4a\x3c\x73\xd7\x56\x38\xd8\xeb\xd8\x05\x25\xcd\xf6\xf2\x1d\x11\x41\x6b\x6d\xdb\x8d\xff\xf8\x1f\xff\x23\x00\x20\xda\x3c\x2c\x6e\x4f\x70\x2f\x77\x86\x15\xf9\x5a\xc1\x95\x13\x28\xcf\x34\x15\xe7\x4e\xf2\xdd\x41\xa5\x2e\x13\xa3\xf0\x1c\x35\x74\x3c\x72\x90\x87\x1d\x2f\xd2\x2a\xd3\x8c\xeb\x66\xfc\x46\x79\x38\x41\x0b\xf1\x54\x8c\x77\x19\xc1\x4c\xec\x46\x24\x33\x3c\x8d\x78\xf7\xa5\xd2\x18\x0c\xe7\xd9\xd5\x8b\xa3\xe2\xe2\x83\xf5\xf9\x3e\xfc\x49\xce\x96\xa6\x43\xda\x33\xee\xa1\xa8\x4f\x9c\x5c\x30\x7d\x52\xf4\x2b\xb5\xb5\x35\xcd\x2f\x66\x5a\x6d\xb5\xea\x0a\x21\xe2\x28\xaa\x9c\xa8\x5f\x80\x41\x48\x46\x15\x53\x1c\x64\x9f\x70\xb0\x61\x9e\x49\x6a\x79\x06\xc2\x2b\x0a\xfb\xce\x5a\x6b\xc1\x40\xa6\x69\x63\x30\x57\xbb\x6b\x73\xb5\x01\x46\xce\xe0\x60\x7f\x1b\xd9\x27\x76\x9e\xcb\x22\xaf\x8c\xf8\x4d\x02\x63\xf1\xae\xe5\x2a\x92\x0c\xbb\xc5\x90\x17\x14\xa4\x81\x46\xd3\x8c\x89\x08\x08\xf6\x00\x70\x4c\xa2\x52\xba\x9a\xf6\xf4\xc9\x3c\xe3\x09\xc3\x4c\x8c\x13\x99\x77\xcd\x6d\x75\xfd\xed\x01\x61\x0c\x53\xda\x89\x38\xdc\x75\xd0\xb2\xca\x40\x61\x14\x29\xd3\x13\xbb\x12\x91\x19\xcd\xca\xa2\x4a\x6d\xad\x95\xd9\x06\x9a\xd9\xe6\x01\xfa\x16\xf7\x26\x6f\xc6\x6f\xfe\xe6\x6f\x2e\xb2\xb4\x2c\xfa\x5d\x66\x71\xe8\xd2\x02\xbb\xd2\xc7\xf9\xc7\xc8\x37\x55\x86\x0d\x31\xc8\xed\x4a\xdf\x55\x9e\x1c\x63\x71\xdd\xe2\xbc\xe3\xf4\x5d\x7d\xb1\xac\x8f\x96\x3d\xef\x12\x4c\xcb\xe2\xc7\xef\x15\xd0\x72\x9d\xda\x3c\x5b\xab\x47\x60\x4c\xfe\xb0\xab\x47\x88\x26\xd3\xad\xec\xee\xfe\x95\xde\x0f\xc7\xe7\xf2\x9b\x75\x0f\x63\xa0\xd1\xa2\x9c\x26\x24\x7f\x9d\x69\x24\x80\xfe\xb0\x26\x78\x39\x74\x2d\x23\x8e\xb5\x3a\x58\xd0\xe0\xd5\x2e\x0f\x34\xd8\x02\xf8\xe6\x95\xd5\x6c\xd9\x9e\xab\x24\x34\x65\x49\xa0\xae\x6a\x80\xa0\xbf\x68\xa1\xa7\x3b\x30\x51\x34\x2b\x00\x64\x9e\x6e\x63\x4b\x93\x7b\x48\x40\xdd\xc3\xf8\xe4\x5c\x76\xf3\xe1\xa5\xde\x1b\x27\x67\xb3\xf7\x38\x6b\xb6\xb5\x87\xd8\xc3\x04\x62\x35\x11\x84\x9b\x48\x7c\x1b\x30\xb3\xdd\xa3\xa4\x0b\xac\xa6\xe8\x2a\x15\x67\x51\xba\xf8\x5a\x03\xc0\x37\xbf\xf9\x4d\x37\x6e\xe4\x3c\x18\x39\x1f\x05\x82\x87\x9a\x6b\xb7\x32\x8a\xc2\x25\xf7\x72\xe3\xb8\x54\x5a\x30\x37\xbb\xdf\x56\x55\x85\x7f\xf4\x8f\xfe\x91\xfe\xce\x77\xbe\xa3\x01\xa0\x2c\x4b\xd9\x2e\xd9\xce\xd8\xf2\xa4\x01\xe0\x77\x7f\xf7\x77\x55\xc4\xf3\xe5\x2e\xe2\x16\xa8\x17\x8a\x51\x6c\x4d\xf3\xdd\x4c\xd3\x06\xe0\xc7\x9e\x3b\xe5\x58\x28\xaa\x6e\x3c\x59\xf7\x27\xc1\x7f\x7b\x26\xe3\x02\xf2\x21\x9e\xfc\x2d\x73\x64\xc9\xeb\x09\xee\xd4\x71\x98\xb9\x1b\x16\x14\xc1\x3c\x96\xee\x52\x9b\x27\x01\x79\x51\xa9\x9d\x9d\x71\x71\x05\x62\x23\x3a\xd3\x3e\x1b\xdf\xf1\x82\x94\x95\x45\xf4\x5d\x4e\x44\x4a\x31\xf2\x7e\x45\x1b\xfd\x4a\xed\x2a\x8d\x41\x70\x5e\x9f\xad\x4b\x67\xe0\xb0\x7e\x16\xf1\x08\xb3\xa4\x5b\xe0\x12\x58\x6b\x28\x8a\x1b\x67\xcb\x2e\x9e\x4b\x63\xe9\x11\x82\x1e\x09\xc8\x98\x86\xc3\xb9\xda\x1d\x96\xd9\x76\xc6\x18\x18\x2b\x92\x94\x7f\xf1\xb8\xe8\x0a\x31\x0f\x95\xb2\x21\x0e\x1a\x89\x17\x5d\x56\x80\x45\xd7\xee\xf7\xc6\x8d\x1b\xd2\xb7\xef\x22\x0a\x74\xef\x88\xa7\x52\xa8\xa6\x79\x3d\x99\x65\x7a\xac\xc9\x1d\x6e\xe6\x43\x80\x62\xc4\xa3\xa8\xc3\x2d\x42\x0f\xba\x26\xee\x27\x37\x98\x49\xdc\x0a\xe4\x23\xe7\x10\xc8\xb2\x63\x94\x64\xda\x65\xb5\x4b\x26\x18\x8b\x0b\x6d\x0f\xe7\x6a\x83\x40\x72\x3b\x68\x39\x90\x83\xf4\xff\xe9\x3f\xfd\xa7\x94\x60\x0c\x18\x28\xda\x4c\xaf\x2b\x4d\x2a\xce\xa2\x3c\xe2\x10\xc7\x4d\xfd\x2e\xb2\xba\x2d\x4b\xdf\x15\x3f\xae\xd7\x2a\x96\x90\x45\xf1\x97\xf5\xd1\xa2\xbe\x8b\xf3\x48\x85\x65\x75\x49\x0a\x3a\x01\xda\x65\x7c\x79\x04\x80\x9f\xe7\x62\x04\x2d\xcc\xca\x90\x93\xb3\xd9\x07\x07\x57\x7a\x3f\x38\x3e\x9f\xbf\x39\xef\xe3\x10\x80\xb6\x3c\xc7\x85\x04\xa6\x76\xff\x5b\xda\xe7\xe2\x40\x14\xef\xe1\x10\x82\x9c\x06\x1f\xc9\x4d\xed\x2c\x28\xf2\xdb\xfc\xc7\x1a\x87\xd3\x08\x0d\xb8\x72\x72\xc1\x3e\x97\x79\xdb\xab\x40\xab\x14\x0c\x93\x28\xa4\x53\x34\xe0\xa9\xee\x61\x7c\xbc\x93\xbf\x79\x70\x39\xff\xf3\x93\xb3\xd9\xcf\xb4\x6a\x96\x00\x93\x3f\x7f\x27\x58\x02\x6d\x5c\x29\xad\xef\x16\x03\x06\x13\x52\xca\x40\x6c\x81\x88\xad\x10\x71\xba\x3b\xae\x76\xac\x00\x00\x20\x00\x49\x44\x41\x54\x38\x6e\xd2\xb2\xf9\x5f\xfe\xcb\x7f\x71\xcf\x7e\xf1\x17\x7f\x51\xd9\x15\x48\xb6\x5e\xf6\x5e\xd4\xc5\x01\x10\x11\x5a\xf4\x2f\x35\x5f\x99\xa7\x4d\xf0\x4f\xfe\xc9\x3f\x89\x69\x5c\xe6\x91\x6a\x7b\x92\x27\x58\xf7\x90\x68\xbb\x82\x99\x9c\x0b\x40\x65\x9a\x8a\x8d\x32\x7b\x22\x63\x04\xdb\x47\x70\x6b\x0c\x04\x99\xda\x58\x0e\x84\x58\x2b\x61\x4b\xbf\x6c\x0f\x0e\x00\x38\x40\xc7\xbf\x07\x95\x59\x0a\x64\x8a\x22\x3b\xf0\x62\xae\x29\xce\xa8\x09\x19\xa3\x18\x56\xea\x09\xb4\x97\xfe\xc6\x8a\x2a\x10\x7e\x1b\x69\x3d\x73\x56\xa8\x9e\xa6\x62\xad\xca\xb6\x8a\x9a\xb6\x14\xa8\xf0\xa0\xca\xd6\x4b\x52\xb3\x69\xbb\xa3\xf0\x00\xfe\x37\xd7\xce\xa5\xec\x81\x18\x01\xe1\x9c\x1f\x97\x37\xb5\xfa\x4b\x5a\xb4\x5a\x41\x28\x21\xb0\x1b\x47\x32\x15\xfd\x2a\xdb\xde\x28\xb3\x1d\x33\xc7\xd3\x5a\xa1\xa4\xfc\x93\x27\x83\x27\x7a\xd5\xf7\x15\xda\x34\xd1\xc5\x8b\x17\x0a\x24\x9b\x70\x91\xe6\xb1\x32\xa3\x8f\xfd\xfd\x00\x74\x99\x71\x79\x5a\xe8\x51\xad\x78\xda\xc4\x71\x71\xdb\x40\xc2\xe2\x15\xe9\xef\x17\xaf\x11\x4c\x28\x02\xbc\x46\x87\xd6\x00\xb7\x9f\xde\xce\x4a\x8f\x4d\x2f\x72\xf0\xc8\x41\x13\x55\xc7\xc6\xcd\x8b\x5a\x6d\xad\x97\xd9\xd9\xa2\x6e\x3e\x5a\x6a\x92\x12\xda\x8c\x6c\xd5\x20\x99\xc4\xe3\xa4\xff\x28\x65\x2d\xaa\x83\xfc\xfd\xff\xc3\x8a\x41\x30\x41\xd9\x87\xd2\xe2\xe2\xe6\xba\x08\xcb\x80\xb3\x16\x8c\xcf\x66\xef\xed\x3f\x53\xfc\x70\x74\xa1\xf7\x46\xb9\xa6\xf6\x99\xa0\x7d\x96\x2d\x4e\x1d\xf8\xa3\xc3\x38\x6d\x46\x15\xbe\x17\x66\x44\x9f\x9d\x5b\x59\x91\x2a\x0d\x82\x79\x3a\x6f\xaa\x10\x28\xcd\x4b\xf6\xf3\x18\x0c\xea\x6a\x7e\xb8\x65\x91\x69\x55\xc9\xe6\xdb\x62\xb0\x3e\x54\x03\x1c\x3d\xba\x90\xbf\xb6\x7f\xa5\xf8\xe1\xc9\xd9\xfc\x3d\x9d\x05\xfb\x96\xc8\xfd\x4a\xe4\x39\x51\xc1\x29\xcc\x96\xa1\x46\x7b\x90\xb4\x2c\x22\x89\x90\x02\x2c\x8f\x4b\x2b\x49\x3a\xfd\xd1\x8f\x7e\x04\xa0\xb5\xa9\xa1\x73\x19\x45\x75\x48\x82\xe7\xd8\xd2\x6d\x5f\xfc\xcf\xff\xf9\x3f\x01\x00\xff\xec\x9f\xfd\x33\x99\x75\xaa\x2d\xf1\x73\xf9\xde\xf1\xa5\xdf\xff\xfd\xdf\x5f\xd4\xd6\x66\x25\x14\x90\x13\x90\xf7\x2b\xb5\x4b\xdc\x28\x78\xde\xb8\xe1\x18\x3f\xc4\x5d\x14\x84\x25\xaf\xc3\x32\xd3\x4e\xe2\x07\x98\x04\x23\x7e\x4e\xa5\x0f\xf1\x61\xba\x1c\xd5\x09\x4d\x5b\x8b\x5e\x4d\x6e\x8e\x0b\x12\xe0\x45\x16\x1f\x4d\x99\x88\xe3\xa9\xbc\xa6\xa2\x98\xd3\x40\x69\x1a\x84\xda\x79\xdc\x66\x57\xa9\xc0\xed\x1a\xcb\x49\x3b\x2f\x94\xa2\xf6\x06\xca\x8e\x68\x7c\xab\xc7\xa4\x46\x1e\xbf\x42\xa8\x04\x99\x7e\x57\x99\xc6\xb0\xa8\x69\x33\xd7\xad\x4d\x58\x03\x5a\x5a\xc1\xea\x22\x43\x2c\x37\x5b\x63\xb3\x6b\x39\x74\x57\x66\x8b\x06\x68\xeb\x1d\x8b\x43\x16\xe5\x6c\x79\x33\x29\xae\xaa\x14\x4f\x4f\x7b\xf5\xb8\x52\x3c\xed\xd7\xd8\xf2\xe6\xe2\xb0\xe3\x6c\xa7\xc9\xd5\x09\x71\x08\x26\xf1\x91\x30\x75\x39\xff\x25\x23\xb6\xb8\x04\x8c\xd3\x32\x69\x67\x16\x13\x8a\x9f\xfc\x6a\x8e\x10\x5c\x46\xaa\x57\xd3\x70\xbd\x41\x9d\x83\x59\x5e\xe7\x62\x76\x79\x57\xe7\xe3\xef\xfd\xbd\xbf\xa7\xfe\xf8\x8f\xff\x58\xf6\x5d\xcc\x2c\x64\x9a\x55\x99\x61\x97\x9b\x64\x21\x63\x89\xca\x8b\x5d\x3e\xa9\xeb\x4e\xad\x31\xca\x33\xae\x43\x6a\x10\xc6\xf9\x2f\xaa\x53\x57\xdb\x96\x69\xc4\x5d\xe5\x3e\xce\x75\xaa\x7e\x71\x08\xd2\x64\x59\x86\xeb\xd7\xaf\x6b\x2b\x10\x23\xa1\x63\x69\xa1\x8c\x27\xb3\x01\x7e\xd7\x49\x22\xc2\x64\x4b\xdd\xd1\xd4\x43\x9d\xa3\xdc\xda\xc3\x67\xfb\x13\x7d\x51\xd5\xc8\x21\xc6\x6b\x4b\x8b\x84\x30\x1f\x3b\x13\xbb\x98\x4d\xe0\x27\xa5\x04\xe9\x02\x9b\x06\x59\xba\x48\xcc\x1b\x03\x5c\xc1\x2e\x3f\xcb\x54\x63\x27\xbd\x0d\xd2\xc4\x62\x5d\x56\x36\x33\x39\x7f\xc7\xc5\x0f\x2f\x64\x53\x99\x08\xf3\x01\xed\x1f\x5d\xc8\xdf\x38\xba\xd4\x7b\x63\xba\xa1\xee\xea\x0c\x47\x0c\xb7\xa5\xbf\x75\x11\xb9\x8d\xdc\xec\x4a\x22\xe3\x7a\xa9\x00\x77\x18\x66\xd7\xa1\x81\x8b\xc6\x58\x2a\xc4\xe3\xad\x6b\x6c\x76\x95\xe3\x82\xd6\x5a\xbe\xc7\xd6\xd6\x96\x1a\x8d\x46\xfa\x8f\xfe\xe8\x8f\x00\x00\xa3\xd1\x48\x03\x0d\xd8\x7a\xe5\x95\x57\x74\xea\x4c\x18\xfb\x5c\x82\x9f\xad\xad\x2d\xb7\x24\xd5\xec\x06\xbc\x88\x56\x53\xed\x75\xf1\x95\x52\xf8\xed\xdf\xfe\x6d\xb5\xb5\xb5\x15\x58\x7d\xec\xfc\x0e\x96\xbb\xc4\x82\xf2\xa2\x52\x83\xa2\xa6\x6d\x00\xb9\x1b\x69\xc2\x62\x17\xbb\x31\x9b\xbc\xc2\xfb\x84\x51\xc5\xf0\xe2\x48\x66\x18\xda\x69\x5c\x9a\x51\x1e\x64\xb7\x03\x10\xb4\x11\xe5\x4b\xd1\x38\x35\xb4\xa0\x7a\x35\x6d\xf5\x6b\xca\x67\x19\x2b\x50\xe0\x06\x72\xe5\x36\xc9\x24\x50\x72\xef\x5d\x7c\x22\xca\x15\x53\x91\x31\xad\x19\x50\x17\xd0\x8e\x24\x1d\xf7\x1b\x3d\x4f\xcd\x75\x88\xe9\xd4\x83\x27\x43\xab\x2d\x1f\xb1\x48\x1e\xf5\x95\xbc\x0e\x56\x06\x12\x49\xb9\xa9\x88\x3d\x68\xb1\x3c\xac\xcb\x6a\xf5\xbb\xbf\xfb\xbb\xea\xc6\x8d\x1b\xf8\xc1\x0f\x7e\x20\x1f\x2f\xe2\xcd\xf2\xd7\xc6\x6d\xed\xe3\xb2\x88\xc1\xaf\xc2\xf8\x01\xc0\x4e\x02\xb3\xfe\xad\x78\x42\x98\x03\x31\x55\xc6\xe5\x69\x4f\x8f\xab\x8c\x27\x98\x07\x19\x04\xe0\xc3\x4d\xd6\x43\xfb\x63\xa6\xb0\x4c\x8a\xc5\x76\x21\x1e\xbf\xdc\x53\xe6\x69\x19\x72\x02\x95\xb6\xb2\x21\x64\x9a\x06\xeb\xb3\x6c\x77\x58\xaa\xc1\xf1\xa0\x96\x48\x1c\xe8\xb0\xb4\xfc\xf1\x1f\xff\xb1\x8e\xde\xaf\x6c\x26\x43\x77\xff\x7f\x14\x8b\x48\x0a\x1c\x2d\x63\xdc\xcb\xca\x4a\x59\xe9\x16\xb5\x71\xd9\xf3\x54\x59\x8b\x2c\x81\xab\xe6\xff\x51\xae\xbb\xea\xd3\x4a\x63\x57\xa7\x58\xc1\x71\xed\xda\x35\x20\x14\x5e\x95\x21\xf0\x12\x21\xb1\x3b\xf0\x02\x40\xb1\x22\x4c\x37\x14\x8e\xa8\xa7\xeb\x9c\xca\x33\x7b\xd5\x73\x83\xb1\xbe\x9c\x55\x18\xb4\xb8\xb2\x08\x81\xc6\xe7\x68\xca\xdc\xc2\x30\x49\x47\x58\xcd\x68\x0f\x20\x4a\x04\x5a\xda\x45\x79\xda\x72\x7b\x1f\xc1\xab\x08\x6c\xfe\xc9\x32\x6d\xb2\x36\x19\x09\xea\x0b\xe6\xa4\xd9\x45\xdc\x3e\xad\x36\xfb\xb4\x3c\xba\x90\xbf\x71\x74\x31\x7f\x6b\x36\x54\x77\x39\xc3\x18\x44\x63\x32\x1b\xb3\xc9\x79\x2d\x66\x22\xae\x5b\x06\x1c\x4d\x7c\x8d\xf7\x2b\x49\x81\xdd\x55\xae\x11\x3d\x4b\x29\x0d\x71\xba\x55\x68\x49\x01\xd0\x16\xa8\xd8\xdf\xf3\xe7\xcf\xab\x83\x83\x03\xfd\xca\x2b\xaf\xe8\x0b\x17\x2e\xa8\x84\x8b\x0b\x40\xdb\x62\x63\xd2\x7f\xd4\x36\xb6\xf8\xd8\xbf\xfc\x97\xff\x52\x47\x13\x73\x1d\xbf\x93\xae\x23\x62\x28\xc5\xc8\x55\x23\xe4\x5c\x90\x13\x48\x9b\x61\xe8\xc7\xa4\x3f\x0c\xd4\x8f\x3d\x37\x42\x9b\x01\xdc\x16\xe6\x4d\xa6\x62\x7e\x54\x98\xce\x42\xe0\x60\x6f\xa0\x44\x90\x94\x20\x36\x51\x54\x99\xa6\x61\xaf\xa6\xa2\xcc\x58\xb1\xa7\x53\x00\xc1\x7e\x2d\x9a\xc5\xde\x3a\x42\x91\x85\x88\xe3\xfa\xc9\xc1\x72\x63\xb1\x6c\xfe\xb3\xf9\xef\x65\x11\x60\x94\x0f\x72\x5b\x50\xfa\xd0\xc2\x30\x21\x50\x89\x9b\x2a\xed\xab\xf2\x55\x10\xaf\xe3\x3a\x94\x89\xa4\x88\x91\x9b\x0d\x58\x53\x73\x7b\x0c\x80\x6c\x30\xc0\xef\xff\xfe\xef\xeb\x6f\x7c\xe3\x1b\x8b\x14\xea\x55\x64\x87\xce\x13\x0f\x63\xc2\x5b\xa6\xf5\x2e\xd4\xbe\xc9\xaf\xac\xd1\x80\x63\x14\x1a\x80\x9e\x67\x5c\x4e\x0a\x3d\x6e\x26\xe8\x46\x48\xb2\x0b\x91\xc8\xe7\x2d\x8d\x2e\x7a\x98\x40\xaf\xad\x64\x32\xaa\xbb\x97\x1a\x68\xbb\x1e\x01\x12\x05\x90\x69\x2a\xd6\xe6\x6a\x67\xbd\xcc\x36\x80\xb9\x1b\x94\x42\xe3\x08\x10\xf8\xb5\x6b\xd7\xd4\xc1\xc1\x81\x05\x2f\xab\x58\x2d\xe2\x67\x1f\x05\xa0\xa4\xf2\x5c\x54\x46\x1c\x16\x7e\xe7\x15\xca\xfc\xa8\xe9\x57\xcd\xff\xff\x2b\xc1\xf6\x43\x85\x06\xe0\x6a\x73\x5d\x0a\xa6\x16\x1c\xbd\x0b\x82\xe6\x8c\x30\xdd\x50\x5a\x67\xbd\xaa\x2a\x68\xb2\xf5\xa0\x1a\xaf\x1f\xe9\xab\xf9\x8c\xb7\xe3\x15\x3a\x3e\x9d\x00\x23\x62\x7e\x88\x5f\x85\x20\x98\xbb\x29\x28\x66\x5c\x5d\xac\xdd\x9a\xa4\x6d\xfa\x80\x66\x84\xf0\xb1\x5a\x5c\x98\x16\x0e\xd8\xc4\x02\x87\x83\x18\x7e\x3a\xa0\x15\x50\x75\x8f\xc6\xa7\x9b\xea\xf6\x68\x37\x7f\x7b\xf4\x44\xfe\xd3\x72\x8d\xee\xb3\xc2\x88\x81\x31\xb5\x5d\x44\xc1\xdc\x16\x44\x2e\x22\x5b\x6c\x02\xb4\x00\xab\x8d\xa9\x45\xb4\xd4\x65\xa9\x58\x64\x4d\x5c\x15\x14\xe1\xe0\xe0\xc0\x3d\xbc\x7f\xff\xfe\x2a\x3c\x24\xd5\xb6\x45\xe0\x3c\x15\x82\x38\xda\x98\x85\x16\x05\x2b\xb0\x18\x50\x9a\xa0\x74\x94\x87\x9f\x40\xee\xed\xe1\x1e\x53\x08\xb8\xe1\x18\xb1\x7c\x6f\x53\x34\xc1\x8e\x1d\x6a\x8d\xeb\xd0\x12\x11\x2a\xa8\x08\x5c\x30\x61\xbd\x4c\x89\xce\x40\x69\x76\x65\x26\x58\xd0\x02\xf6\x1b\xd0\x01\x1d\x16\x34\x0e\xf7\x78\x71\xef\x2a\xc5\xba\xcc\x75\xa5\x15\x57\x1e\x60\x99\x36\x04\x0a\xb7\x6f\x89\x80\x53\xae\x2f\xe2\xa7\xa9\x20\x73\x6c\x6f\x1f\x99\x96\x8f\x96\xa5\xc4\x16\xd7\x48\xfc\x36\xe0\xcd\xb7\x4d\x45\xa0\x6d\x91\x3c\xb1\x61\x19\x2d\xb4\xd2\xa7\x88\x4d\x47\xd7\xab\x0c\x72\xf7\xb1\xe4\xe6\x5b\x71\x3e\x72\xbf\x00\xa0\xd9\x3d\xf7\xa4\xa8\x8f\x67\x99\x1e\xdb\x95\x45\x8c\xd8\x33\xc3\xe1\xce\x9b\x8e\x41\x23\xb2\x92\x58\x84\x2e\xb5\x33\xa3\xff\x89\xaf\x69\x80\x7a\x70\xef\xca\x23\x91\x0c\xe1\xc0\x0e\xe6\xb8\x44\xdc\x5c\x01\xc5\xa0\x52\x3b\x9b\xd3\xfc\x9c\xd2\xcd\xd6\xd6\xf0\xcb\xa2\x03\xc4\x6d\x83\xb0\xb8\xac\x12\x52\xa6\xe9\x2e\x73\xb5\x7d\xd7\x65\x66\x93\xcf\xba\x98\x6b\x57\x48\x31\xd2\xd4\x7d\xaa\xcc\xb8\xbc\xd8\x12\xd5\xd5\x9e\x45\xf1\x16\xd5\xf7\xe7\xcd\x7b\xd5\xfc\x96\xa6\x21\x22\xf5\xd9\xcf\x7e\xd6\x2d\x05\x4c\xcc\xf7\x72\x73\x5e\xcc\xea\x22\xbb\x49\x9a\x9d\xa8\x3b\x61\xf0\x88\x33\x1a\x95\x43\xba\x7b\xfc\x44\x7e\xf3\xf0\xa9\xde\x6b\x8f\x2e\xe4\x6f\xce\xd6\xb3\x7b\x3a\x33\x93\xdb\xdd\x2a\x9f\x26\x34\x3e\x6f\xbb\xc4\x92\x05\xd9\x84\x06\xe5\x18\x9c\x04\x73\x00\xfc\xbf\x28\x0d\x39\x55\x94\x64\xb9\xb2\x7c\x93\x99\x15\x37\x16\x3c\xd9\x65\xdd\xe1\xb1\x02\x70\xf4\xec\x5c\xbb\x96\x0e\x89\xa0\x15\xaa\x72\x8d\xf6\x8f\x77\xb2\xb7\x0f\x9e\xee\xbd\x76\x74\x21\x7f\x6b\xb6\xae\xee\xb2\xc2\x08\xe2\x10\x42\xeb\x22\x62\xb1\xa5\xbd\xe9\x57\xbb\x9d\xbe\x3b\xc9\xd6\x7e\x87\x17\x5e\x78\x61\x11\x3d\xc8\xe7\x2a\xba\x4e\xc5\x91\xcf\xba\xde\xcb\x77\x5d\x79\xc7\x8c\x7d\x51\xfd\xec\x75\x3c\x9e\x53\x75\x8d\xaf\xe3\x3a\xa7\xda\x95\x7a\x0e\xa5\x94\xb2\xd6\x16\xb9\x57\x47\x34\x49\xb5\x29\x83\xa0\xb4\x62\xad\x15\x57\x68\xd1\x6c\xc2\xba\xcd\xcd\xb8\x72\x80\x5a\xc0\x9a\x66\x3c\xc3\x95\x25\x8c\xe6\x49\x01\x1b\x96\x64\x78\xb9\xdb\x0d\x5d\x58\x25\xc4\x9f\xc9\x3c\x48\xcb\x46\x66\x55\xaa\x69\x5f\xbc\x6a\x46\xf4\x83\x94\x73\x4a\x8c\x37\x5b\x67\xc5\xcc\xaa\xca\x18\xd3\x9c\x67\x95\xe2\xa9\x5b\x59\xcb\x61\x1b\x7c\xef\xd8\x4e\xf1\x4f\x5b\xf0\x9e\x3d\xcd\x41\x3c\x8b\xfb\x22\x9c\x32\x61\xa1\x8f\x90\x6f\xe6\xa9\xcd\xa6\x3d\x25\xbe\x09\x9a\xb8\x3a\xed\xd5\xa3\x71\xbf\x1e\x95\x99\xdf\x07\xc9\xf4\x43\x30\xaf\xc5\x2a\xef\x0b\xe6\x91\x2d\xa2\xad\x38\xfe\x52\x57\xd1\xe3\x3c\x6b\x09\x10\xe1\x1e\xb2\x0d\x72\x8c\x9a\x99\x75\xad\x50\x4d\x73\x3d\x99\xe5\x7a\xa4\x89\x2b\xc5\x54\xb4\x8d\x2c\xf1\x47\x6c\xfe\x3b\xad\xcd\x68\x75\x5d\x46\x18\x89\x6e\xdc\x3b\x01\x62\xbb\x34\x4a\x59\xb6\x65\xdb\xbe\x4c\x23\x0e\xec\x3e\x2f\x0c\x55\x54\x6a\xeb\xcc\x34\x7f\xa2\xa8\xa9\x98\xe6\xad\x25\x61\x5d\xcc\x00\xe2\xf9\xa2\xfe\x8c\xc1\xe3\x32\xcd\x70\x99\xb9\xad\x0b\x84\xc6\x71\x63\x46\xb9\xec\x9b\x77\xd5\x69\x99\xb6\x97\xba\x5f\xa5\xcc\x55\x41\x56\x97\x66\x9c\x6a\xef\x2a\xf9\xa5\x9e\x77\x7e\x43\x66\xd6\x6f\xbd\xf5\x16\x80\x06\xd8\xdb\xad\xd1\x4d\xb0\x96\x97\x2a\x5e\x3a\x98\x5a\x99\xc7\x8a\xf4\xbc\x0f\xad\xcf\xe5\xb3\xba\x50\x93\xf9\x80\x46\x1b\x07\xf5\xb3\x6b\xa3\xfa\x72\x56\x61\x08\x36\xc7\x04\x40\x58\x34\x5a\xdc\xab\xbd\x30\x99\x3c\x97\x72\x23\xbd\x51\x14\xec\xde\x2d\xb1\xa5\x52\xe8\x65\x02\xe8\x93\xd0\x00\x82\x52\x8c\x3a\xc9\xb6\x5d\x29\x67\xba\x01\x5a\x41\x50\xd0\x55\x8f\x26\xb3\x75\xb5\x77\x72\x36\xbb\x35\x3e\x9f\xfd\x74\xb2\x95\xdd\xa9\x7b\x74\xc4\xe0\x89\x59\x39\xe4\x00\x0b\xcc\x39\x3c\x66\x4e\x4b\x60\x6d\x21\xbf\xe5\xbd\xeb\xcf\xf7\xdf\x7f\x1f\xaf\xbe\xfa\xea\xaa\xf4\x90\x7a\x2e\xdf\xc7\x5a\x63\x57\x1e\x29\x86\x9d\x2a\xff\x71\xea\xb1\x2a\xfd\xc8\xf8\x2b\xf1\xf1\xae\xe7\x5a\x6b\xfd\xca\x2b\xaf\x00\xf0\x07\xe9\x59\x01\x25\xac\x87\x2e\xd4\xc4\xa8\x89\x83\x7c\x52\x5a\xbf\xe5\xd1\xd2\x9d\xe1\xdf\x5b\x4d\xde\x3e\xa4\x60\xfe\x05\x37\x26\x82\x4e\xa3\x7d\x93\x83\x7f\x19\x4e\x0b\x90\x54\x01\xc4\x99\x30\x80\x79\xc6\xd3\x4a\xb9\x73\xad\xe2\xf6\x7a\x6b\x8f\x99\xd7\x62\x85\xb8\x78\xee\xe2\x57\xc4\x7a\x96\xe9\x72\x9e\xf1\x94\x09\x15\x98\x8b\xc6\x43\xe0\xa9\xa0\x59\xfa\x6d\xfb\xc1\xd0\x48\x24\xef\x9c\x84\xb2\x4a\xbb\xf0\x32\x90\x8c\x28\xe9\x54\x08\x41\xd7\xea\xb8\xc3\xa2\xf8\x91\x8e\x81\x4a\xf1\x64\x34\xa8\xee\x1d\x0e\xe7\xf7\x67\xb9\x76\x2b\x83\xa5\x87\x21\xee\x97\xc4\x3c\x32\x79\xdd\x65\x71\x69\x8d\xfb\x60\xf9\x2e\x16\x13\x8d\x0d\x9d\x8c\xff\xc2\x85\x0b\xea\xfe\xfd\xfb\x5a\x54\xd6\xfa\xfa\x24\xb3\xd0\x40\xb3\x19\x17\x03\xd5\x3c\xd3\xd3\xd3\x5e\xb3\xb2\x28\xaf\x11\xf8\x3f\x53\xfe\x7b\x6b\x31\xf1\x03\x37\x11\x2f\xfa\x00\xe1\xc0\x17\xd1\x05\x65\x84\x83\x21\x32\x8d\xc5\x79\xb9\x8f\x62\x2f\x49\xe5\x9a\x86\x9b\xb3\xec\x62\xbf\x52\x83\x69\x5e\x3b\xe0\x92\x30\x23\xa6\x42\x8a\xa1\x2d\x0a\xab\x30\xa3\x55\x18\xe2\xb2\xfc\x57\xb1\x68\x7c\x24\x50\xfb\x57\x10\x96\x59\x87\xba\xc2\x2a\x63\xfc\xaf\x35\x0f\x03\x5e\xec\xad\x42\x03\xe4\x2d\x78\x89\xb5\x0c\x2b\x6c\xad\x16\x57\x31\xa0\xeb\x9c\xaa\xc9\x96\x2a\xe7\xfd\xde\x78\x36\x54\x87\x9b\xfb\x74\xb4\x7e\xa4\xaf\xf4\x4e\xf5\x39\xd5\xd0\x91\x72\x2a\x98\x01\x1f\x0e\xa0\xc4\x26\x43\x81\xe6\x99\xe5\xc8\x8f\x28\x87\xe0\x98\x2a\xdb\x73\x8e\x2c\xde\x11\xb6\x6e\x47\x4b\x46\xa8\xc4\x0a\x83\x9b\x88\xe9\xca\xa0\x90\xe6\x4c\x9d\x75\x86\x69\x39\x50\x47\xa7\x67\xb2\xdb\xe3\xb3\xd9\xbb\x93\x6d\x75\x7b\x36\x54\x0f\x38\x33\xcb\x9c\xd9\xb9\x86\xa6\x06\xc0\xc8\x6d\xee\xed\xdc\x96\x94\x7b\x48\xdb\xef\x10\xf5\x75\xd7\x98\xfa\x28\x80\x76\x59\xbc\x14\x80\xff\xa8\xb4\xb3\x88\xee\x1f\xa7\x4e\xa9\x7a\x2c\x05\x4b\x52\x8b\x4e\x4d\xca\x6c\x04\x35\xa0\xa9\x11\xfc\x0c\x68\x78\x71\x09\x20\x0d\x32\x22\x16\xdd\x0e\x76\x28\x93\x17\xe0\x04\xbb\xc7\x8b\x14\xc4\x61\xee\xde\xa2\x2f\xc6\x9c\x1b\x93\x3e\x2e\xc1\xcf\x27\x01\x00\x26\x54\x65\xae\x27\x9a\xd0\xaa\x6c\x6c\x79\x31\xb4\xda\xb9\x9a\xc6\x80\x0c\x3d\xcf\x74\x59\x66\x7a\xa2\x89\xab\x4c\xab\xc2\x5a\x38\x24\xcd\x04\x4a\x85\x28\xd7\xd7\x56\xc8\xaa\x2e\xb8\x16\xa4\x6b\xa9\xf6\xee\xc2\xcd\x39\x12\xd9\x04\x16\x1a\xdb\xb5\x0c\x94\x99\x1e\x3d\x5a\xab\xf6\x1e\xad\x55\x23\xad\xd2\xe3\xb6\x6b\x92\x2e\x96\x8f\x51\x39\x96\x75\xfc\x4c\x0a\x9f\x9f\x67\xb0\x6b\xc0\xfb\x5a\xe5\xea\x09\x39\xc7\x85\xdb\xe7\x61\xe8\x4a\x71\x79\x5a\xd4\xe3\x4a\x61\x1a\xd8\x9b\xc5\xfc\x14\x19\x1c\x03\x84\x60\xa2\x02\x11\xcb\xf7\xf2\x59\xd0\x7d\x62\xbb\x7f\x00\x02\xd1\xfa\x81\xd0\x98\xca\xda\x2b\xda\x6d\x5e\x0e\xc0\x98\x44\x99\xa6\x62\xbd\xcc\x2e\xae\xcd\xb3\x21\xfc\xde\x05\xad\xe5\xd1\x76\x20\x0b\xad\x3b\x36\xef\xa6\x42\xca\xac\xdb\x65\xaa\x8e\x19\xa1\xfc\x5d\xf6\x3c\x2e\x2f\x95\x97\x0c\x1a\xed\xba\xc5\x56\x9a\xae\xbc\x53\xcf\x97\x05\x59\x56\x5c\xce\x32\x13\x78\x57\x39\x5d\xdf\xa1\xeb\x3a\x55\x97\x38\xbd\x4a\xbc\x77\xe1\x77\x7e\xe7\x77\x5a\x74\x47\xcd\x96\xee\x1a\x62\xd9\xae\x70\x1b\xb9\xbd\x5d\xcc\xdf\x08\x84\x11\x67\x74\x54\xae\xd1\xfd\x47\xbb\xf9\x8d\x07\xcf\x14\x3f\x3c\x78\xaa\xf7\xda\xf8\x5c\xf6\x6e\xb9\x46\x87\x3a\x43\x09\x45\xda\x8d\x5f\x01\x26\xec\x32\xca\xb6\x19\x99\x22\xfa\x21\xc0\x6d\xce\xc5\xc2\x8c\x2d\x6c\x35\xb1\x54\x71\x69\xfd\xc6\x61\x31\xb3\xf5\x98\xc5\xa3\x9c\x26\xae\xb1\xec\x64\x28\xcb\x01\x1d\x8e\xcf\x66\xb7\x1e\x5e\xca\x5f\x3f\xb8\xdc\xfb\xf3\x47\x17\xf2\xb7\xa7\x1b\xd9\x1d\xad\x70\xc4\xcc\x23\x00\x23\x22\x1a\x19\x77\xda\x88\xfd\x29\xc8\x53\x6a\x76\xc9\xb5\x5b\xe3\x5b\x45\x49\x9e\xc2\x8c\xbb\x77\xef\x62\x77\x77\xb7\x8b\x86\x16\x8d\x2b\x79\xdd\x35\xd6\xbb\xc6\xdf\xaa\xe3\x75\xd1\xd8\xb2\xf7\x71\x5d\x63\xf0\x92\xaa\x43\x5c\xef\xae\x31\x1a\xe7\x1d\xc7\x6d\x84\x87\x52\x0a\x68\xb4\x68\xeb\x0a\xb1\x7f\xb1\xfb\x08\x00\x34\xb1\x3e\x29\xea\x43\x4d\x1c\xec\xdb\x95\x02\x27\x96\x17\xa3\x35\x46\x45\x3c\x82\xd8\x9f\x45\x0a\x58\x0a\x13\xb1\x90\x2c\x9c\x1c\xac\x62\x05\x30\x09\xbe\xef\xed\x12\x0c\xe8\x5a\x71\x39\xe9\xe9\x11\x8c\xd5\x4e\xb6\x13\xf0\x42\x5a\xba\xcc\xc8\x1c\x56\x29\x5c\x48\xb6\x7f\x35\x83\xcd\x3c\xcf\xfa\xa8\x56\x3c\x6d\x64\x8e\x68\x27\x7b\x39\x13\xcc\x29\x63\x6b\x1d\x8a\xfa\x85\x7d\x2c\x21\x49\xd3\xa0\x2f\xf1\x4e\xca\x3e\x0f\x06\xe3\x34\x86\x1b\x10\xeb\x69\x4f\x8f\x46\xfd\x7a\x7f\x9a\xeb\x52\xca\x76\xe9\x65\x11\x6e\x71\x00\x9d\x5b\x0e\xd8\xb0\x8c\xfe\x6c\x9c\xc7\x12\x22\xab\x08\xd8\x54\x70\x68\x49\x7c\x64\x07\x62\x6a\x85\x72\xd2\xd3\xe3\x4a\xf1\xd4\xe2\x45\x69\xd5\x90\xd0\x85\xe5\xd7\x40\x84\x04\xed\x8b\xa8\xb7\x1b\x06\xcd\x32\x86\x67\xbb\x2e\x1f\x39\xf8\x65\x62\x3f\x3f\xc0\x7d\x30\xb6\xdb\x8e\x37\x19\x58\xf4\x4e\x40\x3e\x98\xab\xdd\xad\xd3\x6c\x0b\x40\x4e\x08\xb6\x3e\x4e\x6a\x24\xff\xe0\x1f\xfc\x83\x14\xa2\xec\x62\x86\xa9\x78\xa9\x38\xa9\xfb\xd4\xf3\x58\xab\xea\x2a\x2b\xf5\x3e\xce\x3b\x8e\x1f\xe7\x2b\x7f\x1f\x07\x24\xa7\xca\x94\x7d\x94\xd2\x0a\xbb\xe2\xc4\xf1\x02\x42\x58\x52\x2f\xf9\x4d\x62\x50\x97\xea\xe3\x85\x6d\xfc\x83\x3f\xf8\x03\x3d\x9d\x4e\x5d\x5c\x41\xdc\xc1\xc6\x74\xe4\x8f\x04\xb0\x7b\xbc\x8c\xe1\x37\x56\x33\x00\x86\x46\xac\xe8\x68\xba\x99\xdd\x39\x78\xba\xf7\xfa\x83\xab\xc5\xf7\x1e\x5e\xea\xbd\x7e\x72\x36\xbb\x55\xae\xd1\xa1\xce\x69\xca\x04\xed\xd8\x1e\x8b\xad\xd1\x6d\x0d\x02\x5e\x1e\x71\x4e\x0a\x27\x3b\xba\x04\xd2\x84\x62\x37\xa2\x33\x92\x46\x32\x58\x9b\x8e\x3d\xb1\x39\xa6\x0b\x22\x37\x2d\x87\x41\xa8\x33\x2a\xe7\x03\x75\x78\xb2\x9d\xbd\xff\xe8\xc9\xfc\xf5\x83\x2b\xc5\x0f\x0e\x9f\xea\xbd\x7e\xb2\xad\xde\xab\x0b\x3a\x00\x35\x60\x85\x88\x46\xf0\xab\x87\x46\xf0\xab\x87\x62\xf7\x90\xfd\x0e\x6e\xe9\x33\x11\x61\x7f\x7f\x1f\x7f\xf6\x67\x7f\x86\xbd\xbd\xbd\x2e\xcb\x64\x7c\x2f\xc7\x6d\xea\x3a\x15\x16\x59\x73\x52\xb4\xdc\x35\x0e\xe3\x71\xda\x55\xa7\xf8\x39\xa2\xdf\xae\x7a\xa7\xe8\x37\x7e\x1e\xd7\x0f\x00\x94\x9c\x9c\x2b\x57\xd0\x88\x6b\x39\xdf\x51\xd7\x0a\xd5\xc3\xe1\x7c\xcf\x2c\xc6\x68\xd2\x8a\x71\xe8\x34\x7a\x78\x5e\x9c\x54\xd8\xc5\x10\x0d\x34\xfa\x96\xa4\xf5\xe3\xcc\xaf\x1e\x4d\xcf\xd8\x90\x72\xc2\x4d\x64\x77\xf9\x31\x98\x50\x4d\x7a\x7a\x7f\x6f\xa3\xbc\x0b\x31\x96\x16\xb8\x45\xdc\xa9\xdf\xd6\x5a\x6a\xe2\xbb\xfd\x75\x88\x48\xcf\x72\x3d\x39\x5a\xab\xf6\xcb\x8c\x47\x0d\xad\x89\xbe\x10\x7d\x12\xba\x8d\x85\x72\x2d\x5a\x2a\x27\xe0\x07\x7d\xd4\xd5\x77\x91\xed\x85\x3a\x7e\x83\x7e\x32\x65\xd4\x0a\xe5\x49\xa1\x0f\x47\x83\xea\xe1\x2c\xd7\x25\x10\x9c\xc5\x26\x41\x4c\x90\xbe\xc3\x55\x64\xef\xbb\xe8\x0c\xe2\x57\x01\x7e\x55\x03\xa2\x0c\xba\x08\x27\x16\x40\xc9\x34\xd2\x8f\x2f\x27\xc3\x91\x38\x29\xd7\x9a\xbd\x2b\xa5\xcb\x93\xa2\x1e\xcd\x33\x1e\x4b\x23\x97\x1b\x67\x08\x3f\x98\x79\xe8\x23\x19\x06\xea\x00\x89\xf9\xd2\xce\x94\x0d\xf9\x3e\xfc\x18\xde\xd5\x1e\x9f\xbd\x12\x15\x21\x3a\x3f\x1e\x28\xf6\x81\x62\xe4\x83\x4a\xed\x9c\x99\xe6\x3b\xb9\xa6\xa2\x52\x9c\xda\x9c\x28\xd0\x90\xfe\xf9\x3f\xff\xe7\x29\xa6\x27\x35\xa2\x14\xe3\x89\x43\xd7\xbb\x65\x82\x3b\x05\x34\x52\xa1\x0b\x20\x2c\x62\xda\x5d\x83\x6e\x51\xe8\xea\x8b\xf8\x5d\x0a\xfc\x2c\xea\xc7\xae\x32\x1e\xa7\x7f\xd0\xf1\xbc\x4b\x50\x2c\xaa\x17\x80\x06\xbc\x00\xee\x8c\x17\xcb\xe0\x14\x99\xf3\x8c\xcc\xbd\xb4\x5e\xc6\x7f\x6e\x7b\x77\x34\x3b\x4f\x97\xba\x47\xe5\xf8\x7c\x76\x7a\xba\x95\xed\xaf\x8d\xea\x5b\xeb\x0f\xeb\x2b\xeb\x47\xf5\xe5\xfe\x44\xef\x66\x73\xde\x50\x35\x0a\xd2\xa4\x62\x13\x79\xb8\x6a\x40\x9c\xf7\xe2\xe6\x0f\xc4\xe6\x67\x6f\xb5\xf1\x8f\x5c\x22\xc1\xc0\x21\xcc\xf9\x86\x56\xc8\xee\x80\x6a\x8a\x27\x68\x56\xa8\x6a\x3b\x8f\x65\x3b\x7b\x7f\x7c\x2e\x7b\x7f\xba\xa9\xf6\xab\x1e\x3d\x02\xd1\x94\xc1\x13\x32\xe0\x84\xfd\xb9\x43\xf2\xc4\x67\x79\xf2\xb1\x3b\x4c\xd0\xb9\xd6\xda\x4b\x9e\xbb\xc2\x22\x30\xbc\x6a\x58\x65\xdc\xa4\xca\x49\xf1\xd6\x14\x1f\x5e\x44\x77\x71\xb9\x29\x5e\x92\x0a\xcb\x00\x7e\x17\x10\x02\xe0\xb5\xe8\x48\x80\x07\x42\x1b\x00\x34\xb1\x3e\x58\xaf\x0e\xca\x5c\x1f\x0d\x2a\x75\x8e\x19\xaa\x05\x4c\x48\xb0\x75\xc4\x4e\x1e\x63\x65\xf7\xab\x27\x42\xeb\xba\xb0\x9c\x3b\x0b\x4c\x8b\xf1\x5b\x4e\xcf\xcd\xa4\x72\x6a\xe7\x93\xca\xbb\xcc\xf4\xe4\xc1\x46\xf9\xd3\xf7\xcf\x4d\x3f\x84\xa0\x43\x31\xfd\x21\x98\xcf\x69\x95\x91\x58\x70\x47\xf4\x8c\x49\xa1\x27\x0f\x36\xe6\xf7\x27\x45\xbd\xbf\x5e\x66\x97\x55\x73\x18\xa5\x89\xbb\xbc\x4f\x5a\x22\xd1\xd0\x5b\x0c\x80\x5c\xba\x08\xe7\x35\xcd\x6f\xef\xd3\x94\xec\x06\x71\x53\x29\x3d\x3e\xee\x57\xfb\xe3\x7e\x7d\x54\x93\xdf\x1f\x09\xd1\x38\x8b\x57\xd4\x2e\x09\x2b\xcb\x89\x45\x9a\xb4\xbc\x5f\x46\xc0\xad\xe7\xb1\x99\x50\xce\x6f\x61\x71\x42\x69\xa5\x78\x7a\xdc\xaf\x1e\xcd\x72\x3d\x66\x37\x71\x8b\xdc\xca\x83\x2e\x33\x97\x89\xd6\xf9\x42\x60\x0a\xb8\x99\xe8\xa9\x98\xc1\xa0\x08\x4d\x7d\x52\x1b\x10\xed\xf0\xcc\xd7\x24\xb4\xb3\xe8\xf3\x9a\x36\xce\x4d\x7a\x4f\xf5\x6a\x8a\x77\x56\x0c\xad\x3e\x6d\x77\x91\x0c\x49\x84\x89\x74\xdf\x2f\x7b\xd7\x05\x66\x16\x59\xd9\x52\xd6\x97\x38\x7d\xaa\xcc\x65\x56\xba\x2e\xe6\xb9\xc8\x74\x98\x8a\x1b\xf7\x4b\x57\x79\x8b\xe2\x74\xd5\x27\x60\xc8\x51\xdc\xb8\x2d\x32\x8f\x45\xe5\x76\xa5\x6b\x0a\x34\x4a\xab\x04\xf8\x26\x4f\x7b\xde\x8c\x3d\xed\xd7\x09\x6e\x18\xcb\x0b\x33\x1f\xa1\x71\x93\x1c\x01\x18\xa1\xb1\xc0\x1c\xd5\x05\x3d\x18\x9f\xcf\x7f\xf6\xe0\x63\xc5\x9f\xdf\xfb\x64\xff\xff\xd9\xbf\x52\xfc\xe0\xf8\x7c\xfe\xf6\x74\x43\xdd\xab\x0a\x1a\xb3\xa2\xca\x6a\x6b\x76\x67\xdc\xc0\xe8\x22\xcd\xc4\xf6\xbd\x35\xaa\x58\xfb\xbd\xe1\x8e\x0c\xc3\x25\xc5\xca\x22\x3b\xa7\xc1\x26\x72\x16\x4b\x6a\x20\x13\x13\x81\x15\xaa\xaa\xa0\xf1\x6c\x5d\xed\x8d\xcf\x67\x37\x0f\x2e\xf7\x7e\xf0\xe1\xa7\xfa\xdf\xbd\xff\xf1\xe2\x87\xe3\xf3\xd9\x3b\x55\x5f\xdd\x67\xc2\x11\x08\x47\xc6\x25\x34\x62\x66\xeb\x1e\x72\x96\x27\xeb\x4e\x8b\xdc\x43\xf2\x2f\x00\x2d\xbd\x5e\x2f\x65\x7a\x8e\xc7\xf4\xa2\xb1\x1a\xc7\x4f\x7d\xdb\xd4\x7b\xf9\x6e\x11\x1d\x21\xf1\x5c\x82\xf5\x24\x78\x58\xd2\x86\x38\x6e\xaa\x2c\xd5\x71\x9f\x4a\x1b\xf4\x4f\xd7\x1e\x32\x80\x10\xdc\x04\xad\x09\x7a\x34\xa8\x46\x27\x45\xbd\xa7\x81\x4a\xd8\xde\x5c\x68\x61\x08\x69\x44\xf7\x03\xb6\xb9\xb5\x43\x4e\x58\x69\xe4\xaf\x71\x69\x44\x79\x5b\x4e\xef\x8f\x6e\xb1\xca\x2e\x09\xfe\x2f\xa7\x1f\x68\x42\x75\xda\xd3\x47\x1f\x9e\x99\xdd\x9c\xf4\xf4\x14\x8d\x0c\x93\xe7\x5c\x39\xa0\x22\x00\x8b\xeb\x13\x69\x75\x8a\xfe\xaa\xb9\xd2\xe5\xa3\x41\x75\x74\xb4\x56\xdd\xab\x15\x4f\x53\xf8\x69\x11\x68\x09\x5d\x4b\xed\xf3\xf7\xe4\x6f\x1c\x3c\x66\x4b\x2b\xe6\x00\xbc\xa5\x4a\x98\x68\x19\x8c\x69\x4f\x8f\x46\x6b\xd5\xfe\x69\x4f\x8f\x85\x9b\x3b\x58\x39\x2c\x15\xaf\xc8\x65\xd4\x65\xe5\xec\xa2\x9d\x16\xdf\x5c\xb6\x73\x6e\x17\x31\x74\x0d\xf4\xd4\xc7\x92\xe9\x01\x81\x52\x89\xa8\xaa\x15\xaa\x49\x51\x8f\x27\x45\xbd\x5f\x13\x4a\xd5\x9c\x63\x11\x9e\x4b\x12\x7c\x39\x73\xd3\x61\x21\x94\x0a\xa2\x37\xb8\x84\x56\x94\x20\xb0\x61\xdb\x81\x23\x3e\x01\x57\x83\x90\xb2\xe7\x01\x19\xd3\xe0\xdc\x69\xef\xd9\xb5\x79\x36\x9c\xf6\xf4\x88\x85\xc0\xa3\xf0\xd4\x4c\x0d\x24\x27\x07\x3e\x6e\x58\x94\x7e\x65\x90\x19\x3d\x5f\xc6\xb0\x57\xc9\x37\x95\xd7\xe3\xa4\x5b\xe5\x3e\x95\xdf\xe3\x94\xf7\x51\xdb\x91\x7a\xbe\x6a\x3d\x5b\xf1\xff\xf1\x3f\xfe\xc7\x1a\x70\x27\x02\xbb\x49\x7d\xf0\x56\x95\x60\xd7\x69\x0a\x0f\xd2\x2b\x20\x00\x8e\xf9\x1b\x00\x18\x80\x30\xd0\x39\x4d\x27\xdb\xd9\xc9\xe4\x4c\xb6\x97\x95\x7c\x73\x30\xd6\xe7\xd6\x8f\xaa\x8b\xc3\x47\xf5\xc5\xfe\x84\x77\xb3\x92\x37\xb2\x1a\x05\xd5\x5c\x10\x43\x49\x4b\x65\x48\x7b\xf1\x46\x5f\x14\x3c\x77\xd1\xc4\x29\x71\x66\xd2\xba\xc9\x84\x1a\xc1\xa5\x50\xe9\x9c\xa6\x55\x8f\x26\xe5\x1a\x1d\x9e\x6e\x65\x1f\x9e\x9c\xcd\x3e\x3c\xdd\xcc\xf6\xab\x3e\x8d\x41\x38\x85\x38\x78\x92\xa2\x9d\x6f\xe1\xdd\x66\xf6\xda\x9e\xb0\x5d\x72\xb3\x1b\x77\x33\xe9\x3f\x5c\x8e\x1a\xd0\x59\xc7\x6e\xb1\x8b\xbe\x9f\xe4\x81\x8b\xd2\x2e\x03\xf8\x8f\x53\xa6\x8c\xf3\xb8\x34\x17\xf3\xe8\x8f\xca\x63\x16\xd5\x3b\xc8\x5b\xce\x5b\x88\x2d\xec\x80\xdb\x29\x5d\x03\xa8\x26\x85\x9e\x1e\x0e\xab\xf7\xcf\x4f\x7a\x9f\xcb\xe7\x6a\x20\x0d\x1e\x29\xc3\x07\xc9\x81\x48\xd6\x3e\x10\x09\x5b\x4a\xb3\x6a\xbb\x59\x9b\xa9\x57\xdb\xfa\x21\x6f\xc4\xea\x9d\x38\x5e\xad\x78\x3a\x5a\xab\x3e\xfc\xf0\x4c\x79\xc7\x58\x37\x35\xc1\xd3\x24\xe0\xa7\x41\x84\x2e\x9d\x70\xe3\x55\x08\xc1\x6e\xfa\xa4\x22\xa2\x6a\x9a\xeb\xf1\xfd\xcd\xf2\xfd\x27\x47\xfd\xc3\xa2\x52\x1b\x12\x20\xc8\xd5\x3c\x0c\x4f\x5f\xc2\xd9\xd0\xea\xac\x06\xcc\xa5\xdb\xdb\xb6\x9d\x8a\x2e\x70\xe5\x45\x13\xe5\x4d\xde\xd6\x9a\x53\x29\x9e\x3e\x1c\x56\xb7\x1f\xac\xcf\x3f\x3c\x29\xea\x09\xfe\x5f\xf6\xde\xfc\xd7\x8f\xe3\xb8\x17\xfd\x54\xcf\xf2\xfd\x9e\x8d\x3c\xa4\x48\x8a\xa2\x56\x5b\x8e\x65\xd9\x96\x17\x1e\xda\xb2\xe3\x97\xf8\x06\x49\x6e\xf0\xb2\xd8\x46\x82\x08\x08\x90\xc4\x40\x60\xf9\x8f\x12\x13\xc0\x36\xfc\x80\xc4\x59\x9e\xe3\x3c\xc4\x41\x5e\x80\xc4\xc9\xf5\x7e\xa9\xd5\x72\x6c\x99\xd2\xa5\x24\x8a\x22\x29\x2e\x87\x67\xf9\xae\x33\xdd\xef\x87\x99\xee\xa9\xa9\x6f\xf5\x7c\xe7\x90\xf4\xbd\xb9\xef\xde\x06\xce\xf9\xce\xf4\x54\x57\x57\x57\x57\x57\x57\x57\x6f\x95\x13\x22\x94\x07\x8b\x7a\x0b\x54\x9d\x67\x76\x10\xdd\xdb\xf9\xde\x75\x00\x9d\x04\x8e\x35\xa4\x5e\x0d\x83\x29\x93\x05\xab\xb3\x48\x30\xd9\x1d\x94\xd7\x0a\xe3\x46\x99\xa5\xa1\x48\xd9\x54\x88\xe6\x76\x6a\xcd\x31\xa2\xed\x16\x0c\x2d\xa2\x6d\x98\x2c\x56\x4c\x93\xa0\x52\xdc\xb5\x3b\x51\xe0\xd6\xe7\x5b\x1b\x73\x9f\x1c\xd2\xd5\x99\x79\xe4\xc8\x38\xd9\xdc\x1d\xce\xaf\xcd\x0d\x52\x50\xf0\xbc\x2c\x5c\x24\xe9\x1b\x7c\xd7\x88\xa5\x0e\xcb\x46\x67\x1a\x7c\x97\x92\xd4\x60\xfb\x28\xc8\x98\x72\x3d\x08\x3d\x07\x0d\x7d\xcb\xde\xd7\x2d\x7e\xb7\xe8\xea\x83\xdb\x87\xbe\x74\x85\x5d\x78\x68\x77\x12\x88\x3c\x07\x85\x81\xca\x60\x29\xea\x4e\x7e\x58\xbf\xe7\xf5\xef\xb0\xcc\xb1\xbf\x7f\xd4\xdc\x1c\x6d\xe6\x17\x4d\xe1\xd6\x57\xf6\xec\xe6\x70\xd7\x1e\x1b\x8c\xdc\xd1\x7c\x6c\x37\xb3\x89\x3d\x94\xce\xdd\x2a\x95\x2e\x37\xb6\x3a\x09\x93\xaa\x33\x89\x5a\xa7\x4b\xd7\x73\x4b\x8a\xd6\xac\x82\x33\xd5\x08\x15\x06\xd6\x19\xcc\x6c\x42\xb3\x32\xa3\xd1\x3c\xa7\xbd\xd9\x8a\xb9\x31\x5d\x33\x37\x26\xeb\xe6\xc6\x74\xcd\x6c\xcf\x07\x34\x72\xa6\x32\x56\x1c\xdc\x04\x0e\x33\xef\x39\x81\xd8\x21\x04\x76\x8b\x36\x11\x79\xcf\x4a\x38\x0d\x97\xd8\x6d\xc8\x9c\x4f\xce\x39\xfc\xc1\x1f\xfc\x81\xf9\xcb\xbf\xfc\x4b\x14\x45\x01\xf4\x6f\x0b\xa1\x4e\x94\x77\x99\x86\xc3\x2d\x53\xce\x9a\xc7\xa7\x8b\x1e\x49\x57\x1f\x78\x2d\x2d\x0f\xcb\x68\xeb\xab\xdf\x4d\x9a\xa6\x38\x7b\xf6\x6c\x58\x1a\x20\xbc\x0b\xfe\xb7\xea\xa8\x41\xc5\xcc\xd8\xc9\x1b\x47\x26\xe7\x4f\xee\xe6\x97\xb2\xc2\xac\x26\xd6\xe5\xdc\x28\x76\x61\x6b\x7c\x33\xfa\x24\xd6\x59\xf3\x43\xbd\x82\x17\x9d\x89\x64\xab\x63\xe6\x83\x5f\xee\x45\x04\x5a\x90\x5e\x94\x17\xba\x0d\x00\x0e\xce\x4e\x53\xbb\x77\x6d\x6d\x7e\x61\x67\x50\xec\xb0\xf6\xc6\x4f\x61\x96\x72\xd7\x5a\xef\xc2\x3d\x0f\xde\x80\xf3\xbf\x00\x8a\x49\x66\xf7\x2e\x1e\x9e\xbe\xfe\xc0\xf6\xf0\xfc\xea\x2c\x39\x91\x5a\x1a\x56\xdd\x58\x43\x1f\x1f\x90\x7b\xc3\xc4\x81\xf3\x45\xcc\x1e\xb4\x8c\x3c\xc0\x31\x06\x35\xc7\x24\x80\x5d\x58\xc9\xae\xc4\xe1\x07\xa7\x31\x7e\x78\xa8\xbd\x41\x79\xf9\xd2\xa1\xe9\x6b\xd7\xd7\xe6\x57\x2c\x85\x01\x44\x51\xd7\xb3\x37\x54\xfa\x0c\x06\x7c\xbc\x26\xdf\x31\xbb\xc4\x00\xfa\x1a\x97\xbe\x9d\x57\x67\x3a\xbe\xd0\x49\x18\x1c\xdc\xfa\x2c\x88\xc8\x16\xe4\x66\x3b\xc3\x62\x7b\x9e\xd8\xd1\x4a\x61\x8e\x02\x5c\x88\xd8\xe1\x44\xad\x51\x5f\xfd\x5d\x71\x94\x00\xed\xf9\xbc\x45\x2b\x53\xc1\xc3\x46\x8a\xa1\xa2\xda\xf3\x4d\x2c\x3d\xfb\xf5\xeb\x00\x2a\xc9\x32\x83\xc2\x1c\x3b\xb1\x9b\x9f\xba\x74\x68\x76\x71\x6e\xac\x76\x83\xa8\xf7\xbe\x58\x20\x18\x2d\x5a\x85\xc5\x94\x60\x4c\x89\xc6\xa6\x45\x62\x8a\x58\xcb\x43\xc6\x77\x75\xbe\xb1\xa9\x91\x2e\xe3\xa6\x8f\x3b\x3a\x46\x57\x57\x1e\x92\x8e\xbe\xae\x7f\xfe\x2d\xf6\xab\xe1\x8f\xd1\xa1\x19\xf5\x5d\x2e\x7a\x00\x30\x59\x96\xf1\x75\x61\xe1\x38\x01\xe9\x6a\x65\x6b\x08\xb8\x02\xf4\x4a\xd4\xdf\x32\x3d\xf4\xcf\xce\xb9\x21\x11\xcd\x40\x98\x00\x94\x3b\xe7\x72\x18\xe4\x65\x4e\xfb\xfb\x9b\xc9\xce\xe8\x70\x72\xd9\x94\xc8\x93\xb9\x5b\xcd\xc7\x76\x3d\x1f\xdb\xf5\x74\xea\xd6\xd3\x99\x5b\x4d\xe7\x6e\x35\x99\xbb\x61\x52\x60\x48\xd6\xa5\xd5\x9d\x24\x30\x70\xd5\x33\x00\xeb\x00\x38\x43\x85\x23\x58\xd4\x6b\x55\x6c\x4a\xb3\x22\xa5\x51\x99\xd3\xa4\xc8\x69\x34\xcf\x69\x34\x5f\x35\x3b\xd3\x15\xda\x29\x33\x9a\x58\x43\x13\x67\x30\x73\x84\x29\x88\x66\x0e\xae\x32\x56\x2a\x5d\xe0\x0f\xde\xf3\xc6\x49\xf0\xbe\xa0\xf1\xc2\xb4\x0c\x16\xd7\xdc\x39\x14\x46\xb3\x7e\x11\x24\x11\xe1\xec\xd9\xb3\x76\x6d\x6d\xcd\x14\x45\x21\x65\x4c\xab\x7b\x4d\x0e\x97\xc9\x47\x4c\x4e\xba\xda\x09\xcf\xa7\x4b\x3e\x34\x1d\xdb\x55\x06\x99\x26\x06\x2f\x43\x9f\x38\xc9\x1f\x00\xb0\x45\x51\x98\xcf\x7f\xfe\xf3\x46\xd3\xf7\xcc\x0b\x56\xdf\x0d\xe5\x0a\x47\x34\xbb\xb2\x31\xbb\xf2\xce\xfa\xec\xfc\xfa\x34\x39\xb9\x32\x4f\x8e\x86\xe9\x1e\x62\x86\x0f\x1f\x68\x86\x8e\x36\xe2\x35\x51\x74\xb3\x3c\xf3\xa2\x75\x48\x1b\xf1\x89\x21\x25\xb0\x73\x85\xac\x41\xb1\x3b\x28\xaf\x5d\x59\x9f\xbf\x51\x9a\xf6\x81\x86\xac\x6c\x16\x40\x4b\xee\x3c\x1f\xea\x78\xde\xae\xbd\x9c\xfa\x41\xc7\xcc\x12\x66\xbb\xc3\xf2\xc6\xab\xf7\x8c\x7f\x74\x74\x94\xbe\x7b\x73\x9c\x3d\xb2\xe0\x35\x61\xbb\x6c\x1b\xc3\x44\x32\x42\x7a\x50\x78\x67\x56\xdb\x2d\xdc\x3b\x45\x75\x5f\xe8\xda\x5e\xa6\xe6\x90\x57\xbf\x87\xd0\xc3\x13\xe6\xc6\x8e\xae\xad\xcd\x2f\x5c\xde\x98\x5d\xdc\xcf\xcb\x1d\x07\x37\xab\x07\x1c\x61\x9a\x56\xe1\x49\x9d\x9c\xf0\xc9\x4f\x7e\xd2\x7c\xf7\xbb\xdf\xe5\xb2\x18\xeb\x83\xfc\x77\x1e\x1f\x9e\xf9\x39\x2e\x5d\x9d\x87\x0c\x5d\x8d\x25\x10\xe9\xe3\x59\x47\x6d\x85\xd2\xb5\x00\x6c\x99\xb8\xd9\xcd\x95\xe2\xfa\x34\xb5\xdb\x6e\xea\x1e\xf0\x66\x65\x65\x3c\x04\x1e\xd7\x0b\x02\x2b\xce\x07\xa5\x1e\xe4\xb3\xae\x58\x6f\xe9\x36\xbc\x17\xa1\xb6\x2d\x15\x9f\x59\x63\x90\xb4\x5b\x82\x73\x6d\x60\x6e\x91\x33\xe2\x00\x00\x89\xa5\xd5\x7b\x46\xd9\xbb\xb2\x92\x5e\x9c\x64\x48\xdd\xe2\x0d\xa2\x81\x87\xcc\x2a\xd5\x46\x38\xf2\x37\xc6\x6b\x39\x32\xd7\x0c\x9e\x98\x91\xd9\xd7\x48\x5d\x36\x12\xeb\x1a\x95\x75\xc1\xf5\xc5\xd7\x85\xff\xa0\x34\x2c\xcb\x3f\x66\x2c\x5a\x2c\xa7\x23\x56\x86\x4e\x6f\xd6\x7c\x5e\x5d\xd4\xe5\xa7\x34\xbc\x01\x53\xb7\x21\x83\xe6\x7c\x97\x02\x08\xa3\x19\xfe\x27\xd7\x75\xcc\x00\xe4\xd4\xec\x4a\xca\xeb\xf7\xdc\x39\x57\xfd\x26\x18\x39\x20\xb5\x09\xd2\x22\x43\x3e\x1f\x26\xd9\xe8\x70\x92\x93\x75\x39\x39\xa4\xa6\x44\x6e\x4a\x97\x27\x73\x97\x27\x25\x52\x2a\x5d\x4a\x16\x29\x39\x67\xc8\xd6\xf2\x40\xb0\xd6\x90\x75\x06\x85\x33\xb0\xb5\x77\xa5\x28\x53\x9a\xd8\x04\x33\x47\x28\x9c\xa1\x99\x33\x98\x59\x83\x39\x08\x33\xb4\x0d\xad\x82\x10\xee\x11\xf2\x06\x4a\xd8\x4d\xc5\xa6\x81\x7c\x87\x11\x3c\x4c\x7c\x6a\x08\x68\x1f\x2a\xc7\x17\xe3\x1e\x39\x72\xc4\xdc\xbc\x79\xb3\xab\x1d\xf4\xf1\x30\x77\x79\x2d\x34\x43\x41\x6b\x8b\xb7\xf3\xdc\x07\xb6\x4b\x57\xc7\xe8\x5e\xa6\xbf\x97\xe5\xd9\xfa\xfd\xf2\x97\xbf\x0c\x61\x74\x07\x43\xbb\xe5\xa1\xa8\x7f\x47\x99\xdd\x7b\xeb\xf0\xec\xfc\xb1\xbd\xfc\xbd\x79\x61\xd6\x13\x87\x3c\x74\x70\x5c\xa7\xd7\xa1\x99\xad\xd0\x4e\x29\x91\x1b\x31\xe4\xa0\xb5\x7d\x56\x4c\x73\x68\x28\xf3\xe4\x33\x9c\x7e\xf1\x6f\xbd\x3e\xc6\x8e\xf3\xf2\xc6\xd5\x8d\xd9\xf9\x2b\x1b\xd3\xb7\x2d\x35\x8b\xbf\x7d\x1f\xc6\x07\x14\x40\x7b\x17\x8d\x18\xac\x1b\x5a\x34\x5a\x2a\xe3\x1b\x6e\x36\x4d\xed\xe8\xe2\xe6\xe4\xf5\xfb\x6f\xe5\x3f\x5e\x9b\x25\x27\xb2\x92\x56\x17\xa7\x9d\x3c\xa1\xcc\xf5\xd2\x62\x46\x7b\x1a\x2d\x18\x75\xde\x90\x54\xcc\x35\x87\x18\x2a\xdf\xcf\x36\x9e\x1c\x07\x60\x77\x58\x5e\xbe\x74\x78\xfa\xda\xad\x95\xe2\x8a\x25\x4c\xa8\x3d\x75\xdd\x3a\x7e\x00\x62\xc0\xf5\xe3\x1f\xff\x18\xcc\x68\x09\x7c\x41\x7c\x10\x10\x35\xd4\x53\x11\xd9\xb7\x33\xea\x82\x59\xd6\x58\x16\x94\x6e\x49\xae\xd8\x1d\x16\x3b\xe3\xcc\x6e\x5b\x42\x61\xaa\xdb\x44\x9b\xd4\x7c\x42\x2f\x18\x32\xfc\x7b\x23\x84\xa4\x4b\xbc\xc0\xb5\x38\xef\x13\xb5\xbe\x65\x5e\x1c\x6d\x2b\x32\xdc\x8c\x9b\x1f\x9a\xa4\x8f\xac\xcd\x92\xf5\xfd\x41\x99\x96\xd4\x5e\xa4\xeb\x3b\x23\x21\xf0\x3c\xc4\x94\x50\x9f\xce\x57\xbe\x77\x75\x98\x7d\x70\xc9\x70\x50\x7c\x77\x3b\xf4\x31\xa6\xef\x26\xce\xdb\xc1\x05\x2c\xca\x7b\xdf\x34\x00\x80\x7f\xfa\xa7\x7f\xc2\x6b\xaf\xbd\xc6\x3d\x30\xdc\xc8\xf5\xbb\x8e\xb8\xd1\xe2\xa7\x22\xfd\x62\xde\x9c\xaa\xf5\x2f\x33\x54\x46\x4b\x0a\x66\xbc\xb4\xe2\x08\x29\x88\x52\x6b\xbc\x9c\x92\x81\x43\x0a\x38\x03\x47\xa9\xb1\xc8\xe0\xbd\x2d\x80\xf1\x8b\xe6\x7d\x70\xde\x23\x54\x79\x5d\x0a\x67\x50\x3a\xa2\x02\x04\xaf\xd8\xb9\x92\x2f\xa8\x71\xb1\xf3\x1d\x40\x7e\xc4\x16\x0c\x17\xfe\x1d\xcc\xd0\xf1\x65\xe6\x1e\x16\x28\xfa\xeb\xe2\xc5\x8b\x00\x00\x66\xb4\xc4\x3a\xe3\x58\xe8\x32\xee\x3b\x0d\xd1\x25\x78\xfb\xc2\xdf\xa9\x4c\x76\x19\x23\x7d\xf3\x88\x79\x83\x5a\x9d\xcc\xe7\x3f\xff\x79\x23\x4e\x84\x0e\xfa\x5d\x7a\x06\x9d\x73\xb3\xd2\x60\x72\x79\x63\xfa\xd6\xc9\x8d\xfc\xfc\xea\x2c\x39\xba\x36\x33\xc7\x08\xec\x92\xd1\x2e\x65\xec\xda\x17\xf0\x02\x8a\xd1\xd2\x42\xd2\xee\x92\x9b\x25\x02\x8d\xa1\xa4\x6b\x77\x87\x22\x71\x93\xeb\x6b\xf3\x37\xde\xd8\x9c\xbc\xb2\x9f\x97\x3b\x95\xe7\x12\x5e\x36\xd5\x7b\xaf\x7c\xf9\xf9\x7a\x35\xb9\xce\xa5\xe6\x4b\x90\xeb\x4a\xde\x31\xd9\xcf\xcb\x9d\xf3\xc7\xc7\x3f\xba\x67\x3f\x7b\xe4\xd8\x28\x7b\x4f\x62\x91\xf3\x69\x1c\xe2\x45\x62\xa4\x7a\xef\x8c\x9f\x62\x5b\xbc\xf8\xdd\x3b\x02\xa8\x65\xa4\x70\x4f\x17\x37\x86\x5a\x6b\x3e\xd9\xa4\xc3\x38\x2f\x6f\xbc\x75\x78\xfa\x93\x4b\x87\xa6\xaf\x8f\x6a\x6f\x0b\x21\xb4\xdb\xd6\x74\x91\xe8\xdb\x2c\x00\xec\xed\xed\xf9\x77\x29\x27\x4b\xbd\xd2\x92\xc7\x49\x8f\x04\x4e\x89\x77\xf5\x37\x62\xcf\x8e\x7d\xc3\xb9\x73\xe7\xdc\xd6\xd6\x16\xa1\xa9\x38\x3f\x4d\x92\x38\xe7\x12\x22\x4a\x9d\x73\x29\x11\x65\x0e\xc8\x08\x58\x39\xb9\x9b\x9f\x3a\x32\xce\x1e\x49\x1c\x65\x44\xec\xa8\x63\x6a\x7b\x5f\x00\x7e\x43\x26\xb5\x4f\x37\x64\x44\x06\x47\x21\x97\x5d\xa2\x30\x55\xd4\x82\xc1\x82\x3c\xb4\x65\x5e\x69\x4c\xad\x25\x34\x35\x0c\x55\xc4\x14\xd7\xd7\xe6\x2f\x6f\xaf\x14\x37\x4a\x83\x31\x08\x73\x54\x42\x5a\xa2\xdd\xa0\xdd\xe9\xd3\xa7\xe9\xcc\x99\x33\x74\xee\xdc\xb9\x16\xff\x18\x4f\x3d\x9f\xe5\x9f\xf6\x4d\xd6\x95\x7c\xe7\x38\x79\x3e\x1a\x5e\xfe\x2b\xd9\xc5\xd3\x49\x7a\xe5\xb7\x98\x0c\x49\xba\x34\xfa\x39\x6d\x9e\x8e\x4e\xb9\x53\xca\xaa\xd1\x43\x91\x74\x32\x8d\x87\xb7\x4a\x9c\x46\x0b\x18\xec\x32\x7a\x78\xfe\xad\xb2\xdc\xbc\x79\xd3\x01\xc0\x47\x3e\xf2\x11\x32\xc6\x80\x88\x9c\x73\x8e\xa8\x5a\x7c\x65\xeb\x17\x9e\xde\xd6\xbf\x85\x73\xae\x64\x86\xc2\xbc\x56\x26\x25\x80\x39\xaa\xce\x7f\x0e\x60\x5e\x2b\xdf\x39\x1a\x45\xec\xa7\x97\xaa\x67\xa2\x29\x88\x26\x96\x30\x76\x06\x63\x97\xd2\xbe\x35\x18\xb9\xd4\xec\xdb\x94\xc2\x9f\x4b\x68\xdf\x25\x34\xb2\x06\xfb\x48\x68\x04\xa2\x11\xaa\x45\xb6\xe3\x7a\x07\xd4\x88\x88\xf6\x9d\x73\xe3\xfa\x79\xe4\xaa\x2d\xcd\x3e\x6e\xdf\x3f\x53\xbd\x18\x97\x88\xc6\x44\x34\x15\x86\xcc\x1c\x40\x49\x44\xf3\xba\x8c\x65\xcd\x97\x60\x60\x78\x65\x79\xf6\xec\x59\xfb\xb3\x9f\xfd\x4c\xb6\x0f\xcb\xde\xf9\xb3\xe7\x61\xac\x4e\x35\x3c\x9a\xac\x4a\xf9\xe0\x9a\x83\xe7\xc9\xd5\x8d\x6c\x7b\x10\xef\x3c\xf2\x34\xb4\x09\x00\x00\x20\x00\x49\x44\x41\x54\x4e\xca\x3f\xa7\xdb\x62\xb1\xad\x70\x9a\x24\x6e\x2d\x1f\x29\xc7\x1e\x4e\xd2\xcd\xcb\x03\x00\xe6\x23\x1f\xf9\x08\x3e\xfe\xf1\x8f\x13\x35\x2b\xb2\xc9\xe7\x5b\xeb\xfd\x04\x40\x42\x44\x95\xde\x87\xcb\x8a\x04\x44\x40\xb2\x3e\x4b\x0e\xad\xce\x93\xcd\xc4\x22\x07\x14\x4f\x38\x0b\x7e\xd7\x4c\x33\xbd\xe1\x5a\x73\x1f\x32\x69\x33\x65\xd5\xea\x87\x43\xa0\x05\xa3\xa5\xd1\xe7\xd6\xc0\xde\x5a\x29\x2e\xfd\xb7\x7b\x26\xcf\xbd\x7e\x64\xfa\x93\x69\xe6\x6e\x81\xe0\x65\xd6\xff\x79\x4f\x60\x89\x4a\x36\xcb\x3a\x4f\x77\xf6\xec\x59\xbb\xb5\xb5\x45\x75\xbb\x85\x73\x2e\xf0\x04\x95\x91\xe6\xdf\x93\xba\x5f\xcc\x1c\xc1\x4c\x32\x5b\x26\x96\xcc\xa1\x69\x7a\x24\x2f\xcc\x3a\x55\x03\x09\x31\x20\xaf\x0d\x10\x17\x1e\xeb\xd9\x07\x31\x0b\xa1\xd4\x74\x58\x80\xeb\x61\x7d\x7a\x30\x06\xf1\x35\x47\xf5\xef\x2c\xb1\xa3\xb7\x36\x67\x3f\xfa\xe9\xbd\xa3\xe7\xdf\x59\x9f\xbf\x59\x18\x77\x8b\x88\xf6\x01\xec\x03\x18\x13\xd1\x98\x1b\x30\xce\xb9\x12\x80\xab\xdb\xa8\x3b\x7b\xf6\xac\x3d\x79\xf2\x24\x5d\xbe\x7c\xd9\xa3\xe4\x72\xa5\xc9\x31\x18\x9c\xec\x8b\x4c\x82\xb6\x12\x05\xda\x8d\x0f\xca\x37\x2e\xb8\x52\xd0\x03\x2c\xb3\xbe\x5d\x90\xe8\xba\xb2\x88\x28\x41\x75\x09\x61\x86\x6a\xd4\x97\x91\xc3\xe0\xe8\x28\x3b\x7a\x7c\x2f\x7f\x6f\x66\x69\x85\x1f\x8e\x43\xa8\x04\x94\xdf\x85\xe2\x05\xac\x32\x16\x9a\xdc\x89\x00\x62\x73\x83\xa1\x29\x29\xae\xc1\x96\x56\x60\x42\xd0\x02\xf2\x85\xe2\xdf\xda\x9f\x83\x90\x50\x03\x67\xf6\x07\xe5\xf9\xab\x1b\xf3\xb7\x66\xa9\x1b\x81\x82\xd1\xe2\xad\xf4\x12\x08\x0d\xcb\x45\x76\x17\xc9\x8e\x8d\x57\x38\xaf\x68\xfe\x5d\x0b\x5a\x07\x2c\x3b\x6e\x8e\x5b\xe6\xad\xd1\xc4\xd3\xc9\x6f\x9c\x2e\x0d\x87\x66\xc8\xc4\xe8\xd7\xca\xc6\xdf\xbb\x70\x77\xa5\x89\xf1\x4a\x2b\x4f\x57\x5c\x5f\xbc\x31\x3c\xf2\x7b\x8b\x37\xcf\x3d\xf7\x9c\x3b\x77\xee\x9c\x3b\x77\xee\x9c\x3b\x73\xe6\x8c\x87\xa1\x5a\x19\xa0\x36\x5e\xfc\x9f\x1f\xe9\x78\x43\xa6\x20\x22\x2f\x73\xfe\x37\x18\x33\x44\x34\x45\x6d\xcc\xb0\x29\xa5\x30\x6d\x53\xaf\x33\x99\x10\xd1\x8c\x88\xc6\x00\xa6\xfe\x17\x8b\x8b\x66\xfd\xd9\x2a\xde\x60\x19\x13\xd1\x7e\x6d\x80\x04\xe3\x05\x95\x82\xf3\x77\x0a\x8d\xfd\x3b\xc3\x33\xae\xf1\x4c\x6b\x3a\x67\xb5\x12\x9c\xd7\x86\x4a\x89\xb6\x1b\xda\x11\x85\xe3\xd5\xf1\xda\x6b\xaf\xe1\xaf\xfe\xea\xaf\xec\x7d\xf7\xdd\x67\xf6\xf6\xf6\x38\x6f\x64\x7b\xe1\xcf\xdc\x28\x80\x02\xcf\xe3\x64\xa7\x1d\xab\x43\x2b\xd2\x48\x37\x38\xcf\x8b\xb7\x69\xed\xb9\x65\x24\x44\xe8\xd6\xe2\x35\xf8\x18\x6e\xad\xfc\x1a\x1f\x38\x7c\x28\xf3\x0b\x2f\xbc\xe0\x9e\x7d\xf6\x59\xb7\xb5\xb5\x45\x2c\x04\x7d\x8f\xca\x68\x31\xa8\x06\xb1\x29\x11\x65\xd6\xc0\xcc\x52\x67\x53\x4b\xd9\xfa\x2c\x39\x3c\x2c\xcc\x46\xe2\x28\x09\xb9\xd4\x94\xb4\x16\xdd\xd6\x8a\xb6\x71\x2e\xb4\x4f\x7a\x96\x27\xfd\x13\x5f\x27\xc6\x8c\x17\x2d\xb8\xfa\x5f\x95\x85\xc3\x7e\x5e\x5e\xbf\xb8\x39\xfd\xf1\xab\xc7\xc6\x3f\xda\x5e\x2d\x2e\x5b\x72\x7b\xa8\x0d\xef\xfa\x77\x4a\xcd\xb4\x91\x97\x4d\xe7\x65\xb1\x1e\xb4\xfb\x41\x87\xab\x9f\x89\x88\x5c\xdd\x80\x13\x3f\x98\xaf\xf9\x93\x80\x90\x14\xc6\x61\x9c\x97\xd3\xcc\x99\x64\x6d\x96\x6c\xe6\xa5\x59\x31\x20\x23\xba\xb0\x05\x6f\x51\x6c\x9a\x2d\x14\x2e\xf4\x8f\x75\xbf\xa8\x4e\xbb\xd5\x3c\xf7\xcf\x54\x45\x94\xc6\xcd\xde\xd9\x98\x9f\xff\xf7\x7b\xf7\x7f\x78\xe9\xf0\xf4\xb5\x69\xea\xb6\x51\x1d\x45\xe0\xdb\xb8\xd7\x0b\x33\x31\xb0\xf0\x9e\x27\x77\xee\xdc\x39\xe7\x9c\xa3\xfd\xfd\x7d\xad\xcd\xc9\xa9\x22\x4e\x9a\x94\x41\x03\xc0\x26\xec\x83\x54\xca\xbc\xc1\x71\xe3\x8b\x0b\xae\x47\xb8\xd0\x98\x99\xc7\xc5\xe3\xe2\x16\x67\x82\xca\x55\x9d\x00\xc8\x00\x0c\xc8\x51\xbe\x3a\x4f\x0e\x9d\xba\x35\x78\x6c\x50\x9a\xc3\xad\xc3\x83\xd8\x2e\x06\xee\x75\xa9\x2c\x66\xd7\x82\xe1\x0b\x8d\xaa\xe4\xde\xba\x09\x53\x39\xa1\xe2\x64\xd0\x76\x13\x55\xf1\xac\x1e\x3d\x5e\x59\xeb\x3e\x9b\xea\xc1\xcc\x13\x7b\xe5\xad\xc3\xb3\x57\xc7\x99\xdd\xa9\x0d\x17\xef\x75\xe1\xee\x42\xe7\x9c\x73\xcf\x3e\xfb\x6c\x57\x87\xe7\x83\x74\x97\x69\x69\x62\x46\x81\x27\x5f\x0a\x01\x0f\x2d\xc3\xb3\x03\xdf\xb2\xb0\x0c\xfe\xa0\xf8\x64\xe8\xa2\xe9\x4e\x71\xdf\x69\xb8\x1d\x7e\x69\x6d\x6f\x01\x0f\x6b\x4f\x0e\x95\x82\x04\x84\xe1\xca\x8c\x96\xb2\xfe\xf3\xc6\x8c\x97\x3d\xef\xce\xf5\xef\x73\xe7\x9c\x57\xc0\x73\x54\xc6\x89\x5f\x04\x3b\x45\x63\xa4\xf0\xe7\x31\x2a\xc3\x62\x52\x7b\x4f\xbc\xb1\xe1\x3d\x29\x93\x5a\x91\x8d\xd0\x78\x5d\xbc\x51\x32\x42\x73\x70\x9c\x57\x78\x7c\xbb\xf3\x9c\xd8\xf4\x90\xa7\xbb\xee\x14\x4a\x00\x65\x6d\xac\xf8\x36\x14\x3c\x4f\x17\x2e\x5c\xc0\x3f\xfd\xd3\x3f\x79\x97\xb4\xd7\x37\x9c\x87\xd2\x58\xd7\xe2\x79\xe0\x71\x7c\xb4\xa7\xc5\xf3\xa0\x19\x0e\x5d\x53\x4b\x31\x83\x56\x6b\xb7\x7d\xe2\x65\xde\x1a\x6e\xae\xcf\x17\x0c\x66\xe8\x32\x29\xf3\x5c\xf8\x65\xf2\xe9\x17\x64\xfa\x81\x6a\x30\x60\xe0\x3b\x69\x20\x99\x27\x0e\xf3\xc4\x15\x79\x61\x06\x6b\xb3\xe4\x50\x5e\x9a\x55\x83\xf6\x5d\x5d\xaa\xee\x25\xf6\x8d\xeb\x60\x02\x3b\xcb\xa4\xe9\xa0\x01\x40\xdb\x32\x5d\x13\x5a\xeb\x6d\x3f\x02\x06\xc6\x99\xdd\x7e\xfb\xf0\xec\x95\x57\x8f\x8d\x9f\xbf\xb2\x31\xbb\x50\xa4\xb8\x55\x1b\xe2\xde\xf8\xf6\x6d\xc2\xb7\xa7\x12\x4c\x3e\x9e\x79\xe6\x19\xeb\x07\x1c\x7e\xd6\xc1\x1b\x51\x9e\x1f\x8c\x27\x54\xf3\xc4\x38\xe7\x88\x40\xe9\x24\x73\xe5\x34\xb5\xd3\xcc\x9a\x6c\x75\x6e\x36\xb2\xd2\x0c\x09\x64\x84\xbb\xa8\xa9\x10\xb6\xae\xd3\x3b\x62\xab\xca\x6d\x33\x2f\x2c\xba\xf5\x4c\x6c\x6c\x9d\x86\x23\xc4\x8e\x43\x20\x87\xc2\xb8\xd9\xcd\xd5\xe2\xe2\x4f\x4f\x8c\x7e\x78\xe1\x9e\xc9\x4f\xc7\xb9\xbd\x09\xc2\x2e\x98\xa7\x05\x95\x3e\x98\x52\x33\xfd\x55\xfa\x41\x95\x37\xe4\xf6\xf6\xf6\xe8\xf5\xd7\x5f\xf7\xd4\x70\x6f\x4b\x28\x06\xb0\xd0\x47\xc9\xef\xe1\xd9\x4f\x15\x69\x0a\x53\x1a\x30\x3c\xce\xc3\xca\xef\xad\x06\xc0\x0c\x17\x4f\x0c\xff\xf3\x6b\x3f\x52\xe7\x5c\x4e\xc0\xc0\x38\xca\x1f\xba\x39\x7c\x6c\x75\x9e\x1c\x07\xbc\xc1\x8e\x96\xc4\x35\xf6\x04\x37\x30\x1a\xa9\x6c\x59\xe0\xfe\xbf\x63\x20\x44\x0b\x46\x4b\xd3\x18\x1a\x3b\x8b\x82\x11\x54\xc7\x30\x6b\x3e\xe0\xf3\x71\x8e\xd3\x56\xcd\x46\x5a\xc2\xfe\x95\x8d\xd9\x2b\x7b\x83\xf2\xa6\x35\x61\x7e\x3e\x74\x28\x00\x9c\x1f\x21\x6f\x6d\x6d\xd1\xd6\xd6\x16\x9f\x2e\xe2\x41\x4e\xd7\xc8\x78\xe9\x51\x89\x4d\x91\x70\x25\xc7\x15\xbb\xe6\x06\x8e\x75\xa4\xda\x54\x93\x46\x8f\xa6\xe0\x64\x07\xa1\x4d\x51\x49\x5c\xb2\x0c\x9e\x26\x8d\x8e\x65\x34\x71\x3a\xb4\xf2\x4b\x9a\xfa\xd2\xca\xf3\x91\x9d\x56\x57\x99\x64\xa7\xa3\x79\xc6\x42\xbe\x1f\xfa\xd0\x87\xe8\xd0\xa1\x43\xf8\xf2\x97\xbf\x6c\x4f\x9f\x3e\x5d\x99\xea\x95\x20\x7b\x63\xc5\xc9\xbf\x5a\xbe\xb8\xcc\x15\xf5\x94\x0b\x9f\x5f\xf7\x6b\x4c\xfc\x54\xd2\xac\x56\x42\xde\x58\xe1\x7f\xdc\x33\x32\x45\xa3\xc4\xfd\x14\xcf\xb4\x36\x64\xbc\x41\xe2\x3d\x31\x13\xaa\x5c\xc9\x53\xa6\xf4\xbd\x87\xc7\x1b\x2b\x9e\x06\xbe\x00\x37\x18\x2c\xdc\x28\xa3\xc6\xe3\xe4\x17\xe0\x52\x6d\xb4\xf0\xa9\x20\x59\xbf\x31\x39\x90\x83\x33\x4d\x7e\xb5\x3a\x95\xae\x6d\xad\x0d\xf2\xae\x55\xe2\x97\x32\x18\x93\x47\x6e\xf8\x90\xc0\xe9\xf3\xd0\xda\x3d\xa0\xe7\x47\x02\xa7\x2c\x87\xc6\x13\x8d\x96\x96\xfe\xff\xc5\x5f\xfc\x45\xb3\xb1\xb1\x81\x2c\xcb\x7c\x5c\xd0\xdf\xfe\xc1\x2f\x15\x40\xa5\xf3\x0d\x88\xcc\x2c\xb1\xae\x30\x28\x33\x4b\xd9\xca\xdc\xac\x67\xa5\x19\x1a\x90\xa9\xbc\xeb\x08\x0b\x6f\x1b\xbd\xcb\xae\xac\xf0\xba\xb7\xd6\xc5\xae\xca\x15\x61\x5d\x88\xab\xc9\x5f\xe8\xe4\x39\xf7\xbc\xf7\xbe\xea\x20\x26\xa9\xdd\xbb\x7c\x78\x76\xfe\xfc\xf1\xf1\x73\x17\x0f\x4f\x5f\x9d\x64\xee\x06\x08\xfb\x40\x33\x4d\x54\xcb\xf9\xb4\x96\xd7\xb2\x42\x1b\xa6\x68\xe1\xa7\xff\x4f\x9f\x3e\xed\x3d\x4f\xc1\xeb\x52\xb3\xc3\x4f\xfd\xfa\x75\x3d\xe4\x3d\x52\x44\x64\x1c\x9c\x99\x64\xb6\x9c\xa5\x76\x9c\x38\x4a\xf2\xd2\x0c\xb3\x92\xf2\xc4\xa1\x5a\xfb\xe9\xc4\x9a\x17\xaf\x06\x1c\x35\xfd\x21\x78\x5c\x63\xc6\x50\x3d\x88\x6f\x8c\x96\x66\xdf\x2e\x85\x27\xc0\x91\xc3\x3c\x71\xa3\x1b\x6b\xf3\x8b\xaf\x9c\x18\x9f\x3b\x7f\x7c\xfc\xa3\xfd\x41\x79\xc3\x11\xf6\x00\xec\xba\xe6\x36\xf6\x70\xa1\x29\xf7\x8c\xba\x66\x71\xb6\xbb\x72\xe5\x0a\x2e\x5c\xb8\x80\xdd\xdd\x5d\x60\xd1\x90\xd7\xec\x08\xa9\x8f\x17\xa6\x79\xe5\x01\x74\x9a\x60\x72\xa1\xed\x82\xd5\x16\x29\xf1\xad\x71\xda\x42\xba\xb0\x50\xc9\x02\xb3\xdd\x61\xb1\x37\xca\xed\x8d\x72\xec\x66\xa9\x38\xcf\x45\x7a\x41\x00\x2c\xbc\x57\x91\xbe\x2d\xa3\xb1\x3c\x3a\x26\x4e\x25\xde\xca\x00\xaf\x2b\x9a\x38\x0c\xc0\xad\x94\xc6\x42\xf7\x95\x8e\x20\x02\xe4\x60\x56\xe6\xe6\x81\x13\x7b\xf9\xfd\x57\xd7\xe7\x17\xe6\x69\xb9\xe3\x9a\x6d\xd0\xde\x65\xea\xd7\xfd\x84\xb9\x79\xb1\x03\x82\xf3\x59\x0b\x3c\x3e\x36\xb2\x8b\xe1\x32\x11\x98\x65\x79\xc9\x5f\xa3\xc4\x75\xc1\x6b\x38\x3d\x9e\x65\xb8\xba\xe8\xe9\x0b\x17\x2b\x1f\x87\x8f\xc9\xfa\xb2\x74\xcb\xe8\x89\xb5\x93\x2e\x1a\x43\x9a\x17\x5f\x7c\x11\x2f\xbe\xf8\x22\x7e\xe7\x77\x7e\xc7\xec\xec\xec\xe0\xf0\xe1\xc3\x01\xd6\x35\x8b\x77\x2d\xd0\x6c\xb9\xa7\x66\x21\x78\xb8\x4a\xa0\x96\xc1\xd6\x4e\x37\x19\x57\xcb\x25\xd8\x37\x2f\x2f\xa6\xce\xaf\x19\xc9\xb2\xdd\x3c\x00\x5a\x8b\x10\x49\x2c\xa0\xa5\xf6\x4e\x0c\x8b\xc5\x9b\x9b\x65\x3a\xce\x07\x7f\xaa\xf0\xc2\xc1\x8d\xde\xd3\x12\xe1\x9d\x0f\x31\xf9\xd2\xd2\x71\xf8\xbe\x32\xde\xa7\x0d\x9a\x48\x9c\xd6\x9e\xb4\x3c\x62\xed\x4e\x4b\x67\x3a\xbe\x43\xc0\x6a\x70\x92\x7f\x9d\x6d\xe9\x3b\xdf\xf9\x8e\xfd\xce\x77\xbe\xb3\xb0\x23\x4e\xc8\x83\x5f\x3c\x3e\x22\xa2\x14\x40\x5e\x24\xd8\xbb\xb2\x31\x7b\x13\x40\x6a\x89\xf0\xf0\x4d\x7c\xf0\xd0\x24\x3d\x66\x1c\xa5\x5e\xaf\x02\x7c\x40\xea\x8d\x21\x40\x6e\x8f\xe6\x1a\xbe\xb9\xfe\x85\xda\x70\x8a\x27\xbd\x3a\xcd\xd9\x61\x96\xd8\xbd\x2b\x1b\xb3\xd7\x7e\x76\x6c\xf4\xfc\x9b\x9b\x93\x57\x47\xb9\xdd\x06\x41\x1e\x82\xe8\x8d\xec\x50\x2e\xd6\x49\xb7\xce\xe4\xfa\xdc\xe7\x3e\x67\xbe\xfe\xf5\xaf\x5b\x60\xf1\x80\xc9\xfa\x77\x56\xb7\x4d\xbf\x8b\x2e\x45\xb5\x84\x22\xb5\x84\xf4\xca\xc6\xec\xad\xc2\xc0\x4e\x52\x3b\x7a\xf8\xe6\xf0\xfd\x47\x47\xd9\xa9\xbc\xc0\xb0\x36\x6e\xc0\x8f\xf5\x70\xed\xa2\x35\xbb\xa6\x02\xcf\x9a\x91\x77\xb0\x6d\x5c\xd3\x87\xfa\x19\x0e\x47\x0e\x16\xb0\xb3\xd4\x8e\xae\xad\xcd\x2f\x9e\x3f\x3e\x7e\xf6\x67\xc7\xc6\x2f\x8f\xf2\xf2\x1a\x08\x7b\xcc\xab\x1a\x78\xe1\x9a\xc3\xe7\x02\x2f\x6a\xbc\x96\x88\xf0\xdc\x73\xcf\xe1\xd2\xa5\x4b\xaa\x5e\xc3\xc1\xdb\x82\x01\xaa\xa9\x22\xff\x22\xdd\x32\xfe\x8f\x44\x22\x3e\x8a\x94\x23\xf3\x56\x38\x77\xee\x9c\x7b\xf6\xd9\x67\x5d\x6d\x79\x12\x98\xb2\xac\x17\x6c\xa5\xb5\x05\x9e\x81\x90\x97\xe4\xf2\x53\x3b\x83\x53\x47\xc6\xd9\xbb\x52\x4b\x83\xf6\x3d\x45\xc2\xf0\xe0\xf6\x09\xb8\xd0\xf2\xda\x63\x62\xcf\x4a\xd7\xf2\xa4\x84\x69\xa5\xc6\x8a\xf5\xab\xd6\x83\x35\xca\x2a\xd7\x37\x88\xaa\xa2\xeb\x67\x6a\x2f\x10\xae\x85\x25\x29\x8d\xbb\x7c\xf9\xd0\xec\xf5\x51\x6e\x77\x6b\xeb\xdc\xcf\xff\x71\x65\x1e\xf8\xf7\xed\x6f\x7f\xdb\xa6\x69\x6a\xac\xb5\x1a\x3f\xb5\x11\x10\xaf\x23\x39\xaa\xe4\x30\x32\xad\x56\xa7\xcb\xbc\x15\x1a\x1d\x72\x24\xd7\x45\x03\x4f\xcb\xe1\x25\x3d\x32\x8d\xc6\x87\x3e\x9e\x0c\x8d\x57\xda\xb3\xe4\x43\xd7\x48\x58\xc3\x19\xcb\x5f\xa3\x31\xe6\x59\xd1\xca\xc7\x47\x18\x3e\x9e\x5e\x79\xe5\x15\xfb\xf2\xcb\x2f\xbb\x47\x1f\x7d\x94\xbe\xf2\x95\xaf\xd8\x7a\x5d\x01\xf7\xb2\x78\xe5\x18\x3c\x7a\xf5\x77\x3e\x75\xe4\xa7\x5d\xfc\xe8\xa8\xf4\x9d\x0a\xea\xc5\xbb\xb5\x22\x0a\xef\xa8\x14\x94\x5f\x77\x12\xce\xb3\x40\x7b\xdb\x32\x57\x68\x53\x54\x53\x4f\x72\x01\xb0\xc7\x2f\xbd\x2b\x16\xcc\xbb\x52\x2b\x41\x57\xd3\xea\x7c\xa7\xf0\xec\xb3\xcf\xba\xa7\x9e\x7a\xca\x3c\xfe\xf8\xe3\xf4\xe3\x1f\xff\x78\x99\xb7\x02\x68\x77\xc0\x5d\xde\x39\x19\x34\xdd\xa6\xc9\xb2\xf4\x9c\x69\x9e\x1a\x1f\x34\xef\x88\x26\x8b\x32\x2c\xf3\xf4\x68\x65\xd1\xf4\x34\xc7\xd7\x92\x2b\x05\xcf\x32\x9e\xa9\x6d\xe3\xdc\xb9\x73\x5c\xdf\x73\x23\x97\x7b\x5d\x0c\x4b\x63\x4a\x72\x6e\x94\x97\xd3\x71\x6e\xc7\x89\x25\xac\xcc\xcd\x46\x5e\x9a\x21\x01\xa6\xf6\x47\xb4\x94\x9c\x47\xe6\x75\x6e\xf8\xc6\x55\xbf\x8f\x77\x2c\xbd\xd7\xfb\x4d\x1f\x5e\x17\xd0\xd9\x49\x66\x77\x2f\x1f\x9a\xbd\xfa\xca\x89\xd1\xb9\x37\x8e\x4c\x7e\xb6\x9f\xdb\xeb\xa8\xa6\x44\x46\xa8\xae\x97\xf0\xd3\xa4\xc1\x53\x88\x66\xea\xd2\xaf\xbd\x02\xf3\x9a\x9b\x9f\xfc\xe4\x27\xa1\x3e\x59\x3b\xe5\xe4\x19\x34\x0e\x29\x53\x7b\x61\x02\xef\x2d\x9c\x1b\xe7\x76\xbe\x33\x2c\x76\xe6\x89\x1b\xa7\x96\xd2\xbc\x34\xc3\xc4\x52\x6a\x00\x03\x50\xf0\x34\xf9\x7b\x97\x1a\xcf\x94\x3c\xc8\x9f\x82\x71\xe3\xea\x38\x3e\xf8\xf0\x03\xfc\xc2\xb8\xd9\x28\xb7\xdb\x97\x0f\xcf\x5f\xfb\xe9\xbd\xa3\x73\xe7\x8f\x8d\x7e\x32\xc9\xed\x0d\x54\x0b\x93\x77\xa9\xba\xe0\x75\x5c\x1b\x30\xde\x8b\xea\xdb\x72\xf0\xee\x7a\x6f\xcb\xd9\xb3\x67\xed\xce\xce\x4e\x4c\x17\x42\xc4\x73\xb9\x96\x32\xce\x0b\x03\x39\x55\x24\x9f\xe5\xbb\x44\xd2\x2b\x9c\x39\x73\xc6\x77\x06\x1e\x87\xaf\xb0\x04\x40\xe6\xaa\xed\x9b\x03\x00\xd9\xe6\x38\x3b\x7a\x62\x37\xff\x85\xac\xa4\xd5\xf6\x46\xb7\x9a\x18\xd7\x08\x69\xcb\x1a\x0f\xc4\x36\x6e\x31\x4f\x7c\xdb\xa0\xa8\x63\x89\xfb\x48\x9a\x14\xad\xc3\x78\xf8\xf1\xe7\xfe\xac\x00\x6a\x9e\x43\x43\xe1\xdb\xb1\x7d\x56\x95\xa7\x72\xff\xca\xc6\xec\xfc\xde\xb0\xbc\x6e\x4d\x63\x99\xa2\xb1\x34\xc3\xdc\xa8\x73\x0e\x67\xce\x9c\xa1\x1f\xfe\xf0\x87\x31\xe5\x25\x2b\x5b\x3e\x6b\x9d\xa3\x53\xd2\x76\x59\xb5\x9a\x42\x95\x1d\x82\x86\xb7\x4b\x61\xcb\x7c\x9d\x02\xa3\x0a\x67\x24\xc8\x46\x60\x95\x6f\xb1\xf2\xca\xf4\xcb\x78\xc5\xcb\x65\x15\xf8\xae\xfc\x63\x34\xcb\x74\x31\x43\x4a\xe3\x51\x48\xf3\xf2\xcb\x2f\x5b\xa0\x1a\x1c\x3c\xf1\xc4\x13\xf4\x67\x7f\xf6\x67\xc1\x88\x61\xeb\x40\x3a\x8d\x18\x6a\xe6\xe7\xcb\x5a\xf9\x04\x63\x06\xb5\x62\x46\xb3\x1b\xa9\x35\xad\xc3\x0d\x11\xaa\x16\xe4\x4d\xfd\x77\x6f\xe0\xa0\xd9\xea\xec\xd7\xab\x78\x9c\xfc\x58\xf0\xb2\x56\x78\xb6\x76\x33\xfb\x72\x5b\xa0\x5a\xcb\x23\x47\xb2\x2f\xbf\xfc\xb2\xab\x8d\x16\xc9\x27\x69\x48\x48\xcf\x83\xe4\x71\x5f\x03\x97\xa7\xe3\x8a\x95\xeb\x35\x29\x07\xd2\x88\xe5\x86\x80\x34\xdc\x35\x79\x88\x19\xb8\xb2\x7c\xb2\x1c\x7d\x8c\x32\x39\xd0\x88\x75\x22\x31\xbd\x02\x91\x2e\x3c\x7f\xe1\x0b\x5f\x30\xc6\x18\xf8\xa9\x11\xef\xbd\xa3\x66\x2a\x84\xd3\xeb\x3b\x6b\x72\x06\x34\xca\xca\xc9\xee\xa0\xdc\x73\x84\xc9\xa0\xa0\x61\x5e\x9a\x95\xc4\x51\x6b\x56\xc0\x4f\x95\xa0\x65\xb4\xd4\xef\xfc\x0c\xaf\x9a\xaa\x4a\x5d\xb3\xa3\xf3\x5b\xd6\x0b\x60\x09\x76\x7f\x50\xde\xb8\x70\x74\xf2\xc2\xcb\x27\xf7\xff\xeb\x9b\x9b\xd3\xd7\x26\x99\xbb\xe9\xe0\xfc\x3a\x8e\x7d\xaa\xd6\x72\xed\xa3\x32\xc4\x5b\x3b\x89\x80\x66\xad\x22\x00\xb0\xf5\x8a\xad\x3a\x66\xeb\x5d\x3c\x79\xc6\xcf\x17\xf9\x1f\xdf\x78\x6b\x99\xaf\x78\x4d\xe4\x26\xa9\x2d\x6e\xad\x94\x7b\x7b\x83\xf2\x96\x35\x6e\x96\x5a\xca\x52\x4b\x99\x71\x94\x84\x6e\x30\x74\x8a\x55\xa1\xc9\xf9\xf2\x8a\x41\x78\x20\xcc\xef\xac\xad\xe0\x2d\xc1\x4e\x53\xbb\x7f\x7d\xad\x78\xeb\xd5\x63\xe3\x17\xff\xfd\xde\xfd\xe7\x2f\x1e\x9e\x5e\x98\x67\xee\x16\x80\x5d\x54\xc6\xdb\xbe\xab\x16\xe4\xfa\xc5\xf5\x53\xdf\xf6\xbd\xc7\xa5\x6e\xc3\xa1\xed\xbe\xfe\xfa\xeb\x34\x1a\x8d\xb8\x9c\x7b\x79\xf1\xef\xb2\x9f\xe1\xed\xca\x3f\x2f\x18\x3e\x07\xbd\xab\x48\xfb\xe6\xbf\x77\x8d\x18\x64\x58\xb8\x7f\xc5\x39\x57\x00\x54\x5c\xdd\x98\xbd\x35\xcd\xec\xf6\xea\xdc\x1c\x83\xab\xf3\x60\xd6\x07\xbb\x07\x3a\x04\x2e\x29\xde\x0a\x6d\xe0\x21\x1e\x98\x61\xc2\x4d\xd4\x30\x1f\xcb\x34\x4b\x2b\x0d\xcb\x50\x5a\xf6\xb5\xd3\x84\x53\x65\x40\xe9\xea\xcc\x3c\x70\xef\xee\xe0\xc1\xeb\x6b\xc5\x85\x5b\x2b\xc5\x9e\x77\x05\xa2\x12\xfc\x0a\xac\xe6\xd9\x82\x47\x09\x0c\x55\x3f\xbe\xc6\xdc\xd3\x07\x81\x5b\x96\xcf\x32\x5a\x7e\x1e\xdf\xba\xc2\x41\xf9\x72\x37\x70\xf4\xe5\xf3\xdd\xc6\x17\x85\xfb\xd2\x97\xbe\x64\x81\xf6\x14\xca\x17\xbf\xf8\x45\xdf\x49\x48\xf9\xf2\x6d\x35\xdc\x42\x5d\x77\x2a\x00\xc2\xd4\x10\x00\x80\x75\x38\x60\x38\x0c\x16\xa7\x02\x5a\xf8\x63\xcf\xde\x1b\xc4\xe9\xaa\xd3\xaa\xd3\x13\xde\x58\xe1\x77\xe1\x74\x04\x29\x9b\xea\x94\x06\xcb\xc3\x42\xe4\x17\x49\xaf\xe9\xc0\xae\x3a\xeb\x1a\x18\x1c\xf4\x39\x16\x34\x98\x98\x8e\xee\xa2\x25\xf6\xbd\x0f\x0d\x6a\x5a\xbf\x48\xba\xbe\xf5\x9c\xe3\x0a\xf2\x56\xff\xf2\x53\xc4\x2b\x0f\x83\x81\xbd\xbe\x36\xc7\xfe\xa0\xdc\xbf\xb2\x31\xbb\xfa\xde\x77\x56\x3f\xf8\xc0\xf6\xf0\xbd\x6b\x33\xda\x34\x8e\x52\xdf\x01\xd7\x4e\x6f\xd6\xe3\xf9\xdd\x45\x6d\x1d\x4a\xf0\xc7\x66\xb4\xd7\x43\x3a\x00\x8e\x60\xe7\xc6\xcd\x6e\xad\x14\x97\x7e\x72\x62\xf4\xec\xf9\xe3\xa3\xf3\xbb\x83\xf2\x1d\x47\xd8\xf1\xeb\x37\xc4\x3a\x0e\xee\x69\xe4\x7d\x57\x90\xff\x66\x19\x4b\x9c\x87\xbe\x0d\xd4\x83\x58\x6e\xcc\x81\x3d\x1b\xd1\xee\xec\x24\x2d\x8b\x37\x8f\x4c\x26\xd7\xd6\x67\xd7\x8e\xed\xe5\xaf\x3d\x72\x63\xf8\xee\x07\xb6\x07\xef\x39\x3c\x49\x4f\xa4\x8e\xaa\xc3\x21\x83\x91\x52\x0d\xe0\x83\x47\x05\x6c\x60\x8e\xf6\x40\xbf\x24\xd8\x79\x62\x27\xbb\x83\xf2\xda\x5b\x9b\xd3\xd7\xfe\xdb\xd1\xc9\x2b\x57\x37\x66\x97\xa7\xa9\xbd\x65\xe1\x46\x04\xda\x43\x7d\xa9\x2b\x1a\xcf\x13\x3f\xd9\x7a\x46\xed\x29\xe1\x10\x22\xbb\x65\xfb\xf4\x3f\x5d\x72\x6a\x01\xfd\x1c\x17\x6e\x05\x71\xa7\x06\x1f\xf1\x79\x1e\x68\xa3\x9d\x85\xc0\x2c\x4d\x3e\xda\xf0\x5b\xe3\xfc\x94\x51\x0e\x20\x9d\xa5\x2e\x7d\x70\x7b\xf0\xc8\xfa\x2c\x39\x69\x1c\xb2\x20\xa5\x9e\x18\xa2\x36\xe7\x19\xc2\x40\x84\x34\x5a\x44\x08\xeb\x6e\x6a\xa0\x76\x05\x4b\x0f\x4e\xed\x6e\xe4\xc6\x8d\xcf\xab\x4e\xe0\xa7\x90\x7c\xfa\x46\x38\x28\x29\x8d\xbb\x7a\x75\x7d\xf6\xc6\xde\xb0\xdc\x06\x5b\xa0\xcb\x46\xc5\x7e\x74\x09\x00\xb8\x7c\xf9\x32\xed\xee\xee\xc6\xbc\x17\x5d\x21\x36\x3d\xd1\x05\x2f\x47\x7e\xb1\xc0\xd9\x12\x1b\x91\xc6\x68\xe9\x1a\xc5\xc6\xd2\xf5\x2d\x4b\xd7\x48\xb3\x2b\x4d\x0c\x4e\x7b\xd6\xdc\x95\xb1\x6f\xcb\x46\xec\x92\xd6\x2e\xdc\x07\x4e\x93\x24\x89\x71\xce\x39\x7f\x14\x81\x1f\xbd\xc1\x3b\x0d\x5d\x38\xff\xc5\xba\xe6\x5c\x18\x2e\x7f\xb6\xf6\xb8\x38\x20\xac\x35\x09\xbb\x78\xd8\x34\x53\xeb\x99\xbd\xb7\xd6\xac\x70\x37\x7a\x3d\x22\x0d\x1e\x46\x8f\x1b\x8d\x57\x25\x4c\x9b\x7a\xba\x4f\x9f\x3e\x4d\x45\x51\xd0\x3f\xfe\xe3\x3f\xfa\x32\xc4\xfe\xb8\x47\x80\xcb\xa9\xe6\xbd\xd0\x60\xbb\x70\x5b\xe5\x5d\xba\xb3\x9d\x12\x67\x3b\xf2\xe1\xcf\xb1\xba\x06\x16\xf3\xe3\xdf\x35\xd8\x2e\xfa\xa4\x77\xa7\x2b\x1d\x97\xad\x65\x65\x6f\xe5\xf3\xda\x6b\xaf\x39\x6f\xb4\xb8\xea\xec\x12\xc7\x9e\x43\x07\x4f\xed\x45\xab\xdc\xc0\x75\x85\x71\xc5\xce\xb0\xd8\x7f\xfb\xd0\xf4\xf2\x28\x2f\x6f\xa6\x8e\x60\x2a\xc9\x4d\x08\x64\xf8\x12\x54\x30\x5d\x2e\x8e\x75\x01\x9f\x2e\xa9\x60\x1c\x4a\x72\xc5\x38\xb3\x7b\xd7\xd7\xe6\x17\xcf\x1f\x1b\x3f\xff\xc2\xfd\x7b\x3f\x78\xed\x9e\xf1\x2b\xe3\xcc\xde\x00\xb0\xe7\xe0\xf6\x50\x79\x18\x76\x6b\x0f\x03\x5f\x8c\x3e\x65\x1e\x49\xee\x2d\xb7\x00\xf0\xd2\x4b\x2f\xe1\xd2\xa5\x4b\x54\x97\xa9\x55\x47\x7f\xf4\x47\x7f\x44\x69\x9a\xfa\x32\x07\x1e\xb3\xe9\x9a\xb0\x43\xae\x6e\x9b\xa1\x5d\x21\xb4\x29\x2a\xe7\x89\x9b\xef\x0c\x8b\xbd\x2b\x1b\xb3\x77\xae\x6e\xcc\x2f\xed\x0d\xca\xeb\xf3\xc4\x8e\x2d\xa1\xa8\x6f\xc2\xae\xba\x22\x61\xc9\x39\x72\xb6\x24\x94\x8e\x60\x0b\x83\x62\x9a\xda\xf1\xce\x4a\x71\xf5\xd2\xa1\xd9\xab\x3f\x3b\x3e\x7e\xf1\xe5\xfb\xf6\x9f\x7b\xf5\xd8\xf8\xa7\x37\x56\xe7\x6f\xcf\x13\x77\x0b\x95\xc7\x69\x97\x9a\x6d\xcf\x7b\x68\x76\x0a\xb6\xa6\xcb\x50\x9f\x61\xd3\xd0\x59\x85\x9f\xfd\xec\x67\x34\x9d\x4e\xb9\xfc\x70\x79\xe2\x3c\x5a\xf6\x27\x65\xd3\xc8\xbe\x5d\x5a\xe5\xcb\xde\x79\x9c\xfc\x0d\x81\x9d\xe9\x62\xd0\xec\x26\x0a\x17\xc0\x39\xe7\xd6\x01\x6c\x12\xe8\x10\x80\xa3\x9f\x7e\x75\xf3\x37\xde\xfb\xce\xea\x7f\x5e\x99\x99\xa3\xc6\x35\xdb\xc0\xf8\x4a\x72\x12\x71\xde\x5a\x88\x1d\x6b\xbc\x68\xc4\xe8\xb1\x1a\xce\x0a\x9a\x5d\x7b\x0e\x69\xa0\xb4\xd3\x7a\x5b\xcb\x92\x2b\x6e\xae\xcc\x7f\xf0\x83\x87\x76\xff\xf2\xb5\x7b\xc6\xcf\xce\x12\xbb\x5d\x0b\xc2\x88\xda\xeb\x04\x42\xc7\xd1\x71\x63\x74\xd7\xe8\xa9\x2b\x1c\x04\xf6\xa0\x69\x6e\x07\xf7\xcf\x83\x8e\xff\x1e\xb4\xfc\x47\x0c\x4b\xcb\xcc\xda\x9e\x4c\x07\x00\x6c\x24\xda\x8e\xd7\x60\x7b\x04\x2b\xf0\x71\xfc\xad\x6f\x6c\x2d\x4e\x08\x5c\xf6\xd7\xd7\xd7\xcd\xde\xde\xde\xed\xc8\xbb\x84\xef\xd2\x59\x77\xeb\x39\x16\x87\x25\xb0\x7d\x68\x8d\x85\xbb\xc1\x93\x3e\xe5\x42\x0f\xfa\x02\xdc\x70\x38\x34\x93\xc9\x84\x7b\x5c\x8c\xf8\x0b\xa7\x38\xd7\x4b\x04\x56\x51\xf5\x03\xab\x00\xd6\x01\xac\xc2\x61\x1d\xc0\x90\x80\xd5\xac\xa4\x43\xeb\xd3\xf4\x9e\x13\xbb\xd9\x89\x93\xbb\xf9\xa9\x7b\xf6\xf3\x93\x1b\xd3\xe4\xe8\xa0\xa0\xd5\xc4\x51\x6a\x1c\x19\xb2\x48\x0d\xd3\xfa\x7e\xcd\x86\x83\x83\x35\x28\x0a\xe3\x8a\xb9\xb1\x93\x49\x66\xf7\x6e\x0d\x8b\x1b\x97\x0f\xcd\xde\xb8\x74\x78\x7a\xf1\xe6\x4a\x71\x63\x96\xda\x5b\x65\xb5\x00\x77\x0f\xd5\xaf\xf7\xb4\xec\xd5\x6b\xb6\x82\xc7\x05\xed\x6b\x27\xbc\x61\x01\x22\xea\xd2\xdb\x21\x3c\xf5\xd4\x53\x66\x73\x73\x93\xf3\x4c\xf2\x25\x85\xb8\x1c\xb5\xe6\xcb\xaa\xab\xee\x1d\xab\x78\xe5\xb0\x0a\x60\x98\x38\xac\xa6\x25\xad\x0d\xca\x64\x75\x63\x92\x1c\xba\x67\x3f\x3d\x7a\x74\x94\x1d\x5b\x9f\x26\xeb\xc3\x22\x59\x4d\x2d\x0d\x13\x07\xe3\x00\x14\xc6\x15\xb3\xc4\x8e\xa6\xa9\x1b\x4d\xd2\x72\x72\x6b\xa5\xd8\xbe\xb6\x3e\xbf\xb6\x3d\x2c\xb6\x27\x99\xdd\x2b\x8d\xdb\xb7\x84\x89\x83\x1b\x81\xed\x14\xac\x7f\xc3\x51\x07\x35\x4f\x5a\x8b\x72\x19\x3f\x80\xbb\xd7\x87\x75\xca\xa6\xb6\xab\x28\x96\x10\xe2\x39\xe6\xe6\x51\x03\x57\x60\xe2\x2f\xb8\xce\x50\x9d\x77\x52\x5c\x5f\x9d\x5f\x9e\x26\x76\x6f\x48\x66\x93\xe7\x2d\x17\x86\x37\x06\x86\xe3\xc6\xe5\x42\xf0\xbe\x90\x36\x58\x07\xbc\x3f\xcf\xc5\x1b\x2b\xe1\x68\x5c\xa5\x5c\xf0\x46\xcc\xe2\xb1\xcc\x04\xa4\xc3\x79\x72\xf2\xd8\x7e\x76\xdf\x95\x8d\xd9\xfa\x7c\xd5\xed\x01\xad\xdb\xa2\xbd\xd0\x06\xa5\xfe\xc5\x2f\x7e\xd1\xdc\x86\x8b\xcd\x07\x4d\xe1\xf4\x15\x8e\x58\x5e\x5d\xb0\xb7\x63\x28\x1c\x44\xe1\x1e\x44\xa1\xff\x47\x32\x5a\x96\x75\x96\x77\x2b\x2c\xe5\xcf\x33\xcf\x3c\x63\x9f\x7c\xf2\x49\xf3\xfd\xef\x7f\xbf\x75\x24\x3b\x1b\xf5\xfa\xf4\x88\xe0\x08\x71\xb5\x6b\x3f\xfa\x1d\xc0\x82\xd1\xd2\x05\xcb\xd7\xae\x1c\x3f\x7e\xbc\x65\x20\xb1\xe3\xc1\x65\x88\x75\xfc\x3c\x3e\xd6\x56\x34\x65\x18\x83\xb5\x11\x18\x08\x18\xfe\x2b\x69\xd0\x8c\xbe\x65\x03\x41\xf9\x2d\x3a\x20\x8c\xe0\xd1\xf4\xf6\x32\xfa\x39\x1e\xf9\x3d\x66\xb8\x6a\xb0\x98\x4c\x26\x00\x80\x7f\xff\xf7\x7f\xc7\xfb\xdf\xff\x7e\x78\x6f\x04\x9b\x4a\xf1\x53\x24\x2d\xd9\x6b\xf5\x0f\xe1\xba\x08\x14\xb3\xc4\xce\xb6\x57\xe6\x93\xbd\xbc\xd8\x7e\x6b\x73\x7a\x69\x63\x9a\x1c\x3a\x3a\xca\x8e\x1d\x19\xa5\x9b\xab\xb3\x64\x7d\x58\x98\xd5\x41\x61\x56\xf3\xc2\xe4\xc6\x21\x75\x54\x5d\x3f\x61\xe1\x6c\x61\xdc\x6c\x9c\xdb\xd1\xde\xa0\xd8\xb9\x35\x2c\x6e\x6c\xaf\x94\xdb\x3b\xc3\x62\x67\x3f\x2f\xb7\x67\x89\xdd\x2f\x0d\x46\x0e\x61\x5a\x68\x42\x08\x87\xcb\xf9\xed\xfd\xdc\x68\xd1\x6e\x83\x96\xc6\xb7\xa6\x7f\x43\x7d\x7c\xed\x6b\x5f\xb3\x9f\xfb\xdc\xe7\xcc\x89\x13\x27\xb8\x87\xd1\x87\xa2\xe6\xc3\x04\x6d\x0f\x14\xea\xf7\xe6\x46\xea\xea\x62\xd2\x61\x09\x37\x29\x53\xec\xcd\xd2\x62\x38\xca\xca\xeb\xd7\xd7\xe6\x97\x33\x3b\x19\x66\x05\xe5\x99\x35\x79\x62\x29\x35\xf5\x72\x8b\x82\x5c\x51\x24\xae\x98\x27\x76\x56\x12\x8a\xd2\xb8\xd9\x3c\x71\xfb\xa5\x71\x13\x07\xcc\x40\xfe\x22\x53\x0a\x07\x4b\xba\xe6\x0c\xa6\xd6\x0d\xed\x9c\x1f\x68\xae\xdf\xf0\xfd\xb8\x26\x27\x77\x4b\xef\x05\x07\x48\xd7\x1a\x97\x58\x27\x25\x09\x59\xda\x10\xfd\x3d\x16\x62\x34\x66\xd1\x5e\xa4\x17\x18\x71\x6d\x6d\x7e\x65\x94\xdb\x1b\x1b\x53\x77\xb2\xd9\x16\xb7\x68\x39\x34\x6b\x68\x5b\x37\x57\x2c\x7a\x42\x1c\xb5\x5d\x88\x22\x48\xf8\x70\x05\x38\x1a\x4b\x49\x5d\x37\x13\xac\x96\xc5\xad\xda\x7e\x41\x58\x56\xd2\xd1\x7b\x46\xd9\x43\xeb\xd3\xe4\xe8\xf6\x6a\x71\x0d\xf5\x76\x37\x08\x8b\xbb\x6e\x00\x81\x7f\x0f\x3f\xfc\xb0\x79\xfd\xf5\xd7\x63\x0a\x4b\x6d\x18\x3d\xbe\x71\x98\x2e\x25\x08\xe5\x7b\x17\x0d\x1c\xa7\xcc\x5f\xa6\x8d\x29\xd5\xd8\x28\xaf\x8b\xf6\xdb\x51\xe6\x5d\xdf\xfb\xa6\x91\xb4\x6a\xf4\x76\x75\x38\x5d\x79\x1f\x74\xd4\x2f\xf1\x42\xc0\xe1\xfb\xdf\xff\xbe\x05\x80\x7f\xf8\x87\x7f\xc0\x1b\x6f\xbc\x61\x1f\x7d\xf4\x51\xf3\xab\xbf\xfa\xab\xbc\x5d\xf2\x9b\xa7\xa5\x07\x46\xe5\xaf\x6c\xcb\x6c\x3d\x4c\x80\xe7\x38\xfd\xbb\x34\xca\x1f\x7a\xe8\x21\x53\x96\x25\xde\x7a\xeb\x2d\x4d\x2e\xb4\x67\x49\x1b\xff\xd6\xc7\xcb\xc1\xe3\x62\x9d\x72\x9f\xce\x88\x3f\x4b\xfa\xba\x9e\x65\x39\x25\xdd\x7d\x70\xcb\x72\x6b\x46\x96\x2c\x67\x17\x8d\x32\xef\x2e\x9a\xb4\x72\x2c\xa4\xfd\x2f\xff\xe5\xbf\xd8\xc7\x1f\x7f\xbc\xd5\x3e\x98\xbc\x14\x61\xba\xbe\x92\x0d\x79\x29\x5f\xb8\x39\x19\xa0\x59\x09\x37\xb3\x19\x46\xb3\xb4\xbc\x35\xca\xcb\xeb\x37\x57\x8a\xab\xf9\x26\x0d\x53\x4b\xc3\xac\x34\x79\x5e\x2d\xe4\xcd\x53\x4b\xa6\x24\x67\x4b\x03\x6b\xc9\x15\xa5\x71\xc5\x34\xb5\xb3\x59\xe2\x26\xf3\xc4\x8e\xe6\x89\x1b\xcf\x8d\x9b\x58\x0a\x5e\x83\x09\xa1\xf1\x2e\xd4\x46\x03\xf7\x2c\xf8\x2b\x30\xb8\xd1\x12\x2e\xf5\xf4\x65\x7a\xe6\x99\x67\xec\xc6\xc6\x86\xd9\xdd\xdd\xed\xd2\x5f\x06\x00\xbe\xfe\xf5\xaf\x5b\x36\x95\xd6\x32\x7c\xea\x32\xfb\xe7\x66\x40\xdf\x1c\xa3\xef\xcf\x5e\x1a\xd6\x74\x4d\x00\xe4\x0e\xc8\xe7\xc6\xe6\x45\x42\xf9\xc4\xb9\x94\x72\x32\xe4\x60\x08\x48\xfd\xa4\x9f\x23\xc0\x11\x0a\x57\x19\x86\xfc\x66\xf5\xca\x10\x71\xcd\x2e\x41\x54\x46\x9b\xdf\x21\x18\x6e\x67\xaf\xd7\xb4\x14\x9c\x26\xcf\x0b\x6f\xb4\x14\x45\xb1\x4c\x7e\xba\xe4\xb4\x4b\xd6\x5a\x32\xb7\x6c\xaa\x48\xc6\x69\x8a\xba\x57\x47\x52\x8f\xf6\xf8\x9f\x77\x19\xae\xd6\x7f\xeb\xce\xb9\x4d\x22\xda\x5c\x99\x99\x13\xbf\xfc\xea\xe6\x67\x1f\xb9\x39\xfc\xc4\x70\x6e\x36\xa9\xc3\xea\x68\x79\x51\x5c\x63\x30\xf4\x0a\x91\xd9\x22\xbe\x33\x49\x9b\x16\xe2\x6b\x64\xb4\xa9\xa2\x6a\x3a\xab\x82\x29\xc9\xcd\x6e\xae\xcc\xff\xeb\xf3\x0f\xec\xfd\xdf\xaf\x1c\x1f\xfd\x60\x5a\x4f\x17\xa1\x6a\x2c\xea\x85\x5d\x7d\xdc\x8e\x4a\x38\x88\x65\xdb\xd7\xa0\x59\xd6\xb9\xff\xff\x3d\xdc\x69\x59\x6f\x37\xfd\xdd\xa8\xcb\x03\x87\xcf\x7c\xe6\x33\xe6\x1b\xdf\xf8\x86\x05\x16\xa7\x98\xe4\x14\x50\x57\xe0\xf2\xfb\xf4\xd3\x4f\x1b\xef\x55\x79\xec\xb1\xc7\x0c\x00\xfc\xf4\xa7\x3f\xb5\xf7\xdd\x77\x9f\x79\xfb\xed\xb7\xa3\xa3\xd3\xbb\xf8\x8c\xdb\x4c\xd7\xf5\x2c\xe9\xbd\x1d\x03\xb3\x6f\x3e\xe8\x01\x7b\x3b\xb8\xfb\xf2\x87\xbf\x1f\xb4\x9c\xfc\xfc\x12\x03\x04\xaf\x9d\x41\x75\x08\x9d\x1f\xc4\x85\x5b\xcb\xd1\x4c\x91\xf8\x65\x04\x43\x1f\xcf\x60\x72\x57\x5d\xc4\x9b\x12\x90\x1a\x07\x63\x2c\x65\xc6\xc1\x38\x02\x2c\xc1\x3a\xa0\x74\xe4\x6c\xd5\x59\x3b\x7f\x33\xf5\xac\x31\x88\x5a\x1e\x84\x11\x33\x04\x96\x4d\x87\xb4\x16\xa2\xbe\xf8\xe2\x8b\xf8\xde\xf7\xbe\xd7\xbb\x1e\x1e\x7c\xf0\x41\xf3\xe6\x9b\x6f\xb6\xa6\xd2\x18\x7f\x5a\x7d\x63\x8c\x3f\x82\x57\xe1\xd2\xd4\x3a\x3e\xe0\xf0\x1e\x52\x6e\x58\x10\xbf\xf0\x94\x5d\x7c\x59\x97\xdd\x2f\xb8\xf5\x8b\x6f\xc3\xa2\x64\xc1\x87\xe0\x70\xa8\xcb\x67\xb9\xf7\xf4\x36\xe4\xa4\xab\x6f\x51\x0d\x19\x12\x09\xfb\x84\x03\x67\xfe\xf9\xcf\x7f\xde\xe4\x79\xce\x5d\x83\x5e\x68\x7d\x45\x0c\x89\x68\xdd\x39\x77\x88\x88\x36\x8d\xc5\xd1\x8f\xbf\x7e\xe8\x57\x1e\xbf\xb2\xf6\x9f\x37\xa6\xc9\x49\x79\x0c\x34\x0f\x8b\xde\x12\x7f\xf6\x0a\x9a\x05\x5b\x68\xcf\x24\x2d\x7a\x64\xda\x11\x0b\x38\xe1\xd0\x32\x9e\x02\xc0\xa2\xe9\xc2\x0d\x1d\xff\x32\xca\xca\x0b\x3f\x3b\x3e\xfa\x7f\x7e\x74\xdf\xfe\xff\xfb\xce\xda\xec\x22\x33\x5c\x9a\x4b\xed\x98\xe1\x02\x00\xdf\xfd\xee\x77\xf1\xd2\x4b\x2f\x75\x29\x97\x65\x21\x66\xf9\xf7\x49\x77\xa7\x1d\xa1\x66\x45\xff\xf7\x30\x76\x6e\x27\x9f\x3e\x69\x96\x95\xe7\xa0\xf9\xfe\x8f\x32\xfe\x96\xe6\xfb\xd1\x8f\x7e\xd4\x3c\xf7\xdc\x73\x77\x44\x1b\xc7\x21\xf0\x2d\x33\x84\xfb\x76\xc6\x50\xd2\xc6\xc2\x41\xf2\x59\x86\x43\xe2\xf3\x21\x86\xeb\x6e\x18\x1a\xcb\x46\xa2\x5d\xb8\x63\xf9\xc8\xb8\xae\xb2\x74\x75\x26\x1e\xbe\x93\x16\x6e\xbc\xf0\x4e\xba\xee\x03\x8c\x73\x4e\xbb\xbd\x9c\x77\xd2\x43\xd4\x9d\x37\x83\xf1\x53\xee\x72\x40\x0c\x00\xb2\x93\xb6\xa2\x93\xe6\xde\x05\x7e\xb9\x28\x9f\x0a\x59\x58\xcf\x22\xfe\xf0\xcc\x33\xcf\xd8\xfb\xef\xbf\xdf\x08\x6f\x61\x2f\x39\xfd\xcc\x67\x3e\x63\x4e\x9e\x3c\x09\x00\x7e\xeb\xf3\x82\xf1\xc2\x0c\x17\xcf\x1f\xb9\x3e\x28\x67\xfd\x68\x80\x67\xc6\xa1\x36\xcb\xe1\x8d\x2f\x69\xb8\xf0\x72\xfb\xa9\x20\xc9\x87\x96\xd7\x89\xe1\xc4\xce\xce\x0e\xfe\xfc\xcf\xff\xfc\x20\x72\x7a\x10\x5d\xb0\xd0\x06\xb4\x73\x5c\x96\x85\x18\xac\xef\xaf\x17\x76\x55\xf8\x4b\xb8\xfc\xc1\x44\x35\x33\xa9\xae\x30\xaa\x2b\x27\xab\x99\x9e\x3b\xc2\x60\x7d\x96\x6e\x1c\xdf\xcf\x1f\x59\x9d\x27\x87\x8d\xa3\x24\x2c\x35\x21\x3d\x53\x1e\x4d\xf5\x9e\x66\x7f\xd6\x0a\x31\x23\x06\xb4\xb8\xfa\x5c\x3a\x74\xe4\x41\xbb\xfc\xce\x87\x66\x3b\x1e\x2d\x4c\x60\xb5\x93\xb9\x90\x96\x40\xc6\x92\xbb\x75\x6b\xa5\xb8\x78\x73\xb5\xb8\xee\xe0\xfc\x01\x5c\xad\x4b\xe3\x18\x0a\xf7\xcd\x6f\x7e\x53\x76\x8c\xdc\x6c\xf2\xef\x5d\xbb\x51\x80\xa6\xb2\x63\x75\xa6\x7d\xf3\x2b\xb9\xb5\x55\xdf\xb1\x38\x89\x4b\x3a\xab\xba\xe8\xd4\xbe\xc9\xf2\xc5\xe2\x65\x59\x34\x9e\x75\xe1\x69\x66\x18\x17\x71\x6a\xe5\xf1\xef\x92\x66\x99\x6f\x6c\x47\x0b\xc7\xa3\xd1\xc2\xe3\x65\x19\xb4\xfa\x8e\xc5\xc7\xde\x35\xba\x38\x2e\x77\xf9\xf2\xe5\x2e\x5e\xf0\x32\x44\xf3\x61\x38\xcc\xe5\xcb\x97\x2d\x4b\xc7\x69\x40\x24\x4e\xa3\x91\x97\x93\xbf\xc7\xe0\x39\x6f\x64\xe7\xcf\xeb\x5c\x96\x25\x86\x07\x02\x9f\xcf\x97\xbf\xcb\xba\x92\xdf\x64\x5b\x34\x68\xd3\x27\x65\x31\x96\x9f\x26\xb7\x5a\xbb\x94\x65\xd3\xe2\x39\x6f\x38\x2d\x3c\x9d\xd6\x76\x2c\x16\x69\xd4\xe0\x09\x80\x93\xf7\x6c\x01\x68\xed\x2a\xaa\x3b\x56\x79\xe8\xa0\x75\xcd\x81\x66\x7e\x6a\xc2\x5f\xe2\xe7\xcf\x09\xf2\x06\x87\xbf\x92\x62\xec\xaa\x63\xf9\xfd\x3d\x5a\x23\x54\x3b\x82\xf6\xd1\x1c\x9a\xe6\x6f\x34\xde\x47\xb3\xe8\xd4\x1f\xe3\x3f\x86\xb8\x7a\xa2\x2e\x5b\x41\xcd\x6e\x3c\x5f\x17\xd8\xdc\xdc\xa4\xd7\x5f\x7f\x1d\xf5\xce\x19\xc9\x63\x8b\x76\x5d\xb5\xe4\x6a\x3a\x9d\x62\x6d\x6d\x0d\x6b\x6b\x6b\x20\x0a\x3d\x4e\x38\xb7\x88\x9a\x9d\x7d\x9e\x67\x05\xe3\x4d\x51\xf3\xa1\xa0\xea\x1c\x24\x7f\x4f\xd0\xb4\xe6\x51\xb8\xa6\x83\x4f\x7b\xa1\x7d\x09\xaa\xe7\xcf\x88\x9a\x2b\x3a\xc2\xad\xec\xcc\x88\xf3\xfc\x2e\x6b\x7e\x84\xab\x0d\xfc\x14\xf3\xad\x5b\xb7\xf0\x17\x7f\xf1\x17\x5d\x72\x2a\xe5\x4d\xb6\x0d\x40\x6f\x0b\x52\x57\x78\xb9\x0b\x6b\x5c\x0e\x3a\x02\xe1\xc1\xa7\x95\x16\xd3\x02\x3e\x6f\xf9\x89\xf9\xbd\x96\xeb\xaa\xae\x80\xd9\x8d\xd5\xf9\x3b\xfb\x79\x79\xe3\xc8\x38\x7d\xc0\x38\xca\xfd\x99\x83\xdc\x00\xa9\x7d\x21\x4d\x4b\x77\x4d\x1e\xcc\xd6\x68\xd2\x04\x42\xda\x06\xc6\xc2\x2e\xa4\xf0\xbd\xca\x88\x7b\x6c\xfc\x99\x00\x8e\x8b\x6a\x83\x96\xd5\x5a\x93\x49\x62\xb1\xba\x31\x4d\x1f\x3a\x32\xca\x1e\x5c\x99\x4f\x5f\x1b\x65\xe5\x04\x95\xe5\xec\x5d\x6e\xfe\x4c\x03\x95\x6f\x4a\x9c\xe7\x75\x9f\xd1\x64\x57\xbd\x2e\xcb\x2b\x96\xb6\x6f\xba\x3b\xc1\xef\x05\x56\xca\x94\xc1\x62\x19\xb5\xf2\x6b\x7c\x59\x96\xaf\xc4\xc7\x71\xc5\x82\x56\x37\x5d\xbf\x9d\x23\xb1\x8e\x7c\x8d\x78\xe6\xf8\x34\x39\x40\x04\x5e\xab\x9b\x58\x1a\xff\x2d\x96\x46\x83\xd1\xea\xab\xab\x8c\x1a\x0d\x31\x9e\x76\xa5\x5f\x18\x95\x75\xc0\x77\xb5\x97\x65\xf0\x1a\x1c\x96\xc0\x1e\xb4\xbc\x31\x7c\x07\x6d\xcb\xcb\x78\x22\x7f\xa5\x1c\x75\xc9\x40\x4c\x8e\xd5\x36\x73\xf6\xec\xd9\x85\xb3\x5d\x98\x37\xc0\x2f\x4c\xf5\x5b\xf0\x53\xde\x17\xa0\xed\x6d\xe0\x5e\x08\x43\xcd\x7a\xc1\xd8\x55\x14\x16\x8b\xeb\x28\x5b\x87\x23\xfa\x77\xf6\x9d\xc3\x5b\x60\xe1\x0c\xa2\x3e\x67\x94\x68\xbc\x09\xef\x17\x2e\x5c\xc0\x85\x0b\x17\x00\x54\xd3\xa9\xc4\xd6\xba\x50\x73\x2d\x40\x4b\x97\xd5\xf1\xbe\xbc\x69\x3d\x85\xe3\xa7\x87\x52\x60\xe1\x6c\x1c\x53\xe3\x6b\xd1\x44\xcd\x39\x32\xc1\x30\x03\x5b\x47\xa3\xc4\xb7\xae\xee\xe0\x65\x65\x46\x8b\x94\x95\x98\xbc\x4b\x1d\x1e\xd3\xe3\x32\x5d\xab\x3f\xd0\x3c\x2e\x5d\xa3\x0f\x0d\x8e\x8f\xd0\xba\x46\x7e\x60\x56\x77\xb8\x5c\x0a\x15\xb3\xfd\x8d\xa1\xc1\x15\x66\x0d\xd2\x13\x7b\xd9\xa9\xcd\x49\x76\x2a\x2b\x69\xb5\xb2\xd0\xbd\xb7\x24\xdc\x0a\x04\x8f\xc4\x63\xab\xec\x61\xe6\x1e\x63\x0b\x03\xb9\x01\xd2\x04\x5a\x28\x85\xb6\xf3\x48\x26\xf3\xf4\xf8\x2c\x5a\x78\x5d\xf3\x50\x79\x7f\xc8\x10\xc1\x15\x89\xbb\xbe\x3b\x28\xdf\xda\x19\x16\xb7\x6a\xe1\xf0\x47\xad\x7b\xcb\xda\x8f\x38\x1c\xbb\x74\x71\x81\x8f\x8c\x24\x4d\x40\x62\xde\x15\x74\xe0\x3a\x48\x7c\x17\xfe\x3b\x0d\xc2\xbc\x5c\xf0\xd6\x80\xc5\x49\x4f\x82\xc4\xa1\xf1\x25\x46\xbb\x2c\xa7\xf4\xb4\xdc\x4e\x88\xf1\x34\xe6\xb9\x91\x30\x12\x8f\x46\x9f\xa7\xd1\xb2\x78\xe9\x2d\xb0\x1d\xf9\x68\x6d\x9b\xff\x76\x79\xb7\x1c\xe2\xf5\xc3\x43\xcc\x2b\xd7\xa5\x73\x7c\x9c\xed\xf8\x2e\xbd\x02\x5c\x5e\x62\x5e\x13\x59\xaf\x5d\xc6\x09\x29\xf0\xb2\x0c\xfe\x9b\xc4\xad\x79\xc2\xfa\xe8\x52\x59\x7e\xc9\xdf\x3e\xed\x94\x3f\x4b\x2f\x55\x97\x3e\xe1\x65\xd0\x64\x40\x2b\xb7\x65\xcf\x1a\x3f\x5b\xf9\x30\xaf\x7b\xc8\x83\x0d\x66\x5b\xb7\x9b\x7b\xef\x0b\xda\x8b\x40\xfd\xe2\x54\xee\x75\xf1\x17\x1e\xce\x50\x79\x18\x5a\xde\x06\xa0\x75\xd7\xd0\x18\xec\xd8\x7e\x62\xb7\x3c\x33\xaf\x85\xbf\x96\x85\x9f\x4b\x62\x01\xb8\xb3\x67\xcf\x86\x5b\x9f\x05\xef\xbb\x78\xdb\xa5\xab\x00\x00\xef\x7a\xd7\xbb\xe8\xab\x5f\xfd\xaa\x95\x5e\xa9\xb0\x96\xd2\xb9\x16\x6f\xd0\x5c\x9a\x6a\xc1\xae\xcf\x20\x22\xff\xec\xff\xa6\xdc\x3b\x85\xf6\x45\xa9\x53\xd4\x17\xa3\xa2\xb9\xa2\x23\xe0\x61\xde\x15\xff\x5b\xd6\xf5\x11\x16\x14\x9f\x3d\x7b\xd6\xbe\xfc\xf2\xcb\x5c\xd6\x62\x6d\x49\xf3\xe2\x69\x6d\xaa\x4b\xdf\x70\x1d\xd7\x1a\xc5\xf9\x10\xb5\x12\x23\x88\x62\xa3\xc2\x56\x78\xea\xa9\xa7\x82\x55\xec\x9a\x43\x75\x00\xc0\x2f\x1c\x0a\x16\x1e\x80\x62\x96\xd8\xc9\xf6\x4a\x79\x79\x92\xda\x1d\x57\x2d\xb6\x02\x1c\xea\xc3\xe5\xea\x13\x14\xe1\x2f\xe1\x72\xe1\xbf\xbf\x9b\xc2\x07\x47\x04\x48\xa3\xc5\xa1\x4e\xef\x5b\x0f\xc3\x4d\x35\x8d\x68\x60\xc3\xf5\xcf\x75\x84\xbf\x90\xaa\xa1\x1f\xcd\xce\x09\xff\x17\xfe\x55\x21\x2d\xe9\xd0\xe1\x71\xfa\xd0\xd1\x51\x7a\x32\x71\xd5\xdc\x24\x2a\xa3\x2d\x8c\x18\x80\xd6\x91\xd8\x00\x80\xd5\xd5\xd5\x2e\xde\x6a\x23\x6f\xed\x59\x4b\xc7\xe1\x6c\x04\x5e\xb3\x76\x25\x7e\x8d\xbe\x98\x1c\x74\xc1\xc4\x68\xd2\xf2\x5a\x86\xbb\xcf\x77\x8e\x57\x96\xd3\x3f\xc7\xf8\xa2\xe1\x58\x46\xc3\x32\x9e\x69\xf1\x1a\x0d\x32\x4d\x6c\x14\xde\x35\x3a\x97\xb8\x63\x6d\xd8\x42\xa7\x51\xc2\x4b\x1e\x68\xf2\x22\xf3\x96\x65\x8c\xd1\x26\xe9\x5a\xc6\x73\xad\x0e\x3d\xcd\x52\xb6\x78\x9c\xcc\x23\xf6\x4d\x96\x41\xb6\x3f\x2d\x3f\xad\x9c\x9a\xfc\x49\xc5\x1f\xcb\xbf\x8b\x26\xfe\xac\xf1\x70\x99\x3c\x2d\xcb\x8f\xd3\xbc\x4c\x7f\xb4\xf0\x27\x49\x62\xb6\xb7\xb7\xf9\x2e\xb3\x05\xbd\xcf\x46\xfc\x33\x6a\xef\x6c\xf1\x27\xb7\xee\x39\xe7\xf6\x88\x68\x07\xc0\x0e\x80\x1d\x22\xda\x71\xce\x6d\xfb\xb8\xfa\x79\xdb\x39\xb7\x03\x60\xcf\x39\x17\x4e\x7e\xf5\xd3\x23\x4e\x6c\xf5\xa5\xe6\x24\x58\x79\x88\xa2\x75\xce\xc1\xda\xaa\x6a\x7e\xff\xf7\x7f\xbf\x4b\x1f\x48\x7e\xc5\xf8\xda\xc2\xf1\xd7\x7f\xfd\xd7\x16\x58\xf0\xe2\xb4\x3c\x23\xb5\x21\x51\x38\xe7\x8a\x9a\x4e\x7e\x37\xd8\x84\x95\xcb\x97\x73\x0f\xd5\x34\xd0\x9e\x8c\x03\xdb\xf2\x5d\x2f\xc0\x9d\x38\xe7\xf8\x7a\x4b\xee\x81\x91\x1e\x27\x0b\x00\xa3\xd1\x28\x56\xd6\x65\xba\x40\xf2\x82\x07\x4d\x36\x35\x7c\x0b\xbb\x8a\x24\x01\x5a\x43\xd2\x94\x0c\xcf\xb8\x13\x57\xbd\x50\xcb\xdf\x40\xeb\x17\x16\xf9\x15\xd2\xeb\x00\x0e\x01\xd8\x84\x44\x10\xa6\x1c\x00\x00\x20\x00\x49\x44\x41\x54\xc3\xe6\xc3\x37\x87\xef\x39\x7d\x71\xe3\xb3\xa7\x6e\x0d\x3e\x58\xdd\x16\xdd\xbe\x11\xd3\x87\xc6\x60\x69\x59\xa9\xad\x9d\x3f\x7e\x81\x6d\x35\xc5\x23\x60\xf8\x2f\xb0\xe0\x96\x09\x26\xa5\xc8\x38\xe0\xf6\x1e\x1e\xfe\x9d\xdb\x8f\x04\x58\xc0\x8e\xf2\xf2\xb5\x57\x8f\x8d\xfe\xfe\xb9\xfb\xf7\xbe\xb9\xbd\x5a\x5c\x46\xd5\x98\xf8\x1e\x79\xd9\x68\x5a\x77\xb4\x74\x04\x4d\x29\xf6\x49\x77\x3b\x41\x2a\xdb\xbb\x01\x7f\x10\xfa\xbb\x3a\xba\x83\xd0\xe3\x83\x96\xee\x76\xe8\xd1\xda\x4b\x17\x8c\x86\x00\x33\x40\xcc\xbf\xbb\xcb\x98\xb8\xdd\xfa\xed\x03\xdb\x45\xfb\x41\xc3\xed\x96\x71\x19\xbe\x18\x7c\xcc\xf0\xea\x23\x23\x9a\x11\xd3\x45\x67\x9f\x7a\x94\xf9\xcb\x8e\x7e\x19\x5d\x7d\xe5\xfb\x20\x72\xd7\x17\x57\xd7\xbb\x0f\x7d\x64\x49\xc2\x45\xeb\xda\x2f\xdc\x85\xef\x90\xf4\x43\xeb\x0c\xd0\x5a\xcc\xeb\xfb\x0f\x03\x20\xec\x58\x52\xf2\xb6\x40\x18\x54\x5a\xd4\xd3\x1e\x40\x38\x91\xb6\xb5\xf0\xd6\x77\xce\xae\x39\x1e\x20\xa6\x83\xbb\xf8\xd5\xb7\xad\xab\x71\x7f\xfc\xc7\x7f\x6c\xbe\xf2\x95\xaf\xf0\x69\xb5\x70\x7e\x92\xb6\xe8\x56\xf0\xa2\x35\xf0\x75\x8b\xe7\x2e\xf1\x45\xcb\x9c\x3f\x0b\x37\xb9\xb3\x78\xce\x4f\x69\x5c\xf5\xa9\xeb\xdb\xd5\x5d\x9d\xf2\xad\x1d\xf9\xef\x83\x74\x37\x03\x8b\xee\x1d\xcf\x15\x8b\xb8\x9b\xc7\xe3\x0a\x5b\x2c\x6b\x5f\x21\x31\xa6\x26\x6c\xba\xc8\xdf\x16\x9d\x59\x72\xc9\xd1\xfd\xec\xde\xc3\x93\xf4\xde\xcc\x9a\x55\x7f\x18\x1c\x5f\x3f\x12\x82\x8f\xaa\xcf\x5c\x09\x2e\xc8\xf0\x99\x02\x0c\x5f\x6b\x03\xc7\xd2\x71\xef\x4c\x1b\x75\x98\x8a\xf2\x85\x21\xf6\x2d\xac\xa7\xe1\x42\xe2\xbd\xa1\x35\x3e\x83\xea\x5c\xbb\xd2\x60\x67\x6f\x50\xbe\x71\x63\xad\xb8\x89\xe6\x12\xbb\x39\xe3\x63\x98\x2e\x22\x22\xac\xaf\xaf\xd3\xeb\xaf\xbf\xbe\x6c\xba\x62\x99\xbb\xfe\x4e\x83\x41\xdb\x15\x7c\x10\xfc\xda\x74\x82\x06\xd3\xf5\xbe\xec\xdb\xed\xd0\xd3\x45\xd7\xed\xd0\x23\xa7\x05\x96\xc1\x68\xb0\x31\xb8\x3b\xa9\xdf\x3e\xb0\x5d\xb4\x1f\x34\x74\x95\x91\x2b\xa1\xbe\xf9\xc8\x29\x88\x2e\xdc\x9a\x1b\x5a\xa3\x8b\xc3\xc6\x68\x92\x53\x3f\x1a\xbc\xc1\x62\x9d\xf1\x29\x5c\x3e\x55\xb7\x2c\x5d\xac\x3c\xb1\xb2\xf3\xf4\xb2\x3c\x9c\x16\x8d\x3f\x66\x49\x3a\xc9\x2b\x5f\x86\xd8\x94\x99\xcc\xd3\x2a\x71\x0b\xf5\xed\xb7\xca\x9f\x39\x73\x86\xbc\xbe\x03\xda\x37\x9c\xa3\x3d\x2d\x52\x52\x75\x89\x9f\xbf\x0c\x74\x8e\xe6\xb8\x79\xbf\x65\x77\x8a\xea\x4a\x95\x70\xfe\x0a\xd5\x37\x9a\xb3\x29\xa6\xb9\xc7\x83\xe6\xe8\xfe\x30\x5d\x0f\x04\x6f\x90\xdc\xe2\x1b\xe3\xab\x66\x38\xc6\xda\x81\xc6\xfb\x10\x5e\x78\xe1\x05\x07\x54\xd3\x6a\xf5\xd4\x91\xdf\xc8\xe2\x17\xec\xc2\xf3\xc3\x1b\x15\x75\x59\xf8\x19\x33\x3e\xce\xef\x02\x6a\xdd\xde\xec\xa7\x7f\xd0\x5c\x41\x63\x19\x5f\x7d\x3d\xf8\x3c\xdc\x33\xcf\x3c\xa3\x4d\x91\x79\x3e\x48\xfe\x2c\x6b\x77\x7d\x07\x45\x31\xf9\x0e\x88\xba\x42\xb0\xbe\xd8\xbb\xfc\xa6\xb9\x77\x78\x08\xef\xd2\x15\x06\x04\x6b\x38\x1c\xf0\x53\xff\x15\x00\x66\x93\xd4\x8e\x6e\xae\xce\x2f\x8d\xf3\x72\xdb\xa1\x3a\x81\xb1\x9a\xfa\x69\x73\x83\x6b\x16\x42\x35\xe5\xd3\xf4\x4c\x0d\xa4\xab\xdf\x9c\x48\xec\x6a\x03\x86\x6b\x3d\x80\xe5\xe1\xda\xef\xc1\x68\x71\x1e\x9e\x16\x17\xf8\x06\xe4\x4d\xc2\xc4\xd2\xfa\xc6\x24\x7d\xe4\xd8\x7e\xf6\x48\x56\xd0\xd0\x39\x97\xd6\x53\x45\xad\x6d\x7d\x7c\x34\xf1\xad\x6f\x7d\x4b\x8e\xdc\x34\xfe\xca\x3f\x19\x64\xbc\xac\x2f\x0d\x37\xff\x16\x1b\xe9\x6a\x79\x1e\xf4\x3d\x16\xba\xca\x12\x7b\xd6\x68\xea\x93\x7f\x97\xdc\x76\xf1\xa6\x8b\x9e\xbe\x79\x75\xd5\x57\x9f\xb2\x76\xe1\xe9\xa2\x43\x7e\xef\x82\xed\xe2\x69\x17\x9f\xe5\xb3\x45\x9c\x8e\x18\xee\xbe\xb2\xe2\x71\x2f\x53\x8e\x5a\x47\xd3\x95\x8f\x6c\x7f\xfc\x59\x2b\x0f\x1f\x25\xc6\x70\xc7\xda\x93\xa4\x51\x2b\x8b\xc6\x67\xcd\xd3\xa3\xe5\x23\x79\xbb\xcc\xcb\xd6\x55\x0f\x5a\x3e\x92\x96\x58\x7d\x18\x22\x0a\xe7\xfb\xf8\xa9\x23\x3f\x2d\x43\xca\xf6\x63\x36\x65\xe2\xcf\xbe\x9a\xb0\x5f\xbe\x66\x85\x6f\x73\x0e\x67\x91\xd4\xe9\xe4\x02\xdc\x42\xc9\x67\xe1\x04\x58\x12\x07\x2b\x42\xe7\xb7\x2c\x7b\x57\x58\x0a\x4b\x44\xfc\x04\xf5\x40\x9b\x9f\xba\xf1\x3c\x12\xde\x13\xef\x45\xe2\xd3\x6e\xad\xa9\x1f\xfe\xce\xbc\x4e\xdc\xe0\xf1\xde\xa8\xae\x73\x9b\x34\xf9\xef\xdb\x47\x2c\xd3\xb3\xda\xf3\x02\xee\xa4\xfe\xa0\x8d\x46\xfa\x06\x9e\x09\x1f\x5d\x2c\x58\xa7\xbf\xfd\xdb\xbf\x6d\x36\x36\x36\x00\xf8\xf5\x46\xc4\xbd\x2f\x49\xfd\x97\x12\x51\xe2\xaa\x6d\xd1\xf9\xa0\x34\xf9\xd1\x51\x76\xff\xc6\x34\x3d\x9e\x38\x4a\xbd\xcd\x49\x0b\x37\x6a\xb1\x29\x21\xb6\x74\x97\x1b\x14\x21\x5e\x4c\xe7\x78\x63\x87\x6f\x70\x76\x00\xc8\xd5\xb7\x8b\x12\xc2\x1d\x44\x08\xf9\xd7\x79\x91\xbc\x4a\xa0\xfe\xce\xd2\x7a\x78\x00\x09\x39\xa2\x32\xc1\xce\xde\xa0\x7c\x73\x67\xa5\xdc\xa5\x66\x5b\xb4\x1f\x59\xb8\x5a\x80\x1c\x00\x6e\xe5\x76\x8d\xd0\x96\x79\x11\x64\xbc\x13\xf1\x31\xaf\x01\xff\x26\x05\x88\x8f\x26\xb5\x74\x7d\xdf\x63\xa1\xab\x2c\xfc\xd9\x40\xe7\x81\x2c\x63\x17\xde\xae\x91\x82\x36\xea\xed\xe2\x59\x1f\xbc\x5d\x69\x38\x4c\x0c\x6e\xd9\xf7\x18\xbe\xae\xef\x5d\xb0\x5d\x3c\xd5\xe2\x62\x9d\xa2\x7c\xd6\xea\x52\x7a\x28\x44\xcb\x6b\xa5\xe3\x75\x2f\xd3\x4a\x18\x09\xdb\x37\x1d\xb0\xe8\x75\x96\xc6\x4c\x4c\x76\x38\x6e\xa9\x63\xb5\xc5\xbb\x1a\x2f\x38\xfd\xbc\xcd\x69\xb0\x92\x6e\xad\x0c\x8e\x3d\x6b\x3c\x81\x88\x97\xe9\xba\xea\x81\x18\xbc\x46\xab\xe4\x89\x01\xc0\x8f\xca\xe0\x5b\xa4\xfd\x65\x85\xce\xc7\xa3\xee\xa8\xeb\x4f\xfe\x92\x4f\x87\x66\xf1\x68\xf0\xa2\xb0\x5f\x6f\xf4\xf8\x4e\xb9\xac\xd3\x97\x35\x6e\x07\x34\x5e\x1e\x9f\xed\xd9\xb3\x67\xed\x4f\x7f\xfa\x53\x9a\xcf\xe7\x9c\x3f\x84\x45\x7e\xdf\x6e\x3d\x68\xf5\xdb\xaa\xd7\x95\x95\x15\xf3\xfd\xef\x7f\xdf\xfa\xed\xe4\xb5\x57\x2a\xf0\x87\xd5\x91\x37\x00\x1d\xe3\x8d\x36\xfd\x13\x64\xb1\x86\x2d\xd9\x73\xf0\xb4\x70\x9e\x2c\x99\x26\xd3\xca\xcb\xf9\x24\x65\x28\xe6\xa1\xd1\xf4\x2b\xff\x2e\xf3\x77\xa2\xbb\xed\x0c\xd2\xca\xea\x63\xad\xab\x30\xe2\x14\xdd\x14\xcd\xa9\x7f\x7c\x9d\xcb\x21\x38\x6c\x6e\x8e\xd3\x53\x1f\xbe\xb4\xfe\xab\xef\xbd\xba\xfa\x8b\xab\xb3\xe4\x98\x36\x4b\x74\x37\xc2\x92\xeb\x8e\xc4\x56\x3b\x04\x63\xa6\x39\x23\x46\x20\x70\x40\x30\x6c\xe0\x67\x8e\x1c\x4a\x83\xd1\xcd\x95\xe2\x47\x3f\xb9\x77\xff\x2f\x9e\x7d\x60\xf7\x7b\xd6\x60\x07\xed\xb5\x2e\x7c\xa1\x9a\x05\xb0\x6c\x9d\x4b\x9f\xba\xe8\x0a\xb7\x93\xe6\x7f\x87\xff\x35\xc2\xdd\x90\x8d\xbe\x46\x4c\x97\x5e\x39\xa8\x8e\xb9\x1d\xaf\xcb\x9d\x3e\xdf\x2e\x4d\x3f\x4f\xdc\xcb\xd2\xde\x09\x4d\x07\xad\x4b\x44\xe2\x2d\x00\x1c\x3b\x76\xcc\x5c\xbb\x76\xcd\x02\xed\x53\x9b\x95\x75\x1a\xad\x78\xbe\x3e\x11\x00\xd3\xd1\x0b\x5b\xa3\x7d\xfe\x3c\x04\x7a\x3c\xcc\x33\xcf\x3c\x63\x19\x2d\xb7\xcb\xd7\x83\xf2\x47\xc3\xd5\x0a\x1d\xfc\xe1\xa7\x12\xb7\xd6\x6c\x4a\x3e\xf0\x20\x60\x5a\x77\x23\x45\xb6\x7a\x2f\x6b\xa3\xb1\x72\xfc\x5c\xda\x7f\xd7\x1a\x17\x9f\x20\x36\xca\x92\x16\x91\x36\x32\x00\x83\x0f\xa1\x9e\xbb\xab\xd7\xb5\x3a\xaa\x43\xd8\x16\xed\x9c\xcb\x88\x28\x01\x21\x73\x70\xf9\xc6\x34\x3d\x7c\x74\x94\xde\xb7\x5a\x98\xa3\xda\x71\xfe\x7c\x28\xc0\x7f\x21\x9e\x65\x22\x6e\xb6\x35\x5e\x17\x1d\x37\x3f\x84\xce\xdb\xba\xfc\x60\x3b\x07\xe6\x5a\xab\x4b\xeb\xdf\xc3\xa2\x5e\x22\x10\x90\x18\x07\x53\x24\xb8\xb1\xbd\x52\xbc\xb9\x9f\x97\x23\x3f\x07\x89\xc6\x7a\x2e\x7d\x7a\x22\xe2\x5e\x17\xcd\x3a\x97\x73\xf0\x1e\x8e\xc7\x43\xa4\x01\x8b\x8b\x8d\x10\x64\xda\x3e\xb8\x62\xa3\x31\x75\x8e\x3b\x92\x26\x36\x02\xb9\x13\x3a\xb4\xd1\x80\x06\x1f\xcb\x2b\x56\xb6\x65\x69\x64\xfa\x65\x69\xfb\x94\x6b\x59\x19\xfa\x94\xa7\x2b\x6f\xfe\x7e\xd0\x7c\xb4\x38\x0e\xef\xdf\xbb\x94\x96\xa7\x13\x68\x8f\xe0\xb5\x72\x70\x9e\x92\x02\x1f\xa3\x57\x1b\x39\x4b\xfa\x20\xe0\xfd\x1f\x22\xcf\x7d\x60\xb5\xfa\xe3\xcf\x52\x7f\x4a\x7e\x4a\x5e\x76\xd1\x21\xcb\xce\x79\xab\x75\x12\x92\x97\x4e\xa4\x93\x9e\x07\x4e\x8f\x16\x2f\x69\xb5\x22\x4d\x8b\xa6\xd1\x68\x64\xd7\xd7\xd7\xcd\xbd\xf7\xde\x4b\xff\xfc\xcf\xff\x6c\xa5\x07\x86\xe1\xf4\x1d\x46\xf0\x14\xd4\x71\xdc\x7b\xe2\xb4\x74\x00\xf8\xda\x99\x40\xbb\xf7\x2c\x5c\xbd\x7a\x95\x66\xb3\x19\xed\xec\xec\x78\x7e\xca\x3a\xd0\xf4\x9a\xac\x07\x4d\x0e\xb8\xfc\xf2\x38\xa9\x23\xa4\x9c\x87\x3a\x19\x8d\x46\xa1\x6e\xaf\x5e\xbd\x4a\xef\xbc\xf3\x0e\xbe\xf9\xcd\x6f\x5a\xef\x89\xe1\xbc\x60\x7c\x52\x79\x22\x3c\x37\x41\xbe\xce\x9f\x3f\x8f\x1f\xfc\xe0\x07\x38\x7c\xf8\x30\xed\xec\xec\x48\x59\x95\xb2\xc6\xe3\x24\x7f\xa4\x3c\x68\x72\xaa\x79\x58\xb4\xf6\x2f\xf3\x31\x80\xee\x71\xe1\x08\x7c\xb8\x9d\xd1\x90\x86\x13\x40\xcb\xe3\x02\x00\xa6\xf6\xb6\xf0\xbb\x8b\x0e\xa1\xf2\xbc\x6c\x1a\x8b\xa3\x0f\xdd\x1c\x3e\xf6\xe1\x4b\xeb\xbf\xf6\xe0\xf6\xf0\x74\x6a\x29\xe7\xc5\x0d\xc6\x46\xcb\x5a\x71\x8d\x75\xa1\x98\x22\xce\x91\xee\x5d\x11\x5e\x93\x96\x55\x0a\x84\x13\x77\xfd\xbc\x91\x37\x5c\xc0\x92\xe9\x39\xb6\xe3\x0a\x72\x7b\x37\xd6\xe6\xcf\xbe\x74\xdf\xde\xff\xf5\xd2\xa9\xfd\xe7\x51\x6d\xeb\x0b\x37\x91\xd6\x73\xb7\x16\xec\x3e\x88\xdb\xbc\xbf\x88\x87\x3e\xf5\x74\x10\xb8\x83\xe6\xf9\x3f\x22\xff\xbe\xe1\xa0\x79\xf6\x19\x69\xfc\xaf\x14\xba\xca\x2d\xf5\x89\x7c\x96\x30\x31\x1d\x83\x1e\x30\x77\xe2\xb9\x88\xd1\x74\xb7\xf3\xd1\xc2\xb2\xf2\x2f\xc3\x77\x60\x1d\x7c\x80\xef\x7d\xe2\x0f\x82\x7b\x69\xba\xe1\x70\x68\x26\x93\x89\x05\x80\xf7\xbe\xf7\xbd\xe6\x95\x57\x5e\xb1\x40\x38\xa8\x2d\x9a\x09\xf3\x3e\x58\xd7\xe1\x69\xe8\xb1\x53\x73\x99\x7c\xf4\x91\xd3\x3e\xf8\x96\x79\x61\xfa\xb4\x81\x10\xfe\xf0\x0f\xff\xd0\x7c\xf5\xab\x5f\xb5\xfc\x7e\xb0\x2f\x7e\xf1\x8b\x46\xeb\x3b\x38\x0c\xe7\xf1\x92\xb2\x2d\xab\x63\x8d\xbe\x83\x3c\x77\xc9\x1a\xf8\x37\xcd\xe3\xc2\xad\x68\x6e\x19\x2d\xb3\xfc\xbb\x46\x62\xad\x6f\xec\xa0\x9d\x60\x95\xd6\x73\x76\x06\xcd\x1d\x14\xd5\x14\x12\x90\x26\x8e\x06\x87\x26\xe9\xf1\x23\xe3\xf4\x64\x56\x9a\x15\x50\x63\x54\x04\xd1\xf4\x86\x83\x63\x9e\x8f\xb0\x5e\x85\x9f\x8e\x5b\x65\xad\x36\x00\x25\x2e\x78\x4d\x44\x29\xc3\x14\x90\x68\x20\x9a\xc7\xa7\xe5\x9d\xa9\xf9\x40\x8e\x68\x6e\xdc\x3b\x57\x37\xe6\x6f\xce\x52\x37\x61\x73\xb6\xfe\x48\xe5\x96\x45\xaa\xac\xe8\x3e\x68\xe8\xe3\x65\xe0\x45\xe0\x41\x8e\x12\x6f\x27\xcf\xbe\x69\x6f\xb7\x9c\x5d\x65\x5a\x06\x7f\x27\xe5\xea\x13\xff\x1f\x25\x1c\x94\x47\x7d\x43\x17\x4e\xce\x63\xf9\x6c\x44\xbc\xe6\x7d\x70\x1d\x30\x07\x79\x8e\x79\x5c\x38\x3d\x32\x7f\xad\x7c\x31\x3d\xa8\x29\xdc\x18\xac\xd4\x97\x3e\x6d\x5f\xba\xfd\x33\x57\x37\x31\xaf\x40\x5f\x19\x8f\xb5\xef\x3e\x7a\xa2\x4b\xff\x73\x1e\xf7\x4a\x57\x14\x45\x88\xbf\x7e\xfd\x7a\x78\x2e\xcb\x92\xfe\xfe\xef\xff\x3e\xec\x70\x39\x77\xee\x9c\x3b\x7d\xfa\x34\x9d\x3d\x7b\xd6\x7b\x1e\x5a\xf4\xfa\x03\xe3\x3c\xcc\xb9\x73\xe7\xdc\xb3\xcf\x3e\x1b\x2b\x4f\x8c\xcf\x5c\x4e\xba\xea\xc9\xc3\x72\x4f\x4b\x57\x99\xb5\x38\x49\x9b\x84\xd1\xfa\xe2\x10\x5e\x7c\xf1\xc5\xc0\xa7\x2b\x57\xae\x38\x00\x88\xf5\x1b\x1c\x86\xf3\x98\x95\x37\x46\x63\x2c\x70\xfa\xfa\xb4\x45\xe9\x85\xea\x92\xe3\x05\xde\x2c\x9b\x2a\x92\x0d\x87\x07\x9f\x79\x4c\x09\xc9\xcc\x83\x00\xb3\xbb\x2b\xbc\xd1\xe2\x89\xf7\x7b\xf5\x09\x40\x56\x4f\x19\xe5\x04\x64\xeb\xd3\x64\xf3\xc8\x28\xbd\x77\xa5\x9e\x2e\x52\xad\x69\xa0\x35\x7d\x03\xaa\x4c\x16\x30\x0f\x4b\xed\x2b\x69\xb9\x40\x2a\xe3\xa2\x6d\x80\x54\x44\xd3\xa2\xe3\x86\x5c\x63\xc5\xb4\xce\x7f\x69\x70\x72\xca\x88\xd1\xe4\x3d\x3a\x04\x32\x06\x94\x3a\xc2\x78\x6f\x58\xbe\x7a\x63\xad\xd8\xa6\x66\x8b\x5a\x58\x40\xc6\xf9\xbb\xb5\xb5\x45\xef\x7b\xdf\xfb\xe8\xa5\x97\x5e\xd2\x14\x9a\xe4\xb5\x16\xb8\xc2\x94\x4a\x94\x94\x6f\x3c\x78\xa1\x6c\xb9\x2f\x23\xf9\x6a\x8a\x39\x06\xdb\x45\xeb\xb2\xb2\xc9\xb8\x65\x74\xf1\x38\x69\xed\x6b\x3c\xed\x7a\x8e\xc1\xf3\x78\xe9\xde\x94\xca\xac\x4f\xd9\xf8\xef\x82\xbb\x74\x09\x0e\x2d\x68\xf5\xce\xf1\x1f\x84\xe7\xb1\x7a\x97\x75\x2f\x69\xe6\xbf\x40\x3b\x7f\xe9\x3e\x8f\x75\xa4\x12\x3e\xa6\x64\x79\x3d\xf3\x74\x60\xe9\x79\x1e\x31\x1e\xc4\xea\xdc\xc3\xf8\xb4\x5a\x1d\xc9\x36\x06\x51\x4e\x9e\x56\x9b\x96\x91\x53\x3c\x9c\x56\xee\x09\x90\x1d\x8f\xc4\x07\x74\xcb\x49\xac\x9c\xb1\x34\x1a\x8f\x25\x2f\x7c\x39\x24\xac\x46\x5f\x8c\xee\x90\x77\xdd\xd1\x1a\x00\xee\x13\x9f\xf8\x84\x79\xe0\x81\x07\xc8\xdf\x66\x9e\x65\x19\xfd\xed\xdf\xfe\xad\xcd\xb2\x8c\xae\x5c\xb9\x82\x6f\x7c\xe3\x1b\xf6\x13\x9f\xf8\x84\xb9\x78\xf1\xa2\x66\xac\x68\xed\x96\xf3\x50\xca\x41\x57\x19\x78\x3a\xde\x27\x4a\x1e\x68\xb2\xa7\xc9\x3d\xff\x8b\xf1\x2a\x56\x06\x02\xe0\xbc\x41\x82\xc5\x3a\x0c\x70\x57\xae\x5c\xd1\xbc\x1d\x5c\x86\x80\xc5\x3a\xe1\x79\x49\x79\x91\x3c\x90\xe5\xe5\x30\x52\xae\x34\x39\x92\x9e\xa7\x16\x6f\xe4\xae\x22\x4d\x70\x63\x0a\x57\x63\xb2\x0c\x5a\x85\xe2\xa9\xa7\x9e\x32\x83\xc1\xc0\xef\x4f\x77\xd4\x1c\xaa\x43\xd4\xdc\xbb\x90\x12\x51\x06\x20\x75\x70\xe9\xa0\x34\xab\x47\xc6\xd9\xf1\x8d\x49\x7a\xaf\x01\x25\x70\x4c\xca\xa8\xb6\x09\x80\x66\xea\xa8\xfe\xe7\x0d\x07\x4e\xb4\x14\x37\x7f\xca\x2d\x3f\x60\x2e\x5c\xc8\x58\xc3\xfb\x59\x24\x7f\x6a\x2e\x51\x63\x3c\xf1\x05\xb8\x8e\xe5\x17\x68\xf2\x4c\xf2\xe7\xc6\x54\x91\xc6\x80\xd2\x79\xe2\xde\x7c\xfb\xd0\xf4\xcd\x92\x30\x73\x70\xe1\xd2\x45\xbf\xb3\xa8\x5e\xa0\x1b\x16\xd9\xbf\xf0\xc2\x0b\x9a\x2b\x4e\xd6\x93\x26\xe0\x5a\x47\xc0\x95\x77\x57\xa7\xa5\x09\xb4\xfc\xc6\xdf\x63\x9d\x81\x26\x47\x5a\xd0\x70\x2e\x83\x59\x46\x17\x8f\x93\x70\xcb\xca\xd5\x05\xaf\xf1\x77\xd9\x7b\x8c\xe6\x18\x9d\xb2\x93\x95\x75\x25\x65\x01\x91\x77\x1f\x34\x7c\x31\x9e\xc7\x46\xed\xb1\x7a\x5f\xc6\x5b\x2d\x4f\x2e\xbf\x16\xf1\xce\x5f\xa6\x35\x22\x3d\xe7\x97\xd4\x49\x72\xa0\x15\xe3\x4b\x4c\xee\xbb\x3a\x35\xfe\x27\x3b\x2b\xb0\x32\x69\x3c\xe7\xf1\x52\x61\xf3\x38\xd9\xae\x35\xc3\x40\x96\xb3\xcb\xf0\xe1\x41\xca\x30\x4f\xc7\xf9\xc0\xe1\x35\x83\x90\x77\xda\x3c\x1d\xe7\x05\x37\xde\x24\x6e\x8d\xcf\x52\x97\x59\x00\xb8\x78\xf1\x22\x5d\xbc\x78\x31\xa4\xbf\x78\xf1\x22\x01\x70\x17\x2f\x5e\x74\x17\x2f\x5e\x74\x00\x0c\xff\x1e\xa1\x9d\xe7\xb9\x4c\x77\x48\x63\x82\x97\x55\x93\x0d\xd9\xd9\x73\x78\x89\x43\x93\x4d\x4d\xd6\x63\x75\x19\x93\x69\x99\x2e\xe6\x68\xe8\xd2\x21\xb1\x36\xcd\x65\x9b\xa7\x8b\x95\x47\xda\x16\x72\x20\xac\x19\xb1\x9a\xfe\x74\x00\x9c\xac\x44\x3e\x45\x61\x95\x38\x28\xb0\xb1\xef\x32\xf8\x82\x9a\xaf\x7d\xed\x6b\x16\x80\x3c\x99\x8f\xef\x21\xb7\xa8\x2f\xc3\x72\xce\xcd\x0a\x83\xd9\xee\xa0\xbc\xbe\xbd\x52\x5c\x9d\xa5\x76\xcf\x01\x8d\x81\x41\xb5\x34\xd4\x62\x45\x4e\xd6\x1d\xd0\x3e\xcb\x85\x05\x02\x5b\xe5\xe3\x6a\x9c\x0e\xce\x49\x0d\xe4\x5a\xeb\x59\xbc\x65\x12\xce\x1f\x90\x74\x84\x3c\x9d\x18\x87\x35\xb9\x13\x90\x0e\x0b\x73\xf2\xc4\x6e\xfe\xc4\x3d\xfb\xd9\x51\xe3\x30\xa4\xe6\xc2\xb0\x70\x42\x22\x35\xa7\x42\x62\x30\x18\xe0\x0b\x5f\xf8\x82\x54\x2a\x5a\xd0\xac\x69\x0e\xaf\x3d\x73\x18\x39\x82\xd2\x60\x62\x38\xe4\x37\x0d\x96\xff\x75\xd1\x24\xe1\x35\xdc\x12\xae\x8b\x1e\x8d\x2e\x8d\x96\x65\x38\x34\xf8\x65\xf9\xf5\x79\x8e\xd1\xc6\xeb\x7b\x19\x8f\xfb\xd0\xc5\xf1\x1f\x94\xce\x2e\xb9\x93\xfc\x8c\xd5\x9d\x86\x43\x93\xb9\xd8\xbc\x7f\x17\x1d\x1e\x9e\xe3\xeb\x2a\xff\x32\x39\x8c\xc9\xbe\x26\x0f\xb2\xbd\xc5\xda\xa1\x56\x46\x59\x86\x65\xdf\x65\xbb\xd6\xda\xae\x4c\xdb\xb7\x3d\x68\xdf\x78\xd0\xea\x83\xa7\x8f\xf5\x07\x5d\xe9\x62\xf4\xf0\xe7\x18\x2f\x62\x3a\x4c\xb6\x9b\x65\x6d\x39\x26\x0b\xb1\xba\x84\x88\xc7\xca\xca\x8a\x39\x75\xea\x94\x01\x60\x4f\x9d\x3a\xe5\x9f\x63\xf8\x0e\xa2\x73\x96\xb5\x85\xae\xb2\xf4\x91\x1f\x0d\x1f\xc4\xbb\x8c\x3f\x48\x19\x38\x7c\xac\xff\x92\xb6\x48\x8c\x76\xd3\x25\x9c\x0b\xc0\x0a\x71\x1a\x9c\x06\x2f\x89\x6a\x79\x2c\x38\x0c\x89\x03\x82\x88\xa8\x70\x70\xb3\x51\x5e\xee\xdd\x58\x9d\x5f\xde\xcf\xcb\x6b\xde\xb8\xf0\x77\x04\x51\x1b\x71\x78\xf4\x76\x82\xbf\x26\x00\x70\x20\x38\x7e\xe0\x51\x6d\xab\x54\x66\x8a\xf3\xe6\x0a\xb9\x16\x6e\xbf\x3e\xa6\xe5\xd1\xa9\xcb\x10\xe2\x5d\x93\x26\xe4\xca\x4f\xe6\x05\xaa\x73\x5d\x02\x71\x84\xc4\x62\xb8\x39\x49\x3f\x78\xea\xd6\xe0\xa1\xd4\xd2\x2a\x1c\xfc\xf5\x07\xf2\x50\xba\xc0\xdb\x3f\xfd\xd3\x3f\xb5\x47\x8e\x1c\xe1\x02\xbc\xcc\xc0\xe4\xdf\xb4\x3a\x91\xe9\x65\xe3\x97\x8d\x26\x66\xc4\x62\xc9\x37\x9e\xc7\x41\x0c\x5e\x09\x1b\xeb\xc4\x63\x46\xb7\xfc\xd5\xd2\x68\xb4\xc8\x34\x92\x4f\x9a\x22\xd1\xd2\xca\x38\xf9\xcc\x83\x6c\xe4\x1a\x6c\x2c\xdf\x65\x65\x90\x69\x35\x7e\x69\xcf\x31\x5e\x6a\xb4\x6b\xf5\x1b\x93\xbd\x58\x58\x26\x1b\x5d\x65\xe2\xef\x50\xe2\x65\xe7\xa3\xc5\x69\xb4\xc4\x64\x45\xc3\xaf\xc9\x62\x97\xec\xc4\x68\xf7\x61\x99\x21\x20\xd3\x4a\xe3\x41\x83\x89\xe5\xdb\x45\x2b\xa7\x47\xd2\xd6\x55\x67\x9a\x31\xb3\x4c\x26\x34\x5d\x13\xd3\x5f\x92\xd6\x65\x3a\x65\x59\x7d\xc8\xba\x8d\xe9\x3f\x0b\x00\x47\x8e\x1c\x31\x5e\x1f\x1f\x39\x72\x04\xe3\xf1\xd8\x5e\xba\x74\xc9\x02\xc0\xa5\x4b\x97\xec\xa5\x4b\x97\xec\x91\x23\x47\x42\xde\xf5\xb3\x4f\x8b\xd5\xd5\xd5\x58\x3d\xc4\x74\x7c\x4c\x47\x74\xc1\x48\x7e\x2f\xd3\x0b\x12\x4f\x4c\x0f\xc4\x68\xd7\xf2\x90\x41\xab\xab\x3e\x06\x96\x05\x60\x49\x00\xc8\x67\x89\x20\x86\xb4\xeb\x77\x21\xfd\xc7\x3e\xf6\x31\xf3\xc3\x1f\xfe\xd0\x8a\xf3\x5c\x0c\x9a\x0e\x7b\x88\x6a\x77\x51\x38\xd3\x25\xb1\x38\x7a\xea\xd6\xe0\x17\x3e\x74\x69\xfd\x3f\xbd\xeb\xfa\xca\x27\x52\x57\xed\x2e\x92\x1b\x88\xfc\xf4\x0c\x9f\xa3\x09\xde\x13\xd7\xb2\x6b\xc0\xd3\xb7\xbe\xb1\x74\x1e\x95\x0a\x0f\x9f\xe7\x22\x64\xf4\xea\x22\x96\x1e\xe4\x60\x81\xc9\x1b\x47\x27\x5f\xfd\xee\x23\x3b\x7f\x7b\x7d\x6d\x76\xb9\x24\xec\x80\x30\x72\xd5\x05\x5a\xfc\xb4\xc7\x50\xd1\xcf\x3c\xf3\x8c\x1d\x0c\x06\x66\x3a\x9d\x42\xa9\x97\x58\xe8\x52\x80\x07\x49\xd3\x55\xcf\x07\x49\xdf\xe7\x7d\x19\xcd\xb2\x21\x6a\xdf\xb4\xef\x5d\x23\x18\xf9\x8e\x08\x6c\x57\x58\x86\x57\xd2\xa7\xd1\xd8\x85\x33\x46\xcb\xb2\x7c\x96\xd5\xd3\x9d\xca\x48\x9f\xfa\xea\x92\x07\xad\x3e\x63\x71\x52\x06\xc1\xe0\xfa\xea\x30\x89\x0b\xca\x73\x8c\x46\x08\x98\x58\x3e\x5d\xf4\x6b\x34\x68\xf9\x6b\x78\xfa\xc8\x6a\x57\x99\xbb\x68\x8a\xe5\x75\x27\x75\x7d\x10\x1c\x1a\x4c\x9f\x36\x75\x10\x1c\x07\xe1\x67\x2b\xf8\x5d\x4f\x7e\x67\x8e\xbf\x6f\x49\x9e\xa1\xe2\x43\x2c\x4e\xee\x6e\xaa\x75\x7a\x5f\x7d\x14\x83\xe1\x70\x3e\x74\xc9\xb1\x26\xfb\x07\xd1\x2d\x5d\xed\xaf\x2f\xfd\x31\x1a\xa3\x79\x6b\x88\x34\xa2\xbb\xe2\xe4\x37\x69\x81\x2d\x64\xfa\xc3\x1f\xfe\x10\x00\xe4\x4d\xd1\xe1\xcf\xb1\x1b\x43\x5d\x7d\xc4\x73\x41\x6e\xb2\x33\x2c\xaf\x5f\x5f\x9b\x5f\x9c\x64\xe5\xf6\xc2\xa4\x22\x9b\x3a\x0a\x46\x07\x5b\xaf\xd2\x9a\xc6\xa9\x13\xb7\x60\xd0\x18\x2a\xad\x75\x2e\x22\x90\xc8\xa7\x7a\xa6\xfa\xcf\xaf\x65\xa9\x0d\x94\x90\x8f\xf7\xec\x70\x6f\x4d\xe5\xc9\x31\xc0\xf0\xf8\x7e\xfe\xf1\xfb\x6f\x0d\x1e\xca\x0b\x33\x44\xb3\xbe\xc7\xff\x72\x6b\x33\x04\x26\xe0\xfc\x1b\x37\x02\x65\x90\x02\xa6\xa5\xd5\xd2\x70\xbc\x5a\x88\xd1\xa1\xe5\xa9\x09\xa5\x66\x51\xc7\x82\x56\x3e\xdb\x11\xaf\xe1\x33\x58\x94\x51\xf9\x5d\x2b\x43\x57\xa7\x2f\x9f\xb5\xc6\x2c\x83\xc5\x22\x8d\x32\x6f\xf9\xdb\x95\x77\x2c\xf0\xb6\xb5\x0c\x57\x1f\x19\xd1\xf8\xc3\xd3\x6b\x69\x38\x2d\x06\x8b\xf5\x25\xf5\x44\xac\x8e\x65\x3e\x52\x6f\x69\xf2\xd6\x15\xb4\x32\x77\x75\xda\xcb\x3a\xcb\x65\x79\x75\xd1\x14\x33\xa0\xb4\xb6\xd1\xc5\x2b\x9e\x36\x26\x57\x32\x6d\x57\x47\x27\xe9\x97\x79\xc8\xef\x12\x5f\xac\x1d\x49\xbe\xf2\xb4\x5d\x9d\xe9\x32\x79\x84\x80\xd7\xe8\x8f\xe9\x9a\x2e\x7e\xe3\xe9\xa7\x9f\x36\x00\xc0\x8d\x16\x80\x0f\x5c\xab\xb4\xcc\xa3\x6f\x00\xb4\x0e\xc8\xf3\xbf\x67\xcf\x9e\xb5\x4f\x3f\xfd\xb4\xf1\x38\x9f\x7e\xfa\x69\xf3\x7b\xbf\xf7\x7b\x50\xc2\x32\xb9\x59\x16\xa4\xec\xaa\x65\x63\xcf\x9a\x0e\x88\xd1\xc4\xd3\x68\x36\x44\xac\xdd\xfa\x77\x4d\xd6\xf9\x37\xad\xcd\x19\xa0\x7b\x57\x91\x41\x7b\x31\x0d\x5f\xfc\xa9\xc1\x72\x46\x74\x2d\x2a\x83\xc7\x53\x5f\xae\x05\xe7\x5c\xbd\x76\x95\x00\x20\xa9\x7f\xd3\x3a\xce\x5f\x03\x90\x39\x72\x69\x56\x9a\xd5\xa3\xa3\xec\xc4\xc6\x34\xbd\xb7\xb5\x80\x36\x84\x2a\xb2\xe5\x25\x21\xb4\x17\xde\x32\x63\x85\x38\x0c\x84\xe7\x85\x9a\x02\xcb\xd5\x66\x5a\x7c\xf0\xf4\xa0\x9d\x1e\x35\x45\x8e\x16\x3d\x3e\x00\x90\x5a\x1c\x36\x96\x6e\x5e\x5b\x9f\xbf\x35\xce\xec\x9e\x33\xe0\x97\x7f\xf9\xdf\xb0\x50\x49\x5c\x03\xc0\xeb\x24\xb6\x48\x8b\x33\x27\xf6\x1e\x4b\xc3\xf1\x42\xf9\x5d\x86\xab\x4f\x1e\x31\x9a\xb5\x3c\x62\xb4\xc4\x16\xa7\xf5\xc1\x29\xf1\x73\xd9\xed\xa2\x5b\x4b\xdf\x95\x77\xdf\xf4\xb1\xf2\xc5\xe0\x0e\x92\x67\x8c\x27\x7d\xeb\xf5\x4e\xea\x9f\xf3\x95\x2f\xe6\x94\x78\xe5\x3b\xd7\x2f\x52\x07\x71\x65\x1b\x4b\x2b\xf9\xc7\xe3\x38\x4d\x4e\xc4\x77\xc9\x03\x6f\x7b\x06\x3a\x5f\x64\x79\x35\x39\x8d\xe1\xd6\xe8\x02\x83\xe1\xcf\x72\x81\xef\x32\x79\xf1\xb8\x65\x1d\x2c\xa3\xa9\x4f\x9d\x7b\x9c\xa4\xa4\x91\xcf\xb1\x7c\xf8\xf7\x18\x8e\xbe\xf9\x68\xf4\x6b\x65\xe1\xf8\x00\xc0\x3e\xf1\xc4\x13\xe6\xea\xd5\xab\x0e\x80\x93\x67\xa3\x10\x11\xb6\xb6\xb6\x88\x1d\x94\x17\xbc\x2e\xf5\x4e\x8a\xd0\xb7\xf9\xe0\x69\x25\x22\xb0\x74\xd8\xda\xda\xa2\xb3\x67\xcf\xda\x97\x5e\x7a\xc9\x3d\xfd\xf4\xd3\x86\xed\x82\xe2\x74\x6a\x75\xac\x95\x55\x83\xd5\x74\x59\x4c\x06\xb4\xbe\x5c\x4b\x27\xe9\x8b\x19\xf5\xbc\x7e\xb4\xb4\x9a\x8c\xc5\x64\x3a\xd0\xa1\xdd\x55\x04\x06\xc0\x33\x63\xdd\x79\x8b\xd8\x3e\x4a\x55\x2a\x1b\x02\xda\xdb\xa2\x59\xc5\xfa\x3f\x83\xca\x78\xa9\x6e\x8b\x06\x52\x4b\xc8\x8c\xa3\xec\xd0\x24\x3d\xb2\x39\x4e\xef\x4f\x1d\x65\x8b\x44\x53\xf0\x6e\xf8\x87\xca\xa0\x50\x2c\x06\x11\x82\xb7\x04\xfc\xdc\x97\xe6\x1b\xd0\x2c\xfe\x6d\x9d\x21\xa3\xc1\x33\xe3\x08\xae\xbd\x1e\x06\x0e\x70\xcc\x92\x22\x50\x9a\x58\x4a\x47\xb9\xbd\x70\x6b\xa5\xb8\x31\x4b\xdc\xd4\xc1\x15\xd4\xbe\xbd\xd4\xa1\xae\xc8\xad\xad\x2d\xda\xda\xda\xa2\xda\x80\xe1\x75\x11\x33\x2c\x65\x88\xd5\x79\x2c\xfe\xa0\xf8\xbb\xf0\x76\xe5\x71\x10\x7a\xee\x66\x1a\x99\xf6\x76\xd3\x2f\xc3\xdb\x37\xfe\x7f\xb6\xd0\xb7\x1c\x31\x9d\xc0\x07\x3b\x31\x45\xec\x22\xe9\xb8\x22\xd4\xe8\xd1\x8c\x0b\x69\xec\x6b\xe9\x96\xd1\xca\xe3\x63\xdf\x0f\x82\x23\x96\x36\xd6\x76\x62\x38\x62\xf8\x0e\x42\x77\x2c\x9e\x87\xdb\xc1\x2d\x75\xc8\x32\x5a\x65\xbd\x1d\xa4\x0c\xcb\x74\x8e\xa4\x25\xfc\x7e\xf2\x93\x9f\xa4\x8b\x17\x2f\xba\xdf\xfc\xcd\xdf\xa4\xe7\x9f\x7f\xde\xf9\x23\xf6\xcf\x9c\x39\x43\xfe\xc6\x66\x96\x9e\x88\x28\x61\xcf\xe1\xd7\x1b\x2d\xfe\xb7\x86\xf1\x87\xe8\x85\x38\xe7\x9c\xe3\xb8\x23\x67\xcd\xf4\x91\xd9\x83\xc0\xf2\xdf\x83\xc8\x92\xc4\x77\x37\xda\x80\xd6\xfe\xbb\xec\x07\x24\x1d\x05\xf3\x41\xb3\x88\x3c\x6c\x5f\xb7\xa9\xca\xd8\xad\xad\x2d\x73\xdf\x7d\xf7\x79\x57\x0b\x67\x56\x02\x00\xce\xb9\xa4\x7e\x4e\x00\xe4\x00\x25\x04\xca\x86\x73\xb3\x7e\xcf\x28\xbb\x6f\xa5\x48\x0e\xf3\x0c\x5a\x2e\xa1\x60\x38\xb4\xfc\x2a\xe1\x59\x23\xa8\x79\xa6\xca\xb8\x80\x30\x40\x00\x3f\xc7\x23\x0c\x15\xe2\xa8\x9b\xd8\x3a\x2e\x18\x2d\xac\x84\xe4\x28\x4c\x17\x11\x08\x89\xc5\x2a\x80\x9b\xd7\xd7\x8a\x8b\xa3\xbc\xdc\x71\x26\x18\x2d\x61\x6b\x34\x44\xa5\x9e\x3b\x77\xce\x1d\x3f\x7e\xdc\x8c\x46\x23\xff\x4d\x33\x2c\x34\xa5\xa1\x75\x12\xde\x4d\xe7\xa0\x0b\x92\x74\x3a\x01\x71\xe1\x93\x02\xca\xf1\xca\x3c\x34\x5c\xe8\x09\xa7\x19\x53\x5a\x47\xd5\xa5\xc4\x64\x63\xd1\xca\xde\x37\x7d\x8c\xb6\x98\xd2\xb4\xd0\xf9\x25\xcb\x70\x3b\x79\x6a\xb4\xc6\xc2\xed\xc0\xc5\xf8\xd6\x95\x8e\xff\xf2\xb2\x73\xe3\x43\x96\x5f\xf2\x49\x9b\x6a\xe0\xb0\x52\x4e\xa5\xdc\xc9\x7c\xf8\x5f\x4c\x9f\x49\x59\x96\xf9\x48\xf9\xd3\xfe\xfc\x37\xd9\xfe\x34\xdc\xb2\xec\x31\x3a\xb4\x36\x25\xf3\xf1\xf0\x92\x87\x1a\x4f\x64\x3e\x5a\x79\x78\xfd\x71\x78\x5f\x1e\xd9\x91\x71\x9a\xf8\x08\x5a\xab\xd7\xd8\x40\xd8\xc3\x70\x7a\x80\x76\x1d\xf4\xa1\x09\xe2\xfb\x42\x27\xfc\xa9\x4f\x7d\x8a\xde\xf3\x9e\xf7\xe0\xe3\x1f\xff\x38\xa5\x69\x8a\xad\xad\x2d\x62\x27\xf2\xfa\xbc\x93\xda\x18\xf1\x03\xff\x04\x68\x76\x82\xd6\x7f\x29\xaa\xd9\x83\x84\x1d\xae\xea\xef\x57\x0a\xbb\x45\x9b\xfb\x12\xe1\x0d\x1c\xe7\x3d\x39\x67\xce\x9c\xa1\x73\xe7\xce\xb9\xdf\xfd\xdd\xdf\x35\xb3\xd9\x0c\x37\x6f\xde\xd4\xea\x42\xd3\xbf\x80\x5e\x6f\x5a\xfb\x94\xf0\xda\x74\x24\xe7\xa7\x94\x69\xa0\x5d\x0f\x12\xf6\x20\xed\x58\x9b\xb5\xe1\x5d\x7b\xa8\x47\x39\x55\xd4\xfa\x28\x0a\x27\x95\xa9\x2c\x48\x1f\x65\xdf\x12\xa4\xb7\xdf\x7e\xdb\x9d\x39\x73\x86\x80\xe6\xce\x22\x9e\x1f\x11\x19\x36\x55\x94\x82\x90\x3b\x42\x9a\x38\x1a\xde\x33\xca\x8e\x6d\x4c\xd3\x93\x06\x95\x00\x48\x2e\xb6\x34\x8b\x5f\x38\x55\x9b\x1b\x92\x13\xe4\x61\x2a\x8b\x24\x20\x59\xb8\x93\xc8\x17\xc8\x35\xc6\x88\x0f\xf2\x9e\x23\x7e\xe9\x97\xbf\x59\x9a\xaf\x8b\x09\x53\x53\x0d\x0d\x69\xe2\xc8\x8c\xf2\xf2\xe2\xce\x4a\x79\x6d\x96\xb8\x29\xa8\x3a\xf2\x5f\x1c\x46\x17\xdc\x7e\xa7\x4f\x9f\xa6\x7f\xfb\xb7\x7f\xd3\x14\x9b\x0f\x5c\x18\x34\x85\x00\xf1\x2e\x95\x98\x84\x97\x69\x48\x81\xd5\xf2\xd1\x8c\x1f\xa9\x34\x96\x75\x1a\xda\xbb\xa6\x94\x96\x29\xe2\x2e\x7c\x77\x9a\x7e\x19\x6d\xfc\x5b\x1f\x7e\x69\xb4\x2c\xcb\xb3\x8b\xd6\x98\x71\xd1\xc7\x68\xe9\xca\x17\x88\x97\x95\xd7\xad\xec\xd4\x64\x27\x0e\x11\xc7\x3b\x3a\x40\xef\xdc\xb8\x6c\x69\xd3\x1e\x1e\x46\x93\x13\x27\xd2\x2d\x1b\xa5\x3b\xe5\x4f\xc2\xf2\x6f\x1c\x77\x57\xa7\x00\x01\x23\xcb\xde\x55\x1e\xed\x59\xc3\xcd\x69\x93\xcf\x9e\x26\x4d\x8f\x6b\x7c\xd5\x3a\xa6\xae\x3a\xd6\x0c\x13\x59\xc7\x9c\x4e\xd9\xaf\x68\xfc\x94\x65\x97\xf5\xab\xd1\xe4\xe3\x17\xe4\xf4\x57\x7e\xe5\x57\xe8\xc2\x85\x0b\xf6\xcd\x37\xdf\x74\x4f\x3e\xf9\xa4\x9f\xe6\x41\xdd\x07\xf1\x7e\x29\xa9\xef\xd4\xe3\x06\x4b\x52\x4f\x15\xa5\xb5\x31\x93\xa0\x5a\x9f\x98\xd4\xf0\x46\x3e\x8b\x3b\xfa\x7c\x5f\xe7\xc9\xf1\x9e\x1a\x77\xe6\xcc\x19\x5a\x5d\x5d\xc5\x91\x23\x47\xf0\xe3\x1f\xff\x98\xcb\x12\xe7\x17\xaf\x13\x6d\xfa\x27\xd6\x2e\x39\x0f\x81\xb8\xf1\xc8\xf9\xa9\xc9\x74\x8c\x1e\xad\x1d\x5b\x05\x8e\xd3\x2f\xd3\x41\xe4\x09\xa0\x31\x5c\x34\x81\xea\x22\xc2\xa7\xf1\x85\xed\xab\xec\x79\x63\x70\x40\xe5\x35\xa8\x8f\x6b\x96\xc2\x45\x68\xa6\xb2\xd2\xfa\x14\xdd\xd4\x51\xb5\x78\xf5\xd0\x34\x3d\x7c\x74\x94\x3d\x90\x5a\x33\xf4\x08\x7d\x06\x8d\xc1\x52\x1b\x0b\xa8\xbd\x1b\xf5\xc7\xb6\xc9\x51\x13\x44\xcd\x87\x16\x0e\x06\x4c\xa1\x04\xd4\x32\x66\xf4\xfc\x2b\x4b\x85\x80\xb0\x68\x97\xc3\x03\x95\xa1\xd4\xc4\x13\x19\x87\x81\x23\xdc\xda\x5e\x2d\xde\xde\xcf\xed\xb6\xb6\xd6\xa5\xb6\xf0\x6a\x92\x29\x76\x15\x80\x36\x5a\xfb\x79\x84\x3e\x1d\x9e\xa6\xd4\x0f\x82\x67\x99\x37\xa0\x6f\xda\xbe\x5e\x85\xbe\xf9\xf6\x09\xb7\x9b\xfe\x6e\xe4\xad\xe1\x8b\x75\x84\x77\x23\xc4\x70\xf2\x76\x1d\x1b\xf9\x69\x75\x24\xd3\xc9\x4e\x48\x7a\x97\x64\xa7\x25\x71\xc6\x3a\x2f\x9e\xae\x0f\x3e\x28\xf1\x31\xd8\x18\xbe\x65\xf0\x52\x89\x2f\xc3\x1d\x7b\xd6\x68\xd5\xca\xc3\x75\x79\x17\x3e\xce\x73\x5e\x27\x1a\x0f\x63\xf5\x1e\x2b\x43\xcc\xf8\xeb\x82\x97\x34\x1c\x94\x3f\x06\x80\xfb\xf4\xa7\x3f\x6d\xde\xfd\xee\x77\xe3\x63\x1f\xfb\x18\x71\x0f\x8b\xf7\x94\xd4\x6b\x30\x13\x6f\x7c\x30\x4f\x4b\x06\x20\xab\x0d\x91\x2c\x71\x94\x65\x25\xe5\x79\x61\xb2\xbc\xa0\x3c\x2b\x29\x4b\x2c\x25\x09\x28\x33\x96\x12\x4b\xc1\x2b\xe3\xd3\xfb\x3c\xc8\x7b\x74\x98\x07\xc6\x3f\x10\x00\x37\x1c\x0e\xc3\x14\xd2\x13\x4f\x3c\x41\x57\xaf\x5e\xed\x5a\x4f\xd2\x25\x03\x5a\x1b\xd4\xea\x32\xd6\xbe\xfa\x0c\x56\xfb\xd4\xc3\xb2\x36\x1a\x6b\x97\x00\x1a\xc3\x25\xa6\x48\x64\xd0\x8c\x19\x19\xba\x1a\xb9\xaf\x88\xc0\xf4\x4f\x7f\xfa\xd3\xe6\x9e\x7b\xee\xf1\xf8\x82\x13\x84\xcd\x0d\x06\x97\x9b\x73\x2e\x45\x7d\x9a\x6e\x5e\x98\x95\xe3\xa3\xfc\xfe\xb5\x79\x72\x54\x78\x2e\x02\x71\xad\x69\x9e\xfa\xa3\x03\x9a\xcb\x12\xeb\xe0\xdf\x43\x14\x63\x61\xb3\xd5\xba\x36\x34\x6a\xeb\x85\xd8\x19\x2d\x01\x9c\xe1\xa0\x18\xbe\x00\x47\x0b\x34\x93\x43\x9e\x38\xb8\x71\x66\xdf\xde\x1d\x96\xd7\xa6\xa9\x9d\x80\x50\xf0\x2b\x00\x98\xf7\x05\x40\xb5\xde\x45\xdc\x1e\x2d\xad\xd3\x65\x9d\xb7\xf4\x86\xc5\x46\x5e\x12\x4e\x86\x18\xac\x5c\x11\x1e\x6b\x18\x72\x94\xc5\xb9\xd7\x95\xae\x8b\x0e\xd9\x01\x68\x65\xd4\xd2\x4a\x03\x3d\xd6\x59\xca\x34\xa4\xc0\xc6\x78\xd9\x35\x0a\xec\xa2\x4d\xe6\xd9\xa7\xee\xe4\xe8\xb5\xab\x4c\x5a\x3d\xf4\xe5\x9b\x0c\x9e\x8f\x5d\x9d\x70\x8c\x4e\xa9\xf0\x64\x3c\x1f\x33\x48\x3c\xfc\x9d\xeb\x1c\x23\x9e\xb5\x76\xa3\xd5\xa7\x9c\xd2\xeb\xc2\xc3\xf3\x97\xb4\xf0\xbc\x5a\x4d\x5f\x79\xd6\xda\x8d\x4c\x27\xf3\x91\xf9\xc5\xca\x20\xe1\xa4\x5c\x78\x3a\x78\x9e\x0e\x6d\xba\x24\x7e\x09\x2f\xeb\x5d\xe2\xd6\x60\x78\xe8\x03\x2f\xcb\xda\x35\x15\xe1\x9f\x39\xed\xf6\xc9\x27\x9f\x34\xdf\xfe\xf6\xb7\x6d\xed\xf9\x07\x1a\x63\xc2\x1b\x12\x86\x1b\x2c\x61\x00\xed\x5c\x36\x28\x4d\xbe\x31\x4b\x57\x36\xc7\xc9\xfa\xd1\x71\xb6\x79\xef\x5e\x7e\xcf\xc9\xdd\xc1\xc9\xfb\x76\xf2\x07\xef\xdd\xcb\xef\x3b\xbe\x9f\x9f\x3c\xbe\x9f\x1f\x3f\xbe\x9f\x1d\xdf\x1c\x67\x1b\xeb\xb3\x64\x30\x2c\x4c\x9e\x15\x94\x1a\x90\x71\x06\xc6\x55\x6b\x79\xbd\x71\x24\xd7\xc4\x34\x53\x11\xf5\x14\xd2\xd6\xd6\x16\x7d\xf3\x9b\xdf\xb4\x1f\xf8\xc0\x07\xcc\x3b\xef\xbc\x23\x65\xca\xf3\x4a\x1a\x35\x9c\x27\x9a\x8e\x92\x72\x0c\x2c\xca\x0c\x97\x35\xd9\xe6\xb4\x36\x10\x93\x6f\x69\x98\x70\x78\x0d\xb7\x9a\x5f\x2a\x0a\x77\x90\x11\xba\xb4\xd2\x11\x79\xef\x8c\xff\xd6\xb7\xbe\x65\x1f\x7b\xec\x31\xa3\xc0\x5a\x6a\x6e\x48\x2e\x00\xcc\x88\x68\x06\x60\x32\x4f\xdc\xe8\xfa\xda\xfc\xca\xf6\xca\xfc\xe2\x91\x51\xfa\x88\x71\x48\xfd\x9a\x93\x70\x34\x3f\x53\x6d\x2d\x83\x02\x80\x23\x07\x5a\x88\x04\x7b\xaf\x8c\x14\x6f\xdc\x34\x57\x29\xf9\x77\xaa\x7f\xb5\xeb\x1b\xf9\x33\x9b\x7e\xf2\x46\x90\xc7\x14\xa6\xaf\x9a\x8c\xc9\x91\x59\x9d\x25\x0f\xdd\x7f\x6b\xf0\xc4\xf5\xb5\xe2\x8d\xfd\xbc\xdc\x29\x92\x70\x53\xb4\xe7\x85\x41\xbb\x91\x72\xbe\x6a\x8d\x75\x59\x9d\x1e\xa4\xfe\xba\x64\x44\xa3\xa3\x0b\x77\xdf\x7c\xef\x26\xec\x32\x9e\x68\xdf\xbb\x68\xee\xc2\x79\xd0\xb2\x2f\xab\xb3\xae\x72\xf4\xa5\xdb\xe7\xd1\xb7\x4c\xb1\xfc\x96\xc1\xf3\x78\xd9\x71\x1c\x84\x4f\x32\x70\x3d\xd1\x25\x8f\x1a\x2f\x79\x9b\xe9\xa2\x49\x3e\xdf\x0e\x7c\xec\x59\xf2\x5e\xe2\x8b\x95\x27\x56\x97\xf2\xbd\x4b\x27\x48\x9a\x64\xd0\x68\x95\x38\x62\x75\xb5\x0c\x3e\x56\xc6\x65\xcf\xb1\x32\xc6\xf2\xd4\xbe\x4b\xde\xb7\x70\x7e\xff\xfb\xdf\xe7\xe7\xb0\x18\xf6\xdd\xb0\xb5\x28\x86\x88\x52\x38\xa4\x06\x94\xae\x4d\x93\x7c\x7d\x9a\xac\x6f\x8e\xd3\xcd\xcd\x51\x76\x72\x7d\x66\x4e\xac\xcc\xcd\xd1\x61\x61\xee\xc9\x0b\xb3\x99\x5a\xb3\x6e\x1c\x8c\x25\x58\xc0\x59\x47\x28\xe6\xc6\xed\x8c\xb3\xf2\xda\x28\xb7\xef\x8c\xb2\xf2\xda\xde\xb0\xbc\x76\x73\xa5\xb8\xb6\xbd\x32\xdf\xd9\xcf\xcb\xd1\xdc\xa0\xf0\xfd\x9d\xd7\xf7\xf5\xda\xc6\xa2\x7e\xf6\x53\x49\x56\xb9\xf1\x59\x93\xa9\x83\xd4\x83\x06\x13\xe3\xe7\xb2\x36\xdc\xa7\xcd\xcb\xb4\x5d\xb8\x79\x99\x42\x79\x68\x09\x80\x66\x9c\xc8\x4c\x62\xca\x24\x66\xd8\xc8\x3c\x00\x84\x2b\xcb\xb9\xd0\xf8\xb3\x4c\xfc\x61\x74\xcd\x81\x74\x0e\x9b\xc3\xc2\x9c\xf8\xf0\xa5\xf5\x27\x3f\x74\x69\xed\x37\x57\x67\xc9\x31\xb9\xab\x87\x1b\x22\xdc\x26\x69\xb9\x5c\x88\x83\xd7\xc6\x0c\x5c\xe3\x11\x61\x07\x07\xb9\x70\x41\xa2\x3f\xb5\x97\xe7\xe7\xd8\xbd\x44\xd4\x18\x2d\x2c\x6d\xf3\x8c\xe6\x84\xdd\x7a\x2a\x29\xc4\x55\x66\x8f\xdd\xcf\xcb\x9f\xfc\xe4\xc4\xe8\xeb\x3f\x3e\xb9\xff\xad\xeb\xab\xf3\x4b\x00\x46\x44\x34\x02\x30\xab\xff\xbc\x30\x5b\x00\x96\x88\xc0\x04\xb9\x0f\xdf\x97\x09\x96\x8c\xbb\x1d\xa3\x76\x19\x7c\x1f\x21\x3d\x88\x0c\xdd\x29\xcd\xb7\x13\x0e\x24\xe3\x91\xef\x77\x42\x67\xdf\xfa\x5c\x46\x5b\x9f\x4e\xa3\x2f\xae\x3b\xa1\xb3\x2f\x2e\x4f\x57\xdf\x3a\xef\xcb\xe3\x3b\xe1\x43\x2c\xaf\xbe\x72\xe0\x9f\x7d\x38\x48\x39\x34\x9d\x7c\x37\xda\x7f\x97\xe1\xa0\x85\x58\xdf\xd0\xa7\x9d\xf6\xad\x3b\xed\x5d\xe6\xd1\x49\xd7\xca\xca\x8a\x19\x8f\xc7\xb6\xee\x73\x00\x80\x2f\x98\x0d\x06\x4b\xfd\x5b\x9d\xa7\x65\x91\xae\xcd\x93\xe1\xe1\x71\xba\x79\xef\x6e\xf6\xc0\xb1\xfd\xfc\xa1\x23\xe3\xf4\xd1\xb5\x69\xf2\x9e\xbc\xa4\x93\x89\xa3\x4d\x63\xe9\x10\x01\xab\x70\x94\xfb\x21\x69\x9d\xaf\x75\x84\x99\x25\xb7\x53\x12\x6e\x14\x89\xbb\x36\x49\xed\xc5\x9d\x95\xe2\x67\x57\xd6\x67\xe7\xaf\x6e\xcc\x2e\x6e\xaf\x14\xd7\x76\x07\xe5\xa8\x48\xdc\xac\x4e\x53\xd4\x87\x8f\x7a\x23\xc2\x1b\x33\xa8\xe3\xf0\xcc\x33\xcf\xd8\x47\x1f\x7d\xd4\xbc\xfa\xea\xab\x7d\x3a\x7b\xc9\xab\x58\x3b\xea\xa3\x1b\x96\xe5\x75\x90\xfa\x97\xf0\x5d\x86\x52\x78\xd6\xce\x71\x91\x6e\xfa\x98\x3b\xce\x0a\x18\xe9\x8a\xb6\x2c\xce\x88\x67\xcb\x70\xe2\xf8\xf1\xe3\xe6\xf1\xc7\x1f\x07\x10\xd6\x70\x18\x00\x60\x73\x89\xa6\x5e\x10\x55\x6d\x8f\x26\x64\x0e\x2e\x25\x87\xec\xc4\x7e\x7e\xff\xea\x2c\x39\x4a\x80\xf1\x5e\x14\x6e\x34\x34\x2e\x90\xc6\x8b\xe2\xbd\x20\x6d\x7f\x73\x1d\x47\x7e\xe5\x49\x63\x9c\xb8\xfa\x39\x18\x26\xec\x52\x45\x1f\xaa\x35\x32\xd4\xdc\x99\xc4\x0c\x1b\xcd\x80\xf1\xf1\xfc\xe4\xdf\x7a\xfa\x89\x12\x98\x41\xe2\x68\xb2\x9f\x97\x97\xb7\x57\xcb\x1b\xce\x04\xaf\x93\xe7\x6f\x10\x60\xbf\x36\x68\x6b\x6b\x8b\x8c\x31\x54\x1f\x37\x1d\x73\xe3\xc9\x3a\xe2\x2e\x5a\x5f\x47\xd2\xcd\x2a\xdd\xc5\x3c\x9e\xe3\x06\xfb\xa6\x09\xa6\x94\x03\xe9\x62\xd6\xbe\x59\xf1\x4d\xba\xca\x79\x7a\x49\x1b\xa7\x37\x46\xcb\x41\xa6\x63\x34\x38\x8d\x7f\xcb\x5c\xf6\x92\xc7\x31\x1e\xc4\x02\x87\xe1\xed\xc9\x87\x2e\x17\xae\x4c\x27\xf9\x2d\xa7\x62\xa4\x1c\x68\xfc\xe9\xa2\xdd\x30\x3c\xbc\xdd\xc7\x70\xb7\xf4\x82\xf8\xce\xcb\x27\xcb\xbd\x4c\x4e\x35\x1d\x24\xe1\xa4\x6b\x9c\xd3\xdc\xc5\x4b\x59\xc7\x50\xf8\xd9\x95\x2f\x2f\xb3\xcf\x37\xe6\x8a\x8f\xd1\x11\x33\x5a\xb8\xdc\x71\x59\xd5\xda\xbf\xc4\x07\x2c\xf2\x44\xa6\x95\x72\xed\xbf\x3b\xe5\x19\x2c\xce\xe7\x25\xdb\xba\xc6\xd7\x58\x7a\xfe\x1e\xe3\xb1\xc4\x41\x00\xdc\xfb\xdf\xff\x7e\xfa\xec\x67\x3f\x4b\x1d\x46\x4b\x5a\xf7\x37\x19\x1c\xb2\xac\xa4\x95\xa3\xe3\xec\xc8\xbb\x6e\x0c\xdf\xfd\xbe\x2b\x6b\x9f\x78\xe4\xe6\xf0\xd7\x8f\xef\xe5\xbf\x76\x68\x92\xfe\xd2\xb0\x30\x1f\xcc\xac\x79\xc0\x38\x3a\x6a\x40\x6b\xe4\x28\x27\x42\x42\xd5\x0e\xd8\x04\xa0\x94\x1c\x65\x04\x0c\x13\x67\x0e\x27\x16\x27\xf3\xd2\xbc\x7b\xa5\x30\xef\x59\x9f\x25\x8f\x1e\x19\x65\xa7\x8e\x8e\xb2\xcd\xb5\x59\x32\x70\x84\xa2\x30\xb6\x9c\x27\xe1\x62\xdd\xda\x39\x5f\xad\x6b\xac\x75\x7e\x68\x73\x5b\x5b\x5b\xf4\xf0\xc3\x0f\xe3\xea\xd5\xab\xb4\xb7\xb7\xa7\xc9\x8c\xe4\x37\x97\x65\x2f\x67\xbc\xbe\xb5\xfa\xe1\x3c\x95\x72\x25\xbf\xc9\x34\x5a\xdb\xd1\x74\x44\x4c\x3f\xf0\x32\xb4\xbe\x4b\xc3\x45\x53\xd2\xbc\x30\x5a\xc7\xa7\x75\x80\x56\xa4\x93\x02\xca\x89\x71\xa3\xd1\xc8\xb1\x45\xba\x55\x46\xcd\xf6\x33\x00\xf0\xf3\x8c\x86\x2f\xd2\x9d\xa5\x0e\xf7\xec\x67\x47\x36\x27\xd9\xfd\xa9\xa5\x41\x3d\x0f\x14\x92\x85\x33\x59\x6a\x6b\x22\x48\xb7\x3f\x28\x48\x16\xd0\xb1\x29\x22\x69\x64\x30\x98\xc6\x53\xe2\x9f\xdb\x06\x48\x3d\x17\x04\x57\x1b\x52\x35\xba\x06\x53\x6d\x3c\xb9\x1a\x8e\x18\x10\x11\x81\x1c\x65\x89\xa5\xac\x34\xee\xd6\xce\xb0\x78\x6b\x3f\xb7\x23\x50\xd8\x1a\x5d\xd6\x74\x95\x6d\xb9\x26\xf7\x77\x7f\xf7\x77\x76\x6d\x6d\xcd\xcc\xe7\xf3\x98\x72\x8f\x75\x70\xbc\x8e\x34\x21\x8e\xc5\x6b\x1d\xba\x8c\xe7\x71\x52\xb9\xc5\x94\x9c\x94\x31\x87\x36\x7d\x1e\x8f\xc5\x22\x0d\x52\x49\xcb\xd0\xf5\x5d\x2a\xf9\x58\x67\xaa\x75\xac\xbc\x13\x07\x16\xdb\x81\x56\x66\xde\xb8\x81\x45\xba\xb4\x4e\x9c\x77\x6c\x3e\x4d\xac\x2d\x6a\x3c\xe4\x65\xd0\xf2\xd5\xf8\xd3\xd5\xe1\x71\x78\xad\x53\x91\xb2\x42\xe2\x5d\xca\xa9\x86\x43\xd3\x4b\x31\xfa\xb4\x3a\x94\xb2\x2d\x15\xad\x66\xa8\x68\x79\x48\x5e\xf6\xa9\x63\xa9\xfb\x64\xdd\xc5\x78\xc1\x7f\x81\xc5\x7a\xf1\xf1\x52\x9f\xca\x0e\x44\xab\x17\x4d\xae\x65\xb1\x21\xb7\x3a\x00\x00\x20\x00\x49\x44\x41\x54\x47\x23\x75\x35\x97\x6f\x39\xb0\xe0\xed\xb1\xcb\xc8\xe5\xc1\xc3\xc8\x32\x68\x9d\x29\xa7\x9b\xe3\xd4\xf8\xca\xeb\x86\xe7\x13\xf8\xf0\xd9\xcf\x7e\xb6\xb5\xc5\x99\x79\x57\xbc\xd1\x92\x12\x51\x66\x2c\x06\xab\x73\x73\xe8\xbe\xdd\xc1\xa9\x0f\x5c\x5e\x3f\xfd\xe8\xb5\x95\xdf\x3c\x36\xca\x3e\xbb\x3a\x4b\x3e\x91\x5a\xf3\x80\x01\xad\x02\x64\xaa\x63\x2e\x5c\xd8\xe0\xe1\x77\xa8\xfa\xbe\xa7\xb5\xd4\x80\x50\xf5\x19\x0e\x79\xe2\xcc\x3d\x83\x92\xde\xb5\x3a\x4f\xde\xbb\x39\x4e\x1f\xbc\x67\x94\xaf\x25\x8e\x26\x7b\x79\x39\x2e\x12\x67\x5d\x05\xef\xd7\xbd\x00\x80\xdf\x98\x11\xea\xc2\x18\x83\x7f\xf9\x97\x7f\xb1\xf5\xb3\xa9\xbd\xf0\x52\x8e\x35\xb9\xe0\xf5\x2a\xeb\x4c\xeb\x37\xa4\xdc\xc6\xea\x0f\x1d\xcf\xb2\x0f\xe2\xdf\x78\xbe\x9a\xae\x68\xe5\x2d\x0d\x17\x4d\x99\xcb\xce\xcd\x07\x4d\xc1\x69\xd6\x7e\x8c\x49\x90\xef\xec\x70\x1f\x39\x72\x09\xfb\xe5\x6b\x03\x26\x05\x21\x29\xc9\x25\x83\xd2\xe4\xc7\xf7\xf3\x87\x07\x85\x59\xa7\xca\xc0\xf1\xb2\x11\x50\x84\x85\xb2\x75\x75\x33\xeb\xb5\x8a\x62\xf1\x41\xbe\xc4\x76\xe7\x30\xac\xe0\x06\x4f\xf0\xc2\x30\x86\x10\xea\x99\x28\x96\xaf\xa7\x27\x9c\x01\x53\x93\xe2\x69\x61\x79\x7a\x5b\xc8\x38\x1a\xa4\xce\xd8\x49\x66\xaf\x5e\x5b\x9f\x5f\xb5\xd5\x0e\xa3\x82\x1b\x2d\xde\x12\xaf\xad\x70\xb7\xb5\xb5\x45\xdf\xfb\xde\xf7\x34\x03\x63\x81\xd7\xca\xf7\x18\x8c\x06\x17\x0b\x5c\xb9\xf1\x38\xad\x83\x94\x41\x53\x74\x31\x3a\x62\x8a\xad\x0f\xad\x5d\x32\x2e\xe9\xd7\xe4\xbe\x0b\x5f\xec\x39\xe6\x45\xd0\xf8\x1d\x6b\x6f\x5d\x9d\x7b\xcc\x18\xd3\x14\xc5\xb2\x20\xeb\x2f\x46\x53\xac\x8e\x62\x41\xeb\xf4\x5b\x4d\x07\xfa\x68\xd9\x7f\x5f\x46\x17\xa7\x9f\xa7\xf1\x34\xcb\x0e\x9f\xd3\xb1\x30\x98\x52\x70\xcb\x11\x21\xef\x64\xa5\xc1\x2a\xe3\x25\x1d\xb1\x4e\x9d\xd3\xc2\xd3\x6a\x9e\x47\x69\xb4\xcb\x72\x75\x05\x8e\x3b\xa6\xdb\x35\xb9\xe1\xfc\xd2\x74\x3b\xc7\xb3\xa0\x1a\x19\x9d\x5a\x3b\xee\x1a\x00\xc4\x70\xc6\x8c\x4c\xfe\xbd\xd5\x06\xfc\x61\x72\xd4\x9c\x74\x6b\xc0\xce\x5c\xa9\x9f\x73\xe3\x68\x70\x74\x9c\x1e\x79\xec\xea\xea\x63\x1f\x7c\x7b\xfd\xd7\xef\xdb\xc9\x3f\xbb\x3e\x4b\x3e\x9d\x58\x73\x2f\x88\x12\xc9\xc0\xca\x36\xa1\x3a\x63\x6a\xfa\x99\xfa\x1b\x39\x2f\x04\x14\xf4\x3e\x39\x80\x88\x92\xc4\xd1\x46\x56\xd2\x83\xab\x73\xf3\xe8\x91\x71\xb6\xb9\x36\x33\x7b\xb7\x56\x8a\xdd\x59\x6a\x0b\x57\x25\x71\x35\xcd\xdc\xfb\x52\x75\x21\x6c\xd1\xee\x9b\x6f\xbe\x89\xf1\x78\x1c\x8c\x1c\x2c\x7a\x2f\xe4\x94\x4d\x4c\xfe\x79\x9d\xf8\x78\x4d\xbe\x81\x7e\x06\xa6\xc7\x8b\x48\xbc\x64\x27\xa7\x5b\x95\xe5\xae\x23\xff\x7d\x88\x35\x82\x65\x8a\x38\xd6\x80\x62\xca\x38\x18\x2e\x7c\xcb\x6f\x7d\x08\x9d\x17\x34\xbe\x3f\x3e\x07\x90\x4c\x33\x6b\x4f\xee\x0e\xee\x5f\x9f\x26\x27\x92\xfa\x24\x5d\x6f\xe1\x7a\x8b\x37\x78\x46\x98\xfa\x68\x84\xca\x05\x03\xc4\x87\x3a\x65\x63\xe8\x54\x34\x35\x8b\x69\xc3\xfa\x98\xda\x5b\xe2\x5c\xcb\xe8\x69\xa9\x29\x62\xcb\x77\xeb\x85\x30\x7e\x77\x92\x6b\x80\xda\xf9\x57\xa8\xb2\xc4\x52\x46\xc0\x68\x94\x97\x6f\xde\x1a\x96\x3b\xa0\x6a\xee\xb3\x4e\x64\x2b\x43\xdc\xf9\x5f\x22\x22\xb7\xb6\xb6\x46\xaf\xbf\xfe\xba\xa6\x80\x63\xa3\x2c\xa9\x24\x34\x0f\x83\x06\xab\x05\x39\x3a\x94\xdf\xba\x3a\x06\xa9\x08\xbb\x46\x6c\x12\xff\x32\x7a\xfb\x94\xd9\x87\x2e\xb8\xae\x8e\x33\x56\x2e\x4f\x6f\x4c\x91\x77\xf1\x3f\xd6\xa8\x25\x8d\x31\xe3\xa4\xcb\x20\x88\xf1\x57\x83\xd1\xd2\xca\x0e\x47\x3e\x73\xfa\xb4\xce\x28\x36\x97\x2d\x8d\x30\xe9\x09\x90\x3a\x86\x07\x3e\x02\xd4\x14\x6b\x97\x57\x41\xa3\x45\xa3\x5f\x7b\x96\x65\xd1\x8c\x15\xad\x23\x91\xf9\x73\x3e\x6b\x9d\x4d\xac\x63\x97\xc6\x4d\x4c\x86\x39\x8d\xe8\x80\xd7\xa6\xf1\x48\x7c\x93\xf1\xb2\x2e\x62\x32\xed\x04\x8c\x8c\xef\x6a\x8f\x31\x3c\xbc\x6c\x2a\x9d\x1f\xfb\xd8\xc7\xe8\xb7\x7e\xeb\xb7\xbc\x47\x5f\x1a\x2d\x7e\x59\x42\xee\x9c\x1b\x10\x68\x70\x6c\x94\x1d\x79\xff\x95\xb5\x8f\x3e\xf6\xce\xea\xef\x1e\x19\x67\xbf\x33\x28\xcc\x7b\x89\x28\x0b\x85\xf5\x03\x54\x34\xfd\x4d\x50\xf3\x68\xbc\xf5\x61\x62\x27\x0c\x4e\xd1\xd4\x20\x7b\x26\x90\x31\x0e\x87\xf2\xd2\xbc\xfb\xd0\x24\xbd\xef\xf0\x34\xdd\xb9\xb9\x5a\xdc\x9c\x64\x76\x5e\x75\x57\x55\x87\xc3\x3c\x2e\xad\x69\x23\xe7\x1c\xfe\xf5\x5f\xff\xd5\xde\x7b\xef\xbd\xb4\xb7\xb7\x27\x3d\x8b\x40\x5b\xb6\xa4\x31\xa3\xb5\xff\x98\x4c\x71\xd9\x96\x6d\xa4\xab\xce\x24\x2e\xae\xff\xb4\xa9\xce\x2e\x1d\x65\x96\x19\x2e\x5d\xca\x5b\x0a\x49\x97\x40\x71\x7c\x31\xc1\xc5\xb9\x73\xe7\xdc\xb9\x73\xe7\xfc\xa1\x74\xb5\x11\x4b\x7c\xaf\x3b\x3f\xf8\x27\x01\x21\x9b\xa5\x8e\xd6\xa7\xc9\xf0\xe8\x38\xbd\x2f\x2f\xcd\x1a\x81\xc2\x5a\x17\xbe\x56\x85\x1b\x06\x41\x88\x00\xd4\xf3\x42\x68\xac\x9a\x60\x8e\x08\x8f\x89\xb0\xa6\x9b\x37\x86\xaf\x99\x8e\xaa\xd2\x7b\x97\x61\x28\x4c\xa0\x89\xd7\x7e\x2b\x2e\xd8\x4b\x04\xe3\x30\x48\xad\x49\x0a\xe3\x6e\x5c\x3e\x34\x7b\xcb\x1a\xcc\x6b\x5e\x17\x75\x52\xbf\x3d\x3a\x78\x5d\xfe\xe6\x6f\xfe\x46\x9b\xa6\xd3\x7e\xfd\xb3\x26\x70\x5a\x87\x20\x47\x59\x5a\xe0\x4a\x5a\xfb\xd6\x95\x47\xd7\xfb\x41\x60\x25\x2d\x1a\xae\x2e\xdc\x07\x81\xeb\xc3\xbb\x65\xb8\xba\x70\x68\x65\xe8\x2a\x4b\x8c\xbe\x3e\x78\x62\xe9\xba\x7e\xfb\xe0\x91\x0a\x71\x99\xcc\x69\x38\x64\xba\x58\xa7\x25\xe7\xf0\x97\x75\xa6\x9a\x52\x96\xbf\xb2\x23\xd4\x8c\x2e\x8d\x56\x6e\xb8\x1c\x94\x3e\x0e\xa3\x19\xc2\x92\x7f\x5d\x46\xb1\xe6\xd1\x88\x19\xa0\x92\x26\x49\xab\x66\x7c\x6a\xf1\xb2\xce\x24\x9f\x20\x70\xc8\xb2\xc5\xca\xac\x19\xcc\x1c\x56\xed\x6c\x7f\xf9\x97\x7f\x99\xbe\xfb\xdd\xef\xda\x33\x67\xce\xf8\xed\xcd\x7c\x07\x11\xa1\xf6\xb2\x00\x18\x12\xd1\xe0\xd4\x4e\x7e\xfc\x89\xb7\xd7\x7f\xe9\xd1\x6b\x2b\xbf\xbf\x31\x4b\x7f\x29\x71\x74\x34\x8c\x55\xdb\x23\xdc\x66\x00\x4a\x5e\x6b\x37\x7d\x85\x27\x9a\x1a\x45\xdf\xfe\x05\xf8\x18\x18\x44\x04\xe3\x28\xcb\xad\x79\x70\x6d\x96\x3c\x74\x74\x94\xcd\xf6\x07\xe5\xcd\x51\x6e\xa7\x25\x39\xcb\x8d\x16\x00\xc1\xf3\x42\x55\x70\xe7\xce\x9d\x73\x7b\x7b\x7b\x1a\xef\xf9\x33\x18\x0f\xb5\xf6\xd4\x65\x64\xf0\x62\x49\xd9\xe8\x92\x53\x29\x33\x5d\x30\x9a\x6e\x58\x68\x67\x9a\xe1\x22\x85\xba\x4b\xe1\x70\xa1\xed\x52\xa0\x5d\x23\xa4\x05\x81\xf6\xf7\x17\x89\x3f\x2f\x68\xe1\x50\xba\xfa\x39\x2f\x8c\xc3\xf1\xfd\xfc\xbe\xf5\x59\x72\x2c\x71\x94\x11\xdf\x0b\xcd\x88\x6d\xc7\xb0\x48\x6a\xef\x20\x92\x70\xed\x96\xe9\x1a\x69\x0c\x6b\x65\x1a\x83\x84\xa7\x0a\xa2\xec\x42\x36\x21\x48\xa3\x85\x67\xc6\xe0\x92\xc4\x51\x6e\x1c\xca\x79\xe2\xde\xba\xb6\x3e\xdf\x46\x7d\x0d\x40\x4d\x8e\x3f\x94\x2e\x5c\x09\x20\xce\x75\x59\x16\x34\x6b\x59\x0b\x5d\x1d\xc6\xff\x0e\x3f\xbf\xa0\x29\x83\xff\xd9\x82\xec\x58\xfa\xe8\x09\x19\x62\xe9\x62\xb8\xbb\x3a\x52\x08\x5c\xb1\x81\x19\x18\x6c\x0c\x5e\xa3\x49\x1a\x3d\xcb\x8c\x3d\x1e\xb4\xf2\xc8\x4e\x45\xa3\x35\x56\xf6\x18\xdd\x7c\xdc\xbf\xac\x6d\xf7\x29\x83\xf6\xbc\xac\x3e\xba\xe2\x63\x65\x3e\x48\x19\x42\xfc\xc3\x0f\x3f\x4c\xbf\xf1\x1b\xbf\xc1\xc6\xa0\x0b\x47\xf3\xe7\xce\xb9\x21\x11\xe5\x0f\x6c\x0f\x4e\x7c\xe0\xf2\xfa\xa7\x1f\xdc\x1e\x7e\x6e\x6d\x9e\x7c\xd4\x38\x1c\x0a\x03\xe1\x70\xd6\x86\xff\xf1\x1a\xbe\xf1\xaa\xb7\xb4\x79\x5b\x97\x2b\x16\xa6\x38\x96\x03\xc1\x90\xa1\xc4\xe2\x9e\x61\x61\x4e\xad\xcf\xd2\xd9\xee\xb0\xbc\x36\x1a\x94\x13\x57\x79\xdc\xf9\x8c\x04\xf7\xc0\xb8\xd3\xa7\x4f\xd3\xb3\xcf\x3e\xeb\x1e\x7a\xe8\x21\xba\x75\xeb\x56\x8c\x67\x9a\xa7\x94\x87\x18\x3f\x35\xf8\x83\xc0\x4a\xf8\xa8\x37\x05\xba\x41\xda\xc2\xd7\xb5\xab\x48\x0a\x63\x8c\x98\x3e\x8a\x35\xa6\x18\x78\x7c\x20\xae\x36\x5c\x02\xd1\xec\x34\x41\x6e\x21\xfb\xf9\xc8\x74\x9a\x59\xda\x1c\xa7\x87\x37\x27\xd9\xbd\x79\x49\x6b\x04\xe6\x43\x43\x63\xf9\x48\x82\xe4\xd4\x11\x18\x3c\xc4\x1b\x01\x7e\x4e\x32\x78\x70\x48\x91\x4a\x9e\xa2\xf1\xf8\x08\x62\xd8\x23\xdf\x16\x1d\x60\xfd\x33\x08\xe4\x90\xa5\x8e\x32\x10\xed\x6f\x0f\x8b\x37\x46\x59\x39\x23\xa2\xb2\x36\x56\x2c\x98\xd7\xc5\x53\xc2\x8c\x97\x98\x61\x12\x1b\x15\x22\x92\x46\x0a\x93\x26\x5c\x5d\x2e\x6a\x4d\x76\xa4\x9b\xd9\x88\xe7\x58\xfe\xcb\xf0\x2e\xa3\xb9\x2b\x68\xf9\xc4\x68\x5f\x56\xee\x58\x19\x34\xba\xfb\x74\x48\x77\xca\xd3\x58\x59\xbb\xca\x10\x4b\xd3\x25\x23\x12\x3e\xe6\x91\xd0\x78\xa5\x29\x2f\x3e\x4e\x95\x79\x72\x18\x39\xfd\xa2\x79\x69\x34\x1e\x82\xc5\x69\x32\xdd\x05\xbf\x4c\x4e\x39\x4d\x1a\xfd\x92\x07\x92\x6e\xcd\x7b\x01\x01\xcb\x3b\x23\x40\xc7\x2f\x3b\x2c\x0f\xb7\xac\x4d\x69\xe5\x95\xcf\x31\x59\xe3\xdf\xba\xe8\xd6\xea\x8c\xd3\x11\xe3\x27\x04\x6e\x59\x66\x0b\x00\x9f\xfa\xd4\xa7\xcc\xa3\x8f\x3e\x8a\x24\x49\xbc\xf7\xde\x00\xad\xdd\x43\x39\x11\xe5\x44\x34\x38\x3c\x4a\x36\x3f\x70\x65\xed\x53\x0f\xdd\x1c\xfc\xf6\xfa\x2c\xfd\x90\x71\x38\x1c\x74\x79\x5d\x1a\x57\xe9\xe4\x9a\x02\xdf\x67\x50\xab\xb0\x41\x85\x8b\x01\xb4\x14\xe4\xca\x44\xa9\x0b\xe2\x8d\x21\xe7\x8d\x17\x32\x89\xa5\xc3\x83\xd2\x1c\xce\x4b\x33\xda\x1b\x94\xd7\xf7\x06\xe5\x18\x00\x5f\xe3\x02\xbf\x5c\xa0\x7a\x24\x77\xfa\xf4\x69\x3a\x79\xf2\x24\xc6\xe3\x31\xdd\xbc\x79\x93\x77\x7f\x5d\xf5\xa0\xb5\x35\x29\x47\x50\x60\x97\x4d\x15\xc9\x3a\xe1\xdf\x62\xf6\x85\x7f\xe6\xf9\xc9\xf6\xd8\x9c\x9b\xa2\x10\x29\xdf\x6d\xe4\x9b\x81\x9e\x5e\xc6\x7b\x1c\x32\x9d\x67\xa2\x4d\x92\xc4\x68\x87\xeb\x50\xfb\x00\x36\x8b\xe6\x3c\x93\x19\x80\x59\x69\x30\xba\x74\x68\xf6\xc6\xad\x61\x71\xb5\x20\x37\xe3\xe2\x52\x19\x07\x6d\x22\xda\xe2\x54\xbd\x78\x98\x76\x0d\xb4\xcd\x1d\x57\x1b\x26\xfe\x1e\xa2\xf0\x0b\x17\x40\x83\xfd\xcb\xf0\x78\xdc\x8e\x14\xcc\xdc\x68\xe1\x89\x9a\xb8\x74\x50\x98\x93\xf7\xee\x66\x67\xde\x7d\x7d\xe5\xfd\x06\x94\x03\xc8\xa9\x3e\x5f\x80\xfd\x69\x75\xe1\xf9\x26\x83\xed\xf8\x1e\x8b\xeb\xfa\xd5\x9e\xe5\xbb\x26\x0b\x1c\x4e\x3e\xf7\xa5\x57\x06\x2e\xaf\x31\x5a\x35\xd9\x8c\xe5\xd3\xc5\x3f\xed\x79\x59\x19\x62\x38\x0f\x82\xbb\x8b\xae\x18\x4f\x7d\x90\xfc\x59\x46\x9b\x94\xa7\x18\xde\x18\x3d\x31\x1d\x20\xf1\x49\xda\x82\x5e\xe8\xc8\x53\x83\xe1\xf1\x1c\xa7\x84\xd5\xf2\xd7\x70\x2c\x83\x97\x74\x73\x5a\xbb\xe8\xd3\xf2\x95\x74\x6b\x71\x12\x96\xf3\x78\x59\x1b\xd3\x68\xe7\xf8\xb4\xe7\xae\xf4\x5a\xfd\x68\xf2\xc2\xf5\xbc\xa4\x5b\x3e\x23\xf2\xac\xf1\xd3\x7f\x87\x06\xfb\xa9\x4f\x7d\xca\x7c\xfb\xdb\xdf\xb6\x79\x9e\xcb\xcd\x16\xde\x80\x49\x89\x2a\x7d\x9a\x58\xac\x3e\x7a\x7d\xf5\xfd\xa7\xb6\x07\xbf\xb2\x3a\x4b\x3e\x68\x1c\x0e\x55\xde\x72\x62\xfd\x43\xb3\x34\x40\xf6\xcc\x8e\x3d\xb5\x76\x90\x2a\x81\xf7\xdc\xfe\xb4\x17\x6f\x02\xb5\xcf\x45\xa5\x7c\x38\x37\xef\xbb\xff\xd6\xe0\xd7\x7f\xe1\x9d\xd5\x33\xc7\xf6\xb2\x63\xa8\xce\x35\xcb\xa9\xbe\xbf\x8f\xed\x86\xf2\xe5\xc2\xfa\xfa\x3a\xd8\xd9\x2e\x9c\x5f\x5d\xf2\x63\xb1\x58\xdf\x9a\x1c\x74\xd5\x1f\x44\x3a\x60\x11\x37\x8f\x97\x6d\xb3\x4b\xee\xc0\xde\xad\x76\xe4\xbf\xac\x13\x69\xb1\x49\x2b\xde\xa1\x6d\x89\x81\xc1\xc6\x46\x6e\x4e\xfc\x55\x91\xce\xb9\x73\xe7\xce\xb9\x3f\xf9\x93\x3f\x31\xc6\x18\x9e\xb7\x7f\xe6\x9d\xb3\xf7\xba\x64\x00\xb2\x59\x6a\xdd\xd1\x71\x76\xf4\xd0\x34\x3d\x9e\x97\xb4\xc2\x96\xe2\x82\x14\xf9\xe1\x51\xae\x86\x09\x06\x8d\x43\x6b\x11\x15\x29\xe9\xd8\xb6\xed\x1a\xbe\x59\xcb\xe2\x17\x6e\xf9\xbc\x7d\xfe\xad\x6d\xd3\x3c\x9f\xa6\xfc\x75\xbe\xdc\x0a\x22\x18\x87\x34\xb1\x66\x25\x71\x34\x1f\xe5\xf6\x8d\x5b\x2b\xc5\x2e\x10\xb6\x46\x3b\x34\xf5\xe0\x7f\xdd\xd6\xd6\x16\x7d\xe8\x43\x1f\xa2\xe7\x9f\x7f\x5e\xe3\xff\x41\x83\x66\x55\x1f\x34\x68\x23\xd4\xbe\x79\xc7\x46\xff\x9a\x12\xee\x83\x5f\xca\x66\x1f\xba\xe4\xe8\xf7\x6e\x86\xbb\x8d\xef\x4e\xf3\xea\xd2\x07\x32\x2c\xe3\x47\xcc\x2b\xa3\xf1\x9e\xc3\x52\x24\x9e\xa7\x89\xe9\x16\x39\xf2\x97\xb0\x46\xf9\xde\x45\x8b\xc4\x2f\x69\x5c\x56\x46\x99\x4f\x2c\x3e\x46\xb7\x56\xde\xae\x32\x6a\xb2\x1a\xa3\xab\x2b\x6f\x19\x0e\x02\x23\xcb\x7b\x10\x9e\x48\xcf\x40\x57\xfe\xd2\x63\x15\x60\xdf\x7c\xf3\x4d\x0b\x54\x1e\x7c\x31\x3d\x94\xa0\xb9\xff\x2e\x07\xb0\xf2\xee\xeb\xc3\x87\x1e\xbb\xba\xf6\x7f\xde\x33\xca\x3e\x99\x5b\x3a\x41\xa0\xc4\xf7\x0b\x00\x16\xfb\x10\xa1\xbb\xfd\x3b\xb9\xc6\xdf\xcf\x07\xc8\x0b\x83\x69\x56\xa4\xaa\xcf\xa9\x10\xb0\xe5\xb6\x7e\x19\x42\x96\x5a\x6c\xe4\xa5\xc1\x34\xb5\xd7\x6f\x0d\x8b\x6b\x45\xe2\xf8\xfd\x75\xa8\x07\xf6\x61\xbd\x0b\x00\xe7\xef\x35\x62\x7c\x8c\xb5\x0b\xf9\xbc\xac\x0d\xc4\xd2\xc5\x74\x46\x57\xdb\x90\x69\x63\xb0\x3c\x38\x60\xf1\x92\x45\x2d\x04\xb7\x1b\x1a\xe1\x90\x8d\xc8\x89\x6f\x1c\x96\xe3\x97\xae\x29\x35\xcf\x0f\x7f\xf8\xc3\x94\x24\x09\x77\x87\x01\x80\xdf\xe6\xc5\xdd\x7d\xe1\x0e\xa3\x22\x01\x0d\x0b\x33\x3c\x32\xce\x4e\xae\xce\xcd\x66\xe2\x2a\xc1\xe3\x85\x08\xcf\xae\x1d\x51\xc9\x89\xdf\x81\xd4\x08\xa4\x23\xb6\x1f\x3f\x08\x58\x95\xc2\x6f\x69\xab\xdf\x1a\x03\xc7\xa7\xf7\xef\xdc\x20\x42\x13\x57\xe1\x67\x5e\x96\x80\xaf\xb6\xf0\xfd\x62\xaf\x9a\x03\xc6\x21\x4b\x2d\x0d\x8d\xa3\x9b\xef\x6c\xcc\xdf\x9c\x25\x6e\xce\x3c\x51\xde\x5d\xe8\xd8\xc8\xc2\x19\x63\xc0\x04\x58\x53\x62\x9a\xab\xd0\x61\x51\xf1\xf9\x22\x48\x01\x27\x25\x0d\x0f\xd2\xe0\x89\x75\x40\xb1\xb4\x52\x71\xf3\x78\xc2\x22\x4d\xb1\xbc\x65\x7a\x4d\xa6\x63\x69\x24\x7c\x8c\x4e\x9e\x5e\x53\x04\xb1\x4e\xa4\x2f\xdd\x5d\xf8\xbb\xf2\xeb\xaa\x17\x8d\x77\x31\x99\xd0\xe8\xd6\x8c\xc7\x2e\x1e\x42\xc9\xb7\xab\x7e\x62\x74\x4a\xb9\x93\xf9\xf1\x67\x0d\x16\x2c\x8e\x7f\x8f\xb5\x0f\x4d\xce\xf9\x28\x51\x76\x9e\x5a\xba\x18\x9f\xad\x78\xe6\x65\x94\x38\x35\x79\x34\x1d\xf0\x1c\x37\x87\xe1\xf9\xcb\x7a\x90\xf5\xc4\xff\x64\x9e\x9a\x7c\x11\xc3\xd1\xc5\x43\x59\x5e\x8f\x57\x33\x6c\xba\xca\xec\xf3\x69\x95\xeb\xa3\x1f\xfd\x28\x7e\xed\xd7\x7e\x8d\x9e\x7c\xf2\xc9\x4a\xe5\x52\xb8\x03\xc8\xdf\xee\x9c\x11\xd1\xc0\x39\x37\x38\x3a\xce\x8e\x7e\xf0\xd2\xfa\x2f\xdf\xb7\x3b\xf8\xf5\x61\x61\x1e\xae\x0f\x91\x6b\x67\xc0\xfb\x05\x71\x96\x57\xd8\x51\x1a\xfa\x10\x6a\xd2\x2a\x78\x7c\xa9\x48\x41\xde\xf4\x3d\x8d\x27\xde\x38\x0c\xd2\x92\x06\x00\xc6\xfb\x03\x7b\xe5\xd6\x4a\xb1\x03\xa0\xf4\x07\xd2\xd5\xfd\x24\x9f\x42\x72\x5b\x5b\x5b\x54\xeb\x7e\xe9\xcd\xd0\xe4\xd4\x93\x28\xeb\x44\xd3\xf1\xbc\x5e\x62\x6d\x57\x7b\xd7\x64\xa6\x2b\x6d\xac\xdd\x01\x80\xf1\xc8\x34\xb7\xaa\xff\x8d\xb9\x45\x65\x58\xe6\x06\xe5\xcf\x9c\x71\x12\x9f\xf9\xd2\x97\xbe\x64\xa7\xd3\x69\x58\x4f\xe2\xd3\x51\x75\x52\xac\x3f\x45\xb6\xa0\xea\xee\xa2\xea\x0e\x23\xc2\xec\xea\xc6\xec\xad\xeb\x6b\xf3\x37\xa6\xa9\xdd\xa9\x8e\xf0\xf7\xb5\xe2\x9a\xff\x0e\xcd\x94\x0d\x6b\x22\xd4\x12\x9c\xea\x03\x9f\xc4\x09\xa0\xd4\xc0\x84\x29\x20\x86\xa8\xb9\xbc\xd1\x35\xcf\x1e\x2e\x62\x30\x79\x38\x57\xbf\xfb\xaf\x95\xe0\x7b\x5a\x90\x0f\x8b\xe4\x81\x53\x3b\x83\xff\xe3\xa1\x9b\xc3\x47\x52\x4b\xab\x70\xc8\x51\x4f\x15\xd5\x53\x47\x7c\x54\xc1\xaf\x49\x07\xe2\x2e\x62\xcd\xa5\x18\x73\xbd\x6b\x6e\xe2\x98\xfb\x5c\xe2\xd4\x82\x96\xb6\x8f\xfc\x68\xf9\xf3\xb4\x32\xef\x98\x7b\xbb\xeb\x9b\xc6\x17\x2d\x74\xf1\x44\xe2\xd1\xd2\x68\xf8\x62\x3c\x8d\xe1\xef\xca\xaf\xab\x5e\x62\x7c\x8f\xb9\xe5\x63\xae\xdb\x58\x5c\xcc\x0d\x1d\x2b\xbf\xcc\xb3\xcb\x65\x1c\x73\x5b\x1f\x84\x8e\x58\xe8\xaa\xfb\x2e\xf9\xe8\xca\x47\xea\xb9\x58\x19\x62\xf9\x20\x02\xdb\xc5\x23\xf9\x5d\xb6\x67\x1e\x62\xbc\x97\xcf\xda\xb7\x58\xd9\x34\xfa\x62\xe5\xd5\x68\x8a\xf1\xa7\xab\x1e\x2d\x00\xfb\xf8\xe3\x8f\xe3\xab\x5f\xfd\xaa\xe5\x3b\x88\xa8\x7d\x8c\x7f\x8e\x7a\xaa\xe8\xa1\x9b\x83\x87\x4e\xec\xe5\x9f\x1c\xce\xcd\x23\x04\x1a\xb6\x8d\x8d\x5a\xff\x12\xeb\x51\x5b\x6b\x12\x1b\x23\x85\x78\x42\x6a\xfa\x85\xaa\x87\x77\x7e\xcc\x5b\x7d\x26\x6e\x35\x2f\x6e\xed\x68\x7a\x1c\x07\x00\x26\x2b\xcd\xa9\x63\xfb\xd9\x47\x1e\xd8\x1e\xbc\x7f\x63\x92\x1c\x42\xb3\x5c\xc0\x4f\x15\x99\x60\x44\xb5\x75\x7f\xac\x8d\xc6\xda\xa5\xa6\x43\x65\xfb\xd2\xe4\x48\x3e\xcb\xbc\x63\xed\x44\xa6\x95\x74\xaa\xfa\x33\x76\x00\x5d\x6c\x84\xac\x8d\x1c\x64\x88\x59\x50\xfc\x1b\xb7\xd8\xa4\x55\x6e\x01\xe0\x7d\xef\x7b\x1f\x0d\x87\x43\x49\x03\x79\x58\xe6\x6d\x49\x50\x5f\x2d\x3e\x4b\x2c\x0d\xe7\xc9\xca\xe1\x49\x7a\x6c\x65\x6e\x0e\x1b\x54\x07\x05\x91\xa3\xe0\xdd\xe0\x37\x33\x4b\x23\xc2\x4b\x92\x6b\x62\x2a\xa2\xb8\xb5\xcd\xbe\x34\x6e\x44\x2e\xd5\x0e\x70\xb5\xc1\xc5\x4f\xe8\xad\x11\x35\xd7\x12\x78\x01\xae\x58\xc1\x85\x97\x98\xcb\xd0\xdf\x8b\x54\x2f\xd4\x4d\xd3\x92\xd6\x8d\xa3\xed\xeb\xeb\xf3\x8b\x93\xcc\x4e\x1c\xc1\x2f\xd4\x75\x7e\x67\x51\xcd\x43\xe7\x9c\x73\x67\xce\x9c\xd1\x76\x19\x69\x56\x71\xcc\xba\xd5\xe0\x65\x9d\xf5\xf1\x24\x40\x81\xd1\x2c\xee\xc0\x2d\x91\x8f\xe6\x01\x90\xf4\x68\xca\x38\x06\xdf\x05\x23\xf1\x76\x7d\x93\x3c\x58\x96\xaf\x36\x8a\x91\xcf\x5d\xf4\x74\x05\x59\x97\xb2\x5e\x63\xb0\x4e\x81\x89\x95\x6b\x59\xb9\x39\x2e\x3e\xca\x92\x65\xe0\x38\x20\x7e\x63\x23\x36\xf9\x8d\xd3\x69\xa1\xf3\xd6\x0a\x58\x59\xa7\x7c\x78\x11\xab\x0b\xa0\xad\x64\xbb\x78\xca\xe9\x90\x5e\x0c\x0d\x9e\xe7\x2d\x8d\x14\x9e\x8f\x43\xbb\x3e\x65\x79\x24\x1f\x62\x3c\xe7\x3a\xb7\xab\xd3\xd1\x46\xd8\x31\xb9\xe6\x65\x8b\xe9\x10\x9f\x87\x2c\x93\xa4\x29\xa6\xab\x62\x9d\x9b\x96\x8f\xfb\xe8\x47\x3f\x1a\xbc\x2d\x2c\x4f\xdf\x57\x64\x00\x72\x38\xac\xac\x14\x66\xe3\x43\x97\xd6\x7f\xe9\xd8\x7e\xf6\x9f\x32\x4b\xc7\x0c\xc8\xc0\x0f\x78\xa9\xd2\xcc\xd5\x23\xbf\x4e\x57\x17\x9e\x96\x97\xa6\x8e\xa8\x9e\x6b\xfd\x5e\x1f\xfc\xb2\xe0\xd9\xaf\xd3\x56\x9f\x6b\xe3\xc3\xd5\x53\x4d\x4c\xf7\x27\x8e\x32\x10\x46\xa3\xdc\x5e\xba\xbe\x3a\xbb\x05\xc0\xd6\x1b\x35\x4a\xaf\xff\xb9\x17\x86\x79\x5d\x38\xa9\x5c\x7e\x34\x99\x97\x32\x28\xe5\x40\xe2\x68\xf5\xdb\x22\x5e\xca\x2c\xcf\x4f\xca\x9b\xa4\x09\x22\x4d\x4b\x27\xf4\x39\xc7\x25\xa6\x2c\x97\x29\xd2\x2e\x23\x27\x66\x10\x85\x46\xf1\xf2\xcb\x2f\x3b\x71\x92\xae\x7f\xe6\xd6\x33\xd5\x2e\x3f\x03\x20\x71\x84\xc4\x11\x68\x63\x9a\x1e\x3d\x34\x4d\x8f\xd5\x6b\x5d\xc2\x94\x8f\x47\x14\x8e\xfc\xf7\xc2\xe3\x7f\x83\xe0\x91\xe0\x7e\xfb\xee\x23\xe9\x32\xf4\xae\x14\x7f\x10\x51\x15\xd5\x48\x3f\x5b\x6d\xc3\x9e\xbd\x81\xc3\x2c\x94\x00\xe3\x1a\xa1\xad\x8d\xa2\xfa\x9d\x8c\xc3\x4a\x66\x29\x2d\x8c\xbb\xb4\xbd\x52\xdc\x98\x27\x6e\x0a\x7d\x9d\x4b\x85\x8d\x9d\xac\x78\xfe\xfc\x79\x9a\x4e\xa7\x52\x49\x70\xc5\x1c\x53\x3e\x12\xde\x89\xbf\x58\xbd\x02\x8b\x72\xd2\xf5\xec\x05\x9a\xe3\x95\x8a\x56\x93\x1d\x8d\x66\x9e\x56\x83\xe7\xe5\x89\x8d\x3e\x63\xca\x52\xe2\x97\x0a\x80\xe7\x6b\xa0\x97\x87\x97\x89\x37\x7e\x49\xb3\xe4\x7b\x57\x90\xf5\xc2\x71\x76\xc1\xfa\xf7\xbe\xbc\x93\x7c\xd3\x64\x43\xc3\x21\x0d\x25\xa0\x5d\x66\x89\x53\xe3\x0d\xa7\x85\xc7\x73\xf9\x90\x9d\xb8\x26\x53\x9c\x26\xad\x4c\x92\x97\x52\x5e\x78\x9c\x66\x10\x70\x05\xec\xcb\xa1\xf1\x53\x2a\x7e\x74\xa4\x23\x16\x07\xb4\x3b\x0b\xce\x2b\x60\x11\x6f\xcc\xd0\xd3\xda\xb0\xec\xec\x24\x1f\x65\x19\xb4\x3a\x96\x86\x9e\xa4\x95\xa7\xef\x32\xee\x34\x23\x07\x1d\x69\x1c\x00\xbc\xf0\xc2\x0b\xbe\xff\x30\x40\xd8\x45\xe4\x0f\x30\xcd\x01\xe4\xc6\x61\xed\x81\x5b\x83\xfb\xde\xfb\xce\xea\x6f\xaf\xcd\xd2\x27\x0c\x68\xe0\x0d\x96\x4a\xed\x7a\xaf\x3d\xbb\xe3\xae\xce\xc2\xf7\x11\xfe\x72\x5e\x7e\x04\x87\x03\x10\xee\xc6\x03\x9a\xa9\xa4\x1a\x71\x38\xa9\x9d\x6f\xaf\xae\x4b\x10\x76\xb7\x12\x58\x5f\xe1\x0d\x18\xa4\x04\xb2\x93\xcc\x5e\xbe\xba\x31\x7f\xab\x4c\x16\x2e\x62\x74\x44\x64\xf9\xd9\x2e\xc7\x8f\x1f\xa7\xf3\xe7\xff\x3f\xea\xde\xf4\xd7\x92\xe3\xb8\x17\xfc\x45\x56\x9d\xed\xee\x7d\xbb\x9b\x6c\xee\xe2\x62\xd2\x8f\xd2\xc8\x52\x5f\x5a\x4f\x92\x21\xd9\xcf\xf6\xc8\x86\xfd\x2c\xf9\xbd\x07\x19\x82\x00\x1b\x82\x64\x12\x98\x7f\x89\x84\x30\xd6\x07\xc3\x02\x2c\x18\x32\x3c\x5f\x6c\x48\x98\x19\x8d\x25\x0c\x6c\x34\xb5\x90\x43\x89\x32\x29\x2e\xdd\x64\x93\xbd\xdd\xa5\xef\x72\x96\xaa\xcc\xf9\x50\x99\x59\x51\x71\x22\xab\xea\x36\x5b\xb2\x5f\xa2\x6f\x9f\xaa\xcc\xc8\x88\xc8\xcc\xc8\xc8\xc8\xc8\xa5\x5e\x4b\xf5\xb7\xc0\xae\x34\x32\x64\x3f\xd1\x74\x8a\xc4\x67\x14\x18\x99\x97\x7b\x73\x48\x81\xd7\x74\x83\x66\x18\x5b\x8e\x48\x06\xcd\xfa\x4a\xc1\xb5\xe1\x38\x4d\x68\x74\xb2\xc5\x62\xc1\xe3\x43\x1a\x5f\x2a\x2a\x20\x4e\x18\xed\x4d\x8a\x1b\xef\xad\xcf\xde\xbc\x3d\x2a\xae\x59\x42\x51\xd5\x02\x93\x00\xa0\xe9\x21\x41\x2d\xa4\x8d\xe3\x47\x0e\xf1\x3d\x58\xc8\x8d\xe0\xa2\x30\x79\x03\x03\xf1\x0b\xd1\x40\x90\x00\x79\x23\x2f\xc3\x5d\x8b\x7d\x34\xa9\x02\x9e\xda\x63\x53\x83\x32\x21\x36\xab\xf3\xec\xe9\x47\x76\xc7\x9f\xba\xf7\xf6\xf0\xfe\x61\x61\xd6\xc0\x96\x8c\xfc\xdf\xd2\x67\xda\x9d\x73\xd8\xdf\xdf\x97\xae\x3b\x59\xb7\x40\xb3\xdd\x53\xf0\x01\x4e\x06\x2d\x4e\x1b\xf8\x53\x41\x73\x3b\x4b\x3c\x46\xfc\xb6\xd1\x37\xec\x4f\xe6\xd5\xca\x28\xf9\xd0\x0c\x1a\x0d\xbf\xe4\x51\xe2\x4a\xf1\x99\x6a\x03\x0e\x67\xc5\xaf\x16\xba\xea\xac\x6f\xe8\x2a\x2f\x8f\x6b\xab\xb7\xd3\xd2\xe8\x92\x1b\x0d\x6f\x5f\x3a\x29\xb9\x09\x74\x35\x17\xb6\x46\x2b\x65\xdc\x6a\x41\xe2\xee\x92\x25\xcd\xc5\x9e\xaa\x4b\x89\x57\x93\x65\xee\xe2\xe7\x21\x15\xdf\x56\x66\x59\x37\x5a\x90\xfd\x4a\xd3\x1b\x1c\x4e\xbe\xb7\xf5\xc5\x54\xe0\x65\x59\xd2\x09\xcf\x3e\xfb\x6c\x83\x16\xd5\xb7\xe4\x56\x7f\x0e\xc3\xdc\xd2\xf8\x81\xbd\xf1\x63\xab\xf3\xec\xd7\x33\x87\x71\xbc\x09\x37\xe4\xf1\x8a\x97\x7b\xe9\xab\xbf\xda\x40\x09\xf6\x08\xe4\x18\x13\xb4\xba\x73\xb5\x95\xc0\x86\xe9\x2a\x4b\x3d\x99\xe6\x26\x67\x05\x5b\x6f\x40\x08\x79\xc9\xd1\x78\xbc\x30\xf7\x9f\x3b\x1a\x7c\xf8\xde\xdb\xc3\x7b\x50\x5f\x9c\x97\xa3\xda\x6c\x2c\xf5\x1d\x1e\x7a\xe8\x21\x5e\x5f\x3c\x70\x58\x29\x37\x29\x9d\x09\xf4\x6f\xab\xb6\x3e\x94\xd2\x77\x12\x4e\xd2\x89\x38\xdb\x3e\xb2\x98\x9a\x31\x86\x20\x67\x57\x1c\x07\xb7\x9c\xb4\xd9\xa3\xf6\x2c\x2d\x3d\xf3\xa3\x1f\xfd\xc8\x5e\xba\x74\xc9\x5d\xbc\x78\x31\x36\xab\x17\xc0\xb0\xd1\x2a\x5a\xd2\xce\xb9\x1c\x40\xe6\xc8\xe5\x8e\x88\xd6\xe6\xf9\xc6\xe6\x34\xbf\x67\x60\x69\x1c\xbf\x1d\xc4\x99\x8a\x56\xb5\x47\x5c\x99\xc6\xde\x23\xe3\x65\x8a\xef\xf2\xf6\x90\x54\x4b\x75\xe3\xd2\xba\x60\x82\x78\x34\x9e\x9e\xff\x74\x40\xa0\xc2\x2f\xb9\xa3\x7a\x19\x49\xba\x0d\xc3\x53\xbd\x64\x54\xe5\xf7\x66\x14\xa8\xba\x5d\x71\xc3\x38\xdc\xd8\x9b\x14\xd7\xa7\x03\x7b\x62\xc9\x95\xde\xf2\x0e\x5f\xd8\xe6\x96\xb5\x23\x22\x84\x0b\x8a\xb2\x2c\x33\x7e\x13\x97\xac\x77\x6e\xdd\x6a\x69\x9a\x35\xce\xdb\xb1\x8f\x57\x20\x04\xe9\x89\xd1\xbc\x3b\x1a\xdd\xd4\x0c\xd5\x2a\xf1\xdc\xa2\x97\x33\x70\x0d\xb7\x26\xff\x1c\x4e\x76\x36\x39\x73\xd1\xca\x17\xf2\x12\x7b\x6f\xeb\xb4\xda\x0c\x5e\xd2\xe2\x3c\x69\x75\xa1\xb5\x41\x5b\x59\x53\x79\xa4\x1c\xa4\x78\x97\x33\x5e\x59\x0e\x59\x7f\x7c\xf6\xce\xdb\x45\xcb\x6f\x45\xbc\x9c\xa9\x49\x38\x0d\x0f\x14\x38\xad\x3d\x39\x5f\xbc\x7e\xb5\xfc\xb2\x9d\x78\xfe\x54\x1e\x8d\x1f\xb0\x38\x6d\xc6\x2b\xfb\x26\xf7\x94\x48\x3a\xa9\x32\x49\x3c\x52\x66\x53\x78\xa4\x8c\xc8\x7e\x23\xeb\x47\xd6\x79\x08\x5a\x9b\x71\xfa\xdc\x30\xe7\x6d\x2a\xe1\x35\xfd\xd2\x68\x93\x95\x95\x15\xf3\x17\x7f\xf1\x17\xe4\x4f\xa5\x86\x09\x5c\xd8\x52\x10\x8e\x10\x8f\x32\x47\x93\xad\x93\xfc\xec\xd3\xd7\x56\x7f\x7b\xeb\x38\xff\x2d\x03\x1a\xf2\xbd\x2b\x21\xf0\x8f\xe7\x86\xe5\x9c\xe6\xc6\x5d\x9f\xe8\x15\x3f\x6f\x94\x2a\x39\x18\x30\x58\xf2\xa2\x34\x6a\x80\x8d\x45\xe1\xbe\xb0\x9a\x46\x3d\x56\x50\xb5\xb2\x30\x3f\x19\x94\x6f\xbf\xbb\x39\xbf\xea\xf5\x7c\x81\xea\xfb\x75\x56\xea\x7e\x22\x02\xdb\x2a\x20\xdb\x4c\x7a\x4b\x38\x57\xbc\xcd\x78\xfb\x70\x38\x52\xe0\x78\x9f\x06\x96\xe5\x52\xd3\x0b\x60\x30\x1a\x3e\xde\x57\x2c\x50\x6f\xce\x05\x4b\xe0\xef\x9a\x42\x08\x41\x9b\xc9\x74\xcd\x32\x52\x41\x9b\x61\x34\xf2\xf2\xcd\x46\x7e\x4f\x47\x70\x93\xcd\x9d\x73\x73\x22\xf2\x9b\x74\x69\xea\xbd\x2e\x6f\x1f\x8c\x8b\xf7\x2c\xc1\xba\x60\x00\x80\xd5\x12\x7f\x5f\xfa\x5a\xb4\x6b\xc0\x7a\x06\x96\x84\x2e\x1a\x2d\xce\x5b\xe4\x4c\x24\xb8\x91\x14\x3f\x05\xc0\x24\xbe\xb6\xda\x5d\xc3\xd2\x0e\xd6\x77\x6d\x10\x55\x11\x0d\x0d\x43\xc0\x68\x41\x0f\xdf\x7f\x30\xfa\x9d\x47\x77\xc7\x4f\xae\xce\xcd\x06\xf9\xfb\x5d\x50\x6f\xd4\x0d\x9b\x75\xe1\x7f\x0d\x11\xe1\xb9\xe7\x9e\x33\x65\x59\xa6\x2c\x5f\x39\xc3\xd2\xd2\xda\xe4\xa0\xcd\x1b\x23\xe3\xb5\xd9\x60\xea\xb9\xed\x9d\xc3\xa7\xe4\x4d\x96\xab\x0f\xdd\x54\xfe\xbe\x21\x35\xfb\x95\x75\x28\xeb\x44\x9b\x71\x68\xb4\xb5\xd9\x73\x57\x7f\x6d\xab\xe3\x54\x68\xab\xbb\xb6\x3c\xf2\xb7\xad\x6e\x35\x3a\x5a\x59\x52\x65\x68\x2b\x97\xf4\x06\x68\x70\x72\x36\xa9\xf1\xc3\x61\xdb\xda\xaf\x2d\xaf\x0c\x6d\xb2\xad\xcd\x74\xb5\xfa\xd1\x9e\x39\x6f\x5a\x1d\xa6\x64\x83\xe3\x69\xe3\xdd\x8a\x3f\x8e\x1f\xe2\x5d\xf2\x90\xaa\xf7\xd4\xd8\x61\x15\x38\x95\xde\x70\x38\x34\xc7\xc7\xc7\xf6\xeb\x5f\xff\xba\x75\xb5\xb7\x3c\xe8\xbe\xd0\x6e\x39\x11\xe5\x99\xa5\xe1\x99\xe3\xe1\xb9\xd5\x59\xf6\x58\xe6\x68\x25\xdc\x70\x0e\xa0\xf6\xae\xd7\xf3\x4d\x75\x2a\xee\xe2\x7f\x84\x7a\x2f\x8c\x1f\x69\x99\x8b\x9e\x7b\x72\x62\x2c\xbf\x38\x4c\x9a\x7e\x54\xe7\xab\x81\x62\xdc\x70\x54\xd0\xb9\x8d\x59\xf6\xc8\xc0\x62\x25\x94\xc9\x4f\xdc\x8d\x3f\x59\x14\xeb\xc4\x39\x87\xcf\x7d\xee\x73\x52\xbe\x53\xfd\x28\xa5\x9f\x53\xba\xab\x0d\x4e\x83\x49\xb5\xf7\x69\x64\x0e\x40\x73\xa9\xa8\xab\x30\x5a\xa7\xe8\x53\x88\x54\x68\xab\xac\x18\xf7\xfb\xbf\xff\xfb\x61\x87\x34\xbf\x29\x36\xfc\x36\x4e\x17\x01\x98\x02\x98\x16\xc6\x1d\x5f\x5b\x5b\xbc\xf5\xee\xc6\xfc\x17\xb3\xdc\x1e\x00\x10\x56\x08\x9a\xc2\x22\x43\x63\x71\xb1\x09\xce\xb3\xd4\x72\x55\xed\x19\x27\x01\x27\x49\x68\xa4\x34\xd6\x64\x22\x77\x19\x44\x78\x22\xac\x4d\xb3\x8f\x3d\x76\x63\xf2\x7b\x0f\xed\x8d\x9f\x98\x2c\xcc\x1a\x2a\xc3\x85\x2f\x1b\x35\xda\xc8\xbb\x12\xef\x24\xa4\x94\x3f\x0f\x7d\x0d\x80\xff\x48\xe1\xdf\x8b\x9f\xb6\xba\xfa\x20\x3c\x9d\xa6\xff\xfd\x7b\x04\xcd\x40\x48\x85\xd3\xf2\x9f\x92\xed\x94\xf1\xc1\x9f\xbb\x68\x69\x8a\x5f\xe2\x97\xb0\x9a\x81\x93\x1a\xe4\xef\x24\xdc\x8d\xf6\xed\x53\x0f\x6d\xfa\xbf\x0f\x3f\xd2\xf0\x48\x85\x3e\x69\x7d\xf5\x8f\x16\xc2\x4d\xb9\x39\x80\xdc\x38\x8c\xd7\x67\xd9\xf6\xa0\x30\x17\x00\x54\x4e\x93\xa0\xeb\x99\xa2\xf5\x8e\xf7\x60\x9f\xc4\xc0\xb6\x24\xfa\x34\xd7\x98\x5c\xf2\x49\x2d\x98\xa7\x25\xa2\x68\x4c\x4c\x11\x3d\x3a\x3c\xf0\x0b\x4b\x2b\x10\x07\x72\xc8\x87\xa5\x39\xb7\x31\xcd\x1f\xbe\xf7\xf6\x68\xdb\x39\x17\x2e\x24\x0d\xf2\xc6\xff\x00\x00\xff\xf4\x4f\xff\xd4\x57\xee\xba\xda\x38\xc0\x68\xa1\xab\xff\xf5\x8d\xd7\x60\x96\x70\xf7\x29\x48\x97\x92\xed\x33\xb3\xe0\x15\xd9\xa7\xb3\xc4\x0a\xfc\xce\x77\xbe\x13\xad\x67\x66\x49\x72\x2b\x2d\xec\x79\x99\x02\x98\x3a\xe7\xa6\x00\xa6\x07\xe3\x62\xef\xea\xc6\xec\xcd\xbd\x49\xf1\xae\x83\x6b\xd0\x70\x8e\x1b\x1d\x80\x13\x12\xa3\xb9\x0b\xb9\xb3\x95\x1b\x10\x95\x5c\x52\x5c\x26\x6a\x5a\x27\x95\x54\x37\xe1\xfd\x4c\xc0\xd5\x79\xb9\xf4\x86\x0d\x61\x9c\x38\xd5\x8f\x01\x0c\x54\x55\xd0\x78\xeb\x24\xff\xc4\xe3\x37\x26\x9f\xba\xf7\xf6\xf0\xc1\xac\xc4\x18\xcd\xbd\x2e\x0d\xcf\x0b\x2d\xf9\x29\x97\xda\x24\xf5\xdb\x26\xac\x9a\x01\xdb\x26\x57\x9a\x2c\x68\x38\x52\xf1\x7d\xbc\x84\x7d\xf3\xb4\xd1\xef\xe2\x27\x45\xbb\x8d\x1f\x49\xaf\x6d\xf6\xde\x95\xd6\x07\xbe\xab\x7f\xf7\x29\x43\x1f\x7e\xda\x78\xec\xc2\xd3\xc5\x57\xd7\x80\xca\x9f\x03\x6e\x8b\xe5\xfa\x95\xc6\xb7\x4c\x6b\x53\xbc\x9a\x17\xa4\x53\x77\xb5\xc0\xb6\x4d\x02\x65\x19\xd0\x03\x36\x55\x86\xb6\x89\xa8\xc6\x93\xa4\x21\xeb\xaa\xcb\x60\xe3\xf0\x6d\x06\x8b\xc4\x27\xdb\xaa\xcb\x08\xe2\x79\x23\xec\x7c\x3e\x17\x7a\xde\x85\xc9\x9a\x09\xbf\x61\xaf\x8b\x71\x34\x5e\x9b\x65\xe7\x87\x16\xdb\x01\x7e\x59\xef\x33\xaf\x09\x4f\x10\x33\xd4\xe8\x6b\x51\x66\xa6\x4b\xc6\x08\xd3\xe1\x8d\x65\x25\x12\xbf\x1e\xa6\x99\x54\xed\x7d\x34\x96\x86\x93\x45\x76\xcf\xe6\x49\x7e\xce\x6f\x34\x36\xc1\xe3\x12\x3e\x22\xe9\xcb\x0e\x60\x69\xbf\x4f\x97\x2e\xe7\x21\xd5\xef\x4e\x23\x0f\x29\xf8\x36\xbc\x9d\xfd\xb2\xed\x23\x8b\x5a\x7c\x6a\x7d\x32\xb5\xb6\x19\xe2\xe4\x5f\x48\xb3\x4a\x3e\x23\xe0\xf0\xe2\x8b\x2f\x3a\x7f\xfb\xa1\x5c\xef\x0c\xbf\x59\xf8\x25\xa2\x1c\xd5\xe9\x22\x03\x50\x36\x29\xb2\xd5\xed\x93\xfc\xbe\x81\x35\xa3\xc0\x74\xdc\xe4\x1d\x10\x88\x85\xc9\xa5\x85\x55\xf2\xb1\x62\x0d\x33\x1e\x2a\x42\x70\x16\x52\xf3\xd2\x5b\xa0\x71\x85\x73\x38\xda\xec\xd8\xd2\x54\xb0\xe4\xeb\x25\x25\x6a\xe4\x01\x5b\xc2\x92\x96\x3f\x81\x60\x1c\x56\x06\xa5\x19\x3b\x72\x7b\x47\xa3\xf2\xfa\xf1\xd0\x4e\x41\x51\xd9\x3a\xf6\x1b\x8a\xc6\xbf\x65\x24\xdb\x52\xfe\x36\xbc\x9b\x68\xae\x4b\x72\xc7\xa6\x14\xc8\x94\x73\x29\xf2\xa0\xd0\xd3\xf2\x68\xf1\x92\x1f\x0d\xbe\x6f\x9e\x36\xfa\x5d\xfc\xa4\x68\xb7\xf1\x23\xe9\x85\xbf\x25\x99\x4f\xbc\x6b\x7c\xb7\xc1\xcb\x3e\xaa\x95\xa7\xab\x0c\x7d\xf8\x69\xe3\x91\x87\x20\x2b\x29\x1a\xbc\x1e\xb4\x67\x49\x8b\xc3\x48\xdc\xb2\xee\xb5\x35\x7b\x99\x8f\xd3\xd1\x9e\x53\xf0\x92\x3f\x0e\x0b\x2c\xeb\x39\xa9\xc4\xa5\x8c\x70\x1e\x89\xe5\x4f\x95\x91\xc7\xb7\xf5\xbd\x90\x87\xe3\xec\x6a\xa7\x2e\x63\x42\x83\xe7\xc6\x0b\xa0\x97\x3d\xd5\x7e\x1a\x7c\x5b\xde\x98\x3e\x1c\x0e\x4d\x59\x96\xee\xb9\xe7\x9e\x33\x00\x40\x44\x19\x55\x67\x83\x8d\x3f\x02\x3d\x70\xce\x8d\x0c\x68\xbc\x3a\xcf\xce\x3c\x7a\x6b\xf2\x1b\xe7\x8e\x06\x9f\x30\xfe\xc2\xb9\xe6\x81\xe7\x30\xd1\xab\x3f\x96\xcb\x1b\x54\xbb\x22\xa3\x3e\xe4\xe1\x27\xa4\xd4\x1c\x23\x80\xfa\x39\x8c\x41\x71\x9f\x24\x6f\x85\x98\x6f\xc9\x94\xaa\x2e\xb7\x23\xd8\x45\xee\xf6\xf7\x26\xc5\xcf\xdf\xdd\x9c\x5f\x05\x30\x63\x5b\x27\xc2\x56\x8a\xf8\xe1\xdd\x17\x5e\x78\xc1\xd6\x98\x3b\xeb\xb5\x0d\x26\xa5\xb7\xda\xf0\xdd\x29\x7c\x8a\xa7\x98\x41\xbe\xa7\xdc\x33\xda\xcc\x23\xc4\xa7\x66\x04\x6d\xa1\x8f\x55\x6d\x80\xea\x43\x59\x4a\x1e\xcd\xeb\x12\x4f\x17\x39\x60\x7a\x38\x2a\x6f\xbd\xb7\x3e\x7f\x7b\x77\x52\x5c\xb1\xde\xeb\xb2\x54\x03\x3e\xb2\xf2\xaa\xb8\xf0\xca\x93\x20\x23\x6b\x37\x21\x87\x6f\x0a\x59\x40\xd7\xa4\xe7\xe1\xa9\xf6\xce\x68\xcb\x44\x92\x3e\xd7\x52\x4b\xf0\x8e\xcc\x64\x61\x3e\xf4\xc0\xfe\xe8\xd3\x0f\xed\x8d\x9f\x5e\x9d\x65\x1b\xf0\xdf\xb3\x40\xcb\xb7\x8c\x42\xe7\xee\x08\xa9\xf6\xfe\x8f\xbe\x24\xf1\xcb\x08\xa9\xfa\xd2\xfa\x50\xf8\xed\x53\xc7\xc0\x2f\xbf\x0e\xff\x3d\xdb\xa8\x6f\xbd\xb5\x85\xd4\x32\xcf\x69\x68\x9e\xb6\x0e\x4e\xbb\x9c\xa5\x79\x47\x52\x78\xfa\xb8\xdb\xef\xc6\x12\xa2\xd4\xcb\x7d\x61\x65\xe8\xf2\x78\xdd\x0d\xf9\xfa\xc0\x38\x84\xc7\x25\xe5\x95\xca\xc9\x61\x38\x28\x69\x3c\xac\xee\xc4\x1a\x57\x49\xda\x66\x80\x2a\x9e\x54\x0d\xcf\x21\xaa\x2c\xc1\xc0\xa9\xad\x12\x66\xb4\x30\xcf\x79\xc3\x83\xce\xd7\x90\xea\x1b\x53\x85\xa7\xc6\x79\x78\x0a\xa8\x4d\x66\xb1\x32\x2c\xcc\x46\x58\xfa\x42\xed\x4d\x92\xe5\x4f\xe9\xfa\xd3\x2e\xe1\x74\x2d\x37\x9d\x46\xa6\x4f\xab\x13\x96\x70\xa7\x2e\xa0\x93\xcf\x32\x68\xb3\x1f\x62\xbf\x96\xc5\x77\xcd\x62\x34\x5b\xa2\x31\x5b\xba\x7c\xf9\xb2\xbb\x74\xe9\x52\x38\x97\x4f\xec\xb3\xde\xa1\x79\x83\x2b\x90\x50\x37\x62\x66\xc9\x19\x90\xa3\xc9\x22\x5b\xd9\x3e\xce\x2f\x0c\xac\x19\x03\x4d\x46\x6b\x63\xc0\x79\xcf\x47\x74\xa1\x34\xd3\xc3\xf7\xc6\xc3\x7b\x80\x85\xb7\x9a\x7d\x62\xb0\xc4\xc3\x69\x20\xf5\x56\x44\x2f\xcd\x51\x66\x15\x8b\x24\xdc\x0f\xb0\xc4\x47\x80\x87\x8b\xc7\xa7\x09\x18\xe6\xd6\xac\x64\x8e\x8a\xe9\xc0\x5e\xdb\x1b\x2f\xf6\x9c\x41\xc9\x76\x98\x4b\xef\x0b\x01\xd5\x67\xd0\x9f\x7c\xf2\x49\x32\xc6\xd0\xfb\xef\xbf\xdf\xd6\xde\xc4\xfe\x52\x70\xd2\x23\x67\x44\x1e\x99\x1e\x60\xa4\x3c\x68\xbf\x5d\xb3\x80\x14\x3f\x1a\xee\x3e\x3c\x68\xcf\x6d\xca\x5b\x83\x73\x58\xae\x8b\x2e\xbe\xb5\x3a\xd3\xea\xb3\xab\x1d\x52\x74\xfa\xd4\x69\x8a\xa7\xb6\xbe\xac\xd1\x0e\xef\xdc\x5b\x00\x96\x2e\x71\x6a\x93\x26\x29\x3b\x24\xe2\x9d\x02\xcf\xe9\xa4\xca\xc9\xd3\xda\xf6\x4f\x70\xbe\x89\xc1\x6b\x1e\x16\xc9\x9f\x86\xbb\xad\x8f\x48\xcf\x8a\x56\x16\x39\x30\x6b\x75\x22\xeb\x53\x2b\x43\x78\xe6\x65\x91\x32\x2c\xdb\x4c\xf6\xcb\x54\xdf\x02\xd2\xed\x04\x2c\xd7\xbd\x26\xd7\x92\x8e\xd6\x56\x9c\x8e\x5b\x59\x59\x31\x8b\xc5\xc2\x3d\xfb\xec\xb3\xc6\xdf\x7f\x15\x4f\x9e\xa2\x9e\xbc\x0d\x89\x68\x64\x1c\xc6\xab\xf3\xec\xec\x43\xbb\xe3\xa7\xcf\x4c\x07\x4f\x03\x64\xea\x13\x9f\x4e\xf5\x76\x34\xaf\xfc\x6f\x3e\x57\xb6\x0a\x3b\x55\x1a\x32\x11\x83\x15\xf7\x80\xf1\x13\xa9\x11\xbe\xe1\x6a\xe7\x30\xd4\x80\x77\x80\x2b\x8c\x3b\xda\x5f\x29\x5e\x7b\x7b\x7b\xf6\x86\x83\x9b\xa3\xda\xeb\xb9\x70\xce\x95\xbe\x9e\xc2\xad\xc1\x00\xe0\x1e\x7c\xf0\x41\x7a\xf5\xd5\x57\xb5\xb6\x94\xb2\xc1\xe5\x48\x83\xe7\xb0\x56\xc1\x25\xdb\x0c\x0a\x5e\x0b\xbd\xbd\x39\x2c\x04\x9e\x06\x0e\x6d\x56\xd8\x77\x26\xa4\xc1\x69\xca\x27\x35\x3b\xe7\x6b\x94\x9a\xa5\xa8\xce\x60\xbc\x1b\x8c\xe3\xb0\xf0\x77\xba\xf8\xbf\x29\x11\x55\xfb\x5d\x08\xd3\xc3\x61\xb9\x77\x75\x63\xf6\xe6\xad\x95\xe2\x6d\x4b\x95\xd7\xa5\x61\x04\x84\x5f\x62\x26\x86\xf8\x8a\xb3\x93\xdd\x6e\xd9\x12\x89\x79\xe2\x17\xa4\x83\x20\x3b\x34\xaf\xf1\xa7\x3a\x4b\x44\x19\x3b\x41\xbd\x2e\x19\x0c\xa1\x06\x1f\x70\x0c\xbe\xbe\x57\x80\x40\x18\x94\x74\xee\xec\xd1\xe0\xe2\x87\x6e\x8d\xff\xf3\xbd\xb7\x87\x17\x00\x8c\xc3\x45\x4b\x50\x36\xeb\x86\xb5\xd0\x8d\x8d\x0d\xfc\xe4\x27\x3f\xe9\x3b\xbb\xd4\x14\x7b\x5b\x7a\x97\x77\x26\x25\x0f\xf2\xb7\x4b\x86\x52\xfc\x6a\xb8\x4f\x23\x9f\x46\x79\xbe\x53\xef\x53\x1f\x38\xee\x45\xd4\xf2\xc8\xf4\x14\x8e\xd0\xce\x7d\xea\xbb\x8d\x1f\x99\xde\x95\x47\xa3\x17\xf8\x48\xf1\xad\xe9\x81\xb6\xf2\xf3\x78\x23\xd2\xda\xea\x4f\xe6\xd3\xda\x4e\xf3\x96\x48\xd9\x49\x19\x38\x92\x6f\x4d\x7e\xb4\x78\x0d\x77\x4a\xf6\xbb\xf8\x93\xbf\x6d\xf8\x64\x59\x34\x59\xd7\xea\x27\x55\xa7\x6d\xf5\x2f\xf5\x7b\x5b\x79\xbb\xe0\x35\x5a\xe6\xf8\xf8\xd8\x02\x40\x58\x16\xe1\x03\x3d\x00\x90\xbf\x16\x3f\xe0\x24\x90\xa1\x4a\x27\x86\x74\x44\xcd\x4b\xf5\x29\xce\x78\xf8\x87\xe2\xa5\xfd\xcd\xab\x2b\xb8\x95\x82\x6a\x18\xa8\xc7\x0b\xd7\xb8\x72\x83\xdb\x2f\x15\x0d\x27\x06\x97\x3a\x38\x4f\x88\x9d\x8e\xe2\xc9\x15\xff\xd5\xfd\x5d\xf1\xeb\xd0\xe1\x4b\xd1\x0a\x3c\xfe\xfe\xef\xff\x3e\xd5\xf6\x5a\xfb\x41\x79\x36\x4a\x5a\x2a\xae\x4b\xee\x64\x90\x72\xd5\xa5\xf7\xac\x66\xc5\x6b\x48\xb9\x81\xa3\x09\x35\x27\xd2\xa5\xec\x25\x6e\x8d\x51\x15\xfe\xf2\xe5\xcb\x50\x8c\x16\x0b\x76\x29\x1d\xf8\x85\x74\x84\xe9\x3c\x73\x87\x37\x56\x17\x57\xdf\xd9\x9c\xbd\x76\x92\xdb\x3d\xc0\xdb\x18\x42\x5e\x1c\x6a\x19\x92\xc9\xd5\xbd\x2c\xe1\xc5\xa7\x31\x80\xca\xb8\xa1\xc6\x7b\x74\x2f\x52\x53\x88\x1c\x42\xa7\xf0\xff\x33\x9a\xa8\x2d\xe4\x4a\x60\x5d\xe0\x8b\x19\x33\x8c\x08\x37\x41\x09\x94\x4f\x16\xe6\xe1\xfb\x0e\x86\x9f\x7e\xfc\xe6\xe4\xe2\x99\xe3\x7c\x1b\xf5\x92\x51\xca\x78\x01\x00\x7c\xf1\x8b\x5f\xd4\x0c\xc7\x3e\xa1\x6b\x00\xed\x0b\x9b\x0a\xa7\xe1\xe5\xb4\xa1\x4b\xee\x25\x4c\x5b\xc7\x3b\x0d\xad\x5f\x45\x48\x19\x09\x6d\x7d\xf7\x83\xc0\xca\x3c\xa7\x09\x7d\xea\xfe\xb4\x78\xa4\x71\xa9\x4d\xd0\xba\x68\xf6\xe1\x4b\xd2\xb9\x9b\xe1\x34\xfd\xe7\xb4\x7c\x6b\x71\x7d\xe8\xa5\x78\xb8\x1b\xfd\xf4\xb4\xfa\xa2\xb5\xee\xbd\x1e\x95\x63\x57\x15\xe7\xf8\x09\x9c\xea\xa4\x25\x37\x54\xb8\x7e\xae\x8d\x14\xaa\x3e\x1d\xd3\xb8\x50\x8e\x5f\x45\x17\xe0\x1c\xf3\xa9\xd5\x1e\x15\xa7\x18\x28\x14\x8d\x24\x3e\x21\xf5\x46\x17\x37\x58\xe4\x65\x74\xbe\x1c\x1e\x5e\x2f\xa3\x1e\xb4\x3a\xeb\x63\x03\xf0\x90\x92\x99\x3e\xfa\xa2\x6b\xa2\xcb\xf3\xa7\x26\x07\x8d\x17\xcd\x4a\x92\x04\x52\x16\x37\x44\x7c\x6a\x46\xa1\x79\x76\x52\xcc\x69\xf4\xcc\x9b\x6f\xbe\x19\xbc\x12\xfc\xa4\x91\x05\x60\x9d\x73\xd1\x78\x71\xce\xc5\xe3\xd1\x96\xdc\xf4\x68\x54\xee\x5d\xd9\x9a\xbe\x79\x63\x75\xf1\x66\x49\xce\xf2\x63\x66\xb5\xd7\xa2\xe9\x05\x69\x08\x1b\x93\xc5\x70\xec\x99\x3b\x5e\x02\x89\xa1\x00\x00\x20\x00\x49\x44\x41\x54\x7c\xc3\xf5\xfe\x52\x34\x97\x64\x35\x7c\xab\xa2\x72\xc9\x54\x51\xc1\x02\xaf\x93\x25\x13\x88\xde\x15\xe9\xfa\x89\xde\x9c\xea\x24\x92\x71\xb4\xb2\x3e\xcb\x9e\x7c\x68\x77\xfc\xdb\x8f\xdf\x98\x3c\x3d\x99\xd7\x47\xa4\x9d\x73\x79\xf8\x03\x1a\x5f\xd8\xc6\xd6\xd6\x16\xa7\xda\x26\x8c\xad\xde\x30\x11\x34\x98\xbe\xf0\x29\x2f\x60\x5b\x07\xbd\x53\xdc\x80\x3e\xd3\xd3\xf2\xb5\x29\x84\x2e\xaf\x61\x2a\xbf\x06\xd3\x16\xa7\xe1\xeb\x53\x3f\x29\xba\x1a\x5c\x5b\x1d\xb7\xe5\x6b\x53\x36\x29\x99\x91\x86\x85\xf6\x2c\x67\x72\x92\x46\x4a\xd6\x78\x9a\x66\xc0\xb4\xd5\x77\x8a\xbe\x8c\x97\xbc\x48\x9e\x52\xa1\xab\x00\x24\x40\xdb\xbf\xcc\xa9\xf4\x10\x6c\x02\x4e\xe3\x45\xe2\x95\xfa\x38\x95\xaf\xeb\x39\xbc\x4b\x5e\x52\xe3\x04\x0f\x29\x79\xe8\x2a\xb3\x84\x35\x00\xcc\xe6\xe6\xa6\x01\xea\xfd\x1c\xc1\x7b\x1d\x3c\x2f\xce\x39\x13\xfe\x40\xce\x38\xc0\x58\x02\xf8\xfd\x2b\x14\x15\xbd\x8b\xaa\xb7\xf6\x95\xc3\x2f\x09\x35\xbf\x29\x17\xc7\x21\xf8\xb1\x81\xdf\x07\x16\x27\x9e\xa8\xbc\x27\x60\x06\x88\xbc\x51\x37\xd0\xf0\x78\x1b\xae\x7e\x6f\xbc\x44\x60\x82\xb5\xe4\x8a\xd2\xb8\xc2\xf1\x31\xab\xbe\xb3\xa6\x51\x7e\x00\xf8\xd2\x97\xbe\xc4\xdb\xa4\x6f\x3f\xe0\xcf\xa9\x3e\x70\x1a\xd9\xe8\xea\xeb\x10\x79\xb5\x78\x00\xcd\x0b\xe8\xb4\x01\xab\xaf\xe2\x93\xa1\x8f\xb5\xae\x0d\x16\x6d\x30\xf6\xa7\x3f\xfd\xa9\x7d\xe1\x85\x17\xf8\xda\x9d\xbc\xdb\x85\xdf\xeb\x32\xf5\x17\xd3\x4d\x0b\xe3\x8e\x6f\xae\x16\x57\xaf\x6c\xcd\x7e\x7e\x32\xb0\xb7\x00\x34\x56\xd1\x48\x1a\x18\xd1\x5b\x52\xdb\xd3\x8d\x4b\x89\x84\xa4\xb1\x5b\x0d\x63\x70\xde\x4d\x58\x1b\x17\xc1\xc2\x46\x74\x95\x70\xcb\x3e\x3c\x35\x84\x37\xe0\x0e\xab\x46\x72\x7d\x89\xaf\x6c\x79\x41\xcf\x2c\x6d\x6c\x4d\xf3\x8f\x3e\x7a\x6b\xf2\x5f\x1e\xde\x1d\x7f\x28\x2f\x69\x05\xd5\xda\xee\x90\x88\xe2\xe5\x74\x61\xa9\x28\xb8\x19\x7b\x6e\xe0\x3a\x8d\xd7\x41\x83\xed\xe3\x85\xd3\xdc\x8a\x9a\xcb\x91\xc7\xa7\x14\xa5\x11\x70\x32\x8f\x46\x5b\xca\x63\xc0\xcd\x69\x77\xd5\x55\x8a\xef\x36\x99\x57\x5d\xa2\x22\x2d\xe4\xed\x03\x27\x79\xd2\x78\xd4\xea\x47\xe2\x91\x79\x52\x38\xb4\x20\xf1\x18\xb4\xe3\xd5\xca\x25\xe1\xb9\xfc\x68\xf0\x32\x5e\x4e\x82\xb4\x7a\x4c\xf1\xdd\xc6\x8b\x66\x4c\xa5\x60\xb4\xd0\x85\x3b\x15\x17\x82\xa4\xab\x95\x47\xf2\x20\xeb\x42\x1a\x75\x5d\xf4\x0d\x74\x9c\xa9\x3a\x48\x95\x5b\x2b\x53\x8a\xbe\x2c\xb3\x2c\x9b\x05\x80\xfd\xfd\x7d\xfb\xec\xb3\xcf\x9a\xe7\x9f\x7f\xde\x02\x4d\xfd\x19\x7e\xc3\x9f\x03\xb0\xc8\x6c\xb1\xc8\xec\xd4\xc1\x15\xdc\x3c\x21\x84\x65\x1c\xa6\x77\x7d\xe0\x9e\xf8\xa6\x9e\xf6\xf9\x1c\xbb\x12\xc3\xcf\x44\xc3\x84\x38\x40\x2d\xe9\x77\x27\x3d\xf2\xd1\xd7\x23\x96\x7b\xc8\xff\x23\x38\xc0\x16\x99\x9b\x4e\x73\x3b\xc5\xb2\xf1\x10\xf0\x1b\x36\x4e\xe2\x9b\xdf\xfc\x66\x57\x3f\xee\xd2\x35\x52\xbe\xda\x64\x56\xca\x25\x3a\x70\x68\x32\xa3\xe9\xb6\x98\xd6\xd6\xa9\x24\xb0\xf6\xde\x15\xaf\x85\x3e\x56\xb4\x7c\x8e\x30\x1f\xfa\xd0\x87\x64\x5c\x28\x34\x5f\x2a\x2a\x00\xcc\xa3\x01\x43\x98\x4e\x07\xe5\xc1\xe5\xad\xe9\x2f\x6e\xac\xce\xdf\xac\xbe\x61\x14\x36\x61\x61\xc9\x5b\xb2\xbc\x85\xc5\x31\xe3\xa1\x86\xd0\xdd\x7f\xae\xbe\x49\xd7\x7b\x62\x1a\x97\x11\xc5\x10\x3e\x06\x10\x6f\x80\x59\xbe\x0e\x9a\x43\x37\x76\xa5\x3b\xc6\x23\xa1\x3e\xa6\x4d\x20\x90\xa9\xf6\xbb\xe4\x9f\xf8\xf5\x6b\x2b\xbf\x7d\xee\x70\x70\x0f\x1c\xc6\x70\x8d\x25\xa3\xf8\x89\x77\x8f\xbb\x31\x5b\x11\xe1\xb4\x06\x6a\x57\x38\xad\x6c\x9d\x06\x67\x57\xbc\xec\xac\x40\xb7\x3c\xa6\x06\x36\xf9\x7e\xa7\x46\x7e\x57\xb8\xd3\x7a\xd2\x66\xac\x92\x97\x0f\x52\xe7\x29\xa3\xa7\x8d\x9e\x8c\xeb\x33\x41\x92\xb4\xa4\xfc\xc8\xd9\x9c\x6c\xd7\x94\x91\x29\x65\x41\x33\x6c\xba\x78\xd2\xca\x2e\x79\xd0\xf8\xd2\x68\x4b\x1c\x5d\xb4\x65\x7e\xcd\x00\xe0\x30\x9a\x9e\xd5\xfa\x43\x1f\x9a\x1a\xfe\x3e\x38\x52\x38\xa5\x21\xd5\xa7\xbf\x2c\xc9\x31\x3b\xf6\xcb\x3d\x2d\xf1\x3d\xfc\x5a\x02\x66\xb9\x2b\x8e\x87\xf6\xb0\x34\x6e\x0a\x2c\x7b\xcb\x97\x36\xb9\x20\xd8\x22\xb5\xd7\x24\x2e\xe1\xb0\x5b\x70\xeb\xbd\x88\xc1\x53\xce\x26\xa6\xdc\x43\xef\x71\x35\xc6\x1e\x57\xd3\x68\xb0\xe1\x5c\x63\x6c\xb0\xe4\x8a\x69\x6e\x0f\x0e\xc6\xc5\x7e\x83\x65\x9e\x4f\x19\x9b\xbc\xd7\x25\x04\x4d\xe6\xba\x64\x86\xe7\xd3\x8c\xde\x14\xce\x3b\x91\x8b\x14\xaf\x46\x12\xd7\x98\x6b\x0b\xa7\x51\xa0\xfc\x39\xa5\xe4\x53\xd6\x7f\x23\x14\x45\x81\x60\x55\x33\x57\x58\xb4\xda\xfc\x92\xd1\xdc\x2f\x17\x4d\xe1\x97\x8c\x4a\xc2\xf1\xcd\xd5\xc5\xfb\x97\xcf\x4c\x5f\x39\x1a\x96\xb7\x1c\x60\xc3\xe8\xef\x1a\x86\x40\xf0\xca\xa5\x4c\x99\xda\x0b\xd3\xb0\x94\xf9\x9e\x17\x92\x0f\x01\x1e\xf5\xf2\x12\x88\xad\x91\x36\x3b\x4e\xc3\xc3\x13\xd3\x42\x27\x14\xde\x1e\xce\x55\x8d\x2c\x1f\x16\xe6\xfe\x7b\x6e\x0f\x7f\xf7\x37\xae\xae\x7d\x72\x5c\x34\x6f\xd5\x0d\x47\xe8\xbc\xf7\x25\x6e\xec\x02\x96\x8c\x17\x4d\x39\xb7\xb9\x05\x21\xd2\x34\x81\xd6\x9e\xdb\xe0\x34\x3c\x6d\x71\x29\x98\x54\x5a\x6a\x46\x77\x5a\xda\x1a\x0e\x39\xa8\x82\xbd\x4b\xf8\x3e\x83\x55\x8a\x5e\x1f\x1c\x92\x97\x54\xfb\xb5\xe1\xd3\x06\x4c\x8d\x1f\xfe\xac\xf5\x77\x6d\x96\xae\xf1\x01\x91\x9e\xa2\xa3\x19\x33\x32\x68\xe5\x4e\xb5\x77\x8a\x6f\xad\x0d\x53\x6d\x9b\x6a\x67\x0d\x5f\x17\x4e\xad\x2c\x29\xe3\x47\xf2\xdd\x55\x67\x3c\x4d\x93\x89\x94\x61\x04\x05\x9e\xa7\xb7\xb5\x9f\xac\x63\x59\x6e\xde\x56\x3c\x5f\xa7\x91\xf7\xec\xb3\xcf\x86\xef\x13\x35\x80\xb8\xe7\xc5\xc1\xd9\xd2\xb8\xe2\x78\x50\x1e\x2c\x8c\x3d\x06\x1a\x2b\xff\x88\xef\xfc\xf8\x50\x48\x27\x8a\x86\x85\xf3\x0a\xbd\xb1\x2f\x31\xd2\x0a\x4b\x50\x7c\xbc\x90\xe3\x06\xb1\xff\x19\x13\x6c\x73\x70\xf0\xb4\xd7\x4b\x52\x0e\xa5\xc1\xfc\x70\x54\xde\xb8\xb5\x52\xec\xa1\x1a\xf3\x2c\x50\xaf\x3e\x78\x1e\xac\x34\x5e\x98\xd7\x45\xd3\x49\x3c\x68\x7a\xb3\xcd\x88\xe9\xd3\x17\x38\x5c\x8a\x56\x97\x01\x1c\xf9\xee\xa3\x2c\xb5\x5f\x0d\x26\x05\x97\x9a\xd9\x48\xc1\x6c\x1b\x20\x63\xdc\x95\x2b\x57\xa2\xd1\xe2\x2f\xd9\xe1\xae\xa6\xf0\x89\x6f\xf9\x19\x80\x63\x10\xa6\x45\xe6\x8e\xdf\x3a\x33\x7d\xfd\xc6\xea\xe2\x17\x45\xe6\xe6\xcc\x29\xd7\xb0\x7a\x99\x4b\x4e\x0d\xf5\xde\x97\xda\x8a\x27\x72\xcd\x1b\x79\x3d\xb2\xb8\x1c\xe4\x9a\x31\x70\x95\xe0\xf3\x3d\x36\xce\xfb\x19\x2b\x61\x75\xc2\x46\x61\x47\xe3\x38\x9e\x60\xdf\x3b\x86\xbd\xe2\x7f\x38\x5e\x98\xc7\x1e\xdc\x1b\xfd\xf1\xc5\x2b\xeb\x1f\xc9\x2d\x85\xaf\x48\x0f\x83\xc1\xc2\xbf\x26\xaa\xdc\xaa\x0b\xe8\xca\xaa\xcf\x2c\x8d\xb7\x49\x0a\x27\x7f\x96\x0a\x4c\xa6\x49\x81\xb6\x4a\x1e\x49\x53\x7b\xd6\xd2\x52\xbc\x19\xb4\xd3\xd6\xf8\xd6\xca\xa0\xe5\xd7\x68\xf6\x31\x66\xb4\x01\x5a\xe3\x47\xd2\xd6\xf2\x6b\x83\x5f\x1b\x4f\x5a\x38\x4d\xfb\xa6\xe0\x8c\xf8\x6b\x33\x42\xb4\x01\x3a\xa5\x4b\x64\xba\xe4\xa7\x2d\xad\x4d\x11\xa7\x06\x71\x09\xaf\x95\x57\xa3\x29\xf9\x6d\x83\x4f\x19\x5d\x29\x19\x4c\xf5\x29\x8d\xf7\x90\x9e\x6a\x2b\x29\x6b\x29\xbe\x53\x21\xd5\x3e\x1a\x3f\x1a\x4c\xdb\xe0\x07\xa0\x32\x5a\xc2\x56\x02\x79\x1a\x87\xef\xf7\x00\x00\x4b\xce\x1e\x8e\xec\xed\x79\xee\x0e\x1a\x48\x1a\x13\x50\x36\xad\x74\xdc\xc0\x08\xbe\x72\xa0\x31\xa9\x65\xc7\x8d\xb8\xc3\x26\xdc\x86\x1e\xf5\x7c\xa0\xc3\xbc\x2d\x91\x2c\xb1\xf1\x21\xee\x83\x71\xdc\x00\xb2\xf3\xcc\x1e\x1e\x8c\xca\x1b\xfb\x93\xe2\x30\x5c\x36\x17\xca\xc8\x7f\x79\x3d\x7c\xe1\x0b\x5f\x48\x19\x08\x29\x9d\xc2\xdb\xa0\x2d\xad\xcb\x18\xed\x32\xe0\x53\x72\xd0\xa6\x33\x3a\x97\x8a\x34\xc2\x3c\xbe\x6d\xc6\xa0\x05\xad\xd2\x52\xf8\x25\x0f\x0d\x38\xee\x16\x14\xf8\xe4\x09\xa3\x69\xf8\x73\x84\xe3\x1b\x6b\xc5\xb5\x37\xb7\x4f\x5e\x39\x18\x95\xd7\x2c\xa1\x08\xa3\x7e\xc3\xea\x5d\x7e\x6c\xc6\xf9\x3d\x2d\xf1\x53\x01\xd1\x92\xae\x2d\xec\x00\x1b\x97\x83\xa4\xb5\x4d\xcc\x20\x69\xb8\x4f\xea\x65\x9f\x80\x57\x7a\x77\x1a\x3b\x6a\xc2\xfe\x1a\x6a\x60\x02\xc1\xc1\x80\x86\x2b\xf3\xec\x63\x4f\xdc\x98\xfc\xb7\xff\xf4\xfe\xca\x13\xc3\x92\xd6\xc0\x4e\x1a\x51\xf3\x63\x8c\xda\xec\x49\x86\xb6\x19\x5b\xdb\x20\xd7\x35\x00\xf6\x85\xb9\x1b\x79\xee\x36\xee\x2e\x63\xe8\x83\xd0\x4e\x0d\x3a\xa7\x8d\x6b\x8b\x3f\x0d\xdc\x07\xc5\x9d\xca\xab\x19\x52\x3c\xbd\xcb\x70\x96\x71\x9a\x31\x22\xd3\x4f\x53\x77\x29\xf8\x3e\xf9\x4e\x43\x53\xd3\xbb\x5d\x03\x4d\xdf\x70\x1a\x23\x4b\x83\xe9\x6b\xa0\xa4\x68\xa7\xda\x58\x96\x27\xa5\xd7\xef\x84\x7e\xc4\x19\x26\xb9\x61\xa0\x2f\xc9\x15\xb7\xc7\xc5\xc1\xc9\xd0\x5e\x03\xa0\x6c\x5e\xe1\x68\xea\x1b\xd1\x03\xac\x73\xd4\x30\x44\x1a\x1e\x7a\xb1\x37\x26\xde\xf1\xc5\x51\x8b\xc1\x25\xee\xb3\xe4\x87\x36\x62\x9e\x30\x16\x38\x58\x42\x71\x32\xb0\x7b\xfb\xe3\xc5\xb5\x45\xe6\xe6\x60\xf5\x23\x26\xf1\x8d\x3a\xf0\xc7\xa1\xfb\x8c\xf7\x3c\xae\xef\xc4\x29\x95\x2e\x9f\xdb\xfa\xc0\xa9\xe4\x5a\xbb\xf2\x9f\x87\x30\x6e\x1a\xf6\x2c\xd3\x42\x3a\x2f\x0c\xf7\xbc\x19\x05\x06\x2c\x4d\x63\x34\x45\xa7\x11\xfc\x85\x74\x00\xaa\x4b\xe9\x00\x10\x85\x1b\x77\xaa\xcd\xa7\x84\xca\xb3\x90\x11\x51\xe6\xcb\x3b\x98\x0d\xdc\x62\xeb\x24\xdf\x58\x9f\x65\xf7\xe4\x96\x46\xc1\x52\x96\x32\xcb\x3d\x21\x5c\xd8\xe4\xc2\x51\xb8\xaa\x3f\x64\x8a\xd7\xfe\xb3\x0b\xe4\xe0\x82\x71\xd1\xbc\x94\x8e\x5c\xd3\x95\xc8\xf1\x06\x84\xf2\xbb\xd5\xfc\x72\x3b\x9e\x40\x0d\xfe\xe2\xff\xd9\xb0\xa4\xf3\x2b\x8b\xcc\x9e\x0c\xed\xd5\xa3\x51\x79\x54\x1a\x58\x8f\x8a\xd7\x7d\x78\x77\x3b\x3b\x3b\xc4\x3e\x0b\x10\xd2\x0c\x7b\x06\x9a\xed\xca\x7f\xa1\x3c\x93\x02\xc3\x43\x4a\x66\xd0\xf1\xae\xd1\xd4\xd2\x52\xa1\x8d\xee\x9d\xe0\x4e\xe5\x97\x38\xa4\x67\xba\x4f\x1d\xa5\xe8\x68\xf1\xda\x6f\x6d\x47\xb7\xf3\x97\xc2\xd5\xc5\x43\x57\x7d\x11\x6a\x65\x48\x48\xd7\x85\x86\x9b\x12\x7f\x9c\x06\xc7\x23\xcb\x1a\x70\x12\x83\x25\x91\x4f\x6b\x9f\xa0\x9f\xf8\x3b\x44\x9a\x06\x2f\x07\x7b\x59\xf6\xb6\x7a\x90\x30\x9c\x5e\xaa\x7e\x79\x9d\x00\x7a\x39\xa5\x4e\x35\x0c\x96\xc4\xb3\x96\x4f\x96\x37\x95\x37\x3c\xf7\x29\x6f\x5b\xbc\x2c\x67\x0a\x27\x00\xd0\xe6\xe6\x26\xfd\xe0\x07\x3f\xb0\xfc\x02\x3a\x54\xe3\x02\xa1\xd2\xfb\xb9\x1f\x03\x06\x00\x86\x20\xca\x0b\xe3\x86\xdb\xc7\x83\xb3\xdb\x27\x83\x47\x8d\xc3\x70\xf9\xaa\xd0\xb4\xb0\xd4\x07\x7f\xc2\x49\x22\xaa\x01\x58\x45\x00\xa8\x27\xad\x00\xc4\xea\x53\x0d\xa7\x18\x4c\x4b\x17\xda\x81\xb0\xc8\xdd\xd1\xf5\xb5\xf9\xab\xbf\x38\x77\xf2\xa3\x83\x51\x71\x8b\x88\x4e\x9c\x73\x33\x7f\x77\xd9\xc2\x5f\xfb\x5f\x7a\x03\xcd\x85\x25\xa3\x17\x5f\x7c\x31\xa0\x0a\xf5\xd6\x57\x96\xb4\x7e\xda\x25\x03\x52\xe7\x68\xf8\xfa\xea\x42\x55\x4e\x34\x0b\xcc\x28\xbf\x21\xa3\x36\x2b\x97\xf0\x80\xde\x79\xfb\x58\x52\x6d\x33\x7f\x93\x78\x06\x10\x6f\x09\xe4\xd6\xe7\xd2\xd1\x68\xff\x77\x7c\x30\x2a\xf6\xde\xde\x9a\xbe\xb6\x3f\x29\xde\x2d\x8c\x9b\x4b\x71\x6d\xee\x6f\xa9\xad\xdf\x10\x1d\x2f\x22\x82\x6e\x6d\x03\x88\xae\xc1\xd8\xf3\x79\xb3\x35\x90\x57\x7f\xb5\x30\x3b\xee\x2d\x84\xec\x4c\xf5\x09\x22\x6f\xf0\xc4\xf5\x56\xb0\x25\xac\xc6\xa7\xcd\x91\x59\xda\xd8\x3e\x1e\xfc\xee\xd3\xef\xad\xfe\xaf\xf7\xed\x8f\x1e\x1e\x16\xd5\x49\x23\xb0\xcd\xba\xfe\xaf\x71\xcf\x8b\xd8\xef\xa2\x5a\xf2\xca\xaf\xf6\xdc\x65\x4d\xa7\x70\x77\xbd\xf7\xe5\x27\x15\xda\xe8\xde\x09\x6e\x39\x13\x91\xf5\xa7\xd1\x94\x71\x7d\xf9\xd6\xfa\x88\x15\xe9\x92\x66\x6a\xa6\xd4\x85\x2b\xc5\x83\xc6\x93\xa4\xcb\xe9\x9b\x96\x67\xce\x47\x9f\x59\x59\xaa\x7e\x53\xef\x32\x2e\xc5\xbf\xe4\xaf\x2b\xbf\x8c\x6b\x2b\xa3\xf6\x2c\xcb\x93\xa2\xdf\xa5\x53\x53\x32\xc4\xdb\x1c\xec\x59\x93\x0d\x0d\x87\x46\x53\x93\x65\x2d\x6f\xdf\x32\xa6\xe4\xa1\x6f\x5d\xd9\xfd\xfd\x7d\x7b\xee\xdc\x39\xf3\xc2\x0b\x2f\xd8\xc6\x45\x9e\xe2\xf4\x69\x78\x76\x80\x9d\xe5\xf6\xf8\xbd\xf5\xf9\xdb\xc7\x03\x7b\xc3\x01\xd6\x01\x4b\x57\x58\x34\xb4\xaf\x4f\xa3\x70\xd9\xa8\xb7\x42\xa2\xb5\x4c\x40\x38\x38\x11\x70\xf1\xc9\x64\x30\x78\xea\xed\x02\x72\xa4\x69\x86\xa6\xd1\x02\x38\x38\x3b\xcd\xcb\xbd\x9b\xab\x8b\x77\x6f\xae\x2c\xf6\xfc\x18\x17\xc6\xba\xe8\x4d\x0a\xdb\x28\x7c\xdc\xd2\x7e\x1f\x56\x97\xfc\x39\x25\x0f\x12\x1e\x4a\x5a\xaa\x6d\x24\x3e\x8d\xa6\xec\xff\xbd\xfa\x8b\x14\xe6\x94\xd2\x91\x0c\xa7\x14\xb2\xfc\xd5\x14\x22\xd0\xad\xa0\xda\x60\x0d\x00\x9b\x65\x99\x79\xfe\xf9\xe7\x6d\xd8\xa8\xab\xf0\x18\x8e\x46\xcb\xfd\x2e\x53\x6b\x70\xfc\xee\xd6\xec\xad\xab\x1b\xf3\xd7\x8e\x07\x76\xcf\xc2\xd9\xe6\x6e\xd8\xca\x44\x5e\x6a\x6e\x5a\x16\xec\x90\xe0\x98\xa1\x52\x09\x29\x3b\x89\xe4\x6a\x41\x8e\xe6\x37\x0b\xb5\x81\xe3\xb7\x09\x37\x8d\xf7\xc6\x5d\x01\x31\x6d\x09\x8d\x8b\x0c\xf2\x0f\x3d\x86\x93\x46\xc3\x82\x2e\xdc\x7b\x38\xfc\x9d\x5f\xbf\xb6\xf2\x5b\xf7\xde\x1e\x3e\x38\x28\x1b\xc6\x8b\x34\x60\x42\x3d\x47\xe3\xe5\x91\x47\x1e\x49\x19\x94\xbf\xac\xf0\xab\xa4\x75\xb7\x43\x9f\x3e\x70\xb7\x68\xdc\x49\x7a\x9b\x22\x92\xa1\x8d\x7f\xcd\xe0\x90\x65\xee\x53\x7e\x6d\xb0\x4c\xe5\x4b\x0d\xd6\x6d\x46\x8c\x96\xaf\x2f\x4f\x6d\xf1\x9a\x1e\xeb\x93\xaf\x0f\xfd\x3b\xe5\x29\x84\xb6\xc9\x62\x6a\x40\xea\xa2\x73\x5a\x18\xce\xcb\x9d\xe4\x93\xf0\x1a\x9e\x18\x77\x70\x50\x6d\x57\x09\xc6\x8a\x80\x0b\x46\x4b\xb5\x8d\x80\x50\x58\x83\xf9\xb5\xf5\xf9\xd5\xfd\xc9\xe2\x4a\x69\xaa\x3d\x8f\xb5\x5e\x95\x97\xbe\xd5\x69\x71\x63\x41\x58\xa6\x77\x68\xc0\xf2\xbb\xbe\x62\xbc\x13\x07\x40\x7c\xfa\x92\x3b\x4c\x19\x47\x42\x28\x8d\x9b\x1e\x8c\xcb\xf7\x6e\xae\x2e\xae\xcc\x72\x77\x8c\x6a\x62\xce\xb7\x46\x2c\xb5\xab\x30\x5a\x52\x75\x79\xda\xfe\xaa\xe1\x4b\x19\x26\x6d\x36\x40\x9b\x1d\xd0\x1a\xf8\x52\x91\x74\x27\x72\x02\xd2\xa5\x2a\x09\x69\x6e\x24\x8e\x4f\xe2\x4d\xd1\xb1\x2c\x3d\xd0\x95\x78\x2d\x00\x38\xe6\x52\xf0\x4b\x46\xce\xc7\x47\x37\x21\x82\xdd\xe0\x97\x8d\xfc\x6f\x06\x20\x5f\x18\x07\x00\x66\x7d\x9e\x6f\xae\x2e\xb2\xcd\xdc\xd1\x90\xfb\xf9\xa4\x91\x1a\x97\x78\x08\x71\x09\x08\xde\xa2\x0e\x5e\x90\x86\xcf\x8c\xfb\x07\xe1\xad\xde\xb0\xbc\x43\xb5\x8b\x31\x54\x5e\x30\x32\x80\xe6\x52\x52\xf4\xba\x70\x7a\xac\xd2\x6b\x1c\x1e\x7f\xdc\xf3\x22\x0b\x40\x26\x77\xb4\x3e\x2c\xcc\xc4\x38\x3a\x3a\x1e\x96\xbb\x27\x03\x3b\x75\x26\x2a\x7f\xe9\x4a\x8e\x6d\xbe\xb3\xb3\x43\x5b\x5b\x5b\x98\xcd\x66\xd8\xdd\xdd\xe5\x75\x9b\x9a\x30\x74\xb9\x02\xa5\x2b\x51\x83\xd5\x60\x78\x7e\xed\x59\xe2\x6b\xc3\x21\xe1\x52\xbc\xa5\x70\x4a\x9e\x35\x3a\x48\x94\x2f\x45\xbf\xab\x7c\x1a\xff\xa9\x20\xcb\x90\x72\x0d\x6b\xf9\x38\xac\x2c\x03\x4f\xb3\x09\x18\xb0\x67\xae\x2b\x38\x8e\x54\x9b\x84\x3e\xce\xd3\x35\xf9\x90\xe5\x03\xd2\x65\x6c\x93\x85\x36\x3a\x0d\x9d\xa3\xe4\x4f\xc9\x02\xaf\x3b\x8d\x0f\x40\xa7\xc3\xe1\xc3\xb3\x94\x43\x59\x5e\xc9\x93\x96\x2e\xcb\xa6\xc9\x69\xaa\x3f\x72\x3c\x72\xe0\x4b\xb5\x77\xaa\x2f\x4b\x1e\x90\xe0\x57\x96\x8d\xc7\x4b\x1e\x23\x4f\x59\x96\xd1\x57\xbf\xfa\x55\x62\xf7\x97\x18\xff\xbd\xa2\x86\xee\x47\x75\xb2\x72\x00\xd0\x70\x9e\x3b\xb3\x39\x1d\x6c\x6c\x9d\xe4\xf7\x0f\x4b\xb3\x4a\xf5\xdd\x12\x5e\xdf\x7a\xad\xec\xea\xcf\xb5\x34\xf4\x30\xd3\xfd\xce\x05\xbd\x5b\x1b\x34\xb5\xf1\xc1\x3e\xf7\x52\x0d\x00\xf1\x4e\x19\x5e\x01\x6c\x08\x8a\x1e\x9d\x80\xe3\x64\x60\x77\xdf\xd9\x9c\xbd\xf2\xc6\xf6\xf4\xe5\xe9\xd0\xee\x03\x38\x26\xa2\x23\xe7\xdc\x0c\xd5\x17\xa2\xc3\x52\x51\xe1\xc7\x47\x57\x15\x3d\x2e\x15\xf1\x76\xe6\x75\x19\xda\x4c\x8e\xf3\x5a\x3d\xf7\xd1\xa7\xa4\xe0\xd6\x9e\xb5\x7e\xd6\xf6\x1c\xe9\xc9\x3d\x2e\x5a\xc7\xe2\xc6\x44\xac\x53\x91\x4f\x1b\xf4\x52\x4a\x97\xbf\xf3\x02\xb7\x75\xfa\xc0\x87\xaa\xa8\x3f\xf6\xb1\x8f\x91\xa9\x56\xbd\xf8\xc7\x17\xa3\x4c\x84\xbd\x2e\x5e\x70\x0d\x00\xe3\x08\xd9\x74\x60\x8b\x71\x61\x46\xeb\xb3\xec\xcc\x78\x91\xad\x67\xd5\xf7\x2b\x82\x04\xd6\xbd\xc9\xa1\xf9\x1e\x04\x35\x1a\x24\xcd\x9e\x57\x0b\x71\xe0\x38\x5c\x66\xc4\x04\x95\x02\xa2\x7a\xcf\x78\x10\x7c\xe7\x11\x05\x38\x4f\x9e\x6f\x5a\x6f\x74\x98\x3a\x04\x3c\xda\x71\x40\x00\xa0\x7c\x60\x69\x73\x54\x98\x11\x08\x47\x27\xc3\xf2\xd6\xc9\xc0\xce\x1c\xd5\x6d\xcc\xf2\x36\x8c\x97\x95\x95\x15\x7c\xe7\x3b\xdf\xb1\x2c\xbe\x6d\xd0\xe4\x0a\x4b\xca\x82\x4c\x93\xef\xcd\x02\xe9\x46\x55\xea\x59\xe2\xd3\xe2\x25\x2d\x1e\x4f\x02\xbe\x0d\xa7\x86\x47\x2b\x43\x1b\xac\xa4\xdf\x55\x3e\xc9\x7f\x9b\x01\xc3\xeb\x4e\xc3\x93\x6a\x3f\x39\xe0\xa4\x78\xed\xd3\x8e\x9a\x1e\xb0\x0a\x5c\x78\xe7\xfa\x86\x3f\x73\x78\x3e\x10\xf3\x32\x4a\x63\xa4\x4d\x16\x24\x6c\xc3\x9b\xab\xc0\x73\x9a\x1a\xdf\x3c\x9f\xe4\xaf\xad\xfe\x64\x5e\x0e\xa7\xc9\xa2\xd6\xa6\xa9\xfa\xe7\xb8\x65\xd9\x64\xdd\xf2\x7a\x90\x3c\x69\x46\x1a\x44\xbc\x84\xe1\x83\x12\x2f\xaf\xa4\xa3\xb5\x5f\x9f\x7a\x90\x65\x03\x50\x19\x2e\xff\xfa\xaf\xff\x6a\x2f\x5d\xba\xe4\x2e\x5e\xbc\x18\x0d\x18\xbf\xc7\x91\x00\x64\xde\x80\xc9\x89\x68\x00\x42\x6e\x0d\x72\x47\xa0\xad\x93\xfc\xec\xca\x22\x3b\x9b\x59\x0c\x89\xc8\x4f\x4e\xf9\x85\x71\xac\xa2\xbc\xb2\x76\x2c\x81\x18\x4c\x63\x2c\x08\x09\xec\x4b\xba\xe4\xf3\xd5\x28\xfd\xa9\x23\xa2\x7a\x12\xec\x6a\xa3\x09\x00\x0a\xe3\xa6\xbb\x2b\xc5\x5b\x6f\x6c\x4f\x7f\x7c\x75\x73\xfe\x56\x49\xee\x90\x88\x8e\x00\x9c\x50\xf5\x7d\xbe\xb9\x73\x6e\xe1\x8d\x96\xb0\xbf\xc5\x01\x70\xe2\x20\x8b\x26\x4b\x48\xfc\x6a\x6d\x9f\xea\x03\x52\x1e\x34\x59\x02\xf4\xf6\xe3\xc6\x49\x17\xac\x01\x60\xbb\xbe\x0e\xad\x29\x37\x5e\x08\x6d\xd6\x26\x3d\x25\x12\x2f\x7f\xd7\x0c\x23\xa9\x04\x34\xcb\x8c\xe3\x33\x3f\xfc\xe1\x0f\x6d\x10\x54\x04\x43\xb8\x1e\x80\x83\xb5\x4d\xfe\x39\x27\xff\xc5\xd0\x22\x73\x28\x0d\xdc\xca\x3c\x5b\x5d\x9b\x65\x5b\x83\x92\x56\xe0\xbc\xbf\x23\xc8\x1a\x98\xdc\x01\xf5\xc7\x13\x01\x70\x4f\x08\x84\xd0\xf2\xa3\xfa\x4b\x06\x07\xbc\x81\xe2\x8d\x97\xe6\x3a\x68\xfd\xd5\xe7\x60\xcd\x10\xa8\xf1\xe1\xd0\x68\xce\x52\x5d\x4e\x07\x34\x3c\x3f\x01\xa9\x73\xcd\x2f\x57\x1b\xd0\x30\xb7\xb4\x31\x2a\x4d\x6e\x09\xb7\x8f\x87\xe5\xde\x34\xb7\x73\xd4\x4b\xb5\xa5\x17\xf8\x28\x88\x7e\xd6\xe2\xc2\x86\xdd\x47\x1f\x7d\xd4\xec\xed\xed\xa5\x2c\xec\x46\xdb\xb0\x2a\x91\xf1\x52\x8e\xb4\xfc\x5a\xbb\x6b\x46\xb0\xcc\xdb\xe6\x51\x21\xa4\xf1\x42\xc0\x6a\xf2\xdf\x56\x86\x54\xdf\xd0\xf8\xe9\xf2\xda\xb4\xf1\x29\x3b\xb6\x56\xb6\xae\x36\x69\x33\x78\xb4\x3a\xd0\x3c\x0a\x6d\x6d\xd7\x35\xb3\x43\x0b\xac\x2c\x17\xa7\x63\x15\x78\x2e\x63\xda\xcc\x9c\xd3\xd1\x74\x93\xe6\x59\xe1\xf1\x1c\x9f\xd6\x3e\x52\x77\x49\x7c\x1c\x67\xaa\xcc\x5d\xb2\xdf\xc6\x87\x26\x03\xb2\xae\x52\xf5\xc6\xf5\x6c\x17\x2c\x2f\x8f\xa4\x23\xe3\xb5\x25\x7f\x29\x97\xbc\x9c\x92\x9f\xae\xb6\xd4\xca\x4f\x3b\x3b\x3b\xf4\x47\x7f\xf4\x47\x7c\x2c\x08\x13\xd7\x30\x69\xcd\x00\x84\xc3\x1a\x43\xe7\x5c\x3e\x1b\x58\x37\x2c\xcd\x68\x63\x96\x9f\x1b\x15\xd9\x9a\xb1\x94\x85\x49\x27\x71\xee\x02\xb1\xb0\x21\xd7\xcf\x2a\xf5\x9b\x24\x58\xbc\xb7\x60\x08\x35\x4e\xaf\xda\xa3\x07\xdf\x51\x5d\x8c\x30\x36\x84\xec\x16\xce\x1e\x8e\xec\xf5\xb7\xce\x4c\x7f\xf2\xe6\xf6\xf4\xff\x3b\x1a\x97\x37\x88\xe8\x18\xc0\x91\x73\x2e\xde\x55\x06\xbf\x35\xc2\x23\x2a\x51\x2d\x8d\xe1\xec\xd9\xb3\xf4\xfa\xeb\xaf\x4b\x39\xe1\x6d\xac\xe9\x02\xcd\xe8\xd5\xfa\xbc\xd6\xb7\x53\x32\x98\xb2\x09\x34\xf9\x4e\xb5\xb5\x85\xe2\x71\xe1\x4c\x6b\x4a\x4d\x76\xfc\x94\x61\x93\xca\x27\xf1\x76\x19\x46\xb2\x13\x48\xeb\x0f\x00\xe8\xd3\x9f\xfe\x34\x9d\x39\x73\x06\x59\x96\x45\x9c\x4c\x70\x83\xd1\x02\xff\x6c\x50\xb9\x0b\x33\x00\xd9\x3c\xb7\x65\x6e\x69\xb8\x36\xcb\x37\x57\xe7\xd9\x66\x06\xca\xa3\x1b\x90\xb0\xe4\x5d\x89\x96\x31\xc0\x8e\xc8\xf1\x4b\x88\x3c\x53\x54\x0b\x66\x60\x2a\xb6\x0c\x21\x1a\x1a\x1c\xae\x32\xf2\x69\x39\x5f\xc3\x3a\x47\xf8\x7c\x51\x0c\xc4\x90\x50\x20\xe0\x33\xf3\x4e\xe0\xfb\x0f\x8c\xa5\xc9\xd0\xd2\xe6\xb0\x34\x59\x69\xdc\xee\xd1\xb0\x3c\x98\xe5\xae\xf0\xc6\x4b\xb4\xd4\x59\x5d\x46\x43\xe6\xe2\xc5\x8b\xf4\xdd\xef\x7e\x57\xb3\x8a\xe5\x80\xa0\xcd\x24\xc1\xf2\xc8\xdf\x2e\xb8\x94\xcc\xf1\xbc\x72\x56\x20\xe1\x25\x6c\x6a\x56\xc0\xf3\xa5\xfa\x82\x56\x86\xf0\x2b\x67\x83\x1a\x3f\xb2\x6c\xb2\xbe\x64\x1e\xad\x3c\x26\x91\x57\x2b\x6b\x57\x5d\x07\x7c\x92\x6f\xad\x0c\x1a\xff\x6d\x74\xfa\xe8\x8c\xbe\x32\x90\xaa\x27\x52\xe2\x52\xb8\x34\x2f\x50\x57\xd9\x52\x7f\x12\xbf\xe6\x7d\xd1\x68\x73\xbe\x35\x6f\x72\x17\x0f\x3c\x9f\x51\xe2\x4e\x2b\x5f\xa9\xfe\x90\xe2\x4f\xa3\xcf\xe9\xc9\xd0\x56\x1e\x39\x41\x4d\xc1\x6a\x74\xe2\x20\xe7\x9c\xa3\x77\xdf\x7d\xd7\xbe\xf8\xe2\x8b\x6e\x67\x67\x87\x42\xf0\xf0\xc6\xff\x11\x11\x65\x7e\x02\x9b\x13\x51\x5e\x1a\x64\xf3\xcc\x95\x6b\xb3\x6c\x6d\x6d\x9e\x6d\x0f\x4b\x9a\xc4\x73\x49\xbe\xa4\x75\x81\xdc\x92\xee\x75\xc2\x43\x1f\x21\x1d\x1a\x9e\x72\x82\xfc\x62\xb5\x2f\x00\x85\x81\x8e\x5d\x9b\xe1\x08\xe1\x9b\x7a\xb3\x81\xbb\xfd\xee\xe6\xec\x95\xd7\xcf\x9f\xfc\xe4\xfa\xda\xe2\x4a\x49\xee\x10\xd5\x32\x51\xf0\xb6\xcc\xfc\x3e\xce\x70\x8f\x59\x19\x3c\x2e\xcf\x3f\xff\xbc\x7d\xfd\xf5\xd7\xfb\xf4\xdd\x10\xb8\x7c\x4a\x03\xbc\x4f\xdf\x96\x72\xa6\xf5\x2f\x19\xfa\xf4\xab\x06\x9d\xd4\x52\x51\xca\x0a\x93\xc2\x93\x0a\xd2\xc2\x92\x05\xd3\x70\x6b\xf4\xad\x92\x67\x69\x76\x70\xf9\xf2\x65\xb7\xbe\xbe\x4e\xeb\xeb\xeb\xc8\xb2\x8c\xef\x71\x09\x81\x80\xea\x68\x1c\xb3\xbe\x09\x80\xb1\x06\x59\x91\xd9\x72\x54\x98\x95\x8d\x59\xbe\x35\x2e\xcc\x5a\x58\x70\x8a\x03\x7e\xdc\xa1\xee\x99\xa6\x4a\xc8\x22\xe2\x60\xb4\xa0\x29\xa8\x95\x90\xb3\x5b\x57\x42\xc9\xc2\x4f\x78\x16\x46\x0e\x37\x32\xa2\x2b\xd2\x01\x7c\x9f\x4d\x4d\xbb\x7a\xa2\x06\x1c\xab\xc1\x80\x8f\xe1\x07\x39\x64\xce\x4c\x46\x85\xd9\x18\x96\x86\x4a\xe3\x6e\x1d\x8d\xed\xc1\xc2\xb8\xc2\x1b\x29\xda\xe6\xbd\x8a\x25\xe6\x79\x51\xda\x0f\x02\xbe\x2b\xb4\xc9\xc2\x9d\x84\x36\x99\x6a\x83\xed\xea\x54\xa9\xd0\x07\x77\xdf\xd0\xd5\x27\xb4\xf7\xf0\xdb\x55\x87\x7d\xf9\x49\xd1\xe9\x1b\x4e\x53\xff\xd2\x78\xe8\xd2\x2d\x5c\x37\xc8\x7c\x29\xda\x7d\xf8\x4c\x95\xf9\x4e\xf9\xe6\x79\x34\x5e\x35\x03\x40\xc3\x97\x9a\x05\x6b\x6d\x2e\x07\xfc\x00\xab\xc1\xa4\xf0\xa5\xea\x24\x25\x5b\x7d\x60\x34\x5a\x5a\xbd\x4a\x1e\x52\xed\x90\x1a\x60\x97\xf8\xf0\x86\x0b\xc7\x51\xcf\x1b\x89\x32\xf2\x9f\x3c\x09\xfb\x5e\xa6\x03\x6b\x09\x44\xab\x73\xb3\x31\x29\xb2\x8d\xcc\xd2\xa0\xb1\xdf\x85\x23\x40\xd8\x85\x48\xcc\x2b\x2f\xcd\x96\xe6\xe4\x33\xe4\x63\xe8\x6a\x9c\x3e\xb2\x71\x53\xaf\x1f\xc2\x0a\x83\xf9\xf5\xb5\xc5\x2f\x5e\x3b\x7f\xf2\xc3\x77\x36\x67\xff\x36\x1f\xb8\x7d\x22\x3a\xf6\x1e\x97\x63\xe7\xdc\x89\x37\x5a\x66\xa8\x0c\x96\x32\xd4\x0b\x11\xb9\x27\x9f\x7c\x92\x5e\x7e\xf9\xe5\x94\x1c\xf3\x31\x35\x25\x07\x12\xa6\xab\x8f\x48\x18\x8d\x86\xc6\x4b\x1f\xdc\x31\x3e\x13\x11\xa9\xf5\x67\x0d\xa6\x8d\x11\xa9\x60\x64\x5a\x9b\x00\x07\xf7\x60\x6a\x7d\x5b\x5d\x03\x7f\xfb\xed\xb7\xdd\x8f\x7f\xfc\x63\xf7\xcc\x33\xcf\x68\x6e\x26\x00\xd1\x84\x36\xec\x2f\x03\x60\xe6\x79\x75\xda\x7f\x6d\x9e\x6d\xac\xcf\xb2\xed\xdc\xd1\xb0\xf6\xae\x20\xba\x05\xfd\xc8\x5d\x0b\x20\x93\xc2\xe8\x35\x89\x71\xae\xe1\x4a\x8c\x46\x0d\x83\x8b\xf0\x9e\xcb\xa6\x71\x53\x7b\x78\xa2\xc1\x14\x2c\x72\x6e\x84\xa0\xb9\xc1\x2b\x18\x5b\xdc\xd5\x19\x8d\xa0\x46\x85\x10\x65\x0e\x2b\xa3\xc2\x6c\x8d\x8b\x2c\x5b\x64\xf6\xd6\xe1\xb8\xbc\x5d\x98\xda\xf3\x22\xeb\x98\xc5\xb9\x9d\x9d\x1d\x7a\xea\xa9\xa7\xe8\xa5\x97\x5e\xea\x52\x36\xda\x3b\x67\x25\x25\x4f\x5a\xc7\xd2\x14\xba\x14\x7a\xf9\xdb\x57\xa1\xb6\xa5\x9d\xc6\x63\xd8\x87\x8e\x2c\x87\x34\xc6\x25\x0d\xe9\x59\x91\x41\xc3\xdb\x35\xc0\xf6\x51\x40\x5a\x19\xfa\xd4\xbf\x36\xc9\x90\xb4\xe4\xc4\x46\xc2\x6a\x5e\x11\x09\x93\x1a\x88\x53\xf2\xa7\x95\x33\xe5\x15\x91\xed\xc1\x07\x3f\xae\x94\x49\xc0\xa6\x8c\x85\x54\x7d\xf2\xf2\x87\x3c\xa9\xe5\x71\x97\xc8\xa7\xd5\x9b\xe4\x4b\x83\xe1\xf8\x53\x03\x4c\x57\x3d\xca\x31\x21\x25\x1f\x7d\xda\x58\x1b\xec\x52\xf2\xa3\xc9\x7c\xc4\x19\xbc\x2e\x68\xb6\x99\x01\xa2\xd7\x3d\x18\x2f\x39\x11\x65\x0e\x2e\x3f\x19\x96\x73\x00\x76\xb2\x30\x2b\x93\xc2\xac\x67\x96\x86\x7c\xe2\x59\x55\x6a\xad\x48\xeb\x09\xa6\x9f\xb8\x2e\xed\x2d\xf4\xe7\x8b\xa2\xbe\xae\x06\x94\x86\xfe\x07\xff\x8d\xe6\x10\x00\xa0\x24\x57\xec\xaf\x2c\xde\x79\xfd\xdc\xc9\x8b\x6f\x9e\x39\xf9\xd9\xe1\xc8\xde\x00\xe1\xc8\x39\x77\xc4\xf6\xb7\xcc\xfc\x95\x1f\x65\xd8\x94\x4b\x44\x25\xf9\x63\xd1\xaf\xbf\xfe\x3a\xde\x7e\xfb\x6d\xad\x7f\x4a\x0f\x57\x9b\x8e\x93\xfd\x4f\x56\x41\x4a\x66\xa4\x4d\x91\xd2\x49\x6d\xb8\x65\x70\x40\xbd\x54\x94\x12\x28\xad\x33\x48\x65\x93\x1a\x50\x52\x33\x23\x59\x38\x08\x18\x59\x91\x3c\x48\x81\x96\x79\x71\xe9\xd2\x25\x2e\xb0\xc4\xf2\x81\xc5\x65\x8d\x5f\x42\xb6\xc8\x9c\x35\x8e\xf2\xcd\xe9\x60\x6b\x65\x91\x6d\x12\xc8\xc4\x25\x23\xb8\x7a\x83\xae\xab\xc4\xb1\xf6\x96\x78\x33\xc0\x4b\x67\x74\xfb\x39\xff\x81\x2d\xf2\x66\x8e\xa3\x08\x53\xe5\x43\x14\xe8\x48\xc7\x31\x4e\x39\x90\x67\xb2\x61\x8c\xc7\x4e\xe1\x69\x38\x17\x97\xb0\x1a\x9e\x1c\xf8\x3d\x2e\x0d\xdc\x55\x3e\x02\x8c\x71\xb4\x36\x2e\xb2\x73\x2b\x8b\xcc\xcc\x72\xfb\xde\xed\x71\x79\xcc\x2e\xa8\x73\x6c\x77\x3a\x6f\x37\x02\xe0\x86\xc3\x21\xc4\x25\x75\x50\x9e\xb5\xf7\xd0\x66\xa9\x65\x89\xf0\x2e\x71\x6b\x83\x95\x54\x76\x6d\x03\x85\x16\x34\x25\x2b\xf9\x3b\x2d\x4e\x1e\x52\x33\x43\x0d\xaf\x56\x3e\x0d\x2e\x65\x6c\xf1\x3e\xaa\xb5\x47\xaa\x8d\x4e\x53\x57\xa9\xfa\xd7\xca\xc0\x07\x64\xd9\x6f\x35\xc3\x2d\xc5\x6b\xdf\xb6\x95\xf4\x52\xf9\x43\x48\xe9\x11\x4e\x87\x1b\x27\x5a\xbd\x72\xdc\xfc\x9d\x1b\x22\x6d\xfc\xca\x7a\xd3\x94\xb9\xd4\x87\x5a\x1d\x6b\xf5\xc7\xf3\x6b\xf5\xc0\xd3\x35\xbd\x2e\xeb\x85\xb0\x5c\x46\x75\x62\x23\xf2\x68\xed\xd7\xd6\xff\x53\x65\x92\x46\x12\xaf\x33\x99\xd7\xb1\xd3\xa6\xf1\x74\x51\x58\xda\x61\x1e\x97\x70\x41\xa9\x29\x33\xe0\x70\x54\x4e\x1d\xc1\x4e\x16\xd9\xca\xb8\xc8\xd6\x32\x87\x41\x30\x25\xf8\x58\x40\x4c\x8f\xd7\x85\xa4\x46\xcf\xae\x6e\x4c\x0f\xc6\x8c\x87\xa2\x65\xaf\x79\xfc\xad\x86\x09\x00\x0e\x96\x60\xf7\x26\xc5\x3b\xaf\x9d\x3f\xb9\xf4\xda\xb9\xe9\xcb\x07\x93\xe2\x7d\x67\x70\x1b\xf5\x49\xa2\x60\xb4\xcc\x88\x68\x4e\xd5\xa5\x73\xe1\x5e\x17\x07\x54\x9b\x72\xbd\xd1\xc2\xeb\x05\x1d\xf5\xaa\xb5\xbf\x94\x1f\xb0\x77\x39\xb9\xe5\x41\xca\xbd\x66\xc8\xa7\xe4\x2e\x35\x01\x23\xf8\xcd\xb9\x9a\x32\xe1\xbf\x9c\x31\xc7\x32\xf3\x4e\x06\x85\x79\x4d\x71\xb4\xcd\x6e\xfb\x0c\x76\x5a\xc7\x5b\x52\x48\xfc\x78\x74\xc8\xe7\x05\x37\x76\xa6\x20\xac\x1e\x87\x29\x8c\xa3\xd2\x38\x8c\x0a\x33\x3c\x73\x32\xb8\x30\xb0\x34\x5e\xba\xbe\xdf\x5b\x18\xc1\xeb\xc2\xd7\x35\xc3\xfd\x2b\xdc\x36\xa8\x8d\x9a\xb0\xd9\xb6\x79\x4d\x74\xc3\xb0\x00\xc4\x5e\x14\x5a\xa2\x19\xf2\x06\x7a\x95\x91\x52\x7f\x7e\xa0\x69\xeb\xa3\xf9\xc9\x74\x61\xbb\x10\x05\xfe\xc9\x64\x16\xab\x93\xc2\x9c\x5f\x9b\xe5\xe6\x68\x68\xdf\xd9\x9f\x14\x47\x3e\x8f\xf3\xde\xa6\xa4\xc2\x0e\xcb\x46\xa3\xd1\xc8\x94\x65\xa9\xb5\x59\xaa\xcd\x65\x1b\xa5\x94\x65\x17\xbe\xd4\xec\x3b\x15\x52\x46\x39\xc4\x7b\x0a\x5f\x17\x9f\x6d\x33\x56\x1e\xd7\xa7\x4f\xa4\xe8\xb6\xe5\xeb\x5b\x0f\x7d\xe8\xa4\x3c\x14\x6d\x83\xb1\x0c\x72\xf2\xa0\x29\x26\xcd\xeb\xc6\xe9\xa4\x26\x41\x5a\xdd\xcb\xf5\x74\x6d\xd6\x1e\x82\xa6\x47\x34\xaf\x84\xc4\x27\x79\xd7\xda\x26\xcc\x68\xdb\x26\x84\x1c\x67\xdb\xc0\xad\x4d\x2c\xb9\x41\xd0\x36\x3b\xe5\x3c\x6b\x83\x3e\x4f\xef\xd2\xaf\xbc\xed\x78\x7b\xa6\x66\xcf\xbc\x1e\x24\xdf\x5d\x13\x65\xcd\x8b\x95\xaa\xf7\xa5\x09\xf6\x97\xbf\xfc\x65\x1a\x0c\x06\xcc\xc0\x20\xb0\xad\x02\xf0\x46\x8c\xf1\x8f\x19\xaa\x13\x47\x54\xe4\x70\x87\xc3\xf2\xc4\x19\xd8\x95\x45\xb6\x3a\x2a\xcc\x9a\x71\xc8\x81\x70\xe2\xa7\xbe\xac\x22\x7a\xb7\xc3\x45\x74\x14\xbe\x49\x44\x71\x72\x59\xeb\x6d\x62\x07\x29\x9c\x3f\xb5\xe4\xe2\x31\x6b\x07\x20\xac\x3b\x39\x82\xdd\x9b\x2c\xae\xfc\xec\xde\xe3\xff\xf7\xe7\xe7\x4f\x5e\xda\x9f\x14\xd7\xfc\xbe\x96\xa3\xb0\x29\xd7\xff\x86\xbd\x2d\x73\x20\x7e\xd6\xc0\x79\xaf\x8b\xfb\xf8\xc7\x3f\x4e\xe3\xf1\x98\x2e\x5f\xbe\xcc\xdb\x4f\xb6\x6d\xca\x18\x94\x21\x25\xeb\x5d\xf2\x9c\x32\x46\xb4\x3e\xdd\x68\x43\x11\x17\x64\x86\x80\x6a\xa9\x48\x53\xb2\x5a\x41\x91\x88\x4b\x31\x1f\x18\x92\x86\x8f\x2c\x8c\x56\x58\x19\x34\xeb\x1d\x29\x78\x76\x1c\xae\x51\x61\x7c\xbb\x15\x55\x2d\x6c\x00\x7f\x4c\x9a\x60\xe6\xb9\x2d\xcb\x0c\xb4\x31\xcd\x57\x36\xa6\xf9\x79\xe3\x28\xab\x84\x93\x80\xda\xe3\x10\x03\x8f\x91\x5e\x93\xf0\x99\x00\xe9\xf5\x20\x9f\x31\xe6\x75\xb5\xa5\xde\x38\x15\xc4\xac\x8c\x86\x01\xe5\x18\xed\xd0\x39\xd0\x34\x5a\x9a\xe9\xcd\x8a\xd3\x42\x65\xbc\xd0\xfa\xa4\xc8\xee\x3f\x73\x92\x0f\x0e\xc6\xe5\x2f\x6e\x8f\x8b\x19\x28\x39\x9b\x0a\xef\x0e\xa8\xea\xfb\x6b\x5f\xfb\x1a\xdf\xf7\xa2\x09\xab\x8c\x97\x82\x2e\xe3\x52\x1d\x82\xe3\x4c\x29\x38\x0e\x2f\x65\x44\x2a\x67\xc9\x1f\xa7\xad\x19\x17\x29\x7c\x21\x7f\x9f\xa5\x54\x8e\x47\xab\x1f\xed\x17\x58\xa6\xd3\xd7\xd8\x43\x07\x4c\xca\x48\x90\x65\xe7\x93\x94\xd3\x28\x2b\xb9\x59\x4f\x1a\x33\x72\x30\x0b\xf1\xda\xf2\x90\xd6\xff\xa5\xe2\xd3\x8c\x22\x6d\x70\x97\x7a\x85\xf3\x93\x3a\x61\x64\x05\xac\xd4\x87\xda\xec\x95\xe3\xd4\x64\x9d\xcb\xae\x81\x5e\x17\x9c\x27\x5e\xa7\x46\xc1\xc1\xf9\x96\xb4\x65\x3d\x71\xb5\x20\xbd\x4f\x50\x60\x1d\xfb\x93\x83\x0b\x2f\x1f\xa7\x99\xe2\x5b\xd6\x87\x94\x03\xbe\x41\xf8\x54\x74\x5e\x7a\xe9\x25\xcb\x97\x8b\xfc\xd5\xff\x71\xff\xa3\xd8\x07\x49\xac\x8c\xa6\xc8\x51\xde\x1e\x95\x87\xc7\x83\xf2\x30\x2f\xc9\x4c\x8a\x6c\x2d\xb7\x66\xc4\x37\xeb\x06\x3d\xdd\xb8\x2a\xc3\xc1\x6f\x2b\x08\x70\x62\x99\xa9\xf6\xf6\x44\x05\x2d\x3d\x2f\xa5\x71\xc5\xcd\xd5\xe2\x8d\x1f\x3f\x70\xf8\xfd\x7f\x3b\x7f\xfc\xb3\xc3\x71\x79\xc3\x7b\x5a\x8e\x00\x44\xe3\xc5\x39\x37\x25\xa2\x19\xfc\xde\x16\x54\x97\xd1\xf1\x6f\x32\xe1\x87\x3f\xfc\x21\xfe\xe5\x5f\xfe\x45\x5b\xf2\xe4\x75\xc9\x4a\xd4\x68\xef\x36\xbd\xa9\xf5\x09\x08\xdc\x32\x9f\x66\xcc\xa6\xfa\xbd\xa6\x17\x1a\xfa\x92\x2f\x15\xa5\x18\xe6\xa1\x8f\x71\xc2\x2b\x49\x2a\x9a\x10\xba\x06\x38\x0d\x37\x17\xe4\x64\xc8\xb2\xcc\x7c\xf6\xb3\x9f\xa5\x73\xe7\xce\x85\xa8\x20\xb0\x12\x67\x70\x1d\x1a\xf8\x25\x23\x07\x64\x45\xe6\x4a\x4b\x8e\xce\x9c\x0c\xce\x8e\x8b\x6c\xcb\x70\xe4\x2e\x08\x60\x5d\x08\xde\xda\xdc\x58\x00\xd5\xeb\x9d\xd1\xac\x60\xe2\x11\x7b\x69\xbd\x1e\x55\x19\x3c\xa8\x8f\x2f\x3b\x00\x70\x1c\x4f\x8d\xa3\x3e\x2e\x27\x8c\x16\xc7\xd2\xb8\x21\x84\xa6\x75\xaf\x18\x31\x94\x39\x5a\x1d\x17\xe6\x81\x33\x27\x39\x0e\x26\xe5\x95\xa3\x41\xb9\x70\x06\x25\x83\xe1\xb3\xa7\x48\x31\x7c\x33\xaa\xc7\xb2\x51\xaa\xed\xa4\xb0\xa7\xe0\x9d\x80\x95\x46\x54\x4a\xce\xba\x70\x86\xc0\xe5\x58\xa3\xa3\x85\xd3\x96\xb5\x4f\xfe\x54\xf9\x52\x70\xa7\xa1\x99\xaa\x93\x3e\x38\x4f\x03\x17\x82\x66\xd8\x05\x11\x94\xa7\x5c\x90\x78\xef\x32\x40\xa4\x42\x96\xc6\xa9\xc6\x87\x1c\x08\x1d\x96\x69\xf3\xb2\xa4\xe0\x65\x48\xc9\xac\x1c\xf4\x43\xe0\xc6\x60\x1b\x1d\xc9\x93\x2c\xaf\xd4\x8d\x1a\xbc\xf4\xe0\xc8\x36\x80\x48\x97\x7c\x2c\xf5\x7d\x01\x0f\x86\x53\x1b\xe8\x52\x3c\xa5\x9e\xef\x98\x4e\x9e\xe7\xc6\x5a\xeb\x76\x76\x76\xc8\x7b\x20\x82\x1e\x8d\x77\x7d\x79\x23\x22\xac\x3a\xf0\x73\x44\x28\x32\x94\x07\x93\xf2\x78\x77\x65\xb1\x5b\x66\xee\x64\xbc\xc8\xc6\xc3\xc2\xac\x10\xa8\x31\x24\x04\xf5\xed\xfc\x0b\xd7\xab\x8d\xe7\xa0\x8b\xd9\x04\xd8\xf9\x78\x47\xd5\x7e\x96\xa3\x51\xb9\xf7\xf6\x99\xd9\x8f\x5f\x7c\xe8\xe0\xfb\x6f\x9f\x99\xfe\x62\x3a\x70\xb7\x1c\x70\x08\xc2\x6d\x00\x87\x44\xc4\xf7\xb6\x2c\x00\xcc\xc3\xb7\x89\x3c\xba\x32\x94\xf1\x85\x17\x5e\xb0\x57\xaf\x5e\x95\xf5\xaa\xd5\xa5\x94\x1f\x59\xf7\xbc\x38\x5a\x5f\x6c\x5b\xee\xe7\xf9\x64\xde\xb6\x7e\xaf\xf1\xe4\x38\xbe\x8c\x65\xd2\x66\xb3\x6d\x82\xaa\x09\x1b\x27\xa8\x15\x46\x1a\x3e\x29\xdc\xd1\x48\x85\xbe\x71\x47\xe2\x8a\xcf\xce\x39\xf7\xd6\x5b\x6f\x39\xfe\x01\x46\x51\xe8\xe0\x32\xe4\xb4\x08\x7e\xa3\x6e\x69\x1c\x2d\x32\xe7\x06\x96\x68\xfb\x24\xbf\x77\x60\xcd\x38\x52\x0c\xf6\x87\xc7\xa8\x19\x30\x35\x28\xc5\x34\x96\x75\xe9\xf4\x10\x0f\x8e\xe5\x6b\x60\x0a\x74\x94\xbc\xdc\x70\xaa\x79\xaa\x8d\x1f\x8e\x87\x47\x35\x1a\xd6\xc5\x0e\x45\x99\xa3\x95\x71\x91\xdd\xbb\x36\xcb\x16\xc7\xa3\xf2\xfd\xe3\xa1\x9d\xdb\x1e\xc6\x0b\x50\x2d\xd1\xb5\x9c\x36\xea\xe3\x0d\x08\x70\xda\xe0\xf4\xab\x08\xff\x1e\x34\xff\x3d\xc2\x9d\x4c\x50\xee\x34\xa4\x8c\x07\xd9\xc6\x29\x0f\x97\x84\x4d\xe9\x93\x36\xdc\x6d\x38\x34\x83\x46\x86\x94\x47\xaa\x6b\xc2\xd7\x35\x31\x0b\xf1\x9a\x97\x4e\xab\x8b\x3e\xe5\x4d\xf1\xa2\xc1\xb7\xf1\xd4\xb7\x5e\xfb\xe0\x4e\xf1\xd7\x87\x8e\x1c\x6b\x24\x4d\xb5\x5d\xad\xb5\xf4\xa7\x7f\xfa\xa7\xf4\xd7\x7f\xfd\xd7\x36\x1c\x8d\x06\xe2\x05\x9b\x51\x0d\x7a\xaf\x7c\xd8\x4a\x60\xf9\xd2\x92\x25\xd8\xe9\xc0\xcd\xf7\x27\xc5\xc1\xe1\xa8\xdc\xcb\x1c\xca\xdc\xd2\x20\x73\x94\x53\x65\xa6\x34\x76\xfe\x71\xa7\x7c\x1c\x13\x1c\xaa\x63\xcd\xb4\xac\xd9\x01\x87\xd2\xb8\xe2\x64\x68\x0f\xae\xad\xcf\xdf\xfc\xe9\xbd\x47\x2f\xbe\x7c\xff\xd1\x4b\x37\x56\x16\x57\x17\x39\x76\x01\xdc\x66\x46\xcb\x31\x80\x13\x00\x53\xe7\xdc\xdc\x7b\x5b\x16\xde\x68\x09\x77\xb6\x38\x00\xfc\xa3\x8a\xb2\x2e\x9b\xc4\x97\xeb\x32\x55\xf7\x48\xa4\xa7\x70\xa7\x3c\xd4\x7d\xe0\x35\xd8\x25\x1c\xda\x95\xff\xd2\x02\xd2\x82\x86\x50\x8b\x93\xcc\xa9\x1b\x6a\xb1\x5c\x50\xfe\x2c\x67\x0a\x6d\xb4\x01\xc0\x6c\x6c\x6c\xd0\x0f\x7e\xf0\x03\xcb\xf6\xba\x04\xe3\x04\xf0\x86\xb5\x77\x1d\xc6\x75\x4e\x54\x36\x83\x71\x00\x15\x99\x73\x8b\xcc\x96\x6b\xb3\x6c\x65\x63\x96\xdf\x43\x0e\x59\x3c\xfe\x2c\x2d\x06\x68\x46\x00\x4b\x73\x88\x9e\x12\xe7\xf3\x3b\xd4\x16\x38\xbf\xf7\x25\x1a\x1c\x3e\x8d\x18\x7c\x40\x56\xad\x95\x62\xc9\x98\xe1\x97\xe5\xf1\x4f\xa3\x73\xa3\x4a\xce\x06\xf8\x5f\xb8\x58\x0f\x95\xf1\xb2\x36\x2e\xcc\xb9\x49\x91\x15\xb3\xdc\xee\x9d\x0c\xcb\x93\x82\x1a\x9b\x74\xad\xaf\xbf\xb8\x69\x97\x5f\x52\xf7\xd8\x63\x8f\xd1\x2b\xaf\xbc\x12\xda\x4e\xb6\x41\x4a\xc1\x6a\x33\x66\x99\x26\x8d\x9a\x94\x0c\xc9\xa0\xc1\x69\x38\x53\xf8\x4e\x63\x74\x9d\x86\x07\xed\xb9\x4f\xe7\xee\x3b\x60\xa6\x7e\x53\x79\xb9\xbb\xb6\x6b\x00\x4f\xf1\x9d\xe2\x93\x4f\x42\xe4\x33\xd7\x3d\x61\x02\xc5\x71\xb4\x2d\xdb\x70\x18\x89\x9b\xe3\x00\x9a\x32\xa8\xc1\xa6\xca\xa5\x2d\x6f\x48\x7e\xdb\x70\x6b\xc6\x49\x57\x9d\x68\xcb\x64\xa7\x29\x7b\x17\x2f\xb2\x5e\xb9\x3a\xe8\xe2\xa9\x0f\x6e\x28\xf5\xd3\xa7\x0c\x1a\x8c\xc4\x97\x2a\x43\x23\xfd\x67\x3f\xfb\x99\xfb\xfc\xe7\x3f\x6f\xd6\xd7\xd7\x01\xc4\x8b\x34\x83\xa7\xc5\xf9\x67\x07\x00\xfe\x91\xbc\x67\x26\x7a\x69\x1c\xa1\x5c\x64\x6e\x76\x38\x2a\x8f\x6e\xac\x16\xb7\xf6\xc7\xc5\x0d\x47\x58\x10\x08\xe4\x28\xf3\x6a\xd3\x68\xcb\xf5\xa1\xd4\xfc\xea\x0c\x0b\x87\x92\x50\xcc\x72\x3b\xbd\x3d\x2a\x6f\xbe\xbf\xbe\x78\xfb\x8d\xb3\x27\xaf\xbc\x7a\xef\xf1\x4b\x57\xb6\x66\x6f\x1c\x8e\xca\x1b\xa5\x71\x7b\x00\x8e\x40\x74\x08\xe0\xd0\x39\xc7\x8f\x3f\x4f\x89\x68\xea\x3d\x2d\x0b\x54\xba\x38\x5e\x36\xe7\x9c\x73\x2f\xbc\xf0\x82\x7d\xfa\xe9\xa7\xcd\xf5\xeb\xd7\x53\x7d\xa1\xaf\x9c\xb6\x8d\xbb\x52\xee\x52\xf8\xda\xe0\xb5\xb6\x6f\xeb\xc3\x51\x36\xb4\x0b\xe8\xda\x14\x69\x1f\x85\x9b\x52\xaa\x32\x4e\x33\x3c\xb4\xc1\x44\x53\x60\x29\x5e\x1d\x00\x9a\xcd\x66\x76\x6b\x6b\xcb\x7c\xff\xfb\xdf\xb7\xec\x84\x91\xa4\xcb\x8d\x96\xb0\xeb\x3c\x03\x21\xb3\x04\x9a\xe7\xce\x39\x03\x7b\xe6\x38\x3f\x3f\x59\x64\x5b\x41\xfc\x1a\xdf\x8f\xf0\x46\x83\xf3\x67\xa0\xab\xfd\xae\xc1\x22\x61\x86\x4a\x30\x42\x7c\xfe\xb8\x61\x8b\x20\xf2\x54\x80\x7c\x13\x3a\xd0\xb4\xba\x2a\x3a\x7e\x41\x89\x19\x38\x8e\x2f\x4d\x05\x1c\x80\x38\xb2\x2d\xac\x2a\xbf\x11\x87\xbc\x85\xc3\x36\x1c\x9b\xcc\xd2\xc6\xa4\xc8\xb6\xc7\x85\x71\x0b\xe3\x0e\xa6\x03\x7b\x5c\xe4\xb5\xcb\xd1\xcf\x4e\x88\xbd\x47\x83\x63\x32\x99\x84\x65\x23\xde\x7e\xfc\x19\xe2\x59\xbe\xa7\x64\xa5\x0d\x47\x92\x35\x5a\x6c\x00\x00\x20\x00\x49\x44\x41\x54\x9b\x61\xa1\x0d\xda\x9a\xbb\x53\xc2\xf5\xc1\x2d\xe9\xf4\x49\x6b\x7b\x4e\x19\x15\x5a\x9e\x14\xbd\x25\x59\x47\xbf\x32\xc9\x36\x4b\xa5\xb7\xf1\x2d\xbd\xad\x21\x4e\x3e\x4b\x7c\x50\x60\x65\x7d\xc8\x7c\x6d\xf1\x6d\xcb\x22\x5d\x65\xd1\xca\xd5\x56\x46\xa7\xa4\xf7\xe5\x55\xe3\x5b\xd2\x91\x3a\x30\xc5\x53\x78\x06\x96\x97\xd7\xb5\x67\x8e\x23\xd5\x5f\xdb\xda\x4c\x1a\x10\x1c\x9e\xcb\x9c\x36\x38\xb6\xc9\x73\x17\xdf\xa9\x32\x2c\xd5\xcf\xab\xaf\xbe\xea\x2e\x5c\xb8\x40\x1b\x1b\x1b\x0d\x83\x04\xa8\x75\x71\x18\xf0\x99\x57\x26\x7c\xe3\x27\x7e\x49\xba\xc8\xdc\xe2\x64\x58\x1e\x1f\x4c\xca\xc3\x9b\x6b\xc5\xcd\xfd\x71\x71\x6b\x3a\x28\x6f\xcf\x73\x3b\x5d\x64\x6e\x5a\x1a\x37\xb7\xe4\xac\x25\x58\x6b\x5c\x61\x8d\xb3\x96\x5c\x69\xc9\x95\x85\x71\x8b\x79\x6e\xa7\x27\x03\x7b\x78\x38\x2a\x77\x6f\xad\x16\x57\xdf\xd9\x9c\xbd\xf1\x8b\x73\x27\xaf\xbe\x7e\x6e\xfa\xb3\x2b\x5b\xb3\xb7\xf6\x56\x8a\xab\xd3\xdc\xed\x5b\x72\xb7\x89\xe8\x08\x44\x61\x5f\x4b\x30\x5a\xa6\xa8\x36\xe3\x06\x4f\x4b\x01\xa0\xe4\xd7\xfb\xfb\x67\x5c\xba\x74\xc9\x5d\xbf\x7e\xbd\xad\x2f\xa4\xea\x52\x1b\x27\xc1\x60\xba\xe4\x2e\xf5\x9c\x6c\x1f\x85\xc7\x36\xbe\xe3\xb3\x76\x01\x9d\x74\xc7\x49\xe1\x50\x11\x29\xc4\xb4\x99\x23\xcf\x2f\x15\x56\x10\x70\x39\xc3\xd1\x0c\x98\xb6\xca\xb5\x00\x30\x9d\x4e\x1d\xd0\x38\x61\xc4\xf9\xe1\xcb\x99\x04\xc4\xb3\xfd\x15\x3d\x42\x6e\x8d\xc3\x3c\xb7\xc5\xb0\x34\xf9\x99\x93\xc1\xbd\x79\xe9\x4f\x19\x45\x63\xa2\x36\x12\x3c\x42\xcf\x44\x7d\x24\x59\x2e\xeb\xc4\x2f\x7d\x86\x0d\x5c\x9e\x2b\x9e\x27\xbc\x55\x3b\xd4\x03\xce\xda\x98\xa9\x8c\x1e\x66\xa0\x34\xaa\x97\x9f\x72\x42\x7d\x0f\x0d\x10\x8f\xf0\x55\x24\xd8\x07\x23\xbd\x91\xc5\x0d\x18\x10\xc1\x80\xb2\xdc\xd2\xd6\x64\x9e\x6d\x8d\x4b\xe3\xca\x0c\x87\x27\x83\xf2\x78\x91\xb9\xb0\x9e\xca\x03\x6f\x0f\x02\x20\x2f\xa9\xd3\x06\xe2\xae\x70\x27\x79\xdb\x60\xdb\x06\x27\x09\x97\xc2\x73\x27\xe5\xb8\x93\x90\xa2\xd1\x35\x59\x48\x05\xad\x2f\x76\x85\x0f\xd2\x66\x29\xda\x5d\x7c\xa4\x60\x53\xf9\xe4\xa4\x8a\xf7\x75\xd9\xef\x35\xb8\xbe\xa1\x8b\x17\x93\x48\x97\xba\x4a\xab\xd3\x54\xde\x94\x7e\xec\xaa\x1f\x69\x88\x6b\x65\xd0\x68\x74\xf1\x94\x9a\x29\xa7\x78\xd1\xfa\x18\x89\xf7\xd4\x44\xb8\x8b\x6f\x89\xb3\xf5\xf9\xdf\xfe\xed\xdf\xe2\xd1\x68\x65\xb2\xe5\x1f\xe3\xb3\xf5\x11\x61\xe9\xa5\x04\xc1\x82\x60\x1d\xa1\x28\x32\xb7\x38\x1e\x96\x47\xb7\x47\xe5\xfe\xad\x95\x62\xf7\xc6\xda\xe2\xfd\x1b\xab\x8b\xeb\xbb\x2b\xc5\x8d\x83\x71\x79\xeb\x70\x5c\xde\xda\x1f\x97\xb7\xf6\x27\xc5\xf5\xfd\x49\x71\x73\x7f\x52\xdc\xb8\xb9\xba\x78\xff\xea\xc6\xec\xf2\x95\xad\xd9\x1b\x6f\x6f\x4f\xdf\x78\x7b\x7b\xfa\xc6\x95\xad\xf9\x2f\xde\x5f\x9f\xbf\xb3\x3f\x29\xde\x9f\xe6\x76\xcf\x9a\x6a\x2f\x8b\xdf\xc3\x72\x08\xc4\xfb\x5a\x4e\x50\x19\x2d\xe1\x6a\xff\x45\xf8\x26\x91\xe7\xd5\x52\x75\x5b\xae\x05\x00\xf1\x5d\xa2\x54\x9d\xa5\xea\x58\x4e\xf2\xb5\xf1\xb7\xab\x6d\x8c\x78\x3f\x0d\xfd\x94\x67\x87\xbf\x57\xed\x88\xbb\x17\x34\x8f\x48\x2a\xbe\x6f\x1c\x4f\x0b\x21\x05\x93\xa4\xfb\xdc\x73\xcf\x99\x70\x76\xdf\xa7\x85\x2f\x84\xe6\x00\xc6\x44\x34\x06\x30\x76\xce\xad\x11\xd1\x9a\x73\x6e\x83\x40\x1b\x99\xc3\xd6\xf9\xc3\xe1\x43\x9f\x78\x7b\xe3\x77\x1f\xd8\x1b\x3d\x3d\x2c\x69\x25\xe1\x10\x6c\x7e\x54\x91\x10\x4f\x15\x55\x76\x81\x76\x97\x4a\xc8\xc7\xf6\xa3\x38\xd4\x4b\x36\xd1\xa8\x81\x4f\x40\x65\xf0\x88\xe6\x0e\xb8\x1b\xc7\xaa\xd9\x33\xb0\x4c\x56\xa6\x73\xa0\x60\xf0\x84\x64\x0b\x37\x3f\x19\xd8\x9f\xbf\xb7\x31\xfb\xbf\x5e\x3b\x77\xf2\x7f\xbf\x7d\x66\xfa\xda\xd1\xc8\x1e\xa0\xea\x44\xfc\x2f\x74\x1e\xeb\xeb\xda\x02\xc0\xb5\x6b\xd7\xf0\xed\x6f\x7f\x9b\x1b\xb9\x80\xde\xf6\x3c\x3e\xd5\xde\x6d\xf1\x49\xeb\x5c\xe0\x97\xe9\x1a\xdd\x2e\xd9\xec\xa2\xd1\x86\x4b\x06\x99\x3f\x04\xb9\x54\x20\x71\xcb\xb2\xf4\xe5\x33\xc5\x83\xa4\x99\xc2\xd1\x17\x2e\xc5\xab\x2c\x27\x0f\x32\x5d\x6b\x3b\x09\xdf\x97\x47\x8d\x5f\x8d\x7e\x1b\xff\x29\x5e\x65\xf9\xda\x64\x56\x93\x0b\xad\x8c\x6d\xed\xa6\x95\x57\xe3\xad\x4d\x5e\xfa\xf6\x0d\x8e\x53\xa3\xdd\x87\x0f\x9e\x5f\x96\x21\xd5\xbe\x77\xd2\xdf\xd4\xf2\x3e\xf2\xc8\x23\xe6\xa3\x1f\xfd\x28\x2e\x5c\xb8\x10\xbc\x2b\x86\xed\x71\xcc\xfd\xef\x90\x8d\x07\x43\x00\x61\x4c\x08\xe3\xc3\x0a\x7b\x1e\x3b\xe7\x86\x44\x34\x24\x87\x61\x6e\x69\x32\x2c\xcc\x70\x5c\xd0\xca\xa0\x34\x43\xe3\xc8\xc0\xc1\x10\x60\x00\x67\xad\x81\x9d\x65\x76\x3a\xf3\xde\x99\xc2\xb8\x99\x25\xcc\x1d\x5c\xf8\xc6\xd0\x9c\x88\x82\x71\x32\x05\x10\x3c\x2c\x53\xbf\x34\x34\xf7\x97\xcc\xcd\x3d\x6c\xe1\x9c\x5b\x32\x5a\x9e\x7f\xfe\xf9\x94\xfe\xec\xd3\xc6\x5d\x7a\xa2\xab\xff\x6a\xb2\x9f\xe2\x25\xd5\x57\x53\x61\x09\xbe\x6d\xa9\xa8\x6b\x76\x20\x2d\xf0\xd4\x2c\x46\xc3\xd5\x66\x65\x73\xfa\x62\xd1\xa4\x51\x80\xb6\x19\x71\xc3\x4a\xbb\x74\xe9\x52\xb8\x51\x97\x8f\xd6\xe1\x54\x51\xb4\x34\xbd\x35\x5e\x7d\xdb\xc8\xef\x77\x99\x0e\xac\x35\x8e\x68\x73\x9a\x9f\x1d\x15\xd9\xaa\x71\x94\xc5\x69\x03\xbb\xfe\xb6\x32\x52\xa8\xb9\x2c\x14\x9f\xc9\x1b\x25\x4b\x76\x0b\xc2\x5a\x0f\x37\x23\xe3\xcd\xbc\x0c\x3e\x7a\x4b\xc8\xc3\xc5\xb4\xfa\xb6\xc5\xba\xa2\xb8\xe7\xa5\xfe\x28\x64\xa8\xb1\xe0\x59\x71\xa2\x76\x25\xdf\xce\x01\x86\xbc\xe7\xa5\xc8\x36\xc7\x85\xc9\xaa\x0f\x33\xda\xc3\x45\xee\x8a\x50\x07\x54\x1f\xf3\x0b\xb3\x9a\xca\xfe\x71\xce\xad\xad\xad\xe1\x91\x47\x1e\xa1\x9f\xfe\xf4\xa7\x8e\x51\xd3\xbc\x1c\x5c\x4e\xf8\x9f\x06\xa7\xc5\xb7\x3d\xa7\x66\x0c\xda\xcc\x50\x9b\xe9\xf6\xa1\x97\x2a\x83\x0c\xa9\xbe\xc0\xeb\x47\xce\x98\x53\x33\xd8\x36\xbe\x52\x7c\x6a\x21\x55\x3f\x1a\x0e\x0d\xae\xcd\x40\xe0\x33\xb6\x90\x26\xdb\x58\x4b\xe7\xf9\xe4\xb3\x45\x73\x76\x98\xaa\xf7\xb6\xf2\x4b\x7c\x72\x06\xa8\xcd\x34\x35\xfc\x9c\xef\x36\x3a\xa9\xb6\xe4\x65\xe6\xcf\x1a\xdf\xbc\x8c\x5a\x5f\x91\x74\x24\x3c\x6f\x17\x8d\x1e\xd7\xc1\xbc\x1d\x64\x3e\xf9\x9c\x6a\xd7\x00\xa3\x79\xa1\x52\xf4\x35\x78\x4d\xb6\x34\xbe\x64\x7f\x25\x00\x6e\x7f\x7f\xdf\xfd\xfc\xe7\x3f\x77\xec\x1b\x46\x51\x3f\xb1\x67\xeb\xc7\x83\xc0\x8f\x45\x75\x4a\xc7\xb2\xe7\x12\x95\xc7\x23\xec\x2f\x59\x38\xb8\x85\x35\x98\x2e\x72\x77\x72\x32\xb4\x07\x87\xa3\xf2\xe0\xf6\xb8\xdc\x3d\x18\x15\x7b\xb7\x27\xe5\xad\x83\x51\xb1\x7b\x7b\x54\xde\x9a\x0e\xdd\xfe\x22\x77\x07\xa5\xc1\xa1\x23\x9c\x80\x70\x44\xd5\x29\xa1\x63\x54\x9b\x6f\x0f\x51\x5f\xe1\x7f\x04\x6f\xbc\xf8\xa5\xa1\x19\x55\xdf\x23\x8a\x9e\x16\xef\x11\x8a\x46\x0b\xb0\x74\xaa\xb3\xad\x8e\xa1\xc0\x85\x90\xf2\x18\x12\x96\xdb\x37\xd5\xdf\x64\x3e\x29\xdf\x92\x7e\x1f\xbd\xd0\xa0\x95\x63\x39\xa4\x2c\x27\x0d\xae\xed\x9d\xe3\x48\xa5\xb5\x59\xe1\x3c\xad\x8b\x96\x8c\x6f\x4b\xe7\xb4\x2d\x80\x02\x95\x25\x1b\xac\xef\xa9\xff\xcd\x41\xc8\x8b\xcc\x0d\xdf\x3e\x33\x7d\x7d\xfb\x38\xbf\x67\x5c\x98\xb5\xb5\x59\x76\xce\x38\xbf\x19\xab\x5e\x27\x02\x00\x3f\x78\x03\xd5\x65\x74\xc2\xab\x21\x8c\x96\xd0\x3b\xc3\xa6\xdc\xda\xd8\x20\x8e\x92\xc5\xa0\xde\x88\x0b\x7f\x6b\x2e\x4f\x6b\xc4\xb8\x3a\x85\x59\x21\x61\x6f\x0d\x8f\xae\x2d\x23\x4e\xcf\x35\x18\x36\xa0\xe1\x78\x61\x9e\xb8\x70\x7b\x98\x1b\x47\x86\x00\xbc\xb1\x3d\xfd\xf9\xd1\xb0\x3c\x08\x9b\x75\xfd\x6f\xe1\xeb\x2e\xdc\x29\x60\x00\x58\x76\x34\x3d\xb4\x41\x08\x6d\xed\xdc\x35\xd3\xd4\x42\x1f\xb9\x3d\x0d\x7c\x9b\x87\xe2\x34\x74\xfa\xe0\xe4\xe9\xa7\xc1\xff\x41\x78\xb9\x5b\xa1\xad\xaf\xa6\xc2\x07\xe5\xbb\x6d\x96\x76\xa7\x72\xd2\xa5\x97\x52\xcf\x29\x8f\x4b\x9f\xe7\xbb\x21\x63\x6d\x86\x63\x1b\xfc\x69\xeb\xbf\x0f\x1d\x2d\xbe\x0f\x9d\xd3\xca\x83\x06\xdb\xe5\xa5\xc1\xb5\x6b\xd7\x70\xcf\x3d\xf7\xc0\x7b\x2c\x42\x7c\x41\x44\x39\x96\x3d\xc7\xc1\x38\x28\xfc\x49\x9e\x39\x80\xa1\x87\x1b\x02\xc8\xbd\x77\x26\x78\xf0\x8d\xc7\x13\x68\x86\x49\x5d\x1c\x6b\xbc\xd1\x13\x7e\xa5\xd7\x7a\xca\x9f\x19\x4c\xcc\x27\xf8\xb2\xce\x39\x6d\x79\xe8\x54\x75\x82\xbb\xa3\x43\xee\xb6\xee\x6d\x95\x2f\x6d\x8f\x8b\xb4\x64\x79\x68\x9b\xb5\x75\x11\xe5\xde\x10\xcb\xde\x79\x5a\x6a\xd6\xd7\x87\x9e\x66\xed\x01\x00\xb6\xb7\xb7\xcd\x3f\xff\xf3\x3f\xf3\x53\x46\x61\x2f\x56\x18\xe1\x43\xb9\xf9\xb3\x41\x75\x44\x1a\xf3\xcc\x39\x6b\x60\xd7\x66\xd9\xc6\xea\x22\xdb\x18\x58\x1a\xc9\x7b\x6a\x1d\x80\xc6\x4e\x5c\x71\xc5\x3f\x50\x1b\x36\xd1\x48\x71\x81\xd1\xf0\xfd\x0a\xf9\xad\x0b\x34\x36\xfe\x46\x12\xde\x55\x52\x75\x8a\xda\x33\x13\xee\x69\x91\x27\x8f\xaa\xcd\xba\x95\x97\xa5\xb9\xef\xa6\xbe\xbe\xba\x31\xcd\x09\x78\x9c\x2f\x8e\x03\x08\x94\x65\x96\x36\x27\x85\x39\x3b\x59\x64\x43\x47\xd8\x3f\x1a\x95\x47\x8b\xcc\x95\xa0\xea\x94\x11\xd5\x37\xec\x86\x7d\x70\x71\x4d\xf9\xe2\xc5\x8b\xb4\xb3\xb3\x43\xec\x98\x5e\x60\x83\xcf\x6e\xa5\x97\x8d\xc7\x73\xf9\x30\x22\xaf\x9c\x1d\x43\xe0\x92\x79\x02\x4e\x28\x71\x92\x0f\x49\x4b\xd2\x91\xb8\x65\xb9\x52\x65\x6c\x83\xd1\x66\x3d\xda\xaf\xec\xab\x32\x4d\xa3\x29\xeb\x43\x9b\xd1\xcb\x3e\xa4\xbd\x77\x95\x21\xc0\xa5\x94\xa3\xac\x67\x1e\x27\xeb\x38\x25\x03\x12\xb7\x9c\xcd\xa7\xca\x2b\x71\xa4\xf2\xf1\x3a\x4e\x79\x3b\x24\x8f\x7d\x78\x02\x96\xdb\xa7\x0d\xb7\x6c\xeb\xbe\xb8\x25\x8c\xac\x37\x2d\x70\xdc\x12\x07\xe7\x57\x83\xd1\xc6\x0e\xa9\x9b\xfb\xe2\x0e\x21\x25\xeb\x1a\xee\x54\x9b\x45\xdc\x3f\xfb\xd9\xcf\xec\xa3\x8f\x3e\x4a\x2b\x2b\x2b\xf1\x24\x11\x80\xb0\xb9\x35\xee\x75\xf1\x2f\xd6\x3f\x06\xcf\x4b\xf0\xb6\x94\x61\xe9\x86\x88\x16\xec\x79\x16\x2e\x86\x23\xa2\x13\xef\x3d\x39\x21\x7f\x61\x1c\xfc\x46\xdb\x70\x4a\x28\xec\x61\xa1\xfa\xc4\xd0\xcc\xc7\x87\x0d\xb8\x33\xe7\xdc\x02\xfe\x3b\x44\x10\x46\x0b\x50\xed\x69\xf9\xfc\xe7\x3f\x6f\x5e\x7f\xfd\x75\xb2\xd6\x6a\xfd\xaf\xab\xee\xbb\xe4\x8a\xc7\xf3\x7a\xd7\xfa\xb9\x26\x8f\x6d\xfd\xbf\x0d\xb7\x26\x03\x11\xb7\x34\x5c\x34\xa5\xcc\x11\xf6\x31\x28\xf8\x80\x20\x3b\x36\x8f\x27\x25\xee\xb4\x74\x34\x43\x67\x09\xcf\xc9\xc9\x89\xdb\xdc\xdc\x34\xe1\x88\xb4\x30\x10\x88\xe5\x8b\x1d\xdf\x5b\xcf\x04\x20\x03\x21\x3f\xc9\xed\x22\x77\x84\xf5\x59\xbe\x35\x5e\xb0\x6b\xa0\x63\xc6\x70\x45\xbf\xd7\x1a\xfc\xeb\x88\xd1\x80\xa8\xc7\xb6\x38\x32\x93\x37\x26\x18\x4f\x0d\x46\x28\x18\x35\x88\x4e\x90\x60\x88\x38\x84\xbc\xa8\xae\xfc\xa7\x50\x90\xe6\x09\xa3\x18\xa8\x89\xbc\xf2\x0c\x51\xfc\x90\x63\x05\x22\x4e\x3d\x85\x7c\xd5\x43\x75\xc3\xee\x22\xbb\x67\x7d\x96\x8f\x8d\xc3\xfe\xc1\xb8\x38\x9c\x67\x6e\xc1\x36\x2e\x07\xa1\x23\x6f\xbd\x84\x9d\xfb\x44\xcb\x5f\x96\x76\x68\x0a\xba\x65\x5c\x72\x59\x94\xf2\xe0\x94\xbf\x10\x4c\x22\x5e\xc6\x05\x3e\x35\x3a\x32\x4e\xf2\x99\xe2\x87\xe3\x94\xf8\x39\x3e\x99\xc6\xdf\x53\x1d\x5c\x0e\x18\x1c\x3e\xc5\xbf\xac\x4b\xad\x3e\xb4\xfc\x29\x83\x51\xe6\x4d\xfd\x71\xb8\x14\x0e\x28\xf1\x72\xe0\xd7\xfa\x35\x87\x93\x8a\x52\xd6\x9b\xa4\x2f\x75\x83\xac\x53\xad\xad\x64\xdd\x48\x78\xad\xfe\x64\x3b\xf1\x38\xd9\xf6\x6d\x0a\x9d\xa7\x6b\x75\x29\x8d\x3e\x29\x4b\x40\x9a\x47\x19\xb4\xc9\xa3\xa4\xa3\xc9\x22\x87\x69\xa3\xa7\xc9\xae\xc4\xa5\xb5\x3f\xaf\x37\x39\xa6\x68\xc6\x8e\x56\xaf\x8d\x72\xbc\xf2\xca\x2b\x8e\xdf\xae\xee\x8d\x96\xb0\x59\xd7\x01\x00\x55\xb7\xcf\x3a\xbf\x24\x53\x80\xdd\x4c\x8b\xca\xa8\x58\x04\xa3\x85\x79\x4e\x66\x54\x7f\x3f\x68\x8a\x6a\xa9\x27\x2c\xf9\x1c\x7b\x63\x86\x1b\x2f\x33\xd4\x47\x9c\x4f\x7c\x9e\x39\x55\xdf\x1e\x9a\x03\x08\x46\x4b\x38\x3d\xd4\x30\x5a\xac\xb5\x78\xf1\xc5\x17\xdd\xab\xaf\xbe\xea\xac\xb5\x4c\xb3\x27\xe5\x5a\xb6\xab\xec\x13\xb2\xbe\x52\x46\x34\xd7\xd3\x92\x5e\x1b\x0c\x0f\x9a\xb1\xae\xf1\xa4\xca\x91\xbc\x39\x57\x22\x6d\x23\x90\x9a\xb1\xc9\xc1\x40\xb3\xfa\x64\x41\x52\xcf\x1a\x3f\x21\x48\xda\x1c\x2e\x18\x4f\x91\xe7\xd9\x6c\xe6\x80\xc6\x7e\x17\x2e\xcc\xf2\xdd\x78\x21\xae\x6e\xd4\x75\x8e\x6c\x06\x9c\x0c\xec\x7c\x5c\x9a\xd1\xda\x3c\xdf\x1a\x15\x66\x8d\xa2\x29\x22\x3e\x57\xee\x00\xe1\xda\x68\x14\xae\x36\x4a\x78\x69\xbc\xd1\xc2\x8f\x4b\xb3\x1c\xda\xd2\x51\x94\x52\x6f\x33\xd4\xde\x17\x8e\x98\x61\x72\x50\xf1\xd4\x36\x47\x1d\xcb\x69\xf3\x7c\x06\x64\xfc\x3d\x2f\xf7\x6f\xcc\xb2\xed\x71\x99\xdd\xba\xb1\xb6\xd8\x8b\xa7\x8d\xc2\x87\xb3\xfd\xd1\x3c\x66\x20\x06\x46\xdc\xce\xce\x0e\x29\x97\xd5\x49\xe5\x78\xa7\xa1\x2b\x7f\xaa\x33\x4a\xf9\x4e\xe5\xd5\x3c\x1c\x1a\xed\x54\x7f\x0a\x69\x52\x31\x6b\xf9\x64\x5e\x6d\xc0\xd2\xfa\x41\xc8\xa7\xe1\x93\x41\xa3\xa7\xf5\xd1\xbe\x41\x96\xb5\x6d\x06\x28\xf1\x77\xe9\x81\x36\xfe\x52\xf5\xa0\xd1\xe3\x7d\x3e\x25\x77\x29\x59\x48\x0d\xb4\x6d\xfc\xf1\x38\xa9\x6f\x52\x72\xc8\xe1\xb5\x81\x28\x55\xb6\x36\x9e\xfb\xc8\x16\x06\x83\x81\xf1\x03\xa1\xcc\xdf\x36\xd9\x4c\x19\xde\x3c\x3d\xd5\x7f\x52\x03\x1f\xe7\x8b\xb7\x95\xe4\x4b\x33\x76\x25\x7f\x7c\x50\x07\x00\xfc\xc6\x6f\xfc\x06\x7d\xfd\xeb\x5f\xb7\x6c\xdf\x4b\x05\x50\xef\x7d\xb1\x7e\x5f\x8b\xf3\xf7\xbd\xf0\x65\x9e\x02\xd5\xd2\x78\xe1\x0d\x8d\x05\xea\x4d\xb6\x33\x54\xc6\x4a\x78\x3e\x09\x7f\x22\xfd\x24\x6c\xbe\xc5\xf2\x61\x87\x02\xd5\xc5\x72\x61\x6f\x4d\x19\x78\x02\xaa\x8d\xb8\xde\x7b\xad\x0d\xfa\x6d\xf2\x29\xeb\x9e\xd7\x25\x8f\x97\xfa\xa3\xcd\x68\x96\xef\xd2\xa0\x69\xeb\x97\xf2\x99\xf3\x97\x6c\x57\x7e\x73\x6e\x1f\xa4\xf2\x59\x33\x5a\x24\x71\x9e\xaf\x4d\x69\xb5\x0d\x1a\xbc\xf3\xb6\x0d\x70\x9a\x90\x2f\xc1\x85\x5b\x75\xbd\x30\xc6\x25\x23\x76\xf2\xa8\xa1\xe0\x7c\x5c\x3e\xcf\x5d\x39\xcf\xec\x7c\x5c\x98\xd1\xea\x3c\xdb\x1c\x96\x66\x45\x1a\x11\x81\x72\xea\x54\x51\x88\x8b\xbd\x48\x9c\x2a\x8a\x9e\x92\x68\x6f\x34\x2d\x9f\xd4\xa9\x22\x40\x18\x42\x0c\x28\xa0\xd2\xd2\xa3\x33\x25\xf0\xad\xd0\x96\x86\x16\x01\x64\x1c\xad\x8c\x0a\x73\xdf\xd6\x49\xfe\xd0\xe6\x74\x70\xeb\xfa\xfa\xfc\xe6\x3c\x77\xb6\x2a\x3b\xf3\x1e\x31\xf7\x2b\x9a\x1d\xcb\x89\xe3\xd2\x21\x9d\x07\xcd\xa0\xe6\x8a\x9f\x77\x32\x6d\x46\xd6\xc7\xe0\x4d\x0d\x2a\x06\xcb\x74\xb4\x7e\x92\x1a\x8c\xfb\x0c\x26\x92\x1f\x69\x40\x71\x05\xa4\x0d\x1a\x6d\x86\x54\xaa\x8f\xa4\xfa\x9e\x1c\xc8\x35\x78\xad\x4e\x24\x9c\x4c\xd3\x66\x66\xbc\xdb\xf0\x3f\xad\x2d\x65\x9d\xa4\x26\x2c\x5c\xc9\x69\x3c\x6a\xde\x09\x59\xbf\xfc\x4f\x9b\xf9\xf3\x3a\x5a\x1a\x08\x15\x3a\x21\x3f\x8f\xd7\xf2\x05\xdc\x96\xc1\x3b\x91\x57\xf2\x2d\xfb\x8e\x94\x7f\x6d\xc2\xa8\xe6\x3b\x7b\xf6\x2c\xfd\xf9\x9f\xff\x79\x9c\x48\x58\x6b\xdd\xd6\xd6\x96\x99\x4e\xa7\xbc\x1e\x43\xd0\x06\x25\xd9\x3e\xb2\xfd\xa4\x11\x26\x79\xa2\xc4\xb3\x36\x68\xca\xf6\xe0\xbc\xa4\x96\x25\xe4\x4c\xce\x00\xa0\x1f\xfd\xe8\x47\x16\xa8\x26\xb3\xe1\xd3\x00\x00\xe2\xbe\x14\xe6\x81\xb1\xdc\x90\xf1\xc6\x4b\xe9\xbd\x2e\x85\x5f\xce\x99\x53\x75\xfa\x67\x86\x7a\xd9\x68\x11\x3c\x2f\xde\x33\x13\xbc\x31\x33\xaa\x2e\x91\x9b\xa3\xb9\x24\x34\xf7\x06\x51\xb8\x72\xc2\x7a\x9a\xc1\xcb\xe2\x80\xa5\x23\xcf\x5a\x7f\x90\xf2\x99\xd2\x65\x29\xb9\xe7\x86\xa8\x46\x47\xd3\x4b\x29\x23\x25\xd5\x8f\xb5\x7e\xce\xf9\xe0\xe5\x58\x2a\xaf\x41\x53\x28\x65\xe0\xe9\xf2\x57\x06\xcd\xb2\xb3\x58\x56\xac\xa9\xa0\xc1\x19\x91\x16\xf0\xb5\xe1\x09\xf9\xb8\x10\x37\x42\x38\x36\xe6\x3d\x02\x01\x67\x70\x09\x06\x6b\x37\x6c\x96\x0a\x7f\x87\x00\x8e\xaf\xaf\x2e\xde\x7f\xed\xdc\xc9\x2b\x57\x37\xe6\xaf\xcd\xf2\xf2\x10\xae\x6e\xb5\x4a\xea\x2b\x1a\x61\xbb\x0b\x80\xf8\xc0\xd3\x43\x20\xd1\x4c\x11\x57\xf8\x52\xa8\x73\xd5\x3e\x17\xc7\xb2\x2a\x6a\x93\x8f\x52\x55\xff\x8b\xb7\xc6\x30\xd0\x80\x93\xe7\x71\x0d\x20\x72\x6e\x89\x47\x17\xcb\xd2\x94\x49\xe3\xb0\xb6\x32\xcf\x2e\x7e\xe8\xe6\xf8\x7f\xfb\xcc\x6b\x5b\x7f\x78\xe1\x60\x78\x21\x2b\x69\x85\xfc\x91\x41\x00\x43\xaa\x36\xab\x55\xd7\xf9\x01\xc6\xff\x5a\xa0\x3a\xa6\xee\x51\x49\x39\x01\x74\x43\xd8\x0a\x58\x29\x17\x1a\xbc\x0c\x5c\x2e\x24\x0d\x89\x5b\xd2\xe9\xea\x2f\x12\x57\x9f\xa0\xe5\x49\x95\x8f\xc3\xa5\xea\x27\x15\x64\x5f\x92\xf9\x24\xcd\x90\xa7\xad\x7e\x52\xb4\x35\x5e\x39\xbe\x54\x1d\xa7\xca\x94\x9a\x39\x6a\x65\xd2\x70\xb6\xe5\x4b\xf1\x94\x82\x91\xf0\x1c\x9f\xe4\x45\x83\xed\x53\xff\xa9\xf6\x97\x3c\x75\xc1\x40\xc0\x5b\x00\xf8\xc4\x27\x3e\x61\x00\xd8\xaf\x7e\xf5\xab\x00\x60\x6f\xde\xbc\xb9\xc4\xd3\xde\xde\x9e\xf5\x30\xbc\x0c\x29\xd9\xd0\xe4\x44\xd2\x3e\xed\xb3\x86\x9b\x3f\xa7\xfa\x84\x7c\x86\x80\x97\x6d\x89\xbf\xfc\xcb\xbf\x34\x40\x73\x3c\xf0\x4b\x45\x16\xde\xab\x02\x6f\x98\xa0\x3e\x92\x1c\x0c\x92\x63\xbf\x0c\x74\xe8\x9c\x3b\x0c\xcf\xa8\xf6\xb3\x1c\xa2\x3a\x1d\x14\x6f\xbe\x0d\x7f\xde\xd3\x12\x6e\xc1\x0d\xcb\x43\xf1\x98\x33\x9a\x4b\x53\x08\xfc\xbd\xf0\xc2\x0b\xf6\x0f\xff\xf0\x0f\xdb\xe4\xad\xab\xbc\x5a\x5f\x49\xe9\xd5\x54\xdf\xd1\xda\xba\x75\xcc\xed\xa0\x2f\x65\x2c\x25\xd3\x31\x84\x21\x2a\xa5\x18\x52\xcc\x6a\xc2\x24\x7f\xdb\xf0\xb4\xe5\x0f\x71\x3c\x68\xf8\xfb\xf0\xc4\x71\x2d\xf1\xe4\x07\xce\x90\x1e\xce\xf3\xe7\xa8\x76\x8c\x8f\xfd\xef\x1a\xfb\xdb\x80\xc3\xc6\xb0\xa4\xed\x47\x6f\x8e\xff\xd3\x87\xdf\x5b\xfb\xc4\x85\x83\xe1\x93\x03\x6b\x86\x24\xd7\x61\x92\x81\x4d\xba\xf8\xfc\x4b\x7b\x0f\xd1\xca\xa6\x5d\x1d\x33\xbb\xcb\xc5\xb3\x13\x8f\x43\x33\xf6\x1a\xd3\xbe\x00\x27\xd8\x77\x2a\xaf\xc1\x73\x14\x52\x09\x20\x07\x07\xcc\xa7\xb9\xfb\xc5\xfb\x1b\xb3\xff\xe3\xa5\xfb\x8e\xbe\xfb\xce\xe6\xf4\xca\x6c\xe0\xc2\x5d\x04\xdc\x18\xb4\xec\x37\xcc\x6a\x00\x34\xee\x20\xb8\x93\xd0\x36\x28\x9f\x16\xcf\x07\xc5\x71\x37\xc3\xdd\xe2\xe7\x97\x5d\xae\xae\x3e\x0f\x74\x1b\x20\xa7\xd1\x3f\xa7\x81\x69\xd3\x39\x77\x82\xbb\x8f\xee\xba\x93\x32\xa6\x60\x4e\xab\xef\x3a\xf9\xfe\xca\x57\xbe\x62\xfe\xea\xaf\xfe\xca\x3e\xfb\xec\xb3\x86\xeb\x95\xd4\xe1\x80\xc4\xa9\x95\x2e\x43\xa3\x4f\x9b\x22\x01\xd3\xa7\x3f\x77\xd1\xb9\xa3\xfa\xe6\x77\x7e\xb1\xfa\xe0\x86\x77\x63\x32\xcf\xef\x84\x91\xf0\xa2\x3e\xb9\xce\x6b\xdc\x75\x05\x36\x58\x33\x9d\xd8\x80\x49\xb4\x83\xac\xa7\x3e\x75\x82\x1e\x30\xbf\xea\x3e\xda\x87\x36\x0f\x56\x5b\x2a\x32\x90\x53\xeb\xf6\x77\xe9\x8a\xd5\xdc\xd3\x29\x58\x88\x5f\x83\x7a\x4c\xb5\x68\xba\x86\xa5\x6b\x37\xc5\x07\x7f\x0e\xf0\x8d\xf2\x9d\x3f\x7f\x9e\x8e\x8f\x8f\xb9\x7b\x90\xbc\x7b\x10\xe1\x19\x00\xbf\xa8\x08\xf0\xfb\x5d\x40\x30\x25\x01\xf3\xdc\x2d\x0c\x60\xd6\xe7\xf9\xda\x64\x61\xd6\x8d\xff\x6a\x28\xdf\x44\xbb\xe4\xf2\x60\x2f\xdc\x60\xa8\x88\xb2\x92\x2e\x79\x65\xc2\xc6\x11\xc4\xbb\x57\x1a\x1b\x71\xe3\x92\x0e\xc5\x38\x20\xdc\xce\x5b\x31\xa3\x1e\xaf\xf6\x88\x08\xc2\x68\xf1\xf8\xab\x25\x23\xbe\xe9\xb8\x76\x27\xd5\x9b\x81\x09\x04\xca\x72\x8b\x8d\xc9\xc2\xdc\xbb\x3e\xcf\x47\x8e\x70\x7b\x3a\xb0\xe1\xc4\x51\x8d\xb6\xfe\xb8\x25\xa1\x9a\xd5\xc4\x52\x5f\xbc\x78\x91\x9f\x38\x92\x32\x18\xe4\x42\x73\x93\x07\xd9\xd0\x5c\x92\x9a\xdb\x5a\x83\x91\xb2\x28\x79\x90\x70\x68\x81\xd3\x5c\xb3\xd2\x1d\x2b\xdd\xae\x5a\xd9\x90\xc8\x9f\x72\xc9\x6a\xb8\xb8\x44\x49\xf8\x54\xf9\x34\xdc\xb2\xde\x64\xfe\x36\x78\xcb\x70\x77\xb9\xa7\x35\x1a\xd2\x6d\xac\xd5\x21\xb0\x8c\x5b\xd3\x17\x1a\x1f\x3c\x6f\xaa\xed\x38\x7d\xfe\x6c\x45\xfe\x36\x5e\xf9\xe0\x92\xaa\x07\x9e\x57\xf2\xaf\xcd\xac\xb5\xfa\x4b\xd5\x9b\xfd\xca\x57\xbe\x62\x7e\xf3\x37\x7f\x93\xf2\x3c\x87\xdf\x98\xca\xef\x61\x8a\xfc\xf8\x4d\xf5\x95\xf6\x20\x02\x3f\x11\xf8\x85\x2f\x7c\xc1\x5c\xb8\x70\x81\xde\x7a\xeb\x2d\x30\xfc\x56\xa1\xc9\xe3\x34\xf9\xb5\xd0\xeb\xdb\x09\x3c\xa9\x3e\x0d\x06\xab\xe9\x0a\x49\x5f\xab\xf3\x58\x6f\x67\xcf\x9e\x35\xeb\xeb\xeb\x74\xe6\xcc\x19\xac\xae\xae\x06\xdc\x11\x7f\xd8\xc0\x0b\x34\x3e\x66\xe8\xe0\xf7\x9e\xf8\xa5\xa3\x12\xfe\x1a\x7e\xd4\xfb\x53\x16\xf0\xfb\x55\x5c\xf5\x4d\x21\x7e\xe3\x6d\xd8\x74\x5b\x86\x7d\x35\x61\x53\x30\xaa\x86\xb0\xfe\x11\x2f\xbd\xf4\x12\x76\x77\x77\x69\xb1\x58\x48\x79\xd1\xe4\x80\xc7\xf1\x72\xf3\x3a\xe7\xf5\x9b\xaa\x37\x39\x8e\xb6\xf5\x11\xcd\xa8\xd2\x60\x34\xdd\x2e\x65\x5d\xb6\x3b\x97\x09\x0b\xc0\x88\x21\x72\xc9\x22\x03\x7b\xe7\x30\x5d\x33\x1b\x2d\x9f\x96\xb7\xeb\x5d\xf2\xa4\xbd\xa7\x82\x9c\x05\xa8\x3c\xb1\xe5\x0a\x6e\x4d\x07\xaf\x4b\xf0\xbc\xac\xf8\xbf\x0d\x78\xcf\x8b\xb1\xd8\xd8\x3e\x1e\x3c\xf4\xd4\xb5\x95\x8f\x3e\x79\x7d\xe5\x99\xf5\x69\x76\x8f\x61\xde\x89\xfa\x32\x39\x1f\x95\x38\x35\x14\x83\x8f\xd4\xd2\x98\x72\x51\x66\x44\x6c\x74\xaa\xc9\x37\xf0\x4a\x67\x4d\x34\x82\x7c\x1e\xd5\xbe\xe2\x74\xb5\x34\x25\xce\xc2\x15\xf3\xdc\x5e\xb9\xb9\x5a\xfc\xe0\xad\x33\xd3\xff\xf3\x8d\xed\x93\x97\x6f\xad\x2e\x6e\x94\xa6\xd5\xf3\xd2\x98\x59\x1c\x1c\x1c\xe0\x9b\xdf\xfc\xe6\x2f\xdb\xeb\xd1\x67\x76\x70\x27\xb0\xff\x11\xc3\x7f\x24\xfe\xb5\x99\x39\x7f\x4e\xa5\xa7\xf0\x74\xe1\x3b\x2d\x1f\x7d\x42\x17\xdf\x29\x3e\x43\xe8\xcb\xf7\xd2\x2c\xf3\x03\xe4\xc3\x57\xbe\xf2\x15\x33\x1c\x0e\x25\x6f\x0d\xc3\x85\x4d\xd8\xb8\x37\xa0\x81\x07\xa8\xbc\xa3\x9f\xfd\xec\x67\xcd\xf7\xbe\xf7\xbd\x2e\xbe\xa0\xc4\x9d\xb6\xcd\xee\x46\x1b\x9f\x2a\xfe\x91\x47\x1e\x31\x6f\xbd\xf5\x56\xc3\x23\xa5\xd4\x8f\x49\x3c\xa3\xe3\xd9\x0a\x1d\x6e\x53\xe9\x2d\xde\xae\xae\x32\x7f\x10\x99\x3e\x0d\xee\xbb\xfd\xdc\x1b\xb6\xed\x38\x74\x18\x9b\x64\x81\x52\xb3\x32\x9e\x4f\x7a\x5e\x8c\x88\x93\xef\x12\x07\xcf\x27\x3d\x26\x1a\x6e\x6d\x46\x29\x2d\x36\x8d\x1e\xdf\x98\xc5\x37\x91\x92\xf8\x0d\x06\x4d\xd8\x6c\x6a\x1c\x01\xf3\xcc\xd9\x22\x73\x6e\xbc\x30\xc3\xf5\x59\xb6\x9d\x97\x66\x08\x20\x1e\x51\x96\xc7\x93\xe3\xd1\x60\xc9\x28\x37\x2e\xa2\x22\x61\x46\x05\xcf\xc3\xee\x63\x71\x1e\x3b\xc5\x73\xcb\xcc\x98\x08\x1f\x83\x0c\x70\xac\x73\x10\x03\x24\xd4\xb4\xa9\x99\x35\xd2\xa5\xaa\xdc\x0d\x3e\xf8\x94\x27\xb2\x06\x32\xb9\xa5\xb5\x71\x61\xce\xaf\x2e\xb2\xcd\x61\x61\x9c\x25\x77\x3c\xcd\xdd\xac\xcc\x9c\x15\x59\x63\x76\xb6\x39\xda\x8d\xc7\x63\x08\xef\xcb\x2f\x23\x9c\x06\x77\x9b\x87\x46\x06\xad\x5f\x68\x71\x1f\x34\x70\x7e\xba\x70\xa7\xbc\x48\x6d\x78\x3f\x28\x5f\xa9\xb8\xa6\xb8\x2c\xc7\xa7\xd2\xa5\x37\xc1\x76\xc0\x77\x95\x99\xc3\xb6\xb5\x67\xc8\x9f\x82\xef\xa2\xc7\x3d\x3c\x5c\x97\xa6\xf0\xc9\x67\x2b\xf2\xf5\x29\x2f\x9f\x59\x3b\xa0\x9a\x9c\x19\x63\xe2\x32\x46\xd4\x61\xfe\xc3\xb2\x7e\x50\xce\xc0\x26\x6f\xc1\x35\xea\x61\x1a\x1e\x90\x9d\x9d\x1d\xfa\xbb\xbf\xfb\x3b\xae\x97\xbb\xea\x53\xea\xef\xae\x32\xa4\xf2\x6a\x74\x52\x7d\x41\xf3\x26\x68\x1e\x9a\x25\xf8\xfd\xfd\x7d\x02\xe0\x8e\x8f\x8f\xe9\x1f\xff\xf1\x1f\xf9\xa9\xa3\xf8\x17\xaa\xc7\x3f\xc7\xa5\x9e\x00\x17\x7e\xd9\x09\x25\x07\xbf\xe9\x56\xe0\x02\x6a\x2f\x8e\x03\xaa\xcd\xb7\x97\x2e\x5d\x72\xc7\xc7\xc7\x74\xe3\xc6\x0d\x8d\x57\xcd\x2b\xc1\xcb\xd0\xd6\x77\xda\xf2\x69\xf0\x6d\xb8\xb9\x57\xa7\x4f\x1b\x4b\x6f\x97\x84\xef\xdb\x2f\x5c\xea\x02\xba\x50\xb0\x94\x15\x96\x6a\xfc\x94\x10\xc9\x8a\xe0\x05\x4e\xe5\xed\x63\x51\x73\x85\x90\x72\x31\x69\xf8\x63\x05\xfe\xc1\x1f\xfc\x01\x6d\x6e\x6e\x36\x06\x4f\xd4\x82\xb9\x54\xe9\x54\x7f\x51\x9a\xac\x01\xe6\x99\x2b\xad\x71\x6e\x6d\x96\xaf\xad\x2e\xb2\xad\x0c\x94\x01\x4d\x2f\x47\xbd\xc4\x52\x3d\x3b\x5f\x23\xfc\x82\x38\x1e\x88\xdd\xc9\x42\x0d\x83\x23\x7c\x81\xba\x36\x2e\xb8\x31\xc2\xbf\x16\x1d\x1f\xe2\x07\x15\x19\x91\x00\x17\x6a\x01\x68\x1a\x36\xc2\xf0\x6a\x94\x21\x66\x76\x31\xb6\x41\xd7\x91\xc9\x1c\xad\x8e\x0a\x73\x7e\x75\x9e\x9d\x19\x17\x26\x07\x70\x3c\xcb\xed\xc9\x2c\xb3\xb1\x9e\x51\x75\xea\xb0\x2e\x47\xa1\xdc\x21\xed\x99\x67\x9e\x89\xa7\x1c\x9e\x79\xe6\x19\xf3\xee\xbb\xef\xf2\xb6\xd5\xe4\x07\x22\x4d\xeb\x8c\x5a\x7a\x9f\x3c\xa1\xe0\x2e\x91\xce\x95\xaf\x8c\xe7\x34\xb4\x74\x99\xa6\x3d\x43\xa1\xc3\x7f\x65\xd9\x53\x34\xbb\x14\x94\x56\x9f\x9a\xd2\x93\x69\xe1\x5d\x73\x27\x03\x7a\x7b\x75\xb5\x03\xc7\x95\x52\x78\x3c\x0f\xa0\xd7\xab\x84\x97\x6d\x98\xd2\x1d\x21\x5d\xf2\x8b\x04\xac\x86\x8f\x97\x41\xe2\xe4\xb2\x25\xcb\x20\xd3\xdb\xea\x47\xd5\x79\xcf\x3d\xf7\x9c\xd9\xd9\xd9\xa1\x8b\x17\x2f\x86\xbe\x65\xfc\xf2\x4f\x30\x4a\x8c\x37\x5a\x32\x00\xc6\x80\xb2\xd5\x79\x96\x9f\x3d\x1e\x8c\x0c\x88\x0a\xe3\x60\xab\x6f\x12\x72\x6f\x02\xf9\xa5\x8b\xd8\x3f\x7d\xdf\x94\xe5\x4c\xf5\x29\x88\xb4\xb6\xba\x97\xb0\x52\x96\xa4\x31\x27\xe5\x48\xd6\x6b\x80\xd5\xda\x58\xb6\xab\x03\x80\x1b\x37\x6e\xb8\x33\x67\xce\x98\xef\x7f\xff\xfb\x36\xdc\xfb\x22\x71\xf9\x65\xa2\xd8\xb7\xc2\xbb\xfc\x0d\x38\xfd\x04\xd6\x06\x58\xd4\x63\x4d\x3c\xe2\xfc\xf1\x8f\x7f\xdc\x5c\xbf\x7e\x9d\xae\x5f\xbf\x9e\x5a\x02\x4c\x2d\xbf\xca\x32\x6a\x75\xc6\xc7\xd6\x14\x0c\x2f\x23\x04\xbc\x94\xef\x2e\x3d\x2b\x65\x43\x8e\xff\x29\x79\x90\xfc\x35\xf8\x16\x43\xa6\xca\x24\x12\xcf\xa1\x53\xdd\x2d\x77\x6f\x17\x3e\x0d\x7f\x1b\xcf\x32\xad\x8d\x87\x3e\x4b\x46\x43\xe7\xdc\x0a\x11\xad\x40\x6c\xd6\x5d\x9d\x67\xf7\x3c\x71\x63\xf2\xe1\x8f\x5c\x5d\xfb\xe4\xf6\x71\xfe\x70\xf8\x24\x80\x5c\xda\x09\x2d\xc6\x23\xf8\x3e\x13\x6d\x03\x6d\xcc\xc3\x32\x37\xf1\x2c\x61\xf5\xde\x11\x6f\x24\xb1\x65\x26\x30\x23\x07\x9e\x5e\xb4\x6f\xd0\x94\x90\xc6\x97\xa5\x03\x30\x31\x03\xc6\x79\x38\x4d\x82\x7c\x28\xc9\x1d\x4e\x73\xfb\xda\xf5\xb5\xf9\x0f\xde\xdc\x9e\x7e\xff\xad\x33\xd3\x9f\xef\x4d\x8a\x3d\x67\xe2\xd5\xd6\x05\xfb\xb3\xec\x0f\xe1\xf7\x03\x6e\xda\xfd\x65\x04\x29\xa7\xa7\xcd\x7b\x37\xcb\x73\xb7\xf1\xfd\x32\x42\x1f\x1e\xfb\xea\x9c\xb6\x67\x89\x0f\x22\xad\xaf\x5e\xea\x82\xef\xd2\x31\x77\x93\x4e\x08\xa7\xc2\xcd\x74\x19\xc7\x13\x7f\xbd\x87\x25\xea\x39\x63\x61\xd6\x67\xd9\xf0\xf1\x1b\x93\x7b\xce\x1e\x0d\xee\xb9\xb9\xb6\x78\xf7\x95\x7b\x8f\x6f\x4c\x07\x76\xee\x9a\xd7\xde\x37\x4e\x61\x02\x6a\xff\xec\xd2\xd7\x7d\xdb\x35\x94\xbb\xab\x0e\xfb\xf4\xc7\xbe\x32\x93\x6c\xd7\x95\x95\x15\x73\x7c\x7c\x6c\x01\xe0\xd3\x9f\xfe\xb4\xf9\xc1\x0f\x7e\x10\x61\x43\x7d\xf7\x5c\x2a\x8a\xfa\x38\x2c\x03\x49\x7c\x1d\x3c\xb5\x85\xd3\xc8\x5e\x9f\x7a\xb8\x1b\x72\x7f\x9a\xba\xef\x5d\x5e\xed\x23\x8b\xd2\xe2\x97\x56\x18\xb7\xf4\x5c\x4b\x3e\x6d\x06\x07\x96\x46\x02\x86\xd3\xe1\x05\x90\x78\xb5\x19\x94\x36\x1b\x92\x7c\x71\x78\x59\x16\x3c\xf6\xd8\x63\x34\x99\x4c\x1a\x71\x61\x37\xa9\xff\x0d\x02\x47\xac\xd3\x57\x9b\x75\x8d\xb3\xd3\xa1\x5d\x0c\x4a\xca\x37\xa7\xf9\xf6\xb0\x34\x2b\x15\xf6\x70\xb3\x6e\xd8\x40\x2b\xbe\xe0\x1c\x3d\x1c\xf5\x4d\xb5\x8d\xcd\xb6\xcc\x90\xe1\xd6\x45\xd3\x56\xe0\x26\x4c\x5d\x15\xd1\x60\x8a\x9b\x6b\x9b\xf4\x63\x6e\x39\x87\x08\x27\x87\xa2\xd1\x52\x59\x30\xe4\xcf\x77\x73\x7e\x96\x8c\x16\x61\x43\x19\x47\xc3\xdc\xd2\xf6\xca\x22\xbb\x67\x6d\x96\xad\x0d\x4b\x33\x9b\xe5\xf6\x68\x9a\xdb\x85\x23\x58\x57\x7f\xe6\x31\x7a\x5e\xfc\xac\xd0\xfa\x28\xda\xd9\xd9\x69\x6c\x0e\x7c\xf4\xd1\x47\xcd\x6c\x36\xa3\xa2\x28\x52\x5e\x8b\x48\x9e\xbd\x73\x38\x6d\x46\x97\x9a\x31\xc8\x19\x81\xb4\xef\x52\xf9\x53\xb8\xad\x92\xa6\xc1\xa5\xd2\x78\x08\x0a\x3b\x55\x0f\x9c\x6f\x0d\x5f\x17\x5d\xad\xec\xb2\x1e\xdb\x70\xf0\x32\xb7\xb5\x8f\x9c\xb8\xf4\x9d\xf9\xc9\x99\x22\xe7\x51\x9b\x09\xa6\x66\x70\x5a\x5d\x69\x33\x3e\x39\xc3\x95\xfa\x51\xea\xca\x54\xfb\xa4\x66\xfa\xda\xcc\xb7\x2d\x3d\xf2\xb4\xbd\xbd\x6d\x2e\x5c\xb8\x40\x7b\x7b\x7b\x4e\x4c\xc0\xf8\xdd\x54\x06\x40\xe6\x9c\xcb\x88\x68\x00\x20\x87\x43\x3e\xb0\x34\xdc\x3e\x19\xac\x3f\x7e\x73\xf2\xf8\x87\xdf\x5b\xfb\x2f\xf7\x1c\x0d\xff\x60\x63\x9a\xd3\xcd\x95\xc5\xf5\xa3\xa1\x9d\x39\x03\x7e\xdf\x55\x38\xc0\x10\x74\xa1\xdb\xd9\xd9\xa1\x67\x9e\x79\x86\x66\xb3\x19\x1d\x1c\x1c\x50\x51\x14\x5c\x6f\x4b\x99\xe7\xba\x5a\x9b\x8d\xf3\xb6\xd2\xca\x2c\xeb\x8e\x04\x6c\xea\xaf\xab\x4d\x24\x2f\x4b\xed\xba\x58\x2c\x22\x8e\xcb\x97\x2f\xe3\x33\x9f\xf9\x0c\x3d\xf9\xe4\x93\xf4\xd8\x63\x8f\xd1\xdf\xfe\xed\xdf\xda\x33\x67\xce\xd0\xb7\xbe\xf5\x2d\x7b\xe6\xcc\x19\x9a\x4e\xa7\x58\x5b\x5b\x43\x08\x6f\xbc\xf1\x06\x76\x77\x77\xb1\xbb\xbb\x8b\xbd\xbd\x3d\xec\xee\xee\xe2\x5b\xdf\xfa\x56\x03\x1f\x74\x39\x4c\x79\xa4\x52\xfd\x4e\xf3\x58\x68\x75\x26\x61\xdb\xda\xa4\x4f\xfd\xc8\x76\x45\x0b\x3e\x1e\x64\x1f\x90\x34\x34\xde\x1d\xd0\xf4\xb8\x68\x56\x4f\xca\x0a\x6e\xcb\x23\x19\x3b\x95\x25\xa5\xd0\xfd\x65\xe6\x69\x04\xde\xe9\x59\x87\xcf\xa1\x6f\xd6\xad\xbd\x2e\xc0\x9a\xb1\xd8\x3a\x7b\x3c\x78\xe0\x63\xef\xac\x7d\xf2\xb1\x1b\x93\x8b\xd5\xcd\xba\x40\xc3\x43\x11\x8c\x01\x61\x80\x70\xcb\x6d\xc9\xd3\xc2\x82\x9a\x16\x8f\x25\xc5\xff\xa2\xc7\x84\x23\x68\x8e\xb8\xe1\x8b\xd1\xcb\x86\x0c\xdf\xcb\x12\x3c\x2d\x7c\x53\x31\xb8\x31\xc5\x18\x4f\x79\x8b\xbc\xa7\xc6\x96\xc6\xdd\x3a\x1c\x96\x2f\xbe\xb3\x39\xfb\xee\x2b\x17\x8e\xff\xe5\xe6\xea\xe2\xda\x2c\xb7\xc7\x0e\xd5\xe7\xdd\xc9\x7f\x8b\x03\x4d\xef\x0b\xe4\xef\xaf\xd8\x03\x73\x9a\xd9\x59\x0a\xe6\x4e\x67\x1f\x7d\x78\x3a\x2d\x8e\x5f\x55\x3f\xd5\x78\xe4\xfa\x43\xea\x12\x0d\x4f\x97\xee\xe9\xcb\x57\x0a\x37\xe7\xe5\xb4\xb3\x46\x2d\xaf\x46\xbf\x6f\x7d\xb6\xc9\x4a\x2f\x1c\x61\x23\x29\xdf\x2c\xea\xf3\x1a\xa0\xe1\x65\xa9\xf4\x99\x43\x3e\x2a\x68\x78\xfe\x68\xb8\xf5\xc4\xf5\x95\x27\x3f\x74\x6b\xfc\xdb\xeb\xb3\xec\xf7\x8d\xa3\x87\xe7\x99\xfd\xe7\x37\xce\x9e\xfc\xef\x2f\x3e\x78\xfb\xc5\x1b\xab\x8b\x03\x6b\x6a\xef\x68\xb8\x67\x84\x9a\x5f\x26\x96\x7d\x53\xf2\x7c\xb7\xe5\xb4\xef\xbb\x8c\x3b\xad\x1c\x9d\x86\xa7\x5f\x59\x5b\xf7\x80\x3f\xad\x8e\xe8\xea\xaf\xa7\xc9\x77\x5a\x3a\x29\xd8\x56\x5e\x32\x25\x03\xb7\xe4\xa4\x15\x2c\xad\x3d\xcd\x0b\xc2\x03\x87\x0b\x78\xb4\x67\xfe\xae\x59\xc5\x1a\x8c\x8c\xd7\x3c\x31\x5a\xd0\xd2\x0c\x50\xdd\xe4\x1a\x3e\xc4\x48\xc1\x45\xd1\xb4\x2b\x08\x4d\xeb\x2f\xe6\x77\x00\x4d\x07\xb6\x3c\x19\xda\xe3\xad\x93\xc1\xd6\x64\x91\x6d\xe6\x8e\xf2\x68\x20\x10\xd5\xcb\x2f\xd4\xcc\xdc\x44\xe6\xf7\xa4\x84\x37\x66\x10\x34\xa6\x59\x0d\x6f\x0c\xc1\xf9\xaa\xae\x6f\xe8\xe5\x00\x4d\xdc\x15\x8e\x1a\x1b\x37\x86\xf8\xb1\xe7\xea\xbd\x4e\x0d\xdf\x31\xd2\x18\xd7\x8e\x5b\x87\xfc\x04\x22\x72\xb4\x32\x2c\xcd\x03\xeb\xb3\xfc\xbe\xed\xe3\x41\x5e\x64\xee\x60\x96\xd9\xf9\x22\xf3\x5f\x9e\x6c\xb2\x4a\x40\xfd\xa9\x79\xa0\x76\x7e\x25\x3e\x17\x00\xb4\xb7\xf9\x9d\x86\x14\xbe\x3e\x74\xb4\xbe\xe1\x12\xcf\xa7\xc1\xcd\xe5\x3f\xd5\x97\x4e\x1b\x2f\x67\xa6\x7d\x43\xaa\x0d\x24\xcd\x50\x0f\xbc\x4f\x71\x3d\x23\x67\x94\x12\xb7\x9c\x35\x6b\xf0\x32\xaf\x41\xba\x4c\x0e\x3a\x1d\xad\x6e\x25\x7f\xc0\xb2\xae\x4c\xd5\xb3\x9c\x15\xa7\x9e\xad\xc8\x17\xf2\xca\x29\x42\xcc\xb7\xb6\xb6\x66\xe6\xf3\xb9\x03\x2a\xa3\x05\x40\x30\x58\xc2\x5e\x5a\xc3\xfe\x72\xbf\xf9\x76\x00\x60\x40\x0e\xa3\xf1\xc2\xac\x3c\x70\x30\xbe\xef\xc3\xef\xad\x7e\xe2\x91\xdd\xf1\x9f\xae\xce\xb3\x3f\xcc\x2c\x1e\x22\xa2\xdc\x38\x9c\x1b\x15\xc6\xce\x72\xfb\xfe\xed\x71\x79\x38\xab\x6f\xc4\x26\xaa\xbe\x97\xc3\x97\x3f\x62\xdf\xbc\x74\xe9\x92\x7b\xf4\xd1\x47\x8d\xbf\xbc\x2e\xd5\x96\x9a\x9e\x97\x75\x92\xaa\xb7\x94\x87\xa1\x2d\x9f\x6c\x53\x0e\xd3\x37\xb4\x8d\x71\x5a\x19\x25\xdf\x1a\x8f\xda\x38\xdb\x26\xd3\x1a\x8e\x14\x4d\xd9\xb7\xb8\x9c\x4a\xfa\xb2\x1d\xb8\x2e\x68\x93\x6d\x59\x27\x5a\xdd\xa7\x70\x4b\xde\x35\xbe\xa5\x4d\xd2\x68\x6b\xed\x1e\x97\x54\xe3\x73\xc6\xdb\x14\x03\x1f\xd8\xa5\xeb\x47\x53\xe2\x52\xc0\x2c\x4b\x93\x0d\xa3\x19\x42\x1a\x0f\xb2\x52\x34\x21\x91\xf0\x4b\xc6\x0b\x9a\x8d\x1c\x3b\x6e\xe0\x85\x2d\x1b\x05\x7b\x01\x87\xa3\x72\x66\x0d\xe6\x9b\xd3\x7c\x6b\xb2\x30\xeb\xc6\x21\x23\x47\xf5\xf1\x68\xcd\x0b\xe2\x0d\x1a\xee\x3d\x89\xdf\x3f\xaa\x14\x46\x63\x9f\x8a\xb6\x09\xb7\x3e\x0f\xe5\x0d\x18\x0e\x0f\xf8\x65\x27\x9f\x23\xdc\xed\xc2\x36\xb1\x04\xfb\xc4\x71\x03\xcb\xd3\x71\x8e\x19\x37\xe1\xc4\x93\xcf\xb4\x54\x49\xac\x82\xa5\xd9\x64\x40\x79\x6e\xe9\xc2\xea\x3c\xff\xd0\xf6\xf1\x60\x75\x5c\x9a\xa3\xc3\x51\x79\x32\xcf\x6c\xe1\x6a\x35\x1d\xd1\xb0\x93\x0d\x55\xc9\xea\xa5\x3a\x17\x36\x1e\xb2\xd3\x47\x6d\x9d\x1e\x4a\x5c\xca\x08\xd6\xf2\x9e\x06\x96\xc7\xb5\xe1\x68\x33\xc2\xbb\x68\x4b\x7a\x29\x45\x2c\x95\x34\x57\x10\x5c\x71\xf1\x3e\xd7\x55\x87\x29\x3e\x39\x3d\xc9\xb3\xc6\x77\x2a\x5d\xd2\x97\x46\x8b\x34\x80\x02\x8c\xcc\x2f\xf5\x82\xd4\x03\xbc\x0c\x9a\xd1\x23\xf9\x93\x93\x37\xce\x77\xca\x90\x92\xfa\x2e\x55\x1e\x8d\x17\xfe\x17\x71\x0c\x87\x43\x93\x65\x19\x9d\x9c\x9c\xd8\xe7\x9e\x7b\xce\x84\xfb\x58\x82\x97\x85\x9d\x16\x32\xa8\x6e\xac\xce\x50\x19\x2e\xd1\x68\x59\x99\x67\xeb\x4f\xdc\x9c\x3c\xfe\xbf\x5c\x5d\xfb\xbd\xfb\x0e\x86\xff\x7d\xbc\x30\x9f\x32\x8e\x36\xd8\x21\x80\x51\xe6\x68\x7b\x5c\x64\xb3\x83\x49\xf1\xde\xe1\xa8\x3c\x2c\x0d\xc2\xb2\x39\xb8\xf1\xe2\x69\x3a\xe7\x9c\x7b\xe6\x99\x67\xe8\xbb\xdf\xfd\x2e\x37\xc2\x64\x9d\xf3\x19\xb4\x94\x39\x6d\x49\x41\xc6\x87\x38\xa0\x69\xec\x49\x43\x26\xf5\x2c\x71\xf3\xbc\xbc\x4f\xf0\x20\xdb\x28\x05\x07\x01\x23\xe9\x87\x20\xfb\x42\x4a\xd6\xda\xc6\xd9\x94\xae\xd3\xc6\xc7\xd0\x5f\xa4\x31\xd2\xd6\x0e\x72\xbc\xd4\xfa\x8e\x94\x79\x5e\x87\x29\x83\x43\xea\x1e\x4e\x53\xd6\x49\x6b\x9d\xb5\xed\x71\x09\x84\x53\xd6\x2f\x9f\x58\xb7\x75\xb8\x94\x52\x82\xc8\x2f\x19\x97\xca\x2b\x65\xa0\xb4\x29\x7f\x29\xe4\xa9\x41\xa6\x81\x9b\x19\x2f\x7c\xec\x0d\xbb\xc0\x63\x1c\x3b\x26\x58\xd1\x22\x18\x10\xb0\x3f\x5e\x1c\x93\x43\xb1\x3e\xcb\xcf\x8c\x17\xd9\x1a\x81\xaa\x35\x39\xe6\x58\xa8\xa5\x8c\x1d\x91\x26\xfe\xd9\x46\x56\x31\x6c\x9f\x4a\xc0\x13\x7f\x78\x2b\xb0\xf4\x1a\xbe\xa2\xe4\xd8\x49\xef\xb8\xa4\x43\x58\xda\x47\x43\xe2\xd7\x85\x77\x86\x9f\xe2\x7f\x4d\xf2\xac\xaa\x50\xef\xe5\x11\x2c\x82\x90\x39\x5a\x1f\x2f\xcc\x13\x5b\xd3\xc1\xc3\x67\x8f\x06\x6e\x91\xb9\x83\xa3\x61\x39\x2b\xb3\x86\x6c\x71\x03\x26\xd6\x35\x3f\x36\x48\x44\x10\x9e\x97\xd4\x73\x5b\x7a\x17\xdc\x69\x61\xbb\xe2\x52\xbf\x77\x42\xbb\x2b\xb4\xe1\xea\x43\xbf\x8d\xe6\x69\xca\x18\x42\x6a\xf6\xd6\x46\x5f\x33\x14\x34\x18\x69\xcc\xa4\x74\x05\xe7\xa3\x0d\x16\x2c\xbd\xcb\xd8\xd0\x74\x5c\x4a\x41\x6b\xe5\x91\x34\x39\xee\x46\x9d\x95\x65\xe9\xca\xb2\x74\x40\xf5\xcd\x35\x66\xa8\x84\x3c\xe1\x68\x73\x30\x58\x32\x22\x1a\x3a\xe7\x46\x44\x34\xbe\xef\x60\x78\xee\xa3\xef\xae\xed\xfc\xfa\xb5\xd5\xff\xb6\x7d\x9c\xff\xf1\xb0\xcc\x9e\x24\xd0\xa0\xa1\x4b\x00\x18\x47\x1b\x83\x92\x36\x07\x96\xf6\x0f\xc6\xc5\xcd\xdb\xe3\x72\x06\xd4\x27\x60\x5c\xfd\xb5\x62\x7e\xb1\x24\xbf\x48\xb2\xad\xbc\x5a\x3b\xf4\x8d\x97\x38\x65\x5c\xdb\x73\x0a\x77\x68\x2f\xcd\x88\x94\xed\xce\x65\x8d\xc3\x4a\x18\x8e\x9b\x87\xbe\x46\x7d\xaa\xbc\x21\x1e\x58\xe6\xb1\x4d\xbe\x35\x59\xd6\xfa\x7e\xaa\xae\xba\x60\xb9\x61\x24\xcb\x91\xaa\x1f\x8d\x07\x2d\x6e\x49\x6f\x68\xc7\xa1\x65\xe5\x04\xa6\x64\xc7\xb7\x22\x2e\xd5\x98\xfc\x5d\x9b\xf1\x68\x46\x05\x89\x67\x60\xd9\xf2\xe6\x41\x36\x2c\xff\xd5\x0c\x23\x4e\x3f\xe0\x8e\xe1\x81\x07\x1e\x30\x4f\x3e\xf9\x24\xa7\xad\x39\x15\xa4\x83\x21\xee\x8b\xb1\x04\x3a\x18\x97\xc7\xc6\x91\x5d\x9b\xe7\x1b\xa3\xc2\xac\x56\x37\xeb\xf2\x3d\x25\x1e\x85\xb7\x1e\xa2\xcb\x86\x9a\x46\x80\xd4\x7e\xd1\xd8\x09\x50\x0e\x8d\xdb\x74\xeb\x02\xf3\x05\x9f\xda\x14\x6a\x98\x13\x8c\x9e\x63\xb8\xc1\x20\x09\x35\x6e\x00\x60\x87\x99\x99\xc5\x53\x07\xc7\xf2\xca\x18\xb1\xb7\x67\x90\x97\x74\x61\x75\x9e\x3d\x7e\xfe\x68\x70\x6e\x65\x91\xcd\x4e\x06\xf6\xf0\x78\x68\x4b\xd4\xec\x48\xe3\x91\x07\x02\xaa\x3b\x25\x94\x65\xa3\xff\xd9\x43\x9b\xa7\xe3\x7f\xd6\xc0\x95\x6d\x2a\xbd\x6d\x92\xa4\xe5\xd3\xfa\xbc\x84\x6f\x9b\x2d\xb6\xe1\x0e\x41\xea\x90\xae\xbc\xa9\x41\x4b\xe6\x93\x13\x3e\x59\x1e\xa9\x73\xf1\xb5\xaf\x7d\xcd\xfc\xf0\x87\x3f\x74\x40\x63\x3f\x1e\x01\xf5\x11\x67\x78\x2f\x4b\xf0\xb0\xa0\xda\x97\x37\x1a\x95\x66\xf2\x91\xab\xab\x4f\x7e\xf4\xdd\xf5\xff\xfa\xe0\xde\xf8\x7f\xac\xcd\xb3\x4f\x65\x8e\xce\x81\x5f\x42\x20\x0a\x9c\x39\x6c\x0d\x8b\x6c\x15\xc0\xde\xf1\xb0\xbc\x75\x34\x2c\xa7\xde\xe3\xec\x50\x1b\x31\x8d\xa3\xbf\x61\x32\x71\xf1\xe2\x45\xba\x7a\xf5\xaa\x2c\xaf\xae\xce\xd2\x65\xe1\x70\xb4\xe2\x00\x00\x20\x00\x49\x44\x41\x54\x97\xf1\x5a\x7d\x4a\x3d\xd1\xd5\x4e\xa9\xb6\xd6\xe0\xfb\xe0\x48\xb5\x71\x08\x52\xfe\x34\xdc\x29\x19\x48\xe1\x4e\x19\x3c\xda\x38\xab\x8d\xa5\x6d\x86\x41\x97\x51\xc1\x03\x97\x61\xb9\xba\x72\x27\xfd\xb8\xef\xf8\xbe\x74\xaa\x48\x32\xdd\x66\x6d\xa5\x0a\x21\xd3\x35\x8b\x50\xc3\xd3\x26\x24\x5a\x63\xcb\x90\xaa\x90\x2e\x83\x67\xa9\x82\xd7\xd6\xd6\xe8\xa9\xa7\x9e\x8a\xe9\xec\xbe\x91\xb0\xa0\x1b\x05\x84\x5d\xe6\x14\xef\x39\x20\x22\x2a\x8c\xa3\x93\xa1\x9d\x0d\x2c\x99\xf0\x25\x69\x83\xfa\xd6\xa2\x6a\x30\x0f\x77\xac\x78\x43\x83\x1b\x2d\xd1\xb6\x60\x55\xe2\x6a\xf8\x08\xe9\xf3\xf0\xbb\x57\x2a\x9b\x22\xce\x8c\xd8\x12\x51\xc8\x56\x5b\x21\xf1\x5e\x00\x22\x40\xdd\xbf\x99\x60\xea\xb8\x1a\xbf\xe3\xfc\x39\x8f\x80\x79\x87\x34\x4b\x4e\x5a\x19\x7c\xbf\x0e\x63\xd9\xd3\x21\x93\x39\x6c\x0c\x4b\x73\xff\xc6\x2c\xbb\x7f\x6b\x9a\x0f\x1c\x70\xfb\xf6\xa8\x9c\x96\x95\x87\x28\x6c\x38\xe4\xd5\x1f\xdd\xe2\xfe\x39\xee\x7b\xf9\xd8\xc7\x3e\x46\x41\xb1\x8b\xa0\x75\xa4\x94\xf7\x4d\x83\x6b\x1b\x08\xf9\xbb\xe6\x7e\x4e\xe1\x68\xa3\xa3\x0d\x6a\x29\x58\x6d\x60\xd6\xf8\x4c\xd1\xd5\x70\x9f\xa6\x7e\x38\x2d\x39\x38\xc9\x32\xa1\x23\x5d\xba\x95\x8d\x88\x97\x75\x28\xe3\x8d\x42\x27\x04\x5e\x26\x4d\xe1\xa6\xf8\x97\x83\x23\x87\x07\x96\x69\xa7\x64\x41\x2e\x1d\x70\x7c\xbc\x3c\xf2\x19\x5f\xfe\xf2\x97\xcd\x47\x3f\xfa\x51\xfa\xc6\x37\xbe\x61\x9f\x7d\xf6\x59\xc3\x3d\x2d\x1e\xd6\x00\xc8\xa8\xba\x97\x25\x47\xd8\xcb\x42\x34\x72\xce\x8d\xef\xbf\x3d\x3a\xf7\xf1\x2b\xeb\x9f\x7a\xe2\xc6\xca\xff\xd8\x3e\x1e\xfc\xee\xb8\x30\x8f\x19\x60\x05\x5e\x4f\xd4\x8d\x53\x3d\x51\xe8\xeb\x20\x93\x59\xda\x18\x5a\x32\x8b\xcc\xdd\xba\x3d\x2e\x6f\xcd\x73\x17\xae\xa7\x0f\xa7\x8d\x1a\x37\xc1\x12\x91\xbb\x78\xf1\x22\x9d\x3f\x7f\x1e\xc3\xe1\x90\xde\x79\xe7\x1d\x5e\x5e\x28\xf5\x20\xbd\x00\xb2\x4d\xda\xda\x98\xcb\x55\x0a\x37\x6f\xbf\x36\xd9\xd5\x64\x0f\xd0\xdb\x3d\xd5\x07\xb5\x49\x78\x4a\x96\xdb\x96\xb2\xba\x64\xba\x0b\x26\xc5\xb7\xe6\xad\x6a\xab\x1f\x29\xd3\x10\x71\x9c\x1e\xe7\x5d\xd6\x3d\x8f\x97\xf5\xc3\xe1\xb5\x25\x39\xd5\xd0\xcb\x12\x88\xba\x9e\x65\x68\x74\x34\x41\x5c\xdb\x34\xab\xe1\x6a\x2b\x60\x48\xd3\x14\x42\x5b\x05\x4b\x21\x91\xb4\x35\x4b\xd3\x1c\x1e\x1e\xda\xdd\xdd\x5d\x7a\xec\xb1\xc7\x2a\xc6\xea\x1b\x75\x9b\x9b\x53\x63\x54\x63\x29\xa3\x52\x26\x04\x37\xcf\xac\x9d\xe5\x6e\x31\x2c\x69\xb0\xba\xc8\xd6\x87\x05\xad\x84\x81\x3c\x98\x05\xd1\xf0\x08\xfb\x4d\x78\x6d\x20\x0c\xfc\xd4\xd8\xa3\x02\x8a\x66\x06\xdb\xff\x82\xc6\x66\xdd\x00\xd1\x38\x11\x84\x1a\xa6\x36\x9e\x02\xa9\xb0\x0c\x54\x1b\x4a\xf5\x07\x1b\xc3\x72\x56\x80\x6c\x5a\x98\xfc\x37\xe0\x5e\xaa\x25\x01\x5b\x1b\x69\x44\xc6\x61\x3c\x28\xcd\xd9\x95\x45\xf6\xe0\xd6\x49\xbe\xbd\x3a\xcf\x6c\x91\xb9\xe3\xa3\xb1\x5d\x00\x71\xaf\x0b\xd5\xd5\x1b\x2b\x9e\xa3\x76\xc6\x18\x24\x3c\x30\x4e\x79\x4e\x19\xb2\x1a\x9c\x8c\x4f\xbd\xf3\x5f\x2e\xfb\x5a\x9e\x36\x3a\x29\x1e\x53\xb0\xa9\xb2\x68\xf9\x4d\x4b\x5a\x1b\xed\x14\xdf\x9c\x16\xff\xd3\xf8\x94\xca\x53\x73\xe5\xcb\xfe\x2b\xf3\x73\x5d\xa0\xd1\x90\x7f\xb2\x1d\xd0\x82\x83\xf3\x27\xeb\xa2\x8d\x0e\xe7\x95\xc3\x68\x65\xd4\x06\xb4\xa5\xe7\xc7\x1f\x7f\xdc\xec\xee\xee\xba\x3f\xfb\xb3\x3f\x33\x1b\x1b\x1b\x18\x0e\x87\xe0\xfb\x59\xc2\x6d\xb7\xfc\x0f\x95\xb1\x52\xfd\x81\x46\xb9\xc5\xe4\x23\xef\xad\x3d\xf1\xf4\x7b\xab\x7f\xfc\xe0\xfe\xf8\xf3\x1b\xb3\xfc\xe3\x03\x4b\xf7\x10\x68\x18\x74\x43\xd4\x1b\x0e\x60\xb3\x9e\xa8\x5f\x08\x18\xe4\xd6\xac\xe7\x96\xca\x79\x6e\xaf\x1f\x8c\x8b\x03\x5b\x2d\xe9\x96\xde\xc3\xe2\x00\xf0\xeb\x22\x40\x44\xce\x18\x83\x7f\xf8\x87\x7f\x68\x2b\x3b\x6f\x03\xae\xc3\xb5\xbd\x17\x5a\x3d\xcb\xfc\x6d\x32\x25\xc7\xa1\xae\xfe\x1b\xf2\x6a\x46\xa6\x13\xe9\x92\xbe\x7c\x96\x74\xe4\xb8\x24\x79\x4d\xc9\x4c\xaa\xef\x70\xdc\x9c\xdf\x3e\xb2\x96\xaa\x9f\x54\xdd\xa6\xfa\x16\x4f\xd7\xfa\x16\xff\x4d\x3d\x4b\x1a\xa9\xbe\x68\x80\xfa\xca\x7f\x6e\xdd\xf4\x21\x16\x42\x5b\x43\x49\x5c\x21\x4e\x2a\x4d\xa9\x48\x35\x78\xcd\xa8\xe1\x79\xe4\xb8\xa9\x29\xc2\xb6\x32\x2d\x19\x30\xbb\xbb\xbb\xee\xd2\xa5\x4b\x72\xb3\x6e\xe4\x8b\x2f\xec\xb2\xbd\x2f\xe1\x17\x00\x8c\x23\xd0\x2c\xb7\x45\x61\x5c\x31\x2a\xcd\x60\x65\x91\xad\x0f\x4a\x1a\xd7\xbe\x96\x90\xa9\x36\x5a\x62\xa5\x79\x85\x52\xdd\xa3\x52\x99\x11\x71\x2f\xad\x5f\x13\xaa\xaf\x6a\xa1\x9a\xba\x2f\x02\x85\x75\x23\x8e\x94\xc4\x02\x12\xc3\x11\xe2\xfc\x8d\x0d\x8d\xc2\x04\x05\xc7\xd8\x54\x0d\x16\x28\x71\xa9\x4b\xee\x38\x6c\xa5\xf2\x68\x94\x97\xb4\x35\x29\xb2\x0b\x1b\xb3\xfc\xc2\xc6\x2c\x5f\x1b\x96\x66\x76\x3c\xb0\xc7\x8b\xdc\xb9\x06\x38\x67\xd7\x7f\x43\x84\x79\xc5\xda\x4e\x1e\xf1\xd0\x66\x88\xdf\x09\x9c\x0c\x77\x92\xe7\x57\x11\xee\x84\xaf\xae\x49\x8b\xec\xff\x29\x78\x2e\xa5\x72\x90\x68\x83\x95\x4a\x53\xa3\x91\xa2\x2f\xfb\x6e\x0a\x37\xd0\x0f\x9f\x46\x57\x9b\x9c\x49\x3a\x1a\x1f\x49\x98\xdd\xdd\x5d\xf7\xdc\x73\xcf\x99\xf1\x78\x1c\x8f\x38\x33\x03\xde\x00\x88\xc7\x9b\xc5\xd2\xd0\x28\x2f\x69\xe5\xde\xc3\xe1\xf9\x0f\xbf\xbf\xfa\xb1\x5f\xbb\xb6\xf2\xdf\xcf\x1f\x8d\x7e\x67\x52\x98\x5f\xcb\x1c\xd6\xe1\x28\x5b\x3a\x01\xc8\x7a\x95\x0b\x1e\x55\xd4\x7d\xd3\x38\x4c\x06\xa5\x99\x18\x60\x3e\x1d\xd8\x6b\xb7\x47\xe5\xb1\x23\x94\x1e\xcc\xb2\xef\xeb\x58\xd4\x13\x39\xc7\xfa\x9f\x56\x6e\x29\x33\x7c\xf0\x3c\x4d\x5d\xa5\xea\x5b\x1b\x47\xda\x82\x26\x07\x5c\x6d\x69\x5e\x04\x8d\xbe\x36\xc6\x69\x65\x48\xf1\xd7\xe7\x39\xd0\x5d\x1a\x97\x14\xdc\x29\xf9\x6e\x93\xcd\xb6\xba\xef\x2a\x6f\x5b\x5d\x77\xe9\xd2\x14\x4f\x4b\x6d\x4c\x2c\x41\x53\x1e\xa9\x78\x0d\xa6\x0f\xec\x07\x0d\x6d\x34\x4e\x93\x76\x6a\x5e\xfd\x9a\xb2\xfc\xe3\x77\xbc\x8c\x01\x8c\xfd\xed\xba\xf1\x7e\x17\xe7\xdc\xc6\xb8\x30\xdb\x0f\xed\x8d\x1f\x7f\xea\xda\xca\xc7\x1e\xdc\x1f\x3f\x39\x5e\x98\x0d\x79\x33\x6d\x6d\xe5\x2d\xdf\xb1\x22\xb7\x93\x34\x0c\x00\xf6\x12\x97\x85\x18\x6e\x2d\x68\xf4\xa0\xf1\xa3\x58\x1a\xd2\x16\xd2\x2c\xb6\x54\x48\xe5\x6d\xe2\x71\xd6\x12\x0e\x66\xb9\xbd\xb2\x37\x29\x7e\x74\x65\x73\xf6\xff\xbc\x7d\x66\xfa\xf2\xfb\xeb\xf3\x6b\x8b\xcc\xf1\x3b\x5f\x0a\xe7\x5c\x41\xd5\x17\x54\xc3\x29\x87\x70\xbf\x04\xc0\xda\xf7\xf2\xe5\xcb\x38\x3a\x3a\xc2\xf7\xbe\xf7\x3d\xe9\x81\xd3\x5c\x94\xfc\x19\x0c\xa6\x81\x93\x85\x36\xf9\xd7\x70\xb7\xe1\xd5\xde\xbb\xf2\xf7\x29\x83\xe4\xbd\x8d\xae\x56\xd6\xbe\xbc\xa7\xca\xdf\xc6\x1f\xc7\x25\x79\x95\xfc\xb7\xbd\xcb\xfc\xa9\x7a\xea\x82\xe5\xbc\x77\xd1\x4a\x95\x4d\xcb\x9b\xc2\x0d\x00\xb8\x78\xf1\x22\xd6\xd6\xd6\x70\xdf\x7d\xf7\x61\x63\x63\x83\x7b\x2f\x0c\x3b\xbd\x63\x5c\xf5\x15\x67\xe3\x9f\x73\x8f\x6b\x08\x20\xcf\x2d\x0d\x37\x66\xf9\xc6\xfd\xfb\xa3\x87\x1f\xda\x1b\xff\xe7\x0b\x07\x83\x4f\xae\xce\xb2\x8f\x64\x8e\xb6\x09\x94\x7b\x6d\x12\x27\x27\xfc\x8e\xa6\xae\x50\x92\x3b\xbe\x3d\x2a\x7e\xf2\xc6\xd9\xe9\x3f\xbc\x7c\xe1\xe8\x7b\x37\xd7\x16\x37\x00\x1c\x03\x98\x3a\xe7\x96\x3e\x9e\xea\xfb\x25\x0e\x0f\x0f\xf1\x37\x7f\xf3\x37\x5a\x7b\x76\xd5\x4d\xdf\x3c\x7d\x65\x42\xcb\xdf\x05\x2b\xf9\xd0\xf2\xb6\xe9\x94\x36\x79\x68\xcb\xab\xf1\xab\xf1\x93\x2a\x5b\x5b\x39\x52\x79\x35\x98\xbe\xfc\xa4\xf4\xc2\x69\x79\x69\xcb\xdf\xc8\xa3\x1d\x87\xe6\x41\xc6\xf7\xb5\xf2\x64\x48\x59\x5a\x1a\x3e\x1e\xcf\xff\xda\x2c\xc9\x50\xc0\xbe\xe5\xe8\x33\x6b\x6b\x04\xef\x79\x69\x22\xf1\x6b\xbd\x3e\x0f\xb9\xe6\xee\x7e\xef\xac\x20\x94\x06\x6e\x96\xdb\x85\x25\xd8\x51\x61\xc6\x93\x45\xb6\x9e\x39\x1a\x54\x5f\x68\xae\xad\x92\xe6\xff\x41\xcd\x34\x8d\x16\x1e\xa8\x06\xf7\x4c\x57\x96\x07\x49\x03\x04\x60\x1e\x9c\x3a\x81\x53\x6a\x5c\xef\x0f\x34\xe3\x42\x5e\xe5\x23\x91\xcd\xa3\xd9\x22\x70\xa3\xca\xff\xb7\xe4\xe1\x09\x15\x15\x0d\x27\x22\x02\x8d\x73\x4b\x5b\x93\x85\xb9\x6f\x73\x9a\xdf\xb7\x36\xcf\x56\x73\x47\xb3\xd2\xb8\x79\x91\xc1\x5a\x02\x39\xc4\x0b\xb5\x28\xec\x39\x12\x4b\x47\xf0\x6d\xe2\x36\x37\x37\x71\xee\xdc\xb9\x70\x02\x49\xce\x3e\x52\x33\x0d\x3e\xa3\xb2\xe8\x96\xad\xbe\x1e\x06\x39\x63\x93\x34\x53\xb3\x46\x1e\x27\x67\x25\x5d\x65\xd0\xe4\x5f\x83\x0b\x38\xa5\x01\xa2\xd1\x4e\xd1\x95\x33\x3c\x39\x30\x69\x7d\x36\xfc\x49\xda\x92\x7f\x09\x13\x9e\x9d\x78\x36\xca\xb3\xe9\x09\x1b\x7e\x91\x80\xe1\x7f\x01\x4e\xce\xc0\x39\x1d\xad\xfe\x97\xf8\xbe\x7a\xf5\xaa\xfb\xdc\xe7\x3e\x47\xe3\xf1\xb8\xde\x93\x56\xef\x9d\x33\xa8\xf6\x23\x6a\xcb\x42\xc3\xcc\xd1\x68\x6d\x9e\xaf\xdd\x7f\x7b\xf4\xe0\xe3\x37\x27\x3b\x4f\xdc\x98\x7c\xee\xbe\xdb\xa3\xdf\x5b\x99\x67\x1f\xce\x1c\x6d\x11\x55\xa7\x1a\xfd\xe2\x74\xec\xc3\xfc\x8e\xa9\x58\xe1\xd1\x98\x71\x70\x6c\xf6\x43\xa0\x41\x6e\x69\x25\xb7\x26\x2f\x32\x77\x73\x6f\x52\xdc\x5c\x18\xbb\xf0\xde\x66\x1b\xbc\x2c\x40\xfc\xe8\x20\x11\x91\x1b\x0e\x87\x10\x57\x16\x68\x75\x0f\xd4\x3a\x53\xf6\x35\x59\x57\x51\x65\x24\xda\x43\x6b\x63\x0d\x06\x4a\x9a\xfc\xd3\x3c\x00\x29\xf9\x02\x83\x95\xbf\x29\x79\x43\x02\x87\xa4\x9f\xea\x1b\xb2\x8c\x72\xa0\x97\xfd\xc7\x20\x5d\xce\xae\x3e\xcf\xbd\x4e\x1c\x77\x28\x9f\x84\x95\xf9\x52\xba\x28\xe4\x95\xb8\x65\x1f\x6c\xf0\x16\xbe\x08\x9a\x52\xca\x3c\xa4\x14\xb8\xa6\xb0\x64\xe0\x30\x52\x31\xf3\x3c\x21\x3d\x30\xac\x09\x32\xaf\x7c\xd9\x10\x6d\x86\x88\x51\x60\xb4\x06\xe5\xc1\x00\x70\x9f\xfc\xe4\x27\xcd\x95\x2b\x57\x96\x96\x8c\x98\xd1\x12\xde\x65\x87\xf3\x63\xb2\xc3\x22\x83\x9d\x0d\xec\xcc\x1a\xd8\xc9\xc2\x8c\xab\x3b\x5e\x28\x0f\x1b\x61\x49\x64\xe2\x48\x62\x70\xae\x5a\x26\x0a\x54\x83\x5e\x71\xcc\x20\x88\x06\x88\x6b\xec\x9b\x61\xdb\x63\x1a\x9b\x80\x83\x61\xa2\x9e\x6c\x62\x78\xe3\x86\x60\x61\x78\x84\x07\xf5\x90\x51\x8d\x2e\xd2\x8d\x11\x32\x84\x8f\x36\xfa\x74\x03\xca\x8c\xc3\xda\xb0\x34\x17\xd6\x66\xf9\x83\x9b\xb3\x6c\x73\x58\x1a\x47\xc0\xa2\x34\xce\x96\x99\xb3\x8e\x59\x7a\xec\xae\x17\x8e\x9d\xef\x8f\x71\x17\x2f\x5e\x24\xfe\xf1\xc6\x9e\xe1\x34\xb0\x21\x70\x25\x7c\x5a\x9c\x9a\x1c\x23\x11\xd7\xb7\xdf\x72\x45\xdf\x15\x38\x9c\xd6\x67\xba\x82\xa6\x98\x34\x1d\x41\x0a\x7c\x8a\x47\x99\x4f\x7b\x4e\xe1\xe1\x52\xd7\x17\x87\xd4\x05\xa9\x3a\x91\x0a\x5c\xc3\x4d\x58\xae\xc3\x08\xff\x91\x8f\x7c\x84\xae\x5d\xbb\x16\xaf\xea\x0f\x13\x1f\x7e\x47\x14\x11\xe5\x5e\x8e\xe3\x45\x72\xce\xb9\x01\x81\x46\xa3\xc2\xac\x9c\x3b\x1e\x9c\x7d\x64\x77\xfc\xf4\x13\x37\x26\x9f\x79\x78\x77\xfc\xb9\xad\x93\xc1\xa7\x06\xd6\x3c\x48\xa0\x61\x30\x42\xc2\x5e\xb9\x50\xed\x0e\x5e\x0f\x2c\xed\x81\xe3\x8a\xa4\xa9\x13\x8c\xc3\x68\x50\x9a\xd5\x81\x25\x4c\x07\xf6\xdd\x83\x49\x79\xdb\x9a\x6a\xaf\x8b\x47\x61\x51\xf7\xb9\xa0\xbf\xdd\x8b\x2f\xbe\xe8\xbe\xf4\xa5\x2f\x99\x97\x5f\x7e\xb9\xad\x1d\xb4\x01\x56\x4e\x48\xdb\x60\x1b\xf5\x8a\x76\xb9\xd3\xfa\x83\x36\x56\x74\xc9\x94\x7c\x4e\x05\x0d\x5e\xe3\xa9\xad\xef\xf0\x7c\x9a\x4c\x07\x98\xd4\x78\x89\x3b\x88\xd7\xfa\x9d\x56\xaf\x52\xd7\xa5\xea\x27\x55\xc7\xa9\x3e\x6a\x53\xf9\xb2\x04\x52\x2d\x74\x35\x4e\x9f\xc2\xa7\x04\x4e\x56\x80\x56\xa1\x1a\x9d\x2e\x45\xae\xc1\x76\xe1\x5c\x8a\xbf\x72\xe5\x0a\xfd\xd6\x6f\xfd\x16\x7d\xfb\xdb\xdf\xb6\xc1\x78\x11\x1f\x50\x24\x00\xd6\xef\xb7\x08\x1d\x36\xc4\x13\x11\x55\xc6\x4b\xee\xec\x74\x60\x17\x8e\x50\xae\x2e\xb2\xd5\xf1\x22\x5b\x33\x8e\xb2\x60\xee\x34\x96\x77\x1c\x1a\x97\xc0\x05\x6c\xf5\x46\xdd\xa6\xe1\x50\x13\x43\xf8\x1e\x62\x5c\xaf\x8e\x28\x9c\x2e\x25\x95\x6e\xab\x4f\x35\x45\x1b\x45\x1a\x3d\x2c\x3d\xf2\xc5\x8c\x93\x50\x86\x10\x43\x3c\x3e\xe2\x6d\x7e\x68\xa0\xf6\xd8\xb0\x38\x6a\x60\xc8\x73\x47\xdb\x93\x6a\xe3\xee\xbd\x6b\xf3\x7c\x32\x28\x8d\x75\x04\x6b\x8d\xb3\x65\xf8\xba\x11\xa2\xe7\xa5\x42\x5b\x7b\xc3\xf8\x7e\x24\x02\xaa\x2f\xdb\x86\x3d\x30\x61\x13\xe4\x52\xcb\x37\x95\x67\x1f\x25\xc7\xd3\x34\xe5\xa1\x29\xac\xb6\xfc\x32\x2d\x95\x5f\xe3\x99\xd3\x04\x9a\xb3\x18\x6d\x70\xe0\xb8\xc1\x9e\xe5\x4c\x52\xa3\xa5\x19\x37\x72\xe0\xe1\x22\x27\xcd\x57\x9e\xc7\x26\xf0\x71\xfe\x38\x8c\xa4\xaf\xd1\xd1\x06\x07\x4d\x2f\xb4\xd5\x0d\x44\x5e\xe9\x45\x42\x0b\xac\xec\x06\x08\x32\xf7\xec\xb3\xcf\x9a\x87\x1f\x7e\x58\x6e\xba\x8d\x06\x0b\x10\xbf\xe0\x6c\xc2\xa6\x5b\xe7\x5c\x4e\x44\xa3\x61\x69\xc6\x9b\xd3\x7c\xeb\xfe\x83\xd1\x23\x8f\xdf\x98\x3c\xf3\xd8\xcd\xc9\xef\x9f\x3f\x1c\xfe\xce\x64\x61\x3e\x9c\x81\xd6\x01\xc4\xcb\xb3\x09\xe2\x83\xaf\x0e\x08\xdb\xf2\xe2\x1e\x3a\xe6\x49\xe5\x9b\xf1\xe3\x57\xe8\x01\x84\xfd\x2e\xc3\xd2\xac\x0e\x4a\x73\xb2\x3f\x2e\xae\x1e\x8e\xca\x13\x00\x16\xd4\xd4\xdb\xcc\x98\xa1\x67\x9e\x79\x06\xdf\xf8\xc6\x37\x34\x59\x4a\xc9\xb3\x36\x5e\xf0\x3a\xe6\xf9\xe4\x7b\x6a\x62\x2b\x3d\x3a\xd2\x80\x91\x30\x80\x2e\xc7\x29\x79\xd0\x0c\x0f\x0d\x5f\xc8\xcb\xcb\xaf\x79\xfc\xb4\x81\x5c\x8e\x8f\x24\xfe\x78\xdd\x05\x7a\xa9\xc1\x9f\x97\x41\xe3\x15\x22\x8d\xb7\x1f\x97\x75\xd9\xdf\x24\x4d\xde\x5f\x65\xff\x97\x63\xb2\x86\x5b\xad\x7b\x7e\x1c\xba\x8f\x92\xee\x13\x34\xc6\xb5\xa0\x09\xb0\x56\xc9\x12\xb7\xa6\xc0\x4f\xcb\xe3\x69\xf3\xb8\xcb\x97\x2f\x3b\xa0\xbe\x9c\x8e\xaa\xbb\x0b\xb8\xd7\x85\xd8\x26\x5d\x12\x69\x95\xbb\x97\x80\x79\xe6\xca\xe3\x41\x39\x25\x90\x5d\x9d\x65\x1b\xe3\xc2\xac\x12\xc8\x34\x0c\x11\xc0\x0f\xe6\x68\x18\x06\xf1\x24\x11\xb1\x46\x72\xe1\xa3\x88\x2e\xde\x7a\x4b\xde\x82\x59\x5a\xc6\xf1\xc6\x48\xbd\xc9\xb7\x49\x27\xe2\x8c\x79\x6a\xca\xce\xbf\x6a\x7b\x68\x22\x4f\xb5\x82\x6b\x1a\x5c\x81\x27\x6f\x25\x35\xca\x19\xc0\x48\x20\x65\x69\x04\xc0\x80\x26\xc3\xd2\x3c\xb0\x36\xcf\x1e\xda\x3a\xc9\xcf\xad\xcf\xf3\x61\xe6\xc8\x95\x06\x65\x49\xce\x5a\x83\x60\xe9\x84\xb6\xa8\x51\xd7\x07\xbe\x1a\x06\xcc\xce\xce\x0e\x3d\xfa\xe8\xa3\xdc\x95\xdd\x68\x73\xf6\x2b\xfb\x44\xea\x59\x7b\x0f\x71\xb2\x93\x6a\x0a\xb6\x0d\xb7\x96\x9e\xe2\x99\xd3\x4c\x29\x42\xad\x7c\xf2\xb9\x2d\xc8\x3e\xdb\x86\x5b\xba\xc1\xe5\xb3\x86\x8f\xa7\xa5\x8c\x06\x09\xcf\xd3\xa5\x9e\xe8\x2a\x93\x84\xe5\x38\x79\x1c\x57\xc6\x7c\xd0\x90\x4b\x14\x11\x76\x7d\x7d\x9d\xe6\xf3\xb9\xdd\xd9\xd9\x31\x57\xaf\x5e\x75\x5f\xfc\xe2\x17\xc9\xeb\x10\xfe\x6d\xa1\xc6\x07\x11\xa9\xbe\x44\x6e\x40\x44\x39\xbc\x97\x25\x77\x34\x5e\x99\x67\x6b\x17\x6e\x0f\xef\x7f\xe2\xe6\xe4\x23\x4f\xdc\x58\xf9\xdd\xfb\xf7\x47\x7f\xb0\x3e\xcb\x7f\x33\xb7\xe6\x3e\xe3\x75\xba\x57\x01\x75\x05\x12\xdb\x37\x47\xa8\x6e\xc3\x26\x17\x4f\x2b\x3a\x57\xa7\x85\xcd\xf8\x44\x01\x87\xf3\xf0\x00\xaa\x23\xd2\x2b\xa3\xd2\xac\x13\xe8\xfd\xeb\xeb\x8b\x6b\x8b\xcc\x15\xa0\xb8\x49\x37\x5c\x4a\x17\x4e\x1a\x39\xa0\xbe\x6f\xe9\xbe\xfb\xee\x33\x87\x87\x87\x29\x19\x6f\x33\x82\x65\x1b\xf3\x77\x28\xbf\x9a\x9c\x48\x19\xd5\xda\xb5\x8f\x1c\x2c\xb5\xb1\x28\x07\x44\x3e\xde\xff\x20\xe8\x00\x4d\x19\x4a\xf5\x01\xc9\xab\xe4\x45\x33\x5c\xb4\xb2\x70\x7e\x65\x9c\x34\xe6\x38\x1e\x24\xf2\xcb\xf2\x6b\xc6\xa0\x5c\xda\x95\x76\x81\x51\x70\x39\x91\xa7\x51\x5e\x79\x8f\x8b\xb4\xb8\x24\xd3\x32\xb4\x59\xcb\x01\x5f\x2a\xbf\x66\x21\x87\x78\xae\x18\x78\x3c\xd0\xac\x84\x36\x25\xdb\x36\x83\x92\xe5\xd4\x3a\x4c\xaa\x7c\x0d\xe3\x45\x29\x6b\xfc\x76\x07\xd0\x3c\x7d\x04\x54\x2a\x60\x91\xbb\xf2\xf6\xa8\x9c\x66\x0e\x76\x7d\x96\x6f\x8e\x0b\xb3\x0a\x3f\xa4\xfb\x0f\xb1\xd6\xc7\x96\xd9\xb1\x1c\x59\x99\xc4\xfe\xe7\x06\x01\xff\xbc\x40\x0d\xef\xf1\x56\x48\xeb\x75\x74\x9f\xb4\xe4\x5d\x01\x10\x0d\xa5\x90\x93\xf8\x2f\x04\x66\xf1\x1e\x68\xd7\xec\x47\x20\x2e\x91\x88\x86\x14\x35\xd2\x79\xe3\xb2\x5f\x63\x1c\x6d\x8d\x0b\xf3\xa1\xf5\x69\xfe\xe8\xd6\x49\xbe\xb9\x36\xcf\x32\x02\x95\xf3\xdc\x96\x96\xe0\x4a\x8a\xf7\xe9\x70\xe3\x85\xb3\x47\xac\x8d\x88\xfc\xbd\x13\xcf\x3c\xf3\x8c\xfc\x84\x00\x0f\x32\xee\x4e\x0c\xe5\x36\x9c\x77\x8a\xab\x2f\x1f\xbc\xca\xbb\xca\xa7\xf5\x83\x2e\xbc\xf2\x59\x83\xe9\xd3\xb7\x64\x7f\x97\x83\x91\x7c\x96\xc6\x89\xa6\xf4\x35\x7c\x9a\x97\x46\xe2\x4e\xd5\x01\xd7\x39\x5c\x99\x2e\xe1\x58\x5d\x5d\xa5\xd5\xd5\x55\x3a\x38\x38\xb0\x00\xf0\x27\x7f\xf2\x27\xb4\xb3\xb3\xc3\x0d\x14\xf2\xb2\x6a\xbc\x2c\x06\x63\x25\xec\x67\xa9\xee\x63\x01\x0d\x09\x18\x0e\x4b\xb3\x72\xf6\x78\x70\xf6\xd7\xae\xaf\x3c\xf9\xd4\xb5\x95\xdf\x79\x70\x6f\xfc\x5f\xb7\xa6\xf9\x67\x46\xa5\x79\x94\x40\xe3\x06\x93\x0e\xca\xe6\x7f\x8a\x69\x75\x5f\x0e\xf7\xb8\x50\x13\x9e\xc0\xf6\xb6\x35\xfb\x3c\x81\xf2\x81\xa5\xb5\x95\x85\x99\x4c\x07\xf6\x8d\xdd\x49\x71\x60\x09\x85\x37\x58\xc2\x7e\x97\xd0\xc9\xa2\xc1\xb0\xb3\xb3\x43\x4f\x3d\xf5\x94\xbc\xed\x9a\xd7\xb5\xa6\xcf\x35\x99\xe5\x2a\xa2\x4b\x66\xe4\xc0\xd9\xd6\x07\xb4\xb1\xa8\xad\xbf\xa4\x06\x60\x59\xb6\x40\x5b\x1a\x38\x9a\x21\xd4\x25\x83\xdc\x68\x93\xf2\xae\x95\xed\xff\x67\xef\xdd\x7f\x24\x39\x8e\xfb\xc1\x88\xac\xea\xea\x9e\x9e\x9e\xd9\xd9\xd9\xd9\x07\x97\x4b\x8a\x5c\x3e\x44\xeb\x2b\x3f\x44\x51\x82\x21\xeb\xbe\x3a\x1b\x7e\x1c\xec\xf3\x41\xd0\xfd\x62\x18\x06\x6c\x03\x26\xff\x28\x12\x06\xfc\xba\x3b\x41\x07\x1b\xb6\xef\xce\x07\xd8\x3e\xc9\x3a\xd8\x82\xee\x6b\x93\xd2\x89\x16\x45\x4a\x24\xc5\xa5\xc8\xe5\x72\x76\x76\x76\xa6\xa7\xdf\x5d\x95\x79\x3f\x54\x66\x56\x64\x54\x64\x55\xf5\xec\xca\xdf\x5f\x2e\xc9\xde\xa9\xca\x8a\x8c\x8c\x7c\xc6\x27\x23\x5f\x31\x10\x22\xe5\x15\x97\x45\x6a\x33\x52\x59\xf0\xf6\x17\x6b\x53\x12\xb8\xa1\x32\x4a\x69\x17\xf1\x45\xd3\x01\x74\x5d\x5c\x5b\x87\xce\x2b\x15\x17\x96\x22\x30\x29\x13\x79\x05\xe1\x95\xab\xa9\x93\xe5\xb4\x12\x52\xe4\x19\xc6\x65\xe5\xb2\xf9\xe7\x9f\xff\xf9\x9f\x47\xa5\x14\x00\x54\x8b\x72\xdd\x19\x06\x7e\xde\x98\xde\xac\x5c\x8d\x40\x94\x9d\x36\x2a\xc6\x83\xe2\xac\x5f\x24\xc9\x85\x45\x7a\xb9\x57\x60\x06\xe0\xb6\x12\x92\x96\x89\xd5\x14\x8e\x9b\x02\xa2\xa3\x29\x3f\x2a\x32\x15\x10\x40\x20\x9d\x93\xed\x7c\xd0\x8e\xb0\xca\x83\xee\xc2\xc3\xe3\x80\xc4\x17\x8c\xbc\x68\x07\x07\x50\x3f\x6b\xa6\x0a\x0e\x74\x02\x08\x89\xbf\x93\xd5\x70\x7f\xd2\xb1\xd6\x40\x0f\x21\xa6\x61\x2a\x9e\x98\xa6\x06\x2f\x6d\xad\xd5\xd3\x17\x16\xe9\x13\xfb\xf3\x74\x77\x67\x99\x9a\x22\x31\x8b\x59\x66\xef\x3d\x02\x54\x76\x01\x2f\x17\xc7\xe6\x1b\x06\x00\xc6\x25\x83\x4e\x23\x01\x00\xf4\xfb\x7d\x85\x88\xa8\xb5\xa6\x75\x86\x03\xeb\x2e\xcf\xce\xb5\x01\xea\x4d\x14\xad\x44\x2f\x01\x7e\x89\x9e\x3a\x1e\xb6\xa9\xe3\x92\x9e\x39\x80\xe0\x3c\xa5\xb6\x2a\xc9\xd8\x44\x2f\xe5\x6b\x0c\xa4\xf0\xb4\x21\xfb\x4e\xdb\x7d\x4c\x76\x69\xba\x80\xf3\xa1\xb4\x3e\x7c\x96\x65\xaa\x28\x0a\xb3\x5e\xaf\xcd\x62\xb1\x30\x2f\xbd\xf4\x92\xa2\x80\x85\xd4\x49\x07\x5e\x14\x94\x7d\x31\xda\xa9\xa0\xc4\x18\xe3\xcf\x63\x49\x0c\x64\x5b\xeb\x64\xf7\x99\xa3\xe1\x8d\x9f\xbd\x3d\xfa\xcf\x4f\xdc\x1f\x7c\xe5\xe2\x2c\xfd\xf5\x41\xa1\x3e\xa9\x0c\x6e\x23\x94\x33\x3f\xb4\xfd\x07\x16\x51\x53\xf9\x07\x34\x64\xb1\x7d\xb0\x48\xd7\xf9\x3b\xf0\x42\x32\x89\x4c\x17\x67\x3d\x8d\x07\xc3\x55\xb2\xbc\x37\xca\x6f\xcd\x7a\x7a\x61\xb0\xbe\xde\x05\xc0\x9f\xac\x8b\x88\x68\x5e\x7e\xf9\x65\xfd\xe2\x8b\x2f\xaa\xb7\xdf\x7e\x1b\x97\xcb\x25\x57\xbe\x34\xaa\x58\x5b\xa3\x79\xce\x95\x75\x97\x3a\xd5\xd4\xc6\x78\x99\x37\xe9\x37\x0a\x20\x40\x78\x8e\xc9\x29\x01\xf8\xb6\x59\x09\xc9\xea\x04\x42\x5a\x24\x3e\x28\xfc\x62\xed\xab\x29\x3f\x25\xa0\xc8\xe5\xa4\x7f\x9b\xfa\x21\x49\xb7\x73\x9a\xc6\xbe\x50\xba\xab\x88\xba\xa6\xc8\x79\x67\x2b\x65\x1c\x2f\x54\x8e\xc4\x62\xe1\xa4\x0a\x22\xa1\x32\xc7\x27\x36\x9a\x6b\x2a\x28\xea\x27\xa1\x52\xa9\x33\xf4\xcf\xdf\xf9\xce\x77\xe8\x4d\xd2\xa5\x80\xd5\x59\x06\xc6\xbe\x57\xed\x9d\x2e\x88\xb1\x13\xcf\xeb\xc4\x14\xf7\x87\xeb\xf1\x68\x9d\xf6\xb6\x97\xc9\xc5\x9e\xc6\x0c\x01\xf9\x2c\x8b\x4f\x3c\x92\xaa\x13\x00\x0f\xfb\xad\x1a\x31\x19\xb2\x98\xb6\xa4\x0c\xee\x2a\x22\x09\xe6\xd3\x49\xc8\x56\xee\x06\xb5\x48\xc6\x2d\x84\xab\x93\x99\x6c\xe5\x0e\xd9\xd1\x00\x22\xaf\xb6\x78\x68\xba\xcb\x9d\x0e\xea\xea\x70\x9d\x3c\xb3\x37\x4f\x6f\x5e\x9e\x64\x17\x2e\x2c\x7a\xeb\x65\x4f\xcf\xa6\x59\xe1\x4c\x2e\x0a\x42\xa5\x23\x02\x18\xb0\x3b\x23\x5c\x67\xee\x80\x4b\x51\x14\xc6\x82\x16\x17\xfd\x79\x9f\x69\x12\xf8\xb3\x11\x68\x9b\xe8\x1e\x94\x86\xbb\x4d\xc3\x6e\xd2\x56\xa8\x1f\x6f\xff\x5d\xe3\xa1\x0a\x40\x92\xd3\xd1\x34\x75\x92\x31\x39\xa4\x7e\x85\xd3\x3a\x05\x2a\x29\x3e\x0e\x9e\x54\x51\x14\xfa\xc5\x17\x5f\x54\x6e\x21\xb8\x05\x2d\x14\xb0\xb8\xb0\xee\xaf\x02\x7b\xb4\x82\xb5\xb2\x64\x00\x90\x21\xe2\x60\x90\xab\xe1\x93\xc7\x83\xeb\x9f\xf9\x60\xe7\x73\xcf\xdc\x1b\x7e\xf9\x60\xda\xfb\x1f\xb7\x72\xf5\x9f\x12\x50\x3b\xee\x78\xc9\xb2\xb3\x31\x00\x58\x59\x48\xc1\x54\x20\x45\xea\x2f\x00\x7c\x7f\x65\xbf\x55\x8d\x8e\x8a\x89\x3e\xbc\xa9\x06\x3c\x0e\xd8\x18\xe8\x0f\x0a\x75\x69\xb0\x52\xf7\x0f\x77\x56\x77\x96\x3d\xbd\x34\x60\xdc\x56\x68\x7a\x28\x9d\x5f\xf3\xf2\xea\xab\xaf\x9a\xd7\x5e\x7b\xcd\x08\xa0\xc5\x89\x42\xfd\xa5\xbe\x9a\x3f\x37\x29\xda\xb6\xe7\xb6\x3a\xd1\x04\x6c\x9a\xd6\x8d\xd1\xf4\xf0\x67\xce\x3b\xd6\x26\x01\xe4\xf4\x3a\x7f\x0a\xea\x38\x1f\x0e\x00\x68\xdd\xa5\xb2\x34\xc9\xc7\x9f\xa5\x76\xd4\x96\x76\xfe\x2e\x19\x19\xba\xf4\x03\xb5\x32\x6b\x02\x2e\xbc\xf2\x50\x66\x12\x92\xe4\x0d\x5a\x42\x66\xdc\x8f\x8f\x56\x78\x21\x50\xd3\x53\xd3\xd4\x8e\x04\x3c\x40\xf8\x26\xc5\x4f\xc3\xc4\xac\x37\xa2\x7b\xfe\xf9\xe7\xcb\xbe\x81\xf4\x1f\x20\xeb\x5c\x0d\x00\xde\x22\xe3\xfe\x02\x80\x59\xa5\xa6\x38\x1e\xae\xc7\x5b\xb9\x4a\x46\xeb\xe4\x42\xaa\xb1\xaf\x00\x91\x9e\x68\x49\x06\x42\x5e\xb1\xf3\x33\x18\xfc\x8c\x92\x01\xdf\xdb\x94\x56\x0d\xbb\xde\x04\x9c\xe5\x06\x59\x66\x90\xa5\xb2\x58\x4f\x44\xa0\xe5\xad\x2c\xb5\x1d\x44\x06\x18\x40\x09\x2d\x3a\xd5\x68\xd0\x54\x91\xb0\x5c\x0a\xe2\x35\x55\x41\xd5\x76\x2a\x39\x19\x42\x19\xfb\x3d\x8d\xd7\x86\xeb\xe4\xb9\x8b\x8b\xf4\x93\x8f\x9c\x66\x97\x2f\xcd\xd3\x7c\x9e\xea\xc5\xa2\xa7\xdd\xd4\x99\x3f\x6d\xd4\x2f\xe7\xf5\x45\xe7\xf2\xd0\x5b\x5f\xfc\xed\xd3\xe7\xd8\x85\xe4\x9c\x64\x45\xe9\x1a\xee\x3c\xf1\xfd\xd7\xe2\xbb\x49\xbc\x9b\xe4\xc5\xa6\xe1\x9a\x14\x4f\x93\xa5\xaa\x8d\x77\x13\xe8\xa9\x85\xfb\xa3\x3f\xfa\x23\x7c\xed\xb5\xd7\xcc\x0b\x2f\xbc\x80\x00\xe5\x45\x88\x2e\x1c\x56\x8b\x6e\xdd\x74\x90\x82\xf2\xd0\x38\xb7\x86\x25\x43\xc4\x0c\x00\xb2\xdd\x65\x3a\x7a\xe6\xee\xf0\xf1\xe7\x3f\xd8\xf9\xa5\x4f\xde\x1d\x7e\xe5\xf2\x34\xfb\xca\x70\xa5\x7e\x31\x31\x78\x01\x00\x54\x70\x5c\x82\x15\x2b\x68\xb3\xf4\x85\xb4\x19\x00\xda\xf4\x2c\x64\x61\xbd\xb8\xe7\x49\x1b\x3a\x92\xc5\xf6\xa4\xcd\x28\x8d\x3b\x5b\x65\xbf\xf5\xf1\xf1\xf6\xfa\xde\xaa\x67\xd6\x36\xb1\x06\x00\x0a\x00\x6f\x71\x01\x44\x84\xcf\x7e\xf6\xb3\xfe\x74\xeb\xab\x57\xaf\xe2\x74\x3a\x95\x14\x1f\xcf\x57\x49\x39\x37\x29\x5f\x92\xf2\xc6\x67\xea\x1e\x16\x6f\x09\xf4\x48\xf1\x9c\xa7\x4e\x53\x10\x2d\x01\x6e\x49\xd6\x18\x98\x88\x81\x8e\x58\xfd\x6e\xb3\xce\xc4\xd2\x72\xde\xf6\x4f\x1d\xc7\x16\xe2\x25\x8b\x14\x88\xb4\x15\x32\x35\x97\x71\xbf\x98\xd9\x4a\x02\x28\xce\xaf\x69\x2f\x79\x93\x7f\x97\x8a\x12\xe3\xe3\x7e\x92\xe9\xcf\x39\x11\x88\x91\x0e\xca\x9b\x42\xc9\xf4\x10\x07\x5b\xae\x31\x83\x27\xb4\x1d\xd0\xb2\xa7\xf5\xb4\x5f\x4c\xb2\x42\xa5\x5b\xab\x64\xd4\xd3\x38\xf0\x87\xf5\x5b\x4b\x89\x1f\x11\xb9\x8e\xc8\xbe\xd3\xfb\x84\x7c\xac\x36\x15\xe8\x00\x0e\xf8\x85\x75\xe0\xfe\xc5\x4a\x28\x6b\xad\x71\x5b\x26\xab\xb0\x81\xe5\x04\x42\x10\xc1\x01\x45\xed\x9d\xfe\xb5\x11\xd2\xdd\x44\x01\xf6\xc7\x50\x26\x37\xca\x43\x42\x63\x48\xfa\x02\x5a\x97\x37\x65\x7e\x0d\xd2\x02\x2f\x6f\xe5\xea\xe9\xdd\x45\x7a\xf3\xda\x24\x3b\xd8\x9f\xf7\x30\x47\xb3\x5a\xa4\x5a\xeb\xa4\x02\x27\x76\x3d\x01\xba\xf2\xa8\xfe\x00\x02\xf8\x0b\x33\x11\x60\xa3\x6d\xd4\xd2\x48\x47\xea\xc8\x62\x53\x20\x00\x72\xfd\x8b\xc5\x23\xd5\xcb\x2e\x1d\x52\x93\x0c\x92\xf5\x52\xea\x07\x62\x56\x4e\x2e\x9f\xb4\x0b\x28\x96\x27\xbc\x73\xe6\x96\xb2\x98\x0c\xd2\x68\x98\xfe\x05\xc6\x4f\xe2\xcd\x95\x0e\xf7\x03\xc2\x0b\x01\x00\x1f\x7b\xec\x31\xfc\xed\xdf\xfe\x6d\x7c\xfd\xf5\xd7\x0d\x40\x79\x48\x25\x22\xfa\x01\x0d\xe1\x93\x38\xeb\x9f\x3d\xe5\xd6\xdf\xde\x0c\x16\xb0\x40\x69\x61\xc9\x76\x16\xc9\xee\x33\x77\x87\x4f\xfc\xec\x47\xdb\x5f\xbc\x79\xbc\xf5\xdb\x07\xd3\xde\x7f\x37\x5c\x27\x9f\x4d\x35\x5e\x46\xc0\x04\xc0\xed\xf6\x09\xcf\x54\x2a\x85\x0c\x5a\x58\xd8\x93\xd3\xc4\xb8\xf6\xed\x16\xdc\x22\xc1\x28\x86\xb6\xd9\xb0\x51\xd3\x26\xeb\x7c\xd0\x20\x26\x06\xf7\xfa\x39\x66\x79\x62\x3e\x3e\xeb\xe7\xa7\xab\x44\xaf\xa1\xbc\x12\xc0\x93\xdb\xbe\xcf\xb7\x87\xe7\x9f\x7f\x1e\xed\x81\x90\x3c\x5f\xa5\x3a\x02\x50\x2f\x97\x58\x9b\xa2\x65\x5c\x2b\xb3\x96\x78\x6a\x0a\x32\x12\xa7\x54\xd7\x68\x66\x71\xfd\x29\xb5\x15\x69\x81\x37\xff\xf1\x2d\xc6\xf4\x39\xb6\x03\x4f\xea\x1b\xa4\xe7\x58\x1b\x88\x4d\x13\x4b\xed\x98\xcb\x20\xc5\x17\x6b\xd3\x52\xde\xd2\xfc\xa1\xe1\x80\x7c\x37\x00\xd5\x01\x74\x40\x3c\x59\x75\x6f\xec\x48\x39\xe2\xe3\xa0\x25\x66\x3a\x93\x3a\xd6\x4d\x94\x82\xe4\x62\x89\x8f\x75\xae\xdc\x71\x04\xc9\xbf\x89\xe1\xd8\x42\x5d\xf7\x97\xf2\x93\xe6\xe1\x9d\xf6\xf4\x45\xb3\x4c\xf5\x7a\x96\xe9\x79\x02\x68\xb6\xd6\x6a\x98\x15\x6a\xa0\x00\x55\x75\x54\x14\x54\xeb\x55\x48\x71\xba\x75\x27\xb4\xc0\x7c\x9f\x63\x20\x9c\xfa\x01\x56\xb0\xa6\x9a\x52\x72\x56\x19\x40\xb6\x70\x97\xfc\x6b\x88\x0c\x81\xc3\x3a\x6f\x29\xbe\xa0\x53\x74\xdf\xfc\xb3\x3d\x31\xd8\x00\x9b\x2c\x83\xe8\x74\x53\x2d\xbe\xb2\x23\x4e\x94\xc1\xad\xac\x50\xd7\xb6\xd6\xc9\x93\xbb\x8b\xf4\xc9\x83\x59\xef\xf2\xde\xbc\x97\x42\x79\x64\x79\x91\xdb\x05\xbc\x0c\xc0\x50\xeb\x9b\x1b\x1d\xfb\x17\x80\xea\x2a\x81\x86\xeb\x04\x9a\xea\x7a\x0c\x40\x37\xd5\xbb\x98\x0b\xea\x52\x07\x19\x9a\x06\x05\x9c\x8f\xc4\xaf\x2d\xad\x00\x32\xf8\xe2\x1d\x3d\xe5\x27\x29\x00\xd7\x5e\x78\xfa\x78\x27\xce\xe3\xa4\x9d\xb7\x24\x43\xd3\x33\x8d\x13\x23\xfe\x9e\xf7\x67\x3e\xf3\x19\xbc\x73\xe7\x8e\x06\x00\xf3\x9b\xbf\xf9\x9b\xb8\xb3\xb3\x03\x0e\xd8\x7a\xa1\xaa\x75\x2c\xfe\x3e\x21\x67\xed\x83\x70\xe1\xad\x07\x2c\x17\x16\xe9\xe8\x99\xa3\xe1\x53\x9f\xfa\x78\xfb\x0b\x4f\x1e\x6f\xfd\xe6\xe5\x69\xf6\xab\xdb\xab\xf4\x17\x7a\x05\x5e\x53\x80\x5b\xb4\xa5\xb8\x76\x6d\xec\x3b\x3d\x69\x9b\x83\x97\xfa\xb4\xab\x9b\xf2\x21\x77\x9c\xb9\x9c\xb4\x7f\xb9\x75\xa6\x7a\x2e\xb3\x25\x68\x8b\x08\x60\x17\xeb\xee\x64\x85\x5a\x4d\x32\x7d\x34\xed\x17\xe3\x42\x95\xa7\x5a\xdb\xe0\x7e\xbd\x0b\x59\x15\x6f\xc8\x62\x78\xfa\xe3\xe5\xc4\xfb\xd0\x98\xe2\xa4\x7e\xbc\x3e\xf0\x32\xe6\x80\x96\xc7\xc3\xc1\x2f\xaf\x1b\xb1\x38\x39\x9d\x94\x8d\x12\xef\xd8\x8f\x3a\x64\xf4\xce\xaf\x4d\xee\x2e\xcf\x52\x5d\xe7\xed\xb9\x29\xbf\x01\xea\x72\x35\x95\x99\x14\xbf\xd4\x1f\xf1\x3c\xf5\xa0\x4b\x9a\x2a\xa2\xc2\x36\x75\xa8\x12\x08\xe0\x19\xce\xbf\x4b\x40\xa6\x0d\x90\xb8\x70\x12\x3d\x05\x27\xf4\x1b\xed\x08\x29\x6f\x29\x3d\x9c\x47\x93\x0c\xe2\x77\x76\x9f\x11\x2f\x70\x04\x80\xe0\x86\x63\x08\xba\x89\xf2\x5d\xa3\x31\xcb\xd4\x2c\xe7\x99\x5e\x82\x01\x33\xc8\x93\x41\x96\xab\xa1\x02\x54\x7e\x5a\x48\x00\x08\xd2\x02\x57\x1b\x5f\x30\x95\x44\xc3\x55\x5b\x1d\xd1\xfa\x5b\x70\x64\x7b\xa2\x2a\x91\xe1\x39\x30\x41\x07\xc7\x13\xc8\x13\xe4\xbe\xfa\x6d\x94\x42\xf8\xe0\xe6\x6a\x0c\x3a\x4d\xda\xf9\x86\x08\xba\x7e\xdf\x92\xc5\x5b\x7e\x2a\xcc\x5a\xab\x52\x65\x70\x94\x15\xea\xf2\x70\x95\x3c\xbe\xbb\x48\x3e\x71\x71\xde\xbb\x7a\x61\xd1\xeb\xa7\x1a\xf3\x45\xaa\x8b\x3c\xa9\xa6\x8c\xa0\xaa\x07\x7e\x14\x42\x76\x7f\xf0\xe4\x41\x07\x10\xb3\x89\xeb\xda\x0e\xa8\xdb\x84\x7e\x53\x60\x74\x9e\x78\x62\x34\xd4\x3f\x66\x01\x92\xda\x0e\x1f\xd4\x48\x72\x48\x3c\x36\x91\xb9\x89\x87\x0f\xff\xa5\x2f\x7d\x09\x6f\xdd\xba\x65\x00\x00\x7e\xe5\x57\x7e\x05\x5f\x7f\xfd\x75\xf3\xd2\x4b\x2f\xa9\x7e\xbf\x5f\x06\xaa\xa6\x80\xd0\x5a\x54\x10\xc8\x49\xb7\xf6\x5b\x0f\xcb\x83\xe4\x32\x0a\x5a\x2e\x4d\xd2\xbd\x4f\xde\x1d\x7e\xf2\xd9\xc3\xe1\x17\x9f\xb8\x3f\xf8\xb5\x2b\x93\xec\x97\x47\xcb\xf4\xe7\xb3\x02\x6f\x28\x83\xe5\x39\x4f\xa4\x7e\xfb\x46\xe2\x5b\x09\x19\x58\x18\xda\x8e\xcb\x24\x04\xd3\xb6\xc6\x1e\x6b\x80\x2e\x9c\xeb\x57\x2a\x6b\x2b\x6d\x10\x01\x50\x31\xae\xbf\xa8\x83\x17\x04\x00\x7b\x9f\xd1\x76\x62\x70\x36\xe9\xeb\xa3\x59\x75\x9f\x91\x5f\xef\x42\xf2\xd5\x75\x86\x86\xec\xe2\x8b\x59\x11\x63\xe5\x2a\xf5\xd9\xb1\x67\x89\x5f\x53\x58\x89\x37\x12\xff\x98\x7c\x94\x0f\xb5\x1a\x80\x40\x2f\xa5\x2b\x66\xf5\xe1\xf1\x70\x50\xd6\xc4\xbb\x2d\x1f\xf8\xb3\x14\x2e\xc6\x7b\x13\x59\x9d\x3f\x57\x29\x31\x9c\x21\x19\x35\x3c\x2d\xd7\x77\xdc\xac\x1a\x5b\xed\xcc\xbf\x71\xf4\x1a\x73\x31\x9e\xb1\xf0\x92\xbf\x64\x0a\x96\xc2\x35\xc9\xf2\xa0\xdf\x45\xf7\xd2\x4b\x2f\x29\x02\x18\xdc\x9a\x0a\x05\xe1\x9d\x46\xb5\x7b\x8d\x8c\x31\x23\x44\x1c\x81\x81\x51\xaa\x71\xef\xd2\xb4\xf7\xe8\xcd\x7b\x5b\xcf\x3d\x79\x3c\x78\x6e\x7f\x96\x5e\x4b\x0b\x95\x01\x82\x5f\xc7\xe2\xca\xb1\x7e\x22\x4a\xe9\xdc\x49\xb8\x14\x34\x94\xa1\x9c\x55\xc3\x8d\xb6\xd8\x3a\x19\x1f\x2c\x3c\x31\xb3\xc9\x75\x20\x79\x20\xfa\x56\x5e\x9d\x64\x34\x5a\x23\xcc\x72\x65\x0e\xe7\xbd\xe2\xdd\xfb\xc3\xfc\xcd\xbb\xdb\xeb\xef\x1f\x6d\xaf\xde\xfe\x78\x67\x75\xfb\x64\x2b\x9f\x21\xa2\xbb\xfb\xc8\xdd\xb9\xa2\xa1\xba\x7f\xc5\xad\x51\xa2\x77\x22\x01\xf5\x73\xee\xe5\x97\x5f\xd6\x00\x00\x5f\xfa\xd2\x97\xd4\x37\xbf\xf9\x4d\xa9\xde\xc6\xde\x25\xff\xa6\x76\x21\xd5\x7d\xc9\xe2\xd9\xd4\x86\x25\xde\x31\x5a\x1e\x5f\x97\x76\x47\xc3\x39\xd7\xd4\x76\x29\x1d\xa5\x6f\xe2\x47\x69\xa4\xf0\xd2\x77\x69\xc4\xed\xf9\x0f\x06\x03\xb5\x58\x2c\xf4\x97\xbe\xf4\x25\x05\x00\xf0\xe4\x93\x4f\x42\xaf\xd7\xab\x0d\x04\x68\x7c\xe4\x0e\x21\x20\xed\xbe\xd6\x07\x18\x63\xd2\x54\x63\x76\x79\x9a\xed\x5e\x3d\xcb\x1e\xbf\x3a\xce\x7e\xee\x60\xda\xfb\x4f\xdb\xab\xe4\xd9\xac\xc0\xeb\x89\xc6\x5d\x04\x1c\xf0\x1e\xbd\x04\x26\xc1\x2e\x45\x41\x9e\x92\xd2\xb8\x10\x02\xbd\x81\x3a\x63\xcf\xdb\xbd\x78\x6e\x86\x00\x96\x92\xa6\x04\x3d\x72\xa3\xd3\x68\x16\xe3\x7e\xfe\xdd\xb7\x0f\xe6\xff\xdb\x0f\xae\xce\xbe\x75\x6f\xb4\xbe\x03\x00\x0b\xf7\x73\xed\xcb\x18\xa3\x01\xaa\xfb\x8c\x0e\x0f\x0f\xe1\xbb\xdf\xfd\x2e\xdc\xba\x75\x4b\xaa\x1b\x5d\x75\x12\x2f\x93\x58\xfd\x6a\xe2\x0d\x0d\xef\x5d\x79\x34\xa5\x21\xc6\x8f\x7f\x93\xfa\x80\xa6\x34\x35\x85\xe7\x2e\xd6\x06\x9a\xfa\x8e\xb6\xf4\xd0\xb8\x25\x99\x78\x1c\x31\xda\xa6\xf8\x02\x7a\x69\xaa\xa8\x09\x35\x79\x53\x0d\xf1\x03\xe2\xc7\x9d\x64\x61\x89\xf1\x8b\x8d\xb4\x24\x94\xa9\x84\xef\x34\x4e\x20\x74\x12\x02\xe6\x05\x8f\x8c\x7e\xd3\xd1\xa9\x02\xa8\x56\xcc\xdb\x93\x30\x0d\x01\x07\x41\x9e\xf2\xc3\x99\x90\x98\x24\xb4\x02\xbd\x4c\xf5\x72\xd1\x2b\x96\x06\xa0\xe8\x17\x6a\xd0\xcf\xd5\x30\x71\x23\x2f\x4b\xd8\x08\x2c\x9c\xe5\x81\x91\xb8\x30\xde\xca\x21\x80\x16\xf9\xe4\x38\x97\x41\xe4\x42\x46\x70\x16\x8e\x80\x43\x73\x2e\x55\xec\x6c\x07\x1a\xb7\x0a\xc5\xd8\xc5\xae\x32\xe0\xe1\x59\xba\x51\x01\x66\x89\x81\x0b\x59\xa1\xae\x8e\x56\xc9\x8d\xbd\x79\xfa\xf8\xc5\x79\xef\x91\xd1\x2a\xdd\xdb\x5e\x27\x09\x02\xac\x56\xa9\x31\x1a\x21\xb1\x66\x74\x05\xe5\x08\x9a\xde\x89\x84\x36\xdf\xfc\x1a\x18\x5b\xc6\xee\x9b\x9f\x4e\x22\x77\x23\x51\xd1\xb8\xa8\x91\x5c\x0a\xea\xa1\x44\x17\x1b\x15\x35\x8d\x22\x01\xe2\x6d\xab\xcd\x49\xf1\x49\x61\xa5\xd1\xa7\xeb\x74\x68\xd1\x50\x7f\x1e\x9e\x9b\xaf\x25\xfe\x26\x42\x63\x84\x1f\x1f\x4d\x72\x99\x7c\x9e\x7c\xfe\xf3\x9f\xc7\x47\x1f\x7d\x14\xad\x02\x85\x5b\xb7\x6e\x99\xdf\xf8\x8d\xdf\xc0\x24\x49\xa8\xf2\xa6\x75\xc1\xf5\x1d\xde\xba\x42\xa7\x84\xec\x96\xe6\x0c\x00\x7a\xa8\x21\x1b\xae\xd4\xe8\xda\xa4\x7f\xf9\x89\xfb\x5b\xcf\x3d\x7d\xb4\xf5\x85\x9b\xf7\xb6\x7e\xfd\xea\x24\xfb\x6f\xb7\x57\xea\xe7\xb2\x42\x3d\x9a\x18\xb5\xab\x00\x52\x6b\x0b\x09\xac\x1a\xe5\x83\x9d\x0c\x22\x6d\xb8\xea\x81\x8d\x7f\xf5\xd6\x93\x60\x77\x10\x7a\x32\x6f\xc1\x71\xbc\x31\xb4\xe8\x56\x6c\xab\xa3\x13\xc2\xc6\xeb\xfa\x8f\x5a\xe1\xa4\xa9\x56\xa3\x5e\xa1\xcc\x3a\xd1\xf7\x27\xfd\xe2\x64\x95\x9a\x15\x94\x8b\x74\x01\x11\x0b\xb7\x16\x90\xf6\x8d\xa3\xd1\x08\xbe\xfe\xf5\xaf\xd3\xa9\x85\x20\x65\x10\x4e\xe7\x34\xd5\x69\x5a\xae\xc0\xfc\x8d\xe0\xcf\x79\x77\x9d\xc6\x50\x42\x38\x49\x76\x1e\x0f\x6f\x73\x8e\x8f\x14\x37\x8d\x8f\xcb\x2e\xe9\xde\x36\xdd\xcd\xf9\xf1\x36\xc0\x75\x30\x97\x81\x83\x88\xa6\x76\x16\x6b\xc7\x94\x5e\x91\xef\x00\x21\xa6\xe0\xf9\x50\x93\xdf\x05\xea\x82\xb6\x62\x2e\x86\x4c\x39\x4d\x9b\x95\x44\xa2\xe7\x61\xa1\xe5\xb9\x29\xbc\x24\x73\xd3\x28\xb2\x6d\xe4\x2b\xa2\xf9\x5f\xfc\xc5\x5f\x54\xdf\xfe\xf6\xb7\xb5\xbb\x7b\xc4\xfa\xfb\x11\x17\x54\x23\xaf\x0c\x00\x06\x88\x38\x00\x80\x11\x00\x0c\xed\xdf\x11\x00\x8c\x92\x02\x76\x2f\xce\x7b\x8f\x3c\x71\x3c\x78\xf6\xa9\xa3\xad\x4f\x1d\x4c\x7b\x37\x7a\x5a\x65\x00\x60\x81\x43\xf7\x9b\x5d\x01\x80\x8c\x96\x40\x04\x05\x6e\x94\xd6\x04\x1a\xc0\x40\xb8\xe5\xba\x83\xed\xa4\x03\x9c\x89\xd2\x75\x09\x2b\x01\x15\x68\x90\xcf\xb6\x00\x6d\xc0\xac\xb4\x82\x93\x55\xa2\x3f\x98\x66\xc5\x0f\xef\xec\xae\xbe\xf3\xd1\xee\xea\xed\xfb\x5b\xeb\xdb\xe3\x41\x7e\xb2\xe8\xe9\x45\x81\x90\x03\x42\x6e\xaa\x5b\xa7\xb5\x1d\x2d\xba\xf9\x7b\x00\x52\x07\x98\xf5\x25\xa8\x73\xc6\x18\x78\xe5\x95\x57\xf4\xe7\x3e\xf7\x39\xb5\x58\x2c\x00\x00\xe0\xf5\xd7\x5f\x8f\xd5\x4b\x17\x5e\x6a\x97\xfc\x7b\xac\x0e\xc7\xda\x74\xec\x3b\x30\x3a\x10\x68\x9a\x46\x82\x92\x6b\x1a\x81\xc6\xfa\x81\xa6\x51\x32\x8d\xaf\x6d\xd4\xdc\x48\x7b\xf3\xe6\x4d\xb5\xbd\xbd\xed\x89\xae\x5e\xbd\x0a\xff\xf8\x8f\xff\xa8\x5f\x7c\xf1\x45\x15\x58\x18\x00\xf8\x74\xa1\xb2\xdf\x14\xf9\xa6\x00\x2a\xeb\x8a\xfd\x9b\xa2\x86\x34\xd3\x98\x6d\x2f\x93\xd1\x85\x45\x7a\x70\x69\xda\x7b\xfc\xea\x59\xf6\xcc\xc1\xb4\xf7\xe9\xad\x55\xf2\x6c\x4f\xe3\x75\x65\x60\x04\x50\xf2\xb7\xb1\x42\xe3\x79\x00\xc4\xd5\xeb\x7c\x68\x99\x09\x2d\x34\x50\x1b\xc8\xb8\x30\x2e\x4e\xb4\x42\xd0\xb5\x6f\xd4\xca\x42\x2f\x5d\xa4\x38\x86\xf1\xd2\xab\xc4\xdc\xfe\x68\x77\xf9\xf5\x1f\x5c\x9d\xfd\x9f\xef\xed\xcf\xdf\x5c\xf6\xcc\xd8\x18\xb3\x40\xc4\x15\x00\xac\x8c\x31\x39\xd8\x36\x64\x65\xd4\x00\x95\xb5\x52\x70\x5d\xca\x5e\xa2\xe5\xae\xad\x0e\xc6\xea\x74\x97\xba\xd6\xc5\xda\x10\x1b\xdc\x37\xf1\xe8\xa2\x37\x25\x59\xda\xfa\x86\xb6\xf6\x12\x7b\x8e\xf9\x41\x07\x7f\x1a\x87\x44\x1f\x93\xbd\x26\xaf\xb3\xb8\x70\x2b\x0a\x45\x5e\x40\xde\x81\xd0\x70\x81\xa4\x0e\x88\x8e\x90\x28\x1f\x8e\x08\x39\xaa\x45\xf2\xe3\x68\x8d\x3e\x73\xd4\x48\x75\x18\x47\x89\x12\x22\x04\x42\xd7\x94\x6e\x69\x74\xca\xdf\x11\x00\xcc\x07\x1f\x7c\x60\x7e\xf9\x97\x7f\x59\xfd\xe5\x5f\xfe\xa5\xbb\xd7\x88\xe7\x41\x49\x5c\x8e\x3a\xa2\x3c\x35\x1a\xb3\xec\xe9\xf5\xbc\xa7\x17\x5a\x41\xb1\x95\xab\xc1\x60\xad\xb6\x95\xb6\x96\x17\xd7\xcb\xd0\xc0\x0d\xd7\xd4\x07\x16\x18\x14\xc2\xd8\x51\x5c\x70\x5e\x03\x11\xca\x83\x15\x1f\x38\x5c\xff\xc2\x04\x61\x96\x9a\x2a\x83\x68\x88\xe0\xd0\x3a\x43\x60\xb4\x25\xc1\x30\xa0\xef\x64\xfd\x96\x6e\x06\xc6\x82\x5d\x4f\x3c\x6f\xc0\x55\x28\x77\x04\x1f\xa6\x68\x70\xd4\xd3\x78\x65\x90\x27\x4f\xee\xcd\x7a\x4f\x1d\x4c\x7b\x8f\xec\x2e\xd2\xdd\x7e\xa1\xb2\x5e\xa1\x12\x65\x40\xd9\x40\xee\x5f\x65\x2d\x65\x4e\x59\xf9\x41\x2b\x40\xb0\x2b\x89\x0e\x96\x11\xa0\xb4\xaa\x7d\xf6\xb3\x9f\xc5\x47\x1e\x79\x04\x1e\x7b\xec\x31\x78\xec\xb1\xc7\x02\x8b\xcc\xd3\x4f\x3f\xad\x8e\x8f\x8f\xf5\x27\x3e\xf1\x09\x3c\x3d\x3d\x95\x46\x73\x7c\xa4\x43\xb3\x37\x36\x22\x6c\x1a\x29\x4a\xa3\x49\x10\xc2\x70\x8b\x05\xfd\xc6\xdb\x8c\xc4\x4b\x1a\x39\x51\xf9\x63\x23\x5a\x69\xf4\x2a\xf5\x25\x52\xbf\x40\x0b\x5f\xec\x43\x7e\xed\xd7\x7e\x0d\xbf\xf1\x8d\x6f\xe8\x2f\x7f\xf9\xcb\xf8\xd8\x63\x8f\xc1\xde\xde\x1e\x5f\x1f\x70\x68\x00\x00\x20\x00\x49\x44\x41\x54\xbc\xf0\xc2\x0b\xce\x82\xa6\x00\xaa\xf5\xdb\x10\x5a\x56\xd0\x18\xe3\x2c\x2c\x0a\xaa\xad\xcd\xe5\x1a\x16\x03\x59\xaa\x55\x7f\x6b\x9d\x6c\xef\xcf\x7b\x97\x1e\x19\xf7\x9f\x7c\xe2\x78\xf0\xb3\x4f\xdf\x1d\xfe\x37\x9f\xb8\x3f\xf8\xd5\x83\x59\xef\x8b\xc3\x75\xf2\xe9\x54\xe3\x35\x05\x6e\xf7\xa0\xa9\x1a\xa6\xb1\x22\x53\xec\x52\x43\x1b\xae\xb2\x1b\xdf\x6e\x2b\x3a\xb2\x6e\xcc\xaf\x61\x03\x40\x34\xd5\x91\x09\x25\x3a\x29\x2f\x6c\x75\x20\xc5\x87\x71\xe1\x08\x0f\x63\x0b\x0a\xa1\x3c\xc8\x12\x48\xbb\x23\xe2\xd9\x46\x82\xca\xc0\xb0\xa7\x55\x5f\x01\xcc\x67\x99\x3e\x9c\xf4\x8b\x39\x28\x2c\x6c\x39\x18\xb4\xd7\x02\x58\xfe\xc6\xe6\xa9\x89\x9c\x5a\x1d\x2b\x7b\xa9\x8e\xc7\xac\x01\xb1\x7a\x23\x29\x75\xa9\x5d\x34\xe9\x1d\x5a\xbf\xb8\xac\x92\xcc\x12\x6f\xca\xb7\x8b\xcc\x5c\x77\xf2\x34\xc7\xc2\x34\xb5\x29\xa9\x1d\x49\xcf\x3c\xdf\xa5\xb4\xc4\xfc\x79\xde\x4a\x6d\xb3\xad\xbf\x28\xeb\x10\xc9\x80\x18\xc2\x6c\xf2\xef\x62\xad\x88\xb9\xae\x96\x90\xb6\xb8\xba\xbc\xb7\xc5\xfb\xb0\x5c\x8d\xb7\xb5\xbc\xf0\x5f\x6a\xff\xd2\x35\x2f\x43\xf7\xf3\x6b\x5e\x00\x46\x4a\xc3\x68\x67\x99\x5e\x7e\xf2\xde\xe0\xd9\x67\x0f\x87\xbf\x10\x58\x5e\xac\xe3\x1d\x08\x04\xef\xd5\xbf\x00\xe1\x34\x0b\xa5\xaf\x5d\x35\x50\x7a\x06\x23\xb6\xa0\x33\xb5\x61\x02\xa0\xc4\x04\xb0\x3d\x92\xef\x90\x43\xe0\xc3\xa5\x8d\xc9\x1f\xbe\x87\xe9\x6d\xb6\xfa\xd4\x63\x88\xfb\x01\x80\xd6\x60\x16\x45\x62\xee\x2c\x52\xfd\xc3\x93\xad\xfc\x8d\xbb\xa3\xf5\x8f\xee\x8e\x56\xef\x9f\x0e\xf2\xa3\x69\x56\x8c\x17\x3d\xbd\xc8\x95\x59\x69\x05\x1a\xc2\xf5\x2f\xfe\x47\x47\x90\x50\xd5\x85\x9a\xf5\x85\xd0\x78\xd7\x30\xe2\xe4\xee\x41\xea\x70\xd3\xa8\x6d\x13\x7f\xe9\x5b\x9b\x05\xa5\x4d\xee\x2e\xfd\x0a\x34\x7c\x8b\x8e\x4a\x5f\x7c\xf1\x45\xf5\xca\x2b\xaf\x68\xb6\x0e\xcd\xc7\x5b\x5b\xef\x55\x5a\x4d\xe8\x37\x45\xfc\xa9\x85\x25\x05\x03\x4a\x19\x48\x7b\x1a\xd3\xad\x55\x32\xda\x5d\xa4\x7b\xfb\xb3\xde\xb5\x6b\x67\xbd\xa7\x2f\x4d\x7b\x3f\xbb\xbd\x4a\x9e\xcb\x72\x7c\x5c\x19\xdc\xc5\xf2\xf8\xfe\x2a\x1e\xfb\x97\x8f\xb8\xa2\xb5\xda\x02\x8e\xfa\xa0\x82\x0c\x2e\x00\xeb\x7c\x6b\x6d\xd3\xb6\x77\x03\xc1\x80\xc1\xb7\x7f\x0b\x68\xaa\x6b\x3f\xa4\xb6\x56\x31\xa5\x6b\x64\x8c\x31\xa0\x15\xcc\xc6\x83\xfc\x7b\xef\x5e\x5a\xfc\xcd\xbf\x3f\x32\xf9\xe7\xfb\x5b\xf9\x11\x20\xcc\xa0\x5c\xef\xb2\x02\x00\xb7\xa6\x8c\xb6\x1f\xa9\x0d\x9c\x57\xd7\x74\xb1\x5a\xb4\xf1\x39\x4f\x9b\x88\xc9\xd1\xc4\xa7\xc9\x52\xd1\x16\xff\x79\xf5\xee\xa6\x3a\xba\x8b\xd5\xa7\x8b\x4c\x6d\x3c\x3b\xf5\x21\xf1\x5e\x5f\x16\x0c\x3a\x08\xb1\xa9\x6b\xca\x90\xf3\x00\xa0\x58\x25\x38\x4f\xfc\x5d\xe3\x6b\xec\xbc\x1d\x78\xa1\x9d\x1e\x94\xd3\x45\xca\xce\x81\x0f\xa0\x04\x30\x43\xf2\xf3\x8b\x76\xd1\xc0\x68\x7b\x95\x5c\x7a\xf2\x68\xeb\xe9\x9f\x39\x1c\x3e\x7f\x79\xd2\x7b\x3c\xd5\x98\x01\x40\xd8\xad\xd8\x7e\x24\xe8\xa3\x58\xcf\x16\x82\x95\x6a\x90\x47\xe9\x43\x8b\x70\xe9\xe1\x59\xc4\xf8\x13\x27\x75\xc0\x4d\x9d\x71\x1b\x5d\xc0\x4f\x64\x44\x21\x1a\xe3\xe3\xd3\x4d\xce\xa4\x21\x1d\xb4\x24\x8c\x41\xc8\x35\x9a\xf1\x2a\xd1\xef\xcf\x32\xfd\xe6\xc9\xd6\xfa\xf5\xc3\xd1\xfa\xdd\xbb\xa3\xd5\xed\x93\xad\xfc\x64\x9a\xe9\x49\xae\x74\x5e\x28\xc8\x01\x20\x07\xf4\xa0\xc5\x2d\x38\xd4\x00\xe0\xa6\x8d\xb4\x9d\x72\xa8\x4d\x23\x11\x65\xa9\x4d\x00\x12\xab\x67\xd7\x91\x5f\xbc\x78\x51\x01\x00\xdc\xbf\x7f\x7f\xd3\xfa\xdc\xb5\xf3\x7d\x10\x80\xd1\x34\xd0\x71\xee\xbc\x83\x8e\xce\xfd\xca\xc5\x8b\x17\x15\xcd\x1f\x3a\xed\x03\x00\x74\xea\xc7\xcb\x46\x17\xd3\x73\xb9\xe9\x74\x10\x59\x7c\x5b\xb6\x5f\x03\xa9\x32\xa0\x12\x8d\x59\x4f\xe3\x60\x7b\x99\x0c\xf7\xe7\xe9\xfe\xd5\xb3\xfe\x8d\xcb\x67\xbd\x9f\xb9\xb0\x48\x7f\x6e\xb0\x56\xcf\xa5\x06\xaf\xa0\xc1\x01\x18\x50\xbc\xed\x54\xf5\x99\xc3\x8e\x38\x88\x91\xc1\x3c\xdf\x12\x5d\xd5\x7d\x69\x3b\xb4\x31\x74\x80\xc2\xb6\x4f\x03\x6b\x37\xb5\xc1\x0b\xa1\x77\xfc\x79\x20\x4b\x9b\x27\xe6\xe4\x78\xb8\xfe\xd6\x5b\x57\xa6\x7f\xf9\xfd\x47\x66\xdf\x5b\xa6\x7a\x0c\x00\x33\x32\x6d\x14\x4c\xc3\x82\x6d\x07\xaf\xbc\xf2\xca\xa6\xfd\x70\x9b\xa2\x84\x8e\xdf\xdb\x74\x9c\xf4\xde\x24\x57\x97\x6f\x4d\x8a\xbc\x0d\xa8\x73\xb9\xdb\x64\xa7\xfe\x9c\xb6\x49\xd6\x4d\xfb\x92\x2e\xbc\xba\xd0\x4a\x61\x01\x20\xac\xd3\x5d\x12\xb3\xa9\x8b\x09\xd1\xd4\xd1\xc5\xe8\x9d\x3b\xcf\xe8\xab\xad\x32\xc5\xf8\x6c\x92\xa6\xa8\xa3\xeb\x5d\x38\x78\xb1\x7f\x03\xf0\x62\x8c\x19\x00\xc0\xd0\x59\x5d\x00\x60\x04\x06\x46\xfd\x1c\x2f\xde\xbc\xb7\x75\xf3\xd3\x1f\x6d\xff\xe2\xc1\x2c\xbb\xd1\xcb\xcb\xdd\x07\xb6\x87\xe1\x23\xc6\xda\x3b\x35\xef\xd6\x0e\x70\x60\x23\xb9\x18\x8f\xa8\x85\x45\xea\x24\x6d\x9c\x8d\x1d\x29\x43\x11\x35\x5c\x22\x01\xaf\x8e\x20\x8c\xaa\x03\x20\xdd\x73\x6c\xbe\xdf\xcb\x4b\x47\x9e\x60\x56\x85\x32\xc7\xcb\xd4\xbc\x3d\xcd\x8a\x7f\x3f\xde\xca\x5f\xff\x78\x77\xf5\xde\xc7\xa3\xe5\xe1\xfd\x61\x3e\x5e\x27\x66\xa5\xd1\xe4\x1a\xad\x05\x06\xbd\x25\x06\x48\xa7\x0c\x50\x01\x1b\x80\xb0\xbe\xd4\xea\x0e\xdf\xa9\x44\xfc\x01\x11\x3d\x98\xf9\xf2\x97\xbf\xac\xfe\xfa\xaf\xff\xda\x87\x77\xbb\x61\x48\x90\xae\x1d\x65\x97\x6f\x31\xd7\xd6\x6f\x3c\x70\xa7\x26\xa4\xab\xe6\xcf\xd7\xa6\x34\x59\x54\xc8\x1a\x10\x0a\x6c\xa8\x65\xc5\xb7\xd7\xe0\x67\x20\x45\x00\x85\x06\xd2\x5e\xa1\xb2\xe1\x4a\x0d\x2e\xcd\x7a\x7b\x97\x27\xbd\x6b\x97\x27\xd9\xcd\x8b\xf3\xf4\x33\x5b\xab\xe4\xd3\x3d\x0d\x37\x94\xc1\x11\x00\xa4\x41\x8b\x12\x2a\x5e\x58\x5f\x43\x50\x60\x9b\xb5\xad\x8b\x32\xf4\x8f\x59\x21\x25\xbe\x04\x56\x54\x31\xd1\x36\x19\x91\x4b\xf2\xa8\xb5\xc3\xc8\x00\x66\x95\xe8\x3b\x1f\xef\xac\xfe\xfe\x7b\xd7\x27\x7f\xf9\xce\xa5\xf9\x7b\x1a\xcd\x04\x11\x17\x16\xbc\x94\xc0\xbf\x02\x30\x00\xb6\xfc\xc7\xe3\x31\x7c\xf5\xab\x5f\xed\x6a\x81\x00\xe1\xfb\xa6\x96\x81\x2e\xdf\x37\x19\x5c\x77\x05\x56\xce\x0f\x22\x7c\xba\xca\xd1\x14\xb7\xe3\xdd\xa6\x8f\x9b\xdc\x26\x03\x8c\x4d\x01\xce\xc6\xfd\x0e\xdd\x55\x44\xe7\xa7\x28\x43\x24\xfe\x8a\x3d\x23\xf9\xae\x84\xf0\xfc\xdd\xd1\xd2\xb9\x2b\xc5\xde\x69\x3c\xee\xbb\x73\x34\x41\x86\xd1\xd3\x6f\x74\xb0\x82\x10\x66\x8a\x24\x13\x8d\x9b\x7f\xe7\x8e\x7e\xef\x94\xc9\xf4\x9c\x17\xd6\xa1\x3a\x19\x35\x7b\x46\xac\x2e\x2b\x03\x28\x15\x22\x16\x0a\xf2\x7b\xdb\xeb\xf1\xa2\xaf\x4f\x87\xab\x74\x38\xc8\x93\x51\xa2\xb1\xa7\xa0\x5a\xfd\xef\xc7\x6d\x1e\x94\x58\x5f\x1f\xad\x5b\x84\x87\x81\x95\x06\xb0\x6e\x08\xae\x76\x14\x80\x0f\x13\xd0\x60\xf8\x5c\xeb\x80\x03\x99\x80\xed\x42\xf2\x91\x84\xaf\x24\x23\x82\x38\xb0\x1e\x24\x00\x28\x58\x23\x23\x41\xd9\x79\x34\x02\xad\x63\x4c\x79\xd9\xb0\x09\x1a\x1c\xf5\x0a\xf5\xf8\x70\xa5\x3e\xbd\xb7\x48\x3f\x73\x79\xda\x7b\xfa\xda\xa4\xbf\x73\x79\xd2\x1b\xec\x2c\x93\x34\xd1\x98\xac\x13\x83\x45\x62\x00\xd0\x83\x51\xb7\x50\x93\xae\x39\x70\x4a\x90\xa7\x0a\x01\xc0\x9f\xba\xec\x76\x28\x01\x6b\x6f\x6e\x5d\x80\x5b\x1b\xf3\xe6\x9b\x6f\x06\x75\x35\xcf\xf3\xb6\xf6\xc7\xfd\x9a\xe8\xdb\xda\x01\xa5\x6b\xa2\xe5\xed\x65\xe3\x38\xff\xf0\x0f\xff\x50\xbc\xb5\x9b\xa6\xd7\x1e\x02\xe9\xfb\x24\xac\x16\x6a\x18\xfb\xce\xf3\x32\x41\x44\x77\xee\x8a\x02\x7b\x04\x3f\x86\xa7\xda\xa6\xc6\x98\x14\xca\x43\xe2\x7a\xca\x40\x36\x5a\x25\x5b\xd7\xc7\xfd\x83\xa7\xee\x6d\x7d\xe2\xb9\xc3\xe1\x2f\x3c\x7d\xb4\xf5\x1b\x8f\x9d\x0e\xbe\x72\x69\xd6\xfb\x1f\xb6\xd6\xc9\x67\x52\x53\xae\x5d\x01\x7b\x78\xa4\xb1\x03\x04\x04\xf4\x03\x03\x43\xac\x16\xf4\xb8\xfd\x60\x6d\x99\xab\xa3\xac\x21\x70\x6b\x21\x87\xfc\xd5\xfa\xaf\x8a\x4f\x7d\x03\x73\xfd\x04\x6b\x0e\x3c\x78\xdb\x90\xee\x2a\x02\xda\x8e\x30\x2c\x3c\x07\x90\x12\x83\x83\x7e\xa1\x2e\x64\x85\x9a\x9c\x0c\xf3\x9f\xcc\xfa\x7a\x01\xe0\xaf\x01\x70\xb7\x47\xbb\x7e\xd1\xb2\x37\xe6\xcf\xfe\xec\xcf\xb4\x8f\x3a\x64\xcb\x75\x04\x2d\x57\x8c\x3c\xc7\x68\xa4\xba\x49\x79\x72\x1e\x92\x1e\x89\xc5\x13\xab\xd7\x52\xdb\x8e\xb5\x21\x49\x26\xc7\xa3\x49\xef\xf2\x7c\xd0\x42\x38\x10\xfe\xf2\x34\xc4\xd2\xe3\xde\xbb\xe4\x6b\x4c\x2e\xce\x4b\x7a\x96\x64\x02\x80\xb2\x71\x36\x39\xae\x94\x9b\x46\x8a\x5d\x10\x53\x93\xe9\x89\x3e\x73\x2b\x0b\x0f\xdb\x16\x9f\x24\xe7\x79\xd0\x72\x17\x39\x63\x61\x45\x27\xac\x6f\xc8\xa1\x2c\x87\x95\xfb\x46\x46\x1e\x1a\xc2\x91\x7a\x6e\x10\xf4\x3b\xfb\x8b\x77\xa6\xa9\x5e\x7c\xfa\xce\xf6\xf8\xb1\x93\xc1\xb3\xa3\x65\xb2\x9f\x68\x54\x5e\x21\x1b\x72\xa9\xa2\xc7\x2d\xe8\x47\x57\x14\xcb\xd4\xce\x6c\x21\x96\x97\xaa\xa6\x94\x01\xa5\x5d\x04\x35\xa0\x01\x41\xb7\x28\x74\x80\xb2\x3f\x75\x1c\x49\x4a\xb7\x45\xd3\x91\xa2\x14\x07\x0a\xcf\xc8\x68\x9c\x5f\xad\x37\x60\xca\x81\xc8\x35\x48\x35\x3e\x3e\x5a\x26\x8f\x6f\xaf\x92\xff\x7c\xf9\x2c\xbb\xb3\x4c\xf5\xdb\xb3\xac\x78\x73\x3c\xc8\x7f\x70\xbc\x95\xbf\x7f\xb8\xb3\x3a\xba\x3b\x5a\x8f\xcf\xfa\xf9\x42\x2b\x58\xd9\xb2\x0e\xac\x30\x00\x10\xec\x52\x72\xe5\x2d\x4d\x1b\x41\xbd\x1d\xd4\xa6\x40\x00\xda\xd7\xc7\xbc\xf8\xe2\x8b\x9e\xcf\x2b\xaf\xbc\xa2\xdd\xbb\x60\x96\xaf\xc5\x67\xdd\x26\x96\xcb\x36\x4b\xa9\x7e\xe6\x99\x67\xd4\x8f\x7e\xf4\x23\xdd\x45\x2e\x44\x0c\xd6\xa8\x00\x80\x6c\x51\x2c\xf3\x4e\x51\x3f\x44\x74\x7d\x9c\x02\x90\xd7\xab\xd0\x69\x20\xf2\x9c\x02\x00\x24\x06\xb3\x4b\xd3\xde\xf0\xea\x24\xdb\x3b\x98\xf4\xae\xef\xcd\xd3\x27\x46\xcb\xf4\x67\x86\x6b\xf5\x5c\x56\xa8\x9b\x89\x86\x7d\x70\xfd\x28\xa9\x48\xbe\xce\xb1\x5d\x3d\xe5\x0b\xd6\x1a\x4e\xc7\x8d\x44\xc1\x1a\x14\x37\x90\x40\x17\x29\x65\xe9\xf8\xbb\xb6\x4e\xe3\x62\xd6\xd7\x80\x9e\x3e\x63\x25\xb7\x07\xdf\x54\x08\x1b\x61\x89\x0c\x5d\x80\xf2\xb3\xf1\x09\x36\x69\x7f\xad\x6e\x5c\x1f\x67\xff\xfd\xcf\xde\x1e\xdd\xfd\xd6\x93\xa7\xff\xf7\xbc\xa7\xc1\x5d\xc6\x08\x55\x7d\xcf\x59\xff\x07\x7f\xf0\x07\x7f\xa0\xfe\xe4\x4f\xfe\xa4\x69\x9a\x44\x45\xbe\xb9\xbe\x53\xd2\x15\x31\x5e\x9c\x9e\xc7\x01\xe4\xbd\x8b\xc5\x24\xe6\x27\xb5\x8f\x26\xbd\xc8\x65\xa0\x34\x6d\xfa\x49\x8a\x47\x75\xa4\x91\xe4\xe2\x32\x74\x7d\xe6\x69\xe0\x7e\x52\x5f\x21\xf5\x21\xfe\x59\x6a\x2b\x3f\x0d\x33\x53\x53\x1c\xd2\xbb\x14\x07\x44\x68\x24\x1e\x9b\x9a\xc0\x9c\xdb\x34\x1d\x4d\x3c\x7c\xdc\x59\x96\xa9\xd5\x6a\xc5\xb7\x48\xbb\xbf\xee\xc7\x17\xec\xd6\x16\xed\x42\xb5\x6d\x7a\x57\x69\x18\xed\xcf\x7a\x57\x9f\xfb\x78\xf8\xe9\x27\x8e\xb7\x3e\x75\x61\x9e\x5e\x49\x35\xa6\x76\xa3\x00\x00\x40\x64\x3a\x04\x7c\xc7\x44\x47\x51\xe0\xcd\xe7\x50\x81\x1a\xd2\xd9\x06\x7c\x6a\x4c\xe3\x8e\x2f\xfa\x65\x1f\x03\x90\x14\x03\x20\x8d\x6b\x52\x22\x22\x05\xb2\x07\x87\x6b\x85\x03\x29\x13\x01\x64\x20\xc8\xc3\xbf\x03\x18\x6d\x4a\x30\xb9\xc8\x95\x39\x5c\xa6\xfa\xfd\x79\x4f\xbf\x7d\x36\xc8\x7f\x74\x3a\xc8\xdf\x3b\x1e\xe6\x87\x87\xa3\xd5\xf1\xbd\xed\xf5\x4c\xab\xc0\x24\xce\xa7\x8d\xf8\x0f\x20\xac\x8b\xfe\xd9\x54\x87\xe0\xd5\xd6\xc7\xd0\xbf\x00\x00\x9b\x80\x9b\xdf\xfb\xbd\xdf\x53\x7f\xf1\x17\x7f\x21\x7e\x6f\xfa\xd6\xe6\x68\x58\xfa\xfc\xfb\xbf\xff\xfb\xea\x4f\xff\xf4\x4f\xfd\x62\x59\xe7\x58\xda\x6a\x8e\x01\x0f\x1e\x46\x09\x34\x8a\x7d\xe7\xd3\xb5\xfe\x67\x8c\x51\x08\xa8\x7a\x45\x09\x56\x1e\x19\x67\x57\xf6\xe7\xbd\xeb\xbb\xf3\xe4\xa9\xed\x55\xfa\xf4\x56\xae\x6e\xf6\x0a\xbc\x91\x68\xdc\x53\x06\x06\x65\x38\x54\xbe\x36\x79\xa5\xed\xd2\x62\x65\x86\x10\xa7\xf0\x7a\x5d\xbe\x93\x7f\x5b\xda\x57\x95\x3f\x21\x44\xb7\xb9\xe1\xff\xa5\x32\x55\x81\x21\xb0\x8e\xf0\xbe\xc1\x58\x4f\x24\x81\x0d\x09\x57\xc5\x6a\xe3\x13\xda\x0f\x6f\x8c\x06\x0c\x68\x84\xc5\x59\x3f\xff\x2f\xff\xef\xf5\xc9\x2b\xdf\xbf\x36\x7d\x63\x95\x9a\x89\x01\x33\xc3\x6a\x8b\xf4\x8a\x00\x99\xdc\x95\xd9\x7c\x3e\x07\x52\xf7\x36\xe9\xe3\xcf\xa3\x5c\x79\xd8\xae\xfa\xa3\x2b\x68\x88\xf1\x3e\xef\x73\x97\x41\x3c\x97\xd5\xd1\x77\xe5\x4d\xf9\xb7\xc5\x71\x9e\xb4\x75\xd1\xed\xb5\x38\xda\xd4\xcf\x26\x95\xa3\xc9\x6f\x53\xbe\x6d\xf4\x5d\xe5\xe9\x52\x90\xe7\x05\x2b\xe7\x72\x31\xf0\x62\xe4\x53\x76\xdd\x09\xbb\x03\xbb\xde\xc5\x9d\xf9\xe2\x76\x1c\xed\x5e\x98\xa7\x97\x9f\xba\xb7\xf5\xec\xcd\x7b\x5b\x9f\xba\x34\xed\x5d\xcf\x72\x35\x90\xc0\x86\x55\xd3\x50\xdd\x07\x64\xfd\x49\x2f\x8a\x22\x4a\x81\x5a\xc7\x45\x69\x6a\x80\x81\xbf\xc7\x4e\xfb\x14\xe2\x90\xac\x24\xd2\x7b\xe0\xc7\x02\xb6\x8d\x5c\x03\x72\xd6\xa9\x8b\x0a\x26\x92\x4e\x47\x4f\xde\x72\x03\xb0\xd2\x0a\x66\xb9\x32\xc7\xab\x44\xdf\x9e\xf7\xf4\x7b\xd3\xac\xf8\xf1\xa4\x5f\xdc\x3e\xeb\xe7\x77\x4e\x86\xc5\xe1\xe1\x68\xe5\xac\x31\xc1\xae\xa4\x06\x20\x03\x10\xd6\xd1\xc0\x8f\x02\x98\x48\x92\x3b\xb7\xb3\x26\xc0\xd0\x75\xc7\x13\xa9\xdf\x35\x9e\x4d\xfc\x99\x93\x3a\x4f\xca\x83\xef\x02\x92\x2c\x29\x94\x57\x1d\xa0\x54\xb4\x69\x4f\xab\x74\x6f\x91\x0e\x0f\x26\xbd\xbd\xbd\x79\x7a\x30\x5a\x26\xd7\x46\xcb\xf4\xb1\xd1\x52\x3d\x3d\xc8\x93\x27\xfc\x89\xb6\x06\x32\x04\xc8\x00\x50\x89\xeb\xac\xec\x5f\xfe\x5e\x81\x87\xb0\x16\x55\x6f\x15\x68\x71\xe1\x9b\x16\x93\x87\xd0\xbb\xa5\xfd\x81\x54\x6f\xeb\xeb\x60\x24\xf9\x63\xfe\xd2\x80\x86\x5a\x71\x3c\x80\x66\xe9\x29\x14\x8c\x0f\x47\xab\xff\xfd\x5f\x1f\x1f\xff\x4f\x1f\x5e\x58\xde\x5e\x25\x66\x0c\x58\xee\x32\xb2\xc0\x25\x87\x0a\xb8\x68\x80\x5a\xbd\xdb\x14\xb8\x40\x03\x4d\x93\xd2\x3f\xef\xa0\xbc\x4d\xe9\x4b\xb4\x5d\xf8\x35\x3d\xc7\xe2\x3f\x8f\xdc\x12\xef\x26\xdd\xfb\xa0\xfa\x73\x53\x7d\xed\x5d\x9b\xc5\xe5\x61\x08\x23\xf9\x35\x65\x42\x57\x34\xd9\xd5\x02\xd4\xc6\xb7\x4b\x1a\x9a\x78\x3a\xc7\xbf\x53\x7f\x05\x00\x7a\x34\x1a\xa9\xc9\x64\xa2\x59\xe7\xee\x3a\x54\xb7\x8b\x21\xb5\x66\x6a\x77\x48\x5d\x86\xe5\x21\x75\x43\xf6\xdb\x05\x80\xa1\xd2\xb0\xbb\xb3\x4c\x2f\x3f\x7e\xbf\x7f\xf3\xa9\xa3\xad\xe7\xae\x9e\x65\x8f\x0f\x72\x35\x8a\x75\x4c\xf5\x02\x97\x35\x33\x1f\xcb\xb9\xe9\x27\x24\x5d\xad\xa3\x6a\x1a\x70\xd5\xe3\x6c\x94\xa2\x9b\xb3\x3d\x62\xb8\xa3\x21\xe4\xd4\x85\x1f\x07\x2a\x2d\xd1\x01\x40\x87\xd1\x70\xf9\x6f\x6e\x10\x56\x1a\x60\x56\x28\x33\x5e\x27\xe6\x68\x99\xea\xdb\xf3\x9e\xfe\xe0\xac\x9f\xff\x64\xd2\x2f\xee\x4c\xb2\xe2\xf0\x74\x2b\x3f\x3a\x1e\xe6\x93\x49\x09\x64\x1c\x50\xf1\x80\x86\x82\x19\x32\xc5\xe8\x00\x8b\xaf\x6f\x14\xb8\xc4\xb6\x5a\x03\xa9\x9f\x4d\x8b\xae\x1b\xc2\x77\xb1\x84\x48\xbc\x7d\x5d\x97\xac\x41\x52\x38\x6a\x25\x21\x8e\x2f\xbe\xa5\x6d\x46\x02\x2d\x81\x65\x85\x84\x49\x13\x8d\xe9\xee\x22\xc9\x2e\x4d\x7b\x7b\xbb\x8b\xf4\x60\x7b\x95\x5c\xd9\x59\x26\xd7\x47\xcb\xe4\xb1\xc1\x5a\x5d\xef\xe7\xea\x5a\x5a\xe0\x95\xc4\xe0\x48\x19\x18\x7a\xb0\x52\x4b\x73\x65\x61\xa1\x03\x81\x6e\xd8\x8c\x32\x82\x72\x6a\xd7\xd4\xf3\x85\xc7\x53\x59\x43\xc3\x32\x93\xd6\xa8\x75\x97\x25\x8e\xce\x69\x9c\x31\xe6\x41\xfc\x76\xf0\x00\x50\x1f\x04\x00\x18\xbd\x4c\xf5\x07\xb7\x2e\x2e\xfe\xe7\xd7\x1e\x3b\xfb\x87\xa3\xed\xf5\x9d\x1c\x0d\xdd\x22\xbd\x02\x00\x8d\xe4\xda\x8d\x97\x5f\x7e\x59\xff\xd6\x6f\xfd\x96\xfa\xfa\xd7\xbf\x0e\xf3\xf9\x9c\x4a\x20\x01\x5b\x49\xa7\x70\xda\x26\x00\x23\x85\x6d\x72\x6d\xa0\x4a\x7a\xe6\x61\x63\xba\xb0\x29\xce\xae\x60\x62\x13\xab\x4a\x53\xba\xda\x68\xda\x5c\x53\x39\x48\xba\x95\xc7\x53\x0b\xcf\xeb\x63\x57\xd0\x11\x8b\x78\x13\xb4\x16\x73\x9b\x58\x77\xa8\x3c\xd4\x35\xc5\xd9\x06\x60\xce\x6b\x45\xa2\xb2\x44\x2b\xe5\xce\xce\x8e\x3a\x3b\x3b\xd3\x00\x8d\xd6\x97\x14\x2a\x00\x13\xdc\x6f\x04\xe1\x94\xd1\x08\x00\x46\x68\x60\x38\x5a\x26\x97\x1f\x3d\xed\x3f\x7e\xf3\xde\xd6\x73\x8f\x9c\xf6\x6f\x6e\xaf\xd5\xae\x32\xd5\xc8\x34\xda\xb9\x81\x30\xc2\x0a\x4c\xd8\x8c\x26\x02\x70\xba\x82\x80\x98\x0b\xaf\x13\xa8\x0e\xc5\x03\xe4\x9d\x5f\xdd\xd2\x12\x8b\x53\x92\x69\x93\xb3\x5f\x5a\xad\x49\xf6\x9f\x98\xd2\x72\x9d\xb5\x01\x58\x19\x84\x85\x46\x33\xc9\x95\x39\x59\x25\xe6\x70\xd9\xd3\x77\xa6\x59\x71\xfb\xac\x5f\x7c\x34\xed\x17\x87\x8b\x54\x1f\xcf\x7a\xc5\xf8\x6c\x50\x9c\x9c\x6c\xe5\xb3\x45\x4f\x8b\xe7\xc4\x58\xd6\x01\x80\x11\xd6\xc6\x04\x75\x35\xb2\x4b\x29\x5a\x9f\xd9\x14\x8c\xb8\xc3\xc9\xd1\x75\xb0\xa0\xf8\xf6\xd9\x40\xaf\x18\xa0\x91\x76\x01\x29\xe1\x59\x02\x29\x40\x01\x0b\x1a\x50\x59\x8e\xd9\xde\x3c\x1d\x5c\x98\xf7\xf6\x86\x6b\xb5\x3f\x58\xab\xfd\xd1\x2a\xbd\xb2\xbb\x48\x1e\x1d\xae\x93\x6b\xfd\x1c\xaf\xf5\x0a\x75\x25\xd1\xb0\xab\x0c\x0e\xd1\xc0\x10\x01\xed\x59\x49\xb2\x75\xa2\x96\x17\xf6\x6f\x8c\xa6\x56\xaf\x98\x75\x90\x5a\x2e\xb0\xcc\x08\xa0\x67\xad\x48\xd6\x9d\xaa\x6e\x47\xd0\x82\x8f\xcb\x1e\x36\x67\xe9\x24\xeb\x0f\x97\x93\x4f\x63\xb9\x21\x8a\xa1\x29\xa5\x56\x16\x9a\x30\xd7\xc2\x8c\x0d\xe7\xad\x2f\x06\x0c\x40\x3e\xed\x17\xdf\x7d\xeb\xca\xec\x7f\xf9\xde\x23\x93\xff\x72\x36\x28\x0e\x0d\x82\xdb\x65\xe4\xa6\x8d\x3c\x78\xa1\x3b\xe9\x76\x77\x77\xd5\x78\x3c\xee\xaa\x30\x37\xb1\x50\xc4\x9e\x37\x0d\xb7\x89\x2c\x9b\xca\x17\xfb\xb6\x89\xa1\xe1\x61\x58\x6d\x9a\x80\xe1\xa6\xe0\x49\x0a\x2b\xc5\x53\x93\x8b\x2f\xce\x6d\x1c\xa9\xb1\x77\xc7\x48\x37\xd0\x52\xff\xf3\x66\x30\x7f\xe7\xe0\x40\x42\x64\x5d\x50\x6c\xac\x00\xbb\xe4\x41\x4c\xe6\x18\x5f\x1f\xde\x81\x16\x80\xd2\x0c\x6a\xc1\x8b\xb6\x9d\xad\x06\x00\xb0\x8d\x56\x9a\x06\x90\xe4\xd4\x06\x41\x4f\xfa\x85\x7e\x7f\x6f\x91\xaf\x12\xb3\x5a\xa6\x7a\x71\xe3\xa4\xff\xf4\xee\x22\x3d\x48\xdc\x71\xe2\x91\x1e\x55\x04\x1b\x58\x75\x78\x74\x48\x69\x28\x1f\x36\x12\xf3\x7f\xc5\x51\x5b\x5d\x61\x79\x32\x4e\x8f\x00\xc8\x7b\xe9\xc0\xb2\x53\xef\xf1\xe9\x74\x7f\x74\xab\x73\x47\x27\x82\x16\xd6\x41\xd3\x5b\x73\xe9\x35\xa5\xf5\xbd\x1b\x00\x06\x50\x29\x3b\xdd\x97\x18\xb5\x97\x6a\xb8\xde\x2f\xcc\xcd\xed\x55\x32\xdb\x9b\xa7\xe3\x5c\x99\x93\x5c\x99\xa3\x65\xaa\x8f\x16\x3d\x7d\x34\xe9\x17\x1f\x8f\xfb\xf9\xd1\x34\xd3\x47\xab\x54\x9f\xcc\x7a\x7a\x7c\xd6\xcf\x27\xb3\xac\x58\xad\x12\x93\x9b\xca\x32\xa3\x01\xc2\xb3\x61\xb0\xe1\xe0\x3b\x01\x80\xf0\x45\xc0\x8e\x8e\x02\x86\xa6\x51\x59\xa7\x29\x20\x36\x6d\xe3\xe9\x5d\x78\x0a\x44\x88\xe3\x16\x49\xfa\xac\x62\xcf\x4a\x83\xca\x72\x95\x6d\xaf\x92\xc1\x68\x95\x0c\x07\x6b\xb5\xdb\xcf\xd5\xee\x70\xad\xf6\x77\x17\xe9\x95\xdd\x45\xfa\xc8\x60\xad\xae\xf4\x73\x3c\x48\x35\x1e\x94\x6b\x55\x70\xa4\x0c\x0c\xca\x8b\x0d\x9d\x75\xc8\xd5\xb4\xea\xc0\xc6\xd8\x76\x5f\x0a\x5c\x01\xc8\xb1\xf8\x7c\x3a\xc5\x83\x8f\xfa\x7a\x2b\xca\xda\x81\x96\x32\xa0\x3d\xed\x1a\xc1\xef\xe4\xe1\x5b\xfb\x91\x37\x44\x22\xb7\x5b\xa0\x5f\x35\x17\x4a\xc7\x6b\xab\x21\x03\x85\x6a\xdd\x8a\x0b\x57\xd5\x7d\x5a\xe1\x99\x3c\xd5\x3f\x36\x5e\x7e\xdf\x12\x02\x02\xa4\x5b\xab\xe4\xb9\x4f\x1c\x0f\x7e\x79\xdc\xcf\x8f\xdf\x3e\x98\x2f\x66\x7d\xed\x36\x28\xe4\x50\x0e\xd8\x72\x52\x6f\x7c\x1d\x1e\x0c\x06\x30\x1e\x8f\x01\x36\x1f\x10\xc7\x74\x49\x93\xbe\x72\x7f\x37\x19\xb4\x36\x0d\x90\xbb\xba\x87\x01\x96\x9a\x40\x41\xd7\xf4\xb4\x81\xab\x98\x3e\x8d\xc9\xb3\x49\x1e\x4a\xfd\x41\x50\x66\x1c\xb8\x6c\x8a\xe2\x24\xab\x85\x64\x0e\x73\xcf\x52\x86\xc6\x80\x43\xdb\x77\x2e\x33\x7f\xe6\xae\xcd\xbf\x0d\xdd\x36\xf1\xa1\xb2\xb6\xa5\x31\x88\xc7\x75\xfa\x82\x79\x3e\x77\x7c\x4c\xfd\x56\x62\xaa\xbc\x72\x00\xd0\x1a\x4c\x3e\xcb\xb4\xfe\xf0\xc2\x72\xb9\x4c\x8b\xc5\x22\xd5\xb3\xc7\xef\x0f\x9e\xbd\x38\x4f\xaf\x65\x85\xca\x9a\xd4\x78\x00\x5e\x82\x8e\x98\x74\x42\xdc\xec\xcc\xd9\x39\x06\xd2\xc8\x50\x50\x6a\x75\x4b\x86\x87\x25\x9e\x00\x39\xb5\x43\x4e\x54\x60\xd2\x33\x52\x19\xeb\xa2\xf2\x00\x5c\xf0\xb8\x8f\xd4\x01\x4b\xe9\xf0\xa6\xf3\x50\x2c\x1e\x52\x81\xc1\x61\x6a\x60\x68\x0c\x1e\xf4\x8a\x72\x6d\xcc\x70\x95\x2c\x0c\x9a\x59\xa1\x60\x52\x94\x6b\x64\x0e\x97\xa9\x39\x9c\x66\xc5\xe1\x78\x90\xdf\x9d\xf4\x8b\xf1\xbc\x57\x8c\xd7\x89\x99\xac\x95\x99\xac\x52\x3d\x9b\xf7\xf4\x62\x91\xea\xd5\x32\xd5\x39\x99\x6a\x02\xa8\x5b\x67\x00\xab\x7b\x61\x00\x98\x75\x26\xb6\x98\xd7\x85\x91\x1c\x05\x2b\x6d\x0b\x69\x49\x1d\xa7\xf4\x7c\xab\xb8\xf7\x03\xa8\x6e\x59\xb6\xdf\x3c\x40\x41\x40\xa5\x34\x40\xaf\xc0\x74\x90\xa7\xd9\xd6\x5a\x0d\x07\x6b\x35\xec\x69\x1c\xf5\x72\x35\x1a\xae\xd5\xde\xce\x22\xdd\xdb\x59\x26\x97\x87\x6b\x75\xd0\xcf\xd5\x7e\xaf\x50\x57\x7a\x05\xee\x2b\x03\xbb\xca\xe0\x08\x0d\x0c\xb0\xb4\x62\x2a\x64\x35\xa5\x04\x16\xe5\xbf\x00\x58\x29\x7d\x11\xb4\x84\xc0\xc3\xb8\x7f\x05\x60\x5d\xd5\x3e\xbb\xc6\xac\x4c\x58\x00\xb4\x5d\xfd\x46\x10\xea\x72\x7d\x3a\xcd\x02\x19\x64\x6d\x16\x02\x40\x51\x2b\x13\xe7\xcb\xc3\x40\x28\xb3\xd4\x4c\xe8\xa0\xc5\x54\x82\x75\x9e\x92\x72\x79\x96\x00\x8e\x2e\x2c\xd2\xe7\x9f\x3e\x1a\xde\x99\x65\x7a\xfc\x93\xbd\xc5\x62\xd9\x83\xdc\x18\x93\x92\x7e\x50\xd9\xfe\x4e\x19\x63\xb4\xdb\x55\x06\x21\x58\x8d\xf5\xc5\x00\x72\xff\xdb\xd5\x9a\x1e\x03\x37\x9c\x37\x8f\x87\x87\xe5\xa0\x9b\xb7\x4b\x09\xd4\x68\x46\x1b\x03\x3e\x92\x2c\x31\xc7\xe3\xe6\x00\x41\xd2\xd3\x12\x3d\x97\xb3\x49\xae\x98\x61\x83\xa7\x8d\xd3\xc7\xf2\x38\xe0\x1f\xdb\x0e\x1d\x03\x0f\x5d\x2a\x40\x1b\x5a\x6c\x43\xb3\x6d\x40\xa6\x29\xbe\x2e\x99\x1b\xab\x2c\x6d\x88\xbd\x0b\x28\xa2\xb2\xc6\x2a\x7f\xc0\x83\x6e\xfb\x74\xd6\x17\xf7\x6e\x2d\x2f\xa9\xb3\xc0\xf0\x75\x09\x50\x8d\xb2\xbd\x69\x75\x99\xea\xfc\xe3\x9d\x55\xbe\x48\xf5\x62\xd6\x2b\x66\x4f\x1e\x6f\x3d\x77\x75\x92\xdd\xc8\x72\x1c\x86\x23\x27\xcb\x07\x98\x3a\xa7\xc0\xc3\x6b\xdf\x86\x7b\x89\x9c\x3f\x19\x92\x52\x33\x78\x94\x1e\xd8\xe8\xbe\x8a\x1e\xc0\x2b\x0e\x08\x3b\x4c\x49\x36\xe2\xe8\x08\xb7\x4e\x52\xc9\x16\x8e\x4e\x09\x0e\x0a\x06\xaf\x52\x2e\x09\xfc\x85\x4c\x71\x69\xa3\x23\xd1\x1a\x90\xf2\x7e\x98\x22\x40\xaa\x0c\x0c\xc1\xe0\x7e\xaa\x01\x00\x4c\xbe\x85\x6a\xa1\x01\x66\xfb\x98\xce\xb4\xea\x9f\xe4\xca\x8c\xf3\x44\x1f\xaf\x95\x39\x59\xa6\xfa\x78\x96\xe9\x7b\x67\xfd\xfc\xf8\xac\x5f\x8c\xa7\xfd\x62\xbc\x4a\xcc\xac\x50\x66\x51\xa0\x59\xad\x13\xb3\x58\x27\x26\xcf\x95\x59\xe5\xca\xe8\x3c\xd1\xba\x20\x60\x97\x4c\x1f\x6a\x0a\x28\x40\x68\x3f\x31\x50\x12\xb3\xd4\x70\x30\x42\x2d\x2e\x84\x46\x91\x78\x95\xfb\x06\x16\xb0\x28\x0d\x2a\x2d\x30\x4d\xb5\x52\x69\x81\x59\x56\xa8\xb4\x57\xe0\x20\xd5\x38\x48\x74\xf9\x77\xb8\x56\xc3\xed\x65\xba\x7b\x61\x91\xec\x6f\xaf\x92\xcb\x83\xb5\x3a\xe8\x15\x6a\xbf\xa7\x71\x3f\xd1\xb8\x97\x68\x18\x21\xc0\x10\x0d\x0e\xd1\x60\x86\x06\xb2\x12\x20\x90\x7a\x4a\xde\x28\xb0\x00\x13\xd6\x31\x4a\xe3\x3c\x10\x01\x02\x53\x9f\xa3\x71\x16\x4a\x63\x01\xaf\xaf\x54\x95\x35\x26\x98\x86\xb5\x56\x11\x17\xd6\x9f\x7f\xcb\x80\x78\x6d\x00\x80\x4e\xce\x72\x1a\x28\x06\xda\x89\xc8\xe5\xb7\x18\x7e\x77\xdf\xed\x3f\x55\x0b\xa4\x2d\xb2\x8a\x87\xd6\x7d\x32\x0d\x14\xf6\x30\x16\x8d\x39\xe0\xef\x00\x18\x80\x81\xb4\x50\x57\x2e\x4f\x7b\x5f\x78\xea\x68\xeb\x70\xd1\xd3\x27\x77\x76\x56\xab\x3c\x29\xaf\x01\x70\xf5\x00\x08\x78\x81\xb8\xc2\xef\x32\x70\x6d\xb2\x3c\x48\xfa\x28\x06\x42\x62\xfd\x78\x1b\x4d\xcc\x5a\xc1\x01\x4e\x0c\x48\xd0\x6f\x4d\xbc\x25\xfd\xdc\x14\x6f\xdb\x20\xdc\xd1\xc4\x74\x74\x0c\xd0\xb4\x81\x2d\xc9\xb5\x01\xc0\x20\x4f\x90\x7d\x68\x02\x12\x92\xd5\xa1\xc9\x0c\xd5\x66\xc1\xd8\xe4\x5b\x13\x42\x6c\xe3\xd1\x66\x2a\xeb\x6a\x5d\xfa\x69\xb9\x20\x7e\xe1\x56\x69\xfa\xcb\x80\xec\x38\xb2\xbb\x8d\x86\x10\x6e\x9b\x1e\x01\xc0\x10\x35\x8c\xb6\xd7\xc9\xa5\x47\x4f\xb2\x1b\xcf\xde\xdd\xfe\xb9\x6b\x67\xd9\x13\x83\xb5\x1a\x29\xc3\x47\x99\x20\x2a\x5f\x37\x3a\x92\x16\x54\x56\x61\xc8\x55\x03\xc0\x78\x74\x00\x08\x01\x34\xf0\x71\xb9\x4e\xbc\x0a\x44\xc3\x39\xa3\x8b\x1c\x89\xed\x24\x09\x70\xea\xec\x9a\x50\x19\x4b\x5b\x35\x62\x86\x60\xc4\xdc\x1a\x5f\xcd\x94\x53\xe7\x5d\xd3\x92\x65\x1c\xda\x20\x68\x40\xb3\x32\x00\x2b\x83\x66\xa1\x11\x66\x1a\x61\xe2\xa6\x9a\xd6\x89\x3e\x59\x25\xe6\x78\x95\xea\xd3\x59\x4f\x8f\xe7\x59\x31\x99\xf5\xf4\x6c\xde\xd3\xb3\x79\xaf\x58\xac\xd2\xf2\xb6\x6b\x8d\x66\x65\xaf\x34\xc8\x35\x82\xd6\xca\xfe\x05\xa3\x0d\x82\xd6\x68\x40\x23\x68\x83\x00\x06\x8d\xb6\x62\x68\x2a\x6e\x9b\x23\xc9\x51\x68\x50\x29\x03\x50\xfe\x50\x21\x94\xeb\x4e\xac\xbf\x4a\x0c\x2a\xa5\x31\x53\x06\x52\x55\x02\x8c\xb4\x5f\x60\x36\x58\xab\xc1\x60\x9d\x0c\x86\x6b\x35\x1a\x2d\x93\xdd\xe1\x3a\xd9\x1b\xac\xd5\xc5\x5e\x81\xbb\xa9\x56\x7b\xa9\xc6\xdd\x44\xc3\x7e\xa2\x71\x57\x81\xb5\xa2\x98\x72\x3d\x18\x96\x60\x30\x98\x88\xa9\xb2\x55\x3e\xe2\xbe\x5a\x03\x16\xd2\x7b\x1a\xdb\x06\x6a\xf7\x04\xb9\xba\xcc\x41\x86\xa3\x61\x20\xa8\xdd\xc2\x47\xde\xa4\x7a\x2c\x2c\xa4\xaa\xad\x95\x71\x96\x20\x0c\xd3\xea\x28\x82\x83\x27\x21\xac\x72\xb5\xf6\x68\xdf\xa9\xf8\xbe\x0d\xd6\xda\x38\x87\x2e\xe4\x5f\xc6\xc8\x18\x03\x46\xc1\x62\x92\x15\xff\xe5\xad\x2b\xb3\xff\xf5\x8d\x6b\xd3\x6f\xdd\x1f\xe6\x47\x00\xe5\x7a\x17\x28\x6f\x8f\x0e\x4e\xd4\x35\x26\xb8\x0e\x20\x36\x42\x6f\x53\x7c\x5d\x2d\x35\x40\xde\x63\x4e\x02\x20\x4d\x72\x74\xa5\xe1\xb4\x9b\xa6\xa1\x4d\xee\x2e\xbc\x9b\xe4\x06\x46\xd3\x55\x87\xb6\xa5\xa1\x73\x7a\x9d\xc5\xa5\x29\xf2\x18\x72\x73\x48\xac\x2d\x1c\xa5\xdf\xc4\x04\xd5\x05\x3d\x4a\x19\xc9\xe9\x38\xbf\xb6\x4a\xd4\xe4\xef\xbe\x51\xde\x4d\x68\x5a\x42\xc9\x12\x2a\x57\x00\x00\xbf\xfa\xab\xbf\x0a\x2f\xbf\xfc\xb2\x3b\x84\x4b\x1a\xed\xae\x4c\xb8\x56\x81\x8e\xa2\xc3\xe3\xe5\x15\xe8\x49\x56\xe8\x77\x0e\x16\xd3\x45\xcf\x2c\x16\x87\xc3\xc5\xa3\xa7\xfd\x9b\xa3\x55\xb2\x97\x68\x93\xd2\xa9\x19\xbf\x58\x8f\xf4\x80\x7e\xf4\x08\x15\x60\xa1\x9d\x19\xda\xde\x38\xec\x94\x89\x43\x08\x00\x4f\x13\x68\xa1\x71\xb8\xe1\x6c\x30\xc2\x2d\x23\xf7\xfe\x41\x24\xc1\xab\x6c\xe1\x08\xd8\x48\xe2\x7a\x99\x84\x8e\x9e\x03\x2c\x20\x0a\x8a\x5a\x17\x02\x51\x43\x2d\x46\x2d\x46\x4d\xe2\x07\x7e\x58\xa5\x1f\xb1\x3c\x5f\x04\x0c\xa6\x00\x30\x74\x0b\x6b\x0c\x80\xee\x03\x68\x03\x26\x37\x90\xe4\x06\x61\x01\xe5\x22\xe0\x95\x01\x58\x68\x65\xc6\x05\xc2\xb8\x50\x66\x6c\x2d\x36\x93\xb5\x82\xf1\x5a\xe9\xf9\x3a\x29\xa7\x9b\x96\xa9\x5e\xac\x12\xb3\xca\x13\xb3\x5a\x25\x26\x5f\x25\x7a\xb5\x4e\x74\xbe\x4e\x4c\x5e\xa0\xd1\x76\x0a\x0a\x00\x00\x34\x80\x36\x68\xa4\xb6\x4e\xc4\x2f\x01\x89\x13\x30\xd5\x98\x66\x05\xa6\xd6\x6a\x92\xa6\x1a\xb3\x54\x63\x9a\x16\x98\xf6\x0a\x35\x18\xe4\x38\x18\xac\x93\xdd\x2c\x57\x17\x7a\x1a\x77\x53\x8d\xc3\x44\xc3\x28\x31\x38\x4a\x34\xee\x2a\x8d\xbb\xe5\xce\x1e\x1c\xba\x29\x1e\x34\x90\x22\xd8\xa3\x03\x0c\x28\x9f\x1b\x7c\xaa\x0b\x00\xc0\xb8\x1b\xcf\xad\x74\xae\x8c\xca\x82\x12\xa6\xbb\xec\x3b\x29\x74\x67\x29\xa8\xd5\x59\x57\x4e\xa6\xe2\x5f\xd1\x84\x77\x02\xf1\x02\xa6\xbc\x28\xc8\x01\xc4\xc0\x2a\xe2\x79\x39\xe9\xb9\xa5\x0b\xa1\x5a\x8b\x56\x49\x6f\xff\x8f\x36\xcc\x80\x4f\x05\x4a\x28\x9f\x8a\x9f\xa1\x02\xd3\xb6\x15\xe2\x27\x1f\xa6\x6a\x17\xac\x6d\x10\xfa\x72\xf1\xbd\xc9\x06\xb9\x7a\xfc\xca\xa4\xf7\xd4\xed\x79\xfa\xc6\xfd\x61\x7e\x02\xe0\x0f\xff\x73\x96\x17\x5f\xdf\x22\x87\x25\x76\x05\x2a\x5d\x67\x04\x80\x85\x95\xe8\x62\x3a\x49\xe2\xcb\xc3\xd2\x70\x9b\x0c\xfc\x25\xeb\x4c\x93\x35\x25\xe6\x2f\xc5\x21\xe9\xa3\x36\x70\x27\xfd\x6d\xd3\xa3\x5d\xf3\x8a\xf2\xa4\x32\xf9\x77\x6c\x10\xb2\x89\xf9\x26\x48\x31\xf6\xde\x85\x4f\x8c\x96\xbe\xb7\xc9\xdb\x45\xbe\x36\xff\xf3\xba\x4d\x11\xa9\x77\x31\xcb\x8b\x71\x37\xd2\xd6\x0f\xaa\xf3\xbb\x8e\x8c\x31\x43\x6b\x89\x19\x41\xb9\x9d\x73\x74\x69\xda\xbb\xfa\xc9\xc3\xe1\xa7\x9e\x38\x1e\x3c\x77\x61\x9e\x5e\xe9\x05\x97\x34\x82\xd7\x92\xc1\x08\xcf\x2d\xca\xed\xb0\x7b\xa4\xdc\x0d\xd1\x80\x18\xa0\xd6\x5f\xc6\xe9\x00\xc4\xc5\x90\x12\x93\x1a\x99\x30\x92\x94\x9f\x3a\xc8\x10\xf3\x0c\xb6\x82\x76\x48\x53\x93\x90\x8d\xc1\xe8\x08\x36\xbe\x1b\x2a\x94\x81\xa4\xd5\x80\x06\x04\x6d\x00\x34\x94\x5b\xb4\x35\x00\xac\x4c\x79\x68\x5e\x79\xc9\x5d\xe9\x6f\x2d\x38\x66\x61\xd0\xcc\x34\xc2\xc2\x20\xac\x0c\x5a\x50\x84\xf6\xf0\xbc\x92\x6b\x6e\x10\x72\x4d\x06\x2e\x56\x45\x59\x10\x51\x02\x0a\x04\x00\x2c\xad\x28\x03\x34\x90\xd9\xbf\x03\xb7\x10\x56\x39\xeb\x88\x9b\xc6\x01\x18\xa0\x71\x67\x18\x95\x96\x19\x9b\xa0\x54\x48\x9a\x7f\x0d\x55\x66\x53\x4e\x86\x6b\x47\xa4\x12\x88\x5a\x3e\x1a\xf8\x32\x13\x60\xab\x6b\xac\xdb\x2c\x66\xc9\x40\x87\x91\xfa\x5f\x03\xd7\x34\x5c\xcc\x1a\x44\xe9\x82\x76\x13\x4e\x0b\x75\xc9\x97\xc6\x76\x60\xdc\xc4\x13\x25\x32\x3a\x57\x66\x3c\x1e\xe4\xaf\xbd\xb7\xbf\xfc\x3f\xde\xbc\x32\xfd\xf6\xdd\x9d\xf5\x21\x44\x2e\x61\x74\xdb\xff\x23\x16\x97\x36\xc5\x19\x73\x31\x80\x03\x02\xef\x58\xb8\x26\x7e\x12\x9f\x87\xa9\x7b\x24\x5d\xd8\xa4\x1f\x7f\x5a\xfa\x6d\x53\xff\x4d\x0c\x05\xa2\x4b\x1b\x08\x39\x02\x72\xae\x0d\xd5\x02\x74\x13\x42\xb2\x90\x74\xb1\xc0\x6c\x02\x58\x62\x05\xda\xe4\xdf\x25\xf3\xba\x66\x74\x0c\x91\xb6\x59\x74\xa2\x5b\x5b\xad\xdf\x8a\xc8\x5b\xb3\xba\x20\xbd\x6d\x15\x8c\x06\x44\x7d\xb4\xbd\xca\xe7\x8f\x16\x8b\x49\xbf\x18\x3f\x73\x77\xeb\xe7\x0e\xa6\xd9\x8d\x2c\xc7\x01\x80\xb1\x1d\x69\xdd\x72\x50\xf5\x5a\xc2\x02\x3c\xd6\x7f\x05\x6b\x55\x22\x67\x7a\x50\xf3\x72\x6d\x7b\x36\x1f\x35\x06\xb4\x42\xa7\x68\xbf\xd5\x3a\x54\x2a\x13\xd4\x5d\x3d\x3e\x86\x74\x2c\x51\x78\x44\x7a\x18\x3f\x37\xdf\x07\xb0\xc8\xa0\x7c\x8e\x05\x99\x32\xa8\x14\x02\x51\xba\x82\x3e\x08\xae\x4e\x20\x91\x8a\x23\x7f\x2e\x4b\x19\x87\x32\x06\x54\x69\x92\xc0\xcc\xcb\x60\xa8\x35\x87\x28\xa8\x12\xe8\x00\x94\x40\x87\x72\x16\xea\xb8\xd1\xe4\xbb\xd4\x57\xd4\xfd\x0c\x28\x1b\x44\x95\xd3\x79\x6c\x21\x2b\x27\x67\xd3\x87\x2e\xef\x02\x1d\x18\xe4\x0b\x53\xb8\xd4\x42\x68\x48\x59\x00\x40\x35\x8d\x51\x01\xc2\xd0\x1a\x58\x57\xdc\xc1\x42\x5a\x17\x97\x53\xc9\x86\xe4\x97\x25\x46\x82\x16\x68\x9d\xb0\x89\x2b\x43\x22\xf8\xf0\x41\x59\x10\x79\x5c\xa2\x83\x75\x35\xfc\x10\xa3\x40\x76\x08\xd3\xec\xeb\x9c\xcb\x1f\x76\xf2\x6e\x0d\x88\x4b\x79\xe8\xf2\x09\x83\x7c\x76\x19\xe7\x69\x6c\x79\x18\x52\xa9\x4a\x2b\x92\xb1\x79\x60\xc0\x20\xe8\x55\x62\x8e\xee\x8e\x56\xdf\xfa\xe1\xe5\xd9\xff\x75\xeb\xe2\xe2\xcd\xb3\x41\x31\x23\x8b\xb8\x7d\xdd\x21\x3b\x2d\xbd\x05\xb7\x83\x6b\x1b\x08\x37\x59\xbe\xf9\xe8\x5e\xe2\xd9\xa5\x0f\x07\xa8\xf7\xff\xf4\xb9\xf3\xb4\x48\x0b\x4d\x0c\x00\x74\x71\x51\xfd\x73\x0e\x1a\x27\x4b\x17\x1d\xc7\x5d\x53\x5a\x44\x19\xe8\x25\x8b\xdc\x99\xc8\x8f\x7e\xa7\xcf\x8e\xb9\x61\x7e\x28\x08\xee\x5a\x0d\xe5\xd9\xb5\xb2\x21\x84\x71\xc7\x64\x57\x82\x8c\x34\x2e\xc3\xfc\x55\x03\x0d\x97\x85\xf3\x8b\xc9\xec\x64\x75\xbc\x10\xc2\xfc\xe0\x69\xf1\xe9\xcc\xb2\x0c\xfe\xe6\x6f\xfe\x46\xbb\xcb\x19\xed\x77\x9e\xbf\xc6\x82\x95\x02\x00\x8c\xfd\xab\x01\xc0\xfd\x75\xdf\x0a\x40\x34\xeb\xd4\xe4\xf7\xb6\xd7\xa7\x67\x83\xe2\x7e\x62\xa0\x18\xe4\xc9\xa0\xa7\xd5\x40\x11\x3b\x78\x6d\x44\x68\xfb\x47\x0f\x26\x5c\xe4\x4c\x39\xbb\xe7\x92\xce\x76\x71\x82\x79\xdd\xc5\x51\x9b\xf6\x91\xe6\xed\x91\x7c\x72\xf2\x79\xd3\x3e\x57\xe0\x0c\xc2\x04\x1f\x05\xcd\xe8\x81\x16\x99\x96\xa2\xf1\x61\x8d\x94\xe8\xa5\x2a\x5d\x6e\xa1\xa2\xeb\xf0\x9d\x22\x0a\x82\xd8\xb4\x54\x0b\x96\x1d\x1d\x06\x34\xd4\x49\xf9\x56\x7b\x24\x35\xaa\x7a\x0c\x35\x24\x4a\xe1\xac\x3c\x5e\x09\x57\xb4\xce\x5b\xa1\xb5\x7a\xd8\x5f\x02\x00\x09\x06\xbf\x72\x51\xb1\xfd\x05\xdf\xc0\x5d\x58\x08\x76\x3d\x0b\x96\xd6\x42\x5f\x2d\x9c\xe8\x88\x7e\x2d\x13\xb7\x08\xf8\xfc\x8c\x94\x07\x2d\x93\x5a\xda\x7d\x18\xb4\xbc\xcb\x48\xd0\x17\x16\xad\x9b\xae\x1e\xb0\xfc\x62\xa0\xa5\x9e\x97\x0e\x50\x55\xbc\x1d\xfb\x52\x3e\x52\x1f\x6d\x82\x82\x35\x23\x84\xde\xbd\xd3\x38\x5c\x9d\xf0\xc0\x81\xd0\x56\xdb\x95\x85\x93\x6a\x4d\x55\x27\x5d\x39\x57\x7c\xd1\xc7\x55\xd1\x62\xd5\xa6\x4c\x48\x6f\x20\xcc\xa7\x6a\x61\xae\x23\xb2\xe9\xf6\xf5\xd8\x2e\x77\xb6\x05\x56\x2f\x03\x00\xad\x60\x75\x3a\xc8\xdf\xfd\xe1\x95\xd9\xdf\xbf\x76\xe3\xec\x9b\xef\x5f\x5c\xfc\x64\xde\xd3\x13\xb0\x67\xb8\x00\xc0\xda\xf6\x59\xf4\x1c\xa3\x32\x1b\x11\xe1\xe8\xe8\x08\x4f\x4f\x4f\x69\x5f\xea\x8a\x8f\xea\x0f\x57\xc5\x68\x5f\xee\xe8\xa9\x62\xe7\x7d\x6f\x95\x49\x61\x3f\x4d\xf5\x0f\xed\xee\xa8\xee\xe0\xe1\xb8\x0e\xa2\x32\x50\x39\xa4\x67\x60\x61\x8c\x10\x96\xa6\x9b\xea\x04\x60\xb4\x5c\x0f\xf3\x34\xf0\x1f\xa7\x91\xf4\x21\x97\x89\xa6\x57\xb3\x70\xc8\xbe\x71\x5d\xce\x65\xa4\xe5\xca\xd3\xeb\xe5\x68\xba\x64\xf1\x61\x4c\xc9\x3c\x0c\xcb\x45\x57\x1a\x1e\x6f\x17\x4b\x48\x13\xef\x58\xf8\x36\x34\x2a\xd1\x71\xa4\x1e\x8b\xc3\xd3\x7d\xfb\xdb\xdf\x06\x00\x00\x66\x79\xe1\xf1\xf9\x3b\x3d\x10\x71\x01\x82\x15\x06\xc2\x0e\x20\xcf\x95\xc9\x3f\xb8\xb0\x58\x4f\xb3\x62\x72\xb2\x95\x9f\xdc\xbc\xb7\xf5\xec\xfe\xac\x77\xbd\x57\xa8\x01\xed\x05\x90\x3c\xd0\xd6\x4d\xfd\x91\xfb\x8b\x4e\x9e\xe4\xa0\x7c\x2a\x4a\x5b\x8b\x51\xe0\xc7\xe4\xa8\x86\x94\x58\xe3\x21\xc5\x5a\x03\x02\x82\xdc\x2e\x6e\x1a\x48\xb6\xae\x54\x19\xe3\xc1\x08\x86\xf9\x56\x1b\x61\xd3\x67\x41\x10\x51\x3e\xe2\x49\x06\xb7\x61\xb3\x06\x96\x2f\x24\xa8\x1f\xf5\xc7\x12\x0f\x0e\x24\xc8\xbb\xbb\x62\x32\xf1\xb4\xd1\x30\xb5\xc4\x88\xe5\x06\x80\x48\xf6\xad\xf0\x74\x04\x40\x26\x3c\x00\xce\xfb\xd3\x3a\xe8\xa7\x34\x1d\x6f\xf0\x16\x06\x63\x15\x76\x70\x27\x96\x97\xa9\x12\x94\xe8\xf5\xfa\x73\x2d\x51\x10\xc8\x4d\x6a\x04\x9b\x6a\x95\x41\x0b\x9f\x2b\xa2\x6f\xdc\x12\x49\xd7\x50\xd5\xb4\x35\xdb\x66\x2e\x81\x2d\xee\xaa\x6f\x7c\xfa\xb7\xda\xfd\xe3\xe8\xfc\x62\xf7\xf2\x2b\x4d\xb0\x6d\x7e\xe8\xcb\xd7\xd7\x23\xc0\x00\x48\xb9\x3c\xd1\x60\x60\x95\xea\xc9\xdd\xd1\xfa\x87\x6f\x5c\x9d\xfe\xf3\xfb\x17\x97\x3f\x9a\xf7\x8a\x13\x8d\xb0\x22\x8b\x70\x6b\x23\x6f\x72\xbe\x95\x02\x00\x7d\xeb\xd6\xad\x26\x6b\x04\xb5\xb4\x4b\x16\x15\x4e\x0b\xc2\xf7\x18\x3f\x4e\x73\x5e\x2b\x4a\x9b\xc5\x27\x26\x93\xf4\xce\x5d\xcc\x12\x73\x1e\xf9\x9a\x5c\xcc\x52\x25\xc9\x11\xa3\xa3\xf1\xb5\x59\x75\xce\x65\x71\x71\x01\x91\xbc\x73\xc7\xbf\xc5\xe8\xb9\x55\x83\xff\xa5\x34\x9c\x77\x8c\x86\x02\x2c\x8a\x80\x25\xc4\xcb\xbf\x71\x04\xc8\xc3\xb4\x39\x09\x8d\xb6\x85\x6f\xca\x97\x9a\x7b\xed\xb5\xd7\x8c\xb5\xba\xb8\xf8\x78\x78\x7f\x35\xbc\x7d\xa7\x15\xc3\x9d\xc3\xe1\xac\x31\x00\xe5\x8e\x91\x62\xd1\xd3\xab\xd3\xad\x62\x3c\xe9\x17\x13\x34\xa0\xfb\xb9\xda\x4a\x35\x66\x58\xee\xe7\xb4\x23\x31\x86\x50\xdc\xa3\x00\x5a\x62\xdb\x31\xab\xf1\x58\x3d\x03\x98\x91\x85\xeb\xe3\x9a\x0b\xe0\xb8\xed\x11\xf9\x14\x92\xa7\x09\x3a\x59\x72\x55\x81\xeb\xdc\xc3\x7e\x58\x8e\x9b\x03\x28\x1f\xa6\x3a\x7c\xae\x96\x0f\x36\x5d\x08\x95\x39\x9d\xcb\x28\xa5\x55\x8c\x87\xc9\x87\x8c\x90\x0f\x9b\x98\xe8\xa5\x9c\xd2\x47\x26\x0b\xb7\x7e\x71\xd0\x12\x28\x42\xa2\x95\x03\x40\x11\x44\x1e\x82\x46\x9a\xc6\x4a\xb1\x62\x95\x47\x8c\x07\x05\x27\xc1\xa2\x6d\x08\xc1\x87\x03\x2d\xd4\x5a\x11\xaa\xd6\x2a\x6d\x54\x06\x09\xb4\x54\x33\x3d\x55\x3c\xa1\x43\xe1\x1b\x03\x3e\xc0\xf2\xce\xd6\x03\x9f\xbf\x0e\x68\x08\xa8\xb6\x0a\x8f\xf5\x7a\x07\x35\xf2\xca\xcf\x46\x14\xc6\x19\xba\x78\x5d\xa7\xb2\xd7\xeb\x80\xcf\x57\x9b\xe1\x15\x60\x02\x66\x41\x74\x65\x62\x65\x67\x60\xab\x50\x26\x3f\xeb\xe7\x87\xb7\xf6\x17\xdf\xfb\xee\xa3\x67\xff\xcf\x87\x17\x96\xef\x2d\x7a\xfa\xc4\x20\xcc\x00\x61\x0e\x00\x4b\x3b\xf0\x5a\x01\xc0\xda\x18\x53\x38\xeb\xb1\xef\xb7\x6c\x5f\xf6\xda\x6b\xaf\xd1\x6a\xaf\xc9\x5f\x00\x59\x6f\x48\xcf\xf5\xea\x10\xba\x2e\x3a\x47\x7a\xee\x1a\xbf\xd4\x8f\xf3\xf0\x9c\x37\xa5\x8f\xf9\x6f\x42\xdb\xe5\x39\x96\x36\x60\xb4\x4d\xf1\xc7\xf2\x84\x62\x01\xe7\xdf\x96\x2e\xef\xcf\x81\x4b\x4c\x81\xf2\x42\xe4\xf4\xfc\x5b\xac\x62\xc4\xc0\x04\x8f\x4b\x7a\xa7\x60\x88\xf3\xe4\x15\xcc\xf9\xd3\x0c\xe1\xe6\xb5\xa6\x77\xca\x8b\xa7\x21\x06\x80\x40\x78\x96\xc2\x49\xc0\x4a\xaa\xb0\x3e\xde\x8f\x3e\xfa\x08\x3f\xfe\xf8\x63\xf8\xc4\x27\x3e\x01\xc6\x18\x83\xe8\x37\x17\xd2\xb3\x31\x9c\xbf\x21\xcf\x6e\xcd\x4b\x61\x79\x95\xa3\x07\x0b\x5e\xd6\x89\xc9\xa7\x7d\x3d\x1b\x6f\x15\x67\xb9\x32\xcc\xb9\x50\xd3\x00\x00\x20\x00\x49\x44\x41\x54\xb3\xac\x50\xbd\xac\xc0\xad\x14\x54\x02\xe0\x94\x4b\xa5\x70\xa4\x8e\xd3\xd7\xb2\x88\x72\x34\x60\x6a\x00\x23\x50\x84\x2e\xbc\x1c\x5c\xa4\xf5\x61\x22\x80\xc0\x10\x8f\xc0\xb4\x4d\x3b\x70\xa2\x3b\x4c\xe8\x05\x56\x64\xa2\xb8\xad\x82\x0d\xfc\xda\x94\x4b\x15\x41\x40\xc7\x94\x48\x97\x9d\x4c\x4d\xce\x19\x9d\xc2\xb8\xed\x7b\x1b\x1f\x2f\x0b\x59\xe7\xc1\x42\x70\x65\x46\xdf\xbc\x06\xe0\x91\x10\x45\x47\xcf\xfd\xa0\x6b\x2b\xa4\x75\x55\x86\x2c\x66\x41\x00\xa6\x6c\x89\x15\x82\xd0\x57\x3b\xde\x18\xbd\x9d\x4f\xe2\x8b\x59\x29\x31\xd2\x67\x9f\x87\xc1\x49\x24\xcc\x49\x17\x94\xb6\x2d\xfa\xb5\x13\x28\x04\x84\xd1\xd3\x73\x83\x75\x33\x0e\xd8\xb0\xb4\xb9\x2c\xa5\x72\xd3\x9d\x3b\x74\x3a\x49\x5a\x00\x32\x40\xcd\xbf\x5f\xc6\x41\x4b\xb0\x4e\x08\xaa\xe3\xf8\xc5\xbc\xa4\xe5\x07\x10\x94\x0b\x07\x32\x34\x7b\x01\xca\xb5\x2c\xcb\x54\x4f\x8f\xb6\x57\xef\xbf\x7d\x79\xf1\xfa\x0f\xae\xce\xbe\x77\xb4\x9d\x7f\xb8\x4e\xcc\x29\x00\xcc\x00\x61\x6a\x8c\xf1\xc0\xc5\x18\xb3\x44\x44\xb7\x0d\x3a\x47\xc4\xc2\x18\x7f\x30\x82\x01\x00\xb8\x77\xef\x1e\x9e\x9e\x9e\xf2\xaa\x40\xfb\x79\x57\x2d\xe9\x74\x04\x10\x7f\xea\xf8\xb4\x08\xa5\xe7\x3a\x0a\xa1\xce\x9b\xfb\xd3\x30\x8e\x07\x9d\x82\x92\xe4\x96\x94\x79\x4c\x6e\xaa\x6f\xa4\x69\x26\xe9\x3b\x97\x23\xf6\xcc\xe3\x91\xf2\xa0\x69\x3a\x27\x96\xf6\x98\xfe\xa7\xcf\x34\x5f\x29\x0f\xca\x3b\xa0\x4d\x18\x73\x89\x30\x06\x66\x38\x73\x2a\xbc\x21\x3f\x9a\x70\x9a\x19\xb1\xb0\x9c\x9e\x16\x50\x13\x78\xa2\x3c\x39\x08\x91\xc0\x10\x2d\x04\x4a\xc3\x65\x95\x40\x99\x14\x07\xb7\xdc\x48\xe1\xb8\x3c\x3c\xaf\xa9\x7c\xfe\xfd\xec\xec\xcc\x1c\x1d\x1d\x99\x57\x5f\x7d\xd5\xbc\xf0\xc2\x0b\x81\xbc\x6c\x3b\xa7\x07\x2b\x84\x87\x26\x7f\xdd\xe8\xa5\x00\x00\x6d\xc0\x14\x85\x82\x62\xde\xd3\xf3\xb3\x41\x3e\x99\xf5\xf4\x34\x01\x84\x7e\xae\x06\xa9\xc6\x7e\x29\xa0\x5b\x14\x27\x6d\xed\xa4\x19\x58\x75\xd9\xd4\xdc\x8d\x42\x38\x9f\x11\x54\x09\x10\xff\xda\x56\x54\x96\x31\x81\x62\x21\x20\x23\xe8\x15\xd8\xf4\x87\xd5\x87\xf6\xb9\x54\x1c\x68\x23\xab\x59\x85\x58\xdc\x68\x03\x5a\x9d\x2b\x4e\x1f\xb1\xa0\x5e\x39\xd5\xe4\x67\x61\x29\xa8\xa3\x4a\xcf\x4b\xce\xcc\xf1\x35\x31\x49\xda\x5d\xda\x28\xa5\xaf\x15\x12\x0f\xac\x1e\x58\x08\xc2\xb3\x9e\x0e\xde\xfb\xd6\x2c\x4f\xd4\x82\x43\xbe\xd1\x05\xa1\x7c\x97\x9a\xf1\xdf\x43\x79\x48\xad\xaa\x41\xbc\xa0\x7c\x63\x79\xc4\x3e\x18\x02\x0e\xc0\x82\x09\x6e\x58\xe4\xe0\xa4\x02\x16\xa1\x82\xa6\xe9\xac\x94\x79\x28\x85\x71\xa9\x21\x20\xcd\xaf\xb5\x81\x8a\xb4\x3a\xd2\x3f\x4c\x1b\x10\xd9\x2a\x4b\x06\x3d\xfe\x9f\xfa\xdb\x7f\x51\xde\x05\x48\x81\x07\x92\x32\x28\x31\x5e\x05\x76\x68\x96\xd5\x2c\x35\xae\x2e\x05\x72\x41\x25\x8b\xf5\xcc\x13\x58\x9d\x0d\xf2\xe3\x0f\xf6\x96\xef\xfc\xf0\xca\xfc\xfb\xef\xed\xcf\x7f\x78\xba\x95\x7f\x5c\x24\x30\x01\x84\x09\x94\xa0\x65\x86\x88\x0b\x6b\x6d\x59\x22\xe2\x1a\xca\x23\x1f\x0a\xac\x0e\xd6\x74\x87\x24\x1a\x00\x80\xaf\x7f\xfd\xeb\x9a\x24\xc5\x59\x5c\x80\xf9\x51\x05\x4e\x75\x11\x32\x3f\x69\xd0\xc9\xf5\x16\xed\xe7\xa5\x70\x92\x6e\xa2\x3c\x78\xbc\x54\x6e\xbe\x16\x86\xcb\xcd\xc3\x49\x34\x52\x7c\x5c\x5e\x5f\x7c\x2c\x2f\x0c\xd4\xf3\xc7\xd1\x70\x43\x81\x8b\x53\x4a\x0b\xcd\x2f\x9e\x07\x5c\x97\x6b\x46\xe3\x64\xe3\xba\x53\x2a\x4b\xcf\x37\x21\x81\xa5\x0c\x68\x9a\xef\x92\x22\x88\x39\x0e\x0a\xa8\x80\x3c\x81\x1c\xb1\xf1\x8c\x41\xa8\xcb\x4c\x79\x73\x5e\x48\x7e\xd4\x8f\x57\x6a\x0e\x38\x62\x96\x21\x9e\xc9\xb1\xe9\x2f\x2e\x2b\x8f\x1f\x05\x7e\x08\xf1\xbc\x02\x00\x80\x57\x5f\x7d\xd5\xbc\xfa\xea\xab\x86\x2d\xda\x05\xa8\x37\xba\x82\xbc\xd3\x6f\xce\xbf\xec\x1c\x10\x0a\x8d\x46\x2f\x52\xb3\x9c\xf4\x8b\xd9\x74\x50\x4c\x00\x20\xef\x69\xd5\x4b\x0b\xcc\x94\x81\xc4\x77\x66\xac\xe3\x16\x54\x64\xf9\x84\x82\xc2\x76\x61\x59\x87\x47\x43\xfb\xd6\x84\x61\x0b\x92\x14\xb6\xa7\x8f\xd1\x52\xa5\xc2\xc2\x56\xda\x22\xfc\x4a\xc3\x4b\x05\x47\xcd\xe3\x35\x79\x48\x57\x80\x08\xf6\xae\x98\x58\xfc\xe4\x9d\x2b\x06\xe2\xea\x77\xc6\x84\x3d\x0e\x51\x8b\xb5\xb4\x51\x3a\x69\x0a\x8f\xcb\x1f\xdb\xce\x2a\x4d\x9a\x04\xbc\x7c\x79\x96\x0f\xbc\xbc\xd0\xd0\x93\x60\x4d\xad\x6e\xf0\x5e\xd5\x5b\x3c\x5c\x3e\x86\x52\xd6\xd6\x55\x54\xf2\xd7\x8f\xc3\x77\xf4\xb4\xcc\xe8\x8e\x19\xae\x80\x3d\x48\xa3\xb2\xd2\x32\x8d\x65\x20\x11\x86\x9f\xdd\x42\x65\x14\x83\x3b\x59\x29\xb0\xe1\x79\x53\xe3\xe7\xd6\xf3\xd8\x09\x37\xe3\xc0\x03\x78\x61\x79\x9e\x54\x39\x48\xe2\x24\x02\x96\xeb\x53\x6c\x64\x46\x06\x3e\x94\x11\xb7\xc0\xa2\xfd\x4f\xa3\xd1\x8b\x9e\x9e\x1e\x8d\xd6\x1f\xbe\xb7\x3f\x7f\xeb\xed\xcb\xf3\x37\x6f\x5f\x58\xbd\x37\xcd\xf4\x91\x46\x73\x86\x88\x53\x63\xcc\x19\x00\xcc\x10\x71\x6e\x8c\x99\x23\xe2\x1c\x00\x96\x00\xb0\xb4\xa0\x65\x4d\x36\x1d\x00\x40\x75\xf8\xdc\xce\xce\x8e\x5a\xad\x56\x2e\xc7\x9d\x08\x14\x44\xb8\x1f\x5f\x73\x41\xfb\x46\xe7\xb8\x3e\xe0\x7d\xb0\xa4\xd3\x24\x8b\x86\xa4\x5f\xb8\x8e\xe2\x16\x10\x2e\x2b\xd7\x5f\xdc\x9f\xc6\xc1\x75\x0c\xfd\x46\xd3\xcb\x07\xe1\x52\x9c\xd4\x0f\x18\x2d\x95\x3d\x96\xc7\x1c\xe0\x70\x7f\xc7\x03\x20\xcc\x23\x29\x7f\x68\x99\x05\xdd\x3c\xcb\x17\x94\xd6\xb8\xf0\xc4\x36\xad\xd9\x90\xcc\x42\x4d\xf4\x92\x72\xe7\x89\x8a\x81\x00\x9a\x31\x12\xff\x18\x88\x70\x19\x49\xfd\x9a\xe2\x97\x2a\x39\x7d\xa6\x72\x72\xc4\xce\x2b\xbd\x14\x8e\xca\x63\x04\x7f\x1e\xa7\x98\x97\x02\x78\x09\xe4\xa5\xd3\x45\x50\x07\x2f\x9a\xbc\x17\x80\x58\x80\x9d\x3a\x3a\xeb\x17\xd3\x69\x3f\x9f\xe4\x09\x2c\x13\x8d\x49\xaa\x55\x9a\x18\xec\x21\x60\x30\x08\x74\xb1\x39\xdd\x5f\x03\x18\x26\xf4\xe7\x53\x34\x65\xc7\x4b\xd6\x9e\x90\xf0\x48\x3c\x78\x4b\xe7\x19\x49\x1d\x4a\xcf\x36\x1e\x4e\xdd\x16\xde\xa5\xb1\x1a\x7d\x56\x0a\x21\xe4\x43\xec\x00\x48\x65\x73\xeb\x19\x42\xc6\x5c\x51\xfb\x77\xaa\xfc\xec\xa3\xb4\x25\xdb\xf3\x37\x25\x17\xaf\x70\x89\xf5\xa1\xe2\x6f\x15\x37\xd0\x74\x44\xd2\xce\xe2\xf6\xf2\x1a\xfa\xcd\xa6\x95\x15\x46\xc9\x33\x32\x75\x64\x85\xa6\xeb\x59\x68\xb8\xa8\x92\xf4\x7c\xab\x8a\x14\xec\x0a\x02\xef\xed\xcb\xc6\xa5\xbb\xb2\x40\x10\x7a\x12\x45\x68\x4d\x31\xe0\xac\x5e\xd4\xce\x13\xe4\x67\x55\xbc\x1e\x1c\xf8\x34\xb3\x4c\x95\xf2\xb1\xde\x09\x90\xa9\x39\x5b\x30\x72\x3c\x84\x89\xcb\x3f\x57\x0f\x58\x7a\xdc\x4e\x61\x74\xd3\x63\xf6\x03\xef\xf9\x5d\xfe\xd4\x8e\xf0\x67\x8d\x94\xee\xf6\x0a\x3a\x20\x5f\x6e\xa1\x7c\x06\x00\x72\xa5\xf3\xb3\x41\x71\xef\xf6\x85\xe5\x8f\xdf\x3d\x98\xff\xe0\xbd\xfd\xc5\xdb\x47\xa3\xf5\x87\xeb\xd4\x9c\x02\x82\x03\x2d\x53\x44\x9c\x22\xe2\xcc\x59\x5c\xc0\x82\x16\x28\x07\x53\x6b\x00\xbf\x26\xcf\xed\x9a\xf4\xe7\xb7\x58\xd0\x22\x59\x47\x80\xbc\x4b\x4a\xbb\x69\xea\x9e\xf3\x04\x81\x9e\xc6\x11\xb3\x8a\x28\xf6\x4c\x79\x71\xcb\x89\x14\x8e\xd3\x4a\x96\x1d\x47\xc3\xf5\x08\x8d\x93\xea\x28\xea\x62\xb2\x22\x7b\x76\xef\x5c\xd7\x19\xf6\xa3\x3c\xa5\x69\x1f\x29\x2c\x9f\x99\x80\x88\x1f\x4d\x2f\x2d\x47\x04\x00\x2d\x01\x17\x5e\x70\x52\x61\xd3\xc8\xb8\xe2\x8c\x01\x0b\xc9\xa2\x20\x29\x6a\x89\x9e\x27\xbe\x49\x1e\x1e\xde\xf1\x6e\x8a\x9f\x66\x1c\xa5\xa7\xb4\xbc\x32\x48\xf2\x73\xf0\x03\xec\xbb\x64\xc1\xe2\xf9\xd7\x04\xfc\x02\xe7\xac\x2f\xcf\x3f\xff\x3c\x40\xd9\xd8\xdd\x27\x4d\xd6\xc1\x50\x90\x52\x81\x95\x6a\xea\xa8\xaa\x88\x08\xb9\x41\xd0\xb3\xbe\x9e\x9e\xf5\xf3\xb3\x65\x4f\xcf\x01\x41\x97\x00\x06\xd3\xf2\x80\xb0\x6a\xfd\x81\x1b\xb5\x42\xf5\x27\x4c\x18\xca\xfe\xe0\xc2\x93\xaf\xf4\xf6\x5c\x8a\x58\x02\x45\x4d\xf8\x49\x80\x46\x1c\x75\x63\xa5\x54\x83\x00\x4c\x99\x01\xff\x0e\xd5\x77\xa4\x2f\x4c\xb3\x23\xfd\xd7\xe6\x47\x69\x99\x41\xaf\x5c\x5d\x30\xf7\xca\x15\x9a\x57\xc2\x2c\x8d\x3e\xff\xb8\xe2\x35\x50\x6d\x17\xc7\x4a\x51\x73\xfe\xee\x4c\x19\x3e\x62\xf7\x8d\x80\x28\x26\x9e\xaf\x9e\x9e\x76\xb3\x10\x82\x81\x7a\x3e\x84\x2f\x21\x5f\x1b\xce\xee\xb9\xad\xd2\x15\x6e\xe3\x25\x3a\xd7\x87\x73\x20\xd0\xa9\x7c\x2a\x9b\x03\x10\xac\x94\x7d\xe4\x94\x5f\x59\x8f\x8c\xdf\xfe\x0b\x58\xc9\x55\xd5\x21\x17\x77\x78\x0a\x6e\x05\x6e\xc0\x5a\x7d\xc2\xe9\x30\x68\xc8\x47\x24\x3f\xff\xcd\x10\x70\x00\x55\x9e\xd0\x7a\xee\x7f\x04\x94\xc4\xf2\xdc\xb5\x49\x70\xf9\x21\x59\x5a\x88\x84\x15\x70\x22\xd9\xe5\x64\xe2\xed\x83\xae\x97\xa1\xaa\x09\x5d\xc7\x61\x60\x99\x9a\xc9\xbd\xed\xf5\x9d\x5b\xfb\x8b\x1f\xbd\x73\x30\xff\xc1\x87\x7b\xcb\x5b\x67\x83\xe2\x50\x2b\x38\x33\xc6\x4c\x00\x60\x8a\x88\x53\xfb\x77\x06\x00\x33\x00\x58\x00\xc0\x02\x11\x57\xc6\x98\xb5\x5d\xdb\x42\x17\xe5\x6a\x97\xee\x57\x5f\x7d\xd5\x08\xd6\x16\xa9\x9f\x96\xf4\x10\xef\xeb\x25\x70\x23\xd1\xc7\x78\xd3\xfe\x99\x86\xdb\xe4\x59\xf2\xa3\xfa\xa7\x8d\x87\xb4\x0b\xc7\x85\xe5\x69\x39\x2f\x6f\x29\x9d\x31\x9d\xeb\xbe\x4b\xf1\x4b\x6b\x40\x25\xde\x31\x99\x80\xd3\x3a\xe0\x12\x53\xb4\xee\x1b\x15\x8a\x7f\xe7\xae\xc9\xbf\x2d\x3c\xaf\x1c\x9c\x3e\x66\x62\xe2\x80\x82\x66\x20\x40\x55\x18\x4d\xa0\x83\xce\xe1\x71\xdd\xc2\x41\x09\xb2\x70\x2e\x0c\xdd\xa5\x04\xec\x1b\xe7\xc9\xbf\xf1\xbe\x8d\xc7\x47\xd3\xaa\x00\xc0\x7c\xf1\x8b\x5f\x54\x9f\xfa\xd4\xa7\xf0\x6b\x5f\xfb\x9a\x3f\xef\xc5\xce\x55\xa3\x5b\xa8\xcb\xd2\xe0\x4e\xa0\xf4\x1d\x83\xb5\xcc\x14\xde\x34\x8b\x50\x00\x82\x5e\xf6\xcc\x6a\x3c\xc8\x27\xb3\x4c\x9f\xe5\x89\x59\xa3\x41\x95\x6a\x95\xa6\xda\x5a\x5f\x58\x62\xb8\xc2\xf3\xca\xc0\x03\x92\x7a\xad\x04\xa7\x80\x01\xc8\xb4\x0a\xd6\xd6\xb8\xb8\xef\x41\xed\x66\xdb\x46\x01\x20\x18\x25\x73\x65\x5e\x7e\xa8\x7a\xe3\x9a\xf5\xc8\xc9\x1b\x51\x0c\x5e\x24\x16\x8e\x9a\xdc\x1b\x01\x00\xf7\xa3\xca\xc0\xcb\xcf\x2a\x89\x61\x32\x59\x64\x23\x01\xc2\x00\x47\x04\x5d\x7b\x3d\x1e\xff\xd9\xc9\x6c\x9c\xbf\x21\x53\x82\xe1\x4e\x95\xf2\x19\xeb\xf9\x60\xe4\x13\x93\x3d\x9d\x30\x5d\xe1\xd5\x26\x2b\x63\xa7\x6f\xeb\x18\xb1\xb2\x10\x38\xb9\x39\xe8\xa4\xb2\xf1\x85\xa9\x65\x3a\x9d\x9c\xe8\x95\xb2\x54\x8f\x90\x08\x86\x84\x37\x8d\x2f\x38\xfb\x8d\x54\x6a\x3a\xc5\x54\x73\x41\xc5\x47\x5f\xdf\x9c\xa5\xc3\x87\x20\x8d\x86\xe6\x35\x07\x0e\x41\xbd\xa7\xc2\x42\x95\x36\x2a\x1e\x82\xcf\x75\x5f\x26\xe1\x95\x15\x44\x26\x9f\x0f\x8e\x1f\x06\x03\x81\x2a\x39\x06\x0a\x05\xf9\x34\x2b\x4e\x3e\xba\xb0\xbc\xf5\xce\xc1\xfc\xfb\xef\x5e\x9a\xbf\x75\x77\xb4\xbe\xbd\xea\x99\x13\x03\x66\x82\x88\xfe\x67\x8c\x99\x58\xd0\x32\xb5\x0b\x71\x1d\x68\x59\x81\xbd\x9b\xc8\xae\x69\x71\xfd\x92\x79\xe5\x95\x57\xf4\xf3\xcf\x3f\x8f\xaf\xbd\xf6\x9a\x21\xd6\x16\x80\xb0\xaf\x8d\x59\xc9\x9b\xfc\x11\xe4\xa9\x09\xde\x4c\x0c\x0b\x27\xe9\x19\x69\x6a\x27\xa6\x6b\x90\x85\xe3\x7d\x74\x4c\x47\x52\x1d\x10\x9b\x06\xa3\xdf\x25\x2b\x07\x8d\x93\xf3\xe3\xfe\x9c\x3f\x95\x5b\x4a\x57\x4c\x6e\x4e\x1f\xcb\xc3\x26\x1e\xc0\xfd\x85\x16\x16\x75\xb1\x0a\xc3\x33\x51\x42\x57\xd2\x7b\x2c\x8c\x73\x12\x7f\x4a\x1f\xe3\xdf\x16\x06\x22\xe1\xda\xe4\x6c\x72\x4d\x71\xb6\xc9\xf6\xc0\xee\x73\x9f\xfb\x9c\xfa\xd7\x7f\xfd\x57\xfd\xe2\x8b\x2f\xfa\x5b\x55\xdd\x37\x77\x45\x80\x29\xaf\x8c\x4f\x01\x40\x19\x63\x32\x44\xcc\xec\x5f\x77\x59\xa3\xbb\xa8\x71\x00\xf6\xa2\x46\x28\x8f\x61\x1f\xed\x2c\x93\x8b\x8f\x9c\x66\x37\x1e\x3b\x19\xdc\xbc\x36\xee\x3f\xbe\xb3\x4c\xf6\x7b\x05\x66\x8a\x54\x1f\x71\x4a\xa1\x7c\x89\x20\x80\xf0\x93\x57\xa0\x18\x86\xa7\xfe\x9c\x47\x18\x26\xe8\xf3\x65\x4d\x4e\x80\x92\xf7\x06\x90\x5b\x01\xf9\xc6\xa3\x97\x7c\xb8\x57\x2d\xfa\x58\x3c\x3c\x5a\x92\x8f\x4c\xf4\x30\x1f\x04\x11\xbc\xb7\x03\x22\x48\xf2\x84\xc7\x2f\xe6\x53\x0b\x6f\x2a\x5b\x43\xb9\xd6\xd0\x2a\x11\x21\x80\x23\xa4\xbc\xa5\xad\xed\x15\x25\x39\xb2\x1f\xc2\x2d\xd4\x50\x7b\xaa\xfe\x75\x99\xe1\xe9\x8d\x03\x67\x18\xa4\xa7\x96\x15\xc4\xa3\xcb\x4e\xb2\x58\xfd\x72\x92\xd0\x43\x0e\x91\x65\x4a\x6d\xa1\x37\xcb\xe3\xfa\x42\x70\xbe\x44\x39\x38\x7f\x19\xe8\xe9\xb5\x5e\x08\xf0\xe2\xf9\x08\xfc\x67\x0e\xb4\x84\x7a\x51\x2f\xea\x32\xce\x75\x62\x16\x27\x5b\xf9\xd1\x07\x7b\x8b\xb7\x6f\xed\x2f\xde\xfd\x78\xb4\xbe\xb3\x4c\xf5\xa9\x01\x33\x23\x56\x15\x67\x59\x99\x41\x79\x9c\xff\xca\x4e\x0f\x2d\xa0\x3c\x63\x6a\x65\xff\xd2\xf3\xa6\xdc\x0f\x22\x17\x2b\xf2\x67\x68\xf9\xde\xa5\xdf\x3d\x6f\x7f\xdd\x25\x9e\x07\xd5\x0f\x9b\xea\x52\x49\xa7\x76\xf5\x6f\x92\x97\xba\x2e\x38\xa0\x8b\x3e\x6f\x92\x3b\x9a\xf7\x6e\x57\x51\x0c\x65\x71\x6b\x0b\x47\x5d\x31\xf4\xc9\x91\x19\x47\x92\xd4\x71\x14\x48\xe7\xd6\x28\x2a\xe4\x71\x73\x99\xa5\x30\x54\x4e\x8a\x3a\x63\x32\x73\x79\xba\x38\x6a\x82\x93\xcc\x89\x31\xf3\x58\x8c\x57\xd7\x78\xbd\xbb\x7d\xfb\xb6\x01\x08\xce\x7c\x71\x6b\x5c\xbc\xe5\xc5\xed\x34\xb2\x1d\x95\xb1\x32\x19\xac\xb6\x4b\xd3\xa9\x23\x0d\xf6\x9e\x10\x40\x2c\x96\xa9\x59\x9d\x6e\x15\x93\xd3\x41\x7e\xbc\x4c\xf5\x2c\x31\x88\x59\xa1\x06\x69\x79\xe9\x1f\x02\x60\xb9\x56\xc0\xf7\x74\xd5\xe8\x0d\xa0\xf4\x0e\x16\x44\x5a\x4a\x7e\x7e\x5c\xa5\x44\x48\xf7\x2e\x9c\x0a\xea\x02\x20\x84\xfc\x80\xbc\x87\x67\x89\xa0\x87\xe9\x54\xb7\x06\xfd\x3b\x42\xb0\x5e\xc1\x90\x29\x0d\xb7\xa5\xb6\xda\xad\x8b\x41\x45\x73\x72\x50\x41\x02\x40\x45\x64\xf6\xd1\x0b\x23\xf3\x92\x96\x2a\xde\x4a\xb3\x96\x87\xa9\x61\x20\xaf\x8f\x96\x69\x96\x72\xaa\xaa\xe4\x58\x4d\xd1\xb0\x34\x63\x15\x2e\xb8\x75\x9b\x61\x0e\x7e\xb1\xa6\xb1\xf9\x51\x3b\xac\x8c\x02\x02\x07\x4c\x6a\x5a\xde\xad\x91\xb1\x96\x1d\x5b\x6f\xa8\x45\xc3\x6d\xa5\x75\x8b\x78\xe9\x82\x5e\xaa\x94\xab\x5b\x99\x5d\x5d\xa3\xab\x6c\x8c\x8d\xdf\xf1\x20\x16\x1e\x6f\xb9\xa0\xd3\x1f\x55\x59\x53\x60\x13\xd4\x33\x63\x4b\xc5\xa7\xd1\xa7\xd2\xca\x5d\x4d\x25\x55\x32\x57\xb5\xa4\x94\x0c\x59\x85\xaf\x83\xaf\x5a\x1c\x58\xc5\x01\x9e\x07\xf5\xc2\xca\x1f\x80\x5d\xa1\x40\x50\x90\x6b\x0f\x54\x2e\x43\x62\x75\x64\xb4\xcc\x6c\x26\x3b\xc0\xe7\xf8\x16\x08\xf9\xac\x5f\x8c\x3f\xda\x5d\xbe\xfb\x83\xab\xd3\xef\xfc\xe8\xf2\xe2\x07\x77\xb7\xd7\xb7\xf3\xd4\x9c\x1a\x30\x67\x50\x4e\x07\x4d\x00\xc0\xfd\xa6\x50\x02\x97\x39\x94\x53\x43\x73\x28\xcf\x6b\x59\x23\x62\x0d\xb4\xb8\x75\x2d\x2f\xbf\xfc\xb2\x7e\xee\xb9\xe7\xf0\x8d\x37\xde\x40\x53\x6e\x6d\xe4\x7d\x6a\x60\x81\xf6\x99\xed\x13\x1f\xf8\x4b\x7a\x41\x9a\x2a\xe2\x53\x2e\x52\x38\xea\x78\x9c\xce\x71\xde\x9c\x0f\x7d\x97\xac\x47\x94\x0f\xf7\xa7\x7c\x14\xe3\xc3\xe3\x23\xb5\x2d\x90\x57\xd2\xa5\x31\xdd\x4d\xf3\x03\x58\x3c\x3c\x9f\xa4\x38\x90\xfd\x75\xbc\xb9\x3f\xe7\x11\xcd\xfb\x44\x08\x20\x45\xdc\x04\x3e\x62\xa6\xb0\xd8\xbb\x54\x30\x00\x72\x46\x4a\x99\x0c\x84\x5e\x7a\xe7\x85\x08\xcc\x5f\xaa\x64\x4d\x05\x87\x20\x67\x22\xa5\x45\x21\x1c\x8f\x47\x6a\x30\xdc\x8f\x37\x46\x5e\xd0\x52\x21\x06\x74\xaf\xbe\xfa\xaa\xf9\xcc\x67\x3e\x83\x4a\x29\x00\x28\x8f\x77\x71\xdf\xb0\x3a\xdb\xc5\x00\x04\x07\xd7\x15\x6e\x0b\xa2\x05\x3c\x6b\x4b\xe7\xef\x3f\xd2\x0a\xd6\xb3\x4c\x2f\x4e\x86\xf9\xc9\xe9\x56\x7e\xbf\x50\xb0\xec\xe7\x6a\x90\x15\x38\xf0\xb7\x01\x43\xa5\x20\x68\xbf\xea\x95\x22\xc9\x6c\x60\x74\x95\xca\x43\xf2\xb7\x0c\xe8\x8f\x22\x47\x5a\x31\xe8\xed\x29\xf5\x16\xca\x17\xfd\x8a\x74\x35\x05\x02\x7e\x4d\x08\xdd\x02\xec\x77\xf7\xf8\x6d\xa6\xe1\x28\xde\x11\x1a\x96\xee\x20\xad\x35\x70\xc1\x55\x16\x00\x1d\x8d\x7b\x75\x84\x50\x29\x79\x9f\x72\xaa\xa8\xa1\x52\xfe\x3c\x0f\xf8\xfd\x46\x34\xff\x0c\x79\x47\x59\x59\xfb\x4a\x46\xa7\x52\x68\x7e\xd0\xb8\xa4\x75\x36\x26\x7c\xa8\x52\x60\x15\x68\x19\x79\x58\x3f\x68\xe1\x18\xca\x97\x9c\x7d\xe2\x72\x01\x2b\xb0\x00\x10\xdc\xb9\x54\xc6\x45\x40\x91\xaf\x07\x58\xd5\x9a\x0a\xc4\xd9\xb2\xa0\x80\xca\x8a\x5d\x4d\x9d\x59\xe1\xb0\x4a\x8d\xaf\xb5\x4e\x4e\x1b\x09\x5d\x70\x5b\x02\x18\x5a\x32\xe5\xa3\x3f\x65\xd6\xd2\x54\x9d\x88\x2b\x53\xc7\x27\xa8\xf4\x55\x96\x92\x82\x2c\x17\xd9\x92\xa9\x1c\xcf\xcc\xca\x87\x50\xed\xae\xb2\x99\x6d\x5c\x9e\xda\x30\xb6\x7a\xd7\xcb\xc0\xb1\xb1\x71\xaf\x13\xb3\xb8\xb7\xbd\xbe\xfd\xa3\xcb\xf3\xef\x7d\xff\xda\xf4\x7b\x3f\xd9\x5f\xde\x5a\xf4\xf4\x09\x28\x98\xd8\xb5\x2c\x13\x44\x3c\x83\x72\x3a\xc8\x4d\x0d\x2d\x00\xc0\xed\x20\x5a\x00\xc0\x1a\xca\xa3\xfd\xdd\x61\x73\x35\xd0\xe2\x0e\x9b\x7b\xfd\xf5\xd7\x8d\xa9\x5f\x52\x44\xfb\xdb\xd8\x68\x9d\x7f\xe7\x61\xb8\x4e\xe1\xdd\x03\xef\x52\x24\x0b\x04\xe5\xc7\xf5\x03\xef\xd7\x63\xe0\x02\xa0\x2e\x2b\xe7\x4f\xe5\xa3\x3c\xf9\xa0\xd8\xc9\xc1\xe3\x63\xbd\x4f\x4d\xa7\x48\x79\x23\x01\x26\x9a\x0f\x8a\xf8\x01\xa3\xe5\xfa\x29\x66\x4d\x69\x2a\xbf\x58\x99\x29\xf0\x35\x3b\xee\xa8\x39\x89\x32\xa4\xdf\xa8\xd0\x9b\x98\xd5\xba\xfa\xf1\x78\xba\xf0\xe5\xa6\xaa\x36\xf3\x62\x13\xef\x26\xd7\x25\xcd\x0f\xea\xce\x1d\x07\xb9\x61\x1a\x00\x40\xd9\xce\x4d\x41\x79\xb9\xa6\xb2\xbf\xcc\xbe\xd3\x9b\xa6\xdd\xdf\xa1\x9d\x46\x72\x53\x48\x43\x00\x18\xa2\x81\xe1\x70\x95\x5c\x78\xe4\x34\xbb\xfe\xcc\xd1\xf0\xb9\xc7\x4e\xfb\x4f\x0f\x56\x6a\xd7\x75\xd1\xb5\xa9\x1e\xa8\xb7\x9c\x26\xd7\x44\x2b\x7d\xeb\xca\xbb\x0b\xdd\xc3\xe6\xbf\x49\xba\xbb\xba\xc6\xfc\xf1\x4a\xb6\x3d\x6e\x59\x5e\x3e\x15\xd1\x2d\x6c\x34\x2e\x0a\xec\xec\x63\x60\xc5\x89\xed\xc3\x16\xf8\xf2\xa3\xe4\x03\x9e\xcc\xcf\x3d\x84\xc0\x83\xf3\x76\xe0\x21\x9e\xe6\x98\x26\x33\x81\x95\x26\x2e\x8f\x3b\x54\x2f\xb4\xbf\x08\x53\xa9\x1c\x98\xc4\xf2\x43\x48\x8b\xf1\xff\x56\xf2\x80\x21\x00\x07\x9a\xf9\x72\x00\x2e\x7d\xcf\x95\xc9\xc7\x83\xfc\xe8\x83\x0b\x8b\x77\xdf\x39\x98\xff\xf0\xe3\x9d\xd5\x9d\x65\xaf\x3c\x48\xce\x94\xb7\x39\xcf\x00\x60\xe1\x76\x0a\x91\x1d\x43\x0b\x3b\x3d\xe4\xee\x22\xf2\x16\x16\x7b\xc8\x9c\xeb\xdb\xfc\x5f\x36\x3d\x44\x9d\xa4\xdc\x62\xd3\x0b\x5d\x9e\xff\xa3\x78\x4b\xf1\x6c\xaa\x2f\x25\x9d\xd8\xb6\x34\xa2\x29\xdc\xa6\x71\x3e\x28\x6d\x57\x9a\x4e\xe1\x9a\xee\x2a\x02\x46\xac\x84\x6f\x94\x61\x17\x81\xba\x26\x52\x0b\xcf\x81\x12\x8e\xd0\x48\x72\x36\xf9\x3f\x28\xf0\x78\xd8\x60\x47\xfa\xf6\x30\x80\x91\x02\xf0\xa3\x57\x0d\x65\xc7\xe1\x00\x0c\xbd\x69\xda\x75\x2a\x03\xf7\x4e\x3a\x9c\x21\x94\xd3\x47\x2b\x00\x5c\xcd\xb2\x62\xf1\xde\xfe\x62\x76\x6f\x7b\x7d\xfc\xf1\xbd\xc1\xed\x67\x8f\xb6\x3f\x7d\x71\x9e\x5e\xeb\xe5\x38\x90\x76\x0b\x09\xd7\x2d\x06\x8e\x0f\x6f\x2a\xcf\x30\x1c\x1d\x76\xd4\xe8\x5b\xdc\xa6\x00\xaa\x12\x8e\xa8\x1a\x51\x01\x36\xc4\x29\x28\xee\xe0\xd9\xd4\x06\xd5\x22\x6f\x14\x3d\x4d\xfd\xdc\x90\x36\x45\x45\xf2\x54\xce\x87\x0a\x70\x8a\xf1\xa2\xe0\x1f\x8b\x0b\xc0\x8f\xf2\x43\x6b\x94\x30\xd5\x16\x71\x95\x61\xa1\xbe\xc8\x18\x20\x0e\x7c\xa8\xbf\xbc\x76\x86\x5a\xcd\xe8\x82\xe7\x7a\x7d\x03\x80\xda\x74\x1c\x90\xf4\xd4\xc3\x31\x8b\x61\x18\x71\x98\xf3\x04\x58\xd1\x7a\x14\x44\x47\xf3\x1d\x43\x9a\x2a\x7e\x0c\x17\x1a\xb3\x34\x23\x09\x45\x61\x1a\x9d\xc2\xa5\xce\xf9\x17\x68\xf4\x2c\x2b\xc6\x77\x76\x56\xef\xfd\x78\x7f\xf1\xf6\x87\x7b\x8b\x0f\x26\xfd\xe2\x7e\x81\x40\xd7\xb0\xf8\x75\x2c\x64\xfd\x8a\x3b\xc2\xdf\x81\x96\x9c\xfd\x34\xf9\x01\xf9\x0b\x77\xef\xde\x85\x73\xba\x58\x5f\xb9\x49\x7f\x1b\xa3\x8f\xe9\x9b\x18\xcd\x43\x53\xd2\x91\x38\xf9\x1a\x92\x58\x58\xaa\xa7\x1f\x24\x1f\xda\x00\x57\x17\xde\x9b\xf0\xe3\xe1\x02\xfa\xa6\xbb\x8a\x5c\x60\xd7\x3e\xb8\xf9\x4b\x7a\x8f\x85\x95\x78\x71\xe1\x24\x3a\x6a\x82\xe3\x66\x3d\x24\xdf\x28\xad\x86\xb0\x4d\x53\x53\x1a\x37\xeb\x35\xc9\xdf\x94\x16\xea\x8f\x0d\xdf\x24\xff\x18\x3d\x80\x9c\xee\x36\xd9\x68\x5c\xc1\x5f\xbb\x55\x1a\x11\x91\x9e\xeb\x42\xe3\x77\x79\xa0\xd9\xb3\x86\x70\xab\x74\xe1\x76\x1f\x41\x79\xd6\x42\x0e\x60\xb4\x56\x50\xac\x52\xbd\x3c\xd9\xca\xcf\xee\x0f\xf3\x7b\xb9\x32\xf3\x54\xa3\x4a\x35\x66\xca\x40\x8a\x7c\xee\xa4\x41\x5b\x39\x25\x1e\x8c\x3a\x11\xa0\xdc\x36\xca\xce\x9c\x60\xc1\x6b\x6c\xb9\xa2\xe4\xf1\xd0\xb0\x4e\x21\x7a\xa5\x22\x05\x2a\x3f\x04\xa0\x80\xc9\x2a\xf4\xfd\x25\xad\x07\x25\xe1\xa8\x9e\x66\x8b\x08\xc0\x24\x90\xe0\x64\xf4\x91\x11\xd0\xc2\xf2\xb4\x09\x48\x38\x89\xa4\xed\xc3\xee\x6b\x2d\x3d\x4d\x23\x72\x96\x77\x2e\x7f\x4c\x70\x46\x4a\x28\x5b\xb5\xc5\xb7\x94\xa4\x16\x07\xc1\x23\x58\x11\x02\x00\xb9\xf8\xcf\x80\x08\x66\x80\x59\x66\x8c\xaf\x10\x14\xb0\x91\x7f\x5d\x19\x19\xf2\x62\x85\x08\xa6\x61\x02\xb9\xa8\x75\xc3\xc5\xe7\xc0\x50\x38\xb5\x56\x92\x10\x50\xe1\xb9\x1b\xcb\x2f\x4c\x03\x06\xe1\x2a\x6a\x5a\xde\xc1\xb9\x3e\x8e\x37\xa9\xc7\xc6\x07\xe1\xd6\xa4\x10\xb4\x84\x02\x19\xdf\x90\x0c\x02\xcc\x7b\x7a\x76\xb8\xb3\x7a\xff\x87\x57\xe6\xff\xfe\xd6\xd5\xd9\x0f\x3e\xba\xb0\x7a\x7f\xd6\xd3\xc7\x1a\xcd\x19\x20\x9e\xd9\x33\x59\xdc\x8e\x21\xbf\xcd\xd9\x18\x13\x6c\x75\x86\x6a\x3d\xcb\x1a\xdc\xa9\xdd\xe4\x52\x45\xbb\xd3\x11\x5e\x79\xe5\x15\x7d\xf5\xea\x55\xfc\xc6\x37\xbe\x01\xab\xd5\x8a\xf6\x7f\x2e\x4b\x34\x84\xfd\x3c\x10\x1a\x49\x37\xd1\xb0\xc8\xc2\x41\xc4\x9f\xf6\xa1\x8e\x86\xf7\xad\xbc\x89\xa0\x40\x27\xf9\xf1\x99\x00\x49\x87\x49\x69\xe4\xfd\x3b\x95\x39\xe6\x4f\x75\x08\x95\x57\xd2\x29\xb1\xf4\x50\x7a\x0e\x1e\xb8\x7c\x52\x79\x49\xb2\x28\x16\x0f\xcd\x63\xea\xa4\x72\xf3\xf9\xc6\xbb\xa2\x98\xb9\x0c\x40\x06\x18\xd0\x40\xd3\x64\x46\xea\xfa\xbe\x09\x2a\x8b\xb9\x26\xd9\xa4\xa9\x24\x4e\x1b\x93\x69\x13\x39\x36\x31\x0f\x3e\x2c\x9e\x35\x7f\x32\x75\xc4\xad\x57\xce\xfa\x92\x92\xe7\x8c\xfd\x06\xee\x67\x8c\x19\xda\x5d\x48\x03\x30\xe5\xf4\x51\x56\xe0\xce\x68\x99\xec\x5d\x3d\xcb\xae\x3f\x76\x32\x78\xe2\xda\x59\x76\x63\xb4\x48\xf6\x7b\x1a\x33\xda\x59\xb6\xba\x96\xa9\x83\x80\x14\xaa\x93\x51\x9d\x42\xa9\xfa\xe2\xaa\x07\x37\xb5\xce\xdb\x33\xa8\x10\x2e\x0d\xdb\x14\xa6\xce\x62\x83\xb4\x55\xc4\x34\x2e\xff\xde\xc0\x48\x02\x67\xa5\xe0\x21\x0d\x05\x24\x0c\x07\x78\x72\x71\x37\x8d\xcb\xae\xee\xd9\x1f\xa6\xa7\x09\xf8\xd1\x20\x0d\xfc\x4b\x16\xf5\x1c\x0d\xd2\x4c\x12\x60\x88\x5f\x90\x37\xb5\xc8\x2a\x24\xeb\x75\x33\xd9\x6d\x04\x9b\xa4\xd9\xcb\x44\x41\x50\x3d\x1d\x1c\x08\xfb\x78\x5c\x49\x44\x22\xac\xdd\x6a\x6e\x20\x58\xb0\x8d\x9e\x06\x98\x1f\xeb\xfd\x49\x9a\xc4\x29\x36\xb6\x38\xdc\xd5\x1d\x03\x08\xab\xb4\x58\x9c\x0e\xf2\xc3\x0f\xf6\x96\xef\x7d\xb0\xb7\x7c\xff\xde\x70\x7d\x38\xcb\xf4\xfd\x5c\x99\x19\xa0\xdf\x1d\xe4\xa7\x87\xe8\xcf\x4d\x0b\xd1\x2d\xce\x76\x4a\xc8\x4d\x0f\x69\x67\xf9\xb5\x32\x68\x00\x80\xb7\xde\x7a\x0b\xbe\xf9\xcd\x6f\xc6\x74\x0f\x40\xbd\xaf\xdb\xa4\xff\xeb\xf2\x1c\x0b\xdb\xe4\x77\x9e\x78\xce\xab\xd3\x1e\x36\xef\x4d\xf3\x41\xe2\x1d\xcb\x27\xf8\x69\xc7\xc3\x2d\x2e\x1c\xf9\x39\x3f\x8e\x86\x9c\x3f\x45\x69\x5c\x20\x8e\xe8\x8c\xf0\x2d\x66\xb9\x09\x06\x1d\x2c\xac\x64\xb9\xe1\xfe\x31\x39\x9d\x1c\x34\x3c\x45\xa0\xb1\xb4\xf2\xfc\xe0\x8e\x23\x67\x49\x06\x68\xa1\x91\x78\x36\xd1\xf2\xb4\xc4\xe2\xf4\x8e\x9d\xb6\xcb\xfb\x3a\x03\x61\x19\xfa\xab\x01\xc8\xf1\xdb\x1a\xc0\x9f\x01\x53\xfe\x10\x72\x40\x28\x0a\x84\x7c\xd1\xd3\xcb\xb3\x7e\x31\x39\xd9\xca\x4f\x67\x59\x71\xa6\x15\x14\x89\x3d\xfb\x45\x19\x54\xa1\x52\x81\xc0\x2a\x42\x77\xec\x48\x09\x91\xba\x79\x7a\x7e\x08\x5b\x5b\x5a\x8d\xc6\xd1\x53\xd2\x0f\x9e\xd8\x2d\x7e\x75\x11\x55\x8b\x80\xc3\x4e\x3d\xa2\x4a\xc3\x38\x81\xaf\x99\x60\x30\x8a\x30\x41\xf6\x10\x4c\x01\x08\x8a\x94\x0f\x51\x68\x0b\xf1\x15\xdc\xa5\x99\xc8\x49\xed\x0b\x9e\x07\xd6\x0b\x9f\x46\xc0\xf3\x3a\x0a\xce\x08\x9a\x08\xac\x2a\x15\x66\xac\x85\x0b\xa7\xb2\xea\xf9\x28\xc1\x01\xef\xcf\x12\x40\xcb\xae\x96\x3f\x01\x1a\x41\x2f\x0f\xf8\x30\x64\xc9\x6c\x24\xcd\x21\x3f\xb0\x40\xd7\xed\x18\x8a\xaf\xe7\x42\x2a\x2b\x84\xe7\xcf\x18\x6b\x19\x09\xaf\x1a\xa8\xe2\x0a\xeb\x5d\x99\x86\xd0\x46\x54\x51\xd2\xb7\xca\x97\xed\xd2\xb2\xf9\x25\xd5\x1f\x9a\x02\x03\x06\x72\x65\x56\xa7\x5b\xf9\xdd\xf7\x2f\x2e\x7e\xf8\xd6\x95\xf9\x1b\xef\xed\x2f\xde\xb9\xb7\xbd\xbe\x3d\xcf\xf4\x3d\x8d\x30\x31\xe0\x8f\xec\x9f\x60\x79\x98\x9c\xb7\xb0\x50\x10\xe3\xac\x2c\xd6\xc2\xb2\x06\x77\xbd\x08\x04\xf7\xa8\x69\x80\xf2\xdc\xa9\x97\x5f\x7e\x59\x8f\xc7\x63\x5c\x2c\x16\xbc\x9f\xe4\x7d\x32\xef\xaf\xe8\x5f\x80\x50\x07\xf0\xac\x6d\x7b\xa6\x4e\xf2\xdf\x34\x1e\x49\xdf\x51\x9a\x4d\x75\xda\x26\xe9\xa1\x7e\x31\xde\x31\x1e\x9c\x9e\xea\x64\x49\x67\x70\x87\x50\xb7\x6a\x35\xd1\x53\x7f\xaa\x67\x25\xf9\xbc\xe5\x26\x36\x55\xd4\x55\xb9\xba\x84\xb4\x59\x11\xa4\x4c\xe1\xf1\x70\xa1\x01\x42\xc4\x65\x20\x8e\xf0\x24\x05\xce\x0b\x9d\xf2\xe3\xdf\x0d\xc4\x81\x8f\x24\xa7\x04\xb4\x5c\x3c\x34\x93\x39\x3f\xfe\x4d\x09\x61\xdc\x7b\x4c\x56\xf7\x0e\x2c\x8c\x24\x63\x20\xeb\x33\xcf\x3c\x83\xff\xf0\x0f\xff\xa0\x19\x80\xa1\x61\xdd\x34\x91\x7b\x2f\x00\xc0\x8d\x8a\x1c\x58\xd1\x50\xae\x75\x29\xb0\x3c\xb8\xae\xdc\x8d\x04\x46\x03\x62\x9e\x27\x66\x35\xef\x15\xb3\xf1\xa0\x98\x9e\xf5\x8b\xf1\xa2\xa7\x67\x80\x50\x24\x1a\x93\x44\x63\x8a\x60\x01\x0c\x57\x38\x61\x5f\x5c\xa5\x8e\x29\xc4\xd8\x5d\x41\x2c\x08\x53\xe0\x14\x5c\xa0\xa8\xa8\x1c\x11\x07\x21\x8e\x69\xc8\x2e\x54\x54\x95\x2f\x06\x7f\x6b\xca\xc5\x30\x05\xec\xd2\xe3\xa2\xa1\xf7\xe3\xb4\x38\xa9\x62\xf1\x44\xd5\xec\x01\x44\x60\x2e\x21\x92\x9f\xe4\xe2\x60\x06\x6b\x40\x8b\x5e\x7a\xe9\x2c\x06\xc6\x06\xf2\x5b\xdb\x89\x7c\xbe\x12\xd2\x05\xaf\xc2\xd4\x8a\x97\xc3\x38\x19\xaa\x88\x69\x23\xa2\xeb\x5b\x18\x4e\x0d\x68\x6b\x3c\xd1\xc6\x0b\x00\xd5\x16\x6c\xa6\xec\xa9\x95\x42\x58\xa0\x1b\x9e\xc3\x52\xdf\xf2\xee\x69\x11\x6a\x65\x00\x10\x5a\x5b\x90\x5f\x76\x45\xb6\x86\x43\x90\x57\x00\x40\x76\x4b\xf1\xf8\xa8\x5c\x86\x66\x8a\x1d\x2d\xac\x95\x59\x4d\xfb\xfa\xf4\xce\xee\xea\xfd\x1f\x5e\x99\x7d\xff\xdd\x83\xc5\x5b\x77\x76\x96\x1f\x4c\x33\x7d\x54\x28\x33\x36\xe5\x76\xe6\x29\x94\x3b\x86\xdc\x56\xe7\x29\x94\x3b\x87\xe6\x58\x1e\xdf\xbf\x80\x72\x3d\x0b\xdd\x31\xe4\xa6\x86\x0a\x3b\x5d\xed\xfb\x17\xc4\xf2\x18\xff\xed\xed\x6d\x1c\x8f\xc7\x78\xff\xfe\x7d\x57\x0a\x74\xc4\xcd\xfb\x44\x4a\x23\xf5\x77\x94\x9e\x26\x5f\x33\x7f\x47\x47\x69\x78\x13\x90\xc0\x8b\xc4\x5b\x8a\x87\xcb\x26\xf1\xa6\x55\xb6\x2d\x1e\x4a\xa3\x04\x7f\x3a\x75\xc3\xd3\xc5\xd3\xc2\x69\xb9\xae\x91\xba\x16\xa9\xbb\xe0\xfc\x78\xd9\x35\xa5\x97\x3b\x49\x26\x1a\x8e\xe3\x02\x4c\x58\xc0\x26\xc6\x31\xf0\x41\x85\x96\xfe\xd2\x30\x31\x5a\x80\x7a\xc1\xf0\xcc\x8c\x99\x99\x62\x00\x80\x56\x22\x5e\xf0\xbc\xb0\x68\x3a\x24\x47\x0b\x47\x02\x5e\x14\xc0\xb5\xa1\x51\xc3\x68\xe8\x3b\xe7\xc1\xe3\xa1\xef\x9c\x87\x44\x1f\xc8\x7a\x7c\x7c\xec\xdf\x1f\x7f\xfc\x71\xdc\xde\xde\x96\x78\xb9\xbf\x5a\xf8\xb9\xbb\x43\xbc\x05\xc6\x99\x80\xdd\x5f\x00\x28\x34\x98\x7c\x9d\x9a\xd5\x24\x2b\x26\xe3\xad\x62\x3c\xe9\x17\x67\xeb\xc4\xac\x94\x01\x93\x18\x4c\x95\xc1\x14\xc1\x59\xc0\xeb\x20\x80\x2b\x8b\xea\xd4\xd3\x2a\x93\x44\x17\x28\x8d\x90\x10\xd9\x83\xc4\x83\x77\xf9\x7e\x61\x31\xd3\x60\x1e\x1c\xd5\xa2\x77\xe7\x94\x10\x80\xe5\x14\x22\x54\xa0\xc4\xea\x19\x20\x49\x72\x31\x0a\xb7\x47\xd7\x23\xa2\xf1\x3b\x25\x26\x6d\xaf\x0e\x82\x32\x3e\x6c\x89\x26\xf8\xd1\x37\x5b\xec\x5b\xdb\xa5\x24\x81\x1f\x21\x33\x2d\x37\xa6\xa9\xd1\x7f\x43\x12\x97\x6f\x78\x7c\xed\x8a\x78\xea\x6e\xf9\x50\x6e\xd1\x0d\x55\xb5\x17\xcd\x4d\x8b\x18\xf7\x0e\xb6\x4c\x4c\x00\x9e\x5c\x8e\x05\xdb\xbb\x2d\x82\x46\x00\x3b\x9d\xe4\x1a\x05\x06\xf1\x38\x3e\xfe\xbb\x33\x19\x52\x20\x83\x21\xa8\xab\xaf\x05\x32\x01\x5f\x27\x68\xb5\x4d\x9a\x67\x38\x29\x2f\x9a\x2f\x3e\x91\xf5\xbc\x08\x2e\x8e\x74\x79\x6f\x2b\x74\x9e\x98\xd5\x2c\xd3\x67\x47\xa3\xf5\x47\xe5\x85\x88\xb3\x37\xdf\xbf\xb8\x7c\xe7\xa4\xbc\xc5\x79\x0c\x08\x13\x40\x3c\x73\xeb\x58\xa0\x3a\xb6\x9f\x4e\x17\x2d\xec\x29\xb8\x4b\xdb\x07\xd4\xac\x2c\x50\xf6\x0f\xee\xf8\x05\x70\x56\x16\x00\x80\x5b\xb7\x6e\x19\x6b\x69\x91\xfa\x46\x97\x24\x1d\x24\xa9\xde\xe7\x73\x5d\xc1\xfb\x63\x15\xe1\x41\x69\x81\xd1\x70\x10\x42\x79\xf0\xb0\x3c\x1e\xea\x38\x8d\x7b\xa6\x72\x4b\x03\x7a\xae\x1b\x24\x7e\x9c\xde\xc5\x4f\xd3\xc3\xe3\x91\xf2\x84\x3a\x49\xbf\x53\x3e\x92\x0e\x94\x00\x06\xa5\xa5\x3c\x24\x1c\x41\xf3\x5b\x0a\xc7\xf5\xb8\xdf\x0e\xcd\xe7\x12\x63\x4e\xb1\xf7\xd8\xba\x91\xf3\xac\xe7\x70\xfc\x24\xe0\xc2\x79\x6d\xf2\x1e\xfb\xd6\x65\xae\xae\x8d\x47\x2c\x0d\x0f\xea\xa4\xf8\x38\xef\x36\x99\x3b\xf3\x17\x4e\xdc\x55\xe4\x07\x60\xd7\xbf\x90\xd3\x77\xdd\x16\xea\x01\x00\x64\xfc\xe4\x5d\xf2\x3e\x00\x63\x06\xa9\x56\x3b\x17\xe6\xe9\xfe\xb5\xb3\xec\xc6\xa3\xa7\xfd\x1b\x97\x27\xd9\xf5\x9d\xa5\xda\xeb\x15\x6a\xa0\x0c\xa8\xda\x02\x48\xeb\x7c\x2f\x13\x3b\x46\xdd\x7e\x03\x60\xca\xd6\xfe\xc5\x1a\x1d\xc4\xf9\x00\xf8\xdd\x2f\x2e\x6c\xa5\xa0\x38\x6d\xa8\x70\xca\xb0\xc6\x2b\x4c\x1e\xb7\x8b\xbf\x96\x3e\x41\xf6\xa8\xfc\xf4\x9d\xa3\x09\x00\xd1\x12\xe5\x16\x76\x72\xd0\x56\x93\x87\x45\x18\x0c\xc8\x23\xa0\xc5\xed\xb4\x72\x19\xc5\x17\x8d\x3a\x65\x1e\xcb\xef\x46\x17\x45\x5f\xd2\xe7\xe8\xb9\xb4\xb5\x00\x3c\xcd\x04\x37\x8b\x89\x96\xce\x75\xa9\xf1\x11\xfd\x29\x2c\x0a\x7b\x6b\x5e\x27\xe9\x39\x35\x04\xe5\x31\xf9\x19\xb8\xe2\xc9\x13\xea\xa8\x45\x6a\x1e\x30\x3b\xbe\x1a\x0c\x14\xca\xe4\x8b\x9e\x9e\x8c\x07\xc5\xf1\xe1\x68\x75\xe7\xa3\xdd\xe5\xfb\x1f\xef\xac\x6e\x8f\x07\xc5\x7d\x53\xae\x61\x59\x38\x50\x02\xe4\x4e\x21\xa8\x76\x0a\xf9\x1d\x43\x60\x77\x1a\x5a\x50\xc2\x77\x0c\x01\x5d\x84\xeb\xd2\xdc\x61\xab\x73\x17\xff\x36\xd7\x16\xae\x4d\xe7\x34\xf1\xe9\x22\x53\x97\xb5\x1d\x5d\xe2\xda\x24\xce\x4d\xc2\x6d\xca\xaf\xab\x5e\xdf\x34\x2f\x37\xe1\xed\x69\x9d\xc5\x85\xa2\x99\x98\x19\xce\xd1\x51\x34\x45\xbf\x73\xc4\xc9\x91\x9c\xa3\x75\xe8\x8c\x86\x07\x16\x4e\x42\x99\x3c\xae\x20\x21\x8c\xbf\x64\xad\x89\x21\x7a\x49\x56\xc9\x62\x43\x79\xd0\x34\x50\x6b\x92\x64\xe2\xe4\x79\xca\xfd\x51\xe0\x27\xc9\x47\xf9\xf0\xa9\x22\x9a\xf7\x52\xfc\xdc\x21\x00\xe0\xcd\x9b\x37\xf1\xf3\x9f\xff\x3c\x7e\xed\x6b\x5f\xd3\x6e\xf7\x11\xa1\x77\x16\x16\xc0\xf0\x96\xe9\xc2\x5a\x5b\x9c\x9f\x46\x72\xd7\x91\x9b\x42\x02\xbf\x06\x06\x0b\xad\x60\x3d\xef\xe9\xd9\xc9\x56\x7e\x7a\x36\x28\x4e\x16\x3d\x3d\xd5\x0a\x0a\x34\x08\x89\x01\x85\x06\x13\xf4\x63\xd5\x7a\x06\x37\x29\x3f\x7a\x80\x56\x19\xb6\x5a\x53\xc0\xe9\x24\xab\x04\xcd\x10\x6e\x49\x28\xc3\x71\x95\x42\x4e\x41\x0d\xc2\x86\x23\x5e\xae\x82\xfc\x14\x09\x51\x32\x7c\x5a\x88\xa6\x9b\xab\x33\x0c\x99\x55\xdf\x2c\xb1\x94\x43\xde\xc8\x61\x7f\x54\x79\x06\x79\x4a\x23\xac\xd8\x7b\xbe\xd5\x96\x59\x62\x91\xc1\xca\x5a\x12\x80\x1b\x92\x87\x7c\xf1\x27\x06\x0f\xfc\x03\xf1\xa2\xe9\x11\x12\x86\xb5\x67\x0c\x9e\x28\x6b\x9e\xdf\x34\x60\x50\xad\x2a\xa2\x2a\xcf\xa9\xf5\x05\x22\x7c\xc8\xb7\xd2\xc2\x42\x4f\x7a\xae\x3f\x53\xc0\x44\xe9\x01\xdc\xba\x17\x3a\xfd\x53\x85\xab\x81\x5b\x0a\x10\x81\xa5\xc5\x47\xe0\x64\x2d\xa1\x76\xa1\x20\x9f\xf7\xf4\xe4\xfe\x30\xff\xf8\xc3\xbd\xd5\x7b\xef\x5e\x9a\xbf\xf5\xee\xa5\xf9\x8f\x6e\x5f\x58\xdd\x5a\x64\xe6\x14\xb0\x9c\x0e\x02\x80\x33\x28\x01\xcb\x99\xb5\xb0\xf8\x29\x21\x28\x0f\x92\x73\xeb\x58\x96\x50\x4d\x0f\xe5\x50\x4d\x25\x6b\x00\x7f\x0f\x9a\x06\x00\x78\xf9\xe5\x97\xf5\xc1\xc1\x01\x7e\xed\x6b\x5f\x8b\x4d\xf5\x4b\x7d\x25\x30\x3f\xc9\x52\xcf\xf9\xf0\x3e\x3b\xa6\x87\x62\x96\x07\x29\x7e\x1a\x8e\xeb\x17\x89\x37\x6d\xbe\x9c\x87\x14\x07\x95\x49\xd2\x09\xc0\x9e\x79\x1f\xcf\xf5\x09\xe5\x1d\x0b\xc7\x75\x85\x94\x4f\x34\x3d\x54\x3f\x37\x95\x87\xa4\xab\x38\x36\xe0\xf9\xd0\x25\x9f\x82\x72\x6d\xba\x1d\x9a\xbe\x73\x85\x19\x53\xb2\x4d\x89\xa7\x5d\x14\x07\x05\x52\xe6\x4a\xc2\x77\x01\x18\x12\x50\xa0\x95\x94\x57\x08\x29\x4e\xa9\xb2\x18\xe6\xcf\x0b\x92\x03\xb6\x26\x90\xc4\x69\xa8\xdc\x4d\xe6\xbb\x18\xef\xb6\xf8\xb9\x33\x00\x60\xee\xdf\xbf\x6f\xde\x79\xe7\x1d\x03\x00\xf0\xd4\x53\x4f\xe1\x9f\xff\xf9\x9f\x6b\xb6\x78\xd7\x75\xae\xce\xd4\xeb\x40\x0c\x98\xf2\x16\x57\x67\x0e\x76\x07\x49\xb9\x29\xa3\x02\x4a\x73\x71\xee\x01\x0d\x98\x42\x27\xb0\x9e\x64\xc5\xf4\x68\xb4\x3e\x3e\x1b\xe4\xf7\x17\x3d\x3d\xd5\x08\x39\x02\x2a\x65\x30\x41\x03\x4a\x02\x30\xbc\x82\x80\x7f\x0f\x17\x9f\xd2\xed\xb1\x60\xa0\x66\x85\x08\x74\x3f\x79\x91\xd6\x41\xf0\xdc\xaa\xd6\x24\x84\x5a\x5e\x92\x91\x82\x17\x4e\x87\x56\x7b\x93\xc9\x19\xa0\x87\x93\x81\x10\x06\x40\x48\x0b\x91\xb9\x6d\x27\x90\x8f\xdb\xbd\x38\xe1\x58\x38\x31\x0d\x41\x3c\x6c\xd1\x27\x95\x8f\xb2\x15\x76\xb1\x78\x5a\x1e\x3e\x96\x06\x1b\x98\x03\x38\xe0\x5c\x4d\x78\x9d\x83\x5d\x4d\x03\xe8\xa6\xa1\xb0\x62\x68\x00\xc1\x4d\xe9\xc8\x3b\xaf\x58\x7d\xb2\xbe\xe8\x4a\xc8\xed\x4c\x02\xb7\x9b\xcd\x04\x00\xcd\xb8\x04\x19\x00\xc4\x30\x0f\x90\x54\xb0\x10\x70\x54\x69\x09\x41\x1f\x0d\x57\x4f\xbd\x3f\xd9\x80\xe6\x9b\xb1\xdf\x6d\x32\xdd\x9e\x73\x8d\xa0\x17\x3d\x3d\xbd\x3f\x5c\x1f\x7e\xb8\xb7\x7c\xef\xdd\x83\xc5\x5b\xef\x1c\xcc\xde\xba\xbd\xb7\x7c\x7f\xd6\xd7\x47\xda\x5e\x86\x08\x00\x13\x63\x8c\x5b\xcb\x32\xb1\x0b\x71\x3d\x60\xb1\x16\x98\x15\x22\x2e\x01\x60\x65\xd7\xb0\xac\xe9\x40\xc5\x9e\x72\xeb\xa6\x93\x0d\x40\x09\x5a\x7e\xfd\xd7\x7f\x5d\xfd\xfd\xdf\xff\x7d\x93\xe5\x82\xf6\x3b\x6d\xfd\xb1\xd4\x77\x73\x7d\xc4\x07\xb4\x12\x3f\xae\xcf\x68\x58\x49\x47\xb8\xe9\x8e\x98\xbe\xa2\xfd\x37\x0f\xcf\xf9\xf0\x01\x2c\xb5\x38\x20\xd4\xf5\x80\xf4\xcc\xbb\x1b\x3e\x1d\x23\x85\xa3\x79\x44\x3b\xb3\xa6\xf4\x70\x50\x89\x2c\x3c\x9f\x56\xa3\xfc\x62\x5d\xb8\x34\x40\x07\xf6\x3d\x66\xb1\x42\x0e\x5c\x62\xa0\x81\x2b\x55\xfe\x1e\xb3\x2e\x48\x89\x90\x2c\x32\x75\x9d\x54\x7f\x97\x2c\x09\x34\xe3\x20\xc2\x83\x57\x4a\x4e\xdf\x84\x04\x63\x95\x4f\xaa\xd0\x5d\xd0\x2b\xe7\x2f\x8d\x12\x24\xc7\xf9\xf2\x38\x9a\x1a\x09\x0f\x23\xca\xf9\xc6\x1b\x6f\x18\x00\x80\x4f\x7e\xf2\x93\x98\x65\x59\x19\xa9\x1d\x31\x21\xed\xfd\xcb\x9f\xb6\x20\x86\x8e\xae\xe8\x6e\x23\xba\xf5\x71\x0d\x15\xb0\x29\x00\xa1\xd0\x0a\xf2\xb3\x41\x31\x3d\xda\x5e\x9f\x9c\x0e\xf3\xfb\x8b\x9e\x3e\xd3\x68\xd6\xca\xa0\x4a\x0c\x26\xf6\x0a\x01\x44\x76\x1c\xbc\x57\xbc\x08\xe4\x1c\x10\xb2\x14\x96\x69\xc9\xda\x5d\x48\x40\x94\x13\xab\x41\x34\x85\x2e\xce\xe0\xaa\x01\x1b\x1f\x07\x10\x4e\x26\xa7\x5f\xd0\xd2\x00\x9b\x96\x08\x81\x05\x59\x3f\x03\xf4\x0e\x24\x1b\xbf\x53\x5a\x06\x82\xad\xde\x4e\x36\x1f\xaf\x53\x80\x64\xeb\xb6\x9f\xc6\x32\x50\x1d\x79\x4f\xf2\xcd\xe5\x93\x53\x8e\x65\x39\x57\x7e\xf4\x5c\x1b\x2f\x32\x09\x47\x1b\x1d\xcd\x33\xc7\x8f\x9f\xad\x52\xeb\x1d\xe9\xa2\x5b\x43\x78\x92\xfc\xf1\xb2\x99\xaa\xac\x7c\x7a\x3c\x78\xa8\xf2\xba\x02\x95\x0e\x90\x60\x98\x27\x74\x51\xab\x45\x0e\x72\x19\x86\x60\x0b\x2d\xbf\x12\x03\x54\x75\xb1\x5a\x8b\x54\xa5\x8c\x4e\xfb\x54\xf9\x54\xcf\x7b\xfa\x4a\xf3\x24\xbe\x98\x1c\x00\x59\x60\xc4\x8a\xc2\xd7\x03\x53\x7e\x2c\xd3\x60\x5c\x1e\xe9\x55\xa2\xd7\xa7\x5b\xf9\xe1\x87\x17\x56\x3f\x7e\xe7\x60\xf6\x83\x1f\x5d\x9e\xbf\xf9\xe1\xde\xea\xd6\x34\x2b\x8e\x8d\xaa\xd6\xad\xd8\x73\x58\xce\x2c\x48\x71\xbb\x86\xe6\x50\xdd\x2f\xb4\x80\x12\xac\x04\x0b\x70\x49\x9b\x77\xfd\x82\xb7\xb2\xac\xd7\x6b\xf8\xe3\x3f\xfe\x63\x0a\x5a\x24\xa5\x48\x93\xcc\xc1\x03\xef\xbb\x24\x1d\xc3\xfb\x4f\xde\xef\x4b\xfd\x3b\x8d\x53\xd2\x61\xbc\x2f\xa6\x4a\x96\x16\x1f\x7f\x96\xd2\x16\xeb\xab\x29\x3d\x95\x53\x02\x36\x54\x0e\x49\xb7\x72\x5e\xd4\x71\xbd\xa9\x19\x2d\xd7\x87\x31\x59\xf9\x3b\x1f\x64\xc7\x64\x8d\xc9\xd5\xa4\xef\x28\xbd\x54\x7e\xc1\x1a\x97\x87\xb1\x36\x83\xbb\x18\x28\xd8\x74\x0d\x8c\x0b\x07\x1b\x86\x89\xc9\x13\x8b\x3b\x86\xf2\xa4\xe7\x2e\x7e\xd0\x40\xdb\xf6\xec\x5c\x5b\x5e\x35\xc9\x13\xfb\xce\xe3\x88\xc6\xf3\xe2\x8b\x2f\x2a\x00\x00\x44\xf4\x57\x06\x18\x63\x14\x00\xb8\x5b\xa7\x15\xda\x6b\x04\x4c\x75\xeb\x74\x0a\x00\x03\x44\xa4\xe7\xbf\xc4\xce\x82\xc9\x7a\x39\x6e\xef\xcf\x7a\x07\xd7\xc7\xd9\x8d\xeb\xa7\xfd\x1b\x97\x27\xbd\xeb\xdb\xab\x64\x2f\xd5\x68\x4f\x76\x26\x9d\x34\xb8\xd6\x16\x5e\x73\x57\x2a\x17\xa7\xc8\x43\x25\x6c\xfb\xf4\xda\xb4\x0f\xf5\xa3\x8e\xc8\xb5\x6e\x0f\x00\x00\x20\x00\x49\x44\x41\x54\xf6\x48\xd5\xdf\x4a\x85\xf8\x96\x4a\x14\x92\x5f\x4f\x52\x61\x15\x12\x9e\x2f\x85\x0d\x5b\xb9\x07\x54\x44\x39\x52\x5d\xe7\xe9\x9d\xd2\x27\xe0\x86\xcb\xe9\x1e\xa8\x25\xc7\x09\x28\x4e\xdd\x10\x17\x58\x7f\x78\x5e\x7a\x19\x68\xfe\x86\xf9\xc7\xe5\xe1\x7e\x00\xa4\x4c\x0c\xa3\x23\x84\x2e\x7e\xa7\x90\x79\x7e\x48\x89\x08\xe3\x90\xc3\x88\xef\x06\x82\x75\x4d\xee\x83\x4f\xbb\x10\x07\x2d\x7f\x7f\xae\x1d\x54\xcf\xbe\x57\x25\x79\x15\x8d\xdf\xc5\x67\x19\x7b\x6b\x09\x08\x61\x85\x72\x0f\xbf\x19\xff\x5e\x28\x93\x4f\xfb\xc5\xf1\x47\xbb\xab\x0f\x7e\xb2\xb7\x7c\xf7\xf6\xee\xf2\xce\xd9\x20\x3f\x29\x14\x4c\x21\x3c\x77\xc5\x83\x12\xa8\x16\xdc\xae\xa0\x04\x29\xee\xd9\x9f\x78\x6b\x07\x23\xfe\x19\xec\x20\xa6\xcc\xf7\xea\x72\x44\x00\x80\x5f\xfa\xa5\x5f\x52\xff\xf2\x2f\xff\x22\xf5\x43\x00\xf1\x7e\xb2\xe9\x5b\x97\x35\x23\xb1\x30\xd2\x77\xce\x4b\x0a\x2b\xf5\x9b\x9b\xf6\xe9\x4d\x71\x4a\x3c\xdb\xd2\xdd\x96\x67\x6d\x71\xb6\xe5\x11\x77\x31\xdd\x21\xf1\x93\xd2\x23\xc5\xdf\xb5\xfc\x45\xba\x5a\x5f\x20\x08\xdc\xc6\x88\x46\xba\x69\x06\x74\xf1\xe3\xf1\x74\xe1\xdb\xb5\xc2\x80\x40\xb3\x89\xfb\x69\x01\xbe\xff\xe8\x38\x1a\x9d\x70\x70\x9d\x62\x3f\x80\xea\x00\x3b\xba\x78\x57\x3a\xc4\x6e\xc8\x9e\x3d\xa8\x49\x0b\xdc\xde\x9b\xa7\xfb\x8f\x8c\xb3\x6b\x8f\x9e\xf6\x1f\xbf\x7a\x96\xdd\xd8\x59\xa4\x07\xa9\x41\x5f\x07\x64\x85\x2b\x28\x35\xc1\x75\xa1\x7b\xd8\xfc\xbb\x86\xdd\xc4\x35\xf1\xac\x2d\xa8\xdd\x90\xcf\xff\x7f\x57\x51\x43\xfc\x4c\x16\xbf\x1e\xa5\x41\x9e\xff\xc8\xbb\x8a\x0c\x94\x97\x20\x9e\x0e\xf2\xe3\x8f\x77\x56\xef\x7f\xb8\xb7\x7c\xff\xc3\x0b\xcb\xdb\xd3\x7e\x31\xd6\x60\xe6\x50\x82\x10\x0f\x4e\xc8\x21\x72\x6e\xc1\xad\xfb\xe5\xd6\x6f\x45\x0f\x8f\x03\xb2\xf0\x96\x9f\x7c\x4b\xc0\x0b\xbc\xf2\xca\x2b\xfa\x85\x17\x5e\x50\xff\xf6\x6f\xff\xd6\x06\x34\x1e\xc4\xff\x3c\x00\xe2\xbf\x16\x6f\x29\x9e\x4d\xf5\xe5\x26\xc0\xa3\x4b\xb8\x4d\xe3\x7c\x50\xda\xae\x34\x9d\xc2\x35\xdd\x55\x24\x45\xa2\x23\xcf\xd2\xbb\xc4\xab\x0b\x68\x89\xf1\xe6\x16\x02\x89\x5e\x8a\xa7\x49\x66\xce\xb3\x6b\xe6\x3b\x5e\x9b\x16\xc2\x26\x15\xa1\xab\x3c\xe7\x75\x9b\x34\x20\xe7\x3c\xbd\xed\xac\x28\x78\xa1\x9d\x5b\x0e\x25\x18\x71\x1d\xa0\x03\x2a\xee\x7d\x00\xd5\xae\x84\x0c\x4a\x00\xb3\xc8\x95\x59\xdc\xdb\x5e\x4f\x4f\x07\xf9\xf1\xed\x0b\xab\xdb\x57\x26\xbd\x2b\xd7\x4f\xfb\x37\xae\x9e\x65\x37\xf6\x66\xe9\x95\x9e\xc6\x0c\x85\xed\x33\x6d\x0a\x34\xb6\x60\x97\xd3\x9b\xc0\x2f\xa6\xb2\xe2\xe1\xa5\xb7\x36\x67\xc8\x74\x08\xe7\x12\x53\x52\x8d\xe9\x25\x26\x02\x14\x09\x08\xa9\xc0\x23\x54\xb0\x2c\x68\x03\xc8\x10\xad\x3f\xe0\x2c\x04\x64\x4d\x0f\x9d\x52\x01\x00\x40\x01\x38\x48\xe6\x93\x48\x7a\x63\x56\x1e\x47\x5d\x5a\xb0\xe4\x4c\x0c\x2c\x52\x31\x27\xc8\xe2\x76\xea\x48\xa7\xe7\x22\xff\xeb\xe9\xc2\x3c\xe6\x01\xe4\xbb\x92\xea\x90\x4a\x5a\x93\xa4\xd1\xe8\x45\xaa\x27\xc7\xc3\xf5\xe1\x9d\xdd\xd5\x07\x1f\xed\x2e\x3f\xb8\x3b\x5a\x1f\xcf\xb2\x62\x5c\x60\x68\x61\x01\xb2\x33\x08\xab\x7b\x85\x56\xf4\x67\xa7\x83\xf8\xbd\x42\xc1\x6e\x21\xb2\x53\x88\x4e\x25\xc3\x3f\xfd\xd3\x3f\x01\x00\xc0\x77\xbe\xf3\x1d\x31\x3b\x7f\xca\xee\x41\xfa\xe3\x4d\xc2\x36\xe9\x14\xca\xfb\x3c\x32\xc5\xe2\xd9\x34\xfe\x36\xda\x18\xe8\x68\xe3\xdd\x55\x67\xb7\xd1\x6f\x02\xb8\x6a\xae\x09\xdc\x6f\xaa\x44\xdb\xcc\x77\x4d\xbc\x9a\x12\x71\x5e\xc4\xd8\x55\x9e\x18\xcf\x26\x53\x21\xa5\x3f\x0f\x42\x6d\x92\x71\x13\xeb\x51\xd3\xbb\x14\x16\x40\x8e\xbf\x53\xe5\x22\xdb\xa6\xc1\x4e\x11\xd1\x78\x3d\x88\xb1\xdf\x6a\x5b\xa8\xdd\x54\x12\x58\x20\x63\xdf\xc3\xed\xd3\x00\x19\x18\x18\x28\x03\x83\x54\xe3\xf6\x70\x95\xec\xee\xcf\x7a\x07\x8f\x9e\x66\xd7\xaf\x9d\xf5\x6f\xec\xcd\xd3\x83\xc1\x5a\x8d\xf8\x49\xbc\x75\xa5\xb5\x99\x15\x20\x78\x6e\x50\xf6\x9d\x2c\x28\x06\x82\xb5\x30\x92\x6c\x31\xc6\x62\x3a\x9c\xee\xa6\x72\x53\x7d\xce\x84\x92\xa6\x4a\xea\x67\x88\x6c\x96\x37\xd2\xf7\xa6\x74\xb8\x47\x20\x72\x4a\xd7\x02\x04\x79\x4e\x89\x1b\xa2\xad\xa6\x6a\xc2\x7b\x8b\x1c\x6f\x43\x98\x22\xc9\x30\x47\x4b\x79\xf2\x28\x9b\xe0\xaa\x71\x89\x60\x7c\xba\x5a\x4b\xe2\x69\xb2\x50\x99\x94\x1b\x45\xaf\x92\x75\xca\x00\x40\x81\x26\x9f\x66\xc5\xf8\xde\xf6\xfa\xce\x9d\xdd\xd5\x07\x77\x76\x56\x87\xf7\x87\xeb\xa3\x79\x4f\x4f\x0a\x65\xe6\x06\xcb\x8b\x0f\xe9\x74\x10\x39\x7b\xc5\x81\x17\x77\x3c\x7f\x70\x19\xa2\xa9\x6e\x6e\xd6\x50\x4d\x11\x01\x80\x3f\xaa\x3f\xb0\xb4\xfc\xdd\xdf\xfd\x1d\x9c\x9d\x9d\xc1\x6c\x36\x83\xf5\x7a\x0d\x20\x0f\x36\x37\xb1\x02\x74\x99\x4e\x68\xeb\x1b\x41\x08\xc7\xc3\xf2\x38\x25\x59\xb9\x5f\x4c\x3e\x29\x1d\x12\x7d\x17\xbe\x4d\x69\xe8\x62\xf9\xe1\x74\x4d\xf1\x48\xf9\xd3\x96\x86\x36\xab\x94\x94\x16\x29\x0d\x52\x1c\x94\x56\xcc\x73\xde\xce\x62\x81\x36\x55\xb0\x6d\x4a\x39\x56\xe1\x24\xde\xb1\xc2\x6a\xca\xc4\x4d\x4d\x62\xd4\xaf\x4b\xb8\x36\x9a\x18\xff\x4d\x5c\x57\x40\xd4\x35\x9e\x07\x92\x67\x77\x77\x57\x8d\xc7\x63\x0d\x10\x4e\x1d\x91\x11\xb4\x04\x60\x52\xb7\xfe\x05\xc2\x69\x24\x3a\x75\x44\x81\x8c\x5f\x17\x63\x8c\x19\x20\xe0\x00\x4b\x00\xb3\xb5\xbd\x4a\x76\xf7\xe6\xe9\xc1\x95\x49\x76\xe5\xda\x38\xbb\xbe\x3f\xeb\x5d\x19\xae\xd4\x6e\xaa\x31\xf3\xbb\x3e\x98\x9a\xe1\xa3\x55\xb7\x16\xa0\xab\x92\xe9\x46\x13\xbf\x07\xa9\x8b\x16\x0b\xc8\x22\x8b\x33\x9c\xc2\xac\x6d\xc3\xf5\xe4\xec\x7e\x1b\x1e\xb5\x4b\x33\x59\x23\x43\xf3\xa0\x69\x8c\x2f\xed\xf6\xa9\x2d\x3e\x6e\x49\x72\x08\xc6\xa8\xf5\xa5\xce\x3b\x94\x8b\x5b\x62\xac\xc5\x43\x00\x72\x62\xac\x1c\x3d\x32\x60\x18\x03\xaa\x01\x08\xa2\x29\x30\xf4\x20\xb7\x10\x6c\x04\x31\xb3\x62\x8c\xa6\x07\x42\x5e\x92\xd8\x94\x1f\x18\x00\x8d\x00\x79\xa2\x17\x67\x59\x31\x3e\x1a\xad\xef\xdc\xd9\x59\xde\xbe\x3b\x5a\xdf\x39\xdd\xca\x4f\x16\x3d\x3d\xc9\x95\x99\x5a\xc0\xe2\xd7\xad\x00\x01\x2c\x50\x59\x54\x02\xc0\x42\xad\x2c\x64\x1a\x88\x4e\x09\xd5\x46\xe2\x6e\x2d\xcb\x63\x8f\x3d\xa6\x7e\xf2\x93\x9f\x6c\xa2\x2b\x1e\xa6\x7f\x57\xda\x8d\x06\x69\x82\xdf\x26\xcf\x9b\xf6\xd7\x5d\x78\xc7\x5c\x57\x7e\x5d\xf4\x66\x53\x9c\x9b\xe4\x7d\x17\x59\x1f\x28\x1f\xa4\x66\xbf\x89\x30\x5d\x0a\x2a\x16\x0e\xa0\x5e\xb1\xa8\x5f\x17\x04\xc8\xe5\xe8\x12\x0f\xa7\xef\x5a\xd9\x24\xd9\x36\x49\x7b\x1b\xb8\x6a\xab\x44\xe7\xa9\xc4\x5d\x2a\x61\x13\x8a\x07\x4e\xf3\xe4\x93\x4f\xaa\x1f\xff\xf8\xc7\x9a\x5a\x5f\x00\x42\x0b\x0c\x59\xb0\x4b\x41\x8c\xb7\xc2\x80\x5d\x03\x43\x2c\x30\x03\xfa\x0c\xe1\xa1\x76\x99\x31\x66\xa0\x00\x07\x69\x81\xdb\x5b\xeb\x64\x74\x61\x91\xec\x5f\x9a\xf6\x0e\xae\x9e\x65\xd7\x0f\xa6\xbd\x2b\xa3\x65\xba\x97\x15\x38\x54\x86\xa8\x05\x59\x2b\x8b\x56\x8d\x4d\x47\xca\x92\xa3\xa0\x48\xfa\x48\x4f\xd2\x8d\xdd\x5c\xdd\x5d\xae\xf0\x0b\x3d\xb1\x37\x04\x3c\xa1\xbf\x61\x04\xb1\x34\xb7\x6d\xaf\xee\x4a\xcf\x01\x57\xed\xd0\x3b\x06\x52\x1c\x30\xa8\xd1\x4a\x71\x12\x1e\xce\x83\x5a\x2b\x50\x48\x60\x93\x05\x45\x20\x6f\xa9\x17\xf5\xaf\x22\x28\x72\xdf\x22\xeb\x73\xb8\x45\x2a\xb4\xb8\x94\x79\x62\xd0\x80\x46\xd0\xab\x54\xcf\x4e\x07\xf9\xf1\xdd\xd1\xfa\xf6\xe1\xce\xea\xf0\x78\x6b\x7d\x34\x2e\xcf\x45\x9a\x14\xca\x4c\x35\x78\x2b\x8a\xbb\xec\x70\x61\x8f\xe2\x0f\x2c\x2b\xee\x87\xe5\x05\x88\xee\x2f\x3f\x3c\x8e\xfe\xca\x74\x91\x83\xe4\xe6\xf3\x39\xfc\xf3\x3f\xff\x33\x00\x00\xfc\xf8\xc7\x3f\x6e\x52\x8c\x10\x79\xdf\xa4\xdf\x74\xae\x4b\xbf\xc9\x2d\x15\xd4\xb5\x01\x99\x36\xf9\x9a\xe2\x96\xe2\x8a\x7d\xe7\x7e\x31\x39\x9a\xd2\x21\x59\x31\xda\x68\x62\x72\x4b\xe9\x95\x64\x8e\xf9\xc7\xe2\x8f\xf1\x8a\x39\x29\x5f\x68\x78\xff\xbd\x4b\xf7\x14\x03\x10\x6d\x0a\x98\x3f\xc7\xbe\xc5\x0a\x6c\x13\x85\xdd\x16\xaf\x44\x77\xde\xb8\xba\x5a\x5c\xba\xf2\xeb\xc2\xa3\x4b\x7c\x9b\xc8\xb5\x49\xdc\x51\x7e\xcf\x3f\xff\xbc\x7a\xe1\x85\x17\x6a\x61\xec\x29\xb5\x35\xf0\x62\x7f\xd4\xfa\xe2\xc0\x8b\x03\x33\xdc\x02\x93\x39\xf0\x62\xbf\x0d\xd0\x40\x96\x68\xdc\x1e\xe4\x6a\xb4\xbb\x48\xf6\xf6\xa7\xbd\x83\x2b\x93\xec\xda\xc1\xb4\x77\x65\x67\x99\xec\x0d\xd6\x6a\x98\x68\xcc\x9c\x2a\xaa\xa6\x21\xa0\xd3\xf4\x0f\x37\xdf\xb7\xb9\x2e\x53\x2e\x00\x44\x11\xd7\x64\x89\x80\x90\xa6\x38\xa9\xc5\xc1\xb9\x26\x21\x38\x48\x20\xa7\x08\x4b\xf2\xd3\x1d\x3f\xa1\x65\x83\xe4\x0e\xb3\xde\x88\xd1\xd2\x34\x0b\x20\x82\x6f\x19\x77\x91\x1a\x9b\x9e\xa0\x1c\x88\x7f\x09\x4c\xc2\x69\x13\xc1\x70\x13\x7e\x31\x16\x1c\xa1\xab\x15\x91\x92\x36\x55\xba\x29\x78\x8a\xda\xf3\x08\x10\x35\x0c\x04\x49\x31\x84\x53\x5a\x94\x3f\x3d\xcf\xa7\x7c\xd3\x68\x74\xae\x4c\x3e\xef\xe9\xc9\xe9\x56\x7e\x74\x38\x5a\x1d\x1e\x96\xd6\x95\xa3\xb3\x7e\x3e\x5e\x25\x7a\x5a\x28\x98\x19\x28\x41\x0a\x84\xa7\xda\x4a\xa7\xdc\xd2\x05\xb7\xee\xaf\x86\x70\xb7\x50\xf4\x06\x67\x80\xca\xca\xc2\xdc\x79\x06\xbb\xd2\x33\x08\x7c\x36\xa5\xdf\x44\xa6\x07\xb1\x9c\x48\x71\x6c\x62\x95\xe9\xe2\x62\xfc\xbb\xca\xd5\x45\x0f\x72\x7a\x88\x84\xd9\x24\x2f\xba\x60\x80\xa6\xfc\x6e\x1d\x4c\x63\x83\x40\x5d\xad\x18\x5d\x2a\x5c\x17\x9e\x31\xd4\xd7\x96\xa1\x6d\x32\x34\xc9\x16\xfb\xdb\x55\xae\xa6\x34\xc5\xbe\x75\xb1\x8a\x6c\xda\xe8\xba\xb8\x07\x01\x51\x9d\x40\xd1\x4b\x2f\xbd\xc4\xa7\x8e\x5c\xb8\x56\x00\x03\xf5\x9d\x48\x03\xfe\x4c\xa7\x92\xa0\x5c\x07\x93\xf5\x73\xb5\xbd\xb3\x4c\xf6\x2e\xce\x7b\x07\x17\xa7\xbd\x83\x83\x69\x7a\x65\x6f\x9e\xee\x6f\xaf\xd2\xdd\x5e\x01\x59\x79\x2f\x52\xf3\xc2\xdc\x4a\xa1\x57\x8a\xda\x60\x3b\x80\x88\xb9\x1a\x9e\x08\xf5\x67\xe5\x2f\x09\x21\xc8\x07\x4c\x36\xca\xab\x0e\x3a\x04\x4b\x45\x5c\xb3\xfb\x30\x00\x50\x6d\x53\x6e\x01\x78\x3e\x0d\x35\xab\x49\xc4\xda\x40\x9e\x6b\x62\x78\x90\x53\xfe\xad\x01\x21\xf2\x9d\xaf\xe9\xf1\xe0\xa7\x14\x5e\x16\x1a\xe4\x3c\xa1\xc0\x89\xef\xc4\x82\x20\x0f\x1c\x94\x80\x60\xfb\x33\xdd\x96\x0c\x2c\x0c\x4d\xaf\x7b\xc1\x48\x41\x1a\x4b\x54\x1e\x68\x57\x02\x98\x42\x99\x7c\x95\x98\xc5\xb4\x5f\x8c\xef\x0f\xd7\x47\x77\xb7\xd7\x87\xf7\xb6\xd7\x87\xf7\xb7\xf2\xe3\x69\x56\x9c\xe4\x89\x99\x1b\x80\x05\x20\xd0\x6d\xcb\x1e\xa8\xd0\xa9\x20\xb7\xb5\xd9\xfe\x72\xf2\x57\x0b\xc0\x05\x80\x59\x59\xe8\x16\xe7\xaf\x7c\xe5\x2b\xea\xaf\xfe\xea\xaf\xda\xfa\xbd\xb6\xd1\x7c\x97\xbe\xb3\x0b\xa0\xd8\x84\xf7\x79\xe3\x3c\x2f\xef\xf3\x0c\xd8\x37\xc9\x87\x2e\x72\x43\x44\x96\x36\xde\x9b\xe4\xdb\xc3\xe6\xdd\x94\x16\x20\xdf\xa2\x3d\xf3\xc3\xb0\x14\x34\xf1\x6b\x43\x84\xa2\xb0\x42\xb8\x18\x88\xe2\x61\x9b\xe8\xba\xa0\xf9\x56\x04\x28\xc8\x26\x7d\x8b\xf9\xb5\x21\x4d\x2e\x2f\x4f\xa7\x24\x2b\xf5\x93\xd2\xd0\x46\x2b\x55\xa4\x28\xcf\x2f\x7c\xe1\x0b\xea\x5b\xdf\xfa\x96\x06\x10\xb7\x4f\x03\x80\x3c\x85\x04\x91\x7b\x90\xe8\x42\x5e\x6a\x79\x09\xc0\x4b\xb9\x90\x37\x43\x80\x41\xa2\x71\x6b\x6b\xad\x46\x7b\xf3\x74\x6f\x7f\xd6\xbb\x72\x79\xd2\xbb\x76\x71\x96\xee\x8f\x96\xe9\xee\x20\x57\xc3\x54\x63\x56\x1e\x6c\x27\xc0\x11\x6e\x51\x68\x00\x13\x2c\x80\xe8\x82\x29\x03\x11\x08\x54\x9a\x8f\x2a\x6f\x51\x49\x43\x38\x4a\xa7\x23\xfc\xd8\x74\x05\x32\x0f\x43\x78\x47\xa7\xb3\x62\x69\xa1\x71\x77\xa1\xef\xc8\xde\x10\x42\x9e\xd5\x1b\x8a\xd8\x2a\x47\x93\xc1\xad\x6d\xfb\x78\x0c\xf4\x54\x65\x5b\xed\x19\x6a\x95\x39\x92\x30\x0d\x06\x34\x42\x9e\x27\x26\x5f\xa4\xc5\xe4\x6c\x50\x8c\x8f\xb7\xf2\xa3\xa3\xd1\xea\xf0\xde\xf6\xfa\xf0\x64\x90\x1f\x2f\x7a\x7a\xa6\x55\x79\x18\x1c\x59\x9b\x42\xa7\x84\x1c\x48\xa9\xdd\x23\x04\x16\xb0\xf0\x6d\xcd\x0e\xb8\x38\xab\x8a\x3d\x97\xc5\x2f\xbc\x75\xcf\x77\xee\xdc\x81\xbf\xfd\xdb\xbf\x6d\x1a\x41\x03\xb4\xf7\x8d\x40\xe8\x9a\xfa\xb9\x4d\x15\x1b\x08\x34\x31\x79\x9a\x14\x7b\xcc\xaf\xad\x0f\xe5\xf1\xc7\xdc\x26\x7d\x76\x57\xbd\x28\xf1\xe4\xbc\x63\xb2\x6c\xf2\xbd\x4d\x2f\x6d\x92\x1f\x5d\x41\xa9\x73\x22\x0f\xda\x8c\xba\xa0\xbb\x36\xa1\xda\xe8\xce\x1b\xee\x61\xd3\x3f\x0c\x7e\x9b\xd0\x3c\x2c\x7e\x6d\x71\x00\x9c\x2f\xbf\x1f\xba\x13\xac\x2f\x54\x26\xff\x73\x87\xd9\x01\x80\x03\x2e\x14\xc8\x38\x8b\x4b\x0a\xf2\x3a\x98\xe0\x1d\x2c\x90\x49\x35\x6e\x5d\x58\x24\x7b\x97\xa6\xbd\x2b\x07\x93\xec\xca\xfe\x2c\x3d\xb8\xb0\x48\xf7\x86\xab\x64\xd4\x2b\x70\x50\xde\x50\x5d\x5e\xee\x58\x47\x09\x10\x80\x98\xc6\x03\xd0\xa0\xdd\xbf\x11\x03\x45\xa6\x59\xfc\x54\x05\x9b\x36\xda\x54\xa1\xd7\x64\xa7\xd3\x31\x14\xc4\xb0\xdd\x2a\x76\x46\xa5\x74\x41\xd6\x34\x5b\xa1\x5a\x0c\x3b\x35\x1f\x77\x2c\xbd\xbc\xb4\x9a\x46\x1f\xa0\x35\x96\xc6\x52\xf6\x9a\x41\x63\x43\xf9\x82\xf8\x1c\xd8\x03\x6f\x6b\x89\x03\x50\x52\xba\x41\x76\x5a\x66\x15\x05\x3f\xdd\x18\x40\x23\xe8\x42\x99\x7c\x99\xea\xd9\x34\xd3\x93\xd3\xc1\xfa\xe4\x78\x98\x1f\xde\xdb\x5e\x1f\x1e\x0f\xd7\xc7\x67\xfd\xe2\x64\x9d\x9a\x39\x58\x30\x42\xc1\x89\xf4\xcc\x2c\x2c\x6e\xcd\xca\xca\xae\x5f\xf1\x07\xc7\x01\x84\xd3\x41\x50\xf5\x11\xda\xe5\xa9\x00\x58\x00\xba\x03\x87\x26\xa5\xd6\xc5\x2a\x11\xa3\xdb\xa4\xaf\xdb\x44\x56\x89\x46\x72\x9b\xf4\xa7\x12\x10\x8a\xf1\xdb\x04\x98\x75\x91\xef\x41\xd3\xde\x96\xf7\x5d\x00\x09\x08\x74\x6d\xa0\xa5\x2d\x5d\xde\x61\xec\xc3\x39\x05\x88\x85\x6d\xb2\x38\x70\x3a\x20\xef\x4d\xb2\x74\xc9\xc0\x58\x5c\x12\xff\x58\x3c\x5d\xf8\x3f\xe8\xb7\x36\xb7\x09\xdf\xf3\x34\xe0\x87\x21\x63\x2d\xfc\xef\xfe\xee\xef\xaa\xd1\x68\xc4\xbf\xd3\xe7\x00\xc0\x90\x1d\x48\xee\xaf\x03\x2d\xd2\x61\x76\xd1\xdd\x49\x50\xdd\x5c\xdd\xdf\x5a\xa9\xd1\xc5\x59\x6f\xff\xf2\xa4\x77\xe5\x60\xda\x3b\xb8\x38\x4f\x0f\xb6\x57\xc9\xee\x20\x57\xc3\x5e\xa1\x32\x65\x40\xa1\x00\x62\x44\x25\x27\x0c\xdd\x63\x3b\x63\xba\x3a\x77\x62\xae\x9f\xfe\x89\xac\xab\x08\xd8\xf2\xa9\x1e\xa8\x14\x66\x93\x75\x24\x36\x8d\xd4\xb8\x75\x3b\x62\xae\xa8\xa7\xbb\xf4\x68\xb2\x5a\x70\x25\x1e\x9d\xc2\x01\x61\x1a\x8a\x2d\xf2\xe5\x87\xbf\x49\x67\xaa\x54\x77\x0a\x49\xfc\xc2\xa9\xa7\x6a\x9d\x4a\x05\x3a\x6a\x8e\x24\xae\x96\x16\x0a\x4c\x8c\x85\x31\xec\xfc\x19\x00\x03\x06\x41\x17\x68\xf4\x3a\x31\xab\x79\x4f\x4f\xc6\x83\xfc\xe4\x78\xb8\x3e\xbc\x37\xcc\x0f\x8f\x46\xab\xa3\xd3\x41\x7e\xb2\x4a\xcb\x85\xb6\x0c\x8c\x50\x4b\x8a\x7f\x26\xdf\x73\x08\xa7\x84\xf8\xb9\x4a\xf4\xf0\x38\x6f\x61\xe1\x5b\x9c\x23\x6b\x58\x24\x77\x5e\xc5\xb3\x49\xbf\xfd\xa0\xf1\x40\x0b\x7d\x9b\xdb\x54\xd6\xf3\xf2\x79\x10\x85\x0e\x1b\xc8\x72\x1e\x4b\x4b\x93\xee\x8f\xf9\x9f\x17\x10\x76\x06\x50\x6d\x5d\x6c\x9b\x00\x9b\x28\xf9\x07\xa9\xb0\x5d\xfd\x1e\xa4\xa2\x35\x65\x3c\x40\x1c\x64\xc5\x10\x69\x53\xb8\xb6\xef\xdc\x75\x89\x5b\xa2\xed\x22\x6b\x1b\x9f\x4d\xf9\x05\xf9\xfc\x3b\xbf\xf3\x3b\xea\xab\x5f\xfd\xaa\xdf\x85\x44\xad\x30\x86\x5c\x21\xe0\xa6\x90\x24\x00\x43\xac\x2f\xfe\xd9\x54\xd7\x0b\x78\x00\x43\xac\x2f\x0e\xb8\xf8\x77\xa5\x61\x6b\xb4\x4c\x46\x97\xa6\xbd\x83\xcb\xd3\xec\x60\x7f\x96\x5e\xd9\x5d\xa4\x7b\xdb\xff\x5f\x7b\x57\xef\x23\x39\x52\xf6\x1f\x97\xdd\x3d\x3d\xbd\x33\x73\xab\xbb\x3d\x08\x10\x39\x04\x04\xc4\x04\x04\x48\x24\x5c\x88\x8e\x08\x11\x2d\x7f\xd4\x2d\xc9\x85\x20\x42\x2e\xe4\xfe\x02\x22\x40\x02\x21\x02\x24\xc4\xe9\xd5\xed\xb2\x2c\xb3\x33\x3d\x3d\xdd\xee\xf2\x1b\x74\xdb\x5d\x7e\xfc\x7c\x96\xdd\xb3\x03\xdc\x23\xcd\xb4\x5d\xf5\x7c\xd5\xf7\xcf\x55\xe5\xf2\xa6\xbc\x3a\xdb\x16\x17\xb3\x18\xaa\xc3\x47\x1e\x0f\x34\x3c\xa2\x1f\xd2\xfb\x74\x10\x13\x8e\xd3\xa7\x9e\xe4\xd3\xe1\x7d\xa0\xbb\xbf\x05\x82\x1c\x2c\x29\x3b\xc2\xa4\x44\xe2\x47\xfa\x91\x84\xc3\x60\xdf\x40\x07\x2a\x40\x02\x4d\xc9\xc0\x0f\xc0\xfb\x81\x81\x07\xe5\x47\xcf\x67\x50\x36\xf0\x62\xbf\x98\xb7\x8d\x8e\x40\x44\x41\x8e\xdd\x6c\x0a\x3f\x9b\x95\xa6\x91\xdc\x5b\xd3\xc3\x24\x07\xc8\x42\x82\x9a\x36\x1e\x62\x0c\x00\x75\x68\x36\xf7\xd5\x6e\x75\x33\x8f\xd7\x6f\xce\xeb\x57\xaf\x2e\xb6\x5f\xfe\xdf\xe5\xfd\x17\xaf\x97\xf5\x9b\x4d\x15\x57\x4d\x01\xf7\xc9\x6b\xc9\x1d\x40\x61\x66\x5a\x7a\x1b\x6d\xe1\x78\xf6\xca\x06\x6d\xb4\xed\xce\x63\x39\xec\x65\xea\x4e\xbc\x6d\xc3\x8a\xa2\x80\x18\x23\xfc\xe2\x17\xbf\x88\x6d\x7b\x3d\xc4\x4b\x0f\xae\x6d\x38\xee\xaf\xb4\x07\x55\x4c\xd6\x87\x27\xe9\xe9\x5f\xf3\x87\xf3\x1d\xeb\xc2\xfc\x5c\xff\x28\x0d\xb2\x9c\x2d\xef\x78\xc0\x85\x61\x9f\xa5\xfc\xa6\xd2\xc9\x5d\x8f\x19\xdb\x3c\x63\x92\x96\x16\x4c\x64\xda\x0a\xc6\x29\x0b\x2a\xb3\x56\xb8\x1c\xd2\x74\x5b\x6d\x49\x08\x9c\xab\xa8\xdc\x7d\x4e\xfa\xbc\x08\xf7\x14\x34\x06\x09\x4f\x4e\xc9\xfe\x17\x00\x00\x7c\x90\x1d\xf5\x97\x7e\x0f\xa9\x9b\x81\x41\x4b\x49\xdd\xdf\x21\x3c\x05\x2d\x78\xa9\xa9\x2a\x23\x9c\x3f\xd9\x94\x17\x1f\xdc\xce\xde\x7f\x76\x33\x7b\xf6\xc1\x6a\xfe\xb5\xa7\x77\xd5\xb3\x27\xf7\xe5\xd5\xa2\x2e\x96\x65\x2c\xaa\x74\xe8\x2b\xb8\x11\x9b\xa2\xc1\x08\x48\xcc\x44\xa0\xa7\xff\x9e\x18\x31\x03\x52\x60\xb5\x68\xb6\x83\x8b\xeb\xbf\x7d\xd4\x5f\x37\x62\x56\xa9\x48\xb0\x26\xed\xf3\xe8\xee\x89\xa5\x14\xd2\xf7\x34\x9d\xd0\x07\x1b\x47\x70\xd5\x3f\x95\x36\x95\x01\x80\x0e\x3c\xb4\x4a\x39\x80\x55\xf4\x45\x18\xd0\x95\x7e\xb8\x11\xcd\x7e\x25\x7c\x94\x2e\x8c\x93\x9a\xee\xfe\x90\x92\x02\x60\x1b\x9a\xcd\x7e\x29\x68\xf7\xe6\xdf\xe7\xf5\xeb\x7f\x2e\xb7\xaf\xbe\xbc\xdc\x7e\xf9\xf2\xc9\xe6\xf5\x6a\xbe\xbb\x01\x80\xf6\x28\xfe\x1a\x81\x12\xf6\xcc\x15\xe8\x6f\xb2\xe5\x66\x58\xda\x3d\x2b\x31\x39\x2c\xae\x03\x2c\x00\xd0\x1d\xcf\x0f\x00\xf0\x93\x9f\xfc\x24\xfc\xf2\x97\xbf\x94\x06\x2d\x8a\xb4\x3e\x54\x1b\xa0\x3c\xd7\xd6\x7e\xcc\xfb\x30\xdd\xf2\x6a\x3a\x2d\xe3\x86\x45\x9f\x25\x3d\x29\x59\xcb\xc1\xda\xaf\x7b\xca\x2c\x47\xbf\xc4\xaf\x61\x07\xab\x9d\xaf\xbe\x55\x44\xf0\x78\xe8\xa1\x81\xc7\xbb\x22\x2b\xa8\x75\x11\x02\x31\x21\xf9\xc5\x7f\x6d\x38\x7e\x13\x89\x7a\xa5\xba\x03\x2a\x20\x2f\x2f\x55\x00\x30\x2f\x1a\x38\x5b\x6c\xc3\xf2\xc3\xdb\xf9\xfb\x1f\xde\xcc\xbe\xf6\xc1\xed\xec\xd9\x7b\x77\xe5\xb3\xcb\xfb\xea\xe9\x62\xbb\xdf\xd4\xcb\xbd\x95\x84\x49\x03\x03\x53\x91\xa4\x53\xdb\x6c\xaa\xe9\xf9\xea\x5b\x45\x82\x7d\xe4\x0b\x5e\xae\x6a\x79\x36\x65\xdc\xdc\xcd\x76\xd7\x6f\x17\xbb\x37\x6f\xce\xb7\xaf\xff\xb9\xac\xbf\x7c\x79\xb1\x7d\xf5\xaf\xf3\xed\x9b\xbb\xf9\x7e\x66\x05\x86\x6f\xfa\xac\x93\xfb\x74\xdf\x4a\x4d\xcc\xb0\xf4\x00\x4b\x02\x4a\xd8\x73\x58\xd0\x52\x5b\x7c\xf1\xe2\x45\x7c\xfe\xfc\x79\x68\x81\x0b\xd8\x9e\x78\xa7\x00\x1a\x9c\x6e\x6f\xf8\x58\x20\xf4\x90\xba\x29\x3b\x63\x01\x00\x08\x7a\x2c\x72\x5e\x9b\x63\x79\xad\x3c\x26\xb9\xa9\xfb\x54\xd2\x88\x21\x7e\x0a\x94\x47\xf1\x71\x05\xe5\x29\x78\x1c\x26\xe9\xb4\x22\x4b\xcd\x77\x4b\x65\xd3\x1a\x80\x25\x5d\xd6\xb2\xd2\x9e\x28\x24\x62\xf3\x2d\x05\x2e\xc9\xcc\x8b\xf8\x39\x81\xe4\x2f\x7d\x13\xa9\x6a\xf6\x5f\xa4\xee\x96\x94\xe0\x38\x03\x33\x47\x33\x33\xe9\x99\x31\x15\x34\x87\x65\x26\x80\x2a\x34\x70\xb6\xd8\x96\x17\xef\xdd\x55\x4f\x9f\xdd\x56\xef\x7f\xb0\x9a\x3d\x7b\x6f\x35\x7b\xff\x72\x53\x3e\x3d\xdf\x86\x8b\x79\x1d\x16\x25\xfa\xd4\xc0\x80\xba\x27\xfe\xe1\x8c\x81\x67\x70\xd7\x88\xdc\xab\x61\x24\xd5\x1f\xc2\x2f\x32\xc8\xac\x88\x50\x9d\x80\x90\x01\xc0\x10\xf4\xa5\xe9\x06\x00\x00\xe2\xb5\xf5\xfe\xac\xd3\xf1\xbb\x42\xfd\xc3\xf8\x8c\xc0\x8b\xf1\xbb\xbd\x86\x02\x20\x16\x4d\xbc\xaf\x9a\xd5\x6a\xbf\x67\xe5\xf5\xeb\x27\xdb\x57\xaf\x97\xdb\x57\xff\x5c\xd6\x6f\xae\x17\xf5\xf5\xa6\x8a\xab\x58\xc0\x7d\x03\xb0\x01\x68\x36\x80\xf6\xa4\x34\xc3\x13\x6c\xdb\x0d\xb5\xbd\x3d\x2b\xe9\x41\x71\xc9\x75\x4c\xde\x08\x4a\x4f\xbc\x6d\xfd\x4c\xdb\x68\x77\xfd\xfb\xdf\xff\x1e\x7e\xf7\xbb\xdf\x41\xd3\x34\xb0\xdb\xed\x30\x1f\x40\xde\x43\x2a\xc5\xc7\x5d\x5b\x74\x4b\xfd\x20\xa7\x5b\xf3\x47\x03\x5b\x40\xc8\x48\xba\xb1\x9c\x25\x7f\xc6\xa6\x41\xbb\xf6\xea\x96\x64\x70\xbc\xc5\x2e\xc7\x93\xde\x5b\xc6\x33\x4e\xf7\xa0\xad\xe6\x0e\x82\x1a\x92\xcb\x1d\x30\xd3\xfb\x56\xbf\x04\x68\xbc\x68\xdf\xa2\x53\xf3\xcf\x5a\x29\x72\xc9\x83\x52\x73\x11\xad\x45\x2f\x9c\x48\x37\x0b\x60\x92\x7b\x16\xc0\x34\xf4\x67\x05\xba\x0d\xbd\x09\x70\xa1\x36\xf8\xf6\xc3\x9a\xa6\x2a\xa0\x98\x87\x06\xce\xca\x58\x2c\x16\x75\x58\x5e\xac\xab\x8b\xab\x75\x79\xf5\x74\x5d\x3d\x7d\xef\xae\x7a\x7a\x79\x5f\x3e\x7d\xb2\x29\xaf\x96\x9b\xf2\x62\xff\x8a\x35\x03\x64\x88\x3d\x27\xd6\x19\x19\x3c\x63\x90\x86\xa5\x4b\x16\xed\xbd\x57\xf7\x20\xcc\x30\x4b\x63\x19\xd8\xb9\xe5\x2e\xcc\x74\x7c\x63\x87\x5e\x7e\x11\x97\x98\x28\x3e\xc2\x7f\x6e\x29\x8b\xb6\xd7\x1c\xc2\xc8\x69\x99\x23\xa8\x3c\x5c\xc7\x6e\x73\xed\xee\xe6\x76\x1e\xaf\xdf\x2e\xea\xeb\x7f\x2f\xea\xd7\x6f\xce\xeb\x37\xff\x3a\xaf\x5f\xbf\x3d\xab\x6f\xb6\x65\xb3\xde\x85\xe6\x2e\x16\x07\x80\x52\x1c\x67\x57\xd2\x25\x21\xe2\x1a\xcf\xa6\xf4\x80\x0a\x7e\xa5\x19\x60\xf0\x86\x50\xfa\xdb\x5d\xa7\x9b\x6f\x2f\x2f\x2f\xc3\xdb\xb7\x6f\x2d\x0f\x6b\x12\x69\x63\x85\x06\x12\xa6\xba\x1e\xa3\x83\x4b\x8f\x77\x1c\xf1\xf0\x70\x72\xc0\xc8\x7a\xec\xe4\xfa\x34\x45\x7e\x73\xba\xbd\x36\x4d\x69\x28\x04\x23\x16\x67\x24\x59\x0e\x18\x58\xec\xa4\x72\x58\x87\xa5\xd0\x5a\xd2\x40\x0d\x65\xd3\xe2\xdf\x54\x03\xb8\x25\x4f\x25\x60\x34\x45\x7a\xbc\x34\x36\xfd\xac\x3c\xde\xff\x02\xfd\xb2\x64\xc1\x4b\xf2\xd7\xee\x87\x19\x1c\x6c\x87\xce\x89\xe9\x40\x0b\x9a\x91\xe9\xc5\x1f\x4e\xe9\x3d\x2b\x23\xcc\x67\x31\x2c\x16\xdb\xb0\xbc\xb8\x2f\xaf\xae\xee\xcb\x8b\xf7\xee\x66\x4f\xaf\xd6\xe5\xd3\xcb\x75\xf9\x74\xb9\x2d\x2f\x16\x75\x58\x56\xbb\xe3\xb2\x52\x6f\xf9\x01\x8d\xa2\xd4\x5e\x0b\x8a\xba\xa7\x66\x61\x66\x43\x9b\x71\xf1\xce\x2c\x48\xaf\x7f\x8b\xb3\x48\xc9\x5b\x45\x80\x7c\x3a\xee\x60\x29\x7a\x3e\xf4\x6d\x60\x2e\xec\x6d\x7f\x41\x87\xdd\xa4\x8b\xe5\x11\x82\x92\xd3\x47\xe7\xcd\x0e\x1a\xa8\xcb\x66\xb3\xae\xe2\x6a\x35\xdf\x5d\xbf\x3d\xdb\x5d\x5f\x9f\xd7\x6f\xae\xcf\x76\xd7\x6f\x17\xf5\x9b\xb7\x67\xbb\x9b\xbb\xd9\x6e\x55\x87\x66\x5d\x97\xcd\xdd\xae\x3d\x18\x0e\x8e\xcb\x3a\x08\x94\xe0\xbf\xee\xd5\x65\x48\x00\x4b\x81\xbe\xd0\x8c\x36\xda\xe2\xd9\x95\x1e\x40\x01\xd4\xc6\x3e\xff\xfc\x73\xf8\xeb\x5f\xff\x2a\x0d\x42\x1c\x51\x4f\xd0\x69\xb8\x74\x8d\x75\x8c\xbd\xe6\xfc\xf2\x3e\x68\xe6\x00\x17\x8b\x3e\x4e\x07\x28\xba\xbd\x69\x68\xef\x5b\x1a\x53\xae\x39\xd7\x9c\x4f\x9e\x70\x2a\x7f\xcc\x7e\x68\x33\x2e\x5e\xc0\xa1\x65\xa0\x55\x3f\x35\xf0\x5a\x74\x7a\x0a\x4e\xb3\x97\x86\x03\x8a\xa7\xc0\x55\x7a\x6f\x69\x24\x58\xde\x0b\x4c\x72\x2a\x3d\xf5\xeb\xf1\x5b\xd2\xdf\xea\xe1\xe4\x45\xfd\x1f\x7c\xf0\x41\xb8\xbc\xbc\x84\xbf\xfd\xed\x6f\xd4\x77\x90\xa0\x9d\x75\x69\xfa\xdf\x44\x6a\xc3\xbb\xbf\x04\xb8\x04\x18\x1e\x6e\x37\x38\xa5\x37\x5d\x62\x42\x87\xde\xf5\x0e\xc4\x83\x06\xe6\xa1\x81\xaa\x8c\xc5\xf9\x2c\x16\xf3\x79\x1d\x96\x4f\x36\x61\x79\x71\x5f\x5d\x5d\xde\x97\x57\x57\xeb\xf2\xea\xf2\x7e\x7f\x56\xcc\xf9\x36\x2c\xe7\x75\x58\xcc\x62\x31\x2f\x9a\x22\x04\x84\x2e\xa8\x8d\x9d\xc7\x5b\x6a\x00\x1f\x52\x6f\x76\x03\xf6\x37\xd2\x4c\xc3\x50\xd0\x47\x12\xd8\x92\x40\x00\x5e\xb6\xe9\x9d\xb9\x02\x7d\x9f\xd9\xbd\x28\x03\x90\x72\xc8\xa3\x9e\x6e\x38\xe6\x01\xf3\xea\xb4\xea\xeb\xe1\x2e\x16\x10\xb7\x21\x6e\xee\x67\xcd\x7a\x5d\xed\x6e\x6e\xe7\xf1\xe6\xed\x62\x0f\x54\xae\x17\xf5\xf5\xed\xd9\xee\x66\x35\x8b\xab\x4d\x15\xf7\x60\x25\x34\xf7\xb1\x68\x36\xcd\x7e\x66\x24\x5d\xe6\xe9\x00\x49\x31\xfc\x90\x61\xf7\xbd\x20\x80\xde\x79\x2b\xdd\x99\x2b\x87\xe5\x9f\xee\x74\x5b\x80\xe3\x9b\x41\x70\x6c\x3f\xed\xe6\x5b\x7c\x0d\xc9\xfe\x15\x98\xcd\x66\xe1\xf0\xd5\xe6\x96\xb4\x36\x8f\xfb\xbe\x54\x86\x92\x07\xa0\xfb\x01\xea\x9e\xd2\x87\xf9\x28\x19\xa9\xbf\x4c\x89\xf2\x3d\xd7\x2f\x8f\x8c\x85\x6f\x0a\x9f\x28\x1f\xb9\xf2\x6a\x89\x03\x4c\x9c\x2f\xd2\xb8\x45\xf9\x65\xf5\x5b\x0a\xe7\xea\xd7\xa0\xcc\xdb\x36\x2c\xa1\x40\x0d\x28\x00\xc8\x95\x08\xcb\xe0\xf0\x54\x5e\x6a\x08\xd2\x60\xeb\x45\x9f\x5c\x9a\x3c\xe9\xc1\x7c\xde\xc1\xde\x42\x39\x3a\x39\x90\x32\xc6\x7e\xae\x8e\x31\x40\x18\x00\x8e\xb3\x30\xf8\x30\x3b\x0c\x66\x00\x20\xdd\x17\xd3\x02\x97\x90\xdc\x57\xe8\x3a\xdd\xd4\x8b\x3f\x39\xc0\xfe\x36\xfb\xe5\xa4\x0a\x00\xe6\x65\x03\x67\xd5\x2e\xcc\xe7\xbb\x62\xb1\xd8\x86\xe5\x72\x53\x5e\x3c\xd9\x86\x8b\xe5\xa6\x5c\x3e\xb9\x2f\xaf\x2e\x36\xe5\xc5\x72\x53\x2e\xcf\xb7\x61\x79\x56\x87\xe5\x6c\x57\xcc\xdb\xc3\xef\xf0\xc2\x04\xbd\x84\x73\x98\x63\x90\x66\x08\x24\x20\x82\xa7\x17\x18\x5e\x7e\x96\x43\xe6\xb3\x6c\x69\x4d\x97\x63\xba\xb9\xa8\x06\x8e\xfb\x5b\xe0\x78\xd6\x0a\x20\x37\xfb\xdf\xef\x19\x9a\xc0\x5f\xa9\x26\xdf\x6c\x12\xc0\x12\x00\x40\x2c\x9a\xb8\x2b\x9a\x7a\x5b\x36\x9b\xfb\x2a\xae\xd7\x55\x5c\xad\xce\x76\x37\x6f\xe7\xbb\x9b\x9b\xb3\xdd\xf5\xea\x6c\x77\x73\x3b\x8b\x37\x77\xf3\xdd\xcd\xba\x8a\xeb\x4d\x19\xd7\x75\xd9\x6c\x76\x05\xdc\x1f\xbe\x11\xd4\xbd\x86\x0c\xc7\x37\x83\xa8\xb7\x7e\xd2\xd9\x94\x14\xb0\xe0\x73\x56\xd2\x25\xa0\x6e\x0f\xcb\xe1\x3e\x9d\x59\x89\x09\x38\xeb\xae\xd3\x73\x58\xbe\xfd\xed\x6f\x87\x3f\xfd\xe9\x4f\x9e\x27\x62\x2a\xde\xd3\x7f\x5a\xf8\x73\x1f\xba\x34\xdd\x92\x2e\x69\xfc\xc9\x49\xe7\x14\x69\xb0\xe4\xc9\x14\xfd\xee\x14\x79\xcc\x85\x4f\x9d\x3f\x66\x5e\x6a\xc6\x05\x08\xa3\x1a\xa0\x00\x90\x0d\x7a\x2b\xba\x55\x47\x4b\x52\x65\x96\xfc\xb4\xa2\x79\xcf\x00\xec\x29\x78\x2a\xce\x5b\xd1\x2c\xfa\xad\x7a\x39\xde\x29\x40\xd0\x68\x32\x2c\x25\x85\x24\x2c\x00\x0c\x3e\x33\x30\x00\x2f\x49\x18\x3e\xec\x6e\xf0\xc6\x52\x32\x3b\x83\x0f\xc7\x6b\x97\x95\x66\x55\x84\x45\xb5\x0b\xf3\xb3\x3a\x2c\xce\xb7\x61\xf9\x64\x13\x2e\xce\xb7\xe5\xc5\xc5\xa6\xbc\x78\x72\x5f\x5e\x3c\xd9\x03\x99\x8b\xb3\x3a\x2c\x66\xbb\x62\x5e\xc5\xa2\x0a\x4d\x51\x75\x87\xe0\x1d\x48\x9a\x15\x10\x30\x88\xb8\x5f\x05\x2f\xbc\x74\xcb\x3e\x68\xe6\x02\xef\x05\x81\x44\x26\x3d\xfd\x95\x85\x2d\x9d\x0e\xe1\x0d\xa5\x76\x93\x6c\x73\x48\xcf\x60\xc6\x28\x85\x3a\x42\x3a\x06\xcb\x52\xc9\xeb\xd4\xc9\x27\xb9\x9b\xbd\x8d\x78\xf8\x70\xe1\x66\x53\x36\x9b\x4d\x15\xd7\xeb\x59\x5c\xdd\xce\xf7\xb3\x2a\xb7\xf3\xfa\xe6\x76\x1e\x6f\x56\xf3\xdd\x6a\x35\xdb\xdd\xdc\xcf\xe2\x6a\x1b\x60\x53\x87\x66\x13\x43\xb3\x6d\xfa\xcb\x3f\x18\x80\x0c\x80\x4b\xba\xdc\x83\xc1\x4a\x73\x3c\x6e\x1f\x7f\x2f\xa8\xbd\x6e\x41\x4a\x07\x5a\x60\x0f\x62\x0e\xe9\xee\x2f\x0f\xa5\xb3\x2b\x0c\x71\x83\x27\x10\xe1\x9c\x9c\x87\x2c\x36\xbc\x63\x87\xe5\xc1\xda\xe3\x9b\x66\x87\xf3\xd5\x0b\x34\xa6\x00\x2e\x39\x00\x40\x92\xf7\x8e\x53\x92\x4e\xad\x8c\xad\xf9\x63\xae\x97\x69\x7f\x30\x66\x60\xb3\x84\x8b\x8e\x10\x7c\x54\x45\xb1\x0c\xfe\x96\x01\xbc\x25\x4f\xa5\xf4\xda\xcc\xc9\x0b\x29\xfd\xd8\x67\x8e\x1f\xf3\x69\xe9\xe1\xd2\x2e\xf9\x96\xc6\x59\xf4\x4b\x69\xc5\x69\x12\xe5\x7e\xfa\xd3\x9f\x86\xf3\xf3\xf3\x1e\xe3\x61\xc6\x05\xcf\xc8\x90\x9b\x7a\x0f\xbc\xe9\x86\xde\x0e\xc8\x24\xcb\x4c\x73\x18\x82\x19\xea\x24\x5f\xfc\x5a\xf6\x11\xd4\x34\x50\x85\x06\x66\x65\x2c\xaa\x32\x16\xf3\xb3\xdd\x01\xc8\xdc\x87\xe5\x93\x4d\x75\xb1\xdc\x84\xab\xe5\xb6\x9b\x8d\x59\x9c\xd5\x61\x31\xdf\x85\xf9\x1e\xcc\xc0\xbc\xdc\x03\x9a\x80\x0f\xc5\x3b\xfe\xef\x52\x3f\x08\xc1\x64\xdf\x53\x03\x50\x14\x29\x74\x30\xca\xb5\xff\xbb\x99\x14\x79\x2e\x06\x7a\x4b\x3f\x29\x82\x49\x97\x07\xa1\x03\x1d\xf4\x27\x01\x8e\xe1\x69\x18\xc0\x1e\xa0\x34\x00\x71\x17\xf6\x20\xa5\x2e\x9b\xcd\xa6\x8c\x9b\xf5\x2c\xae\xef\x66\x71\x75\x37\xdb\xad\x56\xb3\x78\x73\x37\x8b\xab\xd5\x7c\x77\x73\x3b\xdf\xdd\xdc\xed\x97\x7e\x36\xdb\xd0\xac\x63\x68\xea\x58\x34\xdb\xd8\x5f\xca\xa1\xf6\x9d\xa4\x1b\x6e\x7b\x61\xcc\x8c\x0a\xf5\x15\xe6\xde\x26\xdb\xf6\x3a\xdd\xa7\xd2\xa0\x13\x6e\x01\xa0\xfd\x9e\x10\x7c\xf1\xc5\x17\xf0\xd9\x67\x9f\xc5\xef\x7d\xef\x7b\xe1\xe5\xcb\x97\xf0\x97\xbf\xfc\xa5\xcd\x0e\xae\x9d\x59\x06\x20\x20\x64\x38\x9d\x98\x17\xeb\xf3\xf6\x6d\x9e\xc1\x90\xeb\x4f\xb0\x2e\x30\xc8\x59\xf2\x84\xf2\xcf\x63\x53\x22\x4e\xb7\x25\x4f\xbc\x69\xd7\xfc\xb6\xf4\xf5\x29\x1f\xa0\x70\xac\xc3\x03\x76\x2c\xe1\xbd\x03\xe8\xb0\x51\xeb\x00\x64\x89\xf7\x82\xa2\xd4\x71\xcd\x2f\x4f\x1c\x57\x21\xa6\xb0\xe3\x49\x23\x47\x39\xe0\xd1\x2a\x23\xe5\xab\xc5\x87\xa9\xd2\x67\xf1\xc1\x4c\xf8\x9b\x48\x68\x3f\x44\x0b\x58\x00\xfd\xf6\x80\x4c\xf2\x4a\x75\xb7\x3f\x06\xbf\x6a\x5d\xd0\xdf\x51\x0a\x30\x9c\x89\x61\xff\x8a\x06\xc2\xe1\x8d\xa5\xaa\xda\x15\x8b\xb3\x5d\x98\x2f\xea\xb0\x38\xdf\x84\xe5\x72\x5b\x2e\x17\x9b\x72\x79\x5e\x87\x8b\xf3\x6d\xb1\x5c\x6c\xcb\xc5\xa2\x0e\xcb\xb3\xba\x98\x57\x31\xcc\xab\x3d\x00\xaa\x42\x84\x10\x60\x0f\x68\x00\x00\xfa\xc0\x06\xa0\x07\x6e\xfa\x53\x2c\xbd\x25\xa7\xe3\xb1\xfb\x7b\x25\xbd\xe3\xea\xf1\x72\x0b\xe0\xd9\x10\x1c\x87\x37\xeb\xb4\x1b\x75\x87\x36\xd2\x99\x90\x02\x29\x1a\x9c\x68\xdb\x34\x87\xb0\x74\x07\x0a\x00\xec\x81\x09\x34\xb0\x9f\x41\x89\x61\xff\xcd\x9f\xba\x68\xea\x3a\x34\xf5\xb6\x8c\x9b\x4d\xd5\xac\xd7\x55\x5c\xdf\xcd\xe3\x6a\x35\xdb\xdd\xdc\xcd\x77\xab\x9b\xfd\x6c\xca\x7e\xc9\xa7\x8a\xeb\x3a\x34\x9b\x5d\x68\xea\x58\xc0\xb6\x29\x86\x20\x03\x68\xc0\xd2\x9e\x4c\x4b\x6e\xa4\x3d\xcc\xac\xc4\x66\xb8\x5f\xa5\x4e\x66\x50\x5a\xb0\x92\x1e\x0c\xd7\xfd\x75\xaf\x70\x1f\x00\x4b\xf2\xdb\xbd\x19\xf4\xa3\x1f\xfd\x28\x7c\xf6\xd9\x67\xda\xc3\x49\x6e\x9b\xb5\xf4\x01\x16\x50\xe0\xd1\x6d\xe1\x97\xc6\x1d\x0b\xd0\xf1\x92\x25\x5f\xa7\xba\xc6\x36\x3d\x0f\x91\x92\xac\x25\x1f\x24\xfe\xd6\x4e\x0e\xe8\xb3\x5c\x5b\x00\xce\xe0\x97\x7b\x98\xf2\x64\xd2\x58\xa2\xf4\x8f\x19\x8c\xbd\xa0\xc3\x63\x4b\x42\xb0\xdc\xb5\xc5\x3f\xae\xf0\x2c\xbe\x70\xf6\x35\x19\xae\x32\x72\x3e\x4a\xe1\x56\x3f\x2d\xc0\xd2\xdd\xe9\x7d\xfc\xf1\xc7\xe1\xe9\xd3\xa7\x1c\x3f\xf9\x8b\x36\xf6\x56\x49\x5c\xfa\xa9\x81\x00\x47\x40\xd2\xf2\xe5\xfc\xb5\xfa\x30\xb8\x09\x45\x03\x55\xd1\xc0\xac\xd8\xef\x7d\xa9\x66\xb1\xa8\x66\xbb\x62\xbe\xdc\x96\x8b\x8b\xfb\xf2\x6a\xbf\x47\xa6\x5c\xee\xc1\x4c\x58\xee\x67\x65\xc2\x62\xb6\x2b\xaa\x2a\xee\x97\x9a\xca\x06\x42\x88\x45\x55\x36\x45\x28\x30\xb0\x01\x00\x68\x8e\x75\x71\xd8\xe0\x89\xe5\xa9\x04\x87\x88\x4b\x53\xc9\x64\xc9\x1e\x70\x40\x87\x7a\x68\x90\x83\x77\x98\xf4\x55\x1d\x28\x36\x47\xdb\xb1\x29\xf6\x9b\x65\x63\xd1\xd4\x07\x90\x52\xd7\x01\x62\x1d\x62\xbd\x2d\x9b\xf5\xa6\x8a\x9b\x75\x15\x57\xf7\x55\xb3\xbe\xab\x76\xeb\xf5\x2c\xae\xd6\x87\x59\x95\xdb\x79\x5c\xad\x67\x71\xbd\x0d\xcd\xa6\x0e\xb1\x6e\x0a\xa8\x9b\x02\xb6\x0d\x34\x35\x40\x11\xa1\xe8\xbd\x6e\xdc\x02\x8a\x14\x8c\xb4\xcb\x3f\xed\xcc\xc8\x26\x01\x20\x2c\xd0\x81\x23\x08\xa1\xae\x21\x09\x4b\xff\x00\xfa\x75\x3b\x3d\x8b\x65\xf0\x0d\xa1\xab\xab\xab\x70\x7d\x7d\x9d\x33\x38\xe0\x70\x6f\xbf\x41\xf1\x49\x7d\xcb\x94\x34\x75\xdf\xc9\x85\x7b\x00\x40\x6e\x5f\x99\x03\x22\xb4\x72\xb0\xda\xf6\xd8\xc9\xc9\x13\xaf\x1d\x8d\x06\xbc\xb9\x4b\x45\x9c\x13\xb9\xce\x68\x05\xa1\xc9\x4f\xc9\xab\xc9\x4b\x00\xc6\x03\x8a\xb4\xce\xc4\xaa\x43\x92\xc9\xc9\xa3\x31\x95\xd1\xe2\x9b\x64\x9b\x93\x55\xf3\xb6\x3d\xb2\xfc\xe7\x3f\xff\x79\xf8\xe4\x93\x4f\xe2\xf3\xe7\xcf\xf7\x03\xf7\xf1\x49\x95\x05\x2f\x29\x88\x69\x97\x98\x0e\x20\x03\xa0\xbf\xd1\x37\x05\x1f\x29\xe0\xe1\xde\x5e\xea\x81\x16\x48\x66\x65\xda\xd9\x1d\xf4\xfa\x76\x0f\x48\x15\x0d\xcc\x00\x20\x94\x07\x30\x33\xdb\x15\xd5\xbc\x9d\xa5\xd9\x86\xe5\x62\x1b\x16\x8b\xc3\x32\xd3\x62\x1b\x16\xf3\x3a\x2c\xcf\xda\xe5\xa6\xc3\x46\xe0\x32\x42\xd8\x2f\x39\x15\x21\xc0\xe1\x83\x92\x0d\x40\xd1\x40\x15\xa0\x80\x62\xb0\x1c\xd5\x27\x12\xac\xf4\x41\x39\x74\xe5\x50\x60\xb6\xa1\x68\x53\xec\xc1\x48\x03\x4d\xdc\x03\x93\x3d\x50\x89\x87\xe5\x9d\x18\x9a\xba\x0e\xcd\x7e\x06\x25\x34\x9b\xfd\x0c\x4a\xb3\xd9\x94\xfb\x8d\xb1\xf7\x55\xb3\xb9\x3f\x2c\xf9\xdc\xce\xeb\xd5\x6a\x1e\x57\xf7\x55\x5c\x6f\xca\x3d\x7f\x2c\x9a\x78\x98\x3d\x89\x4d\x01\x3b\x18\xbe\x4e\xdc\x3b\x6d\xb6\x0d\x43\x7b\x4e\xf0\xbe\x94\x08\xc9\xcc\x4a\x0b\x64\xf0\xfe\x14\x48\x66\x58\x00\x81\x92\xc4\x5e\x7a\x60\x5c\xfb\xb1\xc3\xde\x2b\xcc\xc9\x8c\x0b\xbc\x78\xf1\x22\x26\xc7\xf1\x53\xc4\xb5\x15\xee\xc1\xca\xf2\x10\xe5\x69\x8b\x94\x7e\x4b\xdb\x1f\xd3\x77\x79\xd2\xaa\xf1\xb6\xfc\x94\x7e\xca\x1e\x00\x2d\x3f\xc6\x6f\x2e\x5e\x4b\xab\x27\xcd\x40\xe8\xe4\xd2\x2b\xa5\xd9\x63\x07\xeb\xa6\xc6\xfc\x54\x37\xf6\x91\xb5\x8b\x81\x0b\x36\x2a\x85\x63\x47\x28\xd2\x12\x6a\xd1\x95\x03\x3a\x3c\x83\xbf\x47\x8f\x37\xde\x22\x33\x15\x00\x1b\x0b\xce\xc6\xd8\x7e\xcc\xba\x07\x6f\x26\xb5\xaf\x54\x37\xc3\xd3\x7a\x53\x70\x83\x81\x4c\xfa\x21\xc8\x0e\x90\x48\x7b\x65\x9a\xe1\x99\x32\x3d\xe0\x43\x2c\x53\x0d\x74\xb4\xf6\x10\xb0\x2a\xbb\x6b\x28\x42\x68\x20\xb4\xb3\x2f\xf3\x5d\xa8\xce\xb7\x61\x71\xbe\xd9\x03\x9a\xd9\xae\xa8\x66\xbb\x50\xcd\xe2\x1e\xcc\xcc\x77\xa1\xaa\x62\x31\x9f\xc5\x62\x5e\xee\x8a\x6a\x76\xd8\x83\x53\x46\x08\x45\x37\x53\x53\x40\xd1\x7d\x35\x1b\xa0\x68\xf6\xf9\x52\xc0\x01\xf4\xa0\x4e\xa7\xb7\x7c\xb3\x9f\xe2\xe9\xae\x0f\xb3\x26\x71\xff\xf6\x0e\xd4\x31\x34\xf5\x01\x94\x1c\xff\xca\x66\x53\x07\xa8\x37\x65\xdc\xdc\x57\x71\x7d\x5f\xed\xf7\xa3\xac\x67\x71\x7d\x5f\xc6\xcd\xa6\x6c\xea\xfa\x00\x4c\x76\xe1\x08\x4c\x0e\x7f\xbb\xe4\x1a\x03\x06\xfc\xa6\x8e\x34\x33\xd2\x7b\xb3\x87\xd8\xcf\xc2\xe9\xa4\xae\xa9\x6f\x03\x75\x20\x26\xfd\xc5\xaf\x7a\x1b\xbe\xce\x6c\xed\x3b\x73\x40\x83\x87\x72\x1e\x48\xc6\xf2\x9d\xc2\xb6\x24\xeb\xed\x6f\xbd\xe5\x40\xf1\xe4\xa6\xed\xd4\x79\x98\x0b\x34\xa7\x1c\x7b\x3b\x2c\xa2\xed\xbb\x93\x90\x1a\x87\x38\x73\x9c\x91\xc2\x24\x64\xcc\xe9\xb0\x22\x4d\x20\x78\x3c\x74\x6a\xb0\xf0\x50\x36\xac\x3e\x3c\x06\x5f\x46\x91\xf6\x66\x12\x31\x3b\xd3\x03\x30\x49\x58\xfa\x1a\x36\x9e\x81\xe9\xae\x13\xa0\x02\x40\xcc\xc4\x30\xbc\x01\xeb\x41\xba\xa9\x7b\x40\xf7\xe5\x20\x6e\xbf\xc7\x26\x84\xa6\x38\xfc\x41\x28\x23\x84\xea\x30\x93\x53\xc6\x22\x94\x69\x7c\x2c\xaa\xd0\x00\x84\xfd\x6c\x0d\x14\x87\xb8\x16\xe4\x00\x34\x10\xa1\x9d\x31\x69\x62\x2c\x5a\x90\xb2\x9f\x49\x89\xa1\x89\x11\x00\xb6\xfb\x7d\x27\xf5\xf6\x00\x40\x0e\xaf\x20\xc7\x58\x40\x8c\x01\xea\xc3\x2c\x09\x39\xb0\x03\xc0\x8e\xda\x07\x02\x09\x48\x00\x00\xf6\xed\x9c\x84\xaf\xf7\x9a\x71\xb2\x41\x36\x95\xc3\xcb\x40\xe9\x51\xfa\x83\x0d\xb5\xc2\xfe\x94\xde\xab\xcb\x49\x38\x4e\x5b\xd7\x9e\x08\xc0\xe2\x69\x73\xd2\x53\xad\x74\x6d\x19\x30\x1f\x4a\xb7\x37\x5c\xb3\x63\xb9\x7e\x28\xdd\x94\x9d\xb1\xe5\x0a\x82\x1e\x8b\x9c\xd7\xe6\x58\x5e\x2b\x8f\x49\xae\x62\x18\x53\x4a\x33\x27\x32\xe1\x00\xf9\x4e\x6b\x61\xa9\x1d\x2e\xe3\x29\x90\xa3\xf1\x61\xbf\xbd\x85\x80\xf5\x53\xe0\x89\xf2\x81\xd3\xaf\xa1\x7b\xca\x26\x67\x97\xb3\xc9\xf9\x93\xca\xe1\xbc\x4e\x65\xb4\x4a\x9c\x12\x97\x97\x1c\x28\xd5\xf4\x53\x7e\x52\x32\x3d\x7b\x65\x59\x06\x00\x80\xef\x7f\xff\xfb\xf0\xf9\xe7\x9f\x0f\x9e\x70\x53\x4a\xcf\xc3\x48\x74\xe3\xa5\xa4\xee\x1a\x03\x1c\x3c\x2b\x53\x14\x45\x3a\x8b\x42\x82\x8f\x74\x66\x05\xf3\xa2\x59\x97\x54\x77\xc7\x4b\x00\xaa\x14\x6c\xe1\x03\xfa\x20\x16\x10\x62\xd1\x84\xc3\x62\x4e\xe2\xff\x0e\x60\x0f\x76\xf0\x8c\x4a\x9a\xaf\x16\x1a\xb4\xb9\xc3\xb2\xd1\x8e\x88\x4f\xeb\x55\xd7\xbf\x34\xfd\x53\x61\x7b\xe7\x98\xc0\x71\x3f\x4a\x1a\xdf\x3b\x51\x16\x8e\x4b\x37\x78\xd9\xa6\xb7\x9f\x25\x5d\x2e\x6a\xe3\xf1\x92\x4e\x0a\x80\x88\xb8\xd4\x77\x00\x80\x01\x68\x49\x96\x84\xd2\x19\x3f\x7c\x44\x3f\x7c\xfd\xeb\x5f\x0f\xaf\x5e\xbd\xda\x67\x46\x8c\xdd\x21\x72\x30\x6c\x2b\xb8\x8d\x46\x74\x0d\xe8\x3a\x95\x05\x14\xc6\xb5\xc3\x34\x1e\xb7\x35\xa9\xdd\x61\xff\xb0\x6e\xdc\xa7\xe0\x7e\x26\x8d\xa3\xfc\xe2\x7c\xa1\x08\xc7\x63\xbf\x2d\xf9\x89\x09\x8f\x83\x58\x3f\x07\x10\xd2\x7b\xa9\x5c\xa8\x7e\x52\x4a\x03\x45\x9c\x1c\xb6\x8d\xf5\x49\xe5\x27\x8d\x27\x9e\xb1\x8c\x1b\xcb\xb5\xfa\x3a\xc8\x17\x69\xc6\x85\x1a\xc8\xb4\x81\x9a\x43\x80\x9a\x6e\x2e\x1e\x87\x81\xd1\xa6\x35\x11\x12\x24\x27\x00\x00\x13\x4c\x49\x44\x41\x54\x33\x2d\x0d\xf2\x5d\x91\x36\x40\x4b\x32\xde\x38\x2f\x4d\xa1\x6b\x4a\x7f\x5c\xf4\x9d\xef\x7c\x27\xfc\xe1\x0f\x7f\x88\xc4\xec\x0b\x00\x6a\x34\xe9\x72\x12\xf4\x1b\x6b\xfb\x4b\x5e\x27\xb3\x31\x14\xa8\x20\x67\x4f\xd0\x72\x11\x29\xc7\x00\x95\x0a\xdb\x6f\xff\x92\xa5\x2e\x12\x7c\x11\xe9\x4e\xd3\x80\xdf\xd0\x12\x09\xcd\x32\xb4\x61\xbd\x57\x79\x89\xe5\x93\x54\x2e\x05\x24\x80\xc0\x4b\x8d\xc3\xe1\x08\x46\x52\x80\x93\xce\xb8\xe0\xfb\x54\xc7\x40\x0e\xd9\xef\x81\x94\xd6\x67\x62\x09\x88\x4a\x77\x1a\x8e\xf3\xa1\x77\xee\xca\xc5\xc5\x45\xb8\xb9\xb9\xa1\x06\x09\xad\x7d\x78\x78\x39\xfe\x31\x3a\x34\x3a\x85\xee\xc7\x98\x3f\x1c\x8f\xc6\x3f\x95\x3e\x4e\x56\x8b\xf7\xa6\x4d\xd3\x61\xa1\xc9\xea\x0f\x05\x5c\xc6\x38\xd6\xca\x00\xd8\x01\x05\x27\xdf\xea\x48\xe5\x72\x0b\x4f\x42\x70\x9a\x2c\x8e\xcb\x01\x00\x99\x12\x66\xed\x38\x52\x05\xd0\x2a\x93\xb5\x32\x6a\x7e\x49\xba\xad\xb2\x96\xb2\x95\x74\x49\xf5\x01\x5f\x5b\x74\x68\x75\x55\xad\x2f\xdf\xfc\xe6\x37\xc3\xdf\xff\xfe\xf7\x08\x30\xf8\xd8\x63\x7a\x32\x2f\x37\x80\x07\xc4\x17\xa8\x6b\xe8\x83\x0c\x7c\xdf\x03\x19\x70\x04\x3b\x3d\x90\xc2\x5d\x53\x3a\x18\x80\x82\x6d\x03\xf5\x8b\x96\xca\x7a\x27\x16\xa3\x81\xb8\x37\x73\x85\xee\x7b\x83\x38\x35\xb0\x27\x4b\x2a\x11\x00\x52\x30\xd2\xca\xf7\xbe\x78\x8c\x36\xb5\xaa\x33\x32\xdc\xf2\x12\x9e\xcd\xa1\x74\xa5\xe0\x04\xfb\x27\x6c\xa4\xed\x01\x93\x83\xde\x74\xe6\x04\x5e\xbc\x78\x11\x3f\xfc\xf0\xc3\xf0\xf2\xe5\x4b\xa9\x7f\xa2\xda\xa8\x14\x0e\xc9\xbd\x65\x20\x4a\xf9\x29\xbd\xb9\x36\x34\x7f\x39\x1e\xce\x06\xd7\x1f\x50\xfa\x01\x85\x61\x5b\x9a\xcd\x54\xc6\x9a\x56\x4c\x9c\x0d\xae\xac\x73\xca\x99\xb2\x67\xe9\x3f\x2d\xe9\xe2\x7c\xb7\xd6\x8b\xd4\x1e\x24\xfc\x60\x8c\xb3\xd6\x93\x7d\x7b\x84\x21\x71\xce\x49\x06\x29\xe3\x16\xb2\x0c\xca\x92\x6e\xef\xa0\xde\xea\xca\xf1\xc5\x42\x56\x7f\x4e\x69\x63\x4a\xbd\x39\xb6\x4e\xe5\xdf\x14\x36\xcd\xbe\x59\x66\x63\x84\x7b\x0c\x04\xda\x6b\x16\xcc\x08\x60\xa4\xe3\x95\x00\x0b\xa1\x93\x03\x2b\xbd\xfb\x64\x46\x69\xe0\x33\x06\x31\x54\x9a\x89\xbd\x1b\x29\x51\x1f\x00\xec\x00\x41\x32\x13\x93\x9e\x57\x12\x91\x1c\xfe\xfa\x71\x07\x70\x84\x25\x25\x6a\xef\x09\xa5\x83\x3a\x46\x7f\x10\xde\xa6\x05\xa7\x01\xa7\x15\xe5\x87\x74\xa2\xad\x34\x78\x48\xe0\xc3\xca\x2b\x01\xa1\xf4\x5a\xfb\xb5\xf8\xa1\xe9\xc6\xe4\x49\xaf\x85\xdf\x9b\x97\x16\x5f\xc7\xa6\xc1\x92\x3f\x14\x71\xe0\x45\x93\x93\xfc\xf6\xa6\x41\xe2\x69\x69\x6c\x99\x61\x5e\x60\xc2\x59\xdd\x96\xa5\x22\xca\x48\x6b\x88\x32\x2a\x15\xba\x56\x21\x24\xbb\x96\x0c\xa4\x90\x1a\xa5\x1f\x08\xfe\x31\x80\x4b\xb2\xe7\xa5\x53\xe9\xf6\x36\x02\x4a\x66\x0a\x3f\xfe\xe3\xa8\xfd\xe8\x23\x31\xe3\xc0\x82\x9b\xe4\x49\x7b\x00\x0c\xb8\x5f\x62\xc6\x06\x03\x9a\x96\xbf\x05\x32\xf8\x35\xee\x81\x9e\xc4\x1f\xbc\x64\x04\x48\x47\xcf\x7f\x7c\x9d\x02\x30\x22\xcd\x31\xe5\x6b\x29\xd9\xef\x01\x40\x80\x84\x94\xa7\xd5\x43\x01\x97\xc4\x46\xef\x9a\x00\x3f\x03\x00\x42\xc9\x22\x50\x44\xcd\x06\xf5\xf6\x3a\xe1\xd9\x14\x94\x9e\xde\xc1\x70\xcf\x9f\x3f\x0f\x2d\x58\xf9\xd6\xb7\xbe\x15\xfe\xfc\xe7\x3f\x5b\x3b\xea\x36\xce\xd5\x81\x8f\x0c\xe7\xfa\xcb\x29\xc0\x80\xd7\xa7\x5c\x00\x30\x95\xaf\x16\xdd\x90\x69\x93\x4a\xb3\x37\xbd\x14\x71\xe5\x76\x0a\x40\x41\xd5\x15\x0f\x98\xb2\xda\xd4\xc6\x6c\x00\xd0\x97\x8a\x2c\xe1\x52\xbc\x05\x84\x58\x07\x42\xad\x50\x2d\x80\x49\xd3\x07\x82\x4e\x00\xbd\xb0\x38\x7e\xea\x5a\xf3\xc1\xd3\x30\xb1\x6d\x2b\x28\xa4\x40\x20\x27\x47\x91\x25\xbf\x2d\x3e\xe7\xf2\xa5\xbe\x8d\xed\xd0\xb0\x2c\x7c\xe3\x1b\xdf\x80\x7f\xfc\xe3\x1f\x83\x7c\x49\xbf\x5e\x8d\x97\x4c\x00\xe5\x55\x02\x40\x52\xd0\x33\xf8\xc2\xf5\x61\xf0\x0e\x00\x40\x01\x09\x6a\x5f\x4a\xc0\xba\x52\xfe\x24\xae\x07\x52\x5a\xfd\xc4\x12\x57\x0b\x3a\x7a\x69\x3b\xf0\xa7\xbe\x92\xe9\xa6\x96\x8a\xd2\x65\x94\x24\x3d\x83\xaf\x19\xc3\xb1\x0c\xd2\xa5\xa3\xc1\x2b\xc5\x84\x4c\x2f\x2c\x59\xfa\x19\x00\xa3\x04\x20\xa5\xa7\xd0\xa6\x5f\x5b\x4e\xd3\xda\xf9\x9f\xfa\x92\x5c\x77\xe1\xed\xdb\x40\xdf\xfd\xee\x77\xbb\x32\xfb\xe3\x1f\xff\x08\xc9\x97\x98\xa5\x41\x0a\x50\x38\xe6\xc7\xbc\x40\xdc\x03\x8a\xa3\x74\x71\xd7\xda\xa0\x4d\xf9\x23\x91\x57\x07\x75\x6f\x95\x97\xc2\x28\xbf\xb8\xbe\x4e\xea\x9f\x29\x92\xf2\x40\xea\x0f\x29\x1e\x0a\x18\x49\xfa\xb4\x7a\x41\xe9\xe1\xca\x58\x23\x6b\xfe\x6a\xf5\x15\xcb\x59\xeb\x93\x34\x5e\x0e\xce\x9d\xb2\x82\x13\xa9\x80\xb5\xc1\x97\xd2\x65\x89\x93\x0a\x10\xdb\xd5\xee\xa5\x74\x58\x07\x50\xca\xdf\x1c\x92\xec\x59\xec\xe4\xd8\xb6\x94\x63\xca\xdb\x52\x6e\x1a\x4f\x41\x63\xf2\x7c\x72\x62\x96\x96\x00\x92\xfc\xe3\x66\x2d\x9a\xe3\xb7\x96\x30\x60\xe9\xe2\x09\xb9\x1e\x20\x61\x64\x39\x90\xc3\xf1\x75\xe1\x08\xb4\xa4\x3a\xd8\xb7\xb2\x0e\x44\x95\x49\x0a\x64\x22\xc1\x4b\xc6\xa3\xe5\x9d\x41\x98\x16\x2f\xf8\x45\x5e\x27\x69\xee\xbd\x7d\x96\xce\xa8\xf0\xc9\xee\xc8\x52\x2f\x2d\x00\x82\xd2\x37\x55\x9d\xd7\xfa\xd7\x5c\x7d\x9c\x6e\x8d\xd7\xab\x9b\x8b\xcf\xf1\x57\xb2\x33\x55\x7f\x6f\x05\x86\x39\xba\x35\xbf\xb4\x31\xf4\xd4\xba\xbd\x65\x6c\xf2\x43\x03\x2e\x12\x7a\xd4\x1c\xb3\x02\x80\xdc\x81\x9b\x1b\x74\x73\x33\x93\xab\x48\x16\xdd\x12\x5f\x7a\xef\x01\x42\x00\xfe\x4a\xa6\xf9\x04\x42\xbc\xa4\x73\xac\x2f\xa7\x90\xc9\x01\xd1\xe9\xb5\xa5\x43\x32\x95\xd7\x0f\x7e\xf0\x83\xf0\xdb\xdf\xfe\x36\x02\x00\xfc\xf8\xc7\x3f\x0e\xbf\xfe\xf5\xaf\xb9\x37\x96\x3a\x3d\xe8\x69\xbe\x77\x30\x1e\xf2\x1d\x5f\x7b\xee\x03\x07\x96\x90\x0f\x3d\x50\x22\x2c\x83\x51\x7a\x5a\x92\xca\x2a\xfd\x38\x60\x0a\x52\xba\x38\x6a\x83\x2b\x5e\x56\x6a\x75\x11\x33\x36\x83\xaf\x25\x4b\xe0\x85\x9b\x1d\x3a\xf8\x07\x00\xfd\x73\x55\xd2\xf2\x4d\xaf\xc1\xfe\x80\x25\x5d\x43\x12\x06\x02\x8f\xd4\xa7\xa4\x69\xf1\xf4\x5d\x53\x81\x0b\x8a\x2c\x20\xe3\x94\x83\x9d\xb5\x0f\x96\x64\x2d\x3e\xe5\xf6\xcd\xdc\x58\xe6\xb5\xa9\x95\xab\xb5\x9f\xcc\x49\xdb\x58\x5f\xb1\x3f\x66\x3f\xb4\xcd\xb9\x63\x07\x7a\x0f\x4d\xa1\xe3\x94\x7a\xa4\x8a\xef\x45\x8c\x2d\xa5\xfa\xac\x0d\xaa\x95\xa3\x74\x49\x3e\x59\x41\xa9\xa7\x22\x8d\xad\xac\x5a\x83\xa5\x1a\x9d\xd6\xe0\xb9\xfa\x4b\xc9\x4b\x7e\xe7\xa6\x27\x7e\xf4\xd1\x47\x01\x00\xe0\x37\xbf\xf9\x4d\x04\xd8\x2f\x2d\x01\xc0\xe0\x09\x9e\xb1\xd3\x11\xb1\xb4\xd3\x86\xf7\x66\x4e\xb8\x19\x17\x45\x86\xd2\xc1\x2d\x6d\x0d\xc0\x0f\x06\x5e\x49\x1e\x0c\xe4\x88\x25\x9a\xde\x52\x8d\xb0\x9f\x84\x94\x49\xd2\x39\xf8\x5a\x72\x6a\x27\xf1\x65\x00\x4e\xa8\x6b\xbc\x91\xf6\xa3\x8f\x3e\x0a\x87\x32\xa4\xda\x99\x54\xcf\x52\x5e\x4b\x9d\x97\xea\x6a\x2a\xcb\xd9\xc5\x71\x38\x8c\xb2\x27\xf9\xa7\xb5\x79\x2a\x3d\x94\x0e\x6e\xb0\xb4\xb4\x5b\xce\x2f\xad\x2f\x00\x21\xde\xd2\xb6\xb1\x0e\xca\x36\x4e\x93\xa5\x4f\xd1\xca\x5a\xe3\xe5\x7c\xd5\xfa\x4e\x4e\x56\xe2\xb1\xf8\xa8\xf9\x24\xa5\x47\xc3\x18\x5a\x7f\xdd\x2d\x15\x59\x91\x8e\xd6\xe8\xbc\xe4\xa9\xac\xda\x20\x0c\x20\xfb\xa1\x01\x06\x2f\x80\xf0\xa4\xdd\x93\x0e\x4b\x67\x64\x95\xd5\x64\xbc\x34\x56\x3e\xc7\x86\xc7\xe6\x18\xd9\x96\x1f\x9c\x32\x22\x2d\x97\xcb\xb0\x5a\xad\x3a\x7d\x1f\x7f\xfc\x71\xf8\xd5\xaf\x7e\xd5\xd3\xaf\xcc\xce\x60\xdf\x7a\x94\x82\x0a\x6e\x79\xc7\xa3\xcf\x10\xe7\x22\xbc\xd1\x95\x20\xe9\x50\xc0\x0e\x70\x70\x60\x26\xb1\xc3\xbd\xed\x33\x58\xea\x49\x37\xd0\x12\xa4\x75\xaa\x1a\x2f\x15\x2f\x51\x6e\x7f\x33\xb5\x4d\xeb\x20\x66\x1d\x80\xac\x40\x61\x2c\x8f\xc5\x3f\x4d\x8e\xb3\x33\xa6\xfc\x38\x40\x34\x45\xdf\x32\x45\x7d\x9c\xaa\x9e\x68\xba\xc7\x96\x25\xc9\x6b\x9d\x71\xe1\x9c\xf6\x54\x0c\x8a\xb8\x81\x82\x2a\x68\xcd\x1f\x49\xd7\x58\x20\x42\xe9\x7e\x88\x41\x5c\xa2\xb1\x83\xf4\xd4\x7a\x34\xbd\x56\x7b\xa7\xf2\xc7\x4b\x52\x07\x07\x28\x6e\xcc\x20\x22\x12\xb7\x11\x98\x98\x4d\x49\x81\x3f\xcb\x8b\xd3\x21\xe8\x94\xf6\xb2\xf4\x64\x25\xd0\x60\x20\x11\x6c\x20\xbe\x00\x0c\xd0\xc1\x61\x78\x3f\xca\xcf\x7e\xf6\xb3\xf0\xe9\xa7\x9f\xe6\x76\xb8\x1c\xe5\x96\xff\x18\xdd\xb9\x03\x6c\x2e\xbf\x77\x40\xf2\x3e\xd4\xe5\x92\x36\xd8\x8d\x29\x57\x6c\xc3\xeb\x93\x14\xe6\x01\x31\xb9\xf5\xca\x0b\x4a\xa4\xeb\xd6\x4f\xcb\xf8\x3b\x65\x1b\x10\x75\x87\x01\xfb\x91\x81\x52\x8a\xc3\xb8\x0e\xbd\xfd\x0d\x8c\x8d\x94\x97\x43\xa5\x38\x8e\xd2\x17\x09\x19\xce\x1f\xca\x7e\x2a\xab\x55\xb0\xd4\x17\x6b\xc5\x08\xc9\x35\x0e\xa3\xfc\xe0\xf8\x38\x9f\x52\xbe\xf4\x9e\x92\xe5\xec\x69\xc0\x0f\xfb\x83\x7f\x29\xdd\x94\x5e\x1c\xde\x12\x95\x0e\x8e\x1f\xa7\x0f\xe7\x97\xe4\x13\x17\x86\xfd\xa3\xfc\xe5\xea\x02\xd5\x71\x72\xbe\x73\x34\xa8\x0f\xed\xd2\x52\x3a\x33\xd0\x1c\xce\x04\xf9\xe4\x93\x4f\x62\x7b\xdd\x0a\x21\xd0\x82\x0f\x77\x1b\x9c\xf4\x7a\xa0\xee\xf8\xfb\x94\x2f\x59\x6e\xc1\xe9\x4c\xff\xd2\xaf\x20\xb7\x5f\x4c\xa6\xf2\xa6\xbb\x6e\x6d\x34\x4d\xd3\x1d\xcb\x0f\xc9\xd1\xfc\xed\x1f\x7e\x73\xa8\xdd\xdf\x92\x2e\x47\xb5\xf9\xd0\xfe\xa5\x61\xed\xac\x13\x00\xc0\x0f\x7f\xf8\xc3\x2e\x6f\x3f\xfd\xf4\x53\x2e\xef\x71\xfd\xc3\xed\x9b\x6a\x93\x52\x3f\xc4\xb5\x51\xae\xdd\x70\xba\x23\x11\x06\x28\x9c\xf3\x0f\xdb\xc1\xb6\xb1\x5f\x5c\xdb\xe1\xfa\x5d\xec\x07\xe7\x93\xe5\x9a\xcb\xd7\x1c\x7d\xd2\x20\xaa\xa5\x87\xca\x0f\xaa\x0e\x70\xb6\x39\x1e\x3c\x6e\xb4\xc4\xd5\x3b\x4c\x54\x1f\x67\x01\x42\x5a\xbe\x4a\xf5\x3e\xe5\xd1\xc6\x4f\xae\x0e\x48\xe9\x90\x7c\x94\xda\x62\x27\xaf\x7d\x64\xd1\x43\x69\xa2\x25\x24\x8c\x65\x80\xe0\xa3\x74\x58\x65\x39\x7f\x24\x3f\xfe\x93\xe9\xbf\x31\x4d\xff\xab\xe4\x2e\x4b\xe3\x32\x93\x34\x9b\x62\x92\xe7\x74\x51\xf7\x56\xb9\x03\x89\xdf\x8f\xa2\xe4\xa8\xb7\x7b\x42\x08\x21\xc6\x18\xf1\xb5\x81\xac\xfd\x54\xce\xd3\xbb\xb7\xef\x39\xa5\x6e\x4e\x76\x0a\xdd\x14\xff\x98\xf4\x7a\xcb\x41\xd3\x6d\x21\x4f\x1a\xbc\xe1\xb9\xfe\x4d\x3d\x76\xe5\xd6\x63\x8b\xbe\x31\xf6\xdd\xbc\xd4\x1e\x97\x1c\xe5\x18\x44\x00\x13\x46\x39\x25\x11\x87\x26\x39\xfb\x00\xc3\x0a\xe7\xa9\x20\x92\xcf\x5e\x7a\x97\x80\xe2\xb1\x82\x99\xc7\xea\xd7\xff\x0c\x11\x9f\x35\x00\xee\x3e\x87\x24\x1d\x1c\x78\xa2\x80\x48\x3a\xdb\xf4\xe4\xc9\x93\x70\x7b\x7b\xdb\xbb\x4e\xc3\x08\x9a\x7a\x80\xd3\xfa\xc7\x31\x03\x42\xee\x20\xf8\x2e\x80\x8b\x07\x50\x3c\x14\x70\xb1\x3e\xe4\xe6\xd8\x19\x03\x5c\x72\x75\xe7\xea\xe3\x74\x4f\x0d\xbe\xa6\x02\xe3\x94\xac\xc4\x0b\x92\x2d\xf7\xd3\x97\x40\x01\xfd\x5a\xe3\x38\x5e\x89\x5f\xe3\xc1\xf6\xa8\x5f\xac\x23\xa0\x70\x8a\x97\x92\xc1\xf2\x9a\xaf\x9c\xef\x96\x74\x4b\x7e\x49\xfe\x6a\x69\xe5\xe2\x24\x39\xcd\x77\x4b\xfe\x71\x3e\x72\x34\x26\x8f\xb5\xf2\xa2\xe2\xac\x79\x89\xef\x2d\xe5\xc7\xf9\x66\xe1\x23\x6d\x3c\x7b\xf6\x2c\xe0\xfb\xf6\x8f\x73\x06\xc7\xb5\x40\x27\x05\x3c\xd4\x2c\x4f\xbb\xbc\x45\xf1\xa7\x3a\x39\x9f\xd2\xb8\x36\xec\xec\xec\x4c\xab\x5f\xd6\x32\x00\xe2\xde\x94\x87\x02\xbf\x95\xcf\x93\x06\x8b\x2f\xd6\x7a\xa0\xf9\x28\xd5\xb1\x29\xd2\x40\xf9\x20\xf5\x23\xf8\x5a\xe3\x97\xda\x15\xd7\xb6\x35\xbf\xac\xfa\xb1\x0e\xa9\xce\x59\xd3\xe0\xa9\xd3\x5c\x1a\xf0\xbd\xb5\x5e\x48\x3e\x4b\x75\x44\x2b\x2f\xe9\x9a\xfa\x95\xfc\x18\xf8\x2e\x29\xa1\xee\x71\x9c\x14\xcf\xe9\x90\x2a\xbf\x95\x2c\x0d\xd3\xa2\xc3\x52\x49\x25\xd9\xa9\xf9\x73\xf3\x86\x2b\x7c\xab\x7d\x2e\xde\xd2\x11\x7a\x48\x93\xd1\xd2\xa1\xc9\xe6\xf8\xe4\xb5\x71\x4a\x7e\xaf\xae\xc9\xd3\x7b\x79\x79\x39\x99\xce\x10\x82\xd4\x29\x51\xd7\xd6\x78\x2b\x7f\x6e\x7d\xb3\xea\xb3\xf4\x6d\x39\x36\x35\x1a\xeb\xb7\x64\x6f\x8a\x34\x8c\x29\x3f\x0b\x79\xec\xe4\xf2\x78\xe4\x1e\x43\xbf\x33\x45\x9e\xe4\xd6\x19\x0b\x79\xf2\x58\xf5\x9b\x42\x38\x92\x61\x0d\xe8\xe4\x12\x8b\xac\x4e\x2c\x8f\xe5\x38\x20\x43\xa5\xdb\x92\x5f\x9c\x2d\xcd\x9f\xb1\x83\xb6\xb5\x43\xf5\xf8\xef\xf5\xc7\x1b\x4f\x95\x85\xc5\x8e\xd5\xcf\x53\x00\xad\xc7\x4a\x63\xca\x35\xb7\x0e\x6a\x34\x05\x88\xf0\xf2\x53\x69\x99\x0a\x14\xe5\xca\x79\xae\x73\x07\x98\x53\xe8\xd6\xfa\x44\x4b\xdc\x54\x69\xd0\x68\xea\xfc\x99\x4a\x77\x8e\x1f\xd4\xb5\x54\xaf\xa7\x6a\x3b\x1a\x4d\x51\xbf\x39\x9b\xb9\x3e\x89\x64\xcd\x20\x4b\xc5\x1e\x6b\x43\x8b\xe3\x0a\xd8\xd3\x99\x59\x1a\x9f\x07\x34\x68\xe9\xc8\xf1\x0d\x0f\xfa\x94\x5e\x8a\x4f\x92\x93\x40\x04\x96\xb1\xe4\x89\x37\x1f\x29\x59\x6b\x5d\xb2\x96\x11\x95\x1f\x9a\x4e\x4d\x4f\x7a\x2f\xd5\x3f\xca\x0e\x15\x47\x95\x93\x64\x97\xd2\xe5\xf1\xdb\x42\x9e\x3a\xc9\xe5\x83\x24\x63\xb1\x83\x6d\x50\xf7\x94\x1f\x9c\x1d\x2e\xdf\x25\x7e\xce\xb6\xd5\x8e\xa5\xee\x59\xcb\x9e\xf3\x2d\xa7\xbe\x58\xdb\xbb\x54\xb6\x9a\x7f\x9c\x7d\x4f\x9d\xa6\xf4\x49\x79\x9a\xdb\x96\x28\x59\xce\x3f\x8f\x5f\x14\x49\x32\x52\xbe\x71\xe1\x9e\x7a\xae\xf9\x8d\x7d\xd4\xec\x48\x75\x0a\x93\xc5\x26\x99\x77\x9a\x62\xac\x1c\x1b\xd1\x64\x2c\x64\xa9\x18\x52\xbc\xe6\x93\x27\x23\x25\x1b\x39\x32\x39\xf9\x94\x63\xd7\x43\xb9\xfa\xd9\x4a\x24\xe8\x9d\x2a\x2d\xb9\xba\xa5\x4e\xe9\x3f\x8d\x4e\x9d\x96\x53\x94\x55\x6e\x3f\x21\x75\x98\x92\xac\x57\xce\x53\x97\x73\xed\x68\x83\x32\xc5\xaf\xc9\x79\xc9\xd3\x87\x5b\x06\x65\x8e\xdf\xab\xcf\x7a\xad\x85\x59\x6d\x72\x3c\x94\x6e\x4d\x2e\xb7\x5c\xbd\x3e\x49\xe4\x05\x1b\xda\x35\xd6\x69\xf5\x2f\xb7\x7d\x65\xb5\xd1\x9c\xc1\xdc\xea\x44\x8e\x0e\x6b\xa7\x14\xd0\x9f\x45\x86\xb3\xc3\xc9\x69\x32\x54\xfc\x14\xa0\xc8\x02\xbe\x72\x6c\x58\x3b\x97\xc7\x3c\x20\x4e\x49\x8f\xcd\xa7\xc7\xe6\xcf\x63\x26\xef\xc0\x65\x8d\xf3\xb4\x01\x6b\xdb\xf2\x80\x2b\x8f\x8e\xa9\xe9\x94\x7d\xcb\x29\x69\x4c\x5e\x9e\x2a\x0d\xa7\xce\xcb\x5c\x10\x77\xaa\x72\xf2\x8e\xa7\x56\x3d\x93\x09\x6b\x60\x02\x87\x4f\x81\x8c\x73\x2b\x97\x65\xa0\xe7\x2a\x00\xf6\x1b\x87\x71\x40\x45\x43\xbd\x16\x94\xc9\xd9\xc2\xbc\xd8\x9e\x64\x9f\x4a\x8b\x25\xdf\x25\xbe\x1c\xa0\xe6\x6d\x40\x5a\x1e\x53\xe1\x9a\x8d\x1c\x3f\x24\x1b\xd2\xbd\x66\x93\xf3\xd9\x03\x32\xbd\x75\xd0\xaa\x03\xfb\xe7\xe9\x50\x2d\xf5\xdc\xe2\xab\xd6\xee\x3c\x65\x99\xdb\xcf\x78\xda\xb1\xe4\x0b\xd7\x96\x3c\x61\x96\x72\x95\x28\xa7\x5c\x28\x79\x2d\x8c\xd3\x65\xcd\x37\x4b\x5e\x4a\x36\x2d\xba\x3c\x7a\x25\xfd\x38\x5e\xaa\xa3\x94\x2e\x4b\x1d\xe2\xf2\xc2\xda\xde\x28\xfd\x94\x1e\x8d\x2c\xfd\xd8\x94\x6d\x7f\x20\xaf\x65\x04\xe5\x28\x77\x4f\xc9\x69\x64\x6d\xf0\x9a\x7e\x4b\xc7\x35\x45\x83\xe7\xf4\x4a\xe1\xb9\x79\xa3\xe9\xb7\xc6\x4f\x69\xeb\xb1\xd2\x63\xcd\x83\x29\xeb\xd9\x14\x34\x85\x0f\x53\xd7\x63\x4f\x9b\xf4\x80\x0a\xaf\x4f\x16\x39\x6d\x10\xf0\xa6\x21\xbd\xd7\x06\x12\x6f\x7a\x73\xed\x58\xec\x73\x64\xe9\x83\x4f\x19\xae\xf1\x7a\xf4\xe1\x01\xd8\xa3\xc3\x32\x58\x4b\x61\x56\x3b\x69\x58\x2e\x10\x19\x93\x3f\x9e\x6b\x4d\x36\xab\xac\x2d\x9d\x8a\x35\x63\xac\x89\x94\x80\x10\xa7\xcb\x6b\xef\xb1\x0c\x1c\xa7\x02\x47\x38\xce\x5a\x09\xc6\x74\xf4\x16\x5f\x2c\x65\x2b\xf9\x61\x05\x7b\xb9\x1d\x98\x25\x7e\xcc\x00\x3d\xa5\x5f\x5e\x99\x77\x09\x4e\x4e\x69\x53\x2b\x1f\xab\xcf\xde\xb4\xe5\x76\xe6\x63\xc2\x29\x3e\xef\x20\xa0\xb5\x71\xcb\x80\x39\xc5\xa0\xe6\xd5\xfd\x2e\x6c\x5a\xf4\xa4\xf1\x9e\x7e\xd4\xd3\x1f\x4c\x51\x37\xa7\x00\x7b\x1e\xfe\xb1\xed\xf2\x5d\x8e\xcb\xa3\x51\xa0\x75\x30\x9c\xa2\x02\xe4\x02\x24\x8f\x0f\x54\xe5\xd6\x3a\x13\x2f\x48\xa4\xf4\x59\x3b\x38\x7c\xaf\xe5\x17\x95\x16\x8b\xae\x31\x0d\x9b\x4b\x2f\x97\xaf\x96\x32\xd4\xfc\xa6\xca\xc0\x5a\x97\xac\xf9\xa9\xc9\x5b\xeb\x4d\xce\xc0\xad\xb5\x53\x4f\xfe\x48\x7c\x9c\xbd\x20\xfc\xe1\x78\x10\x7e\xbd\x3e\x4a\x72\x9c\x2f\x14\x0f\xe5\x23\xe7\x0b\xc5\xcb\xd5\x53\xcd\x8e\x94\xbf\x16\x1e\x4d\xce\xe2\x93\xa5\xcc\xb9\xf2\xd3\xf8\xa9\xeb\x29\xec\x70\xbc\x96\x7a\x49\xd9\xe4\x7c\xca\x29\xa7\x9c\x7a\x61\x69\xf3\x9a\x1d\xce\x27\x4f\x1b\xa3\x7c\xd6\xda\x18\x25\x2b\xb5\x41\x53\x7a\xad\x0d\x51\x0b\x97\x9c\xa6\xc2\xb5\x84\x5b\xe4\x38\x79\x4b\xa6\x7a\xec\x6b\x7e\x79\xf8\x72\x64\x1e\x9a\xde\xa5\xed\xaf\xe8\xbf\x9b\xbc\x03\x83\xa6\x03\x87\x7b\x3b\x61\xec\x87\xc5\xa6\x65\xd0\xf4\x84\xe7\xe6\x09\x35\x18\x59\xfc\xb2\xc8\x59\x7c\xe5\x78\x34\x39\xcf\x18\x32\x46\xb7\xb7\x1f\xb3\x8e\x43\x63\xae\xc7\xd4\x13\x0f\xe5\xd6\x3b\x4e\xf6\x94\x75\xdd\xa2\xe3\xc1\x69\xac\x23\x52\x67\x32\xc6\xa6\x84\xee\x34\x3f\x34\xa0\x24\x81\xa5\xa9\x81\x8b\x84\x64\xb1\x3f\x96\x0e\x7a\x0c\x79\x3a\xd8\x9c\x4e\xd6\x1b\x26\xc5\x8f\x05\xb4\xb9\x60\x54\xeb\xc0\x28\x3f\xbc\x94\x23\x6b\xc9\x1f\x4d\xb7\x56\xef\xa9\x7a\xc8\xfd\x7a\xe5\x34\x1e\xc9\x27\x8f\x0d\x6f\x1a\x38\x1f\x00\xc5\x61\x7e\xeb\xbd\xe4\x13\x65\xcb\xe3\x8b\xe4\x03\xd6\x69\xcd\x1f\xab\x3f\x5a\x7e\x6a\x36\xc7\xe4\xcf\x14\x3e\x49\xfc\x56\x9f\x28\x7e\xc9\x17\xec\x93\xa4\xdf\xd2\x76\x28\xca\x6d\x33\x39\xfc\xac\x4f\xb9\x09\xc4\x89\xb0\x84\x79\xee\x35\x9f\x2c\xb6\x2c\x99\x6f\xe5\xf7\xfa\xa5\xc9\x5a\x3a\x0f\x2d\x4c\xb3\x21\x85\x5b\x6d\x8c\x49\x67\x0e\x69\x79\xc3\xc9\x9c\x9a\xac\x36\x72\x7d\x79\xa8\xfc\xb5\x52\x4e\x39\x68\xfa\x2c\xf1\x5c\xa7\x8b\x79\xb5\xfa\x6d\xf1\x43\xb3\x63\xe1\xb1\xe8\xb3\xe4\xa3\xc7\x8e\xc7\xbe\xb5\x9f\xd5\x74\x5b\x78\x2c\x7d\xb5\x76\xed\xe1\x9f\xca\x0e\x25\x6b\xa9\x8f\xde\x34\x4c\xa1\xc3\x93\x27\x53\xe8\xe3\x68\x4c\x99\x51\x63\xaf\x45\xb7\x99\x49\x72\x02\x1b\xb7\x0e\x70\x39\x03\x00\xb6\x67\x91\xb3\x82\x12\x6f\xe3\xb4\xd0\xd8\x4e\x35\x40\x5e\x9a\xc7\xf2\x70\xbe\xbc\x0b\x7a\x6c\x03\x39\xc0\x69\x7c\x7a\x4c\xa0\xcb\x2b\xeb\xa9\x23\x96\xbe\x64\x2a\x7d\xa7\x90\x4b\x79\x28\xff\x73\x74\x7b\xf8\xa7\x06\x45\xa7\x04\x5c\x5e\xdd\xb9\xbe\x4c\xa1\x83\xe3\x19\x53\x07\x3d\x3c\x53\x97\xc3\x18\x39\x2d\x0d\x53\x97\x9f\x45\xb7\x8b\xa6\xec\x4c\x25\x87\x3d\x09\xce\xf1\xc9\x03\xa6\xb8\xce\x93\x03\x68\x94\x1d\xac\x8f\xe3\xb1\xc4\x7b\x64\x72\x2a\x88\x15\x18\x59\x40\x54\x4e\x03\xb6\x34\x68\x89\x47\x1b\x50\xa9\xf4\x4a\x94\xd3\x10\xa5\x01\x8c\x2b\x2f\xa9\xae\x71\x7e\x4a\xf9\x63\xcd\x23\x4b\xbd\xf0\xe6\xa9\xa4\x8f\xd2\x29\xa5\x5f\xca\x3b\x2d\xfd\x9a\x1d\xc9\x37\x8f\xbf\x94\x0f\xf8\x57\xea\x47\x2c\x36\x24\x3e\xca\x6f\x6b\xb8\xe6\x27\x97\x2e\x4b\xbb\xd3\xea\x3b\x67\x53\xaa\x4f\xde\x7a\x40\xc9\x69\xed\x51\xd2\xc9\x91\xd4\x66\xad\x6d\x5e\xf2\x07\xeb\xd1\xf2\x95\xb2\x2f\xd5\x29\x8a\x4f\xb2\x43\xf9\x23\xf1\x48\x65\x6e\xcd\x1f\xce\xce\x20\xbf\x2c\x05\x65\xb9\xb7\x54\x74\xab\x2d\x4b\xa5\xa5\xe4\x3d\x95\xc1\xea\x9b\x54\xb8\x9c\x9c\xd6\x21\x70\xe4\xf1\xcb\x4a\x96\x06\x3f\x85\xce\x87\xd2\x93\x53\x2f\xc6\xd8\xc8\x25\xab\x8e\xa9\xf2\xf2\x21\xf4\x5a\xea\x70\x8e\x7d\x4b\x99\x4a\x1d\x1b\xa7\x47\xeb\xaf\x28\x5d\x9e\xb4\x79\xf3\xd8\xea\xb7\x35\xde\x9a\x6f\xf8\xda\xab\x83\x23\xad\x6f\xcc\xb1\x49\xf5\xcf\x96\xb4\x59\x74\x7b\x78\x3c\x72\x53\xe7\x3d\x27\xe7\xb1\x3f\x26\xed\x53\xfa\x2d\x11\xa7\xdb\x94\x1e\x4b\x47\x21\x29\xb7\x74\x0e\x54\xbc\x94\x21\x52\x82\x28\xdb\x9c\x0f\x5a\xa7\x74\xca\x4e\xea\x21\xf5\x79\x75\x9e\x02\x1c\x4d\x05\xb0\x72\xf5\x3c\x06\x20\xe6\xb1\x35\x66\xc0\x18\x63\x77\x2a\xbe\x5c\xd9\xdc\xc1\xa6\x8d\xb3\x74\xe0\x63\x06\x18\xca\x9e\xc4\xaf\x75\xbe\x5e\x9b\x1a\xef\x18\x7d\xa7\x04\x45\x53\xe8\x98\x62\x40\xb4\x8c\x59\x16\xfe\x29\x7c\xca\xe9\x9b\xad\xba\xad\xf2\x56\x7d\x53\xb4\xa9\xdc\xeb\x6c\xf0\x63\x01\x18\x16\x27\xbc\x99\x3c\x65\xe7\xad\x55\x9e\x1c\x80\xc6\xf1\x71\x3a\x31\xb8\xc2\xfc\x16\xf2\x36\xb6\xf4\x9e\xab\x14\x38\x5e\x1b\x1c\x38\x39\x4a\x87\xb7\xc3\xe4\xf2\x9b\xe2\x91\xca\x85\xf3\x43\xf3\x4f\x4b\x8b\x25\x6f\x31\x69\x71\x5e\xd9\xdc\xce\xd2\xa2\xcb\xd2\x1e\xf0\xb5\x16\xc6\xd9\x91\xee\xa5\x70\xcb\xbd\x55\x4e\x6a\x87\x39\xed\xc5\x5a\x47\xb8\x3c\xb0\xe6\x8d\xe4\x97\xe6\x07\x77\xad\xa5\x3f\xa7\x2c\x72\xda\x10\xd5\x3f\x72\xfc\x5a\x59\x7a\xca\x16\xeb\xb1\xd8\x97\x6c\x53\x71\x9a\x0e\x89\xbc\xe5\x94\x53\x97\xb8\x3a\xa8\x5d\x63\xff\xa8\xf8\xb1\x3a\x3c\xf5\x5b\x0c\xf4\x34\x66\x51\x39\xc3\x23\x55\x1e\x4a\xde\xd3\x98\x4c\x89\x36\xd8\x1c\x43\x56\x79\xca\xdf\x29\xfd\xb0\xfa\xf0\x2e\xf5\x5a\xd3\xff\x10\x79\xf1\x10\xa4\x95\x39\xe6\x7d\x8c\x64\x4d\x83\xa7\xaf\xb0\x74\xbc\x16\x3b\x52\x98\xc5\x0f\x2b\x8f\xc6\xeb\xd5\x2d\xf5\x61\x39\xf6\x73\x79\xc7\xf8\xad\xd9\xf0\xda\xcc\xf1\x23\x47\xf7\x43\xe4\xdb\xd4\xf5\x84\xb3\x91\xa3\x7b\xaa\xfe\x48\x2a\xef\xdc\x36\xea\x62\x90\xc2\x3d\xce\xe5\x74\x6e\x52\x41\x5b\x7f\x29\x7d\x16\xd2\x3a\x47\x8b\xbe\x29\x07\x1b\xef\xc0\x3d\x45\xc7\x30\x05\x69\xa0\xd4\x03\x5a\x1f\x92\xde\x05\x90\xcc\xe9\xdc\x73\xfd\x18\xab\xc3\x2b\x93\x6b\x6f\x8c\x9f\x5a\x1f\x30\x75\x1b\xb1\xd4\xe1\x29\xfa\x8d\xb1\xf9\x90\x23\xe7\xc9\xb7\x53\xfb\xa7\xf5\xf5\x9c\xee\x53\x95\xab\x97\xdf\x5a\x4f\x3c\x76\xa6\x06\x5c\xda\xf8\xee\xa5\x87\x6a\xf3\x2e\xca\x19\x48\xa5\xc2\xb1\x02\xa2\x1c\x3e\x4e\x86\xf3\x27\xa0\x3f\x1c\x4e\xf1\x78\x6c\x5b\x80\xd7\xd8\x4a\x97\xeb\x0f\x95\x3e\x8f\x7e\x8d\x38\x5b\x9a\x2e\x29\xef\x25\x1d\xd4\xb5\x37\xde\x9a\x67\x9c\xec\xd8\xb2\xb0\xfa\xec\x49\x9f\x26\x87\xfd\x92\xc2\x72\xaf\xbd\xe9\xc8\x95\xd3\x7c\xb0\xa4\x2f\xa7\xad\x72\xf9\x2a\xf9\x2c\x95\x87\xd5\x0f\xad\x7d\x60\x1a\xdb\xff\x48\xe9\x90\xfa\x11\xa9\x4d\x5b\xf3\x9b\xf2\x87\xbb\xb6\xe6\x81\xa5\x6f\x91\xea\x8f\x45\x0e\xcb\x52\x76\x39\x1d\x16\x3f\x2c\x65\xe6\xb1\x61\x6d\x7b\x5e\x39\xab\x0f\x22\x69\x99\x66\x6d\x08\x92\x51\x6b\x27\x61\xa9\x64\xf8\xde\x52\x78\x9a\x6e\x89\x72\xe5\x1e\x9b\x0d\x8d\x3c\x65\xfc\x15\x7d\x45\x1c\x9d\xb2\x9d\x79\x3a\x37\x2f\xaf\xa7\x13\xb5\xf4\x3d\x9e\xf4\x8c\x49\xbb\x67\xe0\xce\x1d\xfc\xa7\xd2\xed\x0d\xcf\x1d\xec\xde\x85\x6e\xca\xce\xd8\x72\x95\xf4\x58\xe4\xbc\x36\xc7\xf2\x5a\x79\x4c\x72\xff\x0f\xf9\x63\xeb\x7e\x2d\x7e\x67\x93\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x08\xf7\xe8\xd3\xa5\x14\x03\x00") - -func web_uiV1StaticMstile310x310PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticMstile310x310Png, - "web_ui/v1/static/mstile-310x310.png", - ) -} - -func web_uiV1StaticMstile310x310Png() (*asset, error) { - bytes, err := web_uiV1StaticMstile310x310PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/mstile-310x310.png", size: 201893, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticMstile70x70Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\x92\x2b\x6d\xd4\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\x00\x00\x20\x00\x49\x44\x41\x54\x78\x9c\xed\x7d\x7b\x70\x1b\xd7\x79\xef\xef\x9c\x5d\xec\x02\x20\x16\x04\x01\x10\x24\x20\x3e\xa0\x17\x29\xcb\x90\x2c\x1b\x7e\x51\x71\x43\xc5\xb1\xe5\xc4\x95\xe3\x1b\xc5\x49\xa3\xb6\xa9\xfa\x98\xea\xf6\xde\x3e\x72\xd3\xde\x4e\xa6\xcd\x74\x32\x99\xde\x4e\x26\x93\xe9\x6d\xd3\xdb\x34\x13\xb5\x79\x28\x69\xea\x3c\x5a\x25\x8e\xed\xc4\xaf\xd8\x96\xe3\x48\x7e\x88\xb2\x1e\xb4\x2c\xc2\xa4\x44\x52\x14\x48\x42\x20\x08\xe2\xb9\xbb\xd8\x3d\xe7\xfe\xb1\x80\x44\x51\x7c\x80\x14\x5f\x4a\xf8\x9b\x59\x13\x23\x63\x1f\x38\xdf\x6f\xbf\xf3\x9d\xef\xfb\xce\xf7\x01\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\x6b\x58\xc3\x1a\x7e\xb5\x40\x56\xfa\x01\x96\x0b\xd1\x68\x94\x02\x40\x30\x18\xbc\xe6\xdf\xc7\xc6\xc6\xa0\xeb\x3a\x00\xa0\xab\xab\x8b\x2d\xff\x93\xad\x2c\x7e\x69\x08\x10\x8d\x46\xa9\xcf\xe7\x83\xcf\xe7\x83\xa2\x28\x00\x40\xcb\xc7\xd4\xcf\x98\xf2\x99\x4d\xf3\x97\x01\x80\xa6\x69\x6c\x6c\x6c\x0c\x63\x63\x63\x38\x76\xec\xd8\x2f\x25\x39\x6e\x5a\x02\x74\x74\x74\xd0\x60\x30\x08\xbf\xdf\x5f\x11\x2e\x05\x20\x82\x43\x14\x19\x91\x6a\x74\xc1\xed\xd2\x84\x40\xad\x2a\x36\xc9\x06\xf1\x3b\x4a\x82\xd7\xa1\xd3\x5a\x91\x11\x3b\xe5\x44\x22\x1c\x94\x51\xae\x9b\x04\xba\x6a\x63\x19\xd5\x66\x4e\xa8\x22\x4b\xe6\x64\x73\x24\x2b\x9b\xf1\xac\x6c\xa4\x74\x91\xab\x9c\xc0\x00\xae\x1c\x4c\xd3\x34\xd6\xdf\xdf\x8f\x23\x47\x8e\xfc\x52\x10\xe2\xa6\x22\x40\x67\x67\x27\x0d\x87\xc3\x90\x65\xd9\x12\x36\x20\xd9\x4c\x62\xf7\xe5\x6d\x4d\x8d\x19\x69\x47\x63\x56\x8a\x7a\xf3\xb6\x2d\x1e\x55\xdc\x24\x9a\x24\x40\x40\xec\xf3\xfd\x81\xdc\xfa\xaf\x61\x12\xa4\x8b\x92\x39\x98\xac\x29\x9d\xbb\xec\x2a\x9d\x19\x51\xb4\xe3\x09\xa5\x14\xcb\x49\x66\x06\x04\x3a\xca\x84\x48\x26\x93\xac\xbb\xbb\x1b\xb1\x58\xec\xa6\x24\xc4\xaa\x27\x40\x34\x1a\xa5\x6d\x6d\x6d\x50\x14\x85\x02\x90\x00\x48\xb5\x45\x31\xb0\x3e\x65\xdf\xd9\x9a\xb2\xbf\x2f\x98\x91\xef\x93\x0d\xd2\x42\x40\xc4\xa5\x7c\x0e\x0e\xc0\x24\x3c\x35\xee\x2c\x9d\x18\xac\x53\x7f\x7e\xc1\xab\xbe\x38\x5c\xab\xc5\x4c\x8a\x02\x00\x1d\x00\xeb\xe9\xe9\x61\x37\x9b\x66\x58\xb5\x04\xe8\xec\xec\xa4\xed\xed\xed\x57\xde\xf4\x1a\x8d\xfa\xdb\x13\x35\xbb\x37\x5f\x76\x3c\x1a\xc8\x49\x3b\x05\x4e\xdc\x2b\xf9\x7c\x1c\xdc\x28\xd8\x58\xac\xcf\x5f\xfc\xc9\xb9\x40\xe1\x87\xc3\xb5\x5a\x8c\x13\x8b\x0c\xd9\x6c\x96\x75\x75\x75\xdd\x14\x5a\x61\xd5\x11\x60\xcf\x9e\x3d\x34\x14\x0a\x51\x00\x12\x61\x70\xb6\xa4\xed\x3b\xb6\x0d\xd7\x7c\x22\x9c\xb2\x3f\x2c\x30\xea\x5f\x75\x0f\x0c\x8b\x0c\xe3\x4e\xe3\x8d\xee\xc6\xfc\x77\xce\x35\xe4\x7f\x52\x90\x58\x0a\x80\x9a\xcd\x66\x8d\x58\x2c\xb6\xaa\x57\x17\xab\x66\x3c\x27\x0b\x5e\x30\x89\x7b\x4b\xc2\x79\xff\xed\x97\x5c\xff\xdd\x97\xb7\xed\x5c\x6a\xf5\xbe\x98\xd0\x04\x16\x3f\xd7\x90\xff\xd6\x5b\xeb\x72\xdf\x4e\x3b\x8d\x21\x94\x89\xb0\x5a\x35\xc2\x8a\x13\xa0\xa3\xa3\x83\x6e\xdb\xb6\x8d\x02\x90\x28\x83\xeb\x96\xd1\x9a\xdd\x77\x0d\x2a\x9f\xac\x55\xc5\x3b\xc9\xca\x3f\xde\x82\x61\x50\x9e\x7a\x27\x90\xff\xe6\x9b\xad\x99\x7f\xcd\xd8\xcd\x38\x00\x35\x99\x4c\x1a\x87\x0f\x1f\x5e\x55\x24\x58\xd1\x11\xde\xb7\x6f\x1f\x55\x14\x45\x02\x87\xb3\x75\xdc\x7e\xf7\x7d\xe7\x6b\x3f\xe3\xcf\xdb\xee\xbb\x99\x05\x3f\x15\x3a\x65\x89\xb7\x9a\xb2\x5f\x3a\xd1\x9c\xfd\x77\x4d\xe4\x49\x00\xfa\x99\x33\x67\xd8\x6a\xf1\x2b\xac\xc8\x48\xef\xde\xbd\x9b\x86\xc3\x61\x0a\xc0\xe9\x2e\x0a\x4d\x9d\x7d\x75\x9f\xde\x30\x66\xff\x38\x01\x91\x56\xe2\x79\x96\x1a\x1c\x40\x56\x36\xba\x5f\xdd\x90\xfe\x6c\xac\xbe\xf8\x0a\x08\x72\xd9\x6c\x56\x7f\xfc\xf1\xc7\x57\x9c\x04\xc2\x72\xdf\x70\xdf\xbe\x7d\xb4\xa1\xa1\x41\x22\x1c\x9e\x1d\x97\x5c\x8f\x3d\xfc\x8e\xff\x6b\xf5\x79\xe9\x3e\x02\xb2\xec\xcf\xb2\x5c\x20\x00\x64\x93\x06\x36\x25\x1d\x1f\x09\xe4\xa4\xa6\x78\xad\x76\x86\x38\x6d\xc5\x68\x34\xca\x00\x60\x78\x78\x98\xaf\xd4\xb3\x2d\xdb\xa0\x47\xa3\x51\xfa\xc8\x23\x8f\x08\xb2\x2c\x3b\x5c\xaa\x10\x7e\xf8\x1d\xdf\x17\x6f\x8b\xbb\xfe\x52\xe4\x74\x45\x97\x73\xcb\x09\x02\x42\xbd\x45\xdb\xf6\x2d\xa3\xce\x87\x27\xec\xc6\xf9\x94\xd3\xb8\x14\x0a\x85\x4a\xc0\xca\x91\x60\x59\xa6\x80\xb2\xca\x17\x01\x38\xc3\x63\xf6\xfb\x76\xf7\x78\xff\x9f\xb3\x24\x84\x97\xfa\xbe\x1c\x1c\x8c\x80\x69\x22\x53\x55\x91\xa9\xaa\x8d\x15\x74\x81\xeb\x8c\x72\xc6\x00\x26\x70\x88\x36\x93\x88\xb2\x41\xed\x8e\x92\xe0\x94\x0d\x62\x17\x19\x11\x81\xa5\xb7\x42\x18\xb8\x7e\x3a\x94\xfb\xbb\x97\x37\xa7\xff\x11\x40\xee\xe0\xc1\x83\x2b\x32\x1d\x2c\xf9\xf2\x6a\xef\xde\xbd\xd4\xef\xf7\x4b\x84\xc3\x7d\xf7\x80\xfb\x77\xef\x1e\x74\x7f\x56\xe0\xc4\xb9\xd8\xf7\xe1\xe0\xd0\x05\xae\x26\x6b\x4a\xc9\x11\xb7\x36\x74\xd9\x55\x8a\xa7\x9c\xa5\x78\x56\x36\x53\xaa\x8d\x4d\x70\x40\x2d\xbb\x70\xaf\x04\x7b\xca\x10\xc1\x21\x12\xc0\x6e\x33\x89\xd3\xa5\x09\xf5\x9e\xa2\x2d\x50\x9f\xb3\x85\x1a\xb2\x52\x53\x43\x4e\x6a\x74\xea\xd4\xb5\xd8\x94\x20\x80\x94\x93\xcd\x1a\x00\x4e\x00\x85\x29\xcf\xb4\x6c\x58\x52\x02\x54\xac\x7c\xd1\x24\x81\xdd\x3d\xde\xcf\x6e\xbe\xec\xf8\xfd\xc5\x1c\x48\x0e\x8e\xb4\xc3\x48\x9e\xf7\x15\x7b\x07\xbc\xea\xd9\x11\x45\xef\xd3\x45\x9e\x00\x90\x29\x1f\x85\xf2\xa1\x97\x0f\x03\xd7\x12\xc0\x0a\x22\x11\x50\x0e\x48\xba\xc8\xa5\x94\x68\xd8\x53\x35\x86\xf3\xbc\xbf\xe8\x06\xe0\xa6\x0c\x5e\x7f\xde\xb6\xbe\x65\xdc\xbe\x65\xc3\x98\x63\x4b\x43\x56\x0a\x09\x9c\xd0\xeb\x9f\x66\x7e\x38\x17\x28\x1c\xed\x6a\xce\x3e\x8f\x15\x12\x7c\x05\x4b\x46\x80\xfd\xfb\xf7\x53\x59\x96\xed\x0e\x9d\x36\xed\x79\xdb\xff\xa5\x50\x46\xfe\xc0\x62\x88\x9e\x03\x28\xda\xcc\x5c\x4f\x7d\xe1\xec\xb9\x86\xc2\x1b\x97\x5d\x7a\x0f\xa3\x48\x00\x48\x02\x48\x03\xc8\xc1\x12\xba\x8a\x49\x51\x3c\x5c\xff\xe6\x4f\xc6\xe4\xb0\xb1\x58\x3e\x24\x00\x4e\x46\xe1\x4a\x28\x25\x4f\x42\x29\x79\x8f\x37\x67\x03\xb5\xaa\xb0\x7e\xf3\x65\xe7\x9d\x5b\x47\x6b\x76\xd4\x15\x44\xff\x42\x08\x7d\xb9\x46\x1f\x7a\x69\xf3\xf8\xd7\x38\xc1\x10\x80\x5c\x36\x9b\x5d\x31\x12\x2c\xc9\x54\x57\x11\xbe\x4b\x13\x36\x3c\x7a\xc6\xff\xd5\xfa\xbc\xb4\xf3\x46\xaf\xc9\xc1\x31\x56\x53\x4a\xbc\xb5\x2e\x77\x34\x56\x5f\x38\x56\x12\xf9\x20\x80\x11\x5c\x15\x7c\xe5\x4d\xbf\x22\xf4\x64\x32\x09\x5d\xd7\x31\x3c\x3c\x3c\xa7\x3b\xb6\x92\x4f\x20\x49\x12\x42\xa1\x10\x30\x39\xc4\x5c\x26\x03\x00\x17\x00\x3f\x80\x00\x65\x68\x6a\x4e\xdb\xa3\x77\x0c\x29\xf7\x35\x8f\xcb\x1b\x28\xaa\xd3\x0a\xaa\xc8\x0a\xdf\xdf\x31\xfa\xf9\x54\x8d\xf1\x0c\x80\xf3\x00\x32\x07\x0f\x1e\x34\x16\x30\x24\x8b\x82\x45\x27\x40\x45\xf8\x8a\x2a\x6c\xfa\xf0\xe9\xfa\x6f\x78\x8b\xb6\x3b\x6e\xe4\x7a\x1c\x1c\xc9\x9a\xd2\xc8\x1b\x2d\x99\x17\x7b\xfd\xc5\x5f\x70\x8a\x41\x00\x71\x58\x82\xcf\x61\xd2\x9b\xde\xdf\xdf\x8f\x78\x3c\x8e\xee\xee\xee\x45\x7b\xa3\x3a\x3b\x3b\x69\x28\x14\xaa\x44\x23\x45\x00\x76\x58\x64\xf0\x02\x68\x04\x47\x4b\x63\x56\xba\xfd\x9e\x01\xf7\xee\xd6\x94\xbd\x8d\xce\x32\xa4\x0c\x9c\x3d\x73\xcb\xd8\xd7\x63\x81\xe2\x77\x00\x9c\x03\x90\xea\xea\xea\x32\x56\x32\x56\xb0\xa8\x04\xa8\x08\xdf\xa9\xd3\xf0\xde\x53\xf5\x87\xfc\x05\xe9\xce\x1b\xb9\x5e\x4e\x32\x33\xaf\xb5\x4e\xbc\x70\xb6\x31\xff\x12\xa3\xe8\x05\x30\x84\xab\x82\xd7\x35\x4d\x33\x96\x33\x39\xa3\xa3\xa3\x83\x86\xc3\xe1\xc9\xa1\xe9\x0a\x11\x42\xe0\xd8\xd0\x9c\x96\xef\xb9\xef\xbc\x67\x4f\x20\x67\x0b\x4d\x9d\x1a\x38\x80\xb7\xd6\x65\x5f\x7c\x65\x63\xfa\x4b\x20\x38\x09\x20\x11\x8f\xc7\xf5\xa7\x9e\x7a\x6a\x45\x6d\x80\x45\x23\x40\xc5\xda\x97\x0d\xd2\xf4\xe1\xd3\xf5\x5f\x6b\xcc\xca\xef\x5d\xe8\xb5\x18\xe1\xac\xbb\x31\x7f\xfc\xe8\xfa\x89\x1f\xaa\x36\xd6\x0d\x60\x10\x40\xc5\xb8\xd3\x57\x43\x12\xc6\x24\x6f\xa6\x88\xab\x53\x43\x13\x65\x68\xdb\x1e\x77\x7d\xb0\xa3\xbf\xf6\x01\xd9\xa4\xf6\xca\xf7\x87\x6a\xd5\xde\x1f\x6e\xbf\xfc\x39\x93\xe2\x38\x80\xa1\x6c\x36\x5b\x58\x0d\x9e\xc0\x45\x21\x40\x79\x30\x24\xca\x10\xd8\x73\xd6\xff\xf7\x1b\xc6\x1c\x8f\x2d\xf4\x5a\x13\x76\x23\xf5\x42\x5b\xea\x3f\x2f\xd6\x69\x47\x00\xf4\xc2\x52\xf7\x69\x00\x6a\x3c\x1e\x67\x2b\xfd\xc6\x4c\xc5\xa4\xbc\x05\x09\x16\x11\x1a\x01\x6c\xa8\x2d\x8a\xd1\x07\x62\x75\x1f\x6f\x4a\xcb\x9b\x0a\x12\x4b\x7f\xf7\xf6\xd1\xbf\xcd\xda\xcd\x97\x61\xcd\xfb\xb9\x95\x9c\xf7\x27\xe3\x86\x09\x10\x8d\x46\x69\x34\x1a\x15\x01\x78\x3a\x7b\x3d\x9f\xde\x71\xc9\xf5\xe7\x0b\xb1\x8c\x39\x38\xde\xf5\x17\x4f\xbf\xd8\x36\xfe\x1d\xd5\xc6\x4e\xc2\x1a\xa8\x24\x80\x42\x36\x9b\x35\x56\xc3\xdb\x32\x1b\x26\x85\xb3\xed\xb0\xa6\x85\x16\xca\xd0\x76\xd7\xa0\xfb\x83\x23\x6e\x3d\x36\xe0\x55\x9f\x06\x10\x03\x90\x7e\xf9\xe5\x97\xd9\x6a\x09\x0d\xdf\x30\x01\x0e\x1c\x38\x20\x02\x70\xdf\x32\xe2\x7c\xec\xc1\x1e\xef\x97\xe9\x02\x62\xf7\x26\xe1\xec\x58\x78\xe2\x99\xae\xe6\xec\x0f\x38\xc1\x59\x58\x2a\x3f\xa3\x69\x9a\xda\xdd\xdd\xbd\xaa\x13\x2a\xa6\xa2\xec\xfb\x10\x01\xb8\x61\x4d\x0b\x1e\x58\x86\xea\x08\x80\x54\x4f\x4f\x8f\xb1\x9a\xd2\xc6\x6e\x88\x00\x65\xa3\xcf\x55\x9f\xb3\xdd\xf1\xd1\x93\x81\xff\x92\x4c\xea\x9d\xef\x35\x34\x81\xa9\xcf\xb5\xa7\xbe\xdb\xe7\x2f\x3e\x0d\x4b\xf8\x23\x00\x72\xf1\x78\xdc\x58\x6d\xea\xbe\x5a\x4c\xce\x71\x28\x1f\x0c\x37\x90\x0f\x10\x89\x44\x68\x38\x1c\x86\x24\x49\x90\x65\x19\xd9\x6c\xb6\xaa\xa5\x6d\x35\x58\x30\x01\xca\x2a\x4f\xb2\x19\xa4\xe9\x37\x4e\x06\x1e\xf7\xe7\xe7\x6f\xf1\x17\x6c\x66\xee\xc9\x5b\x93\xff\x36\x5c\xab\x3f\x0f\x4b\x3d\x8e\x00\x50\xbb\xba\xba\xd8\xcd\xf4\xd6\xcf\x84\xb2\x6d\x04\x4d\xd3\xb0\x10\x4d\x16\x8d\x46\x69\x24\x12\x81\x2c\xcb\x15\x5f\x44\x45\xbb\x5e\x49\x55\xbf\xd1\xdc\x82\x05\x11\x20\x12\x89\xd0\x9d\x3b\x77\x8a\xe0\xf0\x76\xf6\x79\xfe\x6a\xc7\x25\xe5\xcf\xe6\x7b\xa1\xbc\x64\x66\x7e\x14\xb9\xfc\x2f\x97\x95\xd2\xcf\x60\x09\x3f\xa9\x69\x9a\x7a\xe8\xd0\xa1\x9b\x5e\xf0\x8b\x81\xb2\x71\x29\x82\xc3\xb9\x61\xcc\x7e\xef\xb6\x61\xd7\x6f\x35\x64\xa5\xed\x84\x83\x8e\xd5\x94\xce\xbd\xdd\x98\xff\xde\xb9\x40\xe1\x65\x4e\x91\xb9\x91\x4c\xa3\x05\x85\x83\x3f\xf8\xc1\x0f\x12\x51\x14\x9d\x4d\x13\xf2\xaf\xbd\xaf\xb7\xee\x0b\x74\x9e\xb1\xfc\xa2\x68\xe6\x7e\xb4\xed\xf2\x97\x2f\x2b\xa5\xe7\x01\xf4\x00\xb8\x9c\x4c\x26\xb5\xef\x7e\xf7\xbb\x6b\xc2\x87\x35\x85\x6c\xdd\xba\x55\xa4\x0c\x9e\xf7\xbf\x5b\xf7\xd7\xf7\x5d\xf0\x7c\xa9\xae\x68\xdb\x61\x63\xb4\xc1\xc6\x68\xc0\xad\x89\x5b\x37\x8e\x39\x1e\x0b\x66\xe5\xd6\xf3\xbe\xe2\x6b\xb2\xcb\xa9\x06\x83\x41\x16\x8b\xc5\xe6\x1d\x52\x9e\x37\x01\x76\xef\xde\x4d\xfd\x7e\xbf\x24\x9a\x64\xdd\x23\x6f\xfb\xff\xb9\xa6\x24\xac\x9b\xcf\xf9\xba\xc0\xf4\x1f\x47\x92\x5f\x19\xa9\x2d\x3d\x03\xcb\x1b\x36\x96\x4c\x26\xf5\xd5\x96\x2b\xb7\x92\x78\xf8\xe1\x87\x05\x00\xca\x3d\x03\xee\x3f\xba\xfd\x92\xf2\x19\x32\x8d\x9b\x99\x80\x10\x8f\x2a\x46\x14\x4d\xa8\xed\xad\x2f\x1e\x55\x14\xa5\x98\xcd\x66\x31\x36\x36\x36\x2f\x12\xcc\x3b\xaa\x55\x76\x7e\xb8\xa3\x43\xca\x27\xbc\x05\xdb\x8e\xf9\x9c\x6b\x12\xce\x5e\x68\x4b\xfd\x7b\xdc\xa3\x3f\x0b\x4b\xed\xa7\xd6\x84\x7f\x2d\x3a\x3b\x3b\x29\x00\xc9\xa9\xd3\x96\x3b\x86\x94\x4f\xce\xb5\xa4\x6e\x4b\x38\x7f\xbb\x3e\x6b\x8b\x00\xb0\x47\x22\x91\x79\xdf\x6f\x5e\x04\xd8\xb7\x6f\x1f\x05\x60\x57\x54\x61\xc3\x1d\x17\x95\x3f\x9a\xcf\xbc\xcf\xc1\xf1\x66\x4b\xe6\x99\x58\xa0\xf8\x04\xca\x73\xfe\x9a\xf0\xaf\x47\x38\x1c\x06\x00\x7b\x53\x5a\xbe\x57\x32\xa9\x7f\xae\xef\x53\x10\x69\x7d\xca\xf1\x20\x00\x67\x79\x9f\xe4\xbc\x50\xf5\x09\x6d\x6d\x6d\xd6\xfa\x96\xc3\x7d\x6f\x7f\xed\xff\x90\xab\x78\xb8\xc9\xe8\xf7\xaa\xdd\x6f\xb4\x64\xbe\x0d\x4b\xed\x27\x35\x4d\x5b\x13\xfe\x34\x28\xef\x7b\x94\x5c\x9a\xb8\xbe\xda\x73\x3c\x45\x71\x13\xac\xb8\xc4\xd2\x11\x20\x1a\x8d\x02\x80\xdd\x57\xb0\x6d\xd9\x92\x70\xce\xcb\xd5\x9b\x93\xcc\xf4\x0b\x6d\xe3\xff\xca\xa8\xb5\xce\xd7\x34\xad\xb0\x66\xed\xcf\x0a\x5a\xb4\x99\x6a\xb5\x5f\xd6\x05\x66\x60\x01\xc2\x47\xb5\x27\x5d\x79\xfb\x01\xf7\x5d\x83\xca\x1f\xce\x27\xa5\x8b\x83\xe3\xa5\x4d\xe3\xff\x91\x97\xcd\x13\xb0\xfc\xfa\x85\x63\xc7\x8e\x2d\xe4\x59\x7f\x95\xc0\xe2\xb5\x7a\x8f\x41\xb8\x3e\xd7\x17\x39\x38\xfa\xbd\xea\x29\x58\x7e\x81\x79\xa3\x2a\x02\x94\xdf\x7e\xc9\x53\x10\x37\x6d\xbe\xec\xfc\xd0\x7c\x6e\xf0\xae\xbf\x78\xbc\xcf\x5f\x7c\x16\x65\xf7\x6e\x4f\x4f\xcf\xaa\xf1\x83\xaf\x46\x68\x9a\xc6\x00\xa8\x13\x0e\xa3\xff\x5c\x43\xfe\xd5\xb9\xbe\x3f\xec\xd6\x63\x03\x75\xea\x09\x58\xee\xe6\x79\x8f\x6b\x55\x04\x28\xc7\xbf\xdd\x3b\x2e\xb9\x7e\x6b\x3e\x6f\xbf\x26\xb0\xc2\xcf\x37\xa6\xbf\x0d\x82\xf3\x00\x52\xd9\x6c\x76\x55\xf9\xc1\x57\x23\xfa\xfb\xfb\x81\x72\xec\xe0\x95\x8d\xe9\x6f\x5c\xac\x55\x67\x5c\xdc\x8f\x3b\x4a\x89\x67\xb6\x8c\x7d\xb9\x9c\x24\x53\x88\xc7\xe3\xf3\x1e\xdb\x39\xfd\x00\xbb\x77\xef\xa6\x1e\x8f\x47\xb6\x97\xe8\x86\x07\x62\xde\xff\x23\xb2\xea\x08\xc0\x01\xbc\xd1\x9a\x79\xfa\x82\x5f\xfd\x11\x80\x0b\x00\x72\x87\x0e\x1d\x32\xe7\xfb\x80\xbf\x6a\x18\x18\x18\xe0\x91\x48\x84\x89\xa2\xc8\x4c\x0a\xfd\xdd\xfa\x62\x6f\x49\x60\xa2\x5b\x15\xbc\x36\x2b\xbf\x80\xe7\x25\x96\x3d\x13\xcc\xbf\xfe\x7c\x7b\xea\x2b\x79\x3b\x7b\x1d\x96\x76\xcd\x3f\xfe\xf8\xe3\xf3\x1e\xdf\x39\x23\x77\x95\x2d\x5c\x6d\x09\xe7\x6e\xbb\x51\xbd\xe5\x9f\x97\xcc\xd4\xc9\x75\xd9\x1f\xc2\xca\xe2\xc9\xf5\xf4\xf4\xac\xbd\xf9\x55\xe2\xd8\xb1\x63\xd8\xb5\x6b\x57\x0e\x40\xbf\x21\x70\xfd\x78\x4b\x36\x71\xa2\x29\xfb\xa4\xa3\x44\xfd\x04\x84\x16\x6d\x66\xca\xa4\x88\x03\xe8\x47\x79\x7c\xcf\x9c\x39\xb3\xa0\xf1\x9d\x95\x00\xe5\xca\x5a\x22\x38\x3c\x5b\x47\x6a\x1e\x9d\xcf\x85\x4f\x34\x65\x9f\xd3\x45\x1e\x03\x90\xd2\x34\x4d\x5f\x53\xfd\xd5\xa3\x62\x23\x95\x49\x30\x08\x20\xc5\x28\x7a\xf3\x32\xab\x68\x5f\x15\x56\x76\x54\x0e\x40\xa1\xa7\xa7\x67\xc1\x01\xa1\x59\x09\xd0\xd6\xd6\x06\x00\x92\x3f\x6f\x6b\x0b\xe4\xaa\x4f\xee\x2c\xd8\xcc\xcc\xdb\x8d\xb9\xa7\x51\x8e\xee\x75\x77\x77\x2f\xe4\xd9\x7e\xa5\x11\x8b\xc5\x58\x2c\x16\x63\xfb\xf6\xed\x2b\x28\x8a\xa2\xc2\xca\x8a\xaa\xd8\x6c\x0c\x80\x91\xcd\x66\xd9\xd1\xa3\x47\x31\x30\x30\xb0\xe0\x97\x6b\x56\x02\x94\x8d\x3f\xe7\xc6\xa4\xe3\xc1\xf9\x24\x7a\x9c\x6d\xc8\xbf\xa2\xd9\xf8\x79\x00\x69\x4d\xd3\xf4\x5f\x86\xd0\xee\x4a\xa1\x9c\x09\xc5\xa2\xd1\x28\x73\xb9\x5c\x00\x80\x5c\x2e\xb7\x68\x49\x32\x33\x0a\x75\x92\xfa\x77\x6f\x4a\x3a\xee\xaf\xf6\x82\x26\xe1\xc6\xdb\xc1\xfc\xb3\xb0\x92\x38\xd7\xde\xfe\x79\xa0\x52\xcc\x72\x3a\xe1\xce\x26\xf0\x68\x34\x4a\x27\x17\xc0\xd4\x75\x1d\xfd\xfd\xfd\x55\x25\xcd\xce\x48\x80\xd6\xd6\x56\x00\x90\xdc\xaa\xd0\xe4\x2d\xd8\xb6\xcc\x75\xa1\x0a\xe2\x6e\xed\xdc\xb8\xd3\x38\x07\x4b\x65\xad\x68\xce\xfb\xcd\x80\x49\xb9\x84\x57\x8e\xf2\xb6\x71\x23\x9b\xcd\xb2\xd9\x72\x21\xa7\x14\xd2\xaa\x1c\x00\x60\x84\xc3\x61\xbd\xa3\xa3\xc3\x38\x76\xec\xd8\xac\x44\x98\x91\x00\xe5\xc0\x82\xbd\x39\x6d\xbf\x97\xf2\xea\x0a\x37\x70\x00\x3d\x0d\x85\x57\x61\xbd\xfd\x85\xfe\xfe\xfe\x35\xe1\xcf\x80\xb6\xb6\x36\xda\xd1\xd1\x01\x59\x96\xed\x92\x41\xdc\xeb\xc7\x1c\xf7\x36\x4d\xc8\xf7\x50\x46\xc4\xb1\x9a\xd2\xbb\xbd\xfe\xc2\x8b\x50\x94\x91\x03\x07\x0e\xa8\xd3\x95\x9f\xab\xa4\xe1\x0b\x0c\xae\x2d\xa3\x35\x0f\x6c\x19\x75\x7e\xc4\x9f\xb7\x6d\x31\x29\x57\x2f\xd5\xea\xc7\x4f\xad\xcb\x7e\x3b\xee\x46\xf7\xae\x5d\xbb\x0a\xc1\x60\x70\xc6\xbd\x13\xb3\xcd\xeb\x14\x80\xb3\x65\xdc\xde\x51\x6d\xd4\xcf\xa4\x5c\xbf\xe0\x2d\x1e\x03\x90\x02\x60\x3c\xf7\xdc\x73\xab\x82\x00\x93\xaa\x8a\x02\xd7\x3b\xbf\x58\x32\x99\xc4\xf0\xf0\xf0\xb2\x96\x83\xdd\xb5\x6b\x17\x05\xe0\x6c\x4d\xd9\xef\x7d\x7f\xac\xee\x8b\x8a\x26\x6e\x9f\x3c\xce\x3b\xfb\x6b\x53\xc7\x9b\x33\x7f\xf7\x7a\x6b\xe6\x5b\xed\xed\xed\x19\x00\x57\x9c\x68\x15\xe1\x3b\x75\xda\xf4\xeb\x6f\xfb\xff\x21\x94\x91\xf6\x4c\x0e\x1b\xb7\x5f\x16\xef\xdc\x9c\x74\xfc\xce\xeb\x2d\x99\xbf\x79\xbd\x35\xf3\xcd\xf6\xf6\xf6\xdc\xd8\xd8\x98\x31\xdd\x8e\xa9\x69\x09\xd0\xd1\xd1\x51\x99\xff\x5d\xc1\x8c\xb4\xb5\xda\x1f\x95\x70\xe9\xbd\x79\x89\x0d\x02\x28\x68\x9a\xb6\xe2\x79\xef\x93\xd4\xab\x08\x40\xa2\x06\xb7\x4b\x45\xe6\xa1\x26\x5c\x00\x98\x29\x22\xa7\x3b\x68\xda\xef\xf7\xeb\x7e\xbf\x5f\xdf\xb6\x6d\x9b\xb1\x1c\x7b\x0f\xf6\xef\xdf\x4f\x01\x38\x9b\xc7\xe5\x9d\x8f\xbc\xed\x7f\x5c\x64\xc4\x33\xf5\x3b\x22\x23\xde\x7b\x06\xdc\x5f\x14\x18\x71\xfd\x62\xfd\xc4\xbf\xb4\xb7\xb7\xa7\x8f\x1c\x39\xc2\xa2\xd1\x28\xf5\xfb\xfd\x22\xe1\xf0\x7e\xf0\x1d\xdf\x3f\xac\xcb\xc8\x7b\xa6\xbb\x07\xe5\xc4\x79\xef\x80\xfb\x0b\x19\xbb\x91\x7a\xa7\xb1\xf0\xa3\x68\x34\x9a\x99\xce\x1e\x9b\x96\x00\x65\x83\x42\x74\xab\x42\xa8\x46\x17\x9a\xaa\xfd\x61\x03\x75\xea\x69\x10\xa4\x00\xa8\x65\x97\xe6\x8a\xe0\x9a\xca\x63\x25\xee\xa9\x8b\x97\x1e\xa8\x1b\x36\x1e\x75\x64\xcc\x3b\xa9\x89\x00\xac\x04\x4b\x80\x40\x65\x02\x46\xf2\xb5\xc2\x1b\xe3\x21\xdb\x0f\xd3\x41\xf1\x95\x50\x28\x94\x39\x70\xe0\xc0\x92\x15\x72\x8a\x46\xa3\x54\x96\x65\x49\x60\xf0\xbf\xef\xdd\xba\xcf\x4f\x27\xfc\x0a\x08\x08\xbd\x63\x48\xf9\x74\xac\xbe\xf0\xea\x65\xa5\xf4\xc6\xfe\xfd\xfb\x0b\xb2\x2c\x03\x80\x73\xc3\x98\xe3\x81\xa6\xb4\xfc\xf0\x6c\xf7\x22\x20\x62\x47\x7f\xed\xa7\xdf\xad\x2f\xbe\x0a\x59\x56\x3b\x3a\x3a\xf4\xa9\xbf\x69\xda\x58\x40\x59\x55\x4a\xf5\x79\xa9\xad\xfa\xf9\x9f\x63\xc8\xa3\xbd\x05\xcb\x41\xb1\x62\x3e\xff\xbd\x7b\xf7\xd2\x6d\xdb\xb6\x89\x60\xdc\xe3\x1b\xd4\x3f\x76\xcb\x2b\xf9\x97\x9a\xce\x6a\x87\x5c\xe3\xe6\x5e\xc1\x44\x0b\x01\xec\x04\xa0\x04\xa0\x84\xc3\x29\x18\xd8\xe0\x1e\x33\x3f\xde\x72\x46\xfd\xde\x2d\xaf\xe4\x9f\xad\x8b\x97\x1e\x06\xe7\xee\x6d\xdb\xb6\x89\x7b\xf7\xee\xbd\xe1\x3a\x00\x53\x51\xf1\xad\xac\x9b\x90\xef\xac\x2b\x8a\x73\x66\x54\x09\x9c\x38\x6f\x19\xad\xf9\x28\x00\xd7\xa4\x1a\xc9\xae\x8d\x49\xc7\xaf\x4f\x97\x2a\x36\x15\x8a\x26\x6c\x09\xe4\x6c\xdb\x01\x48\xe5\x64\x93\x6b\x30\xd3\x05\x28\x00\xc9\x97\xb7\x6d\xae\x76\xfe\x37\x28\x57\xc7\x6a\x4a\xbd\x58\xc1\x6a\x17\x57\x0c\xa3\x12\x0f\xad\x7f\x4b\xfd\x87\xa6\xb7\xb5\xaf\xd9\x74\xde\x56\xcd\x6f\x20\x00\x24\x95\x6f\x6f\x39\xa5\x3e\xde\x72\x46\xfd\x1c\x31\xb9\xdf\xef\xf7\x4b\x8b\x4d\x82\xb2\x6f\xc5\xee\xcb\xdb\x6e\xaf\x76\x07\x55\xbd\x25\x40\x17\x2c\xe1\x5b\xd5\xd5\xd4\xea\x34\x33\x01\x81\xa2\x8a\x1b\x00\x48\xe5\x7b\x5f\x83\xd9\x08\x60\xf7\x16\xc4\x0d\x55\x3d\x21\x80\x09\x87\x11\x57\x45\x96\x44\xb9\x56\x6e\xb5\xe7\x2d\x16\x2a\xc2\xa7\x06\x0f\xad\x3f\x5e\xfc\x6a\x6d\xc2\xf8\x6d\xb2\x80\x24\x09\x02\x88\x75\x97\x8c\x3f\x09\x9f\x2c\x7e\xb1\x42\x82\xdd\xbb\x77\x2f\xb6\x26\x90\x08\x27\xf6\xb9\xbf\x66\xc1\x10\x38\x43\x65\xda\xb2\x40\x8b\x36\x56\x55\xc2\x08\x07\x90\x97\xcd\x1c\x66\x18\x8b\xeb\x6c\x80\xb2\x33\x82\x02\xb0\xd7\x15\x6c\x55\xcf\xff\x63\x4e\x63\x10\x04\x39\x00\xc6\xd8\xd8\x58\xb5\xa7\x2d\x0a\x2a\x86\x11\x38\xf7\x36\x77\xab\x9f\x75\xa5\xcd\xdd\x37\x72\x3d\x02\xc0\x9d\x30\x7f\x33\x18\xd3\xe2\xf1\x5b\xec\x5f\x0c\x87\xc3\xa9\xb6\xb6\xb6\x39\x1d\x2b\x9d\x9d\x9d\xb4\xdc\xac\x02\x00\x66\xdb\xbd\xc3\x2e\xbb\xf4\x01\x0e\x5e\x55\x39\xaa\x64\x4d\x69\x08\xd7\x26\x7c\x18\x03\x5e\xf5\xf4\xa6\xa4\xf3\xfe\xb9\xce\xd6\x45\x96\xb9\x6c\x9d\x3f\x6d\x85\x94\xeb\x08\xe0\xf3\xf9\x00\x6b\x7e\xb4\xd7\xe8\x42\xd5\xd1\xbf\x71\x67\x69\x08\x96\xfa\x5f\x76\x02\x94\xb3\x61\x9d\x9e\x61\x63\xb7\x67\xd8\xf8\xed\xc5\xb8\x26\x01\x50\x3f\x50\xfa\xb3\x4c\x40\xfc\x79\xce\x27\xbe\xdc\xd1\xd1\x91\x8b\xc5\x62\xd7\x7d\xaf\xb5\xb5\x95\xee\xda\xb5\xab\xb2\x7b\xa7\x72\x50\x00\x46\x28\x14\x32\xa2\xd1\xa8\x31\xcd\x3a\x5e\x8f\xd7\x6a\x67\xc7\x1d\xc6\x90\xb7\x38\xfb\x4b\xc6\xc0\x59\x9f\xaf\xf8\x3a\xae\x26\x7c\x30\x00\xb9\x9e\x40\xe1\xe7\x77\x0d\xba\x3f\x5e\xab\x8a\x8d\xb3\x9d\xdf\xdd\x98\x7b\x59\xb3\xb1\x04\xac\x6d\xf5\xd7\xfd\xff\xeb\xd4\x82\x24\x49\x00\x20\xca\x06\x75\xc9\xc6\xcc\x16\xea\x54\x4c\xd8\x8d\x78\xe5\x21\x97\xd3\xfb\xd7\xd1\xd1\x41\x65\x59\x96\x08\xe3\xfe\xc6\x5e\xed\x53\x0b\x51\xfb\x33\x81\x70\x48\x8d\x31\xed\x53\xe0\xdc\x2b\xcb\xb2\x18\x89\x44\xae\xb9\x76\x47\x47\x07\x7d\xe8\xa1\x87\xa8\x2c\xcb\xae\x40\xd6\xb6\xf5\x81\x9e\xba\xcf\xfd\xde\xeb\xc1\x27\xff\xe0\xb5\xe0\xb3\x1f\x3d\x59\xff\xb5\xdb\x2e\xb9\x1e\x13\x4d\xe2\x6d\x6f\x6f\x97\xca\x19\xd5\x48\x26\x93\x0c\x80\x6a\x52\x8c\xbc\xb4\x79\xfc\x5b\x06\x9d\x39\xed\x8b\x03\x38\xdb\x98\x7f\x65\xc4\xad\x9f\x84\x15\xf9\xab\x10\xa0\x50\x12\x78\xff\x4f\x6f\x19\x3b\x58\x14\xcd\xdc\x4c\xe7\x0e\x7a\xd4\x73\xc7\xc2\x99\xc7\x51\x76\xcb\x4f\x47\xe0\x99\x08\x40\x6d\x26\x71\x56\xbb\x02\x00\x80\xbc\x6c\x8e\xe2\x6a\x41\xa6\x65\x43\xd9\xaa\xb6\x2b\x49\x73\xa7\x9c\xe7\xdb\x17\xfb\xfa\x35\x69\x76\x9f\x73\x82\x6d\x05\x60\xdf\xb6\x6d\xdb\x95\x7f\x8f\x44\x22\xd6\x52\x93\xc3\x1d\xbd\xa8\xfc\xce\x6f\xbc\xd5\x70\x24\x32\xe2\xfa\xdf\xb5\xaa\xf8\x5e\x45\x13\xef\x5e\x37\x61\xff\xd8\xae\x5e\xcf\xb7\x3f\x76\x32\xf0\xb8\xa2\x0a\x1b\x14\x45\xb1\xef\xdf\xbf\x9f\x96\x33\xa1\x55\x00\x89\x8b\x75\xda\xcf\x9e\xde\x9a\x3c\x98\x93\xcc\xcc\xd4\xfb\x9a\x84\xb3\x53\xa1\xec\x2b\x2f\x6d\x1e\xff\x2a\xac\x62\x52\x85\xfe\xfe\x7e\x76\xf4\xe8\x51\x94\xcf\x1f\x1a\x71\xeb\x3f\xfb\xfe\xed\x89\x2f\xf4\xf9\x8a\xdd\x25\xca\x0c\x0e\x6b\x35\x96\x93\xcc\xcc\xeb\xad\x13\xcf\xfc\x38\x92\xfc\x82\x21\xf0\xb3\xb0\x42\xf2\xd5\x39\x82\x2a\xde\x32\xd9\xa0\x6e\xca\x51\xf5\x12\xb0\x60\x63\x29\x2c\x30\x31\xf1\x46\x50\x5e\x1a\xb9\x6a\x47\x4b\x0f\x2d\x45\xc5\x2b\x02\x88\xee\x84\xf1\x50\xc1\x23\x9c\x50\x14\xe5\xca\x0a\xa7\x9c\x27\xe9\xda\x92\x70\xee\x79\xcf\xf9\xda\xbf\xa7\xd3\xd4\x39\x26\x20\x08\xe4\xa4\xfb\x1f\x79\xdb\xff\xd5\xef\xef\x48\x7c\x02\xb2\x3c\xd2\xd9\xd9\xa9\x27\x93\x49\xe6\xf7\xfb\xd3\x00\x62\x17\x7c\xea\x0f\xbf\x7d\xe7\xf0\xbb\x9b\x92\xce\x5f\x6b\xcc\x48\x61\x91\x11\x29\x55\x53\x1a\xe9\xf3\x15\x8f\xa7\x9c\x46\x17\x08\xce\x01\x48\x68\x9a\xa6\x57\x3c\xab\xe1\x70\xd8\x08\x85\x42\x19\x00\xb1\x71\xa7\xa1\x3e\x79\x6b\xb2\xd7\x51\xa2\x2d\x2e\x4d\x68\x30\x29\xd7\x27\xec\xc6\x45\x53\xc0\x20\xac\x1a\x0b\xb3\x26\xe2\xce\xe4\x0a\xa6\x92\x41\xaa\x2e\x8e\xc8\x09\x0c\x5d\x60\x39\x2c\xb3\x06\x98\x14\xb1\x74\xd5\xa4\xd9\xbc\x76\x29\xcd\x07\x35\x69\x73\x07\xac\x65\x58\x0a\xb8\x3a\xed\x88\x26\x09\xec\xbc\x50\xfb\x99\xe9\x84\x3f\x19\xf5\x39\xdb\x7d\xb7\x8e\xd4\xec\x3d\xb5\x2e\xf7\xcd\xf6\xf6\x76\xfd\xe0\xc1\x83\x6c\xef\xde\xbd\xba\xdf\xef\x4f\x02\x30\x34\x1b\x4f\xbe\x1d\xcc\x9f\x7d\x3b\x98\x77\xc3\xd2\xca\x05\x58\xc5\x31\x46\x50\xae\x80\x36\x59\x80\x4f\x3d\xf5\x54\xe5\xfc\x14\xac\x02\x98\x89\xa2\xc4\xce\x16\x25\x66\x47\x79\x8a\x28\x9f\x97\x01\xa0\xce\x56\x90\x62\x3a\x02\x50\x00\x74\x3e\xea\x9f\x03\xcc\xa4\x57\xaa\x70\x2e\x1b\xca\x06\xab\x48\x18\x77\xd9\x54\x36\xab\x31\x74\x23\x90\x0a\xac\x09\x9c\x3b\x41\x88\xb8\x67\xcf\x1e\xa3\x7c\x5f\x7b\x30\x23\xdd\xa1\x68\x42\xdb\x5c\xe7\x13\x10\x6c\xbe\xec\x78\xe4\xd4\xba\xdc\x61\x94\x0b\x5c\x1d\x3e\x7c\x98\xed\xd9\xb3\x47\x0f\x85\x42\x49\x58\x82\x8a\xe3\xea\x52\xcf\x80\xa5\xe6\x75\x4d\xd3\xf4\xe9\xf6\x50\x1c\x3e\x7c\x98\x45\xa3\x51\x23\x12\x89\x64\x64\x59\x2e\xc0\x9a\xe7\xe9\xa4\xf3\xe7\x8c\x26\x02\xb3\x04\x83\x28\xaf\x3e\x01\x84\x13\x30\x4e\xf8\xb2\xab\xff\x8a\xbd\x42\x18\x9c\x84\x61\xd1\xcb\xcf\x56\x20\x98\x70\x11\x0e\x3b\x27\xa0\x93\x6a\x08\x4a\xb5\xaa\xb8\xa9\x5a\x2d\x59\x5b\x14\xc3\x84\xc3\xc5\x09\xc4\x68\x34\x6a\x74\x75\x75\x55\x62\x0e\x6c\xf7\xee\xdd\x2c\x1c\x0e\xab\x98\x64\x93\x65\xb3\x59\x36\x57\xbb\x99\x72\x1d\x05\x00\xd0\x3b\x3b\x3b\x8d\xca\x12\x74\x3e\x7d\x0e\x67\x9c\x02\x00\x3e\x3f\x6b\xda\xca\x5d\x5e\x99\xe8\x1f\x01\x5d\xca\x7b\x73\x02\x86\xeb\x0d\x66\xd1\x24\xd5\x8f\x91\x21\x70\xc6\xcb\x6f\xf8\xd4\xee\xa5\x93\xa2\xa6\x0b\xfe\x0d\x0b\x75\xbd\xcf\xf8\x96\x33\x52\xbd\x41\x47\x38\x68\xb5\x95\x32\x97\x02\x4c\x80\x61\x8a\x24\x47\x75\xbe\x24\x5a\xc0\x90\x48\x86\x13\x32\x75\x80\xd9\xb0\x5b\x3f\x6f\x12\x6e\x08\x55\x68\xcb\x78\xad\x16\x43\x79\x4c\x97\xc2\x4f\x52\xc9\x26\x02\xe6\xd7\x02\x77\xa6\x07\x67\x8c\x72\x83\xa3\xba\x12\x22\x04\xa0\x02\x23\x15\x07\xc8\x72\x83\x01\x44\x55\x5d\x74\xc8\x96\x32\x03\x4b\x71\x83\xa2\x8b\x0e\x82\x58\x3e\x8e\x64\x32\x09\xbf\xdf\xcf\x00\xa8\x69\x87\xd1\xdf\xef\x2d\x9e\xd8\x38\xe6\xbc\x7b\xb6\xf3\x4d\xc2\x8d\xd3\xc1\xfc\xf3\xb0\xe6\x7f\x63\xb2\x7a\x9e\x54\x06\x66\x72\x7b\xdb\xaa\x3a\x94\xb6\xb5\xb5\xd1\x68\x34\x3a\xb9\x8a\x29\x2d\x5f\xd3\x40\x95\x7d\x0c\x67\x64\xae\x26\xf2\x9c\xa5\xd7\xe7\xa6\x00\xe1\x10\x65\x83\xb8\xb0\xcc\x04\x18\x1e\x1e\x46\x28\x14\x32\x40\x50\xc8\xfa\x85\x6e\x25\x65\xde\x50\x59\xda\x99\x90\xf3\x8b\xa7\x51\x0e\x72\x1d\x3e\x7c\x98\x95\x53\xb1\x54\x10\x24\x5e\xda\x9c\xfe\x86\x2f\x2f\x85\x3d\xaa\x38\x2d\xf9\x38\x38\x5e\x6b\x9d\xf8\xd1\xa8\x5b\x3f\x01\xcb\xd8\xbb\x22\x90\x72\x91\x2d\x89\x70\xd8\x7d\x39\x5b\xa3\x2f\x6f\xdb\x40\x00\x3a\xee\x30\xfa\x13\x0a\x86\xda\xdb\xdb\xd5\x70\x38\xac\x4f\x97\xd6\x35\x29\x1d\xcc\xe9\xcf\xd9\x5a\x36\x5f\x76\xee\xf6\x16\xc4\xcd\x25\x81\x17\x2e\x7a\xd4\x9f\xf7\xd6\x17\x8f\xb6\xb7\xb7\x67\xc2\xe1\xf0\xb4\x46\x64\x05\xd3\x11\x80\x01\x60\x9a\xc8\x0a\x8c\xc0\x10\xf8\xdc\x9b\x47\x08\x08\x9c\xba\xe0\x01\x4a\x15\x16\x2f\x8b\x2d\xd0\xd5\xd5\xc5\xca\xf9\x73\xb9\x74\xa3\xed\xe7\x8d\xbd\xfa\xc7\x29\xab\xce\x77\x51\x2d\x0c\x11\xb9\x89\x80\xf8\x3a\xca\x6e\x6e\xc0\x9a\x6f\xdb\xdb\xdb\x0d\x00\xc9\x9c\x6c\x9e\xf8\xcf\x1d\x89\x2f\xbc\xef\xdd\xba\xdf\x5b\x9f\xb2\x6f\xa5\xe5\x52\xf2\x1c\x1c\x79\xc9\xcc\x1c\x5d\x3f\xf1\xe3\xb3\x0d\x85\x1f\xc0\xda\xc4\x71\x65\x83\x4c\x59\xf8\x4e\x7f\xce\xd6\x76\xff\xbb\x75\x7f\xd3\x98\x91\x3e\x40\x61\x05\x88\x38\xb8\x9e\xac\x29\xbd\x72\x64\x63\xfa\x6f\x87\xea\x70\x72\xd7\xae\x5d\x05\xe0\xea\x7e\x81\x4a\xfd\x20\xca\xe0\x79\xcf\x05\xcf\x81\x1d\x97\x5c\x7f\x39\xb9\x91\xe6\x2d\xa3\x35\x7f\x7e\xef\x80\x71\xfc\xd9\x2d\x63\x7f\x11\xaf\xc5\xc9\x03\x07\x0e\x14\x66\x2a\x4c\x79\x9d\x70\x35\x4d\x83\x2c\xcb\xac\x44\x59\xc1\xa4\x5c\x15\x4c\xe2\xaa\x66\xa0\x14\x4d\x08\x4e\x77\xbd\xa5\x86\xa6\x69\x86\x2c\xcb\x39\xdd\x49\x63\xe9\x46\xf1\x35\x6f\xdc\x58\x70\x89\xda\xe9\x30\xd6\x6c\x7b\xd1\x94\xc8\x20\xa6\x94\x75\x2f\x93\x2f\x07\xa0\x3f\x27\x9b\xec\xc9\x5b\x93\xf1\xba\xa2\xb8\xad\x31\x23\x6d\xb2\x99\xd4\x3e\xe1\x30\x46\xe2\x6e\xed\x4c\xc9\xda\x1c\xd3\x8b\x72\x4d\x84\x23\x47\x8e\xb0\x8a\xf0\x03\x59\xdb\xf6\xbd\xa7\x03\xdf\xb3\x1b\xf4\x9a\x78\x00\x01\x91\xea\xf3\xd2\x03\xff\xad\xbb\xfe\xce\x67\xb6\x8c\xfd\x41\x6f\x7d\xf1\x85\xc9\xb1\x88\xf2\x9b\xef\x7e\xcf\x05\xcf\x27\xef\x18\x72\xfd\xf5\xd4\x95\x08\x01\x50\xab\x8a\x77\x3e\x7a\xa6\xfe\x07\x87\x6f\xbb\xfc\xd1\x51\x45\x3f\xb1\x6f\xdf\xbe\x69\x4b\xd3\x5e\xb7\x37\xb0\xb9\xb9\x99\x28\x8a\x22\x32\x0a\xef\xb6\x61\xd7\x87\x64\x93\x2a\x53\xbf\x33\x1d\x52\xce\x52\xdf\xa0\x57\x7b\x05\x40\xbe\xab\xab\x6b\xd9\xf6\x00\x7a\x3c\x1e\xe2\xf7\xfb\x19\x08\x84\x42\xad\x50\xf4\x5e\x32\x3a\x17\x4b\x0b\x68\x0e\x92\x1c\xdc\xee\xf8\x47\x2e\x90\x77\x00\xa4\xbb\xbb\xbb\xcd\x4a\x6f\x9f\xe1\xe1\x61\xee\x72\xb9\xb8\xdf\xef\xd7\x01\x64\x41\x90\x52\x6d\x6c\x20\xe9\x2a\x75\x8f\xba\xf5\x37\x27\x1c\xc6\x09\x46\x71\x0e\xd6\xbe\xc8\x31\x4d\xd3\x8a\x87\x0e\x1d\x62\xd1\x68\x94\x36\x37\x37\x8b\x84\xa1\xfe\x43\x6f\xd7\x7f\xc5\xa3\x8a\x33\xd6\x75\xa1\x9c\xd8\x9b\xc7\xe5\xf7\xbc\xd3\x98\x7f\x8a\xcb\x42\xb6\xb5\xb5\xd5\xdc\xb1\x63\x07\x91\x65\xd9\x51\x9f\xb3\xdd\xf1\x40\xcc\xfb\xcf\xb3\xed\xd7\x10\x39\xa9\x09\x64\xa5\xcd\x6f\x07\xf3\x3f\x95\x2c\x5f\x01\x9f\xda\x9b\x68\xa6\x39\x9b\x71\x02\x35\x27\x9b\xd7\x87\x8f\x66\x80\xaf\x60\x0b\xc3\x2a\x93\xba\xac\x76\x40\xd9\xc8\x31\x00\x24\x4b\x0e\x7a\xf2\x62\x44\xfe\xd6\x7c\x56\x30\x33\xc1\x14\xa0\x0f\x6e\xb7\xff\x9b\x29\x91\x73\x28\x6f\x6f\x9b\x6a\x5d\x1f\x39\x72\x84\x75\x75\x75\x19\x9a\xa6\x65\x60\xed\xd1\x3b\x07\xe0\x24\x80\x13\x00\xba\x51\x2e\x77\x1b\x8f\xc7\xaf\x94\xbf\xab\xc4\x2e\x82\x59\xe9\x8e\x40\xce\x36\x67\x1f\x05\x87\x21\x34\x6d\x19\xad\xd9\x8b\x72\x09\x98\xb2\xc1\xe7\x6a\x1f\x75\x7e\x58\xa8\x22\xa7\x20\x90\xb3\xed\x0c\x4e\x48\x3b\x00\xd8\xcb\xf7\xbe\x06\xd7\x09\x6b\x78\x78\x18\xb0\xe6\x70\x3d\xed\x30\x46\xe6\xba\x41\x05\xde\x82\x2d\x4c\xb8\x55\xa6\xa4\x5c\xe8\x68\xd9\x50\xde\x18\x99\x03\x30\x38\xd1\x68\x7b\x72\xe8\x56\xf9\xbb\x8c\x2e\x9c\x04\xa6\x00\x7d\xe0\x36\xc7\xd7\xf3\x5e\xf1\x67\xb0\xf6\xe6\x15\x66\xda\xe0\xd2\xd5\xd5\xc5\x0e\x1d\x3a\xc4\x8e\x1e\x3d\x6a\xc4\xe3\xf1\x8a\x0b\x36\x9d\xcd\x66\x33\x3d\x3d\x3d\xea\xc1\x83\x07\xaf\xa9\x78\x5a\xc9\x08\x6a\xc8\x4a\xd1\x6a\x52\xba\x00\xa0\x31\x2b\xdd\x85\xab\x25\x60\x28\x00\x67\x20\x27\x55\x15\xf8\x22\x20\xb4\x21\x27\xdf\x05\xc0\x3e\x5d\x46\xd0\x75\xea\x63\x92\x61\xa5\x26\x6b\x4a\x83\xd5\xdc\x04\x00\x5c\x9a\x10\x72\x69\x82\x3f\x6b\x37\xcf\x97\x5d\xa5\xcb\x86\x63\xc7\x8e\xb1\x60\x30\x68\x94\x7d\xe3\xb1\x54\x93\xf4\xbd\x92\x83\x66\x9a\xcf\xa8\xbf\x29\xa9\xbc\xea\x90\x36\x00\xa8\x35\x34\x31\xb8\xdd\xfe\xad\x82\x47\xa8\x54\x2f\x4d\xc7\xe3\xf1\x39\x37\xb8\x74\x77\x77\xb3\x79\xec\x82\x92\x04\x56\x7d\xf7\x73\x81\x11\x17\xae\xd5\xae\x92\x49\xe7\xe1\x84\xa2\xac\xb2\x4c\xbc\x0e\x33\x4e\x01\x00\xd4\xb1\x9a\x52\x5f\xb5\x45\xe7\x04\x4e\xa4\x86\xac\x14\x01\x20\x2d\xa4\x5a\xd5\x8d\xe2\xf0\xe1\xc3\x4c\xd3\x34\xab\x28\x33\x41\x77\xd6\x2f\xfe\x57\xcf\x7d\x35\x9f\x1b\xd9\x28\xbd\x58\x92\x48\x6e\xb6\xdf\xc1\x01\xe8\x76\x92\x8e\xb7\xcb\x3f\x89\xed\x74\x7e\xae\xe0\x11\x9e\x04\x70\x16\x40\x22\x99\x4c\x2e\x49\x53\x87\x09\x87\x71\xb9\xda\xb1\x4d\xd6\xe8\x83\xb8\x76\x65\xc5\x12\x2e\xbd\xbf\x9a\x73\x4d\xc2\xf5\x81\x3a\xf5\x6d\xcc\xb0\x32\x9b\xd1\x11\x04\x4b\x03\x9c\x37\x09\xd7\xc5\x2a\x03\x43\x2d\xe3\xf6\x7b\x7a\xeb\x8b\x87\x61\xad\x77\x97\x1d\x87\x0e\x1d\x62\xfb\xf7\xef\x57\x65\x59\x1e\x01\xa0\x9a\x36\x92\x1a\x69\x93\xfb\x47\x37\x4a\x61\xd7\x98\x79\x9b\x6b\xdc\xdc\x64\xcf\x31\xbf\xa0\x73\x27\x08\x60\x48\xa4\xa0\xba\xe8\x48\xce\x2b\xc4\xf2\x75\xc2\x19\x2e\x90\x7e\x58\x2a\x7f\x04\x40\x66\x09\xcb\xd8\xe9\x17\x3d\x5a\xb7\x2a\x9a\x69\x87\x21\xcc\xaa\xa1\x0c\xca\xf5\xb3\x8d\x85\x23\xb8\xb6\x04\x4c\xe1\x6c\x63\xe1\xa5\xdb\x87\x94\xc7\x24\x46\x67\xb5\x03\x2e\x78\x8b\x27\x32\x76\x73\x10\x80\x5a\x2e\x3f\x73\x0d\xa6\xad\x10\x12\x89\x44\x20\x8a\xa2\x58\x12\xb8\xb2\x25\xe1\x7c\xd0\x61\x08\xb5\xd5\xfc\x2a\xd9\xa0\xf6\x53\xeb\x72\x3f\x02\xc1\x84\x24\x49\xe6\xd0\xd0\xd0\xb2\x77\xc3\x3c\x75\xea\x14\x0f\x06\x83\x4c\x51\x14\x0d\x40\x16\xc0\x18\x28\x19\xd1\x6b\x68\x2c\xe7\x17\xdf\x4a\x87\x6c\xaf\xa7\x9a\x6d\xaf\xa6\x9a\x6c\x2f\xa5\x83\xb6\x97\x72\x3e\xf1\x15\xdd\x49\xdf\x04\x25\xef\xc0\x32\xda\x46\x00\x64\xfb\xfb\xfb\x97\xa4\x5a\x79\x5b\x5b\x1b\x64\x59\xa6\x86\xc0\x6d\x25\x81\xbb\xc2\x29\xfb\x8c\xd9\xc1\x1c\x1c\x27\x9a\xb2\x4f\xbf\x5b\x5f\x7c\xb2\x9c\x14\x52\x84\x45\x02\xa2\xd9\x18\x51\x6d\x4c\x0e\xa7\xec\xdb\x09\xc8\xb4\x17\xc8\xca\x46\xea\x27\x5b\xc7\xfe\x51\xb7\xf1\x33\x00\xc6\xfa\xfa\xfa\xcc\x81\x81\x81\x6b\x64\x32\x2d\x01\x1a\x1a\x1a\x88\xc7\xe3\x11\x40\xe0\x0a\xe4\xa4\x3b\x02\x39\xa9\xaa\xec\x60\xc9\x20\x9e\xf3\xbe\xe2\x0b\x05\x99\x5d\x74\x3a\x9d\x5a\x77\x77\xf7\x8a\xb4\x43\x8d\xc5\x62\x3c\x9b\xcd\x72\x9f\xcf\xa7\xcb\xb2\x5c\x84\x65\x98\x8d\x01\x18\x86\x65\xad\x0f\x02\x18\x80\xe5\x9c\x19\x04\x70\x09\x56\xfc\x3d\x93\xcd\x66\xf5\x43\x87\x0e\x99\x7d\x7d\x55\xcf\x7e\xf3\x05\x69\x6e\x6e\x66\x00\xf8\xa8\xa2\xa7\x4d\xca\x9d\xa1\x8c\xbc\x89\x4e\xe9\x45\xc8\x08\x67\x27\xd7\xe5\x5e\x3a\xba\x7e\xe2\x6b\xdc\x5a\x4e\xa6\xfb\xfb\xfb\xcd\xd1\xd1\x51\xf8\xfd\x7e\x0e\xc0\x4c\xb8\x4a\xc9\x71\xa7\xa1\x37\x64\xa5\xf5\x92\x49\xec\x15\x22\x95\xf7\x68\xf4\x3e\x75\xeb\xd8\x3f\x65\x1c\xe6\xd1\xf2\x6f\x2e\x1e\x3e\x7c\xf8\xba\xe5\xf9\xb4\x53\x40\x3c\x1e\x47\x38\x1c\x36\x00\xe4\x06\x3d\xea\xc9\xad\x23\x35\x0f\x54\x13\x13\xa0\x20\x74\x73\xd2\xf9\xe0\x65\x65\xe2\x0d\x45\x51\x2a\x39\x6c\x2b\x82\x72\x81\x05\x00\xd0\x77\xef\xde\x6d\x04\x83\x41\x75\x8a\xbf\x1d\x28\x3f\x5f\x35\x7e\xf7\xc5\x42\x77\x77\x37\xdb\xb6\x6d\x9b\xa1\x28\x4a\x0a\x04\xe7\x8e\x37\x67\xbf\xd6\xe7\x2f\x9e\xde\x32\xea\xbc\xaf\x3e\x27\x35\x11\x00\x29\x67\x29\xd1\x13\x28\xbc\x96\x70\x95\x7e\x51\xce\x08\x4a\x4e\xce\x08\x0a\x85\x42\xba\xa2\x28\x49\x10\x9c\x8d\x05\x0a\xfa\x79\x5f\xb1\x6b\xdd\x84\x7c\xbb\x3f\x6f\x0b\x95\x28\xd7\x47\xdc\xda\xf9\xcb\xae\xd2\x5b\x9c\x20\x86\xb2\x07\x72\xa6\x12\x32\x33\xca\xb5\xdc\x09\x24\x50\xa3\xd1\x5d\xbf\xff\x7a\xe8\x1b\x42\x95\x76\xc0\x84\xdd\xe8\x3d\x74\xd7\xf0\xa3\x8c\xa2\xbf\xa7\xa7\x47\x5d\x2b\x0d\x33\x3d\x2a\x1d\xd6\x50\xe9\x3a\x06\x04\x60\x65\x1d\x51\x58\x4b\xda\x04\xae\xf6\x45\x54\xa7\xba\x72\x27\x9d\xef\x2e\x5f\xc3\x0b\x6b\xa9\x58\x59\x12\x27\xcb\x47\x61\xb6\x2e\x25\x33\x56\x09\x2b\xdb\x01\xb4\x24\x70\xc7\xfa\x71\xfb\x7d\x8a\x26\x56\x95\x22\x2e\x1b\xc4\x3b\xe2\xd6\x8f\xa7\x9d\x46\x9f\xa2\x28\xea\xa9\x53\xa7\x56\xac\x35\xfa\x6a\xc6\xa9\x53\xa7\x78\x5b\x5b\x9b\x39\x69\x8a\x1a\x85\x35\x15\x5d\xc4\x55\x43\x34\xad\x69\x9a\xfa\xf5\xaf\x7f\xfd\x3a\xd5\x5d\xb6\x75\x4c\x45\x51\x8a\xa8\xd8\x3a\xd6\x35\xe2\xe5\xbf\xe3\xb0\x9a\x6f\x98\xb3\x25\x87\xcc\x48\x80\xb2\x8b\x95\x80\xc0\x29\x1b\xb4\xb5\x75\xdc\x7e\x5b\x35\x3f\x8c\x80\x40\x36\xa8\xbd\xa7\xa1\xf0\x82\x28\x8a\x79\x4d\xd3\x78\x22\x91\x58\x23\xc1\x34\x28\xdb\x48\x5c\x51\x14\x5d\x96\x65\x15\xd6\x9b\x9b\x85\xd5\x28\x4b\xed\xee\xee\x36\x7f\xfa\xd3\x9f\xce\x28\xbc\x58\x2c\xc6\xbb\xba\xba\x98\xcb\xe5\x32\x65\x59\xd6\xca\x64\x52\x93\xc9\xa4\xde\xd7\xd7\x67\x3e\xf1\xc4\x13\xe6\x5c\x6d\xe9\x67\x9d\xda\x0f\x1c\x38\x20\x01\x68\xf4\x14\xc4\x0f\x7c\xe2\x78\xe3\x97\xab\x49\x7c\x00\x00\x93\x70\xf5\xf1\x3b\x46\x3f\x9c\x74\x95\x8e\x66\xb3\xd9\xdc\x6a\xef\xf8\xf5\xab\x8c\xb9\x04\x6a\x00\xc8\xa5\x1d\x46\xef\xb0\x5b\x3b\xd7\x34\x61\xaf\xaa\x20\xbd\xc0\x89\x3d\x7a\x51\xd9\xff\xec\x96\x54\xb7\xa2\x28\x6a\x5b\x5b\x9b\xb1\x56\x1e\x76\xe1\xa8\xf4\x1e\xc2\xa4\x84\x91\x64\x32\x89\xc5\x68\x9e\x39\x6b\xa5\x50\x9f\xcf\x47\x3c\x1e\x0f\x40\x20\x01\xf0\xcf\x95\xf9\x32\x19\xde\x82\x6d\x43\x5f\x7d\xf1\x85\xa2\xc4\x46\x7d\x3e\x9f\xbe\x52\x4b\xc2\x9b\x19\x7b\xf6\xec\xa1\xbb\x76\xed\x12\x3c\x1e\x8f\x2c\x19\xc4\xed\x2d\xd8\x42\x8a\x26\xfa\x4c\xca\x05\x49\x71\xf0\x70\x38\xcc\x5b\x5b\x5b\xf9\x3b\xef\xbc\xb3\xe0\xb1\x9d\x95\x00\x7d\x7d\x7d\x3c\x1a\x8d\x12\x00\xc2\x84\xdd\xe0\xb7\x8e\xd4\x3c\x68\x9b\xc3\xf3\x54\x01\x05\xb1\xb9\x34\xc1\x13\xab\x2f\xbc\x24\xcf\x10\x8a\x5c\xc3\xcc\xd8\xbb\x77\x2f\x6d\x68\x68\x90\xe4\x12\x09\xdc\x77\xc1\xf3\xc7\xbb\x7b\xbc\xff\x74\xfb\x25\xe5\x33\x91\xe1\x9a\xff\xb9\xe3\x92\xeb\x37\x7d\x05\x5b\xd3\xa8\xa2\x9f\x13\xdd\x8e\x62\x24\x12\x31\x17\x6a\x6c\xcf\x59\x2b\xb8\xad\xad\x8d\xcb\xb2\x4c\x4c\x0a\x9b\xa3\x44\xc3\xa1\x8c\x3c\x67\x1e\x7c\x05\x9e\xa2\xb8\x71\x44\xd1\x4f\x4c\x38\x8d\x7e\x9f\xcf\xa7\xad\xad\x08\xaa\xc3\x9e\x3d\x7b\x68\x43\x43\x83\xe4\xd0\x69\xcb\x47\x4e\x07\xbe\xb9\x71\xcc\xf9\xbb\x22\xa3\x5e\x02\x42\x09\x08\x15\x38\x71\xfb\xf3\xd2\xdd\x9b\x93\x8e\x07\x2e\x78\xd5\x9f\x1b\x0e\x9a\x6e\x6b\x6b\x33\x17\xa2\x65\xe7\x24\x80\x2c\xcb\x24\x14\x0a\x71\x00\x34\x6d\x37\xd8\xb6\x61\xd7\x6e\xca\xab\xeb\x12\x46\x40\x68\x63\x56\x6a\x10\x39\x0b\xf4\x00\x00\x0b\x4d\x49\x44\x41\x54\x3f\xdb\x90\xff\x29\x91\x84\x7c\x30\x18\x34\x17\xd2\xd9\xea\x57\x0d\xbb\x76\xed\x12\x00\x78\x1f\x3a\xe7\xfd\x3f\xcd\x13\xf6\x47\x66\xfa\x9e\x6c\xd2\xfa\x60\x46\xbe\xf5\x6c\x63\xfe\x19\xc9\xbe\x30\x2d\x3b\xa7\x20\x87\x87\x87\x79\x79\x1f\x1c\xd7\x6c\x5c\x70\xab\xc2\xe6\x40\x4e\x6a\xad\xf6\x06\x0e\x43\x08\x08\x9c\x18\x83\x5e\xf5\xb8\xa2\x28\xda\xda\xb2\x70\x76\xec\xdd\xbb\x97\x3a\x9d\x4e\x87\x37\x2f\x46\x3a\xfb\xea\x3e\x3f\x57\x85\xd6\x1a\x9d\xb6\x5c\x56\x4a\x27\xc7\x9d\xc6\xf9\x85\x68\xd9\xaa\xc2\xb6\xe5\x44\xc6\x02\x80\xf8\xf1\xe6\xec\x7f\xcd\xb6\xa5\x79\x3a\xec\xb8\xe4\xfa\xa3\xe6\x71\x79\x27\x00\xe7\xce\x9d\x3b\x57\x6c\xff\xc0\xcd\x80\x4a\x7d\xc6\x60\x46\xbe\xb7\x9a\x8c\x1f\x02\x82\xd6\x94\xfd\xfd\x00\x9c\x65\x57\xf7\xbc\x50\xd5\x09\x93\xd2\xae\x52\x69\x87\x71\xfa\x6c\x15\x9d\x2c\x26\x43\xe0\xc4\xfe\x60\x8f\xf7\xf3\x4e\x9d\x86\x01\x5c\xd9\x2b\xbf\x86\x19\x21\xc9\x06\xad\xaf\xfa\xcb\x26\xf1\x62\x81\xe9\x78\x55\x9f\x50\xd6\x02\x39\x10\xc4\xdf\x68\xcd\xfc\x40\x15\xd9\xb4\x85\x09\x66\x82\x5b\x13\xdb\x1e\x3a\xe7\xfb\x3b\xca\x10\x50\x14\x45\xda\xb3\x67\xcf\x1a\x09\x66\xc1\x84\xc3\xa8\x7a\xfb\x50\xb2\xa6\x14\x5f\xe8\x7d\xaa\x16\xc2\xe4\xe4\xcb\x9c\x6c\x76\x77\x35\x65\x9e\x99\xef\x44\xde\x32\x2e\x3f\xfc\xde\x3e\xcf\xa7\xc0\xe1\x09\x85\x42\xe2\x72\xe7\x0e\xde\x44\x30\x86\x6a\xb5\xb3\x45\xd1\x4c\xcf\xf5\x45\x93\x70\xa3\xd7\x5f\x7c\x1d\x58\xd8\xee\xec\x79\xb5\x8e\x95\x24\x09\x0d\x0d\x0d\x0c\x00\x4b\x28\xa5\xec\xc6\xa4\xfd\x5e\x67\x49\xa8\x3a\xb7\x8d\x80\xa0\x21\x2b\xdd\x65\x50\x9e\x1c\x76\xeb\xe7\xfc\x7e\xbf\xee\x72\xb9\xf8\xd4\x24\x85\x5f\x65\xb4\xb6\xb6\xc2\xe9\x74\x52\x53\xe0\x92\x49\xb9\xa7\x75\xdc\x7e\xdb\xcc\x09\x23\xc0\x99\x50\xfe\x85\x73\x8d\x85\x1f\x02\x88\x6b\x9a\x56\x9c\xaf\x11\x38\x2f\x02\x0c\x0d\x0d\x55\xfa\xd9\x98\x8c\x82\xa7\x9c\x86\xb9\x25\xe1\xdc\x39\x53\x46\xca\x74\x20\x20\xa4\x39\x2d\x77\x16\x24\xf3\x62\x42\x29\xf5\xfa\xfd\xfe\xd2\x1a\x09\xae\x42\x10\x84\x2b\x09\x23\x23\x8a\x9e\x16\x18\xa9\x0b\x66\xa5\x0d\x53\xc7\x98\x83\xe3\x5c\xa0\xf0\xc6\xcb\x9b\xd2\x5f\x29\xef\x3f\x48\x4d\x97\xf1\x33\xe7\xfd\xe6\xfb\x80\xa6\x69\x56\x1e\xd0\xc8\xd8\x4d\xcd\x6e\xd0\x60\x30\x2b\x57\x5d\x4f\x10\x00\x08\x88\xd0\x3a\x6e\x7f\x7f\x41\x32\x07\x12\x4a\xe9\xfc\x1a\x09\xae\x22\x91\x48\xf0\xb2\xf3\xcd\x04\x81\x76\xd1\xa3\x0d\x0e\xd6\xa9\xc3\x84\x13\x99\x72\x42\x8a\x36\x56\xb8\xe8\xd1\xfa\x5e\xdd\x30\xf1\x44\x57\x73\xf6\x3b\x8c\xe2\x0c\xac\x66\x9c\xc5\x27\x9e\x78\x62\x69\xa7\x80\xca\x03\x06\x83\x41\xae\x28\x8a\x09\x02\x33\xee\xd6\xd2\x1b\xc7\x1c\x77\x3b\x4b\x42\x55\x3b\x88\x2a\xa0\x20\x62\x38\x65\x7f\x50\x17\xd8\xe8\x88\xa2\xc7\xfc\x7e\x7f\x29\x18\x0c\xf2\x35\x47\x91\x15\x26\x8e\x44\x22\x86\x28\x8a\x2a\x08\x32\x39\xbb\x39\x74\xde\x5f\x7c\xeb\xf4\xba\xdc\xd1\xd3\xeb\x72\x3f\xeb\xad\x2f\xfe\x2c\xed\x34\x8e\xc1\xca\xf8\x19\x06\x50\x78\xf5\xd5\x57\xf9\x7c\x3b\x87\x03\x0b\x20\x00\x60\xc5\xa1\xa3\xd1\x28\x07\x50\x62\x14\xc6\xa8\x5b\xcb\x6f\x19\x75\x76\x08\x55\x7a\x08\x2b\x20\x20\x62\xcb\xb8\xfd\x41\xc9\x24\xec\x62\x9d\x76\x46\x71\x2b\xa5\xd6\xd6\x56\x76\x23\xc1\x8d\xd5\x86\xce\xce\x4e\x1a\x0e\x87\xc9\x7c\xb5\xdb\xa9\x53\xa7\x2a\x24\x28\xc2\x4a\xee\x18\x85\x95\xdb\xd7\x5f\x3e\x2e\xa1\xbc\xe5\xec\xd5\x57\x5f\xe5\x0b\x8d\x0a\x2e\x88\x00\x80\xb5\x89\xb4\xb9\xb9\xd9\x04\x50\xca\xcb\x4c\x55\x6d\x4c\x5e\x9f\xb2\x6f\xab\xb6\x64\x4a\x05\x04\x84\x06\x33\xd2\xaf\xf9\x73\xb6\xd0\x60\x9d\x76\x42\x52\x1c\xc5\x48\x24\xc2\x4d\xd3\xc4\xcd\xec\x31\xac\x44\xf2\xea\x7d\x7e\x5b\x43\x5d\xbd\xed\xf6\xbb\xa2\xdc\xe5\x72\x61\x3e\x44\x28\x1b\x74\xcc\xe7\xf3\x69\xa2\x28\x16\x60\x25\x8b\x64\xca\x7f\x8b\x3d\x3d\x3d\xe6\x13\x4f\x3c\xc1\x16\xf2\xe6\x57\x70\x43\x95\xd5\xca\xf5\xf8\x25\x00\x8d\xe0\xb8\xe3\x81\x58\xdd\x5f\x44\x46\x5c\x73\xee\x77\x9b\x09\x29\x47\xe9\xc4\xb3\x5b\x52\x9f\x1a\x75\xeb\xa7\x61\x75\xc2\x5c\x92\xd4\xec\xa5\x44\x24\x12\xa1\xd1\x68\x14\xb2\x2c\xdb\x6d\x06\xf1\x3e\x10\xf3\xfe\x29\xe5\x10\x9f\xde\x3a\xf6\x77\x20\xc8\x9d\x39\x73\xc6\x58\xce\xc6\x14\x73\x61\xc1\x1a\x00\xb0\xa6\x82\xf2\xaa\xa0\x04\x82\xd2\x60\x9d\x36\x1c\xcc\x48\xb7\xd6\xaa\xe2\x82\xf6\x86\x39\x0c\x21\x78\x4b\xa2\xe6\xc3\x8c\xf0\xec\x88\xa2\xf7\xba\xdc\x8a\x19\x89\x44\x4c\x51\x14\xc9\xcd\x10\x4a\xde\xbb\x77\x2f\x6d\x6f\x6f\x17\x45\x51\x74\x35\x66\xa4\xdb\x1f\xed\xae\x3f\xd8\x34\x61\xff\x0d\x6f\x41\xbc\x27\x2f\x99\x17\x12\x4a\xa9\xb7\xa1\xa1\x61\x55\x75\x51\xbb\x21\x02\x00\x96\x9a\x2a\xef\x25\xd4\x18\x45\x69\xc0\xab\x8e\x86\x53\x8e\xdb\x9d\x25\xa1\xaa\xba\x02\x53\x41\x39\xb1\x37\xa7\xe5\x87\xc2\xe3\xf6\x3b\x92\x35\xa5\x1e\xb5\x86\x4c\x84\x42\x21\xb3\xad\xad\x8d\xeb\xba\x4e\x6e\x44\xdd\x2d\x15\x2a\xea\xde\xe9\x74\xca\x92\x41\x02\x3b\x2f\xd4\xfe\xc9\xfd\xef\x7a\xbf\xe4\x2a\x09\x1b\x09\xac\xa5\x6f\xd3\x84\xfc\x9e\x0b\x5e\xf5\x48\x41\x62\xc9\x48\x24\x52\x5a\x2d\xa1\xf1\x1b\x26\x00\x00\x64\xb3\x59\x84\xc3\xe1\x12\x00\xad\x24\xf0\x62\xbf\xb7\x38\xba\x31\xe9\xb8\x43\x36\xa9\x63\x21\xd7\x23\x20\x70\xe9\xe2\xfa\x5b\x46\x6b\x3e\x56\x5b\x14\x3d\x97\x5d\x7a\x1f\x6a\x6c\x5a\x38\x1c\x66\x95\xfc\x84\xd5\xa0\x11\x2a\x82\x57\x14\x45\xa6\x0c\xb5\xb7\x8c\x3a\x1f\x7e\xf8\xac\xff\x2b\xe1\x71\xc7\x63\x02\x88\x3c\xf9\xbb\x02\x27\x8e\xd0\x84\xb4\xfd\x5c\x43\xe1\x59\x22\x09\x85\xd6\xd6\x56\x73\x35\x18\xbb\x8b\x42\x80\xb1\xb1\x31\xee\x72\xb9\xe0\xf7\xfb\x4b\x00\x8a\x9a\x8d\xe7\x07\xeb\xd4\xb1\x0d\x63\x8e\xdb\x64\xb3\xba\x0c\xa2\xe9\x40\x41\xa4\x40\x5e\xba\x27\x32\x52\xf3\x98\xa3\x44\x1d\xc9\x1a\x63\x90\x38\x6d\x7a\x28\x14\x62\xd1\x68\x94\xbb\x5c\xae\x79\x5b\xd7\x37\x8a\x48\x24\x42\xdf\xff\xfe\xf7\x93\x9d\x3b\x77\x0a\x8a\xa2\xc8\x84\xa3\x76\x53\xd2\xb1\xeb\x03\xe7\x7c\xff\x77\xdb\xb0\xeb\x7f\xd9\x4d\xa1\x61\x26\xc3\xca\x51\x12\x82\x2e\x5d\xa8\xe9\xf3\x15\x8f\x39\x6b\x9c\xaa\x24\x49\x7c\x25\xb6\xcf\x4d\xc6\xa2\x96\xd7\xad\xd4\xae\x81\xb5\x49\xa1\xcd\x53\x10\xdf\xfb\x68\xb7\xff\x93\x75\x45\x5b\xd5\x65\xe7\x67\x43\x89\xb2\x44\x4f\xa0\xf0\xfd\xd3\xa1\xdc\xa1\xcb\xae\xd2\x79\x6e\x55\xee\x32\x34\x4d\x33\x96\x72\x67\x4f\x34\x1a\xa5\xad\xad\xad\x95\x50\xad\x08\x40\xb2\x97\xa8\xa7\x2d\xe1\xd8\x7d\x5b\x5c\xf9\x03\x6f\x41\xbc\xbb\xda\xbd\xfe\x1c\x9c\xfd\xac\x6d\xfc\x4f\xbb\x83\xf9\xef\x02\xc8\xcc\x54\xbb\x67\xb9\xb0\xe8\xf5\x95\x2b\x9d\x3b\x00\x78\x00\x6c\x72\xa9\xc2\xce\x3d\x67\x7d\x7f\xdc\x98\x95\x5b\x16\xeb\x1e\x0c\x5c\x4f\xba\x4a\xaf\xbc\xd3\x90\xff\xc1\x05\xaf\xfa\x72\xda\x61\x24\x40\xa0\xa3\x5c\xab\x38\x9b\xcd\xb2\x6c\x36\x3b\x5b\xc3\x86\x59\xd1\xd1\xd1\x41\x7d\x3e\x1f\x26\x55\x05\x15\x01\x48\xa2\x49\x9c\xeb\x26\xe4\xad\x5b\x12\xce\x0f\xaf\x1f\x73\x7c\x48\x36\x68\xcb\x42\x06\x50\x17\x58\xea\xfb\x3b\x12\x1f\x49\xba\x4a\x27\x34\x4d\xcb\xcd\x56\xc5\x6b\xa9\xb1\x14\x05\xb6\xa7\x92\x20\x2c\x19\xe4\xce\x07\x7b\xbc\x7f\xb8\x29\xe9\xd8\x3e\x5f\x3f\xc1\x5c\x30\x09\xcf\x24\x6b\x4a\xaf\x0d\x78\xd5\x97\x2e\x7a\xd4\xa3\x09\x57\xe9\xbc\x66\xbb\x52\xb8\xba\x52\xbc\xfa\xba\x22\x8f\x93\x3e\xd3\x29\x9f\x2b\x87\x08\x0e\xc9\x53\x14\xfd\xa1\x8c\xbc\xa3\x35\x65\x7f\x5f\x73\x5a\xde\xe5\x28\xd1\x4d\xd5\xbe\xed\xb3\x21\xe9\xd4\x4f\x7c\xff\xf6\xc4\x3e\x5d\xe4\x83\xfd\xfd\xfd\xfa\x4a\xf5\x58\x5c\x12\x02\x00\x57\x72\xd9\x45\x58\x7b\xd7\x5a\x28\xc3\xf6\xbb\x07\xdd\xfb\xee\x1a\x74\x3f\x20\xf0\xa5\xa9\x2a\xca\xc1\x99\x41\x79\x72\xdc\x61\x74\x8f\xd5\x94\xce\x25\x5d\xa5\x9e\x8c\x6c\xf4\x67\x1c\x66\x5c\x15\x59\x5a\x13\x59\x41\x17\x98\xc1\x01\x06\x02\x80\x03\x02\x27\xa2\x64\x12\xd1\x5e\xa2\x6e\x47\x49\xf0\x7a\x8a\x62\xd8\x53\x14\xc3\xbe\xbc\xed\xd6\x40\x4e\xda\xea\x2c\xd1\x4d\x84\x13\xe7\x62\x0f\x14\x07\x70\xae\x21\x7f\xf0\xd9\x2d\xa9\xbf\xc2\x0a\x4e\x05\x4b\x56\xd6\xed\xb9\xe7\x9e\x63\x9d\x9d\x9d\x46\xb9\xeb\xe5\x79\x46\xa1\xbf\xd6\x9a\xc9\x8d\x2a\xfa\xe0\x03\x3d\xde\x8f\xd7\x2c\x70\x99\x38\x1b\x08\x08\xb5\x31\x12\x08\xe4\xa5\xfb\x03\x79\xe9\x7e\x24\x2a\x25\x8c\x39\xe3\x80\xce\x09\x0a\x8c\x70\x95\x13\x18\x1c\x60\x04\x10\x29\x27\x22\xe1\x70\x52\x0e\x3b\x40\xa4\x25\x7b\x23\xa6\x40\x15\xcd\xcc\x40\x9d\x7a\x01\x56\x26\xcf\x8a\x14\xd4\x00\x16\x69\x15\x30\x13\x06\x06\x06\xb8\xa6\x69\xbc\xb9\xb9\xb9\x04\xa0\x00\x82\x89\xb4\xd3\x18\x89\x05\x0a\xe7\xeb\x0a\xe2\x3a\x4f\x51\xf4\x2f\xf6\x94\x30\x15\x95\x75\x38\x01\x11\x29\x88\x43\xe0\x44\x11\x38\xa9\x15\x39\xf1\x08\x9c\xb8\x29\x27\x2e\x0a\x22\x13\x10\x61\x39\x84\xcf\xc1\x71\xd1\xa3\xf5\xfe\x38\x92\xfc\xa7\x4b\x1e\xfd\x65\x58\x3e\x7e\x6d\xa5\x9c\x43\x4b\x4a\x00\xc0\x8a\x1e\x76\x75\x75\xb1\x48\x24\x52\x12\x45\x51\x05\x90\xd1\x45\x9e\x8a\x05\x0a\xef\xe6\x25\xd3\x0c\x66\xa4\x56\x1b\xa3\xb6\xa5\x7e\x8e\xd5\x00\x4d\x60\xea\xab\x1b\x26\x7e\x72\x64\x53\xfa\xdf\x54\x89\xbf\x09\x2b\xa8\x93\x8d\xc7\xe3\xc6\x4a\x45\x41\x97\x9c\x00\x15\x9c\x3a\x75\x8a\xb7\xb6\xb6\x9a\x4e\xa7\x53\x85\x55\x58\x31\x9d\x50\x4a\x03\x3d\x81\x42\xaf\x4b\x17\xfc\x75\x05\xb1\x61\xa9\xb5\xc1\x4a\x81\x83\xa3\xcf\x5f\x3c\xfb\xd4\xad\xc9\x7f\x1d\xf0\x69\x4f\x73\x82\xd3\xb0\x2a\x94\x4c\x24\x93\xc9\xd2\x42\xe2\xf8\x8b\x85\x65\x23\x00\x00\xbc\xf3\xce\x3b\x5c\x92\x24\xde\xd0\xd0\xa0\x03\xc8\x03\x48\xeb\x22\x4f\xbe\xeb\x2f\x9e\xbb\x54\xab\x25\xbc\x05\x5b\x63\x8d\x4e\xdd\xbf\x2c\x44\xe0\xe0\xb8\xec\x2a\xc5\x9f\x6b\x1f\xff\xde\x9b\x2d\xd9\xff\xd0\x6c\xfc\x4d\x58\xa5\xe7\x46\x00\xe4\xcf\x9c\x39\x63\x3e\xff\xfc\xf3\x2b\x1a\x17\x58\xb1\x91\xde\xb7\x6f\x1f\x55\x14\x45\x84\x55\xd5\xc2\x0f\x6b\xa5\xd0\xb6\x29\xe9\xec\xbc\x7b\x50\xd9\xe5\xcb\xdb\x1a\x6f\x56\x22\x70\x70\x8c\x3b\x8d\xe4\x1b\x2d\x99\x17\x63\xf5\x85\x97\x18\x45\x2f\xac\xa2\x0f\x49\x58\x35\x87\x8d\xd5\xb2\x65\x7e\x45\x47\x38\x1a\x8d\xd2\x2b\x8d\x9f\xac\xe5\x62\x85\x08\x1b\x36\x26\x1d\xef\xb9\xfd\x92\x72\x5f\x30\x23\xb5\xdc\x2c\x44\xe0\xe0\x48\xb8\x4a\xf1\x13\x4d\xd9\x57\x7a\xeb\x0b\xbf\x30\x29\xce\xc3\x12\x7c\x02\xe5\x5e\x41\xe5\x36\x2f\xab\x42\xf8\xc0\x0a\x13\xa0\x82\xb2\xcf\x80\xc2\x6a\xa9\x52\x21\x42\x88\x70\x84\x83\x19\xe9\xb6\xc8\xb0\x6b\xe7\xc6\xa4\x63\x8b\x64\x52\xfb\xaa\x78\xe0\x29\xd0\x29\xd3\x2f\xf8\x8a\xb1\xd3\xa1\xfc\xd1\x78\xad\xd6\xc5\x09\x06\x61\x95\x6a\xa9\x08\x5e\x8d\xc7\xe3\x6c\x35\xe6\x36\xac\xaa\xf1\x2c\x27\x98\x54\x88\xe0\x82\x15\x53\x68\x04\x10\xb2\x97\x68\x78\x53\xd2\x71\xd7\xe6\xcb\xce\xed\xa1\x09\xa9\xc5\xc6\xe8\xb2\x97\xa6\x9f\x0c\x83\x72\x63\x44\xd1\x86\x7a\x02\x85\xd3\xbd\xfe\xe2\x9b\x45\x89\xf5\xc3\x4a\xd9\x1a\x81\xd5\x5e\xae\x80\x55\x2c\xf8\x0a\x56\x15\x01\x2a\x98\x44\x84\x8a\x8d\x50\xd1\x0a\x01\x00\x01\xa7\x46\x5b\x5a\xd2\xf6\x6d\x2d\xe3\xf6\xb6\xa6\xb4\xdc\xe2\xd2\x04\x0f\x5d\xe2\x9f\x52\x69\x00\x71\xa9\x56\x1f\x1c\xf0\xaa\xb1\xc1\x3a\xb5\x3b\x27\x99\x03\x20\x18\x81\xf5\xa6\xa7\x60\x15\x7b\x52\x01\xe8\xab\x5d\xf0\x15\xac\x4a\x02\x54\x50\x8e\x2e\x02\xe5\x60\x0c\xae\x92\xc1\x03\x8b\x10\x5e\xca\xe0\x77\xab\xe2\xba\xc6\xac\xb4\xa1\x21\x2b\xb5\xf8\xf2\xb6\x80\xb7\x20\x7a\x1d\x25\xc1\x45\x39\x28\xaa\xea\xcf\x7d\x15\x1c\x1c\x8c\x80\xa9\x22\x2b\xa4\x1d\x46\x3a\xe9\xd2\x47\x12\xae\xd2\xd0\xb0\x5b\x3b\x3f\xe1\x30\x2e\x9a\xf4\x4a\xf9\xb5\x54\xf9\xc8\xa1\xfc\xb6\xa3\xca\x3e\x3d\xab\x09\xab\x9a\x00\x15\x44\x22\x11\xda\xd6\xd6\x36\x39\x1c\x2b\xc2\x72\xa1\x3a\x61\x4d\x15\xee\xc9\x07\xe1\x70\xc9\x06\x75\xd7\x68\x82\xcf\xad\x09\x5e\x7b\x89\xba\xed\x06\x75\xda\x4b\xd4\x2e\x30\x22\x0a\x96\xfb\x97\x32\x0a\xc3\xa0\xdc\xd0\x44\xa6\x6a\x22\x2b\x14\x6c\x66\x26\x27\x9b\xe9\x9c\x6c\xa6\x8a\x36\x36\xce\xad\xbd\x90\x19\xe0\x9a\x63\xb2\xc0\x75\x00\x46\x32\x99\x64\xb1\x58\x0c\xd3\xf5\xe6\x5d\xed\xb8\x29\x08\x30\x19\x53\xc8\x50\x39\xa4\x49\x87\x7d\x9a\x43\xc2\x55\xe2\x54\x6c\x87\x4a\x6f\xa3\xca\x9e\x47\x7d\xd2\xa1\x4e\x73\x54\xc2\xcd\x06\xac\x22\x4d\x37\xad\xd0\x27\xe3\xa6\x23\xc0\x54\x74\x74\x74\xd0\x60\x30\x78\xa5\xe9\x35\x26\x87\x73\xa7\xff\x3c\x35\x12\xc9\xa6\x1c\xc6\x94\xbf\x0c\xb0\xda\xbe\x0f\x0f\x0f\x57\xdd\x91\xf3\x66\xc1\x4d\x4f\x80\xe9\x10\x8d\x46\xa9\xcf\xe7\x83\x24\x49\xf0\xf9\x7c\x90\x65\x19\x98\x7b\x27\x34\xd3\x34\xed\x4a\x53\xc7\x85\x26\x93\xac\x61\x0d\x6b\x58\xc3\x1a\xd6\xb0\x86\x35\xac\x61\x0d\xab\x1e\xff\x1f\x26\xf5\xd6\xf1\x64\x30\x2a\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x81\x22\x7c\x0b\x92\x2b\x00\x00") - -func web_uiV1StaticMstile70x70PngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticMstile70x70Png, - "web_ui/v1/static/mstile-70x70.png", - ) -} - -func web_uiV1StaticMstile70x70Png() (*asset, error) { - bytes, err := web_uiV1StaticMstile70x70PngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/mstile-70x70.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticSafariPinnedTabSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x56\x5d\x6f\x1c\xc9\x0d\x7c\x9f\x5f\x51\xd9\xbc\xe4\x00\xb7\xb6\x49\xf6\x67\x60\xf9\x90\xb3\x8d\x43\x80\x38\x31\x6c\xe7\x82\x7b\xdc\x48\x73\xd2\x22\xab\x0f\xec\x0e\x24\x27\xbf\x3e\x28\xf6\x48\x97\xc8\x67\x18\x9a\xd9\x9e\xee\x26\x59\x2c\x16\xf9\xfa\xfb\xaf\x37\x07\x3c\xcc\xc7\xd3\xfe\xee\xf6\x7c\x23\x67\x71\x83\xd3\xb2\xbb\xbd\xdc\x1d\xee\x6e\xe7\xf3\xcd\xed\xdd\xe6\xfb\x37\xd3\xeb\xdf\xbd\xfb\xdb\xdb\x2f\x3f\x7f\x7c\x8f\xd3\xc3\x15\x3e\xfe\xfd\x87\xbf\xfc\xf9\x2d\x36\x61\xbb\xfd\x87\xbd\xdd\x6e\xdf\x7d\x79\x87\xcf\x3f\xfd\x08\x8d\x51\x62\x8f\x69\xbb\x7d\xff\xd7\xcd\x84\xcd\xf5\xb2\xdc\xff\x71\xbb\x7d\x7c\x7c\x3c\x7b\xb4\xb3\xbb\xe3\xd5\xf6\xcb\xa7\x2d\x37\x6d\x3f\xbd\x7f\x1b\x3e\xff\xf4\x63\x78\x3e\xf1\xee\xcb\xbb\xed\xe9\xe1\x4a\xe2\xd9\xe5\x72\xb9\x79\x33\xbd\xa6\x9d\xff\xf7\xea\xeb\xcd\xe1\xf6\x74\xfe\x1b\x97\x6a\x8c\x91\x87\x37\x13\x1e\xf7\x97\xcb\xf5\xf9\x46\xca\x59\xf4\x7f\xf7\xcb\x06\xd7\xf3\xfe\xea\x7a\x79\xb1\xf8\xb0\x9f\x1f\x7f\xb8\xfb\x7a\xbe\x89\x88\x78\xfe\xf2\xeb\xdb\x66\xc2\xfd\x71\x3e\xcd\xc7\x87\xf9\x4f\xa7\xfb\xf9\x62\xf9\xb4\x5b\xf6\x77\xe7\x9b\xaf\x1f\xf6\x97\x3f\x7f\xd8\x5f\xe2\x66\x9e\x17\xfa\x79\x33\x2f\xbb\xcb\xdd\xb2\x7b\x33\xbd\x3d\xce\xbb\x65\xbe\xc4\x3f\xff\x8d\xfb\xbb\xe5\xb8\xbb\x98\x21\x67\x22\xaf\xf0\x78\xdc\x2f\xcb\x7c\xcb\x0f\x1f\xe7\x65\x3e\xe2\xf3\x7c\xd8\xdf\x5e\xcd\x47\x07\x2c\x68\x14\x9b\x5e\x6f\x7f\xbd\xe8\xf5\x15\x96\xe3\xee\xf6\xf4\xcb\xdd\xf1\xe6\x7c\xe3\xaf\x87\xdd\x32\xff\x21\xae\xbe\xbd\x7a\xf6\xf2\x3b\x9c\x2e\x76\x87\xf1\xc5\xa2\xc5\x57\xe1\xe9\xed\xbb\xcd\xf4\xcb\xfe\x70\x38\xdf\xfc\x7e\x8d\x07\xa7\xe5\x78\xf7\x2f\x4f\xe8\xed\x4c\xc7\xef\x77\xcb\x35\x2e\xcf\x37\x1f\x34\xe5\x8a\x1c\x35\xe1\x22\x08\xf8\x3f\x45\x84\x8c\xd0\x2a\x42\x43\x48\x15\xc1\x10\x7a\xf2\x5f\x12\x33\xff\x20\x88\x20\x28\x42\xd2\x29\x54\x84\x1a\xc7\xaa\x56\x84\x84\x90\x2b\x42\x47\x28\x79\xec\x6b\xbe\x55\x0b\x42\x19\xb7\x77\x84\x9c\xfd\x21\x9d\x26\x0a\x82\xa6\x38\x85\xc2\x4b\xc7\x87\xac\x08\xd2\x10\x0a\x6f\xe5\x11\x43\x50\x41\xb0\xca\x53\x5c\xcd\x92\x78\x6c\xbd\xcb\x0a\x3d\x30\x84\x52\xa6\x20\xb1\xf2\x85\xbe\x0c\x6b\x36\x1c\xa9\x1e\x1f\x77\x33\xa8\x8c\x50\x69\x81\xab\x31\x22\x34\x9a\xb2\x4e\x3b\x8a\x60\xb1\x4e\x41\x69\xd6\xc3\x5d\x03\x30\x19\xa6\x12\xd7\x33\x01\x69\x8d\xab\x09\x21\x65\x7e\xef\x8c\xbb\xa5\xb1\xb3\x29\x42\xcb\x3c\x29\x93\x23\x68\xb1\x38\x16\xdc\xdf\x11\x12\x2f\xa0\x1b\x74\xbe\x23\xf4\x3c\x82\xf6\x3b\xb9\xb3\xf4\x61\x5a\x18\x3a\xcd\x8a\x41\x64\x0a\x39\x66\x98\x5f\x43\xc0\x15\x74\xb1\x28\xfc\x5a\x03\xaf\x12\xa9\x60\x94\xf4\x8f\xa1\x27\x81\xd2\x1b\x83\xae\x9b\x98\x36\x9b\x3a\x03\xab\x11\x42\x5f\xac\x55\xa8\x32\x23\x2d\x22\xf7\x42\xef\x33\x24\xba\x1b\xb1\x0b\x9a\x0d\x73\xc4\xae\x14\x38\x02\x35\xb9\x2b\x13\x8d\x67\xe8\xe0\x07\x19\xa0\x09\x42\x9b\xa9\x42\x18\x4d\x8e\x20\xb8\xb0\xe6\xd9\x20\x3b\x34\x22\x8f\xd8\x35\xf1\x4a\x81\x49\x9f\x42\x15\xd0\x0b\x03\xef\x6f\x28\x4e\x3c\x88\xe7\xa6\x20\x91\x02\x1a\x51\x4a\x65\x68\x42\xfb\x29\xa2\x22\x77\x02\x21\x0d\x86\xec\x98\xd4\x3c\x49\x61\xdc\x05\x99\xe7\x51\x04\x92\x91\x12\x08\x8a\x42\x2b\x24\x29\x0f\x4b\x45\x23\x5e\x92\x90\x0c\x8e\x6b\x44\x4e\x90\x02\x89\x09\x56\x26\xe9\x05\xb5\xc3\x68\xb4\x1a\x72\x6a\xb0\xa8\x38\xf0\x99\x1c\xfd\x26\xb8\x08\x96\x90\x06\x38\xc4\xaa\x46\x30\xff\x09\x84\x1e\x1e\x8c\xe8\x14\x3d\x23\x0c\x47\x48\x0a\xa1\x6f\xac\x83\x4a\x20\x89\xb5\xad\x09\x74\x7e\x56\xcf\xbc\x3c\xd5\x5d\x1f\x4f\x67\xb6\xe4\x89\xdf\x74\x50\x21\xd8\x5a\x81\x46\x0e\x09\x51\xb3\x4c\x43\x55\x46\x05\x80\xde\xf9\x69\xd6\xab\x3a\xaf\xe2\xa8\x48\x8d\x79\x0a\x44\xdb\xeb\xcb\x6b\x4c\x56\x9e\x5a\x19\xa5\x9f\x5a\x81\xaf\x15\x46\x63\x1d\x23\xa5\x23\x99\x5c\xb1\x75\x45\xe2\xc4\x4d\xe6\x9b\xda\xba\xf4\xb4\x2b\x8d\x1f\x25\x3b\x01\x35\x93\xc0\x59\x98\x1b\xaa\x86\x47\xb9\x52\x3b\x21\xcb\x14\xa4\x1b\xaa\x79\xdc\xee\x9d\x6f\xe1\x25\xc5\xbd\xf3\x9d\x63\x87\x52\xc0\x23\x37\xa5\x0e\xe5\xed\x25\x66\x64\x86\x59\x9d\xe8\xc3\xba\x0b\x59\x81\x32\x2a\xc6\x98\xe8\x8e\x45\x4f\x2a\x91\x4c\x55\x79\x79\xa1\x87\x51\x91\x63\x45\x8a\x0d\x3d\x0b\x1a\x1d\x55\xb3\x49\x44\x50\x23\x8c\x84\x6b\x15\x2c\x7a\x3e\x1b\x9b\x49\x87\x41\x0d\x0d\x09\xe4\x3f\x99\xc6\x2f\x19\xc2\xc0\x95\x4b\x09\x99\xdf\x5a\x42\xaa\x93\x6a\x75\xa2\xf1\x5c\x2a\x68\x28\x4e\x0f\x0a\xad\x0a\x52\xec\xe4\x6f\xa6\x83\x5e\xde\x46\x7e\x86\x8a\x55\x5b\x8b\x0b\x89\x46\x56\xb8\x4d\xea\xd2\xdd\x5d\x00\x1a\x58\xa4\x62\xe3\x21\xa0\xed\x94\x1c\xb4\x5e\x5d\x5e\x84\xb5\x9a\x05\x4a\xa5\x14\x2d\xb0\xca\xf4\xf6\x8e\x43\x1b\x6c\x20\xf5\x59\xba\x17\x62\x0d\xd2\x28\x30\xf4\xbb\x43\x0a\x21\xee\x38\xa8\xc2\x65\xb1\xc2\x22\x2e\x58\x95\x4c\x4c\x2a\x5e\x13\x99\xd0\x4c\xee\xa6\xd3\xcd\x05\x3b\xb3\x40\x83\x61\xa0\xcd\x34\xa5\x0c\x1b\x7c\x94\x21\x2f\xbc\x31\x65\xe8\xa0\xba\x4b\xaf\x6b\x89\x4c\xc1\xb8\x90\xbb\x47\xc9\x6d\xda\xcc\xd3\xe4\x9c\xf7\xec\x0f\xfa\x24\xd7\x9a\x5c\x07\x66\x75\x14\x5c\x4b\x2e\x89\x94\x9a\x94\xa6\x20\xa9\x0c\xc2\xf5\xe2\x88\x69\x6f\xd0\x55\x48\x09\x59\x1a\x8f\x8c\xf8\x9f\xcd\xf6\x7f\x5b\x66\x4a\xb5\x30\xe9\x1d\x17\x81\x7a\xef\xf5\xe7\x24\x75\x56\xd6\x3a\x1c\x66\xa3\x11\x4a\x4c\xec\xde\xdf\xa0\xae\xe9\x56\xa6\x5e\x98\xff\xe2\x09\xd7\x58\x20\x16\x41\x54\x79\x47\x55\x98\x53\xb1\x64\x98\x7d\x63\xba\xc5\x06\xd3\x52\x09\x76\x75\x13\xde\x44\x6c\x7d\x92\x82\x5c\x2c\xa3\xbb\x8e\x36\xa3\xa3\x0d\x3a\xf1\xd9\x1c\xe9\xa4\xc9\x7a\x6a\xdd\x29\x2e\x4f\x6c\xac\x9e\x12\x01\x45\xa3\x53\x26\xcb\x68\x3f\xe4\x0e\x13\x66\xf4\x8d\xa4\x2e\x9e\x59\x49\x28\x14\x6b\x89\x30\x45\x1f\x39\x46\x8b\xac\x0f\xf1\x8a\xec\x04\x59\x1b\xd9\x9c\x1d\x60\x6f\xb6\x82\xe6\xad\xb0\xb1\x0d\xb2\x79\x88\xe7\xd4\x95\x87\x0d\xc3\xe7\x8b\x64\xe8\xf2\x12\x01\x4a\xa5\x11\x9d\x0b\x9f\x2a\x86\x24\xb2\xa7\x0f\xad\x14\xb2\x9b\x19\xd1\x9a\x9e\x3b\x28\x43\x8a\xdd\xb3\xce\x3b\xd5\x5b\x8d\xf3\x88\x4f\x21\x3e\xcc\x43\x35\xa8\x76\x67\x3a\x43\x62\xa8\xa9\x42\xc7\x2c\x62\x50\xf6\x65\x36\x1e\x37\xd6\x27\xb2\xac\xbe\x70\x4f\xd9\x9d\x4c\x72\x79\x76\xef\xa9\x75\xdb\xc8\xc5\xd0\x62\xcf\xb0\x0e\x7a\x8d\x61\x82\xac\x69\x1c\x39\x9a\xbb\xcd\x20\xaa\x97\x12\xb9\xe2\xa3\x4d\x1d\x7a\xed\x1a\xde\x9e\x68\x55\x15\xc9\xa7\x19\xea\x64\x74\xde\x30\x85\x14\xab\x49\x1b\x8b\x3b\x42\x5b\x44\x4a\x3e\xfc\x50\x2c\x83\x29\xd4\xf3\xaf\x0a\x23\x6d\x34\xc1\x7f\x8b\x82\x7c\xf6\x86\xe4\x34\xa8\xcc\x5a\xe8\x71\x1a\x3d\x3b\x0f\x16\x14\x78\xcf\x1e\x82\xc4\xea\xe9\x2f\x40\xb0\x1c\x69\xb5\x29\x67\x4a\xaa\x0c\xb3\x3b\x7a\xdd\xf0\x9e\xad\x3f\xcb\x5a\x7d\x1d\xca\x09\x8e\xb3\x56\x72\x6a\xe4\x32\x75\xe7\x07\x3f\xb1\x4d\x93\x5b\x74\xbf\xfa\xf0\x52\xdb\xaa\x7e\xd1\x75\xdf\xda\x68\x2f\x31\x0f\x7f\xd8\x53\x5e\x72\xa6\x12\x89\x54\x59\x35\xc9\xe7\x47\xee\x4b\xeb\xc0\x45\xd1\x24\xe7\x7c\xc0\x6b\x63\x82\x95\x9a\x39\x4e\xf8\x3c\x98\x98\xe9\x06\x8e\x43\x9c\x79\x28\x92\xc5\xbf\xba\xfd\xec\x25\x62\x86\xaa\x58\x71\x13\x53\x27\x95\x46\x1f\x3d\xc9\x43\x1e\x2c\xae\x39\xba\xaa\xb5\x87\xe5\x75\xa8\x6e\xaf\xa3\x7d\xc3\x74\x8b\xf4\xda\x1c\x45\x36\x6a\xc7\x8e\xac\xa1\x5e\xd2\xc5\xa0\xc9\x7b\x60\x11\x57\x43\x52\xc2\x35\x3c\x1b\x47\xaf\xc9\xcb\xda\xa7\x01\xaa\x4a\x13\x56\x1b\xcb\x90\x34\x07\xaf\xa4\x0a\x15\xc7\x83\x19\xaa\x82\xbe\xe6\xd9\x07\x4e\xeb\xab\x8f\x75\x32\x6f\xfc\xa4\xc3\x37\x5a\xc8\x3c\x56\xa5\x16\xa6\xd1\x93\x47\xbd\xb1\x0c\x57\x68\xf3\x90\x19\x9e\xa7\x77\xa6\x94\x42\x36\x81\xd8\x26\x61\x01\x52\xf2\x0d\xc2\x01\xa3\xbb\xea\x79\x99\x25\xf5\x09\xda\xa7\x7a\xfa\x23\x2c\x74\x5b\x35\xdb\x25\x88\x20\x28\xd2\x70\x69\x7b\xc5\x3f\xa7\x87\xab\x37\xd3\x7f\x03\x00\x00\xff\xff\xab\x7e\x23\x1b\xd6\x0e\x00\x00") - -func web_uiV1StaticSafariPinnedTabSvgBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticSafariPinnedTabSvg, - "web_ui/v1/static/safari-pinned-tab.svg", - ) -} - -func web_uiV1StaticSafariPinnedTabSvg() (*asset, error) { - bytes, err := web_uiV1StaticSafariPinnedTabSvgBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - -var _web_uiV1StaticTadaPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xe7\x06\x18\xf9\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x1e\x00\x00\x00\x1e\x08\x06\x00\x00\x00\x3b\x30\xae\xa2\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x06\xa1\x49\x44\x41\x54\x48\x0d\xa5\x57\x0b\x6c\x93\x55\x14\xfe\xce\xff\x68\xbb\x96\xad\x7b\x08\x1b\x63\x43\x20\x8b\x82\x3c\xa6\xac\x82\x8b\x24\x30\x35\x60\x22\x88\x46\x89\xf3\x85\x41\x89\x43\xc4\x44\x31\x26\x26\x4a\x52\xc1\x68\x94\x87\x51\x14\x5f\x10\xc2\x90\x11\x19\x62\x10\x91\xa0\xe2\x7c\xe0\x18\x03\x04\x1f\x53\x54\x1c\x66\xbc\xc2\x56\xd8\x60\xb4\xb4\xfd\x1f\xd7\x73\x3b\xfe\xd1\x6e\x6c\x2c\x72\xd3\xf6\xde\x7b\xee\xb9\xe7\x3b\xe7\xbb\xe7\x9e\xff\x2f\xd0\xc7\x36\xa9\x46\x68\x77\xee\x14\xe9\x7d\x54\xbf\xac\x9a\xe2\x68\x3c\xb0\xc7\x7c\xec\xfe\x7a\x63\x89\x33\xef\xda\xe7\x79\xad\x29\xfe\x74\xd1\x70\x5f\x9d\x31\xb9\xeb\xda\xff\x99\x77\x02\x93\xaa\xee\x12\x02\x9b\x7b\x32\x62\x59\xea\x2e\xcb\x42\x9d\xee\x56\x3e\x2d\xdf\x1d\x0f\x24\xeb\x09\x21\xa8\xa6\x4a\x0c\xaf\x59\x2d\x32\x93\xe5\xbd\x8d\xa9\xb7\xc5\xae\x6b\x33\x1a\x84\xcb\x15\x15\x35\x96\x65\x09\xeb\x46\x6d\x62\x35\x91\x25\x75\x18\xd0\x63\xeb\xf8\xce\xa5\x21\xc7\x8c\xa3\xbc\x6c\x26\xed\x95\x72\x79\x34\x3e\x97\xfd\x0c\xc2\xe1\x15\xeb\xcb\x32\x42\x52\xe6\xb4\xce\x88\x1d\x41\x6f\x7d\xf5\x48\x8a\x9b\xa6\xfd\x2a\x81\x6e\x52\xf6\x61\x88\xa3\x5b\x36\x8b\xa2\x8a\x81\x29\x96\x8d\x23\xb6\x8a\x17\x1c\xb9\xdb\xd3\xaa\x90\xb0\x33\xb5\xec\xf4\x6e\x38\x9a\xa3\xd4\xe7\x5e\xb5\x8f\xc3\x56\x24\x53\x7e\xb9\xa7\x66\x9d\xb8\x4d\xd5\xf0\x94\x65\xc2\xc7\xd2\x62\xdb\xc6\x62\xc7\x56\x75\x20\xfb\x0c\x8f\xe7\x3b\xf3\xe4\xbe\x9b\x27\xc9\x8b\x97\x1a\x2b\x96\x32\x56\x00\xd1\x08\xda\x9b\x6a\xd7\x88\x41\x10\xd8\x60\x5b\x68\x53\x54\xd4\x71\xc4\x73\xe9\xd0\x45\xe0\x4b\xed\x77\x64\x7d\x8a\x78\xcd\x93\x81\xe9\x9a\x26\x02\x61\x35\xe3\x40\x8d\xa2\xcc\x35\x41\x5b\xb7\x04\x32\x42\xf3\x2a\xc5\x50\x1d\xf0\xa8\x2a\x1a\x22\x6d\x58\x7b\x7b\x05\x9d\x70\x0c\x5f\xae\x4f\x01\x16\x4f\x2f\xba\x05\xb6\x18\x80\x13\xbf\x56\x53\x75\x75\x22\x71\x76\xbe\x76\x43\xfe\xe1\x63\xa2\xd2\x05\x33\xe3\xf8\xe0\x52\xa8\x2e\xc2\x88\x1f\x16\x6f\xda\xc8\x96\xa7\xcc\xa4\xc3\x5f\x7f\x24\x9e\x60\xda\x16\xf8\xfc\x78\x7e\xc7\x3a\xf1\xc2\xad\x0f\xd2\xbb\x62\xc6\x0c\x15\xf9\xc5\x4f\xc0\x46\x36\x34\xef\x62\x7a\x63\xfe\xf9\xae\x8e\x74\x52\x2d\x82\x41\x0d\x42\xbc\x0f\x55\x5f\x8f\xc2\xe2\x7c\x47\x31\x30\x5c\x2f\xef\x9f\xa9\x66\x84\xe3\x80\xab\xed\x18\xae\xfd\xfe\x15\x0c\x3b\xb8\x7e\x61\xe5\xbc\xc0\xfa\x0f\x67\xfb\x72\x6f\x7b\x88\xd6\x34\xb4\x61\x84\x69\x61\x19\x09\x2c\x7c\x66\x99\x48\x43\xfa\xd0\x5c\xb6\xb5\x1c\x69\x69\x2f\xc1\x3c\x3b\xda\xb1\x95\xdc\x77\x46\x4c\xc1\xa0\x29\xe6\x2d\x7a\x0e\xb6\x39\x10\x39\x56\x82\x32\x51\x5b\x9a\x86\x56\xb3\x22\x2f\x07\x38\xda\xa2\x21\xb3\xf9\x00\xb2\x4e\xee\x83\xa9\xba\xc9\xa5\xd9\xe5\x6a\xf6\x9d\xa3\x77\xac\xad\x6a\xe0\x33\x2f\x60\xba\x0b\x0d\x03\x3b\x4b\x0b\x10\xc7\x59\x6f\x33\x5a\x69\x01\x62\xe7\x73\x60\xe1\xf7\x64\x40\x67\xdc\xeb\x3d\x16\xdb\xc6\xdd\x0d\x9d\x36\xb5\xb7\xd9\xd8\xb2\xd3\x42\xdc\xe0\x8b\x94\xd8\xc1\x50\xdc\x06\x8d\xa9\x84\x4a\x51\x44\xc2\x27\xb6\xbb\xb2\xa6\x6e\xf4\x66\xe2\xe3\x09\xd3\xa9\xdd\x31\xde\xb5\x17\xdb\x4b\x86\xb3\xd7\xfd\xe8\x8e\xfa\xbd\x9d\x54\x77\x53\x12\x20\x3e\xa3\x39\xe0\x2e\x3d\x9d\xef\xc9\x28\x3f\x38\x6b\x53\x9a\x9c\xc7\xe2\x61\xb4\x1f\x5b\x79\x5d\xe3\xd7\x74\xa0\x37\xd0\xc4\x46\x53\x59\xc9\xe6\x3e\x17\x1b\x4a\xd3\x7a\x04\xc6\xd6\xf1\x63\xa1\x62\x12\xe2\x26\xe0\xce\xc2\x88\x9b\x86\xe3\xea\x21\x7e\x70\x01\x61\x1b\xc4\x47\x68\xe1\x54\xe3\x42\x90\xea\x87\xbf\x60\x56\xa1\xd7\x5f\xfc\xd9\xca\x39\x81\x51\x29\x9e\x75\x9d\xd8\xe2\x45\x16\xcd\xc1\x8c\x5d\xd1\x1e\xa9\x16\x5b\xc7\xbd\x07\x0f\x55\xc0\xe4\x34\xc8\x1b\xc1\x99\xe5\x46\xa4\x3d\x86\xed\x9b\xff\x40\xeb\xe9\x08\x54\x55\x61\x70\xbe\x58\xa4\xb2\x1f\x3a\x74\x85\x8f\xc2\xb6\x7e\xae\x37\xf7\x97\xad\x08\x05\xc3\xc8\xd7\xb3\xa0\x19\x16\x96\x06\x4f\x31\x48\xc7\xd9\x24\x39\x72\x49\x60\xf1\xe5\xcd\xf9\xb0\x8c\x5f\x58\x2f\x07\x39\xc3\x00\x1f\x67\x97\xe0\x48\x19\xac\x35\x14\xc6\x57\x9f\xff\x85\x73\xed\x51\x9e\xca\xed\x1d\x36\x4d\x3e\x97\x5c\x35\x0b\x25\xf6\x98\xbd\x03\xc5\x80\x4c\x28\x5c\x5c\x08\x4c\x17\x0e\x43\xd0\x26\x90\xb1\x9a\xde\x0c\x36\x39\xd8\x97\x06\xde\x36\xee\x39\xe8\x78\x1d\x3a\x03\x5e\x35\x94\x6d\x5f\x70\x58\x66\x96\x30\x70\xea\xcf\xbf\xb0\xa3\xb6\x1d\xe7\xce\x93\xf4\x25\xd1\x46\x52\x11\x6e\x20\x66\x5a\x37\x71\xda\x68\xff\xaa\x3f\x65\x7d\xcc\x3e\x79\x18\xfc\x66\xa6\x64\x1a\x53\x63\xc3\xb6\x97\x20\x6a\x2d\xa5\x0f\x82\x91\xce\xeb\xe4\x78\x22\xb6\x94\x78\x59\xe1\x51\x28\x69\x40\x66\x01\xc0\xf5\x30\x91\xca\x92\x52\x83\xeb\x40\xcb\x21\xe4\xf8\x22\x98\x3c\x5e\xc3\xb7\x3f\x59\x08\x9d\x11\xf0\xaa\x3a\x8a\x68\x30\xfe\x14\x8d\x68\x30\x0f\xa2\xcd\x3e\x87\xc7\xdf\xfe\x75\xd5\x05\x9b\xef\x88\xf9\x2f\x17\x32\x21\xcf\x82\x94\xd9\x70\xa3\x8a\xe5\xff\x74\x8b\x58\x7c\x31\xfe\x5e\x8e\xb6\x1a\x99\x4c\xb1\x37\x1b\x96\x7f\x10\x94\xc8\x69\x50\x98\x9f\x6a\x2d\xff\x74\x80\x13\x87\xc9\x9f\xf3\x51\xa0\xee\x37\x1b\x8d\xc7\x04\x5c\x5c\xac\x4d\x32\x38\x40\x82\x22\xa3\x03\x95\x3e\xb2\x7c\x6f\xbd\x13\x90\xec\xc5\xdc\x60\x3f\x5a\x11\x3c\x27\xc7\x17\x88\x92\xc3\x04\xa3\x7c\x85\x8c\x0a\xa4\xf7\x67\xd0\xac\x84\x40\xb8\x38\x72\x93\x11\x9a\xff\xbe\x08\x2a\x95\xd9\x74\x9a\x1b\x98\x54\xa2\x60\x42\xb1\x02\xb7\xc7\x62\x72\x14\x26\x8b\xe0\xd1\x65\xe6\xd9\xd7\x48\xb5\xe4\xe6\x80\x4a\x59\x2a\xd5\x5b\xae\x0f\xc0\xe7\x9b\x08\xdf\x40\x06\xe5\x55\x3e\x53\xed\xe8\x81\x04\xbd\xe0\x27\x3c\x53\x95\x6c\x27\xa1\x23\x29\xbb\x76\x28\xe1\xea\x81\x2a\x8e\x9e\x04\x9a\x4e\x0a\x9c\x3a\x63\xef\xb1\x74\xb5\x36\x55\x39\x75\x96\x0a\xac\xea\x8f\xa3\xff\x60\x1d\x8a\xab\x43\xcb\x88\x00\x21\xa6\xd7\x8c\x5d\x04\xe5\x82\xcc\x59\x7a\xd1\x8a\xcc\x6c\x8d\xa3\xf4\xd8\x46\xd1\x60\x7c\x53\x54\x48\xef\xc3\xe3\xdb\x46\x65\xdf\x32\x4d\x3d\xb7\x4e\x60\xf1\x49\x51\x01\x32\x06\xdc\x03\x9d\x5f\x9b\x64\x8d\x90\x89\xd4\x7c\x88\x7b\xde\xef\x44\x2a\x41\x63\xcc\xaf\x6e\xf0\x97\x75\x18\x10\x31\x3b\x04\x43\x6c\xe4\x9a\xbc\x4a\x96\xc2\x9e\xa1\x52\x57\x3a\x81\x91\x3d\xe4\x21\x0c\x28\xc8\x4a\xdc\x3c\x09\xc6\xd9\x9b\x00\x77\x40\x15\xf6\xa6\x25\x17\xd8\x7f\x23\x17\xe9\xe3\xc0\xe8\xfd\x07\x61\x28\x6b\x60\x5a\x55\x34\x6d\x5f\x53\xaa\xd9\xcb\xcf\x12\xc0\x62\xfb\x18\x1f\xfc\xf9\xb3\x40\x4c\xb1\x4c\xa4\x10\x83\xc6\x99\x66\x07\x54\x32\xeb\xe6\x9f\xb8\x4b\xc0\x48\x23\x1c\x29\xfc\x06\x45\x0d\x77\xd1\xf4\x1f\x7b\x7e\x20\x6c\x1d\x37\x9b\x73\xa4\x1f\xea\x77\xbf\x45\xc1\x04\x87\x29\xde\x74\x64\x4b\x6e\xe9\x54\xa4\xfb\xaf\x41\x8c\xcf\x52\x82\xc6\xc2\x1d\xa0\x2a\x83\x79\x58\x85\x70\x16\x31\x5a\x8b\xbc\x93\x93\x98\xe6\x52\x58\x6a\x79\xaf\xa0\x72\x07\xe1\x61\x90\x98\x8d\xa9\x25\x5c\x00\xba\x37\x4d\xd4\xf0\x0b\x80\xde\x5c\x91\x28\x89\xa1\x46\x7e\x9b\xe2\x20\x5c\xac\x2b\x93\xc6\x10\xff\xf2\xf7\x23\x1e\x57\xd2\xe4\xdd\x7c\x9f\x64\xeb\x35\x59\x13\x1a\xbc\x93\x9f\x21\xd6\x3d\x50\x14\x8d\x02\xfb\x38\x21\xba\x37\x12\x0d\x73\xf3\x58\xed\x10\xce\x36\xf9\x10\x6e\xe1\xc4\x92\xdb\xb0\x9b\x7f\x56\x72\x71\xde\x44\xb7\xef\x3a\xdd\x7d\xdb\x95\x4b\x48\x88\x0d\x2a\x6a\xab\x96\x22\x7a\xe2\x5e\x18\xa8\x63\x27\x3e\x84\xc7\xbb\x83\xaf\x83\x79\xe5\xe6\xfb\x60\x41\xd4\x5c\xdf\xe7\xbf\x1f\x7d\x30\x77\x59\x95\xff\x00\xa6\xa9\x88\xfd\x04\xed\x0a\xda\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xc8\x33\xe9\xa7\xe7\x06\x00\x00") - -func web_uiV1StaticTadaPngBytes() ([]byte, error) { - return bindataRead( - _web_uiV1StaticTadaPng, - "web_ui/v1/static/tada.png", - ) -} - -func web_uiV1StaticTadaPng() (*asset, error) { - bytes, err := web_uiV1StaticTadaPngBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "web_ui/v1/static/tada.png", size: 1767, mode: os.FileMode(420), modTime: time.Unix(1539276764, 0)} - a := &asset{bytes: bytes, info: info} - return a, nil -} - var _web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x9a\x55\x53\xdc\x0d\xb3\xc4\xff\xbb\xb8\xbb\x43\x70\x87\xa0\xc1\x65\x71\x0b\xee\xee\x12\x9c\xe0\xbe\x10\xdc\xdd\x9d\x20\xc1\x03\x09\x21\xb8\xbb\xbb\x6b\x70\x77\x87\x53\xcf\xf9\x00\x6f\x4d\xcd\x5c\xcc\x6d\x57\xf5\xaf\x2f\x3a\x52\x45\x49\x06\x0d\x99\x18\x19\x00\x00\x34\x39\x59\x49\x35\x00\x00\x3a\xff\x5b\x44\x78\x00\x00\xd4\x56\xed\x11\x00\x00\x80\xb5\x16\x53\x14\x03\x80\x9f\xf1\x28\x2f\xa6\x70\x00\x00\x50\x98\xcb\xaa\x29\x02\x80\x0f\x1d\x00\x40\x43\x00\xe0\x09\x00\x00\xe8\x01\x00\xb8\xb3\x03\xc0\x91\x09\x00\x08\x64\x00\x00\x81\x73\x4e\xb3\xaa\x10\x00\x00\xf0\x66\x0a\x32\x92\xc0\xfb\x7f\x53\xd0\x56\x96\x0c\x00\x00\x82\x9b\x9c\xa2\x14\xc2\x16\x0c\x39\xc0\x4c\x50\xf9\x9b\x9e\x1d\x00\xa4\x8e\xe5\x24\xc5\x34\xbc\x96\x4f\xdb\xbe\x24\xd0\xc8\x78\xd0\xdd\xad\x0a\xd7\xb4\x72\x1d\xb7\x37\x57\x3a\x71\x37\x83\x50\xa1\xfd\x1c\x36\x00\xcc\x28\x90\x01\xb2\x0e\xe3\x52\x40\x0f\xff\x17\xa1\x10\xfb\x85\xef\x68\x97\xf2\x0c\xdd\x93\x71\xca\x46\xcf\xa5\x24\x35\x8d\x53\x75\x1a\xc3\x56\xb1\x1e\x6f\xd4\x42\xef\x8b\x9c\x0b\xbf\xc1\x0e\xfa\x5e\x3b\xc6\xaa\x36\x0c\x1a\xf7\x93\x48\x65\xf3\x19\xf5\x79\x4c\xcc\x8c\xa1\x68\x3d\xd5\x0c\x35\x27\xd5\x79\x73\xf3\x35\x97\xeb\x48\x79\x55\x05\x9f\xd0\xba\x6b\xe0\xdb\x4b\xdb\x39\xe8\x66\x4a\x86\xdc\xff\x7f\x9c\x01\x07\xc4\x5f\x6b\xbc\xce\x2d\x5b\xb3\x3f\xd4\x85\x0f\x67\x08\x8c\xbc\x82\x1c\xee\x1b\x56\x91\x0e\x98\x21\x08\x36\xaa\x83\x2d\x87\x2b\x61\xdd\x1b\xda\x71\xeb\x85\xb5\x00\x2b\x05\x64\x53\x35\x5b\xd4\x37\x70\x41\x36\x42\xb7\x93\x03\xf6\xd5\xd8\x98\x51\x40\xc2\x18\xe4\xb7\x49\x7d\x31\xb8\xdf\x34\xa7\x7c\xee\x82\x99\xb1\x3f\xc3\x6f\xa5\x18\x70\xfe\x8a\x0e\x3c\x21\x4f\x31\x3d\x21\xd7\x81\xe2\x27\x7d\xe3\x13\xf7\x17\xcf\xad\x3b\xe0\x37\x6b\x31\x8d\x2e\x82\x4f\x84\xd1\x6d\x31\x2f\xb8\xde\x91\x00\x7f\x4b\x9b\x10\x41\x3d\x10\x38\x44\x44\xb6\xe9\xe7\x84\xcb\x64\xd9\xfd\xe2\xf9\x0b\x30\x16\x9a\xfb\x44\x3a\x03\x3d\xff\x86\x1b\xf2\x7e\xc2\xfc\x0d\xc1\x33\x07\xcc\x8d\xf9\x44\x11\x34\x20\x12\xeb\x15\x4f\x8b\x82\xf2\xa3\xbe\x80\x66\x44\x9c\x4f\x17\xdf\xac\x3e\xb4\xa7\x3e\x94\xba\x3e\xb4\x98\x4a\x0a\xeb\xb3\x98\x24\xb4\x37\x56\x79\x14\xb3\x81\x11\xda\x87\xc9\xc5\xda\xad\x81\xd3\x50\x2f\xa7\x23\x87\xf3\xe5\x07\xc3\x4a\x68\xab\x7d\xea\x55\x94\xa6\x52\x38\xeb\x58\xff\x68\x58\xd6\xa6\x3a\x70\xf1\x76\xe2\x60\xb4\x0b\x1c\x30\x7f\x63\x3b\x23\x84\xbb\xc0\x7a\xa1\x28\xdc\x87\xcb\xf6\x8a\x83\x1b\xea\xde\xd6\x11\x8b\x8a\xc3\xff\xde\x25\xa6\x49\x1a\xff\xc5\xc2\x69\xb0\xd7\x57\x92\x24\x1e\x09\x17\x0d\x07\x19\x26\xa3\x90\x0f\xac\x82\x09\x83\x05\x4a\x82\x82\x40\x40\x88\xed\x02\xb0\x88\xa9\x06\xdf\x09\x80\xe0\x80\x68\x50\x03\x21\x38\x97\x8a\x41\xb5\x17\x99\x27\x38\x46\xea\xa0\x5e\x6c\x51\x5c\xf7\xfb\xb5\x77\x5f\xf3\x6f\xe2\x4f\x04\xf8\x3b\x3e\x3e\xac\x66\x15\x3c\x56\xf8\x1a\x29\x5d\x2b\x2f\xb8\xdd\x95\xa8\xfe\x52\x50\x41\x08\x88\xaf\xeb\x3e\xee\x6e\x1d\x2b\xcf\x2b\x0b\x00\xc4\x07\x7b\xa7\x83\x6e\x27\x2f\x24\x95\xf2\x94\x7e\x74\x27\x46\x88\x9d\xa5\xb1\xfa\xa9\x14\xd8\xa0\x72\xa5\xf4\xa2\x8a\x93\x04\x76\xfc\x30\x49\x5d\x12\xff\xcd\xf1\x9d\x75\x14\xdf\x2d\xc8\x88\x71\xf8\x2e\xf4\xb6\xce\x7b\x57\x4b\xbe\xe5\x53\xf6\x2c\x57\x18\x04\x0d\x70\x4e\x09\xd6\x8e\x2b\x20\xea\xfe\xc4\xbc\x1a\x19\xe5\xac\xcf\x04\xe9\xb4\xc1\xd8\xc4\xf7\xb1\x76\x23\x80\xe2\x78\x01\x98\xf4\x5f\xbf\xbe\x4c\xea\xd9\x6c\xd8\x88\x35\xf3\x96\x26\x23\xe0\xe1\x90\xe3\x30\x10\x0f\xa0\x4a\x15\xf2\x04\x3b\x09\x12\x42\xa5\x38\x46\xf4\x33\xd6\xa6\x25\x7d\x44\xca\x74\xce\x59\xfb\x63\x31\xd8\x62\xcb\x1b\x0e\xeb\x74\xc1\x00\x0e\x53\xd4\x66\x2e\x23\xf1\x18\xaa\x67\x0a\xd5\xaa\x07\xf2\x26\xd1\xe5\xeb\x28\xc9\x02\x22\x06\x40\x05\x44\xa8\xeb\xf2\xbb\x58\x7c\xf2\xb3\x60\x61\x13\x26\x9e\x09\x8d\x97\xe7\x11\x10\x67\x90\xef\xc2\x8f\x39\x6b\x03\xc3\xd4\xd9\x8f\x6a\xb9\x05\xe5\x4d\x30\xdf\x65\xa3\x20\xbd\x9e\xba\x9a\x97\x54\xe6\x70\xf2\x21\x6f\x8d\x62\x06\x58\x4d\xf7\xff\x38\x43\x95\x6a\x72\xc0\x2d\x88\xdc\x7c\x46\xf6\x37\xc0\xe9\x1e\x48\xa7\x7a\x2e\x9b\x19\x4e\x46\x52\xf4\x92\xaf\x9f\x52\x15\x57\xbd\xe2\x39\x24\xb0\x35\x6f\x2c\x45\xba\xf9\x66\x3f\xf8\xd4\x77\xdb\x75\x45\x62\x4d\x2f\xcf\x05\x5f\x28\xd0\x94\xda\xa5\x1a\x21\xa8\x86\xe5\xf1\x1a\x7d\xf7\xf3\xb2\xcd\x2a\x8e\xfa\x61\x5b\x3a\xf9\xae\x24\xb5\xcb\x97\xa0\x38\x1e\x95\xa0\x6f\xbf\x1b\xde\x5b\xb2\xc0\x06\xd5\x23\xe1\xcb\x8c\x1d\x3b\x30\x42\x65\x5f\xc3\xb0\x54\xcb\xd2\x77\x4b\xde\x21\xaa\x2b\xd4\x80\xcb\xf5\x15\x30\x81\x76\x64\xf6\x32\xc3\x74\x3a\x54\x21\xb6\x68\x81\xc0\x27\x7e\xb5\x99\x3b\x88\x6d\xb2\x0c\x6a\x71\x6c\x52\xa5\x67\x7a\x48\xa2\x9f\x0a\xa2\xf2\xd3\x58\xfd\x30\xac\x30\xd7\xcf\xf6\x17\x6d\x55\x7a\xaf\x2c\x13\xdb\x5b\x88\x3f\x75\xf8\x7b\x14\x3d\x0c\xff\xee\xba\x62\x02\x1e\xc6\x90\x03\xa2\xf7\x56\x94\x90\x3c\x4a\xc0\x0f\x19\x82\xad\xcf\x49\xbc\xae\x34\xe2\x89\x5f\xcf\xcd\xdc\x9e\xce\x76\x2f\xca\xd4\x2d\xb7\xb8\x8a\x42\x31\x8a\x86\xcf\xcf\x6d\xd8\x61\x9b\x3f\x4e\x62\x2c\xf4\xec\xfd\x59\xcf\x67\x78\x3b\xb8\x8a\x68\x86\xc5\x93\xda\xb4\x86\x0b\x90\x76\xf6\x8e\x73\x24\x90\x5a\xd4\x44\xc6\x34\xd9\xf7\x85\x33\x5e\xb6\xb9\xf2\x47\x99\x6a\x1b\x48\xa7\xca\x97\xfb\xd1\xbd\x4f\x43\x42\x0e\x35\xfc\x55\xb0\xc6\xc4\x0e\xa8\x13\x1c\xfc\x9d\x2b\x7f\xbc\x3f\x57\xc6\x0f\xf0\x73\x2f\x6f\x45\xfd\x24\xb5\xb9\x56\xc1\xe3\xd5\x2a\xfd\xe7\x1b\xf6\x09\x31\x9c\x0d\xfb\x51\x8b\xb4\x1f\xa0\x72\x57\x92\xba\x15\x6e\xb5\x93\xff\xe1\x63\x64\xc7\x47\xfd\x07\xf6\x1b\xb8\x0e\x46\x42\xb0\x04\xce\x41\x66\x5f\xd3\x1b\xaf\x93\xd2\x7e\xe0\x4f\x52\x2e\xce\x4d\x51\xea\x55\x2d\xab\xa9\x1a\x15\x28\xda\xd6\xfd\xf5\xc9\x45\x30\x5b\x99\x06\xa5\xcb\x95\xd5\x76\xe4\x50\xce\x8b\x3e\x65\xb2\x50\x08\xa1\xec\x8a\xff\x79\x0b\x1a\xae\xd8\x0f\x9a\xa5\xda\x55\x42\x96\xf7\x8e\x5a\xd2\xc1\x76\x3b\xcc\x52\xf1\x3a\xaa\x13\x1f\xda\xc5\x29\xe4\xc9\xee\x72\x36\x10\x14\x15\x28\x0c\xb7\xde\x91\x89\x63\x93\x6a\x27\x5d\x18\xbc\xce\x28\x5c\xf4\xd8\x78\x76\x0c\x0f\x5d\x92\xa7\xb3\x7f\x7d\xcd\x1c\xea\x5e\x98\x88\x4d\xb5\x02\x41\x60\xfe\x50\xcd\x7a\x47\x7b\x14\x63\x9f\xe8\xcc\x74\x52\xbf\x04\x50\x07\x20\x02\xdd\xe6\xde\x5f\x1e\xd4\x09\x10\xda\x9d\x2d\x3e\xbd\xd0\x63\x7d\x13\x8a\x03\x86\x56\xfc\xcf\xff\xc0\xb0\x4b\x24\xd6\x89\x7d\xc8\x18\x1d\xc1\x88\xc3\xff\xde\xad\xb6\xaa\xc3\x03\x2b\x2d\x1c\xb8\x87\xfd\x30\x53\xa6\xec\x74\xef\xf0\x27\x96\xec\x07\x90\x73\x71\xed\xa8\xb8\x10\x81\x01\x24\xca\x58\x6f\xdf\x0b\x05\x70\x5d\x0e\xf4\xd0\x1e\x8a\xe2\x31\x10\x87\x91\x89\x14\x9f\xf2\x50\x00\x2c\x2a\xdc\x69\x2c\x28\xf1\xe7\x0a\xe1\x49\xb8\x0d\x4b\xa9\x19\xba\xdb\x6f\xbd\xbb\x44\x02\x2e\xdb\xbd\x35\xea\xc1\x64\x65\x40\x4e\xdb\xf9\x27\xcf\x7f\xb1\xf8\x4a\x36\xe2\x57\x8f\xd1\x30\x1d\x7e\x0b\xf2\x0f\xca\x3d\x74\xde\xdf\xcf\xe7\x57\x0d\x4c\x20\xf2\x8b\x34\xe4\x99\x83\x23\xf7\xe8\x69\xbd\x25\xd9\x30\xcb\x54\x12\x6f\x41\xee\xf4\x4a\x39\x90\x16\x39\x24\x8f\x98\x4d\xd8\xc5\xe7\x17\xab\x34\x30\x50\x28\x61\x57\x38\x34\xe0\x48\xd3\x9e\xc5\x84\xd2\x51\x8f\x95\xd3\xb8\xd3\x89\xa9\x42\xc2\x11\x4d\x65\xb5\x44\xc8\x42\xa2\x1d\xc7\x08\xce\xa6\x2c\x40\x25\xa4\x08\xc3\x84\xef\xcc\xa0\x12\x27\x8c\xc8\xa0\x0a\x62\xa7\x31\x41\x06\x5b\x45\x14\xe4\xf2\x66\x9b\xf6\xf5\x62\x90\xe9\xa2\xbd\xf7\x99\xc8\xbd\xf0\x8a\xf2\x65\xbd\x55\xde\x46\x1c\xc6\x72\xc3\xd9\x24\x4d\x76\xcc\xd4\x51\xe3\x76\x0e\xac\xef\x87\x1a\x07\x47\x5d\x84\x93\xb7\x64\x36\x9d\xe7\xf5\x0d\x8a\xa2\x93\xfc\xa3\x59\x06\x35\x10\x48\x40\x58\x47\x51\x0d\x0b\x4a\xea\x65\xaf\xa5\x96\x86\x71\x69\x05\xb5\x53\x4e\xfd\x54\x1b\x51\x2c\x13\xd3\xdc\x83\x8e\x9a\x21\xee\x28\x5c\xd1\x54\x26\xb8\x1c\xc3\x98\xec\xa3\x00\x65\x58\x1d\x04\x0b\xcb\x81\x46\x9e\x27\x4d\x9c\x4e\xab\x1b\x1e\x5d\x06\x0d\x3b\xde\x56\x9c\xca\x2c\x41\xb2\xb7\x73\x28\x41\xce\x2c\x29\xb6\x3b\x84\xca\xa5\x25\x3f\x53\x85\x1b\xff\xd3\xe0\x40\x11\xfc\x63\xbf\x4f\x2f\x8b\x98\xc3\x7e\x93\x6e\xd1\x7b\x5c\x6f\x23\x33\x04\x7a\x21\x18\x6d\x48\x04\xe0\x4e\x49\x4f\xed\x7f\x44\x13\xfa\xc3\x56\xfd\x52\x68\xb1\xf3\x6d\xc5\xbd\x16\x15\x9a\x09\x66\x25\xa0\xf5\x15\x26\xa9\xd7\x9a\xa7\xde\xdb\x96\x9f\x35\x18\x0f\x19\xb3\x57\x6d\x54\x10\x28\x24\x96\x08\x8a\x64\xac\xa1\xc1\x3d\xcb\x84\x49\x76\x41\x94\x12\x1f\xec\x2d\x6c\xa2\xeb\x45\xd0\x74\x31\x69\x62\x88\x43\x4b\xeb\xbd\x6c\xa2\x8b\x09\xf9\x4c\x4a\xc0\xb0\xfc\x95\xb7\x96\x72\x52\xdf\x7a\x40\xe1\xdd\x91\xae\x84\x48\x05\x85\x71\x5f\x62\xdc\x13\xaf\x51\x13\x04\x16\x12\x86\x6d\xea\x73\x34\xc0\x49\x9a\x30\x24\x7e\xd8\x96\x34\x7a\x92\x09\x29\xea\xaa\x6e\x97\x89\x82\xda\x16\xe5\x2a\x87\x57\x3d\xee\x36\x71\x08\xe6\x4f\x3a\x55\x4b\xc6\xce\x25\x59\x10\x10\x55\x3c\xf5\x65\xf7\xad\x3d\xd3\x16\x3e\x30\xb6\x2b\x80\xec\x47\x43\x8a\xec\x51\xa4\x96\xf0\xf1\xb1\x9b\x01\xa0\x08\x92\x98\xc3\x82\x12\x79\xd9\x2a\xc4\x93\x98\x5c\x2a\x13\x35\xed\xf6\x19\x27\x8c\x96\x24\x94\xa7\x85\xcd\x7e\x34\x2a\x3d\x7c\x24\xf0\xfa\xa9\x7d\xf5\xd3\x99\x91\x67\xf5\x05\x8c\x7d\x31\x98\xdb\xd9\x55\xa0\x9b\xfc\xc3\x88\x42\x4f\x7e\x53\xd2\xd3\xb0\x8a\xdc\x0b\xeb\xa8\x8a\x45\xe5\x59\x2c\x88\xdd\xb0\xa0\xef\x36\xc2\xdb\xee\xe3\x0f\xe3\x4c\xb9\x2f\x5c\x95\xaa\xe6\x73\x34\x55\xa8\x9f\x44\x9b\xae\x0f\x09\xf4\x56\x59\x2e\x7b\xc5\x1a\xdc\x3e\x83\x84\x28\x57\xf1\xad\xb6\xf5\x7a\x3f\xd7\x4a\x8d\x3e\x36\xec\x38\xf3\x98\x25\x2c\x4a\x2a\x7d\x58\xc9\xd7\x42\x8f\xdd\xdf\x95\xe0\x88\x8d\xb1\xef\x1f\xed\xc4\x5c\x6c\x90\x7b\xa5\xef\xe0\xcb\xf0\x1e\x59\xd3\x6c\x99\x38\xd9\xfa\xc9\x8a\x3c\x29\xf9\x80\x07\x20\x2a\x97\xa5\x46\x96\xd5\x96\xbc\xb1\xeb\xe2\x8b\x74\x68\x0a\x36\xe3\x72\x30\xd7\x2e\x8e\xb8\xca\xbd\x4e\xcf\x51\xde\x4e\xfb\x89\x1b\xb3\xdb\x09\x16\x2a\x71\x35\xcd\x47\x5d\x3c\xc7\xbe\x09\xb5\x32\x66\xb9\x7b\x0f\x6e\xaa\x82\x37\xb7\x73\xe5\x93\x72\x5b\x38\xab\x6a\x8c\x88\xb4\xd8\x06\x3e\x51\xfe\x14\xad\x3e\x11\x6d\xc2\x17\xe0\x31\x48\x41\x67\xa0\x8b\xbb\xb5\xe5\x68\x23\xe6\x10\xf1\x3a\x34\xd9\x0b\xa7\x33\x15\x68\xa2\x96\x26\x11\x5e\x89\x1b\x48\x63\x86\xe0\x6c\x61\x80\x20\x0f\x9b\x7a\x36\x47\x43\xc7\x43\x81\x59\x0c\x28\xf9\xeb\x51\x7d\x35\xa1\x99\x89\xe8\xd9\x0d\x0b\xe1\xc3\xe4\x06\xc4\xaa\x6c\x96\xe2\x5a\xc4\x4c\x82\xf9\x4a\xd7\xea\x50\x8a\x2d\xa7\xb4\x98\x33\xa9\xe2\x5e\xbf\xf6\xc0\x97\x14\xc8\x5e\x56\x92\x76\xd5\xcb\x33\x4e\xdf\x9c\xab\x79\x89\x6b\x32\xbf\xf7\xf6\xc1\xd7\x87\x75\x61\xdd\x5d\x9d\x5e\x0a\x98\x08\xf7\xbc\x73\x95\x84\xd3\xc7\x85\xfb\xdd\x8e\x54\x24\xed\xe7\x3e\xa4\xfc\xbd\x1e\x2a\x0f\xda\x46\x0d\x90\x1e\xd6\x5b\x8b\x56\xf7\xf3\x87\x8e\xc4\x87\x9d\x26\x3a\x21\x84\xec\x9c\xef\x66\xa6\x56\x55\x52\xa3\xd9\xe9\xd2\x73\x9e\x1f\x63\xcb\xd3\x35\xa7\xc6\x61\x20\xde\xc5\x5f\x56\xcb\x36\x06\x37\x64\x2f\x5e\x9b\x7c\x80\x17\x45\x8a\x73\xeb\xe2\x10\xff\x5a\x2a\x0d\x6b\x70\xf9\x68\x0e\x32\xc0\x80\x6f\xd5\x97\x99\x92\x96\xaf\x68\xcb\x45\x2d\x75\x78\xea\x8b\x4f\x4d\xbe\x94\x8e\xee\x4f\x53\x91\x5c\xe8\x61\x0d\xfb\x6d\xb2\x3b\x73\xa8\xdb\xd3\x11\x35\xcd\x09\x80\x20\x01\xb3\xb1\x22\x5b\xd4\x52\x9e\xa7\x2c\x75\x64\x74\x2a\x05\x17\xe4\x7a\x28\xa7\xfe\x2f\xd2\xdb\x1d\x51\x76\xdd\x0d\x75\x91\x28\xcc\x51\x19\xbf\x3f\xfc\xb4\x62\x8b\x49\x5b\x6f\xe5\xab\x30\x52\x93\x12\x44\x49\x25\xd0\x0f\x5b\x46\xb9\xc3\x79\xd3\x92\x7e\xd1\x82\xdd\xa8\x55\x6e\xcd\x3f\x1d\x45\x7c\xb1\x2f\xb0\xbf\xb1\x8e\xa0\x44\x64\x1b\x88\x99\x96\x9f\xd5\x21\x66\x4d\x59\xef\x70\xe2\x78\xda\x6c\xff\xf5\x35\x70\x91\xe2\x87\xd6\xf3\xe1\xb0\xf3\xa3\xf5\xb9\x22\xde\x06\x1c\x14\x0c\xe0\xfe\x0d\xf8\xfa\x64\xae\x3d\x00\xe3\x90\x09\x86\x3d\xb9\xd0\x72\x78\x6b\x23\xb2\xbc\x8a\x3c\x1e\x12\x8d\xb2\xeb\xe6\xaa\x93\xeb\x9e\x00\x74\xc4\x7e\x6a\x7d\xc4\x48\xdf\x78\x32\x29\xf2\xa2\xab\xd5\x39\x56\xf1\x2e\x1c\x1f\xd4\xda\x23\x76\xba\x7a\xd8\x9d\xf0\xd9\xd9\xc9\x46\xf2\xa7\xee\xb2\x09\x2d\xfc\x18\x31\x55\xf4\x11\x03\x6c\xdb\x20\x46\xc8\x14\x85\xa9\x1b\x45\x52\xb2\xab\xe3\xf3\xc5\x49\xfa\xf1\x22\xe8\x71\xd1\x3c\x99\xff\xb1\x69\xb1\xd7\xf5\x57\x02\xfb\xba\xbf\x43\xe0\xd9\x3e\xee\x4f\x52\x0d\xdc\x82\xba\x29\x6d\x31\xae\xce\x9a\x9e\x34\x06\x28\x7d\xce\xd2\xf1\x3e\x46\xfc\x7e\xc9\x54\x59\x2d\xdd\x7b\xb4\xa4\xee\x03\xed\x22\x4d\xc3\x00\xc5\xe7\xb6\xd4\xe9\xf5\x40\x5f\xe5\xb7\xb9\x92\xa6\x9f\x40\x2a\xc1\x21\x37\x9e\x2d\xf2\x66\xac\xcf\x0d\xc9\x25\x09\x96\x22\x1c\x92\x78\x25\xf2\xe6\xbd\x21\x35\x36\x9b\xd3\x3a\x57\x2d\x22\x93\x86\x15\x0c\x1e\xd0\x8d\x1a\x24\xc0\x55\x90\x4a\x80\xfd\xd4\xfd\xb3\x64\x30\xf4\x19\xbf\x58\x19\xb5\x7c\xfb\xd7\xc6\x13\x05\x49\xbd\x63\x6b\xa3\xe8\x7d\x6e\x92\x45\x2d\x18\x12\x50\x9c\x5a\xc0\xc3\x77\x81\x55\xd8\xf2\xf5\x06\x61\x31\x18\xce\x0a\x7a\x21\x48\x1d\x48\x53\x9a\x1c\xa4\x6c\x48\xfc\x22\xf3\xad\xe2\xe6\x38\x1b\x6b\xa6\x07\xd0\xa1\xb3\x5f\xf7\xf1\x75\x7a\x6b\xa9\x3d\x9d\x68\x4b\xd2\x3e\xa1\x05\x06\xbf\xb2\xfe\x99\xca\x99\x1a\xf3\x1e\x1a\x67\x20\x48\xc1\x9c\x1e\x9c\x3f\x9f\xaa\x7e\xfe\x1a\xee\x83\x97\x70\x2f\xa4\x9b\xb7\xe7\xbe\xa0\x07\x98\xa8\xa1\xee\x7d\x5d\xd5\x69\x4b\x9d\xad\x19\xc2\x6f\xdc\x69\x66\x67\x99\xd4\xc3\xad\xa6\x9b\xbe\xc9\x9e\x79\xac\x35\x26\x61\x32\xde\x7e\x8a\xd0\x06\xd6\x5f\x4c\x81\x4e\x8f\xe2\x0b\x18\xfb\x2b\x54\xcc\xba\x03\x77\xe9\x37\x4c\x2b\x86\xa7\xd5\x92\x20\x36\x74\xbc\xbe\x0d\x08\xaa\x4f\xfb\x98\x13\x76\xe9\x58\xe9\x2f\xcf\x8d\x8c\xf1\x57\xb3\x4f\xb6\x1f\xc5\xfb\xc2\xdc\xf5\x04\xbb\xd7\x93\x0c\x3b\x88\xc4\x9d\x8f\x66\x19\xdf\x64\xce\xe9\x88\x43\x97\x37\xcd\x9c\x6e\x38\xd8\x1e\x04\x34\xe0\x49\xc8\x6c\x3f\x54\x57\x64\xa6\x23\xe9\xef\x92\x93\x0f\x7d\x8f\x67\x25\x4a\x27\xcf\x89\x16\x4e\x67\x42\x41\x70\x18\xbd\x51\xe8\x39\xf2\x1c\x8f\x23\xd8\xf8\x96\xb5\x49\x50\x10\x70\x49\xf2\xab\xa5\xad\xb2\xee\x0b\x8a\x22\xf9\xd6\xfe\x58\x1e\x22\x20\x99\xdf\xc1\xfe\xa0\x10\x3e\x2f\x1e\xc8\xa4\xc2\x3d\x79\x7c\x9c\x4e\xe3\x7b\xfa\x1a\xb9\xad\x3c\xf1\x19\x6f\xfd\x13\xe2\x88\xf8\x58\x98\x7b\xc8\x06\x87\xb7\x9e\x12\x2c\xc2\xc4\xc8\x7a\x9c\x2a\x5b\x81\x87\x18\xb5\x3c\xe1\x80\xc3\x30\x5b\x42\x0f\xc9\x39\x45\xbd\x4b\x55\x0c\xde\xf7\x2e\xfa\x1a\xfa\xfc\xdf\x1c\xcc\x81\xe7\x07\x4f\x1b\x76\x54\x63\x90\xb1\x1b\x17\x2b\x19\xeb\x1b\xcf\xa5\xb7\xea\x3b\x89\xca\xdd\xe2\xc6\x7a\x63\x5e\x7d\x90\x9f\x4c\x00\x10\x21\xec\xc1\x75\x39\x09\x73\x3d\xf5\x6e\x54\x7f\xe1\xc6\x56\x3b\x02\x2c\xea\xcd\xb6\xde\xf5\xbb\x9d\x3d\x2f\x84\x0d\x6b\x17\xd0\x3d\x28\xb9\x9e\xf8\xaf\xcf\x3b\xd1\x3c\x08\xa6\x49\x36\x22\xcd\xfc\x5e\xb0\xeb\xf5\x8d\xae\x40\xf9\x17\x5b\x0a\x40\x0b\x74\x74\x68\x70\xa7\x92\x2c\x04\x5f\x7b\x27\xd2\x5a\x0f\x67\xea\x2f\xfe\xa8\xd8\xd3\x4c\xea\xd6\xe1\xbd\xb6\x31\x22\x6f\xfe\x7c\xce\x25\xd8\x44\x0c\xbc\xd9\xd4\xb3\xd9\x18\xa8\x2d\x7d\xb3\xd4\xa0\x8f\xbf\xbb\x6a\xc6\xe5\xb0\xe3\x29\xe9\xb8\x1f\x0e\x3a\xc1\x98\xa7\xda\xa3\x6a\x92\x61\x7f\x93\x12\x50\xf7\x56\x89\x3b\x8e\xc3\xf7\x13\xe5\x36\xe9\x40\xa7\xc1\x58\xb4\x89\x7b\xd6\x80\x66\x31\x5a\xda\xdf\x60\x9d\x13\x5e\x94\x8a\x37\x52\xbf\x88\xc1\x49\x7b\xc1\xe2\xbd\x2e\xce\xbe\x9d\xff\x05\x3f\x58\xb8\x5e\xb6\xbf\xc9\x1a\xe0\x84\x89\xdc\x6f\x4d\x8a\x92\x31\x45\x76\xc0\x0b\xdf\x3c\xe8\x64\x7c\xd1\x0e\x9b\xd3\x36\x16\x49\x78\xfe\xc1\xb4\x64\xb7\xd9\x68\xec\xbd\xb5\x2f\x57\xe0\xd5\x1c\xbf\x12\x7c\x5f\x1a\x49\x75\xe1\x8b\x88\xdd\xd4\x26\x6d\xb1\x73\xce\xa0\x01\x0f\x17\x70\x9f\x7d\x5e\x5b\x6a\x94\x4f\xc7\x9d\x1a\xa0\xe9\xd6\x1a\xfd\xc2\xba\x43\xb9\xcc\x02\x77\xb1\xfc\x8a\xac\x71\x32\xf6\xb0\x2f\x4a\xfa\x14\x7b\xe8\x76\x10\xcf\x63\xd3\xe7\x0b\xfe\x36\x39\x1d\xbe\x53\x42\xde\xd6\xce\x76\x5f\x21\xa7\x43\xfc\x12\x2a\x6a\x83\xf2\xde\x88\xe9\xc7\xa6\x67\x32\x8e\x23\x34\x86\xa5\x34\xd0\xf0\x2f\xd6\xed\x54\xe3\xa1\x4d\x4a\xea\x61\x9b\x6a\xfc\xd6\xab\xeb\x8f\x70\xfe\xdc\x7d\x03\xd1\x79\x69\x19\xf2\xa6\xf9\x13\x5f\x37\x39\x3c\x74\xb1\x98\xeb\x12\x87\xde\xb1\xef\x2d\xd5\x62\x47\xb8\xad\xb9\xf4\xe3\x7f\x4e\xb4\x7d\xbf\x9e\x33\xde\xa1\x84\x35\x02\x5d\xa9\x3e\x3c\x31\xf0\x29\xbb\x58\x09\x9b\x2f\x26\x22\x76\x2e\xe3\xc1\x96\x95\x01\x5e\x79\x5e\xf5\xf0\xde\x3a\x73\x8f\x13\x83\x71\x97\xd3\x55\xe1\x7b\xe0\x23\x17\x23\x96\x2a\x55\xa9\x5d\x5d\x55\x46\x6c\xc1\xb7\xfd\xda\x97\xb8\xb1\xd9\x45\xb0\xc2\xea\x50\x60\xa6\xac\xf9\x20\x77\x70\x28\x79\xc2\x98\xf4\x81\xc0\x45\xd1\xab\x42\x7b\x61\x16\x36\x2b\xd0\xb3\xe2\xe2\xf4\xcf\xfd\xde\x86\xc9\xe0\xee\x8c\xa7\xdf\x7c\x40\x77\xe0\x4a\xdc\x53\xec\x64\xb0\x6e\x77\x76\xf1\x7a\x5b\x58\x1a\x4f\x0b\xd8\xe3\xb9\xd2\x6a\x7e\x6d\x24\x31\xf1\x19\xbf\x68\x82\x66\xa4\xbb\xa1\x28\x16\xbd\x30\x4a\xd3\x64\x25\xa2\xda\x96\x4a\x58\x38\x7f\xb2\xe3\xf9\x2a\x68\xd5\xb7\xc2\x42\x10\xc5\x71\x5d\x4c\x55\xb1\xe5\x64\xf7\xf9\xe8\x37\xd8\x4b\x31\x1f\x53\xe3\x03\xe7\x65\xe8\xbd\x4c\x3b\x67\x6a\x72\xe0\x1f\xed\xb7\x00\xc3\x82\x50\xcf\x32\xe4\x8d\x00\x3b\xa7\xb7\xdf\x68\x5b\x13\xe2\x75\x17\x1b\x5a\x16\x4a\x6b\x14\x10\x2c\x60\xb5\x7e\xb3\x85\xc2\x41\xf5\xc1\x7b\x40\x66\xee\xf8\x26\x92\xf9\x07\x02\x7a\x6d\xd8\x7b\xa4\xd9\x76\x32\xe2\x4b\xcf\x8a\xc3\xa8\x56\x3d\xe5\xf1\xbb\xef\xa1\xc9\xdd\xc6\xf8\xf7\x5f\x9f\x2e\xf2\xff\xfa\x3e\x9d\xf9\xd4\xe3\xac\x8e\x1e\x5f\x1f\x7c\x7e\xe9\x4d\x9c\xbb\x20\xc7\x8e\xc2\x6e\x6b\xca\x93\xcb\x78\x7a\xb3\xb8\xf4\x75\x52\x22\x30\xb2\x44\xe4\xdc\xc4\x0f\x58\xdf\xdb\xe7\x75\x38\xf3\xda\x42\x28\x77\xbe\xcf\xe1\x73\x09\x36\xf6\x13\xc8\x17\x43\x03\xf4\xb0\x03\xa0\x50\xbe\xda\xb2\xda\xd2\x0f\xcd\xbe\xfc\x2f\xa2\x0c\xf8\x01\x4d\xaa\x5e\x82\x56\x0c\xd8\x9c\x43\x91\x97\xad\xa4\xfa\x51\x24\xe7\x04\x96\x2b\x37\x2d\x04\xfb\xfc\x3e\x41\x46\xe7\xb0\x0b\x52\xde\xe8\xe5\xdb\x9d\x6b\x23\x89\x1b\xd8\x0e\xdc\xeb\xd1\x28\x8b\x19\x44\x04\xd2\x0a\xa2\x01\xfe\xc6\x6f\x96\x51\x3a\xc4\xb6\x94\x68\x71\x17\x82\x48\x2c\x0e\xac\xeb\x67\x34\x7c\xfe\x75\x94\x4d\x55\xa9\x1d\x0e\xa0\xf6\xad\x8f\x08\xf3\x12\x38\x32\x5a\x12\xc6\xc9\xf6\x7e\x9e\xd1\xf4\x58\x38\x59\x17\x24\xca\x06\x0a\xe3\x2f\xe1\xcf\xda\x6f\xc8\xe0\x6e\x25\xa5\x5c\x81\x50\x9f\xcb\x8f\x2d\x5a\x50\x78\xd5\x3c\x4e\x20\x44\x69\x5d\xd6\x8f\xb3\x06\x49\xd9\xcd\x97\x0c\x00\xa2\x3a\xdb\x45\x74\x02\x6e\xe7\xe4\x43\x8a\xb8\xae\xac\xbb\x58\x5f\x88\x67\x43\x02\xb5\xc3\x8f\x1c\x79\x7c\x56\xc9\x03\xf6\x94\x0f\xde\x1e\x0f\xca\xc4\xe9\xbc\xbf\x57\xe3\x70\x24\x84\x2b\x6c\xd7\x92\xeb\xc7\xb5\x7e\x0d\xf8\xe5\x86\x76\x24\x31\xe1\xdb\x0f\x99\x4a\x25\x5f\x1f\xc8\x73\x13\x7e\x49\x4c\xbd\x68\x1f\xca\x79\x91\x1a\x85\x1c\xf6\x8d\x7d\xa4\xb9\xe1\x62\x23\x1b\x7d\x83\x10\x1c\x08\xcc\x66\x0b\xfb\x6f\x6d\xc0\x3b\xc3\x50\x40\xad\x17\x02\x21\x78\xea\x30\x15\x0f\x97\x4a\xf3\xfe\x49\xb1\xf7\xe7\xc6\x18\xc2\xa8\x78\x5c\xf2\xb0\xbc\x30\x52\x13\x93\xd1\xb1\x0c\xa2\x5b\xda\x00\xc5\x4b\x62\xe8\x81\xb5\x04\x9d\xc8\x6a\x34\xc9\x58\x48\x55\x76\xed\xd9\x44\xc0\x1f\x8a\x95\x91\x49\x83\x87\x67\xab\x89\xf9\xe2\x71\x58\x62\x56\x59\xf3\xa4\xd0\x3b\x4f\x37\x4e\x78\xb5\xa2\xcf\x67\xa1\x51\xb4\x94\x41\xbe\xb5\x60\xd0\xaf\x0f\xfa\xb3\x88\x64\xcc\x90\x86\x9b\x7e\x84\x7d\xb3\x81\xb0\xe8\xed\xb2\x96\xbf\x61\xdf\xea\x65\xb9\xce\x4f\xc6\x02\xad\x39\x1c\x47\x21\xaf\x74\x04\x1d\x2d\xfa\xe9\x05\x53\x04\x6f\xac\x12\xb9\xa4\x92\xa8\x42\x93\x68\xbe\xf9\x16\x3b\x2e\x7d\xdd\xa6\xe5\xa9\xf5\xb7\x67\x34\x9e\xb1\x8e\x0b\xc0\xba\x83\x07\x12\x80\x3b\xd4\x3f\xd5\x92\xde\x93\x9f\x6e\x2f\x34\x75\x8a\xb6\x1c\x91\x99\x2e\x3d\x9b\x9f\x4b\xc2\x9c\x1b\x9a\x75\x21\x48\x2d\x4a\x5e\x36\xad\x1a\x62\x46\x2e\x1c\xaa\xf0\x81\x65\x94\xdd\xcd\xba\x12\xa5\xa9\x3b\x4c\x9b\xf7\xe9\x1e\x99\x2c\x76\x1c\x6d\xfb\x85\x16\x50\x11\xe1\x24\x17\xce\x63\x89\x26\x3f\xee\x43\xfb\xd8\x17\x7b\xbf\xb1\x9c\x1d\x08\x67\x1b\xbc\x31\xb8\x77\x8e\xf2\x7e\xd7\xd9\x92\x0f\x05\x80\xb2\x1e\xad\x29\x1a\x96\x8d\x43\xb9\x11\x2a\x43\x75\xda\x15\xdd\x9b\x33\x52\xb8\x0b\x11\x06\x67\x14\xf2\xa1\xfe\x29\xea\xca\xad\x89\x08\x1e\xe2\xb3\xbb\xbd\xa8\xfa\xb6\x9b\xf9\xf5\x17\x0c\xde\xe0\x15\xe2\x4c\xe1\xf5\xfa\x3c\xff\x13\x80\xa5\x2f\xd6\x40\xb5\xd1\xd1\xed\xaa\x03\x97\xc3\x9c\xb1\xc6\x78\xf1\xc4\xd7\x5e\x1f\xa4\x47\xf8\x1a\x4f\x3b\xb2\xd6\x22\xcc\xfb\x39\x3f\x7f\x02\xd5\x66\xa1\x90\xea\x61\x3d\x71\xc3\x29\xfc\x8f\xd3\xb5\x13\xc6\x0b\xcf\xa4\xfd\x37\x95\x9d\xa7\x82\xbb\xac\xd0\xcc\xe5\x33\x24\x94\x7a\xff\xdb\x55\x9b\x43\x52\xd8\x59\xda\x63\x3c\x81\x5c\x10\x38\xd9\x10\xbd\x26\x34\xef\xb8\xef\xa0\x83\x98\x6b\xa2\x4d\x50\xd3\x0b\x67\x35\xd3\x20\x96\xef\xcb\x53\x77\xc7\xeb\x26\xcc\x21\x0b\xc0\xbe\x91\xcd\xe4\x57\x47\xc8\x6b\x64\xe9\x90\x60\x4d\x14\xb2\x3b\x11\x9f\xda\xde\x82\xff\x89\x6b\x92\x22\xac\x92\xe0\x20\x14\xac\x21\x91\x17\xcf\x2a\x85\xfe\x7d\xb8\x7b\xc8\xd1\x49\x9e\xc0\xe6\xec\x3f\x90\x28\x24\xb5\xa1\x77\xf9\x71\xbf\x26\x06\x5a\x07\x61\xd8\x35\x9a\x50\xd3\xeb\xe2\xd8\x6c\x95\x7c\xcb\x24\x48\xdf\xee\x5f\x21\x91\xfa\x44\xdc\x4d\x51\xe5\xec\xf2\xeb\x66\x5b\xd0\x17\xa5\xac\xeb\xb5\xfd\xd1\xfd\x03\x24\x3e\xa5\x80\x95\x2d\x01\xa3\x07\x46\xf4\x89\xd9\xb3\x3a\x24\x3f\x89\x55\x68\xe9\x54\x71\x8c\xf6\xf6\xbf\x38\x46\x40\xc9\x97\xd9\xf7\x89\xea\x26\x34\x70\xa5\x0b\xa5\x23\x59\xc1\x04\xb2\x9b\x9b\xaa\x55\xbc\xb7\x8d\x11\x57\xf3\x7e\x2b\xe3\x44\xa7\x55\xca\x35\x6c\x1e\x15\x7a\x5c\x4e\xec\x30\x1a\x93\x63\x36\x96\x43\xc2\xfc\x7a\xd1\xf6\x63\x5b\x1f\x97\xc3\x89\xaa\x9d\xd7\xfb\x07\xfd\x37\xa3\x32\xc7\xc9\x66\xc9\xfb\xa1\x1c\x21\x4e\x03\x6c\x51\x78\xc3\xa7\x57\x85\xa4\x36\x37\xab\xfa\x87\x2b\x69\x84\x07\xa4\x8e\x91\xb3\xff\x64\xda\x0e\x25\x30\x32\x31\xf8\x9c\x98\xfc\x79\xc7\x22\x25\xb5\x90\x8a\x5c\x9c\xc7\x62\x8b\xfc\x83\x62\xa0\xab\xb2\x56\xc0\x7b\xa7\xcf\xc1\x22\x44\x2e\x23\x89\x95\xb4\x18\xd1\x5e\xb3\x7e\x81\x60\xa7\xff\x37\x73\xcf\xd1\xa3\xfd\xa0\x1e\x88\x57\x11\x2d\x3f\x62\xc3\x55\x46\x66\x04\x79\x92\xe6\x44\x4c\xa4\x1e\xbb\x5d\x99\xe3\x32\xc8\xd1\x31\x0c\x54\xb7\x94\x72\x77\x57\xfd\x9d\x07\xc6\xf1\x2e\x6c\x25\x2c\xf2\x84\x27\xbc\x41\xc7\xfd\x33\x05\x9e\x2d\x87\x59\x0c\x95\xd5\xd8\xf7\x5f\x57\x9f\xe5\xb3\xc5\x50\x69\x12\xcd\x12\xa9\xfa\x59\x46\x49\x91\x09\xe8\xb1\x36\x5c\x7c\x60\x9b\x9b\x7d\xdd\x7b\x4e\xc7\x81\x80\xc7\x92\x24\x8b\xe2\x0b\x0b\xa5\x00\x6c\xae\x59\xcd\x51\x65\xb9\xc6\xf4\xf1\xb8\xf4\x75\x58\x5e\x73\x92\xfc\xe1\x45\xe3\x9b\x33\x03\xbe\xf3\x6e\xf8\xf7\x56\x63\xfa\xa5\x76\x54\x80\x53\x82\x82\x38\x04\xbb\x7c\x8c\x78\xfc\xdc\xab\x42\x5e\xa4\xde\x53\xbd\x7b\x69\xe5\x93\xf6\x8b\xb8\xd1\x6e\x4f\xe5\x96\xbf\x4b\xee\xea\x86\x03\xc2\x38\xed\xad\x27\x3e\xf6\x13\xe9\xec\xf5\xdd\x2c\x9e\xd5\x19\xca\x7b\x1c\x9c\x13\x3c\xbf\xb8\x61\x48\x94\x6e\x32\x08\xea\x0e\xe8\xc0\x40\x35\x01\x9d\xad\x65\x26\x80\x6f\xeb\x54\x08\xe1\x4b\x6e\x0f\x4c\x01\xaf\x0b\x04\x60\x1d\x07\x40\x58\x81\x9a\xcf\x81\xc6\x7a\xde\x90\x5f\x17\xb2\xbc\xbc\x6a\xf8\x87\x4f\xa1\x89\xd3\x82\x9b\xf8\x6f\x90\xc0\x40\xf2\x95\x78\x78\xf1\x03\x86\x20\xd7\xd1\x6c\x29\xcb\xf2\x5d\x84\x6b\x54\x4f\x23\x26\x99\xfd\x36\x84\xe5\xb7\xf1\xdb\x16\x22\x54\x41\x8e\x20\x83\x3d\xe5\xc1\xde\xc4\xc2\xa4\x1b\x95\x3f\xa1\x2c\x5a\x66\xfd\xe1\x0d\x8c\x0e\xf8\xab\x92\xbf\x5f\xc7\x6a\xc8\x22\x00\xf1\x8f\xe7\x1c\x6c\x0f\x42\x33\x21\x3d\x3a\x03\xe1\x3c\xd7\x31\x98\xe3\x27\x5b\x64\x17\x0f\x9f\xca\xa3\xab\x6b\x49\xa4\x6c\x64\x40\xad\x99\x6f\x54\x80\x2c\xc2\xbc\x84\x2f\x95\x40\x7b\x65\x36\xfa\x27\x24\x66\x23\x22\xb5\x0d\xab\xc1\x85\xb3\x0e\x07\x2f\x06\x4f\x41\x70\xb9\xd6\x4b\x9c\xf7\x45\xe4\x2d\xfe\x03\xc1\x02\x0a\xd5\xdb\x6d\x5e\xf6\xfb\x4a\xf3\x7c\x24\x15\xb7\x26\x90\x1f\xee\x61\xf9\x7c\x3e\xc6\x70\x1f\xc5\xf3\xe1\xa8\xd4\xdc\x35\xea\x93\xab\xbf\x4a\x0b\xfc\xa7\x86\xfd\x46\x24\xf7\xc5\x48\xbf\x0c\x43\x11\x19\xcc\x29\xbc\xbd\x80\xf3\xb5\xaa\x0a\xb5\x0a\x88\x43\xe2\x2a\x62\x00\x8d\x5e\x67\x6e\xf4\x3e\xd6\x11\x93\x61\xfd\x1c\x51\x27\xdb\xa1\x21\x2e\x83\x1a\xbc\xc2\xb6\xff\x5a\x86\x28\x2a\x28\x57\xf9\xc0\x5a\x63\x68\x5c\xac\x6d\xad\xe3\x58\xfa\x1d\x08\x72\xba\xeb\xce\xbc\x7f\xf7\x48\x12\x87\xbd\x78\x7d\x48\x34\xbc\x9c\x80\x74\x19\xcb\x3e\xae\x99\xc0\x9f\x65\xf6\xd4\xaa\xd1\xdd\xe5\xac\x8c\xe8\xff\x93\xd1\xdf\xa8\xc7\x76\xb3\x05\x23\x01\x14\x4a\xff\xfe\x6d\x45\x88\x35\x0f\x3f\x4c\xc3\x66\xb5\x8b\x68\x88\x20\xbc\x15\xbf\xd7\xc8\xd9\xd9\x43\x34\x46\x02\xe1\x0b\x1d\x7b\x4f\xfa\xc0\xb5\x03\x13\x7d\x38\xb6\x97\x16\xda\x54\x40\x82\xb0\x2e\xad\x40\x62\xb2\x5a\x08\x95\x5a\x8a\xc3\xad\x96\xda\x88\x65\x77\x1a\xfc\xad\x3b\xca\x8b\x0e\xfd\x8b\xb8\x5d\x6f\x86\x74\x8a\x2f\x41\xb1\x2f\xdd\xd5\xd5\x1a\x25\x8e\x32\x3b\x50\x8a\xe2\xe6\xcd\xe8\x68\xe0\x15\x58\xc4\x97\xac\x5d\xc5\x39\x4b\xc0\x0c\x6b\x23\x81\x44\xcc\x04\x01\xc6\x0c\xdd\x41\x42\xa9\xa9\x18\xb2\x3c\xc4\xa7\xa5\xdf\x5c\xa3\xdc\xcd\x29\x6b\xd8\x82\xf5\x1f\x3c\x63\x4f\x37\xa0\xd1\x33\x13\x04\x67\x9a\x21\xa5\xbf\x68\x56\x7e\x20\x8a\xb8\xd1\x7f\x2c\xfd\x12\x44\xf5\x58\xcc\x8b\x13\x7e\x5f\x96\xba\x4f\x25\xc0\xcf\xa8\xc2\x8d\x04\x84\x50\x32\x64\x86\x18\x4d\x30\xce\x4f\x88\x64\x30\xbc\x9e\x74\xdb\x7c\x81\x63\x3a\xc7\xfb\xb6\x52\x7d\x78\x13\x99\x2e\xa9\xf0\xb6\xf8\xfb\xdf\x4f\x09\xbb\xc2\x0d\x54\x92\x7f\x5f\xc4\xa7\x08\x2b\x42\x56\xd8\xe1\x4d\x62\xf1\xbf\x97\xf4\x54\x16\xe6\x1b\x93\x31\xbd\xdf\x2a\x20\x34\x10\x14\xd0\xf1\x22\x0a\xc9\x4f\x9e\x10\xe9\x67\x82\xc0\xba\x61\x32\x51\xd3\xaa\xe2\xaa\x4d\x33\xe8\x56\x88\x27\x25\x4d\x2e\xeb\x34\x55\xb0\x8e\x54\xf3\x64\xa2\x4f\x7f\x3a\xfb\x4f\x3c\x4f\xca\x80\xd6\x2f\x9b\x9e\xad\x6b\x51\x9b\x03\xf7\x34\x18\x69\xbd\xbd\x0d\xe9\x08\x01\xee\x4d\x34\x01\x52\x75\x53\x22\x17\x27\x8c\x91\x3c\xfc\xf8\x9c\x83\xf4\xea\x96\x97\xd5\xc2\xba\x8f\x81\xcf\x5b\x86\x87\x7f\x0a\xa9\xca\x11\x99\xba\x8f\x84\x44\xc1\x1f\x0b\x92\x54\x70\xdf\x46\x1f\xbb\xac\xef\x2d\x52\x45\xf1\x1d\xdc\x06\x7d\xd9\xca\xcd\x7c\xce\x23\xed\xba\x9d\x36\x5a\x08\xfd\xb9\x6b\x90\x02\x2f\x4f\x77\xec\x44\x77\x6b\xce\xb3\x0c\x95\x72\x05\xe6\xea\x26\x96\x97\x10\x77\xca\x44\x55\x1b\x9d\x19\x6a\x12\x25\x1c\x5e\x02\xc9\x50\xc5\xaf\x1b\x18\x4f\x39\x67\xe3\xdf\x04\x97\xf7\x37\x42\x60\x92\xcb\xc8\xef\xf1\x8b\x23\x00\x88\x5b\xf1\xe5\x06\xbf\xc1\x2b\xf2\xac\x4e\xb6\x37\x5d\x48\xc5\xd5\x8d\x2d\x4c\x79\x9f\xf5\xcd\xc8\xbd\x96\x19\xb1\x9c\x48\xa0\xcb\xc5\xac\x8d\xd8\x93\x7a\x97\x34\x02\x05\x24\x0e\x13\xfa\x3d\xe3\x21\xb2\xa7\x72\xeb\xfd\x50\x9d\x00\x41\xa4\xf1\x32\xc7\x2f\x49\xd0\x49\x9a\x11\xc0\x0c\x38\x9b\xee\x9c\xf1\xe5\x1a\xce\x7f\x44\x0c\x24\x93\x24\x21\xcb\x1c\x67\x78\x1f\xe3\x4a\x57\x8f\x77\xd9\x77\x8c\x16\x2b\x5a\x93\x72\x76\xaf\x20\xfe\x18\xf5\x23\x41\xae\x99\xea\x2f\xab\xdc\x5d\xb7\xda\xa8\x0e\xf8\x9d\x89\x55\x70\xfa\xe5\x4b\x3d\xc5\x3f\xe3\x72\x8a\x1f\xdc\x29\x06\x8d\xd2\x3d\xba\xbe\xf9\xe5\x0d\x72\x66\x3f\x4d\x25\x29\xc1\x40\x84\x29\xc3\x12\x6c\x75\x26\x72\x16\x33\xfd\xe0\x67\x47\x0d\x9d\x69\xaa\xc5\x9f\x5f\x72\x15\x29\x07\x02\xce\x6c\x82\x16\x8a\xad\xff\xc9\x04\xc2\x01\xdd\x13\x06\x44\x0f\x27\x26\x72\x0f\x64\xa3\x14\xd3\xc3\x8f\x92\x24\xa7\xa2\x75\x1f\x9e\xd8\xce\xf3\xe3\x3f\xe6\x66\xb2\x18\x6d\x8d\x9f\xa6\xb8\x27\x01\x10\xfe\x7a\xec\xf5\x06\xb6\xe2\x97\x20\x88\xea\xc8\xdf\x7f\x45\xb1\xa5\x18\x35\xe1\x01\xe7\x5f\x1b\xfd\x76\xb4\xd4\xf4\x43\x9e\xa4\x78\x6d\xb9\x51\xdc\xcc\xc0\x58\x00\xa6\x34\xca\x74\x88\x4d\x71\xcd\x6a\xfe\x61\x9d\xbb\x61\xea\x09\x55\xd3\xb1\xeb\xa9\x0e\xfa\x04\x1d\x4a\x37\x13\xd2\x49\x67\x2b\x3f\x0f\xbb\x53\x5e\x8a\xc2\xcd\x17\xb3\x6e\x17\xc9\x25\x86\x8a\xc9\x2e\xdf\x36\xcb\x14\x4a\x86\x01\xed\xd3\xb9\xc2\xec\x7e\x6f\xe1\xe0\xc0\xbc\x4c\x4c\x63\xc3\x0d\xea\x8f\xd0\xec\xf4\x8d\x43\x02\x68\x96\xdc\xaf\xa5\xd7\x6d\x05\x2f\x67\xaf\x4f\xad\xd6\x2c\x6c\xaf\x3c\x56\x0c\xf3\xe3\x43\x16\x28\xe4\xa2\x8d\xb8\x8f\xdb\x99\x43\xdb\xc6\xc1\x82\x8e\x88\x3d\x61\x66\x64\xc6\x51\x42\xcc\xd9\x0f\xeb\x1e\x4e\xdc\x16\x49\xe1\x22\xf5\x98\xaf\x8b\xd5\xdf\xef\xa8\x9a\x08\x7a\x15\xaf\x31\xc0\x8a\x05\xc0\x7b\xe0\xad\x25\x46\x5a\x6f\x5b\x88\xbb\xe3\xfb\x4a\x04\x11\x33\xc7\x0e\x71\x93\xcc\x7b\x73\xc6\x79\x6e\x30\xf0\xa6\xd0\x7e\xa2\x4e\xd3\x6e\xab\x48\x1a\x20\xf1\x7a\x3a\x84\xf2\xd4\x11\x59\x7a\xfa\xae\x3a\xbb\xb8\x5f\x37\x86\x4e\x05\xaf\x7a\xe1\x89\x67\xde\x4b\x11\xec\xd0\xa8\x3c\xbb\x54\x56\x4c\xf4\x6c\xac\x68\x30\x6b\xcc\x77\xd5\xfc\x94\xfa\x2f\xe9\x37\x02\xd3\x9e\x2a\xa2\xad\x7a\x4b\x34\x99\x29\xca\x68\xa1\x40\x7b\x59\x8b\x56\x77\xfc\x10\x8f\xc8\xf4\xd0\x5f\xec\xac\x8b\x9b\xad\xb9\x8b\x0f\xce\xd9\x3e\xd8\xc0\xa0\x6a\x6e\xaf\xba\xe5\x96\xcb\xac\x58\x84\x88\x59\x01\x6a\x4a\x48\x72\x70\x6c\xb7\x0a\x57\x6d\x4e\x30\x39\x9a\xe2\x80\x15\xc1\xb5\x0f\x67\x05\xb5\xd1\x67\xfa\xe4\x08\xf7\xb3\x77\x5e\x24\xe6\x2a\xe9\x58\x38\xe7\x19\x93\x67\xec\x25\x47\x5e\x70\x2b\xa5\xdf\x58\xf5\xe4\x3f\xef\xd7\xa0\x7f\x49\x8f\xcf\x45\x5d\x4a\x60\x98\xbf\xc5\x28\x1c\x98\x91\x7d\x71\xe1\xae\x77\x89\x3f\x5c\x97\xe9\xcd\xec\xba\xdf\x39\x3c\x3f\x7b\x47\x9b\x52\xa8\xe8\x43\x04\x0e\x16\x49\xb7\x43\xbb\x9e\x3b\x40\x79\x1d\x15\xb9\x79\x2c\x28\xf7\xd4\x7b\x13\x67\xab\xa8\x45\xb1\xf4\x65\xf5\x57\x86\xda\x61\x73\x70\xe5\xa7\xc8\x38\xe5\x75\x83\x68\xb2\x3c\x79\x47\x37\x64\x8c\xf8\x22\xec\xe5\x51\x3f\x76\x33\x54\xc1\xf7\xcb\x3f\x28\x53\xcd\x64\x8c\x28\x86\xba\xbf\x2e\xd2\x18\x5a\x06\x7c\xa1\x32\x34\x8c\xce\xb0\xdb\xbc\xdb\x39\xe3\xbb\x2e\x8b\xbc\x08\xaf\xeb\x2b\x9a\x39\xb7\x9b\x18\x98\x3f\xad\x35\xcd\x56\xbc\xff\x57\x84\x2a\xd9\x65\x12\x5f\x86\x3f\xfa\xaa\x96\xf9\x7a\x9c\x7d\xcf\xcc\xb6\x4c\x85\xac\x37\x3b\x65\x25\x3f\x69\x53\x6a\x53\xe7\xa2\x9d\xfe\x58\xa6\xc3\x47\xa3\x32\xeb\x32\x49\x6d\x46\xc1\x98\x5a\x20\x47\xc4\x74\xbe\x4a\xa4\x21\xb5\xd4\xcd\x31\x5a\x60\x1e\x0d\xe6\xc2\x4d\xb3\x37\xc6\xae\xee\x7f\x5f\x38\x6a\x73\x25\x13\xc3\x26\x8e\x1c\x36\x94\x0e\xc4\xb7\xf4\xfd\x49\xb1\x22\x55\xfe\x67\xc9\x63\x74\xf0\xdc\x3b\xc0\x89\xd0\x0b\x51\x35\xe2\x4c\xb0\xf8\x55\xde\x6f\xec\x69\x5f\x18\x27\x00\x7d\x31\x2c\xd2\x66\xf9\x29\xf9\xf5\x3c\xad\x23\xc4\x01\x1f\xe6\x0f\xff\xac\x5b\x94\xa8\xfb\x11\x2e\x32\xe1\xd4\x6b\xd6\xc6\x7a\xa8\xdd\xda\x1f\x8e\x2b\x4f\xa5\xd2\x30\xa8\x6e\x06\x68\x36\x07\x4e\x33\xba\x88\x66\xa9\x31\x16\x72\x7e\x33\x4b\x67\x15\xda\x6a\xaf\xab\xc2\xf6\x82\x96\x5a\x90\x09\x7e\xf0\x90\xac\x67\xa1\x93\x22\x29\x11\x38\x43\x04\xb4\x12\xaa\xa5\x2e\xc8\x5f\x3d\x63\x9e\x1b\x74\x53\x9f\xdb\xac\x7f\xef\x17\x1d\xcf\x93\x53\x22\x7f\xcb\x76\xc7\x88\x10\xe7\x4c\xfa\xfd\x6e\xf2\xe4\x7f\xda\xa0\xa2\x8b\xc3\x77\xe7\xba\x26\xbb\x8f\x28\x48\xff\x10\x70\x3e\xa1\x5f\x1f\x01\xf1\x0f\x29\xdd\xf8\x80\x30\x0f\x37\xec\x16\xb4\x27\xe0\x8f\x1f\x95\x91\x87\x94\x4d\x54\xce\xe8\x74\xeb\x63\xa7\xaa\xce\x2a\x77\xe7\x57\xb6\xaf\x45\xeb\xfb\xb3\x40\x67\xbc\x6a\x9a\xd3\xdf\x8c\x99\x0b\x62\x48\x2f\xed\x9e\x44\x81\xeb\x6e\xf0\x2f\x8e\xca\x6a\x4f\x7c\x1e\x7b\x36\xfe\xad\xa6\xea\xfd\x94\x3b\x30\x0b\xf7\x09\x3d\xde\x80\x37\x6e\x40\xbb\x5a\xb4\x17\xb7\xb9\x14\xfa\x05\x5e\xd2\x94\xa2\xd1\xf1\xfd\xed\xc1\xf2\x15\x64\xb3\x7d\x8e\xee\x6c\x3a\xef\x5d\x21\x34\xa6\x6b\x72\x2d\xaf\x69\x2d\xae\x02\x5b\x87\xfd\xe9\x23\x87\xc6\x9a\x83\x03\x0a\xbc\xe9\x52\x6a\xf9\xdf\x7e\x7f\x4d\xff\x05\xf8\xc2\x3d\xb5\xd5\x87\x82\x64\x57\xf5\xde\x98\xbe\x26\x97\xb8\xa2\x4d\xb5\x3f\x62\x17\x9a\x50\xe8\x76\xff\x1c\x16\x8d\x6d\x02\x68\x54\xc5\x1a\x45\x18\xa8\x63\xb7\x59\x4a\xf8\x0d\xff\x69\xeb\x9e\x59\xbb\x19\x67\x13\x8f\x0a\x09\x10\x4f\x92\x57\xff\xe6\xba\x97\x1e\x39\xe4\xd3\xed\xb7\x86\x5c\xd7\x57\xaa\x8e\x32\xaf\x2d\xee\x2d\x00\x7b\xa6\xdb\x39\xe1\x77\x79\xa6\x78\x01\x57\x9f\x3b\xc6\xdf\xce\xb8\x79\x37\xfa\xb0\x34\x89\x0a\x9c\x8c\x50\xef\xba\x56\x2c\x2e\xc9\xe6\xa2\x65\x12\xec\xe1\x3c\x09\x34\x59\xfb\xee\xaf\xad\x58\x0f\x44\x9f\xef\x59\x1e\xeb\xb5\xec\x8f\x31\xdf\xa5\x62\x0c\x44\x5b\x77\x89\x5a\xb7\xee\xe8\x14\x50\x64\x27\x48\xba\x71\x46\xe8\xec\x37\x16\xc4\x66\xea\x25\x9c\x0a\xcd\xb2\xf9\xe9\xd3\x29\x2f\x7f\x86\xb5\xf7\xd0\x34\xcc\x2b\x5e\x88\x49\x56\xcb\x0c\x30\xab\x3c\x57\x98\x3d\xc0\x29\x5e\xb8\x89\xdf\xf0\xa3\xb8\xa1\x6a\x42\xc0\x28\xdb\xc8\x49\x3f\xd5\x26\xd5\x27\x65\x89\xdc\xda\x51\x48\x6c\xeb\x91\x3a\x4c\xb0\x28\x0e\x89\xd5\xfd\x4b\xb3\xa4\xb0\x80\xf0\xbb\x52\x3b\x6c\xce\x1d\x85\x6b\x9d\xc6\xbd\x95\x1e\x91\xaf\xbe\x52\x5f\xce\x61\xb7\xbf\xe0\x2e\xd9\x5c\x61\x2b\x30\x82\xc8\x76\x89\xe4\x3b\x8a\xdb\xeb\x4b\xc6\x13\x4a\x4b\x12\x30\x81\x30\x60\xba\xb8\x89\xa9\x17\x47\x64\x67\x4d\x1f\xb5\xe1\xe7\xc5\xf3\xa6\xb9\xd4\xcd\x9a\xb9\xd8\x0c\x99\xf9\xef\xa1\x17\x9d\x71\x3c\x29\x76\x67\x22\x43\x62\x5a\x1f\x8a\x53\x8e\xf2\x84\x93\x3c\x69\x26\x57\xaf\xa0\x62\xfc\x68\x4e\x1f\xf7\xf6\xf1\x5a\x46\xeb\x0b\x67\x5a\xa3\x68\x38\x83\xdb\xe7\xe7\xb5\x4b\x34\x0e\x15\x2a\xdd\xe7\x74\x09\xef\x27\x79\xfe\xb8\xdc\x57\x1c\xa7\xe1\x82\x05\x4f\xb6\x50\x34\xec\x80\x23\xbd\xab\xc2\x1f\x55\x2f\xd9\x51\xa1\xe4\xfd\xb8\x68\xd4\x40\x90\x26\xcf\xf6\xec\x61\xcc\xd7\xd7\xa0\xbf\x07\x7f\xd6\xb3\x99\x02\x8e\xbb\x6d\xbe\x0c\xb9\x1a\x01\x9e\xf2\xc5\x77\x4f\xed\xab\x23\x1c\xb9\x27\x4b\xc9\xaa\x22\x71\xfa\x84\x88\xac\xa3\xf2\xe9\xd2\xb3\x4e\x01\x7c\x5a\xad\x88\x67\x09\x04\x03\x56\x03\x24\x1b\x95\x65\x65\xc8\xe7\x72\x3c\x6f\x4f\x6d\x28\x53\xc6\x68\x99\x4d\x85\xde\xba\xf8\x87\x47\xcf\x38\x7d\x1d\xbe\x9e\xf5\xce\xf0\xb6\x8f\x3b\x41\xee\x5b\x2f\x93\x72\x0c\xb0\xf8\x8c\xb6\x5f\x50\x84\x10\xe9\x4c\xe1\x14\xbf\x5b\x96\xd7\x2e\xb5\xcc\xa8\xfc\x79\x50\x1c\xcb\xf6\x44\x21\x6e\x0b\x6c\x71\x94\x65\x5f\xbc\x0c\xf2\xbe\x6e\x7f\x6c\xca\x81\xf7\xbc\xa0\xc8\x4f\xd8\x86\xad\x66\xfc\x46\xcb\x71\x39\xa4\x00\x63\x4c\xcc\x14\x59\x16\x31\x10\x1a\x09\x20\x9a\x25\x24\xb0\xbc\x74\x3a\xab\x36\xef\x9b\x2f\x24\x29\xa3\x97\x77\xbf\x5f\x1d\xbd\xad\x7a\x9f\xad\xc6\x01\x99\x24\x1b\x3f\x68\x87\xc6\x5f\xfe\x39\xef\x89\x8a\x04\x50\x17\x9e\x2a\x33\x2b\xcb\xe1\xc7\x21\xac\x7e\x64\x96\xbb\xbb\x0a\x55\xbd\x6d\x71\x52\xda\x0f\xf8\x99\x78\x39\xb0\xef\xc7\x87\x95\x33\x2e\xac\x80\x1a\x74\xf3\xe4\x76\x36\x77\x5b\x97\xf9\xd7\x89\xf2\x29\xb2\x30\xc9\x2b\xdd\x62\x27\x43\xe2\x7b\x1f\xe6\xa2\x40\x61\xe8\xef\x08\xef\xc3\x6f\x43\xdb\xca\x1f\x31\x2a\x09\x0a\x92\x24\xcf\x4b\x26\xbe\x0c\xe5\xae\x8f\x4b\xeb\xcc\x59\xd2\x2d\xe7\x12\x08\x03\x00\x3b\x07\x73\x66\xea\xe1\xbc\xd3\xcd\xc6\xbc\x2e\x45\xe7\xcb\x0f\x26\x08\xb7\xb9\x68\x30\xa3\xdb\x0e\xe8\x18\x39\x42\x9c\x3b\xe7\x37\x39\x1c\x94\xb7\x80\xe7\x88\xff\x86\x0a\xd5\xc0\x9d\x58\xe5\x66\x69\x04\xa6\xe3\x93\x41\xca\x9b\x5c\x43\x13\x19\x2c\x45\xd8\xe7\x97\x4b\x5f\x82\xe2\xa9\x7a\xd9\xf7\xc7\x16\xf5\x50\x66\x12\xff\x4d\x86\x20\x09\x8f\x12\x30\x34\x45\xbb\x6a\x97\x9c\x4c\x2e\xf0\x7a\xd0\xf6\x61\xd8\xb0\x72\x4b\x06\x41\xc3\x25\xdf\xa2\x90\xcf\x0c\x51\x7d\xf4\xb3\xe6\xaf\x85\x74\xf3\xfe\x12\x94\xe2\x23\xfd\x06\xc6\x53\x01\x8d\xc5\x0f\x5e\x01\xda\x64\xb6\x85\x23\x31\xc7\xd6\xdd\x98\x05\x0a\xd4\x47\xe1\xbc\xf0\xbf\xfe\xfe\xc8\xf9\x8f\x57\xa7\x91\x84\x34\x48\x80\x4a\xca\xe9\xa8\x99\x41\xbe\x61\x04\x89\x6b\x18\xa4\x41\xc5\x98\xad\x7b\x84\x7c\x0e\xd3\x61\x02\x48\x8a\x95\x2a\x8c\xc6\xb4\x01\x80\x68\xf6\xb9\xfe\x51\xa7\x2c\xdb\x1f\x2c\xfb\xf8\x9d\xbc\x30\x4a\xb3\x3a\x1a\x4c\x0d\xbe\x8d\x97\xed\x00\x00\x99\x3e\xe0\x28\x91\x4d\xd6\xc3\x4d\x2f\x30\xcb\xe2\x17\x47\xee\x4c\x2d\xf7\xdf\xf6\xb9\x9a\xda\x2a\x7a\x98\xd3\xfa\x36\x0f\x00\xb8\x38\xa2\x7e\x1b\xe2\x37\x95\xe9\xe1\x73\xa2\x6c\xc3\x1e\xf8\x47\x4b\xeb\xa4\xe1\x40\x3d\xa2\xf9\xfe\x80\xbc\xf5\xc7\xb8\x0a\xed\x64\x4b\xca\xd4\x49\x59\xf1\xba\x9f\xe5\x48\x1a\x23\x21\x63\x6e\xaa\x8d\xae\x2a\xa6\x8f\x0c\x90\xd8\xd3\x31\x05\x4f\x44\x15\x94\xe8\xbd\x86\x76\x7b\x89\x82\xa7\xdb\xae\xaf\x6f\x4f\x26\x8f\xc8\xb3\xe2\x72\xf6\xe5\x3f\xc7\x53\x0b\xa4\xbf\xef\x6a\x13\xff\x39\x34\x59\x1e\x27\x06\x40\x00\x15\xae\x2c\xef\x07\x0a\x00\x48\x9e\xc4\x9e\x1d\xe8\x38\xe7\xc6\x19\xdc\x7d\x04\x03\x8c\x29\x7f\xc2\x23\x86\x9a\xf7\x44\x4e\xf1\x17\x83\x23\x55\xd6\x3f\x4c\x15\x79\xc1\xd9\xd6\x28\x58\x4f\x31\x81\xa1\xa4\x1c\xb2\x7e\x4e\xd2\x8f\xbf\x95\x3c\x1c\xcd\x05\xbc\xef\x0a\xf5\x2f\xcf\xdf\x5f\x54\xf6\x3e\x39\x67\xff\x80\xbf\xb7\x1e\x6f\x86\x94\x45\xfc\x38\xac\xcb\x54\x0c\x57\x1c\x60\x96\x2a\x2c\x4a\x21\x9e\xf5\x0a\xf2\xca\x52\x10\xb9\x1b\xe1\x27\x38\xff\xed\x42\x48\x33\xac\x82\x92\xbf\x87\x07\xb5\x4e\xda\xc9\x26\xf7\xb4\xef\xe9\xfa\x85\x87\x13\x21\x2a\x9d\x41\x39\xad\x88\x8a\x09\x40\x63\x0d\x3e\x1b\x1b\x61\xf4\x2b\x41\x37\xe0\x33\x28\xd2\x0f\x29\x8a\x58\xd6\xe7\x32\x7d\x81\xcf\xba\x1a\x5a\x4b\xec\x4d\xaf\xf7\xe3\x0c\x4c\x20\xe8\x57\x67\xd6\x5f\x6c\x66\x09\x38\xb9\x39\xf9\x2a\x29\xc4\x23\x0a\xf1\x30\x9d\x2d\x9b\x46\x75\x57\xdf\xd2\xa8\xbf\x13\x37\x85\xce\x46\xb6\xb8\x34\xf9\x93\xd2\x3a\x67\x79\x16\x22\x6f\x7e\xf8\x41\x16\x9f\xdc\x43\xd9\xdb\xe2\x9b\xbb\x21\xb8\x3f\x5f\x68\xa5\xe4\x2e\x99\xb3\x3a\x8a\x36\x4c\x4e\x0d\x40\x22\x40\x47\x5a\x20\x42\x33\x25\xc7\x72\xcf\xac\x65\x39\x23\x8a\xfd\xbf\x95\x6f\x6e\x66\x75\x7c\x47\xdc\x93\xd5\xe9\x26\x14\x58\xdf\x68\x0b\xf7\x1a\x3c\xad\x80\x01\x43\x66\x34\x82\x3e\x98\x90\xa2\x38\xcf\x72\x6a\xf8\xbf\x82\xa5\xc9\x36\x62\x8d\x64\x01\xca\x32\x07\x64\xa0\x4a\x9f\xd0\xce\x36\x2e\xb4\x4d\x2d\x4c\x19\x95\x5c\xe5\x0e\x37\xed\xf6\x4b\xe4\x82\x20\x5f\x63\x70\xd3\x46\xb6\x48\xb5\x43\x99\x7c\x25\x9d\xca\x2d\x21\x57\x48\x8b\x4b\x90\xe3\x4d\x9c\x67\x50\x3d\x75\x48\xbb\x5c\x16\x75\x17\x2e\xae\xc9\x9a\xb0\x2f\x1b\x14\xc0\x2c\x1d\x1d\x62\xdb\xf4\x74\xe4\x6f\xd7\x12\x9a\x1c\x33\x42\x33\x4d\x40\xcc\xa4\x51\x4b\x70\x38\x3f\x18\xa9\x45\x22\x05\xed\x7b\x26\x80\x56\x85\x20\xf8\xf7\x7f\x02\xb2\xf3\x5e\xbc\xdb\x50\x67\xc2\xf6\x1f\x5b\xe5\xbb\xf3\x6b\x3f\xa6\x94\x2e\x54\x61\x92\x28\xcf\xab\xeb\x3a\x78\x0f\x38\x66\x6f\x5e\x41\x7f\x0e\xaf\xdb\xc4\xb7\x14\xf8\xb3\x03\xfd\xec\x5f\x85\xe8\xd7\xa5\x01\x48\x1d\xfb\xf1\x91\x11\x23\x78\xa5\x77\x96\x3f\xdf\xce\xa5\xd9\xe5\x04\x31\xb7\xe7\x6e\xcf\x60\xe3\x51\x30\xa0\xff\x02\xb9\x7c\xe1\xc4\x32\xcf\x8e\x2f\xf0\x9b\xf0\x7e\xf5\xfa\x87\x26\xcf\xa4\x63\xbf\xb7\xb6\x3d\x38\xf0\x3e\x3c\x11\xd8\xa4\x5c\x10\xab\x13\xd5\x5d\x5f\xc4\x95\x59\xd5\x3d\x5a\x8f\x6a\x9a\x10\xfa\x9b\x56\xee\x6f\xec\xf9\x60\x63\xaf\x6d\x00\xd4\x69\x24\xa4\xda\x9d\x84\x43\xf1\xa0\x4e\xa9\x96\x69\x79\xc4\xbb\x6f\xef\xdb\x08\xb0\x6a\x55\xd9\x20\x11\x53\x98\xb6\xa4\x99\x5e\x0b\x38\x52\x3a\xec\x5d\x6c\x5a\xc3\xee\x5b\xef\x07\x26\x4c\x78\xb6\x67\x1b\x9e\x7a\x61\xae\xe4\x8d\x13\x81\xfb\x6d\x8b\x21\x32\x36\x96\xf7\xce\x08\xc1\x99\xc8\x1f\x39\x63\x7e\x39\x74\x60\x85\xb8\x51\x87\xb8\x4e\x9a\x6c\xfc\xeb\x87\x78\xb7\xb3\x4c\xff\x1d\x1f\xc7\x98\x97\x1f\x15\x72\x32\x9f\x3f\x10\xf6\x55\xd4\xa9\x25\x9b\x40\xf9\xb1\xf1\xce\x0d\xb6\x6d\x00\xdd\x2f\xe1\xbb\x40\x04\x91\x3b\x01\xc0\xbe\x97\x41\xa2\x8a\x19\x8e\x02\x35\x72\xf3\x03\xab\x07\x67\x05\x5b\x23\x69\x0f\xbf\xbe\x64\xe6\x69\x3b\xa5\x3e\xb4\x0a\xbf\x4f\xb7\x9c\xa0\xd9\xd6\x79\xc9\xa7\x77\x74\x82\xf6\xf7\x82\x60\x64\x0d\x8b\xfc\xdd\xe8\xe3\xd4\x34\xc2\x66\x47\x39\x2a\x72\x13\x8a\x6d\x00\xde\xfa\x6b\x30\x6b\xe2\xc4\x23\xb1\x54\x6d\xd4\x26\xfa\xbe\x23\x3f\x6c\x96\xcc\x0a\x17\xd0\x17\xe3\x91\xdc\x04\x00\x14\xcb\x73\x2a\x51\x8d\x66\x7f\x78\x49\x44\xd4\xcb\x14\x9a\x62\xd8\x3f\x66\x21\x67\x2d\x9d\x3d\x73\xe3\x09\x95\xf5\xc9\xe2\x1f\x9d\xda\xae\x7f\xe4\x5d\x5f\x52\xf7\x72\x17\xb6\xcf\x73\x38\x5e\x0d\xc1\x63\x8b\x4d\x69\x6f\x49\x98\xd4\x2e\x94\xc2\x66\x2e\x97\xca\xbc\x52\x5c\x7a\x20\xcb\x9f\x20\xfd\x8e\x5a\x33\xca\xb5\x69\x63\x49\x05\x1f\x49\x66\x88\xa4\x9c\xd3\x9a\xc9\xf7\xf5\xca\x6a\x7b\x70\x6b\x6e\x32\x03\xa2\x8a\xbb\xca\xcd\x19\xd7\xfd\x2b\x97\x6d\x2d\x8a\x71\x3b\xeb\x08\xb5\xdb\x3e\xb9\xee\x2b\x2f\x9b\xca\x2f\xd5\x0c\x15\x49\xfb\x51\x8f\x90\x4d\x5e\x2f\xc7\xf4\x81\x20\x4a\x76\x05\xb9\xaf\x22\x39\xbf\xf3\xc5\x51\x7b\x1d\xfe\x32\xc2\x7a\xf0\xc7\x4d\xa8\x6f\x2f\x5f\xed\x0b\x33\x6b\xbe\x3f\xfb\xf4\x1a\xf8\xde\x42\xee\x8e\xc9\x5b\xd2\x90\x4b\x34\xb6\x3e\xda\x4c\x2f\xd0\x99\x96\x8c\xf4\x1c\xfd\xd9\x58\x4c\x0f\xc4\x39\xe2\xad\x22\x6d\xe9\x18\x46\x83\x03\xb6\x25\x8d\xe2\xfc\x2d\x44\x7c\xfc\x20\x78\xe7\xc9\xac\xdc\xa0\x54\xb8\x07\x3d\xb1\x46\x36\x23\x22\xad\x8d\x77\xe7\xd6\x5f\xa8\x67\x6d\xb0\x22\x2f\x5d\xfc\x65\xbc\x6e\xfa\xc4\x2a\x7d\x07\x38\x0b\x38\xf1\xe8\x04\x25\xca\x43\xf8\xcd\x08\x5c\x29\x60\xc0\xc2\xbc\xb1\x2a\xf2\xe6\xc6\x4f\xfc\xfd\x8d\xf9\xd9\xd5\x5a\x73\x48\xeb\xef\xb5\x60\x01\x30\x26\xf7\x13\x20\x66\x86\xe6\x07\xe6\x81\x80\x95\xc5\xa1\x53\xc2\xe0\xd8\xe2\xfa\x50\x29\xcd\xfa\xd7\x93\xa6\x4e\xd8\x3d\xd6\x90\x7c\x5d\x53\x10\x34\x93\x04\xe7\x63\x29\xfe\x98\x94\xaa\xb9\xef\x9f\x9d\x7e\x7b\xac\x6a\xab\x81\x90\xeb\x4d\x25\xba\x6d\x45\x3c\x54\x83\xf2\xce\x58\xd0\x69\x33\xdd\xf7\xf7\x53\x19\xeb\xed\xfc\x0f\x13\x72\x18\xb2\x3c\x35\xc5\x5c\x85\x88\x55\xc1\x66\x63\xb9\xe4\xac\xaf\x07\xb9\xc2\xa1\x0b\xf6\xa3\xad\xb7\x7f\x73\xa4\x6c\x34\x1f\x90\xa4\x86\xb9\xb4\xd5\xe8\xef\x4a\x52\x6b\x19\xe8\x02\x50\xb9\x52\x80\xf1\x22\xd9\xd4\xbe\x2b\x2f\xb1\x66\x37\x3f\xc6\xab\x73\xe3\xb5\xfc\xe7\x71\x03\xb5\x09\xa0\x09\xff\x2c\x8e\xe8\x94\x01\xf2\x7b\xf9\xa0\x2d\x7a\xea\x47\xb8\xb5\x79\x07\xc1\x5c\xe8\x84\x29\x3c\xd2\x9b\x11\x5c\xd4\xdd\x30\x7e\x00\x43\x45\x72\x20\xbb\x5e\xc2\xdb\xdd\xdc\xeb\xdf\xf7\xfd\x27\x13\x6f\xf7\x9d\xd5\x9a\x81\x60\x7c\x59\x98\x65\xdd\x18\xad\xd0\xee\x72\x15\x22\x0f\xd4\xc4\x22\x9d\xc5\xce\x28\x19\x90\xc7\xf2\xe7\xcd\x5b\xb9\x6c\xc0\x24\x25\xc9\xa2\x24\x85\xca\x89\x9e\xa0\x9a\xf1\xe0\xab\xe8\x77\x9c\x72\xb9\x2b\x47\x53\xd9\x0c\x84\xfb\xb8\x8a\x62\x00\x3d\x07\x4b\x0f\x00\xea\x09\x17\x9c\x02\x9e\x17\x97\x37\x48\x0d\x50\xda\x1a\xd8\xc8\x04\xd2\x98\x50\xd4\x93\x62\xa9\x78\xc0\xea\xa9\x27\x37\x6a\xab\x4d\x3e\xde\x3a\xc2\x7f\xf0\x39\x08\x0a\xb0\x1b\x92\x11\x3c\x23\xa9\x8c\x40\x34\xe2\xaa\x0f\xae\xfb\x61\x22\x5c\x99\xa9\xef\x3a\x05\x83\xe9\x43\x20\x0e\x44\x39\xfc\xf6\xc0\x2a\x0a\x72\xff\xb3\xe9\x4e\xff\x5a\xd2\xc1\xd7\xdd\x54\x53\x77\xac\xd5\xf3\xec\x32\xe9\x14\x10\x85\xdb\xfd\x57\x8b\x09\x19\xa7\xfe\x77\x16\xb3\x84\x7d\x0a\x1d\x3a\xcc\x42\x1b\xfb\x02\x9a\xb7\xb7\x19\xed\x64\x1c\xdc\x9f\xef\x8f\x7b\xd0\xc6\x7f\xd7\x6f\x59\xe8\xa5\xd5\x59\x90\x9a\x52\x14\xee\x09\x26\xa2\xaf\x64\x48\x50\x9b\x62\x1d\x03\x02\x2a\x3b\xd5\x86\xa5\x6d\x9b\x96\xad\x6a\x9f\x72\x18\x68\x63\xa3\xb6\x0f\x6b\xd2\x4f\xf2\xf5\x23\xdd\xce\xa4\xa9\xe9\xe5\x0f\x97\x96\xce\x04\x98\x97\x9c\xd4\x82\xcf\x30\xad\x6d\x63\x9f\xbb\xab\xa2\x8b\x2b\x7c\x5c\x34\xda\x68\x96\x65\x13\xed\x59\x96\x32\x54\xbf\xb1\xc7\x52\x95\x06\xb5\x88\x17\xe3\x18\xf4\xcb\xd8\x0b\xa0\x3a\x6e\x59\xd7\x7c\xcf\xcb\x18\x1d\x0e\xa4\x52\xe1\x5e\x3f\xc9\xc3\x82\xa1\x2d\x44\xea\x70\xb9\x92\xee\x56\x0a\x1f\x7b\x77\x17\x36\x2b\xcd\x35\x0e\xf2\xbd\xd7\x43\x22\xa1\x79\xbb\xb0\x3f\xd1\xe8\xa5\x98\x10\x47\xa9\x87\x02\xbd\x19\x74\x2f\xc3\x3b\xbc\x49\xc7\x0a\x97\xa9\x81\xd5\x48\xb3\x13\xc2\xcb\x93\xb8\xb6\x9a\x50\x43\x3a\x31\xd5\x46\x2e\x92\x2d\x54\xb2\x20\x15\xdc\x48\x3b\x1a\xa4\xae\xc8\x45\xfd\xfe\xa0\xc3\x3e\x69\x99\xc7\x53\x79\xad\x6f\x2d\x51\x30\x16\x22\x5c\x1f\xdf\x32\x4c\x17\x39\xd3\x19\x24\x4c\xac\x64\x42\xf3\xf7\x64\x42\xb2\x55\xc8\xd5\x77\x32\x44\x03\xfa\x0e\xaf\x54\x98\x95\xfe\x20\x03\x95\x74\xa6\xd1\xb4\x43\x79\x33\xb0\x02\xca\x58\xfa\xeb\x0f\x01\x68\x4c\x52\x47\x39\xe5\x8a\xfb\xc4\xe3\xa3\x54\x9d\xd2\xc2\x07\x87\xbf\xae\x04\xab\x11\x45\x11\x92\x26\x43\x8c\xfd\x4f\xac\xb6\x89\xca\x4b\x4c\xae\xd6\x49\x89\x00\xf1\xf8\xd1\x7e\x72\x79\x9b\x6e\xeb\xc2\xd8\x20\x3c\x10\x22\x4c\xc5\x85\x1d\x79\x5b\xa6\x17\xa1\x6d\x15\xd1\x7a\xee\x21\x84\xfb\x19\x46\x94\x97\x84\x75\x50\x6b\xbe\x3f\xd7\x37\x18\x51\x42\x5e\x1e\x4f\xa6\x2b\x3f\xd6\xa4\x6c\x14\x76\xfd\x13\x94\x0b\x26\x05\x54\xf0\xcb\x4f\xc5\xa7\x98\x9d\xa1\x15\xdd\x46\x61\x9a\x4f\x97\x51\x6a\xdd\x48\x84\xa6\x03\xf5\xf7\xa0\x0c\x5b\x26\xfb\x46\xc5\x10\xb3\x0a\x8a\x94\x92\x44\xb5\xc0\x0e\x13\xc0\x22\x51\x2d\x50\x4c\xfd\xa2\xeb\x9c\x2d\xea\x67\xfb\x1d\x11\x18\xfe\x59\x32\x28\x41\x89\x23\x3a\x79\x06\x63\x02\x9f\xf8\x33\xf8\xe6\x11\xa4\xf9\x59\x4c\x11\x94\x53\x0a\x40\xbc\x38\xe9\x85\x25\x18\x88\x6d\xee\x57\x43\x8a\x0a\x85\x75\x1f\xd3\xd9\x5d\x39\x7a\xfe\xc2\xcf\x2b\x65\x6e\x55\xb0\x01\x7c\xf1\xb2\x62\x8d\x28\x3c\x66\x96\x58\xcb\x3b\xe1\x6e\x50\x42\x44\x17\xc5\x0c\xa8\x0f\x7c\x70\x2e\xc5\x43\xc0\xc4\x28\x42\xc0\x0f\xa0\x60\x91\x6a\x98\x85\x34\xb5\x43\x71\xbc\x5e\x92\xc6\x4e\xb4\x2e\xf3\xde\x28\x2e\xd9\xf5\xda\x73\x84\x2d\x8b\x53\x0f\xc1\x53\x2d\x12\x47\xfd\x9c\x16\xf7\x1a\xdd\x40\x89\x45\x74\x42\xe0\x74\xb5\xf6\x8f\x78\xf1\xc2\x75\x8f\xaf\x7f\x4a\x61\xd2\x03\xa6\x55\xae\x25\x2c\x13\x5d\xbb\xaf\xb1\xde\x52\x3e\x7a\x36\x5c\xf9\x98\x16\x2c\xf0\x3d\xb1\x88\x1b\x93\x47\x76\xa5\xb5\x00\xbd\x1b\xfe\xaf\x13\x15\x3d\xda\x04\xad\x3b\x9e\x2d\x3f\x36\x3e\xb7\x4b\xd5\x2f\xce\xb9\xd9\x31\xe0\x6f\x42\x2a\x6f\xf3\x66\x38\x08\x88\x20\xb6\x48\x52\xc1\xfd\x47\xbe\xae\xe5\x7c\x47\x75\x0e\xef\x2e\xad\x39\xf0\x8b\xc1\x46\xb5\x95\xcf\xd3\xe0\xb1\x45\x2d\xaa\x75\x84\xc7\x9a\xce\xc4\x36\xd8\x8f\xdd\xd3\xe0\x6d\xe5\x6b\xce\xa8\x98\x25\xb7\x27\x67\x7e\x30\x15\x73\x5b\x69\xc2\x42\xfb\x84\x98\xe5\xf7\xfd\x6c\xf3\xbb\x07\xda\x54\xc0\xfe\xe1\x0d\x0f\x25\xdc\x02\xc5\x73\x14\x31\x8e\x28\x8a\x96\xdb\x14\xdb\x76\x6b\x26\x4e\x5c\xde\x25\x16\x15\xd1\x50\xb2\x16\x19\x17\x0d\xad\xbc\x08\x87\xea\x2c\x56\x11\xb9\xbd\x4c\x3a\x17\xe3\x96\x3a\x12\x0d\xf0\x50\x6d\xd4\x54\xfc\x6e\x37\xa6\xb4\x8e\x68\x0a\xa3\x8c\x96\xda\xcb\xf7\x30\x01\x5e\xa9\x81\x25\x7d\xb1\x3f\xb6\x4d\x53\xe7\x8f\xdb\xb7\x3a\x57\x7f\xe3\xe1\x65\x7a\x89\xc1\x9e\x9d\x7b\x8b\x38\x2e\x82\xbd\x79\x89\xb8\xb8\x3a\xf1\x1f\xee\x60\xa3\x1d\x42\xd5\xf8\x8c\x23\x23\x4b\x06\x87\x38\x5c\xb1\x23\x13\x20\xf2\x71\xe3\x47\xf7\x99\x85\x1a\xbf\x1c\x93\x9f\xea\x57\x27\x79\x53\xf7\x6b\x14\x75\x1a\x6a\x78\xf9\xb2\x89\x10\x26\x8b\x4e\x53\xe7\x7d\x0e\x44\x80\x42\x2f\xc3\x1d\xcf\x0c\x03\x88\xa1\xc2\xff\xf5\x4c\x8a\x68\x0c\x77\x51\x95\x71\x9c\xd2\xd9\x3d\xca\x22\x7f\x67\xc6\xeb\xc9\xbc\xe4\xe5\x55\x45\x11\x1b\xe4\x4b\xc0\x16\xf1\xef\xcb\xc8\x96\x2e\xaa\xaf\xf9\x2c\xd9\x8a\x00\x06\x40\x24\x1c\x43\x60\x75\xae\x6e\x64\x20\xc0\xf2\x1a\x8b\xdf\xb7\x20\x48\x1b\x07\x5e\x94\x7d\x8a\xdb\xcc\xdc\xfd\x76\xb5\x60\x7d\xa6\xfe\x66\x14\xbd\xad\xaf\xa2\xdb\xeb\xa3\x8e\xfc\x78\x61\xe6\x24\x94\xe0\xf9\xba\xed\x15\xfd\x40\x83\x5d\xc6\x2f\xbe\x51\xce\x87\x04\x06\xec\xb1\xa3\x58\xba\x05\x8c\x1e\xd4\x7b\x59\x34\xbf\x13\x37\x21\x08\xa3\x02\x7c\x04\xf5\x6e\xdf\xea\xe2\xaa\x91\x35\xeb\xf7\x1d\x4b\x6e\x50\x7f\x7d\x91\xfb\xd5\x0c\x7f\xe1\x88\xa8\xcb\xdf\xa7\x67\x86\x78\xa2\x94\x6c\x0e\x1b\x45\x45\x0d\xf7\x45\x14\x68\x45\xe8\x8a\xde\x3a\x5d\xc7\x84\x71\xf6\xfd\x86\x39\x6b\x6b\x78\x79\x3f\xc8\x20\x76\x37\x1c\x70\x38\xb6\x1a\xe1\x6c\x6e\xb2\xde\xca\xd6\x6e\xbb\xc6\x56\x69\x8f\xad\xcf\x02\x3b\x66\x0c\x5f\x0c\xfb\x45\x9a\x90\xf5\x5f\x78\x08\xc6\xb4\xfa\x36\x11\x6b\x54\x7a\x61\xda\xc5\xe9\xc3\x5e\xdb\x5e\xbc\xc2\xc3\x63\x90\x9d\xf9\xc5\x85\x02\xf7\x36\x2f\x19\xc9\xae\x85\x17\xb5\x47\xa2\x1c\xe1\xd8\xc8\x5d\x75\x97\x9a\x75\xf6\xa6\x65\xe2\xf8\x04\x6a\xca\x7e\x97\x0c\x84\x8b\xb2\x32\x07\x45\x57\xdb\x5c\x80\x7f\x7d\x48\x50\x0f\x23\x9b\xe0\x6b\xd4\x5c\xe3\x57\x1e\x75\x68\x81\x09\xb3\x1d\xab\xed\x47\x9d\x8c\x1f\x45\x6b\x8f\xe2\x5e\x75\x34\x1f\xfa\x50\x69\xa2\x96\xcd\x6f\xd6\x98\x5a\x2f\xba\x51\x62\x70\x68\x02\xb8\x6f\xc3\x5e\xb5\x08\x86\x7d\x60\xed\xa2\x65\xfe\xdd\xce\x7d\x39\x6c\xb3\x59\xce\x8b\xb2\xaa\xf2\x97\x0f\x52\x42\x84\x57\xc0\x8a\x0e\xc5\xaa\xbe\xe1\xef\x31\x51\x0d\x1e\x2e\x8d\xa9\xf7\xc1\x65\xc3\x55\xb7\x28\xe5\x63\x18\xcd\xe2\x1c\x0e\x5e\x91\xdc\x7a\xbd\x7a\x39\xd8\x60\x3f\x9f\x7b\x7c\x9c\xfd\xa1\xfe\xd2\x12\x02\xff\x4a\x72\xe3\xab\x3d\x3d\x3c\x0a\x79\x5c\xd5\x50\x1a\x8f\xe4\x91\x87\xf8\x9a\x30\xab\xee\xb4\xf5\x35\x25\xc2\xfd\x59\xd2\x4a\xad\xac\x94\x38\x5a\xa1\x86\x3b\x64\x1c\x92\x1e\xf2\x50\xaa\x42\x72\x3b\xbd\x8a\xf0\x21\x3e\xca\x05\x29\x4e\xc5\x11\x0c\x6a\x66\xbb\xf3\x5b\xb1\x1c\x83\x0d\x09\x1c\xa6\x13\xc1\x00\xd0\xeb\xf6\xd5\xeb\x3b\x05\x1a\x8b\xa6\x40\x9f\x1d\xfc\x69\x04\x91\x89\x04\x52\x0e\x39\x99\xd8\xfe\x96\x21\x8d\x1d\xa0\xd2\x68\xa1\x31\x1c\x87\x72\xbc\xe4\xb2\x45\x55\x44\x81\x42\xa7\x1e\xd1\x25\xbe\x68\x85\x07\x47\x31\x58\x2f\xf9\x5d\x17\x9b\x89\xcb\x60\xec\x8b\xfb\x95\xb5\xb7\xbe\xf0\xa0\xb4\x13\xe3\xf9\xef\xae\x2a\x4c\xd8\x00\x84\xdf\x8e\xa6\xfe\xa6\x1a\x6d\x3e\x16\x9f\x5e\xc6\x25\x95\x02\x4a\x73\x03\x34\x68\x7d\xb7\x56\x75\x0e\xd1\x9c\xb3\x1d\xe3\x08\x06\xc1\xc0\x75\xcf\xe5\x74\xc9\x61\xcc\xd5\x74\xbb\xdb\x01\x57\xb5\x1e\x3e\x6e\xd0\xa7\xec\xe9\x00\x8f\x2f\x3a\xb9\x97\x39\x2d\xd6\x55\x98\x01\xeb\x70\xcc\x24\xf5\x57\xb4\x43\x46\x31\x47\x16\xc6\x82\x64\x5d\x12\x3f\x2f\x1e\xdc\xa4\x97\xfe\xe0\xf2\x3a\x8a\x09\x73\x54\xe2\x4c\xfe\xfa\x71\x5b\xa7\x07\x2a\x83\x8d\xd3\x0e\xd9\x70\x47\xbb\x6a\xd6\x78\xe4\x21\x82\x1f\x4a\x49\x34\x19\x8e\xb8\xff\x7c\xc1\x15\x5e\x2c\x14\x97\x1e\xe9\x24\xb6\x6b\xbe\x62\x35\x6d\x53\x42\xfe\xd7\x3d\xbd\x56\x5b\x8e\xa0\xfc\x69\xcf\xed\x4d\x30\xbf\x29\x67\x39\x7b\x32\x24\xad\x49\x55\xb1\x1b\x99\x40\x7a\xce\xc9\x90\x84\x69\x02\xea\x3b\xb6\x25\x14\x8d\x0e\x34\x87\x66\x3e\x4d\x07\x9d\x78\xd2\xa2\x60\xc4\xec\xef\x0e\x38\xe3\xd0\x16\x20\x56\x3d\x86\xdc\x0d\x8f\x20\xd4\x8b\x9a\x95\x0f\x23\x6f\xad\x91\xda\x47\x74\xa2\xe4\xf0\xb9\x74\x2b\x60\xf6\x71\xa1\x8e\xe0\x06\x71\xa6\x6a\x96\x86\xc9\x6f\x0b\x4f\x16\x2e\x05\x13\x25\x11\x06\xef\xa2\x14\x1f\x11\x39\xb7\xdc\x1a\xf0\xf7\x94\x29\xe7\x9f\xfd\xbb\x11\x86\x5b\x20\x07\x1c\x57\x9a\x3f\x9a\xa0\xdb\xb2\x65\x90\xcf\x3d\x26\xb6\x21\xde\xd2\xc5\xcd\xb4\xae\x13\x75\x1c\x65\x66\x6b\x89\xdc\xdd\x1c\xce\x38\x6f\xf7\x22\x41\x9f\x9a\xde\x2b\x06\xe8\x08\xea\x47\x8b\xcc\xd8\xd0\x2b\xb6\x6d\x06\xa9\x60\x62\xc5\xcd\x86\xa9\x0c\x05\x79\xb5\x9e\xfa\x2b\x11\xbe\xb2\x71\xfc\x6b\x49\xd8\x37\xac\x96\xc4\x61\xcc\x55\x3e\xe2\x32\xfd\x56\x57\x2e\x26\x0d\x1b\x85\x7b\x91\xc8\xa6\x58\x90\x69\x27\xb1\x9b\xff\xf2\xe2\xbc\xd7\x17\x6c\x56\x0b\x71\x88\xfd\xa7\x10\x8f\x3d\xab\x1c\x84\x5c\x37\x85\x15\x70\xb9\x3c\x47\x78\x51\x4e\x29\x59\x56\x7f\x25\xd1\x94\xb4\x39\x8d\xc5\x2e\xe1\xc5\x53\xd2\xa6\x97\x66\x83\x04\x1e\x54\xf4\x0c\x06\x3b\xbf\x6e\x75\xb2\x3d\x47\x2a\x83\x3d\x71\xa1\xe4\x73\x9a\x17\xbc\x2e\x2f\x06\x49\x7e\xad\x13\x69\x5a\x13\x97\x42\xf4\xc6\xfb\x4d\x02\x12\x65\x3d\x69\x02\xe9\xb3\xb5\xd8\xc8\xb4\x43\xfd\xc8\xa6\xb2\xe2\x40\x04\xa5\x09\x0f\x7c\x03\xcb\xf4\x8d\x78\xb7\xd7\x7d\xf5\xe1\x0b\xef\xf8\x67\xfc\x75\xd3\xf2\xe6\x91\x13\x06\xe8\xb5\xfd\xba\x01\xcc\x77\x94\xd9\x66\x91\xef\x63\x35\x32\xa3\x76\xb8\x3f\xc1\x12\x26\xcb\x19\x99\xcd\x90\x6b\xef\xbe\xbc\x8e\xd4\x59\xe5\x8e\x06\xde\xf7\x5c\xcf\x3b\x7c\xa3\x05\xb8\x66\xf4\x33\x40\xa4\x83\xfd\x0c\x42\x64\xbb\x00\xbb\x5d\x66\xef\x4a\x59\x38\xf1\x85\xca\x30\xf6\xc8\xa2\x79\x66\x1c\x3d\xd3\x6b\xa3\xf0\xf7\xe4\xd6\x6d\xc4\x5f\xd4\x33\x71\xe7\x38\xa2\x5f\x87\x96\x62\xfa\xa1\x13\xdd\x49\x04\x83\x14\xa5\xb0\xed\xde\xd7\x76\xb9\xef\xae\x4f\x73\x77\x8f\x37\x96\x13\x2b\xc1\x6f\x17\xe6\x36\x0c\xae\x13\xa1\xd3\xa6\xc9\xaf\xff\x64\xf7\x5a\x5c\x14\xbd\x5c\x7f\x51\xc4\xf5\xb9\x53\x46\x32\x52\x59\x4e\x7d\xac\x96\x1e\xdb\xfd\x1d\xf1\xd7\xcc\x7c\xaf\x29\xda\x55\xe5\xda\xec\xb2\x65\x71\xdc\xa7\x67\x17\xbe\x2c\x62\x69\x01\x61\x64\xf9\xb6\xeb\x0a\x6d\xa9\x3b\xb1\x2e\x52\x02\x15\x9a\x2a\x55\x71\x08\x76\x87\x5d\x8b\x74\xbf\x42\x0e\x54\xce\xdc\x6a\xcd\x55\x3d\x4d\x98\x8b\x48\x1c\x67\x9e\xff\xcc\x8b\x4c\xa1\x82\x9b\x3d\xce\x40\xee\xef\x2a\xf0\x8e\xdf\xf4\x68\x99\xe5\x68\xee\x44\xd0\xf4\x09\xd4\x61\x72\x93\x25\x5e\x83\x85\x73\xc4\xfb\xe8\xb7\x53\x55\x20\x32\x62\x57\x09\xd7\x91\x78\xaf\xb0\x93\xd7\x97\x88\x20\x5c\xab\x63\x6b\xf4\x33\xad\x90\x4e\x19\xdd\x3b\x95\x6b\xe5\x92\x8e\xfc\xbc\x7f\x17\x65\xd1\x5b\xd8\x6e\xfc\x16\xd7\xb0\x80\xdf\xb0\xc0\xc8\x8a\x0f\x6d\xb5\xc1\x06\xf3\x93\x99\xf6\xa8\xb3\xd0\x91\x15\x10\x06\x31\x8e\x23\x4e\xef\xbf\xba\x1a\x72\xc4\x5e\x53\xaf\x78\x98\x6c\xff\xc5\x19\xe0\x0a\x61\x16\x77\xc0\x5f\x1c\xfa\xd4\xd3\x2a\xbe\xad\x09\xbb\x6e\x6f\x8f\xfb\x8f\x00\xb7\x65\xe7\xb5\xc6\x67\x8c\x35\xe0\x73\xc0\xe6\x35\xa7\xe4\xc5\x4d\x28\xf2\xec\x3a\x09\x44\x11\x9a\xfb\x29\x01\xa7\x73\x1f\x6d\x0b\xd1\x2c\x68\xd3\x9a\xb4\xdd\x06\x21\xd0\x30\x40\x22\x3e\x5f\x73\x39\x29\x3b\xac\xf2\x04\x0a\x97\xc8\xec\x84\x03\x4a\x78\x3d\x9c\x44\x2a\x44\x19\xbe\x41\x3b\x8a\xcb\xfe\xff\x12\x4d\xde\x6e\x34\x08\xc8\xe1\x73\x31\x93\xa9\x82\x6b\x7d\xdd\xd1\x25\x79\xb0\x9c\x7c\xdc\x3d\xb9\x02\xd9\x07\xe4\xf0\xbb\x07\x77\xcc\x4d\x9c\x35\xec\x5d\x8a\xa4\xbb\x6e\xbc\xe8\x0d\x60\xb9\x59\x1b\xee\xf8\x3d\x21\x05\x72\x59\xf1\xad\xe7\xdc\x5c\x41\xd3\x0a\x8c\x7e\xb4\x1e\xcb\x1c\xdd\x18\x16\xef\xdb\x1f\xd9\x39\x6c\xa2\x25\x01\x90\x8f\x72\x3c\xa4\x06\x18\x6b\x78\x9f\x04\xd8\xb2\xa3\x80\x08\x0b\x73\x17\x2b\x48\xa0\x21\xce\x0f\x64\xd0\x59\x7b\x6e\x29\x80\xee\x87\x0b\xea\x34\x26\xd2\x23\xba\xac\x5c\x44\xef\xba\x17\x59\xe8\x07\x0e\xfc\x3f\xa4\x2b\x90\x1e\x49\xb0\x90\x76\xdd\x5c\x05\xcd\xbb\x78\xc2\xdf\xa4\x8f\xcc\xde\xf1\x8b\x9e\xd3\x5c\x30\xcd\x95\x72\xf4\x3c\x3e\xb6\xba\x27\xd7\x5d\xa9\x8d\xf2\x89\xaa\xa5\x28\xb9\xf5\x10\x11\x7f\x1a\xbc\xf4\x25\xa0\xbe\xef\x70\x63\x6f\x41\xbf\x15\x3a\x67\xa5\xe7\x77\xa2\xcf\xb2\x17\xf8\xed\xb6\x21\x78\xf3\x98\xe3\xfb\xd5\xca\xa2\x96\xd4\xab\x47\xa7\xd5\x8e\x8a\x8d\x1f\x1f\x22\x7c\xcf\x02\x5d\x29\xde\xcb\x10\x58\x5f\xcc\x93\xb6\xa3\xdb\xf7\x14\xb6\x0e\xb3\xc3\xb5\x2c\x37\x26\x67\xc9\x17\xad\x27\x56\xe2\x65\xfe\x32\x83\x18\x52\x74\xe0\x26\xed\xcd\x63\xb1\xcd\x3b\x92\xaa\xdb\x49\xf4\x29\x47\xca\x42\xdb\x40\x52\x3f\x96\x8c\x69\x90\x4c\x34\x3c\x7e\x7f\x04\xab\xbd\xc0\x0f\x7d\xc3\x1d\x95\x3b\x1e\xe2\x51\xd3\xd5\xd0\xf5\x49\xc0\x49\x3b\x2e\xb8\x94\xba\xd1\x5a\xb4\xd3\x1b\x48\x27\xd2\x50\xb1\x6f\x14\xad\x3e\x89\x3e\x16\x1f\x58\xa7\x00\x80\xa1\x7e\x09\xc4\xcd\xe9\xea\x14\x11\x8c\xdb\x63\x28\x59\x0b\x7e\x13\x4e\x67\xa6\x44\x40\x62\x77\x80\x26\xb9\xb7\x16\x9f\x4c\x40\xab\x7b\x94\xd4\x99\x75\xc7\x74\x55\x00\x97\x5c\x41\x38\x6a\xc1\x6b\x50\x99\xa1\x15\xdf\x46\x75\x60\x94\x8e\xb7\x15\xc4\x77\xa2\xbf\x8a\xb9\x9b\x25\xa8\xa8\xb7\xeb\xf7\x64\x19\x35\x7c\xa4\x84\x3f\xe3\xa4\x83\xb5\x65\xfb\xcc\x56\x32\xc3\xbf\x4f\x2e\x2f\x4c\xdc\x02\xc1\xc6\x63\xaf\x70\xd0\x3a\x88\xaa\x5b\x39\x0d\xdd\x4e\x56\x02\xe0\xf9\x57\x6b\xe0\xb8\x87\xf9\x5b\xfe\x50\x4f\xfc\xdb\x45\x37\x0a\x9b\x9b\x86\x76\x73\x09\x26\xfc\x47\x91\x90\xda\x74\x3c\x30\x94\x0f\xf8\x0e\x98\x78\x41\xf0\xee\xfd\xdf\x4e\x26\x45\x15\x6c\xba\x83\x1c\x05\x96\xfa\xab\x2e\xba\xbc\x2e\x8d\xdf\xb6\x55\xee\xe8\x55\x2a\x99\xfb\x9c\x72\xb8\x57\x97\xcf\xcc\x8f\x37\x25\xe8\xcf\xfd\x9e\x42\x27\x64\xeb\x43\x77\x65\xac\x76\x10\xee\x2d\xfe\x25\x9b\x26\x93\x6e\x94\x1b\x9b\x10\x87\x8c\xef\x8a\xcf\x0b\x92\xc7\xa5\xae\x37\x0b\x15\xd5\x04\x65\xcb\x8e\xb0\xed\x36\x44\x39\xee\x16\xec\x12\xe6\xc5\x86\xef\xda\xed\x31\x01\x98\x70\x50\x1a\x00\x15\xd4\x79\x51\xf6\x11\xfd\x65\x79\x6a\x77\x90\x40\x25\x9d\x72\xcc\xbb\xcf\x67\x47\x70\x60\xfe\xbd\xef\xeb\x68\xc6\xb7\xe5\x8f\xe4\x1d\xde\xd3\xf3\xe2\x65\xf1\x63\x52\xdf\x8e\x6e\x34\x3d\x1f\x0b\x7f\x4f\x0e\x9a\xf3\xe2\x18\xcb\xa7\x84\xb2\x39\x3a\x23\xfd\x1d\x75\x0a\x2b\xa8\xc2\x79\x3a\x33\x50\x0b\xdc\x92\xf1\x2c\x31\x9e\x82\x1b\x0e\x57\xf8\xa5\x79\x57\x4e\xf6\xcb\x4e\xcb\x6b\x8c\x42\x64\x4d\xa9\x85\xaf\x22\xef\x63\xb4\xdb\xef\x95\xec\xa8\xa3\xee\x6f\x18\x6b\x51\xfe\x60\x5b\x6e\x82\x17\xf4\x4b\x25\x85\xcc\x93\x1e\x34\x27\xcb\xb1\xc9\xa9\xd4\x8b\xbc\xb2\x9a\xd2\x37\xfb\x02\x9a\x00\xc5\x02\x1b\x62\xbf\xf9\xbc\x08\x31\xd9\x9f\x17\x3b\xcf\x33\xc3\xc6\x7e\x7b\x2f\x9b\xb5\x49\xc8\xef\xf4\x1d\x5d\x8d\x8c\xfc\x3b\x6b\x4c\x00\x39\xd8\x20\x4f\xd1\xd6\x95\x99\x63\xe7\x5b\x8d\x53\x54\xd0\x2f\xfa\x4a\xbf\xad\x45\xb5\x7f\x14\xb3\x29\x50\x65\x0f\xc7\x68\xe0\x77\x3c\x2b\xc8\xe9\x49\x63\x64\x98\x8e\x9b\xf2\xf1\xe0\xf3\xf6\xbd\xb9\xc0\xa3\xe5\x6c\xf0\x42\xa2\x0a\xb7\x40\x62\xf2\xfb\x52\x43\xba\x3a\xf9\xb7\xe1\xe6\xce\x91\xeb\x99\x84\xbd\xef\x86\xbf\xaa\x80\x3c\xb8\x04\x5e\x59\x79\x04\x28\xa7\x44\x81\x11\xb1\xea\xc6\x74\x8b\x45\x0c\x00\xa8\x7c\xf6\xbb\x78\x7b\x3c\xa8\x65\xc6\x8f\x0b\xf2\x75\xf9\xc5\x48\x36\x25\xa3\xbc\x49\xf6\xda\x13\xbf\xf6\x59\x28\x93\x21\x79\x42\x82\xa4\x9e\x4e\x85\x9b\x27\x57\x35\xc0\x5a\x59\xeb\x43\xa8\x8f\xb5\xac\xb2\x75\x90\x92\x30\xf3\xfa\x2b\xd4\x76\xf5\x79\x8e\xf2\xf6\x48\x7e\xf6\xc4\x07\x1f\x00\xb8\xcb\xa3\xf2\xfd\xae\xf4\xae\x18\x9d\x7d\x11\x9f\x4a\x27\xd1\xc5\xa1\xaf\x6c\x00\x94\x94\xd3\xc5\x8d\x85\xcd\x9f\xb8\xe1\x6e\xc6\x0a\x2f\x59\xc8\x6b\xc2\xec\x86\xa3\xbc\xed\x5e\x51\x2e\xd3\x41\x01\x04\xce\xc0\x36\xf8\x45\x92\x7a\x92\x3f\x5d\x19\x06\xb9\x5e\x5b\x27\x2d\x64\xf0\x30\x11\xbe\xd9\x45\x53\x1f\xcc\x44\xcf\x1d\x2f\xf7\x90\x0d\xc4\x5f\xf4\x78\xe8\x8f\x52\xdc\xfb\xf7\x33\x21\x32\xde\xfd\xab\xf8\x28\x84\x88\x25\x32\x1e\xf2\x2d\xa8\x96\xe0\xbc\x2d\x9b\x08\x9a\x0f\xf7\xe0\x53\x77\x94\x6a\x7a\x3b\xfc\xd5\xc9\x0a\x84\x98\xf9\x70\x10\xf9\x77\x31\x1d\x27\x2b\x21\xf8\xcd\xc7\x84\xbe\xd8\x11\x2d\x61\x32\xc4\x54\x7c\x45\xc1\x79\x9f\x72\xc9\x86\xc9\x2c\x81\x61\x96\x2d\x04\xe4\xc3\x8d\x73\x23\x0e\xf2\xb3\x0e\x72\xdd\xe9\x4b\xe7\x0e\xb2\xf2\x71\x49\x66\xd4\xf4\x3b\xdb\xd1\x56\xcb\x1f\xa8\xd2\x23\xea\x55\x46\x7a\x3a\x0e\x3a\x0d\x5f\x78\x67\x93\xf0\x24\xc9\xe8\x96\xa6\xc4\x16\x1d\xce\xc9\x2b\x38\xcd\x46\x29\x40\x73\x6b\xa2\xcf\xd5\x2d\x70\xfb\xa2\xd3\xc6\x99\x3f\xbb\x11\xfc\xa1\xf7\xca\x1c\x7e\xd8\x42\xe9\xed\x4a\x7d\x21\x29\x5e\xa2\x0f\x17\x39\xc8\x57\xaf\xea\x0c\xf7\x3e\xd5\x44\x7f\x53\xfb\x2a\xe2\x1f\x6e\xa5\xbd\x79\xa9\x87\x8f\x9a\x66\xd1\x88\xd4\xd2\xde\x48\x89\x63\x0b\x49\x4a\xb8\xb1\x73\x4e\xf2\x7b\x05\x27\x6c\x1f\x57\x72\x5f\x7a\x74\x7d\xdb\x6c\xdf\xa7\x0a\x4c\x07\x6e\x3f\x0b\xda\x17\xdf\xfb\x09\x99\xf3\xb0\xe5\xa2\x45\x97\xc4\xdf\xbd\xb0\xab\x03\xf3\x66\xfc\x56\xff\x86\xa9\x0c\x0f\xfe\x05\x32\x82\xcd\x19\xad\x0c\x56\x4f\x7c\x4f\x64\x41\x59\xa3\xe0\xb9\xef\xe7\xfa\x72\x0e\x77\x4f\x26\x8f\x96\xcb\x70\x9a\x14\xf1\x09\x91\xe7\x22\x2e\xcc\x6f\xf1\x18\xd5\xa1\x77\x60\x08\xec\xd3\xd9\x54\x2e\x58\x44\xb2\x50\x80\x1d\xdf\xa2\xa5\x35\x61\x72\xe3\x30\x84\xa9\x9e\x65\x19\x25\x3d\x7c\x2e\x7a\x92\x42\xa2\x86\xe0\x80\xa7\x93\xc5\x06\xbf\xbc\xfe\x43\x4e\x1e\x53\x6b\xe3\x07\x0e\xb6\xdb\xa3\x30\x73\x01\xfe\xc7\x87\xd8\x5e\xf2\x98\xfd\x12\xd5\x0b\xcf\xf8\xbb\x54\x93\x67\x95\x3f\xaa\x4f\xeb\x16\x5b\xd5\xf6\x83\xcd\x93\xe3\x72\x0c\x66\x7b\x63\xa0\xd3\x7d\x92\x54\xa6\x47\x01\x1b\x61\x6d\x68\x1c\x8e\x8e\x1f\x67\x81\xc1\x5d\xfe\x8c\x5b\x22\x18\x3c\x49\x7f\x7d\xe5\x22\x9e\xb8\xfa\xcd\x57\x3a\x4a\x0e\x3d\x06\x7f\x77\x52\xcd\x40\xb4\x4c\x7e\x36\x04\xbe\xb8\x27\x12\x87\x5e\x45\xd4\xcf\xe7\x7a\xb3\x70\x7c\xab\x0d\x02\x06\x64\x2b\x24\xbb\x68\x58\x04\xf5\x52\xd0\xe5\x78\xe2\x78\x05\xc9\xa5\x4c\xc6\x68\x6f\xd3\x03\x5c\x18\x9e\x59\x25\x4c\x88\xca\xf7\xb1\x8e\x18\x2d\x95\xb4\x53\x66\xf3\xdc\xe4\x44\xcc\x66\x77\xd1\x74\x62\xb3\x4a\x12\x83\x71\x95\x7f\x6c\x07\x39\xc2\xec\xf2\x7c\x0c\xeb\xa1\xfb\x6b\xf7\x8b\x22\xd2\x55\xee\xb5\x95\xee\x2e\xd5\xa4\x65\x33\x99\x79\xbb\xf5\xde\x76\xf5\xdd\x76\x96\xa5\x22\xa9\x2d\x85\x29\x5a\x22\x4a\x4a\x4d\x4c\x52\x2f\x0c\x72\xbd\x80\x30\x22\xfa\xf8\x58\x78\xc2\xcb\x3b\x58\x43\x5a\xc4\x4e\xcf\x3e\x9e\x4a\xb9\x18\x0d\x6d\xaa\xc1\xa5\xa0\x70\xc9\xb2\x96\xa0\x00\x20\x84\xe0\x24\x34\xfd\xa5\x1f\x39\xad\xa2\x16\x49\x8d\x0a\x9b\x0f\x20\x50\x42\x9d\x5c\x5c\xdc\xbe\xa5\x0b\xa5\xa9\x01\x4b\xf4\xac\x29\xd1\x05\x13\x08\x0c\xcc\x6b\x07\xef\xf1\xb9\x1f\xe1\xda\xfe\xc9\x17\xea\x45\x1a\xa7\x27\xe7\x8f\x01\x01\xb5\x52\xa3\xdd\x06\x6a\x1d\xb6\xe6\x69\xf8\x84\xe2\x2a\x94\x53\xf5\xac\xdd\xc3\xb4\x43\x46\x86\x9f\x0f\xce\xf3\xd7\xd5\x5f\xee\xf4\x67\x1e\xb5\x79\x6c\x95\xf9\x58\xbe\xfa\xf1\xb5\x46\x9f\x7d\x27\x38\x6f\x30\x67\xc2\xc1\x78\xe1\xe9\x87\x2d\xb7\xa9\x81\x05\xae\xe4\x67\x75\xbc\x02\xeb\x1f\xda\x92\x79\xb1\x8d\xd3\xaa\xf7\xd4\x4d\x99\x3b\x51\x53\xa6\x8a\x6e\x30\xf2\x3b\xd8\x29\xde\xfe\xc9\xee\xbd\x1b\xc4\x11\x31\xab\x9c\xc7\xb9\xaa\x31\x56\xd2\xfc\x79\x65\x3f\x42\x0e\x9e\x97\x5d\x3f\xd7\x3f\xa9\x95\x96\xd4\x23\x04\x28\xc8\x78\x4e\xd3\x31\x2c\x66\xea\x43\x37\x3e\xa7\x85\xa6\x98\x99\x86\x52\x49\x5f\x47\xe5\xb2\x0d\x7a\xc4\x51\xed\xe1\x7e\xd8\x8a\x0e\x72\x93\xf4\x9c\x66\x6a\xae\x1e\x9e\xb2\xc1\x77\x16\xa9\x54\xdf\xb6\x9d\x65\x41\xaf\x30\xb3\x81\xe0\x61\x14\x7d\xb0\xf4\xa2\x04\x28\xed\x93\x5a\xe8\xaf\xbe\x72\x92\xd4\x7f\xdc\x15\x4f\xe3\x65\xae\x76\xc2\xf6\xde\x8c\xb9\x21\x11\x85\x77\x21\xe4\xef\xb0\x5b\x36\xce\x73\x7d\xec\xda\x65\xf8\xc9\x31\x23\x5f\x9f\x3b\x16\x5a\x75\xdb\x6a\x56\x7b\x04\x1e\x63\xd7\xb0\xf4\x72\x0d\xd9\xd0\x47\xa9\xb6\xac\xaf\xf4\x98\xfc\x0d\x06\x66\xa7\xac\xf9\xca\xb3\x91\x89\xc0\xad\xc4\x9f\x16\xe8\xaf\xae\x74\x34\xe8\xcd\xdb\x9a\xee\xfa\x43\x65\x07\x69\x64\xca\xbe\x5e\xa5\x50\xd6\x8d\x54\xaa\x36\xc0\x2a\x4a\x47\x0a\xaa\x22\xf9\xc1\x92\x23\x70\x9f\x87\xe1\xd8\xa6\x44\x93\xb1\x23\x0a\x5c\x58\xe2\x80\x3c\x87\xe8\xd8\xe4\x9c\x13\x2e\xee\x73\xa8\xca\xe8\x91\x81\x4d\x41\x64\x2f\x19\x6c\x54\x40\x92\x80\x81\x79\xd0\xc3\x8a\xa9\x8c\x34\xc9\x61\xd5\xc5\x01\xc4\x86\x09\xa4\xb1\xfa\x99\xb4\x52\xac\xd1\xae\x78\xed\x69\xa9\x4d\xcc\xbe\x47\x1e\xe3\x28\xe5\xf0\xb9\x0c\x30\x04\xd3\xdb\xce\xb4\xe8\xb8\xe3\x57\xad\xcb\x0b\xd7\x1c\x8c\xe0\xa7\x40\xdf\x2b\xb0\x96\xf0\x94\x09\x4f\x4a\x78\xed\x25\x3d\xe6\x5c\x7d\x06\xf3\x18\xa1\xd6\xb8\x88\x7a\x84\x82\xb7\x05\xdc\xdd\x05\x42\x69\xe9\x71\x98\xf3\x38\x0b\x36\xb7\x02\x45\xb1\xf4\xe1\xd1\xdb\xdf\xa8\xa5\x18\x45\xb3\xa7\xf7\x1d\x46\x5f\x04\x2a\x1d\xdd\x5a\x0c\xf1\x82\x48\x6e\x5f\x61\x3b\xb2\x6a\x51\x80\xed\xcb\x12\xd9\xab\xad\xa5\x87\xbc\xd0\x90\xc2\xac\x90\xc7\xb8\x83\xd8\x94\x02\x50\xb2\x01\x66\x62\x5a\x31\xa2\xd0\x92\x66\x8f\x1e\x62\x9b\x51\xc7\xed\x67\x10\x40\x9c\x25\x3e\x6e\x7d\x4b\xcb\xd2\x37\x66\xf0\x99\xde\x42\x16\x0f\xc3\x24\xcc\xc7\x87\x3c\xa4\x50\x43\x0d\xe7\x43\xde\x38\x43\x61\xb0\xfd\xc4\x3f\xf1\x34\xd0\x26\x89\xcc\xf6\xd3\x63\x6f\x24\x8e\x83\xaf\x98\x07\x13\xf1\xe2\x63\x8d\x00\x86\x92\xa0\x37\xf5\xcf\xf7\x2d\xfd\x4b\x51\x32\xa6\x48\x63\x45\x9b\xee\x70\xed\xb0\x91\x2f\x17\x65\x8c\x48\x1a\xc1\x74\xb8\x57\xeb\xba\xd0\x32\x61\x37\x62\xb6\x87\xd6\xb1\x8e\x2f\xfc\x9b\xc2\x78\xad\xb1\xe3\x97\x5c\xa1\x50\x41\x69\x15\x5d\x8c\x82\xbe\xa6\x9f\x02\x1a\xd8\xe6\x72\x8a\xab\x2b\xd1\xaf\xa0\x0f\x19\x94\xb4\x66\x09\xcf\xf7\xff\x52\x7a\x4c\xbf\xb1\x8c\xd3\xdf\xa0\x4a\xbc\x45\x0b\x9d\x5f\x3a\x6a\x85\x00\x82\xf9\xbc\xee\x5e\x5d\x18\x52\xa8\xd8\xbe\x6f\xdb\x9b\xf4\x67\x7a\x48\xef\x7f\xa2\x42\xf3\x7b\x50\x63\x65\x3e\x73\x1a\x25\x1d\xac\xd8\xa9\xce\xb8\x30\xcc\xfe\x4d\x5f\x51\x01\xef\xbf\x93\x99\xee\x7d\xc1\x68\x1b\x1b\xc9\x6e\x3e\xac\x5a\x14\xd6\x86\xd2\xa1\x50\x2d\x84\x45\x4a\x11\xb2\x0c\xc4\xa4\xfe\x0c\x16\xc2\x3e\xde\x2a\xca\x68\x21\x4c\xb3\x17\x12\x36\x48\xfa\xb0\x96\xac\xe9\x2c\xf6\x93\xe0\x2a\x6a\xb7\x8e\x74\x67\x39\xff\x91\xb9\xcf\x51\x2d\x04\x1e\xc5\x20\x2f\x42\x3e\x58\xef\xb0\x74\x70\x6d\x24\xb1\x6d\xc2\x40\xee\x75\xdf\xdc\xfb\xd0\x8e\xaa\x0f\x21\xc7\x9a\x80\x21\xeb\x83\x0a\x9c\x9b\x65\xd3\x4b\x90\x5c\x86\xf6\x43\x65\xbe\x98\x7f\x8f\x4b\x09\x78\x76\x00\xd1\x7b\x8c\x8a\xcd\xbd\x88\x8d\xff\xc2\xea\x76\xa5\xb4\x6f\xd8\x9e\xa5\xf9\x85\x69\x24\x04\x44\x01\x8f\x27\x90\x8a\x0b\xa0\xc6\xec\xef\xc2\x4c\x18\x29\xbd\xd2\x7f\xa3\xfd\x59\x92\xa5\x9e\x0b\xa5\x64\x97\x4f\x7a\xed\xbf\xed\xba\x7a\x7f\x5d\x7e\x5b\x5d\xd1\x2b\x19\x04\x77\x4c\x22\x33\xc9\x82\xea\xa4\xd8\x8a\x7b\x44\x3c\x30\x7f\x61\xed\xfe\xbe\xdd\xb5\xd0\x95\x15\x0a\xa0\xbe\x9c\xcd\xab\xba\xb2\xec\xeb\xbd\x0f\x9a\x80\xc8\x62\x31\xaf\x92\x4e\xbe\xbd\x64\xdf\x57\xf9\xe3\x1c\x29\x60\xfc\x3e\x49\xba\x59\xb2\xbb\x58\x6f\xb8\x0f\xfc\xf3\xab\x96\x57\x1f\x94\x63\xc7\x37\x53\xcb\x05\x96\xea\x2c\x86\x7d\x9e\x1e\x4e\x2c\xab\x2d\x6d\x4f\x61\xf1\x94\xa9\x5d\x44\xe5\xb1\xb2\x5b\x4a\xb8\x5d\x43\x29\x2e\xe9\xf0\x75\xaa\xf7\xea\xeb\x8f\x61\x93\xc2\x95\xec\xc5\x25\xb4\xfa\x99\x8a\x3c\x05\xc9\x68\xfd\xc9\xb7\xde\x6c\x84\x0d\x0c\x16\xc5\x8a\xc7\x8f\xd3\x9c\x09\xb7\xe2\x3f\xa9\x7d\xa6\x9e\xe0\x1e\x99\xfb\x84\xd8\xf6\x78\x96\xd7\x1d\xf8\xda\xef\xf6\x26\x7c\x50\xf0\xa6\x85\x72\x7f\x1e\x5d\x7d\x32\xa3\x18\x9b\x76\xc3\x3e\xec\xad\xbb\x7b\x94\xb2\x79\x61\x7b\xb0\x98\xbc\x90\xdc\x41\xb4\x10\x12\xa9\x18\xe0\x68\x85\xe9\xc1\x45\xc6\xd1\xe1\xe2\x58\x75\xb3\xd6\xb0\xd3\x47\x54\x6e\x1c\xe2\x8d\x17\x54\xf6\x5c\x99\x4d\xe4\x75\x73\x04\x07\x8f\x18\xb3\x41\x5c\xf9\xf1\x0d\xb9\x49\x35\x5f\xe5\xbb\x10\x1f\x81\xa0\xdf\x82\xfc\xc3\xf5\x50\xfd\x85\x6e\x50\x51\xda\xd8\x58\xb0\x7d\xc7\xd5\x0e\xf5\xe1\xbb\xa3\x15\x24\x1b\xce\x33\x94\x40\x3b\x64\x4f\x29\x8b\x68\xa5\xab\x34\x1c\xc5\xb5\x34\x21\x9a\x03\xb0\x1d\xfd\xda\x8a\xfd\xfd\x4c\x0f\x69\xc3\xf5\x4a\x7a\x1b\x05\x49\x31\x63\xf9\xc4\xd7\x1c\x68\xa4\x9c\xb4\xcb\xac\xbb\x3d\x45\x29\x2e\x39\x0f\xe4\xd3\xca\x5a\xda\xe4\xdd\x1d\xa3\x5a\xc7\x23\xc0\xcd\x5e\xe7\x41\xf3\x89\xb6\xb1\xd8\xe6\x76\x77\x60\xa2\x43\xf7\xb7\xa0\xf4\x79\x98\xd4\x7b\x98\x19\xaa\xbf\x68\xb5\x29\x6e\x9b\xdc\x13\xb4\x06\xee\xe4\x47\x1f\x8e\x09\xce\x75\x9f\x37\x34\x87\x8c\x10\xde\xf5\x0c\x5a\xd2\x7e\xd4\xee\x47\x9b\xb0\x81\x0d\x8a\xc5\xa8\x19\xf4\xe2\x33\x42\xfd\x06\x8d\x88\x19\xe5\x71\x28\x71\xe8\x79\xaf\xd7\x31\x01\x7c\x06\xe2\x98\x83\x7f\x89\x43\x39\x2f\xff\x12\xe7\x2e\xbc\x0c\x70\x86\x33\xeb\x7e\x10\x83\x77\x14\x79\x3b\x72\xd5\x02\x06\x66\xb3\xab\xc8\x68\xaa\xaa\x79\xce\xff\xb6\x51\xfb\xad\x31\x60\xfc\x16\xa3\x15\xd2\xc1\x56\x27\xcf\x55\xcc\xe1\xf3\xe6\xba\xcc\x3f\x55\x0e\x7f\xa3\x28\x4d\x8e\xc7\x09\x4b\x9a\xec\x82\x86\x03\xce\x83\xbd\x08\x38\x59\x75\x7e\x96\x4d\x7e\x64\x2f\x95\x4b\x1a\x1b\xb7\x8e\x3d\xa5\xcc\x00\xc0\xbd\x42\x57\xab\x1e\xf6\x79\x91\xc9\xb2\x7b\xbe\xdb\x59\x95\x18\x49\xbb\x48\x86\xd7\xbd\x54\x1c\xc8\x60\x4f\x41\xce\xfe\xd7\x95\x58\x74\x73\x49\x5d\xb9\x65\xee\x5b\x1f\x15\x43\x98\xc2\x65\x3a\x62\x56\xee\x58\x96\xa2\x8d\x1c\x5e\xd1\xc3\x96\xd2\x59\x0b\x31\xa2\x2e\x1c\xc8\xbb\x7e\x8a\x3d\x51\xda\x09\x15\xa1\x59\x62\xf0\xf1\x63\x6c\x7e\xff\x99\x1d\xb9\xaf\x34\xda\x17\xe0\xc9\x49\xff\xae\xd4\x4b\x11\x8f\x1d\x86\xbd\x76\x47\x0e\x4f\xd3\x87\xfa\x15\xe0\x72\x73\x14\xf9\x51\x1b\xfc\x4e\xfc\x45\x5b\x6d\xc1\x29\x12\xcc\x7d\x81\x76\x3d\x50\xb3\x44\x41\x50\x3f\xbb\x9b\xe1\xc2\xac\x89\x8f\xc3\x61\x48\x78\xa8\x79\x61\x80\x43\x31\xaa\x22\xd9\x78\x91\xf8\x9d\x4e\xa4\x8d\xb7\x52\xc8\xdb\x8d\xd6\xcf\x99\x93\x9e\x19\xdc\x67\x25\x62\xa1\x4e\xc2\x15\x70\xe3\x9e\x95\x1f\x7c\x01\x8e\xe9\x0a\xe4\xa1\x14\x19\xf3\x75\x34\xda\x34\x14\xaf\xcd\xe0\xf3\x71\xa3\x6d\xbd\x4f\x5c\xea\x4d\x8e\x1f\xa5\x09\x78\x9e\xd4\x7b\xf0\x44\x18\xde\x16\x4d\x60\xf5\x23\xe4\xc2\x0d\xfe\x80\x4e\x1a\x52\x64\x51\xcf\x12\x67\xd5\xbd\x77\x68\x3f\xc8\x24\x06\xc5\x3e\xe1\x81\x5b\x9c\x4e\x11\xcb\x97\xe2\x98\xa0\x18\x65\x8b\xc1\x51\xd1\x25\xa0\xd9\xce\x62\xbf\xfb\x77\xdb\x4b\x8f\x51\x15\xfe\x81\x1a\x57\x6e\x65\x4a\x0e\x37\xc8\x16\x4b\x40\x1f\xff\x70\xa9\xd5\x2c\x57\x37\x8a\x68\xdf\x91\xf6\xf6\xb1\xa4\x29\x91\x17\xf1\xd6\x27\x4e\xcf\x90\x99\xcf\xc6\x6a\x45\x1b\x4f\xaa\xfe\x27\x5f\x5a\xfa\xf6\x0c\x91\xe5\x84\xac\x98\xc0\x87\x85\xc1\x6f\x94\x38\x1b\xcc\x6a\x42\xa1\x84\x0c\xd9\x6b\x18\xa8\x9d\x46\xb1\xc4\x81\xb7\xdb\x6d\x76\x81\xba\x15\xd5\x08\xad\x99\x7a\x2d\xb6\xac\x75\xbb\xfc\x0d\xac\x4c\x62\xb8\x4c\xf2\x09\x00\x34\xc4\x7e\xab\x2b\x7e\x3d\x46\xd4\xc5\x9e\xff\x2a\xd2\x68\x17\xdb\x0d\x19\xde\x44\x75\x94\x93\xce\xd4\x55\xa0\x70\x41\x63\xa8\x3d\x45\xfd\xe4\x78\x29\xe1\xf7\x2f\xe2\x4f\xf3\xf3\xd4\x56\x3f\x29\x56\xc2\x62\x89\x8c\x95\x2b\x35\xe1\xca\x97\x9f\x86\xea\x29\x30\xca\xcd\x2c\x9a\x18\xd0\xd1\xcb\xb7\x2d\x3e\x53\x3f\x53\xd1\xfd\x55\xe0\xb9\x34\x4d\x2c\x62\xfc\xac\x8a\x7d\xfb\x31\xbf\xd8\x52\xa5\x17\x99\x8b\xf1\x75\xc2\xb8\xd5\xf3\x56\x14\x32\xf6\xe9\x08\x59\xfb\x8c\x19\x82\x03\xcb\x00\x3a\x27\xfb\x9a\x42\xd1\x3e\x95\x14\x21\xb6\x9d\x57\x72\xd0\x86\xb1\x16\xf5\xaa\x56\xd4\xfa\xf8\xa1\x88\xa7\x93\x21\x98\x53\x8a\xc5\xc9\xbc\xd1\xd6\xb4\xd1\x16\xab\xd1\x16\xb3\xd1\x16\x3b\x8b\x07\x69\x84\x24\x04\x5f\xb1\x5b\x83\x84\x23\x99\xb2\x8e\x11\x1c\x46\x08\x58\x41\xd8\x25\x8a\x2c\x8a\xeb\x4c\x76\xea\x2c\x8a\x43\x2c\x76\xc4\xa6\xa4\x25\x8a\x62\xa5\xe1\xa2\xc2\x90\xa4\xbe\x65\x14\xd2\x58\x4d\xaa\x27\x97\x92\xa4\x48\x3d\xf5\x63\xc4\x97\x76\x78\x98\x17\x08\x21\xfc\x5e\x46\xd3\xfc\x73\xe0\xa8\x06\x65\x25\x17\x03\x0c\xa4\x4a\x7f\x4c\xd4\xbe\x82\xcb\x19\x24\x4c\x72\xc9\xd8\xda\xd3\xd1\xb3\x0f\x93\x79\xb1\x27\xe2\xf7\x4b\x76\x32\x0a\x1d\xfe\x06\x62\x60\x5a\x61\xf6\xa3\x86\xc2\x45\xf5\x0b\x15\x56\xc7\x80\x16\xa1\x9d\x66\x80\xd6\xae\x4c\x01\x6a\x27\xd2\xef\x5e\x00\x91\x1a\x00\xa3\x86\xc4\x62\xf9\xcb\x20\x7a\x03\x3a\x72\xf5\x13\x46\xc4\xaa\xef\x6b\x06\xe2\xea\x5d\x1d\x35\x0b\x35\xdd\x69\x2c\xc1\xaf\x9d\xac\x31\x6d\x3f\xa9\x80\xdb\x6c\xe5\x39\x38\x6d\xb1\x9f\x73\x99\xa0\xd3\x30\x1b\x73\xe1\x42\x24\x6a\x2a\xa9\x6c\xc7\x67\x0f\x50\x08\xc0\x0e\xc6\xc4\x84\x86\x00\x43\x88\x09\xc1\x20\xc6\xf2\xe9\x7f\xc3\xf7\x14\x45\x59\xbc\x5f\x64\xba\xfb\xab\x5a\x09\x79\x03\xee\xa2\x25\x96\xfe\x0f\x14\x07\xeb\xf8\xff\xeb\x83\x89\xe2\x05\x8a\x83\x43\x23\x76\xd3\x42\x78\xdb\x14\x00\xc0\x57\x09\x00\xfc\x2b\xac\xbb\x66\x03\x93\x30\x73\x66\x40\x9b\x2f\x2a\xf6\x52\x42\x13\x93\x21\x93\x24\xb7\xc8\x4b\x74\x47\xa2\x28\xdb\x0b\x1f\x4c\x14\xbf\xf1\x8b\x43\xd9\xef\xad\x47\xcc\x65\x70\xef\x08\x6f\x4a\xb2\xfa\x56\x61\x5b\x15\x00\xa0\xa1\x8b\xd4\x1b\x39\xe8\xae\x48\x88\x80\xae\x45\xcc\xec\xad\x94\x76\x5d\xb2\xb1\x15\xd3\x85\xa1\x1d\x3e\x1b\xec\x3a\x58\x98\x69\x73\x49\xfd\xdd\x97\x0e\xe6\xfe\xe3\xb9\xf1\xd2\x07\x16\x61\x59\xa8\x25\xab\xfb\xc6\x05\x01\xf4\x15\xa0\x6d\xb4\xa0\x04\xde\x72\x9c\xd5\xa6\x89\x54\xbb\x39\xa8\xdd\xca\x85\xac\xb9\xa8\x4e\xc2\x61\x93\xa4\x7a\x9d\x60\x73\xa7\x81\x21\xa0\xd9\xb0\x75\xeb\xbd\xa9\xc2\xf7\x5f\x39\x90\xfb\x69\x3a\x6c\x2e\x40\x85\xa6\xc4\x4b\x55\xe2\x55\x00\x00\xe8\x2b\x40\x47\x68\x90\x4d\xc4\xaf\x05\xea\x14\x00\x00\x6c\x86\xc0\x4e\x47\xcc\xec\x8d\x41\xed\x1a\xc5\x90\x8d\x1a\x24\x21\xdb\x38\xda\xeb\x24\x9b\x3b\x01\xaa\x64\xa7\xaf\x0e\x97\x5f\x7b\xe9\x60\xf6\x3b\x57\x87\xca\x17\x6d\xcc\x32\x50\x13\xfe\x3c\xd4\x5c\x9f\x7c\x3c\xd0\xae\x0d\x8a\xdb\x31\x0a\x00\x50\x97\x48\xc1\x23\xd8\x14\xe2\x62\xf9\x4d\xc2\x8c\xb9\xa4\xbe\x74\x2b\xa9\x5f\x25\x0c\xe9\x11\x83\x24\x45\x1b\x87\xfa\x8a\xd0\x1c\xba\x40\x8b\xb7\x92\xfa\x99\x57\xf7\xe7\xbe\xf3\xde\x54\xe1\x6d\x55\xa2\xab\x50\x11\xfa\x2c\xd4\x14\xa0\x08\xf5\x5c\x3d\x2e\xce\xce\xdd\x34\xfa\x03\xec\x30\x05\x70\xe0\xc9\x26\xf2\x32\x51\x7b\x67\x02\x0b\x3c\x29\x76\x65\x89\x96\x6f\x0c\x94\x67\x96\x63\xc6\x0d\x81\x21\x33\x6c\xe2\xb8\x60\x63\xa5\xaf\x08\xf5\x30\x08\x55\x17\x92\xfa\x87\x6f\x4d\xe7\x7f\xf0\xd6\x74\xfe\xd5\x74\xc4\x9a\x07\x04\x59\x80\x6a\x73\xb8\x7a\xbc\x54\x25\x9b\x56\xbb\x77\x2b\xb1\xa3\x05\xc2\xa7\x00\x9b\x5f\x8a\x9f\x0c\x95\x1d\x64\x67\x17\xd9\x69\x51\x00\x88\x60\x86\xa2\x93\x39\x79\xf2\x9e\xc5\xc8\x89\xa9\xac\x7c\x3c\x6c\x92\x14\x62\x7d\x8f\x91\x2e\xd0\xe2\x72\xcc\xb8\x72\x71\x44\x3d\x7d\x75\x58\xbd\x66\x10\xe6\x14\x24\x77\x46\x79\x3f\x9a\x12\xde\xed\xe9\x8a\x05\xda\x8d\xc2\x0f\xb0\xc3\x15\x00\xc0\x57\x09\xf8\x30\x65\x6f\x38\x30\xaf\x08\x61\xe0\x14\x02\x33\x14\x19\x2b\x48\xe3\x47\x97\xc3\xf7\xec\xcd\x28\xf7\xc4\x35\x32\xba\x43\x36\xd2\xb6\x0c\x0c\x01\x2d\x8b\x76\x76\x31\x6e\x5c\xba\x38\x52\x3a\x73\x73\x40\x9b\x31\x09\x73\xd8\x97\xbd\x42\xef\x8c\xf6\x7e\x19\x73\xae\x78\xa7\xdd\x2a\xfc\x00\xbb\x40\x01\x1c\x34\x98\x0d\x1c\x45\x70\xa2\x25\x9d\xa4\xef\x10\x54\x94\xc0\x51\x04\xe7\x38\x9c\x52\x85\xc1\x23\xab\xe1\xbb\xa6\xd3\xca\xb1\x41\x55\xdc\x2b\x59\x38\x72\x3b\x9b\x47\x16\x66\x7a\x5e\xb1\x96\x66\x53\xfa\xf9\xcb\xc3\xea\x85\xa5\xb8\xbe\x48\x51\x55\xc8\x1d\xe1\xe7\x7f\x0e\x12\x7c\xaf\xf0\xef\x4a\xb3\x87\xc7\xae\x7a\xe9\x01\xb3\x01\xaf\x08\x4e\xe8\xb0\x43\xfb\xe1\x28\x02\xaf\x0c\x4e\x8d\xb1\x90\x64\xe1\xe8\x54\x4e\x9e\x3c\xb8\x16\x3a\x3a\x9e\x97\x0e\xc7\x74\x61\x58\xb4\x6f\x8f\xbd\x04\x1b\x31\x4b\x95\x68\x66\x25\x66\x5c\xbf\x99\xd2\x2e\xde\x1c\x2c\xdf\x2c\xc8\x76\x16\x6a\x8c\x6c\x4e\x25\x1f\x95\x3b\x76\x84\xbe\x25\xb2\x80\xdd\x2e\xfc\x00\xbb\x4c\x01\x1c\x04\xcc\x06\x7e\x8a\xc0\xc7\xcf\xf3\xca\xe0\x28\x84\xf3\x9d\x12\xd3\x49\x62\x2a\xab\x4c\xed\xcd\xc8\x07\x47\x0b\xd2\xfe\xa8\x4e\x86\x76\x9b\x07\xc9\xc2\xcc\x28\x4b\x34\xbb\x16\x36\x67\xe7\x92\xda\xb5\xd9\x94\x76\x73\x3d\x62\xae\x53\xe4\x62\x5f\xf3\x6b\x8e\xe0\x1b\x50\x2f\xf8\x7e\x51\xad\xb7\x85\xf0\x03\xec\xa2\x97\xeb\x85\x47\x09\x00\x9a\x24\x86\x83\x7b\x56\xe0\x15\x42\xf1\x34\x39\xaa\x93\xf8\x78\x5e\x1e\x9d\xc8\x4b\x7b\x47\x0a\xd2\x9e\x84\x26\x8c\x29\x26\x8e\x11\x8a\xa4\x9d\xa4\x10\x36\x62\x96\x21\x30\xb5\x28\xdb\x6b\x6b\x11\xe3\xd6\x62\xdc\x98\x9d\x4f\xe8\xf3\x99\xb0\x99\xa1\xc8\x65\xc6\xf0\xb4\x83\xfc\x31\x3f\xda\x37\x1b\xf1\x6f\x9b\x51\x9f\xc7\x8e\x79\x99\x9d\xa2\x81\x59\xe4\xa5\x06\xf1\xce\x0a\xbc\x42\xf0\x8a\xc1\xff\x4e\x12\x28\x52\x52\xaa\x90\x1a\x2e\x4a\xc3\xc3\x45\x71\x6c\x50\x15\xc7\x62\xba\x30\xa4\x98\x38\x2e\xda\x48\x21\x14\x89\x5b\xa1\x14\x14\x31\xdb\x22\x4c\xd7\x05\x56\x2c\x49\x76\x26\x13\x32\x97\x56\xa3\xe6\xe2\x4a\xd4\x58\x5e\x8f\x98\xe9\xb2\x48\x4b\x50\x4f\x35\xa8\x71\x9f\x1a\xd4\xd3\x10\x7a\xa9\x08\xef\x18\xc1\x77\xb0\xeb\x15\xc0\x41\x0b\x8a\xe0\x37\x2b\x38\xeb\x05\xaf\x52\xf0\xdf\x49\xdc\xdf\x8a\x98\x81\x14\x31\x48\x24\xae\x09\xf1\x64\x59\x48\xa6\x54\x71\x30\xae\x93\x54\xd8\x20\x09\xc5\xc4\x11\xc9\x46\x11\xd1\xc6\x32\x66\x20\x60\x86\x08\x66\x40\x10\x43\xa4\xda\xd1\x8c\xeb\x73\x54\x11\x2e\x06\x8c\x51\x54\xd9\xd1\xb6\x37\x04\xdd\x24\xac\xac\x13\xaa\xaa\x92\x9d\x2b\xca\x76\x36\xaf\x58\x99\x74\xd8\x4a\x67\x42\x56\xb6\x28\x5b\x45\x93\x30\x27\x13\xcb\xe1\xd8\x74\x9a\xee\xd3\x0c\x70\xd3\xbe\x38\xcd\x4b\xff\x52\x27\xf8\x00\xb7\xaf\xf0\x57\x5e\xc1\x6d\x04\x1f\xa6\x34\xbf\xc5\xb2\x33\x2b\x38\x6b\x05\x5e\x21\x24\x70\xcf\x12\x92\xcf\xef\x44\xee\xff\xaa\x39\xc1\x84\x22\x51\xa4\x48\x0a\x99\x58\x0e\x19\x24\x24\xdb\x58\x96\x2c\x24\xcb\x16\x96\x25\x0b\xcb\x84\x01\x21\x0c\x11\x4c\x11\x41\x00\x88\x22\x46\x19\x02\x6a\x23\x66\x19\x84\x19\x86\x40\x0d\x83\x30\x5d\x17\xa8\xae\x4a\x76\x59\x13\xa8\xa6\x0b\xd4\xb0\x30\x33\x36\xca\x8c\xf2\xc4\xb2\x5e\x82\x59\x03\xdc\x64\xb3\xde\xef\x78\x81\xf7\x1b\xed\xef\x38\xc1\x77\x70\x5b\x29\x80\x83\x16\x14\xc1\x8f\x4b\xc7\xab\x10\xde\x26\x79\x7e\xe7\x97\x18\xef\x4d\x84\xf7\x63\x84\x70\xee\xa9\xae\xae\x2e\xd4\x87\x7b\xf0\x8d\x17\x5e\xb3\xc5\xd6\x88\x78\x36\xb0\xfe\xee\x9d\x20\xf8\x0e\x6e\x4b\x05\x70\xd0\x02\x77\xa6\x77\x66\xf0\x32\x33\xf0\x9b\x6d\x42\x40\xe3\x15\xc8\x7b\x2e\x2f\xc7\x4f\xab\x0a\xe0\x17\xf9\xca\x0b\x32\x3f\x13\x04\x35\x3f\x81\x6f\x48\xf7\x78\x27\x09\xbe\x83\xdb\x5a\x01\x78\x34\x99\x15\x9a\x29\x44\x10\x7d\x09\x81\xc6\xb4\x27\xed\xcc\x00\x7e\x49\x40\xbe\x21\xe0\x50\x2f\xe0\x5e\x61\xf7\x8e\xf2\x7e\x26\xce\x1d\x2d\xf8\x0e\xee\x18\x05\x70\xd0\x64\x56\x08\x52\x08\x3f\xc2\x2a\xef\x71\x33\xf6\x38\xaf\xdb\xb6\x11\x6d\x78\xc3\x8c\x38\x9f\x63\xef\x08\xdf\x94\x96\xe5\x4e\x16\x7a\x1e\x77\x9c\x02\xf0\x68\xa2\x0c\xfc\x71\x10\x15\x22\x0e\xf8\xde\x7b\x0c\x3e\x9f\x00\xc1\x4a\xe0\xa7\x0c\x8d\x3e\x83\x1a\x7f\x0d\x00\xe8\x0b\xbe\x17\x77\xb4\x02\x38\x68\x81\xc3\x3e\x68\xa6\xf0\xfb\x2e\x68\xc4\x6f\xd4\xd7\x7e\x8a\xe0\xfd\xb9\x91\x80\x37\x64\xad\xee\x0b\x7d\x30\xfa\x0a\xe0\x83\x16\x14\xa2\x9d\x4f\xef\x71\x10\x58\x87\x9f\xde\x63\x00\xe8\x0b\x7d\xab\xe8\x2b\x40\x13\x34\x28\xea\x80\xda\xfc\xd9\xfb\xbb\x20\x01\x65\x6d\xfe\x0c\x00\x7d\x81\xef\x14\x7d\x05\xe8\x00\x2d\x56\x3a\xe9\xb4\x6f\x9b\x0a\x72\x5f\xd8\x7b\x87\xbe\x02\xf4\x18\xad\x96\x01\x6a\x86\xbe\x90\xf7\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x7d\xf4\xd1\x47\x1f\x3d\xc5\xff\x0f\xa9\x40\x1f\x73\x75\xc7\xd3\x6b\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x63\x72\x65\x61\x74\x65\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xc3\x2e\x30\xd9\x00\x00\x00\x25\x74\x45\x58\x74\x64\x61\x74\x65\x3a\x6d\x6f\x64\x69\x66\x79\x00\x32\x30\x31\x37\x2d\x30\x33\x2d\x33\x31\x54\x30\x30\x3a\x34\x33\x3a\x32\x33\x2b\x30\x32\x3a\x30\x30\xb2\x73\x88\x65\x00\x00\x00\x57\x7a\x54\x58\x74\x52\x61\x77\x20\x70\x72\x6f\x66\x69\x6c\x65\x20\x74\x79\x70\x65\x20\x69\x70\x74\x63\x00\x00\x78\x9c\xe3\xf2\x0c\x08\x71\x56\x28\x28\xca\x4f\xcb\xcc\x49\xe5\x52\x00\x03\x23\x0b\x2e\x63\x0b\x13\x23\x13\x4b\x93\x14\x03\x13\x20\x44\x80\x34\xc3\x64\x03\x23\xb3\x54\x20\xcb\xd8\xd4\xc8\xc4\xcc\xc4\x1c\xc4\x07\xcb\x80\x48\xa0\x4a\x2e\x00\xea\x17\x11\x74\xf2\x42\x35\x95\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\x85\x3c\x99\xda\x4a\x47\x00\x00") func web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08PngBytes() ([]byte, error) { @@ -790,7 +118,7 @@ func web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png() (*a return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png", size: 18250, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png", size: 18250, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -810,7 +138,7 @@ func web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png() (*a return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -830,7 +158,7 @@ func web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png() (* return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png", size: 15576, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png", size: 15576, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -850,7 +178,7 @@ func web_uiV2AssetsAppleTouchIcon120x120C9cc4fc809a6cbff9b9c261c70309819Png() (* return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png", size: 16251, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-120x120-c9cc4fc809a6cbff9b9c261c70309819.png", size: 16251, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -870,7 +198,7 @@ func web_uiV2AssetsAppleTouchIcon144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng() (* return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -890,7 +218,7 @@ func web_uiV2AssetsAppleTouchIcon152x15208c9aa1c11a83650b824e3549b33a832Png() (* return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png", size: 23769, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-152x152-08c9aa1c11a83650b824e3549b33a832.png", size: 23769, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -910,7 +238,7 @@ func web_uiV2AssetsAppleTouchIcon57x57Ae96d6d27e61e25514af459bc8b20960Png() (*as return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png", size: 5158, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-57x57-ae96d6d27e61e25514af459bc8b20960.png", size: 5158, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -930,7 +258,7 @@ func web_uiV2AssetsAppleTouchIcon60x60522fca33a44f77c679561313def843b9Png() (*as return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png", size: 5522, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-60x60-522fca33a44f77c679561313def843b9.png", size: 5522, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -950,7 +278,7 @@ func web_uiV2AssetsAppleTouchIcon72x72Da5dd17cb4f094262b19223464fc9541Png() (*as return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png", size: 7289, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-72x72-da5dd17cb4f094262b19223464fc9541.png", size: 7289, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -970,7 +298,7 @@ func web_uiV2AssetsAppleTouchIcon76x76C5fff53d5f3e96dbd2fe49c5cc472022Png() (*as return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png", size: 8031, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-76x76-c5fff53d5f3e96dbd2fe49c5cc472022.png", size: 8031, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -990,7 +318,7 @@ func web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng() (*asset, return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png", size: 8285, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png", size: 8285, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1010,7 +338,7 @@ func web_uiV2AssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs() (*asse return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js", size: 0, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js", size: 0, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1030,47 +358,47 @@ func web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png() (*asset, erro return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png", size: 58433, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x7b\x77\xdb\x36\xf2\x30\x8e\xff\xef\x57\x21\xf3\x9c\xc7\x4b\x6e\x20\x98\xd4\x5d\x4a\xd9\xfc\xd2\x34\xdd\xcd\xb3\x69\x9b\x27\x49\xfb\x39\xfb\xf3\xa3\xd3\x87\x26\x21\x09\x6b\x0a\x54\x01\xc8\x8e\x6b\xeb\xbd\x7f\x0f\x2e\xbc\x93\x22\xe5\x38\x17\x75\xdb\xd3\xc8\x12\x39\xb8\xcc\x60\x30\x33\x18\x0c\x06\xc6\x96\xa1\x0e\xe3\x14\xfb\xdc\x38\x09\xd0\x02\x13\x64\x1a\x7e\x44\xd8\x36\xec\x6e\xf1\xb9\x17\x78\x1b\x8e\x28\x3b\xf7\xfc\xd0\x00\x17\x06\xfa\xb0\x89\x28\x67\x06\xa8\x84\xd9\x6c\x42\xec\x7b\x1c\x47\x24\x07\xb0\x8e\x02\x14\xea\x2a\xca\x8f\x03\x3f\xf7\x74\xcb\x71\xc8\xce\x57\x9c\x6f\xce\xd7\x88\xaf\xa2\xa0\xee\x2d\xe3\x1e\xdf\xb2\x8a\xb7\x6b\xef\x0a\x3d\xe7\x9c\x7a\x97\x21\x32\xe6\x60\xb1\x25\xbe\xe8\x92\x89\x00\x07\x04\x50\x10\x02\x06\xb0\x75\x17\x3f\xef\x44\xea\x8d\x75\x47\x11\xdf\x52\xd2\xe1\x1d\x4c\x3a\xe8\xd9\xcf\x97\xff\x41\x3e\x87\x8a\x26\x6f\x68\xb4\x41\x94\xdf\x4a\xd0\xbb\x6b\x2f\xdc\xa2\x19\x01\x88\x6c\xd7\x48\xb6\x33\x3b\xb5\x81\x1f\x91\x05\x5e\x6e\x93\xdf\x37\x14\x73\xfd\x7d\x67\xcd\xd0\x05\x9f\xbb\x04\xa0\x5d\x5d\xbd\xc6\x6f\xbf\x21\xf6\x63\x14\x6c\x43\x64\xc4\x4d\x88\x92\x27\x48\xc0\x7a\xdb\x90\xbb\x3c\xfe\x06\xd1\x07\x8e\x48\x60\xde\x6d\x69\xf8\x43\x44\xff\xcf\x16\xd1\xdb\x59\x8a\x68\x8a\xca\x0a\x33\xe8\x6d\x36\x88\x04\xbf\xbc\x7d\x6d\x1a\x9e\x1f\x9e\x87\x98\x71\x03\x5c\xcc\x81\x7c\xe9\x87\xc8\x23\xb2\xbc\x89\x2c\x6b\x07\x32\x15\xbe\x45\x7e\x44\x83\x5c\xb5\x78\x61\x5e\x47\x38\xe8\xd8\xae\xeb\x22\x88\x03\x8b\xaf\x68\x74\xd3\x21\xe8\xa6\xf3\x92\xd2\x88\x9a\xc6\xbf\xa3\x6d\x67\xbd\x65\xbc\xc3\x36\xc8\xc7\x8b\xdb\x8e\x47\x3a\x38\x30\xac\x93\x3d\x3d\xc2\x64\x11\x19\xe0\x42\x54\xb8\xb7\x57\x2f\x28\xf2\x38\x2a\x75\x2b\x3b\x74\x15\xb5\xfb\xb2\x94\xc4\x38\x32\xef\x76\x80\xc3\xef\x9f\xbf\x7f\xfe\xe2\xe5\x4f\xef\x5f\xbe\xfd\xed\xff\xfc\xf2\xf2\xed\xbf\x7f\x7b\xf3\xfc\xed\xf3\x1f\x01\x81\x1e\xe7\xd4\xa4\xf0\x87\x9f\xdf\xbe\x7c\xf5\x8f\x9f\x7e\xfb\xd7\xcb\x7f\x5b\x69\xeb\xbf\x6c\x82\xea\xd6\x41\xb8\xb7\xfd\xad\x2c\xd7\xa2\xfd\x70\x7f\xfb\xdf\xa3\x10\x55\xb5\x1f\x02\xb6\xb7\xfd\x00\x31\x4e\xa3\x5b\x03\x5c\x30\xd5\x00\x81\xef\x5e\xff\xf2\x0f\x59\x7b\x53\x97\xd8\xfe\x2e\xbd\x08\x23\x52\xd5\xa3\xfd\xe3\x21\x0a\x19\xe0\x22\x3c\xb8\x37\x0d\x04\x7a\x8b\x7e\xdf\x22\xc6\x73\x0c\x7b\xed\xd1\x0e\x77\x11\xe4\xb7\x1b\x04\x88\x8b\x20\x23\xde\x86\xad\x22\x7e\xc2\x6e\x30\xf7\x57\x26\x82\x54\x15\x7b\x7f\xbb\x41\xd6\x9d\xef\x31\x64\xf8\x29\x5a\xc6\x2c\x8b\x49\x09\x6b\x93\x43\x29\xc5\x7e\xf2\xd6\x82\x0d\x77\x59\xe0\xdf\xd8\x76\x83\xa8\xc0\x3e\xbc\x35\xc5\x13\xe0\xd1\xe5\x76\x8d\x08\x67\xd6\x0e\xc8\x36\x66\x45\xd9\xa4\x3a\x1c\xba\x77\x8c\x47\x14\xcd\x10\x10\xfd\x9e\x71\x80\x83\x19\x01\x71\xd7\x67\x14\x64\xfa\x3c\xcb\x75\x77\x07\x98\x7b\xa7\xe4\xe6\x4c\xf6\x42\x7d\x4f\xa9\x63\x86\x96\x20\xd7\x2c\x83\x4f\xe6\xcd\x0a\x79\x01\xa2\x4c\xbd\xd5\x3f\xf2\x10\x81\xc7\x3d\xf5\x5a\x7c\xcb\xbd\xdb\xe5\xe6\xf8\x6f\x42\x0c\xc7\x2f\x05\xc6\x79\xf8\xd2\x28\x11\xb7\x91\x6a\x7b\xc6\xac\xc3\xe1\xdb\x97\xff\xe7\x97\x97\xef\xde\xff\xf6\xcb\x9b\xef\x9f\xbf\x7f\x39\x2b\x3c\x7d\xf1\xf6\xa5\x78\xaa\x7b\x48\xa0\xe7\x87\xf1\x68\x91\x1d\x28\x52\x29\xd7\xbb\x56\xad\x7e\xff\xf2\xf5\xcb\xda\x56\x6b\xb9\x2a\x84\x6f\x7e\x79\x7f\x00\xd7\x60\x56\x23\x03\x93\x19\x87\xe0\xc6\xe3\x2b\xe2\xad\x91\xeb\x2a\x8a\x6e\x3c\xca\x90\x98\x7d\x59\x16\xce\xd4\x22\x67\xa5\x01\x4c\x1b\xe0\x58\xbd\x58\xa6\x9c\x88\xb9\x89\x06\x0c\xc3\xb2\x2c\x2b\xa9\x5e\x76\xa6\x72\xfe\xeb\x59\x77\x72\x58\x8f\x32\x93\xaa\xaa\x43\x26\x77\xef\x76\x20\x32\x39\x48\x05\x86\xd2\x15\x2c\xdc\x2e\x7f\xa0\xd1\x5a\x54\x88\x2c\x4b\xc2\x94\x7a\x0e\x78\xa9\xf3\x35\xf2\xfc\x40\x4a\x66\x6b\x31\xc9\x36\x0c\xc1\x43\xc9\xb9\xf2\x48\x10\xa2\xb7\x88\x6d\x22\xc2\x0a\xa2\x81\x0a\x99\x2a\xa8\x8a\x5d\x0a\x22\x37\xd4\xd3\xfa\x04\x2f\x4c\xd1\x3b\x06\x7f\xfe\x97\x7a\xef\x15\x7a\x1a\x8a\x6e\x26\x13\xe7\xd4\x56\x7c\x7b\x2a\xf4\x37\x9e\x61\x05\xac\x1a\xfe\x2e\x8a\x84\xd2\x8d\xdb\x37\x3d\x80\x01\x81\x6f\xde\xbe\xfa\xf1\xf9\xdb\x7f\xcb\x1e\x67\x24\xf5\xc9\x25\x45\xde\xd5\x89\xe2\x76\x51\x07\x66\x19\x93\xc1\xf4\xac\x7c\xdd\xef\x30\x59\xa6\xa8\x89\xaa\x2f\xec\xf9\x41\xb5\xe7\xc8\xec\x81\xc8\x9a\x65\xdf\xe6\xd8\xb9\xfc\x36\xc3\x5a\xf2\x65\x43\xdf\x1a\x3b\xa6\x87\xb5\x40\x3f\x8f\xfb\xab\x76\xd5\xec\x76\x28\x64\xa8\x93\x0c\xde\x2f\x3f\x3d\xff\xe5\xfd\x3f\x7f\x7e\xfb\xea\xff\xff\xf2\x7b\x35\x8c\x5b\x57\x9a\x54\xeb\x4b\x44\xa1\x34\xac\x4e\x94\xa1\xb5\x85\x7e\x14\x20\x17\x81\x2d\x5c\x23\xc6\xbc\x25\x72\x29\xd8\x56\x08\x10\xc9\x35\x18\x84\xd6\x6e\x67\xed\x2c\xb0\xcf\xb0\xcf\x1a\xed\x59\x03\x1f\x89\xd6\xbb\x42\x6a\xa7\xc0\x14\x09\xdb\xd1\xd8\xd2\xb0\xc2\xee\x56\x86\xd6\x2f\x6f\x5f\xd7\x58\xf9\x55\xa6\x78\xc6\x0c\x67\x5f\xb7\x19\x0e\x50\x8d\x59\xe2\xa2\x82\x12\xc8\x3c\x50\xba\x28\xf3\xe0\xed\xcb\xe7\xdf\x67\x7e\x2a\xfd\xe0\x2a\x9b\xfa\x44\x4d\x70\xdd\x31\x8f\x31\xbc\x24\xf7\xf7\x59\xc9\xb4\x88\xa8\xa9\x2c\x1a\xe7\x29\xff\x26\x51\x0c\x30\x44\x64\xc9\x57\x4f\xf9\x93\x27\xb1\x2e\x4d\xde\x5d\xf0\xf9\x49\x5c\x8c\x0a\x8a\x12\x4b\x37\xb0\xa1\x11\x8f\x84\x7d\x01\x57\x1e\xfb\xf9\x86\xc4\x34\x80\xbe\x17\x86\xa6\x30\x46\xce\xce\x4c\x74\x41\xe7\x2e\xb9\xa0\xf3\xc4\xb6\x41\x3b\x10\xb9\x66\x09\x05\xc3\xcf\xcc\x41\x03\x14\x30\x36\x7e\x4f\xa5\x43\xf6\xa5\xa6\x8f\xb1\xcd\x4c\xef\xec\x7b\x4d\x50\x23\xc8\xd8\xbe\x46\xfd\x48\x18\x81\x6f\xec\x5f\x2f\x09\x51\xcb\x36\x9e\x8f\x66\xc6\xb5\x63\x00\x8a\x36\xd1\x4c\x4d\x33\x4c\x24\x55\x18\xa2\xd7\xd8\x47\xa6\xc1\x10\xe7\x98\x2c\x99\x91\x58\x45\x55\xe6\x41\xc2\xad\x58\x5a\xae\x62\x02\x2e\x11\x37\x0d\x51\xb1\x61\xc1\x05\x26\xc1\x3f\x55\x69\xd3\x02\x8d\x0a\xde\x8a\xb5\x40\x41\x18\x17\xec\xc4\xa4\x51\x26\x1a\x25\xaa\xde\x2d\x16\xf6\x8b\x56\x82\x71\x3d\x79\xe1\x56\x32\x37\x81\xa7\xc5\x0d\xf0\x35\x0f\x9e\xba\xae\xf7\xcc\x9b\x21\xc8\x90\x47\xfd\xd5\x1b\x8f\x7a\x6b\x85\x52\x64\xdd\xdf\x1b\xc6\x49\x0e\x5d\x60\x32\x73\x2b\xf4\x72\x98\x53\x6d\xbe\x05\x98\xb9\xad\xe8\x18\xe0\x82\x93\x2c\xb0\xcd\x60\x9a\x15\x9b\xb5\xf6\xb0\xa4\x13\x73\x1b\xbb\xc5\xe1\xda\xdb\x98\x49\x2d\x3c\xa1\x54\x58\x2d\xed\x63\x3a\x30\x6b\x27\x6d\xf2\x78\xd5\x99\xb3\x07\x14\xf3\x75\xc4\xf2\xf4\x44\xcd\x3e\x89\x3d\x4a\xd6\xb4\x31\xc0\x45\x34\x07\xbc\xde\xb4\x88\x3b\x73\xea\xd4\x1b\x72\x79\x98\xba\x65\x78\xc9\x42\x81\x6c\x13\x62\x6e\x1a\xe7\x86\x05\x59\x28\xf8\xd7\x06\x5d\xc7\x82\x7e\x44\x7c\x8f\x9b\x17\x86\x31\xb7\xe0\x7f\x22\x4c\x24\xc8\x3e\x7b\x26\xab\xc6\xef\x70\x30\x33\x8c\x5d\xce\x4a\x59\x22\xfe\xcf\xa8\x72\x06\x28\x5d\x18\x31\x7e\x7f\x1f\x46\x4a\xa1\x28\x19\xe3\x47\xe1\x13\xe3\xfc\xdc\x78\x92\x3c\x16\x50\x3b\x90\x31\xdc\x2a\xb0\x33\x8b\xe2\xed\x5b\xe7\xec\x2c\x65\xd2\x44\xbe\x39\xf3\x67\xd9\x1f\xb3\x00\x09\x15\xf9\xcb\xdb\x57\x2f\xa2\xf5\x26\x22\x88\x70\xcb\xac\x26\xd4\x26\xda\x98\x82\x11\x63\x32\x54\x91\x58\xa8\x61\x12\x4b\x11\xc1\x2e\x7a\x86\x0b\x1a\xc8\xc2\x09\x77\x57\x2c\x3b\x1f\x88\x81\x61\x00\x52\x2e\xdb\xab\x2c\xdb\xcb\x96\xed\xcd\x67\xff\xfb\xdd\xcf\x3f\x41\xc6\x29\x26\x4b\xbc\xb8\x05\xb4\x7e\xca\x80\xd0\x35\x0c\xc1\x09\xcf\x2a\xac\xe8\x19\x17\xa6\x25\xd5\x6d\x7f\xe3\x94\xfd\x3c\xbf\x10\xa1\x53\x3b\x3c\xea\x28\xc1\xdf\xd9\x12\xfc\xfb\x16\x75\x70\x00\x3a\x6b\xcc\x18\x26\xcb\x8e\xb0\x1d\x7c\x44\x38\xa2\x86\x25\xea\x0b\x3f\xb2\x3e\xd1\xc7\xd4\x93\x44\xcc\x0b\x0a\xc2\xb9\xb5\x03\x89\x83\xe1\xf1\xc6\xe0\x62\xfe\xf0\x31\xb8\x8b\x17\xc2\xa6\x0d\x68\xba\x06\xb8\x90\x74\xbe\xdc\xe2\x50\xfa\x42\x2c\x80\xe6\x52\x98\x37\x5a\x68\x7e\x14\xd1\x00\x13\xe5\x44\xfa\x28\x0f\x6c\xb6\xa6\xbd\x4e\xd5\xb2\xa9\x66\xdd\x3d\xc0\x60\x7a\x34\xbf\x65\xda\xf1\x73\x12\x05\x88\xd5\xfb\x2f\x6b\x84\x66\x22\x57\xed\xfd\x0b\x2d\xe9\x4c\x53\x76\x58\x18\xaf\xae\x68\xb2\xba\x8a\x0a\x72\x93\xa9\xd5\xd5\x9e\x75\x40\xb4\x77\x1d\x50\x6b\xb7\xb3\x66\xae\x08\xfc\x83\xb8\x21\x3f\xa2\x9f\x64\x34\x7f\xc0\x24\x78\x1e\x86\x75\xaa\x21\x3b\x9c\x1e\xf7\xc2\x68\x79\x9e\x0a\x08\x66\x34\x63\x8c\x09\x47\xa4\xbc\x4e\x39\x7c\x1a\x14\x76\x1c\xf4\xd3\x4c\xf5\x07\x6e\x38\xec\xdf\xac\xf8\x93\x6d\x47\x3c\xee\xb4\x26\x04\xf9\x3c\x25\xfd\x9e\x89\xfd\xb9\x37\x26\x2a\xfb\xf6\xe0\x2d\x0a\x7a\x28\x0d\xf6\x7b\xc2\x69\xec\x3b\x3f\x6c\xab\x62\xdf\x56\x41\x65\x3f\x12\xff\xff\xa1\x3b\x06\x75\x3d\x7b\xc8\x26\xc6\xa7\xee\xd9\x27\x74\x05\x66\x64\x4a\x85\x43\x90\x34\xfa\x57\x6b\xb8\x29\x5d\xd7\x70\xc8\xa3\x5f\x36\x1b\x44\x5f\x78\x0c\x99\x96\x74\x27\xbd\xf9\xf9\xdd\xfb\xb3\xb3\x87\x38\x82\x3f\xaa\xbb\xfb\xd4\x2a\x49\xd5\x2a\x01\x91\xcb\x0a\xfe\xcb\xb0\xd6\x7f\xc9\x2a\xfd\x97\x95\x3e\xc7\xa2\xdb\xef\x50\x97\x61\x93\x57\x90\xe6\xd4\x38\x7d\xa8\x57\xb0\xb6\x9a\xdd\x5e\x73\xe0\x2b\xdb\x3e\x49\x38\x25\xdd\x44\x69\x52\xdf\x57\xd7\x0f\xd6\xdb\x4a\x91\x62\xf6\x43\x14\x06\x88\x56\xbd\x92\xce\x1b\xa1\xdd\x34\x7d\xde\x47\xff\x5b\x32\xc7\xf3\xff\x78\x1f\xfe\xe9\xb1\x55\x45\x99\x2b\x74\xfb\x3e\x7a\x4e\xa9\x77\x5b\xf1\x92\xa2\x75\x74\x8d\xba\x62\x16\x57\xd9\x0a\x02\x97\x47\x8f\x64\xa8\xb3\x0d\x40\x04\x3c\xb0\xcd\x58\x08\xfe\xd7\x6d\x21\x48\x27\x49\xf0\xf5\xfb\x31\xf7\x3a\x0a\x7f\xa3\xd5\x8c\x34\xcb\x2f\xea\xee\x92\xb5\x76\x85\xde\x30\xd4\x4b\xb1\xca\x56\x3e\x46\xd1\xcb\x9f\x17\x26\xb2\x9e\xa1\xc2\x4a\xdd\x44\xc2\xfe\x05\xca\x79\x41\x6b\x5c\x92\x1e\x8f\x2e\x0d\x0b\xd4\x19\x59\x8f\x6f\x03\x09\x36\x37\x6d\x10\xa6\xf8\xca\x7a\x41\x60\xfa\x42\x21\x18\x57\xe8\x96\x19\x40\x4c\x12\xab\xca\x28\xfa\x02\x56\x5b\x5d\x8f\x1f\x35\xaa\xa4\xdc\x88\x0e\x1d\xc1\xa9\x34\xb7\x80\xdf\x26\xd8\x24\x3a\x38\xd8\xa4\xde\x92\x2c\x77\x8b\x1e\xdc\x2d\xba\xbf\x5b\x75\xe6\x1b\x8d\xf5\xbb\xe7\xee\xaf\x9f\x55\xd6\x9f\xfa\x4b\x48\xda\x79\x56\xee\xfc\xd9\x99\xe9\x41\x8a\xfc\x2d\x65\xc8\xcd\xb0\xdd\x5e\x22\x54\xd4\x03\x3c\xab\xc9\xfd\xd8\x29\xfb\x11\x6b\xdc\x88\xe2\xab\x8f\xcc\x7e\xc6\xc1\x5a\xef\x87\x48\xea\x3f\x2d\x38\xe6\x56\x1e\x33\xd5\x7c\x6a\x76\x8d\x13\x45\x6b\xaa\xdc\xe2\x61\x95\x8f\xaf\x6e\x00\x72\xde\x72\x52\xf2\x96\x4b\xa1\x1b\xbf\xf6\x4d\x22\xf7\xdc\x73\x66\x5f\x28\x38\x88\x00\x5c\xb0\x62\x72\x4e\x7e\x2b\x86\x49\x37\xea\x2d\x40\x76\x56\x93\x8d\x98\xb8\xfb\x85\x8d\x48\x0b\x36\xe2\xb6\xd6\x46\xa4\xf5\x7b\xdc\xe1\x2c\xdc\xbf\xc7\x1d\x16\x30\xc1\xed\xf7\xb8\x85\xcd\x18\xee\xb5\x19\x4d\x1b\xb0\x94\x0f\xc3\x0b\x7b\x6e\x35\x36\x17\x5b\x91\xe1\x3e\x2b\x72\x4f\xaf\x6b\xad\xc8\x10\xd0\x47\xb1\x22\x01\x75\x0d\xe3\xd1\x4c\xc9\x54\x45\x0a\xdd\x18\x2d\x4c\xea\x12\x78\x75\x0d\x7f\x15\xd6\x84\xf5\x4c\xe9\x41\xc9\xd0\xa2\x17\x86\xd6\x8f\x86\x05\xd1\x07\xe4\x6f\x39\x32\xa9\x35\x13\x82\x60\xf7\x88\x31\x3c\x9a\x80\x1e\x54\xbf\x4f\xf6\x9a\xc2\xde\x61\x11\x3c\x4d\x46\x32\x89\x82\x8f\xf6\xf2\x56\xbb\xb7\x54\xcd\x07\x1b\xa0\xc7\xb3\x41\x7f\x44\xdb\xe7\x15\xa6\xa2\x30\x12\xd1\x45\xba\x1c\x9c\xab\xd2\xe9\x6f\x17\xc1\x9f\xa2\x00\x59\xa0\xc1\x70\x3d\xd0\x05\x27\x16\x72\x94\x78\xe1\xf9\x16\x37\xb9\xd6\x3f\xb7\x2d\x57\xec\xda\x7e\xff\x5b\x83\xce\x0c\xb3\xba\x03\x6c\x1f\xac\x33\xc3\x4a\x9d\x19\x26\x38\xb8\x91\xc9\x2d\x90\x6e\x8f\x87\x6e\xc9\x73\xb2\xb5\x00\x33\xc3\x82\x23\xc0\x2b\xee\x93\xa7\x23\x6f\x59\x20\xb4\xac\x66\xf5\x99\x71\xb1\x78\x7b\x5c\x2c\xdb\x07\xbb\x58\xb6\xa0\x21\xb0\x6b\x0b\x22\x13\x5b\x8f\xe1\x29\xd9\x3e\xdc\x53\xd2\x24\x62\xf5\x72\xea\x63\xa5\x6c\x52\xcd\x27\xdf\x48\xfb\x54\xd3\x5d\x63\xf0\x15\xcd\xf8\x15\xf2\x42\xbe\xca\x8c\xd0\x9e\xf9\x5e\x6f\x60\xc7\x31\xdf\x15\xc6\x7a\xd2\xf0\x45\x6f\xfe\xc4\x38\x37\x9e\xf0\x8b\xfe\xdc\x75\x8b\x0d\xb7\xdf\x23\xac\x70\x66\xd2\xc7\x72\x66\xee\x77\x48\xde\x09\x6d\xc0\x66\x78\xf7\x19\xc2\x15\x3f\x6e\xba\x31\xf6\xc9\xf6\xec\x92\xca\x1f\xdd\xed\xf6\x99\xf6\xbb\x1f\x7f\x0e\x69\x92\xb4\xd0\x98\x9f\x7b\x76\xc7\x3d\x6b\x7b\xdc\x67\xef\x5e\x91\x9c\x7f\xca\x33\xea\x9a\x58\xae\x53\xdd\x5a\xaf\x83\x50\x87\x15\x9b\x3f\x20\x12\x16\x1d\xae\xb1\x60\x45\xed\x7a\x78\xbd\x83\x2c\x58\x7c\x11\xcd\x5d\x0f\xe0\x46\x42\x94\x4e\xe6\xe4\x76\xb3\xb6\xd6\xe3\xaf\x69\x0e\x3d\x6f\xb0\xdf\xe0\x08\xb3\x7b\x3a\x9f\x2b\x26\xbd\xc9\xb8\xf8\x08\x91\x2a\xa3\xd2\xbf\xe0\x36\xcf\x9e\x68\xed\xcd\xa6\x4e\x80\x52\xc4\xa2\xf0\x5a\xee\x8a\xa8\x88\xed\x30\xf2\x82\x2e\x26\x98\x63\x2f\xc4\x7f\x20\x9a\x07\x57\xac\x7b\x8e\xc8\x35\xa6\x11\x11\xe3\xfc\x38\x36\x8a\x72\xdc\xa8\xf5\xfa\xf3\x54\x94\x27\x02\x70\x2d\xcb\xbc\xa1\x68\x81\x3f\xcc\x12\x07\x3a\xcc\x3e\x06\x9b\x28\xf8\xb1\x1a\xac\xf0\x06\xbc\xd5\x48\xcf\x12\x49\xbb\xb3\x9e\xe6\xdd\x87\x21\xa8\x6e\x25\x2b\xa7\xc3\x4a\x62\xfb\xb1\xc3\x4f\x1e\x59\xed\x2e\x70\xc8\x05\x79\x53\xf2\x67\x09\xf6\x51\x7a\x42\x91\x2b\x71\x30\x26\xc4\xe2\xde\xf2\x27\x6f\x8d\x66\xc6\x22\xa2\x6b\x03\xf8\xa1\xc7\x98\x78\xc0\x66\x17\x86\xea\x4e\xf7\xd2\xa3\xc6\x1c\x44\xc4\x5f\x79\x64\x89\xb2\x31\x37\x75\x3c\x94\x43\x4b\xc0\x76\x97\x34\xda\x6e\x3e\x2b\x62\x39\x4c\x72\xbd\x78\x38\x2e\x9b\x4d\xf7\x1a\xa3\x9b\xaa\xc3\x0b\x97\x61\xe4\x5f\x75\x59\x18\xf1\xa2\x9a\xcf\xb8\x35\x62\x6d\x27\xb7\x02\x21\x66\xf2\xaf\xd0\x43\x19\x7f\x81\x0d\x88\xab\x9f\x6b\x6f\x81\xf5\x94\x7f\x83\xb2\x9e\x03\x72\xc1\xe7\x2e\xba\xe0\xf3\xc4\xbb\x1a\x4f\x74\x55\xf1\x82\x46\x6b\x13\x59\x0f\x73\x6b\x50\x37\x88\x7c\x29\x95\x61\xfc\xe5\x65\x88\xc4\x1f\x10\xba\xa5\x78\xab\x72\xe8\xac\x5d\x19\xb8\x68\x67\x03\x17\xed\xf9\xec\x62\x6e\xe5\x57\xb7\xa9\x7b\x82\xa3\xf5\x26\xf4\x38\xea\x1a\x4f\xd0\xce\xca\x7a\x20\x6a\x86\x3a\x99\x98\xe0\x4e\x08\x24\x4c\x96\xb3\x53\x27\xcf\xc9\xc9\xc8\xcd\x41\x80\x83\xb7\xc8\x47\xf8\x5a\x46\x4a\xb1\x2c\x0b\x08\xf4\x85\x58\x62\x6e\xd1\x19\x28\x2b\x33\xd4\xea\xbc\xf8\x4e\xb7\x69\x58\xcf\xd8\x13\xd7\xe8\xc4\x3f\x67\x26\x72\x29\x94\x05\x5f\x63\xc6\x2d\xa8\xf6\x79\xb5\xfa\x43\x80\x98\xa1\x79\x91\x14\x9e\x5b\x96\x75\xc2\xce\xce\x4c\x9e\x2f\xe4\x05\x41\xac\x30\x65\x09\x16\xaf\x30\x3a\x32\x26\x62\x27\xd0\x79\x45\x18\xa2\xf1\x20\x65\xf1\x51\x67\x27\xf3\xf8\x9a\xaa\xcc\xf7\xca\x1e\xa8\x28\xa4\x89\x50\x47\x82\x27\x29\x86\x27\xfc\xec\xac\x05\x92\xbc\xd0\xe5\xe6\x79\x76\xe9\x31\xec\x77\x03\x1a\x6d\x82\xe8\xa6\xf2\xa8\x50\x1e\x62\x4f\xd9\x8f\x8e\x45\xac\x2d\xa0\x79\xce\x00\x77\x79\x83\x6d\x89\x2a\x23\xd6\x13\xe5\x71\x28\xfa\x42\x8d\x72\x44\x78\x17\xa9\xb1\xfa\x18\x72\x94\xea\xfa\xf3\x90\xe7\x31\xc8\xf2\x67\x20\x07\xa7\x78\xb9\xcc\xdb\x10\x07\x93\x23\xae\xe3\x28\xc9\x91\xe8\xe1\x06\x2d\x5d\x53\xe8\x18\x71\xd6\x31\xce\x7f\x46\xf3\xd1\x8f\x02\xd4\x45\x01\xe6\xd1\xe7\xc5\x6b\x1d\x05\x68\x66\x64\x1c\x45\xe7\xff\x61\x11\x31\x40\x44\xae\xd0\xed\x76\x73\x30\x16\x64\x81\xe9\x5a\x56\xd4\x0d\xb0\x18\xac\x43\x6d\xc8\x07\xd9\x72\xc4\x2d\x5a\x03\x0c\x91\xe0\xb9\x7c\x92\x5d\x87\xc7\x06\xb2\x18\x39\x63\x1e\x1f\xe5\x2a\xb8\x68\x3e\x93\xd1\x6a\x16\x0d\x8f\xc4\x6e\x54\xe6\xc3\x41\xf6\x60\xc2\x8f\xdf\x61\x22\x6c\x16\xc1\x96\x7a\x30\xa4\xd5\x05\xf4\x8f\x9a\x28\x28\xfd\xd6\xb0\x00\xa2\x34\xaa\x8b\x95\x92\xef\x0c\x2b\xcf\xfc\x37\x98\xaf\xba\xd9\x71\x37\xe6\x40\x9f\xa3\x9e\x19\xcf\x29\xea\xdc\x46\xdb\x0e\xdb\x52\xf4\xcc\x00\x69\x8f\x84\xe1\xba\x41\x74\xed\x09\x7c\xc4\x0f\xb1\xb8\x2e\x99\x74\x7b\xf7\xcc\x95\x97\xcb\x23\x3e\xca\x99\xeb\xaa\xeb\x2c\x35\xe7\x52\x2a\x80\x53\xc7\xda\xc1\x4b\x2c\x48\xb7\xc2\x71\x15\x7a\xd7\xdb\x25\xa5\x37\xba\xa8\x5b\x34\x1a\xd5\x7e\x17\x57\x8c\x90\xd9\xb4\x94\xa7\x04\xd5\x5e\x65\xa6\x9f\xc4\xe5\xd2\x07\xe2\x72\x7d\x8c\xd0\xb1\x4e\x8a\x9d\xcc\x70\x25\x20\x16\x28\xbd\x4e\x38\x03\xd0\xf8\xc8\x2b\x66\x6f\xd1\x12\x33\x8e\x28\x0a\x4c\x43\xcf\xb5\x78\x77\xbf\x06\x7d\xdb\x9a\x95\xac\xdd\x78\xe4\x93\xdd\xff\x22\x84\x1e\x4c\xc3\xb2\x20\x5f\x21\x92\xdb\xa7\xe3\x67\x67\x28\x29\x68\xed\x2c\xe8\x7b\xdc\x5f\x99\x45\x82\xc5\xb1\x48\xa8\x64\x6c\x6b\x96\x4a\x5a\x4f\x0c\xea\x8c\xc7\x2c\x37\x66\xad\x84\xd0\xe6\xb6\x7b\xb9\xe5\xbc\xfa\xf4\xbd\x1f\x62\xf1\x6f\x73\x19\x79\x34\xa8\x2b\x77\x8c\xda\x31\x3d\xf9\xd3\xdd\x60\xff\xaa\x68\x1b\x65\x1c\xfd\xf8\x03\x26\xec\xdc\x0f\xb1\x7f\xd5\x8d\xb6\x9c\xe1\xa0\x78\x8a\xe6\x53\xe8\x9a\x8c\xb8\x4a\xb4\xe9\x36\x34\x1e\xaa\x31\xf5\x68\x46\x61\x88\xfc\xf2\x09\xa6\xe2\xdb\xbd\x25\x8f\x71\xb4\x15\x12\xc4\xe3\xf8\x1a\x75\x99\x4f\xa3\x30\x94\xa7\xa1\x0e\xa4\x42\xb9\x82\x63\x24\xc6\x02\xa1\xe0\xd2\xf3\xaf\x2a\x6d\x8e\xe2\x46\xd5\xef\xcc\xeb\x2e\x3c\x9f\x47\xf4\xb6\x85\x45\x02\xc8\x03\x6d\x12\xea\x9a\x36\xe0\xa9\xf3\xd4\x6a\x56\xe8\x24\x9d\x21\x37\x1e\xe6\x35\x6a\x98\xe3\x35\x8a\xb6\xbc\x52\x11\xc7\x84\x30\xe6\x80\x53\x8f\x30\x2c\xd0\x98\x19\x46\xe6\xd7\x8b\xb8\xd0\xcc\x28\x90\x4d\xc8\x02\x03\x30\xee\x71\x34\x33\x28\xf2\x82\x5b\x23\xab\xa4\xed\x87\x2a\x69\xb6\xf5\x7d\xc4\x58\x12\x07\x27\x7f\x95\xf5\xb0\x50\x05\x1a\x46\x7e\xcf\x4a\x7d\x20\xab\x7f\x9f\xa2\x54\xa7\x93\x8b\x0a\x46\xd0\x31\x55\x6e\x80\x94\x00\x2a\x08\x63\x58\x27\xdc\xb4\x8b\xea\x2e\x61\xcc\x54\xc5\xa2\x6c\x71\xa9\xb9\x45\xb9\x5d\x6d\x49\x82\x6e\x3a\x6f\x68\xb4\xc6\x0c\xe5\x13\x2a\x98\x06\x34\x9e\x10\x80\xa0\xf6\x57\x58\x17\xf6\x1c\x7a\x41\xf0\xf2\x1a\x11\xfe\x5a\x68\x79\x82\xa8\x99\x69\x0c\x91\xc0\x00\x5c\xe8\xc6\x72\x63\xb5\xfd\x33\x8c\xac\x69\x81\x80\x21\x87\xda\x00\x7a\xac\x65\x38\x4c\x3c\x3c\xb3\x3d\x26\x55\x5c\x4c\x83\x1a\x69\xc4\x70\x76\x88\x4c\x51\x9b\x32\x27\x5b\xd4\x15\xdb\x96\x35\x35\xb5\x10\x01\xa1\xc7\x56\xdd\xd8\x58\xa9\xd1\xfb\x12\xa8\xbe\xd4\x51\x8a\x3e\x8a\x10\x47\x1f\xf8\x97\x5d\x14\x63\x14\x06\x0c\xf1\xe2\xc2\xb8\xd0\xb7\x07\xaf\x8e\x57\x1e\x5b\x61\x3f\xa2\x9b\xae\x7a\xfd\x78\x58\xea\xec\x23\xb5\x5b\x01\x24\x7d\x75\x19\x05\xb7\xcd\x32\xfc\x0e\xb3\xef\xb5\x7f\xe9\x57\xcc\xb0\x1c\x67\x67\xbf\xf7\x3a\xf5\x2b\x6b\xb7\xb2\x99\xee\x0d\x48\xa9\x7e\x8d\x28\xc7\xbe\x17\x76\xd7\x88\x6c\x0d\x21\x0d\x65\x59\x36\xbb\x8b\x5d\x59\xe5\x29\x96\x09\xf0\xf5\xe3\x3d\x0b\xc3\xfa\xd6\x3e\x3b\x2b\x4e\xc1\x52\x87\x0d\x70\x5a\xac\xa3\x0c\x63\x59\x3b\x50\x1c\x4b\x64\xdd\x21\xc8\x3d\xba\x44\x1c\xfa\x2b\xe4\x5f\xa1\xe0\x99\x99\x45\xcf\x0b\x82\x06\xdc\x00\x81\x8c\xdf\x86\x08\xae\x10\x5e\xae\xb8\x58\x34\x65\x7f\xde\x60\x12\x44\x37\x10\x13\x82\xe8\x3f\xe5\xa3\x27\xc6\xe6\x83\x61\xcd\xcc\x83\xa9\xd8\xd0\x92\x3c\x0a\xb1\x6b\xc3\x9b\x32\xce\x49\xa2\xdb\x8d\x8f\xb3\x7f\xa9\xed\xbf\x8a\xbe\xcc\x05\x06\x15\x59\x88\xab\x31\x40\x41\x97\x22\x16\x6d\x69\x31\x98\x2f\xb6\x24\xd7\x9b\x2d\x47\x41\x57\x92\xea\x33\xac\x19\x6a\xd1\xcb\x76\x74\x0e\x3c\xce\x29\xbe\xdc\xf2\xac\xfb\x23\xee\xa2\xfc\x3b\xcb\xdb\x62\xc6\x92\xe2\xe0\x6d\x74\xf3\x92\x04\x86\x05\xb6\x44\x55\x7c\xab\x0d\xae\x18\x4b\xa8\xc4\x96\x69\xc8\x16\x19\xfc\xff\x21\xcf\x5f\xc1\x77\x7a\x8c\xcb\xe1\x71\xe9\xa4\x41\xc0\xd0\x60\x71\xc0\x8a\xe1\x53\x2c\xb9\x4f\xe6\x87\xb9\xbf\x37\x6e\x3c\x4a\xf4\x41\x36\xbe\x93\xf9\xb0\x3e\xaa\x07\xba\x95\x8d\x27\xd3\xba\xa4\xc7\xe3\x0a\xbd\xd9\x59\x20\x45\xbd\xd0\x98\x69\xfc\x12\x13\xe2\x85\x6c\x2e\xd3\x42\x6c\x65\xf5\x4f\x72\x46\x50\x2a\x20\xe2\x30\x3f\xeb\xec\x0c\x3d\x79\x02\x8a\xaf\x75\xbd\x39\x39\x24\xe0\xee\x74\x6f\x66\x86\xb7\xe5\x51\xe7\xbc\xc3\x36\x1e\xe9\x18\x4f\x4c\xf4\xa4\xe4\x88\x48\x86\x29\xa9\xe5\xfe\xde\xd6\xfb\x6c\x4d\x93\x34\x39\x5b\xfb\x67\xf4\x1d\xe3\xeb\xdb\xae\x1f\x05\x68\x8d\xa5\x11\x95\x9b\xb7\xf9\x77\x7b\x4a\x1d\xa3\xed\x13\x62\xc6\x1f\xc7\x03\x50\x01\x1e\x7a\xb7\xd1\x96\xb3\xf3\x0d\xa2\x3e\x22\xdc\x5b\x22\xf1\x76\xbb\x26\xb5\xe2\xb0\xc2\xc7\x22\x15\x0f\x45\x0c\xff\x21\x3d\x70\x7b\xd7\xa2\x75\x41\x93\x49\x54\x05\x3e\x82\xa8\x8a\xc8\xcd\x9f\xd0\xda\x1b\x69\x1d\x56\x78\x84\x02\x7c\x6d\xec\x95\xe7\x4a\x3f\xcf\x86\xb6\x0d\x7c\x14\x86\xca\x0a\x98\x39\x4e\x3f\x95\xf4\x34\x2b\xe9\x11\x7f\x27\x4b\x16\x96\xcb\x45\xde\x99\x3f\xd8\x05\xad\x98\xc2\xbd\xe8\x0d\x41\xfc\xff\x7c\xb7\x2f\xfc\x42\x55\x2c\x3a\xff\x5a\xf2\x98\x5c\xbb\x5e\x18\xe2\x41\x57\x71\x9d\x31\x77\xf3\x59\xd2\x4a\xf6\x18\x47\xeb\xd4\xaa\x2b\x89\xdb\x98\x51\x2b\xde\x24\x24\x93\x16\x5c\x4c\x9d\x92\x2a\x50\x54\xce\x69\x00\xc5\x24\x77\x9a\xfe\x65\x09\xaf\x2a\xdd\xed\x2c\x20\x19\x1e\x55\x04\x90\xab\x85\xbe\x32\x81\x4f\xf0\xc2\xbc\x48\xf6\x60\xb0\x19\x99\xc6\xda\xc3\xa4\xf3\x6d\x47\xb0\x80\x65\x89\x35\x70\x72\x28\x53\x34\xf4\x5d\xb4\x95\xcc\xf0\x22\xc4\x88\xf0\xb7\xc8\xe7\xa6\x05\x42\x37\x5f\xc7\xdf\x16\x51\xc4\x11\xbd\xa0\x51\x88\x5c\x43\xef\x77\xcb\xe8\xd8\xf9\xdf\x54\x9d\x80\xb9\x14\xf2\x68\xf3\x24\x84\xbe\xac\x49\x91\x03\x78\xae\xe0\x54\xee\xe1\x50\x9b\x80\x5d\x76\xa2\xb7\x92\x78\x4a\x8f\x1f\x3d\xbe\x82\x6b\xef\x83\x69\x03\xcf\xd2\x1c\xa0\x32\x6d\xbe\x12\x43\x62\xe6\x1e\xbd\x93\x5e\xb5\x37\x51\xb2\x8c\x55\x67\x45\x92\x76\x6e\x70\xc0\x57\xc0\x2f\x87\xa0\xa8\xe1\x4b\xc6\xb7\x14\xde\xbe\xfd\xd6\xb1\x9d\xfe\x6c\x70\xea\xfa\x65\x7b\x3e\x91\x52\x39\x8e\xcc\xc5\x72\x6e\xbf\x1d\x0f\x06\xb3\x7e\x43\xf1\x7e\x1f\x88\xff\x07\xc5\xb2\x83\xc9\x78\xd6\x6b\x28\x3b\xb4\xc1\xd0\x2e\x14\xfc\x66\x30\x99\xcc\x9c\x86\x82\x8e\x6d\xcf\xad\x9d\x7f\xea\x36\x52\xe5\xec\xcc\xfc\x6a\x66\x52\x1b\x0f\xc5\x26\xba\x41\xb4\xcb\x90\x90\x38\xdd\xf5\x36\xe4\x78\x13\xea\xa5\x49\x72\x9f\x42\x49\x7f\xe5\x0a\x65\x60\x0f\xab\xf8\x18\x95\x7b\x25\x56\x4d\x24\x6a\xae\xe0\x4f\x43\x8a\x7d\x11\x30\x07\x91\xe4\xa8\xc3\x60\xea\xe6\xc7\xa3\xcc\xa5\x3f\xd5\x14\xca\x22\xcc\xb6\xcb\x25\x62\xc2\x72\x8d\x36\x75\x96\xf3\xc7\x50\xab\xdc\xc0\xb1\x93\xef\xa1\xb3\xec\xe8\x11\x3f\xbf\x44\x8b\x88\x22\x3d\x8e\xec\xa1\x74\x28\x56\x73\xf4\x64\xf9\x58\x7a\xfc\x69\x08\xb1\x09\x3d\x1f\xad\x74\x16\xb1\x07\x12\x23\x5b\xc7\xf1\x13\x24\x2b\x14\x4b\xe7\x41\x0e\xa3\x4b\xb9\xaa\xa3\x27\x8f\xca\x11\xb0\x6f\xa7\xae\x15\x69\x0a\xd5\x1c\x3d\x59\x3e\xd2\x9a\x3b\x6a\x23\x8e\x7a\x01\x8e\xbe\xc0\xd1\xa9\xf2\xfe\x65\x73\x5f\xb9\x77\xd9\x25\xde\xf5\x67\xed\x27\x91\x9d\xe4\xde\xa5\x01\x92\x2e\x8b\x3e\xb4\xeb\x2d\x2b\x7b\x47\x3f\xef\xae\x54\xb6\x13\x73\x90\x41\xe6\x81\xfe\x6e\xee\x5d\x6e\x43\xef\x91\x62\xbf\x2a\xc0\x95\x6b\x96\x20\x14\xb0\x2e\x45\xd7\x5e\x88\x03\x1d\xa4\x50\x0d\x89\x03\x44\x38\xe6\xb7\xfb\xbc\xc8\x4b\x8a\x83\xca\x68\xa3\x16\x4e\xe3\x46\x67\x73\x5b\x5f\xb2\xca\x7b\x99\xf1\x28\x6f\x8f\xc0\xa3\xec\x67\xe3\x6f\x93\x9e\x23\x7d\xe2\x50\x77\x93\xb8\xf6\x53\xf2\x0d\x8f\x3b\x45\xe2\xb4\x43\xd4\xe5\x17\x64\x7e\x42\x61\x2a\xb2\xdc\xec\x8f\xfb\xfb\x53\x07\x50\x98\x3d\x7c\xee\x9e\xda\xc0\x90\x7d\x30\x30\xe9\xd0\xb3\x33\x93\xc2\xf8\x30\xba\x7b\x6a\xd7\x0b\x48\x0a\xaf\xd0\x2d\xa0\xe9\x69\xe4\x34\xc4\x27\x97\x63\x90\x9c\x9d\x21\x33\x93\xec\x08\x10\x0b\x50\xf9\x4c\x46\xf7\xee\x76\xa6\x75\x92\xe0\x19\x28\x3c\xf1\xc2\x3c\x35\x51\x07\x13\xc6\x3d\xe2\xa3\x68\xd1\xe1\x56\x26\x7b\xc0\xfb\xdb\x0d\xd2\x19\x04\x5e\x78\x84\x44\xbc\xe3\x7b\x61\xd8\xf1\x3a\x72\x1e\x76\x3c\xd6\xf1\x92\xde\x18\xca\x0d\xb9\x70\x4d\x1b\x78\x19\x47\x3d\xd8\xb8\x19\xea\x26\xa9\xaa\x54\x04\x16\x40\xda\xb1\x79\x85\x6e\x5d\xae\xbe\xae\x70\x10\x20\xe2\x9e\x3a\xea\x27\xe6\x68\xed\xea\xfb\x69\x30\x09\xd0\x07\x97\xea\xf0\x2f\xc1\xaf\x6e\xb8\x03\xeb\x9a\x91\x4c\xf3\x03\x26\x6d\xe5\x75\x98\xc0\x1e\x65\xd0\x7d\x8b\x16\x88\x22\xe2\xc7\x38\x8b\x52\x9d\x95\xc7\xc8\xdf\x78\xe7\x12\x21\xd2\x89\x8f\x6a\x33\x14\x74\xba\x1d\x75\x1e\xdc\xca\x41\x08\xfa\xa0\x34\xb1\xc2\x29\xbf\xbf\x37\x22\x39\xb0\xc6\xa9\xce\x9b\xd6\xe1\x67\x67\x46\x42\xb5\xf4\xe9\x33\x34\xe3\x3b\xd5\x53\x13\xc1\xdf\x7e\x93\x03\xf9\xdb\x6f\xf7\xf7\x9a\x31\x96\x88\xbf\x89\xc7\x56\x66\x26\xb5\xea\x6e\x26\x2a\xf2\x49\x8c\x6c\x55\xab\x67\x67\x64\x1b\x86\xa7\xae\xcb\xab\xc7\xfd\x9d\x40\xb2\x83\x3e\x6c\xa8\xca\x84\xa0\xd2\x48\x20\xcc\x57\x88\x76\x2e\x51\x47\x94\xee\x44\x34\xc3\x08\xa0\x23\x18\xc5\x78\x12\xb7\x60\x9d\xa0\x94\x29\xe3\x9c\x5f\x6a\x3d\x6f\xf2\xb3\xb3\x2c\xc7\xde\x09\xd9\xc3\xe9\x56\x08\x9b\x99\x9e\xb0\x28\x97\xd0\xc1\xc9\x26\x70\x28\x26\x77\xd8\xed\x2c\xc0\xcf\xce\x4c\xdd\x06\xcb\x11\xec\x59\xe5\x53\x49\x9b\x59\x86\xdc\x2e\xb7\x76\x26\xca\x24\xa5\x04\xbe\x89\xc0\xc5\xdd\x15\xba\x55\x1b\xad\x1e\x7f\xc5\xd1\x5a\xed\xfd\x00\xd5\xc5\xfc\x84\x8c\x73\x2d\xb0\x12\xdf\x5b\x77\x82\x5a\xae\xeb\x72\x79\x50\xf5\x07\xfd\x3a\x25\x40\x7c\x36\x3f\x1d\xf1\x4c\xb6\xb2\xef\x11\xf3\x29\xde\xf0\x88\x8a\xda\xe4\x2d\x2d\x49\xd6\x8f\xa4\xc9\x6a\x5e\xe1\xe9\x4d\x2c\xaa\x03\xec\x99\x2a\x3a\x43\x26\x93\x3d\xdb\x09\xf6\x48\xa4\x53\x68\x25\x49\x28\xe4\x33\x9d\xaf\x2d\x14\xf5\xc6\x35\x25\x87\x94\xf1\x33\xac\x0e\x27\x50\x6b\xa6\x1e\xee\xcc\xcc\x88\xb7\xe0\xe4\x0c\x01\x40\x99\xc6\x32\x52\x53\xb5\xa0\x82\x31\x65\x87\x01\x76\x1d\x34\xe8\x26\xdd\x09\x15\x55\xb1\xeb\xd8\xb6\xed\x58\x80\x3d\x71\x8d\x3f\xba\x52\x60\xcc\x3a\xc6\x13\xbc\xdb\xcd\x2d\x80\x76\xa6\x05\x56\x6e\x7e\x62\x70\x7a\x9b\x1a\x97\x7e\x18\x31\xc4\xb8\xd0\x2a\xea\xcc\x41\x12\x03\xb1\xdb\x9b\xcb\x2d\xd9\x9a\x4c\x53\xb1\x67\x36\x1f\xb9\x0a\xa1\xde\xb7\xfd\x28\xf7\x6c\x66\x8e\x33\xb4\xb3\x3b\x91\xc9\xd6\x63\x54\xb3\xf5\xa8\x62\x56\x64\x5e\xc5\x07\x6f\x34\x4a\x5b\xc9\x2d\x9c\x56\x2a\xa8\x85\x1f\xa3\x2d\x43\x32\x6c\xd4\xb2\xf0\x22\xff\x4e\x3d\x4e\x72\x39\xf9\x5b\x4a\x11\xe1\xef\x55\xbc\x96\xe2\x1f\xbc\x30\xf9\x69\x79\xe7\x45\xf5\xde\xb0\x64\x8b\xa5\xbd\x1b\xfd\x16\x70\x2b\x3e\xc9\xc2\x7e\x93\xe3\x63\x9c\xba\xa5\x76\x96\x88\x3f\x8f\xc9\x6b\x1a\x58\x56\xaa\x34\xf8\xca\x34\x38\x35\x40\xa1\x80\x05\x68\x81\x0f\x52\x9d\x8f\x9e\x12\x97\x40\x82\x3e\xf0\x77\xf8\x32\xc4\x64\xf9\x54\xe0\xec\xb8\xae\x78\x1a\x05\x48\x88\xc7\xb3\x33\xf5\x5d\x0c\x30\xe4\xd1\x6b\xb1\x66\x4a\x12\xfb\x73\x2b\x31\x58\xcc\x42\xbb\xc0\xd8\x86\x46\x7e\x7f\x71\x6b\x2e\xda\xee\x2f\xd6\x6d\x57\xea\xb9\x59\xf5\xee\x84\xc9\x5d\x49\x9a\xdb\x95\xfc\x16\x8b\x87\xcf\x68\x31\x86\xce\xbb\x8c\xae\x91\x61\xcd\x68\x45\xd4\x9b\x7e\x97\xc4\xb7\xfd\xf1\x4a\x6a\x63\x39\xdf\xf4\x35\x99\xb5\x43\xa8\xa2\xde\x92\xab\x34\xf5\x46\xe5\xd9\x59\xb2\x65\x29\x27\xaa\x95\x79\x07\xd3\x13\x46\x56\xf6\xd4\x14\x26\x4b\xb8\xd9\xb2\x95\x59\x28\x7a\x22\x2a\xcf\xde\xfc\x93\x81\x97\x10\x3f\x2f\x8a\x45\x9e\x76\x9d\x53\xd7\x8d\xce\xce\x8a\xf0\x3a\x4d\x70\x04\x1c\x6b\x57\x3e\xd8\x95\x02\xba\x3a\x19\x5b\xd5\xce\xe0\xba\xb4\x23\x28\x67\xb8\x61\x81\xa1\xfd\xf9\x37\xc8\xf3\xcc\x66\xf0\xcb\x28\xb8\x35\x40\x76\xdb\x5c\x33\x19\x29\x82\x96\xf6\xce\xc5\x5c\x26\x87\x6d\xa0\x1f\xc0\xe0\x15\x1b\xe8\xf8\xd0\x0d\x74\xac\x37\xd0\xab\x87\x85\xe8\xda\xff\x47\x6e\x92\x0f\xed\x83\x37\xdb\x77\xe0\x06\x87\xe1\x5b\x44\x02\x44\x1f\x72\x6a\x41\xf6\xda\x63\xea\x14\x29\x33\x2a\xcf\xdd\x69\x71\x27\x63\x29\x7e\x93\x2b\xc6\xb7\xc9\x82\xb1\xd4\x26\x66\x3a\x1b\x05\x0a\xee\xef\xf3\x4f\x30\x59\xde\xdf\x9b\x71\x0b\xff\x08\xf1\x7a\x8d\x68\xcf\xb4\xd4\x45\x72\x54\x58\xbb\x81\xb0\x61\x67\xf9\x84\x3c\x92\xdb\xad\x1d\x50\x14\x78\x81\xc2\x30\x17\x68\x22\xa4\xb9\xaa\x52\x90\x2b\x8e\xe1\xcb\x33\xa6\x7e\x09\x8c\x24\xd8\xa0\xb8\xa9\xae\x17\x55\x42\x96\x57\x6c\xb9\xeb\xb7\xae\xb6\x89\x64\x0e\x2b\xb5\xd2\x74\x53\xd0\x1f\xbd\x0d\xf0\x0a\x26\xa5\xca\x35\xbe\x75\x4b\x15\xca\x49\xff\x3c\xee\x9d\x3a\x99\xf4\x1a\x2d\x38\xc8\x3e\x78\x1f\x6d\xf4\xef\x2c\x97\x64\x9f\x28\xae\xb4\x80\x5f\x6e\xc1\x8f\xb6\xe4\xd1\xea\x0f\xdc\x2c\x19\x17\xae\x62\x70\x4c\xcc\xad\x06\xbf\xdc\x2e\x16\x88\x5a\x27\xdb\xae\xbb\x00\xfe\x13\xf1\x91\x02\xf9\x4f\xb2\x40\x99\x20\x83\x20\x1d\x91\xee\x56\xd1\x76\xed\x5e\xa8\xcc\xb9\xdc\xb5\x9f\xf2\x6f\x7c\xb9\xf6\x0e\xdd\xed\x13\x0e\x98\x9b\x0f\x7b\x0a\xa0\x5a\xcc\x3c\xe7\x66\x68\x59\x20\x92\x16\x57\x74\xc1\xe6\x16\xc0\xcf\x4c\x52\x26\x49\xc1\x9a\x33\xc3\x56\xd8\xc7\x86\x89\xd4\x1e\xd9\xc3\x25\x18\x68\x83\x29\x7f\x9c\x15\x03\x43\xad\x1a\xe5\x59\xdc\xfc\x8b\x2b\x74\x6b\x00\x66\x01\xef\x82\xcd\x5d\x6c\xcd\xd6\x4a\x7d\x84\x56\x06\xe5\xb4\xdb\xb9\x0c\xc3\xc2\x0c\xf2\x2e\x4c\x9c\x41\x8b\x5d\xf0\xb9\x25\x56\xab\x73\xf1\x76\x1d\x7b\x2e\xee\x42\x77\xad\x2e\xa9\x94\x14\x5d\xb9\x39\x42\x9d\x14\xc9\xb8\x92\xc7\x77\xbf\x18\xad\x62\x92\xe4\x1e\xca\xe9\x61\x80\xb0\xf8\x98\xa3\xb5\x01\x56\x7b\xa8\xad\x08\x5b\x34\x00\xb2\x40\x76\x75\xb7\xb4\xec\x9e\x75\xec\xa7\x9d\x00\xb3\x4d\xe8\xdd\xce\x3a\x24\x22\xe8\xa9\x91\x1d\x9c\x75\x2e\xe9\x73\xe8\xae\x2f\xf8\x5c\x52\xf9\xb2\x81\xca\x97\x9f\x8e\xca\x58\x2a\x93\x8d\xc9\xc0\x25\x08\x05\x7d\x15\x11\x40\x96\x91\x04\x9b\x29\xd1\x64\x62\x6b\x97\x13\x5a\xae\xb7\xcb\x1c\xb6\x90\x07\x66\xab\xd3\x05\xea\x43\x0f\xd5\x86\xa6\x0a\xda\x32\x30\xd9\x6c\xb9\x21\x53\xb7\x1b\xa1\x77\x89\x42\xfd\xdd\xd3\x7f\xf5\xd1\x63\x9d\x57\x70\xa7\x0c\x82\xc4\x28\x56\x2d\x58\x50\xde\xfa\xfc\x4e\xfa\xfc\xc5\xb2\xdf\x53\xd7\x80\xc6\xf7\x0c\x48\x74\xd3\x35\x80\x69\xc8\x3e\x1b\xe0\xee\x72\x7b\x79\x19\x22\x26\x17\xe3\xf2\xcc\x7c\xbc\x34\xbf\xc6\xe8\x66\xa6\x8e\x55\xec\xac\x13\x0e\xc5\x00\x8b\x05\x95\x2a\x4f\xac\x5d\x9b\x33\x10\x3c\x5a\x47\x4b\xea\x6d\x56\xb7\x5d\xf9\xe7\xd1\xcf\xe7\x94\x43\xdd\x3b\xce\xc8\xfe\x3b\xda\x01\x52\x58\x1d\xc4\x2b\xc4\x6f\xed\x67\x32\x3b\xe2\x2b\x21\xe9\xff\x8e\xac\x73\xc7\xb6\x67\x76\x8b\xac\x0a\x77\xd2\x34\xeb\xf7\x47\x20\xc5\x6a\x66\x83\xb5\xf7\x61\xd6\x9d\xc6\xff\x3d\x78\x0d\x87\xa9\x1f\x22\xf7\x82\x9b\x8e\x05\xb8\x09\x7b\x43\xf9\x47\x7d\x8e\xe5\x1f\xc7\xd2\x19\x3c\x25\x8f\x30\x01\xdb\xd5\x70\x5d\xa8\xff\x28\xc8\xae\x63\xcd\x77\x60\x8d\xc3\x10\x33\xe4\x47\x24\x60\x25\x2b\x35\xc0\x6a\xf5\xc7\x0c\x60\xac\xbd\x0f\x15\x11\xfd\xa5\xe3\xfe\xde\x87\xc4\x2b\x76\x41\xcc\xde\x10\x20\x0b\x10\x73\x68\xab\xbf\x63\xfd\xdb\xb1\xc5\x83\xb9\x60\x8c\xb8\x89\x52\xe3\x29\xfd\x2a\xda\xd5\xe7\x35\x25\xa6\xf2\x7a\xef\x0c\xb4\x94\x07\x30\xa9\xf8\xfe\xfe\x42\x59\xb3\x42\x26\xbc\xf4\xb2\x09\x06\xb8\x75\x97\x02\x7e\x9b\x3b\xf2\x20\x11\xc9\x46\x1a\xea\x67\x20\x2d\x20\xf8\x9a\x43\xf2\x6d\x7f\x64\xc7\x86\x32\xd1\x42\x0c\x84\x6e\x7f\x64\x9f\x73\x48\x4e\xc4\x1a\x53\x9f\xc3\xa8\x64\x35\x5b\x1e\xe8\xe0\xae\x4b\xbb\xce\xfd\xbd\xd4\xec\xd4\x23\x41\xb4\x36\xad\x6f\xc2\x5d\xe2\xe5\x2b\xde\x0c\x92\x7a\x84\xef\x68\x24\xcf\xdc\xf6\x47\xf6\xdf\xe9\x79\xd2\x83\xdb\xde\x2c\xed\xea\x79\x19\xb7\xbf\x77\x9d\x91\x0d\x84\xc8\x99\x29\xc9\x93\x0c\x45\xa6\x1c\x60\x68\x29\x0f\x9c\x71\xa8\xbf\xe9\xf3\x12\x4d\x53\xfa\x16\xa3\x30\x38\x34\xbf\x50\xa6\xd0\x11\xed\x43\x12\x2e\x2c\xbe\xf2\x05\xb0\x8f\xbe\x4b\x16\x37\x94\x88\x9a\x56\x5d\x3a\xf7\xfc\x90\x9d\x57\x85\xb5\xed\x2f\x81\x02\xfc\x08\xc3\xb0\xc7\x97\xd6\xbe\xf3\xb2\x2b\x55\x7b\x74\xd2\xa5\x25\x0f\x8e\x66\x6a\xd0\x0b\x28\xa1\x74\x45\xf1\x32\x74\x37\x03\xf1\x98\xa9\x56\xbf\xfa\x7b\x2e\x2a\xb4\x57\x89\xa7\x94\xdf\x5c\xd4\x87\x11\xcb\x59\x2b\x19\x2f\x22\x43\x5c\x9a\x0a\xc9\x98\x9a\x48\x6e\xe0\x80\xbc\x65\x96\x2e\x35\x33\xab\x4e\x90\xd1\x75\x66\x28\xaf\xed\x07\x77\xa2\xf0\x2c\xdf\xc0\xce\xca\x9e\x54\xad\x38\x2b\x1a\x3b\x22\x95\x69\x73\x7f\xaf\xf7\xb9\xdf\x6e\x43\xa1\xaf\xf4\xae\xc2\x2e\x0e\x7e\xe7\x50\xbc\xd6\xb6\xd4\xfb\xdb\x0d\x32\x66\x79\x37\x56\xda\x32\x50\xb0\x40\x7b\x35\xb3\x51\xe8\xba\xf6\x59\xe9\x10\x2c\x47\x6b\xa8\x5b\x8e\x8b\xed\x33\x7d\xca\x3c\xae\xed\xf2\xbd\x29\x57\x54\x8e\x06\xa9\x4b\xaa\xcf\x03\x6d\xfd\x05\xa6\xac\x9c\x3f\xf8\xa3\x6e\x38\xa8\x63\x95\x4c\x42\x16\x69\x55\xaa\x7b\x3b\x66\x77\x82\x33\x67\x77\x1e\x9b\x19\xe2\x9b\xb1\x03\x4c\xfd\x8a\x8f\xce\x51\x24\xe3\xb5\xe4\x46\x0e\x10\x20\x3f\xc8\x17\x65\x03\x40\x2e\x89\x5b\xd8\x1c\x0a\x2e\xb1\x3a\x0c\x69\xac\x10\x6f\xa9\xf3\x40\x1a\xca\xc0\x37\xe6\xa5\x7b\x42\xb4\xfe\x94\x96\xd2\xcc\xd4\x77\xef\x1b\xcf\xc3\xd0\x28\x3a\x4a\x2c\xeb\x89\xd1\x31\x8d\x27\x55\x1a\x5c\x97\xcb\x69\xd8\x78\xed\x3d\x43\x5a\xf7\x7f\x77\x6b\x2a\xae\x03\xdc\xd2\xb3\x7e\x27\x2b\x91\xb6\xbe\xef\x85\xe8\x9d\xbc\x76\xc9\xb4\x9e\x18\x56\xcc\xbd\x5a\xe9\xa8\x1a\x0a\xb7\xcd\xea\xbb\xa1\x20\x03\xd4\x4d\xf6\x87\xc8\x33\xc3\x98\x11\x10\xba\x5c\x5e\x6c\x08\x58\xfa\x2a\x14\xaf\x42\x80\xa5\xf3\x2d\xb3\xba\x88\x77\x30\xcd\xae\x53\x3c\xf5\xa9\x92\x59\xe4\xc1\x13\x27\x2b\xb6\xce\xce\xca\x45\x5e\x7d\xbf\xa7\xc0\xfd\xbd\x61\x9c\xba\x2e\x8b\xad\x2a\x5d\x46\x92\xc5\x12\x2f\xb2\x13\x9e\x21\x12\xbc\x08\x23\x82\xca\x32\x48\xbc\x12\x4b\x93\x88\x20\x03\xa0\x7d\xa7\xac\x73\xd3\x2c\xbd\xac\xf8\x30\x6d\x98\x29\xf7\x75\xe8\xc4\x62\x87\x1a\x34\xe3\x3e\xed\x57\xa7\x37\xd3\x6b\x87\xff\xd2\x8f\x8f\xac\x1f\x33\x62\x25\x55\x95\x19\xad\x79\xa2\x76\x78\x33\x53\x44\x15\x35\xde\xc9\xe3\xea\x6a\x52\x02\x5c\x01\xf0\x3d\x62\x1c\x13\x39\x82\x1a\x2a\x72\xd5\x3b\x06\x17\x98\x04\x42\x06\xa9\x24\x71\xcc\x92\xe7\xd5\xaa\x5e\x61\xeb\x24\xba\xbf\x37\x23\xf7\x4e\xee\x69\xb2\x1d\xd0\x70\xee\x45\x94\x78\xfa\xf5\x23\xcb\x02\xde\xfd\xbd\xe9\x69\x58\x9c\x81\xf5\x2a\x60\x5b\x2a\x7e\x90\x22\x3a\x8b\x40\x01\xa9\x99\x57\xb0\x0b\xe4\x4c\xfe\x09\xdd\xbc\x96\x42\xbc\xe2\x4c\xfb\x2f\x0c\xc9\xa8\x05\xbe\xa5\xa8\xf3\x42\x72\x7b\xe7\x9d\x3a\x6e\xae\xc3\x38\x3a\x7f\x33\x9e\xa0\x27\xc6\xdf\x0c\x79\xf1\x38\xc1\xbf\x6f\x51\xd5\xf5\x90\x35\x6a\xa7\x40\x3f\x54\x95\xd8\x42\xe9\x60\xb5\x44\x4c\x0d\x16\x49\x03\x02\x94\xdd\x82\x12\x99\x6f\x25\x62\x1b\x60\xfd\xe5\x84\xb9\x42\x70\xab\x4d\x56\x6d\xd0\xd0\xac\x41\x13\x07\x0d\x88\x19\xab\xdc\x41\x6a\xdf\x61\x8f\x91\xa3\xca\x03\x5a\x61\xe4\x64\x38\x6d\x16\x57\x9f\xe3\xac\x19\x5e\x98\xf1\x3d\x81\x49\x8c\x09\x3b\x3b\x33\xb3\x7c\xab\x6b\x8e\xf5\x88\x05\x6c\xb7\x7c\x2a\x2f\x25\x62\xac\x25\x63\x0e\x4d\x7c\xae\x6a\xb3\xef\x02\x27\x1c\x99\xb0\x56\x12\x38\xc4\x20\x57\xf7\x46\x9b\x56\x39\x3b\xa2\x36\x23\x22\x6b\xd7\x44\x0b\x56\xca\x9d\xa8\x5f\xc4\x8e\xbd\xa4\x04\x8c\x77\x69\xcc\x87\xa8\x9f\xaf\xcd\xd6\x93\x8c\x09\x42\xd7\xa4\x6e\xcc\x37\xe0\x63\x2c\x1d\x9a\x31\x72\x3e\xc6\x92\x54\xb3\x5c\x59\x8f\xea\x7b\x83\x35\xa9\x80\x3e\x81\x3d\xe9\x85\x61\x74\x63\x00\x23\x40\xe4\xf6\x51\x0c\xc9\xf0\x93\x1a\x7f\x8a\x0e\x95\xe6\x5f\x3e\xaf\x47\x46\xa5\xe4\xcd\x36\x10\xe5\x21\x4b\xba\xa5\x00\xee\x15\xed\x4a\xb0\x75\x05\x01\x62\x51\xcb\x3a\xe6\xdf\x2d\xa3\xd2\xf4\x34\xe5\xfe\x3c\x4e\x0c\x45\xcf\xba\xbf\x57\x5b\xf6\xb9\x47\xc6\xdf\x05\x59\xb1\xb0\x3a\x4f\x5d\x77\x5b\xf1\x2e\xaa\x78\x27\x54\xbd\x1c\x0f\x76\x7f\x9f\x43\x48\xf3\xb9\xe5\x4a\xbb\xb3\xdd\x14\xbe\xba\x3e\xcc\x72\xbc\xba\xfe\x2c\x16\x63\x65\x7a\x9e\xca\x8e\x3c\xc8\x87\x22\x6f\xd6\xff\xcb\x85\xd2\xde\x44\xfc\x0f\x8b\xc8\xec\xd4\x06\x88\xec\xbb\x3a\xfe\x92\x47\x9e\x61\x81\x23\xf3\xb7\x00\x52\xf6\xb8\xa8\x78\xc2\x92\xc7\x85\x64\x0d\x14\x2f\x08\x64\x60\x85\x17\x1a\xb3\x72\x9a\xc5\x8d\x47\x11\xe1\xf0\x5f\xe8\xd6\x28\xaa\xe0\x8c\x96\x36\xc4\x7b\x60\x18\x4f\x4c\xe3\x5c\x2c\x24\xf9\x33\x3e\x33\x0c\xeb\x09\xa9\x30\x61\x64\x1a\xf2\x92\x9b\x46\x25\x27\x2f\x59\x72\xf2\xb1\x95\x2b\xaf\x70\xaa\xf6\xf3\xfc\xaa\xf0\x2d\x25\x23\x26\xc5\x9b\x90\xe3\x8e\xb5\x77\x05\x5d\x5d\x9f\x2f\x2a\xce\xc2\xed\x83\x57\xc6\xc4\x17\x5f\x94\x26\x3d\xf9\x48\xb3\x86\xca\xd0\x1f\x4e\xf1\xfa\x11\x2c\x9b\x16\x4e\xf4\x3a\xdb\x63\x9f\x99\x51\xab\x93\x65\x96\x6e\x10\xa6\x6a\x97\x0a\xb5\x4b\xb5\xa2\x93\xca\x29\x6f\x0f\xe4\x54\x92\x62\xff\xe4\x06\x7b\x7d\x99\xbd\x0c\x37\xa8\xf1\xa9\x84\x85\x9d\xe2\xf6\x5c\x46\xa3\x88\x57\x9e\x75\x6f\xa1\xfc\xbe\x38\xaf\xc9\x5b\x91\xdb\xb3\x9b\xca\xfb\x95\xe1\xba\x4f\x90\x78\x6e\x0f\x5b\x3d\x6e\x62\xa0\xba\x6c\x73\xa6\x66\x55\x14\x54\x04\x15\x96\xf2\xad\x25\xb0\x56\x79\x6f\xb2\xa2\x10\x02\x86\x58\x19\xeb\x96\x0d\xb5\xff\xf7\xa5\xfa\xf1\xcf\x5c\x2f\x1e\x64\x1f\xab\xe4\x86\x65\xfb\x38\x3b\x51\xf3\xae\xd0\x28\xa8\x77\x85\x16\x2c\x5f\xeb\xec\x4c\x9a\x15\x2a\x69\x9e\xd9\xda\xba\x54\x5c\xcd\x56\xd1\xcd\xc7\xca\xd0\x7c\x8a\xea\xe2\xdb\x25\xe2\xdd\x64\xd3\x75\xcf\x91\xaf\x07\x1b\x71\x79\x11\xf7\x31\x0b\xc0\x7d\x42\xb8\xc6\x70\x6a\x33\xbf\x4a\x59\x84\x65\x3c\x0c\x0a\xde\x7b\x97\x45\xb5\xae\x5d\x6b\x2a\xa3\x61\x26\xff\xe0\x33\x9d\x93\xb0\xab\x52\x2b\x1a\x33\x23\xb9\xbb\xd9\xda\xa3\x20\x62\xa6\x34\x0b\x5c\x69\x55\xae\x8c\xca\x7c\xf8\x2e\xce\x93\x58\xc7\x8a\xf1\xda\xa9\xad\x57\x5e\x14\xc8\x6b\xa1\xf7\xde\x52\x5e\xe1\x76\x31\xb7\x20\x8b\xd6\xa8\x62\x46\xca\x16\x50\x6d\x8d\xbb\xca\x4e\xbc\x89\x28\x97\xdd\x88\xd7\xba\xf5\xe5\xf7\x9a\xa1\x7b\x07\x2f\x09\xa5\xd2\x16\xa1\x5a\x30\xe4\xad\xe4\xa4\x57\x3f\xdf\x10\x44\x75\x10\xec\xd3\x8b\x2f\x7d\x9f\x4b\x68\xfe\x0d\x66\x8e\xba\x76\x64\xbc\xd7\x85\x3c\x4c\x65\xc8\x13\xce\xc6\x7c\xa6\x03\xd3\x3a\x4f\x3a\x01\xbe\xee\xc8\xe3\x26\x7f\xb3\x2c\xab\x1c\xd8\x82\x12\x76\x33\x91\x75\x42\xb2\x27\xd1\xdc\xd8\x5f\x47\x60\x80\x83\xe7\x9b\x0d\xf2\xe8\xd9\x99\x80\x4b\x7f\x9b\x32\x99\x37\x8b\x28\x57\x8c\xff\xdd\xed\xab\xb5\x10\x47\x32\x3a\xa4\x8a\xab\x2b\xb3\x85\x02\x9a\x35\xf4\x33\x39\x4d\xe3\x05\x82\x5e\x1b\xc4\x59\x47\x67\xe5\x2c\xa4\xf4\x99\x3d\x73\x94\x45\x9e\x64\x40\x9d\x55\xa4\x44\x15\x70\x5d\x0d\x18\xa7\x46\x9d\xc5\x8e\xd2\xea\x66\xba\x35\xf5\x76\x9c\xe4\x42\xd9\x38\x42\x27\x39\x92\x69\xb7\xb5\xe3\x63\x61\xf0\x05\x8d\x94\xe2\xcd\x46\xd9\x98\x23\x04\x29\x0a\xb6\x7e\x76\x6e\x0b\xf3\x5a\xbf\x4d\x62\xec\x51\x46\x18\x12\xc0\xc5\x02\xd1\xb6\x76\xb9\x13\x35\x99\x6d\xf8\x64\x62\xcb\xf0\x2b\x35\x05\x62\xa6\x1f\xfc\xdd\xac\x3b\x85\x23\x5b\xf3\x11\x0e\x93\x39\x74\x2e\x4f\xed\x88\xf5\xae\x9a\x5b\xc4\x02\xa1\x6b\x03\xe6\xda\x4f\xc3\x6f\xc8\xd3\x27\x4f\x42\xc0\x9e\xb8\xdc\xa2\x17\xe1\xdc\x45\x90\x6d\x2f\x19\xa7\x26\x03\xe9\xf1\x37\xba\x33\x39\xe8\xc7\x3e\xc8\xae\x63\x3d\x71\xec\xbf\x93\x5d\xf6\x66\xce\xa2\x79\xa1\x3a\x0f\x57\x7c\x1d\xbe\xf3\x16\xc8\x54\xe7\x38\x66\x1d\xb9\x35\xb0\xf9\x60\x54\xde\xa8\xb4\x47\x8f\x3d\xaa\x5d\x52\xbb\x6d\x6b\x56\x98\x2a\xfb\x77\x6d\x1f\x5b\xdc\x63\x6b\x57\x61\xf1\x80\xb5\xf7\x41\xc6\xd8\x96\xac\xc3\xbb\xb5\xf7\xe1\x8d\x9a\x89\x12\x48\x4d\x56\xf1\xf5\x85\x9e\x88\xbb\x9a\x70\xbf\xc4\x1f\x9b\xd6\xa0\xc2\x12\x75\x1d\xea\x47\x5c\x8b\x31\x2f\xf1\x38\xcf\xf0\x38\x7f\x42\x73\x74\x20\x82\xb9\x1d\x7b\x2a\x63\xfa\x22\xee\x85\xd5\xbd\x8f\xd1\xaa\xb2\x6d\xc3\xf2\xdd\x47\x31\xb4\x65\xc9\x53\x3b\x6b\x0f\x8b\x8e\x1e\x5e\xf5\x7e\x16\xf5\xbd\xd0\x37\x87\xf6\xff\xea\x74\x3b\xc6\x13\x15\x40\x18\x6d\x49\xb0\xa7\x3b\xe7\x3d\x4b\x30\xb5\x25\x33\x3a\xa7\xe4\x6c\xe1\x31\x8f\x95\x58\x75\x22\x44\xb1\x7c\x55\x1a\x23\x1e\x20\xdd\x80\x1e\xa2\x47\x6c\x20\x1e\x74\xdd\x40\x3c\xec\x8f\xd8\x42\xc2\x49\xa2\x09\xad\x3c\x6a\x87\x2e\x61\xc8\x2a\xbe\xa0\x55\x43\x91\x50\x48\x32\x87\x56\x5a\xf5\xac\x11\xf3\x78\xeb\xfa\x13\x02\xc9\xfa\x63\x2d\x57\xdb\x40\x82\x6d\xfb\x16\x52\x02\x59\xfb\x62\x42\xab\x15\xe3\xbe\x75\x8e\x5a\xa7\xb0\xed\xfa\xe7\x45\xba\xe8\x2c\x03\x24\x12\xe7\xa1\x4a\xf5\x61\xab\x9c\x16\xab\x7f\xfa\x11\xab\xff\xcf\xb9\xc4\xcf\xa7\xb5\x47\x50\x31\xbe\xf5\xad\xfd\x79\x17\xf8\x42\xd1\xd5\x74\x65\xff\x1a\xbf\xc6\xdf\x06\x58\xaa\x4b\x71\xfa\x92\x89\x97\x0c\x44\x6e\xd8\x72\xb5\x25\x56\xfd\x70\xef\xd2\x3f\xaa\x5c\xea\xe8\x55\x1a\xdc\xb3\xee\x8a\xac\xb3\xb3\x3d\xae\x40\x9d\x41\xdf\x02\xb8\xd6\x7b\xa0\x2e\xa3\xd1\x49\x27\xf6\x5e\x58\x93\x83\x3c\x9a\xc0\xea\x15\x0a\x37\x42\x68\x78\x97\x95\x59\xf2\xd6\x9e\x9c\xdf\x0a\x26\x0b\xfb\x35\x22\x58\x5f\xa7\xc4\xae\x65\x7d\xde\x25\x6b\x24\x96\x1f\x1d\x40\x2d\x01\x7c\x64\xe4\x92\xf8\xb5\xa5\x97\x1f\xb5\x22\xd8\xea\x20\x8a\xad\x8e\x90\x64\xab\x83\x68\xb6\x6a\x24\x5a\x10\xb4\x27\x59\x10\x1c\x1b\xc1\x04\x76\x6d\xc9\x15\x04\x8d\xc4\x22\x95\xc4\xe2\x74\x5b\x45\x2d\x72\x74\xd4\x22\x07\x50\x8b\x34\x53\x6b\xb3\xe9\x5e\x23\xca\x4a\x59\xd9\x72\x16\xe5\x02\x2f\xcf\x11\xb9\xc6\x34\x22\x3a\xc6\x3b\xd5\x79\x99\x1a\xe2\x2d\x45\xb4\x44\x1f\x8a\xa9\x2f\xc5\x5a\x30\x49\xdc\x43\x93\x85\x66\x31\xae\xe0\x5b\xe7\xec\x2c\x49\x81\x93\x06\x16\x38\xf3\x67\xd9\x1f\xb3\xbb\x9d\xbc\xa1\x37\xde\xcc\x7a\xfe\xe6\x0d\xd4\x7d\x00\xa1\x8b\xe2\xef\x3f\x93\xf0\xf6\xfe\x1e\xc1\x15\x0e\xd0\xbb\x95\x07\x98\x8b\x20\x5b\x79\xd9\xc7\xbf\xea\x52\x58\xde\x20\x95\x64\xbd\x39\x3b\x33\x05\x68\x74\xf3\x52\x1a\x98\x28\x90\x27\xb2\x29\x5c\x7b\x6a\xa7\x5d\x37\x10\xbf\x7d\x8b\x96\x2f\x3f\x6c\x2c\x0b\xe0\xfb\xfb\x2a\xb8\xf8\xbd\x05\x58\xa1\x22\xb6\xf2\xd2\xc2\xcf\xf0\x85\x3d\x9f\xd1\x83\x13\xaf\x01\x79\x11\xaf\x46\xc5\xa5\x25\x83\xf9\x9f\x72\xb0\xa1\x1a\x73\xe9\x30\xde\xcf\x11\xa8\x7a\x0a\xc9\x4d\x0c\x26\x98\xae\x3c\x8f\x54\xa1\x23\x9b\x4a\x1a\xd3\xb6\xb3\x49\x82\x37\x4e\x28\x4a\xbd\xdb\x43\xa9\x27\xcb\x1c\x19\xf1\x14\x9e\x6d\x69\x27\xa0\x1b\x49\xc7\x70\x65\x6a\xc8\x6a\x3d\x27\x80\x8f\x8c\x64\x12\xbf\xb6\x14\x63\x98\xb4\x21\xd8\x01\xc6\x94\x84\x3e\x3e\x92\x1d\x60\x4c\x09\xe8\x46\xa2\x71\xef\x00\x2e\x13\xc0\x47\x46\x32\x89\x5f\x5b\x8a\x71\xaf\x99\xcb\xb8\x47\x7a\x07\x51\xac\x77\x84\x24\xeb\x1d\x44\xb3\x5e\x1b\xa2\x1d\x30\x35\x25\xf4\xf1\x11\xed\x80\xa9\x29\xa0\x9b\x89\x16\x5d\xee\xf7\x51\x4a\x88\xc7\xde\xa9\x4b\xba\x99\xaf\xb6\x6a\x2f\x3a\xde\xcf\x3b\xc1\x0b\xf3\xdd\xed\xfa\x32\x0a\x21\xe6\x88\x7a\x3c\x92\xf1\xae\x3a\x2f\x49\x0a\x58\xb5\x1d\x75\x31\x07\xd4\x3d\xb5\x41\xe8\x9e\x3a\xc9\xd6\xd3\x09\xa7\xb7\xc9\x26\x1d\x06\x91\x8b\x2e\x0a\xf5\xcf\x4d\xeb\xe9\xa9\x49\x5d\x13\xbb\x91\x4c\xa2\x67\x5a\x16\x0c\x22\x82\xac\xb3\x33\x93\xa8\xec\x3b\x58\xef\xc3\x83\x53\x7e\x7f\x4f\xd2\x4c\x50\xdc\x7a\x2a\x9a\xb4\x9e\xa6\xd9\x17\x43\xd1\x05\xe6\xa2\xdd\x02\x13\x2f\x0c\x6f\x65\xbe\xc6\x53\x7a\x76\x16\x41\xd5\xf7\xf4\x9b\x69\x25\x40\x78\x61\x86\x3a\xa1\x29\x4b\x76\x69\x89\x3a\x59\x79\x52\x99\xe8\xf4\x15\x91\xa1\xcb\x1d\x8f\x73\xb4\xde\xf0\x0e\x8f\x3a\x01\x52\xc9\x48\xb7\x14\x75\x48\x44\xba\x12\xc3\xcb\x30\x4d\x7e\x68\x58\x32\xab\xee\x7e\x33\xb6\xb8\x27\x4a\x5d\x41\x65\x47\xa6\x3c\xab\x8b\x08\xcc\x3b\x3d\xc3\x3a\x1f\x7a\xcc\x8f\x2a\x6d\xc2\x46\x06\xc7\x34\xa5\x55\xa8\x2c\x73\x5c\x33\x5a\x76\xfd\x8d\xc6\xb6\x65\xbd\x99\x32\x4d\xb3\xdb\xf7\xd6\x28\xc4\x7f\xd4\xde\xf6\xad\xce\x37\x95\x64\x63\x52\xec\xb8\x88\x99\x62\xdb\xb2\xd2\xb8\x40\x33\x19\x89\x8f\xc2\xae\x17\x86\xd5\xab\x0c\xa2\xf2\x62\xfa\xb7\x55\x25\xbe\x46\x1a\x36\x60\xbb\xc1\xdc\x7b\x10\xdb\x24\x05\xbf\x46\xa4\xf7\x31\x4e\x8a\x71\x6b\xd6\x89\x8b\x34\x92\xf3\x92\x56\x6e\x5e\x54\x5a\x25\x12\xf8\xc8\x88\x27\xf1\x6b\x4b\xb6\x4b\xda\xcc\x7f\x08\x57\xce\xb3\x6a\x82\x09\xe0\x23\x23\x98\xc4\xaf\x2d\xc1\x10\x0e\x1b\x09\x96\x9e\x6f\xda\x73\xf8\x29\x7b\x9e\xa9\xa2\xe8\x91\xd1\x30\x45\xb9\x2d\x21\x93\x43\x40\x35\xd7\xbd\xa7\x24\xd9\x92\xab\x03\xbd\x49\xaa\xcc\xb1\x91\x50\xe2\xd9\x9a\x7c\x5b\x72\xd5\xc8\x88\xa1\xc7\x18\x5e\x54\xfb\xe2\xf6\xe8\x8d\xb8\xd8\x91\x11\x30\xc1\xb6\x2d\x0d\x75\x81\x66\x32\xfe\xd1\x6f\xbf\xfa\x57\xd0\xc7\x46\x3a\x89\x61\x6b\xba\xfd\xd1\x6f\x5c\xfd\x8b\xd9\xe9\xd5\x84\x09\xec\x99\xb8\xba\xd4\x91\x91\x2f\xc6\xb5\x2d\x01\x15\x7c\x1b\x12\x6e\xab\x2f\x06\x6d\x20\xe1\xf6\x2b\xbd\xfe\x73\x3f\x09\x25\xae\x07\x90\x70\xcb\x9b\x8d\xbd\x88\x70\x0f\x57\x5f\x7a\xb8\x97\x86\xba\xd8\xb1\x11\x31\xc6\xb6\x35\x15\x55\x81\x66\x32\xb6\x0f\xf1\x38\xbe\x08\x8f\x43\x02\x3c\x5a\xc4\x77\x1c\x14\xde\x71\x84\xd1\x1d\x07\x05\x77\xb4\x89\xed\xf0\x19\xeb\x5e\x7b\xf4\x51\x13\x59\xfa\x8c\xfd\xea\x51\x97\xe8\xe3\x38\x77\x46\xb7\x7b\xb5\xbd\x44\x94\x20\x8e\x58\xd7\x8f\xc2\x88\x76\xd9\xf5\xd2\x98\xfd\x6d\x4b\x43\xf3\xff\xfe\x2d\xf0\xb8\x37\xc3\x6b\x6f\x89\xce\xd9\xf5\xf2\xc9\x87\x75\xf8\xd4\x5f\x79\x94\x21\xee\xfe\xf2\xfe\x87\xee\x04\x7c\xc3\xae\x97\x9d\x6b\x8c\x6e\xbe\x8b\x3e\xb8\x86\xdd\xb1\x3b\x3d\xa7\xd3\xb3\x8d\xce\x87\x75\x48\x98\x6b\xac\x38\xdf\xcc\xce\xcf\x6f\x6e\x6e\xe0\x4d\x1f\x46\x74\x79\xde\xb3\x6d\x5b\x54\x66\x7c\xfb\xcd\xb2\xb3\xc0\x61\xd8\xa5\xdb\x10\xb9\x06\x89\xc8\x1f\x88\x46\x46\x87\x71\x1a\x5d\x21\xd7\xf8\x5f\xbd\xfe\x0f\x3f\xfc\x60\x48\x18\xf9\x1a\x19\xdf\x7e\xb3\xf1\xf8\xaa\x13\xb8\xc6\x8f\x8e\x0d\x7b\x4e\xc7\x81\xb6\xdd\xf3\x1c\xd8\x1b\x88\xef\xe2\x53\x74\xc1\xee\xc2\xc1\xb8\x07\x9d\xde\xeb\x3e\xec\x4d\x3b\x03\xd8\xb3\x1d\x01\xd4\x1b\x76\xd4\xa7\x06\x1a\x8d\xc6\x70\xd2\x0f\xbb\x0e\x1c\x4e\x9d\xce\x08\x4e\x7b\xb2\x2e\x47\x82\x39\x1a\xac\x03\x7b\xfd\x89\x68\xa8\x3f\x0c\x07\x70\x30\xea\x77\x86\x70\x38\xf4\x61\xaf\x3f\x80\xbd\x29\x1c\x4e\xe1\x60\x04\xa7\x23\xf1\x2a\x1c\x43\x67\x38\xed\x8a\x3e\xf9\xb0\x3f\x16\x15\xc0\x71\xbf\x0b\x9d\xd1\x44\x40\x74\xe1\x60\x38\x95\x75\xf4\xba\x49\x1d\x5d\xd8\x9b\xf6\x60\xbf\xd7\xeb\xc2\xd1\xb8\x2f\xda\xea\x8a\xb6\x46\xaa\x57\xfd\xae\xe8\x55\x5d\xe7\xbb\xb2\xf7\x23\x38\x18\x76\xfb\xd0\x9e\x48\x3a\xf4\x3a\xea\x53\x43\x0d\xa7\x93\x2e\x74\x7a\x7f\xc4\x64\xfc\x5f\xbd\x7e\xbf\x37\x7a\xf1\x72\x68\x9c\x17\x88\x39\x1e\x76\xfa\xb0\x3f\x1c\xfb\x5d\xd8\x73\xfa\xa2\x6c\x7f\x32\x82\xce\xb4\xa7\xbe\x0c\x7a\xd3\x6b\xe8\x38\x3e\xb4\xed\x21\x74\xfa\x23\x41\x0f\xd8\x1b\x40\x7b\xd8\x83\xfd\xd1\x18\xda\xfd\x3e\xec\x8d\xa1\x3d\x82\x83\x69\x0f\xda\x83\x3e\x1c\x7b\x70\xd0\x73\xc4\x3f\xd9\x19\x47\xf4\x63\x08\x7b\x61\x17\xda\x0e\x74\x46\x7d\x6f\x00\xa7\xa3\x61\x47\x7d\xaa\xee\xf6\x61\x4f\xf4\x7f\x38\x98\x74\x46\x70\x30\x56\x1f\x71\xe1\xfe\xa4\x0b\xed\xe9\xd4\xef\x42\x7b\x0c\x6d\xf9\x64\x0a\xed\x7e\x17\xf6\xfa\x5d\x68\x0b\x02\x3a\x63\xf1\xe1\x8c\xbb\xb0\x2f\x1e\x8f\xc7\x5d\x38\xec\x09\x5e\xe8\x42\x7b\x22\x3e\xa6\x62\x30\x86\x5d\xe8\x4c\x9c\x2e\xec\x0d\x05\xf1\xc7\xaf\x87\x70\xd0\x19\xc2\xe9\x60\xe0\x89\x91\x1c\x8c\x62\xd2\xf5\x46\xd3\x2e\x74\x6c\x07\xf6\xc7\x3d\xf1\x2f\x7e\xde\xb7\xc7\x82\x00\xbe\xe8\x40\x1f\x3a\x23\x59\x31\x1c\xf4\x7a\xd0\x9e\x0e\xe0\x70\x1c\x42\xdb\x1e\x41\xdb\x16\x43\x02\xed\xd1\xd0\x87\x8e\x23\xbe\xf6\x1c\xe8\xf4\xc4\x50\x43\x67\x32\x86\xbd\xbe\x03\x9d\x41\x4f\x96\xeb\x8d\xe0\x70\x3c\x80\x03\x51\x64\x04\xed\x51\x5f\x60\xe8\x8c\x87\xd0\x1e\x4f\x60\xaf\xd7\x0f\xa1\xd3\xeb\x43\xc7\x11\x14\x9b\x4a\x8a\x4d\x13\x36\x18\x4f\xc6\x9d\x3e\x1c\x08\x46\x80\xce\x48\x50\x5e\x8c\xa0\x3d\xe8\x41\x7b\x28\x30\xb5\xfb\xd0\x19\x08\x62\x8d\x46\xaa\xaf\xce\x54\xf4\xaa\xdf\x55\x3d\x9e\x8c\xba\x70\x34\xed\x41\xc7\x19\x88\xf1\x19\x49\xc2\xf6\xc4\xf0\xda\x83\x2e\xec\x8f\x25\x81\x45\xbf\xec\xa1\xa6\xfb\x48\x55\x6a\xf7\x44\x8b\x12\x4b\x51\x44\xa1\xdc\x13\xcc\xd3\x9b\xa8\xa6\xfb\xe3\x01\xec\x09\xae\xef\xf7\xc6\x70\x30\x16\x3d\x83\x3d\x7b\x24\xb8\xa4\xdf\x77\xe0\x60\x3a\x81\xbd\x49\x6f\x25\x8a\x0a\xae\x12\xed\xd8\x8e\x6e\x48\x56\x3b\x91\x5f\x42\xe8\xc8\xe1\xf5\xa1\xd3\x17\xdf\xfa\x23\xd8\xeb\xc9\x11\x9d\xc0\xfe\x60\xa4\x46\xa1\x27\x1a\xb4\xa7\x3d\x38\x90\x28\x8e\x26\x62\x32\x69\x5c\x05\x8a\xb6\x24\xe8\x18\xda\x43\xc1\x62\x3d\x41\xd8\x50\x80\x89\x9a\xa7\xde\x50\x60\xd3\x51\x9f\x6a\xce\xf7\x60\xaf\x37\xea\xf4\xe0\x78\x12\x4a\xb4\x9d\xd1\xc4\x87\x76\x6f\x28\xc6\x53\x56\xe2\x0c\x07\xd0\x16\x12\xc0\x11\x75\x8c\x87\xd0\x99\x0e\xbb\xb0\x67\xf7\xa1\x40\x78\x08\x47\xbd\x89\x2a\x68\x8b\x1e\x0e\xc4\x98\x4f\xba\x12\xfd\xbe\x3d\x15\x75\x0e\xa1\x63\x0f\x7c\xc9\xd1\xb0\xe7\xf4\x44\x47\xc4\x44\x16\x83\x34\x14\x13\x00\x3a\x53\x47\x61\x24\x09\x33\x84\xc3\x7e\x4f\xcc\xcc\x89\x20\x98\x73\x2d\x89\xe5\x43\x5b\x70\xb3\x20\x56\x7f\xa4\x86\x67\x20\x27\x89\x1e\x01\x39\x9e\x63\x39\x43\x04\xfb\x38\xa2\x67\x03\xe8\xd8\xa2\xa2\xa1\x96\x55\xc3\xde\x08\xf6\x05\x0f\x08\x7c\x44\xe1\xc1\x48\x12\x7c\x24\x58\x5b\x54\x3a\x09\xd5\xe4\x71\x86\x53\xc1\x7f\x93\x71\x47\x7d\x2a\x42\xf5\xe1\x50\x30\x9d\x23\x80\x04\xa7\x09\x32\x8d\x46\xd0\x16\xcc\xde\x9f\x40\x5b\x70\xfb\x74\x0c\x9d\x1e\x74\x04\xca\xe3\xa9\x1c\x86\xfe\xd4\x81\xbd\xd1\x10\x8e\x06\x02\x64\x02\x9d\x9e\x03\xed\xe1\x18\xf6\x7a\x53\xe8\x38\x3d\xd9\x4d\xdb\xe9\x89\xc1\x91\x82\xc5\x1e\x4d\x05\x6a\x92\x58\x8e\xdd\x13\x02\x0a\xf6\x07\x0e\xec\x3b\x0e\x1c\x8a\xe1\x77\xa6\xd0\x99\x2a\x0e\x50\x2c\xd7\x17\x63\x36\xe8\xc2\xe1\x40\x51\xbb\x1b\x93\x7b\x24\xf9\x5c\x70\xcd\x48\x8c\x87\x20\x85\x3d\x96\x93\x5a\x8c\xd3\x48\x49\x93\x9e\xe0\xa2\x81\xa8\xb1\x3f\x10\x82\xd9\x91\x93\x40\x94\x52\xfc\xe9\x88\x29\xda\x97\xbc\xde\xd5\x63\x20\xa4\x8e\x2d\x24\x8d\xa4\xb3\x3d\x12\x50\xc3\x51\x0d\x6b\x0d\xbb\x3d\x28\x19\x70\x08\xed\xbe\x0f\xed\xa1\xa8\xa6\x2f\x71\x57\x8c\xdd\x73\x24\xe9\x25\xc3\x08\x9e\x72\x26\x82\x93\xa4\x86\x10\x3c\x2d\x48\x33\x18\x0a\x1d\x25\x07\xbb\x3f\x18\xcb\x59\x60\x8b\xa9\x27\x85\xce\x44\xf4\x4a\xf4\xb6\xd7\x0b\x25\xf3\xdb\x76\x4f\xcf\x51\xc7\x97\x64\xb6\x87\x42\x6d\x40\x7b\x2c\x04\xb6\x60\xcd\x49\x4f\xf5\xbf\x27\x39\x56\xa0\x3f\x94\x53\x57\xc8\x4f\x21\x5b\x14\x8f\x8e\xa5\xd8\x1b\x88\xaf\x82\xdf\x25\x73\x4a\x3a\x09\xf4\xa5\xd0\x95\x50\x5d\x38\x98\x0e\x14\xdd\x47\x53\x29\x94\x05\xe0\x44\xce\x5f\x25\xb9\xc5\x28\x08\xd5\xa4\xe6\xab\x6c\x61\x38\x92\xec\x27\xa5\x9c\xe4\xb2\xe9\x38\x96\x72\x13\x7b\xd0\xed\xc3\xc1\x78\x10\x42\x47\x34\xe5\xf4\x04\xd9\x44\x4f\x25\x6b\x48\x6d\x20\x44\x9e\x64\x76\x41\xac\xa1\x7c\x22\xb8\x44\x0e\xa7\x23\x04\x6c\x17\x0e\xec\x01\x54\xc3\x23\x66\x6e\x57\xd2\x54\x0e\xeb\x64\xac\x10\xb2\x1d\x41\x3d\x39\x92\x5a\x70\x8c\x26\xd0\x99\x88\xc1\x1c\x4c\x94\xdc\x91\x52\x5a\x20\x37\x1c\x4b\xd9\xd3\x55\xf3\x44\x62\x34\xe9\x89\xc7\x72\x4a\x4a\x12\x89\x5a\x45\x1d\x3d\x3d\x31\x27\x42\xba\x4f\x24\x2f\x42\x7b\xaa\x04\x95\x33\x16\xd4\x1f\x0e\x25\xe9\x24\x1f\x0b\xfe\x1d\x4c\x60\x5f\x4c\xe1\x61\x0f\x0e\xc6\x8e\x12\x31\xf6\x40\xf0\xee\x44\x30\xd3\x54\xf0\xa9\xf8\x32\x0a\x25\xdb\x8a\x1a\x9f\x0b\xc9\x34\xed\xa8\x4f\xc5\x6b\x8e\x0d\xc7\x9d\x21\xec\xf7\x26\xde\x14\xf6\x7b\xc3\x8e\xfa\xd4\x1a\xd5\x96\x5d\x18\x0b\xa1\x2d\x85\xae\xe8\xa2\xa4\x8e\x1c\x1c\xc1\x05\xd3\xbe\xe6\xec\x9e\xe0\x2a\xf1\x6e\xd0\x57\xdd\x10\x9a\x60\xa2\x25\x8c\xe4\x9a\xbe\x10\x8b\x5d\x61\x0a\x48\xb5\x20\x88\xeb\xf8\x42\x8b\xca\xe1\x1a\x4b\x7d\x33\x95\xa6\x84\xfc\xf6\xc7\x8f\x53\x38\x9e\x76\x46\xb0\x3f\x74\x24\x77\x0d\x3a\x3d\x3d\x04\xb6\x18\xd0\x81\x07\xfb\x03\xd8\x1f\xc4\x7d\x1d\x0a\x5d\x92\x28\x9c\x5e\xd7\x81\xa3\x51\xd7\x11\xc2\xe4\x79\x1f\x4e\xc7\xa3\x8e\xfa\x94\xd0\x9d\xb4\xea\x3f\xd6\x70\x3a\x9a\x74\x6c\x4f\xc8\x93\x8e\xfc\x50\x20\x3d\xd8\x77\xfa\x1d\x07\x3a\xce\x50\x58\x5a\x23\x61\x5c\xc9\x29\x2c\x47\xdf\xee\x97\x9a\x17\x5c\xb4\x92\xaf\x5e\x0b\xaa\x8e\x64\xfd\x7f\xac\xbb\x7d\x38\x99\x8e\x3a\x0e\x9c\x8c\x43\x07\x0e\x1d\xf1\xb5\x3f\x94\x15\x89\x09\x37\x29\xd4\xe3\xf4\x07\x70\x38\x19\x86\xb1\xae\x13\x38\x4c\x07\x03\x38\x1c\x39\x9e\xc0\x60\xd8\x51\x9f\xaa\x93\x70\x38\x12\x92\x62\xe8\x8c\xfe\x58\x8f\xe0\xc4\x91\xba\x56\xa0\xd2\x13\x46\x80\xdd\x4b\xe1\x26\xbd\x8e\x80\x13\xa8\x4c\x45\x5f\x87\xa3\x7e\x37\x56\xcc\x15\x7d\xe8\x8a\x4e\x48\x1d\x32\x10\xbd\xb6\xc7\x5d\x27\xc6\x66\xec\x08\x0b\x6c\x30\x5a\xc1\x51\x2f\x84\xfd\xc9\x58\xd8\x16\xca\xd6\x1a\x09\x66\x1e\x0a\x31\x2d\x78\x58\xcc\x56\x65\x22\x09\xb5\x31\xb2\x7b\x02\xb8\x0b\x07\x93\xde\x1f\x6b\x07\x4e\xa7\x1d\x41\xd5\x9e\x07\xfb\xfd\xa9\xf8\x17\x77\x55\x30\x92\x3d\x0c\xe5\x20\x8a\xf6\xc5\xb0\x3b\xb0\x3f\x10\xe8\x4f\x3a\xf2\x43\xf5\xd3\x81\x23\x7b\x2a\x99\x42\x98\x8c\x63\x61\x16\x4f\x04\xef\xab\x72\xf9\x01\xea\xc0\xde\x54\xf0\xd5\x58\xe1\xd0\x17\x93\xa5\x80\x77\x07\xf6\xed\x89\x92\x20\x42\x9b\xda\x42\xde\x8f\xc7\x02\xd7\xc9\x68\x24\x1a\x9f\x0a\x3b\x2a\x16\x39\xaa\xf9\x41\x57\x8c\xa1\x18\xd8\xa9\x98\x09\x02\x13\xc5\x7f\x43\x51\xf5\x50\xfc\x4b\xd0\x1a\x29\xe6\x11\xb8\x8f\x26\x7d\x38\x71\xc6\x02\xf5\x89\xf8\x97\x74\x40\x68\xc1\xf1\x54\x28\xf0\x49\x08\xa7\x13\xd1\xf8\x78\x3c\x94\x8d\x3b\x1d\xf5\xa9\x1a\xef\x41\xcd\x42\x21\x9c\x8e\xa7\x5d\x01\x26\x0d\x25\xa7\x88\xb5\x30\x2a\x9c\xc9\x1f\xf1\xa2\xa9\x2b\xcf\xa1\xba\x06\xec\x0d\x33\x06\xbf\x58\x45\x9d\x7f\xfb\xcd\xf9\xf2\xdb\x6f\xc4\xc2\xeb\xdb\xff\xfb\x37\xeb\x6f\xc0\xe8\x76\x39\xa2\xd4\x5b\x44\x74\xfd\x38\x0b\x3f\xc1\xfb\x93\x43\x16\x7e\x7a\x51\x97\x5d\x04\xa2\x6b\x44\xa2\x20\x88\x17\x7a\x09\x0a\xc3\x17\x83\x97\x2f\x87\x86\x5c\xac\x0c\xe1\x50\x50\xcb\x11\xcb\xb1\xc9\x44\x58\x69\x93\x9e\x73\x2d\x8c\x89\xc1\xeb\x21\x1c\xda\xd3\xce\x04\x8e\xa7\xbd\x3f\x92\x15\x4e\x52\xcb\xc0\x1e\xd8\xdf\xf5\x8c\x78\xc9\x33\xed\x3b\xc2\xf0\x1f\xeb\xc2\xb2\xba\x89\xd0\xcc\xbd\xfe\xaf\xa2\xfe\x8a\x1a\xb2\xfd\x10\xe2\xbc\x63\xcb\xb2\x3d\x59\x76\xdc\x51\x65\xc5\xe7\x1f\xaa\x9b\x8e\xb4\x16\x33\x1d\xed\x5f\x77\x55\x63\x5d\x59\x42\xb6\xf6\x47\xe5\xe8\x90\x68\xed\x05\x5f\x68\x64\x8a\x4b\xf2\xf2\x12\x3c\xa1\x88\xf3\xc3\x74\x3a\x1a\x6b\x9a\x3a\x70\x38\x12\x92\x77\x32\x76\xae\x7b\x62\x5d\x17\x8a\x19\x34\x1a\x08\xe1\x3a\x15\x42\x7b\x20\xd4\xf1\x64\x3a\xb8\x1e\x43\x39\x13\x07\x82\xc9\x3b\x63\x31\xbd\x07\x70\x30\xfe\x75\x00\x07\x93\x95\xd0\x68\x55\xc4\xef\x0d\xbf\x7b\x3e\x71\x54\x53\x63\x35\x55\x5f\xc3\xde\xa0\x23\x0a\x39\xe1\x50\x58\xb9\x1d\xb1\x74\x12\xcd\x09\x31\x3e\x1a\x0c\x85\x54\x1c\x0b\x79\xd6\x1f\x5e\x77\x7b\x70\x3a\x09\xc5\x12\x61\x28\x7a\x32\x91\x5d\x9c\x8c\xc3\x01\xec\x3b\x62\xa6\xf7\xa7\xd2\xac\x76\x9c\xc6\xa6\xed\x5e\x67\x0a\x87\x03\x51\x7e\x3c\x12\x28\xf6\x07\xb2\x91\xc9\xe4\x57\x61\x79\x87\x70\x22\x0c\xeb\xc1\xe4\x35\xec\x49\x73\x59\x98\x0e\xaa\x9b\xd7\x13\x38\xed\x8d\xc2\xb1\x60\x59\xf1\x60\x34\xbe\xee\x0a\x52\x54\xb3\x80\xf6\x09\x3d\x0e\x0f\x4c\x1e\x7d\x76\x0a\x62\x4c\xe0\x68\xda\x97\x76\x86\x3d\xf6\x84\x2c\x55\x12\xb5\x27\xe5\x93\x5a\x17\x0a\xa5\xd2\x1b\x74\xf2\x2f\x95\xd0\xb4\x85\xde\x1e\xf7\x06\x19\x61\x35\x1d\x39\xdf\x0f\xa7\x79\xef\x44\x0f\xf6\xfb\x23\xa1\xd5\xc7\x23\x0f\x4e\x86\x7d\xf1\x4f\x35\xd0\xb1\x85\x70\xb4\xc7\x99\xa7\xe2\xb9\xdd\x91\x4f\x7f\x74\x86\x70\xd4\x9f\x8a\xee\x0d\x87\xa5\xa2\xda\x66\x97\xcb\x65\x47\x39\x10\xc4\x5f\x61\xdd\xd8\xce\x18\x8a\xe2\x03\x38\x19\xf5\x3b\xc2\x14\x93\xa5\x87\xe2\x5f\xac\x46\xa7\x3d\xc1\x46\xbd\xf1\x34\xff\xa2\xe3\xc0\xe1\x70\x2a\x0c\x3a\xb1\x60\x1c\xc8\xb5\x7f\x6f\xac\x16\x9d\xb6\xd0\x84\x7d\x4f\x0c\xbe\x64\x00\x5d\xd3\x68\xd0\x83\xa3\xa9\xf3\xa3\x33\x86\xd3\xf1\x58\xf4\x76\x30\x1a\x7b\x70\x32\x98\x8a\x7f\x9a\x92\x0e\x14\x1a\xa6\x37\x1d\x65\x9e\x4b\x22\x4e\x85\xd1\x39\x9a\xf6\x7c\x38\x10\x4b\x80\x71\x1f\x8e\x05\x63\x0d\xe1\xd8\x9e\xc2\xa9\x50\x55\xbd\x9e\x23\xfe\xc5\xb6\xb4\xed\x88\x55\xe1\x48\x34\xd7\x9b\x8c\x04\x76\xa3\x49\x81\x36\xc2\x8e\x17\x6a\x67\x34\x19\x14\x28\x2b\x5e\x74\xe4\x8b\x1f\x9d\x11\x1c\x09\x11\x27\xf4\xad\x53\xac\x40\xac\xef\x7b\x5d\x38\xe9\x4d\x0a\x15\xc8\x17\xe2\xb9\x28\x2f\x8c\x51\x31\x44\xa5\xe2\x70\x32\x90\x73\x74\x58\x6c\x7e\x32\x90\x13\x2d\xab\xde\xbe\x1f\xf5\xc6\x93\x7e\x8e\x63\x26\x70\x32\xe8\x75\x9c\x31\x1c\xf6\x07\x7e\x77\x00\xc7\xc2\xaa\xe8\x4e\xe0\x68\x32\x16\x06\xdb\x70\xa8\xbf\x4f\xe0\xc8\xe9\xbd\x80\xce\x50\xd8\x53\xce\x68\x24\xac\x2a\xa1\xd7\x9d\x8e\xac\x01\xf6\x1d\x6f\x22\xc5\x88\xfa\x54\x7d\x18\x6a\x1a\x8c\xc7\xc2\xdc\xb2\x87\xd2\xe4\x1b\xf7\xbc\x91\x5c\x16\x8f\xd2\xc5\x71\x77\x0c\x7b\x53\x61\x66\xd8\x4a\x26\xf6\xf4\xa7\x1d\x5b\xe7\x62\xa1\x3b\xea\x94\xca\x75\xd2\x72\x61\xda\xc0\x40\x74\x45\x0c\xd7\x48\x9b\xb9\xdd\xb4\x23\x7f\x94\xc9\x51\x25\xc7\x8b\x32\x66\x77\x92\x9c\xbb\xca\x1e\x02\x4f\x4e\x59\xf1\x0b\x74\x61\xcf\xe7\xcf\xf4\xdf\x19\xba\x70\xe6\xbb\xfd\xb1\x97\x64\xbf\x4f\x3b\xf0\xd8\x0a\xd1\xc3\x63\xb6\xd2\x72\xc7\xb5\x29\x90\xc1\xb7\x6d\xad\x71\x89\xa6\xed\x81\x00\xf9\x07\x6e\xdf\x89\x12\x47\x46\x3e\x81\x63\xeb\xfa\xfc\x66\x92\xe9\x2e\xd6\xed\xa8\x24\xd3\x81\x67\xae\x2d\x30\x5c\xd7\x15\xfc\x7f\x7f\x9f\x84\x0e\x8b\x9f\xcf\xc4\x6c\x98\x89\x6f\x0f\x39\x95\xf7\x5b\x92\x77\xb3\xe1\x4c\x1e\x6f\x40\x09\x5f\xb7\xde\x54\x13\xb0\x47\x36\xfe\x02\xbb\xb6\xf5\xe1\xeb\xc6\xf1\xa7\xd1\xe6\xd0\x39\x23\x8a\x1c\x19\xd1\x24\x96\x6d\x2b\xa4\xd1\xa6\x89\x6c\x8a\x48\x9b\xe8\x06\xd1\xae\xca\xf1\xd7\xc5\xac\xbb\xa4\xd1\xb6\x92\x9a\x59\xc0\x56\x75\x1c\x17\x79\x25\x26\x6f\x04\x22\xea\xf2\xd6\x57\xec\x1f\x8a\x12\x2d\xdb\xa8\x29\xff\xb0\x41\x88\x53\x2e\x7e\xe4\x38\x24\xd5\x1c\xfb\x50\xbc\x4b\xe8\xf1\xe0\xd1\x88\xab\x78\xc0\x80\x70\xba\x45\xb1\x05\x83\x17\xdd\x0d\x45\x4c\x9e\x89\x7f\xf8\xd8\xd4\xd4\x78\xdc\xc3\xf4\x9e\x6e\xf5\x35\x1b\xaf\x16\x6f\x62\x1a\x3d\x70\xbc\x2a\xea\x6a\x1c\x38\x72\x7d\x40\x42\x83\x47\xc8\x50\x8d\xc8\xb5\x4b\xff\x3a\x5a\x76\x1c\x47\xcb\x32\x99\x28\x72\xc7\xc7\x7a\x16\x08\x5d\x7a\x61\xcf\x01\x73\xe9\x85\x33\x2f\xa7\xb3\x4a\xd2\xca\x6e\xc3\xf0\x34\x4d\x41\x71\x11\xce\x9f\x65\x7f\xcc\x70\xc3\x12\xaa\x21\x0b\x03\xfa\xbd\x7d\x12\x13\xf4\xfb\xd6\x3b\xb6\x73\x07\xaa\xcf\xad\xe5\x81\x80\x6e\x9c\xf1\x1f\x2a\x0d\x95\x4a\x23\xb9\x9c\x9f\xe4\xab\x27\xd8\x87\x03\x8c\x8f\x0f\xcd\x86\xc6\x87\xcd\xda\x39\x84\x5c\x6b\xe7\xf8\x08\x26\x30\x6c\x4f\xb2\xb5\xd3\x44\x34\x95\x17\xaf\x7b\x79\x68\x7e\x8f\xb4\xdc\x71\x91\x30\xbe\x60\xac\x75\xa5\x71\x81\x76\x84\x7c\x10\x15\x8f\x92\x84\x07\x12\xb0\x99\x7c\x24\x78\x08\x17\xaa\x52\xc7\x46\x40\x12\x1c\xc4\x81\x02\xbc\x99\x80\x1f\x50\xd0\x5d\x52\x1c\x74\x43\xef\x36\xda\xd6\x9c\xd4\x08\x43\x95\x1b\xfe\x5c\x01\xb1\x73\x51\xe2\xf1\x6f\x33\xa9\x3f\xd7\x1e\xdb\x1a\xf9\xab\xa8\x84\x79\x82\x2e\x9c\x79\xd3\xf1\xf5\x45\x28\x2c\xa3\xca\x64\x27\xfb\xd8\x44\x97\x3a\x32\x36\x89\x71\x6d\xcb\x27\x0a\xbe\x91\x51\xc2\x28\xaa\x94\x53\x95\x6a\x52\x41\x1f\x1b\xe1\x24\x86\xad\xc9\x16\x45\xcd\xe2\x29\xa2\x6b\x8f\x77\xc9\x56\x50\x6a\x7f\x3e\x8f\xf4\xb4\x76\x18\x8a\xa5\xaf\xbc\xc1\xbc\x48\xc0\xec\xf6\x45\x2e\xa9\x7e\xe1\x36\x47\x7d\x89\x2b\xb7\x1e\xe2\xaa\xcd\xd7\xe5\x92\x86\x59\x9a\xcf\x24\x61\x68\x5c\x2d\x93\x58\x0d\xb4\x91\xa9\xc2\xdb\x73\x94\x02\x3f\x32\x96\xd2\x38\xb6\xe5\x29\x09\xde\xc4\x54\x4b\xbf\x3d\xd5\x04\xec\x71\x91\x4c\x62\xd7\xb2\xbe\xa5\x1f\x34\x1d\x1b\x96\x1e\xd7\xc3\x2d\x84\xa4\xd8\x91\x11\x4f\x74\xfb\x00\x1b\x41\xc3\x37\x72\x5c\xa5\x55\x50\xbd\x04\x5f\x1e\x9b\xb7\x6e\xd9\xbe\xba\x65\xa3\xaf\x6d\x59\x7d\x4e\xb3\x8e\x54\xc7\xb6\xbd\xbb\x3c\xe0\x68\xe6\xb2\xf9\x58\xe6\xca\x63\x5d\x82\x3e\x1c\x7a\x3a\x38\x29\x76\x5c\xc4\x5b\x79\xec\x27\x89\x6c\xcb\x3a\x35\x7c\x1b\x22\x6e\x28\xba\xc6\xd1\xf6\xd0\xf3\xad\xb9\xa2\x47\x47\xcc\x37\x09\xd2\xed\x09\x1a\x97\x69\x24\x2a\x45\x8b\x2e\x8f\xaa\xe8\xa9\x5f\x95\x40\x8f\x8c\x7e\x14\x2d\xde\x47\xed\x49\x27\xc1\x1b\xa9\xc6\xd7\x61\x97\x79\x8b\x43\xa3\x5d\xd2\x72\x47\x46\x44\x7d\x1f\x4e\x7b\x32\xea\x02\x8d\x84\xdc\xae\x3d\x72\x78\xd4\x50\x52\xec\xc8\xc8\x98\x60\xdb\x96\x8c\xba\x40\x23\x19\x6f\x37\x51\xfb\x24\x4f\x0a\xfa\xc8\x48\xa7\x30\x6c\x4b\x37\x01\xdd\x44\x34\xbc\xde\xb6\xcf\xf3\x24\x81\x8f\x8b\x64\x0a\xbf\x96\x15\x0a\xe0\x46\x82\x91\x43\x03\xd3\x44\x89\x23\x23\x1a\x69\x1f\x98\x86\x49\x63\x60\x1a\x26\x1c\x51\x56\x77\x7d\xcc\x3e\xc2\xc5\xe5\x8e\x8d\x7c\x09\xbe\xad\x89\xa8\x4b\x34\x93\xf2\x3a\xba\x3a\x34\x39\x8c\x2e\x74\x6c\x44\x54\x98\xb6\xa6\xa0\x00\x6f\x24\x1f\xeb\xd6\xe6\xa9\xaf\x5e\xb5\x25\x25\x8e\x8c\x7a\x2a\xbe\xa2\x3d\xf9\x14\x7c\x0b\xfa\xf9\x21\xde\x5c\x46\x1e\x0d\xba\x6c\xbb\x11\x14\xac\x0e\xcf\x12\x76\x4b\x02\xda\x54\xfe\xd8\x68\xfb\x22\xc6\xe1\x5d\x4a\x82\xd6\x84\x2e\x17\x6e\x41\x75\xb4\xde\xf0\xc3\xb8\x56\x95\xf8\x1a\x29\xdb\x88\xab\x0a\x91\x38\x04\xd7\x23\x0c\x04\xc1\xec\xe5\x41\xa1\x20\x1a\xbe\x05\xfd\xc4\xea\xed\x51\xd3\xea\x54\xee\x07\xe8\x1b\x08\xef\x68\xb4\xe5\x88\xea\xbb\xfb\x30\x91\x95\xeb\xcb\x17\x4d\x43\xbd\x34\x2c\xa0\x33\x77\xe5\x2e\xd8\x96\x49\x7a\xe2\x04\xd5\x5c\x5e\xbd\x2a\xaf\xa5\x4b\x4a\x59\x42\x2c\xf9\x1c\x5f\xa3\xf8\x06\xc3\x1c\x26\x9f\xf1\xce\x6c\x64\x59\x3b\x10\x91\x5f\xde\xbe\x7e\xa1\x2e\x0a\x57\xe8\x46\x97\x02\x53\x44\xe3\x2e\x43\x95\x82\x98\xff\xf2\xf6\x75\xee\xce\x42\x89\x1a\x45\x9a\x08\x66\xfd\x25\x96\xf1\x28\xfe\x27\xaa\xbe\x11\x64\x8f\x92\x97\x45\x8e\x6b\x0a\x28\x2c\x5b\x56\x28\x80\x9b\x98\x3f\xf4\xd8\x9e\xe3\x0f\x0f\xe0\x7c\x51\x61\x92\x4e\xea\xaf\xe0\xc6\x63\x09\x6e\xcc\xdf\x4b\xaf\x73\xe3\x97\x6e\xc2\x8e\xaf\x87\x3f\xb5\xf5\xc5\xed\xca\xcf\x92\x5e\x5c\x4f\xe3\x8b\xd9\x69\x7c\xf7\x77\xd7\xb1\x76\x1f\x77\x44\x2c\x44\x0b\xde\xe5\x14\xaf\xf7\xef\x0f\xa7\x60\x7f\x5d\xfa\xf0\xdf\xc1\xbc\x0f\xb9\xf4\x21\x1b\xb5\x5b\x71\x93\xfb\x85\x33\x07\x51\xfa\x02\x8b\x17\xb8\xf2\x46\x08\x06\xa2\x26\x95\x14\x46\xcb\x6e\xe5\xc2\xb3\xd2\x53\xa4\xa0\x8f\x4b\x1d\x85\xd1\xf2\x65\xeb\x0a\x05\x70\xa3\x3a\x8a\x96\x8e\x7d\x08\xc9\x1c\xfb\xf8\x48\x26\x30\x6c\x4f\x33\xc7\x6e\x43\xb4\xf6\xf1\xcc\x0a\xfa\xf8\x88\xd6\x3e\xa6\x59\x42\xb7\x20\x5a\xfb\x5c\xd5\x12\xf8\xe8\x48\xd6\x3e\x53\xb5\x00\x6e\x26\xd8\x0d\xa2\x52\xe9\x1f\xb6\xe7\x92\x96\x3b\x36\x02\x26\xf8\xb6\xa6\xa2\x2e\xd1\x48\xca\x03\xc2\x45\xc2\x63\x73\xe5\x1e\x50\x5d\xb3\x6f\x23\x3c\x24\x5c\x24\x3c\xba\x70\x91\xf0\x80\x70\x91\xb0\x39\x5c\x64\xed\x3d\x20\x92\x4b\x17\x3a\x2e\xc2\xad\xbd\x43\xa2\xb8\x24\x74\x0b\xe2\x1d\x4e\xb9\xe3\x23\xdb\x21\x44\x6b\x8a\x1d\x5c\x7b\x1f\x5a\xab\x50\x01\x7b\x6c\xc4\xfa\x70\x00\xb1\x3e\x34\xf2\xd7\x01\x37\xd6\xae\x8f\xce\x31\xb5\x3e\xc0\x2f\xb5\x6e\x76\x4b\xad\x1f\x78\xea\x22\x2d\xf7\x55\x9c\xbd\x68\x5a\x21\xae\xa3\xf6\x91\xca\x02\xf6\xc8\x78\x22\x6a\xbf\xc9\xb3\x8e\x1a\xf7\x74\xd6\xdb\x6a\xbb\xa9\x9a\x5a\xdb\xa3\x33\x9c\xd6\x87\x54\xb8\x6e\xb1\x31\xf4\x80\xc8\xd1\x23\x8c\x1a\x25\x87\x84\x8c\x92\x16\xf1\xa2\x24\xe2\xdd\x43\xce\x54\x2b\xf8\xe3\xdb\x4e\x23\x11\x7f\xf9\x7b\x7b\xca\x09\xe8\x16\xa4\x3b\x88\x6e\xc7\x47\xb1\x43\xe8\xd5\x44\xad\x48\xb6\xd3\xf5\x0e\x9d\xa4\x69\xb9\xe3\x22\x9f\xea\xf7\xf3\xf6\x95\xc6\x05\x1a\x09\xb9\x11\x25\xab\x77\xc0\xf7\xd1\x31\x2e\x76\x64\x64\x4c\xb0\x6d\x4b\x46\x5d\xa0\x91\x8c\x95\xc7\x17\xab\x27\xef\xd1\x1d\x5e\x3c\xe0\xe4\x62\xf3\xb1\xc5\x0d\xa2\x3e\x22\xdc\x5b\x22\x61\x84\x6e\xd7\x84\x1d\x66\xa6\x96\xcb\x7f\x15\xe6\xaa\x3c\x2a\x0c\xd0\x45\xaf\xd1\x70\xdd\x20\xba\x88\xe8\xba\xed\xb5\xc2\x31\xf8\xd7\xc8\x32\xfb\xf1\xc4\x1b\xd4\xf5\x64\xe9\x03\x85\x4b\xb6\xe4\x51\xa2\xfd\x00\x7c\xbf\x4a\x44\xeb\xeb\x54\x58\xb6\xac\x50\x00\x37\x92\x2d\xdc\x52\xaf\xee\x02\x6a\x4c\x16\x42\x0c\x44\xf4\x3c\xc4\x97\x15\x45\x1e\x51\x00\xa4\xe8\xef\xed\x6d\x74\xd3\x7a\x39\x25\x60\x8f\x6c\x70\x05\x76\x6d\xc7\x36\xba\x69\x1c\xda\x87\x1d\x20\x3b\xd2\xc3\x63\x9b\x43\x4f\x8e\x6d\x5a\x1e\x1b\xfb\x7d\x8b\xb6\x87\x4a\x16\x55\xe6\xb8\x08\xa8\xf1\x6c\x59\xa3\x84\x6e\x22\x1d\xf5\x48\x10\x55\x6a\xdc\xca\x19\xab\xc1\x8f\x8b\x6c\x31\x8e\x2d\xab\x54\xe0\x2d\x08\xb7\x3c\x94\xe7\x54\x99\xa3\x23\xde\xb2\x3d\xcf\x49\xe8\x46\xd2\xa1\x60\xeb\x1f\x4c\x3b\x55\xe8\xc8\x88\xa7\x31\x6d\x4b\x3d\x09\xde\x4c\x3e\xb9\x50\x3f\x78\x4b\x2e\x2d\x77\x6c\x44\x14\x2f\x0e\xd8\x98\x8b\x0b\x34\x13\x72\x83\x0e\x76\x93\xe8\x42\xc7\x46\x42\x85\x69\x6b\x02\x0a\xf0\x66\xf2\x5d\x23\x5a\x13\xb8\xb1\x8f\x7e\xaa\xd4\xb1\x11\x50\xe3\xda\x9a\x82\x12\xbe\x91\x84\x78\xb9\x6a\x13\x85\x9a\x81\xfb\x2b\x0c\xf5\xaf\x30\xd4\xaf\x21\x0c\xf5\xb0\x34\x52\xc7\x98\x45\xea\xb0\x24\x52\xad\x72\x48\xe9\xf3\x38\xe7\xe8\x03\x47\x94\x78\x61\x97\x45\x5b\x9a\x37\x85\xea\x6f\x8a\x48\x27\x91\xe2\x88\x25\xd2\xfe\x35\xe3\xa5\xae\xee\x9d\xac\x8d\xc1\x05\xa6\x8c\x2b\xbc\x0c\xeb\x84\xdc\xdf\x9b\xe5\x32\x3f\x22\xee\xc1\x62\x3f\x2c\x25\x1e\x32\x11\xfa\x72\x11\xb6\xc0\x1f\x04\xaf\xc4\xdf\xc5\xfc\x27\x7a\x92\x1b\xc6\x13\xfa\x84\x3c\x24\xdf\x99\xa6\x45\xbe\xef\x1f\x7b\x4f\x05\x5b\x6d\x17\x8b\xf0\x50\x9d\x14\x97\x3a\x2e\xfe\x4c\x70\x6d\x59\xa7\x86\x6f\xe4\x51\xbc\x6c\x1f\x52\x22\x81\x8f\x8c\x6c\x12\xbf\xb6\x34\xc3\x4b\xd2\x14\xaf\xc4\x0e\x08\xc1\x61\x47\x17\x82\xc3\x0e\x08\xc1\x61\xcd\x21\x38\x0c\x93\xe5\x36\xf4\xea\xee\x66\xaa\x76\x67\x66\x0b\x7d\x76\x87\x26\x0b\xf1\xc1\x8b\x55\x55\xe6\xc8\x06\x5a\xe1\xd9\x76\xa8\x05\x74\xe3\x60\x87\xdb\x25\x5e\xdc\x3e\xea\x49\x40\x5d\xe7\x5f\x87\x01\x8f\xc5\x90\x4d\x4c\x98\xaa\xc3\x80\xb1\xf5\x59\x38\x11\x68\x89\x25\x68\xe8\xf9\xc8\x3c\xef\x9c\x2f\x81\xd1\x35\x2c\x99\x1f\xf5\x06\xd1\x17\x1e\x43\xa6\xf5\x71\x67\xff\x58\x44\x1f\xe0\x3f\x89\x4b\x1d\xd9\xb4\x8e\xe8\x21\xbe\x13\x05\xde\x38\xb1\x37\x21\x7e\xdc\x03\xbe\xb2\xc6\xbf\x26\xf5\xb1\x4f\xea\x9e\x05\xa8\x4b\xc4\x02\x23\x4c\xd7\x10\xf4\xd9\xc5\x7c\x46\x01\x73\x49\xf9\x42\x13\x90\xb9\xd1\x24\x54\x5c\x60\xe2\x8f\x9d\xde\xbf\xd3\xf6\x21\x9d\x12\xf8\xc8\xa6\xb4\xc4\xaf\xed\x84\xfe\x9d\x36\x7a\xf2\xd8\xf6\xb2\x3d\xbd\xb6\x97\xc7\x46\x2e\x81\x5d\x5b\x6a\x6d\x2f\x9b\x88\xc5\xbd\x83\xf3\x3e\xc9\x22\xc7\x45\x34\x85\x65\xcb\x0a\x05\x70\x33\xd9\xda\xaf\x92\x04\xec\xb1\x91\xab\xfd\x2a\x89\x7b\x8d\xab\x24\xee\x91\xd5\x21\xd4\x5a\x1d\x1f\xb9\x56\x87\xd0\x6b\xd5\x4c\x30\x76\xd5\x36\x6c\x4c\xc2\x7e\x8d\xf4\xda\x8f\x21\xe6\x21\x3a\x3c\x37\x69\x52\xec\x6b\x44\x78\x0f\x83\x24\xd8\xb6\x65\x12\x5d\xa0\x91\x8c\xd1\x72\x19\x3e\x30\xf8\x2e\x5f\xf6\x6b\x24\x68\x0b\xd4\x1f\x84\xf3\x57\x89\xec\x1e\xee\xd1\x98\xb6\xe5\x1d\x09\xde\x48\xbe\xd2\x2e\x5d\xf3\xe4\x7b\x8c\x0d\xbb\xcf\x4c\x3a\x89\x65\x5b\xc2\x51\xdc\x18\x27\xc3\xe9\xb6\x3a\x51\x6b\xb5\x2e\x93\xd0\xc7\x46\xb2\xed\x01\x69\x5a\x25\x74\x2b\xa2\x79\xd5\xa7\xd4\xf7\xf2\x9b\x2e\x76\x84\x04\xf4\x0e\x38\xb4\x1e\x17\x68\x22\xe3\x96\x04\x88\x32\x3f\xa2\x87\x12\x32\x53\xf0\xb8\x48\x99\xc5\xb8\x65\xb5\x69\x91\x66\x72\x1e\xae\x33\x55\x99\x63\x23\xa2\xc4\xb3\x35\xfd\x70\xd4\x68\xd0\x6f\x37\x9b\x07\xa5\x39\x49\xcb\x1d\x19\x09\x53\x7c\xdb\x92\x31\x2e\xd1\x44\xca\xca\xf0\xf2\x3d\x24\x3c\xb6\x10\xf3\xf6\x01\xe6\x8d\xe1\xe5\x37\x98\xaf\x6a\x8f\x0f\xd5\x4e\xd9\xb8\xd4\x91\x91\x2d\xc6\xb5\x2d\xf1\x14\x7c\x13\x09\x3f\x1c\x72\x7c\xed\xc3\xd1\x9d\x5f\xfb\x70\xc0\x01\xb6\x0f\xf5\x27\xd8\x30\xc1\x1c\xcb\x03\x27\x94\x9d\x7b\x9b\x4d\xf7\x1a\x51\x56\xa7\x2c\x42\xdc\xcd\x80\x64\xcb\x76\x17\x9e\xcf\x23\x7a\x7b\xd8\x65\xe9\x80\x3c\x30\x0a\x2e\x0e\x73\x49\x7c\xd5\x27\x24\x26\x1a\x7c\xfe\xe6\xcd\xd9\x99\x49\xdd\xdc\x13\x48\xbc\x35\x02\x61\xe1\xa1\x46\x24\xbb\xb3\x7c\x27\x00\x67\xc6\xf3\xcd\xa6\xf3\x6b\x4c\x89\x14\xcf\x59\x3e\xd8\x8a\x82\xd0\xda\x35\x93\x55\xce\x58\x82\x08\xef\x6e\x68\xb4\x91\x17\x15\x56\x9e\x1b\x49\xdf\xb6\x28\x7f\x5c\xdc\x9a\xe2\x73\x40\x3a\xfa\xb8\x48\x2b\xde\xf5\x23\xc2\x3d\x4c\x10\xed\x06\xe8\x72\xbb\xec\x7a\x81\xb7\xa9\xb9\x28\x98\x22\x16\x85\xd7\x88\x9e\xc7\x5f\xd8\xb9\x1f\x7a\x8c\x61\xbf\xb6\x96\x47\x8c\x5d\xd0\x1c\x56\xdb\xdf\x0c\xb7\x65\xc8\x22\xb8\x1e\xb9\x1e\x5d\x6e\xc5\x3c\x62\x17\xce\xfc\xfe\x3e\xfd\x65\xcf\x4f\x10\xa4\x68\x89\x19\x47\xd4\xac\xab\x7b\xb6\xf6\x30\x31\x32\x0c\x0c\x90\x4e\x37\xdd\x54\xc4\x10\x7d\x66\x1b\xcf\x47\x06\x30\xbc\xcd\x26\xc4\xbe\x27\x3a\xa6\x5e\x5b\xbb\x16\x93\xa0\xe4\xd5\x6b\x72\xfa\x35\x94\xfe\x1a\xf9\xbf\x2d\x15\x02\x8f\x7b\x55\xe8\x8b\xe7\xe7\x0c\xf1\xed\xa6\x9b\x8c\x47\xee\xe5\x27\xe0\xc3\x6c\x8f\x32\xac\x97\x9b\xd6\x4d\x48\x49\x34\xba\x19\xbe\xe8\x2e\xc3\xe8\xb2\x78\xfe\xfe\x00\xc5\x90\xbb\xb8\xb5\x05\xf3\xe3\x85\x79\xea\x9c\xba\x69\x5c\x10\x54\xcd\x3e\x4f\xbb\xf4\x0f\xd9\x23\xbd\xe3\x29\x0a\xc8\x15\x97\xc0\x2b\x30\x4e\xe3\x74\xc5\x37\x98\x04\xd1\x8d\x45\x5c\xf5\xe5\x04\x85\x0c\x75\x6a\x60\x15\x8a\x16\x71\xd5\x17\x09\x7b\x97\x87\x4d\xd2\x20\x33\x14\x2e\xf4\xee\xf5\x09\x71\xc5\xaf\x9d\x54\x63\x20\x6c\xee\xf2\x09\x75\x4b\x69\x95\xc3\x67\xa1\xce\x9f\xae\xee\x9c\x85\x4a\x7e\x2d\x6e\xcd\xb4\xba\xb5\x1c\xfd\x37\x32\xee\xd3\x02\xe4\x82\xce\xef\xef\x4d\xf1\xc7\x45\x40\x08\x8b\x68\x83\x88\x79\x77\x83\xc3\xf0\x7b\xc4\x38\x8d\x6e\xb3\xcc\x2d\xd3\xad\xff\xc6\xb6\x1b\x44\xe3\xc4\xf1\x2b\xcc\x40\x42\x74\xc1\x13\x21\xe2\xa8\x23\x2a\xdc\xed\x2c\x6b\xf7\x90\x40\xd2\x94\x8b\x72\x97\xe6\xc6\x9c\x59\xcf\x56\x19\x46\x15\x0b\xb8\x8a\x10\xbf\x1c\x83\x2e\x42\x8f\xad\xba\x6b\xc4\x98\xb7\x2c\xaa\xde\x83\xb8\xf2\xe3\x70\xc4\x27\xd9\x20\xe0\x00\x6d\x28\xf2\x3d\x8e\x00\xd5\x4f\xc4\x10\x2e\xc9\xfd\xbd\xfa\xb5\x46\x74\x29\x4c\x16\xe3\x22\xb5\xbe\x24\x22\xf3\xce\x0f\x5b\xb9\xcd\xaf\xcd\x17\xd6\x89\x16\x9d\x02\x4c\x47\x8c\x6b\x87\x44\x9d\x30\x22\x4b\x44\x3b\x4a\xcc\x77\xf8\x0a\x75\x74\xf4\x6e\xc7\xdb\xf2\x68\xed\x71\xec\x7b\x61\x78\x0b\x3b\xaf\x08\xe3\xc8\x0b\x40\xe7\x36\xda\x76\xd8\x2a\xda\x86\x41\x07\x7d\x10\xa4\xc7\x3c\xbc\x8d\x2b\xc0\xbc\x83\x09\x8f\x04\x10\xed\xbc\x8d\xb6\x1c\x81\xce\x8b\x88\x70\x1a\x85\x21\xa2\x9d\x88\x76\x5e\xc4\xc6\x4a\x47\xd8\xe9\x9d\xff\x57\x75\xab\xc1\xff\x83\x06\x60\xee\x1d\xc7\x6b\x14\x6d\xf9\xac\x8f\xfa\x40\xdd\x85\x80\x82\xf7\xfa\x99\x0d\x36\x14\x47\x14\xf3\xdb\x99\x63\xdb\x80\x71\xec\x5f\xdd\xce\x4e\x1d\xc0\x56\xd1\xcd\x1b\x1a\x2d\x29\x62\x4c\xfc\x16\x33\x62\x66\x60\xb2\x88\x0c\xf9\x9d\xcd\x2e\x0c\xb6\xf5\x7d\xc4\xc4\xe8\xaa\xe7\xc6\x8d\x47\x89\x98\x40\xc0\x08\x3c\x41\x0f\xa1\xc5\x42\x44\xb9\x01\x0c\x86\xfc\x88\x04\x1e\x15\x1a\x45\xf5\x12\x47\xe4\x07\x69\xcd\x62\x59\x99\xbc\x97\x40\x31\x8a\x46\xd3\x00\xc6\x35\x46\x37\xf2\x99\x46\xd6\x98\x83\x0d\x45\xd7\x88\xf0\xef\xb7\x8a\x5d\x91\xe8\xdd\x2e\x0d\xb7\xc0\x2d\xe4\x18\xc0\x6e\x3a\x81\xef\xef\xef\x76\x16\x94\xa3\xf9\xa3\xe2\xdc\xef\xd5\x0b\x06\x22\xd7\xc4\xf7\xf7\x17\x73\x0b\x96\x7b\x0c\x3c\x97\x9a\x0c\x60\x0b\x6c\xdd\x53\x33\x3a\x3b\x8b\xe2\xab\x1b\x8a\x26\xc2\x02\x2f\x67\xc5\x99\xe1\x81\x3b\x15\x2f\xc2\xb1\xc7\x91\xc0\x20\x6b\x24\xe8\xe1\x2b\x95\x32\xaa\x7a\xa9\x48\x56\xd1\x88\x05\x88\x19\x82\x2d\xb8\xc3\xc1\xcc\x28\xf0\x6d\x3a\x2b\xba\x09\x6a\x7a\x6d\x81\x45\x4b\x5b\xc2\x71\x38\x33\x7a\xd0\x86\xb6\xb1\xb3\x80\x57\x41\x01\xb8\x88\xe8\x4b\xcf\x5f\xa5\x47\x2d\xb8\x75\x97\x20\xc1\xf3\xbd\x65\x92\x05\x2a\xd1\xb2\x76\xd9\x68\x16\x2d\x94\x8a\xa8\x67\x24\x11\xae\x53\x95\x2a\xfe\xa6\x7b\xa8\x21\x90\xc2\x77\x19\x8f\x28\xea\xea\x7e\x7e\x45\x46\x40\x3d\x66\x6d\xee\x03\x7d\xac\x7b\x40\x6b\xd0\x49\xba\x50\x65\x51\xab\xcb\x4f\xaa\x74\xf5\x0f\x1e\xe3\xdf\x45\x51\x12\x59\x96\x14\x21\xf1\x81\x1d\xe3\xb9\xe1\xba\x2e\x81\xdc\xa3\x4b\xc4\x21\xf7\x96\x3f\x79\x6b\xf4\x2c\x7e\x50\x6c\x04\x41\x3f\x8c\x18\x62\x3c\x09\x74\x8b\x1f\x98\x86\x67\x58\x27\x8b\x88\x9a\xc8\x45\x70\xe3\x51\x44\xf8\xcb\x10\x09\x71\xf0\x14\x9d\x9d\x19\xcf\x8d\x53\xd7\x45\x71\x03\x4f\xad\x12\x54\x1c\x7f\x85\x76\x66\xdc\xba\x75\x42\xcf\xce\x0a\xa9\x5c\x00\x01\xd4\x82\x6b\xef\xf6\x12\xfd\xd3\x23\x41\x88\x4c\x6b\x77\x12\x44\xbe\x14\x3c\xf0\x32\x0a\x6e\xa1\x17\x04\x2f\x85\xf8\x7a\x2d\xe4\x03\x91\x12\x22\xc4\xfe\x95\x01\xe4\xea\xb8\xc1\x5a\xd0\xbd\xc8\xd7\x48\xd1\x3a\xba\x46\xb5\x95\x36\x5a\x18\xc2\x9e\xae\x59\x58\xac\xf1\x07\x4c\xd8\xb9\xe7\x87\xd2\xe5\xa5\xf7\x75\x6b\x15\xbb\x06\x97\xa0\x97\x61\xe4\x5f\x61\xb2\x4c\xca\x3c\x7a\x9e\x9d\x1f\x45\x6b\xd0\xa7\xc8\xe3\x28\x95\xe6\xe0\x8e\x21\xce\x31\x59\xb2\x9a\x7b\x7e\xe2\xd7\x86\x05\x74\xd7\x66\x77\x5b\x56\x71\xdd\x8f\xbc\xe5\x27\x1e\xf8\xf4\x6c\x90\xa4\x9e\xb1\x40\x28\xb8\xf4\xfc\x2b\xc3\x82\xe8\x03\xf2\xb7\x1c\x99\xe5\x71\xca\x14\x02\x99\x76\xe1\x46\xd8\x13\x8c\x9b\x77\x3c\xba\x42\x64\x96\x39\x77\x04\x8c\x57\xdf\x0b\x79\x08\xf9\x0a\x91\x8a\x1a\x39\xe4\xd4\x23\x0c\x8b\xa7\xef\x23\xd3\x08\xfc\x18\x31\x25\x46\x81\xb1\x65\xc8\xb0\x76\xc0\x0f\x23\x52\x87\x13\x20\xa9\x6a\x7c\x3c\xfc\x28\xda\x44\x86\x05\x65\xc3\x26\xda\x83\x81\xb7\xe0\x88\x7e\x2f\xad\xda\xe4\xae\x24\xa2\x3a\x2f\x0b\xab\x65\xee\x3e\x7e\x94\xcc\xdd\x8d\xb6\x9c\xe1\x60\xcf\xc9\xb0\x07\x79\xbc\x32\x91\xb5\xc8\xba\x33\x4b\x41\xb5\x49\x2c\xe7\x29\xd7\x82\xe0\xfe\xfe\x34\x99\x90\x7a\x35\xc9\xcc\xf8\xa5\x05\xa8\x8b\xe4\x21\xb1\x18\x18\x55\x00\xe9\x51\x38\x25\x67\x67\xa7\x54\x07\xa6\x0a\x93\xc0\x2c\x0e\x0b\x52\xe2\xc8\xb0\x00\xb2\xce\xce\xe4\xd4\x8e\xc8\x65\xb8\xa5\x26\xb2\x76\xa5\x03\x91\xb9\x19\x72\x27\xa4\xf3\x61\x4b\x0f\x09\xb1\x92\x82\x8c\xba\x1c\x5e\x62\x12\x48\x18\x79\xc1\x94\xaf\x6e\x97\xca\x54\x28\x9e\x8a\xbe\xe4\x9f\x05\x38\x78\x45\x18\xa2\xb1\x28\x2d\x3b\x5b\xe4\x3c\x6b\xee\x8d\xc2\x89\x6e\x89\x8a\x1f\x96\xaf\x33\x75\x25\x63\x50\x2b\x61\x51\x8c\x8b\x64\xb6\x8c\x88\xad\xe8\x59\x8b\x75\x59\xdc\xde\x3e\xf9\x9b\xa5\xa0\xd5\xc0\xd5\x98\x70\x44\x44\xf3\x1f\x2f\x6b\xcb\xc7\xa3\x57\x9c\x6f\xce\x19\xf7\x78\x29\x25\xce\x43\x7c\xc3\xad\x65\x31\xa2\x34\xa2\x2f\xe4\xe3\x59\x69\x2a\xf1\xb3\x33\x0e\x25\x04\x4b\xbf\x5d\xd8\xf3\x58\xfd\x67\x1e\x9d\xe0\x85\xb9\xf1\x28\x43\xaf\x08\x37\x29\x54\x88\x58\xd2\x38\x78\xf5\xd3\xfb\x97\x6f\x7f\x7a\xfe\xfa\xb7\x77\x2f\xdf\xfe\xfa\xf2\xed\x6f\x2f\xdf\xbe\xfd\xf9\xed\xd9\x99\x8c\xaa\x86\x01\xe2\x1e\x0e\x21\x26\x01\xfa\xf0\xf3\xc2\x34\x82\x78\xd1\xd0\x49\xa8\xdd\x59\x44\x5b\x12\xcc\x8c\x38\xea\xdd\x40\x1f\x30\xe3\xcc\xd8\x25\x2a\x7f\xff\xb0\x5d\x5d\x1f\x91\x6e\x94\xb2\xf7\x97\x4d\x50\x1e\x8f\xe2\xb1\x59\x0e\x8c\x7f\xa1\x5b\x23\x16\x4d\xc6\xb9\x34\xc5\x9e\x49\x86\x2e\xe9\xa0\xab\x6b\x45\x62\xc3\x9a\xd5\x02\x2c\xa2\x30\x10\x4b\x3a\x62\xed\x40\x46\x05\x94\xcd\x9b\x3c\xbc\x90\x9d\xf2\x4a\x3a\xb1\x3a\x94\xe6\x9f\xbe\xa1\x6e\x41\x11\x5b\x99\xba\xc1\xbd\xf6\x4d\xaa\xe7\xb1\x0a\xe7\xf7\x38\x7a\x87\x98\x58\xd2\xd7\x68\x48\x98\xae\x41\x41\x8e\x28\x52\x08\x33\x55\xf6\xad\x54\x78\x1f\xa5\x40\x89\x16\x1e\x55\xfa\x52\xc9\xc6\xdc\x80\x60\x8e\xd6\x86\x75\xa2\x9e\x31\x65\x2f\x68\x44\x0c\x40\xb6\x61\x98\x78\x8b\x10\xd4\xcf\x41\x0a\xcc\x93\x9e\x6b\x60\xa9\x72\x55\x81\x66\x9d\x5b\x23\x68\x3e\xd9\xd5\x8d\x79\xdd\xf5\x5b\x4c\xce\x1a\xa3\x2e\xa5\x36\x38\x58\xcd\x9d\x94\x28\x2d\x07\xf0\xb7\x4c\x9d\xda\x16\xcc\xd0\x32\x3f\xc6\xe0\x4e\x8f\x71\xda\x30\x01\x14\x84\xc9\x40\xa3\x84\x09\xe4\x73\xc0\x33\x1c\x26\xf5\x82\x9a\x12\x45\x49\x99\x5a\x4d\x02\x89\xcc\xe4\xad\xe5\xf4\xaa\xf9\x9d\xd5\xb3\xe9\x3c\xd2\x27\x49\x0c\x98\xf2\x30\x82\x9b\x68\x63\x6a\xbd\x9f\x9b\xc3\x48\xde\x69\x28\x81\xeb\xa7\x6f\x53\x2b\xfa\x0e\x3b\xdd\x8a\xbe\xc8\x4e\xc9\x8d\x59\x16\xcf\x64\x6e\x9f\x68\x96\xc8\xbd\xad\xef\xd7\x0e\x54\xab\x9b\x74\x14\x34\x44\x49\x00\x96\x20\x8a\xc8\xe5\x20\x12\x71\xe2\x8b\x45\x79\xf8\x11\xc3\xe5\x97\xbb\xfa\x99\xcc\xf4\x78\x09\xd2\x68\xa8\x2b\x6a\x96\x0c\x75\xf9\xd4\xc8\xaa\x2d\x92\x29\x99\x19\x07\xf9\x46\x94\xd9\x96\x89\xfe\xb5\xe1\x9a\x1f\xac\x18\x57\xd5\xf1\xfd\xb8\xaa\x92\x09\xae\x41\x99\x7d\x3e\x13\xae\xf5\xfa\xa4\xcd\xfa\x4b\x2b\x83\xbd\xa8\xaa\x92\x31\xaa\x6d\xb4\xc6\x02\x87\x1c\xc9\x7d\x95\xc7\x5e\xaa\xe9\x62\xb1\x3f\x3f\x5b\x63\x7a\xb9\xae\xf3\x94\x7f\x93\x10\x3c\x7b\xa5\xae\xb6\x79\x52\xc7\x30\x9f\x9f\xc4\xc5\xe4\x81\x48\x62\xe9\x06\x36\x34\xe2\x11\xbf\xdd\x88\x15\x04\xfb\xf9\x86\xc4\x3d\x84\xbe\x17\x86\x42\xa4\x5b\x67\x67\x26\xba\xa0\x73\x97\x5c\xd0\xb9\x95\x9a\x8e\xc5\x54\x42\x09\x23\x20\x15\x28\x41\x5c\xc3\x48\xe5\xa2\x68\x41\x8b\x45\xea\x05\x38\x32\x66\xea\xae\x4f\xe4\x51\x7f\xa5\x7f\x70\xf4\x81\x1b\x33\xe2\x22\x75\x58\x72\x57\x71\x54\x33\x3b\x66\x02\x0d\xf4\xac\x8e\xbc\x3c\xa6\x29\x01\xf9\x2d\x58\xe5\x50\xde\x26\xbf\x6f\x28\xe6\xfa\xfb\xce\x9a\xa1\x0b\x3e\x77\x09\x40\x3b\xf3\x6e\x27\x9b\x6b\x5a\x7a\x2a\x0e\x60\xb3\xbb\x1d\x50\x5f\x51\xa0\x15\xb9\xbe\x67\x38\x30\xa5\x71\x23\x5d\xdc\x0a\x36\x77\x29\x71\xaa\x59\x00\x2f\x29\xea\xb8\x40\xad\x29\xa6\x6a\xb6\xa0\x02\x34\xb3\x7e\xc6\x44\xf1\xe9\x77\x04\x70\x95\xd5\x87\x21\xae\xe9\x84\x11\xfb\xc8\x25\x6b\xda\x93\xdf\xb7\x88\xde\xbe\xf1\xa8\xa7\xfa\x53\xe1\x3e\x2f\x65\xaf\xc9\xe2\xa7\x87\xf1\x0a\xdd\x32\x93\x57\x97\x4f\x4d\x14\x02\x38\xc8\xd6\xc3\x2d\x81\x57\xce\x76\x4c\x48\xad\xa6\x7f\xa2\xd7\xd4\xf3\x92\xf8\xa2\x6a\x04\x42\x97\x08\x5e\xd5\x9e\x8b\x6c\x9f\xc2\x8a\x3e\xa1\x6c\x9f\x28\x40\xc0\x30\x4e\xdd\xf0\x02\xcd\x9f\x89\x8f\x99\x36\x44\x41\xc9\xb4\x8a\xbb\xc6\x25\x8f\x25\xf7\x6d\x27\xc4\x00\xa1\xd5\x4e\xfa\xac\x90\x17\xd6\x09\xa1\xba\x05\x5a\x06\xb8\xb4\x92\xde\xfa\x32\x77\xd0\x63\x44\x58\xb5\x5d\xb5\x65\xd8\x66\x76\xa7\xd6\xbe\xb3\x3b\x8f\xcd\x0c\xbd\xa0\xdf\x01\xfd\x5b\xf5\xdb\xd8\xed\x80\xc2\xfa\x07\x3d\xef\x6a\xe6\xda\xbe\xd5\x46\x76\xe6\x00\xee\x5e\x18\x06\x30\x36\x42\xd0\x4a\xa2\xa4\xfb\x7c\x3e\xc5\x72\x6b\xd3\x98\xc3\xb5\xb7\x29\xf1\x32\x75\x4b\xcb\x7e\x43\xae\xe9\xac\xd2\x64\x45\xc0\x50\xc2\xd9\x88\x63\xcf\x8c\x17\x2b\xe4\x5f\x31\xe3\x89\x69\x03\x92\x46\x83\xf1\x8c\xc1\xaa\xf2\x41\x9a\x79\x85\x25\x4a\x87\x19\x64\x84\x80\x4e\x8a\x3c\xd1\x99\x14\x4e\x5d\x37\xdd\xdd\x57\x50\x71\x7b\x65\x51\x91\xb1\xff\xe0\x3b\x49\x74\x81\xc3\xce\x8a\xb7\xfc\xee\xef\xed\x1d\xb0\x2d\x7d\x94\x5c\x81\xde\xf9\xd1\x96\xf0\x19\x05\xa1\x77\x89\xc2\x99\xc6\xfb\x99\xf1\x3c\x0c\x8d\x59\x11\x23\xeb\x89\xd1\x31\x8d\x27\x54\xe6\x70\xf0\xbd\x10\xa9\x78\x03\xd3\x7a\x62\x58\x06\x50\x3c\xc3\x77\xbb\x04\x0d\x7e\x61\xcf\xa1\xac\xd8\x15\x15\x8a\xb2\x3a\xe3\x88\xe9\x58\x15\x54\xe1\x29\x02\x4f\xc4\xe2\x63\x4b\xb8\xe8\x70\x75\x73\xbc\xf6\xd2\xf7\xec\x24\xa1\x88\xe1\x3f\x1e\x55\xab\x37\x2c\x02\x65\x83\x05\x8f\xe3\x0d\x26\x33\x15\x43\x52\x5a\xf8\x1d\x24\xa9\x73\xae\xce\xb2\x40\x8e\x3d\xb5\x72\x6b\x57\xf4\xc2\xbc\x53\xae\xa5\xd9\xdd\x0d\x0e\xf8\x6a\x46\x20\x26\x04\xd1\xff\x11\x3f\xc0\x0a\xe1\xe5\x8a\xc7\xcf\xfe\x29\x7f\xc9\x5d\x96\xbd\xce\xd0\xc3\xd5\xc9\x0d\x26\x86\x55\xe1\xef\x54\x5d\xcc\x7b\x1f\xc1\xa9\xa3\xb1\x0c\x70\xf0\x7c\xb3\x41\x1e\x35\x2d\xd9\x21\xf5\xa3\xd4\x13\x5d\xce\xbc\xd3\x9b\x6d\x95\x8d\x37\x3b\x52\xab\xfb\x5c\xe9\x33\xdd\xdf\xed\xa6\x2d\xac\x4a\x76\x8d\x02\x14\xca\xfd\xab\xda\xcd\x5f\x09\x92\x7f\xe4\x71\x5e\x0c\x44\x8c\xa5\x0a\x4d\xe3\x0c\xc2\xcf\x6b\x6a\x3d\x60\x2e\xbd\x7b\xfd\xcb\x3f\x7e\xfb\xd7\xcb\x7f\xbb\x08\xbe\x79\xfb\xea\xc7\xe7\x6f\xff\x2d\x7f\xe9\x40\x5e\x81\x0e\x2b\xbc\x32\xb6\x38\x30\x00\x76\x33\x65\x8d\x57\xdf\x1b\x27\x15\x09\xa1\xa0\x0a\x24\x31\xcd\xd0\xa4\xee\xdd\x0e\x30\x90\x17\x69\x71\x28\x95\x65\x81\xd0\xa4\x00\xef\x7f\x6d\xfc\xe4\xad\x91\x51\x03\x03\xee\xf4\xa3\x5f\x25\x76\x86\xb1\x8b\x4b\xbd\xbf\xdd\xd4\x96\x8a\x61\xde\x6e\x43\xc4\x9a\x80\xd4\x5a\xf5\x95\xf4\x45\x14\x41\xc9\x56\xb0\x46\x02\xfa\x63\x14\xe0\xc5\x6d\x2b\xd0\xef\x3d\xee\xf9\x88\xc8\x68\xd3\xda\xf6\xa9\xb5\x97\x77\xfd\x28\xa2\x01\x26\x35\x27\xdd\xfe\x62\xe1\x36\x2c\xfc\x53\x14\xa0\xcf\xc1\xc4\x2f\xc4\x58\x15\x87\x3a\x7e\xf9\x0e\x2d\xe5\xd6\x5d\x43\x1d\x8f\xc1\x33\x41\xe5\x69\xd2\xbd\xbc\x92\x7b\x42\x51\x28\xc3\x00\xd9\x0a\x6f\xca\xdb\x45\x80\x6a\x0b\x2b\x65\x24\x76\x4c\x8c\xf4\xc3\xcf\x6f\x5f\xbe\xfa\xc7\x4f\xfb\xd9\x0a\x57\xb2\x55\xe4\x9a\xf9\xf2\xb9\xe1\xca\xb1\x9c\x90\x67\xd6\x5e\x9e\x63\x66\x28\x78\x6e\x0f\x53\x31\x33\x04\xd1\xfe\xd7\xc6\xbb\x78\xfb\x5f\xc0\x51\xb8\xf2\xd8\x8f\x1e\xb9\xb5\x92\x18\xb2\x04\x50\x4c\x82\x32\x14\x11\x53\xc3\x52\xab\xa9\x3d\x1c\x95\xec\x96\x3d\x80\xb1\x8a\x0b\x28\x09\x79\x1e\x0f\xed\x9f\x83\xbd\x9e\xbf\x7f\xff\xf6\x9d\xdb\x46\x5e\xd5\x31\x56\x41\xe5\x02\xef\x93\x71\xcc\xf7\x88\xf9\x14\x6f\xd4\x68\x36\x30\x97\xcc\x38\xfb\xd3\xbb\x96\x70\x7b\x74\x78\xa6\x71\x2e\xb4\x19\x8e\xc8\xa1\xe0\x8d\xbd\x78\x43\x91\x8f\x02\x44\xfc\x72\xb5\xa9\x62\xce\xf4\x77\x9f\xf5\x50\xb4\x39\x14\x13\x4b\xcb\x43\xd6\xf0\xdc\xdf\x47\xbf\x62\xe9\x00\x91\xdb\xb4\xac\x0e\xdc\x7c\x1e\x04\xfb\x64\x7c\x16\xf4\x4d\x44\xcb\x8a\xa3\x80\xd3\x8f\x88\x7b\x15\xba\x47\x55\xd3\x46\xa9\x48\x48\x65\x08\x05\xcf\xcb\xcd\x49\x27\x78\x0c\xa6\xfc\xdd\x8d\x60\xed\xcc\x2a\xd5\xfd\x76\x66\x95\x25\x64\xaa\x9a\x6d\x52\x92\x25\x40\x1e\xb8\x48\x06\x25\xc7\x8f\x65\x96\xcb\x0d\x7f\x6e\x3a\xcc\xb3\x12\xdb\xdb\x27\x10\xaf\xae\x1f\x41\x12\x62\xf6\x83\xda\xe4\xfe\x53\xc8\xc0\xc7\x91\x7d\xff\x42\xb7\xfb\x4d\xb5\xc7\x11\x82\xaf\x23\xff\xaa\x15\x5f\xfe\x10\x7a\xcb\xf2\xf2\xa1\x00\x24\xa7\x79\xbb\xa9\xf5\x88\x93\x41\xeb\x7f\xbd\xa5\xdf\x20\x48\x5a\x4b\x80\x84\x29\x41\xd1\x6b\x28\x86\x06\x94\x76\x94\xf2\xd3\xb0\xb8\xdc\x97\x31\x24\xf7\xf7\x86\x61\xed\x9a\xad\x0c\x69\x8c\x7c\xfc\xb4\x62\xdb\xf5\xcf\x8b\x5f\x88\x72\x81\xde\x56\x05\x43\x79\xec\x5d\x75\x28\x94\xda\xb4\x97\xeb\x8a\xec\x89\x82\xe3\x9f\x7a\x51\xe5\xd4\xf3\x0e\x5a\xe9\x63\x93\x89\x99\xb7\x67\x6a\x61\x93\x01\x6f\xff\x6b\x43\xa8\x3d\x79\x66\x64\x3f\x98\x5c\xb3\x35\xc0\xd4\xa8\x3c\xf9\x2e\x67\x17\x57\xbc\xd7\xae\xde\xba\xb7\xad\xe6\xaa\xea\x44\xab\xb9\x2a\x41\xdf\x7b\xcb\x25\x0a\x34\x01\xea\xbb\xd6\x6a\xae\x6a\x24\x2b\xd7\x94\x09\x16\x35\xeb\x51\xf9\x32\x9d\x04\xa0\xec\xe6\x36\x6d\x10\xd6\x4f\xea\xd8\x4d\x0e\x90\x98\xce\xb2\x36\xcc\xfe\x19\x4f\xb7\xa2\xd8\x88\x29\x5d\xde\x8b\xb6\x5d\xd7\xdd\x2f\x3e\xe2\x96\xa4\xf4\xd0\x0d\x65\x66\x76\xeb\xa6\x5a\xb6\xf2\xad\x2d\x8d\xb4\xfd\x52\x2a\x5e\x58\xfd\xe5\x8e\x79\xa8\x3b\x46\x58\x61\x9f\xc1\x1d\xf3\xbe\x42\x73\xe7\x0d\xf3\x12\x9f\x5c\xc8\x33\x96\xaa\xf8\xbf\x30\x29\x4d\x9e\x62\x13\x85\x6b\x45\xea\x7c\x3f\x35\x82\x4a\xbe\x6b\x96\x87\x12\xac\x61\x09\xa0\x7a\x43\xc4\x30\xbf\xf7\x96\x3f\x5f\x23\x4a\x71\x85\x00\xbd\x8c\xa2\x10\x79\xe4\x13\xfb\x3d\xd5\x7c\x7a\x13\xef\x16\x56\xe3\xad\x80\x5e\xc4\xdb\x87\x7b\xa1\xfe\x27\xde\x6e\xac\x06\x4a\x5d\x1b\x15\x2f\x5b\x49\xd3\xa4\x9a\x7a\xef\x9d\x9e\xf4\xfb\xba\x59\xf7\x36\xd9\x37\xad\x96\x57\x09\xa1\xea\xe5\xd7\x9d\xda\x67\x9c\x25\x5b\x97\xd5\x22\x2c\xae\xc9\x7a\xd6\xf0\x3e\xb3\x9b\x53\x27\x0c\xf5\x1e\xe8\x77\xb7\xa6\x11\xeb\x89\x04\x11\x2b\xdd\xaa\x4d\xe7\x4b\x8d\x42\x51\xf1\x2e\x76\x12\xe5\xa2\x03\x5c\xe2\xaa\x66\xe5\x80\x8e\x42\x5f\x4f\x2e\x29\xf2\xae\x4e\x64\xa9\x64\xb7\xb9\xb6\x58\xc2\x50\xb9\x72\xf1\x7e\x75\x6d\xb1\x98\xc3\x72\xa5\x04\xb8\x13\x47\xd8\x70\xa1\x1c\x9a\x3c\xaf\x49\x80\xed\x5f\xba\xe1\x58\x77\x9b\xf6\x49\x83\xcf\xb3\x6d\x24\xd6\xa6\xdf\xa3\xd0\xbb\x6d\x02\xfc\x0e\xad\xbc\x6b\x1c\x35\x0a\xb6\xf7\xef\x5f\x37\x62\x52\x29\xc0\x0e\xd0\x96\x1f\xb5\x6f\x11\xe7\x87\xd9\x97\x44\xe6\xf3\x5d\x6b\x23\x83\x97\xe9\x67\xcc\x5e\x90\x4b\x57\x20\x0f\xfb\xd3\x98\xe1\xef\xc2\x48\x67\x80\x49\xe7\x42\xfc\xe8\xfd\xed\x06\x01\x1a\x45\xfc\x97\xb7\xaf\x33\xaf\xf5\x93\x9d\x75\x42\xf2\x21\x39\x7a\x63\x5f\xa2\x67\x1a\x81\x6f\x80\xbb\x8d\xc7\x57\x33\xe3\x7c\x16\xf8\xc6\x0e\xd4\x00\x26\x07\x0c\x13\xf0\xe4\x49\x7d\x99\x95\xbc\x05\x5c\xc3\xff\x9d\x88\xf9\x26\xf7\xe8\xb3\x40\x44\xa9\xed\x18\x4a\xfd\x6c\x59\xe5\xac\xba\xca\x64\x9f\x22\x53\x6f\xe6\x59\x6d\xe5\x28\xc0\x3c\x53\x39\x0e\x8c\x42\xc5\x71\xc0\x73\x0c\xa2\x7f\x97\x3a\x70\x75\x9d\xc2\x5c\x5d\xd7\x37\x18\x9f\x86\x49\x48\x74\x85\x6e\x8b\x6d\xe6\x3b\x25\x20\xce\xe5\xa3\x86\xae\x49\xc0\xa4\x7f\x39\x50\xc1\x1a\xdd\xb6\xa8\x78\x7e\x98\xa1\xa2\xfc\xf5\x49\xe8\x57\x1a\x42\x29\x22\x63\xc0\x62\x45\xc9\x31\xda\x0c\x37\xea\x27\x25\xf6\xe2\x0b\x7d\x3f\x61\x4c\x19\xf1\x57\x21\x9a\xca\x02\x52\x2f\x03\x64\xa2\xb6\x38\x27\xca\xa3\x07\x2f\x27\x07\x08\xe3\x2f\x3a\x7a\x06\x54\x5d\x3d\xca\x55\xe6\x99\xd7\x98\xc5\x07\x0e\x4d\x2d\x1f\xc3\xc8\x0b\xa4\x78\x2d\x07\xe1\x4a\x51\x92\x48\x92\x83\x0f\xc6\xec\x00\x45\x9b\xa8\xe6\xc4\x4d\xe0\x67\x0f\x50\xeb\x4e\x64\xcf\x94\xc5\x2e\x6c\x15\x34\xca\x5c\xb2\x0d\x43\x99\x0e\x28\xf0\x8d\x53\xd7\xa5\xe9\x19\x11\x05\x88\xd5\xc9\x11\x69\x21\xfd\x10\x51\xd5\xc2\xfd\xfd\x5d\xe0\x33\x19\x25\x0a\x02\x7f\x76\x27\xc0\xe5\xaf\xdd\xee\x84\x95\x4c\x39\x1d\x03\xbf\x44\xfc\xb9\xcf\xf1\x35\x32\x31\x0c\x7c\x28\xca\x00\xf1\x8d\x25\x81\xd9\x9a\x3c\xef\x7e\x7d\x03\x57\x1e\x5b\x99\x49\xff\x4f\xb3\x74\x4e\xce\xe9\x16\x29\x2d\xba\xc2\x4a\x87\xb4\x93\xe8\xdb\xe4\x88\x6a\x21\x18\x8d\xba\x61\xe6\xd8\x8f\xc4\x31\xcb\x5f\xd6\x89\x0c\x80\x4d\xc3\x8e\x4d\x99\x38\x6c\x43\xa3\x35\x66\x08\xea\x4b\x6c\xb2\x95\x12\xd3\x02\xc5\x32\x29\x2a\x8e\xe8\x26\x87\x81\xaf\x26\xd9\xce\x02\xa7\xb6\x3e\xde\x52\x77\x32\x81\xba\x71\x78\x29\x82\x7e\x14\xa0\xfb\x7b\xc3\x00\x3a\x07\xc7\x0c\x41\xfd\xed\xfe\x1e\xe9\x83\x95\xf7\xf7\x86\xbc\x28\xc7\x10\xbc\x17\x9f\xe4\x44\xe9\xb1\x4d\x99\x1f\x30\xf3\x1b\xd0\xb8\x0e\x97\xaa\x7c\xf4\xf7\xf7\xb4\x58\x97\x05\x64\xa4\x64\x7c\xca\x53\xd4\x91\x94\x8a\x41\x4e\x52\xd6\x2a\x70\xcc\x49\xdd\x10\x2b\xc4\xa9\x20\x8a\x7d\x9a\x56\x0f\x79\x14\xc7\x3e\xa6\xc7\x44\x87\x15\x2b\xa8\x12\x73\x59\xb3\xf0\xec\x2c\x84\x81\xff\x4c\x7c\x68\xde\x8c\xe9\x01\x04\xdb\xea\xf7\x4c\x02\xb0\xd9\xc5\xbc\xc4\x33\x48\x0d\x62\x3d\xdf\xf0\x22\xc7\x20\x45\x80\xc2\xa8\x23\x39\xc0\x50\xdd\x8f\x54\xe0\x90\x8f\xae\x3c\x26\x5d\xca\x45\x75\xf1\x76\x5a\x6a\xe6\xe3\x4f\xfe\x4b\x4e\x7a\xec\x17\xbe\x4d\x92\xb4\x7d\xd2\x0a\xc9\xee\xa5\x09\x5c\x3e\xa5\x4a\x2b\x8e\xa7\x66\xa6\x83\x14\xab\x42\xa8\x04\xcf\xc3\xd0\x2c\xa7\x9c\xa0\x85\x63\x46\x69\x51\x19\x91\x4f\xc1\x5d\xe0\xeb\x0a\xbe\xbb\x7d\x17\x6e\x97\x26\x82\x81\x0f\xa8\x92\xb3\x96\x8c\x0c\x95\x19\xf6\xd2\xac\x55\x85\x13\xc7\xcd\xf1\xae\xa8\x24\x0f\x1b\x19\x4f\xda\x29\xb1\x75\xb1\x3f\xd2\xbf\x94\xd5\xe4\xd1\x4f\x61\xe7\x58\x20\x13\xcf\xcf\xd1\x7a\x13\x7a\x4a\xf9\xcd\x8c\xb8\xd3\xca\x86\xda\xc3\x28\xd2\x04\xb3\xc0\x25\x5a\x44\x14\xfd\x98\x67\x83\x72\xa0\xad\x96\x57\xe9\x91\x67\xd3\xda\x15\x99\x27\x7f\x60\x11\x73\xb4\xae\xd3\xa9\x3a\x06\xbb\x78\x50\x43\x96\xc9\x2f\xfe\x2a\x64\x72\xac\x85\xe3\xd2\x19\x36\xd4\x27\x20\x4f\x6d\x80\xd9\xeb\x54\x73\x89\x6a\x67\x69\x03\x71\xbe\xb1\xb5\x47\xbc\xa5\xca\x80\x01\x0c\x3f\xc4\x72\xf1\xf5\x89\x38\x0d\x04\x48\x30\xc6\x75\xe1\x28\x6d\x9e\x3e\x1a\x7f\xcc\x7e\x42\x37\x46\x9c\x91\x43\x3c\x83\x81\x8a\x88\x7e\x8b\xfc\x88\x06\x66\x5b\xc6\x55\x3c\xf0\x95\xb2\x6d\x33\x6b\x7e\x8c\x14\xab\x13\x54\x65\xbe\xa8\x61\xd1\x9c\x28\xc2\xc1\x7e\x46\xfc\x12\x1c\xd5\x8e\x05\xf4\xfa\xe7\x68\x79\x20\x7f\x58\x29\x77\x2e\x09\xe8\x2b\x4b\x45\x93\xf5\xb2\xa8\x99\x03\xd8\x3e\x16\x78\x1e\x86\xdf\xdd\xa6\x02\xc9\xdc\xc7\x06\x5f\x6a\xa0\x4b\x63\xfc\xc8\xe7\x66\xf2\xb6\x47\x8d\xc2\xa8\xce\xd4\x91\x49\x27\xd5\x02\x8d\xd8\xb3\xd2\x4e\xe3\xd6\x64\xb8\x79\x24\xf7\xd9\x91\x9b\x88\xfb\xec\x83\x0c\xa1\x1b\xad\x84\x8c\xbb\x4b\x08\x64\x35\x9a\x6f\xeb\xe1\xd3\x01\xff\x6f\xb4\x2c\xaa\xc5\x49\x96\x6c\x0f\x10\x2b\x40\x8d\x81\xd0\x2f\x5e\x18\x46\x37\x06\x50\x11\xa0\x95\xeb\xbf\x38\x15\x8c\xb0\xaa\x11\xb8\x53\x1d\xba\xd0\xab\xc9\xbf\x1b\xbb\xb9\x58\xa4\xf9\x1e\x17\x4a\x4d\xbc\x83\x3c\x52\x17\xfa\xee\x39\xa5\x28\xa6\x1e\x41\xbe\xcc\x63\xff\xe1\xd6\xc8\xed\x17\x22\xbd\xb3\xad\x8d\xf4\x3f\x87\xf1\x54\x9a\x20\x7f\xc9\xa1\x47\x90\x43\x9f\x46\xca\x7c\x69\xd3\xef\xaf\x29\xff\xa5\x8c\x9e\x64\x8e\xb6\xb1\x71\x3f\xd1\x24\x7d\x0c\x4b\x37\xc7\xfc\x9f\xc0\xde\x3d\x12\x13\xb7\x22\x1b\x7c\x3a\xda\x57\xd7\xed\x6c\xc2\x62\xfa\xbc\x2f\xe7\x84\xb9\xba\x6e\x36\xae\xae\xae\x1f\xd7\x4c\xca\xe4\x83\xb9\x42\xb7\xf7\xf7\xc6\xb9\x51\x91\x70\x4e\xd5\x04\x68\x95\xbf\x3b\x1e\xe8\x93\x92\xbd\x45\x0e\x30\xad\xe8\x83\x0d\x28\x95\x26\x39\xef\x09\xe4\x80\xfe\x59\x0c\x8b\x84\x29\x0e\x62\xe2\x72\xc8\xb9\xc7\x7c\x44\x82\xc7\xbb\x96\xe9\xbf\xc2\xc8\x90\xb3\x2d\x93\x6d\xb1\xd6\xb6\x50\x41\x57\x75\xbe\x71\x1e\xe7\xad\x91\x93\x0c\xb0\x7d\xd3\x08\xe0\x43\x1d\xe9\xb9\xc9\xa1\x67\x03\xce\xce\x86\x7c\x34\x4c\x08\x1c\x4b\xcd\x73\xa6\x4c\x91\x3c\x70\x08\x58\xd9\x17\x5f\xe1\xe3\x47\x9a\xc7\xe3\xe3\x1f\x49\xff\xc8\xb3\x62\x0f\xa9\x36\x33\x34\x99\x66\xb9\xb4\x61\xb9\x5c\x96\xba\x23\xff\x42\xb7\x26\x91\xfd\xb0\x66\xe8\x4b\x59\x0b\x57\xd7\xe7\x71\x8c\x44\xf5\xd4\xcb\x81\x2a\x83\xe2\x53\x44\x08\x25\x5e\x94\x2a\x7d\xa1\xed\x98\x7d\x0e\x96\x16\x99\x27\x25\xdc\x46\x5a\x10\x9a\x1f\x33\xf9\x4f\x2d\xb9\x67\x2e\xb3\xaf\x6a\x1d\x41\xb6\x61\xa8\x7f\x58\xb5\x89\x11\xf3\x59\x59\x5b\x91\x7b\xaf\x51\x56\x38\xb0\x76\xb0\x22\xff\xef\x15\x75\x24\x15\x75\xad\x4d\xc5\x07\x5a\x20\x95\xec\xc4\x73\xf9\x38\xad\xc4\xce\x90\x77\x39\xe5\xaf\xd9\x43\x96\x95\xcf\xc3\x29\xbb\xf4\x3f\x98\xaf\x0a\xb5\x00\xf4\xc4\x38\x37\xf6\x98\x33\x5c\xe5\x39\xcc\x58\x35\x95\x9b\xf5\x89\xd4\xad\x8b\xe5\x38\x48\xea\xb2\xac\x20\x25\x20\xac\x14\xa4\x35\x15\xd2\xdc\x5a\x8c\xa5\x66\xb6\xac\x2c\x2b\x77\x55\x63\xfa\x64\x1b\x08\x2b\x36\xdd\xeb\x73\xf5\x67\x66\x64\xbc\x47\x9a\x84\xd0\x94\x03\x33\xe4\x95\x16\x95\x51\x15\xc6\xc0\x1e\x18\x6e\x36\xb2\x22\x4e\x89\xdd\x52\x20\x9c\xf0\x15\x8d\x6e\x3a\x68\xf7\xc5\x84\x7b\x2e\x14\xad\x85\x84\xd7\xa0\x9f\x52\xc4\x37\xf5\x5a\x06\x28\x7e\x66\xdf\xfd\x1e\x49\xa0\xe2\x25\xff\x9b\x17\xa0\x2d\x46\x4b\x45\x8d\xee\xd3\x69\x01\x56\x97\xeb\x54\xbc\xe2\xd1\x3a\x5a\x52\x6f\x53\x38\x44\x7a\x40\x2a\x77\x75\x94\xfb\x41\x8a\x2f\xfc\xfa\x15\x1f\x60\x6e\x21\x8f\x5d\xf2\x75\xbf\x4e\xa4\xad\xcc\xff\x98\xc1\x0f\x59\x01\x3c\x74\x32\xe4\xd3\xbf\xd7\x68\xa9\x3d\x2b\xf3\xb2\x3b\xb1\x36\x47\x7c\x61\xa2\x15\x83\x68\x64\x5e\x58\x5e\xd6\x5d\x24\x0e\x93\xcc\x64\x2c\xd4\x8b\x80\x17\x49\x8e\xa8\x52\x16\xd4\xb4\xb1\x50\x68\x38\x02\xee\x52\xa6\xce\xcc\x70\x9c\x1e\xe8\xf9\xd6\x79\xc6\xe2\x6e\xe0\x7c\x00\x79\x51\x7d\x6a\xdf\xa2\xbc\xce\x4a\xae\x16\x64\x9c\x66\x51\x7a\x90\x64\xa9\x92\xb8\x80\x35\x75\xd8\x8c\x6a\xdc\x7f\x8a\x02\x64\x96\x8b\xc8\x33\x18\x96\xa4\xc6\x27\x73\x28\x1c\x7e\x39\x40\x2d\x77\xf0\xc2\xd5\x01\x07\xb1\x45\xdb\xe4\xcf\xc5\xe4\x96\x28\x26\x53\x5c\x1d\x6d\x4e\x02\x9d\x23\x7b\x08\x78\x85\x9d\x94\x4d\x24\x1b\x77\x9b\x19\x00\x69\x07\x72\xf3\xbd\x01\xa9\x24\x8e\x5d\xeb\x5f\x8f\xea\xcc\xec\x46\x3c\x5c\x7b\x56\xa7\x4c\x6d\xb2\x5b\xe5\xe4\x40\x47\xa3\x45\x93\xb1\x2b\x2a\xd2\xbf\xa2\x3a\x3f\x39\x8b\x3d\x34\xb4\xb3\x5e\xab\xec\x65\xb0\xda\xb5\x12\xcf\xad\x8d\x94\xe7\x09\xca\x33\xb7\x5f\x68\x33\xe9\xab\x91\x23\x32\x74\xf7\x20\xb3\xba\xce\xaa\xce\x84\x95\x27\xb7\x81\xfc\x58\xbb\x57\x20\x6a\x3a\x69\x88\xdf\x01\x39\x3f\x9f\xca\x47\xd7\x44\xd8\xf4\xc8\xcc\x97\x0d\x4d\x52\xa2\x95\xa0\x1b\x4d\x44\x19\x54\x6f\x1a\x6f\xbc\x25\xea\x90\x88\xab\x2b\x9b\xd2\x55\xac\x3c\xab\xe0\x0e\xec\x01\xa8\xbd\xac\x49\x23\x98\x9e\x1e\xfa\x02\xb7\x34\xfd\xe9\xe2\x03\x02\x7f\x8f\x4d\x2e\xe7\xc6\x5e\x01\x59\x17\x0c\x9a\x4b\xdd\xfc\x90\xc9\x94\x44\xb5\xcb\x53\x18\x45\x20\xd5\xeb\x2c\x58\xd5\x51\x9e\x9a\x76\x89\xba\xf2\xe0\x2e\xf0\xf3\xd7\x36\x26\x95\xa6\x13\x59\x1a\xc3\xfc\x13\xc7\xc3\xd7\xdd\xf8\x53\x7b\x49\x4f\xdd\x04\x61\x88\x26\x37\xcb\x96\xf2\x25\xd7\x80\x65\x0f\xc7\x55\x67\x5d\x7e\xd4\xab\xe6\xca\x3e\xf9\x0d\xc5\x6b\x8f\xde\xfe\x0b\xdd\xce\x48\xf6\x68\x79\x1b\x1c\xab\x4f\xf6\xe5\x8e\xe6\x67\xe1\x29\x2a\xe5\xfc\x7f\x64\x64\x48\x44\xd7\xb2\xb5\xb7\x88\x6d\x22\xc2\xf2\x37\xb4\x81\xfc\x85\x52\x19\x66\x91\x6f\x55\x6a\x26\xec\x72\xa5\xdf\xe5\x82\x24\x52\x0b\x92\xa4\xde\x37\xde\x6d\x18\x79\x81\xbe\x9a\x0a\x60\x21\x2d\x58\x4d\x0a\x01\x06\x70\xdc\xf1\xe8\xa0\x14\x02\xec\x02\xcf\xdd\x08\x30\x4b\x36\xa2\xce\xfd\x03\x0c\xa2\x1d\x28\xf6\xa3\xfa\x76\xa5\x16\x43\x57\x97\x12\xf9\x41\x5c\x9a\xa9\xec\xeb\x65\xd6\x62\x42\xdf\x66\x4c\x3f\x29\xa7\x66\x30\xd1\xa9\x14\xf6\x8c\x6d\x26\x9d\x85\x92\xe8\x3a\x11\x08\xd1\x89\x40\xb4\x14\x4e\xae\x00\x43\x75\x3e\x07\x2e\x38\x3c\x6b\x0c\x53\x60\xa4\x3d\x31\x2c\x10\xba\x08\x10\xc1\xd4\xbc\x86\xa9\xc5\x24\xd2\x38\x86\x07\x31\x35\xbf\x20\x73\x37\x04\x5c\x2d\x5b\x00\x01\xe1\xce\x6a\xbc\x1f\x32\x3b\x34\x35\xf9\x73\x1f\xc4\xb1\x69\x5d\x5f\x88\x61\x81\xc7\x39\x65\x33\xa2\xf2\x70\xb6\xc0\xbe\x98\x2c\xf3\x41\x68\x5f\x5d\x7f\xc5\x13\xb4\x9c\xb9\xf0\x41\x38\xca\x6a\xbe\x5e\x2c\x2b\x33\x9f\x3d\x08\xd1\xea\x1b\xf6\xbf\x2e\x5c\x2b\x32\xf9\x3c\x10\x57\x55\xd3\x57\x87\xab\x72\xec\xa8\x34\x0f\x35\xcb\xa1\x3a\x4b\xee\x11\x16\x82\xda\x1d\x9c\xf4\x9f\xf1\x88\xa2\xba\xb5\x82\x78\x67\x58\x15\xb7\x9a\xd7\xb8\x50\x75\x01\x7d\x1b\xb9\x21\x0d\xda\xac\xbd\xce\xb3\x14\xb2\xac\x1d\xa8\xf0\xc7\x1d\xd2\x8e\x74\xf1\xe8\x76\xc4\xda\x40\x86\xcd\xa4\x0e\x98\x82\xa5\xdf\xa6\x32\x1d\xa2\xa6\xab\xc4\xc1\x0c\xc9\xe3\xfc\xbb\x8a\x5b\x23\x9b\xa9\x20\x0b\x64\x6b\xb4\x76\x40\xdf\x8a\x58\x69\x85\x41\xe6\x49\x4f\x04\x50\x9e\xe4\x0a\x97\x94\x4e\x17\x90\x84\x1d\xaa\x34\x4f\x32\x48\x25\x17\x63\xa7\x33\x00\xc8\xbb\xbb\xd4\x3e\x81\x05\x8c\x48\xf2\x8e\xe1\xc6\x31\xca\x62\x91\xfa\xf3\xc2\x94\x0b\xd2\x0a\x9f\xb9\xc6\x62\x83\xd0\x55\x8e\x2a\xf4\x22\x37\x8c\x73\xcb\x92\x49\x1e\x73\x11\x7e\x0d\x01\x00\xfa\xde\xa7\xb8\x89\x2d\x11\xc6\x8b\x2e\xab\x9c\xae\xe9\xae\xc0\xbe\x58\xcf\x7c\x05\x62\x51\xa9\xc9\xdc\x38\xfb\xfe\xe3\x7d\xa8\x5a\x7f\x88\xe7\x05\xa8\x8f\x9e\x81\xb5\x05\xf4\xc4\x34\xc0\x5d\xde\x28\x5a\x22\x5e\x75\xa2\x27\x49\x9e\xd4\x88\x1c\x8f\x2e\xf7\x6f\xbe\x4a\x88\x4f\x2e\x5a\x4a\x97\xf3\x96\x71\xd1\x2b\x6e\xc5\xc6\x2d\x6e\x16\x4a\x70\xbc\xe4\x91\xb7\x1f\x47\x09\x71\xd4\x38\xfa\x51\x80\xba\x6b\x2c\x93\x43\xe4\x50\xc5\xd7\xb7\x5d\xf1\x52\xbd\xab\x2e\x70\x7c\x6c\x2b\xd7\x02\x74\xbd\x7f\x54\x63\xa0\xcf\x3f\xb0\xd9\x24\xbd\xb9\xe0\xad\x16\x88\xa5\xfb\xc4\x9f\xce\xc3\xfb\x10\xc5\xfe\x38\xea\x37\xeb\x18\x88\xb5\x70\x13\x4d\x3e\x41\xae\x92\x32\xef\xe5\x59\x04\x2f\x4c\x79\x9c\x07\x62\xa6\x8e\xf5\xa4\x71\x77\xe8\x04\x2f\xcc\x77\xb7\xeb\xcb\x28\x84\x98\x23\xea\xf1\x48\x3a\x75\x55\x4f\x32\x80\xf9\x1a\x95\x4e\xbe\x98\x03\xea\x9e\xda\x20\x74\x4f\x1d\xc0\xe2\xcc\x8b\x9c\xde\x26\x7e\x65\x0c\x22\x17\x5d\x14\xea\x9f\x9b\xd6\xd3\x53\x93\xba\x26\x76\x23\x95\x22\xc6\xb2\x60\x10\x11\x24\xd4\x31\x81\x9b\x2d\x5b\x99\x58\xdd\x36\x6b\x81\x53\x7e\x7f\x4f\xb4\x3f\xfa\xd4\x75\xb9\xf5\x54\x34\x69\x3d\xdd\xa9\x28\x38\x64\xdd\x85\xa2\x0b\xcc\x45\x3b\x9d\xb0\xe8\x4e\x74\xe0\x94\x9e\x9d\x45\x50\xf5\x3d\xfd\x66\x5a\x09\x10\x5e\x98\xa1\xa5\xdc\xf9\x6c\x17\x2f\xad\x89\xbe\x4f\x51\x3d\x27\xe8\xa6\xf3\xfe\x76\x83\xf4\x66\xc0\x2b\xa5\x98\x3b\x1e\xe7\x68\xbd\xe1\x1d\x1e\x75\xa4\xee\xdf\xfa\x7c\x4b\x51\x87\x44\xa4\x2b\x31\xbc\x0c\x51\x07\x13\x1d\xe3\x63\xed\x76\x66\x39\x36\xe5\x21\x1c\xdb\x3e\xd5\x41\xad\x19\x88\x17\xd2\x47\x7c\xea\xa6\x56\x95\xde\xb4\x33\xb5\x5b\x05\xc9\xe8\x5f\x52\xbe\x2b\x33\x8e\x26\x88\x1b\x49\xee\xb8\xce\x3b\xa6\x49\xbc\xf1\x53\xf2\x70\x27\x89\x65\x65\x38\x73\x55\x89\x9d\xb5\x53\x4e\x9b\xc2\x36\x4c\x1a\x66\xa0\x42\x0e\x5d\x19\x8c\x08\xe2\x34\x4e\x6e\x71\x97\x06\xbc\xd1\x09\xac\x28\x92\x3c\xac\x02\x1d\xd9\xec\x82\xca\x3c\x0b\x89\xbf\x3c\x4b\x1c\x52\xb8\x70\xb6\x1e\xf1\xb8\x37\x71\x23\x5e\x18\x9a\x17\xe8\xfe\x3e\xcc\x6e\x7f\xaa\xbd\x08\x72\x7f\x2f\xfd\xa1\x89\xdb\x7f\x5e\x1b\x67\x2f\x96\x08\x3d\x0b\x30\x97\x5c\xd8\x73\x80\x5d\x72\xe1\xcc\x4f\x0a\xb1\x13\xb2\x66\x06\x70\x45\x00\x68\x31\x32\x00\x03\x43\xde\x19\xab\x66\x71\xda\xe9\xb0\x66\xd8\x50\x3a\x6c\x00\xa9\x3d\x56\xdd\xe9\x03\x8c\xfe\x18\x4d\xb5\xcd\x5b\x67\x06\x23\xc8\x22\xca\x13\x8e\xb3\x5a\x48\x4c\x54\xb6\x03\x8a\xca\x11\x3d\x8e\xe6\x7f\x64\xd5\x58\x71\x5e\x2d\x41\x2a\x89\xb9\xd9\xaf\xf4\xbd\x30\x14\x02\xa5\x2b\x56\x2c\x8f\xb5\x1f\x58\xe9\x06\x6f\x94\x51\x24\xe2\x78\x71\x5b\x23\x7d\x16\xa1\xc7\x56\x3f\xaa\x9c\x69\xf2\xae\xe4\x68\xb9\x44\xb4\x06\x58\xbd\x34\x2c\x50\x26\x67\x29\x89\x5f\x71\x4b\xf2\xdb\xde\xd9\x59\x92\x93\x3a\xdd\x93\xec\xcd\x9f\x65\x7f\xcc\x08\xc0\x99\xb7\xfd\xf9\x49\x1a\x5d\x84\x81\x91\xc4\x72\x1b\xe0\xd4\xb6\xf4\x75\x15\xf9\x11\xa4\x16\xf0\x0a\x8f\x98\x05\xb6\x25\xc1\xa0\xa8\x92\xce\x30\x54\x5a\x01\x5a\x77\x5b\xe8\x05\x81\x79\x27\x86\x70\xe6\x99\x06\xdb\xfa\x3e\x62\x2c\xc9\x66\x38\x8b\xcc\xca\x64\x6a\x28\xbb\xea\x0b\x41\x42\xb6\x24\x46\x0b\x59\xc0\x78\x9f\x6c\xc7\x3f\xbf\x8c\x28\x47\x81\x3a\xb7\x41\xbc\x35\x7a\xd6\xaa\xdd\x59\x01\x4a\x4f\x36\x54\xea\x5d\x45\x3a\xc0\x5a\xa2\x3a\x6d\xa6\xb5\xe4\x99\xee\x3a\x66\x9a\x8a\x35\xa9\x1f\xe2\xae\x84\xaa\x2d\x74\x7c\xb6\x7e\x36\x61\xec\x5e\x1f\x58\x9d\xd7\xfd\xa8\x0d\xe6\xcc\xb6\xc4\xe3\x7a\xad\xb2\x15\x3f\xa6\xef\x2a\xad\xf7\xd8\x3d\x58\x19\x0a\x7d\x41\x3f\x56\x03\xf1\x33\xee\xac\x2c\xe5\x9b\x26\x55\xfd\x7e\xcf\xbe\x63\x64\x9f\x66\x9b\xe7\xe3\xa6\x58\x79\x22\x10\x69\xb7\x97\xce\x4d\x69\x7b\xf5\x7f\xbf\xfb\xf9\x27\xa8\xf2\x9d\xe3\xc5\xad\x79\x41\x00\x9a\x5b\x55\x06\x6c\x05\x47\x08\xaa\xa5\xf7\xd4\x87\xf7\xf7\xa6\x3e\x33\x55\x71\x8c\x3b\x54\xe7\x8f\x00\x2a\x3c\xcc\x9e\xe9\x26\x56\xee\x50\x77\x6a\x86\xcb\x7c\xea\x66\x58\xc8\x86\xdb\x30\xa3\x65\x62\xeb\x78\x2a\x93\x5d\xd6\x65\x5e\x21\x2b\xd2\x29\xa6\xf1\xd1\x27\x18\xcf\xce\x4c\xe4\x1a\x86\x4e\xd4\x2c\xe7\x54\x41\x24\xe5\xda\xe1\x80\xa1\x8d\x27\x57\xa9\x2a\x15\x74\x6d\x9c\x0e\x2f\x65\xc6\xc8\xdc\x78\x9f\xbf\x2f\x43\x1f\xdd\xaa\xd2\xf1\x54\x0e\x2e\x4d\x0e\x5d\xd1\x8a\x43\x57\xb4\x7c\xe8\x4a\xdb\x48\xc5\xc1\xe7\x72\xf0\xb3\x47\xdb\x48\xfd\xc8\x87\xd6\x09\x3b\x3b\x63\xa5\x13\xea\x6a\xed\x4b\x1f\x41\x76\x5e\x5d\x7f\xac\xd0\xe4\x5f\x5a\x68\xca\x29\x72\x41\x1e\x43\x5a\xf2\x4f\x2a\x2d\x25\xad\x9b\xc4\xa4\xb6\x20\x3f\x9f\x27\xae\xc2\x47\xdc\xd8\x49\x9d\xa4\xff\xab\xf2\x16\x66\xfc\x98\x35\x90\x59\x4f\xe7\x63\x19\x4b\x6a\x8f\xbf\xd9\x4e\x2a\xc9\xbe\x76\x02\x56\x57\x9f\xb1\x96\xda\xe9\xfc\x1c\xaa\xd5\xe7\x0a\xea\xc5\x26\x82\x99\xb3\x43\x2e\xd7\xde\x86\x26\x9e\x48\x63\x8c\xbf\x2a\xb6\x78\x9c\x61\x4e\x82\x1c\x1e\xd7\x22\x4e\xab\xdd\x3b\xc2\x4a\xcc\x96\x4e\xf7\x08\x2e\x26\x79\x25\x96\xf3\x28\x01\xea\x72\x48\x51\xb0\xfd\xff\xd8\x7b\xd7\xe5\xb6\x71\xa4\x01\xf4\x7f\x9e\x82\xe1\x57\x27\x23\x6d\x28\x5a\x94\xe4\x8b\xbc\x9f\x36\xe5\xb1\x93\x89\x67\x3c\x76\x36\x76\x32\x3b\xeb\x75\xa5\x20\x11\x92\x38\xa6\x48\x05\x84\x6c\x2b\x19\xbf\xcb\xf9\x7b\x5e\xe3\x7b\xb2\x53\xb8\xf1\x0a\x5e\x45\x49\xce\x6c\xb6\x6a\x27\x16\x09\x02\xe8\x46\xa3\xd1\xdd\xe8\xcb\x28\x14\x2b\x14\x9e\x23\x14\x29\xa5\x22\x7d\x08\x2c\xd3\x4a\x69\xcd\x3f\xff\xbc\xbe\x69\x3e\x6a\xd7\x37\x84\x95\x59\x9f\x1b\xb1\x08\x03\x1e\x0b\xc4\xaa\xaa\xa1\xb0\xe0\xe1\xf8\x25\xb8\x70\x53\x73\x0a\x11\x50\xc2\xb9\xe2\x89\xd0\x0f\x8b\x89\xaa\xb0\xce\x41\x10\x62\x4c\xe3\xf1\x73\x6a\xac\x44\x3c\xd2\xae\x33\x8f\x69\xdf\x04\x52\xf7\xe1\x98\xbf\xb8\x49\x1f\xfb\x0d\xac\x2e\x98\xc0\xc3\x7b\xcb\x31\xdd\x7b\x5a\x20\xc7\xbe\x64\xcf\x28\xfe\xdf\x42\x60\x42\xe4\xe5\x47\x6f\xf1\x8e\x98\x1f\xf7\x29\x86\xb3\x86\x8a\xdd\x5b\x18\xe4\x57\xf9\xaa\xfe\xab\x75\xcc\x60\xbe\xa2\x2f\x0e\x59\x3a\x8e\x01\x7c\xa5\xaa\x87\xf0\x51\x6a\xa9\xad\x38\x96\x92\x21\xbd\x7f\xa5\x4d\x63\x83\xa7\xf1\x2a\x99\x37\x7b\xbc\xc3\xfc\xd9\xc1\x66\x8a\xf8\x18\xe7\x59\xb1\x0e\x04\x34\x7c\xd5\x6f\xe1\xd2\x6b\xc0\xa6\x3e\x76\xd1\x6b\x10\x16\xbe\x9d\xe6\x57\xb2\x29\xd9\x60\x8e\x06\xaf\x9d\x1b\x42\x69\x19\x73\x86\x34\x1f\x54\xdc\xc3\x7d\x15\x58\xd9\x8e\x8a\x2c\x46\x01\x82\xa7\x5b\x25\xd5\x89\x9c\xbe\x5d\xab\x3f\x6e\xdc\x2d\x2a\xc4\x5e\xa8\x9e\x05\x4c\x30\xc7\xac\xc4\x03\x14\x3e\x51\x14\xf2\xaf\xbe\xb3\xf8\x21\x7c\xd4\x30\xd3\xca\x3e\x11\x55\x1f\x39\xc0\xfe\x95\x47\x8a\x9d\x9a\xb4\x4b\xae\x4e\x5c\x3a\x60\xee\x4d\x5d\xdc\xf8\xfa\x58\x00\x37\x18\x3e\xe0\xd6\x0c\x02\x6f\x81\xe4\xe5\xbd\x22\x0d\xd2\xbe\xfb\xf6\xec\x8a\xd8\x9a\x41\x77\x91\x9a\x37\x8c\xd9\x41\x78\x69\x17\xf3\x8a\x37\xae\xe9\x42\x21\x6a\x9c\x48\xee\x83\xfc\x0b\x50\xc9\x4d\x00\x0e\xa5\xad\xa4\xf1\xe9\x29\x18\x10\x69\x92\xbc\x9d\x16\x7f\x28\xca\xe6\xac\xef\x38\x78\x7b\xf5\xeb\xd9\x8f\x00\x79\xba\x18\xbc\x41\xce\x49\xf5\xdf\xc6\x4f\x53\xbb\xd3\xfe\x45\xd5\x68\x28\xd7\xe1\x0f\x5f\x55\x8f\x5e\x7d\x7b\xea\xe1\xf5\x0d\xd9\xf6\x00\xd3\xd4\xef\xe4\xf7\xf5\x9e\xa6\x7a\x77\x13\xf5\x46\xbb\xee\x6b\xea\xc3\xcc\xa6\x69\xdc\xa6\x18\xcf\x0f\x77\x76\xee\xef\xef\xf5\xfb\xae\xee\xa2\xc9\x4e\xa7\xdd\x6e\xef\x90\x86\xa9\x2f\xe9\xb7\x3b\xe1\x8e\x0e\x1f\x6c\xcb\xb9\x95\x7e\x61\xf4\xfb\xfd\x9d\xf4\xd7\xc9\x0e\xef\x2d\x13\x4f\x55\x4d\xed\xf5\xe6\x0f\xfc\xd1\x14\x5a\x93\x29\x8e\x3e\xbb\xb3\xe0\xfd\x8f\xee\x83\xaa\xa9\x6d\xa5\xad\xf4\x7a\x4a\xaf\x27\xde\x10\x0e\x4e\x3d\x55\x0d\xdd\x20\xcf\xf6\x6f\xb4\xeb\xb6\xa6\xfe\xe7\x3f\x8e\xa2\x28\x0a\x79\xb2\xa7\xa9\x93\xe4\x9b\xd0\xdb\x91\x85\x46\x36\xe4\x1d\x22\xd2\x15\xff\x7b\x44\x46\xec\xec\x8b\x5f\x4b\xf2\x8b\xff\xf0\xf0\x92\xac\xa3\x4a\x23\x16\xc7\x2e\x9a\xb5\x5c\x64\x4d\x2c\xe7\x50\xe9\xec\xcf\x1f\x94\x0e\x9b\x3a\x19\xf2\xa0\xda\xb0\x46\xc9\x61\x8d\x7a\x86\x8d\x42\xdb\x2b\x08\x6e\xaf\x6e\x78\x0b\x0c\x6c\xd4\x34\x70\x27\x3c\xae\x3f\x8b\x0c\x80\xe7\x0f\x74\xec\x3a\x87\xed\x14\x1b\xb6\xb3\xfa\xb0\xbd\xb2\xe0\xf6\x6a\x82\xb7\x57\x16\xe0\x5e\x4d\x10\x77\xbb\x11\xc2\xca\x1d\xb7\xdb\x25\x74\xb5\x3a\x3d\x1b\xe5\x86\x35\x8c\x5a\x86\x8d\x41\xdb\x2e\x08\x6e\xbb\x6e\x78\xf3\x07\x66\x00\xaf\x3e\xb0\x3f\x14\xa3\x68\x23\x9f\xb0\xda\x84\xa2\x8d\xd5\x07\x0e\x8f\xeb\xe3\x3d\x63\xdc\xf9\x03\xc5\x76\xad\xf0\x16\x19\xb7\x5d\xd3\xc0\x65\xf1\x9c\x89\x66\x55\xfa\xa4\xfc\x59\xdd\x89\x30\xd5\x4e\xb9\x4d\xd7\xe9\x54\xdd\x74\x59\xc3\xe6\xd3\x3e\x1b\xb7\x12\xed\x77\x52\x97\xa4\x93\x7f\x66\x92\x25\xe9\x54\x3a\x32\x3b\xe9\x24\x58\x64\xdc\x76\x3d\x03\xf7\xc3\xe3\xf6\x73\x87\xed\xcf\x1f\xc8\xff\x57\x1c\xb4\xbb\x1b\xd9\x70\xbb\xf9\x2c\x75\x97\x6c\xb8\xdd\x9a\x07\xce\x07\x97\x8e\xbb\x3a\xbc\xfd\x92\xe0\xf6\x33\xa1\x5d\xcf\x3e\x3f\x08\xcf\xf1\x20\x7f\xbf\x1d\xcc\x1f\x94\x83\x95\x31\x63\xec\x95\x1b\xd6\xd8\xab\x65\xd8\x28\xb4\xdd\xbd\x62\xe0\x76\xf7\x6a\x86\xb7\xc0\xc0\x14\xe0\x1a\x06\x8e\x00\xdc\xc9\x47\x34\x81\xb7\xb3\x3a\xa2\x23\xc3\x1a\xf9\xe0\x92\x61\x8d\xd5\xa1\xed\xee\x95\x04\x97\x60\xb8\x0e\x78\xa3\x03\x17\x00\x98\x0e\x9c\x0e\x71\x5d\x7b\x7d\x37\xfd\x70\x35\x0a\x68\xa4\x54\x63\xa9\x74\xd8\x64\x0c\xdc\x2d\x38\x70\x77\xf5\x81\x8d\x4e\xc9\xe3\xd5\xe8\x54\x3e\x5e\x23\x03\x77\xcb\x0e\xdc\xad\x69\x60\x23\x72\xd2\x19\xf9\x67\x8e\x41\x8e\x3a\xa3\xd2\x11\x1b\x5d\xe3\xc8\x61\xd7\xc9\x3f\x63\x3b\xe4\xb4\xeb\x54\x3a\x64\x33\x06\x2e\x00\x31\x1d\xb8\x06\x88\xa3\xa8\x2e\x00\x31\x45\x75\x3a\xc4\x75\xed\xf9\x7e\xfa\xd6\x2b\x40\x88\x9d\x6c\x42\x8c\x4e\x32\xfa\x8b\x3e\xb8\xd1\xd4\x29\xf0\x5e\xdf\x01\x5b\x3d\x1c\x03\xdb\x83\x8f\x3f\x68\x33\x88\xc1\xe1\xd7\x19\xb5\xd8\xb2\x34\xf9\x05\xec\xc2\xfa\x74\xe8\xa9\xf9\xd6\xe4\xb5\x54\xe2\x2f\x6a\x49\xb6\x3e\xbc\xe9\x4d\xdf\xf7\xde\x14\xb3\x24\xf7\x34\xd5\x1a\xab\xda\xf5\x75\x67\x97\x7a\xa4\xd3\x3f\xdb\xda\xb5\x2a\x2c\xe1\x37\x37\x37\x9a\xb3\xb0\x6d\xfe\x8f\xf6\x35\xd6\x41\x5b\x53\xc5\x1a\x18\xda\xb5\x71\xa0\xa9\xee\x02\xdb\x90\x5e\x10\x10\x54\x87\xd6\xe5\x46\x53\x69\xaa\x77\x88\x21\xa2\x93\x79\x4c\xf4\xd6\xa3\x2b\x35\xb5\x46\x2e\x9a\x73\xdc\xab\x6c\xdc\xeb\x6b\xd5\x32\x55\x4d\x35\x47\x64\x28\xf5\x1e\x81\xf9\x9c\xde\xd2\xd0\xd9\x92\xa7\x64\xa6\x92\xfe\xc0\x7c\xde\xba\xb3\xe0\x7d\xd0\x0f\xad\x9a\x4f\x7b\xe1\x40\x2a\x34\x61\xa4\xfc\x73\x8a\xc4\x96\x67\x53\xd4\x90\xd5\xc6\xb4\xec\x6a\x26\x32\xc2\xbb\xc1\xe8\xf8\x77\x29\xc1\xe5\xc2\x4d\x36\x56\x38\xbe\x57\x7d\x1e\xa1\x7b\x8c\x16\xc5\xc9\x3e\x44\xc0\x05\x49\x7e\xe4\xce\xe6\xae\x43\xf0\xb0\x03\x46\x76\x4b\xa4\x8c\xdc\x34\xf1\xff\x6b\xf8\xd0\x9d\x41\x34\x2e\x46\xfc\x51\xda\x25\x3b\x60\x8c\x20\xa4\xd7\x79\x02\x00\x41\x33\xae\x33\x9a\x02\x67\x42\xf8\x13\x9d\x95\xaa\xa9\x34\x19\xe6\x94\x39\x07\xdf\xf0\x1d\xc4\x02\x1f\xc8\x26\x32\xfa\x5a\x9b\x2d\x34\x25\x50\xff\x7b\x7f\x3f\xf1\x17\x1e\x04\x68\x34\xa5\x64\x70\x49\xff\x54\x86\x4b\xc5\x01\x33\xb8\xc3\xee\x74\x49\xfb\xe8\x46\x8a\x4d\x19\x01\xd3\x72\x5b\x13\xe4\x2e\xe6\xc1\x74\x1d\x1a\x92\xe7\x4f\x95\x66\xc3\x54\xb5\xd0\x2c\xb4\x6b\x95\xc6\x05\xf1\x59\xb0\x18\x21\x31\x27\x06\xbc\xc7\x1e\x94\x83\x2a\x39\xdd\x55\xd8\xaf\x94\xaa\xaa\x50\x24\x99\xbf\xc0\xd1\xa6\x69\xf2\xf4\x6c\xbc\x6c\x7f\x7c\x7f\x2c\xa5\x49\xf5\x85\xb8\xd5\xcd\x60\xcd\x1d\xcd\xc8\x64\xbf\xfc\xd4\xb5\x9c\x39\xbd\x98\x25\x87\x29\x5b\x5c\x46\x1c\xfc\x11\xa7\x89\x20\x43\xe4\xb5\xd1\xd6\x28\x53\xbd\xee\xec\x69\xd7\xe2\xc5\x27\x95\xb1\x71\x5e\xa6\x86\x2c\x28\x6d\x38\x9a\xc2\xd1\x2d\xa4\xad\x77\xc3\x87\x06\xfc\xec\x9f\x19\xa2\x09\x59\x71\xff\x6f\x4e\xed\x89\x07\x7c\x13\x90\xae\x83\xcd\x55\x7a\x13\x85\x7a\xe1\xc4\x1e\x9e\xbc\x78\x1d\x97\x19\x38\xc2\x6c\x30\x84\xb6\x40\xc4\x98\x06\x0a\xe6\x61\x22\x2e\xf2\xf0\x9e\xbc\x39\x70\x42\x12\xd1\xc5\x1c\x3a\x71\xd1\x49\xf6\x3b\x3c\x87\x3e\x9f\x82\x3f\xfa\xc8\x76\x3d\x28\x13\xb3\xe4\x63\x1e\x8b\xe6\x79\x83\x1a\x86\x66\x14\x3b\x7f\xea\xd8\xb5\xc1\xce\xab\xb0\x6f\xfd\xa3\x7b\xd3\x7b\xb6\xbf\xf7\x6b\x67\xf2\xe1\x47\x47\xbe\x67\x69\x24\x19\xf5\x91\xe0\x53\x55\x35\xff\x59\xfa\x7e\x36\x0c\xad\x17\x91\x52\x57\x96\xbd\xf6\x34\x75\x4a\xbd\xc5\xa2\x54\xc2\xfb\x86\x60\x34\xf5\xbb\x8c\x46\x59\x6a\xea\xe7\x05\x5c\x04\xfb\x48\x26\xf8\x44\xc2\xe5\x82\x93\x85\xc1\x79\xc3\x36\xa7\x41\x36\xa7\x44\x6e\x92\x2a\x05\x73\x4e\xe5\x26\xc0\xa0\x45\x83\x1f\x83\x44\x54\x62\x13\x32\xd1\x8c\x6d\x43\x29\x9f\x31\xfa\x5a\x47\x80\x73\xc5\x0f\x2d\xf5\x92\x87\x27\xfa\xbc\x46\xc4\x2b\x6a\xaa\x88\xee\xe5\x2f\x94\xf0\xb8\x2d\xce\x6f\x6c\xf7\x1e\x22\x9a\xdf\x8f\x0d\xd0\xf5\x59\x40\xf4\x5c\xa3\x28\x26\x1b\x0f\x23\xd7\xf1\x15\x20\x43\xce\x10\x8b\x4d\x94\x3f\x78\xae\x6a\x2a\x0d\x58\x7f\xee\xbf\x12\x87\x28\xdf\xbd\x0a\x5f\xd4\xa5\x05\x6d\xd3\x17\x47\xa3\x58\xa4\xa3\x33\x79\x95\x95\x54\x12\x33\x8a\x03\x18\x9f\x58\x20\x91\x14\xc5\x46\x26\x59\x52\x42\x4f\x63\x2b\x51\x55\x2d\xde\xaa\xa3\x75\xd3\xe4\x59\x23\xe8\x21\x24\xb7\xed\x69\xaa\x69\xdd\x65\x2a\xa3\xfc\x7d\xdf\xa7\xae\xf0\x11\x98\xfc\x4a\x7c\x99\x40\x76\xf0\x55\x15\xa8\x93\x53\x4b\x55\xf1\x53\x01\x0a\xb5\x71\x80\x00\x0a\x20\x0b\xb4\xd8\x29\xa2\xa9\x3f\x22\x08\xcc\x11\x5a\xcc\x86\xe9\x3d\xa4\x02\x38\xf4\x3f\xae\x07\xc8\x74\x40\x53\xa7\xe0\xb3\xb3\x75\xa0\x38\x69\x27\x48\x8c\x8f\x5d\xd7\x1e\x82\xd4\x09\xf8\xfa\x5d\xba\xc4\x45\xc5\x9c\xa1\x2b\x7c\x9b\xa8\xce\xca\x7b\x6d\x61\x77\x32\xb1\x61\x9a\x89\x87\x9f\xcd\xbd\x02\x67\x73\xf6\x26\x0a\x5a\xc9\x88\x29\x7a\xf2\xc8\x8e\x9b\x2c\xb5\xb6\xaa\x4a\x9b\xd3\x65\x62\x21\x72\x14\xed\x42\x94\x20\x9b\x48\x12\x75\xd5\x34\x64\x89\x94\x52\x5e\xbe\x19\x01\x0c\x6c\x77\xb2\x35\x6d\xb9\x8f\xc0\xbf\xfb\x86\xf1\xcf\xda\xb5\x65\x99\x8a\x1c\xd5\x3e\x73\x94\xdf\xf2\x9a\xc0\xfa\xf4\x64\x16\x38\x29\x34\x65\xfe\xeb\x49\xeb\xca\x51\xba\xaa\x40\x97\xae\x09\x5b\xd0\xb4\xb0\xbb\x0d\xa2\xbc\xb8\x9f\x7f\x7c\x89\xef\x8a\x11\xa5\x90\xbe\x22\xc9\xdd\x92\x84\x48\x4e\x36\xd7\xb1\x97\xaa\xaf\x06\x0b\x59\xc0\x9d\xf3\x8c\x0a\xac\x2d\xcb\x4e\x6f\x06\x24\xca\x7a\xf0\x57\xd1\xef\xc8\x7f\x42\xfb\xf3\x7f\x71\xdb\x22\x27\x86\x29\xd5\x09\xc4\x64\x6c\xcb\x81\xe7\x0b\x02\x3b\x19\x6e\x46\x63\xe8\x54\x3c\x85\x74\x3e\xde\xd4\xbd\x3f\x5e\x20\xcf\x45\xbf\x4d\xa1\x73\x09\x6d\x38\xc2\x16\x93\x32\x09\x63\xe2\xdd\xd3\x8f\x38\x91\x4c\x2d\x55\x23\xaf\x6e\x0a\x90\xde\x2d\x5c\x2e\xe6\x9b\xa0\xbc\x80\x72\xaa\x90\x1d\x4d\x53\xc7\x64\x73\xd3\x22\x24\xbc\x79\xf2\xbb\xb8\x1a\xff\x34\x3c\xdb\x73\xcb\x5a\x6b\x62\x5a\x75\x4c\xbb\xa3\x1b\x89\x2d\xc6\x1c\xa2\x19\xa0\x4a\xa3\x58\xb7\xb0\xea\xc7\x71\x20\xd1\xfe\x32\x54\x35\x99\x9c\x9a\xa6\x0e\x84\x06\x09\x51\x2d\x70\x46\xd0\x2e\x65\xeb\x2f\x6c\x44\x48\x39\xa2\xa3\x22\x88\x04\xec\x7c\x40\x7d\x12\x49\x05\x94\xc7\x06\x48\x00\x15\xfb\x89\xab\xb7\xfe\x03\x86\xbc\x73\xb6\xa7\x37\x85\x8d\x9a\xb6\x5e\x62\xf7\x94\xdf\x82\xa6\x1f\x8d\xda\x9a\x5b\xa3\xdb\x6d\x08\x25\xd0\xfa\xfc\xaf\xf6\xed\x4f\x50\xbe\x01\xc9\x09\x2d\x35\x95\x46\xac\x1d\xec\x1c\x2f\x2a\xcf\xee\x69\xaa\x6d\x25\x2c\x10\x69\x46\x4e\x8f\xb2\x66\x48\xe4\xfa\x73\xc1\xfa\x99\x29\x44\x8d\x92\x8d\xa6\x5a\x1e\xad\xc7\x73\x07\xe3\x46\xcf\x4c\xd5\x0e\xa8\x81\x59\xd4\xb6\x68\x9a\xaf\x15\xac\xa2\x53\x04\xc7\xbc\x07\xf2\x67\x0b\xbb\x74\xeb\x84\x8b\x2f\xa5\x4c\x3f\x34\x57\x23\xde\x26\x6e\x9e\x48\xd5\xbb\x92\x9b\xc1\xa8\x95\xea\x13\x04\x5b\x9e\xe6\x45\x3a\xb5\xad\x1d\x39\xff\xfe\xe3\x08\xb8\x9f\x6f\xad\x7a\x8f\x9c\x30\xc9\x62\xc0\x98\xa0\x6f\x18\x2b\xcc\xd9\x12\x4c\xd7\x37\xad\xa5\x73\xdd\xa0\xce\x57\x2e\x0f\xa5\x20\x54\xd1\xe3\x64\xa7\x43\x0e\xec\x11\x53\x60\x05\xc8\x45\x2e\xc1\xed\xc2\x9d\x76\xd7\x5b\x46\xe0\x90\xa2\x87\x48\xb6\x4b\xb5\x90\xc8\x91\x85\xa5\x7c\xe9\xc3\xa7\x41\xc1\xc0\xf8\xc2\x14\x41\x99\xef\x64\xe0\x1f\xdc\x9c\x13\xad\x84\xcb\xd5\xd9\x50\x8c\x87\x54\x60\x42\x71\x55\x7a\xe3\x37\xe7\xd3\xbd\xe9\xd5\x7b\xf0\x5b\x69\x5b\x40\xec\x0e\x4b\xe8\x55\x78\x39\x87\x2d\xa1\xdf\x67\x58\x67\x63\xb7\x58\x97\xfe\x17\xa9\xe6\x51\x89\xd1\x2d\x18\x87\x9d\x9b\xfc\xf7\x4a\x07\xa7\xeb\xb0\x81\x2a\x77\x12\x5c\xb9\xfa\x97\xad\xe2\x8a\x92\x5e\x6f\x10\x32\x16\xda\xa5\xb8\x64\x8d\x18\x4c\x82\x66\x11\x57\x03\xda\xb8\xaf\xa9\x60\x81\xdd\xb1\x3b\x5a\x50\x8b\xb6\xff\x77\x21\x0f\xa9\x7a\x68\x3e\x4a\xb2\xe5\x69\x3e\xe9\xe9\xb3\x69\xa2\xb7\xc7\xe3\xfd\x8e\xfd\x66\x56\xf6\xe4\x8d\x92\x7f\x70\x07\xd7\xd7\x54\xe4\x52\x27\xb6\x21\x70\x9c\xf8\xbd\x5c\x9a\x9c\x27\x17\xd1\xa2\x57\xd8\x21\x61\x2c\x12\xfc\x2b\x42\x6c\x7d\xbf\x62\x3f\xc0\xd6\x0f\xc2\xab\x27\x3e\x98\x8f\x3c\x07\x78\x2a\xee\xf1\x54\x4d\xfd\xd5\xe8\xea\x9d\x83\x9e\x62\xec\xe9\xc6\xfe\x01\xe8\xe8\x07\xfb\x7b\x0a\xfb\x6f\x5b\x31\x14\xa3\xa5\xb7\xdb\x07\xad\x5d\x7d\x7f\xd7\x50\xa2\x2f\xc9\x6b\xf2\x52\x21\x2f\xbf\xcc\x76\xf5\xdd\xfe\x5e\xcb\xd0\x77\x7b\xfb\xc0\xd0\xbb\xdd\xae\xc2\xfe\x4b\x7b\x51\xda\xad\x8e\xbe\xb7\xb7\xaf\x44\xdf\x90\x77\x6d\x85\xbe\xf9\x32\xeb\xe9\x07\xbb\xe4\x55\xa7\xd7\x07\x86\xde\xd9\x37\x14\xf6\x5f\xd6\x81\xde\xee\xec\xb7\x74\xa3\xbd\x3f\x6a\x2b\x7a\xbb\x4b\x1e\xeb\xed\xbd\xfd\x16\x79\x4e\x1e\x7f\x99\xb5\xf4\x7e\x77\xbf\xd5\xd5\x7b\xdd\x3d\xc9\x04\xf4\xfe\x01\x9d\x5d\x7f\x77\xa4\xb7\xbb\x5d\xdd\xd8\xef\xd0\x7f\xbb\xbd\x03\xd2\xd5\x6e\xa7\xa5\xb7\xf7\xf5\xdd\x6e\x4b\xef\xed\xed\xea\xfd\xbd\x16\xf9\x40\x31\xf4\x36\x81\xad\xa7\xef\x77\x94\xae\xde\xe9\x27\x3b\x6e\x91\x26\xb4\xe7\xee\x81\x04\x3a\x43\x37\x0c\xd2\x4d\xcf\xd8\xd7\xbb\xbd\x0e\xf9\x3f\x7d\xd3\xe6\x13\xef\x4c\x5b\x7a\xdb\xe8\x7e\x99\x91\x7e\x0e\x5a\x5d\xbd\xdb\x95\x4c\x9e\xbc\x3b\x20\x63\x74\x7a\x23\xbd\x6d\xf4\x74\xc3\xe8\xd1\x7f\x3b\x9d\x3e\x99\x7d\xb7\xd7\x01\x89\xb1\x5b\x86\x6e\xb4\x3b\x64\x06\x07\x9d\x29\x69\x4d\x51\xd4\xd9\x55\xf6\xc9\x7f\x65\x28\x32\xf6\x76\x5b\x64\xfd\x46\x64\x4e\xba\xd1\xef\xb6\x08\x8a\xf5\xee\x41\x8b\xbc\x22\x6f\x48\x17\xbd\x83\x96\xd1\xd1\x8d\xbe\x21\xeb\x62\xb7\xbd\xdf\x32\xf4\x03\xa3\x37\xd2\xc9\xf4\xba\xfb\xba\xd1\x3f\xd0\x77\xc9\x94\xf7\x7a\xfa\xfe\x01\x59\xb0\xee\x81\xde\x23\x7d\x76\x0e\xfa\xfa\x41\xe7\xa0\xa5\x53\xba\x68\xf7\x76\xef\xc8\xb8\x07\x5f\x08\x49\x92\x2e\x3b\x7b\x84\x30\x8e\x77\xf5\xfe\x3e\xff\x9b\x10\x4b\x5b\xdf\xeb\x93\x3f\x78\xa3\xb6\x42\xdf\xd3\xff\x04\x0f\x47\x1d\xbd\xdf\xe9\x93\xee\x08\x75\xee\x1f\xe8\xfd\xdd\x5d\xe5\x40\x6f\xf7\x0f\x94\x8e\xbe\xdf\xeb\x9c\x19\x7d\xfd\x40\xe9\xe9\x07\x7d\x60\xb4\x19\x61\xb6\xf9\x00\x64\x6d\x8c\x7d\xdd\xe8\x76\x95\x03\xbd\xd7\xeb\x29\x92\x06\x0a\x6d\xb0\x4f\x1a\xec\x1b\xb6\xa1\xef\x75\xf6\x95\x8e\x6e\x74\x01\xd9\x4c\xc6\x81\xc2\xff\x61\xcb\xe0\x0f\xdb\xed\x7e\x11\x6e\x22\x96\x6d\xab\x9a\xfa\x3f\x6f\xde\xbc\x09\xb3\xfb\x83\x92\x87\x66\xec\xa6\x8a\x9f\x55\x33\xe8\x2c\xc2\x77\x57\x33\x60\x39\x2d\x07\xdc\x85\x2e\xaf\x8a\xb9\xec\xa8\xbe\x09\x3d\xc1\xc1\x52\x67\x99\x74\x86\x91\x0c\x9f\xa9\x3c\xc7\xc4\x89\x2b\xfa\x95\xf2\x2b\x07\x2a\x4f\x5b\x8d\x75\x56\xe4\x22\x76\x85\x29\xa7\x4f\x5b\xea\xcb\x13\xfd\x28\xfd\x4d\x70\x3b\x9c\x75\xe9\xc7\x3c\x66\x0b\xb9\xb1\x86\x3a\x5e\xd8\xd9\xe0\x28\x05\x4d\x2a\xd4\x48\xe3\x9d\x20\x77\x6e\xba\xf7\xce\x47\xcb\xb3\x86\x36\x53\x43\x0a\xd8\x4c\x12\xaa\xee\x04\x87\xc0\x22\x47\x1d\x4b\xf8\x4d\xfa\x6b\x17\xd2\x64\x32\xc0\xa0\xa7\x74\x57\x4e\xe1\x26\x9f\xbf\x7a\x13\xf2\x05\xe1\xc8\xd5\x32\x4c\x25\x65\x6f\x48\xb3\xa6\x56\xd4\xc6\x93\x98\x97\xdc\xcc\x53\x75\xfa\x09\xfa\x92\xad\x6e\xb5\x45\xe0\x57\x3c\x12\xd3\xa4\xef\x18\xce\xaf\xed\x42\xa6\xb9\x90\xbf\xae\xeb\x0c\xed\x05\x0a\x6e\x74\x08\x89\xf8\xe2\x3b\xdd\x06\xe9\x3c\x2c\x58\xe1\xb0\x8b\x4c\x91\x96\x29\x57\x2c\xe9\x4a\x6a\x1a\xf8\xf2\x8d\x5e\x66\xb3\xed\xd2\x5d\xc5\x89\xa4\x28\x59\x94\x35\x5e\x6e\x82\x3e\xdb\x7e\x16\x40\xaf\x18\x66\xd6\x80\x3b\x91\x63\x74\xbb\x88\xcb\x9d\x45\x74\x48\x96\xf1\x70\x5b\x28\xa3\x29\xb6\xb7\x8b\xaf\xec\x29\x44\xc7\xfb\x05\x2e\x77\x3e\x32\xbd\x7c\x63\x08\xe3\xe6\xba\x04\xea\x78\xc1\xcb\xd4\x99\xa7\x7c\x62\x5a\x1e\x18\xda\x21\x67\x6b\x49\xbb\x85\x03\x16\x78\xea\x22\xeb\x4b\xd0\x6e\xa3\x6b\x92\x07\x5b\x74\xc4\xa3\xe3\xb3\xad\x11\x70\xa4\xf0\xc2\x76\x09\xb9\xd8\x54\xa2\xe3\x9e\x06\xdf\xac\x88\xc1\xbc\xbb\x9d\xd4\x03\xad\xbc\xc4\x9a\x82\xa1\xd2\x02\x68\x75\xdc\x0b\x17\x64\xe8\xd0\x12\x01\xc7\x17\xe7\x97\x1f\xce\x3e\x9d\x5c\x1c\x7f\xf8\xf5\xf5\xf9\xd5\xd1\xd5\xe9\xc5\xf9\xa7\x0f\xef\xcf\x02\x67\xde\x1d\x6a\xb2\xd1\xa7\x78\xc6\xae\xd2\xa9\x39\x88\xba\x65\x4e\xa1\x3d\x57\x1c\xd7\x9d\x43\x07\x22\xc5\x71\x11\x1c\x43\x84\x7c\x9b\x11\x06\x68\x02\xb1\xaa\xa9\x9f\x86\x36\x70\x6e\x43\xd3\x3e\x71\x47\xb4\x10\x8d\x28\x94\xbe\x05\xfa\xf7\x53\xa4\x6e\x8e\xce\x13\x43\xc6\x65\x00\xff\x75\x8d\xd4\x9c\xff\x26\xf9\x54\xfe\x64\x8f\xe9\x80\x49\x0d\x2c\x72\x61\x97\xf9\xfd\xd8\x75\x71\xdc\xa4\xc8\x5d\x22\x2d\x67\xec\x96\xb3\x2b\xca\x09\xf9\xf8\xe2\xdd\xef\xef\x4f\x7f\x7a\x7b\x15\x23\xe2\x18\xe9\x56\xa1\xda\xff\xfb\xff\xc2\x82\x7b\xda\xb0\xbf\xbf\x3e\x7a\x9f\x70\x77\x27\x7c\xe3\x2d\xf0\xa6\xd6\xb1\x8b\xe6\x99\xca\xf9\x3c\xac\x2f\x53\xfb\x71\xfa\xa0\x1f\x5f\xbf\xbf\x3c\xbd\x38\x4f\x73\xae\xaf\x8c\xc3\x27\xc7\x0c\x42\x18\x60\x39\xb4\xc9\x64\xff\xf3\xd0\x1d\x3d\x6f\xb5\x14\x55\x86\x9a\x9f\x4e\xaf\x3e\x5d\xbe\x3d\x0a\x26\xde\x6a\xfd\xe7\xa1\x1b\x6c\x6d\xea\x61\x96\xa4\xd9\x5a\x6e\x10\xe2\x17\x00\x15\xae\x10\x20\xb0\xf1\x94\x5a\xb2\x5a\xbe\x9f\xe6\x86\x2f\x11\xce\x5e\x7b\x3f\x7f\x3e\xbe\xea\xcb\x2f\x11\x42\x97\xc2\x5a\xf4\x47\x32\x48\x45\x12\x84\x13\xf7\x4d\x10\x2a\x2f\x2f\xea\x76\xad\x5a\x8e\x6d\x39\xb0\x50\xf0\xb2\x88\xe2\x48\x75\xaf\x1a\xb9\xf3\x65\x6b\xb8\xc0\x98\xcc\x4f\x8c\x14\x9f\x26\x39\x32\xac\xf9\xd0\x05\xc8\xbc\x82\x0f\x84\x50\xb1\x85\x6d\xee\xd4\x9b\x72\x53\xc6\xc2\x48\x62\x62\x6b\x4a\xc3\x5e\xb4\x21\xbd\x63\x5b\x60\x6a\xbd\xbc\x61\x53\x54\xd8\x6f\x05\xbb\x8a\x3f\x15\x19\x02\x62\x32\xc8\x31\xf9\xf4\x82\x7e\x5a\xea\x72\xbd\xab\xf5\x22\x6e\x6b\x51\xa4\x46\x3d\x2a\x72\x23\x06\xe6\xf1\x73\x97\x85\xe3\xdc\x64\x9c\xa1\xc7\xee\xdc\x82\xa6\x72\xfa\x4e\x39\x32\x4d\x04\x3d\xef\x79\x24\x64\x20\x33\x9c\x26\x63\xe2\x61\x77\x88\x4a\xd3\x36\xb2\xa7\x7d\xe9\x22\xb4\xd4\x14\xcf\x9d\x41\x3c\xb5\x9c\x89\x72\x0f\x1d\xac\xdc\x23\xd7\x99\x14\x07\xc0\xc8\x77\x24\xdc\xd3\x54\x53\x22\x14\x0a\x13\x2e\x56\x43\x3e\x4c\x07\xdc\xcc\x9d\x76\x02\x88\x8f\xcc\xf8\x47\x2e\x66\x15\xe3\x32\xbf\xc2\xa1\x59\x5c\x70\x92\xcd\x1d\x41\x7e\xb6\x21\xdf\x6c\xbc\x47\x68\xde\x84\xb1\x09\x89\x1d\x11\x99\x51\x7e\x56\x8c\x7a\xb8\x76\x82\xe7\xae\xc4\xb7\xa1\xd9\x42\xd0\x73\x17\x68\x04\x37\xcf\xbb\xdf\xfe\xbb\xb7\xfb\x70\xfe\xef\x14\x6f\x5f\x3a\xbf\xe2\xb7\xbf\x19\xb6\x6e\x51\x51\x83\xac\xc0\xbd\x85\xa7\x2d\xff\x41\xb6\x04\xad\xa6\x44\x1c\x12\x1a\x00\x8c\x1b\xa4\x92\x65\x86\x38\x43\x3e\xa7\x7f\x16\xf3\x48\x0c\xdf\x4e\x14\xd9\x46\xb1\xcf\xa9\xc7\x66\xf8\xe3\x00\xf8\xa2\x6e\x84\x72\x82\x8e\x2e\x44\xa0\x1a\x46\x2d\xd1\x7e\xc4\x46\x3a\xaf\x93\xdc\x44\x25\x14\x24\x3a\x71\xde\x55\x39\x3f\xce\x92\x48\xcf\x5b\x77\x7f\x12\xf9\xc8\x2f\xef\x9d\x29\xf7\xac\x8b\x38\xd7\x2e\x1c\xb6\x7b\x97\xab\x39\xd8\x72\x87\xd2\x4b\x3f\x9e\x66\x6b\x38\x8d\x4f\x24\x1b\xaf\x19\xfb\xa2\xa8\x8b\x6c\xf5\xe5\x31\x64\x0e\xf4\xd1\x1b\x30\xb1\x38\xd5\x6e\xc1\x22\xcb\x15\x72\xe7\x9a\x03\xcf\xb3\x9c\x94\xac\x4f\x6b\x5e\xa0\x54\xb0\x2a\x2d\x54\x5b\x53\x5d\x3c\x85\x48\xe1\x20\x85\x75\xa6\xb9\xbd\x40\xc0\xb6\xbe\xc0\x4c\x6c\xfa\xe7\xc2\xf5\x35\x65\xe6\xee\x02\xb7\x46\xee\x82\x46\x2b\x5e\x8b\x88\x9c\x35\x6d\xce\x74\xf7\xcf\xfa\x4f\xf7\xd0\xc9\x5c\xfe\x84\xf7\x0d\x95\x5b\xf3\x68\x7c\xb3\xb8\xea\x2f\xaf\x86\x05\x13\x61\x3d\xd9\x5c\x40\x97\x74\x01\x14\x17\x29\x27\xd0\xc3\x96\x03\x7c\x07\xe3\xf5\x84\x3b\x06\x0e\xbc\xed\x70\xe4\xff\x13\x0e\x77\x8c\x93\x5a\x79\x62\xb5\x2d\x8f\x6c\x61\x9b\x06\xdd\x6d\x23\x69\xdb\xc7\x5f\xee\x7e\x3b\x71\xde\x7f\x4c\x91\x43\x21\x75\xf8\xc9\x4c\x15\xc4\x2a\xd4\x10\xea\xb8\x83\x2d\x6f\x84\x5c\x56\xfd\x3d\x64\x31\x00\x93\x73\x1e\xfa\xc8\x0c\x89\x2d\x8f\x32\x3a\x95\x35\x6e\xd9\x70\x8c\x83\x5f\xd8\x9d\xfb\x3f\x8e\x05\xb5\x8f\x6c\x0b\x3a\xf8\xd2\xfa\x02\x8f\x03\x7a\xa1\x7e\x9b\x74\xc9\x3f\xf1\x8e\x49\x83\x80\x62\x3e\xb1\x4e\xce\x48\xf7\xf1\x87\x57\xee\x3c\xf3\xfa\x3d\x32\x7e\xee\x15\xbc\x64\x7a\x9c\xf0\xb2\x3c\xd8\x23\x37\x05\x07\x92\xd4\x29\x9f\x08\xfa\x33\xe4\xc7\x40\xba\xd9\xf5\x93\x18\x0a\x59\x80\xfd\xf4\x93\x87\x18\x06\x51\xf6\xc5\x4b\x16\xcb\x14\x84\x0f\x85\xf3\x0c\x1d\x94\x57\x85\x6b\xd9\x4b\xb1\x9d\x50\x7e\x2b\x45\xf8\xce\xa6\xb7\xd1\xd1\xc9\x97\x9f\x7a\xe7\x47\x27\x65\x62\xc7\xa4\xc9\x44\x02\xab\x3b\x85\x87\x81\x93\xc8\x98\x15\xbc\x13\xa9\xa2\x78\x30\xf0\x4d\x6e\x3e\x9e\xf2\x11\x6a\xe1\x5c\x55\xe1\x34\x39\xcc\xd3\x9e\x4e\x45\xa1\x18\x6b\x05\xe4\x17\xb8\x97\x07\x13\x52\xd4\x2c\xf9\x2d\x2b\x87\x18\x19\x99\x07\xe7\x87\x54\xc0\x90\xcb\xbc\x9f\x81\x2b\x3a\x7a\xb8\x49\x4e\x16\xb1\xb0\xdd\x3a\x1a\x7f\x1d\xf4\x12\x03\x4d\xd8\xad\xd7\x9a\x5f\x4c\xee\xb5\x98\xab\x0a\xf0\x45\xab\x25\x5c\x2e\xa2\xee\xd6\xee\xcc\x1f\xda\xb6\xe5\xf7\x3c\x06\xc3\x96\x03\xee\x36\xbf\xdf\x7f\xff\xe3\xc4\x7a\x38\x75\xbf\x54\xdf\xef\xf1\xfb\xe4\x7a\xf6\x6a\x85\x68\x52\x71\x0c\x7a\xf6\x62\x62\x8d\x97\x6a\x38\xc1\x56\xcc\x39\x23\xf8\xa6\xc8\xf5\xab\x8c\x7f\x84\x72\xdd\xa5\xf1\x30\x4d\xfd\xa4\xe6\xce\xe8\x26\xc2\x2a\x31\x18\x8a\x01\x68\x52\x22\x22\x0e\x20\xd7\xf6\xea\x18\x4a\x53\x3f\xcd\x81\xc3\x63\xd4\xf3\x75\x48\x90\xd8\x8b\xeb\x57\xc8\xd7\xb9\x3d\xf9\x0e\x0b\xb6\xe6\xb3\x12\x5b\xd3\xdb\x96\x54\x0b\x8d\xd9\xe8\xf7\x0f\x3f\xfe\xab\x6c\x78\x4d\xf8\x1c\xaa\x87\x7f\x67\x9f\x66\xf9\x87\x79\xb1\x73\x5f\x4a\xc8\x8c\x85\x98\xb1\x54\x72\xd2\x68\x30\xd6\x2a\xeb\xa4\x8c\xb3\x8c\xb4\x53\x6f\x3f\x61\x2b\x95\xc9\x36\x18\x0c\xf9\xa6\x2a\x07\xa1\x98\x6b\xd6\xa6\x54\x93\x69\x11\x6a\xb3\x51\x84\x88\xba\xd2\x61\xb5\xb0\x01\xda\xaa\xba\x77\x35\xfe\xe9\xdd\x3f\xfb\x17\x3b\x15\xd5\x3d\xa2\x46\xc8\x6e\x95\xf0\x14\x82\xec\x8b\x25\x9c\x12\x92\xa6\xa4\x85\xf3\xe6\x26\x64\xeb\x14\x08\xbd\x8d\x5b\xe4\xa7\xc0\x3b\x12\xc9\xf4\x0a\x3a\x85\xfb\x10\xaa\x79\xa9\xfc\x8e\x82\x27\x55\x72\xe2\x8a\xb8\x97\x44\x16\xd6\x32\x8c\x28\x83\x0d\x09\xdb\x8b\x1a\x8b\xdc\x29\xe5\x52\x57\xe4\x72\x64\x9b\x36\x01\x3c\x74\xcd\xe5\xb7\x6b\x16\x90\x6e\x98\x8a\xa6\x01\xd6\x41\xb6\x69\xa0\x50\xb2\x0f\x95\xbd\x2f\x2c\xf3\x25\xb6\x32\x72\xef\xb3\xf6\x71\x11\xbb\xc4\x46\xb7\xba\x99\xbb\xd5\x8b\x26\xb6\x14\x5f\xa6\x67\x48\x0d\x94\xce\x38\xcc\x11\x03\xad\xbf\xaf\xb5\x78\xc2\xeb\xdc\xdc\x05\xb5\xe0\x37\x5d\x5e\x2d\xc5\x38\xb6\x63\x5a\x4a\x1e\xbc\x15\x0e\x6f\x77\xe6\x4e\x10\x98\x4f\x97\x2d\xfa\xcf\x16\xf2\x24\x9c\x3c\x38\xe6\xe4\xa7\x45\x19\x95\x33\x88\xd8\x26\x3b\x9d\x87\x6c\x07\x62\x9f\xc7\x18\xa3\xe0\x04\x22\x82\x5b\xda\x40\xea\xe4\x32\x89\xed\x94\x00\x4b\x62\x4c\xbf\xa6\x8a\x6f\x34\x22\x0f\x28\x54\x7c\x57\x10\xe1\xd0\x97\x30\x39\xa7\xee\xf8\xca\x97\xa6\x14\x6a\xd6\x4c\x53\xcf\xd4\xcc\xaa\x31\xa1\x16\x91\xca\x31\x02\x9e\x21\x18\xdd\x12\x61\xd4\x31\x05\x3c\x7e\x76\x04\xb6\x0d\xd9\x47\x9a\xda\x0e\xdb\xba\x32\xed\x35\xd2\x71\xc0\x83\xe5\xe5\x8c\x60\xac\x7d\x84\xce\xda\x47\xe8\xae\x36\xc2\xd0\x45\x21\x87\x97\x94\x31\x7a\xd9\x63\xa4\x2b\xdb\x12\x72\xb6\x2d\x07\x7a\xf9\x66\x1a\xd3\xf2\x30\x70\x68\x6c\x58\x19\x53\x8d\x03\x53\x37\x09\x72\x31\xdf\x21\x9c\x53\xb3\x07\x94\xd7\x36\x83\xa3\x7b\xd9\xf1\x37\x2b\x6b\xb6\xf4\xd7\x90\xbc\xe6\xf9\xce\x4d\x18\x6b\x65\x26\x1a\x09\x08\xe2\x0d\xc5\xe3\x78\x7b\x0f\x4e\x66\x34\xfb\x7c\xa4\xb9\x78\x2a\x5d\x80\x22\x16\x8c\xf2\x0b\x04\x86\xd0\xce\x49\xa7\x9d\x46\x4d\x73\xd7\x72\x84\x80\xee\x97\xb3\xca\x25\xcc\x04\xc7\x63\xa2\x51\x1e\xaf\x6b\x33\x3e\xd6\x16\xa6\x59\x8f\xf3\x8c\x0c\xce\x95\x42\x2f\x7d\x4d\x7d\xe8\xa8\x9a\xba\xdf\xce\x9e\x6f\xe8\x53\x0c\x1f\x04\xa0\x0f\xe4\x4b\x51\xaa\x6b\xc9\x26\xc1\x72\x6a\x90\x1f\x7a\xb7\x13\x71\x99\xa2\x97\xd1\x2e\x9a\x01\xdc\x72\x68\xfa\x50\x9f\xe4\x67\x96\x6d\x5b\x1e\x1c\xb9\x8e\x29\x40\xa1\x5e\x09\x33\xf0\x60\xcd\x16\xb3\x37\x88\x49\x3e\x27\xd6\xc4\xa2\x07\xe4\x75\x27\x76\x09\x3b\xcb\x08\xa2\xc8\x7e\x53\xef\x22\x18\x7f\x9d\x45\x30\xbe\xd9\x45\xe8\xfc\x75\x16\xa1\xf3\xcd\x2e\x42\xf7\xaf\xb3\x08\xdd\x0d\x2c\x42\x11\x4b\x48\xfd\xd6\xf8\x98\x16\x52\x50\x8f\x31\x47\x9b\x57\x57\xf0\xf8\x74\xf8\xf1\x04\xef\x16\xae\x06\x98\x5b\x7e\xcf\xcb\x28\xc2\x17\x4f\xac\x90\xed\x79\x51\xa1\x5e\xe0\x8a\xda\xa8\x39\x2a\xbc\x54\x3b\x60\x64\x7b\x3b\x2d\xbe\x71\x37\xbc\x6a\xbf\x74\xc0\xf0\xe5\xf8\x73\x4a\x0e\x5c\x91\xd5\x58\x13\xe9\x8c\x83\x74\x88\x9a\x9f\xdb\x59\x13\x21\x42\x49\x5d\x94\xc2\x94\xa6\x4b\x8e\x2d\x68\x9b\x1e\xc4\x99\x66\xe4\x1c\x67\x04\xca\x5a\x92\xf9\x5e\x88\x6e\x1c\x44\x11\x09\x37\x59\x55\x99\x02\xaf\x15\x4d\xce\x99\xce\xfb\x54\xa9\x43\x27\xeb\x2b\x8b\x73\x88\x3c\xf1\x2c\xa5\x9f\x13\x4b\x0f\x2f\xcc\xc0\xe1\x2c\x7a\x91\x49\xfb\x93\x4d\xb6\x94\x3a\xe2\x65\x33\xac\x62\x7e\x26\x69\x69\x73\xa2\x68\xf4\x6b\x0b\x25\xd1\x98\xb4\x11\xca\xd4\x26\xb2\x62\xc5\x8d\x73\x32\x22\x28\x14\x8d\x1d\x73\x90\xa0\x46\x37\x30\xb7\xb0\xef\x6e\x6b\xf4\xb5\xdd\xf0\x85\x6f\xbe\x73\xaf\x52\xcc\x6d\x25\x30\xf3\x5f\xf1\xa0\xb9\xe4\xe5\x9b\x18\xbb\x44\xb1\x3b\xbe\x0e\x02\xff\x89\xf9\xaf\xe6\x90\x52\x2a\x7b\x96\x9c\xe2\x92\x0c\x74\xb7\xbc\xaa\x97\x9a\xda\x53\x88\x0f\x65\xb6\xe9\x3b\xd7\xb6\x46\xcb\x1a\x63\x6c\x27\x0b\xcb\x84\xb4\x36\x24\x0d\xb4\xfd\x1f\xb4\xb0\x61\xcb\x9b\xc3\x51\x50\x15\xab\xa6\xd8\xdb\xc6\xdb\xe3\x33\xe5\x0d\x95\x7a\x9a\x6a\x6a\xb2\x35\x25\x1e\x82\x1b\xaa\xa3\xe1\x44\xaa\xcf\x6a\x71\x5f\x5c\xbf\x46\x43\xb4\xf0\x99\x64\xc7\xbf\x5f\xd8\x74\xc3\x26\x8a\x9b\xb1\x17\x5a\xe4\x23\xbf\x71\x41\x42\x2b\xca\xce\xd4\x64\x0a\x7f\x04\x99\x6d\xa4\xbc\x4b\x5b\x1d\xb4\x75\x7a\x52\xfd\x00\x88\x73\x7b\xd2\x57\x06\x26\x14\x59\x68\x53\x5b\x53\x7f\x83\xff\xf9\xc1\xb6\x95\x09\xa1\x2d\x80\xa1\x02\x94\x0f\x1f\x4e\x4f\x14\x6b\xac\xe0\xa9\xe5\x29\xf4\x64\x55\x2c\x4f\xb1\xe1\x18\x2b\x70\x36\xc7\x4b\xbd\x88\x50\x5b\xc0\xb4\x2f\x97\x82\x8b\x55\x7f\x2a\xbf\x6e\x3c\x42\x38\x9a\x81\x77\x31\x9c\x59\xbe\xc3\x86\x9f\x7f\x26\x25\xcf\x4d\x08\xd7\x96\xf7\x0e\x59\x1e\xe6\x31\xcc\xb1\x57\xa7\xce\x1d\xb0\x2d\x53\x96\xb8\x3a\x7e\x30\x27\x52\xd8\x24\x72\xe0\x70\x94\xa5\xe4\x72\xe3\x68\x08\xcf\x20\x22\x87\x5c\x82\x3b\x58\x60\x5d\xd6\x87\xbd\x34\xc4\x94\x05\x74\x41\x2b\xdc\xac\x0a\x68\xf2\x08\x49\x01\x0d\x41\x2e\x4c\xa6\xe1\x9d\x8b\xb0\x69\xd3\x39\xe6\x15\x3b\xd2\x99\x0f\xe1\x6b\x8e\x29\xab\xa3\x19\x23\xed\xa0\xdc\x4a\x2b\x49\x48\x74\xcf\x93\x9e\x5c\x67\x39\x73\x17\x5e\xb1\x4c\xe8\x3d\x5f\xe0\x8e\x56\xad\x11\xfc\x25\x48\x53\x7e\xad\x1e\x21\xa8\x2c\xdd\x85\xe2\x2d\xf8\x1f\xf7\xc0\xa1\x41\xec\x26\xb4\x21\x86\x8c\x49\x1c\x1d\x9f\x29\xb4\xf0\xf3\xab\x1a\x42\xfa\xd3\x65\x37\xd9\x4a\x45\x9e\x45\xf8\x31\x9b\x60\xfa\x22\xfa\x61\xfb\x9a\xca\x9b\x46\x97\x93\xff\x9a\x03\x24\xec\xd2\x41\x4e\x0b\xbf\xeb\x2c\x7a\xcb\x0a\xc0\xe7\x28\x2f\x8d\x82\x79\x31\xd1\xd5\x08\xb2\x17\x64\x1c\x07\x72\x26\xbc\x11\xc4\x8b\x1a\xac\xa1\x5c\x28\x84\x1e\x15\x19\x66\x6b\x99\xd4\xc8\xdf\x91\xe9\x93\xea\xc4\x27\x25\xdd\xc5\x89\xab\x08\x2d\xa3\xfe\x67\x7e\x26\x80\x14\x07\xcc\xf0\xaf\x15\x6d\x40\x11\xb3\x40\x59\x53\x42\xb8\x58\xeb\x16\xd2\x94\x9c\x7e\x3e\x6e\xb7\xbb\x3b\xa7\x85\x2d\x41\x52\xad\x47\x14\x8a\xf7\x79\x6b\x1e\x7b\x4c\x2d\xca\xc1\x62\x6d\xcb\x55\x24\xf9\xdd\x5d\xa0\x80\x45\x12\x8d\x57\x19\x42\xe8\x28\xc0\x34\xa1\xa9\x97\x3c\x93\xaf\xa6\x10\x41\xe5\x1e\x78\x0a\x70\x14\x2a\x4a\x93\x7e\x2c\x67\x42\x98\x73\x68\x98\xb4\x7e\x57\xa9\x4a\xe2\xa3\x91\x9f\xc6\x4f\x03\x8d\x1e\xb8\xab\x05\x8d\x1e\xb8\xdb\x30\x1a\x7d\x46\xb9\x45\x34\x12\x14\xb0\x79\xd4\x81\x43\xda\xd3\xa6\x89\xd1\xdb\x34\x0a\xcf\xdd\x7b\x65\x41\xa3\xb0\x1d\x78\x9f\x0f\x65\x09\xfc\xb1\x5e\xf1\x14\xe0\x0d\x21\x6f\x64\xbb\xce\x13\xa0\x40\x3a\x8d\x3a\x08\x90\x74\xb4\x1a\xfd\xa5\xc5\xaa\x57\x7e\x54\xc7\x35\x8e\xfc\x38\x2e\x79\x96\x43\xd3\xc2\x9b\x3f\xc1\xf7\x9c\x83\x97\xf3\x93\xf6\xe5\x6a\xb7\x02\x85\xf3\x91\xf9\x99\x46\xd2\xae\x12\x7a\x9a\x2a\x6a\x1f\x27\xcd\x5b\x7e\x51\x69\xaa\xa5\xd8\x0a\x47\x19\xcf\x0d\x7e\x16\x94\x9c\x2e\xa0\xe5\x44\xca\xdc\x17\xc9\x58\x65\x74\x34\x55\xac\x55\x5c\xec\xea\x6b\x46\x3b\xab\x58\x35\x7d\x9f\xae\x6e\x14\x28\x92\x9e\x54\x8c\xdd\x0c\x3b\xb9\x1a\x8f\x41\x2e\x9e\x3c\x57\x6e\xe7\x3f\xb2\x6d\xe5\x8a\xec\x55\x2f\xdd\x50\x59\xdc\xc2\x94\x40\x40\x76\x44\x40\x12\xf6\xa9\x91\x67\x81\x8a\x9a\x72\x8a\x3b\x09\x1b\x9a\xd4\x14\x54\xe0\x1a\x31\xa7\xf3\x73\x78\xcf\xb8\x5d\x61\xe3\x47\x45\x5c\x06\x2e\xcd\xf9\xc7\x45\x96\x61\x23\xfd\xfb\xbf\x4e\x02\xc1\xfd\xa2\x09\x04\x0f\x92\x09\x04\xa3\x36\x1e\x9a\x43\x90\x9d\x98\xa7\x27\x65\xb3\x08\x8a\xff\x1d\x87\x3b\x29\x95\xad\x65\x5f\x3b\xa8\x21\x9f\x60\x82\x81\xc8\x52\xf4\xed\x65\xa7\xe8\x8b\xc1\x63\x41\xd3\x87\xe8\x79\x85\xeb\xa5\xbd\x95\xb3\x0d\x16\x02\x6a\xb7\x38\x50\x85\x72\x10\x16\x07\x70\xb7\xb0\x0d\x42\x29\x6a\x5c\x49\xb3\x8a\x52\x61\x32\xdd\x28\x4a\x5e\xb3\xb5\x92\x5a\x46\x57\xb7\x49\x2e\xbc\xa7\x64\x90\xcc\x35\x3b\x12\xcd\x25\x15\x5b\x1f\xbc\x14\x5c\x7d\x37\x33\xae\x6e\x66\xfc\x90\x55\xa8\xa8\xf2\x8c\x9e\xa8\x8d\xb1\xc4\xd1\xce\x83\xde\x0a\xca\x49\x61\x81\x95\xbb\x1c\x65\xc9\xa8\x65\xe2\x75\x30\x5a\x94\xd7\x8e\x88\xb4\x5e\x52\x27\x62\x51\x4c\x1b\x57\x8a\x46\xde\xfe\x0e\x9e\x2d\x50\x46\x3c\x8e\xc6\x23\xac\x82\x7f\xfd\xfc\x5d\xbe\x9f\x47\xb6\xfa\xe4\xf8\x41\x92\x5c\x8b\xaa\x53\x33\xb2\x2d\xef\x69\x68\x46\x86\xa1\x19\x9d\x2c\xb2\x63\x0d\xd6\xa7\x1a\x84\xd9\x06\x39\x77\x98\x16\x53\xd4\xa5\x2a\x59\x89\x0d\xbb\xae\x3d\x04\x28\x56\x88\x6d\x3d\xb2\x7a\x12\xba\x54\xff\x96\xa4\x26\xa7\xc7\xac\xe9\x37\x32\x96\x28\x9a\xf8\xfc\xce\x7f\x50\x11\x22\x8e\x9e\x42\xda\x47\x28\xc1\xa4\xc8\x1a\x57\x35\xbd\xa4\x21\xa4\x77\x3b\x91\x59\x4f\x64\x97\xf3\x2b\xfa\xfa\x47\x45\x38\x45\x5d\x60\x78\x7b\x13\xce\x46\x17\x4e\x4f\x47\x6b\xee\x26\x1f\x0a\x63\x5d\xaa\x33\x0c\x9f\x50\x76\xc6\xba\x35\x1f\x0d\x69\x78\x67\x73\xa3\xcc\xaa\x30\xea\x7b\x34\xc9\x43\x22\xdf\x81\x13\x29\x9c\x26\x14\x2f\xcf\x45\xb8\x35\x5c\xaa\x3c\x87\xe9\x21\xf0\x46\xaa\x16\x1b\x3b\x94\xc5\x22\x9f\x3b\x15\xe6\x07\xb1\x9d\x83\xc3\x25\xa3\xb3\x7d\x3b\xd3\xbe\x12\xae\x7e\x15\xb7\x46\x46\xac\x74\xc6\xb4\x53\x72\x2f\x48\x9a\x16\x33\xf0\xe8\xdc\x68\xc6\x03\xbb\x98\x5b\x52\xd2\xe6\x53\x36\xf5\x6c\x3a\x27\xcd\x01\x28\xe1\x77\xc1\x4c\xd8\x7c\x70\xdf\x13\x75\x06\x1c\x30\x81\xb3\x80\xc4\xab\x57\x5f\x4c\x4b\xd6\x2b\xc6\x5a\x5b\x6d\x45\x79\x3e\xaf\x72\xc3\x46\xd5\x41\x39\xe6\x6b\x36\x17\x65\x2a\x7e\xfc\x25\x91\x2e\x34\xbf\xbc\xf4\x35\x85\x25\x54\xa2\xa1\x0e\x3b\x10\x6b\x10\xcf\x3e\x2a\xa4\xaf\x50\xfe\xd4\xc0\x47\xf6\x3a\xd0\x7f\x4a\x54\x87\x90\x38\xe7\xfa\x16\x82\x44\xd5\x89\xb8\x47\x6e\x71\x63\x4f\x8c\x38\x8a\x14\xa1\x92\x7c\x56\xb4\x20\x95\xe4\xd3\x5a\xf9\x45\x5b\x53\x5f\x9b\x96\xa4\x38\x41\xde\x44\xca\xb5\xae\x09\xe2\x68\x62\x8c\xcf\x0b\xb8\x80\x6a\xb6\xa5\xd0\x68\x87\x8d\x02\xf1\x44\x62\x45\xa9\x4b\x8e\xb8\x5c\x75\xf7\x89\xe2\x4d\x9a\x46\x05\x3a\xe6\x31\x37\x34\xc5\xb1\x14\x85\xfa\x98\xdf\x6d\x56\x86\x3b\x71\x72\x04\x4e\x78\x61\x62\x4d\xf5\xbf\x2b\xbb\x51\x37\x8d\xcb\x30\xd9\xf9\x2e\x70\xd9\x38\x2d\xe2\x9f\x95\x87\xd4\xd2\x05\x65\xcb\x76\x94\xd0\x00\xb3\xae\xc6\x4a\x9b\xc8\x62\xe8\x9e\x17\x95\x36\xfa\x11\x44\xaf\x4c\x28\x25\x1d\x33\x4b\xd4\x4d\x48\x9f\x7b\xbe\xab\xc5\x2a\x13\x97\x58\x6f\x73\xa8\xab\x64\xb2\xf9\x9c\xc5\xcc\xa7\xe8\xb5\xd9\x29\xf7\x62\x56\xc1\x4d\x12\x52\xd4\xf5\xf2\xe9\xd0\x49\xc8\x56\xfb\x57\x20\x83\x22\xc6\xe1\xfd\x4a\xc6\xe1\x3d\x6d\x5f\x3b\xd0\xfa\x65\xcd\xc0\x5d\xad\xa7\xa5\xde\x0d\x19\x5a\x27\xa3\xbf\xec\xc4\xe4\x29\x97\x07\xcc\x5b\x07\x20\xa8\x38\x2e\xd9\xe2\x9e\x9e\x12\xfb\xbc\x92\x9f\x4e\x4d\xa6\x64\x5e\x07\xb1\xa8\x2d\x39\x28\x70\xbb\xad\xe0\x5b\x04\x8e\xce\x0f\x0c\xfb\xdd\x4a\x6e\x36\x0c\x0c\x35\xa8\x75\x14\xfd\x8b\xd5\x79\x78\xb2\xb1\xb9\xac\xe6\x44\x9d\x11\xba\xbc\x8a\xc5\xa5\x5f\xf9\x29\x29\x1c\xce\xdd\x7b\x88\x5a\x2c\xbb\x69\x8b\x16\xc9\x12\x31\x39\x42\x81\x74\xe7\xdc\x54\xcd\x31\xf8\x86\xe0\x23\x5a\xf7\x9f\xbd\x78\x17\x2a\xc7\x41\x38\x89\x65\x9b\x97\x8b\xc9\x04\x7a\xc2\xd5\x69\xea\xde\x33\xf3\xe9\x6f\x53\xe8\x30\x95\x94\x8f\x25\xb1\x34\x8a\xfc\xcf\xdc\x16\xc5\x4d\x62\x31\x1c\x5d\x2d\xe7\x50\xe1\x4b\xac\x88\xbc\xb2\x69\x21\x77\x74\xac\x73\x78\x7f\xc6\xd7\x2a\x5b\x33\x51\x2d\xef\x83\x63\x7d\x5e\x14\xc9\x75\x28\x14\xeb\xf0\xec\x56\xf8\x48\x6e\x0d\x90\x1c\x57\xfb\x21\xeb\x93\xfa\xb7\xf2\x47\xd6\xdf\x94\xc6\x91\x6d\x0b\xfa\xf0\x9a\x2b\x58\x72\x82\xeb\xd4\x7d\x89\x49\xac\x04\x6b\x8c\x38\x6a\xc8\x93\x14\x46\xe2\xff\x8e\xa7\xae\xeb\x41\x05\x28\xbc\x1c\x2d\x07\x46\x53\xee\x91\x85\xa1\x62\x39\x0a\x50\xc6\x0b\x4c\x84\xb5\x78\x0b\x17\xf1\x46\xc0\x59\x8a\xa7\x0a\x8b\x75\x2d\x9b\x3d\xab\x8e\xfd\x1f\xaa\x34\x53\x27\x13\x08\x75\xfb\x57\xe2\x04\x32\x6c\x3d\x31\x76\x90\x98\xe2\xaa\x5f\x16\x66\x0c\x7b\x4f\x91\x31\xec\xad\xc6\x18\xf6\xbe\x41\xb6\x50\x5b\xc2\x89\x23\xbf\x22\x54\xe5\x94\x13\x4c\x38\xfa\x2f\x49\x3a\x21\xf0\x55\x6f\xda\x89\x60\x15\xfe\xea\x89\x27\x56\x3b\xc6\x46\xc8\x9a\x67\xd0\x6b\x95\x23\x2c\xe8\x32\x27\x2b\x98\x84\x3e\x42\x49\xb7\x38\x79\xc4\x3a\x4c\xd0\x48\x18\xae\x28\x3c\xc2\x4b\x60\x1e\x39\xe2\x24\xfd\xad\x61\xd1\x9f\x18\x9f\x93\x3f\xf9\x2b\xe5\x3f\xf8\x9e\xd6\x20\x07\xd0\xbf\x72\x5a\x83\x84\x0b\xfb\xd3\xcf\x63\x70\x2a\xcc\x38\xdf\xf3\x18\x7c\x77\x30\xfe\x9e\xc7\xe0\xe9\xe5\x31\x88\xdb\x59\x2b\x59\x68\xb7\x13\x07\xd9\x7e\x77\xd9\x19\xed\x8d\x81\xdc\x40\xfb\xdf\x14\xe0\x18\x5a\x8a\xb8\x33\xef\xae\xb6\x97\xe5\xca\x4b\x5e\x3f\xf9\x20\xc7\x00\xbc\x8c\x50\xc7\xd3\x70\xa3\x6f\x28\xdc\x31\xe4\x9d\x93\xc7\xed\x5f\x9b\x16\x0e\xe0\x5c\x21\xa8\x31\xaf\x8f\xef\x81\x8d\x5b\x08\x6c\xec\x56\xf1\x4e\x4a\x0f\x6c\xa4\x39\xe7\x56\x09\x6a\x24\x1d\x94\x72\x0a\xe9\x6a\x59\x72\x4d\xad\x01\x8d\x9d\xd2\x01\x8d\x04\x9a\x2a\xb1\x7e\x59\x71\x0e\x35\x06\x33\x1a\x5b\x0b\x66\x2c\x52\xf4\x67\x2b\x41\x50\xa1\x43\x6d\xcb\xa1\x50\x31\x49\xa7\x92\x88\xb4\xa5\xb0\x28\xe8\xda\x3b\x17\x7b\x7b\x67\x6b\x0d\x8b\xaa\x23\x1e\xea\xc6\xb7\x07\x5b\xae\xc3\x62\xa1\xb6\x24\x31\x19\x6d\xcd\x30\x32\xc3\x9f\x68\x83\xcd\x84\x3f\x05\x52\xcd\x5f\x3c\xfc\x29\x58\x90\xff\xc6\x20\x28\x1f\xfa\x95\x42\xa1\xd8\xda\x94\x0d\x86\x02\xc1\x15\xc2\xf7\x70\x28\x8a\x73\xe4\x32\x56\x77\x0b\x97\x84\x2b\x8a\xe0\xa8\x18\x99\x32\x45\x2f\xec\x2c\x21\x09\x92\xda\x54\x74\x14\x9b\x45\x21\xeb\x48\xe4\xbb\xff\xfb\x7f\xcb\x7f\x13\xba\x0a\x2e\xff\xf1\x3b\x04\x47\xd0\x84\x4e\xf2\xca\x7f\x33\x61\x59\x21\x4e\xe2\xf9\x38\xcb\x12\xb8\xd2\xd8\x58\x16\x07\x2b\x1c\x7f\x91\x1b\x4c\x15\xf3\x2e\xaa\x70\x71\xce\xfe\x17\xbe\x3b\x57\x1a\x7f\x5b\xe5\xfa\x3c\xc2\xbc\xa4\xd3\x2c\x70\x95\x9e\xe2\x33\x9a\x4f\x4f\x05\x83\xd5\x12\xb7\x85\x6c\x75\x5a\xc1\xaa\xf8\x37\xa7\x39\x15\x76\x94\xfc\x28\xb4\xe0\x12\xb6\xd6\x80\xbb\x10\xa9\x9a\xd1\x2d\x57\x94\x7a\x64\x1e\x29\x4f\x95\x84\x24\x73\xad\x4a\x47\xd5\x70\x3c\x8f\x70\xa6\xa2\x96\x74\x32\xf5\x30\x4f\x2b\x67\x55\xdf\x72\xd8\x9f\x16\xbe\xd0\x89\x05\x00\x6a\xc5\x2e\x78\xac\x3a\x2f\x78\xbe\x87\x0c\xa6\x7c\xb6\xd6\x90\xc1\x2a\x07\xd7\x37\x1b\x38\x98\x42\x1c\xfd\x0d\xc7\x6c\x15\x6f\x59\x5c\xb6\xee\x6f\x2e\x26\x2b\x6f\xfa\x46\x90\x81\x2d\x87\x1f\x96\x43\xcf\xda\x6e\x1d\xe3\xe1\x42\x65\x6e\x1d\x57\x9a\xdc\x9a\x83\x58\xb6\x1f\xc2\x52\x8c\x88\x22\xa1\x2c\x21\x86\x54\xea\xf2\x66\x5b\x46\xc1\xea\xa1\x2d\x5b\xce\x05\x7f\xf6\xeb\xe4\x6c\xe7\xe5\xe2\x9f\xdf\x7c\x2e\xf8\xc0\x72\x58\x31\x17\x7c\x81\x59\xc1\x07\xcb\xc3\x05\x27\x75\xe4\x84\xa6\x04\x6c\x04\x81\xb9\x54\x58\x07\xca\xd8\x45\x4c\x74\x62\x4a\x53\x2b\xec\x0d\x3f\x07\x16\xd2\x95\x77\x36\x04\x1e\x54\xa0\x83\x21\x52\x80\x62\x5a\xe3\x31\x44\xd0\xc1\xca\xc8\x9d\x0d\x45\x53\x77\xec\x4b\xe3\xd4\x71\x8e\x99\x87\x14\x3c\x85\xa1\xfd\x43\xa4\x35\x72\xa6\xd3\x74\xce\x0f\xd4\xbf\x6c\x12\xbc\xae\x39\x53\x7e\xa4\x5f\x79\x0c\x61\xc1\x4d\xfb\x0d\xa5\xcf\x97\x50\xde\x3a\xd2\xe7\xe7\xae\x59\x2d\x68\xdc\x5e\xfa\xfc\x00\x8d\xeb\x4c\x9f\x5f\x09\x8b\x29\x27\x48\xaa\x36\x5a\xab\x4f\x4e\xc5\xec\xe4\xb7\x77\xdb\x8a\x9a\x34\xa7\x43\xdc\xfb\xe7\xbf\xfe\x58\x21\x6a\xb2\xa6\x78\xc8\xa4\xc7\xc5\x0a\xa5\xe9\x56\xf0\x3e\xff\x05\x2e\xeb\xf2\x3a\xff\x05\x2e\x09\xab\x1f\x33\x27\xef\x32\x7e\xe7\x41\xa1\xd2\x58\x79\xd3\xa4\x4f\x7a\xc4\xf5\x7c\x57\x53\x6d\x38\xc6\x2d\x8c\xac\x59\x1c\x40\x0e\x58\xc4\x19\x52\x3c\x8d\xe9\x4d\x81\x9f\x3b\x39\x30\x08\x0d\x02\x3b\xd0\xcf\x78\x31\xbe\x92\x5e\xe9\x09\x97\xf7\x04\x76\xca\xf9\xad\x5f\xb9\x0a\x23\x10\x05\xf0\x3e\x34\x05\x3a\xa6\x02\x94\x5b\xb8\x54\xee\x2d\x3c\x15\x9f\x8d\x5c\x33\x6c\x23\xda\xa9\xc9\xe1\x28\xe1\x1e\x1e\xf0\xd7\x55\x97\x41\x8d\x46\x7a\x85\x5c\x86\x49\xcf\xc0\xc3\xf2\x4e\xfd\xcf\x77\x8a\xb9\x0f\x27\x37\x50\xc2\xf1\x5e\xb2\x0a\xe9\xf5\x1f\x23\x17\x96\x99\xd6\x3c\x49\x8c\x05\x35\xd9\x0c\xdd\x07\x35\x42\x7f\x7f\x78\x41\x40\x84\x34\xcc\x86\x20\x81\x35\xda\x5a\x08\x4d\x72\xe3\x1f\x73\x8a\xab\x58\x97\xbe\x0e\x36\xf6\x91\x95\xc8\x2c\xcb\xc8\xd2\x61\xfa\x28\x6a\x6e\x66\x55\x13\xe5\x2b\x51\xee\xb2\x27\xab\xec\x6a\x5a\x9d\x55\x80\xdd\x61\x1c\x74\x01\x72\xd1\x28\xc9\x72\xf7\xa3\x25\x6e\xae\xe0\x03\x06\x08\xfa\x16\xad\x10\x33\xcf\xaf\x75\x98\xe0\xc0\x7e\xad\xd3\x55\x98\x6f\x28\x92\xae\x08\xe6\xaa\x26\xca\x4b\xf7\x74\x58\xa1\x2e\x6a\x65\xc1\x20\xc3\xc0\xb3\xd1\xba\xa7\xb5\x9d\x06\xb5\x46\x13\x65\x44\x45\xac\x16\x5d\xb4\x22\xda\xd7\x1a\x59\x54\x0a\xe8\x1c\x60\x2a\xc5\x12\x65\x4c\x80\x99\x09\x15\xb6\x81\x3d\xe9\x1e\xa8\x37\xd8\xe7\x16\x2e\xd7\x10\xe6\xb3\x36\x9b\xef\xb7\x11\xe2\x53\xcc\x00\xaf\x16\x0e\xed\xc9\x15\x16\x9e\x4e\x48\xcf\xda\x0c\xea\x1b\x0d\xe7\xa9\x39\x60\x47\xa8\xf6\xe5\x8c\x01\x5b\x36\x34\xcf\x3f\xa0\xdf\x5f\xfe\xfe\x2f\x79\x76\xfe\x6f\xc9\xd0\x4c\x54\xc1\xb5\x96\x1b\xbd\x85\xcb\xbf\x68\xa1\xd1\x08\xea\xd6\x61\x23\x5d\x37\xea\xb6\x67\x1d\xa5\x06\x88\x35\xda\x45\x4b\x62\x6e\xf3\x16\xd1\x04\x0b\x2b\xc5\xfd\xb6\x13\x9e\xf8\xe5\xad\xfd\xfa\xf2\xa5\x29\x2f\xb4\x5c\xd4\xa1\x3e\x88\xc0\x0b\x39\xed\xd4\x15\xae\x78\x7b\xb7\x95\x68\xc5\xdb\xbb\xc4\xbd\xe7\xbe\x76\x90\xe5\x71\x9f\x5d\x2a\xed\x89\x44\x29\xde\xde\xe9\x22\x99\xba\xcc\x67\xe4\x17\xb8\x54\x76\x14\xaa\x18\x4b\x22\x14\xd5\xf4\xc4\xc8\x32\x4d\x2e\x61\x91\x93\xad\x96\x9f\x6b\x67\x57\x53\x3d\x9b\xa6\x1c\xbc\x6e\x6b\x2d\xae\xb6\x7b\x73\xdb\xc2\x85\xfb\x2f\x51\x8e\xb1\x12\xe6\xb8\xd1\x96\xbd\xfd\xc3\xb5\x88\xcc\xa6\xee\x08\xb3\xc4\x7c\x0e\x79\x0a\x84\x08\x28\xec\xa5\x69\x06\x29\xa6\x6e\x6e\x34\x23\x62\xad\x29\x09\x65\x42\x35\x96\x9b\x3d\x7c\x47\xb1\xb0\x5d\x23\x33\xf1\x4d\x10\x66\x5b\xb8\x66\xdc\x53\x0b\x54\x0d\xdb\x10\x8a\x96\xe5\x5c\xd5\x52\x51\x4f\x0d\xcf\xd0\xd6\x5b\x77\xc0\x6b\xe1\x20\x06\x2a\x13\x40\xcf\xb3\x4a\xd8\x37\xc3\xaa\x60\x48\xed\x21\xcc\x74\x44\xce\x77\xe4\x58\x81\x7b\x72\xc2\x5f\xb9\xad\xa9\xbf\xb1\x26\x7a\x08\x40\xe5\x8a\x68\xee\xbf\x7c\xa4\xa2\x19\x50\x08\x30\x0a\x9f\x97\x4e\x84\x0f\x65\x44\x64\x06\xd3\xc2\xca\x2f\x1f\xff\xf3\x83\xc7\xee\x41\xc2\xad\x3c\x4d\x19\x2e\xb0\x72\x0f\x15\x04\x47\xee\x6c\x06\x1d\x53\x31\x5d\x22\x5a\x78\x2e\x6b\x3d\x02\x88\xe5\xf6\x71\x5c\x1c\xbc\x02\x58\x01\xb6\xad\x2b\xa7\x58\x99\x81\xa5\xe2\xc0\x09\xc0\xd6\x1d\xb4\x97\x8a\x35\x9b\x83\x11\xa6\x9e\x0c\x44\x7f\xbb\x83\x8a\xe3\x9a\x50\xb1\x30\x19\x1f\x78\x9e\x3b\xb2\x00\x86\x26\xed\x5c\x57\x2e\x21\x54\x86\xd0\x76\xef\xa9\x63\xc5\xcc\x45\x50\x31\x21\x06\x96\xed\x29\xae\x43\x3b\x39\x23\xb3\xbd\x64\xb3\x55\x80\x63\x2a\x1e\x84\xb9\xd1\x49\xd0\xb9\x23\xeb\x79\x7c\x71\x7e\xf9\xe1\xec\xd3\xc9\xc5\xf1\x87\x5f\x5f\x9f\x5f\x1d\x5d\x9d\x5e\x9c\x7f\x62\x19\x89\xc4\xd5\x88\xe5\x60\x88\x1c\x60\x7b\x3b\x02\x23\xfa\x14\xcf\x6c\x55\x04\x2e\x61\x80\x26\x90\x90\xf6\xa7\xa1\x0d\x9c\x5b\xbe\x78\x88\x1e\xf9\x8e\xeb\xce\xa1\x03\x09\x6a\x10\x1c\x43\x84\x82\x8b\xab\xb6\xa6\x12\xd1\xcc\x74\x47\x0b\x42\x0f\xf1\x70\x8b\x00\x5a\xcb\x21\xea\x20\x7d\xaf\x97\xb6\x8c\x26\x8f\x66\x49\xac\x65\x9c\x21\x54\xa4\xdb\xcc\xbb\xa0\x30\x47\xea\x64\x9d\x1e\xb5\x2d\xd0\xff\xf0\x5f\x2d\x13\x7a\xd6\xc4\xf1\xd7\x8b\xad\xcc\x14\xda\x73\x25\x65\x79\xe4\x8b\xca\xe1\x0a\x53\x5b\xfa\xc5\x60\x1c\x35\xc5\x73\xd9\x99\xe1\x6b\xee\xfc\xa2\x48\xe1\x2f\xfd\x32\x3e\xa2\x62\xb2\x58\xc8\x64\xd1\xe4\x62\x1d\x86\xa7\x72\x34\x61\x7c\xaf\xec\x5c\x0a\xf9\x54\xe6\xcb\x10\x84\x45\x78\xba\x37\x75\xef\xd5\x24\x70\xf4\xf6\x2c\xe5\x2c\x97\xb7\x2d\x81\x88\xf2\xa8\x3a\x3d\xa9\x65\xcd\x58\xb4\x7f\xf5\x15\xfb\x11\x4e\xc1\x9d\xe5\x66\x38\x12\x94\x98\x4c\xd0\x99\xfc\xb6\x27\x8d\x87\x50\x7b\x2a\x28\x2e\x59\x64\x01\xc4\x7b\xaa\x01\x1a\xb2\x89\xc5\xbc\x8a\x16\x97\x4a\x5c\xe4\x47\xbb\xbc\xba\x3a\xab\x05\x48\xda\x4f\x0d\x20\xb2\xf9\x54\x06\x2e\x1a\x84\x19\x74\x7b\x3c\x85\xa3\xdb\xaa\x11\xb1\x79\xb0\xbf\x85\xc0\xc6\x53\x85\x8f\xb1\x0e\x5e\x63\x44\x35\x10\x4d\x49\x72\x13\x31\x7a\x8a\x90\x9a\xd6\x73\xe5\x7a\x2d\x6b\xba\xb8\xb1\xd8\x4d\x18\x10\x97\x37\x1c\xc0\x35\xe5\x69\x8b\x2d\xc9\xda\x2e\x73\x02\xa8\xc4\x11\xac\x25\x64\x96\x10\x23\x0e\x70\x10\x3b\xb1\x37\x92\xb9\x2d\x86\x94\x4a\x31\x16\x45\x32\xb9\xc9\x29\x69\xe3\x4b\x94\x76\x0d\xe4\xaf\x42\x6e\x40\xf1\x4a\x53\xdc\xf2\xc5\x50\x8e\x6f\x43\xa5\x8c\x26\xb5\x07\x35\x70\x63\x69\x29\xeb\xea\x96\x32\x9b\xec\xfc\x7c\x32\x86\x3f\x7f\xf0\x36\x94\xd9\x64\xdd\x86\xd8\x6d\x54\x7f\x96\x18\x62\x8d\x8e\x66\x74\x33\x93\x9f\xd0\x06\x6b\x36\xc6\xd6\x6e\x0d\xad\xc9\x4c\x59\xd1\xb4\x9b\x29\x4f\xa5\x58\x69\x3b\x7f\x55\x2b\xad\x61\x6c\xd2\x4c\xcb\x8b\xf1\x15\xb5\xd3\xc6\x52\xfb\x3c\x45\x8b\x6c\xf4\x5a\x71\xd5\x9d\x40\xfe\x97\x6f\x1e\x2d\xe9\x78\x89\xc1\x2d\x8d\xa1\x65\xbf\x4c\xe4\xce\x83\x5f\x08\xde\x41\xe4\xf9\xa5\x3b\x2b\xd1\x77\x09\xf3\x70\xd6\x22\xc6\xb7\xc3\x7a\x13\x27\x6d\x3c\xc1\x10\x07\x4b\x44\x4e\x84\xc4\x21\x96\xa0\xa6\xc5\x66\x23\x95\x38\x43\x8b\x39\x46\x10\x62\xf8\x80\x13\x99\x89\x42\xb1\xf8\xc2\xa9\x36\xec\x8f\x9f\x91\xed\x30\x96\x4f\x28\x92\x36\x47\x64\x29\x52\x2f\x59\x3c\xdb\x70\xc9\xca\xa6\x24\x9d\x6a\xeb\x91\xa2\x56\x4f\x5a\x59\xd7\xc1\x94\x67\x91\x4e\x70\xe3\xa8\x17\xa6\xfc\x06\xa5\xe6\xec\x59\x75\x4e\x1f\xb9\x2e\x6e\xad\x33\xd7\xd7\xb7\x99\x7c\x2a\xb5\x16\xbf\xe5\xbd\xa1\x3b\xeb\xd0\x84\xde\x88\xad\xf3\x93\x2d\xcd\xbf\xa9\x6c\x4e\xf2\x72\x35\x3c\x7d\x85\x40\x18\x9d\x8c\x10\x5d\x08\x9e\xa4\xde\xec\xb9\x66\xa4\x6c\x09\x29\x67\xf8\xa8\xfc\xc4\x7f\x42\x96\x44\x83\x4f\x82\x7f\x26\x8d\x9f\x0a\xb9\xdb\x23\x6b\x32\x0d\x5d\xa8\xc6\x6f\x58\x23\xbd\xe4\xb8\x81\xfb\xcc\xa9\x74\xde\xa2\x6f\x3f\x6f\x4d\x4d\xbe\xca\xdf\x33\xd6\xa4\x7c\xb6\xb6\x8c\x35\x1b\xdb\x68\xe9\x63\x7c\xa4\x0a\xbd\xc8\x81\x53\x74\x07\x65\xef\xa8\x0d\xa2\xf5\x7b\x42\x9c\xef\x09\x71\xbe\x27\xc4\x79\x6a\x09\x71\x22\x19\x70\x42\x2a\x39\xcd\x09\xe2\x15\xf0\xec\xd8\xb4\xa1\xb8\x64\xd6\x1b\x7a\x41\xbf\xd3\x9a\xd2\x2b\xbc\x11\xbf\x25\xdc\xb4\xd1\xf8\xc1\x18\xb6\x2f\x10\xfc\x4d\x6e\x34\xa6\xb3\x92\x9a\x71\x53\x55\xf3\x4a\x37\x9e\x92\x53\x55\x95\x18\x03\x7d\xd1\x3f\x55\x8f\x26\x4d\xd8\xf0\x3f\x2e\x4f\x67\x04\x91\x80\xa5\x2f\x0c\xeb\xd5\xd1\x69\xe6\x95\x54\xa0\x44\x1a\x52\xff\x43\xeb\xd5\x12\xe6\x6e\x21\xe3\x60\x30\x61\x79\x6f\x45\x68\xa9\x9f\x59\x55\xd8\xc5\x1d\x17\x43\xf2\xaf\xbb\xc0\x3c\x3e\x9b\x9c\x60\xfe\x11\x2c\xbc\x4e\xfc\x34\xa2\xbe\x93\x7c\xfa\x93\x73\xda\x65\xe8\xc1\x05\xef\xbb\x50\xdc\x6d\xc8\xb8\x57\x45\xd5\x4d\x67\xfe\xd4\x8d\x8e\xfa\xa9\x4d\x01\xf9\x43\x61\x88\x53\x18\xa5\x8b\x8c\x38\x45\xf6\x70\x75\x2f\x79\xc9\x16\x2b\xbd\x3f\xb7\x1c\x28\x64\x9c\xbc\x9e\xbc\x84\xee\xeb\x9a\x02\x85\xb6\x12\xb2\x71\x35\x85\xe2\x36\x9d\x06\x5d\x04\x77\xd2\x75\x44\x6e\xf8\xbd\x59\xce\x84\xba\x37\x0a\x6f\xcd\xf2\x56\x90\x5a\x42\x33\x64\x74\x53\x9a\xea\x10\xde\x42\x80\x46\xef\xe2\xf3\xd9\x4f\x93\xf1\xdb\x62\xb4\x96\xe2\xa5\x27\x73\x53\x09\x89\x44\xbf\x5a\x8e\x35\x5b\xcc\x72\xeb\x53\xa6\xb8\xa8\x84\xed\xb0\xd4\xc9\xb3\xe5\x2c\x08\x48\x01\xa5\xbb\x33\x77\x82\xc0\x7c\xba\x24\x4a\xb1\xc5\xbd\x18\xaf\xd5\x19\x78\x20\xe3\xbe\x41\xec\xd8\x38\xb1\x26\x16\xc5\xeb\x75\x27\xc6\x25\x67\x5e\xee\xdc\xd2\x40\x83\xa6\x05\x9c\x0d\x41\x46\xc7\xda\x24\x70\x6c\x88\x0d\x41\x07\x1e\xea\x02\x2d\xf9\x4b\xdc\xc9\xf8\x03\xb6\xe8\x3f\xa1\x53\x3c\x98\xca\x8d\x64\x7a\xb2\x73\xb5\x36\xae\x81\x70\x09\x5f\x03\xfe\x0d\xaf\xa6\xbe\x85\xc3\xe9\xc2\x6e\x1f\x9f\xfd\xe4\x8d\x8a\xb9\x1c\xd0\x40\xf2\x32\xb2\x64\x95\x6b\x1e\xb5\x68\xfa\x1b\xcb\x2c\x70\xa1\xa5\xac\x74\x6d\xf4\xe4\x2e\x8d\x76\x08\x71\xa4\xdc\x1c\x95\xb2\x67\x6e\xc1\xf6\xbf\xee\x42\x12\x32\x3b\x3e\xcf\x27\x99\xae\xdc\xcb\x3e\x7a\x47\x71\x5c\xe6\x8b\x2b\x30\x49\x64\xa3\x58\xcb\x75\x41\xe4\xaa\x20\xcd\x56\x53\xc8\xe8\xa8\x9a\x23\x5d\xf0\x1d\xe1\x64\x2e\x34\x14\x81\xb4\xf4\x12\x0f\x29\x76\x11\x91\x0f\xc9\x20\xca\x1e\x5e\xda\x22\x95\xd4\xc8\x75\x46\x80\x39\xd3\x80\xd1\xed\x04\xb9\x0b\xc7\x6c\x59\x33\x30\x81\x87\x8a\x68\xe2\x79\xad\x3b\xe0\x67\x09\x0b\xbe\x68\xb5\x78\x0b\x3e\xdb\x1d\xf8\xc0\x82\x1f\x5a\xbc\xda\x85\x6f\xd2\x0c\x99\x8a\x09\x2d\xba\xa8\xe5\xdd\x4d\x82\xa8\x09\xc7\x75\x60\xe2\xf2\xbd\x40\xee\x2a\x43\x82\x18\x7f\xfb\xa5\x5c\x9d\x86\xd3\x8d\xa7\xe3\x35\x5d\x99\x8e\xa4\x71\x6b\x44\x67\x11\x75\x92\x6f\x6b\x6a\x93\x91\x5e\x9e\x54\x9c\x84\xac\x62\xee\xad\x64\x9d\x01\xbe\x61\x8a\x24\xf3\xa0\xd5\x05\x18\x13\x5b\x25\xa5\x47\x62\x0e\x98\x6f\xc1\x0c\x27\x13\xc6\xe9\xf8\x1c\xe8\x96\x2d\xc7\xe7\x84\x29\x23\xdc\x43\x45\xff\xf7\x70\xe2\x30\x99\xd7\x6b\x16\x23\xd9\x9c\x5f\x66\x25\x63\x60\xb6\x35\x39\x62\x13\xf4\xf9\x4f\xe1\x13\xac\x16\x11\xcd\x1f\xb6\xbc\x9c\xc6\x82\xad\x36\x2f\xa7\xdd\xbe\x7e\xfb\xf1\xe4\xf6\xbc\x58\xd1\xbb\x6a\x29\x49\x73\x02\x21\xca\x6e\x96\x2c\xa1\x40\xec\xd9\xa0\x0e\x55\x08\xb3\xd1\x41\x37\x24\x27\x64\x47\x9d\xc9\xbe\xc8\x8a\x78\x92\xb5\xcf\x89\xe4\x91\x4a\x15\x59\x71\x31\xb2\x0f\xf2\xc3\x9f\x64\x5f\xe5\xc5\x9e\xc8\xbe\x89\x17\xd9\xda\x94\x77\x44\x99\x1a\x36\xf2\x9a\x3b\xb2\x6f\x0a\x56\xd6\x29\x33\x78\xe2\x90\xde\xdc\xd0\xd2\x48\xaf\x8d\xce\x20\x16\x88\xb5\xd1\xb1\x65\x51\x7b\x35\x4e\x20\x5b\xa8\xa8\x35\x54\x4c\x16\xb8\x15\x1d\xa7\x54\x56\x01\xb9\x68\xb0\x2a\x22\xbe\xd5\xa8\x2d\x65\xed\x37\xcd\xf2\xc8\x2d\x49\xd0\x50\x10\xb2\x95\xc7\x53\xb3\x0a\xdb\x57\xbe\xfd\x57\x2a\x79\x00\x28\x91\x8d\xb7\x5b\xc2\x0b\x20\x9f\xe2\x36\xb2\x46\xdd\xbc\xd0\xad\x12\xbe\x1f\x95\x26\x59\xc4\x2b\xa0\x57\xc9\x2b\x20\xf3\x82\xbf\x54\x60\xe6\x53\x51\x14\xc2\x19\x08\x42\xe5\x46\xce\x5d\x13\xea\xca\x1b\x49\xda\x08\x4d\xb9\xb3\xe0\x7d\xae\x07\x6f\x7d\x29\x31\x56\x4c\xb1\x90\x95\x17\xa3\xb8\x72\x54\xef\xfd\x57\x00\x68\x39\x35\x69\x5b\x75\xc1\x3b\x3f\xfe\x7a\x72\xbe\x04\xab\x99\xb2\xb3\x8a\x79\xd3\xbb\xf0\xc2\x75\xbc\xeb\xac\x99\x4d\x08\xfd\xa9\x94\xcb\xde\x6e\x59\xe9\x11\xc0\xe4\x9c\x2b\x52\x54\xda\x77\xd9\x48\x96\x95\x66\xfe\x04\x65\xcb\x4a\x07\xb7\xe7\xdf\x64\x59\xe9\x85\xc3\xc0\x5e\xae\xb0\x0a\x41\xce\x9b\xd0\x71\x16\x74\x9c\x97\x7f\x2e\xc8\x83\xd3\xd6\xd4\x0f\xe2\x33\x46\xde\xb9\x0a\x68\x22\xd9\x8e\x9a\x7e\x88\xa5\x47\x60\xfa\xfe\x48\x51\x94\x54\xb1\xe3\x25\xfd\x89\xa0\xd9\x42\x50\x98\xa5\x93\x3e\x45\xec\xf8\x09\xd5\x0d\x41\x90\x22\x70\xe4\x6b\xe0\xcc\x97\x28\x27\x17\x0c\x93\x5e\xe2\x39\x60\x62\x8f\xfd\xdf\x47\x7c\x98\xd0\xa3\x40\x7d\x28\x40\xa0\xdd\x8a\xba\x43\x3a\x8f\x5a\xed\x92\x6a\x4d\x44\x5c\x89\x84\xdf\xa6\x13\x30\x27\x37\x72\x5c\xc8\x6d\x60\xd0\xb6\xdf\x42\x6b\x32\xc5\x61\x43\x58\xbf\xa3\x45\xa1\x94\xda\xbf\xb2\x63\x15\xf3\xe8\x31\x8d\x0a\x05\x7b\x93\x46\x37\xc5\x09\xd0\x90\x13\xa0\x11\x23\x40\x23\x49\x80\x11\x3d\xb9\xad\x6a\x81\x43\x5c\x21\x6f\xb7\x40\xd2\xd4\xe2\xeb\x5a\x81\xae\x40\x10\xde\x1b\x72\x93\xca\x22\x31\x2d\xde\xb8\x08\x5b\x2d\x76\xe5\x5d\x44\x12\x66\xeb\x50\xf2\xc6\x77\x15\x37\xda\x8a\xd2\x63\x25\x57\x5a\x4e\x5e\x1b\x16\x1c\xd1\xde\x2f\x67\xce\x7b\x60\xcb\x05\xc7\x39\x70\xa8\x68\x8f\x11\x70\x3c\x8b\xed\xe1\xe8\x0f\xe1\x49\x17\x14\x96\xa9\x9e\x44\xc1\x17\x33\x29\x2a\xd6\x99\x29\x81\x61\x3c\xee\x1b\xb9\xa7\xed\x67\xa5\x4a\x20\xaf\x9f\x7c\xd6\x5a\x87\x33\x63\xd9\xd5\xf5\x91\x6d\x47\x99\xf5\x8a\x27\xd4\xba\x44\x7e\x35\x94\xe0\x8a\xab\x2e\xf1\x34\x6e\x59\xb3\x8e\x23\xb0\xb4\x46\x20\x39\x56\x30\x18\xb6\x1c\x70\x17\x77\xed\x20\x02\x37\x39\xdc\x78\x14\x18\xbb\xbb\xa7\xe9\x2e\x7d\x1e\x8b\x10\xa0\xe1\x9e\xd1\x5c\x57\xbe\x73\x86\x97\x2c\x6e\x12\x71\xd6\xd2\xd4\xf7\xee\xc2\x31\x95\x2b\x64\xcd\x95\x2b\x8b\x9e\x5a\x81\x66\x1e\x31\x0d\xc4\x93\x2a\x88\xcb\x24\x36\xc1\x2b\x30\x2c\x78\xca\xac\x14\xfa\x37\x86\xd0\x1c\x82\xd1\x6d\xc2\x1c\xca\xb9\xc1\xb5\x6a\x39\x36\xaf\x8e\xb3\x7a\xac\xde\xc8\x9d\x2f\x5b\xdc\xca\xe4\x8f\x94\x64\x49\x23\xdb\x9a\x0f\x5d\x80\xcc\x2b\x5a\x19\x4b\xc5\x16\xb6\xa1\x9a\xe1\x9c\x24\x8f\xd6\x4b\x69\xb8\x1b\x6d\x18\xa2\xda\xd0\xe1\x4f\xa7\xaa\x9c\xbe\x53\xb8\xc8\xa1\x60\x57\xf1\xa7\x25\x43\x46\x8e\xe8\x2d\x1f\xa5\xaa\xbe\x15\x32\x99\x49\x56\x3d\xea\x2d\x5d\xe2\xda\x6a\xae\xc6\x62\x7a\xfd\xab\xfe\x5c\x9f\x1a\xf2\xbf\x63\x77\x6e\x41\x93\x20\x8d\x83\xf8\xbc\x42\x20\x6b\x56\x72\x9b\x70\xd1\xb3\x15\xc1\xea\x14\x07\xeb\xd2\x45\x68\xa9\x29\x9e\x3b\x83\x78\x6a\x39\x13\xe5\x1e\x3a\x58\xb9\x47\xae\x33\xa9\x02\x60\x96\xf1\xb1\x7e\xe5\x3a\x1c\xd1\x92\xc2\xea\xd8\xa9\x04\xbc\x90\x4f\x2a\xf5\x56\x9c\x03\x84\x2d\x56\x27\x92\xa7\x94\x59\x4c\xac\xb1\x84\x39\xfa\xec\xcd\x3f\xa9\x23\x51\x46\x37\xc2\x06\x51\x6e\x0c\x9f\xe1\x26\xbb\xf7\x5d\x50\xfd\xae\x53\xd9\x71\x85\x81\xe3\x0c\x3c\x39\x3e\xc2\xcc\xad\x31\x56\xd6\xb1\xdc\x30\xd2\xb3\x20\x02\x64\xd8\xab\xa0\x80\x7c\xce\xfc\x18\x5a\x5e\xc2\xab\xd1\x0c\x9f\x7b\x31\x0b\x93\x88\xaf\x95\x15\x39\x8b\xe4\xd1\x0c\x9f\x4a\xd2\xa3\x2a\x8c\x8d\x70\xaf\x79\x2c\x39\x51\xbd\xaf\xb0\x06\xd9\xf1\x07\xf2\xd1\x4c\x1e\x67\xc9\x84\xa9\x77\x02\xdb\xc8\xf6\x16\xe8\x11\xc5\x75\x0f\x41\xfa\xdb\x32\x5c\x5f\x98\xfb\xfd\xf9\xf1\xfc\x7d\x71\xc3\xf5\xaa\x1a\x06\x87\xb8\xb8\x2d\xbb\xaa\x92\x01\x46\x76\x52\xc7\x20\x27\x6d\x06\x3d\x65\x1f\xc4\x75\x5a\xd5\x05\x3b\xfc\x6e\x58\xff\x6e\x58\x7f\x62\x29\x73\x90\xcb\x1c\xf8\x6e\xe1\x32\xe2\x27\x97\x74\xda\x66\x6e\x4e\x92\x8c\x39\x6b\x4f\x95\x43\xc4\x3f\xe1\xe4\x6d\x1c\x68\x2a\x82\x33\x60\x39\x96\x33\xf9\xcd\x32\x69\x8b\xa8\x28\x98\xeb\x8a\x9f\x3b\x00\x76\x31\xb0\xe5\x9d\x13\xe5\x58\x61\x22\xd4\x0a\x03\xe4\x40\xb0\x56\x2f\xff\x3c\xcf\x9b\x92\x73\x95\x0a\xde\x69\xd7\xe1\x45\x03\x03\xce\x45\xda\x32\x99\x69\x25\x3b\xd5\xd0\x5f\x2e\x32\x40\xa9\xe8\x6f\x58\xc4\xdd\xaa\xa0\x33\x56\x89\xfd\x21\xf3\x5c\x0b\xd9\xbe\xed\xa4\x13\xdb\x3b\xe0\x79\x2c\x5f\x6b\x2c\xb1\xa5\xa4\xed\x6f\xa2\x4e\x4b\x81\xb6\xc7\xc8\xc2\xd6\x88\x09\x96\x46\x19\x23\x79\x0e\x61\xf5\x85\x4d\x83\x30\x03\xce\x0a\x82\x7b\xb5\xd0\x45\xcf\x17\x88\xdc\x90\x4c\xd0\x2e\xb0\xa3\x4b\xe6\x77\x2f\x98\x5e\x48\x0d\xc7\x6b\x86\xa6\xef\x63\x5e\x52\xdc\x7c\xce\xdf\xc5\x73\x27\x15\x5c\x40\x55\xe1\xd0\xfb\xa7\x68\xf4\x26\x8b\x21\x4c\x09\xcd\xa0\x70\x4a\x14\xd3\x2c\x08\x46\xa5\x79\x87\xa7\xed\x6b\x44\x31\xf2\xe7\xb8\x91\x6c\x80\xb4\xb8\xd5\x94\x71\xcb\x27\x40\x4a\x5b\xca\xdf\x82\x02\x46\x89\xa5\x14\xc5\x8d\x0a\xa0\x44\xb6\xbf\x0a\x2e\x65\x68\x06\xd5\x97\x32\x0d\x8c\x4a\xf3\x2e\xb2\x94\x1c\x37\x55\x97\x32\x18\xb7\xbe\xa5\x0c\xf8\x96\x64\x2d\x47\xe2\x65\x01\xa4\xc8\x18\x60\xd1\xd5\x0c\x4f\xa2\xfa\x72\xa6\x82\x52\x6d\xea\x45\x16\x54\x20\xa8\xea\x8a\x86\x46\x2e\xb7\xa4\xf9\xdc\x7d\x65\x9f\x68\x49\x10\x5a\x79\x61\x2d\x71\x3a\xff\xd7\x06\xab\x15\x5b\xb5\x14\x9b\x53\x8d\xd9\xab\x62\xcb\x9e\x19\xb8\x56\x90\xd2\xca\xab\xa8\x32\x7f\xce\xb2\x36\xb1\xa8\x7d\xab\x82\x5d\x6c\x3b\xd7\xf2\x67\x78\xff\xdd\xc1\x3f\x7f\x36\xcb\x98\xc5\x2a\xb9\x75\x0a\x6b\x58\xe1\x2b\xf7\x27\x72\xcf\xed\xc5\xad\xf9\xc9\xab\xee\x90\xc1\x7f\x6b\xb7\xdd\x39\x86\x38\xc9\x6d\x9e\xb0\x14\x68\xb2\x80\x6b\xa9\x65\x6e\x5b\xda\xa5\x6c\xd6\x95\x74\x4d\xb2\xd0\x26\xc0\xa0\x85\x5d\xd7\xc6\xd6\x5c\x08\x16\xef\xe1\xc4\xf2\xa8\x49\x47\xb9\xb3\x80\xb2\xe2\x8c\xc2\x72\x45\xbc\xe7\xe0\x24\xae\x0c\x6f\xda\x89\xbc\x02\x8d\x7d\xb7\x89\x7e\xa3\x36\x51\x4e\x24\x65\x05\x17\x89\xa7\x66\x3e\xdf\x8c\x16\x93\x4b\x18\xe9\x64\x5f\xc8\x83\xd9\x22\xbe\xc1\x61\x08\xca\x08\x4e\xa9\x42\x53\xaf\xb0\xd0\xd4\x2b\x18\xc9\x5f\x89\x89\xff\x77\xf8\x86\xa7\xac\x4a\x5e\x92\xca\xad\x3b\x85\x7b\xfe\xd9\x57\x8b\x7b\x78\xa2\x52\xa8\xfc\xad\xff\x38\x38\x7a\x79\xea\x92\xc8\x99\xc8\x8a\x9f\x30\xe1\x4d\xf5\x53\x7e\x87\x3e\x92\xf8\x9a\xf3\x81\x82\x37\xfe\x49\x78\xa8\x4a\x86\x7d\x27\xf2\x1b\x45\xa7\xfb\xdd\x63\xfd\xa9\x7a\xac\x1b\x46\x77\xd3\x2e\xeb\x19\x7b\xa4\xaa\x17\xbb\x74\x9f\x24\xdf\x26\x52\xf9\x14\xde\x27\x46\xd6\x3e\x31\x8a\xec\x13\x23\x6f\x9f\x44\x02\xc3\x9f\x80\xab\xfd\x46\xbd\xce\x23\xca\x6a\x41\x1d\x97\xfb\x46\x6e\x5a\xb1\xfd\xd9\x3b\xff\xed\xfe\xf8\xfc\xa2\x70\x42\xd8\x29\xf0\xa6\xd6\xc8\x45\xf3\x16\x83\x22\xe6\x87\x64\x8e\x3c\xfa\x5f\x7a\x40\xdc\x23\x30\x9f\xb3\x82\x66\x6d\x4a\xf3\x21\xe1\x92\x34\x49\xb9\x17\xce\xd2\x8f\x59\x92\xd6\xc2\xda\x71\x95\x5c\x2c\xd9\xf5\xc1\xda\xbe\x9f\x62\x48\x2c\x2e\x27\x90\x09\x0d\x33\xd1\x4d\x78\x17\x28\x0d\x59\x53\x3f\x89\x41\x34\xe7\x56\x0d\x75\xc5\xf2\x47\x29\x6c\xb2\x5c\x41\xc5\xca\x11\xf0\xe5\x0b\x96\x93\x29\xe0\x98\xd2\xa9\x82\x20\x5e\x20\x07\x9a\x7e\xaa\x5f\x5d\xd2\xf6\x77\x77\xa1\xcc\xc0\x52\x99\x82\x3b\xa8\xdc\x59\x9e\x85\xc9\x07\xca\x87\xf7\x67\x0a\x9e\x02\xac\x58\x9e\xc2\x0b\x4b\x92\x6e\x16\xce\xad\xe3\xde\x3b\x8a\x38\x23\x34\xc5\x73\x69\x3a\x89\x11\x70\x14\x8c\x96\xca\xc4\x25\x2d\x89\xba\xaf\x60\x97\x66\x13\x46\xae\x8b\x65\x03\x9f\x8e\xc9\x87\x48\x39\x3a\x3e\x53\xb0\x7b\x0b\x59\x6a\x63\xc7\xc5\xca\x98\xba\x2b\x8a\x5e\x11\xf4\x20\x56\x2c\xac\x29\xc0\x31\x49\x8f\x0e\xcb\x5f\x61\xd9\xb6\x32\x84\x0a\x82\xa6\x85\xa8\xd3\x9e\x18\xd0\x83\x18\x5b\xce\xc4\x53\xe6\x60\x02\xc9\x43\xe8\x60\x88\x14\xa0\x38\xf0\x3e\x18\x4d\x36\xa5\x2b\xb4\x54\x6c\xd7\xbd\x25\x20\x58\x8e\x42\x66\x97\x76\x67\x5f\x25\x84\x9d\x9a\xff\xc2\x51\xeb\xe9\x01\xe9\x39\xc1\xe8\x72\xba\x93\x10\x4a\x8e\x19\x4b\xa0\x2a\xc5\x86\xf5\x9e\xa2\xde\x47\x59\xb1\xd1\x82\x68\x7c\x97\x25\x75\x4a\x1f\x9e\x99\x0f\xe5\x63\xff\xe4\xfa\x54\x44\x28\xe8\xe9\x9d\x7a\x6c\x47\x15\x3b\xea\x44\x69\xd6\x8d\x1f\x76\x93\xdb\xcf\xed\xfe\xc9\x3d\x2c\x74\xd8\x55\xc7\x05\x87\xaf\x20\x36\x1c\x17\xd3\x2d\xbe\x85\x12\xbf\xc7\x3f\xb7\x1f\x26\x23\xb9\x51\xbb\x3e\x74\x08\x00\x0b\xe2\xc3\xdf\x85\x1b\xc7\xc7\x3f\x5f\xde\x1f\x1c\xed\xf4\x4f\xe4\x46\xfe\x7c\x2f\xd7\x2d\x8b\x46\x3e\xa7\xaf\x35\x5c\x4f\x92\xbd\xdf\x0f\xaf\x50\x17\x73\x13\x54\xc9\xff\x2f\x1c\xa1\x4a\x66\xfe\x8f\x9c\xd3\x28\x38\xda\xee\x21\x82\x8a\x07\xee\xca\x17\x00\x08\x9d\x76\xc9\x52\x00\x1e\xb8\x23\x67\xdf\x32\x3c\x56\x99\x32\x00\xa5\x50\x59\xb5\x94\x42\x1d\xa8\x0c\x30\x49\xe5\x9e\x21\x84\x5c\xd0\xa8\x15\x9d\xb4\x47\x5c\x1c\xa3\x31\xb9\xb2\xcc\x29\x97\xad\x3e\xae\x45\x4b\x88\x4b\x4f\x97\x1c\xbc\x4c\x19\x65\xeb\xb2\xf1\xd5\x14\x7a\x21\x19\x11\xd8\xb6\x7b\x4f\x05\x4a\xec\x2a\x34\x9b\xda\x84\x67\x48\x43\xca\x10\xb9\xf7\x1e\x44\x3c\xe1\x11\x14\x62\xf5\x6f\x70\xa8\x7c\x38\xd5\x95\xd7\x77\x10\x2d\x59\xfc\x94\xe5\xb1\xcd\x48\x3a\xb1\xdd\x11\xb0\x3d\xec\x22\x30\x81\x4c\x66\x9d\x43\xe4\x59\x1e\xf6\x14\x3c\x45\xee\x62\x32\x65\x62\xb6\x47\xdf\x89\x31\x16\x44\xfd\x88\xcb\xa4\xb9\x02\x97\xc8\xa9\x9e\x6b\x78\x1d\x5b\xd0\x36\x3d\x98\x93\x26\x58\x91\x3b\xdb\x47\xf2\x66\x61\xf8\x50\xa0\x17\x45\x6e\x89\x6f\x6b\x2a\x91\x26\xaf\xb2\xa5\xc9\x78\x27\xa2\x7c\x1e\x4d\x49\x1f\x98\x70\x59\x86\x2f\x91\xf4\xdd\xe1\x29\x44\xa9\x1f\xda\xbd\x8b\x4c\x35\x7a\xab\xc9\x25\xd8\x9b\xe0\xaf\x32\x75\xd3\xe2\x39\xa1\xaf\xa6\x90\x2b\x2d\x34\x65\x9e\x83\x95\x7b\x0b\x4f\x15\x04\x3f\x2f\x20\x59\x69\xe0\x51\x8a\xe1\x9f\x8e\xa8\xf9\xca\xff\xf8\x5f\x2d\x46\x49\xad\x38\x1e\x94\xb7\x57\x57\xef\x14\xb6\x37\x15\x7f\x93\xe8\xac\x14\x90\xe5\x29\x0b\x8f\x91\x18\xd9\x17\xc8\xb5\xe9\x10\x04\x9f\x82\x40\xef\x19\x65\xe6\x63\x36\xdf\xbd\x26\xd7\xf9\x46\x96\x6d\xcd\x5b\x0c\x67\xb4\x82\x61\x4a\x4e\x35\x71\x7a\x86\x57\x26\x72\x2b\x7a\x09\xee\x72\xf2\xc0\x3e\x2d\x1d\xc0\xe7\xe8\x59\x82\xde\x02\x5b\xb6\xb7\x03\xbc\x11\x5c\x93\xc8\x1b\x74\xa3\xe1\xe6\xd7\x3b\x80\x14\x67\x00\x75\x5a\x08\xbd\xa1\xee\xa8\xcd\x67\xcc\x10\xa0\x38\x3a\x33\x80\xff\x03\xbf\x72\x74\x5a\x4e\xbf\xd1\xd6\x5a\xb8\xa9\x33\xcb\x69\x43\x55\x9b\xfa\x1f\xae\xe5\xd0\x8f\x0e\x55\x02\xd0\xb3\x54\x70\xb0\x3b\x0c\x03\xa3\xa9\xce\x7c\x76\x38\x04\x1e\xdc\xeb\xb5\xfe\x88\x02\x47\x66\x55\x0b\x78\x02\x38\x80\x26\x54\x3b\xf6\x04\x40\xc6\x8b\x17\x77\xae\x65\x2a\xed\xe7\x83\xe0\xe5\xb5\x71\xf3\x2a\xfc\xe3\x50\x5d\xe0\x71\xeb\x40\xd5\xd0\x00\x8b\xce\x75\xec\xfe\xb8\xc4\xf0\x08\x21\xb0\x6c\xc0\x00\x53\xf0\x5e\xb9\x82\x0f\xf8\x04\x92\xad\x8b\x1a\x4e\x53\x37\xe9\x9f\x0d\xd4\x7c\xcc\x58\xe4\x21\x76\xc1\xb7\x8b\x15\x01\xf5\x6b\xc7\x87\x1a\xd2\x3f\x43\x98\x09\x30\x37\x46\xee\x2c\xc0\x5d\x36\x5e\x46\xc0\xb6\xc1\xd0\x86\x2d\xc6\x28\xd6\xba\x07\x9a\x5f\xd9\x54\x55\xf1\x48\x7d\x3e\x20\xc3\xba\x63\x05\xbe\xf2\x9b\x89\x56\x0a\x7c\x3c\x84\x99\x53\xe7\x09\xbb\xd7\x3d\x69\xb2\x86\xb8\xea\x1a\xf2\x49\x8a\x45\x62\x3a\xdf\xfb\xcb\x8f\xef\xf4\x77\xc8\x9d\x59\x1e\xd4\x11\xf4\x5c\xfb\x0e\x36\x70\x03\x36\xb3\x97\x8a\xd6\x42\xff\xf0\xfe\x6c\x63\xac\x2a\x01\x73\x47\x0a\x73\x27\x0c\x73\xe7\xe6\xf0\xeb\xa3\x86\x92\xdf\x76\xa5\xdf\x76\xc3\xdf\x76\x6f\x0e\x19\x59\x7f\x78\x7f\x7a\xec\xce\xe6\xae\x03\x1d\xcc\x51\x77\x0d\x05\x33\xc4\x21\x5e\xa8\x71\x88\x6f\xe1\xd2\x23\xbb\x62\x06\xe6\x8d\x24\xc1\x29\xe4\x30\x79\x3e\x70\xae\xe1\xcd\x2b\xd4\x80\xcd\x97\xea\x40\x7d\x89\x1a\xe4\x77\xf3\x10\x3e\x8a\xfe\x5e\xa8\xcd\x1b\x9d\xf9\x8e\x48\x3a\x51\xd5\xe7\x83\x41\xd0\xf8\x95\x9a\xb9\x58\xa6\xe5\xb1\x02\x8d\xeb\x5f\x2b\x38\x80\xfa\xb1\xeb\x22\x53\xc3\x03\xcc\xfe\x7a\x36\x76\x51\x83\xad\x61\x5b\x43\x83\xf6\xdf\xd1\xff\x42\xfd\x23\x1c\xf1\xb5\xf8\x3b\x7a\xf9\x92\xad\xb1\x3d\xa0\xcf\xaf\xd1\x4d\x0b\xf3\x3f\x9e\x39\x2f\x07\xf6\xdf\xec\x47\xf2\xda\x1b\xfc\x0a\xf0\x54\xf7\x3e\x23\xdc\x70\x9a\x2f\xa1\xce\xae\x39\x5f\x62\xfe\x87\x66\x0d\xbc\x97\x50\x3f\x32\xff\x58\x78\x98\xac\xe1\x4b\x1c\xfa\x21\x88\xde\xfa\x47\xfb\xc5\x8b\x86\x37\xb0\x9a\x1a\xed\x8e\x7a\x9b\x35\x0c\xb8\xfb\x37\xaf\xb9\x63\xb4\xdb\x59\x78\x5c\xdf\x55\x54\xb8\x1b\x32\xaa\x6b\x43\x9d\x8e\xd6\x80\x99\x2b\x3b\x81\xb8\x35\x12\xc4\xd9\x1a\x83\x11\x76\xd1\xf2\x69\x33\x21\x95\xda\x69\x5a\x88\x7a\xb6\xa1\xe5\xe1\x0c\x58\x8e\xaa\x11\x51\xc4\x76\xdd\xdb\xc5\xbc\x81\xfd\x53\x24\x39\x26\xd4\x27\x10\x1f\x61\x8c\xac\xe1\x02\xc3\x86\x6a\x99\x6a\xf3\x99\x35\x6e\xe0\xa6\xd8\x5c\xd7\xf8\xe6\x31\x0b\x63\x53\xe0\xf1\xfb\xd5\x4d\x31\xae\xf6\x33\xef\xde\xc2\xa3\x69\x03\x37\xbf\x8e\x80\x07\xfd\xf0\xa0\x43\xfa\xcb\x8f\x4a\x60\x3f\x45\xc0\xc9\xa1\xc3\x6d\x72\x13\x88\x1b\x90\x73\x82\x1f\x97\x0d\x71\x3b\xac\xe1\xa6\xef\xa9\xd0\x7c\x36\x44\x10\xdc\x3e\xa3\x1d\x90\x2f\x8d\x47\x81\x8e\x7f\x64\x12\xf4\x14\xda\x44\xeb\xa4\x07\x6f\xcb\x1a\x6f\xf2\xdc\x0d\x16\xd7\x49\x3e\x42\x82\x21\x54\xa4\xb1\xaf\x8f\xbe\x20\xd2\x40\xd7\xed\x9b\x26\xe1\x96\xaf\xc8\x5f\x87\x0e\x7d\xa0\xd9\xcd\xc7\xc7\xc7\x67\x8c\xa8\x02\x11\x60\x20\x44\x80\x4b\x6a\xde\x7c\xf1\x82\xdb\x39\xe3\x2f\x74\x0b\x43\x04\xb0\x8b\x5e\x49\x00\x13\x52\xc4\xe3\xa1\xe4\x25\x7c\xf1\x22\x63\x38\x7a\xac\x78\x18\x2d\xc8\x3e\x1e\x0c\x06\xfe\xf3\xe7\xe2\x6f\x7d\x8e\x5c\xec\x92\xcf\x5e\x89\xb9\x1d\xfa\x03\x66\xad\x34\xc6\xf3\x9d\x19\xc4\x53\xb7\x46\xe5\xe2\x19\xd4\xdf\x7d\xb8\x1a\xa8\xef\x3e\x5c\xa9\x1a\xd4\x4f\x5e\x9f\xbd\xbe\x7a\x3d\x50\xd9\xbf\xe4\xc9\xbb\x8b\x4b\xf2\xfa\xe2\xf2\x4a\xcd\x9b\x9b\x57\xf3\xa6\x7c\x06\xf5\x8b\x5f\x06\x9d\x76\x5b\x83\xfa\x87\xf3\xa3\x0f\x57\x6f\x2f\xde\x9f\xfe\xfb\xf5\xc9\xa0\xd7\x36\x34\xa8\x9f\x9e\x5f\xbd\x7e\x7f\x7e\x74\xf6\xe9\xf2\xf5\xfb\x8f\xaf\xdf\x7f\x7a\xfd\xfe\xfd\xc5\xfb\xc1\x6e\xbb\x9d\x31\x4f\xcb\x21\x53\x20\x02\xea\x7b\xa6\xc0\x5f\xb9\x3f\xff\x73\x01\xd1\xf2\xe8\x0f\xf0\xf0\x96\xe6\x40\xd9\xc8\xd6\xf9\xfa\x09\xc9\xc7\x0f\x08\xce\x67\x3e\x5f\x1f\x9f\x39\x3a\x21\x90\x01\xd6\xd9\xf2\x6b\x8e\xbe\x40\xf6\x00\x93\xff\x6a\x8e\x6e\x02\x0c\xae\xc8\x7b\xf5\x0f\x8f\xfa\x11\xe9\xd4\x9c\xf6\x80\x07\x78\x6a\x79\x1a\xa6\x0d\x5e\xbc\x68\xa8\x3f\xbd\xbe\x22\x42\x87\xe8\xe6\x55\x83\xb7\x74\x30\xfb\x1c\xcc\xe7\x36\x37\x99\xef\x90\xae\xfe\xae\x8c\xa6\x00\x79\x10\x0f\xb8\xe6\xc0\xc6\x22\x2a\x27\x46\x96\x33\xb1\xc6\xcb\x06\xeb\xbd\xd9\x3c\xe4\xef\xf8\x6f\xba\x2f\x89\xfa\xc5\x6c\x1c\x9e\xd8\xcc\xfe\xce\x47\x2f\x5e\x34\x1c\x7d\x08\xc7\x2e\x82\x97\xd0\x31\x07\x12\x5c\x53\x29\x0c\x35\xf5\xb1\x8b\x5e\x83\xd1\xb4\x11\xc6\x8d\xd8\x8c\xba\x07\x31\x5f\xcb\xb7\x74\xa8\x06\xd6\xd0\x35\xbe\x69\x52\x1d\xdd\x79\x7c\xd4\xd3\x50\x9d\xb5\xd7\x2c\xef\x0d\xab\x2a\xb8\x56\x72\xf0\x45\xc1\x1d\x75\x30\x18\x34\x12\x9c\xb2\x2d\xe5\x94\xed\x30\xa7\x6c\xdf\x1c\x12\x65\x9e\xe9\xf8\x2d\x23\x53\xd2\xb8\x85\xcb\x2b\xf7\x48\x24\x89\x7b\xc2\xe2\xc5\x8e\xca\xc9\xa5\x01\x07\x83\x01\x7e\xa5\xaa\x87\xb0\xc9\xcd\x1c\x38\x13\x44\x1b\x8e\x71\x0b\x23\x6b\xcd\x5a\x1c\x03\x10\x26\x01\x2c\xba\x62\x5a\x75\xe4\x08\xdc\x28\xed\xc1\x60\x00\x75\x7a\xb3\x7e\x41\xc4\xa7\x57\x50\xf7\x16\x43\x0f\xa3\x06\xe6\x5d\x36\xb3\x15\xde\x19\xb8\x85\x44\x10\x23\xec\x70\x53\x7c\x0f\x60\x8c\x0e\x65\xfb\x98\x09\x7d\x59\xb3\x75\x4d\x68\xef\xdc\x23\x0b\x6f\x60\xbe\x9a\xc3\x96\x58\xa2\x77\x16\xd5\x59\x9f\xf9\x1c\x0a\x82\xd1\x34\x10\x78\x23\x48\xb9\x86\x37\x03\xdc\x20\x0a\xee\x35\xbc\xd1\xbe\x7a\x10\x59\xc0\xb6\xbe\xc0\xc3\x96\xf1\x7c\x30\x70\xfc\xd5\x85\x8c\x9d\x21\x21\xef\x70\x20\x89\x14\x3a\x71\xfe\xfc\x33\xdc\xa7\x50\xd5\xf0\xc0\xf8\x3b\xfe\xdf\xf8\xf4\xff\x8e\x85\xaa\x16\x52\xc7\xaf\xf1\x8d\xaf\xe1\x21\xc5\x72\x14\xa7\xc9\x07\xf0\x45\x15\x7d\x0a\xbc\x8b\x7b\x47\xe0\x53\x27\xe2\x66\xc3\xd1\x50\xf3\xc5\x8b\x06\xbc\x46\x37\x03\xe7\x1a\xdd\x34\x1f\x7d\x53\x4b\xc6\x42\xce\x99\xa1\xc2\xbc\xb2\x66\xd0\x5d\xac\xa7\x78\x77\x5d\x3b\x95\x1b\x55\xaa\x6f\x57\x0f\x62\x0e\x67\x42\x23\x4a\x27\xb1\x62\x5d\x87\x60\x7c\x0c\x9b\x33\x63\x24\xd6\xc0\x8d\x50\x4b\xd8\x70\x9a\x8f\x9a\xd3\x24\xf4\x94\xb5\x48\x9f\x3d\xb0\x19\x5d\x74\xc5\x05\x12\xee\x53\x09\xec\xfa\xac\x25\x79\xac\x16\x43\x2f\x6c\xea\x9f\x89\xb8\x70\x49\x33\xc5\xb9\xe8\xc8\xb6\xe9\xe1\x93\x81\x34\x04\x67\xee\x1d\x6c\x39\x0b\xdb\xde\x94\x0a\x16\x96\x94\x60\x53\x47\xd0\x5c\x8c\x42\x04\x80\x35\x27\x66\xb4\x1a\xc0\x6b\xe7\xe6\xc5\x8b\x06\xbe\x76\x6e\xe8\xdf\x4d\x0d\x3f\x6a\x5f\x1f\x33\x8f\x55\x64\x4d\xa6\x7f\xf9\x73\x95\x19\x30\xe8\x37\x2d\x71\x82\x06\x4c\xdc\x06\x1e\x3e\xf5\xcf\xda\xc1\x60\xe0\x04\xe7\x6d\x5b\x73\x72\x8e\x5a\x6f\x31\xbb\x18\x7f\x08\x62\x7f\x36\x43\x1c\x30\x41\x0f\x21\x9b\x46\x60\x9a\xc0\xbe\xbf\xba\x30\xdb\x04\x16\x0d\x02\xe8\x9f\x7f\xfa\x26\x0d\x06\xf7\x4b\xe3\x10\x3e\x6a\xed\x4c\x92\xa1\x39\x10\xac\x2f\x30\x7a\x49\x02\xc9\xa0\xad\x91\x6d\xb5\x98\x06\xd1\x12\xe6\x8b\xd8\x47\x2b\x5f\x9f\xa4\x7e\xe0\x47\x0b\x7c\x85\xce\x62\x06\xa9\xf0\x73\xf8\xbc\xad\x4d\x20\x3e\x4c\xde\x19\xf8\x97\x20\xd9\x57\x7e\xe1\x92\xfc\x1b\x36\xbd\xe0\x40\x54\xe9\x8b\xff\x69\xf6\xa0\x15\xfc\xf0\x06\xd7\x37\xcf\x9c\xa4\x12\x65\x35\xbf\x5a\xe3\x06\x1e\x0c\x2c\xfd\xdc\x35\xb9\xd0\xee\x0e\x2c\xfd\x12\x4e\x28\x4b\x95\x7c\x83\xe9\x37\xec\x83\xe7\x03\x4c\xff\x7d\xf1\x02\x8b\x4f\x06\x03\xd7\xbf\x96\x6c\x58\x1a\x6e\x3e\xf3\xf4\xf9\xc2\x9b\x36\xbe\x3a\xae\x09\x0f\x59\x7b\x4d\xd8\xb2\x0f\x1d\xcd\x63\xdf\x1d\xba\x44\x57\xfb\x5f\xa2\x13\xa2\x81\xd3\xd4\x9c\x7f\xd8\x2f\x5e\x34\xec\x81\x43\x49\xcc\xd3\x3d\x17\xe1\x18\x11\xfb\x24\x2e\x7a\x6b\x61\xff\x4f\xca\xcc\xa8\xa4\x64\x69\xee\x40\x30\x02\x0d\x30\xeb\xf3\xd8\x76\x5d\xd4\x70\x77\x3a\xbe\x91\xd2\xfd\x47\xfb\x95\x35\x70\xff\x9f\xce\x2b\xef\x1a\xdc\xf8\xdd\x1c\x36\xbc\x6b\xd0\x32\x82\x07\x2f\x23\xaf\x9b\x3b\x9d\xc3\x86\xc5\x0c\xe2\x9a\x3d\x68\x37\xb5\xaf\xe2\x95\x77\xe8\x69\xce\xa1\x3f\xf0\xcc\x72\x0e\xe7\x44\x91\x3e\x75\x70\xc3\x68\xb7\xff\x86\xa8\x9d\x5a\x9b\x41\xd3\x02\xb1\x57\x16\x7f\x05\x1e\xa2\xcf\x6d\x6e\xda\xce\xda\x73\x8b\xd1\xd8\x42\xde\x9a\x25\xaa\xd0\x05\xc6\xcb\x10\x07\x34\x9a\x3a\x76\x3f\xcc\xe7\x10\x1d\x03\x0f\x36\x9a\xc1\xbb\x34\xa5\x94\x97\x7f\xb3\x5c\xc7\xdb\x01\x23\x5b\xca\x28\x68\x84\xaf\x07\x71\x2b\xdc\x98\xff\xed\xa2\x5a\xaf\x59\xbf\xd2\xcb\xff\xeb\x46\x5b\xc3\xba\xa8\x4c\xf7\x0e\x41\x0f\x92\xa5\x6e\x3c\x6f\x37\xb5\xc8\xab\x33\xa6\x61\x35\xbe\x92\xc5\x35\x1e\x9b\x37\xda\xd5\x72\x0e\x0f\xd3\x3f\xcf\x47\x82\x45\x4d\x31\xcc\x95\x62\xbb\xa8\xb8\xa4\x2e\xff\xab\x22\xe4\x04\x7a\xd8\x72\xe8\x4c\x57\xed\xea\x88\x02\xb6\x12\x76\x6f\xef\xb6\x8e\xd6\x5f\xe0\x72\x05\x24\xc8\x41\x64\x9e\x6c\x3b\xd0\xb9\xb3\x90\xeb\x10\x66\xaa\x6a\xd7\xa1\x49\x37\xbf\x62\xb4\xe4\x62\x55\xce\x67\x78\x20\xa4\xe9\xa8\xe4\xdb\xf8\x61\x06\x31\xb8\x76\xc0\x0c\x0e\xd4\x1f\x5e\xc2\x97\x3f\xa8\x37\x3f\x34\x63\xd7\x38\xc2\x83\xaf\xa9\x39\x83\xaf\x1c\xe2\xc3\x9f\x2f\x2f\xce\x75\xca\xc6\x1a\x0b\x07\x7a\x23\x30\x87\x0d\xdc\x6c\xfa\xea\x8a\x1c\x99\x4e\x3a\x32\x9d\xc7\x11\xe0\xf7\x30\x78\x8a\xdc\x7b\xaa\xf0\xbc\xa6\xb7\x6c\x3f\x1c\xbb\x0b\xdb\xa4\x61\x25\x08\x02\x93\xbb\xf8\x29\x63\xe4\xce\x14\x32\x7f\x05\x83\x09\xf3\xdd\x22\x80\x28\x1c\x10\xfd\x07\x7a\x56\xa0\x85\x43\xe4\x9b\x2b\xe8\x61\xef\xcf\x3f\x11\xfc\xbc\xb0\x50\x04\xcd\x60\x3e\x57\x9b\xbe\x47\x04\xbb\x3a\x6f\x7c\x75\xa2\xfe\x42\xaa\x76\x07\x91\x47\x08\x55\xed\xe8\x1d\xbd\xad\x3e\x36\x9f\xfd\xff\x01\x00\x00\xff\xff\x18\x2e\xf5\xf9\xcb\x03\x04\x00") +var _web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xdb\xb6\xf2\x28\xfa\xbf\x3f\x85\xcc\xb5\x8e\x4b\x6e\x43\x30\xa9\xb7\xd4\xb2\xb9\x69\x92\xee\x9d\xb3\xd3\x36\x27\x49\xfb\xbb\xbf\xeb\xe3\xd5\x03\x93\x90\xc4\x6d\x08\x54\x41\xc8\x8e\x63\xeb\xbb\xdf\x85\x07\xdf\xa4\x48\xd9\x4e\x1a\xf5\xb4\xab\x91\x25\x72\xf0\x98\xc1\x60\x66\x30\x18\x0c\x8c\x4d\x84\x3b\x11\x67\x81\xc7\x8d\x23\x1f\xcf\x03\x8a\x4d\xc3\x0b\x69\xb4\x21\xdd\x4d\x70\x86\x7c\xb4\xe6\x98\x45\x67\xc8\x23\x06\x38\x37\xf0\xc7\x75\xc8\x78\x64\x80\x4a\x98\xf5\x9a\x04\x1e\xe2\x41\x48\x73\x00\xab\xd0\xc7\x44\x57\x51\x7e\xec\x7b\xb9\xa7\x1b\x1e\x90\xe8\x6c\xc9\xf9\xfa\x6c\x85\xf9\x32\xf4\xeb\xde\x46\x1c\xf1\x4d\x54\xf1\x76\x85\xae\xf0\x73\xce\x19\xba\x24\xd8\xb8\x00\xf3\x0d\xf5\x44\x97\x4c\x0c\x38\xa0\x80\x01\x02\x22\x80\xac\xbb\xf8\x79\x27\x54\x6f\xac\x3b\x86\xf9\x86\xd1\x0e\xef\x04\xb4\x83\x9f\xfd\x72\xf9\x1f\xec\x71\xa8\x68\xf2\x96\x85\x6b\xcc\xf8\xad\x04\xbd\xbb\x46\x64\x83\x67\x14\x60\xba\x59\x61\xd9\xce\xec\xd8\x06\x5e\x48\xe7\xc1\x62\x93\xfc\xbe\x61\x01\xd7\xdf\xb7\xd6\x0c\x9f\xf3\x0b\x97\x02\xbc\xad\xab\xd7\xf8\xfd\x77\x1c\xfd\x14\xfa\x1b\x82\x8d\xb8\x09\x51\xf2\x08\x0b\x58\xb4\x21\xdc\xe5\xf1\x37\x88\x3f\x72\x4c\x7d\xf3\x6e\xc3\xc8\x8f\x21\xfb\x5f\x1b\xcc\x6e\x67\x29\xa2\x29\x2a\xcb\x20\x82\x68\xbd\xc6\xd4\xff\xf5\xdd\x1b\xd3\x40\x1e\x39\x23\x41\xc4\x0d\x70\x7e\x01\xe4\x4b\x8f\x60\x44\x65\x79\x13\x5b\xd6\x16\x64\x2a\x7c\x87\xbd\x90\xf9\xb9\x6a\x83\xb9\x79\x1d\x06\x7e\xc7\x76\x5d\x17\xc3\xc0\xb7\xf8\x92\x85\x37\x1d\x8a\x6f\x3a\xaf\x18\x0b\x99\x69\xfc\x77\xb8\xe9\xac\x36\x11\xef\x44\x6b\xec\x05\xf3\xdb\x0e\xa2\x9d\xc0\x37\xac\xa3\x1d\x3d\x0a\xe8\x3c\x34\xc0\xb9\xa8\x70\x67\xaf\x5e\x30\x8c\x38\x2e\x75\x2b\x3b\x74\x15\xb5\x7b\xb2\x94\xc4\x38\x34\xef\xb6\x80\xc3\x97\xcf\x3f\x3c\x7f\xf1\xea\xe7\x0f\xaf\xde\xfd\xfe\xbf\x7e\x7d\xf5\xee\xbf\x7f\x7f\xfb\xfc\xdd\xf3\x9f\x00\x85\x88\x73\x66\x32\xf8\xe3\x2f\xef\x5e\xbd\xfe\xe7\xcf\xbf\xff\xfb\xd5\x7f\x5b\x69\xeb\xbf\xae\xfd\xea\xd6\x01\xd9\xd9\xfe\x46\x96\x6b\xd1\x3e\xd9\xdd\xfe\x4b\x4c\x70\x55\xfb\x04\x44\x3b\xdb\xf7\x71\xc4\x59\x78\x6b\x80\xf3\x48\x35\x40\xe1\xfb\x37\xbf\xfe\x53\xd6\xde\xd4\xa5\x68\x77\x97\x5e\x90\x90\x56\xf5\x68\xf7\x78\x88\x42\x06\x38\x27\x7b\xf7\xa6\x81\x40\xef\xf0\x1f\x1b\x1c\xf1\x1c\xc3\x5e\x23\xd6\xe1\x2e\x86\xfc\x76\x8d\x01\x75\x31\x8c\x28\x5a\x47\xcb\x90\x1f\x45\x37\x01\xf7\x96\x26\x86\x4c\x15\xfb\x70\xbb\xc6\xd6\x9d\x87\x22\x6c\x78\x29\x5a\xc6\x2c\x8b\x49\x09\x6b\x93\x43\x29\xc5\x7e\x46\x2b\xc1\x86\xdb\x2c\xf0\xef\xd1\x66\x8d\x99\xc0\x9e\xdc\x9a\xe2\x09\x40\x6c\xb1\x59\x61\xca\x23\x6b\x0b\x64\x1b\xb3\xa2\x6c\x52\x1d\x26\xee\x5d\xc4\x43\x86\x67\x18\x88\x7e\xcf\x38\x08\xfc\x19\x05\x71\xd7\x67\x0c\x64\xfa\x3c\xcb\x75\x77\x0b\x22\xf7\x4e\xc9\xcd\x99\xec\x85\xfa\x9e\x52\xc7\x24\x96\x20\xd7\x2c\x83\x4f\xe6\xcd\x12\x23\x1f\xb3\x48\xbd\xd5\x3f\xf2\x10\x3e\xe2\x48\xbd\x16\xdf\x72\xef\xb6\xb9\x39\xfe\xbb\x10\xc3\xf1\x4b\x81\x71\x1e\xbe\x34\x4a\xd4\x6d\xa4\xda\x8e\x31\xeb\x70\xf8\xee\xd5\xff\xfa\xf5\xd5\xfb\x0f\xbf\xff\xfa\xf6\xe5\xf3\x0f\xaf\x66\x85\xa7\x2f\xde\xbd\x12\x4f\x75\x0f\x29\x44\x1e\x89\x47\x8b\x6e\x41\x91\x4a\xb9\xde\xb5\x6a\xf5\xe5\xab\x37\xaf\x6a\x5b\xad\xe5\x2a\x02\xdf\xfe\xfa\x61\x0f\xae\x09\xa2\x1a\x19\x98\xcc\x38\x0c\xd7\x88\x2f\x29\x5a\x61\xd7\x55\x14\x5d\x23\x16\x61\x31\xfb\xb2\x2c\x9c\xa9\x45\xce\x4a\x03\x98\x36\x40\xb1\x7a\xb1\x4c\x39\x11\x73\x13\x0d\x18\x86\x65\x59\x56\x52\xbd\xec\x4c\xe5\xfc\xd7\xb3\xee\x68\xbf\x1e\x65\x26\x55\x55\x87\x4c\xee\xde\x6d\x41\x68\x72\x90\x0a\x0c\xa5\x2b\x22\xb2\x59\xfc\xc8\xc2\x95\xa8\x10\x5b\x96\x84\x29\xf5\x1c\xf0\x52\xe7\x6b\xe4\xf9\x9e\x94\xcc\xd6\x62\xd2\x0d\x21\xe0\xa1\xe4\x5c\x22\xea\x13\xfc\x0e\x47\xeb\x90\x46\x05\xd1\xc0\x84\x4c\x15\x54\x45\x2e\x03\xa1\x4b\xf4\xb4\x3e\x0a\xe6\xa6\xe8\x5d\x04\x7f\xf9\xb7\x7a\x1f\x14\x7a\x4a\x44\x37\x93\x89\x73\x6c\x2b\xbe\x3d\x16\xfa\x1b\xcd\x90\x02\x56\x0d\xff\x10\x86\x42\xe9\xc6\xed\x9b\x01\x40\x80\xc2\xb7\xef\x5e\xff\xf4\xfc\xdd\x7f\xcb\x1e\x67\x24\xf5\xd1\x25\xc3\xe8\xea\x48\x71\xbb\xa8\x23\x88\x32\x26\x83\x19\x58\xf9\xba\xdf\x07\x74\x91\xa2\x26\xaa\x3e\xb7\x2f\xf6\xaa\x3d\x47\xe6\x00\x84\xd6\x2c\xfb\x36\xc7\xce\xe5\xb7\x19\xd6\x92\x2f\x1b\xfa\xd6\xd8\x31\x3d\xac\x05\xfa\x21\xee\x2d\xdb\x55\xb3\xdd\x62\x12\xe1\x4e\x32\x78\xbf\xfe\xfc\xfc\xd7\x0f\xff\xfa\xe5\xdd\xeb\xff\xef\xd5\x4b\x35\x8c\x1b\x57\x9a\x54\xab\x4b\xcc\xa0\x34\xac\x8e\x94\xa1\xb5\x81\x5e\xe8\x63\x17\x83\x0d\x5c\xe1\x28\x42\x0b\xec\x32\xb0\xa9\x10\x20\x92\x6b\x10\x20\xd6\x76\x6b\x6d\x2d\xb0\xcb\xb0\xcf\x1a\xed\x59\x03\x1f\x8b\xd6\xbb\x42\x6a\xa7\xc0\x0c\x0b\xdb\xd1\xd8\x30\x52\x61\x77\x2b\x43\xeb\xd7\x77\x6f\x6a\xac\xfc\x2a\x53\x3c\x63\x86\x47\x5f\xb7\x19\x0e\x70\x8d\x59\xe2\xe2\x82\x12\xc8\x3c\x50\xba\x28\xf3\xe0\xdd\xab\xe7\x2f\x33\x3f\x95\x7e\x70\x95\x4d\x7d\xa4\x26\xb8\xee\x18\x8a\xa2\x60\x41\xef\xef\xb3\x92\x69\x1e\x32\x53\x59\x34\xce\xb7\xfc\xbb\x44\x31\x40\x82\xe9\x82\x2f\xbf\xe5\xa7\xa7\xb1\x2e\x4d\xde\x9d\xf3\x8b\xa3\xb8\x18\x13\x14\xa5\x96\x6e\x60\xcd\x42\x1e\x0a\xfb\x02\x2e\x51\xf4\xcb\x0d\x8d\x69\x00\x3d\x44\x88\x29\x8c\x91\x93\x13\x13\x9f\xb3\x0b\x97\x9e\xb3\x8b\xc4\xb6\xc1\x5b\x10\xba\x66\x09\x05\xc3\xcb\xcc\x41\x03\x14\x30\x36\xfe\x48\xa5\x43\xf6\xa5\xa6\x8f\xb1\xc9\x4c\xef\xec\x7b\x4d\x50\xc3\xcf\xd8\xbe\x46\xfd\x48\x18\xbe\x67\xec\x5e\x2f\x09\x51\x1b\xad\x91\x87\x67\xc6\xb5\x63\x00\x86\xd7\xe1\x4c\x4d\xb3\x80\x4a\xaa\x44\x98\x5d\x07\x1e\x36\x8d\x08\x73\x1e\xd0\x45\x64\x24\x56\x51\x95\x79\x90\x70\x2b\x92\x96\xab\x98\x80\x0b\xcc\x4d\x43\x54\x6c\x58\x70\x1e\x50\xff\x5f\xaa\xb4\x69\x81\x46\x05\x6f\xc5\x5a\xa0\x20\x8c\x0b\x76\x62\xd2\x68\x24\x1a\xa5\xaa\xde\x4d\x20\xec\x17\xad\x04\xe3\x7a\xf2\xc2\xad\x64\x6e\x82\x40\x8b\x1b\xe0\x69\x1e\x3c\x76\xdd\xe0\x59\x30\xc3\x30\xc2\x88\x79\xcb\xb7\x88\xa1\x95\x42\x29\xb4\xee\xef\x0d\xe3\x28\x87\x2e\x30\x23\x73\x23\xf4\x32\xc9\xa9\x36\xcf\x02\x91\xb9\xa9\xe8\x18\xe0\x82\x93\x2c\xb0\xc9\x60\x9a\x15\x9b\xb5\xf6\xb0\xa4\x53\xe4\x36\x76\x8b\xc3\x15\x5a\x9b\x49\x2d\x3c\xa1\x14\xa9\x96\xf6\x31\x1d\x22\x6b\x2b\x6d\xf2\x78\xd5\x99\xb7\x66\x62\xca\x88\x05\xea\xc9\x89\xe2\xc5\x8e\xf8\x71\xa4\x26\xa3\x24\x06\x4e\x96\xb8\x31\xc0\x79\x78\x01\x78\xbd\xa5\x11\xf7\xed\xd8\xa9\xb7\xeb\xf2\x30\x75\xab\xf2\x92\xc1\x02\xa3\x35\x09\xb8\x69\x9c\x19\x16\x8c\x88\x60\x67\x1b\x74\x1d\x0b\x7a\x21\xf5\x10\x37\xcf\x0d\xe3\xc2\x82\xff\x09\x03\x2a\x41\x76\x99\x37\x59\xad\x7e\x17\xf8\x33\xc3\xd8\xe6\x8c\x96\x05\xe6\xff\x0a\x2b\x27\x84\x52\x8d\x61\xc4\xef\xef\x49\xa8\xf4\x8b\x12\x39\x5e\x48\x4e\x8d\xb3\x33\xe3\x34\x79\x2c\xa0\xb6\x20\x63\xc7\x55\x60\x67\x16\xa5\xdd\xf7\xce\xc9\x49\x32\x32\xa9\xb8\x73\x2e\x9e\x65\x7f\xcc\x7c\x2c\x34\xe6\xaf\xef\x5e\xbf\x08\x57\xeb\x90\x62\xca\x2d\xb3\x9a\x50\xeb\x70\x6d\x0a\xbe\x8c\xc9\x50\x45\x62\xa1\x95\x69\x2c\x54\x04\xf7\xe8\x09\x2f\x68\x20\x0b\x27\xcc\x5e\xb1\x0a\x7d\x20\x06\x86\x01\x68\xb9\x6c\xaf\xb2\x6c\x2f\x5b\xb6\x77\x31\xfb\x9f\xef\x7f\xf9\x19\x46\x9c\x05\x74\x11\xcc\x6f\x01\xab\x9f\x41\x80\xb8\x86\x21\x38\xe1\x59\x85\x51\x3d\xe3\xc2\xd2\x64\xba\xed\xef\x9c\xb2\xdb\xe7\x57\x2a\x54\x6c\x87\x87\x1d\xa5\x07\x3a\x1b\x1a\xfc\xb1\xc1\x9d\xc0\x07\x9d\x55\x10\x45\x01\x5d\x74\x84\x29\xe1\x61\xca\x31\x33\x2c\x51\x1f\x79\x64\x7d\xa2\x8f\xa9\x63\x89\x9a\xe7\x0c\x90\x0b\x6b\x0b\x12\x7f\xc3\xd3\x8d\xc1\xf9\xc5\xc3\xc7\xe0\x2e\x5e\x17\x9b\x36\x60\xe9\x92\xe0\x5c\xd2\xf9\x72\x13\x10\xe9\x1a\xb1\x00\xbe\x90\xb2\xbd\xd1\x60\xf3\xc2\x90\xf9\x01\x55\x3e\xa5\x47\x39\x64\xb3\x35\xed\xf4\xb1\x96\x2d\x37\xeb\xee\x01\xf6\xd3\x93\xb9\x31\xd3\x8e\x9f\xd1\xd0\xc7\x51\xbd\x3b\xb3\x46\x68\x26\x72\xd5\xde\xbd\xee\x92\xbe\x35\x65\x96\x91\x78\xb1\xc5\x92\xc5\x56\x58\x90\x9b\x91\x5a\x6c\xed\x58\x16\x84\x3b\x97\x05\xb5\x66\x7c\xd4\xcc\x15\xbe\xb7\x17\x37\xe4\x47\xf4\xb3\x8c\xe6\x8f\x01\xf5\x9f\x13\x52\xa7\x1a\xb2\xc3\x89\x38\x22\xe1\xe2\x2c\x15\x10\x91\xd1\x8c\x71\x40\x39\xa6\xe5\x65\xcb\xfe\xd3\xa0\xb0\x01\xa1\x9f\x66\xaa\xdf\x73\xff\x61\xf7\xde\xc5\x5f\x6c\x77\xe2\x69\xa7\x35\xa5\xd8\xe3\x29\xe9\x77\x4c\xec\x2f\xbd\x4f\x51\xd9\xb7\x07\xef\x58\xb0\x7d\x69\xb0\xdb\x31\xce\x62\x57\xfa\x7e\x3b\x17\xbb\x76\x0e\x2a\xfb\x91\x6c\x07\xec\xbb\x81\x50\xd7\xb3\x87\xec\x69\x7c\xee\x9e\x7d\x46\xcf\x60\x46\xa6\x54\xf8\x07\x69\xa3\xbb\xb5\x86\x9b\xd2\x65\x0e\x87\x3c\xfc\x75\xbd\xc6\xec\x05\x8a\xb0\x69\x49\xef\xd2\xdb\x5f\xde\x7f\x38\x39\x79\x88\x5f\xf8\x51\xdd\xdd\xa5\x56\x69\xaa\x56\x29\x08\xdd\xa8\xe0\xce\x24\xb5\xee\xcc\xa8\xd2\x9d\x59\xe9\x82\x2c\x7a\x01\xf7\xf5\x20\x36\x39\x09\x59\x4e\x8d\xb3\x87\x3a\x09\x6b\xab\xd9\xee\x34\x07\xbe\xb2\xdd\x94\x84\x53\xd2\x3d\x95\x26\xf5\x7d\x75\xfd\x60\xbd\xad\x14\x69\x10\xfd\x18\x12\x1f\xb3\xaa\x57\xd2\x97\x23\xb4\x9b\xa6\xcf\x87\xf0\x7f\x4a\xe6\x78\xfe\x1f\xf4\xf1\x5f\x28\x5a\x56\x94\xb9\xc2\xb7\x1f\xc2\xe7\x8c\xa1\xdb\x8a\x97\x0c\xaf\xc2\x6b\xdc\x15\xb3\xb8\xca\x56\x10\xb8\x3c\x79\x60\x43\x9d\x6d\x00\x42\x10\x80\x4d\xc6\x42\xf0\xbe\x6e\x0b\x41\x3a\x49\xfc\xaf\xdf\xad\xb9\xd3\x6f\xf8\x3b\xab\x66\xa4\x59\x7e\x51\x77\x97\xac\xb5\x2b\xf4\x86\xa1\x5e\x8a\x55\xb6\x72\x39\x8a\x5e\xfe\x32\x37\xb1\xf5\x0c\x17\x56\xea\x26\x16\xf6\x2f\x50\xce\x0b\x56\xe3\xa1\x44\x3c\xbc\x34\x2c\x50\x67\x64\x3d\xbd\x0d\x24\xd8\xdc\xb4\x01\x49\xf1\x95\xf5\x02\xdf\xf4\x84\x42\x30\xae\xf0\x6d\x64\x00\x31\x49\xac\x2a\xa3\xe8\x4f\xb0\xda\xea\x7a\xfc\xa4\x41\x26\xe5\x46\x74\x24\x09\x4a\xa5\xb9\x05\xbc\x36\xb1\x27\xe1\xde\xb1\x27\xf5\x96\x64\xb9\x5b\x6c\xef\x6e\xb1\xdd\xdd\xaa\x33\xdf\x58\xac\xdf\x03\x77\x77\xfd\x51\x65\xfd\xa9\xbf\x84\xa6\x9d\x8f\xca\x9d\x3f\x39\x31\x03\xc8\xb0\xb7\x61\x11\x76\x33\x6c\xb7\x93\x08\x15\xf5\x80\xc0\x6a\x72\x3f\x76\xca\x7e\xc4\x1a\x37\xa2\xf8\xea\x61\xb3\x9f\x71\xb0\xd6\xfb\x21\x92\xfa\x8f\x0b\x8e\xb9\x25\x8a\x4c\x35\x9f\x9a\x3d\xe5\x54\xd1\x9a\x29\x2f\x39\xa9\xf2\xf1\xd5\x0d\x40\xce\x79\x4e\x4b\xce\x73\x29\x74\xe3\xd7\x9e\x49\xe5\x16\x7c\xce\xec\x23\x82\x83\x28\x40\x05\x2b\x26\xe7\xf3\xb7\x62\x98\x74\xdf\xde\x02\x74\x6b\x35\xd9\x88\x89\xf7\x5f\xd8\x88\xac\x60\x23\x6e\x6a\x6d\x44\x56\xbf\xe5\x4d\x66\x64\xf7\x96\x37\x29\x60\x82\xda\x6f\x79\x0b\x9b\x91\xec\xb4\x19\x4d\x1b\x44\x29\x1f\x92\x73\xfb\xc2\x6a\x6c\x2e\xb6\x22\xc9\x2e\x2b\x72\x47\xaf\x6b\xad\x48\x02\xd8\x93\x58\x91\x80\xb9\x86\xf1\x64\xa6\x64\xaa\x22\x85\x6e\x0c\xe7\x26\x73\x29\xbc\xba\x86\xbf\x09\x6b\xc2\x7a\xa6\xf4\xa0\x64\x68\xd1\x0b\x43\xeb\x47\xc3\x82\xf8\x23\xf6\x36\x1c\x9b\xcc\x9a\x09\x41\xb0\x7d\xc2\x90\x1e\x4d\xc0\x00\xaa\xdf\x47\x3b\x4d\xe1\x60\xbf\x80\x9e\x26\x23\x99\x86\xfe\xa3\xbd\xbc\xd5\xee\x2d\x55\xf3\xde\x06\xe8\xe1\xec\xd7\x1f\xd0\x6e\x7a\x85\xa9\x28\x8c\x44\x7c\x9e\x2e\x07\x2f\x54\xe9\xf4\xb7\x8b\xe1\xcf\xa1\x8f\x2d\xd0\x60\xb8\xee\xe9\x82\x13\x0b\x39\x46\x11\x39\xdb\x04\x4d\xae\xf5\x2f\x6d\xcb\x15\xbb\xb6\xdb\xff\xd6\xa0\x33\x49\x56\x77\x80\xcd\x83\x75\x26\xa9\xd4\x99\x24\xc1\xc1\x0d\x4d\x6e\x81\x74\xb7\x9c\xb8\x25\xcf\xc9\xc6\x02\x91\x49\x0a\x8e\x80\xa0\xb8\x6d\x9e\x8e\xbc\x65\x01\x62\x59\xcd\xea\x33\xe3\x62\x09\x76\xb8\x58\x36\x0f\x76\xb1\x6c\x40\x43\x9c\xd7\x06\x84\x26\xb2\x9e\xc2\x53\xb2\x79\xb8\xa7\xa4\x49\xc4\xae\x43\x12\x78\xb7\x8f\x15\xb2\x71\x2d\xfb\x78\x01\x5a\x6d\x20\x54\x7b\x01\x32\x62\x18\x7d\xdd\x62\xf8\x29\xf7\x07\x90\x47\x14\xa1\x83\xaf\x49\x2e\x25\xbd\xba\xfd\x7c\x67\x18\x92\xfa\x2f\xb4\x2c\x79\xe2\x33\x0c\x4d\x67\x08\x92\xf6\xab\x8e\x10\xec\xee\x51\xc3\x11\x82\x87\x9e\x6a\xf8\x7c\x3d\xfa\xc0\x10\x8d\xc8\x8e\x60\x9c\x1d\xfd\x39\xe3\x71\x61\x39\x56\x77\xdb\xaf\xce\x53\xab\xfa\x99\x09\x7d\xdf\x1d\x76\x9c\x28\x11\x56\xd6\x1c\x35\xdb\xdf\x0f\x88\x35\xde\xb9\x2d\x9e\x5d\x78\x49\xff\x2c\x0c\x22\xf9\xd7\x44\xd6\x2e\x9d\xd1\xa6\xd2\x4a\xd5\x53\xd0\x62\xbb\xf7\xec\x77\x7b\xe9\x1f\xbf\x08\xc9\x8f\x5f\xf4\xb4\xcb\x0b\xed\x4a\x7c\xac\xf2\x4b\xaa\xf9\xec\x41\x24\x9f\xcb\xd4\xd5\x18\x7c\x45\x5a\x65\x89\x11\xe1\xcb\xcc\x08\xed\xd0\x2c\xf5\xce\xa5\xf8\xf8\x53\x85\xa3\x2a\x69\xf8\xbc\x77\x71\x6a\x9c\x19\xa7\xfc\xbc\x7f\xe1\xba\xc5\x86\xdb\xc7\xc7\x54\x6c\xe4\xb1\xa7\xda\xc8\xdb\xbd\x19\x77\x27\x56\x42\xd1\x0c\x6d\xbf\x40\xe4\xfe\x63\x4c\xcd\x08\x47\xd1\x67\x8b\x57\x49\x2a\x7f\xf2\x2d\xa7\x2f\x14\xeb\xf5\xf4\x73\x48\x93\xa4\xc5\x6a\xf1\x4b\xcf\xee\xb8\x67\x6d\x4f\xbe\xee\xb4\x92\xe4\xfc\x53\xbb\x82\xae\x89\xa4\x8f\xd6\xad\x35\x7e\xc4\x52\xb0\x22\xf0\x01\x84\x62\xd9\x80\x6a\x96\x0d\xa2\x76\x3d\xbc\xc1\x5e\xcb\x06\x74\x1e\x5e\xb8\x01\x40\x8d\x84\x28\x1d\x52\xcd\x45\x72\x6c\x9e\x44\x95\xe6\xfd\x79\xfb\x1e\xbd\xdb\xbd\xd8\x26\xd9\x78\x86\x2f\x75\x3c\xab\x69\x61\xfd\x08\x91\x2a\x0f\x68\xfd\x89\x21\x0e\x2d\x0e\x2e\xf1\xf0\x0a\x3f\x5a\x96\xea\x4a\xfe\x5e\xb6\xef\x63\x68\xa9\xc3\xc9\x35\xc7\x66\xc4\x3b\xc3\xaa\x3d\x4b\x21\x0d\x92\xe6\x15\x4f\xe1\x28\x85\x5e\xb6\x00\xfd\x5b\xb4\xe7\x31\xcc\x01\xdf\xd6\x6e\x7f\xef\x58\xab\xc9\x41\xff\x8a\x6c\xbd\xa4\x4f\xad\x95\xd4\x7b\x4c\xe6\x7b\x61\x7b\x16\x61\x32\x6f\xc2\xf8\x61\xbe\x89\xb8\xe7\x5f\xc0\x35\x91\x44\xdb\x6b\x25\x61\xbc\xdb\x10\x1c\x19\xd6\xb3\xaa\x7e\x65\xf2\x2e\x3c\xc8\x1f\x30\xdb\x85\xec\x57\xe3\x07\xf9\x6c\x1d\xfa\xf3\xb3\x29\x48\xfd\xa5\x4e\x0e\x0a\x7e\xaf\x2a\x9c\x4c\x06\x93\x82\x4c\xe1\x7d\x12\x31\x3c\x22\x93\x45\x4c\xfb\x72\x26\x0b\xa0\xb0\x36\x9a\xc6\xa0\x36\xa3\x45\x94\x9f\xe0\x4a\x55\xa8\x5d\xfe\x62\x6e\x88\x24\x2d\x04\xcd\xa7\x85\x48\x09\xb7\x05\xa4\x21\x29\x04\xab\x4d\x0a\xc1\x1a\x93\x42\xb0\x1d\x49\x21\xd8\xae\xa4\x10\xe4\xff\xca\x34\x18\xad\x0e\x66\x66\xb4\xcc\xb1\xeb\x72\xf8\x56\x7b\xbd\x4f\x4e\xe8\x86\x90\xdc\xa3\xfb\x7b\x33\xfd\xe1\x9e\x5f\x58\x20\x53\xee\xf5\xcb\x98\x94\xc5\xad\x73\xad\xa7\xe1\x1a\xe3\xab\xe7\x84\x98\x86\x62\x66\x75\x64\xf5\x87\x5b\xd3\x78\x2f\x35\xec\xeb\x97\x06\x90\xd5\x1c\x91\x93\x13\x93\xc3\xf8\xa9\xac\x1b\x70\xf8\xdc\xf3\x70\x14\x85\xec\xf5\xcb\x4c\x0b\x04\x18\xe9\x73\xc3\xaa\x3d\xd8\x42\x65\x0c\xc2\xdf\x0e\xc8\xaf\xcf\x01\x99\x17\xda\x4f\xe9\x92\xdc\x75\x98\x7a\x77\x97\x4a\x8a\xe0\xce\xf8\x7f\xbb\x2f\x94\x0d\xfe\x41\x32\xef\x2c\x55\x48\xda\x40\xac\xa2\x4e\x5d\xc7\xbe\xb0\x9f\x3e\x99\xa5\x14\xca\xa9\x07\xa5\x2d\x73\x72\x62\xc6\xbf\x5f\xbf\x4c\x5e\xc5\xb3\xce\xaa\x09\x3e\xc9\x73\x65\x5c\x2a\x16\x0a\xd6\xb3\xe2\x13\xb7\xf8\x00\xce\x03\xc2\x31\x33\x2b\x02\xd3\xd2\x69\x8d\x81\x11\x44\x3f\xe3\x1b\xc3\xda\x5a\xf9\x6d\xef\x04\xfa\xee\xf5\xcb\x59\xae\x80\x98\xff\x40\xa8\xe4\xfc\x63\xf1\x44\x1e\xf1\x9a\x69\x8b\xbe\xd8\x21\x40\xe3\x3e\x66\x66\x5f\x05\x0b\x6c\x8f\xca\xec\x4a\xdd\xbb\x64\xdc\x69\xe6\x88\x66\x4a\xc7\xe4\x10\x77\xfa\x08\xd4\x47\xac\xaf\xd7\x75\xab\x4c\x86\xa3\x90\x5c\xcb\x10\x74\x95\x2d\x83\x84\xc8\xef\x06\x34\xe0\x01\x22\xc1\x27\xcc\xf2\xe0\x6a\xad\x76\x86\xe9\x75\xc0\x42\x2a\x78\xe6\x69\x9c\xe2\x59\x09\xff\x3c\x5d\xef\x26\xeb\xb5\x95\x2c\xf3\x96\xe1\x79\xf0\x71\x96\x44\x2b\xc3\xec\x63\xb0\x0e\xfd\x9f\xaa\xc1\x0a\x6f\xc0\x3b\x8d\xf4\x2c\x59\x18\x6e\xad\x6f\xf3\xb1\x9a\x04\x54\xb7\x92\x75\x0c\x92\x4a\x62\x7b\x71\x74\xa5\x4c\x17\xd8\x55\x6c\x99\x25\x7f\x96\x60\x8f\x72\x4c\x2a\x72\x25\xd1\x9c\x09\xb1\x38\x5a\x48\x7e\x35\xe6\x21\x5b\x19\xc0\x23\x28\x8a\xc4\x83\x68\x76\x6e\xa8\xee\x74\x2f\x11\x33\x2e\x40\x48\xbd\x25\xa2\x0b\x9c\xdd\x20\xac\xe3\xa1\x1c\x5a\x02\xb6\xbb\x60\xe1\x66\xfd\x45\x11\xcb\x61\x92\xeb\xc5\xc3\x71\x59\xaf\xbb\xd7\x01\xbe\xa9\x4a\x1c\x73\x49\x42\xef\xaa\x1b\x91\x90\x57\xf9\x4a\x38\x5e\xad\x09\xe2\xc1\xa7\xf2\x19\xc8\x8c\x93\x84\xe9\xf5\x76\x5e\xbe\x61\x2b\x1b\xbb\x65\x03\xea\xea\xe7\x3a\x72\xcb\xfa\x96\x7f\x87\xb3\x51\x5c\xf4\x9c\x5f\xb8\xf8\x9c\x5f\x24\x91\xae\xb1\x78\x50\x15\xcf\x59\xb8\x32\xb1\xf5\xb0\x10\x33\xe2\xfa\xa1\x27\x15\x00\x8c\xbf\xbc\x22\x58\xfc\x39\x6a\x1c\x93\x64\x06\x81\x3b\x21\x39\x02\xba\x98\x1d\x3b\x00\x6d\xf8\x32\x64\xc1\x27\xec\xcf\x8e\x6d\x80\xe5\x49\x78\xf9\x35\x3f\x82\x31\xed\x2f\xd2\xe7\x3f\x04\x54\x54\x22\x5e\xc7\xc5\x66\x7e\x10\xc9\x6f\x06\x30\x32\x15\xcf\x36\x34\xfd\x65\x5c\x00\x3f\xf0\xdf\x61\x0f\x07\xd7\xf2\x6c\x6a\x94\xe5\x03\x81\xa4\x18\x98\xa8\x64\x43\xca\x76\x0d\x15\x0f\x55\x7c\xa7\xf1\x31\xac\x67\xd1\xa9\x6b\x74\xe2\x9f\x33\x13\xbb\x04\xca\x82\x6f\x82\x88\x5b\x50\x9d\xac\xd1\xfa\x14\x03\x66\xe6\x25\xc9\x79\x52\xd1\x85\x65\x59\x47\x42\x3f\xf2\x7c\x05\xc8\xf7\x63\x6d\x5c\x2a\x1d\xc5\xfb\x5d\x1d\x79\x3a\x6d\x2b\xd0\x7c\x4d\x23\xcc\xe2\x21\xca\xe2\xa9\xac\xf9\x3c\x1d\x4c\x55\xe6\xa5\xf2\x4e\x57\x14\xd2\xc4\xa9\x23\xcd\x69\x8a\xf9\x11\x3f\x39\xd9\x13\x79\x5e\xe8\x7e\xf3\x84\xbc\x44\x51\xe0\x75\x7d\x16\xae\xfd\xf0\xa6\x32\x9f\x53\x1e\x62\x47\xd9\x47\x9f\x10\xaf\x2d\xa0\xf1\x33\xc0\x5d\xde\x95\xb9\xc0\x95\x79\x44\x12\x2d\xb3\x2f\xfa\x42\xdf\x72\x4c\x79\x17\xab\x71\x7b\x0c\x39\x4a\x75\xfd\x75\xc8\xf3\x14\x64\xf9\x2b\x90\x83\xb3\x60\xb1\xc8\x1b\x1b\x7b\x93\x23\xae\xe3\x20\xc9\x91\x28\xec\x06\x75\x5e\x53\xe8\x10\x71\xd6\x99\x27\xfe\x8a\x76\xa6\x17\xfa\xb8\x8b\xfd\x80\x87\xac\x6e\xf9\xa2\x4c\x31\x3f\x5c\x9d\xfd\x11\xa1\xee\x1c\x79\x3c\x64\xb7\x8f\x1e\xc7\x23\xb5\x5a\x36\x6d\xc0\x53\x55\x66\x35\x1b\x43\x62\x99\x82\x67\x46\x66\xc3\xee\xec\x3f\x51\x48\x0b\xa4\xc9\xa2\x25\x68\x73\x85\x6f\x37\xeb\x1c\x69\x84\xc2\x7e\xbe\x5e\x63\xc4\xb2\x8f\xcf\x2f\xe2\xec\x57\x85\xbd\x9c\x2f\x64\x5b\x9a\xd4\x34\x38\xfe\xc8\x11\xc3\xa8\x73\xda\xf1\x83\x6b\x43\x6d\xc5\x68\x85\x62\x59\xd6\xb9\x7d\x01\x5f\x84\x3e\xfe\x29\x60\x2c\x64\x90\xe1\x39\xc3\xd1\xd2\x6c\xa3\xf7\xe5\xca\x92\xad\x24\xd5\xba\x7e\x20\x78\xba\xc9\x26\x7f\xa2\x61\x2e\x1a\x50\x11\xa6\xfe\x73\xf9\x24\xeb\x23\x89\x17\x1c\x72\xdd\xff\x67\x8f\x44\xd1\x56\x4b\x1c\x38\xca\xca\xda\xcb\x6c\xaf\x32\xbd\xf5\x60\x48\xa3\x15\xe8\x1f\x35\xbb\xa5\xfa\xad\x61\x01\x2c\xc6\xbc\x06\x4a\xbe\x93\x7b\xaa\x99\x89\x70\x13\xf0\x65\x37\x3b\xee\xc6\x05\xd0\x39\x41\x67\xc6\x73\x86\x3b\xb7\xe1\xa6\x13\x6d\x18\x7e\x66\x80\xb4\x47\x62\x7d\xb1\xc6\x6c\x85\x04\x3e\xe2\x47\x40\x83\xb2\x15\xbc\xf3\xc0\x97\xda\x40\x44\xd4\xc3\x24\x3b\xfa\xaa\xeb\x51\x6a\x01\xa7\x54\x00\xc7\x8e\xb5\x85\x97\x81\x20\xdd\x32\x88\xab\xd0\x47\xb6\x5c\x5a\x7a\xa3\x8b\xba\x45\x3b\x5b\x1d\xd6\xe0\x8a\x11\x32\x27\x6e\x64\x8a\x3b\x75\xd0\x26\xd3\x4f\xea\x72\x19\xc4\xe0\x72\x9d\x03\xcf\xb1\x8e\x8a\x9d\xcc\x70\x25\xa0\x16\x28\xbd\x4e\x38\x03\xb0\x38\x7d\x63\x10\xbd\xc3\x8b\x20\xe2\x98\x61\xdf\x34\xf4\x5c\x8b\x8f\xa6\xd5\xa0\x6f\x5b\xb3\xd2\x02\x21\x1e\xf9\xe4\xe8\x5a\x11\x42\x0f\xa6\x61\x59\x90\x2f\x31\xcd\x1d\x32\xe1\x27\x27\x38\x29\x68\x6d\x2d\xe8\x21\xee\x2d\xcd\x22\xc1\xe2\x83\xb4\xb8\xb4\x3e\xd1\x2c\x95\xb4\x9e\xac\x41\x32\x1e\xd1\xdc\x98\xb5\x12\x42\xeb\xdb\xee\xe5\x86\xf3\x90\x76\xe7\x18\xfb\x97\xc8\xbb\xfa\xa2\x2a\x75\xaf\x2e\x56\xc9\x47\x8f\x04\xe2\xdf\xfa\x32\x44\xcc\xaf\x2b\x77\x88\x76\x4e\x9a\x59\xab\xbb\x0e\xbc\xab\xa2\x95\x9b\x89\x7e\x09\x3e\x06\x34\x3a\xf3\x48\xe0\x5d\x75\xc3\x0d\x8f\x02\xbf\xe8\xa1\xf9\x1c\x43\x97\x91\xa8\x89\x5d\xb4\x21\xc6\x43\x6d\x1f\xe5\xdd\xcd\x4b\xc7\x3f\xc5\xb6\x33\x80\x9e\x5f\x79\x0b\x45\x49\xcf\x7d\x91\x0a\x57\xdd\xcb\xcd\x7c\x8e\x59\x77\x4e\x36\xd1\xf2\xe9\x30\x6a\x61\x9b\xa9\x86\x6b\xf4\x53\xda\x33\xc3\x7a\xa8\x42\x51\x5b\xeb\xb9\xa3\x90\x59\xf3\x48\xbf\x7f\xb1\x0c\x88\x2f\x94\x78\x56\x32\xed\xf4\xea\x14\x05\x5f\xdc\x4f\x18\x52\xd3\x40\xbe\x6f\x64\x9b\x6f\xf2\xf6\xd4\x57\x36\x9f\x57\xd5\xb6\xcf\xa0\x7e\x51\x06\x6d\x3f\x9c\x0b\xcc\x7f\x90\xdf\x25\x43\x97\xa4\x90\xb1\x0a\x7d\x44\x8c\x07\x8e\x01\xf2\xd5\x18\xc2\x5c\x2b\x71\xa6\xe4\xd8\x32\x7e\xe8\xa0\x28\xef\x5a\x65\x03\x6d\x86\x46\xab\x84\x90\x10\xec\x15\x25\x48\xa2\x30\x92\xb7\x3b\x4b\x7e\x9d\x2a\xa3\xe2\xba\xa7\x12\x12\x14\xf1\xe0\x1a\x77\x23\x8f\x85\x84\xc8\x94\x85\x7b\x52\xa1\x5c\xc1\xd7\x49\x8c\xdd\xbc\x10\x9b\x33\x95\x6b\xab\xa6\x05\x75\xf3\xea\x0b\xd0\x07\xae\xbf\xd8\xfe\xcb\x6c\x9a\xaa\xda\x1b\x14\xf0\x1a\x19\xc0\x83\x15\x0e\x37\xbc\x72\xd1\x91\xd8\x76\x17\x40\x1e\x77\x0b\x04\x1a\x42\xd7\xa5\xbf\x5e\xc4\x85\x66\x46\x81\x74\xc2\xa8\x30\x40\xc4\x11\xc7\x33\x83\x61\xe4\xdf\x1a\xd9\x05\x89\xfd\x50\xfd\x11\x6d\x64\xc4\x49\xb2\x49\x2f\x7f\x95\xd7\x1c\xc2\xec\xd5\x30\xf2\x7b\x4e\x8f\xc8\xea\x3f\xa4\x28\xd5\xad\x3f\x8a\x12\x47\xd0\x31\x35\xe4\x01\x2d\x01\x54\x10\xc6\xb0\x8e\xb8\x69\x17\x4d\xfb\x84\x39\xd3\xe5\x04\xce\x16\x97\xab\x14\x51\x6e\x5b\x5b\x92\xe2\x9b\xce\x5b\x16\xae\x82\x08\xe7\x13\xa1\x9b\x06\x34\x4e\x29\xc0\x89\x5c\x3d\xb7\x2f\x84\x04\x7e\x75\x8d\x29\x7f\x23\x56\x34\x14\x33\x33\xd3\x18\xa6\x42\x9f\x89\x75\x40\xb9\xb1\xda\xfe\x19\x46\x76\x19\x85\x81\x21\x87\xda\x00\x7a\xac\xe5\xb9\xf5\x78\x78\xca\x52\x3c\xca\xc4\x27\xa9\x62\x1a\xd4\x48\xcd\x84\xec\x10\x99\xa2\x36\xb5\x74\x6e\x51\x57\xbc\x8e\xae\xa9\xa9\x85\x18\x20\x28\x5a\x76\xe3\x85\x59\xcd\x02\x42\x02\xd5\x97\x3a\x48\xf1\xc7\x30\xe6\xf8\x23\xff\x73\xfd\xa4\x01\x26\x7e\x84\x79\xd1\x57\x5a\xe8\xdb\x83\x1d\xa6\x4b\x14\x2d\x03\x2f\x64\xeb\xae\x7a\xfd\x84\xf6\xb5\xf2\x61\xd5\xed\x13\x03\x9a\xbe\xba\x0c\xfd\xdb\x16\xe6\x78\x10\xbd\xd4\x5b\x0e\xbf\x05\x51\x20\xc7\xd9\xd9\xbd\xb9\x99\x6e\x3b\xc6\x76\x91\xa1\xf7\xe0\x71\x57\x4a\xf5\x6b\xcc\x78\xe0\x21\xd2\x5d\x61\xba\x31\x84\x34\x94\x65\xa3\xd9\x5d\xbc\xbb\xb1\xcb\xe8\xf2\xbd\x38\x6f\x8a\x61\x7d\x6f\x9f\x9c\x14\xa7\x60\xa9\xc3\x06\x38\x2e\xd6\x51\x86\xb1\xac\x2d\x28\x8e\x25\xb6\xee\x30\xe4\x88\x2d\x30\x87\xde\x12\x7b\x57\xd8\x7f\x66\x66\xd1\x13\x46\xe5\x6e\xdc\x00\x85\x11\xbf\x25\x18\x2e\x71\xb0\x58\x72\x97\xe7\x7f\xde\x04\xd4\x0f\x6f\x60\x40\x29\x66\xff\x92\x8f\x4e\x8d\xf5\x47\xc3\x9a\x99\x7b\x53\xb1\xa1\x25\x99\xb3\x6c\xdb\x86\x37\xe5\xa1\x4c\x89\x6e\x37\x3e\x7f\xf2\x67\x85\x8e\x54\xf4\xe5\x62\x2f\x0c\xb0\xdf\x65\x38\x0a\x37\xac\x78\xf2\x38\xb6\x26\x57\xeb\x0d\xc7\x7e\x57\x92\xea\x0b\x38\x1f\x6a\xd1\xcb\x76\xf4\x02\x20\xce\x59\x70\xb9\xe1\x59\x57\x6f\xdc\x45\xf9\x77\x96\xb7\xc5\x8c\x05\x0b\xfc\x77\xe1\xcd\x2b\xea\x1b\x16\xd8\x50\x55\xf1\xad\x36\xb8\x62\x2c\xe3\xc8\x3b\x43\xb6\x18\xc1\xff\x07\x23\x6f\x09\xdf\xeb\x31\x2e\x07\xdf\xe7\xc2\xe8\x34\x58\x7c\xb0\xc4\xf0\x58\x20\xb9\x4f\x5e\xe4\x70\x7f\x6f\xdc\x20\x46\x75\xc6\x49\xbe\x95\x61\xcd\x8f\xea\x81\x6e\x65\x8d\xe4\xfd\x0b\x69\x1e\xcb\x42\x6f\xb6\x16\x48\x51\x2f\x34\x66\x1a\xbf\xc6\x84\x78\x21\x9b\xcb\xb4\x10\x5b\x59\xfd\xa3\x9c\x11\x94\x89\x59\xd6\x67\x92\xad\x93\x13\x7c\x7a\x0a\x8a\xaf\x75\xbd\x39\x39\x24\xe0\xee\x74\x6f\x66\x06\xda\xf0\xb0\x73\xd6\x89\xd6\x88\x76\x8c\x53\x13\x9f\x96\x9c\xae\xc9\x30\x25\xb5\xdc\xdf\xdb\x7a\xb9\xd8\xc4\xe2\x49\x12\xdc\xbf\xe2\x76\x62\x70\x7d\xdb\xf5\x42\x1f\xaf\xe4\xe6\x54\x7e\xde\xe6\xdf\xed\x28\x75\x88\xb6\x0f\x09\x22\xfe\x34\x5e\x80\x0a\x70\x82\x6e\xc3\x0d\x8f\xce\xd6\x98\x79\x98\x72\xb4\xc0\xe2\xed\x66\x45\x6b\xc5\x61\x85\xb3\x56\x2a\x1e\x86\xa3\xe0\x93\xdc\x6d\xd8\x73\x83\xb7\xfa\x6c\xe2\x57\x1f\x76\x17\xba\xf9\x74\x8a\x3b\x4f\x2c\x92\x0a\xf7\xb2\xdc\x81\xdd\x25\xd3\x95\x8e\x9e\x0d\x6d\x1b\x78\x98\x10\x65\x09\xcc\x1c\xa7\x9f\x4a\x7b\x96\x95\xf6\x98\xbf\x97\x25\x0b\x4b\xe6\x22\xff\x5c\x3c\x78\xcb\x4d\x31\x86\x7b\xde\x1b\x82\xf8\xff\x8b\xed\xae\xc8\x3d\x55\xb1\xe8\xfc\x1b\xc9\x67\x72\xfd\x7a\x6e\x88\x07\x5d\xc5\x79\xc6\x85\x9b\xbf\xd2\xa8\x64\x93\x71\xbc\x4a\x2d\xbb\x92\xc8\x8d\x99\xb5\xe2\x4d\x42\x32\x69\xc5\xc5\xd4\x29\xa9\x03\x45\xe5\x9c\x16\xd0\xa1\xdd\x9a\xfe\x65\x29\xaf\x2a\xdd\x6e\x2d\x20\x99\x1e\xd7\x1d\x30\xd5\xeb\xdc\xa3\x60\x6e\xa6\xbb\xff\xc8\x0c\x4d\x63\x85\x02\xda\xf9\x5e\x6e\xc2\xab\x7d\xf7\x24\x83\xaa\x74\x14\x86\x1b\xc9\x0c\x2f\x48\x80\x29\x7f\x87\x3d\x6e\x5a\x80\xb8\xf9\x3a\xbe\x99\x87\x21\xc7\xec\x9c\x85\x04\xbb\x86\x0e\x83\x92\xc7\xf9\x2f\xbe\x51\x75\x82\xc8\x65\x90\x87\xeb\x53\x02\x3d\x59\x93\x22\x07\x08\x5c\xc1\xa9\x1c\x05\x44\x9b\x81\xdd\xe8\x48\x6f\x9d\xf3\x94\x1e\x3f\x21\xbe\x84\x2b\xf4\xd1\xb4\x41\x60\x69\x0e\x50\x27\x1a\x5f\x8b\x21\x31\x73\x8f\xde\x4b\xef\xda\xdb\x30\x59\xca\xaa\xc4\x6e\x49\x3b\x37\x81\xcf\x97\xc0\x2b\x47\x29\xaa\xe1\x4b\xc6\xb7\x94\x8f\x63\xf3\xbd\x63\x3b\xfd\xd9\xe0\xd8\xf5\xca\x36\x7d\x22\xa9\x72\x1c\x99\x3b\x2e\xb3\xf9\x7e\x3c\x18\xcc\xfa\x0d\xc5\xfb\x7d\x20\xfe\x1f\x14\xcb\x0e\x26\xe3\x59\xaf\xa1\xec\xd0\x06\x43\xbb\x50\xf0\xbb\xc1\x64\x32\x73\x1a\x0a\x3a\xb6\x7d\x61\x6d\xbd\x63\xb7\x91\x2a\x27\x27\xe6\x57\x33\x93\xda\x78\x29\xa4\x4b\xbe\xc1\x53\x59\xb3\x05\xd1\x10\xbb\xdd\x52\xe1\xec\x08\xee\x2e\xe7\x10\xfd\xea\x35\x0d\x6a\x13\xe0\x5d\x52\x39\xa9\x9b\x95\xa5\xca\xc7\x0f\xeb\x02\x41\xfc\x70\x25\x14\x87\x5a\x75\x08\xc3\x45\x4b\x3f\x79\x6f\x88\x5a\x90\xaa\xef\xe1\x35\x66\x73\x12\xde\x48\xf9\x84\xa2\x68\x66\x64\x9e\xc8\x0d\x53\x12\x46\x85\xed\xc6\x90\x86\x6b\x4c\xf3\xcf\x7e\xcf\x3f\x52\xc3\x50\x9a\x2d\xaa\x3f\x32\x82\x41\xe6\x75\x77\xcb\xb3\x25\x96\xc7\x27\x27\xb9\x4d\x1b\x2d\x88\x53\xa1\x19\x95\x66\x84\xc4\x39\x2e\x60\x7e\xa3\x45\xa9\xe6\xdb\x0b\x25\x9f\xd5\xe7\x37\x15\xa1\x52\x80\xd6\x4b\xeb\x52\x9c\x87\xa2\xa0\x01\x78\x39\xc6\x23\x16\xb8\x54\x4b\x63\x6b\x2b\xdb\x52\x34\x13\x4c\x03\x7e\x2f\x90\x14\x57\x04\xbb\x24\x84\x72\x62\x6f\x4f\xc9\x49\xac\xba\x60\x55\xb8\x87\x8b\x63\x6a\x58\x47\x59\x4f\x83\x50\x2e\x28\xa0\x91\x49\x05\x91\xcb\x2e\x08\xaa\x75\x81\x1e\x7b\xd9\xe7\xa6\x78\xfe\x6f\xcd\x66\xab\xa3\xd8\x4d\x2a\xdd\xd6\x15\x32\x35\x83\x7c\x59\x7a\xe9\x97\x56\x2a\x46\x25\x61\xef\x94\x0b\x67\x26\xd6\x1e\xc0\xc4\x2e\xaa\x8e\xe9\xc7\x20\x32\xf3\xf9\xdb\xf5\x26\x84\xda\x77\xbc\x48\xc2\xfa\x1b\x42\xf4\x8f\x9a\xd1\x2d\x76\xa2\x10\x9c\xdf\xd8\x8f\x6d\x95\x39\x92\x4c\xaa\x2a\x8a\x94\x96\xf4\xf9\x19\x25\x0c\x97\xf8\xb8\x6f\x7c\x06\xb1\x96\xab\x58\x1b\xae\x0a\xe6\x26\xff\xbe\x60\x7d\x58\x99\xdc\x0a\x26\xad\x62\x3b\x66\xdd\xdf\xd3\x82\x83\x8d\x59\xd6\x51\x0d\xf0\xc9\x09\x2d\xf3\x28\xb3\xb6\xdb\x8c\x4b\xb1\xca\xa9\x77\x72\x12\xfb\xf5\xd2\x6f\x89\x87\x2f\xc3\x39\x58\x67\x66\x50\xd3\xd2\x54\x87\xc8\xf3\x22\x2f\x11\xd8\x0b\x1c\xcb\xea\x1f\x6e\x5f\xfb\xa6\xda\xad\x56\x05\x0d\x2b\xae\xdc\x3d\xb6\xf3\x13\xa8\x95\x4b\x4e\x69\x59\x82\x6e\xeb\x83\x69\x76\x06\x6f\xec\xbd\x4c\x7b\xcc\x16\x21\x6d\xb9\x50\xba\xab\x1d\xa1\xaf\x20\x82\x96\x99\xdf\x9c\xcb\x0b\xac\x74\xd0\x81\x34\xb4\xeb\x4f\xae\xe6\x06\x5b\xde\xde\xbb\xc0\xfc\x79\xbc\xe0\x33\x8d\xc0\x97\x07\x59\xe7\x21\x7b\x85\xb2\xb1\x73\xd2\xc1\x1c\x7b\x49\x4c\x6b\xdb\x8a\x1b\xd6\xe1\x0d\x66\xdd\x08\x8b\x55\x5e\x77\xb5\x21\x3c\x58\x13\xed\x12\x56\x17\x98\x56\xf9\x0d\x72\x85\x32\xb0\xfb\x55\x7c\x88\x4e\x95\x4a\xac\x9a\x48\xd4\x5c\xc1\x5f\x86\x14\xbb\x0e\xa3\xec\x45\x92\x83\x3e\x91\x52\x37\x3f\x9e\x64\x2e\xfd\xa5\xa6\x50\x16\xe1\x68\xb3\x58\xe0\x88\x63\xbf\x1b\xae\xeb\x3c\x96\x8f\xa1\x56\xb9\x81\x43\x27\xdf\x43\x67\xd9\xc1\x23\x7e\x76\x89\xe7\x21\xc3\x7a\x1c\xa3\x87\xd2\xa1\x58\xcd\xc1\x93\xe5\xb1\xf4\xf8\xcb\x10\x62\x4d\x90\x87\x97\xfa\x9a\xc5\x07\x12\x23\x5b\xc7\xe1\x13\x24\x2b\x14\x4b\x39\x1c\xf6\xa3\x4b\xb9\xaa\x83\x27\x8f\xba\x44\x65\x57\x84\x54\x2b\xd2\x14\xaa\x39\x78\xb2\x3c\xd2\x9a\x3b\x68\x23\x8e\x21\x3f\x08\xff\x84\x74\x27\xe5\xb8\xb1\xe6\xbe\xaa\xa4\x51\x15\x07\x84\xbe\x82\xa3\x4b\x1c\x5d\x76\x29\xba\xfe\xa2\xbd\xa2\x92\x80\x1c\x5d\x1a\x20\x21\xa7\xe8\x43\xbb\xde\x46\xe5\x1d\xf3\x2f\x1b\xa9\x94\xed\xc4\x05\xc8\x20\xf3\xc0\x18\x08\x8e\x2e\x37\x04\x3d\xd1\x99\x80\x0a\x70\xe5\x07\xa2\x18\xfb\x51\x97\xe1\x6b\x44\x02\x5f\x07\xae\x56\x43\x06\x3e\xa6\x3c\xe0\xb7\xbb\x22\x0b\x16\x2c\xf0\x1f\xba\xaf\xd3\x18\x80\x50\x17\xef\x5e\x05\x11\x05\x97\xa4\x3e\x3e\x41\x7a\x69\x22\x5e\xfb\x36\xf0\xae\xba\xf3\x80\x45\xbc\x8b\xa8\xb7\x2c\x85\x92\x14\x6f\x47\x06\x1e\xf0\x33\xdb\x4c\xf3\x03\xd8\x66\xca\x1d\x77\x4d\x7a\x8e\x95\xa0\x8f\xbb\x49\x5d\xfb\x5b\xfa\x1d\x8f\x3b\x45\xe3\x2b\xea\x98\xcb\xcf\xe9\xc5\x11\x83\xa9\xf4\x76\xb3\x3f\xee\xef\x8f\x1d\xc0\x60\x36\x59\xb4\x7b\x6c\x03\x43\xf6\xc1\x08\x68\x87\x9d\x9c\x98\x0c\xc6\xc9\xa3\xdd\x63\xbb\x5e\x57\x30\x78\x85\x6f\x01\x4b\x33\x0f\xa6\x51\xe6\xb9\xfb\x68\xe9\xc9\x09\x36\x33\x17\xe3\x01\x6a\x01\x26\x9f\xc9\xc3\xb4\xdb\xad\x69\x1d\x25\x78\xae\x15\x9e\xc1\xdc\x3c\x36\x71\x27\xa0\x11\x47\xd4\xc3\xe1\xbc\xc3\xad\x4c\x7e\xe5\x0f\xb7\x6b\xac\x73\x2c\xbf\x40\x94\x86\xbc\xe3\x21\x42\x3a\xa8\x23\xa7\x7d\x07\x45\x1d\x94\xf4\xc6\x50\xbb\xe0\x4b\xd7\xb4\x81\x9f\xba\x3f\xbd\xe4\x2b\xb8\x14\xaf\x82\x8c\x67\x14\xdc\xba\x19\xc2\x27\xbb\x95\x6b\xe5\x50\xc7\x7a\x9b\xe5\x0a\xdf\xba\x5c\x7d\x5d\x06\xbe\x8f\xa9\x7b\xec\xa8\x9f\x01\xc7\x2b\x97\xea\xef\xd4\xc7\x1f\x5d\xa6\x0f\x27\x88\x99\xe3\x92\x2d\x58\xd4\x0c\x72\x42\xb4\xb4\xad\xbc\xa6\x17\x84\xc1\x19\x4a\xbc\xc3\x73\xcc\x30\xf5\x62\x72\x88\x52\x9d\x25\x8a\xe8\x37\xbc\x73\x89\x31\xed\xc4\x49\xe8\x22\xec\x77\xba\x1d\x95\x16\xd2\xca\x41\x08\xd2\xe1\x34\x2b\xf5\x31\xbf\xbf\x37\x42\x39\xe6\xc6\xb1\xbe\x7e\xb3\xc3\x4f\x4e\x8c\x84\xa0\xe9\xd3\x67\x78\xc6\xb7\xaa\xa7\x26\x86\xbf\xff\x2e\xc7\xf8\xf7\xdf\xef\xef\x35\xcf\x2c\x30\x7f\x1b\x0f\xbb\xbc\xe0\xda\xaa\xde\x73\xb1\x4a\x2c\x14\x23\x5b\xd5\x6a\x9a\xfc\xb4\x9a\x25\xde\x0b\x24\x3b\xf8\xe3\x9a\xa9\x4b\x05\x54\x0e\x6e\x1c\xf0\x25\x66\x9d\x4b\xdc\x11\xa5\x3b\x21\xcb\xf0\x08\xe8\x08\x1e\x32\x4e\xe3\x16\xac\x23\x9c\xf2\x6b\x7c\x75\xa4\xf2\x7a\x98\xfc\xe4\x24\xcb\xcc\x77\x42\x4e\x71\xb6\x11\x22\x6f\xa6\xe7\x32\xce\xe5\x66\x77\xb2\xb9\xd8\x8b\x79\xda\xb7\x5b\x0b\xf0\x93\x13\x53\xb7\x11\xe5\x08\xf6\xac\xf2\xa9\xa4\xcd\x2c\x43\x6e\x97\x5b\x5b\x13\x67\xf6\xa4\xc0\xca\xc4\xe0\xfc\xee\x0a\xdf\xaa\x30\x40\xc4\x5f\x73\xbc\x52\x51\x49\x40\x75\x31\x3f\x57\xe3\x6b\x0b\xa2\x12\xdf\x5b\x77\x7a\xbb\x97\xcb\x8c\x5b\x3f\xea\xd7\x29\x01\xe2\xe4\x67\xe9\x88\x67\x2e\xbd\x7c\x89\x23\x8f\x05\x6b\x1e\x32\x51\x9b\xdc\x77\x4a\x52\xa6\x27\x4d\x56\xf3\x0a\x4f\xb2\xa4\xeb\x0e\x44\xcf\x54\xd1\x19\x36\x23\x95\x31\x56\xb0\x47\x22\xb8\x88\x95\xdc\xe7\x20\x9f\xe9\x2d\x7b\x22\xea\x3d\x2a\xa6\x0d\x47\xcf\x90\x4a\x13\xc0\x2c\x9d\x7f\x73\x6b\x66\x46\xbc\x05\x27\x67\x08\x00\xca\x34\x96\xe7\x88\x54\x0b\xea\xa8\x90\xec\x30\x40\xae\x83\x07\xdd\xa4\x3b\x44\x51\x15\xb9\x8e\x6d\xdb\x8e\x05\xa2\x53\xd7\xf8\xd4\x95\x02\x63\xd6\x31\x4e\xd1\x76\x7b\x61\x01\xbc\xdd\xbd\x53\x93\x84\xbe\x01\x54\x11\xdc\xc6\xd5\x51\xbd\x9c\x35\xe4\x87\xab\x2e\xc3\xde\xad\x47\x54\x66\x8a\x5d\xb1\x6f\x32\x60\x68\xe6\x38\x43\x3b\x1b\x06\x97\xc4\xbd\x85\x35\x71\x6f\x3a\x7c\x41\x06\x2a\x2c\x51\xf4\x02\x49\x3f\xc8\x63\xd2\x4c\x48\x33\xcd\x2d\x6c\x38\x15\x54\xc4\x4f\xe1\x26\xc2\xf2\x14\x93\x65\x05\xf3\xfc\x3b\xf5\x38\x49\x5c\xee\x6d\x18\xc3\x94\x7f\x50\x9b\x8b\x8a\x61\x82\xb9\xc9\x8f\xcb\x41\x40\xe9\x2e\xed\xae\xc0\x08\x6e\xc5\x49\x24\xa2\xec\x4e\x53\xbe\x9d\xf2\xbe\x53\xbc\x9d\x6b\xda\xc0\xcb\xd0\x92\x33\x03\x14\x0a\x5b\x40\x6e\xe0\x6d\x52\xa8\x02\x00\x30\x36\xc4\xc8\xc7\xa7\xcd\xcd\xcb\xb6\xf1\x69\x75\xe1\x6e\x7a\x06\x55\x06\x57\x44\x32\xaa\x8d\xe5\xa2\xda\xbe\x47\xe2\xe1\x33\x56\x3c\x87\x81\x2e\xc3\x6b\x6c\x58\x33\x56\x71\x72\x42\xbf\x4b\xce\x48\x7c\x7a\x2d\x75\xa6\x9c\x15\xdb\x2d\x26\x11\xee\xd4\xd2\x5d\x9d\x9c\x90\x30\x62\xc8\xf5\x96\xf6\xc9\x49\xb2\xb9\x2d\xa7\x93\x95\x79\x07\xd3\x8c\x1c\x56\x36\xcb\x48\x40\x17\x70\xbd\x89\x96\x66\xa1\xe8\x91\xa8\x3c\x9b\x66\x3a\x03\x2f\x21\x7e\x99\x17\x8b\x7c\xdb\x75\x8e\x5d\x37\xd4\x91\x30\x19\x78\x7d\x27\x7c\x08\x1c\x6b\x5b\x4e\x84\x92\x02\xba\xfa\x7e\x86\xaa\xc8\xb2\x45\x29\x90\x40\x4e\x52\xc3\x02\x43\xfb\xcb\x07\x58\xe6\x99\xcd\xe0\x97\xa1\x7f\x5b\x95\xd0\x08\xd0\x22\x68\x29\xf6\x52\x86\x39\xec\x17\x80\xb9\x07\x83\x57\x04\x60\xa2\x7d\x03\x30\x91\x0e\xc0\xac\x1e\x16\xaa\x6b\xff\x2f\x19\x64\x39\xb4\xf7\x0e\xd6\xdc\x82\x9b\x80\x90\x77\x98\xfa\x98\xed\x27\x23\x4b\xb1\x4c\x89\xcc\x35\x2a\xb3\xd5\x78\xfa\xa5\x55\x59\x54\xa5\x6d\x8a\xaa\x8b\x6a\x21\x27\x83\x79\x7f\x97\x4b\xd4\x77\xc9\x0a\xb5\xd4\xe9\x20\xd2\xe1\x38\xd8\xbf\xbf\xcf\x3f\x09\xe8\xe2\xfe\xde\x8c\x5b\xf8\x27\x09\x56\x2b\xcc\x7a\xa6\xbe\xc2\x83\x09\xa3\xd6\x17\xa6\xea\xac\x90\x0a\x53\x4c\x17\x6b\x0b\x14\x09\x5f\x60\x42\x72\x31\x4d\x42\x86\xab\x2a\x05\xbd\xe3\x83\x24\x79\xce\xd6\x2f\x81\x91\x44\xbb\x16\xa3\x3a\xf5\xb2\x4a\x48\xf0\x8a\x98\x4f\xfd\xd6\xd5\xa6\x8f\xbc\xf5\x49\xad\x38\xdd\x14\xf4\x27\xb4\x06\x41\xc1\x72\x94\xb2\x0a\x6c\xdc\x52\x85\x52\x6a\x3c\x8f\x7b\xa7\x8e\xc8\xbf\xc1\x73\xbd\xb8\xd0\x0f\x3e\x84\x6b\x10\xc7\xbb\xa4\x6c\x96\x7d\xa2\xd8\xda\x02\x5e\xb9\x05\x2f\xdc\xd0\x27\xab\xdf\x77\xb3\x64\x9c\xbb\x6a\x86\x04\xd4\xdc\x68\x70\x15\xe0\x62\x1d\x6d\xba\xee\x1c\x78\xa7\xe2\x23\x05\xf2\x4e\xb3\x40\x99\x38\x31\x3f\x1d\x91\xee\x26\x5e\x0b\x9f\xab\x7b\xd6\xb9\x6b\x7f\xcb\xbf\xf3\xe4\xea\x9b\xb8\x9b\x53\x0e\x22\x37\x1f\x77\xef\x43\xb5\x66\x79\xce\x4d\x62\x59\x20\x94\x86\x55\x78\x1e\x5d\x58\x00\x3d\x33\x69\x99\x24\x05\xa3\xcd\x24\xad\xb0\x8f\xcd\x11\xa9\x7e\xb2\xb3\x07\x01\x6d\x34\xe5\xf3\x47\x21\x60\xa8\xc5\x61\x36\x2a\x4e\xbf\xb8\xc2\xb7\x06\x88\x2c\x10\x9c\x47\x17\x2e\xb2\x66\x2b\xa5\x7f\x88\x95\x41\x39\xed\x76\xee\x3e\x7a\x61\xfc\x04\xe7\x26\xca\xa0\x15\x9d\xf3\x0b\x4b\x2c\x4a\x2f\xc4\xdb\x55\xec\xbb\xb8\x23\xee\x0a\xae\xc3\xb5\xa9\x28\xba\x76\x73\x84\x3a\x2a\x92\x71\x2d\xf3\x65\xfd\x69\xb4\x8a\x49\x92\x7b\x28\xa7\x87\x01\x48\xf1\x31\xc7\x2b\x03\xac\x77\x50\x5b\x11\xb6\x68\x41\x64\x81\xec\xea\x6e\x69\xe1\x3f\xeb\xd8\xdf\x76\xfc\x20\x5a\x13\x74\x3b\xeb\xd0\x90\xe2\x6f\x8d\xec\xe0\xac\xb2\x43\x22\x08\x7d\xce\x2f\x8e\x94\xb3\x61\x37\x95\x97\x9f\x8f\xca\x48\x6a\xa3\x5b\x33\x02\x4b\x40\x04\x7d\x15\x11\x40\x96\x91\x04\x9b\x29\xd1\x64\x22\x1d\xe6\x1a\x0b\x2d\x37\xc8\x85\xe7\x91\xc0\xbb\xaa\xba\x5f\x6a\x69\xe2\x56\xe1\x50\xb1\xa7\x54\xa9\xd9\xca\x8d\xd4\xdd\xf9\xc1\x9f\xc8\x27\xf8\xe0\x64\xfa\xf9\x71\x4b\x15\xd1\x5e\xc9\x01\x2b\xdd\xcc\xbb\xa8\x4c\x64\xec\x6e\x29\x38\x12\x70\xad\x57\x93\xa8\x34\x0e\xe2\x71\xd8\x9d\xc4\x45\xde\xa0\xd0\x25\x41\xd4\x94\xd3\xf5\x4f\xca\xf1\xd5\x66\x27\x21\x5c\x85\x0b\x86\xd6\xcb\xdb\xae\xfc\xf3\xe4\xc7\xf2\x2b\xd8\xdc\x19\xd9\xff\xc0\x5b\x90\xc9\x6e\x29\x69\x12\xef\x7e\x7d\x6f\x3f\x93\x77\xce\xbc\x16\xba\xf5\x1f\xd8\x3a\x73\x6c\x7b\x66\xb7\x48\x1c\x79\x27\xad\xe9\x7e\x7f\x04\x52\xac\x66\x36\x58\xa1\x8f\xb3\xee\x34\xfe\xef\xc1\x6b\xe5\x80\x79\x04\xbb\xe7\xdc\x74\x2c\xc0\x4d\xd8\x1b\xca\x3f\xea\x73\x2c\xff\x38\x96\xbe\xff\x8d\xa0\x4b\x4c\x22\x01\xdb\xd5\x70\x5d\xa8\xff\x28\xc8\xae\x63\x5d\x6c\xc1\x2a\x20\x24\x88\xb0\x17\x52\x3f\x2a\x2d\x2c\xfc\x40\xad\xb2\x05\x3f\xad\xd0\xc7\x8a\x83\xbc\xa5\x8c\x86\xe8\x63\xe2\x6e\x3c\xa7\x66\x6f\x08\xb0\x05\xa8\x39\xb4\xd5\xdf\xb1\xfe\xed\xd8\xe2\xc1\x85\x60\x8c\xb8\x89\x52\xe3\x29\xfd\x2a\xda\x55\xbe\x17\x25\x68\x45\xeb\x59\x68\x29\x81\x61\x52\xf1\xfd\xfd\xb9\x5a\x80\x94\xe3\x40\xc5\xa4\x4b\x00\xbf\xcf\x9d\x74\x96\x88\x64\x03\xe1\xf5\x33\x90\x16\x10\x7c\xcd\x21\xfd\xbe\x3f\xb2\xe3\xb5\x0d\xd5\x6a\x03\x10\xb7\x3f\xb2\xcf\x38\xa4\x47\xd4\xa5\xe5\x00\xd6\x0c\xab\xd9\xf2\x1c\x37\x77\x5d\xd6\x75\xee\xef\xa5\x2d\xc5\x10\xf5\xc3\x95\x69\x7d\x47\xb6\x89\xfb\x94\xe6\xaf\x63\xe1\xa9\x17\xfe\x8e\x85\x32\xd5\x4e\x7f\x64\xff\x83\x9d\x25\x3d\xb8\xed\xcd\xd2\xae\x9e\x95\x71\xfb\x47\xd7\x19\xd9\x80\x86\x3e\x9e\x71\x28\xfe\x24\x43\x91\x29\x07\x22\xbc\x90\xc1\xf6\x1c\xea\x6f\xfa\x98\x74\xd3\x94\xbe\x0d\x30\xf1\xf7\xcd\x34\x9d\x29\x74\x40\xdb\xe0\x94\x0b\x1b\x1b\x33\x75\xa1\xe8\x67\xdc\x08\x8d\x1b\x6a\xde\x51\xce\x76\xe9\x0c\x79\x24\x3a\xab\x8a\xaa\xdc\x5d\x02\xfb\xc1\x13\x0c\xc3\x0e\xf7\x66\xfb\xce\xcb\xae\x54\x6d\xc3\x4a\x4d\x29\xf3\xc5\x64\x6a\xd0\x4b\x56\xa1\x80\x45\xf1\x32\x74\x37\x03\xf1\x94\x06\x85\x2e\x86\xa2\x28\x58\xd0\xfb\xfb\xec\xe8\xa7\x7b\x90\xce\xb7\xfc\xbb\x44\xac\xe7\x8c\x4c\xe5\x2e\x4c\xde\x09\x83\x33\x2e\xc6\x3a\x01\xed\x50\x4b\x37\x90\x3a\xb3\x97\x28\xca\xb8\xe4\x95\x57\x5a\x60\x70\x72\x62\xe2\x73\x76\xe1\xd2\x73\x76\x91\x48\x10\x5c\xa5\xbd\x4a\x3c\xa5\x36\x24\x44\x7d\x01\x8e\x72\x96\x4b\xc6\x5b\x1b\x61\x2e\x6d\xd1\x64\x4c\x4d\x2c\x77\xc6\x40\x9d\x4d\x95\x59\xe7\x83\x8c\xae\x33\x89\x79\xb7\x05\x18\xdc\x89\xc2\xb3\x7c\x03\x5b\xcb\xda\x7d\x9a\x24\xb9\xa9\x52\xfa\x48\xef\xef\x75\x28\x83\xba\x2f\x54\xef\x85\xe0\x6d\x7c\xde\x95\x43\xf1\x5a\xdf\x33\xf6\xe1\x76\x8d\x8d\x59\xde\x3f\x92\xb6\x0c\x14\x2c\xd0\xde\xe3\xec\xc1\x53\x5d\xfb\xac\x94\xfb\x86\xe3\x15\xd4\x2d\xc7\xc5\xb6\x3b\xac\xe8\x32\x8f\xeb\x95\xd0\xce\x94\xad\x2a\x35\x9b\xd4\x25\xd5\xdb\xec\x1b\x4f\x1a\xcb\x4f\x71\xae\xa4\x99\x55\x32\xc6\x9e\xbc\xb4\xeb\x2d\x62\x68\x15\xcd\xee\xe4\x45\x8e\x77\x28\x9a\x19\xe2\x9b\xb1\x05\x91\xfa\x15\x67\xcc\x60\x58\x86\x0b\xca\x1d\x32\x79\xeb\xe3\x8f\xf2\x45\xd9\x00\x90\x4e\x88\x16\x36\x87\x82\x4b\xac\x0e\x43\x1a\x2b\x14\x2d\xf4\x8d\x20\x86\x5a\x52\x19\x17\x05\x0d\x9a\xe8\x4f\x69\x29\xcd\x4c\x43\xe6\x50\x79\x66\x3c\x27\xc4\x28\xba\xa6\x2c\xeb\xd4\xe8\x98\xc6\x69\x95\x06\xd7\xe5\x72\x1a\x36\xf6\x76\xcc\xb0\xd6\xfd\x3f\xdc\x9a\x8a\xeb\x00\xb7\xf4\xac\xdf\xca\x4a\x20\x0f\xdf\x84\x1e\x22\xf8\x3d\x17\x83\x6a\x5a\xa7\x86\x15\x73\xaf\x56\x3a\xaa\x86\xc2\x62\x41\xdf\x57\x07\x23\xc0\xdc\x64\xe3\x8d\x3e\x33\x8c\x19\x05\xc4\xe5\xea\xfe\xd6\x28\x7d\x45\xc4\x2b\x02\x90\xf4\x97\xbe\x09\x6f\x30\x7b\x81\x22\x6c\x26\x5b\xc3\x66\xd7\x29\x26\x7b\x51\x39\xec\xf2\xe0\x89\x5f\x1c\x59\x27\x27\xe5\x22\xaf\x5f\xee\x28\x70\x7f\x6f\x18\xc7\xae\x1b\xc5\x56\x95\x2e\x23\xc9\x62\x89\x17\xd9\x09\x1f\x61\xea\xbf\x28\xdc\x1c\x9a\xc9\x3f\x6f\xea\xdb\x57\xc1\xce\xc5\x6a\x79\x9a\xad\xf5\xe5\x73\x0f\x50\x88\x49\xd1\xaf\x48\x33\xe6\xfb\xf4\xd4\xcb\xa6\xbf\x84\x42\xbb\xdc\x04\xc4\xaf\x4d\x84\x2b\x53\xe9\x58\xa0\xe9\xd4\x76\x10\xbd\xf7\xc2\x35\xf6\x67\xc7\x0e\x68\xd0\x90\xa2\xc6\x92\x88\xd2\x9d\x30\xe4\x59\xb4\x95\x69\xa8\xbb\xce\x0d\x4b\xa8\x90\x97\x88\x23\xad\x3f\xf3\xca\x91\x97\x94\xa3\x28\x2c\x6a\x95\x45\xac\x6d\x85\x8f\x3f\xee\xa8\x91\xf1\xbe\x6a\xdd\x6c\xbc\x4c\x32\x84\x67\x13\xb9\xed\xd4\xb2\xd2\x2d\xc1\x6e\x4b\xb9\xe0\x14\xd9\xf4\x5d\xa6\x72\x03\xb6\xe6\xe8\x37\x0d\xd9\x0a\x91\xe0\x93\x06\x12\x15\x5a\x5b\x95\xc9\x3e\xbd\x0a\xd4\x2c\x2a\x71\xba\x21\x64\x6b\x65\x35\xb6\x22\xd8\x79\x8c\xde\x45\x85\x0a\x4e\x30\xaf\xc8\x3a\xa7\x5f\x95\x08\x56\xa6\x8c\xde\x77\x2c\xdc\xdd\xaa\x82\x51\xf0\x76\x3f\x9d\x9e\xcc\xce\x07\x28\xf7\xcf\xe0\xac\x69\xab\xc0\x77\xe9\xeb\x07\xe8\x22\x53\x2b\xa3\x82\xe2\x89\x35\x8f\xdc\x50\x6d\xaf\x77\x88\x75\x7f\x5f\x2e\x12\x47\xa3\xc8\x9d\xaf\xda\x92\x19\x4e\xdf\x67\x18\xa5\x87\xed\x21\x1a\x43\x17\xfc\x8a\xf4\x45\xb6\x47\x5f\x74\xa9\xda\x24\x60\x5b\x49\xe9\xac\x14\x7e\xa0\x07\xad\x95\x74\xd6\xf7\x64\x6f\x77\x88\xfa\x34\x07\x51\x36\xed\x40\x1c\xeb\x75\x85\x6f\x23\x13\x5b\x90\x61\x7f\xe3\xe1\xac\xdf\x87\x26\x42\x8f\x6a\xc9\x26\xf7\x3a\x66\xf8\x9c\x5e\xb8\x6a\x9f\x20\xd5\x09\xe7\xf4\xc2\x4a\xc5\x7d\x76\x19\xa2\xf5\x47\xae\x98\xec\x3b\xb5\xea\x8a\xa7\x5a\x13\x60\xab\x6c\x69\x61\xc4\xe4\xc5\xbc\xb7\x3b\x93\x60\x64\x84\xac\x13\x67\x65\xd6\xd6\x58\x52\x81\xb4\xc9\x80\xbe\xda\xe8\x45\xe8\xe3\x57\xf2\x2a\xa7\xa2\x56\x49\x12\x01\x98\x5c\x0b\x8d\x72\x66\x09\xa5\x43\x12\x0f\x91\x32\x98\x93\xbb\x9f\xcc\x3a\x47\x7a\x75\x1e\x05\xc5\x44\x47\x42\x9d\xd1\xbf\x80\xe6\x52\xf5\xee\xd0\x5d\xb2\x75\x3d\x24\xb3\xcc\x50\x21\xdf\x8f\x07\x8a\xe7\x60\x5f\xea\x9d\x9c\x59\x31\x35\x43\xbc\x53\xae\xca\x97\x46\xd6\x00\x06\xcc\x5d\x45\x96\x94\x5f\x23\x86\x29\xff\x39\xf4\x71\x8e\x59\x48\x88\x32\x5d\x78\x1a\x5d\xab\x25\xdb\xdf\x9a\x76\x1f\x4d\x9b\xbd\xc2\x7f\x2f\x7d\xdb\xa8\xa2\xcd\x1c\x78\x7c\xe5\xb7\x61\xdd\xdf\x9f\x5f\x58\x30\x0a\x57\xb8\x22\x9d\x83\x6c\x07\x43\x51\x79\xbd\x0e\xff\xbc\x8b\xc4\x24\xc1\xe7\x9e\xfa\x3e\x53\xee\xeb\x50\xf7\xc5\x0e\x35\xb8\x4f\x77\xb9\x48\xeb\x9c\xab\x49\x13\x7f\x3b\x51\x9f\xda\x89\x9a\xf1\x3d\xa5\xfe\xd4\x8c\x6b\xf5\x48\xc5\x57\x97\xd7\x78\xef\x65\x2a\x63\x35\x3d\x01\xaa\x00\x78\x89\x23\x1e\x50\x39\x82\x1a\x2a\x74\xd5\xbb\x08\xce\x03\xea\xff\x70\x6b\xaa\xd9\x2d\xc3\x57\x6a\x5e\x21\xeb\x28\xbc\xbf\x37\x43\xf7\x4e\xee\xf1\x46\x5b\xa0\xe1\xdc\xf3\x30\x89\xe0\xd3\x8f\x2c\x0b\x04\xf7\xf7\x66\xa0\x61\x51\x06\x36\xa8\x80\x6d\xe9\x1d\x06\x29\xa2\xb3\x10\x14\x90\x9a\x05\x05\xe7\xb1\x9c\xc9\x3f\xe3\x9b\x37\xd2\xd3\x57\x91\x47\xe6\xd7\x08\xcb\x33\x03\x7c\xc3\x70\xe7\x85\xe4\xf6\xce\x7b\x65\x7d\xea\x43\x14\x9d\x6f\x8c\x53\x7c\x6a\x7c\x63\x6c\x41\x10\xfd\x4a\x83\x3f\x36\xb8\xa2\xa2\xb2\x02\x57\xbe\xc9\x02\xfd\x6a\x42\x00\x40\x12\x23\x99\x9a\x15\x92\x06\x14\x28\xeb\x02\x27\x8e\x41\x2b\xf1\xed\x01\xa4\xbf\x1c\x45\x2e\x72\x99\x8e\x78\xd6\xf6\x09\xcb\x5a\x22\xd9\x45\xd2\x4c\x3e\x51\xe1\x80\x3b\x3c\xe1\xaa\x3c\x60\x15\x9e\xf0\x0c\xa7\xcd\xe2\xea\x73\x9c\x35\x0b\xe6\xa6\x11\x49\xaf\x66\x7a\xc2\x23\x3a\x39\x31\xb3\x7c\xab\x6b\x8e\x35\x8a\x05\xec\x8a\xfc\x73\x29\x11\x63\x57\x6a\xcc\xa1\x49\x28\x94\x0a\xe2\x3d\x47\x09\x47\x26\xac\x95\x2c\xf3\x23\xc8\x43\x75\xfa\xcb\x2a\x67\x8f\xd3\xbe\xe6\xd0\xda\x36\xd1\xa2\x1c\x93\xa9\x5f\xc4\xf1\x36\x49\x09\x18\x07\x4f\xee\xcc\x36\x55\x27\xb5\xbf\xb6\x0d\x01\xc9\x98\xc2\xc8\x60\x6e\xcc\x37\xe0\x31\xee\x70\x96\xf1\x84\x3f\x66\xbb\x41\xcd\x72\x65\x48\xa9\xef\x0d\x5b\x0e\x0a\xe8\x33\x6c\x3a\x20\x42\xc2\x1b\x03\x18\x3e\xa6\xb7\x4f\xb2\xdb\x40\x3e\xeb\x0e\x81\xa2\x43\xe5\x1e\x41\x3e\xe7\x7b\x46\xa5\xe4\xcd\x32\x10\x96\xbc\x30\x79\xdd\x52\x00\x0f\x8a\x9b\x0f\x60\xe3\x0a\x02\xc4\xa2\x36\xea\x98\xff\xb0\x8c\xca\xfd\x09\x53\xda\x86\x28\x31\x04\x83\xd8\x2c\x0d\x73\x8f\x8c\x7f\x08\xb2\xa2\x93\x13\xf9\x6e\x53\xf1\x2e\xac\x78\x27\x54\xbd\x1c\x8f\xe8\xfe\xbe\x60\x1f\x2b\x8f\x92\x2b\x37\x27\xda\x4d\xe1\xab\xeb\xfd\x2c\xc7\xab\xeb\xaf\xc4\x62\x8c\x3b\xf2\xa0\x8d\xf6\xab\xeb\xbf\xf7\xd9\xf7\x32\x11\xff\x13\x85\x74\x76\x6c\x03\x4c\xc5\xd2\xb9\xce\xf1\x75\xc9\x43\x64\x58\x4d\x5b\x0e\x5f\xdb\xa6\x3c\xa0\xe5\x6d\x79\x75\x9a\xaf\xb4\x2d\x4f\xb3\x06\x0a\xf2\x7d\x79\x60\x02\x11\x63\x56\xce\x99\xa9\x9c\x09\xf0\xdf\xf8\xd6\x28\x39\x43\x52\x2d\x6d\x88\xf7\xc0\x30\x4e\x4d\xe3\xcc\x38\x16\x22\x96\xcf\x0c\xc3\x3a\xa5\x15\x26\x8c\xbc\x7b\xbc\xe4\x8e\x51\x37\x92\x97\x2c\x39\xf9\xd8\xca\x95\x57\x38\x55\x07\x03\xfc\xa6\xf0\x2d\xd6\xa2\x87\x3b\x73\x27\x70\xdc\xb1\xf6\xf1\x02\x57\xd7\x67\xf3\x8a\x7c\x3d\xbb\xe0\x95\x31\xf1\x35\x88\x98\x27\x31\x6b\x98\x3c\xd2\xc3\x59\xb0\x7a\x02\xcb\xe6\x4b\xfb\x6f\xe4\x6d\xd5\x80\xa4\x6a\x97\x09\xb5\xcb\xb2\x4e\x9a\xbc\x3d\x90\x53\x49\x8a\xfd\x8d\x33\xc3\x92\x47\xce\xb8\x29\xbf\xca\x53\x00\x75\x3e\x93\x82\x37\xa8\x3d\x97\xb1\x30\xe4\x95\xf9\xf8\x5a\x28\xbf\x3f\x9d\xd7\x68\xe8\xef\xb3\xf3\xa6\xee\x84\xf9\xd3\xdc\x82\x4f\x7b\x61\x44\xdd\x4d\x44\xa6\x66\x55\xec\x57\x1c\x16\x2c\xdd\xc5\x93\xc0\xee\xc8\xc0\xda\xc9\x31\xa7\x58\x19\xeb\x96\x0d\x15\x24\xfa\x67\xf5\xe3\x5f\xb9\x5e\x3c\xc8\x3e\x56\x17\x5f\x95\xed\xe3\xfa\x7d\xcb\xd0\xaf\x77\x8a\x16\x7d\xb2\x27\x27\xd2\xac\x50\x17\x2a\x99\xad\xad\x4b\xc5\xd5\xd1\x52\x2c\x34\x1e\x27\x43\x9b\x53\xba\x2c\x30\xef\x26\x7b\x2f\x3b\xae\x96\x79\xcc\x09\x8c\x9a\xac\xc5\x4f\x29\x88\x6b\x8c\xa7\x87\x1c\xbe\x54\xb9\xba\xb0\xff\x01\x5d\x16\x55\xbb\x76\xaf\xa9\x1b\xaf\x32\xe1\x15\xcf\xf4\x9d\x55\x5d\x75\xf5\x96\x31\x8b\xaf\xb8\x8a\x0c\xab\x85\x93\xdf\x2c\x70\xa6\x55\xb9\x3a\x2a\xf3\xe2\xfb\xf8\x1e\xad\x3a\x76\xac\x74\xeb\xef\xd8\x07\x60\x25\xa7\xfe\x07\xb4\x68\xe9\xd0\xaf\xab\x71\x5b\xd9\x89\xb7\x21\xe3\xb2\x1b\xf1\x7a\xb7\xbe\xfc\x4e\x53\x74\xe7\xe0\x25\x5b\x54\xda\x2a\x54\x8b\x86\xbc\xa5\x9c\xf4\xea\x97\x1b\x8a\x99\x3e\x9f\xfa\xed\x9f\x9e\x23\x9b\x98\xdf\xc0\x4c\xda\xab\x4e\x40\xd7\x1b\x7e\x2e\xd3\x99\x18\x32\x13\x9b\x71\x31\xd3\x1b\x77\x9d\x53\x79\xc1\x82\x4c\x15\xa1\x32\x69\x57\x64\xc2\xd6\xec\x66\x62\xeb\x88\x66\x73\xc1\xb8\xb1\xcf\x8e\xa6\x5b\xae\x27\x27\x02\x2e\xb7\x05\x6b\x6d\x41\x14\x32\xae\x18\xff\x87\xdb\xd7\x2b\x21\x92\xe4\x31\x82\xdd\x9b\xb2\x99\xdb\xe4\xf2\x99\xed\x33\x77\xde\x15\xb6\xca\xe3\x5b\xe9\x66\xe5\x5b\xea\xd8\x33\x7b\xe6\x28\xab\x3c\xb9\x21\x6f\x56\x71\x65\x9e\x80\xeb\x6a\xc0\xf8\xea\xbc\x59\xec\x2c\xad\x6e\xa6\x5b\x53\x6f\xc7\x49\xb6\x2c\xe3\xa3\x1c\x49\xbe\x24\xbb\xad\x2d\x1f\x0b\x83\x3f\xd1\x50\x39\x52\x23\x53\x79\x38\x05\x57\x87\x30\xe8\xb7\xc9\xf9\x79\x9c\x11\x86\x54\x6e\x94\x03\xdb\xda\x02\xe6\x56\xc6\x6b\x27\x13\x5b\x9e\xd3\x51\x53\x20\x66\xfa\xc1\x3f\x0a\xa7\x64\xd2\xb4\x58\xb2\x35\x0f\x07\x24\x99\x43\x67\x32\x75\x86\x58\xf3\xaa\xb9\x45\x2d\x40\x5c\x1b\x44\xae\xfd\x2d\xf9\x8e\x7e\x7b\x7a\x4a\x40\x74\xea\x72\x8b\x9d\x93\x0b\x17\xc3\x68\x73\x19\x71\x66\x46\x20\x4d\x40\xc3\xb6\x26\x07\xfd\xd8\x0f\xd9\x75\xac\x53\xc7\xfe\x07\xdd\x02\x52\x75\x64\x4c\xe1\xa8\x3a\x0f\x97\x7c\x45\xde\xa3\x39\x36\x55\x8e\x86\x59\x47\x6e\x0f\xac\x3f\x1a\x56\x9b\xe5\x7f\x46\x8f\x3d\xa9\x6d\x52\x1b\xdf\x6b\xee\xb9\x87\x8b\x9e\x5c\xdc\x23\x6b\x5b\x61\xf5\x80\x15\xfa\x28\x8f\xbf\x96\x2c\xc4\xbb\x15\xfa\xf8\x56\xcd\x44\x09\xa4\x26\xab\xf8\xfa\x42\x4f\xc4\x6d\xcd\xb9\xb0\xc4\x27\x9b\xd6\xa0\xce\xaf\xe9\x3a\xd4\x8f\xb8\x16\xe3\xa2\xc4\xe3\x3c\xc3\xe3\xfc\x94\xe5\xe8\x40\x05\x73\x3b\xf6\x54\x1e\xfe\x0a\x39\x22\xd5\xbd\x8f\xd1\xaa\xb2\x6f\x49\x29\xe2\x24\x81\xb6\x2c\x99\x91\x63\x85\x02\xd1\xd1\xfd\xab\xde\xcd\xa2\x1e\x22\x9e\x39\xb4\xff\x47\xa7\xdb\x31\x4e\xd5\x49\xb3\x70\x43\xfd\x1d\xdd\x39\xeb\x59\x82\xa9\x2d\x79\xe3\x67\x4a\xce\x16\x5e\xf3\x58\x89\x55\x5f\x92\x25\x96\xb0\x4a\x63\xc4\x03\xa4\x1b\xd0\x43\xf4\x84\x0d\xc4\x83\xae\x1b\x88\x87\xfd\x09\x5b\x48\x38\x49\x34\xa1\x95\x47\xed\xd0\x25\x0c\x59\xc5\x17\xac\x6a\x28\x12\x0a\x49\xe6\xd0\x4a\xab\x9e\x35\x62\x1e\x6f\x5d\x7f\x42\x20\x59\x7f\xac\xe5\x6a\x1b\x48\xb0\x6d\xdf\x42\x4a\x20\x6b\xd7\xe1\xc1\x6a\xc5\xb8\x6b\xad\xa3\xd6\x29\xd1\x66\xf5\xcb\x3c\x5d\x78\x96\x01\x12\x89\xf3\x50\xa5\xfa\xb0\x55\x4e\x0b\x0f\x00\x7b\x84\x07\xe0\x4b\x2e\xf3\xf3\xd7\x1e\x63\xa8\x18\xdf\xfa\xde\xfe\xb2\x8b\x7c\xa1\xe8\x6a\xba\xb2\x7b\x9d\x5f\xe3\x73\x03\x51\xaa\x4b\x51\xfa\x32\x12\x2f\x23\x10\xba\xa4\xe5\x6a\x4b\xac\xfc\xe1\xce\xe5\x7f\x58\xb9\xd4\xd1\xab\x34\xb8\x63\xdd\x15\x5a\x27\x27\x3b\xdc\x81\xfa\x86\x65\x0b\xa0\x5a\x0f\xc2\x9c\xa0\x68\x79\xa6\xd3\x3e\x56\x6d\xee\x90\xa0\xab\x60\x72\x90\x07\x73\x02\x77\x1e\xb2\x95\x8e\xb5\xbf\xad\x13\x14\xd9\xad\xaa\x18\xb2\x24\x26\x44\x45\x67\x71\x2c\xf0\x93\xfa\x95\x4b\x66\x4a\x71\x67\xea\x7b\xfb\xe4\x24\x4d\x61\x98\x6c\x4d\xd9\x17\xcf\xb2\x3f\x66\x71\xdc\x2f\xa0\xe5\x1a\x9c\xca\x1a\x9c\x6c\x0d\xce\xc5\x2c\xa1\x66\x6c\x17\x96\xea\xe9\x55\xd6\xd3\xcb\xd6\xd3\xbb\x98\x31\xcb\xc4\xe0\x2e\x13\x7b\xaa\xcf\xfd\x19\x48\x58\xe2\xc6\x76\x2b\xe3\x90\x7f\x53\x64\x0f\x59\x64\x52\x6b\x5b\x7d\x57\xd5\x8e\x31\x55\x71\xd8\x3b\x65\x7f\x6e\xcc\xea\x46\x5c\xd7\x53\xc7\x33\x4f\x2c\xeb\x9f\x6c\xb0\x0d\xc0\x1f\x3a\xcc\xf4\x89\x86\x99\xc8\x61\x2e\x0d\xa6\xba\xbf\xcf\xcc\xbb\x4b\x2c\x3d\xc2\xa4\x20\xa2\xab\x47\x78\x89\xc9\x5a\xa8\x7a\x74\x59\x99\x3a\x66\x85\xa4\x56\x56\x30\x59\xd8\xaf\x51\x2c\xd5\xd7\x29\xb1\x6b\x59\x1f\xba\x8c\xea\x44\x5c\x42\x00\x2f\xdc\x83\x5a\x02\xf8\xc0\xc8\x25\xf1\x6b\x4b\x2f\x2f\x8c\xea\xf2\xe3\x64\x69\xb0\xdc\x8b\x62\xcb\x03\x24\xd9\x72\x2f\x9a\x2d\x1b\xb9\xcc\xf7\xdb\x93\xcc\xf7\x0f\x8d\x60\x02\xbb\xb6\xe4\xf2\xfd\x46\x62\xd1\x4a\x62\x71\xb6\xa9\xa2\x16\x3d\x38\x6a\xd1\x3d\xa8\x45\x9b\xa9\xb5\x5e\x77\xaf\x31\x8b\x4a\xf7\x2a\xe4\xd6\x81\xf3\x60\x71\x86\xe9\x75\xc0\x42\xaa\x8f\xf0\xa7\x96\x6a\xa6\x86\x38\x18\x00\x2f\xf0\xc7\xe2\xc5\x3a\xc2\x60\x8b\x7f\x77\x58\xbd\x2a\x6e\xa7\x4e\xef\xb6\x80\x65\xb6\xa1\x9f\xbf\x7d\x0b\x75\x1f\x00\x71\x71\xfc\xfd\x17\x4a\x6e\xef\xef\x31\x5c\x06\x3e\x7e\xbf\x44\x20\x72\x31\x8c\x96\x28\xfb\xf8\x37\x5d\x0a\xb9\x74\x43\x48\x92\x2d\xfa\xe4\xc4\x14\xa0\xe1\xcd\x2b\xb9\x2c\x94\x27\x6e\x90\xcb\xe0\x0a\xa9\x18\x19\xdd\x40\xfc\xf6\x1d\x5e\xbc\xfa\xb8\xb6\x2c\x80\xee\xef\xab\xe0\xe2\xf7\x16\x88\x0a\x15\x45\x4b\x94\x16\x7e\x86\x84\x99\xc1\xf6\xbe\xcb\x00\xc8\x1b\x73\x35\x2a\x2e\x2b\x2d\x73\xff\x25\x07\x1b\xaa\x31\x97\xdb\x3c\xbb\x39\x02\x57\x4f\x21\xb9\xf5\x18\x09\xa6\x2b\xcf\x23\x55\xe8\xc0\xa6\x92\xc6\xb4\xed\x6c\x92\xe0\x8d\x13\x4a\x9a\xdb\x7b\x52\x4f\x96\x39\x30\xe2\x29\x3c\xdb\xd2\x4e\x40\x37\x92\x2e\x0a\x2a\x2f\x77\xa9\xd6\x73\x02\xf8\xc0\x48\x26\xf1\x6b\x4b\xb1\x28\xa0\x6d\x08\xb6\x87\x31\x25\xa1\x0f\x8f\x64\x7b\x18\x53\x02\xba\x91\x68\x1c\xed\xc1\x65\x02\xf8\xc0\x48\x26\xf1\x6b\x4b\x31\x8e\x9a\xb9\x8c\x23\xda\xdb\x8b\x62\xbd\x03\x24\x59\x6f\x2f\x9a\xf5\xda\x10\x6d\x8f\xa9\x29\xa1\x0f\x8f\x68\x7b\x4c\x4d\x01\xdd\x4c\xb4\xf0\x72\xb7\x77\x49\x42\x3c\xf5\xfe\x7a\xd2\xcd\x7c\xb5\x55\x11\x24\xf1\x2e\xfc\x51\x30\x37\xdf\xdf\xae\x2e\x43\x02\x03\x8e\x19\xe2\xa1\x8c\x54\xd7\x89\x7e\x53\xc0\xaa\x4d\xe4\xf3\x0b\xc0\xdc\x63\x1b\x10\xf7\xd8\x49\x36\x8c\xe5\x29\xf8\x78\x6b\x1d\x81\xd0\xc5\xe7\x85\xfa\x2f\x4c\xeb\xdb\x63\x93\xb9\x26\x72\x43\x48\xf1\x47\x6e\x5a\x16\xf4\x43\x8a\xad\x93\x13\x93\xaa\x74\xd6\x48\x47\xcf\x80\x63\x7e\x7f\x4f\xd3\xd4\xea\xdc\xfa\x56\x34\x69\x7d\x9b\x9e\x97\x27\xa2\x0b\x91\x8b\xb7\xf3\x80\x22\x42\x6e\x65\x56\x99\x63\x76\x72\x12\x42\xd5\xf7\xf4\x9b\x69\x25\x40\xc1\xdc\x24\xfa\x22\xa0\x28\x89\xad\xa0\x2a\x71\xd6\x51\xe5\x05\x41\xaf\xa9\x74\xfc\x75\x10\xe7\x78\xb5\xe6\x1d\x1e\x76\x7c\xac\x2e\xf1\xd9\x30\xdc\xa1\x21\xed\x4a\x0c\x2f\x49\x7a\x87\x88\x61\x6d\xb7\x15\xd1\x67\x79\x33\xb6\x18\xc9\xc0\x5c\x41\x65\x47\x5e\x42\x50\x17\xcb\x9b\xf7\x83\x91\xba\x9d\xaf\x98\x1f\x55\x56\xcc\xb5\x0c\x69\x6b\xca\x9a\x59\x59\xe6\xb0\x66\xb4\xec\xfa\x5b\x8d\x6d\xcb\x7a\x33\x65\x9a\x66\xb7\x87\x56\x98\x04\x9f\x2a\x6f\x28\x15\x0b\x49\x75\x32\xb1\x24\x1b\x93\x62\x87\x45\xcc\x14\xdb\x96\x95\xc6\x05\x9a\xc9\x48\x3d\x4c\xba\x88\x90\xea\x55\x06\x55\x37\xd5\x78\xb7\x55\x25\xbe\x46\x1a\x36\x60\xbb\x0e\x38\x7a\x10\xdb\x24\x05\xbf\x46\xa4\x77\x31\x4e\x8a\x71\x6b\xd6\x89\x8b\x34\x92\xf3\x92\x55\x6e\x39\x56\x5a\x25\x12\xf8\xc0\x88\x27\xf1\x6b\x4b\xb6\x4b\xd6\xcc\x7f\x38\xa8\x9c\x67\xd5\x04\x13\xc0\x07\x46\x30\x89\x5f\x5b\x82\xe1\x80\x34\x12\x2c\x3d\x99\xb8\xe3\xd8\x62\xf6\x24\x62\x45\xd1\x03\xa3\x61\x8a\x72\x5b\x42\x26\xc7\xf7\x1a\xa9\xb9\xa1\x57\x7b\x7a\x93\x54\x99\x43\x23\xa1\xc4\xb3\x35\xf9\x36\xf4\xaa\x91\x74\x04\x45\x51\x30\xaf\xf6\xc5\xed\xd0\x1b\x71\xb1\x03\x23\x60\x82\x6d\x5b\x1a\xea\x02\xcd\x64\xfc\xd4\x6f\xbf\xfa\x57\xd0\x87\x46\x3a\x89\x61\x6b\xba\x7d\xea\x37\xae\xfe\xc5\xec\x44\x35\xc1\x3d\x3b\x26\xae\x2e\x75\x60\xe4\x8b\x71\x6d\x4b\x40\x05\xdf\x86\x84\x9b\xe2\x31\xc7\x56\x24\xdc\x3c\xc5\x61\xc7\x2f\x4e\x42\x89\xeb\x1e\x24\xdc\xf0\x66\x63\x2f\xa4\x1c\x05\xb4\x72\xe9\xba\x93\x86\xba\xd8\xa1\x11\x31\xc6\xb6\x35\x15\x55\x81\x66\x32\xb6\x0f\xf1\x38\xbc\x08\x8f\x7d\x02\x3c\xe2\xf8\x8e\xdd\xc4\x6a\xef\xf6\x3c\xc0\xe8\x8e\xbd\x82\x3b\xda\xc4\x76\x78\x51\xd4\xbd\x46\xec\x49\x93\xbf\x7a\x51\xf4\x1b\x62\x2e\xd5\x87\xe8\xee\x8c\x6e\xf7\x6a\x73\x89\x19\xc5\x1c\x47\x5d\x2f\x24\x21\xeb\x46\xd7\x0b\x63\xf6\xcd\x86\x11\xf3\x7f\x7f\xe3\x23\x8e\x66\xc1\x0a\x2d\xf0\x59\x74\xbd\x38\xfd\xb8\x22\xdf\x7a\x4b\xc4\x22\xcc\xdd\x5f\x3f\xfc\xd8\x9d\x80\xef\xa2\xeb\x45\xe7\x3a\xc0\x37\x3f\x84\x1f\x5d\xc3\xee\xd8\x9d\x9e\xd3\xe9\xd9\x46\xe7\xe3\x8a\xd0\xc8\x35\x96\x9c\xaf\x67\x67\x67\x37\x37\x37\xf0\xa6\x0f\x43\xb6\x38\xeb\xd9\xb6\x2d\x2a\x33\xbe\xff\x6e\xd1\x99\x07\x84\x74\xd9\x86\x60\xd7\xa0\x21\xfd\x84\x59\x68\x74\x22\xce\xc2\x2b\xec\x1a\xff\xa3\xd7\xff\xf1\xc7\x1f\x0d\x09\x23\x5f\x63\xe3\xfb\xef\xd6\x88\x2f\x3b\xbe\x6b\xfc\xe4\xd8\xb0\xe7\x74\x1c\x68\xdb\x3d\xe4\xc0\xde\x40\x7c\x17\x9f\xa2\x0b\x76\x17\x0e\xc6\x3d\xe8\xf4\xde\xf4\x61\x6f\xda\x19\xc0\x9e\xed\x08\xa0\xde\xb0\xa3\x3e\x35\xd0\x68\x34\x86\x93\x3e\xe9\x3a\x70\x38\x75\x3a\x23\x38\xed\xc9\xba\x1c\x09\xe6\x68\xb0\x0e\xec\xf5\x27\xa2\xa1\xfe\x90\x0c\xe0\x60\xd4\xef\x0c\xe1\x70\xe8\xc1\x5e\x7f\x00\x7b\x53\x38\x9c\xc2\xc1\x08\x4e\x47\xe2\x15\x19\x43\x67\x38\xed\x8a\x3e\x79\xb0\x3f\x16\x15\xc0\x71\xbf\x0b\x9d\xd1\x44\x40\x74\xe1\x60\x38\x95\x75\xf4\xba\x49\x1d\x5d\xd8\x9b\xf6\x60\xbf\xd7\xeb\xc2\xd1\xb8\x2f\xda\xea\x8a\xb6\x46\xaa\x57\xfd\xae\xe8\x55\x5d\xe7\xbb\xb2\xf7\x23\x38\x18\x76\xfb\xd0\x9e\x48\x3a\xf4\x3a\xea\x53\x43\x0d\xa7\x93\x2e\x74\x7a\x9f\x62\x32\xfe\x8f\x5e\xbf\xdf\x1b\xbd\x78\x35\x34\xce\x0a\xc4\x1c\x0f\x3b\x7d\xd8\x1f\x8e\xbd\x2e\xec\x39\x7d\x51\xb6\x3f\x19\x41\x67\xda\x53\x5f\x06\xbd\xe9\x35\x74\x1c\x0f\xda\xf6\x10\x3a\xfd\x91\xa0\x07\xec\x0d\xa0\x3d\xec\xc1\xfe\x68\x0c\xed\x7e\x1f\xf6\xc6\xd0\x1e\xc1\xc1\xb4\x07\xed\x41\x1f\x8e\x11\x1c\xf4\x1c\xf1\x4f\x76\xc6\x11\xfd\x18\xc2\x1e\xe9\x42\xdb\x81\xce\xa8\x8f\x06\x70\x3a\x1a\x76\xd4\xa7\xea\x6e\x1f\xf6\x44\xff\x87\x83\x49\x67\x04\x07\x63\xf5\x11\x17\xee\x4f\xba\xd0\x9e\x4e\xbd\x2e\xb4\xc7\xd0\x96\x4f\xa6\xd0\xee\x77\x61\xaf\xdf\x85\xb6\x20\xa0\x33\x16\x1f\xce\xb8\x0b\xfb\xe2\xf1\x78\xdc\x85\xc3\x9e\xe0\x85\x2e\xb4\x27\xe2\x63\x2a\x06\x63\xd8\x85\xce\xc4\xe9\xc2\xde\x50\x10\x7f\xfc\x66\x08\x07\x9d\x21\x9c\x0e\x06\x48\x8c\xe4\x60\x14\x93\xae\x37\x9a\x76\xa1\x63\x3b\xb0\x3f\xee\x89\x7f\xf1\xf3\xbe\x3d\x16\x04\xf0\x44\x07\xfa\xd0\x19\xc9\x8a\xe1\xa0\xd7\x83\xf6\x74\x00\x87\x63\x02\x6d\x7b\x04\x6d\x5b\x0c\x09\xb4\x47\x43\x0f\x3a\x8e\xf8\xda\x73\xa0\xd3\x13\x43\x0d\x9d\xc9\x18\xf6\xfa\x0e\x74\x06\x3d\x59\xae\x37\x82\xc3\xf1\x00\x0e\x44\x91\x11\xb4\x47\x7d\x81\xa1\x33\x1e\x42\x7b\x3c\x81\xbd\x5e\x9f\x40\xa7\xd7\x87\x8e\x23\x28\x36\x95\x14\x9b\x26\x6c\x30\x9e\x8c\x3b\x7d\x38\x10\x8c\x00\x9d\x91\xa0\xbc\x18\x41\x7b\xd0\x83\xf6\x50\x60\x6a\xf7\xa1\x33\x10\xc4\x1a\x8d\x54\x5f\x9d\xa9\xe8\x55\xbf\xab\x7a\x3c\x19\x75\xe1\x68\xda\x83\x8e\x33\x10\xe3\x33\x92\x84\xed\x89\xe1\xb5\x07\x5d\xd8\x1f\x4b\x02\x8b\x7e\xd9\x43\x4d\xf7\x91\xaa\xd4\xee\x89\x16\x25\x96\xa2\x88\x42\xb9\x27\x98\xa7\x37\x51\x4d\xf7\xc7\x03\xd8\x13\x5c\xdf\xef\x8d\xe1\x60\x2c\x7a\x06\x7b\xf6\x48\x70\x49\xbf\xef\xc0\xc1\x74\x02\x7b\x93\xde\x52\x14\x15\x5c\x25\xda\xb1\x1d\xdd\x90\xac\x76\x22\xbf\x10\xe8\xc8\xe1\xf5\xa0\xd3\x17\xdf\xfa\x23\xd8\xeb\xc9\x11\x9d\xc0\xfe\x60\xa4\x46\xa1\x27\x1a\xb4\xa7\x3d\x38\x90\x28\x8e\x26\x62\x32\x69\x5c\x05\x8a\xb6\x24\xe8\x18\xda\x43\xc1\x62\x3d\x41\x58\x22\xc0\x44\xcd\x53\x34\x14\xd8\x74\xd4\xa7\x9a\xf3\x3d\xd8\xeb\x8d\x3a\x3d\x38\x9e\x10\x89\xb6\x33\x9a\x78\xd0\xee\x0d\xc5\x78\xca\x4a\x9c\xe1\x00\xda\x42\x02\x38\xa2\x8e\xf1\x10\x3a\xd3\x61\x17\xf6\xec\x3e\x14\x08\x0f\xe1\xa8\x37\x51\x05\x6d\xd1\xc3\x81\x18\xf3\x49\x57\xa2\xdf\xb7\xa7\xa2\xce\x21\x74\xec\x81\x27\x39\x1a\xf6\x9c\x9e\xe8\x88\x98\xc8\x62\x90\x86\x62\x02\x40\x67\xea\x28\x8c\x24\x61\x86\x70\xd8\xef\x89\x99\x39\x11\x04\x73\xae\x25\xb1\x3c\x68\x0b\x6e\x16\xc4\xea\x8f\xd4\xf0\x0c\xe4\x24\xd1\x23\x20\xc7\x73\x2c\x67\x88\x60\x1f\x47\xf4\x6c\x00\x1d\x5b\x54\x34\xd4\xb2\x6a\xd8\x1b\xc1\xbe\xe0\x01\x81\x8f\x28\x3c\x18\x49\x82\x8f\x04\x6b\x8b\x4a\x27\x44\x4d\x1e\x67\x38\x15\xfc\x37\x19\x77\xd4\xa7\x22\x54\x1f\x0e\x05\xd3\x39\x02\x48\x70\x9a\x20\xd3\x68\x04\x6d\xc1\xec\xfd\x09\xb4\x05\xb7\x4f\xc7\xd0\xe9\x41\x47\xa0\x3c\x9e\xca\x61\xe8\x4f\x1d\xd8\x1b\x0d\xe1\x68\x20\x40\x26\xd0\xe9\x39\xd0\x1e\x8e\x61\xaf\x37\x85\x8e\xd3\x93\xdd\xb4\x9d\x9e\x18\x1c\x29\x58\xec\xd1\x54\xa0\x26\x89\xe5\xd8\x3d\x21\xa0\x60\x7f\xe0\xc0\xbe\xe3\xc0\xa1\x18\x7e\x67\x0a\x9d\xa9\xe2\x00\xc5\x72\x7d\x31\x66\x83\x2e\x1c\x0e\x14\xb5\xbb\x31\xb9\x47\x92\xcf\x05\xd7\x8c\xc4\x78\x08\x52\xd8\x63\x39\xa9\xc5\x38\x8d\x94\x34\xe9\x09\x2e\x1a\x88\x1a\xfb\x03\x21\x98\x1d\x39\x09\x44\x29\xc5\x9f\x8e\x98\xa2\x7d\xc9\xeb\x5d\x3d\x06\x42\xea\xd8\x42\xd2\x48\x3a\xdb\x23\x01\x35\x1c\xd5\xb0\xd6\xb0\xdb\x83\x92\x01\x87\xd0\xee\x7b\xd0\x1e\x8a\x6a\xfa\x12\x77\xc5\xd8\x3d\x47\x92\x5e\x32\x8c\xe0\x29\x67\x22\x38\x49\x6a\x08\xc1\xd3\x82\x34\x83\xa1\xd0\x51\x72\xb0\xfb\x83\xb1\x9c\x05\xb6\x98\x7a\x52\xe8\x4c\x44\xaf\x44\x6f\x7b\x3d\x22\x99\xdf\xb6\x7b\x7a\x8e\x3a\x9e\x24\xb3\x3d\x14\x6a\x03\xda\x63\x21\xb0\x05\x6b\x4e\x7a\xaa\xff\x3d\xc9\xb1\x02\xfd\xa1\x9c\xba\x42\x7e\x0a\xd9\xa2\x78\x74\x2c\xc5\xde\x40\x7c\x15\xfc\x2e\x99\x53\xd2\x49\xa0\x2f\x85\xae\x84\xea\xc2\xc1\x74\xa0\xe8\x3e\x9a\x4a\xa1\x2c\x00\x27\x72\xfe\x2a\xc9\x2d\x46\x41\xa8\x26\x35\x5f\x65\x0b\xc3\x91\x64\x3f\x29\xe5\x24\x97\x4d\xc7\xb1\x94\x9b\xd8\x83\x6e\x1f\x0e\xc6\x03\x02\x1d\xd1\x94\xd3\x13\x64\x13\x3d\x95\xac\x21\xb5\x81\x10\x79\x92\xd9\x05\xb1\x86\xf2\x89\xe0\x12\x39\x9c\x8e\x10\xb0\x5d\x38\xb0\x07\x50\x0d\x8f\x98\xb9\x5d\x49\x53\x39\xac\x93\xb1\x42\xc8\x76\x04\xf5\xe4\x48\x6a\xc1\x31\x9a\x40\x67\x22\x06\x73\x30\x51\x72\x47\x4a\x69\x81\xdc\x70\x2c\x65\x4f\x57\xcd\x13\x89\xd1\xa4\x27\x1e\xcb\x29\x29\x49\x24\x6a\x15\x75\xf4\xf4\xc4\x9c\x08\xe9\x3e\x91\xbc\x08\xed\xa9\x12\x54\xce\x58\x50\x7f\x38\x94\xa4\x93\x7c\x2c\xf8\x77\x30\x81\x7d\x31\x85\x87\x3d\x38\x18\x3b\x4a\xc4\xd8\x03\xc1\xbb\x13\xc1\x4c\x53\xc1\xa7\xe2\xcb\x88\x48\xb6\x15\x35\x3e\x17\x92\x69\xda\x51\x9f\x8a\xd7\x1c\x1b\x8e\x3b\x43\xd8\xef\x4d\xd0\x14\xf6\x7b\xc3\x8e\xfa\xd4\x1a\xd5\x96\x5d\x18\x0b\xa1\x2d\x85\xae\xe8\xa2\xa4\x8e\x1c\x1c\xc1\x05\xd3\xbe\xe6\xec\x9e\xe0\x2a\xf1\x6e\xd0\x57\xdd\x10\x9a\x60\xa2\x25\x8c\xe4\x9a\xbe\x10\x8b\x5d\x61\x0a\x48\xb5\x20\x88\xeb\x78\x42\x8b\xca\xe1\x1a\x4b\x7d\x33\x95\xa6\x84\xfc\xf6\xe9\xa7\x29\x1c\x4f\x3b\x23\xd8\x1f\x3a\x92\xbb\x06\x9d\x9e\x1e\x02\x5b\x0c\xe8\x00\xc1\xfe\x00\xf6\x07\x71\x5f\x87\x42\x97\x24\x0a\xa7\xd7\x75\xe0\x68\xd4\x75\x84\x30\x79\xde\x87\xd3\xf1\xa8\xa3\x3e\x25\x74\x27\xad\xfa\xd3\x0a\x4e\x47\x93\x8e\x8d\x84\x3c\xe9\xc8\x0f\x05\xd2\x83\x7d\xa7\xdf\x71\xa0\xe3\x0c\x85\xa5\x35\x12\xc6\x95\x9c\xc2\x72\xf4\xed\x7e\xa9\x79\xc1\x45\x4b\xf9\xea\x8d\xa0\xea\x48\xd6\xff\x69\xd5\xed\xc3\xc9\x74\xd4\x71\xe0\x64\x4c\x1c\x38\x74\xc4\xd7\xfe\x50\x56\x24\x26\xdc\xa4\x50\x8f\xd3\x1f\xc0\xe1\x64\x48\x62\x5d\x27\x70\x98\x0e\x06\x70\x38\x72\x90\xc0\x60\xd8\x51\x9f\xaa\x93\x70\x38\x12\x92\x62\xe8\x8c\x3e\xad\x46\x70\xe2\x48\x5d\x2b\x50\xe9\x09\x23\xc0\xee\xa5\x70\x93\x5e\x47\xc0\x09\x54\xa6\xa2\xaf\xc3\x51\xbf\x1b\x2b\xe6\x8a\x3e\x74\x45\x27\xa4\x0e\x19\x88\x5e\xdb\xe3\xae\x13\x63\x33\x76\x84\x05\x36\x18\x2d\xe1\xa8\x47\x60\x7f\x32\x16\xb6\x85\xb2\xb5\x46\x82\x99\x87\x42\x4c\x0b\x1e\x16\xb3\x55\x99\x48\x42\x6d\x8c\xec\x9e\x00\xee\xc2\xc1\xa4\xf7\x69\xe5\xc0\xe9\xb4\x23\xa8\xda\x43\xb0\xdf\x9f\x8a\x7f\x71\x57\x05\x23\xd9\x43\x22\x07\x51\xb4\x2f\x86\xdd\x81\xfd\x81\x40\x7f\xd2\x91\x1f\xaa\x9f\x0e\x1c\xd9\x53\xc9\x14\xc2\x64\x1c\x0b\xb3\x78\x22\x78\x5f\x95\xcb\x0f\x50\x07\xf6\xa6\x82\xaf\xc6\x0a\x87\xbe\x98\x2c\x05\xbc\x3b\xb0\x6f\x4f\x94\x04\x11\xda\xd4\x16\xf2\x7e\x3c\x16\xb8\x4e\x46\x23\xd1\xf8\x54\xd8\x51\xb1\xc8\x51\xcd\x0f\xba\x62\x0c\xc5\xc0\x4e\xc5\x4c\x10\x98\x28\xfe\x1b\x8a\xaa\x87\xe2\x5f\x82\xd6\x48\x31\x8f\xc0\x7d\x34\xe9\xc3\x89\x33\x16\xa8\x4f\xc4\xbf\xa4\x03\x42\x0b\x8e\xa7\x42\x81\x4f\x08\x9c\x4e\x44\xe3\xe3\xf1\x50\x36\xee\x74\xd4\xa7\x6a\xbc\x07\x35\x0b\x11\x38\x1d\x4f\xbb\x02\x4c\x1a\x4a\x4e\x11\x6b\x61\x54\x38\x93\x4f\xf1\xa2\xa9\x2b\x4f\x8f\xbb\x06\xec\x0d\x33\x06\xbf\x58\x45\x9d\x7d\xff\xdd\xd9\xe2\xfb\xef\xc4\xc2\xeb\xfb\xff\xfd\x8d\xf5\x0d\x30\xba\x5d\x8e\x19\x43\xf3\x90\xad\x9e\x66\xe1\x27\x78\x7f\xb2\xcf\xc2\x4f\x2f\xea\xb2\x8b\x40\x7c\x8d\x69\xe8\xfb\xf1\x42\x2f\x41\x61\xf8\x62\xf0\xea\xd5\xd0\x90\x8b\x95\x21\x1c\x0a\x6a\x39\x62\x39\x36\x99\x08\x2b\x6d\xd2\x73\xae\x85\x31\x31\x78\x33\x84\x43\x7b\xda\x99\xc0\xf1\xb4\xf7\x29\x59\xe1\x24\xb5\x0c\xec\x81\xfd\x43\xcf\x88\x97\x3c\xd3\xbe\x23\x0c\xff\xb1\x2e\x2c\xab\x9b\x08\xcd\xdc\xeb\xff\x26\xea\xaf\xa8\x21\xdb\x0f\x21\xce\x3b\xb6\x2c\xdb\x93\x65\xc7\x1d\x55\x56\x7c\x7e\x52\xdd\x74\xa4\xb5\x98\xe9\x68\xff\xba\xab\x1a\xeb\xca\x12\xb2\xb5\x4f\x95\xa3\x43\xc3\x15\xf2\xff\xa4\x91\x29\x2e\xc9\xcb\x4b\xf0\x84\x22\xce\x8f\xd3\xe9\x68\xac\x69\xea\xc0\xe1\x48\x48\xde\xc9\xd8\xb9\xee\x89\x75\x1d\x11\x33\x68\x34\x10\xc2\x75\x2a\x84\xf6\x40\xa8\xe3\xc9\x74\x70\x3d\x86\x72\x26\x0e\x04\x93\x77\xc6\x62\x7a\x0f\xe0\x60\xfc\xdb\x00\x0e\x26\x4b\xa1\xd1\xaa\x88\xdf\x1b\xfe\xf0\x7c\xe2\xa8\xa6\xc6\x6a\xaa\xbe\x81\xbd\x41\x47\x14\x72\xc8\x50\x58\xb9\x1d\xb1\x74\x12\xcd\x09\x31\x3e\x1a\x0c\x85\x54\x1c\x0b\x79\xd6\x1f\x5e\x77\x7b\x70\x3a\x21\x62\x89\x30\x14\x3d\x99\xc8\x2e\x4e\xc6\x64\x00\xfb\x8e\x98\xe9\xfd\xa9\x34\xab\x1d\xa7\xb1\x69\xbb\xd7\x99\xc2\xe1\x40\x94\x1f\x8f\x04\x8a\xfd\x81\x6c\x64\x32\xf9\x4d\x58\xde\x04\x4e\x84\x61\x3d\x98\xbc\x81\x3d\x69\x2e\x0b\xd3\x41\x75\xf3\x7a\x02\xa7\xbd\x11\x19\x0b\x96\x15\x0f\x46\xe3\xeb\xae\x20\x45\x35\x0b\x68\x9f\xd0\xd3\xf0\xc0\xe4\xc9\x67\xa7\x20\xc6\x04\x8e\xa6\x7d\x69\x67\xd8\x63\x24\x64\xa9\x92\xa8\x3d\x29\x9f\xd4\xba\x50\x28\x95\xde\xa0\x93\x7f\xa9\x84\xa6\x2d\xf4\xf6\xb8\x37\xc8\x08\xab\xe9\xc8\x79\x39\x9c\xe6\xbd\x13\x3d\xd8\xef\x8f\x84\x56\x1f\x8f\x10\x9c\x0c\xfb\xe2\x9f\x6a\xa0\x63\x0b\xe1\x68\x8f\x33\x4f\xc5\x73\xbb\x23\x9f\xfe\xe4\x0c\xe1\xa8\x3f\x15\xdd\x1b\x0e\x4b\x45\xb5\xcd\x2e\x97\xcb\x8e\x72\x20\x88\xbf\xc2\xba\xb1\x9d\x31\x14\xc5\x07\x70\x32\xea\x77\x84\x29\x26\x4b\x0f\xc5\xbf\x58\x8d\x4e\x7b\x82\x8d\x7a\xe3\x69\xfe\x45\xc7\x81\xc3\xe1\x54\x18\x74\x62\xc1\x38\x90\x6b\xff\xde\x58\x2d\x3a\x6d\xa1\x09\xfb\x48\x0c\xbe\x64\x00\x5d\xd3\x68\xd0\x83\xa3\xa9\xf3\x93\x33\x86\xd3\xf1\x58\xf4\x76\x30\x1a\x23\x38\x19\x4c\xc5\x3f\x4d\x49\x07\x0a\x0d\xd3\x9b\x8e\x32\xcf\x25\x11\xa7\xc2\xe8\x1c\x4d\x7b\x1e\x1c\x88\x25\xc0\xb8\x0f\xc7\x82\xb1\x86\x70\x6c\x4f\xe1\x54\xa8\xaa\x5e\xcf\x11\xff\x62\x5b\xda\x76\xc4\xaa\x70\x24\x9a\xeb\x4d\x46\x02\xbb\xd1\xa4\x40\x1b\x61\xc7\x0b\xb5\x33\x9a\x0c\x0a\x94\x15\x2f\x3a\xf2\xc5\x4f\xce\x08\x8e\x84\x88\x13\xfa\xd6\x29\x56\x20\xd6\xf7\xbd\x2e\x9c\xf4\x26\x85\x0a\xe4\x0b\xf1\x5c\x94\x17\xc6\xa8\x18\xa2\x52\x71\x38\x19\xc8\x39\x3a\x2c\x36\x3f\x19\xc8\x89\x96\x55\x6f\x2f\x47\xbd\xf1\xa4\x9f\xe3\x98\x09\x9c\x0c\x7a\x1d\x67\x0c\x87\xfd\x81\xd7\x1d\xc0\xb1\xb0\x2a\xba\x13\x38\x9a\x8c\x85\xc1\x36\x1c\xea\xef\x13\x38\x72\x7a\x2f\xa0\x33\x14\xf6\x94\x33\x1a\x09\xab\x4a\xe8\x75\xa7\x23\x6b\x80\x7d\x07\x4d\xa4\x18\x51\x9f\xaa\x0f\x43\x4d\x83\xf1\x58\x98\x5b\xf6\x50\x9a\x7c\xe3\x1e\x1a\xc9\x65\xf1\x28\x5d\x1c\x77\xc7\xb0\x37\x15\x66\x86\xad\x64\x62\x4f\x7f\xda\xb1\x75\x2e\x16\xba\xa3\x4e\xa9\x5c\x27\x2d\x47\xd2\x06\x06\xa2\x2b\x62\xb8\x46\xda\xcc\xed\xa6\x1d\xf9\x54\x26\x47\x95\x1c\x2f\xca\x98\xed\x51\x72\xee\x2a\x9b\xba\x21\x39\x65\xc5\xcf\xf1\xb9\x7d\x71\xf1\x4c\xff\x9d\xe1\x73\xe7\x62\xbb\x3b\xf6\x92\xee\xf6\x69\xfb\x28\x5a\x62\xb6\x7f\xcc\x56\x5a\xee\xb0\x36\x05\x32\xf8\xb6\xad\x35\x2e\xd1\xb4\x3d\xe0\x63\x6f\xcf\xed\x3b\x51\xe2\xc0\xc8\x27\x70\x6c\x5d\x9f\xd7\x74\xc4\x38\xe9\x62\xdd\x8e\x4a\x32\x1d\x78\xe6\xc2\x11\xc3\x75\x5d\xc1\xff\xf7\xf7\x49\xe8\xb0\xf8\xf9\x4c\xcc\x86\x99\xf8\xf6\x90\x53\x79\xbf\x27\x19\x73\x1b\xce\xe4\xf1\x06\x2e\x08\xae\x5b\x6f\xaa\x09\xd8\x03\x1b\x7f\x81\x5d\xdb\xfa\x82\xeb\xc6\x29\xc3\xc2\xf5\xbe\x73\x46\x14\x39\x30\xa2\x49\x2c\xdb\x56\xc8\xc2\x75\x13\xd9\x14\x91\xd6\xe1\x0d\x66\x5d\x95\x99\xb3\x1b\x44\xdd\x05\x0b\x37\x95\xd4\xcc\x02\xb6\xaa\xe3\xb0\xc8\x2b\x31\x79\x2b\x10\x79\x2f\xf1\x78\x1d\xfd\x53\x51\xa2\x65\x1b\x35\xe5\x1f\x36\x08\x71\xa2\xd4\x47\x8e\x43\x52\xcd\xa1\x0f\xc5\xfb\x84\x1e\x0f\x1e\x8d\xb8\x8a\x07\x0c\x08\x67\x1b\x1c\x5b\x30\xc1\xbc\xbb\x66\x38\x92\x67\xe2\x1f\x3e\x36\x35\x35\x1e\xf6\x30\x7d\x60\x1b\x7d\x41\xce\xeb\xf9\xdb\x98\x46\x0f\x1c\xaf\x8a\xba\x1a\x07\x8e\x5e\xef\x91\xd0\xe0\x09\x72\xcb\x63\x7a\xed\xb2\xbf\x8f\x96\x1d\xc6\xd1\xb2\x4c\x26\x8a\xdc\xf1\xb1\x9e\x05\x88\xcb\xce\xed\x0b\x10\xb9\xec\xdc\xb9\x28\x27\xa1\x4b\x92\x41\x6f\x08\x39\x4e\x53\x50\x9c\x93\x8b\x67\xd9\x1f\x33\xd4\xb0\x84\x6a\xc8\xc2\x80\xff\x68\x9f\xc4\x04\xff\xb1\x41\x87\x76\xee\x40\xf5\xb9\xb5\x3c\x10\xd0\x8d\x33\xfe\x63\xa5\xa1\x52\x69\x24\x97\xf3\x93\x7c\xf5\x04\xfb\xb8\x87\xf1\xf1\xb1\xd9\xd0\xf8\xb8\x5e\x39\xfb\x90\x6b\xe5\x1c\x1e\xc1\x04\x86\xed\x49\xb6\x72\x9a\x88\xa6\xb2\x59\x76\x2f\xf7\xcd\xef\x91\x96\x3b\x2c\x12\xc6\x57\x03\xb6\xae\x34\x2e\xd0\x8e\x90\x0f\xa2\xe2\x41\x92\x70\x4f\x02\x36\x93\x8f\xfa\x0f\xe1\x42\x55\xea\xd0\x08\x48\xfd\xbd\x38\x50\x80\x37\x13\xf0\x23\xf6\xbb\x0b\x16\xf8\x5d\x82\x6e\xc3\x4d\xcd\x49\x0d\x42\xd4\x8d\x0e\x67\x0a\x28\x3a\x13\x25\x9e\xfe\x1e\xa2\xfa\x73\xed\xb1\xad\x91\xbf\x44\x4e\x98\x27\xf8\xdc\xb9\x68\x3a\xbe\x3e\x27\xc2\x32\xaa\x4c\x76\xb2\x8b\x4d\x74\xa9\x03\x63\x93\x18\xd7\xb6\x7c\xa2\xe0\x1b\x19\x85\x84\x61\xa5\x9c\xaa\x54\x93\x0a\xfa\xd0\x08\x27\x31\x6c\x4d\xb6\x30\x6c\x16\x4f\x21\x5b\x21\xde\xa5\x1b\x41\xa9\xdd\xf9\x3c\xd2\xd3\xda\x84\x88\xa5\x2f\xbf\x5d\x97\x9d\xff\xd9\xed\x8b\xdc\x55\x18\x85\x7b\x58\xf5\xf5\xcb\xdc\x7a\x88\xab\x36\x5f\x97\x4b\x1b\x66\x69\x3e\x93\x84\xa1\x71\xb5\x4c\x6a\x35\xd0\x46\x26\xf8\x6f\xcf\x51\x0a\xfc\xc0\x58\x4a\xe3\xd8\x96\xa7\x24\x78\x13\x53\x2d\xbc\xf6\x54\x13\xb0\x87\x45\x32\x89\x5d\xcb\xfa\x16\x5e\x33\xb1\x58\xb8\x59\xef\x6f\x21\x24\xc5\x0e\x8c\x78\xa2\xdb\x7b\xd8\x08\x1a\xbe\x91\x88\x95\x56\x41\xf5\x12\x7c\x71\x68\xde\xba\x45\xfb\xea\x16\x8d\xbe\xb6\x45\xf5\x39\xcd\x3a\x52\x1d\xda\xf6\xee\x62\x8f\xa3\x99\x8b\xe6\x63\x99\x4b\x14\x75\x29\xfe\xb8\xef\xe9\xe0\xa4\xd8\x61\x11\x6f\x89\xa2\x9f\x25\xb2\x2d\xeb\xd4\xf0\x6d\x88\xb8\x66\xf8\x3a\x08\x37\xfb\x9e\x6f\xcd\x15\x3d\x38\x62\xbe\x4d\x90\x6e\x4f\xd0\xb8\x4c\x23\x51\x19\x9e\x77\x79\x58\x45\x4f\xfd\xaa\x04\x7a\x60\xf4\x63\x78\xfe\x21\x6c\x4f\x3a\x09\xde\x48\x35\xbe\x22\xdd\x08\xcd\xf7\x8d\x76\x49\xcb\x1d\x18\x11\xf5\x2d\x56\xed\xc9\xa8\x0b\x34\x12\x72\xb3\x42\x74\xff\xa8\xa1\xa4\xd8\x81\x91\x31\xc1\xb6\x2d\x19\x75\x81\x46\x32\xde\xae\xc3\xf6\x49\x9e\x14\xf4\x81\x91\x4e\x61\xd8\x96\x6e\x02\xba\x89\x68\xc1\x6a\xd3\x3e\xcf\x93\x04\x3e\x2c\x92\x29\xfc\x5a\x56\x28\x80\x1b\x09\x46\xf7\x0d\x4c\x13\x25\x0e\x8c\x68\xb4\x7d\x60\x5a\x40\x1b\x03\xd3\x02\x79\x2f\x4f\xdd\xa5\x4f\xbb\x08\x17\x97\x3b\x34\xf2\x25\xf8\xb6\x26\xa2\x2e\xd1\xcc\x7d\xd7\xe1\xd5\xbe\xc9\x61\x74\xa1\x43\x23\xa2\xc2\xb4\x35\x05\x05\x78\x23\xf9\xa2\x6e\x6d\x9e\xfa\xea\x55\x5b\x52\xe2\xc0\xa8\xa7\xe2\x2b\xda\x93\x4f\xc1\xb7\xa0\x9f\x47\x82\xf5\x65\x88\x98\xdf\x8d\x36\x6b\x41\xc1\xea\xf0\x2c\x61\xb7\x24\xa0\x4d\xe5\x0f\x8d\xb6\x2f\x62\x1c\xde\xa7\x24\x68\x4d\xe8\x72\xe1\x16\x54\xc7\xab\x35\xdf\x8f\x6b\x55\x89\xaf\x91\xb2\x8d\xb8\xaa\x10\x89\x7d\x70\x3d\xc0\x40\x90\x20\x7a\xb5\x57\x28\x88\x86\x6f\x41\x3f\xb1\x7a\x7b\xd2\xb4\x3a\x95\xfb\x01\xfa\xde\xd0\x3b\x16\x6e\x38\x66\xfa\xc6\xcd\x80\xca\xca\xf5\x95\xa9\xa6\xa1\x5e\x1a\x16\xd0\x99\xbb\x72\xd7\xe2\xcb\x24\x3d\x71\x82\x6a\x2e\x2f\x4c\x96\x97\x49\x26\xa5\x2c\x21\x96\x3c\x1e\x5c\xe3\xf8\xde\xd1\x1c\x26\x5f\xf0\xa6\x7b\x6c\x59\x5b\x10\xd2\x5f\xdf\xbd\x79\xa1\xae\xf7\x57\xe8\x86\x97\x02\x53\xcc\xe2\x2e\x43\x95\x82\x98\xff\xfa\xee\x4d\xee\xa6\x51\x89\x1a\xc3\x9a\x08\x66\xfd\xd5\xb3\xf1\x28\xfe\x27\xac\xbe\x11\x64\x87\x92\x97\x45\x0e\x6b\x0a\x28\x2c\x5b\x56\x28\x80\x9b\x98\x9f\xa0\x68\xc7\xf1\x87\x07\x70\xbe\xa8\x30\x49\x27\xf5\x77\x70\xe3\xa1\x04\x37\x26\xe2\x85\xba\x3c\xc9\x8d\x5f\xba\xbf\xfe\x28\xba\x09\x04\x72\xc7\xb6\x75\xe7\xa1\x08\x1b\xca\xcf\x62\xb8\x2e\xbf\x5d\xe3\x70\xde\x61\x33\xdd\x61\x16\xdf\xd8\xdf\x75\xac\xed\xe3\x8e\x88\x11\x3c\xe7\x5d\xce\x82\xd5\xee\xfd\xe1\x14\xec\xef\x4b\x1f\xfe\xef\x60\xde\x87\x5c\xfa\x90\x8d\xda\x4d\x98\x9b\x08\xe6\x26\x00\xa9\x38\xde\x30\x7d\x81\xc4\x0b\x54\x79\x23\x44\x04\xc2\x26\x95\x44\xc2\x45\xb7\x72\xe1\x59\xe9\x29\x52\xd0\x87\xa5\x8e\x48\xb8\x78\xd5\xba\x42\x01\xdc\xa8\x8e\xc2\x85\x63\xef\x43\x32\xc7\x3e\x3c\x92\x09\x0c\xdb\xd3\xcc\xb1\xdb\x10\xad\x7d\x3c\xb3\x82\x3e\x3c\xa2\xb5\x8f\x69\x96\xd0\x2d\x88\xd6\x3e\x57\xb5\x04\x3e\x38\x92\xb5\xcf\x54\x2d\x80\x9b\x09\x76\x83\x99\x54\xfa\xfb\xed\xb9\xa4\xe5\x0e\x8d\x80\x09\xbe\xad\xa9\xa8\x4b\x34\x92\x72\x8f\x70\x11\x72\x68\xae\xdc\x3d\xaa\x6b\xf6\x6d\x90\x7d\xc2\x45\xc8\xc1\x85\x8b\x90\x3d\xc2\x45\x48\x73\xb8\xc8\x0a\x3d\x20\x92\x4b\x17\x3a\x2c\xc2\xad\xd0\x3e\x51\x5c\x12\xba\x05\xf1\xf6\xa7\xdc\xe1\x91\x6d\x1f\xa2\x35\x93\xec\x63\x6b\x15\x2a\x60\x0f\x8d\x58\x1f\xf7\x20\xd6\xc7\x46\x62\xed\x71\x63\xed\xea\xe0\x1c\x53\xab\x3d\xfc\x52\xab\x66\xb7\xd4\xea\x81\xa7\x2e\xd2\x72\x5f\xc5\xd9\x8b\xa6\x15\xe2\x2a\x6c\x1f\xa9\x2c\x60\x0f\x8c\x27\xc2\xf6\x9b\x3c\xab\xb0\x71\x4f\x67\xb5\xa9\xb6\x9b\xaa\xa9\xb5\x39\x38\xc3\x69\xb5\x4f\x85\xab\x16\x1b\x43\x0f\x88\x1c\x3d\xc0\xa8\x51\xba\x4f\xc8\x28\x6d\x11\x2f\x4a\x43\xde\xdd\xe7\x4c\xb5\x82\x3f\xbc\xed\x34\x1a\xf2\x57\x7f\xb4\xa7\x9c\x80\x6e\x41\xba\xbd\xe8\x76\x78\x14\xdb\x87\x5e\x4d\xd4\x0a\x65\x3b\x5d\xb4\xef\x24\x4d\xcb\x1d\x16\xf9\x54\xbf\x9f\xb7\xaf\x34\x2e\xd0\x48\xc8\xb5\x28\x59\xbd\x03\xbe\x8b\x8e\x71\xb1\x03\x23\x63\x82\x6d\x5b\x32\xea\x02\x8d\x64\xac\x3c\xbe\x58\x3d\x79\x0f\xee\xf0\xe2\x1e\x27\x17\xf5\xb1\xc5\x1d\xe1\x79\x6b\xcc\x3c\x4c\x39\x5a\x60\x61\x84\x6e\x56\x34\xda\xcf\x4c\x2d\x97\xff\x2a\xcc\x55\x79\x54\x18\xe0\xf3\x5e\xa3\xe1\xba\xc6\x6c\x1e\xb2\x55\xdb\x6b\x85\x63\xf0\xaf\x91\x65\x76\xe3\x19\xac\x71\x17\xc9\xd2\x7b\x0a\x97\x6c\xc9\x83\x44\xfb\x01\xf8\x7e\x95\x88\xd6\xd7\xa9\xb0\x6c\x59\xa1\x00\x6e\x24\x1b\xd9\x30\x54\x77\x01\x75\x40\xe7\x42\x0c\x84\xec\x8c\x04\x97\x15\x45\x9e\x50\x00\xa4\xe8\xef\xec\x6d\x48\x02\xef\xf6\xcc\x47\x1c\x09\x61\x84\x59\xd4\x36\x0f\xa6\x0a\xee\x40\x6c\xb1\x59\x61\xca\x23\xbd\x8f\xfc\xbd\x73\x72\x92\x64\x8a\x4d\x5e\x9e\x3b\x17\xcf\xb2\x3f\x66\x77\x5b\x40\xb5\x88\x5a\x60\x2d\x77\x8c\x97\x99\x4e\x58\x47\xb9\x88\xa2\x78\x77\x9d\x5a\x27\x27\xa2\xe6\x78\xdb\xfa\xd9\xce\x3a\x66\xe7\x1c\x2e\x48\x78\x89\xc8\xfd\xbd\xf1\x9c\x10\xe3\x41\x49\x39\x33\xb4\x79\x6c\x5e\x4e\x4d\xed\x20\xea\xae\x10\x45\x0b\xbc\x2a\x24\x82\x7b\x74\xe0\x4d\x10\xfd\x94\x54\x9c\x04\xe0\x18\xb6\xfe\xaf\x5b\xf1\xa1\xff\x73\x8c\xea\xac\xbf\x45\xfa\xbe\x7e\x69\x58\xae\xeb\xf2\xc7\x45\x73\xac\xc3\x9b\xd6\x8b\x78\x01\x7b\x60\x22\x45\x60\xd7\x56\xa2\x84\x37\x8d\x02\xe5\x61\xc7\x16\x0f\xf4\xc8\xe2\x7a\xdf\xf3\x8a\xeb\x96\x87\x15\xff\xd8\xe0\xcd\xbe\xfa\x4c\x95\x39\x2c\x02\x6a\x3c\x5b\xd6\x28\xa1\x9b\x48\xc7\x10\xf5\xc3\x4a\x3b\xaf\x72\xc6\x6a\xf0\xc3\x22\x5b\x8c\x63\xcb\x2a\x15\x78\x0b\xc2\x2d\xf6\xe5\x39\x55\xe6\xe0\x88\xb7\x68\xcf\x73\x12\xba\x91\x74\xd8\xdf\x78\x7b\xd3\x4e\x15\x3a\x30\xe2\x69\x4c\xdb\x52\x4f\x82\x37\x93\x4f\xba\x87\xf6\xde\x08\x4e\xcb\x1d\x1a\x11\xc5\x8b\x3d\xb6\x83\xe3\x02\xcd\x84\x5c\xe3\xbd\x9d\x73\xba\xd0\xa1\x91\x50\x61\xda\x9a\x80\x02\xbc\x99\x7c\xd7\x98\xd5\x84\x0b\xed\xa2\x9f\x2a\x75\x68\x04\xd4\xb8\xb6\xa6\xa0\x84\x6f\x24\x61\xb0\x58\xb6\x89\x7d\xce\xc0\xfd\x1d\xfc\xfc\x77\xf0\xf3\xd7\x10\xfc\xbc\x5f\xf2\xb2\x43\xcc\x5d\xb6\x5f\xea\xb2\x56\x99\xcb\xf4\x29\xb0\x33\xfc\x91\x63\x46\x11\xe9\x46\xe1\x86\xe5\x4d\xa1\x7a\xbf\x4c\x3a\x89\x8a\x2b\xf7\x57\xba\xba\xf7\xb2\xb6\x08\xce\x03\x16\x71\x85\x97\x61\x1d\xd1\xfb\x7b\xb3\x5c\xe6\x27\xcc\x11\x2c\xf6\xc3\x52\xe2\x21\x73\x2e\x44\x2e\xc2\xe6\xc1\x47\xc1\x2b\xf1\x77\x31\xff\xa9\x9e\xe4\x86\x71\xca\x4e\xe9\x43\x7c\x2f\x9a\x16\xf9\xbe\x3f\xd6\x0b\x13\x2d\x37\xf3\x39\xd9\x57\x27\xc5\xa5\x0e\x8b\x3f\x13\x5c\x5b\xd6\xa9\xe1\x1b\x79\x34\x58\xb4\x0f\x64\x92\xc0\x07\x46\x36\x89\x5f\x5b\x9a\x05\x8b\xc6\x58\xa6\x68\x8f\xc0\xaf\xe8\xe0\x02\xbf\xa2\x3d\x02\xbf\xa2\xe6\xc0\xaf\x28\xa0\x8b\x0d\x41\x75\x37\x82\x55\x3b\xd1\xb3\x85\xbe\xb8\x1b\x3d\x22\xc1\xde\x8b\x55\x55\xe6\xc0\x06\x5a\xe1\xd9\x76\xa8\x05\x74\xe3\x60\x93\xcd\x22\x98\xdf\x3e\xa9\x1b\x5c\xd7\xf9\xf7\x11\xd4\x43\x31\x64\xf3\x7b\x0f\x85\x23\xa8\xb1\xf5\x59\x38\x87\x6a\x89\x25\x28\x41\x1e\x36\xcf\x3a\x67\x0b\x60\x74\x0d\x4b\x66\xe5\xbd\xc1\xec\x05\x8a\xb0\x69\x3d\x6e\x8f\x22\x0a\xd9\x03\xfc\x27\x71\xa9\x03\x9b\xd6\x21\xdb\xc7\x77\xa2\xc0\x1b\x27\xf6\x9a\x04\x4f\xbb\xbb\x25\x6b\xfc\x7b\x52\x1f\xfa\xa4\xee\x59\x80\xb9\x54\x2c\x30\x48\xba\x86\x60\xcf\xce\x2f\x66\x0c\x44\x2e\x2d\x5f\xa3\x03\x32\xf7\xe8\x10\xc5\x05\x26\x7a\xec\xf4\xfe\x83\xb5\x0f\x24\x96\xc0\x07\x36\xa5\x25\x7e\x6d\x27\xf4\x1f\xac\xd1\x93\x17\x6d\x2e\xdb\xd3\x6b\x73\x79\x68\xe4\x12\xd8\xb5\xa5\xd6\xe6\xb2\x89\x58\x1c\xed\x9d\x6d\x4c\x16\x39\x2c\xa2\x29\x2c\x5b\x56\x28\x80\x9b\x42\xea\x38\x6a\xbf\x4a\x12\xb0\x87\x46\xae\xf6\xab\x24\x8e\x1a\x57\x49\x1c\xd1\xe5\x3e\xd4\x5a\x1e\x1e\xb9\x96\xfb\xd0\x6b\xd9\x4c\xb0\xe8\xaa\x6d\xb0\xa2\x84\xfd\x1a\xe9\xb5\x1b\xc3\x80\x13\xbc\x7f\x46\xdc\xa4\xd8\xd7\x88\xf0\x0e\x06\x49\xb0\x6d\xcb\x24\xba\x40\x23\x19\xc3\xc5\x82\x3c\x30\xe4\x33\x5f\xf6\x6b\x24\x68\x0b\xd4\x1f\x84\xf3\x57\x89\xec\x0e\xee\xd1\x98\xb6\xe5\x1d\x09\xde\x4c\xbe\x2b\x4c\x65\xf2\x4b\x1a\xd2\xdb\x55\x21\x6a\xeb\x09\xc2\xfb\x9e\xc7\xf5\xee\x15\xdd\xd7\x6b\x19\xdd\xf7\xdc\xf3\x70\x14\x85\xec\x69\xa2\xfc\x12\x62\x10\xbc\x40\xde\x0e\x0f\x4f\x55\x60\x29\x4e\x17\xfe\x99\x6e\x72\x60\xbc\x51\x95\x59\xf1\xc5\xeb\xc7\xae\x9b\x7b\xff\x6e\x43\x70\x64\x3c\xe8\x4e\x9f\x20\x52\x95\x3f\x76\x83\xa1\xbc\x57\xdb\x2c\x82\x9f\x62\xdb\xf6\x0b\x4f\x20\x89\x65\xdb\xe9\xc3\x82\xc6\x68\x29\xce\x36\xd5\x49\xa2\xab\x2d\x1a\x09\x7d\x68\x24\xdb\xec\x91\x22\x5a\x42\xb7\x22\x1a\xaa\xce\x90\xb1\x93\xdf\x74\xb1\x03\x24\x20\xda\x23\x61\x46\x5c\xa0\x89\x8c\x1b\xea\x63\x16\x79\x21\xdb\x97\x90\x99\x82\x87\x45\xca\x2c\xc6\x2d\xab\x4d\x8b\x34\x93\x73\x7f\xcb\x49\x95\x39\x34\x22\x4a\x3c\x5b\xd3\x2f\x08\x1b\x97\x75\x9b\xf5\xfa\x41\x29\x96\xd2\x72\x07\x46\xc2\x14\xdf\xb6\x64\x8c\x4b\x34\x91\xb2\xf2\x90\xc1\x0e\x12\x1e\xda\x41\x83\xf6\xc7\x0c\x1a\x0f\x19\xdc\x04\x7c\x59\x7b\x74\xb1\x76\xca\xc6\xa5\x0e\x8c\x6c\x31\xae\x6d\x89\xa7\xe0\x9b\x48\xf8\x71\x9f\xa3\xb3\x1f\x0f\xee\xec\xec\xc7\x3d\x0e\xcf\x7e\xac\xbf\xf4\x33\xa0\x01\x0f\xe4\x61\x37\x16\x9d\xa1\xf5\xba\x7b\x8d\x59\x54\xa7\x2c\x48\xd0\xcd\x80\x64\xcb\x76\xe7\xc8\xe3\x21\xbb\xcd\xc5\x41\x7a\x21\x9d\x07\x8b\x33\x4c\xaf\x03\x16\x52\x79\xb8\x2a\x4f\x63\x40\x1f\x18\x0b\x19\x07\x3b\x25\x3b\x16\x47\x34\x26\x1a\x7c\xfe\xf6\xed\xc9\x89\xc9\xdc\xdc\x13\x48\xd1\x0a\x03\x52\x78\xa8\x11\xc9\xc6\x17\xdc\x09\xc0\x99\xf1\x7c\xbd\xee\xfc\x16\x53\x22\xc5\x73\x96\x0f\xb9\x63\x80\x58\xdb\x66\xb2\xca\x19\x4b\x31\xe5\xdd\x35\x0b\xd7\xf2\x92\xd4\xca\xd3\x43\xe9\xdb\x16\xe5\x0f\x8b\x5b\x53\x7c\xf6\xb8\x0a\x23\x2e\xd2\x8a\x77\xbd\x90\x72\x14\x50\xcc\xba\x3e\xbe\xdc\x2c\xba\xc8\x47\xeb\x9a\x4b\xca\x19\x8e\x42\x72\x8d\xd9\x59\xfc\x25\x3a\xf3\x08\x8a\xa2\xc0\xab\xad\xe5\x09\x23\x58\x34\x87\xd5\xf6\x37\xc3\x6d\x19\xb2\x08\xae\xc7\xb9\x13\x9c\xf7\xf7\xe9\x2f\xfb\xe2\x08\x43\x86\x17\x41\xc4\x31\x33\xeb\xea\x9e\xad\x50\x40\x8d\x0c\x03\x8b\x35\xb6\x4c\x75\xdf\x54\xc4\x10\x7d\x8e\xd6\xc8\xc3\x06\x30\xd0\x7a\x4d\x02\x0f\x89\x8e\xa9\xd7\xd6\xb6\xc5\x24\x28\xf9\x76\x9b\x5c\xbf\x0d\xa5\xbf\x46\xfe\x6f\x4b\x05\x1f\x71\x54\x85\xbe\x78\x7e\x16\x61\xbe\x59\x77\x93\xf1\xc8\xbd\xfc\x0c\x7c\x98\xed\x51\x86\xf5\x72\xd3\xba\x09\x29\x89\x46\x37\xc3\x17\x5d\x75\xcc\xb7\x2e\x40\xbe\x51\x31\xe4\x2e\x8d\x6e\xc1\xfc\xc1\xdc\x3c\x76\x8e\xdd\x34\x3a\x0c\xaa\x66\x9f\xa7\x5d\xfa\xa7\xec\x91\xde\xf7\x16\x05\xe4\x8a\x4b\xe0\xe5\x1b\xc7\x71\xaa\xf4\x9b\x80\xfa\xe1\x8d\x45\x5d\xf5\xe5\x08\x93\x08\x77\x6a\x60\x15\x8a\x16\x75\xd5\x17\x09\x7b\x97\x87\x4d\x52\xb0\x47\x98\xcc\x75\x0c\xc3\x11\x75\xc5\xaf\xad\x54\x63\x80\x34\x77\xf9\x88\xb9\xa5\x94\xee\xe4\x19\xd1\x77\x37\xa8\xfb\xae\xa1\x92\x5f\xf3\x5b\x33\xad\x6e\x25\x47\xff\xad\x8c\xfe\xb5\x00\x3d\x67\x17\xf7\xf7\xa6\xf8\xe3\x62\x20\x84\x45\xb8\xc6\xd4\xbc\xbb\x09\x08\x79\x89\x23\xce\xc2\xdb\x2c\x73\xcb\xab\x1e\x7e\x8f\x36\x6b\xcc\xe2\x4b\x2b\x96\x41\x04\x12\xa2\x0b\x9e\x20\x98\xe3\x8e\xa8\x70\xbb\xb5\xac\xed\x83\x1c\x7c\x09\x17\xe5\x2e\xec\x8e\x39\xb3\x9e\xad\x32\x8c\x4a\x5b\x30\xe8\x9c\xa0\x68\xd9\x5d\xe1\x28\x42\x8b\xa2\xea\xdd\x8b\x2b\x1f\x87\x23\x3a\xca\x86\x82\xfb\x78\xcd\xb0\x87\x38\x06\x4c\x3f\x11\x43\xb8\xa0\xf7\xf7\xea\xd7\x0a\xb3\x85\x30\x59\x8c\xf3\xd4\xfa\x92\x88\x5c\x74\x7e\xdc\xc8\x60\x0f\x6d\xbe\x44\x9d\x70\xde\x29\xc0\x74\xc4\xb8\x76\x68\xd8\x21\x21\x5d\x60\xd6\x51\x62\xbe\xc3\x97\xb8\xa3\x63\xb8\x3b\x68\xc3\xc3\x15\xe2\x81\x87\x08\xb9\x85\x9d\xd7\x34\xe2\x18\xf9\xa0\x73\x1b\x6e\x3a\xd1\x32\xdc\x10\xbf\x83\x3f\x0a\xd2\x07\x9c\xdc\xc6\x15\x04\xbc\x13\x50\x1e\x0a\x20\xd6\x79\x17\x6e\x38\x06\x9d\x17\x21\xe5\x2c\x24\x04\xb3\x4e\xc8\x3a\x2f\x62\x63\xa5\x23\xec\xf4\xce\xff\xa9\xba\x51\xe5\xff\x40\x03\x44\xee\x1d\x0f\x56\x38\xdc\xf0\x59\x1f\xf7\x81\xba\x87\x05\xfb\x1f\xf4\x33\x1b\xac\x59\x10\xb2\x80\xdf\xce\x1c\xdb\x06\x11\x0f\xbc\xab\xdb\xd9\xb1\x03\xa2\x65\x78\xf3\x96\x85\x0b\x86\xa3\x48\xfc\x16\x33\x62\x66\x04\x74\x1e\x1a\xf2\x7b\x34\x3b\x37\xa2\x8d\x74\x9c\x1b\x40\x3f\x37\x6e\x10\xa3\x62\x02\x01\xc3\x47\x82\x1e\x42\x8b\x11\xcc\xb8\x01\x8c\x08\x7b\x21\xf5\x11\x13\x1a\x45\xf5\x32\x08\xe9\x8f\xd2\x9a\x0d\x64\x65\xf2\x4e\x14\xc5\x28\x1a\x4d\x03\x18\xd7\x01\xbe\x91\xcf\x34\xb2\xc6\x05\x58\x33\x7c\x8d\x29\x7f\xb9\x51\xec\x8a\x45\xef\xb6\xa9\x9f\x1f\xb5\x90\x63\x00\xb9\xe9\x04\xbe\xbf\xbf\xdb\x5a\x50\x8e\xe6\x4f\x8a\x73\x5f\xaa\x17\x11\x08\x5d\x13\xdd\xdf\x9f\x5f\x58\xb0\xdc\x63\x10\xb8\xcc\x8c\x00\xb2\xc0\xc6\x3d\x36\xc3\x93\x93\x30\xbe\x36\xa6\x68\x22\xcc\x83\xc5\xac\x38\x33\x02\x70\xa7\xa2\x86\x78\x80\x38\x16\x18\x64\x8d\x04\x3d\x7c\xa5\x52\x46\x55\x2f\x15\xc9\x2a\x1a\xb1\x00\x35\x09\xd8\x80\xbb\xc0\x9f\x19\x05\xbe\x4d\x67\x45\x37\x41\x4d\xaf\x2d\x02\xd1\xd2\x86\xf2\x80\xcc\x8c\x1e\xb4\xa1\x6d\x6c\x2d\x10\x54\x50\x00\xce\x43\xf6\x0a\x79\xcb\xf4\xc0\x0d\xb7\xee\x12\x24\x78\xbe\xb7\x91\x64\x81\x4a\xb4\xac\x6d\x36\xa6\x49\x0b\xa5\x12\xc1\x52\x49\x84\xda\x48\xa2\x52\x82\x9e\x14\x50\xbc\xd3\xbb\x34\x15\xcf\x55\xae\x8a\x8a\x05\x54\xc2\x61\x2c\x3d\x58\x24\x46\x5a\x9a\xb6\xef\xe4\x80\x33\x29\x3d\x33\xe3\x27\x7a\x61\x01\xe2\xde\xc9\xd6\x0a\xab\x1a\x0b\xa8\xb6\xc4\x63\x9a\x79\xbc\x3d\x62\x89\xda\x10\x35\xe4\x6e\x41\x8a\xc3\xc1\xce\xb1\x50\x07\x8f\x54\x06\x2c\xab\x0c\x32\x14\x66\x2d\x28\x1c\x5c\xdf\x76\xbd\xd0\xc7\xab\x80\xb1\xbc\x07\x60\xd7\x26\x57\x0d\xc1\x92\xf9\x3d\x2b\x54\x6b\x25\x94\x40\x9c\xb3\xe0\x72\xc3\xf1\x0f\x01\xf5\x03\xba\x10\x22\x43\xb0\x8a\x71\xf1\x68\x32\xf0\x1a\x32\xd4\xda\x64\x2a\xdc\xaf\xbb\xaf\xc5\x99\xc2\x77\x23\x1e\x32\xdc\xd5\x7c\xf2\x15\x59\x9b\xf5\x98\xb5\xb9\xf4\xfa\xa9\x2e\xbb\xae\x41\x27\xe9\x42\xd5\xd2\x4d\xdd\xf0\x55\x65\x14\xfe\x88\x22\xfe\x43\x18\x26\x81\xac\x49\x11\x1a\x4f\x63\xe3\xb9\xe1\xba\x2e\x85\x1c\xb1\x05\xe6\x90\xa3\xc5\xcf\x68\x85\x9f\xc5\x0f\x8a\x8d\x60\xe8\x91\x30\xc2\x11\x4f\xe2\x6a\xe3\x07\xa6\x81\x0c\xeb\x68\x1e\x32\x13\xbb\x18\xae\x11\xc3\x94\xbf\x22\x32\x2d\xcd\xb7\xf8\xe4\xc4\x78\x6e\x1c\xbb\x2e\x8e\x1b\xf8\xd6\x2a\x41\xc5\x5b\xbf\x78\x6b\xc6\xad\x5b\x47\xec\xe4\xa4\x90\xaf\x0c\x50\xc0\x2c\xb8\x42\xb7\x97\xf8\x5f\x88\xfa\x04\x0b\xa9\xe1\x87\x9e\xd4\x70\xf0\x32\xf4\x6f\x21\xf2\xfd\x57\x42\x4f\xbe\x11\x8a\x88\x4a\x55\x44\x02\xef\xca\x00\xd2\x0d\xd3\x60\x96\xea\x5e\xe4\x6b\x64\x78\x15\x5e\xe3\xda\x4a\x1b\x4d\x59\x21\xaf\x6a\x56\xb0\xab\xe0\x63\x40\xa3\x33\xe4\x11\xe9\x5b\xd5\x61\x24\xb5\x16\xa4\x06\x97\xa0\x97\x24\xf4\xae\x02\xba\x48\xca\x3c\x79\x32\xb9\x9f\x44\x6b\xd0\x63\x18\x71\x9c\x9a\x0d\xe0\x2e\xc2\x9c\x4b\x41\x54\x7d\x99\x5d\xfc\xda\xb0\x80\xee\xda\xec\x6e\x13\x55\xdc\x69\x27\xaf\xb2\xab\xd8\xf3\x17\xd4\x33\xe6\x18\xfb\x97\xc8\xbb\x32\x2c\x88\x3f\x62\x6f\xc3\xb1\x59\x1e\xa7\x5c\x20\x40\xda\x2e\x5c\x0b\xc3\x35\xe2\xa6\x56\x3f\x99\xb0\x07\x95\xd1\x68\x6b\x41\xbe\xc4\xb4\xa2\x46\x0e\x39\x43\x34\x0a\xc4\xd3\x0f\xa1\x69\xf8\x5e\x8c\x98\xd2\xd7\xc0\xd8\x44\xd8\xb0\xb6\xc0\x23\x21\xad\xc3\x09\xd0\xd4\x06\x7b\x3a\xfc\x18\x5e\x87\x86\x05\x65\xc3\x26\xde\x81\x01\x9a\x73\xcc\x5e\xca\xe5\x53\x72\x21\x20\x55\x9d\x97\x85\x95\x3f\x65\x17\x3f\x4a\xe6\xee\x86\x1b\x1e\x05\xfe\x8e\x83\xa8\x0f\x72\xad\x66\x02\xf9\xb1\x75\x67\x96\x62\xf8\x93\xd0\xf1\x63\xae\x05\xc1\xfd\xfd\x71\x32\x21\xb5\xdb\x22\x32\xe3\x97\x16\x60\x2e\x96\x67\x52\x63\x60\x5c\x01\xa4\x47\xe1\x98\x9e\x9c\x1c\x33\x1d\x07\x2f\x6c\x4f\xb3\x38\x2c\x58\x89\x23\xc3\x02\xd8\x3a\x39\x91\x53\x3b\xa4\x97\x64\x23\x6c\x9f\x6d\xe9\xfc\x75\x6e\x86\x48\x0d\xba\xdf\x1a\x57\x42\x2c\xa5\x20\x63\x2e\x87\x97\x01\xf5\x25\x8c\xbc\x45\xd1\x53\x57\x28\x66\x2a\x14\x4f\x45\x5f\xf2\xcf\xfc\xc0\x7f\x4d\x23\xcc\x62\x51\x5a\xf6\xea\xc9\x79\xd6\xdc\x1b\x85\x13\xdb\x50\x75\x5c\x41\xbe\xce\xd4\x95\x8c\x41\xad\x84\xc5\x31\x2e\x92\xd9\x32\x22\xb6\xa2\x67\x2d\x1c\x00\x71\x7b\xbb\xe4\x6f\x96\x82\x56\x5d\xb8\x71\xcc\xd5\x62\x9c\x84\xc4\xd4\x2b\xae\xcf\x76\xf5\x67\x9e\x2d\x2e\xf1\x3c\x64\xf8\xa7\xd0\xc7\x24\x4b\x80\x22\xe7\xe9\xe9\x1d\xa8\xf3\x17\x48\xde\x7f\x09\x7c\x2c\x44\xe8\x35\xe2\x15\xbe\xda\x7c\x05\x30\x5d\x3e\x02\x23\xe0\x78\x25\xf3\xd8\x19\xd6\x51\x4e\xf8\x05\xd1\xcf\xf8\xc6\xb0\x4e\x4e\x44\x97\xe5\xd0\xbc\xc3\x5e\xc8\x7c\xd3\x6a\x90\x08\x01\xe5\x98\x8a\xe6\x1f\xaf\xa7\xca\x99\x2c\x96\x9c\xaf\xcf\x22\x8e\x78\x29\x7b\xd9\x43\x36\x70\x5a\xeb\x31\x2c\x2c\xed\x17\xf2\xf1\xac\x24\x86\xf8\xc9\x09\x87\x12\x22\x4a\xbf\x9d\xdb\x17\xb1\xe9\x94\x79\x74\x14\xcc\xcd\x35\x62\x11\x7e\x4d\xb9\xc9\xa0\x42\xc4\x92\x86\xd5\xeb\x9f\x3f\xbc\x7a\xf7\xf3\xf3\x37\xbf\xbf\x7f\xf5\xee\xb7\x57\xef\x7e\x7f\xf5\xee\xdd\x2f\xef\x4e\x4e\xe4\x01\x18\xe8\x63\x8e\x02\x02\x03\xea\xe3\x8f\xbf\xcc\x4d\xc3\x8f\x57\xf6\x9d\x84\xda\x9d\x79\xb8\xa1\xfe\xcc\x88\x0f\x28\x19\xf8\x63\x10\xf1\xc8\xd8\x26\xe6\xd2\xee\x61\xbb\xba\x3e\x20\xbb\x42\xea\xad\x5f\xd7\x7e\x79\x3c\x8a\x19\x0e\x38\x30\xfe\x8d\x6f\x93\xa4\x91\xc6\x99\x34\x63\x9f\xc9\x79\x50\xd2\xdf\x57\xd7\x8a\xc4\x86\x35\xab\x05\x98\x87\xc4\xc7\x4c\x98\x73\x5b\x90\x51\x9f\x65\xd3\x30\x0f\x2f\xf4\x8e\xbc\xb3\x56\x08\x14\x69\x3a\xeb\x2b\x6c\xe7\x0c\x47\x4b\x53\x37\xb8\xd3\x36\x4c\x6d\xa4\x74\xe6\xbf\xc7\x51\x14\x84\xb4\xc6\xba\xc8\xce\x74\xea\x16\xc5\x48\xa4\xca\xbe\x93\xd2\xe4\x51\xc6\x07\xd5\x82\xb7\xca\xd6\x28\x49\x20\x25\x73\x12\x71\x13\x29\x71\xa3\x11\x31\x00\xdd\x10\x92\xb8\x74\x31\xd4\xcf\x41\x0a\xcc\x93\x9e\x6b\x60\x69\xae\xa8\x02\xcd\xf6\x8a\xce\xb3\x79\x38\xac\xbe\x1b\x1d\x15\x48\x7b\x38\xd8\xb4\x5f\x10\x08\x25\xf7\x24\xcb\x86\xcf\x6a\x62\xcf\x03\xea\xff\x70\xfb\x9e\x6c\x16\x66\x4e\x7b\x66\xc3\xa5\x81\xdc\x00\xc1\xe4\xc7\x90\x09\x21\x62\x58\xd0\xf7\xa0\x10\x01\xc5\xc9\x52\x15\x7d\xbd\x73\xb5\x72\x97\x36\x33\xab\x6f\xfe\x3d\xf6\x18\xe6\x45\x90\xf8\xa9\x98\x32\x0f\x59\x21\x64\x16\x38\x24\x5c\x84\x9b\x1a\x63\x12\xf0\x27\xa7\x3e\xce\x91\x44\x4d\x7c\xd3\x50\xce\xca\x5a\x4c\x70\x05\x26\x82\xd5\x25\x1e\x0a\x81\x03\x5d\xab\xd5\x62\xbc\xcf\x32\xae\xc6\xfe\xfa\x42\x76\xef\xef\x31\xd9\x6a\x26\x7c\x4a\x55\xb0\xf7\xca\xe9\xa8\xca\x04\x06\xc6\xef\x99\x3a\xb5\x7b\x21\xa3\x62\xf2\x63\x09\xee\xf4\x58\xa6\x0d\x53\xc0\x00\xc9\x30\x57\x3c\xd8\xf2\x39\xe0\x19\xc5\x2b\xcd\x65\x65\x29\x14\x0d\xc8\x74\x70\x05\x12\x19\x9b\xa6\xd6\x00\xa8\x32\x7b\xb2\xb3\x2d\x35\x2f\xf4\x59\x68\x03\xa6\xaa\x1d\xc3\x75\xb8\x36\xf5\x52\x32\x67\xda\x60\x79\x17\xbc\x04\xae\xb7\x6a\x9a\x5a\xd1\x77\x7f\xeb\x56\xf4\x05\xe0\xca\x9c\x9a\x65\xf1\x4c\x4c\x9e\x23\xcd\x12\xb9\xb7\xf5\xfd\xda\x82\x6a\x2b\x3c\xc3\xf0\x0a\xa2\x64\x17\x96\x20\x8a\xc8\xe5\x20\x12\x95\xe2\x21\xea\xe5\x17\x62\x7b\x0e\x97\x57\xee\xea\x17\x92\x26\xb1\x9e\x68\x94\x27\x8a\x9a\x25\xdf\x8f\x7c\x6a\x64\x8d\x02\x9a\x29\x99\x19\x07\xf9\x46\x94\xd9\x94\x89\xfe\xb5\xe1\x9a\x1f\xac\x18\x57\xd5\xf1\xdd\xb8\xaa\x92\x09\xae\x7e\x99\x7d\xbe\x10\xae\xf5\x66\x76\x1b\x97\x9e\xb6\x91\x77\xa2\xaa\x4a\xc6\xa8\xb6\xd1\x1a\xf3\x80\x70\x2c\x63\x42\x9e\xda\xfb\xa7\x8b\xc5\xb1\x08\xb9\x2d\x33\x9d\x4f\x83\xbb\xce\xb7\xfc\xbb\xe2\x55\x03\xdf\xf2\xd3\xd3\x78\x29\x98\x6e\x6a\xf3\x8b\xa3\xb8\x98\x4c\xe9\x41\x2d\xdd\xc0\x9a\x85\x3c\xe4\xb7\x6b\x0c\x97\x28\xfa\xe5\x86\xc6\x3d\x84\x1e\x22\x44\x88\x74\xeb\xe4\xc4\xc4\xe7\xec\xc2\xa5\xe7\xec\xc2\x4a\x57\xd4\xc5\x64\x98\xe9\x11\x35\x15\xe4\x49\x5d\xc3\x48\xe5\xa2\x68\x41\x8b\x45\x86\xfc\x20\x34\x66\xf2\x7b\x84\x11\xf3\x96\xfa\x07\xc7\x1f\xb9\x31\xa3\x2e\x56\xe9\x3e\xb6\x15\xc9\x46\xb2\x63\x26\xd0\xc0\xcf\xea\xc8\xcb\x63\x9a\x52\x90\x0f\x1f\x53\x9b\xe1\x9b\xe4\xf7\x0d\x0b\xb8\xfe\xbe\xb5\x66\xf8\x9c\x5f\xb8\x14\xe0\xad\x79\xb7\x95\xcd\x35\x79\x33\x15\x07\x44\xb3\xbb\x2d\x50\x5f\xb1\xaf\x15\xb9\x17\xae\xd6\x1b\x8e\x7d\x53\xae\xf9\xe4\xf6\xbc\x82\x35\x40\x9d\xb5\x58\x9a\x2b\xba\x40\xed\x0a\x55\xd5\x2c\x4c\x71\x01\x68\x66\xb7\xae\x12\xc5\xa7\xdf\x51\x65\xf0\x59\x20\xc2\x5c\xd3\x29\xc0\xd1\x23\xbd\xa0\x69\x4f\xfe\xd8\x60\x76\xfb\x16\x31\xa4\xfa\x53\xb1\xf5\x5f\xca\xbf\x98\xc5\x4f\x0f\xe3\x15\xbe\x8d\x4c\x5e\x5d\x3e\x35\x51\x28\xe0\x20\x5b\x0f\xb7\x04\x5e\xb9\x25\x75\x42\x6a\x35\xfd\x13\xbd\xa6\x9e\x97\xc4\x17\x53\x23\x40\x5c\x2a\x78\x55\x3b\xc3\xb3\x7d\x22\x15\x7d\xc2\xd9\x3e\x31\x80\x81\x61\x1c\xbb\xe4\x1c\x5f\x3c\x13\x1f\x33\xbd\x3e\x07\x25\xd3\x2a\xee\x1a\x97\x3c\x26\x28\x2d\xd0\x48\x89\x01\x88\xd5\x4e\xfa\x2c\x31\x22\x75\x42\xa8\x6e\xf9\x9b\x01\x2e\x39\x18\x37\x9e\xcc\x7e\xf9\x14\xd1\xe1\x6d\xd7\xc4\x19\xb6\x99\xdd\x29\x97\xe0\xec\x0e\x45\x33\x43\xfb\x39\xb7\x40\xff\x56\xfd\x36\xb6\x5b\xa0\xb0\xfe\x51\xcf\xbb\x9a\xb9\xd6\xe0\x06\x4e\x66\x0e\xe0\xee\xb9\x61\x00\x63\x2d\x04\xad\x24\x4a\x1a\xa3\xe4\xb1\x40\x86\x65\x19\x17\x70\x85\xd6\x25\x5e\x66\x6e\xc9\x1b\x6a\x48\x57\x97\x55\xb5\x6a\x53\xc2\xd9\x88\xe3\xe6\x8d\x17\x4b\xec\x5d\x45\xc6\x69\x3e\xb8\x83\x67\x0c\x56\x95\xd1\xdc\xcc\x2b\x2c\x51\x9a\x64\x90\x11\x02\x3a\x29\x72\x6a\x26\x67\x7f\xd3\xc8\x44\x05\x15\xb7\x57\x16\x15\x19\xfb\x0f\xbe\x97\x44\x97\x47\x9c\xad\x38\x5c\xe9\xfe\xde\xde\x02\xdb\xd2\xc9\x90\x14\xe8\x9d\x17\x6e\x28\x9f\x31\x40\xd0\x25\x26\x33\x8d\xf7\x33\x79\x99\xcc\xac\x88\x91\x75\x6a\x74\x4c\xe3\x94\xc9\x2c\x64\x1e\x22\x58\xc5\x4a\x9a\xd6\xa9\x61\x19\x40\xf1\x0c\xdf\x6e\x13\x34\xf8\xb9\x7d\x01\x65\xc5\xae\xa8\x50\x94\xd5\x39\xf3\x4c\xc7\xaa\xa0\x0a\x4f\x11\x38\x15\x8b\x8f\x0d\xe5\xa2\xc3\xd5\xcd\xf1\x6d\x5d\x72\xde\xec\x24\x61\x38\x0a\x3e\x3d\xa9\x56\x6f\x58\x04\xca\x06\x0b\x9b\x58\x37\x01\x9d\xa9\xf8\xd7\xd2\xc2\x6f\x2f\x49\x9d\xdb\x3d\x2b\x0b\xe4\x78\xf3\x4f\x86\xa5\x89\x5e\x98\x77\xca\xe3\x3e\xbb\xbb\x09\x7c\xbe\x9c\x51\x18\x50\x8a\xd9\x7f\x89\x1f\x60\x89\x83\xc5\x92\xc7\xcf\xfe\x25\x7f\xc9\x8d\xfb\x9d\xfb\x6b\xfb\xab\x93\x9b\x80\x1a\x56\xc5\x16\x9a\xea\x62\x7e\x43\x0b\x1c\x3b\x1a\x4b\x3f\xf0\x9f\xaf\xd7\x18\x31\xb9\x29\x14\xff\x28\xf5\x44\x97\x33\xef\x74\xfc\x46\x65\xe3\xcd\x7b\x73\xd5\x7d\xae\xdc\x86\xdb\xdd\xed\xa6\xa8\x88\x4a\x76\x0d\x7d\x4c\x64\x48\x44\x6d\x3c\x91\x04\xc9\x3f\x42\x9c\x17\x0f\x51\xc4\x52\x85\xa5\x31\x92\xe4\xcb\x9a\x5a\x0f\x98\x4b\xef\xdf\xfc\xfa\xcf\xdf\xff\xfd\xea\xbf\x5d\x0c\xdf\xbe\x7b\xfd\xd3\xf3\x77\xff\x2d\x7f\xe9\x43\x48\x02\x9d\xa8\xf0\xca\xd8\x04\xbe\x01\x90\x9b\x29\x6b\xbc\x7e\x69\x1c\x55\xa4\x34\x85\x2a\x08\xd6\x34\x89\xc9\xdc\xbb\x2d\x88\x40\x5e\xa4\xc5\x61\xe0\x96\x05\x88\xc9\x00\xda\xfd\xda\xf8\x19\xad\xb0\x51\x03\x03\xee\xf4\xa3\xdf\x24\x76\x86\xb1\x8d\x4b\x7d\xb8\x5d\xd7\x96\x8a\x61\x54\x4e\x87\x06\x20\xb5\x56\x7d\x2d\x7d\x11\x45\x50\xba\x11\xac\x91\x80\xfe\x14\xfa\xc1\xfc\xb6\x15\x68\x7a\xa1\xd8\x8e\xf6\x99\xb5\x93\x77\xbd\x30\x64\x7e\x40\x6b\x4e\xe9\xff\xcd\xc2\x6d\x58\xf8\xe7\xd0\xc7\x5f\x82\x89\x5f\x88\xb1\x2a\x0e\x75\xfc\xf2\x3d\x5e\xa8\x2b\xdb\x76\xd7\xf1\x14\x3c\xe3\x57\x66\xc2\xd8\xc9\x2b\xb9\x27\x0c\x13\x19\x53\x1a\x2d\x83\x75\x79\x17\x1d\x30\x6d\x61\xa5\x8c\x14\x1d\x12\x23\xfd\xf8\xcb\xbb\x57\xaf\xff\xf9\xf3\x6e\xb6\x42\x95\x6c\x15\xba\x66\xbe\x7c\x6e\xb8\x72\x2c\x27\xe4\x99\xb5\x93\xe7\x22\x93\x08\x9e\xdb\xc1\x54\x91\x49\x40\xb8\xfb\xb5\xf1\x3e\x8e\x28\x13\x70\x0c\x2e\x51\xf4\x13\xa2\xb7\x56\x12\x3f\x9d\x00\x8a\x49\x50\x86\xa2\x62\x6a\x58\x6a\x35\xb5\x83\xa3\x92\x20\x82\x07\x30\x56\x71\x01\x25\x21\xcf\xe2\xa1\xfd\x6b\xb0\xd7\xf3\x0f\x1f\xde\xbd\x77\xdb\xc8\xab\x3a\xc6\x2a\xa8\x5c\x10\x7c\x36\x8e\x79\x89\x23\x8f\x05\x6b\x35\x9a\x0d\xcc\x25\xef\x4c\xf8\xf9\x7d\x4b\xb8\x1d\x3a\x3c\xd3\x38\x17\xda\x2c\x08\xe9\xbe\xe0\x8d\xbd\x78\xcb\xb0\x87\x7d\x4c\xbd\x72\xb5\xa9\x62\xce\xf4\x77\x97\xf5\x50\xb4\x39\x14\x13\x4b\xcb\x43\xd6\xf0\xdc\xdb\x45\xbf\x62\x69\x1f\xd3\xdb\xb4\xac\x3e\x74\xf2\xdc\xf7\x77\xc9\xf8\x2c\xe8\xdb\x90\x95\x15\x47\x01\xa7\x9f\x30\x47\x15\xba\x47\x55\xd3\x46\xa9\x48\x48\x65\x08\xf9\xcf\xcb\xcd\x49\x27\x78\x0c\xa6\xfc\xdd\x8d\x60\xed\xcc\x2a\xd5\xfd\x76\x66\x95\x25\x64\xaa\x9a\x6d\x52\x92\x25\x40\x01\x38\x4f\x06\x25\xc7\x8f\x65\x96\xcb\x0d\x7f\x6e\x3a\x5c\x64\x25\x76\xb0\x4b\x20\x5e\x5d\x3f\x81\x24\x0c\xa2\x1f\x55\xec\xcf\x5f\x42\x06\x3e\x8d\xec\xfb\x37\xbe\xdd\x6d\xaa\x3d\x8d\x10\x7c\x13\x7a\x57\xad\xf8\xf2\x47\x82\x16\xe5\xe5\x43\x01\x48\x4e\xf3\x76\x53\xeb\x09\x27\x83\xd6\xff\x3a\xd2\xa9\x41\x90\xb4\x96\x00\x09\x53\x82\xa2\xd7\x50\x0c\x0d\x28\xed\x28\xe5\xa7\x61\x71\xb9\x2f\x43\xeb\xee\xef\x0d\xc3\xda\x36\x5b\x19\xd2\x18\x79\xfc\xb4\x8a\x36\xab\x5f\xe6\xbf\x52\xe5\x02\xbd\xad\x8a\x11\x45\xd1\xfb\xea\x08\x51\xb5\x69\x2f\xd7\x15\xd9\xd3\x90\x87\x3f\xf5\xc2\xca\xa9\x17\xec\xb5\xd2\x47\x66\x24\x66\xde\x8e\xa9\x85\xcc\x08\x04\xbb\x5f\x1b\x42\xed\xc9\xf3\xae\xbb\xc1\xe4\x9a\xad\x01\xa6\x46\xe5\xc9\x77\x39\xbb\xb8\xe2\xbd\x76\xf5\xd6\xbd\x6d\x35\x57\x55\x27\x5a\xcd\x55\x09\xfa\x01\x2d\x16\xd8\xd7\x04\xa8\xef\x5a\xab\xb9\xaa\x91\xac\x5c\x53\x26\x58\xd4\xac\x47\xe5\xcb\x74\x12\x80\xb2\x9b\xdb\xb4\x01\xa9\x9f\xd4\xb1\x9b\x1c\x60\x31\x9d\x65\x6d\x41\xf4\xaf\x78\xba\x15\xc5\x46\x4c\xe9\xf2\x5e\xb4\xed\xba\xee\x6e\xf1\x11\xb7\x24\xa5\x87\x6e\x28\x33\xb3\x5b\x37\xd5\xb2\x95\xef\x6d\x69\xa4\xed\x96\x52\xfa\x70\xeb\xdf\x0b\xa1\x43\x5f\x08\xed\xed\x73\x6c\xbb\x7c\xaa\x2f\xbc\xd3\x19\xb9\xa3\xcd\xd6\xda\x3b\x85\xac\x12\x2f\x19\x3b\xe4\x43\x50\x81\xfc\x9f\x69\xbc\xa7\xd6\x7a\x4a\xde\x98\x5e\x39\xb4\xda\x1b\xe9\xb1\x0b\xe4\x6f\xc7\xe9\x43\x1d\xa7\x62\x4c\xbe\x80\xe3\xf4\x43\x85\x8d\x9d\x9f\x0c\x25\x89\x7e\x2e\x33\xb9\xa8\xe2\xff\x0e\x68\x49\xcd\x15\x9b\x28\x5c\x61\x59\xe7\xa5\xad\x31\x29\xe4\xbb\x66\xcb\x45\x82\x35\x2c\xd6\x55\x6f\xa8\x18\xe6\x0f\x68\xf1\xcb\x35\x66\x2c\xa8\x30\x75\x2e\xc3\x90\x60\x44\x3f\xf3\x0e\x85\xd2\x7c\x6f\xe3\x7d\xfd\x6a\xbc\x15\xd0\x8b\x78\xa3\x7f\x27\xd4\x7f\xc5\x81\x01\xd5\x40\xa9\x13\xb2\xe2\x65\x2b\x29\x97\x54\x53\xef\x67\xd7\x93\x7e\x57\x37\xeb\xde\x26\x11\x0e\xd5\x96\x45\x42\xa8\x7a\x4b\xe3\x4e\x45\x04\xcc\xaa\x12\x8c\x67\x8c\x8d\xb8\x26\xeb\x59\xc3\xfb\xcc\xbe\x6b\x9d\xd9\xa2\xa3\x15\x7e\xb8\x35\x8d\xd8\xa2\x4b\x10\xb1\xd2\xa0\x8a\x74\xbe\xd4\x98\x7e\x2a\x32\xcd\x4e\xe2\xd1\x74\x28\x5a\x5c\xd5\xac\x1c\x7a\x55\xe8\xeb\xd1\x25\xc3\xe8\xea\x48\x96\x4a\xe2\x42\x6a\x8b\x25\x0c\x95\x2b\x17\x47\x96\xd4\x16\x8b\x39\x2c\x57\x4a\x80\x3b\x71\x2c\x1c\x17\x66\x5c\xd3\x1e\x49\x72\x42\xe8\x6f\xdd\x70\xa8\xfb\xc2\xbb\xa4\xc1\x97\xd9\xe0\x7d\x13\x7a\x57\x2f\x31\x41\xb7\x4d\x80\x3f\xe0\x25\xba\x0e\xc2\x46\xc1\xf6\xe1\xc3\x9b\x46\x4c\x2a\x05\xd8\x1e\xda\xf2\x29\x76\x18\x75\xe2\x9f\xbf\x97\x40\x9f\x7d\x09\x94\x39\xa8\xf5\x19\x97\x42\xc9\x59\xaf\x06\xb8\x86\x80\x8b\x47\x2c\xab\x9a\xc2\x34\x94\xd7\x56\x5f\x06\x52\x6f\x2b\x3d\x7e\x89\xd6\x7e\xad\x25\x23\xe7\x1a\x3b\xf3\x36\x24\x81\x17\x94\x71\x6b\x37\x63\x0f\x60\xc5\x16\xaf\xd1\xf4\x7e\x8a\xa6\x4a\x61\x21\x97\x52\x21\xc3\x6b\x59\xe6\x6e\xb1\xaa\x8b\x33\xe0\xee\x4a\x93\xfb\xe5\xae\x6f\x96\x47\x9c\xd8\x17\xcc\xcf\x98\x4b\xc8\x28\xd3\x19\xb2\x58\x0a\xdc\x91\x50\xe7\xb8\x4d\x05\x44\xfc\x48\x0c\x0b\x60\x61\xc8\x7f\x7d\xf7\x26\xf3\x5a\x3f\xd9\x5a\x47\x34\x1f\xb8\xab\xc3\xff\x24\x7a\xf2\x34\x2a\xb8\x5b\x23\xbe\x9c\x19\x67\x33\xdf\x33\xb6\xa0\x06\x30\xc9\x6c\x93\x80\x27\x4f\xea\xcb\x2c\xc3\x9b\x14\xfe\x1f\x32\x13\x99\x8c\xe4\xcb\x02\x51\xb5\x64\x88\xa1\xd4\xcf\x96\x55\xce\xaa\xab\x4c\xa2\x19\x32\xf5\x66\x9e\xd5\x56\x8e\xfd\x80\x67\x2a\x0f\x7c\xa3\x50\x71\x7c\x2c\x2a\x06\xd1\xbf\x4b\x1d\xb8\xba\x4e\x61\xae\xae\xeb\x1b\x8c\x53\x09\x24\x24\xba\xc2\xb7\xc5\x36\xf3\x9d\x12\x10\x67\xf2\x51\x43\xd7\x24\x60\xd2\xbf\x1c\xa8\x60\x8d\x6e\x5b\x54\x90\x47\x32\x54\x94\xbf\x3e\x03\xfd\x72\x50\xeb\x44\x96\xc4\x70\xc9\x93\xcf\x3f\x74\xd2\xf2\xc9\x34\xad\x7f\x7f\x96\x86\x2b\x18\x57\xca\xeb\x18\xb4\x58\x55\x72\xe8\x39\x33\x07\xf5\x93\xd2\xa4\xe2\x32\x1b\x48\x86\x1f\xc4\x5f\x85\x6e\x2a\x01\x69\xbd\xe4\x93\x09\xf8\xe3\x5c\xb7\x4f\x7e\xb0\x2b\xc9\xd7\x13\x7f\xd1\x91\xc5\x80\x56\x5c\xdd\xcc\x55\x46\xe1\x37\x41\x14\xe7\xf7\x31\xb5\x56\x20\x21\xf2\xa5\xc6\x2e\x1f\x50\x92\x02\x34\x91\x9f\x7b\x1f\x1a\xde\xee\x4a\x3f\xe0\x7b\xd9\xc4\x03\xba\x13\xd9\x34\x24\xb1\x59\xab\x0e\xd4\x44\x2e\xdd\x10\x22\xd3\x3c\xfb\x9e\x71\xec\xba\x2c\x3d\x3f\xab\x00\x91\x3a\x55\x9b\x4f\x12\x70\x7f\x7f\xe7\x7b\x91\x3c\x41\x03\x7c\x6f\x76\x27\xc0\xe5\xaf\xed\xf6\x28\x2a\x2d\x9e\xf5\xf9\xc0\x05\xe6\xcf\x3d\x1e\x5c\x63\x13\xc5\x49\x06\x80\xf8\x16\x25\x87\xd6\x34\x79\xde\xff\xf6\x16\x2e\x51\xb4\x34\x93\xfe\x1f\x67\xe9\x9c\xa4\xc5\x2a\x52\x5a\x74\x25\x2a\x9d\x39\x4f\x4e\x26\x25\x19\xa1\x0a\x81\xfa\xcc\x25\x99\x23\xd1\x12\xc7\x2c\x7f\x59\x47\xf2\x70\x50\x7a\x24\xcb\x94\x09\xe1\xd7\x2c\x5c\x05\x11\x86\xfa\x8a\xea\x6c\xa5\xd4\xb4\x40\xb1\x4c\x8a\x8a\x23\xba\xc9\xa1\xef\x25\xd3\xec\xd8\xd6\x47\x7f\xeb\x4e\x6d\x32\x37\x3e\x7a\x83\xa1\x17\xfa\xf8\xfe\xde\x30\x80\xce\xad\x3a\xc3\x50\x7f\xbb\xbf\xc7\x3a\x17\xcf\xfd\xbd\x21\xaf\xc1\x36\x04\xef\xc5\xc9\x7f\x70\x9a\xe9\x47\xde\xfb\x90\xf9\x0d\x58\x5c\x87\xcb\xd4\x6d\x93\xf7\xf7\xac\x58\x97\x05\xe4\x29\x92\x38\x31\x90\xa8\x23\x29\x15\x83\x1c\xa5\xac\x55\xe0\x98\xa3\xba\x21\x56\x88\x33\x41\x14\xfb\x38\xad\x1e\xf2\x30\x3e\x17\x92\x66\x16\x1a\x56\xf8\xac\x4a\xcc\x65\xcd\xc8\xc9\x09\x81\xbe\xf7\x4c\x7c\x68\xde\x8c\xe9\x01\x04\xdb\xea\xf7\x91\x04\x88\x66\xe7\x17\x25\x9e\xc1\x6a\x10\xeb\xf9\x86\x17\x39\x06\xeb\x74\xa7\xf9\x51\xc7\x72\x80\xa1\xba\xfd\xbc\xc0\x21\x8f\xae\x3c\x26\x5d\xca\x45\x75\x67\x11\xb4\xd4\xcc\xc7\xe6\xfe\x5f\x72\x0a\x76\xb7\xf0\x6d\x92\xa4\xed\x53\xc2\xac\xf2\x89\xd1\x70\x45\xb6\xa7\x0c\xbf\xd6\x4e\x07\x29\x56\x65\xe6\x96\xe7\x84\x98\xe5\x0c\x1a\xac\x70\x04\x3b\x2d\x2a\x4f\x2b\x32\x70\xe7\x7b\xba\x02\x9d\xfa\x05\x43\xdf\x13\xcb\x27\x21\x67\x2d\x79\x6a\x46\xde\x9c\x90\x66\x23\x2f\x24\xa9\x6a\x3e\x0b\x84\x4b\xf2\xb0\x91\xf1\x94\x75\xf6\x55\x64\xff\xc9\x31\xc0\x83\xb2\xff\xb4\x4f\x08\xb2\x83\xbd\xb4\xf1\x96\x51\xd6\x68\xc3\x97\x21\x2b\x26\xc5\xcd\x1d\xde\xaf\x10\xac\xb1\x2a\x7d\xf2\xe3\xfc\x11\x26\x73\x79\xa6\xb1\xc0\x81\x34\x77\xb0\x6a\xff\x0c\x40\xb4\x2e\x03\x10\xae\xca\xf5\xc3\xd3\x94\x1c\x3a\xaf\x4f\x42\xa6\x1d\x89\x63\xf2\x7c\x17\xdb\xb5\xbb\xd9\xaf\x94\xbc\xf6\x8b\x71\x1e\xc7\xab\x35\x41\xca\xe8\x9a\x19\x71\xa7\x95\xf5\xbe\x83\x83\xe4\x94\xb2\xc0\x63\xf2\x32\xae\x8a\xa5\xb2\x49\x44\x02\x8e\x57\x75\xb6\x9c\x3e\x17\x59\x3c\x3c\x2d\xcb\xe4\xfd\x58\x3b\x58\x36\x2e\x9d\x11\x7f\x3a\x2b\xc9\xb1\x0d\x82\xe8\x4d\x6a\x31\x89\x6a\x67\x69\x03\xf1\xfd\x05\x2b\x44\xd1\x42\x25\x3a\x05\x86\x47\x02\xe9\xea\xf8\x4c\x12\xae\x26\x87\x65\x21\x7b\xa5\xc2\x3f\x49\x4f\x99\x3c\x6b\x9b\xa6\xb2\xc0\xb8\x8a\x07\xbe\x52\xb6\x6d\x66\xcd\xc7\x68\xcf\x3a\x05\x59\xe6\x8b\x1a\x16\xcd\xa9\xc0\xc0\xdf\xcd\x88\x7f\x06\x47\xb5\x63\x01\xbd\xee\x3e\x58\x1e\xc8\x27\x10\xc8\xe5\x0a\x10\xc2\x8d\x20\x4f\x36\xb9\xad\x93\x63\x3a\x2d\x93\x04\xfc\xaf\x80\x2f\x65\xaa\x4b\x51\x37\x8c\x35\x68\xbd\x18\xfb\xff\xd9\x7b\xd7\xe5\xb6\x8d\x6c\x0d\xf4\xbf\x9f\x02\xc6\xae\xa3\x90\x63\x90\x22\xa9\xbb\x66\x73\x5c\x8a\xe4\x24\x9e\x38\xb6\xc7\x92\x93\xc9\x70\x58\xa9\x16\xd1\x24\x11\x81\x68\x1a\x68\x4a\xa6\x65\xbd\xcb\xf9\x7b\x5e\x63\x3f\xd9\xa9\xbe\x01\x0d\xa0\x01\x34\x40\x90\x94\x1d\x4f\xd5\xc4\x14\x09\xf4\x75\xf5\xea\x75\xfd\x56\x31\xf1\x04\x79\xd4\x73\xe6\xba\xdf\x2f\x23\x5e\xd6\xc8\xa3\xa0\xad\xd2\x88\xb0\x41\x15\x5c\x74\x59\x6f\x31\x2e\x53\x08\x34\x5c\x2b\xa4\x6d\xca\x9b\xe4\x15\xdd\x87\xf1\xe1\x96\x5c\x98\x3c\x46\x4a\xde\x71\xbc\xc9\x6e\xe0\x78\xb4\xb2\xbe\x1e\x2e\x67\x6d\x15\x1a\xbf\x24\x15\x2a\x6f\xd7\x72\x58\x41\x68\x23\x6d\x5a\xec\xd0\xbe\xd3\x90\x8b\xed\xf0\xe0\xe5\x3c\x4d\x95\xb4\xd4\xf1\x8f\x61\xf6\xe4\x9c\x5a\x05\xee\x6c\x34\xbe\x48\x49\x2b\x3c\xb9\x09\xa9\xd5\xcd\x64\x40\x3e\xd1\xd1\x5c\xeb\x3e\x9a\x5b\x10\x07\xbe\x8c\x4f\x3a\xe2\x43\x44\x58\xf3\xb8\x69\xa4\x71\xcf\x38\x97\xd0\xf2\xa8\x7f\x6b\x29\x85\xe8\xb8\x5c\x0c\x61\xf8\x9e\x44\xeb\x7b\x24\xec\x49\xe7\x2e\x2b\x3e\x6b\x95\xdd\x57\x5f\xd2\x49\xab\x7c\xed\x4a\x67\x4d\xfb\xea\xcd\x38\x40\xe5\x4c\x17\x1e\xa1\x6d\x98\xa0\x51\x58\xe1\x22\xb5\x62\xd7\xf4\x43\x73\x7d\xa4\xab\xc0\xd8\x4f\x90\x2e\x63\x07\xe5\xee\x55\xfe\xce\x97\x71\xab\xca\x83\xd5\x3b\xcd\xb1\xe9\x95\xbe\x51\x39\x90\x15\xcd\xe1\x6c\x01\xdf\x07\xcb\x16\xa2\xf3\x55\x2d\x95\x02\x40\x5a\x15\xa6\x53\x89\x1d\xb8\x5f\x14\x3b\x48\x6d\xac\xaf\xc5\x0c\xc2\xcb\x54\x70\x85\x9c\xab\x54\x62\x1c\xfa\x57\x6f\x65\x0d\x6f\xa5\x4b\x5a\x9e\x4d\xf5\x6b\x3a\xdb\x94\xea\x0a\x53\x6a\xf9\x6b\x5a\xd4\x84\x83\xe4\xd1\x17\xb3\x39\x16\xd7\x33\x17\x7d\x4e\xb3\xa0\xa2\x25\x75\x55\xc0\x45\x67\x5d\xf9\x29\x76\xba\xce\x2b\xde\x8a\xcf\x23\x03\x74\xb7\x9c\x4d\x32\xbe\x7f\x21\xc8\x56\x34\xa5\x53\x18\x03\x05\x74\x11\xb0\x93\xdd\xb3\x52\x5e\x4f\x63\xcb\xc9\xc2\x81\x9a\xb1\x2a\x03\x19\x44\xe5\x17\x10\x95\xe5\xc6\x90\x10\xe9\xbf\x64\x73\x7e\x86\x4b\x9a\xcd\x52\x58\xb6\x24\x8c\x3a\x6a\x3e\xf1\xe5\xcd\x75\x2d\xac\xf0\x36\xc5\xc3\xa0\x02\x2b\xd5\x23\x85\xf0\x62\x1e\xe6\xd4\x4a\x58\x31\xf0\x45\x28\x47\x3c\xc5\x96\x27\x1a\x52\x9b\xf0\x54\xb4\xc0\x0d\x4c\x31\x95\x6d\xd5\xea\xb2\x35\x4c\xae\x92\x54\xdd\x53\x05\x7a\x99\x9a\x7c\x7b\xbe\x08\xa6\x8c\x11\x36\x60\xd3\x82\x0f\xd6\xc8\x85\xc0\x57\xf4\x97\xd7\x53\xd2\xf3\xc5\x0f\x99\xc0\x66\x8c\x9d\xb3\x87\xa6\x65\x8a\x76\xa3\x22\x72\x70\x67\x87\x5a\x3c\x19\xad\x29\x97\x90\xc3\xad\x45\x68\xdb\x99\x04\x9b\x89\xea\x0b\x9b\xf7\xd8\x5f\xde\x7b\xed\x80\xf0\x68\x33\x5c\x58\xd3\x82\x4d\x4b\x7c\x2b\x2d\x80\x49\xc4\x73\xe6\x1d\x84\xcd\xfb\x87\xb4\xab\x50\x42\x81\x93\xbc\xb5\x51\x55\x7f\x8f\x7b\x69\x45\xe0\xfc\xd3\x0e\x8b\x9c\xa7\xf9\x8d\x52\x4d\x96\x1f\x80\xe3\x42\xdb\xc0\xc8\xa0\x15\x5e\x8c\xb3\xf3\x57\x86\xcf\x4e\xcb\xa9\xdf\x17\x71\x74\x52\x7b\x51\x80\x7b\xb2\xa9\x97\xcc\x82\x6c\xf0\x35\x34\xce\xf8\x27\x56\xc7\x96\x81\xcf\x90\x36\x59\x88\x9e\xdb\x77\xdb\xc1\xe2\x3a\xc0\xbe\xd6\x9b\x51\x37\xa7\x66\xf3\x59\xb7\xf9\xe0\xef\xec\x40\x0a\x33\x47\x66\xdf\xf0\x2d\x37\x0f\xf9\x57\x2d\xa9\xe8\x68\x1d\x85\x92\xc6\x37\xa5\x43\x4b\xce\xd0\x97\x07\xbe\x0a\xe5\x24\x75\xa7\x63\x5e\xbc\x26\xf7\x5a\x5f\xa3\x46\x93\x7b\x28\x52\x07\xa1\x66\xc8\xcc\xb8\x6b\x3d\xcf\x9e\x9b\x57\x9c\x50\x63\x1a\x22\x5c\x52\xcf\xb1\x97\x51\xf3\xeb\xdb\xf9\x2e\x72\x43\x4a\x0b\x5d\xe8\x8c\x94\x62\x58\x09\x17\x60\xbb\x99\xa3\x3d\x44\x1b\xfe\x57\x74\x60\xaa\x5d\x0f\xf2\xb2\x55\x70\x41\x58\x6c\x0f\x82\xd3\x81\x09\x5c\x17\xdd\x99\x16\x03\x7f\x52\x86\x37\x89\xe2\x58\x94\x2f\x5a\x9c\x21\x0e\x78\xb0\xd4\xdf\xcc\x87\x21\x91\x68\x47\x00\x37\x20\x1d\x71\xd0\xc6\xe8\x8c\x68\xeb\x8d\x1c\x80\x62\x72\xf4\x3c\x38\xc2\xad\xb9\x8f\x3e\x2e\xcd\x58\x02\x22\xe4\xa9\xb2\x3c\x06\xe5\xeb\xf0\xd1\xa6\x0e\xc8\x37\x3e\xb4\x5e\x39\x63\x05\x2e\xb3\x6d\x0f\xf3\xb7\x23\xbf\x2d\xa1\x27\x3c\xa3\x3a\x8a\xc0\x9a\x0e\x69\x1d\x0e\xf5\x18\xf1\x57\x17\x9f\x33\xc9\xfe\x6b\x70\x87\xdf\xdc\xea\xc9\x84\xc9\x82\xa2\xdb\x8b\xf5\xba\xb9\x2d\x16\xae\x6e\x6e\xeb\x15\x93\xa4\x52\x30\x37\x70\xf9\xf9\xb3\xb9\x6b\x2a\xac\xac\xac\x25\xcb\xd7\xb1\xf0\x45\xf2\x96\x57\x42\xb4\xf2\x2b\x0b\x50\xac\xe8\x7e\x3c\xd0\x15\x5b\xfe\xd7\x22\x58\x84\x44\x51\x8a\x88\xd3\x7e\x16\x10\x8c\xa0\x67\xff\x35\x63\x15\x2a\xf3\x59\x7a\xda\xa4\xfa\xb3\x99\xb2\x05\x43\x71\xc8\x0a\xfd\xc6\xa2\x64\x0d\x3d\x64\x56\x90\x6b\x8e\x06\x65\xe3\xc4\x63\x87\x83\x9f\x06\x20\x9f\x86\xb8\x45\xd9\xb5\xba\x4d\x76\xce\x03\x26\x8a\xc4\x1f\x76\xad\x20\x1d\x6a\xae\x08\x61\x87\x9c\xc6\x05\xf2\x63\x38\x3e\xef\xb9\x32\xd4\x01\x5a\xf7\x7c\x99\x4e\x13\x31\xc3\x52\x75\x5f\x3e\x90\x9f\xe1\xb2\xe1\xd1\x71\x34\x99\xf9\x7f\x4b\xf7\x87\x48\x7c\x2c\xf2\xf5\xde\xdc\x72\x81\x62\x1d\x69\xbf\xa1\x15\x45\x75\x5f\x70\x39\x26\xcf\xc0\xa2\x51\x74\x92\x3e\x37\xa7\x12\x04\xa7\x47\xa9\x22\x74\x93\xa6\x84\xd1\x7a\xd4\xfc\x8e\xf0\x16\xae\xcb\xff\x68\x66\xd6\x44\x8c\xd7\xa9\xd6\x5a\xee\x5c\xa1\x2c\x81\x55\x5b\xfa\x22\xff\xeb\xb2\x3a\xc9\xf1\xaf\x2d\x2a\x56\x94\x40\x94\xe4\x84\x63\xa5\x38\x9b\xa1\x9c\x41\xe8\xea\x69\xa3\x63\xe1\x88\x37\xc1\x66\x33\x5e\x82\x33\x8a\xf5\x8c\xb7\x62\xc1\x67\xe6\xae\x22\xde\x33\x99\x25\x21\x49\x35\xca\x5c\xb4\x90\xeb\x66\xa5\x2a\x96\xe2\xba\x81\xcc\x48\x3d\xea\xa0\x28\x28\x9d\x9c\x66\x92\x4c\xf6\x0e\x22\x31\x3b\x59\xb4\xb9\xcd\x3a\xe3\xa0\xb6\x96\xab\xc8\x29\x0b\x33\x52\xf3\x4e\xa4\x48\x01\x0a\x5d\xab\xe9\xbc\x43\x67\xdc\xc8\x48\x1a\x34\xf7\x3b\xfb\x66\x5f\x4e\x1c\xe4\x06\x75\x5d\x86\xf0\x04\x4f\x7d\x74\x67\xc0\x87\xad\x31\xf7\x58\x7e\xb9\x06\x87\xe7\x8f\xae\x93\xc5\x17\x8d\x9a\xa2\x0e\x6c\xd8\x76\x9f\xc3\x09\x18\x08\xc2\x37\x05\x34\x77\xb7\x18\x14\x44\xde\x9d\x66\x3b\x01\x06\xb4\x5c\x40\xea\x27\x8c\x66\x68\xe2\x83\x79\x02\x3f\xba\x44\x96\xdc\xd7\x1d\x16\x65\x05\xfd\x44\x09\xbb\xf0\x63\xfe\x9d\xa8\x17\x33\x25\x08\xbc\x8c\x06\x50\xf5\x30\x40\x9d\x50\x95\x1c\xcd\x3c\x6d\x4e\x94\xe4\xea\xec\x5b\x8c\xc8\xff\x89\x1c\x51\x5a\x12\x16\xa7\xef\x2e\x4f\xa0\x00\x48\x09\x7c\x5c\x09\x38\x0f\xcb\x43\xa5\x0a\xa0\x26\x42\xa9\x3c\xeb\x3e\x22\x6a\xe9\x84\x83\x08\x21\xf0\x1f\xdd\xe7\x81\x18\x06\x88\xa3\xc2\x24\xaf\x4f\x29\x06\x8b\xda\x16\x19\x0c\x41\x92\x7b\x78\xa1\xaa\x12\x9a\x80\xf9\xea\x04\xa7\x22\x20\xe7\x35\xb2\x61\x23\xfd\x0a\x05\x75\xe3\x91\xd3\xeb\x32\x28\x84\x17\x70\x64\xa8\xe1\x4a\x55\x69\xea\x48\xc6\x1f\x95\x22\x0b\xdd\x44\xd1\x64\x5d\x4b\x28\x96\x49\x34\xe7\x17\xd7\x7f\x8e\x2d\xbb\x3a\x0e\x2a\x32\x19\x79\xe1\xb0\x03\xd3\x82\x22\xf9\x93\x57\x89\xd6\x09\x01\x11\xa6\xf5\xc7\x73\x75\x4a\xde\x88\xcd\x46\x3f\xac\x10\xef\xb0\x9d\x5b\x34\xdc\xbb\xe4\x45\xfa\x0d\xb4\x60\xed\x24\x56\x15\xb9\x20\xfb\x56\xc9\x25\xb0\x4c\x5d\x09\xc7\x74\x23\x66\x79\x6a\x53\x10\xdf\x2d\x39\x93\x1e\x0d\x1f\x51\x27\x3d\xe5\xee\x4b\x86\x54\x2d\xa1\xa6\x50\xad\x70\x8c\xa1\xff\x4b\xa6\xaf\x80\xb4\xf4\xa4\x20\x7e\xc7\x8a\xd9\xf9\x58\x34\x60\xd1\xc2\x46\x88\x50\xdb\x0d\x4d\x62\xac\xd5\x83\x77\x7c\x11\x59\xcc\xa1\xf9\x16\x4c\xa0\xe1\x21\x6c\xb0\x41\x86\x5a\x2c\x85\xe2\xe9\xef\x77\xf6\x2d\x58\x30\xc1\x08\x1c\x6b\x0b\x00\x18\x7f\xa5\xf8\x00\x29\xbe\xd0\x1e\xad\x90\x36\x98\xcf\xe4\xf2\x55\xd4\x46\x93\x82\x0c\x25\x1f\x62\xe3\x89\x65\xf4\x29\x90\xaa\xf2\xc2\x17\x31\xc5\x76\x89\xcb\xc0\xa2\xd1\xe8\x20\x53\x61\x18\xaf\x19\xee\x85\x71\x0a\x56\x89\x2d\x5e\x14\x9b\xfe\x70\x41\xa5\xb4\xd8\x0f\x39\x07\x44\xce\x14\xfa\x76\xd3\xc7\xb1\xe1\x02\x86\xab\x9a\xd8\x33\x11\x7b\xc1\x8c\x53\xfd\x7e\x58\x23\x9c\xf0\xdb\x76\x30\x77\x1d\xdc\x30\xdb\x66\xb3\x3d\x47\xf3\x6c\xf7\x6f\x35\x8f\xaf\x30\xa9\x8a\xa1\x65\xf8\x18\xb2\x41\x8a\x62\x36\x54\xee\xed\x75\x93\xa9\x2e\xa7\xae\xec\x50\x7a\xcb\xb1\xd6\x38\xd2\x6a\xc3\x53\xa5\x8c\xf8\x54\x15\x4c\x05\xe5\xf8\x2c\x39\x26\x83\xfe\x02\xe8\x3b\xc0\x75\x3e\x41\x5f\x51\xaa\x3b\xe3\x31\x19\x7b\x50\x5d\xf0\x7b\xbd\x39\x7d\xf7\x73\xdf\x99\x01\x7f\xf9\x33\x5c\x9e\x7a\x32\x88\xb3\xce\x1c\xd5\xc0\x89\x31\xbc\x6c\xf9\x79\x1f\x06\xab\xa3\xc7\xe6\x4e\xc6\x43\xfe\x8c\xf6\xf6\x0e\x06\x73\xe4\x05\x71\x5a\x17\x65\xd1\xd2\x29\x5e\xf4\x57\x56\x15\x0c\xf4\x31\x23\x56\x4a\x9f\x88\xd1\x67\xd8\xee\x5b\xb0\x74\x11\xb0\x1b\xac\x25\x0b\x90\x83\x1b\x64\x80\x76\x07\x16\x10\x03\x47\xa5\x40\xbb\x83\x01\x18\xf6\x91\x15\x34\x69\x27\x0c\xc8\xde\x02\x16\x7a\xb0\x92\xe3\x50\x85\xa0\x65\xca\x0f\xf2\x56\x64\x55\xe3\xae\x44\xa5\x52\x63\x8f\x97\x58\x93\xb5\xa4\x8b\x67\xba\x56\x4a\x95\x66\xc2\x93\x5b\x72\xf6\x56\xaa\xcf\xc0\x24\x0a\x9e\xa0\xe3\xf1\xca\x16\x5c\x0a\x30\x4f\x05\x09\x64\xd9\xbc\x30\xa1\x70\x99\x55\xfb\x96\x19\x8d\x84\x26\xaa\x41\xcb\x23\x44\x8d\x33\x88\x9a\x1c\x22\x3e\x47\xb7\x14\x51\xe3\x81\x37\xec\xbb\x16\x66\x97\xa9\xe5\x59\xee\x83\x74\x75\x69\x6c\x60\x46\xe9\xe6\x4a\x14\x1b\xb5\xb5\x25\x82\xb5\x00\xc6\x7e\x70\xea\x31\x4c\x72\x8d\xd9\x27\xeb\xb4\x56\x9a\xf6\xcd\xed\x23\x3e\xa0\xe9\xa2\x99\x95\xe6\x48\x9b\x79\xbc\xb3\x54\x15\xdd\xab\x34\x4f\xde\xd0\x97\x42\xbf\xca\x12\x66\x95\x26\x2e\x5a\x7a\xbc\x7b\xac\x2c\xc9\x53\x71\xae\xac\xa5\x2d\xce\x55\x01\x6b\x21\x4f\x40\x51\x40\xa5\xd2\x4c\x59\x3b\x8f\x9c\x9a\x99\x19\x39\x17\x7d\x34\x4b\x6e\xaf\xc1\xec\xc4\x9d\x4f\xe1\x6c\x02\x8c\x7c\x98\x65\xbb\x20\xbf\x99\x4d\x6b\xe4\x22\x0f\x66\x27\x2a\x48\x5e\x1d\xf6\x42\x9b\xbe\x40\xf1\xd6\xe2\xf9\xde\x58\x5e\xaf\x66\xf3\xc1\x52\x58\xff\xcb\xf4\x43\x0d\xca\xbc\x9f\x7b\x7b\xc4\x82\xf4\x22\x75\x4b\xa9\xa3\xe6\x37\xc6\x03\x62\x79\x93\x8e\x7d\x0a\x29\x36\xf6\x43\x98\xa7\x9d\x69\xdf\x54\xac\x02\x7d\x41\x6e\xb1\xf9\x60\xf1\x44\x6d\xa5\xcc\xdd\x0e\x00\xb5\x7b\xf2\xac\x7a\x85\x7a\x8c\x19\xf6\x76\x18\xe4\xcc\xb2\xae\x69\x48\x5c\x2c\xa2\x97\xc3\x69\x93\x31\x71\xaf\x64\xd3\x32\x39\xaa\x49\x5f\x64\x44\xe0\xe5\x1c\xbe\x19\x37\xa8\x25\x40\xe1\xa1\xe3\xb3\x98\x43\x78\x13\x5b\x15\x7f\x10\xdb\xc6\x61\xb3\x49\x4b\xa1\xc4\xe2\x89\x0b\xc2\x8d\x38\xe8\xaa\xe8\x62\xe1\x11\x51\x95\xbf\xcb\x5c\x3c\x91\x0f\x32\x2f\xb2\x3c\xde\xc0\x99\xeb\x8a\x65\x2e\x3c\x7d\x7f\x82\x8f\x2a\x6d\x93\x7c\x9f\x78\x6a\xe5\x13\x98\xf9\x02\x3f\x98\xa6\x75\x1f\x17\x81\x27\x10\xab\xf2\x07\xc5\x41\x2e\x9e\x1c\x46\xd7\xf9\xa1\x1e\xf4\x89\xb5\xb3\x16\xee\xb3\xcd\x9b\x0b\x37\xd5\x70\xf0\x00\xa9\xa0\x40\xd1\x1c\xaf\x31\x02\xf9\x73\xa4\x4f\x7c\xd1\x73\x1c\x21\x1b\xb6\x66\x0e\x45\x5a\x8f\x4d\xd5\xb9\x5d\xb6\xc8\x8f\xec\x37\xf5\x0b\x5f\x1e\xd9\x52\xcd\xcf\x9f\xe5\xef\xaa\x78\x68\xf3\x1b\x2b\x57\x03\x8f\x85\x8a\x6a\x4c\x2c\x8a\x4a\x59\x9f\x3f\xa9\xca\xc5\x5e\xcf\xf5\x2b\x9b\x81\xc4\x2d\x5c\xb4\x26\x6b\x00\xfe\x4f\xd3\x5e\x9c\x44\x9c\x71\x83\x26\x0f\xb6\x9d\x80\x25\x11\x46\x51\xbe\xf0\x89\x33\x6e\x5c\x2e\x67\xd7\x88\x02\x15\xfa\x00\x23\x6a\x4d\x0f\x51\x62\x9a\xca\x16\xd9\x9d\x3c\x18\x5a\x7e\xff\x69\xc7\x72\xfb\x4f\xbb\x56\x20\x2a\xda\x61\x7f\x19\x1a\xf4\x81\x85\xfa\x70\x90\x68\x7f\xd8\x68\xfe\xfd\x69\xc3\xef\x37\x40\x1f\xb1\x7a\x0b\xcd\x66\xdb\x46\x1e\x24\xd7\xb1\x47\x41\x6a\x1a\xa0\x4d\x67\xd9\xb4\x9e\xe2\xcf\x9f\x3d\xee\x08\x78\xda\xef\xe3\xe6\xdf\x49\x97\xcd\xbf\x47\x48\x2d\x2e\x19\x42\xd0\x87\x0f\xbc\xfa\x07\x45\x7d\x79\xea\xef\xec\xa0\x36\x1b\x7b\xf4\xa9\xd1\x0c\x1f\x72\xc6\x0d\xb7\xc9\x9c\x87\xc1\x83\x30\xa4\x78\x0f\x74\x7a\xdc\xa9\xe8\xc1\x3b\xe3\x6a\x39\x87\xdc\xf5\x28\x10\x53\x00\xc6\x70\x36\xc7\x06\x46\x06\xbd\xfb\x17\x23\xbc\xf0\xa1\xe1\x21\xaf\x45\x67\x78\xed\x42\xc3\xf1\x78\x44\x61\xf3\xe1\xa1\x91\x8e\x84\xab\x42\xb1\x25\x20\xf1\xb3\xc4\x40\x67\x4c\x3d\x52\x4f\xfb\x91\x54\xc5\x4d\xf4\x0d\x6e\x44\x83\x34\xd7\xc0\x6b\x66\x91\xbf\x02\x5e\x3e\xe6\x06\xf3\x84\x9b\x59\x81\x1e\xcf\xeb\xe2\xd2\xe4\x09\xd5\x1b\x0f\xcd\x07\x66\xa2\x4b\x38\x7d\xa3\xa0\x26\xe6\x94\xe8\xd3\xd0\x67\x4b\xd4\x44\xe9\x27\x7d\xc2\x56\xe4\xa1\xa0\x34\xcc\xc2\xaa\x83\xd3\x81\x4f\xc1\xa3\x43\xef\x9c\xbc\x38\x31\xf3\x60\x0c\x6e\x2a\x39\x71\x31\x1a\xd1\x09\x70\xdd\xc6\x00\x7e\xfe\xec\xc6\xd0\x45\xa8\x4f\xd3\xfb\xfc\x99\x5a\xbf\x43\x27\xe3\x30\x33\xab\x87\xa8\x08\xbd\xa6\x15\xf4\xbd\x41\x67\x68\x81\xbe\x37\xe8\x0e\x9f\x24\x22\xb5\x68\xcb\x81\x05\x14\xe1\xe6\xc9\x38\x24\x60\x99\x63\xc7\x0f\x30\x3b\xc5\xd1\xa0\xdd\x8c\x6d\x83\xd1\xb6\x59\x90\x45\x74\xf0\x41\x97\x10\xfa\xc5\x34\x99\x87\x2a\x4b\x0c\x86\xed\x00\xf9\x38\xa4\xb8\xa6\x0e\xc7\x44\xb3\xd6\xf5\x62\x3c\x8e\x27\x02\xd5\xc2\x39\xef\xd3\x4e\xbf\xc4\xd9\xe4\x84\x78\x4b\xae\x08\xdb\xba\x1f\xbb\x8b\x60\xaa\xba\x29\xf0\x00\x0e\x29\x7a\x57\x82\xac\xe2\xd1\xf8\xce\x64\x02\x7d\x8a\x45\x65\x5a\x5e\xd3\x22\x2f\xf5\x3d\xcb\x53\xea\x3d\xe4\x47\x11\xc7\x47\xd6\xc7\x85\x18\xb2\x6e\x34\x16\xac\x20\xe0\x19\xcd\x76\x3f\x04\xa0\x35\x06\x23\x8c\xfc\xa5\xe2\x89\x09\xc4\xad\x11\x9a\xcd\x91\x07\x3d\x9c\xf3\x1c\x69\x29\xb4\xbc\xb7\xe0\x6d\xba\xc0\xe1\x4a\xf1\xcf\x71\x89\xa3\x19\x5d\x32\x45\x1c\xd5\x46\xa3\x53\x51\x33\xcc\x2a\x5d\xd5\x2b\x15\xd5\x1c\xd2\xfc\x9b\x3b\x8f\x87\xe9\x11\x25\x3e\x9c\x39\xa5\x0f\xc5\x59\xf1\x0b\x45\x61\x5a\x92\x51\xe3\x94\xd9\x88\xfa\x7d\xe3\x65\xd0\x1e\x2c\xc8\x3e\x7c\xbf\x7c\xa9\x74\x66\xa9\x5b\x99\x40\xd1\x00\x79\x8f\x08\x72\xa2\x9d\xe0\xfb\xe5\x15\x98\x50\x16\xad\xb2\x20\x34\x70\x3f\xd4\xbb\x71\xaa\xfa\x13\x6d\xfc\x14\xc7\xdb\xe7\xcd\xc5\x3a\x51\x5b\x27\x68\xc1\xec\xe8\xa9\xfc\x87\x42\xda\x54\x3f\x16\x34\x06\x21\x82\x42\x22\x9f\x26\x25\x09\x49\xd1\x07\x1d\xcb\xeb\xf3\xef\xb9\xc8\xd1\xfc\x3b\xfe\x5f\x28\xc7\x21\x78\x03\x3c\xec\xc3\x01\x0e\xd9\xb3\x27\x84\x07\xd6\xf0\xd8\x47\x33\x32\x59\x16\xca\xc9\xe7\x42\xc7\xd6\x6c\x0e\x3a\xc3\x62\x6e\x07\xd3\x5a\x4f\xf2\xd0\xc1\x7a\xf4\x9c\x0d\x2a\x02\x61\x3c\x73\xbe\x8a\x03\x5c\x97\x88\x4f\x2d\xbc\x9c\xaf\x9e\xe7\xc3\x63\xad\x94\x2e\xde\x42\xfe\xe1\x21\xec\x8c\x97\x59\x45\x85\x5c\x10\x4c\x7f\x61\xe5\xd6\x88\xc0\xe5\x22\xc2\xd6\x33\x1e\x66\x3f\x9a\x4d\x2b\xbd\x9c\xa9\xfa\x7f\xc9\xc8\x97\x7f\xf4\x76\x76\xd8\x81\x7b\xda\x97\x42\x5f\x7a\xc3\xe7\xf2\x1f\xa7\x9e\x05\xa4\x5f\xf7\x86\x4f\xa2\xc8\x6d\x60\x99\x61\x8c\x87\x69\x3d\xed\xb0\x55\x41\x09\xc6\xea\x37\x2d\x27\xf1\x55\xd0\xb4\x16\x29\x31\x88\xad\x4a\x24\x4f\x40\x95\xbd\x6b\xd1\x06\xb6\xdd\xb8\x27\x7b\x78\xea\x34\xcc\x60\x41\x0b\x0c\x85\xc5\x95\x4e\x51\x83\x67\x3d\x43\x55\x3d\xb6\x18\xf8\xa4\x6b\x85\xcb\x17\xc6\xc1\xc3\xa6\x65\x5e\x85\x21\x8f\x67\xd7\xc8\xc7\xd0\x66\xb9\xb1\x1e\x98\xc1\xe7\x1a\xdd\x3f\x34\x4f\x13\x4f\xf1\x43\x07\xe3\x4f\x3d\x34\x55\x15\x05\x33\x17\xb7\xab\x23\xcc\x50\xda\x69\xcd\x04\xf1\x28\x2c\x71\x23\xd7\x69\xd1\xa7\x32\x5f\xfa\xf2\x2c\x1c\x63\x54\x64\xde\x20\x4f\xec\x5e\x2f\x1c\x9a\x5b\x5c\xd3\xd1\x4f\x48\x0f\x85\x87\x9e\x76\xaf\x98\xa7\x57\xd9\x90\x25\x57\x18\xce\xf5\x78\x64\x79\xd4\xbf\x68\xf3\x88\x14\x72\x50\xaf\x8f\x42\x6e\xb8\x4e\x4f\x45\xd4\xee\x97\xee\xaf\x90\x56\x68\x8b\x5e\x8b\x82\xc5\x97\x9c\x17\xf2\xca\x17\x1d\xaa\xec\x58\x8e\x3c\x88\x82\xf5\x84\x70\xac\x76\xc4\xd2\x07\xc1\xa3\x32\x6a\x2a\x27\x9f\x5b\x27\xfe\x79\xf9\xe6\x75\x3b\xa0\xa5\x58\x9d\xf1\xb2\x31\xf0\x2c\x38\x6c\xaa\xcc\x15\x0a\x8a\x20\xab\xe6\x47\x96\x80\xcf\x9f\x1b\x3c\x78\x54\x01\x11\xe4\xb2\xdc\x76\x0b\x26\xbe\x94\xf1\x82\xbc\x66\x0c\x30\x28\x19\x16\xea\x26\x0a\x09\x17\x9c\x68\x5a\x09\x5d\x1c\x65\xef\x41\x76\x90\x2a\x78\x85\x84\x0e\xcd\xc3\x6f\x19\x3a\xc6\xce\x4e\x03\xf6\x4d\x93\xd7\xb8\xa6\x67\x2a\xc1\x92\x62\xfd\x60\x2b\x80\x73\x40\x6d\x92\xac\x8a\x76\x66\x0c\x38\x4e\xa1\xae\x45\xbf\xc1\x18\xd0\x9a\x80\x05\x50\xc9\x36\x3e\xdd\x5c\x3f\x4c\xe8\xf7\x15\x09\xfd\x7e\x3a\xa1\x9f\xcb\x88\xc9\xcd\xc7\x74\xf3\x65\xd8\x04\x2f\x7b\xe7\xdd\xe6\x93\x60\x67\x27\x48\xa1\x1f\x31\x4b\xa7\x5f\x03\xef\xbc\xb9\x5d\x95\x69\xe2\x6d\x33\x4d\x7a\x44\x06\x5e\x1d\xdc\x12\xaf\x95\x5b\xd2\xb5\x2e\x62\x93\x5c\x72\xde\x9c\xdf\x45\xe1\x11\x2c\x1c\x24\x4b\xf0\x7e\x5c\xbe\x21\xc9\x6b\x95\xf1\xa4\xec\xd7\xaa\x4b\x58\x62\xf1\x7b\xc5\x72\x52\x8a\xf7\xe9\x31\x58\xde\xbc\x24\x2d\xe9\xdd\xf9\xb1\xa9\x66\x54\xbc\xc8\x64\x9b\xb0\x2d\xe5\xa5\xf7\x31\xb7\x2d\x17\xd1\x44\x58\xfc\x24\x5f\x64\x16\xa1\x80\x69\x1f\xff\xc8\x0d\x5a\x8c\x77\xd6\x07\x41\xa4\xb2\x07\xca\x17\x5f\xb1\x76\x31\x81\xf8\x17\x11\x18\x9f\x3e\xf6\x26\x9f\x0e\x75\x50\xbc\x8d\x02\xad\x54\x5a\x97\x1c\x62\x66\x45\x95\x29\x94\xcf\x5e\xbe\x7a\xff\x23\x7b\x50\xcb\xc9\xc4\x2a\xdb\x2b\x88\xc2\xa7\x16\x3c\x9a\x6b\xe8\x02\xa5\x51\x28\x93\x0e\xc3\x97\x1a\x62\x92\xf1\x52\x18\xa2\x52\x48\x5d\x41\x51\xa2\x93\x7a\x75\x8e\xb0\xd5\x5c\x85\x43\x23\x42\x2c\x76\x6b\xce\xc3\x92\x14\x5f\xb8\xc2\x21\x26\xf2\xb8\x63\xa4\xf8\x28\x8b\x79\x50\x94\x43\xfb\xa8\xae\xa6\x7a\x0e\x48\x18\x4c\x5c\xef\x09\x89\x9a\xcd\xbd\x65\x92\xb5\x6c\x38\x7a\x05\xb9\x49\xbd\xb8\x20\x1d\xf3\x61\x5a\x7e\x1f\xb7\x7d\x68\x2f\x46\x12\x16\x86\x3c\x46\x28\x0c\xfe\xb1\x36\xc4\x2a\x5f\x81\x49\x60\x36\x3f\x7f\x1e\x0c\x9b\x0f\xd6\x60\x48\xa8\xc2\xf9\xd0\x48\xe4\xc6\x71\xac\x0b\xfa\x6c\x04\x88\xca\xbf\x65\x83\xb4\x70\xd3\xf2\x34\x2e\x31\x45\x10\xf3\x23\xa1\x1f\x86\xf9\x51\x61\x9f\x23\x90\x9d\x04\x13\x0c\x31\x23\x57\x22\x1e\x65\xd3\xb9\xaa\x42\x68\x86\xae\x5b\x40\x2f\xde\xdc\x74\x0e\x79\xbd\x91\x3c\x92\xa8\x47\x79\xf5\x4b\x0c\x67\x62\x28\xa7\xe6\x33\xdc\x7c\x62\x32\x55\xd0\x7c\x2a\xaa\x2a\x79\x3b\x3b\x0d\xaf\xff\x9d\x69\x7e\xd7\xa4\x31\x38\x1e\xd3\x18\x69\x8d\xa1\x86\x27\x95\x36\xf2\xfa\xa6\x19\x45\xbc\x68\x05\xa7\x80\x09\x3c\xbd\x73\x3c\x1b\xdd\xb5\x5d\x34\x02\xee\x25\xfb\x8e\xee\xfc\x4f\x10\xd8\xd0\x0f\x14\xc9\xdb\x0d\xd5\xce\x83\x09\x21\x44\x51\x7f\x85\x6f\xe1\xbd\xf9\xef\xd6\x39\x5b\xe7\x2b\xfa\xc3\xa9\x74\x7d\x5d\xc2\x91\x0f\xf1\xcb\x8b\xe7\xa6\x79\x1a\xfd\xf5\xa0\x8c\x51\x90\x0a\xd9\xa5\x53\x6a\xa3\xee\x43\x48\xc9\x1b\xb8\x0c\x1a\x5e\x33\xc5\x58\xa8\xd3\x9a\xaf\x11\x19\x85\x1f\x15\x43\x12\x9b\x40\xa3\x95\x06\xfe\x30\x36\x4f\x18\xeb\xa5\x49\x78\x85\x75\xff\xa0\x4a\xc1\x4d\x1a\x4c\xfc\x2c\x36\xac\x4a\x44\x4f\xbe\x9c\xb7\xd4\xb0\x99\x21\x5b\xa8\x8b\x8a\x85\x2f\x8a\x31\xcb\x2b\x05\x9b\xed\x31\xf2\x5f\x00\xd9\xaa\xe1\x35\xef\x1b\x49\x21\x5b\xa2\xbf\xc8\x62\x11\xa7\x41\x42\xa8\x0f\x34\x9d\x3d\x49\xdb\x96\xd7\x7c\x68\xd2\x4c\x39\x38\xf0\x86\xe4\x28\xe6\xcc\x1c\x52\x40\xe8\x78\x8a\x3b\x6c\xde\x27\xbd\xbc\x9f\x3f\x37\x60\x7f\x00\x87\xe2\xa0\x65\x2f\x17\x39\x70\xe9\x6b\xc6\xcb\x08\xad\x83\x3c\x42\x23\x75\x3e\x1f\xc8\x04\x68\x8d\x35\xbd\xed\xf7\x34\xb8\x0e\xe5\x57\x99\x99\xc2\xf4\xd7\xb5\x26\x5d\x26\xb3\x21\x24\x1e\x4f\x0d\x6e\xc0\x06\x73\x0c\xfd\x1f\x10\x51\x16\x78\x2a\x04\x5d\xde\xfb\x30\x23\xf8\x14\x3e\x58\x98\x99\xe7\xfe\x70\x88\xf8\xe2\x01\xf7\x17\x9e\xdb\xfe\xd2\xa6\x4d\x72\x09\xf9\xd2\x03\xf3\x60\x8a\x70\xe3\x9e\xd7\x68\x72\xc7\xda\x5d\x93\x87\x95\x3d\x17\x2f\x32\x86\x1f\x71\x6b\x06\x41\xb0\xf0\x93\xc0\xc3\x6c\xb1\x63\x0f\x64\xbd\xf7\xe5\x79\xe8\xb0\x33\x83\x68\x91\x89\x72\xce\x34\xeb\x39\x23\x5a\xfb\x8a\x3f\xbc\x16\x3f\x5d\x15\xdd\x5a\xe1\x5b\xc7\x52\x91\x0d\xa8\xb5\xf3\xac\x6e\x5a\xbe\xd1\x81\xe7\x6b\x7d\x25\x36\x07\x36\x9b\x75\x9a\x1c\xf2\xcd\x09\xd9\x87\x3a\x4b\x66\x0c\x4f\x76\x5b\x9e\x5a\xa3\x69\xdd\x07\x54\x2e\x90\x55\xf3\x6a\xb9\x5b\xaa\xc6\x0b\x33\xb9\xbe\x4f\x55\x64\xd5\x97\xaa\x95\xb3\x11\x95\x6b\xc3\xd9\x6c\x4c\x3b\x54\x0e\xa7\x4e\x3d\x51\xd9\x41\x9d\x46\x15\x55\x07\xab\xda\x57\x22\x3c\x6b\x0d\xfb\x8a\xa7\x6b\x5f\xf1\xa8\x0c\xa9\x63\x5f\x51\xcd\xc9\x1b\x88\x6f\xa3\xc3\xdb\x68\x0e\x89\xd0\xb9\x21\x8f\x45\xb1\xc5\x45\x31\xee\x4c\x4e\x2c\xe0\xf5\x83\xdd\x16\xff\xd2\x15\xb1\x35\x6b\x53\xa2\x7f\xba\xfa\xe5\xd5\xf7\xc0\x0f\xda\xa2\xf3\x06\x21\x45\xf3\x3f\xdd\x1f\xa7\x6e\xaf\xf3\xb3\x69\x51\x08\xb0\xd3\xef\xee\xcd\x80\x26\x31\x04\xe6\xe9\x60\x48\x26\x0a\x30\x8b\x65\x34\x4f\x07\x83\x43\xcb\x0c\x6e\x27\xe6\xd0\x1a\x9c\x58\xe6\xc7\x99\x4b\xcb\x7f\x4c\x31\x9e\x9f\xee\xee\xde\xdd\xdd\xb5\xef\xf6\xda\xc8\x9f\xec\xf6\x3a\x9d\xce\x2e\x79\x30\xf3\x47\xfa\xee\xae\xdc\xd0\xe9\x47\xd7\xf1\x6e\x94\x6f\x74\x4f\x4e\x4e\x76\xb3\x7f\x4e\x37\x78\xe7\xd8\x78\x6a\x5a\xe6\xfe\xfe\xfc\x23\xff\x6a\x0a\x9d\xc9\x14\xc7\xbf\xbb\x75\xe0\xdd\xf7\xe8\xa3\x69\x99\x1d\xa3\x63\xec\xef\x1b\xfb\xfb\xe2\x17\x72\x80\x68\xfe\x71\xb7\xdd\x25\xdf\x1d\x0d\xad\x41\xc7\x32\xff\xfb\x5f\xcf\x30\x0c\x83\x7c\x73\x68\x99\x93\xf4\x2f\xd2\xaf\x23\xc7\x1f\xb9\x90\x37\xe8\x93\xa6\xf8\xe7\x11\xe9\xb1\x77\x24\xfe\x5a\x92\xbf\xf8\x1f\x01\x5e\xd2\xca\xf5\xd4\x90\x3c\x46\xfe\xac\x85\x7c\x67\xe2\x78\xa7\x46\xef\x68\xfe\xd1\xe8\xb1\xa1\x93\x2e\x8f\xab\x75\xdb\x2d\xd9\x6d\xb7\x9e\x6e\xe3\xb3\xdd\xd7\x9c\xee\x7e\xdd\xf3\xd5\xe8\xb8\x5b\x53\xc7\x3d\xb9\xdf\x70\x14\x39\x13\x9e\x7f\xa4\x7d\xd7\xd9\x6d\x4f\xaf\xdb\xde\xea\xdd\xee\x97\x9d\xee\x7e\x4d\xf3\xdd\x2f\x3b\xe1\xfd\x9a\x66\xbc\xb7\x17\x23\xac\xc2\x7e\xf7\xf6\x08\x5d\xad\x4e\xcf\xdd\x72\xdd\x76\xbb\xb5\x74\x9b\x98\x6d\x47\x73\xba\x9d\xba\xe7\x5b\xdc\x31\x9b\xf0\xea\x1d\x87\x5d\x31\x8a\xee\x16\x13\x56\x87\x50\x74\x77\xf5\x8e\xe5\x7e\xc3\x75\xcf\xe9\x77\xfe\x91\xae\x76\xad\xf3\xd5\xe9\xb7\x53\x53\xc7\x65\xd7\x39\x77\x99\x4d\xe5\x37\xe5\xef\xea\x5e\x8c\xa9\xf6\xca\x1d\xba\x5e\xaf\xea\xa1\xcb\xeb\xb6\x98\xf6\x59\xbf\x95\x68\xbf\x97\xb9\x25\xbd\xe2\x3b\x93\x6c\x49\xaf\xd2\x95\xd9\xcb\x26\x41\x9d\x7e\x3b\xf5\x74\x7c\x22\xf7\x7b\x52\xd8\xed\xc9\xfc\x23\xf9\xff\x8a\x9d\xee\x1d\xc4\x0e\xdc\x41\x31\x4b\x3d\x20\x07\xee\xa0\xe6\x8e\x8b\xa7\x4b\xfb\x5d\x7d\xbe\x27\x25\xa7\x7b\x92\x3b\xdb\xf5\x9c\xf3\x63\x79\x8c\xc7\xc5\xe7\xed\x78\xfe\xd1\x38\x5e\x79\x65\xba\x87\xe5\xba\xed\x1e\xd6\xd2\x6d\x7c\xb6\x7b\x87\x7a\xd3\xdd\x3b\xac\x79\xbe\x1a\x1d\xd3\x09\xd7\xd0\x71\x6c\xc2\xbd\xe2\x85\x26\xf3\xed\xad\xbe\xd0\xb1\x6e\xbb\xc5\xd3\x25\xdd\x76\x57\x9f\xed\xde\x61\xc9\xe9\x92\x15\xae\x63\xbe\xf1\x8e\x35\x26\x4c\x3b\xce\x9e\x71\x5d\x67\xfd\x20\xfb\x72\xed\x6a\x68\xa4\x54\x63\xa9\x74\xd9\xe4\x74\xbc\xa7\xd9\xf1\xde\xea\x1d\x77\x7b\x25\xaf\xd7\x6e\xaf\xf2\xf5\x1a\xeb\x78\xaf\x6c\xc7\x7b\x35\x75\xdc\x8d\xdd\x74\xdd\xe2\x3b\xa7\x4b\xae\xba\x6e\xa5\x2b\x36\xbe\xc7\xb1\xcb\xae\x57\x7c\xc7\xf6\xc8\x6d\xd7\xab\x74\xc9\xe6\x74\xac\x31\x63\xda\x71\x0d\x33\x8e\x2f\xb5\xc6\x8c\xe9\x52\x67\xcf\xb8\xae\x33\x7f\x92\x7d\xf4\x34\x08\xb1\x97\x4f\x88\xf1\x41\xc6\xff\xa2\x5f\x0c\x2d\x73\x0a\x82\x17\xb7\xc0\x35\x4f\xc7\xc0\x0d\xe0\xc3\x77\xd6\x0c\x62\x70\x7a\x3f\xa3\x16\x5b\x56\x5e\x55\xc3\x2e\xdc\x9e\x5e\x07\x66\xb1\x35\x39\x03\x67\x7b\x33\x96\x64\xe7\xfd\x0f\xfb\xd3\x77\xfb\x3f\xe8\x59\x92\xf7\x2d\xd3\x19\x9b\xd6\x60\xd0\x3b\xa0\xd9\xb6\xf4\x63\xc7\x1a\x98\xc2\x12\x3e\x1c\x0e\x2d\x6f\xe1\xba\xfc\x1f\xeb\x3e\xd1\x40\xc7\x32\xc5\x1e\x74\xad\x41\xf7\xd8\x32\xd1\x02\xbb\x90\xba\x6a\xc9\x52\x4b\xfb\x32\xb4\x4c\x5a\x22\x14\x62\xe8\xd3\xc1\x3c\xa4\x5a\xdb\xa7\x3b\x35\x75\x46\xc8\x9f\xf3\xb5\x37\x59\xbf\x83\x81\xe9\xd8\xa6\x65\xda\x23\xd2\x95\x79\xe7\x83\xf9\x9c\xfa\xcb\xe9\x68\xc9\xb7\x64\xa4\x8a\xf6\xc0\x7c\xde\xba\x75\xe0\x5d\xd4\xce\xc8\x05\x41\x40\x5b\xe1\x93\x34\x68\xa1\x21\xf5\xeb\x74\x11\x5b\x81\x4b\x97\x86\xec\x36\x66\x88\x13\x79\x8b\x21\x9f\x86\x6e\x2f\xf4\xdd\x46\xce\x85\x61\xfe\xaa\xf0\xf5\x5e\xf5\xfb\x18\xdd\x63\x7f\xa1\x4f\xf6\x12\x01\x6b\x92\x7c\x08\x8f\x40\x3d\xd3\x2d\x51\x6a\x68\xd3\xc4\xff\xef\xeb\x8f\x7b\x33\xe8\x8f\xf5\x88\x3f\x4e\xbb\xe4\x04\x8c\x7d\x08\x69\x60\x85\x98\x80\xa0\x19\xe4\x8d\xa6\xc0\x9b\x10\xfe\x44\x47\x65\x5a\x26\x2d\xa2\x34\x45\x3c\x7f\x98\x9d\x20\x96\xcc\x4d\x0e\x51\xf7\xc4\xea\xb0\x8d\xa6\x04\x1a\xbe\x1f\x9e\x27\xfe\x43\x00\x81\x3f\x9a\x52\x32\xb8\xa4\x1f\x8d\xeb\xa5\xe1\x81\x19\x14\x08\xab\xc3\xe4\x41\x4a\x0c\xd9\x07\xb6\x83\x5a\x13\x1f\x2d\xe6\xd1\x70\x3d\x0a\xae\x14\x0e\x95\x56\x51\x32\x2d\x69\x14\xd6\xc0\xa4\x98\x07\x7c\x14\x0c\xff\x40\x8c\x89\x4d\x3e\x60\x5f\x94\x9b\x55\x7a\xb8\xab\xb0\x5f\x25\x55\x45\x14\xa9\x80\xba\xcd\x78\x97\x8c\x5f\xac\xd1\xa6\x69\xf2\xe5\xab\xf1\xb2\xf3\xeb\xbb\x73\x25\x4d\x9a\x3b\x22\xbe\x26\x87\x35\xf7\xac\x6e\x2e\xfb\xe5\xb7\xae\xe3\xcd\x69\x88\x0c\xb9\x4c\xd9\xe6\x32\xe2\xe0\x5f\x71\x9a\x88\x2a\x0b\x0d\xba\x1d\x8b\x32\xd5\x41\xef\xd0\x1a\x88\x1f\xfe\x30\x19\x1b\xe7\xe5\xcd\xc9\x86\xd2\x07\x47\x53\x38\xba\x81\xf4\xe9\x03\xf9\xd2\x80\x1f\xc2\x3b\x43\x3c\x42\x76\x3c\xfc\xcc\xa9\x3d\xf5\x05\x3f\x04\xa4\xe9\xe8\x70\x95\x3e\x44\x52\x2b\x9c\xd8\xe5\xc1\x8b\x9f\x93\x32\x03\x5f\x30\x17\x5c\x43\x57\x2c\xc4\x98\x82\xa0\x14\xad\x44\x52\xe4\xe1\x2d\x05\x73\xe0\x49\x12\xd1\x9b\x39\xf4\x92\xa2\x93\xea\x6f\x79\x0c\x27\x7c\x08\x61\xef\x23\x17\x05\x50\x25\x66\xa9\xfb\x3c\x17\x8f\x17\x75\xda\xed\x5a\x5d\xbd\xfb\xa7\x8e\x53\x1b\x9d\xbc\x0a\x37\x49\x78\x75\x6f\xfa\xcc\x1e\x77\x3a\xcf\xe6\xf8\xea\x57\xf5\x99\xa5\xe8\x18\x34\x26\x8b\x0f\xd5\xb4\xc2\xef\xb2\xcf\x73\xb7\x6b\xed\xc7\xa4\xd4\x95\x65\xaf\x43\xcb\x9c\xd2\x58\xe8\x38\x95\xf0\xb6\x21\x18\x4d\xc3\x26\xe3\x08\x32\x96\xf9\x61\x01\x17\xd1\x39\x52\x09\x3e\x31\x08\x90\xe8\x66\x61\xf3\x1c\xb2\xc3\xd9\x25\x87\x53\x21\x37\x29\x95\x82\x39\xa7\x72\x1b\x60\xd0\xa2\xc0\x2e\x11\xbc\xb8\x38\x84\x4c\x34\x63\xc7\x50\xc9\x67\xba\x27\x56\x4f\x4c\xe7\x8a\x5f\x5a\xe6\x25\x87\x5c\x09\x79\x8d\xc0\x60\xb1\x4c\x81\x5c\xc4\x7f\x30\xe4\x7e\x5b\x9c\xdf\xb8\xe8\x0e\xfa\xb4\x2e\x07\xeb\x60\x2f\x64\x01\xf1\x7b\x8d\x2e\x31\x39\x78\xd8\x47\x5e\xa8\x00\x75\xd5\x0c\x51\x6f\xa0\xfc\x8b\xa7\xa6\x65\x52\xe8\xc1\xa7\xe1\x4f\xe2\x12\xe5\xa7\xd7\xe0\x9b\xba\x74\xa0\x6b\x87\xe2\x68\x7c\x15\x69\xef\x4c\x5e\x65\xa5\xf8\xc5\x88\x92\x13\x4c\x0e\x2c\x92\x48\x34\x57\xc3\x12\x3f\x10\xc1\xa2\x90\x4c\x29\xe1\x67\xb1\x99\xb8\xea\x96\x7c\xaa\x67\xed\x65\xc9\xb7\xdd\xa8\x05\x49\x8e\x3b\xb4\x4c\xdb\xb9\xcd\x55\x4e\xf9\xef\x27\x21\xb5\xc9\x57\x62\xea\x14\xf1\x7d\x25\x67\x08\x2c\xf0\x14\xf9\xce\x27\x7a\xc3\xe9\x6b\x00\xa9\x5d\x8b\xba\xab\xb2\x5c\x45\x7c\xdb\x92\xc7\x90\x52\x86\xd5\x6b\xb1\x86\x59\x1f\x12\x81\x43\x2c\x34\xf0\x1d\xd0\x62\x37\x9d\x65\x7e\xef\x43\x60\x8f\xfc\xc5\xec\x5a\xbd\x4d\xb9\x6b\x77\x1d\xbe\xbc\xda\xfa\x25\x3b\xca\x23\x42\xe5\xca\x66\x8e\x30\xe4\xc8\xab\x0f\x4e\x6d\x7d\x39\x5e\x71\xb3\x52\x23\xc6\x08\xb9\xd7\x20\x73\xc8\xe1\xa4\xb3\xc5\x4c\x2a\xdb\x5d\x23\x11\xd0\x45\x15\x75\xde\x6a\x0b\xa3\xc9\xc4\x85\x59\x76\x2d\x2e\x90\xec\xaf\xa0\x10\xeb\x6e\x9e\x1e\xb9\x27\xef\xde\x5c\x83\x47\x05\xdd\x5e\xb1\x1b\x6a\x21\x00\x7a\xe0\xda\x95\xf6\xb1\xf0\xec\x29\xa9\xd1\x76\x02\xde\x4c\xdd\xcc\x46\x7b\x22\x0a\x9a\xac\x36\x17\xd1\x90\xa8\xf6\xb5\xe6\x09\xe5\x0f\xa6\xc0\x12\xa4\x7d\xce\x55\x43\xd1\xfc\x2a\x45\xf8\xd5\x8c\x3d\x0a\x81\xbb\xbc\xa8\x3e\x02\x18\xb8\x68\xb2\x35\xc3\xcf\x89\x0f\xfe\x73\xd2\xed\xfe\xab\x76\xc3\x8f\xca\xda\x13\x37\xa4\x14\xd8\x71\xca\x2b\xb5\xeb\x33\xf9\xf0\x7c\x11\x61\x7a\xe2\xd9\x23\x8f\xd9\xec\x13\xa7\xab\x0a\x74\x89\x6c\xd8\x82\xb6\x83\xd1\x16\x88\xf2\x37\xef\xdf\x9f\xce\x7e\xb9\x38\xd1\x23\x4a\xa1\x48\xc4\x2a\x4e\xa4\x09\x91\xef\xb3\x90\x5d\xd1\x9c\xa3\xfd\xb1\x07\x58\x55\x5e\x3b\xa2\x4b\xf6\x5a\xb8\x75\xf4\xed\xf0\x2f\x6e\x09\xe7\xfb\x3d\xa5\x1a\xac\xe8\x8f\x08\x5a\x6f\x3c\x77\x69\x5a\xa6\xeb\x78\xf0\xf5\x82\xcc\x94\xf4\x33\xa3\xc0\x2e\x26\x9e\x42\x3a\x90\x60\x8a\xee\xce\x17\x7e\x80\xfc\xdf\xa6\xd0\xbb\x84\x2e\x1c\x61\x87\xa9\x47\xac\x13\xd2\x10\x22\x0d\x0d\x87\x16\x61\x4c\xbc\x6f\xda\x0c\x27\x92\xa9\x63\xd2\x9f\x86\x1a\xa4\x77\x03\x97\x8b\xf9\x26\x28\x2f\xa2\x9c\x2a\x64\x47\x6b\x67\x30\x35\xd3\x76\x08\x09\x6f\x9e\xfc\x5e\xed\x79\xce\x8f\x47\xd7\xea\x9c\x82\x7c\x43\x45\x37\x29\x21\xa9\x34\x98\x2c\x8d\xb3\xc3\xae\x47\x56\x3c\x24\x24\x35\xe0\x8d\xa0\x5b\x28\x01\xc4\xa4\x08\x7a\x66\xd9\xeb\x73\xe8\xcf\x00\x35\xb5\x08\x12\x91\x45\x0c\xde\x9b\xc2\x66\xa2\x23\xc5\x69\xdb\xc3\x32\x2e\x73\x85\xd0\xc5\x37\x3c\x73\x79\x78\xfa\xa0\x62\x79\xc4\xe9\xe0\x76\x97\xf0\x0b\xb6\xe4\xaf\xd9\xf1\xd5\x5d\xc3\x8c\xb5\x59\xe3\x6a\xd4\x74\xf4\x52\xa7\xa7\xca\x11\x9c\x2f\x5b\xd7\x0b\x8c\x91\xd7\x52\xa1\x41\x6f\xe6\x0c\x7e\x80\xbf\x1c\x77\x7f\x1b\x5f\xaa\xcf\x20\x0e\x61\x85\x85\xdf\x5b\xfc\x91\xb4\x60\xe5\x19\x16\xf7\x2d\x53\x4c\x30\xe4\x35\x82\x8b\x73\x60\xeb\x81\xe9\x78\x84\x8b\x6b\x39\x39\x85\xb5\xa7\x90\x56\xf6\x89\xfa\x13\xae\x72\xd4\x69\x7a\xf0\x23\xd7\x99\x5f\x23\xe0\xdb\x57\xf0\x23\x26\x73\x75\xb0\x0b\x73\xbd\x66\xcc\xc0\x94\xb0\x4d\x65\x3c\xb8\x1f\x7f\x90\x51\xfd\x7c\x19\xb2\x0a\x06\xd3\x42\xa6\x76\x8e\xe6\x4b\xc3\x4c\xdc\x85\x26\x46\x06\x9e\x42\x23\x1c\xa4\x19\xde\x2d\x39\x67\xab\x67\x1d\xe4\x18\xbc\x0e\x74\x34\x0c\xee\x30\xe7\x57\x34\xbf\xc6\xb4\x64\xff\x22\x75\x66\xcf\xda\x8f\xf1\xa7\xf8\x06\x07\x31\x33\x64\xde\x0e\x0b\xb3\xad\x6c\x9b\x65\x06\xc4\x61\xcc\xb9\x22\xab\xf4\xe7\x68\xee\x40\x5b\x8e\x08\x60\x0b\x2d\x5f\xd3\x4f\x33\xec\x19\x29\xfb\x5f\xce\x2c\x64\xd3\x6e\x85\x39\x74\xf3\xe6\x70\x89\x7c\x7f\x69\x19\x01\x9a\x41\x3c\x75\xbc\x89\x71\x07\x3d\x6c\xdc\xf9\xc8\x9b\xe8\x0e\xbd\xbb\x21\x56\x99\xe6\x72\x2b\xf1\xca\xcd\xb3\xc8\x7f\x75\xbc\x7f\x7d\xf8\x6d\x74\x5b\x49\x4c\xa9\x7b\x11\xcb\xaf\x9d\x1d\xa6\x3e\xb7\xe6\xce\xe8\x66\x1b\xca\x2f\x74\x3e\xfc\xbb\x73\xf3\x23\x54\xaf\x20\xb3\xd1\x2b\x2e\x8d\x98\x83\x88\xe9\x8b\x3a\x16\x5e\xe1\xb8\x74\x52\x4e\x9b\x2c\xbf\x70\x40\x95\x02\x68\x9b\xbc\xea\x0f\x67\xdb\x5d\x6b\x60\xc6\x05\x1a\xcb\x74\x82\x16\xa0\xc5\x92\x92\x7e\x62\xb5\x9d\x98\x8f\x05\x98\x91\x27\xd9\x75\xe8\x3d\xbf\x82\x23\x79\xea\xc3\x31\x6f\x81\x7c\x6c\x61\x44\x85\xba\x51\x5b\xc2\x68\x53\x0f\x5f\x1a\x6b\x37\xf9\x4c\xd2\xa3\x93\x69\xe7\xcd\x67\x25\xab\x53\x7b\x8a\x60\x2b\xd0\x3c\xc5\xbf\x69\xc9\x72\xda\xe6\xa9\xde\xff\x34\x7d\xf5\xcc\xfb\x61\xa1\x9d\x32\x3d\x4f\xfa\x1b\xa4\x2b\x2a\x94\xb7\x53\xca\x64\xd2\xe0\x7e\x68\x99\x9c\x53\xc6\x4c\xe0\xb1\xef\x84\x72\x4e\x7e\x6b\xb1\xc5\x22\xbf\xec\xe5\x90\x64\xa4\x11\x24\xc3\x0c\xce\xd9\x2a\x1b\x17\xb4\x9d\x7a\xc6\x24\xd4\x8d\xfc\x31\x45\x3a\x9b\x14\x66\x10\xbe\x99\x65\x7c\xac\x4e\x98\x69\xaa\xaa\x40\x9a\x61\xed\xae\x16\x2d\x9d\xb5\x79\xba\xdc\xf3\x7e\xfb\xcf\xcf\xbf\x1d\x3b\xdb\xbb\xcf\x92\x6b\xb0\xca\x2a\x6e\x21\x5e\xea\xdc\x5e\xbe\xbb\xf8\x74\xf8\x18\xd6\xaf\xfc\xca\xa5\x34\xb1\x8d\x23\x49\xfc\x79\x06\xd0\x87\x9b\x6a\xe4\x97\x19\x9e\x22\xdf\xe6\xe4\x35\x7a\xe4\xe3\x7a\x84\x86\x71\x21\x65\x29\x09\x35\xc5\x6c\x53\x89\xa4\x16\x6b\x04\x1a\x74\xd7\xe0\xcc\x52\xce\x3d\x16\x58\x52\x61\xe6\xa2\xea\xd6\x76\xe7\x9d\x15\x39\x6c\x95\x30\xc4\x29\x97\xc7\x87\xc0\x5e\x9a\x65\x4d\x71\x15\x0c\x8d\x21\x0d\x86\x17\x29\xdb\x18\x9d\x25\xcb\xbc\xfd\x57\x5a\xcb\xd5\xf9\x4f\x82\x87\x54\x60\x42\x49\x6f\xd6\xc6\xe3\xb0\xa7\x87\xd3\xab\x77\xe0\xb7\xd2\xee\xb8\x44\x44\x64\x4c\x68\x11\x2e\xb6\x9c\xd8\x9e\x44\x4c\xe4\x65\xf8\x46\x66\x3e\x8d\x22\x9a\x21\xea\x87\xa9\x14\xfc\xef\x95\x74\x0a\xe4\xb1\x8e\x2a\x37\x12\x05\xf0\x86\xa1\xbb\x22\xe0\x95\x06\xcb\x49\x86\xa4\x30\x64\x37\xe6\xb3\x8c\x1e\x8b\x05\xae\xd3\x87\x4f\x2c\x13\x2c\x30\x1a\xa3\xd1\x82\xc6\x43\x85\x9f\xb5\xf2\x6d\xea\xa1\xf9\x38\xc9\x96\xa7\xf9\x74\xde\xc8\xa6\x89\xfe\xa7\xbd\x4f\xce\x2f\x1f\x97\xcf\xca\xde\xbc\x71\xf2\x8f\x22\x3a\x4f\x2c\xd3\x47\x34\x25\xea\x1a\x78\x5e\x32\xca\x33\x4b\x05\x56\x6b\xaf\xf1\x80\x68\x49\x4f\x8d\x41\x49\x09\xc0\xa6\x30\x4b\x35\x84\x6b\x0a\x21\x5d\xea\x41\x9b\xe2\x3d\xcf\x01\x9e\x8a\xa8\x50\xd3\x32\x7f\xe9\xee\xb5\x7b\xc7\xfb\x46\xf7\xb0\xdd\x3d\x3a\x06\xbd\xf6\xf1\xd1\xa1\xc1\xfe\xdb\x31\xba\x46\xb7\xd5\xee\x74\x8e\x5b\x07\xed\xa3\x83\xae\x11\xff\x91\xfc\x4c\x7e\x34\xc8\x8f\x9f\x66\x07\xed\x83\x93\xc3\x56\xb7\x7d\xb0\x7f\x04\xba\xed\xbd\xbd\x3d\x83\xfd\x97\xb6\x62\x74\x5a\xbd\xf6\xe1\xe1\x91\x11\xff\x85\xfc\xd6\x31\xe8\x2f\x9f\x66\xfb\xed\xe3\x03\xf2\x53\x6f\xff\x04\x74\xdb\xbd\xa3\xae\xc1\xfe\xcb\x1a\x68\x77\x7a\x47\xad\x76\xb7\x73\x34\xea\x18\xed\xce\x1e\xf9\xba\xdd\x39\x3c\x6a\x91\xef\xc9\xd7\x9f\x66\xad\xf6\xc9\xde\x51\x6b\xaf\xbd\xbf\x77\xa8\x18\x40\xfb\xe4\x98\x8e\xee\xe4\x60\xd4\xee\xec\xed\xb5\xbb\x47\x3d\xfa\xef\xde\xfe\x31\x69\xea\xa0\xd7\x6a\x77\x8e\xda\x07\x7b\xad\xf6\xfe\xe1\x41\xfb\xe4\xb0\x45\x5e\x30\xba\xed\x0e\x99\xdb\x7e\xfb\xa8\x67\xec\xb5\x7b\x27\xe9\x86\x5b\xe4\x11\xda\xf2\xde\xb1\x62\x76\xdd\x76\xb7\x4b\x9a\xd9\xef\x1e\xb5\xf7\xf6\x7b\xe4\xff\xf4\x97\x0e\x1f\x78\x6f\xda\x6a\x77\xba\x7b\x9f\x66\xa4\x9d\xe3\xd6\x5e\x7b\x6f\x4f\x31\x78\xf2\xdb\x31\xe9\xa3\xb7\x3f\x6a\x77\xba\xfb\xed\x6e\x77\x9f\xfe\xdb\xeb\x9d\x90\xd1\xef\xed\xf7\x40\xaa\xef\x56\xb7\xdd\xed\xf4\xc8\x08\x8e\x7b\x53\xf2\x34\x5d\xa2\xde\x81\x71\x44\xfe\xab\x5a\xa2\xee\xe1\x41\x8b\xec\xdf\x88\x8c\xa9\xdd\x3d\xd9\x6b\x91\x25\x6e\xef\x1d\xb7\xc8\x4f\xe4\x17\xd2\xc4\xfe\x71\xab\xdb\x6b\x77\x4f\xba\xaa\x26\x0e\x3a\x47\xad\x6e\xfb\xb8\xbb\x3f\x6a\x93\xe1\xed\x1d\xb5\xbb\x27\xc7\xed\x03\x32\xe4\xc3\xfd\xf6\xd1\x31\xd9\xb0\xbd\xe3\xf6\x3e\x69\xb3\x77\x7c\xd2\x3e\xee\x1d\xb7\xda\x94\x2e\x3a\xfb\x07\xb7\xa4\xdf\xe3\x4f\x84\x24\x49\x93\xbd\x43\x42\x18\xe7\x07\xed\x93\x23\xfe\x99\x10\x4b\xa7\x7d\x78\x42\x3e\xf0\x87\x3a\x06\xfd\x9d\xfe\x27\xfa\x72\xd4\x6b\x9f\xf4\x4e\x48\x73\x84\x3a\x8f\x8e\xdb\x27\x07\x07\xc6\x71\xbb\x73\x72\x6c\xf4\xda\x47\xfb\xbd\x57\xdd\x93\xf6\xb1\xb1\xdf\x3e\x3e\x01\xdd\x0e\x23\xcc\x0e\xef\x80\xec\x4d\xf7\xa8\xdd\xdd\xdb\x33\x8e\xdb\xfb\xfb\xfb\x86\xe2\x01\x83\x3e\x70\x44\x1e\x38\xea\xba\xdd\xf6\x61\xef\xc8\xe8\xb5\xbb\x7b\x80\x1c\xa6\xee\xb1\xc1\xff\x61\xdb\x10\x76\xbb\xb7\xf7\x49\x24\x1d\x38\xae\x6b\x5a\xe6\xff\xfc\xf0\xc3\x0f\x32\xbb\x3f\x2e\x79\x69\x26\x42\x00\xf9\x5d\x35\x83\xde\x42\x0e\x0a\x9c\x01\xc7\x6b\x79\xe0\x56\x8a\x0a\xd4\x4b\x00\x31\xc3\x28\x96\x14\x07\xcb\x1c\x65\x3a\xb5\x42\xd1\x7d\xae\x5d\x31\x21\x4e\x5c\xd1\xb7\x8c\x5f\xf8\xa4\x8a\x0c\x79\x89\xc6\x32\xe3\x92\xeb\x19\x72\xf6\xb0\x95\x99\x21\xf1\x97\xb2\x7f\x89\xe2\x78\xf3\xa2\x26\x59\xfe\xa5\x56\x70\xb0\xd4\xf0\xc2\xcd\x9f\x8e\xa1\x69\x6d\xa6\xf6\xeb\xe0\xc2\x47\x73\x1b\xdd\x79\xbf\x3a\x81\x73\xed\x32\x35\x44\xc3\x9c\x9c\x52\x75\x27\x58\x9a\x16\xb9\xea\x58\x69\x5c\xd2\x5e\x47\x33\x7c\x31\x73\x1a\x20\xdb\xe4\x66\xda\x7c\xfc\xe6\x50\xca\x2c\xe0\x8b\x6b\xe5\x58\x91\xcb\x05\x33\xe6\x0f\x4d\xd7\xfc\x9d\x1a\x97\xda\x02\x5e\x75\xf8\x29\xfa\x52\xed\x6e\xb5\x4d\xe0\x51\x56\x0a\xaf\x8d\xf0\x5e\x8b\xc8\x39\xc9\x6b\x21\x65\x7f\x22\xef\xda\x5d\xf8\x51\x74\x13\x21\x91\x50\x7c\xa7\xc7\x20\x9b\x87\x45\x3b\x5c\xe0\xd4\x4e\x3d\x99\x11\xe5\xa4\x17\xa6\x5e\x7c\xd0\xcb\x1c\xb6\x03\x7a\xaa\x38\x91\xe8\x92\x45\x59\xbf\xce\x26\xe8\xb3\x13\xd6\x6a\x09\xf4\x56\x66\x0d\x6b\x27\xaa\xd1\x6d\x77\xe1\x0a\x47\x11\xef\x92\xd5\xa5\xd9\xd6\x92\xd1\x62\xac\xdb\x5d\xaf\xfc\x21\xc4\xfb\xfb\x19\x2e\x77\x7f\xe5\x01\x1e\x9b\x5a\x30\x6e\xae\x4b\x2d\x1d\x18\xb9\xb9\xdb\x9c\xf1\x4a\x22\x87\x40\xf9\xdc\xc2\x93\xc3\xfc\x63\x66\xbf\xcd\xec\x09\x19\x68\x3b\x44\xd4\xd7\xdc\x9c\xb3\xf3\x57\x5b\xa3\xe3\x58\xa5\xee\xed\xd2\xb3\xde\x50\xe2\xfd\xbe\x8c\xde\x59\x71\x05\x8b\xbc\xdf\xb9\xe9\x57\xe5\x04\xd7\x8c\x15\x2a\x2d\x87\x56\x5f\x7b\x91\xd7\x0a\x3d\x5a\x53\xfa\xfc\xcd\xeb\xcb\xf7\xaf\xfe\xb8\x78\x73\xfe\xfe\x97\x17\xaf\xaf\xce\xae\x5e\xbe\x79\xfd\xc7\xfb\x77\xaf\xa2\x0c\xd1\x5d\x6a\xb9\x69\x4f\xf1\x8c\x05\xcf\x52\xab\x10\xcd\xa3\x9b\x42\x77\x6e\x78\x08\xcd\xa1\x07\x7d\xc3\x43\x3e\x1c\x43\xdf\x0f\x4d\x47\x18\xf8\x13\x88\x4d\xcb\xfc\xe3\xda\x05\xde\x8d\x34\xec\x0b\x34\xa2\xe5\xe4\x45\x1e\xcd\x16\xe8\x3f\xac\x67\xb5\x39\x3a\x4f\x75\x99\x14\x05\xc2\x9f\x6b\xa4\xe6\xe2\x5f\xd2\xdf\xaa\xbf\x39\x64\xaa\x60\x5a\x11\x8b\xf9\xed\x72\xdf\x1f\x23\x84\x93\x96\x45\x9e\xc6\xe4\x78\x63\x54\xce\xbc\xa8\x26\xe4\xf3\x37\x6f\x7f\x7f\xf7\xf2\xc7\x9f\xae\x12\x44\x9c\x20\xdd\x2a\x54\xfb\x7f\xff\x9f\x2c\xbf\x67\x75\xfb\xfb\x8b\xb3\x77\xa9\x1c\x6a\xc2\x37\x7e\x02\xc1\xd4\x39\x47\xfe\x3c\x57\x47\x97\x43\x44\x58\x79\xb0\xec\x4e\x7f\x7d\xf1\xee\xf2\xe5\x9b\xd7\x59\x19\xdb\x95\xd7\xf0\xd1\x31\x03\x69\x05\xa2\x48\xda\xff\x7e\xdc\x1b\x3d\x6d\xb5\x0c\x53\xb5\x34\x3f\xbe\xbc\xfa\xe3\xf2\xa7\xb3\x68\xe0\xad\xd6\x7f\x3f\xee\x45\x47\x9b\xe6\x7a\x14\xd3\xac\xf0\xce\x21\x1b\xb8\x2d\x17\x2c\x59\x9d\x23\xe1\xa1\x5b\xdd\xe7\x90\x74\x19\x54\x70\x3a\x40\xe0\xe2\x29\xb5\x7d\xb5\xc2\xe4\xaa\x4d\xa7\x79\xbc\x08\xfe\xf9\xe1\xfc\x4a\x9d\x65\x54\x22\xc4\x7c\xcb\x71\xe5\x8f\x38\x98\x1c\x2d\x30\xb5\x77\x0e\xd9\x10\x0d\xf6\xb7\x81\x91\x1c\x32\xae\x44\xc1\x90\xf9\x3f\x8d\x3d\x7f\x43\x5f\x2d\xe5\x8e\xaf\x23\x96\xbb\x7a\x34\x77\x18\xcf\xfd\xf2\xad\x71\x66\xdb\x3e\x0c\x82\xa7\xb1\xec\xed\x75\x86\x6f\x57\x0f\xe0\xd6\x0a\xe1\xae\x21\x88\x9b\x59\x76\x15\xf2\xa3\x30\xfa\x62\x53\x0a\x08\x4d\xc7\xc2\x2b\x2f\x6a\xdb\x4e\xbe\x84\x30\xd5\xb8\xf3\xdf\xc2\xd2\x28\xde\x70\x92\x2d\xec\x41\x7d\x0d\xfa\xa1\xa1\xf9\x90\xd0\xbc\x0d\x13\x03\x12\x27\x22\x36\xa2\x62\x54\xc6\x7a\xb8\x76\x8a\xe7\xae\xc4\xb7\xa1\xdd\xf2\x61\x80\x16\xfe\x08\x6e\xc1\x65\xfc\x9f\xfd\x83\x8f\xaf\xff\x83\xd4\xbc\x9b\x8e\x4f\xdf\x5f\x9c\x63\x1d\x17\x95\x92\xc9\x0e\xdc\x39\x78\xda\x0a\xbf\xc8\x17\xb6\xcd\x0c\xc4\x1b\x42\x03\x80\x71\x83\x4c\xb2\xcc\x91\x7c\xc8\xeb\xf4\xa3\x5e\x78\xb7\xec\xcf\xd0\x39\x46\x89\xd7\x69\xf8\xbb\xfc\x72\x34\x79\xdd\x98\x6c\x35\x41\xc7\x37\x22\xd2\x22\xe3\xb6\xeb\x30\xcd\x3a\x9b\xd7\x29\x7c\x57\x29\x5d\x8a\x0e\x5c\xd4\xfb\x2b\x15\x14\x5f\x72\xd1\x8b\xf6\x3d\x2a\x3a\x58\xb8\xf8\xe5\x43\xdd\xd5\xb1\x78\xb1\x4c\x85\x85\xc7\x4e\xef\x72\xb5\x6c\x05\x1e\x9d\x7f\x19\x26\xc1\x6f\x6d\x4d\x93\x03\xc9\x5f\xd7\x9c\x73\xa1\x9b\x6f\x50\x7d\x7b\xba\xb1\x0b\x5d\xe9\x33\x13\x9b\x53\xcd\x6f\x16\xdb\x2e\x29\x00\x6c\x0e\x82\xc0\xf1\x32\x50\x87\xd7\xbc\x41\x99\xd3\xaa\xb4\x51\x1d\xcb\x44\x78\x0a\x7d\x83\x4f\x49\x56\xaf\xe6\xee\xc2\x07\xae\xf3\x09\xe6\xae\x66\x78\x2f\x0c\x06\x94\x99\xa3\x05\x6e\x8d\xd0\x82\x82\x91\x0c\x44\x1a\xfd\x9a\x0e\x67\x76\xc0\x68\xfd\xb7\xbb\x74\x33\x97\xbf\xe1\x43\x9b\xe6\xd6\x62\x20\x7f\x58\x5c\x9d\x2c\xaf\xae\x35\x81\x98\x1f\x2d\x16\xed\x25\xdd\x00\x03\xf9\xc6\x05\x0c\xb0\xe3\x81\x30\x24\x79\x3d\x18\x25\x51\xc8\x6f\x47\x46\x9e\x7b\xc4\x18\x25\x49\x52\x2b\x4f\xac\xae\x13\x90\x23\xec\x52\xec\x8c\x6d\xe4\x52\xfd\xfa\xf3\xed\x6f\x17\xde\xbb\x0c\xbc\xcb\x11\xa4\x21\x42\xb9\x19\xe8\xac\x56\x35\xa1\x8e\x5b\xd8\x0a\x46\x3e\x72\x5d\x70\xed\x4a\xc0\x91\x18\x4c\x5e\x73\xe8\x12\x66\x73\x6c\x05\x94\xd1\x99\xec\xe1\x96\x0b\xc7\x38\xfa\x0b\xa3\x79\xf8\xc7\xb9\xa0\xf6\x91\xeb\x40\x0f\x5f\x3a\x9f\xe0\x79\x44\x2f\x34\xd2\x93\x6e\xf9\x1f\xbc\x61\xf2\x40\x44\x31\x7f\xb0\x46\x5e\x91\xe6\x93\x5f\x5e\xa1\x79\xae\xc3\x3e\xd6\x7f\xa1\xd3\x5e\x31\x3c\x2f\x23\x8d\x3c\x11\xf1\x1c\x3a\x15\x8e\x15\xd0\x9d\x7f\x90\xe5\xcf\x91\x1f\x23\xe9\xe6\x20\x04\xd1\x17\xb2\x00\xfb\x33\xcc\xdf\xea\x76\x89\xb2\x2f\x7e\xe4\xe0\x8d\xe1\xc3\x32\xce\xed\xf1\x96\xf2\x99\x13\x27\xa1\xfc\x51\x62\xc6\xc2\x6d\x25\xdf\x1c\x5f\xfd\x79\x34\x5f\xbc\x9b\xaf\x9c\x7c\x23\x07\xd9\x85\x30\xcd\x92\xe2\x13\x45\x85\x67\x23\x3d\xd3\xa5\x30\x53\xf0\xcd\xa4\x95\x24\x18\x73\x9d\x51\x78\x66\x12\x66\x93\xbb\x1a\xf8\x9e\x48\x88\x90\x6c\x80\x96\x49\x64\x96\xa4\x64\x67\x66\x06\xc4\x91\x97\xe2\xe0\xc8\x0a\x58\x65\x65\xb0\x5d\xde\x6f\x0a\x7d\x3a\xd3\x3c\xa2\x35\xa8\xfc\xc0\x3b\xb3\x12\x74\x64\x71\x96\x4f\xb6\x78\x97\x3f\xf9\x8c\x11\x5d\xa3\x30\x8b\x67\x4d\xe3\x89\x9c\x52\x9a\x43\x12\xe8\xa9\xd9\x70\xb7\x6a\xde\xcc\xb6\x42\x23\x1f\x69\xa5\x79\x25\xbf\x59\x9b\x15\x4c\xe6\x73\x55\xb9\x24\x73\xa9\x6c\x3e\x71\xfb\xe4\xb7\xcb\xdb\x83\x73\x35\xe0\x83\xb2\xd6\xb5\xa4\x3e\x25\xa2\x8f\x59\x54\x71\xfc\xf4\xe9\x33\xc5\x95\x39\x5e\xed\x69\x30\xd2\xc6\x94\xdf\xd5\x98\xcc\xbd\xe9\x5d\x3d\xbb\xf8\xf4\xe3\xfe\xeb\xb3\x8b\x32\x20\x14\x4a\xe0\xe6\xe8\xc6\xa0\xf3\x61\xd3\x49\x55\x2b\x88\x7e\xfb\x23\x76\x33\x26\xd2\xe7\x4d\x85\x40\x55\x1e\xea\x42\xae\x13\x20\x43\x94\xb3\xbc\x34\x3a\x14\x83\xae\x58\x2b\x12\xbd\xa2\x64\xac\x68\x40\x86\x99\x67\xbb\xc8\xab\xdf\x40\x7a\xe6\x68\x92\x69\x29\x20\x56\xfd\x20\xde\xbb\xfc\x48\x41\x05\x07\xd9\xbd\x1b\xc7\x0e\x8c\x5a\x49\x4c\x4d\xb8\x77\xd7\x5a\xdb\x41\x1d\xe3\x9f\x61\x5d\x89\xcc\x60\x7c\xd3\x6a\xc1\xdd\x88\x99\x7a\x6b\x3f\xf3\xd2\xb1\x2d\x7f\xe6\x03\x38\xf2\x21\xde\x1a\x78\xcf\x59\xf0\xd2\x45\x07\xc7\xef\xca\x0a\xbc\x79\x79\x9e\x3e\xbc\x85\x20\xe5\x52\x53\x9b\xd2\xde\x85\xcf\x2a\x84\xc0\x82\x34\x95\x0c\xd1\x51\x72\x17\x30\xa9\x7c\x2d\xf7\x77\x6c\xdf\xca\x6f\x3b\x06\xd7\x2d\x0f\xdc\x6e\x7e\xc3\x5f\x7f\xea\x5c\x3b\xbf\x9f\x65\x58\x0a\x74\xd8\x7c\x32\xda\xae\x1e\x16\x5d\x01\x8d\x48\x68\xfe\xec\xa9\x24\xdb\xa0\x3f\x05\xee\x62\xe2\x8c\x97\x8a\xdf\x63\xd6\x80\xd4\x63\x6a\x14\xca\xa1\x94\x54\x50\x06\xde\x28\xab\x4e\x4d\xd6\x1d\x68\x99\x7f\x98\x9b\x9b\xda\x30\x76\x67\x63\x70\x2d\x46\x4a\x75\xbc\x11\xf2\xb0\x8f\xdc\xe0\x51\x8d\xd9\x32\xff\x98\x03\x8f\xbf\x98\x95\x0b\xc4\x7b\x60\xde\x03\x9d\xfa\x4b\xca\xf8\xae\x44\x2b\xc3\x32\xf7\x94\x7e\x66\x8f\x3c\x82\x58\xf3\x65\x52\x6e\xb4\xc2\x6b\x1f\xc9\x9d\xc9\xf9\x5f\x35\xc6\x19\x6c\xcb\xcc\x0a\xbb\xb3\xd1\xef\xef\xbf\xff\x77\x85\xdb\x32\x66\x0d\x5a\x5d\xa8\xca\x17\x31\x8b\x25\x6c\x3d\x61\x3c\x3a\xd4\xd2\x91\x64\x0c\xde\x4e\xd4\xd6\x51\x02\x1a\xb0\xa7\xf2\xc4\xd7\x24\x43\xcf\x12\x45\xf5\x4c\x54\x18\x5c\x73\xbe\x50\x6e\x86\x62\xac\x59\x7c\x25\xf4\x8d\x24\xcd\x7c\x35\x09\x13\x12\x51\x57\x3a\x11\x0b\x17\xf8\x5b\xf5\x3f\xf4\x3e\xba\x97\x47\xf3\xf1\xb4\xa2\xff\xa1\xdb\xb5\x7a\x6a\x26\xce\x9c\xa8\x20\x38\x07\xf3\x18\x94\x4e\x2e\x1b\x1d\x89\x87\xc3\x70\x8e\x44\xed\x87\xf0\xf7\x2c\x03\x52\x6f\xe5\x6a\x25\xf2\x78\xf0\x14\x02\x65\xc0\x96\xf8\x3d\xc3\x7e\x56\xd5\xcc\x98\x37\xfa\x9c\x35\x3e\x13\x75\x8d\xb4\x52\x33\xc3\xb9\x99\x45\xc5\x98\xce\xa2\x6f\xaa\x54\x39\x14\x56\xa2\x54\x5d\xbd\x32\x9c\x34\x87\x8f\x0a\x6f\xa6\x99\x6d\x17\x2a\xca\x67\x29\xb6\x1a\x6e\xd3\xc3\x86\xa9\x15\xf8\x8b\x75\xb2\x29\x8e\x49\x45\x37\x1b\x6b\x20\xdf\xcd\xa6\x85\x42\x6a\xb2\xdf\x35\x74\x00\xe5\x01\xf6\xd1\x5d\xde\xe9\xd5\xf1\xf0\x6d\xf0\x80\xdb\x85\x07\x3c\x15\x38\x53\xd1\xf0\x1f\x99\xaf\x92\xf3\x8d\x85\x39\x84\x67\xd9\x4a\x96\x2d\x2d\x74\x0c\xd4\xb2\xb6\x59\x22\x76\x09\x56\xb1\x1d\xe7\x6c\x5a\x52\xa8\x2e\x6d\xd8\x10\x03\xc7\xdd\x42\xba\x44\xe7\xec\x03\x5c\x5e\x5c\xaa\x61\x63\xd9\xae\x8a\x92\xaf\x05\x22\xc7\x5e\x52\x9e\xc4\x94\x1f\xc7\xa9\x9d\x46\xdb\x8a\xc9\xaa\x4d\x5a\x19\xd7\x7b\xee\xe5\x5e\xed\x62\xdf\x2b\xe1\xd7\x2a\x7d\x37\x97\x71\x84\x45\x5d\x70\x0f\x63\x4d\xf6\xa0\xd8\x9a\x6d\x9f\x15\xef\x49\x16\x88\x28\xd5\xa2\x2c\x87\xa8\xc4\x44\x73\x4c\x47\x69\x43\x7f\x58\x09\xa1\x15\x2c\x66\x33\xe0\x2f\x5b\x72\x66\x88\x19\x61\xcf\xa4\x16\x49\x81\xb9\x37\x45\x77\x86\x44\xf0\x6a\x20\xa1\x6c\x9f\x70\x86\x9f\x38\x4b\xc6\x4d\x2d\x10\x72\xe9\x80\x2c\x73\x2f\x4f\x28\x2e\xb6\x0e\x27\x9c\x2a\xb1\x24\x99\x7c\x6f\xcc\x81\x50\x1c\x57\x5d\xe8\xd2\x5e\x4a\x2b\x69\xef\x2a\xf2\xa1\x98\x15\xa0\x89\x36\x46\x49\x3f\x39\x36\xd4\xa1\xa4\xec\x69\x28\x8f\x6c\xd4\x62\xb1\x0c\x13\x35\x9f\x73\x9a\x4b\xdd\xdf\xd9\x84\x9e\xfd\x7d\xf1\x51\x51\xd8\xe1\xac\x9e\x42\x99\x4c\xba\x32\xea\xb7\xca\xc9\x97\x7b\x05\xe9\x00\xdd\x40\xaf\xe5\x3a\x01\xde\xbc\x60\xf0\x3e\xf8\xe9\xdf\xf3\xe5\xfe\x71\xdd\x82\x41\x56\xa0\xbc\x88\x7e\xd5\x0e\x93\xdf\xa7\x12\x46\xca\x56\xe3\xc5\x70\x8b\x44\xf4\x6f\x80\x7c\xdc\xba\x26\x6a\x9b\x79\x46\x33\x04\x91\xff\xf2\xe2\x14\x04\x23\xa1\xc8\xc5\xaf\xd4\xfc\x5a\x37\x1d\xd9\xe8\xa1\x87\xe3\x1b\x4f\xf6\x2b\xb2\x98\xf0\xa8\xb4\xf0\xa9\x55\x61\x78\x15\x43\xc8\x17\x8e\xb2\x4d\x13\xa1\xa0\x23\x16\x31\xef\xec\x26\xdf\xba\x1c\xa1\x79\x26\xf2\x8b\xea\x85\x0b\x18\x8c\x7c\x67\x9e\x4e\xc6\x2e\x35\xd7\x1c\xa9\x24\x5b\x45\x2b\x95\x57\x91\x0b\xc0\xd2\x86\xb6\x83\x23\xed\x58\x5e\x3a\x15\x36\xae\x48\x4e\x4f\x42\x4d\xf3\xef\xc9\xc4\x55\x17\x06\x0f\x34\xc7\xfe\x82\xdc\x40\x50\x52\xfb\x62\x1d\x5a\xc7\xc2\x03\xe2\x15\xa4\xe9\xe7\xb3\x65\x8d\x75\xea\x2a\x1c\x58\xaf\xd0\x08\x50\xf7\x8e\xe9\xd2\x4f\x96\x39\x71\xd1\x35\x75\x59\x7b\x49\x90\x82\x9a\xc7\x92\x91\x0f\x54\x55\x09\xcd\xb9\x61\xd6\xab\x75\x86\x77\x42\x95\xfb\x64\x86\x26\x3e\x98\x4f\x97\x2d\xfa\xcf\x16\x90\xb0\x2f\x3e\x7a\xf6\xe4\xc7\x3c\x75\x53\x19\xf2\xc6\x30\x79\xc9\xf1\xe0\xa0\xbc\x91\x57\x24\x60\xa6\x37\x21\x1e\x0a\x8c\x5e\xe5\x03\x4a\x95\x72\x92\x50\x26\xa2\x55\x12\x7d\x52\xa0\x80\x31\xf2\x67\x61\xa0\x13\xf9\x82\xce\x8a\x9f\x53\x22\x6b\x85\x0e\x18\x6e\x0b\xec\x85\xee\x55\xcb\xd0\x7a\xac\xa9\x72\x94\x24\x07\x9a\xcb\x97\x46\x8e\x3f\x4a\xe9\xdc\xd7\x60\x74\x33\xf1\xd1\xc2\xb3\xc5\x7c\x42\xfc\x6b\x76\x95\xb1\x97\x2c\xb3\x23\xbb\x64\x73\x45\x4b\x65\x3f\xe0\xa3\x13\x14\xf4\xd0\x5d\x7b\x0f\xbd\xb5\xf7\xb0\xb7\x5a\x0f\xd7\xc8\x97\x12\x94\x33\xfa\xd8\xcf\xef\x23\x5b\x2e\x56\x90\xb3\xeb\x78\x30\x28\xb6\x29\xd8\x4e\x80\x81\x47\xd1\xff\xca\xc4\x99\x78\x30\xf3\x90\xf8\x08\xf3\x13\xc2\x59\x2f\xfb\x82\xb2\xd4\x66\x64\x1e\x5e\xf6\x12\xc1\x01\xcb\x70\x0f\xc9\xcf\x36\xc0\xa0\xe5\xd1\x22\xbb\xb1\xa7\xec\xd4\x43\x62\x06\xc9\x07\xc5\xd7\xc9\xe7\x03\x38\x21\x53\x4b\x3c\x2e\xbe\x55\x6e\x80\x8e\x83\xbf\xfc\x06\x11\x55\xb2\xd8\x76\xa1\xa4\xa6\x39\x72\x3c\xa1\xb5\xfb\xa6\x65\x1e\x98\x3a\x84\x99\xe2\x78\xcc\xe6\x53\xc4\xeb\x3a\x56\x58\x2c\x92\x8f\x99\xf1\x8c\x1c\xce\x95\x41\x2f\x27\x96\xf9\xb1\x67\x5a\xe6\x51\x27\x7f\xbc\xd2\xab\x18\x7e\x14\x13\x25\x1a\xc7\xd1\x01\xff\x63\xc9\x06\xc1\x50\xd3\xc9\x1f\xed\xbd\x5e\x2c\xc5\x9d\x26\x0f\x22\x7f\x06\x70\xcb\xa3\x55\x9b\x43\x92\x9f\x39\xae\xeb\x04\x70\x84\x3c\x5b\x4c\x85\x66\x91\xce\xc0\x47\x67\xb6\x98\xfd\xe0\x33\xdb\xc2\x85\x33\x71\xe8\x05\x39\xe8\x25\x92\xe6\x66\x39\xf8\x58\xf9\xbf\xd4\xbb\x09\xdd\xaf\x67\x13\xba\x5f\xec\x26\xf4\xbe\x9e\x4d\xe8\x7d\xb1\x9b\xb0\xf7\xf5\x6c\xc2\xde\x06\x36\x21\xfd\xed\x26\xcc\x62\x09\x2d\x44\x53\x8f\xb1\x47\x9b\x57\x57\xf0\xf8\xe5\xf5\xaf\x17\xf8\x40\x2f\x37\x67\x9f\x57\xef\x8f\x95\x5d\x09\xed\x51\xb6\x69\x71\x04\x75\x7b\x44\xd6\xd5\xbc\xf3\xc1\x7c\xce\x6a\xd1\xa8\xa1\xb3\xf3\x33\x65\x23\xec\x21\x17\x62\x45\xa5\xc6\xfa\xb5\x50\x7b\xa4\xbd\x55\xbb\x1c\x5c\x77\xc3\xfb\x75\xe2\xf9\x7f\x7e\xff\x9f\x77\xae\xde\x7e\x69\xac\x60\xe5\x95\xa2\x0b\x10\x2d\xd7\x13\x8d\xe5\xda\x6d\x09\xd0\xe0\x2d\x95\x10\xfd\xf1\xfd\x9f\xf8\xee\xd7\xc9\xa7\xea\x25\x44\xaf\xa6\xd0\x60\xe6\x26\xe3\x9c\x45\x3a\x1b\xaf\x9c\x00\x1b\x8d\xb3\xf3\x57\x4d\x23\x58\x06\x18\xce\x2c\xe3\x6e\xea\x8c\xa6\x86\x08\x85\x36\xe6\xd0\x9f\x39\x41\xe0\x20\x2f\x30\xc6\xc8\x37\xf0\xd4\x09\x8c\xf7\x2f\x2d\xc3\x09\x0c\xe8\x51\xac\xe5\xe8\xfb\x91\xbb\x08\x30\xf4\xdb\xc6\xef\x68\xe1\x1b\xd4\x18\x62\xbc\xbc\x30\xee\x1c\xd7\x35\xae\xa1\x11\x80\x5b\x68\x1b\xd4\xb6\xe4\x2e\x0d\xe0\xd9\xa4\xf5\x80\x0c\x01\x4f\x7d\xb4\x98\x4c\x8d\x5b\x27\x70\x70\xd0\xce\x2a\x1c\x4a\xaf\x9a\x2c\x4b\xc1\xd8\x81\xae\x1d\x40\xac\x96\xd5\xcd\x74\x3a\x6c\x2c\x91\x43\x5c\x19\xda\xe0\x4e\x14\x87\x75\xe4\x43\xfc\xf2\xc2\x40\xbe\x71\x45\x26\x9b\xcf\xe1\x85\xc9\x8d\x15\xd7\xf2\x64\x74\xc2\x28\x32\x8b\xc7\x84\x25\x40\x32\x28\xa6\xcc\x1d\xf2\x6d\x33\x84\xbf\x20\x5d\xb3\xca\x86\xec\xa3\x72\x38\x99\xa6\x34\x9d\xbb\x25\x9e\x0a\xa1\x2a\xda\x1a\x2c\xae\x67\x0e\x5d\xb6\x8c\x3a\x11\x21\xd0\x76\x6a\xdc\x92\x08\x70\x09\x6e\xe1\xba\x6e\x36\xf5\xe9\x2d\xc7\x29\x77\x5b\x21\xaa\xf8\xc6\x4f\xfd\xef\xd3\xf3\xdf\xec\x60\xae\x06\xcc\xd4\x3a\xf5\x67\xe7\xaf\x02\x03\xf8\xd0\x10\x93\x30\x1c\x8f\x9d\x56\x0e\x1a\x1b\x1e\xda\x2b\xf2\x25\x39\xd7\x78\x0a\x0d\x3e\x3a\xe3\x1a\x4e\xc1\xad\x83\x7c\xcb\x00\x81\xb1\x44\x0b\x63\x0a\x6e\xa1\x81\x91\x01\x3f\xce\x5d\x67\xe4\x60\x77\xc9\xf9\x00\x79\x6d\x96\x79\x74\x53\xe3\x7a\x05\x81\xef\x19\x33\xe4\x43\x36\x20\x98\x9b\x9a\x50\x0e\x7a\x76\xb2\x70\x6c\x18\x90\xcd\x53\xe1\xcf\x56\x81\x9e\x3d\x3b\x7f\x65\xd8\xd9\xf0\xb3\x6b\x20\x58\xb1\x5d\x65\x69\x95\x8b\xe3\x9b\xa6\x53\xe7\x7c\xf1\x3d\xf6\x33\x0a\xe1\x8a\x82\xd1\x96\x28\xd3\x1c\x95\xb1\xa4\x5e\xf9\xb1\x43\xc6\x2c\x80\x5a\xd3\x44\x5d\x23\xdf\x57\xa7\xc5\x52\xee\x9f\xae\xd3\xc3\xfc\xa8\x02\xcb\x55\x38\x27\x4c\x63\x0a\x82\x56\xbc\xa8\x6a\xb6\x46\xa3\xbe\x3a\x58\x5b\xe5\x6f\x8b\xc4\x35\x11\xab\x7e\x18\x1b\x74\x38\xd8\xf4\x93\x25\x2e\x05\xa3\x54\xc6\x73\x56\xb9\xa3\xf8\x32\x5e\xd1\x5d\x56\x2e\x63\x3a\xa4\x49\x65\x0c\x25\x3b\xa6\x1b\xd8\xa9\x26\x82\x6c\xdd\x33\x63\xc7\x04\xa4\x34\x98\x3b\x38\x04\x3d\xeb\x9e\x58\x07\x72\xfc\x4a\x31\xc4\x9a\xa1\x97\x40\x1d\x85\x86\x5f\x71\xe8\xe2\x74\xc6\x89\xe8\x3b\x37\xe3\x24\x9e\x4c\xc8\xf7\x41\xac\x7f\x6a\xfc\xab\xa5\x46\x97\xaa\x7a\xa6\xa6\xb8\xb4\x5a\x74\x50\xde\x80\x5b\xab\x84\xf7\x16\xb9\xce\x68\xb9\xbe\x9b\xe9\x7f\xfc\x85\x0b\x5b\xc1\x1c\x8e\x9c\xb1\x33\x8a\xe0\xca\x6a\x00\x4b\x6f\xfc\x74\xfe\xca\xf8\x81\xda\x32\x9a\x66\x61\x44\x52\x88\x99\x6e\xc3\x16\xb4\x1d\x8c\x24\x0c\x37\xb1\x8a\x09\x44\x34\xe4\xdd\xc0\x25\x3b\xfc\x05\x27\xfe\xdd\xc2\xa5\x07\x36\x51\x89\x5a\xfc\x60\xc5\x5e\x0a\x1f\xd6\x24\x34\x5d\x76\x66\xa6\xa2\xc4\x47\x3e\x64\x1e\x8f\xf2\xe0\x0a\x75\xd0\x56\x76\x74\x46\xf1\x05\x90\xe4\xf6\x2c\x5c\x21\xc7\x71\xae\xc8\x18\xef\x58\xe6\x6f\xf0\xbf\xdf\xb9\xae\x31\x21\xb4\x05\x30\x34\x80\xf1\xfe\xfd\xcb\x0b\xc3\x19\x33\x01\x91\xde\xac\x44\x20\x74\xe1\x18\x1b\x70\x36\xc7\xcb\xb6\x8e\xa9\x4a\x23\xb8\x4c\xad\x7f\xe4\xc4\xc5\xad\xb4\x6f\xf9\xba\x0b\xf5\x39\x45\x12\xbe\xb2\x3e\x91\xb4\xd6\x4e\xf0\xd6\x77\x02\xcc\x91\xe4\x13\x3f\xbd\xf4\x6e\x81\xeb\xd8\xaa\x82\xe3\xc9\x8b\x39\x55\x7a\x28\x55\xbb\x88\x2f\x59\x86\x6e\xc5\x97\x41\x1e\x41\x86\x5a\xa5\x91\x99\xbb\xc2\x22\x65\xcd\xbf\xec\x7c\x16\x73\x5b\x73\x3e\x79\x74\x96\xbe\x29\x32\xa6\xe6\x43\x2e\x33\x66\x2d\x2f\x97\x54\xb3\x86\x73\xce\x7e\xcf\xe1\x31\x84\x7d\x79\xb6\xf8\xe8\x21\x9c\x45\xc1\x9c\x56\x3c\x84\x5b\x69\x7a\x61\x81\x41\x26\xf0\x90\xb7\x9c\xa1\x08\x51\xb9\x30\xfe\x8e\xcb\xd5\xf4\x52\x49\xd5\x44\x88\xaa\xc8\x0f\xcc\x33\x1f\x52\xcd\x2e\x58\xf0\x0f\x77\xc0\xa3\x15\x03\x6c\xe8\x42\x0c\x19\x2f\x20\x0a\x10\x35\xe8\x3c\xaf\xa1\x7e\x42\xb6\x88\xa6\xda\xa9\xd8\x77\x31\xb6\xcb\x06\x98\xbd\x89\x61\x8d\x04\xcb\xe4\x8f\xc6\xb7\x93\xff\x35\x07\xbe\x70\x2a\x4b\xc1\x6d\xa2\xe9\x3c\x7a\xcb\xab\x76\x10\x62\xc8\xe9\x2d\x81\xc4\xf2\xd9\x58\x5b\xf2\x06\xa6\x77\xce\x4a\x6b\x55\x43\x36\xf7\xbd\x70\xee\x8a\x60\xfe\x22\x43\x74\xd7\xea\x59\x7b\x1a\xb1\x52\x65\xd8\x7b\xfc\xaf\xba\x14\x64\xa2\x14\x96\x55\x8e\xb7\x02\x43\xf2\xe7\xe2\xf2\xfd\xdb\x93\xab\x0f\xda\x76\x6f\x1a\x2a\x28\x40\x53\xbc\xac\x52\x9f\x21\x76\xae\xef\x83\xa5\xe0\x32\x53\x10\x4c\xa3\x77\x98\xbc\x12\xa2\x4a\x0f\xcc\xab\xb0\xe8\x5c\x6e\x51\x3a\x59\xab\xd5\x68\x95\x4a\xc9\x0e\xcc\x69\x77\x2e\x9e\x88\x5a\x8e\xb1\xbe\xac\xc2\x73\xca\x97\x2d\x33\xfc\xc6\x32\xd3\x23\xae\xdd\x51\xb0\x5b\x02\xbd\x21\x7a\x05\xe1\x50\xa4\xdf\x82\xaf\xe5\xe5\x87\xf3\x4e\x67\x6f\xf7\xa5\xb6\x6f\x4c\xa9\x31\x62\xa1\xaa\x8b\x0b\xab\xe8\xce\x51\x83\xd8\x84\x68\xf1\x89\x0a\x30\x05\x02\x1c\x75\x22\x84\xf7\x8e\x31\x05\x81\x71\x0d\xa1\x67\x00\xdb\x86\x76\xbb\x64\x35\xe1\xab\x29\xf4\xa1\x71\x07\x02\x03\x78\x06\x55\x43\x48\x3b\x8e\x37\x21\x37\x9e\xd4\x4d\x56\xbb\x9a\xe8\xff\xf9\xcb\xc8\x45\x9c\xc7\xb1\x8c\xd4\x1b\x53\xc3\x32\x06\xe0\x76\xc3\xcb\x18\x5e\xfb\x5b\x5c\x46\xb2\x04\x6c\x1c\x75\xac\x21\x6d\x69\xd3\xc4\x98\x04\x19\x5d\xfb\x12\xbe\x46\x77\xc6\x82\xd6\x11\xf0\xe0\x5d\xf1\x2c\x4b\xac\x1f\x6b\x15\x4f\x01\xde\xd0\xe2\x8d\x5c\xe4\x3d\x02\x0a\xa4\xc3\xa8\x83\x00\x49\x43\xab\xd1\x5f\x86\x60\x58\xfd\xab\x7a\x6f\x70\xf9\x3a\x2e\x79\x97\xf3\x0c\x91\x0d\xdf\xe0\x87\xde\xf1\xb3\xf9\x45\xe7\x72\x35\x8f\x8a\x76\x45\xbd\xb0\x56\x4e\x96\x1b\x66\xdf\x32\xc1\x7c\xde\xba\x75\xe0\x5d\xda\x34\xe8\x22\x60\xf3\x92\x27\x26\x18\xb9\x06\x5f\x32\x5e\x0f\xff\x95\xf8\x35\x23\x73\x2b\xae\x37\xc9\x5b\xa5\x55\x73\xad\xdb\xb3\x4c\xb1\x57\x49\xb1\xeb\xc4\xea\x76\xf2\xb2\x1e\xe9\xef\xd9\x3a\xdc\xb5\x0f\x81\x3d\xf2\x17\xb3\x6b\x9d\x1c\x4c\xae\xc3\xa2\x1c\x1f\x83\x99\x44\xd1\xd7\xce\x57\xca\xf0\x91\x9c\xb9\xae\x71\x25\x64\xe0\x0c\x23\xaf\xbe\x75\xae\x7a\x26\x1a\x9f\xd8\xb4\x5b\x64\xbd\x8b\x9b\xc1\xf4\xb4\x63\x53\x2a\x6e\x93\x30\xa3\x69\x04\x56\x15\x34\xfe\x1a\xde\x31\x6e\xa7\x6d\x51\xaa\xb8\x96\x51\x1e\x7c\xf1\x75\x91\x67\x2d\xca\x7e\xff\xeb\x29\x81\x79\xa4\x5b\x02\xf3\x38\x5d\x02\x33\x6e\x38\xa3\x55\x30\xc3\x50\xa4\x92\x75\x30\xc5\xff\xce\xe5\x46\x4a\x65\x9e\x1d\x59\xc7\x35\x54\xc4\x4c\x31\x10\x55\x91\xc9\xc3\xfc\x22\x93\x89\xf9\x38\xd0\x0e\x67\xf4\xb4\x82\x6b\xee\x70\xe5\x7a\x99\x5a\x93\x3a\xd0\x9f\x94\x56\x15\x4d\xfd\x09\x1e\x68\x5b\xbb\x0c\x5d\xfb\x65\x96\xa9\x99\x0a\x93\xd9\x96\x66\xf2\x33\xdb\x2b\xa5\xb9\x79\x75\x43\xef\x22\x78\x4c\x56\xde\x42\x5b\x2e\xd1\x5c\x32\x57\xeb\x7d\x90\xb1\x56\x6b\xb4\xdd\xc6\x29\xb8\x38\xba\xa0\x1b\x95\xf9\xcd\xf1\xd8\xa5\x89\xb4\xd2\x72\x56\x31\x9a\x77\x05\x5a\x84\x20\x41\x46\x62\xc6\xfb\xac\x1a\x21\x2b\x8d\x28\x32\x5f\x67\x8f\xa8\x97\x1c\x91\xd2\xfd\x52\xab\x35\xbb\xc4\xd5\xce\x81\xe6\x34\xe5\x24\x59\x60\xe5\xe1\x5a\x3a\xc8\x1c\x3a\x31\xe3\xd8\x5f\x94\xd7\x8e\x88\xb4\x5e\x52\x27\xe2\xd8\x12\x9b\x56\x8a\x46\xc1\xd1\x2e\x9e\x2d\x7c\x2d\xdc\x0b\xf1\x6f\x58\x81\x2e\x8c\x91\xc9\x57\x9f\xbc\x10\x98\x90\x6b\x51\x75\x6a\x46\x1c\x2f\x64\xfb\x9a\x51\xb7\x6b\x75\x7b\x79\x64\xc7\x1e\x58\x9f\x6a\x20\xb3\x0d\x72\xef\x30\x2d\x46\x37\x1c\x2d\x5d\xd7\x08\x23\xe4\x5e\x03\x3f\x82\xed\x29\x4c\x0f\xad\x2e\xab\xa7\x67\x97\x19\x1b\xa4\xf0\x86\x24\xac\xe9\x43\x15\x4b\x14\x8f\x84\xfc\x2e\xfc\xa2\xe2\x8c\xf8\xf2\x68\x69\x1f\xab\x20\xbf\x24\x79\x9d\x90\xde\xdd\x54\x6d\x48\x51\x1f\xd1\x12\xc5\x1c\xc3\xab\x42\x2e\xb2\x18\x19\xde\x7e\x90\xeb\x29\xca\x05\x16\x2d\x53\xf9\xa5\x30\xd6\x65\x06\x12\xf1\x01\xe5\xfb\x8e\xd6\x7c\x35\x64\xad\x3b\x1b\x1b\x65\x56\x6b\x07\xdd\xa1\x37\x84\x04\xb7\x13\xf6\x5d\x80\xb8\x53\x19\xb4\x26\x76\x72\x62\x98\x32\xf9\x71\xb1\x59\x6f\x89\x30\xc9\x35\x43\xd0\xc4\x07\x90\x03\x6a\x52\xc4\x1b\xd4\x6c\x21\x8e\x44\xa3\x42\xa0\x39\xaa\x50\x3c\x39\x9b\x93\x16\x4c\x28\x15\xcc\xc2\x4c\xd8\xbc\xf3\x30\x8a\x77\x06\x3c\x30\x81\xb3\x88\xc4\x4b\xc4\xe5\x26\x46\x90\x55\x6e\x5a\xf4\xb5\x4a\xd5\x81\xfc\x8e\x95\x55\x79\xca\x75\x1b\x57\x07\xd5\x2b\x5f\xb3\xb9\x28\x57\xf1\xe3\x3f\x12\xe9\x42\x88\x42\x43\x6b\x40\xe7\x12\x69\x1f\xb5\xd8\x81\xd8\x03\xc9\xfa\xb9\x42\xfa\x92\x2a\x00\x47\xf1\xc5\x72\x9c\x4a\x8e\x71\x67\x3f\x65\x05\x52\x50\xe3\x41\xf8\xf8\x5e\x5e\x34\xb3\xbe\xb1\x27\x41\x1c\xc9\x1a\x30\x79\xaf\x18\x2a\x13\xaf\xde\x6b\xc6\x9a\xf8\x45\xc7\x32\x5f\xd8\x2c\x86\x2f\x3f\x30\x3d\x9b\x6c\x37\x38\xe3\x38\x06\xea\x87\x05\x5c\xc0\x9c\x52\x89\x74\xee\x1d\xd9\x28\x90\xc4\x94\xd4\xa5\x2e\xf5\xc2\x15\xaa\xbb\x8f\x74\xdd\x94\xd0\xe5\xd0\xb3\xcf\xb9\xa1\x29\x07\x79\x53\xd8\x9b\x56\x99\x77\xea\xe6\x88\x22\x1b\x65\x62\xcd\x0c\x6a\x2c\x7b\x50\x37\xbd\x96\x32\xd9\x85\x71\x85\xf9\x6b\xaa\x0a\x27\x2c\xbb\xa8\xda\x88\x9d\x55\x1b\x4a\x69\x80\x79\xae\xb1\xd2\x26\xb2\xc4\x72\xcf\x75\xa5\x8d\x93\xd8\x42\xaf\x4c\x28\x25\xa3\x5d\x75\x85\x8c\xdc\xb1\x17\x87\x5a\xac\x32\x70\x85\xf5\xb6\x80\xba\xca\x28\x36\xf9\xe4\xa5\x47\xd1\x6b\xb3\x53\x1e\x26\xac\x82\x9b\x24\x24\x61\x13\x65\x47\xfb\xf1\xd0\x89\x64\xab\xfd\x1a\xc8\x40\xc7\x38\x7c\x54\xc9\x38\x7c\x68\x1d\x59\xc7\xd6\x49\x59\x33\xf0\x9e\xb5\x6f\x65\xfa\x86\xf2\x81\x26\xf3\x4b\xeb\x67\x38\x0f\x58\xb4\x0e\xf0\xa1\xe1\x21\x9a\xcd\xdd\xce\xc8\xd8\x5f\x29\x4e\xa7\x26\x53\x32\x95\xfa\x4b\xda\x92\x45\x34\xef\x6e\x4b\xa4\xf2\x6e\x21\x60\x76\x74\xd4\x7b\xff\x6a\x74\xf1\xbd\xda\xb2\x6c\x8f\x04\x32\x4c\xee\x0e\x7e\x4b\x45\xce\x4d\x45\xa6\x1b\xbd\x1c\x90\xbf\x87\x9a\x29\xc9\x46\x46\xe6\x5a\x8a\xcb\xfc\xc2\x70\x98\x8c\x6e\xef\xd8\x18\x4d\x81\x0f\x46\x84\xb4\xdb\xc6\x2f\x60\x69\x20\xcf\x5d\x1a\x8e\x37\x72\x17\x36\x34\x5c\x88\xc9\x2f\x46\x63\x31\x9f\x43\x7f\x04\x02\x68\x00\xcf\xde\x45\xbe\xe1\xa2\x3b\xf6\x45\x53\x7c\xc3\x30\xa0\x48\x2b\x8b\x00\x1b\xd7\xd0\x58\x78\xce\x87\x05\x6c\xe7\xc2\x37\x99\x59\x21\x2f\x89\xcd\x2b\x93\x18\xa2\x32\x8e\x64\x36\x4d\x53\x34\x1d\x5b\x64\x93\xea\x9a\x4d\xd4\x3e\xed\xcd\xe4\xd9\xd2\xa4\xcf\xbf\x78\x9a\x2d\xc5\xa0\x2a\xce\xb5\xe5\xa7\xe8\x0f\x5f\xe4\xce\x56\x4b\xbd\xe5\x67\x91\xfe\x3e\xac\x9a\x82\x9b\x6c\x26\xc7\x92\x5e\x70\x26\x44\x97\xeb\x38\x14\x3c\xcb\x78\x23\xa7\x22\x42\x49\x88\x9f\x89\x98\x4f\x2a\x49\x1b\xea\x33\xf1\x2b\x19\xae\x61\x03\x0c\x46\xd0\x63\x8e\x8f\x5c\x94\xed\x02\x74\x03\x53\xab\x92\x48\x04\x3d\xc0\x77\xd6\x09\x28\x2e\xbc\x3d\x34\x0b\x80\x06\xe4\x88\x35\xf1\x52\x6d\x75\xd7\x4b\x83\x0b\xa8\x97\xf4\xcc\x4d\x95\xdf\x2e\xde\xd5\x5c\xce\x9e\x9c\xa8\x86\xa7\x30\x4d\x22\x62\x03\x5a\x21\x9a\x46\x84\xb2\x11\x7e\x55\x00\x10\x2c\x93\x49\x89\xa8\xca\x3c\x46\x9e\xac\x3f\xae\xba\x76\x2b\x52\xd5\x45\x34\xdc\x90\xb0\xe2\x05\x6c\x42\xa9\x41\xa2\x93\x2c\xd2\x1b\x21\x0f\x03\x87\x7a\xb5\x93\x6f\xc7\x18\xc2\x85\x62\x91\xb6\x00\x7b\x91\xe9\x74\xe8\x69\x3b\x75\x8a\x44\xff\xb8\xdf\x3e\x55\x9e\x2a\x63\x2d\xf4\x42\x52\x0f\x88\x9c\xeb\xd9\x92\xef\xd0\x94\x93\x4d\x33\xc9\xb1\x20\x7c\xf5\x8b\x21\xce\xae\x1c\x91\x78\x22\x47\x95\x48\xfe\x8d\xcd\x13\x4f\x56\x01\xed\x32\x64\x93\xa9\xd5\x6a\x5c\x84\xda\x15\x01\xab\xc9\x8e\x6a\x86\x2e\x95\x20\x31\x1a\x6f\xe8\xbf\xc0\x6d\xe6\xde\xd0\xa4\x0b\xe0\x43\xa0\xde\xfa\xa8\xbd\xd4\xd6\xc7\x4e\x8f\x5c\xfa\x24\xc1\x31\xb8\x9a\x54\xc3\x9e\xa7\xe7\x61\xae\x23\x93\x5a\xa1\x7f\x57\xd7\xe0\xb7\x82\x3e\x36\xbb\xc2\xc8\x3f\x1b\xff\x52\x25\x57\x86\x56\xd8\x8d\xa2\xbd\x74\xe1\xc7\xcc\x44\x78\x55\xb8\x04\xb2\x0d\x63\x98\xeb\x12\x29\x1b\xe0\x1f\x56\xc6\x12\x29\xe2\x52\x01\xaa\xd0\xeb\xcb\xcb\x12\x59\x51\xb4\x87\x79\x36\x9f\xbb\x2c\xda\x9b\xc2\xec\x8d\x91\xeb\xa2\x3b\x9a\x2f\x47\x23\xae\x4e\x53\x55\x96\x4a\x04\xc2\x58\x09\x0b\xc8\x37\xf8\x96\xfa\xe1\x5b\xaa\x06\x3b\xac\xb8\x7a\xdf\x70\x5d\x6a\x3d\xbd\xb5\x23\xb2\x30\x6c\xb2\x2f\x0d\x8e\xe5\x20\x07\x8e\xa5\x34\xfc\xca\x41\x65\xff\x64\x9d\x85\xee\x66\xc8\x06\x6e\x6a\x3f\x91\x17\x16\x6f\xcf\xf3\x23\xf7\xe4\x20\x84\x75\x44\xd9\xc5\xf6\x73\xda\x33\x53\xe0\x76\x8e\x97\x0e\xeb\x2f\x15\xa8\xc4\xcb\xe2\x96\x19\x50\xbe\xc7\x43\xfe\xdf\x55\x44\xea\x86\x13\x18\xa3\x85\xef\x43\x0f\x53\x7b\xae\xb1\x08\x60\xdb\x78\x39\xa6\x27\x64\x34\x45\x88\x66\x7e\x28\xce\x88\x65\x38\x38\x04\xa1\xf6\xe1\x0c\xdd\x42\xdb\x18\xfb\x68\x96\xb8\x0f\x0b\x8d\x4a\x71\xca\x90\xee\xc8\x44\x0a\x66\xc7\x32\x4f\x73\x42\x02\x8b\x01\x22\x73\x6e\x78\x31\x0e\x51\x71\x2e\x59\x76\x38\xb2\x51\x16\x26\x97\x94\xdb\x09\xbe\x17\x8c\x8e\x8d\x11\xf0\x3c\xc4\x6d\xe2\x36\xf2\x60\xbb\x64\x62\x4b\x7a\x2d\xd6\x14\x9f\xad\x98\xec\xfa\xf3\x65\x7e\x87\x81\x65\xe8\xc6\x7c\x54\x1a\x95\x8e\x5b\x74\xbf\x92\x5b\x74\xbf\x42\x5e\x8c\x6e\x61\xda\xed\xe3\x5b\x29\x9c\xa2\xeb\x87\xbc\x32\x57\x77\xac\xc6\x55\xac\xca\xfa\xd9\x96\x61\x89\xde\x7d\xbf\xf7\x83\x3d\xbe\xc1\x5f\x3c\x2c\x11\xb3\x17\xac\x17\x93\x88\xf5\xf1\x95\x02\x12\x25\x17\x70\x1d\x68\x44\x1b\x58\xc0\xed\x41\x11\xf1\x05\x5c\x27\x0e\x51\xf9\xf5\xcb\x0a\x1e\x5a\x33\xbc\x4b\x06\x7f\xab\xcc\x25\x59\x2a\xdf\xa6\x99\x23\x3c\xfc\xf7\xa7\xbb\xd7\x17\x2f\xca\xd5\x7a\x90\x04\x03\x32\xf9\x11\xe4\xdb\xd6\x8a\x25\x66\x08\xac\x91\xb8\x6c\xdb\xb1\xcc\x5f\x62\x4f\x1d\x0b\x71\x96\x48\x7a\xac\xf8\xaf\xd4\x0e\xc7\x0b\x70\x02\xe3\x7a\xe1\xb8\xd8\x70\x3c\x8c\x78\x15\x89\xff\x7e\x17\x08\x8a\x64\x85\x64\x68\x0d\x18\x22\x25\x1a\x60\x3e\x77\x97\x4c\x1c\xa7\x1e\x78\xe0\x8a\x27\x31\xe2\x72\x33\xad\x20\x33\x5e\xb8\xae\x01\xe8\x31\xe0\xb5\x28\xe6\xa1\xd8\x4f\x44\x4d\x68\x3b\x98\xd6\x99\x40\x3e\x17\xe2\xc9\x5f\x96\x71\xbd\xc0\xb4\x9f\x6b\x68\x38\x13\x0f\xf9\xd0\x36\xae\x97\xf4\x0d\xda\x33\xa1\x66\x87\x2a\xcf\xc0\xe3\x18\x0e\x41\x3b\x51\x7d\x82\x10\x7b\xcd\xc1\x07\xe9\xe2\x13\x8a\x18\x82\xa2\x92\x14\x7c\x8f\xb2\x0a\x4f\xb4\xd3\x32\x87\xca\x04\x17\x19\xe7\x14\xee\x61\xf1\x93\x6c\x76\x57\x47\x04\x89\x27\x6d\x95\x66\xa4\x40\x64\x51\xbf\x2d\xf7\xc3\x3c\xdc\x17\x79\x1e\x6e\x65\xa7\x07\x96\xf9\x27\x72\x68\x0d\xa6\xb0\x78\x2f\xa3\x95\x5d\xd9\xf1\x14\x33\x62\xa5\x22\xfd\xf5\x87\x99\x59\xe7\x5c\x67\x55\x12\x9e\x02\x55\xaf\xf9\x92\xe3\xb6\xcc\xbd\xb5\xb1\x64\xc2\x4c\xab\x72\xe2\xed\x40\x6f\x7d\xda\x73\x17\xd3\xce\x1e\x54\xbb\x13\xea\xc8\x06\x97\x2a\x23\xd1\x74\x74\x4f\x18\x54\x43\x87\xf6\x08\xd0\x89\x73\x16\x98\x6b\xd7\x0e\xce\xa2\xb6\x22\x93\x76\xf0\x42\x34\x1a\x99\xa8\xd9\x72\x9a\x94\x86\x12\xc7\x21\x9d\x91\x6e\x69\x37\xbf\xee\xd4\xf5\x90\x1c\x52\x39\xec\x56\x7e\x06\xbb\x95\x97\xbf\x9e\x30\x63\xeb\x0f\x47\x32\x97\xeb\xc0\x36\xa8\xac\x17\xb1\x52\x72\x65\xfb\x4f\x16\xa2\xab\x38\x88\x47\x84\x6d\x96\x86\xf8\x8d\x67\xcf\x9c\xb9\xae\xf1\x36\x7a\xe4\x8b\x80\x39\x8b\x1f\x9b\x42\xcd\xa0\xa4\x67\x8c\xc1\x96\x31\xf3\x66\xa5\xd4\x03\x7e\x5f\x3a\x81\x2c\x27\xe6\xdd\x98\xf9\xa3\xf9\xd5\x29\x3d\x9c\xd8\xfb\x2f\x6c\x07\xe7\xbf\x5f\x51\x83\x4b\x58\xa2\xe2\xf5\x0f\x83\x75\x43\xbe\x95\x49\xfe\xaf\x71\x47\x32\x19\x28\x57\x6c\x0a\x38\x46\xf9\x76\xb5\x50\x6c\x36\x9f\x8d\x10\x93\x23\xaa\xca\x20\x5b\x82\xba\xb9\x39\x9b\xfc\xf9\x73\x70\x7e\xf5\xe5\x41\xdd\xac\x2c\xdc\xc4\x43\x49\x15\x7c\xf4\x6b\x14\x65\x36\x04\xc7\x93\x71\x81\x65\xf3\x47\x35\x0f\xac\x76\xdd\xe5\xe0\x60\xb1\xca\x0c\xab\xc0\x60\x7d\x13\xf1\x36\x8b\x62\x24\x48\x79\x3b\x70\x46\x15\x61\x75\x56\x85\x33\x92\xa2\xc1\xa4\x39\x32\xc0\x9c\x16\x83\x57\xca\x91\x8e\x45\x85\x79\x1f\x42\x0c\x3f\xe2\x14\x22\x92\x84\x95\x21\x32\x3f\x12\x85\x80\x35\xb1\x8c\x62\x40\x3e\x02\x1f\xc9\xbc\x64\x30\x4b\xfa\x15\xd3\x72\xf7\xe3\x1b\x6c\xd1\xaa\xb0\x45\xb9\x96\xaf\xc2\x97\xb3\xac\x52\x8f\x01\xfa\x28\x8b\x9d\x14\x70\x92\x62\x44\x93\x8c\x32\xa3\x39\xe2\x73\x12\x97\xc1\x8c\x3f\xa1\x50\x38\x37\x86\xb0\xa4\x5e\xb7\x72\x16\xce\xc4\xf4\x92\xd6\xcd\x4d\x8c\x96\x2f\x56\x86\xa5\x53\x67\x04\x5b\xc6\x45\xb2\xe4\xe0\xbb\x04\x42\x92\xb5\xe9\x60\xbc\xbf\x1e\xa0\x92\x99\xbc\x4f\x34\x8f\xf2\xa3\x00\x8b\xa9\x8d\xb3\x09\x9f\x08\x51\xad\xea\x86\x89\x51\x2c\xd1\x63\x02\xb2\x2a\xbf\x4a\x5f\x2c\xa2\xd5\x63\x46\x13\x8a\x5b\xbd\xaa\xb5\xa1\x56\xd1\xd6\x01\x24\x54\x5f\x3c\xd9\x71\x1c\x4e\x46\x46\x14\x29\x8e\x27\x7b\x34\x20\x22\x86\x56\x30\x67\x0c\x4c\x44\x98\xd4\xdb\xa5\x54\x80\x2d\x9a\xf1\xaa\xa0\x8b\x30\xaf\xa7\x94\xdb\xd4\x72\xe1\x04\x8c\x96\x9b\xb7\xe8\x9d\x7d\xec\xc1\x5f\x66\xbf\xbe\x52\x5b\xf4\xd4\x06\xb7\x6f\xf8\x22\x25\xf0\x45\xd2\x4f\x56\xa8\x0d\xce\x9f\xd7\x34\x06\x44\xc9\xdc\x3c\x5f\x9b\x16\xf1\x0f\x93\xb6\x33\xd4\x15\xc5\x8a\x87\x78\xaa\xe9\x15\x4f\x30\x7f\x45\x06\xb8\x54\x05\x54\xc6\x63\xa5\xb5\x57\x2a\x01\xb3\x26\x49\x49\x0b\xe6\x36\x91\x93\x4a\x6d\xbd\x60\xee\x60\xe0\x3a\x9f\xa0\x4a\x15\x2b\x56\xab\x8c\xdc\x2c\x5e\xba\xd6\x66\x2c\x8f\x53\x20\x01\xc7\x12\x37\x0f\xe5\xbe\x87\x05\xc9\xe4\xe9\x94\x2f\xb1\x35\x69\x55\x72\xd3\x99\xe3\xc5\xec\xb9\xb6\x4c\xdd\x6f\x38\x2f\xeb\xc2\x79\x29\x86\x78\xa9\x8a\xe9\xf2\x4e\x40\xc2\x54\xc3\x72\xe1\x8f\x46\x6c\xbe\x2c\xeb\xac\x9a\xdf\x59\x2b\x89\x11\xad\xa1\xea\x65\x93\xbc\x59\x98\x06\x52\x1a\x9c\xea\x37\xf8\xdf\xef\x5c\xd7\x98\x10\x1a\x03\x18\x1a\xc0\x78\xff\xfe\xe5\x85\xe1\x8c\x99\xad\x80\xde\xe2\x86\x13\x18\x2e\x1c\x63\x03\xce\xe6\x78\xd9\x56\x8f\xb9\xf4\xb9\x35\xd7\x91\x1f\x9e\x25\x41\xad\x2a\x88\x6d\x5e\x02\xc3\x3f\x8d\xe6\x3f\xc3\xdf\x3b\xda\x11\xb6\x6a\x81\xab\x22\xcd\xa7\x44\x06\x05\x44\x90\x41\x3f\x7b\x70\x02\xb0\x73\xab\x00\x0c\xca\x60\xab\x30\xc0\xbe\x33\xc2\x8c\xbe\x58\x94\x2e\x46\x06\x30\x5c\x34\x02\xae\x84\x21\xf4\x3c\x4d\x67\x2a\x02\x7e\x45\x5f\x63\x1b\x66\x4c\x20\x36\x02\x88\x0d\xc7\xa3\xf1\x84\xef\xc0\x18\x1b\x01\x46\x3e\x34\xd0\x98\x7e\xc3\x3a\xb9\x38\x37\x80\x67\x1b\x36\x62\xc1\xba\xb7\xd0\xa7\x6f\xd2\xa2\x93\x33\x07\xe3\x28\x22\x71\xee\x3b\x33\xe0\x2f\xc9\x1b\x34\x94\x77\xee\x12\x5e\xcd\x7e\x07\xde\xd2\x40\x78\x0a\x7d\xe3\xe2\x5c\x71\x28\x8a\xe4\x92\x6c\x59\x41\x8d\xf8\x41\x27\x6a\x96\x40\x36\xe2\x2f\x6c\x5e\x04\xc8\x90\xad\x91\x7a\x8d\xf2\xc2\x4b\x0b\x98\x88\x0e\x4f\x36\x38\x94\x16\x6c\x21\x8e\xb9\xa1\x4b\xa9\xba\x80\x1d\x66\x1e\x58\x47\xc2\xf5\xb1\x2a\xec\x46\xfd\x11\xbb\x39\xaa\x9a\x99\x95\x88\x2b\x85\xb6\x65\x61\x4c\x70\x0e\x1a\x55\xbf\x4f\x00\x4c\xd4\x9a\x70\x96\x62\xd7\x55\xd9\xfd\x56\x10\x41\xba\xef\x7e\x46\xf3\x77\x9f\xfe\xb3\x42\xf5\x5c\x3d\x24\x90\x94\xf1\x5a\x82\x49\xa2\x4b\xb0\xeb\x48\x16\x87\x9c\x80\xf4\x42\xd0\x8f\x34\x21\x64\x41\x8d\xe8\x1a\x8d\x8a\x9a\x8d\xc6\x5d\x10\xd8\x65\x0d\xbe\x08\x14\x10\xc2\x19\x3c\xbb\xdc\xee\x24\x11\x42\x24\xf0\x90\x8c\x27\x22\xa8\x8c\x6f\xd0\x20\x05\x13\xfd\x1a\xa1\x41\x24\x0a\xcb\x43\x09\xb1\x32\x99\x45\x54\x14\x41\x83\x5f\x6c\x0c\x6d\xe4\x6a\xdb\x55\x41\xab\xa4\xe5\xef\xd7\x09\x36\x52\x63\xbd\xd0\xfa\x7c\x17\x2b\xe5\xc2\x7f\x11\x89\xef\xb2\x1c\x51\x51\x04\xd9\x76\xd2\xfb\xa7\x2b\xfb\xe0\xf6\xd5\x6f\x5f\x72\xd2\xfb\xd5\x94\x57\xd5\x5d\x5b\xca\x3b\x16\x3d\x7c\x7d\x09\xef\x8a\xc5\xab\x39\xdd\x7d\x33\x8b\xb7\x95\x64\xf7\x68\xf1\xd6\x94\xea\xbe\x99\xb5\x73\xd1\x04\x2d\x8a\x3c\x31\x6b\x00\x0a\xe0\xbe\xde\x3b\xc3\x45\x93\x09\xb4\x0d\xb4\xc0\x35\x2c\x1e\x69\x8c\xac\x5d\x4e\x6b\xb5\xac\xda\x88\x97\xa2\xda\xf2\x69\xa5\xc3\xa8\x83\xe8\x48\x43\x9b\xa3\xb9\x30\x0d\x63\xfb\x64\xe7\x64\xce\x54\x7f\xf5\x2c\x63\xee\x42\x10\x40\x83\xda\xdc\x18\x44\xc5\x25\x1c\xf9\x10\xbf\xbc\xd8\xa5\xf2\xe9\x5a\x6f\x8e\xc2\xda\x3c\xeb\x5c\xc6\x45\x20\xc8\xc6\x83\x77\x51\xa1\xa7\xd5\x29\x52\x34\x0c\x70\xd4\xea\x9a\x10\x3f\xea\xfc\xaa\xce\x54\x75\xa5\x98\x58\x51\xd4\x94\x6c\x73\x1b\x96\x32\x4f\x3e\xe0\x0f\xde\x4f\xd3\x59\x46\x74\x09\x19\x1f\x87\x09\x90\xe2\x5e\xb5\x0c\x61\xa2\xc0\x36\x0b\xcb\x94\x30\x73\x99\x26\xa5\x30\x93\x65\x1a\x8f\x43\x3d\x29\x2a\xdb\xed\xc1\xbb\x16\x47\x2c\x51\x57\x49\x50\x1b\x92\x59\x02\x09\x3d\x0d\x7c\x5c\x2a\xb5\x3c\x1f\x9a\xd1\x32\x91\x87\xe6\x74\x5d\x3c\x1e\xa4\x52\x50\x3e\x11\x02\xff\xad\xe8\x4d\x52\xe3\x55\x2f\xf8\x70\xec\xc3\x60\x7a\x8e\x6c\xf8\x82\x7b\x80\xcd\xff\x89\xd5\xee\x08\xcd\x43\x8a\x25\xa8\x2f\x71\x41\x65\x70\x8e\x72\x87\xf5\x9d\x03\xa5\x60\x1f\xf7\x2d\xf3\xce\xc1\x11\xe8\xbc\xd8\xa2\x0a\x89\x61\x4a\x60\xe5\x6e\x37\x3f\x55\xae\x42\xae\x98\x6e\xae\x54\x6d\xd6\x48\x69\x5d\x2c\xd3\x09\x2e\xa9\x24\x1f\xa5\x25\x4a\x3f\xa5\x01\x8b\xa5\x1f\xeb\x32\x37\x72\x7a\xb0\x12\x1b\x26\x85\xa7\xe6\xd5\xd9\xcb\x9a\x8c\x8e\x45\x24\xd3\x2f\x3a\xf7\xd1\xc4\x87\x41\x60\x10\x76\x85\xa1\x3f\x73\x3c\x29\x8b\xac\x6a\x40\x8b\x9a\x91\x00\xcf\x66\x78\x41\x2a\x4f\x7c\xd6\x77\x45\x76\xc6\x7c\x0b\xaa\x72\xf3\x4b\x6e\x9e\x72\x77\xf4\x70\x1e\xa3\xa0\xdc\xec\xd5\x4b\xb9\xb5\x4a\x85\x6a\xa8\x17\xfc\x8c\xe2\x41\x11\x01\xe4\x23\x25\xeb\x49\x1e\x03\x9f\xa3\x3b\xe8\xb7\x02\xe8\xc2\x91\x14\xad\xc1\xbc\x8e\xb4\xf0\x3f\x4d\x69\xfb\x81\xb0\x06\xfa\x17\x79\x0e\xda\xe1\x0f\x6f\xa5\xec\x39\xc9\x21\xab\x00\x4d\xe5\x75\x2c\xe8\xb7\x17\x90\x8c\x8b\xca\x01\x61\x6c\xe1\xd5\x72\x2e\x90\xb5\x0c\x8f\x3f\x5b\x14\x50\x13\xbf\x2a\xf2\xf3\x25\xcc\x30\x97\xe6\x44\x91\x78\x94\xb5\x87\x27\x59\x5b\x95\x97\xff\x68\x4a\x1e\xc7\x72\x69\x7a\x31\x9e\x1e\xb3\x4a\xe7\x25\xf5\xd9\x10\x03\xc7\x0d\x94\x69\x8e\xdc\xa3\x1b\xcf\xf1\xd3\x70\xdf\x9a\x17\xa2\xd1\x64\x56\x20\x3b\xcf\x57\xce\x0c\x9e\xda\x30\x18\xf1\xf8\x50\x39\x4f\x30\xb9\x06\xeb\x4a\x17\x34\x4b\x26\x0a\xaa\x9e\xcf\x4c\x11\x5c\x4b\x96\x9f\x59\x9c\xf9\x65\xae\x9a\xd9\xd1\xcb\xc9\xec\x28\x57\x06\xa7\x68\x1d\x0b\x66\xd1\xcd\x88\xf3\xe0\x23\x48\x5d\x62\xc3\xb2\x79\x79\x3d\x45\x5e\x9e\xc9\x1a\x6d\xb7\xdb\x66\x51\xaa\x5e\xd1\x7e\x1f\xe7\xf9\x23\xf8\xe9\xd0\x73\x48\x54\xe1\xed\x8a\xf7\xff\x82\xb1\x9e\xc5\xd1\x9e\x3e\x04\x36\xf2\xdc\x65\x18\xe9\x39\xb4\x06\xd8\x5f\xc0\x90\xd2\xc3\xca\x77\x85\x61\x86\xb9\x95\xce\xb2\x5c\xee\xab\x7b\x01\x19\xd6\x22\xf3\x02\xf2\x0b\x90\x63\xa7\x8b\x58\xb3\x35\xb9\x05\xd7\xe8\x18\x3c\x12\x3a\x1a\x99\x5a\x28\xf9\xaa\xbc\x68\x52\x8c\x1d\x79\xb6\xe8\x50\x1e\xd5\x9b\xe8\x64\x6a\xa3\xb3\x47\xf2\xc3\xa1\x16\xfa\x7a\x36\x41\xad\x79\xe9\x53\xa0\xe4\xbc\x5c\xb5\xaf\x58\xdf\x9a\x86\xa5\x83\x95\x7e\x50\x0d\x2b\xdd\x3a\xb0\x0e\xb5\x3d\xa5\xea\xb5\xd7\x4f\xa3\xcb\xf1\xd6\x16\x6a\xbc\xb5\xf9\x61\xc3\x2b\xbd\x92\x81\x6c\x3b\x80\x8e\xde\xab\x0f\x9f\x0e\xdf\x76\xde\xaf\x10\x0d\xb6\x61\x68\x24\xe6\x80\xf8\x6b\xc3\x3e\x72\x92\x49\x7a\xef\xc9\x89\xcb\x39\x3c\xd2\x81\xfc\x86\x08\xf4\xa8\x41\x1f\xb1\xa8\x99\x92\xd2\x03\x38\xe4\x63\xbc\xa8\xca\x5f\x1d\xf0\x91\x41\x3e\xe6\xf9\xb9\x8a\xde\xa7\x20\x8b\xab\x3a\xca\xb6\x0b\xa8\x58\x0c\xfe\xb1\x6a\x91\xae\xd8\xfb\xad\x74\x36\x20\x9b\x30\xf2\xa9\x0e\xcb\xd9\xa2\xf0\xae\xc4\x7e\xdb\x40\x80\xde\x22\xe0\x72\x79\xe8\xba\x5b\x83\x28\xae\x25\x72\x15\xc6\xe0\x2d\x82\x9c\x00\x3c\x8d\xfa\x53\x35\x45\xdf\xe9\x08\xd4\xa6\x66\x21\xa3\x02\xfb\xc3\xfa\xab\x0c\x09\xd1\x39\xb5\x7c\x1b\x90\x97\x93\xea\x91\xa6\xcd\x79\xb5\x88\xc3\xb5\x07\xda\xaf\x48\xef\x3c\x5e\x25\x3b\xd0\x74\xc1\x73\x9d\xaa\x6a\x00\x15\xfc\x5a\x65\x80\xf2\xca\xac\xa3\x26\xdb\xc8\xa8\x51\xe1\x78\x63\x64\xe6\x94\xa5\x78\x4f\xe3\xf4\xe4\x0c\x30\xe3\x37\xf8\xdf\xef\x6e\xa1\xb1\x98\x4f\x7c\x60\xd3\x48\x26\x9f\xf2\x3d\x56\x6f\xc2\xb8\x5e\x1a\x40\x20\xdd\x13\x1e\x89\x91\xc1\x98\xbe\xe1\xc3\x05\x95\xdd\x0c\xa1\xba\x18\x77\x53\x67\x34\x65\x65\xe3\x00\xcd\x6a\x0b\xab\x54\xa0\xb0\x42\xc4\x05\xf2\xfe\xfb\x1d\x36\xee\x90\xef\x2f\x2d\x03\xde\x42\xf2\x20\x5a\x4c\xa6\x72\x92\xdd\x1d\x08\x8c\x3b\xdf\xc1\x18\x7a\x22\x3f\x0e\xb9\xb6\x11\xe0\xa5\x0b\x69\xd5\x39\x27\x30\x02\xec\xb8\x2e\xcb\x98\x6a\x1b\x3f\xa1\x3b\x78\x0b\x7d\xcb\xb8\x83\x86\x8d\x0c\x1f\x8e\xd0\x6c\x06\x3d\x9b\x4f\x2b\x2c\xbd\x42\x5a\xe1\xb5\x31\x78\xd6\x9c\x07\xef\x58\xbb\xa2\x78\xc5\x14\xdd\x7d\x4d\xb5\x2b\x4a\x9e\xfa\xb2\x75\x73\x8d\x1c\x53\x59\x8a\x68\x93\x85\x32\x52\x1e\x15\x45\x90\x7f\x59\x36\x64\x69\x4e\xa7\xdc\x71\x8b\x15\xae\xb8\x1c\xa1\x79\x01\xf4\x46\xac\x74\x45\x81\x7d\x33\x9d\xfc\x21\xb2\x21\x89\x82\x4b\x3e\x59\x26\xab\x19\x53\x68\xdb\xae\x08\x49\x90\x35\x51\x59\xee\xaa\x6b\xb6\x23\x34\x5f\xb6\x18\xc3\x6f\x8d\x21\xb4\xaf\xc1\xe8\x26\x12\xcf\xb0\x83\x5d\x66\x1e\x98\x2f\xa5\xf0\x11\xf3\x1c\xcd\x97\x46\x34\x1c\x71\x78\x47\xae\x33\xbf\x46\xc0\xb7\x13\x3e\xa8\xb8\x30\x99\x94\x1f\xe5\x02\x93\x66\x3a\x51\x31\xfe\xf2\x2a\xb6\x63\x79\x2d\x29\xd7\x79\x14\xcb\x28\x62\xfb\x8a\x16\x51\x3c\xc7\xfc\xb4\x6c\xf8\x8a\xd5\xdb\xb7\xcc\x80\x3e\xc9\x87\xc3\x47\xa1\x3c\x5c\xdd\xec\x1e\x58\xb3\xb9\xe4\xaa\xb9\xfe\xaa\xef\x2b\x1d\x8b\x0c\xc3\x89\x16\x28\xfb\x66\xac\x86\x15\xf0\xd7\xf9\x9b\x5b\x42\x5f\xb7\x7f\xbe\xfc\x37\xdc\x3d\x3e\xde\x2c\xfa\x3a\x6f\x37\x6e\x69\xa4\x71\x45\x64\x96\x5b\xb2\x39\x7e\xc5\x68\xec\x19\x16\xc6\x6e\xcf\xea\xee\x59\xdd\xfd\xdc\x18\x33\xf1\xcc\x37\x44\xf6\x32\xda\xc8\x5f\xdd\xfe\xba\x56\x44\x76\xae\xba\x7c\xc3\x63\xff\x8b\xe3\xb1\x8f\x1d\xcf\xe6\xd1\x50\x42\x13\x61\x21\x07\xf1\xba\x6f\x5f\xb8\x36\x2f\xe2\xb7\xac\x5c\x75\xfe\x8a\xab\xf3\xef\x20\xb0\x59\xbd\x47\x70\x8d\x16\x98\x09\x94\x74\x73\x69\xe8\xa7\x1b\xaa\xd4\x18\x89\x41\x31\x4d\x9c\xad\xa0\x50\xc6\xff\x7a\x0a\xf7\xc6\xc0\xfd\x93\x10\xfe\x9b\xc2\xee\x17\x6a\x94\x91\xa7\x3d\x66\xbd\x5c\xa0\x62\x67\xbd\x96\x5b\x52\xb2\xe8\xe5\x2c\xb8\x98\xe2\x37\xff\xef\xff\x5d\x81\xc3\xaf\x50\x2a\x20\x1b\xb5\x3f\x04\x1d\xef\x5a\x83\xd2\xae\x15\x22\x4b\x67\x83\x64\x26\x47\x94\x77\xa9\xe6\xde\xa7\x71\x54\x6a\xe5\x40\xe2\x31\x8c\xd4\x16\xe4\x2f\xbc\x11\x03\xb7\x50\x4f\xef\xd8\x92\x90\x46\xb7\x53\x62\x80\x6d\x03\x1f\xdd\x0a\xb6\x9c\xf5\x8c\x8e\xeb\x69\xd2\x10\x13\xc8\x4c\x89\x2a\x0d\xb5\x8f\x93\x52\x2d\x72\x69\x58\xa3\x42\x29\x6a\xad\x48\xbb\xbd\x42\x7c\xd7\xf8\xfe\xb0\x9b\x5c\xd7\x57\x2c\xfe\xc7\x5e\x13\x58\x6e\x53\x70\x0b\x0d\x38\xbb\x86\x36\xb9\x73\xe7\x12\xfe\xb3\x96\x3f\x59\xc2\x9c\xe5\xa3\x4a\x05\x51\x97\x03\xf0\x8e\x09\x0b\xd5\x6a\x7b\xc4\x11\x59\x55\xb5\xaf\x33\xc2\x8c\xbb\xf9\x15\x3e\xca\xa5\x15\xa5\xed\x94\x69\x62\x4b\x59\x91\x57\x22\xa0\x8a\xac\x98\x13\x19\x2d\x21\x8f\xd3\xa6\xbe\x5a\x94\xbc\x47\x59\xa1\xa3\x36\x00\x9b\xbf\x76\x81\x0e\x4d\x78\xec\x82\x1e\xca\x17\x56\x30\x45\x38\xf3\x9a\xac\xf2\xca\x53\x98\xf8\x53\x31\xdf\x44\xcb\x05\x06\xdb\x7a\xaa\x79\xa8\xfd\x22\xb5\xae\xf6\x46\x24\xa5\x1a\xea\x78\xa4\x58\x6a\x94\xc3\xa1\xb8\x33\x1f\x47\xc5\x98\xc2\x82\x20\x3c\xd7\x98\x45\x12\x14\x14\x02\x51\x07\x14\x94\x5d\x44\x4d\x55\x70\x43\xf7\xd5\xc6\xd6\xfe\xc3\x02\x52\x80\x78\x9d\xca\x2c\x1c\xbf\x25\xbd\x21\xba\xdc\x5c\xbd\x81\x97\x18\xcd\x19\x06\x43\xed\x3b\xb8\xf5\xa2\x3f\xd5\x17\x9b\x05\x8b\xd5\xbb\xd2\x39\x41\x52\x55\x97\x98\x9d\x8f\x85\xe7\xc2\x20\xc8\x87\xf1\x7b\x8c\x95\xab\xbe\x9c\xc2\x44\x9a\x37\x5e\x55\x49\x76\x1d\xd5\x89\xb2\x22\x0d\xb3\x75\x80\x93\xd8\x42\xaf\x48\x28\x66\xa8\xe5\x1c\x2b\x42\x18\xb7\xa5\x88\xc4\xff\xf7\x1b\xf0\x3d\xc7\x9b\x9c\x1a\x57\x44\x3c\x77\x82\x08\x14\x89\xca\xf0\xc0\x87\xc6\x68\xe1\xfb\xd0\xc3\xee\x92\xb1\xc8\xa7\x65\x15\x14\x0d\x84\x9e\x68\xe5\xb5\x10\xba\x34\x8e\x68\xa6\x36\x12\x84\xbc\x3e\x19\xb4\xcb\x96\xe0\xce\x71\x5d\xc3\x45\xcc\xe0\x5d\x06\xa7\x2b\x77\x5a\xc5\xb8\x45\xab\xcc\x49\x11\x81\x5c\x70\xe4\xcb\x6c\xa0\xb6\xa2\x1d\x35\xae\xc3\x79\xcc\x75\x05\xe8\x1e\x16\xc1\x64\xac\xed\xc0\x1b\x86\x08\x06\x66\x2c\xb8\x16\xd2\xa9\xeb\x44\x88\xa1\xbd\xa2\xed\x3d\x1e\xaa\x96\xe2\xa7\xbf\x52\xa2\xd5\x89\xe4\x3e\xaa\x14\xc9\xfd\x25\xd7\xbd\xe3\x3e\xc1\x47\x5e\xf5\x4e\x0e\x80\xd2\x8f\x9d\x72\xa8\x1b\xde\x41\xdb\x83\xde\xc7\xe7\x27\x5d\x77\x7a\xb4\x0a\xf4\xbe\x65\xb2\x69\x50\x1c\x17\xff\xd6\x19\xc1\xc4\x27\xe6\x37\xd7\x02\xe8\x97\xe8\x63\x63\xe5\xf3\x2e\xd1\xc2\x1f\xc1\x3a\x8b\xe8\xb1\x16\x8d\x4b\xbe\x06\x45\x50\x39\xad\x3b\x07\x4f\x45\x94\x47\x14\xce\x50\x0d\x36\xe7\x7a\xe1\xb8\xf6\xe5\x62\x32\x81\x01\x63\x20\x66\x30\x45\x77\x2c\x62\xe4\xb7\x29\x95\x0b\x91\x27\xfa\xd2\x06\xd9\x49\xac\x11\xc5\xd7\xe1\x5b\x5c\x08\xb0\x43\xfb\x7a\x0d\xef\x5e\xf1\xbd\xca\xd7\x0f\x4d\x27\x78\xef\x39\x1f\x16\xb0\xf8\xc9\xd0\x70\x2b\x8f\x6e\x85\x97\xd4\xd6\x66\xc5\xb5\x76\x24\xf9\x22\xcc\xbf\x95\xbf\xda\xfe\x66\x34\xce\x5c\x57\xd0\x47\xd0\xac\x98\x21\x68\xc4\x74\x87\xa3\x12\x48\x44\x0a\x0e\x79\x64\x1d\x17\x45\x71\xc7\xaa\x0e\x9d\x4f\x11\x0a\xa0\x01\xc8\xbd\x1c\x2c\xc2\xc9\x58\x34\xc3\x02\x1a\x8e\x67\x00\x63\xbc\xc0\x44\x04\x4d\x3e\x81\x7c\xfe\x10\xf0\x96\xe2\x5b\x83\x05\x5a\x14\xe6\x8d\xae\xe1\xfc\xab\x00\xa4\x6a\x60\x02\x52\xb3\x5f\x13\x27\xc8\x84\xdb\x7a\x3c\xec\x20\x35\xc4\x55\xdf\xd4\x66\x0c\x87\x8f\x91\x31\x1c\xae\xc6\x18\x0e\xbf\x40\xb6\x50\x5b\xa1\xd7\xb3\x91\x88\x5f\xa8\x54\xea\x95\xb6\x48\x85\xa3\x72\x3e\xf7\x24\x77\xab\xad\xa2\xeb\xc1\x9a\x2b\xba\x8a\xf5\x52\xd7\x74\x3d\xa8\x58\xd3\x35\xda\x85\xd4\x1c\x1e\x61\x55\xd7\x03\x8d\xaa\xae\xeb\xb9\xc6\xe4\x78\x9b\x9a\xae\xb0\xe2\xc0\xb7\x6c\xfa\x10\x48\x64\xb9\xb5\xe0\x62\x34\x92\x5d\xd9\x4d\x84\x5a\xce\x63\x57\x9c\xb2\xb6\x5c\xed\x9b\xfe\xc8\xf8\x9c\xfa\x9b\xc7\x5b\xc8\x2b\xab\x22\xd7\xb7\x52\x5c\xdf\x4a\x71\x29\xb2\x74\x93\x15\x7d\xad\x1c\x78\x0f\x1e\xc3\x11\x79\xef\xb4\x92\x71\x6b\x2f\xb7\xf5\x52\x98\x71\xbe\xa6\x92\x5b\x02\x5b\x1a\xf8\x34\x30\xef\x5b\x09\xae\x4d\x94\xe0\x5a\xbd\x48\x42\xd2\xa4\x58\xcd\x18\xb9\xe5\x22\x5c\x9e\x7b\xf6\xfa\x6a\xf7\xdf\x27\x5f\x72\x11\x2e\x1a\xb4\x19\xae\x69\xd5\x4a\x5c\x1a\xa3\xa2\xc8\xdc\x9a\x83\x3a\xf3\xa4\x21\x01\xd7\x87\xc0\x5e\x32\x68\xef\xc0\x18\x23\x9f\xb1\x33\x66\x19\x6b\xc9\x06\x8c\x39\x70\xfc\xb6\xf1\x96\x55\x74\xa1\xb8\xb9\x06\x30\x6c\x67\x3c\x86\x84\x3b\x18\x23\x34\xbb\x16\x8f\xa2\x71\xa8\xbf\x52\x59\x87\x99\x26\xa8\xbf\x38\xa2\x30\xc2\x41\xa1\xed\xe0\x18\xb2\x78\xf8\x73\x7d\x75\xca\x96\xb1\x4d\x68\x73\xa0\xf3\xaa\x85\x4c\xbe\x90\x0a\x66\x59\x94\x57\x73\x19\xb3\xf4\xda\x56\x45\x29\x7b\x9c\xb5\xcc\x12\xcb\xb8\xa6\x82\x66\xd5\x57\xb1\xac\x47\xb3\xde\xbb\xa5\x62\xfd\x1d\xa9\x89\xed\xa0\x8b\x76\xde\x5e\xf6\x46\x87\x63\x90\x51\x79\xc7\x07\x5e\xe0\x70\x73\x69\xec\x0f\x41\x3a\x91\xc2\x5d\x07\xc4\xe8\x90\x8a\x83\xae\xc1\xd7\x22\x95\x7d\xbf\xce\xa4\x7a\x69\x2b\x6a\x45\xed\x7c\x24\xa8\x95\xd1\xf4\x72\x40\x2b\x5f\xca\x0f\x7d\x11\xc0\x95\x92\xe2\xa3\x27\x3d\x53\x1c\xc9\x70\x9e\x15\x2d\xca\xaf\xe1\x5d\x61\x1b\x79\xf6\xae\x47\x06\x1b\x29\x92\x11\x52\xaa\x1f\x3f\xca\x03\xd3\xf1\x5c\x6e\xa5\x58\x3d\x01\x45\x4a\x83\x88\x7a\x4a\xf3\x93\x30\xc1\xe1\x8a\x9a\xfb\x78\x7e\x44\x4e\xda\x7a\x2a\xa7\xa4\x44\xae\x4a\x5a\x89\x26\xa3\x34\xde\xbf\x67\x09\x17\x51\xb2\x85\x7e\x5e\xca\xb9\x68\xa0\x54\xe0\xdf\x9e\x95\xa7\x27\xc6\x2f\xec\x12\xba\x72\xca\xce\x2f\xf4\xbc\xb4\xd1\x3e\x63\x2e\x0e\xb4\xe9\x6c\x9e\x56\x30\x01\xf7\x72\xa6\x24\x9b\x64\x57\x9c\x50\x57\x7f\x42\x97\x0c\x19\x2f\x40\x33\x88\xa7\x44\xee\xb8\x23\x72\xfb\x9d\x8f\x58\xa0\x66\xd9\x09\xea\x20\x98\xaf\x19\x0b\x51\x0d\x86\x22\x5d\x6a\x5b\x46\x54\x4a\x48\x3a\x95\x44\xa4\x2d\xe1\x29\xfd\xeb\xf7\x0f\xbf\x7b\xaf\xff\xb5\x5c\x2b\x9e\x52\x1d\x58\xed\xc3\xd0\xbf\x46\x24\x74\x06\x68\xb4\x1d\x89\xa9\xdb\xb1\x0a\xca\xdc\xd1\x07\xd6\x27\x2a\xc8\xa7\x37\x92\x6a\x4a\xc7\x51\x84\x95\x1e\x31\x42\xee\x35\xf0\x13\x65\x1e\xd7\x73\xa3\x57\x06\xd2\x89\x36\x64\x3b\x38\x3a\x7c\x91\x36\x8d\xa3\x23\x10\x01\xc4\xec\x53\x50\x38\xec\xef\x28\x62\x24\x42\x27\x4b\x87\x79\xb0\xbd\xf9\x81\xbf\x31\x8c\xa3\xdf\x04\x02\xfe\x26\xf9\x25\x88\x5c\xb2\x7a\xa0\x3a\x3a\xf6\xd5\x35\x03\xe6\xae\x17\x1c\xc5\x47\x8c\xd5\xdd\xc0\xa5\x5c\x23\x2d\x41\xa6\x1c\x7b\x4d\x0a\x3e\xb3\xb6\x07\xa6\xc2\x46\x91\xed\xda\xcd\x7a\x2f\x89\x4c\xa2\xf3\x8e\x64\x4d\x2c\xff\xf2\x5b\x1f\x8e\xa0\x0d\xbd\x74\x08\xd5\x66\x20\x51\x24\x4e\x12\x84\x6b\x56\x84\x8c\x51\x52\x4b\x4d\xe4\xe3\xe6\xe4\xe1\x16\x26\x05\x25\xa2\x35\x2b\x04\x22\xb1\xff\xc9\xb1\x48\x46\xe3\x6f\xab\x84\x23\xc5\x98\x97\x72\x98\x1a\xa1\x49\x19\x81\xf9\xc5\xf4\x54\x06\x43\x44\x8e\xbe\x60\xbb\xd3\x92\xb3\xa4\xe5\x78\x04\xbd\xb0\x9c\x18\xbe\x56\x37\xdd\x54\xbd\x68\x32\x12\xa9\xda\xf1\x23\xa7\x4b\x3d\xaa\x08\xbf\xc7\x4a\x42\x8a\xb1\x56\xa5\xa3\x6a\x6b\x3c\x8f\x71\x26\xdd\xaa\x5f\x14\x8c\x45\x7a\xb3\x1c\x0e\x4e\xcd\xc6\x94\x2d\xc0\x7b\x38\x75\x3a\xcc\xff\x7a\x10\x1f\x79\xaf\x18\x1b\x42\x92\xa8\x72\x71\xad\x0a\x20\xb1\xc1\x79\x6b\xe5\x5b\x9f\x6c\x38\xdd\x5a\xff\x49\x7d\xd9\xfa\xa4\xfe\x74\xea\xfa\xa2\x35\x8e\xe3\xc9\x9a\x72\x06\x5c\x31\xa3\xa7\x49\x6f\x5f\x64\xca\x9b\x74\xb6\x1e\x6f\xda\x5b\xd2\x4c\xa5\x6f\xe0\xba\xb9\xdd\x56\xb6\x5b\xe7\xd5\xc1\xa7\xb7\xef\x7e\xff\x7d\x85\x6c\xb7\x9a\xf2\xd8\xea\x08\xcd\xac\x23\x6a\xf8\x67\xb8\xac\x2b\x5a\xf8\x67\xb8\x34\x90\x6f\x8c\x43\xb8\x5d\xed\x78\x61\xb0\xc0\x68\x8c\x46\xd4\x06\x18\x7d\x56\xc6\x12\xc7\x42\x86\x0f\x88\xf6\x3e\xc6\x2d\xec\x3b\xb3\xe4\x04\xf9\xc4\x62\x41\x6c\xe2\xdb\x04\x7f\x8e\xe2\x93\x81\x6d\x53\x7f\x2f\x70\xa3\x7b\x80\x0d\xb4\x6c\x34\x71\x2a\x54\x39\xb5\x3a\xe5\xe2\x8d\xaf\x42\x48\x5d\xc0\xdb\xb0\x0c\xe8\xd9\x06\x30\x6e\xe0\xd2\xb8\x73\xf0\x54\xbc\x36\x42\xb6\x2c\x8b\xee\xd6\xe4\xd8\x4c\x85\xf5\x46\x41\x16\xab\x6e\x83\x19\xcf\xd0\x91\x42\x3d\x49\xcb\x20\x48\x15\xc4\x4f\xbc\xbe\xab\x17\xf6\x99\x3e\x40\x39\xb5\x65\x14\xa9\x24\xf1\x2a\xdb\x31\xb3\xa8\xea\x7a\x4e\x1e\x52\x0d\x73\x81\x22\x86\x9e\x8a\x90\xd7\xe8\xa3\x19\xa3\xd3\x3f\x83\x28\xe0\x5d\x99\x46\x41\x16\x8b\x3d\xb4\x95\x14\x89\x2c\x16\x71\xce\x69\x33\xaf\x3e\x77\xf6\x99\xc8\x3d\x2d\x75\x30\xc3\x5f\x59\xcd\xef\xb2\xec\x30\x7b\xbe\xbf\x8a\x22\xe2\x79\xd8\xff\x7c\x9f\xca\x99\xa6\xf2\xaa\x98\x0b\xf4\x73\xe4\xdd\xc0\x25\xcb\x78\x62\xbb\x8b\xd1\x75\x72\xea\x62\xca\xba\x39\x72\xe5\xac\xb9\x25\xec\x6c\xf0\x23\x06\x3e\x0c\xe5\x6f\xe9\x4a\x28\xf4\xf3\xa7\xf9\x78\x58\xbc\x7d\x15\x16\x2e\xe5\x51\xe9\xac\x9c\x0e\x28\xa9\xca\xf6\x90\xed\x97\x29\x85\xb3\x54\x44\x65\x9a\xe2\x85\xb9\xbd\xac\x0f\x6b\x2d\x77\x4a\xad\xb9\x24\x39\x31\xf1\xab\xe5\x96\xac\xb8\xec\x6b\xcd\x2b\x29\x35\xe9\x82\xc9\x54\xca\x24\xc9\x19\x00\xcb\x2c\xe1\xb5\x01\x02\xe5\x19\xa8\x37\xd5\xe3\x06\x2e\xb7\x55\xb5\xf5\x6b\x4d\xf0\xa8\xcf\x5c\xb0\x8d\xe4\x8e\x9a\xd3\x37\x84\x6e\x5c\x4e\x9b\xde\x72\xba\xc6\xfc\xbd\xff\xfb\xb3\xdf\xff\xed\x7f\xf1\xe9\x1a\x44\x97\xaa\x98\xa8\xa1\x97\x8a\x70\x03\x97\x6b\x0d\x94\xdf\x5e\xbe\x41\x6c\xe9\xd6\x91\x69\xb0\xee\xa5\xdb\x5e\x8e\x01\xd5\xe0\xd7\x98\x5d\x50\x72\xe5\xb2\x18\xdd\xfa\xf2\x0a\x52\x2c\xac\x14\xf7\xdb\x4e\x1e\xc1\xa7\x9f\xdc\x17\x97\xcf\xec\x97\x2b\x01\x67\x45\xa1\xf2\x92\x77\xad\xae\xbc\x82\x9b\xdb\xad\xa4\x15\xdc\xdc\xa6\x82\xe3\x8e\xac\xe3\xbc\xd0\xb8\x18\xf4\xd0\x63\x4d\x27\xb8\xb9\x6d\xb3\x0d\x52\x3b\x77\x7e\x86\x4b\x63\xd7\xa0\x3a\xa1\x22\x95\x20\xe5\x70\x4f\xa4\x33\x27\x94\x98\x94\x49\x2b\xaf\xb6\x07\x69\x2e\x70\x29\xd6\xda\xa0\x63\xb5\xb8\x24\x15\xcc\x5d\x07\x6b\xb7\x5f\xae\xae\x58\xf9\x95\xe3\x56\x4f\xf6\xeb\x9f\xc8\x21\x82\xaa\xb9\x2b\x34\xf2\xf9\x1c\x46\x15\x9a\xa3\xa9\xb0\x1f\x6d\x3b\xc2\xd6\x19\x0e\xad\x6e\xcc\x50\x51\x72\x96\x29\xad\x50\xad\xf1\x87\x1e\x5d\x59\xa5\xcf\x45\xfc\x88\xf2\x61\xb4\x4b\xc0\x3e\xb6\x8c\x12\x59\x7d\xd6\xa1\x83\x6e\x0d\xf6\xf7\xd5\x2d\x48\xaf\xe1\x9d\x21\x1d\xbd\x75\x67\xa6\x68\x47\x1b\x52\x99\x00\x06\x81\x53\xc2\xb4\x67\xe6\x56\xed\xbb\x63\x00\xcc\x66\x4e\xe1\x3e\x8e\xd1\x1c\xab\xdc\x47\xb1\x8a\x7f\xfe\x95\x8a\x66\xc0\x20\x93\x31\xf8\xb8\xda\x44\xf8\xa0\x35\xf8\x68\x22\xee\xcf\xbf\xfe\xf7\xbb\x80\x39\x12\xe4\xa7\x02\xcb\xb8\x5e\x60\xe3\x0e\x4a\xd5\xef\x6d\x44\x44\x8b\x00\xb1\xa7\x47\xc0\x67\xa0\x26\x1e\xc2\xd1\x4f\x00\x1b\xc0\x75\xdb\xc6\x4b\x6c\xcc\xc0\xd2\xf0\xe0\x04\x60\xe7\x16\xba\x4b\xc3\x99\xcd\xc1\x88\x95\xf4\x23\x4a\xeb\x2d\x34\x3c\x64\x43\xc3\xc1\xa4\x7f\x10\x04\x68\xe4\x00\x0c\x6d\xda\x78\xdb\xb8\x84\xd0\xb8\x86\x2e\xba\xa3\xe9\xc9\xb4\x24\xa0\x0d\x31\x70\xdc\xc0\x40\xac\x84\xff\x2b\x32\xda\x4b\x36\x5a\x5a\x1d\x30\x80\xb0\x30\x8c\x58\xbf\xe4\x9f\xe3\x61\xe8\x7b\xc0\x0d\x76\xc5\x8a\xd4\x55\xfb\x8f\x88\x66\x59\xf5\xff\xa2\xd9\x3a\x1e\x51\x07\xe9\xef\x25\x8a\x02\xaa\x93\x23\x6e\x6e\x55\x49\x11\x49\x86\x50\x91\x6e\x73\x9d\x29\x32\x47\xea\xe5\xdd\x1e\xb5\x6d\xd0\xff\xf0\xbf\x5a\x36\x0c\x9c\x89\x17\xee\x17\xdb\x99\x29\x74\xe7\x46\xc6\xf6\xa8\x37\x95\xcf\x4b\xa6\xb6\x6c\xcf\x5a\x72\x69\xf4\x41\xbc\x62\xd5\xdd\x39\x06\x9d\x1e\x40\x57\x54\xe4\x5d\xd4\x43\x17\x1b\x69\xe5\x14\xce\xd2\x1d\xca\xd9\x84\xf1\xbd\xb2\x63\xd1\x82\x49\x2e\x96\x21\x08\x8b\x08\xda\xc1\x14\xdd\x99\xe9\xc9\x51\xa7\x52\x56\x75\x3f\xe5\xb3\x25\x16\xa2\xfc\x52\x15\x55\xa6\xd4\xdc\x33\xb9\x80\x7d\x95\x61\x7c\x0f\xa7\xe0\xd6\x41\x39\x9e\xf8\x12\x83\x89\x1a\x53\x3b\x3a\xb2\x78\x08\x35\x25\x82\xf2\x85\xf0\x54\x13\xe2\x2d\xd5\x30\x1b\x72\x88\xc5\xb8\x34\xfd\x36\x69\x4f\x78\xbc\xc9\xab\xab\x57\xb5\x4c\x92\xb6\x53\xc3\x14\xd9\x78\x2a\x4f\x2e\x9e\x2d\x11\x35\x7b\x3e\x85\xa3\x9b\xaa\xa9\x2b\x45\x73\xff\x09\x02\x17\x4f\x0d\xde\xc7\x3a\x78\x4d\x37\xae\x81\x58\x46\x9a\x9b\x88\xde\x35\x2b\x54\x1a\x55\x7c\x75\x79\x2f\xd7\xe4\xb3\x70\x98\x13\x08\x08\xbf\x05\x9f\xe0\x9a\x00\xaa\x12\x5b\xb2\x36\x3f\x46\x34\x2b\x71\x05\x5b\x29\x99\x45\x62\xc4\xd1\x1a\x24\x6e\xec\x0d\x40\x56\xa5\x16\x25\x27\xf8\x2f\x83\x54\x43\x8f\x46\x31\x09\xa6\x29\x69\xe3\x5b\xd4\x4d\x56\x26\xe0\xf5\x1a\xc2\x5d\x28\xcc\xfc\x59\x69\x88\x3a\xc5\x13\x7a\x95\x8a\x27\x68\x39\x86\x0a\xdc\xfa\x95\x52\x8f\x6b\x0f\xd9\xe4\xc6\xd2\x52\xd6\xd5\x2d\xa5\x20\x7f\xff\xe2\xb7\x7f\xbd\x79\xf3\x6a\x53\x29\xc8\xeb\x36\xc4\xd2\xd4\xe4\xed\x1b\x62\xbb\x3d\xab\xbb\x97\x9b\xa5\x4c\x1f\x58\xb3\x31\xb6\x76\x6b\x68\x4d\x66\xca\x8a\xa6\xdd\x5c\x79\x2a\xc3\x4a\xdb\xfb\x5a\xad\xb4\xac\xc2\xf3\xa6\xcc\xb4\xbc\xe0\x9d\xae\x9d\x36\x91\x83\xff\x18\x2d\xb2\x71\xb7\xe2\xaa\x27\x81\xfc\xaf\xd8\x3c\x5a\x32\xe6\x10\x83\x1b\x9a\xec\xc2\x43\x36\x7c\x34\x8f\xfe\xf2\xe1\x2d\xf4\x83\xb0\x72\x64\x25\xfa\x2e\x61\x1e\xce\xdb\xc4\xe4\x71\x58\x2f\xc2\xc1\xc6\x91\x00\xf8\xb4\x44\xea\x81\x24\x0e\xb1\x4c\xf2\x16\x1b\x8d\x52\xe2\x94\x36\x73\xec\x43\x88\xe1\x47\x9c\x82\x10\x90\x92\xe6\x44\x3c\xa9\x1c\xd0\x9e\x03\x4b\x94\x48\xfc\x8f\xe5\xb7\x0b\x38\x01\xf3\x92\xa1\x42\x5e\x2f\x59\xbd\x88\x74\x80\x4e\x3d\x52\xd4\xea\xe8\x52\x75\x5d\x4c\x45\x16\xe9\x14\x37\x8e\x07\x20\xaa\x3d\x28\x35\xc3\x5c\xd4\x39\x7c\x1f\x21\xdc\x5a\x27\x28\xc7\x97\x89\x12\x11\xe2\x42\x30\xfe\x88\x7c\xdc\xba\x5e\x9a\x54\x2a\xfc\x81\x9e\xac\x53\x1b\x06\x23\xb6\xcf\xa7\x80\x7c\x4a\xc3\x43\x88\xd5\xdc\x10\x4a\x44\xda\x0a\xbd\x29\xd8\x05\x75\x9d\x0e\x9e\x67\x2a\x16\x8c\x0e\x46\x88\x2e\x64\x9d\x94\x81\xdc\x85\x66\xa4\x7c\x09\xa9\xa0\xfb\xb8\xfc\xc4\xff\x84\x2c\xdb\x95\x0f\x82\xbf\xa6\x4c\x40\x92\x22\xcd\x7d\x67\x32\x95\x1c\xaa\x49\x0f\x6b\xac\x95\x82\x08\xe8\x90\x39\x95\x06\x18\xf8\xf2\x13\xcc\x6b\x0a\xd3\xfd\x96\x5a\x9e\xf1\xda\xda\x52\xcb\x37\x76\xd0\xb2\xfb\xf8\x95\x2a\xf4\x22\x59\x5d\xf7\x04\xe5\x9f\xa8\x0d\x2e\xeb\xb7\xcc\xf5\x6f\x99\xeb\x6b\xcd\x5c\x8f\xa5\xaa\x4b\xda\x25\x05\x89\x0f\x34\x82\x14\x36\x6d\xf3\x2c\x99\x9e\x4e\x7d\xcd\xbb\xad\x29\xf5\x46\x8d\xb8\xc3\x6b\xd3\xf6\xcf\x8f\xdd\xeb\xce\x1b\x1f\xfe\xa6\xb6\x7f\xd2\x51\x29\x2d\x92\x99\x5a\x66\x25\xe7\x9d\xe2\x82\x30\x15\x76\xad\x50\x8a\xcd\x54\x09\xc9\x23\xac\xfb\xef\x97\x2f\x67\x64\x21\x01\x83\xcc\x91\x55\xc4\xf8\x30\xb5\x4a\xd6\x4b\x07\x56\xda\xaf\x96\xb0\xdc\x8a\xf3\x8a\xc1\x84\x61\xad\x89\x04\xc1\x10\xcd\x4b\x98\x78\x3d\x84\x21\xf9\x17\x2d\x30\xcf\xc1\x25\xcc\x38\xbc\x4d\x44\x00\x45\x08\x5d\x15\xc6\x7b\x67\x7f\xf3\x9a\x36\x29\x7d\xf1\x86\xb7\xad\x97\x8e\x12\x71\xb7\x2a\x5a\x5b\xb6\xd3\x89\x46\x84\xd1\x90\xab\x29\x20\x1f\x0c\xb6\x70\x06\xa3\x74\x51\x22\x41\xe7\x0c\x57\x0f\xf8\x56\x1c\xb1\xd2\xe7\x73\xcb\x39\x2f\xdd\x8b\x17\x93\x67\x10\xbd\xa8\x29\xe7\x65\x2b\xd9\x07\x57\x53\x28\x1c\xc3\x34\x7f\x20\x72\xaf\xd6\x91\x84\x10\xb6\xe6\x78\x13\x1a\xa9\x27\x02\x0f\xcb\x2b\xf4\xb5\x64\x19\xa8\xe8\x26\xa2\xba\x27\x7a\x54\xe7\xe3\x2d\xe4\x1a\xec\xbf\xf9\xf0\xea\xc7\xc9\xf8\x27\x3d\x5a\xcb\x08\x38\x53\x45\x5c\x48\x92\xd9\x2f\x8e\xe7\xcc\x16\xb3\xc2\x1a\x73\x19\xd1\x16\xb2\x49\x91\xc6\x2b\xb6\xbc\x05\x99\x52\x44\xe9\x68\x86\x26\x3e\x98\x4f\x97\x44\xbf\x73\x78\x40\xde\xc0\x9c\x81\x8f\xa4\xdf\x1f\x7c\x76\x6d\x5c\x38\x13\x87\xae\xeb\xa0\x97\xe0\x92\xb3\xa0\x70\x6c\x59\x53\x83\xb6\x03\xbc\x0d\xcd\x8c\xf6\xb5\xc9\xc9\xb1\x2e\x36\x34\x3b\xf0\xb1\xae\xa9\xa5\xff\x12\xee\x85\xb0\xc3\x16\xfd\x47\xba\xc5\xa3\xa1\x0c\x15\xc3\x53\xdd\xab\xb5\x71\x0d\x1f\x97\x70\x9b\xf3\x77\x78\x45\xe4\x2d\x5c\x4e\x6f\xdc\xce\xf9\xab\x1f\x83\x91\x9e\xf7\x9c\xa6\x03\x97\x91\x25\xab\x78\x2c\x4c\x5d\x88\x13\xc7\xd6\xf0\xcd\x18\x2b\x79\x40\x1e\x9d\xff\x63\x97\x10\x47\x86\x13\xa4\x94\x69\x6e\x0b\x66\xec\x75\x83\x17\xab\x4c\xd2\xca\x7a\xea\x45\x2f\xbd\xa5\x6b\x5c\xe6\x8d\x2b\x30\x49\x61\x0a\xac\xc5\xf2\x1d\xb3\x7a\x17\x00\x0a\x15\xbb\xf2\x05\xdf\x11\xf1\xd2\x42\x43\x11\x8b\x96\x0d\x2b\xac\xb2\x87\x48\xa8\x36\x5d\xa2\xec\xe1\xa5\x2b\xe0\x82\x46\xc8\x1b\x01\x16\x17\x02\x46\x37\x13\x1f\x2d\x3c\xbb\xe5\xcc\xc0\x04\x9e\x1a\xe2\x91\x20\x68\xdd\x82\x10\x31\x2a\x7a\xa3\xd5\xe2\x4f\xf0\xd1\xee\xc2\x8f\x2c\x8e\xbf\xc5\x11\x96\x43\xeb\x9c\x64\xf5\x24\xb4\x88\xfc\x56\x70\x3b\x89\x12\x00\x3c\xe4\xc1\x94\x1f\x59\xa3\x84\x73\x57\xb1\x30\xe1\xf1\xcb\xf0\x02\xca\x10\x97\xd9\xeb\x9a\xad\x4c\xc7\x20\xbd\x1a\xf1\x51\xc4\xe3\xbd\x3b\x96\xd9\x64\xa4\x57\x24\x15\xa7\x67\x56\x11\x41\x29\x8d\x6d\xcb\x0f\x4c\x3e\x7d\x48\x88\xb6\x8c\x89\xe5\x84\x2b\x96\x1f\x03\xe6\x47\x30\x27\x5e\x82\x71\x3a\x3e\x06\x7a\x64\xcb\xf1\x39\x61\xca\x90\x5b\xa8\x18\xca\x9d\x28\xc1\x9e\x0a\xe0\xcc\x63\x24\x9b\x0b\x31\xac\x64\x0c\xcc\x36\x28\x18\x49\xf8\xca\x90\xff\x68\xdf\x60\xb5\x88\x68\x61\xb7\xe5\xe5\x34\x96\x37\xb4\x79\x39\xed\xe6\xc5\x4f\xbf\x5e\xdc\xbc\x7e\xa5\x25\xa7\x55\x83\xa7\x2c\x88\xe9\x2f\x7b\x58\xf2\x84\x02\x71\x66\xa3\xda\x07\xd2\xca\xc6\x3b\xdd\x90\x9c\x90\x9f\x40\xa5\x7a\x23\x2f\x79\x47\xf5\x7c\x41\x52\x8a\x52\xaa\xc8\x4b\xf1\x50\xbd\x50\x9c\xc9\xa3\x7a\xab\x28\x8d\x42\xf5\x4e\xb2\xb0\xc3\xa6\x1c\xfd\x65\x70\xd3\xd5\x38\xef\xaa\x77\x34\xd1\xdc\xcb\x74\x9e\xba\xa4\x37\xd7\xb5\x32\x69\x69\xa3\x23\x48\xe4\x14\x6d\xb4\x6f\x55\x02\x5a\x8d\x03\xc8\x17\x2a\x6a\xcd\x7a\x52\xe5\x20\xc5\xfb\x29\x95\x20\xaf\x16\x0d\x56\x5d\x88\x2f\x35\x01\xc9\x58\x67\x86\xcb\x61\x76\x12\x92\x22\xff\x25\xca\x3e\x2a\xe2\xa9\x79\xc5\x54\x2b\x67\x1d\x19\x95\x32\x8f\x8c\xd8\xc1\x3b\x28\x91\x7d\x54\x4c\x71\x1b\xd9\xa3\xbd\xa2\x2c\xa4\x12\x61\x0c\x95\x06\xa9\x93\x87\xb4\x5f\x29\x0f\x29\xd7\xc1\x5f\x2a\xc7\xf0\xb1\x28\x0a\x72\x32\xbd\x54\x7f\xfe\x35\xb2\x61\xdb\xf8\x41\x81\x80\x60\x19\xb7\x0e\xbc\x2b\x0c\x46\xad\x0f\xdd\x61\x45\xb4\x80\x3c\x88\x07\x7d\xe5\xa8\x5e\xff\x57\x34\xd1\x72\x6a\xd2\x96\x12\xc1\x60\xef\xfb\x5f\x2e\x5e\x2f\x33\xea\x75\xeb\x9a\xb2\xf3\x0a\x48\x52\x5f\xb8\x76\xed\xc8\x3a\xeb\x34\x12\x42\x7f\x2c\x25\x1a\xb7\x5b\xca\x70\x04\x30\xb9\xe7\x74\x0a\x19\x86\x21\x1b\xe9\x52\x86\x2c\x9e\xa0\x6c\x29\xc3\xc8\x7b\xfe\x45\x96\x32\x5c\x78\x6c\xda\xcb\x15\x76\x41\x89\x73\x1f\x35\x5c\x04\xa5\x16\x41\xba\x74\x2c\xf3\xbd\x78\x8d\x91\x77\xa1\x02\x9a\xc2\x8d\x31\xb3\x2f\xb1\xec\x64\xc2\x30\x1e\x29\xbe\x24\x55\xec\x78\xe9\x78\x22\x68\xb7\x7c\x28\xcc\xd2\xe9\x98\x22\x76\xfd\x48\x35\x24\x7c\x56\xd8\x7b\x14\x6a\xe0\x2c\x96\xa8\x00\xd6\x84\x49\x2f\x49\x38\x93\xc4\xd7\xe1\xdf\x67\xbc\x1b\xe9\xab\x48\x7d\xd0\x20\xd0\xbd\x8a\xba\x43\x36\x8f\x5a\xcd\x49\xb5\x26\x22\xae\x44\xc2\x3f\x65\x13\x30\x27\x37\x72\x5d\xa8\x6d\x60\xd0\x75\x7f\x82\xce\x64\x8a\x65\x43\xd8\x49\xcf\x8a\xcf\x52\x69\xff\xca\x4f\xbb\x2b\xa2\xc7\x2c\x2a\x14\xec\x4d\x99\xa8\x93\x24\xc0\xae\x9a\x00\xbb\x09\x02\xec\xa6\x09\x30\xa6\x27\x77\x4c\x2b\x0a\x88\xd3\x04\x5f\x5e\x3d\x2f\x33\xa2\x2b\x10\x65\xaa\x4a\x61\x52\x79\x24\x66\x25\x1f\xd6\x61\xab\x7a\x2e\x6f\x1d\x49\x98\xed\x43\x49\x8f\xef\x2a\x61\xb4\x15\xa5\xc7\x4a\xa1\xb4\x9c\xbc\x36\x2c\x38\xfa\x87\x3f\xbf\xf2\xde\x01\x57\x2d\x38\xce\x81\x47\x45\x7b\xec\x03\x2f\x70\xd8\x19\x8e\xff\x21\x22\xe9\xa2\xf2\x20\xd5\xf1\x00\x42\x31\x93\x2e\xc5\x3a\x93\xfe\xd9\x8a\x27\x63\x23\x0f\xad\xa3\xbc\xac\x7f\xf2\xf3\xa3\x07\x60\xf5\x38\x33\x56\xb9\xae\xcf\x5c\x37\xce\xac\x57\xbc\xa1\xd6\x25\xf2\x9b\x12\x56\x13\x57\x5d\x92\x88\x64\x79\xa3\x4e\x2e\x60\x69\x8d\x40\x71\xad\x60\x70\xdd\xf2\xc0\x6d\x32\xb4\x83\x08\xdc\xe4\x72\xe3\x09\x4d\xcc\x77\x4f\x91\x1b\x43\x1e\xeb\xfb\x80\x66\x2e\xc6\x61\x9b\xc2\xe0\x8c\x20\x5d\xa2\x22\x16\xac\x65\x99\xef\xd0\xc2\xb3\x8d\x2b\xdf\x99\x1b\x57\x0e\xbd\xb5\x22\xcd\x3c\x66\x1a\x48\xe2\x03\x08\x67\x12\x1b\xe0\x15\xb8\xd6\xbc\x65\x56\xca\x62\x1b\x43\x68\x5f\x83\xd1\x4d\xca\x1c\xca\xb9\xc1\xc0\x74\x3c\x97\xd7\x38\x59\x3d\xed\x6c\x84\xe6\xcb\x16\xb7\x32\x85\x3d\xa5\x59\xd2\xc8\x75\xe6\xd7\x08\xf8\xf6\x15\xad\x6f\x64\x62\x07\xbb\xd0\xcc\x09\x4e\x52\x27\x9e\x65\x3c\x78\x10\x7f\x50\xa2\x5a\xe9\xf2\xa7\x43\x35\x5e\xbe\x35\xb8\xc8\x61\x60\x64\x84\xc3\x52\x2d\x46\x81\xe8\xad\xee\xa5\xaa\xbe\x25\x99\xcc\x14\xbb\x1e\x8f\x96\x2e\xe1\xb6\x9a\x9b\x89\xf4\xd4\xd0\xd5\x5f\x18\x53\x43\xfe\x77\x8e\xe6\x0e\xb4\xc9\xa2\xf1\x29\x3e\xad\x90\x93\x99\x87\xd3\x22\x97\xae\x5a\x71\x5a\x3d\xfd\x69\x5d\x22\xdf\x5f\x5a\x46\x80\x66\x10\x4f\x1d\x6f\x62\xdc\x41\x0f\x1b\x77\x3e\xf2\x26\x55\x26\x98\x67\x7c\xac\x5f\xb9\x96\x33\x5a\x32\x58\x1d\xbb\x95\x40\x20\xc5\xa4\xd2\x68\xc5\x39\xf0\xb1\xc3\x6a\x06\x72\x74\x94\xc5\xc4\x19\x2b\x98\x63\xc8\xde\xc2\x9b\x3a\x96\x65\x34\x14\x36\x88\x72\x7d\x84\x0c\x37\xdd\x7c\x18\x82\x1a\x36\x9d\xc9\x8e\x2b\x74\x9c\x64\xe0\xe9\xfe\x7d\xcc\xc2\x1a\x13\x25\xfe\xca\x75\xa3\xbc\x0b\x62\x93\x94\xa3\x0a\x34\xe4\x73\x16\xc7\xd0\x0a\x52\x51\x8d\xb6\x7c\xef\x25\x2c\x4c\x22\x55\x54\x55\xaa\x2a\x06\x09\x29\xdf\x4a\xca\xab\x4a\x5e\x0d\xb9\xd5\x22\x96\x9c\xaa\xc1\xa6\xad\x41\xf6\xc2\x8e\xc2\x65\x26\x5f\xe7\xc9\x84\x99\x3e\x81\x6d\x00\x97\x45\x7a\x84\xbe\xee\x21\x48\x7f\x5b\x86\xeb\x37\xf6\xd1\xc9\xfc\x7c\xfe\x4e\xdf\x70\xbd\xaa\x86\xc1\x67\xac\x6f\xcb\xae\xaa\x64\x80\x91\x9b\xd6\x31\xc8\x4d\x9b\x43\x4f\xf9\x17\x71\x9d\x56\x75\xc1\x0e\xbf\x19\xd6\xbf\x19\xd6\x1f\x19\xfa\x8b\x8f\x58\x00\xdf\x0d\x5c\xc6\xe2\xe4\xd2\x41\xdb\x2c\xcc\x49\x01\xfe\xb2\x76\xd4\x17\x22\xfe\x89\x20\xef\xee\xb1\x65\xfa\x70\x06\x1c\xcf\xf1\x26\xbf\x39\x36\x7d\x22\x2e\x0a\x16\x86\xe2\x17\x76\x80\x11\x06\xae\xba\x71\xa2\x1c\x1b\x4c\x84\x5a\xa1\x83\x82\x19\xac\x35\xca\xbf\x28\xf2\xa6\xe4\x58\x95\x82\x77\x96\x3b\x5c\x37\x31\xe0\xb5\x40\xe0\x52\x99\x56\xf2\x51\x73\xbe\xba\xcc\x00\xa3\x62\xbc\xa1\x4e\xb8\x95\x66\x30\x56\x89\xf3\xa1\x8a\x5c\x93\x6c\xdf\x6e\x3a\x88\xed\x2d\x08\x02\x06\x3d\x9a\xc0\x68\x54\x3c\xfb\x9b\x28\x39\xa2\xf1\xec\xb9\xef\x60\x67\xc4\x04\xcb\x6e\x19\x23\x79\x01\x61\x9d\x08\x9b\x06\x61\x06\x9c\x15\x44\x7e\x35\xc9\xd1\xf3\x09\xfa\x48\x92\x09\x3a\x1a\x27\xba\x24\x54\xb9\x26\x52\x8e\x29\xe7\x6b\x4a\xc3\x0f\x57\x5e\x51\xa2\x7a\xce\x7f\x4b\xc2\x00\x69\x6e\xa0\x69\xf0\xd9\x87\xb7\x68\xdc\x93\xc5\x16\xcc\x90\x46\xa0\x0d\xc2\x6c\xdb\x9a\xd3\xa8\x34\x6e\x79\xd8\xa1\x46\x94\x20\x7f\xbe\x36\x8a\x03\x90\x95\xb7\x9a\xd1\x6f\x79\x2c\x9f\xac\xad\xfc\x2d\xaa\xc5\x93\xda\x4a\x51\xa7\x47\x63\x49\x54\xe7\x4b\x73\x2b\xa5\x11\x54\xdf\xca\xac\x69\x54\x1a\xb7\xce\x56\xf2\xb5\xa9\xba\x95\x51\xbf\xf5\x6d\x65\xc4\xb7\x14\x7b\x39\x12\x3f\x6a\x2c\x8a\x8a\x01\xea\xee\xa6\x3c\x88\xea\xdb\x99\x39\x95\x6a\x43\xd7\xd9\x50\xb1\x40\x55\x77\x54\xea\xb9\xdc\x96\x16\x73\xf7\x95\x63\xa2\x15\x49\x68\xe5\x85\xb5\xd4\xed\xfc\x97\x4d\x56\xd3\xdb\xb5\x0c\x9b\x53\x8d\xe8\x55\x89\x6d\xcf\x4d\x5c\xd3\xa4\xb4\xf2\x2a\xaa\x2a\x9e\xb3\xac\x4d\x2c\x6e\xdf\xaa\x60\x17\xdb\x8e\x5b\xfe\x15\x3e\x7a\x7b\xfc\xaf\x7f\xda\x65\xcc\x62\x95\xc2\x3a\x85\x35\x4c\xdb\xe5\xfe\x48\xfc\xdc\x41\xd2\x9a\x9f\x76\x75\x4b\x06\xff\xad\x79\xbb\x0b\x0c\x71\x0a\x6f\x9e\xb0\x14\x58\xaa\x84\x6b\xa5\x65\x6e\x5b\xda\xa5\x6a\xd4\x95\x74\x4d\xb2\xd1\x36\xc0\xa0\x85\x11\x72\xb1\x33\x17\x82\xc5\x3b\x38\x71\x02\x6a\xd2\x31\x6e\x1d\x60\xac\x38\x22\x59\xae\x48\xb6\x1c\xdd\xc4\x95\xe7\x9b\x75\x23\xaf\x40\x63\xdf\x6c\xa2\x5f\xa8\x4d\x94\x13\x49\x59\xc1\x45\x11\xa9\x59\xcc\x37\xe3\x75\xd1\x52\x46\x3a\xd5\x1b\xea\x64\xb6\x58\x6c\xb0\x3c\x83\x32\x82\x53\xa6\xd0\xb4\xaf\x2d\x34\xed\x6b\x66\xf2\x57\x62\xe2\x7f\x8d\xd8\xf0\x8c\x5d\x29\x02\xa9\xdc\x7a\x50\x78\x10\xde\x7d\xb5\x84\x87\xa7\x8a\x5e\xaa\x7f\x0d\xbf\x8e\xae\x5e\x0e\x5d\x12\xbb\x13\x39\xde\x2d\x15\xde\xcc\x10\xbd\x5a\x7a\x49\x11\x6b\xce\x3b\x8a\x7e\x09\x6f\xc2\x53\x53\xd1\xed\x5b\x81\x6f\x14\x1f\xee\xb7\x88\xf5\xc7\x1a\xb1\xde\xed\xee\x6d\x3a\x64\x3d\xe7\x8c\x54\x8d\x62\x57\x9e\x93\xf4\xaf\x29\x28\x1f\xed\x73\xd2\xcd\x3b\x27\x5d\x9d\x73\xd2\x2d\x3a\x27\xb1\xc4\xf0\x47\x10\x6a\xbf\xd1\xa8\xf3\x98\xb2\xaa\xa9\xe3\xf2\xd8\xc8\x4d\x2b\xb6\x97\xff\x7a\xb6\x80\xce\xcc\xd1\x06\x84\x9d\x82\x60\xea\x8c\x90\x3f\x6f\xb1\x59\x24\xe2\x90\xec\x51\x40\xff\x4b\x2f\x88\x3b\x1f\xcc\xe7\xac\x36\x57\x87\xd2\xbc\x24\x5c\x92\x47\x32\xfc\xc2\x79\xfa\x31\x03\x69\xd5\xd6\x8e\xab\x60\xb1\xe4\x97\xba\xea\x84\x71\x8a\x92\x58\x5c\x4e\x20\x13\x1a\x66\xaa\x19\xf9\x14\x18\x0d\xd5\xa3\x21\x88\x41\x1c\x73\xab\x86\x12\x59\xc5\xbd\x68\x9b\x2c\x57\x50\xb1\x0a\x04\x7c\xf5\x86\x15\x20\x05\x9c\x53\x3a\x35\x7c\x88\x17\xbe\x07\xed\x10\xea\xb7\xad\x78\xf6\x77\xb4\xa0\x95\xff\xa7\xe0\x16\x1a\xb7\x4e\xe0\x60\xf2\x82\xf1\xfe\xdd\x2b\x03\x4f\x01\x36\x9c\xc0\xe0\x35\x12\x49\x33\x0b\xef\xc6\x43\x77\x9e\x21\xee\x08\xcb\x08\x10\x85\x93\x18\x01\xcf\xc0\xfe\xd2\x98\x20\xf2\x24\x51\xf7\x0d\x8c\x28\x9a\xb0\x8f\x10\x56\x75\x7c\xe5\x2f\x0d\x17\xa1\x1b\xf2\xbc\xe3\x19\x68\xe1\xd7\x9a\x2f\x4e\x6d\x6d\x72\x8a\x78\x76\xf6\x77\x41\xe6\xb7\x7a\x93\x15\xbb\x02\xcc\x58\x32\x3a\x62\x98\x46\xd9\x46\x24\x66\x3d\x53\x9b\x8f\x7e\x44\xe1\x22\x92\x05\x7c\x7c\x4c\x9f\x11\x94\x1e\xa7\x17\x45\x36\x37\xce\xeb\x27\x37\x1f\x3a\x27\x17\x77\x50\x8b\xd7\x57\x5f\x0b\x3e\x3f\xcd\xd5\xf0\x10\x1e\xa3\x05\xf5\xfe\x6f\x78\x39\x76\xcf\xff\xd9\xf9\x38\x19\xa9\x6d\xba\xf5\x2d\x87\x98\xa0\xe6\x7a\x04\x10\x63\xc7\x9b\x6c\x01\xd6\xed\x5f\xcf\xee\x8e\xcf\x76\x4f\x2e\xd4\x36\xee\xe2\x20\xcf\x2d\x4b\x06\x62\xe1\xea\xcd\x56\x53\x80\xd7\x87\xd9\x05\xe6\x62\x6e\x83\x2a\xf0\xf7\x22\x0e\xa8\x24\xf0\x7d\xec\x9a\xf2\x8d\x70\xc2\x77\xd0\x87\x46\x00\x6e\xcb\xe3\xdf\x4b\xf7\x4f\x1a\x09\x3f\x00\xb7\xe4\x36\x5a\xca\x7d\x95\x41\xc1\x2f\xb5\x94\x55\x2b\x09\xd4\xb1\x94\xd1\x4a\xd2\x6b\xff\x1a\x42\x7a\xa5\x43\x5c\xeb\x72\xd2\x16\xb1\xfe\x8a\x26\xc4\xaa\x32\xb7\x5c\xbe\xf6\xb4\x16\x21\x39\x29\xcf\x5c\xf2\xe9\xe5\x4a\x0d\x5b\x17\x0d\xaf\xa6\x30\x80\xd1\xf6\x03\xd7\x45\x77\x54\x80\xc3\xc8\xa0\x60\x62\x13\x0e\x10\xe6\x1b\xd7\x3e\xba\x0b\xa0\xcf\xf1\x7e\xa0\x90\x2a\x7f\x83\xd7\xc6\xfb\x97\x6d\xe3\xc5\x2d\xf4\x97\x2c\x7d\xc8\x09\xd8\x61\x24\x8d\xb8\x68\x04\xdc\x00\x23\x1f\x4c\xa0\x65\x00\xcf\x36\xe6\xd0\x0f\x9c\x00\x07\x06\x9e\xfa\x68\x31\x99\x32\x29\x33\xa0\xbf\x89\x3e\x16\x44\xfa\x4e\x4a\x89\x85\x02\x97\x80\x14\x2f\xb4\x3b\x8e\x1d\xe8\xda\x01\x2c\x40\xc9\x35\xd4\xb1\xe6\x31\xd8\x28\x0c\x3f\x6a\xb4\x62\xa8\x0d\xd1\x1d\xcb\x3c\x3b\x7f\x65\x5c\xa1\x1b\x58\xa2\xc4\xbe\x28\x84\x46\x11\xd9\x23\x0b\x26\x03\xb8\x12\x98\xe7\x1e\x47\xd0\xa4\x61\x58\x77\xc8\xb7\xcd\xb8\x53\x0f\xb3\x3e\x87\xd1\x27\x5d\xc0\x30\x3e\x8f\x18\x24\xf2\xd5\x14\x1a\xb4\x1d\xba\xf5\x34\x79\xcc\xc1\x53\xc3\x87\x1f\x16\x90\xec\x34\x08\x28\xc5\xf0\x57\x47\xd4\x7a\x13\xbe\xfc\xef\x16\xa3\xa4\x56\x72\x1d\x8c\x9f\xae\xae\xde\x1a\xec\x6c\x1a\xe1\x21\x69\xb3\x4a\x38\x4e\x60\x2c\x02\x46\x62\xe4\x5c\xf8\xc8\xa5\x5d\x90\xf5\x14\x04\x7a\xc7\x28\xb3\x78\x65\x8b\xa3\x4b\x0a\x63\x4f\x54\x60\x63\xc1\xe2\x7a\x46\x6b\xd1\x65\x40\x8a\x89\xdb\x53\xde\x99\x98\x53\xf0\x12\xdc\x16\xc0\xa0\x3e\x2e\x1d\x20\xe4\xe8\x79\x82\xde\x02\x3b\x6e\x40\x53\x51\xc2\x72\x4f\x6b\x90\xf3\xc2\x66\x9a\xf7\xb7\xc0\x37\x60\x1f\xf8\x13\xaa\xd4\x05\x6d\x66\xf5\xfd\x47\x67\x67\xe7\x16\x39\xb6\xd1\x79\xda\x8f\x7e\x1c\x74\x86\xcf\xe5\x3f\x4e\xdf\xfa\x68\xe6\x04\xf0\x09\xd3\x9d\x8d\xb0\x59\xcc\xda\xf5\xfa\x7c\x8c\x37\x70\x19\x34\x70\x73\xd0\x19\x5a\x7e\x1f\x0f\xbc\xa1\xe5\xf6\x59\xf3\x56\xc0\x3f\xa4\xda\x80\x16\xb6\xbc\xe6\x3d\x26\xea\x2e\x7c\x9e\x35\x59\x2c\x66\xe8\x59\xd0\x5b\xcc\xa0\x0f\xae\x5d\x32\x5d\x4b\xb0\x67\xf1\xf7\x9d\xef\x60\xfe\xf9\xa1\x79\x0a\x07\x78\xd8\xf7\x44\x9f\xf0\xa1\x71\xef\x04\x67\x0b\x3c\x45\xbe\xf3\x09\xda\xa7\x1e\xbc\x33\x60\x43\x5e\x6c\xb7\x2f\x4f\x0e\x36\x70\xf3\xe1\xa1\x69\x39\xc1\x0b\x8f\x34\xaa\x7a\x23\x50\xbd\xf1\x60\x79\x96\xdf\x1e\x01\x3c\x9a\xc6\x1f\xbe\x73\xc8\x57\xb0\x4d\x65\x01\xb2\xb6\x6d\xb6\xfd\xcd\xfb\x11\x08\xa0\xb9\xdf\xd9\x33\x4f\x83\xc6\xd3\x4e\xd3\x72\x1b\x4f\xbb\xcd\x27\xd7\x3e\x04\x37\x4f\xf8\x6f\x5d\xfa\x5b\x37\xfe\x1b\xdf\xeb\x53\x72\x8f\xdc\x19\xd2\xef\x16\x7c\x60\xf3\x1e\x0c\x1f\x9a\x6d\x3c\x85\x5e\x6c\x28\x7c\x4d\xc2\xce\x3a\xe4\x85\x66\xf3\xe1\x21\x8f\x5e\x83\x11\x5c\x93\x8a\x26\xd3\x83\xa0\x2a\xd8\xa6\x25\xd8\x1b\xe6\xae\xd9\x14\x7b\xe8\x09\xca\xc5\xcf\xbd\x36\x2d\xe4\xdf\xe8\x58\x2d\xdc\x6c\x33\x43\x77\xc3\x34\x9b\xed\x3f\x91\xe3\xd1\x97\x4e\x4d\x33\x77\x3a\x18\x5d\xcb\x93\xb1\x4c\x6f\x3e\x3b\xbd\x06\x01\x3c\xdc\x6f\xfd\x19\x9f\x1c\x19\x55\x2d\xd3\x13\x93\x4b\x1d\xc5\xae\xf2\x28\x76\xe5\xa3\xd8\x1d\x9e\x9a\x0b\x3c\x6e\x1d\x9b\xe4\x7c\x89\xc6\xdb\x18\x7d\xbf\xc4\xf0\xcc\xf7\xc1\xb2\x01\xa3\x95\x82\x77\xc6\x15\xfc\x88\x2f\x20\xb9\x6a\xfc\x86\xd7\x6c\xdb\xf4\x63\xc3\x6f\xe6\xad\xca\x35\x46\xe0\xcb\x5d\x15\x31\xeb\x17\x5e\x38\x6b\x48\x3f\x4a\x2b\x13\xad\xdc\xd8\x47\xb3\x68\xed\xf2\xd7\x65\x04\x5c\x97\x30\x81\x16\xbb\xd8\xd6\x7a\x06\xc4\xf1\x34\xc5\x57\xe6\xd3\x3e\xe9\x16\x8d\x0d\xf8\x5c\xe2\xea\x21\x63\x3b\x85\xb9\x43\xe7\xf8\xea\xeb\x1e\x34\xd9\x43\x5c\x75\x0f\xf9\x20\xc5\x26\x31\x1b\xc5\xbb\xcb\x5f\xdf\xb6\xf9\xf5\xd3\xf6\x61\x80\xdc\x5b\xd8\xc0\x0d\xd8\xcc\xdf\x2a\x5a\x85\xfd\xfd\xbb\x57\x1b\x63\x55\xa9\x39\xf7\x94\x73\xee\xc9\x73\xee\x0d\x4f\xef\x1f\x2c\x3f\xfd\xee\x9e\xf2\xdd\x3d\xf9\xdd\xbd\xe1\x29\x23\xeb\xf7\xef\x5e\x9e\xa3\xd9\x1c\x79\xd0\xc3\x7c\xe9\x06\x50\x30\x43\x2c\xf1\x42\x4b\xbe\xa3\xbd\x66\x7b\x06\xe6\xaa\xfb\x80\x08\x3f\x4f\xfb\xde\x00\x0e\x9f\xfb\x0d\xd8\x7c\x66\xf6\xcd\x67\x7e\x83\xfc\xdd\x3c\x85\x0f\xa2\xbd\x1d\xb3\x39\x6c\xb3\x50\x1f\x45\x23\xa6\xf9\xb4\xdf\x8f\x1e\x7e\x6e\xe6\x6e\x96\xed\x04\xac\x9e\xe6\xfa\xf7\x0a\xf6\x61\xfb\x1c\x21\xdf\xb6\x70\x1f\xb3\x4f\x4f\xc6\xc8\x6f\xb0\x3d\xec\x58\x7e\xbf\xf3\x77\xff\x7f\x61\xfb\x57\x38\xe2\x7b\xf1\x77\xff\xd9\x33\xb6\xc7\x6e\x9f\x7e\x3f\xf0\x87\x2d\xcc\x3f\x3c\xf1\x9e\xf5\xdd\xbf\xb9\x0f\xe4\xe7\xa0\xff\x0b\xc0\xd3\x76\xf0\xc1\xc7\x0d\xaf\xf9\x0c\xb6\x99\x57\xfa\x19\xe6\x1f\x2c\xd0\x0f\x9e\xc1\xf6\x99\xfd\xe7\x22\xc0\x64\x0f\x9f\x61\xe9\x0f\x41\xf4\x80\x08\x64\x8d\xa0\x0f\x9a\x16\x6d\x8e\x06\x07\x36\xba\xf0\xe0\x6f\x41\x73\xb7\xdb\xe9\xe4\xae\x23\x9a\xed\xd2\xe2\xc9\xad\xb1\xe3\x07\xb8\x05\xbc\xd1\x74\x4d\xae\xc4\xda\xf8\x36\x56\x89\x94\x5c\x48\xc2\x6d\xe6\x9c\xa0\x0e\x72\x22\x6e\xb7\x31\x7a\x85\xee\xa0\x7f\x0e\x02\xd8\x68\x72\x89\x89\x29\x80\xa7\xf4\x33\xd3\x4f\xd9\x67\xc0\xff\xe5\x2a\xc9\x29\xeb\x87\x6e\x95\xdf\x87\x0d\x13\xfb\xa6\x25\x7a\x68\xb6\x3f\x2c\xa0\xbf\xbc\xa4\x38\x07\xc8\x6f\x98\x80\xc8\x1b\x3b\x3b\x7e\xdb\x76\x82\x39\x11\xe2\x5e\xdc\x42\x0f\x37\xbc\x06\x61\x3b\x4f\x18\x97\x4b\x73\x61\x72\xf5\xfc\x82\x16\x01\x64\x4f\x9b\xbc\x92\xf5\xfd\xf5\xe2\xfa\xda\x85\x01\x95\x56\x29\x56\xb2\x90\x55\x6f\x1d\x78\x77\x7a\xe7\x78\x36\xba\x7b\xc8\x3f\x22\x74\x6b\x51\x00\x83\xf5\xd4\x6f\x8c\x9f\x12\xec\x2f\xef\xc3\x9b\x92\x77\xdb\x80\xcd\x07\x26\xce\x86\xa7\x3c\x57\x52\x24\x23\xf6\x90\x3f\x03\xae\xf3\x09\xb6\xe0\x2d\xad\xf1\xbf\xde\x91\x7b\x8c\x16\x15\xfc\x54\x97\x17\x0b\x62\x0c\x1f\x86\x9c\x40\x9e\xc3\xd3\x7b\xf6\xe9\x14\x37\x08\xcf\xb6\xee\x3d\xa2\xff\x41\x8b\x2b\x25\x0f\x11\x5d\xf0\xc9\x80\x20\x70\x26\xde\xe7\xcf\xf2\x3c\x05\xab\xc1\xfd\xee\xdf\xf1\xff\x26\x87\xf9\x77\x2c\x58\x8d\x74\x9c\x06\x78\x18\x72\x28\x9f\xa8\x48\x5e\x93\x77\x30\xf7\x11\x46\x44\x26\x68\x4f\x41\xf0\xe6\xce\x13\xeb\xd6\x26\x72\x4a\xc3\xb3\xfc\xe6\xce\x4e\x03\x0e\xfc\x61\xdf\x1b\xf8\xc3\xe6\x43\x28\x2a\x14\xec\xda\x87\x00\xb4\xc6\x80\x9c\x83\xe5\xa3\xd6\x49\x85\x7f\x52\xc5\x41\xd8\x57\x8d\x8a\x4c\x09\x26\xf8\xc1\x99\xeb\x52\xad\xae\x60\xe1\x02\xe7\xda\x5d\x97\x3f\x2f\x7e\x40\xa3\x2b\x0b\xfe\xdd\xeb\x7b\x6d\x0f\x7e\xc4\x97\xac\xf7\xbf\x37\x9d\x71\xa3\xdb\xef\x93\x6f\x91\x0d\xaf\x96\x73\xb8\xb3\xe3\x65\xb0\xd0\x7e\xbf\x8f\x9b\x82\x79\xe5\x4d\x6f\x7d\x41\x29\x72\x33\xa4\x57\xe4\x72\xdd\x98\x30\x9c\x9c\x11\x8d\x91\x3f\xdb\xbd\x5e\x38\xb4\x9c\x61\x4c\x59\x81\x44\x6e\x6c\xb1\x78\xe7\x80\xba\xb6\x13\xdf\xb4\x44\x61\x5f\x56\x3f\x28\xd9\xf2\x04\xe2\x16\x69\xbd\x45\x4e\x78\x6b\xce\x67\x93\xd0\x7a\x88\x7a\xff\x28\x4e\x81\x6b\x55\x96\xb7\x7d\x31\x98\xd4\x09\xca\xbc\xd4\xf5\xc6\x64\x9a\x2a\xa1\x56\x6f\x50\xf7\x0f\xb2\xc9\xc8\xb3\x40\xff\xfe\xc1\x42\x7d\x22\x95\xf2\x61\xde\x4f\x20\xa6\xc6\xb7\xf4\x05\x1c\x3c\x58\x01\xc4\x17\x00\x83\xd3\x34\x37\x30\xdc\x3e\xda\xd9\x79\x4a\x35\xbd\xb6\x13\x30\x8d\x0f\x37\x9f\xc3\x06\xb6\x50\xf3\x14\x5b\x78\xea\x04\x0f\xd6\x24\xd9\x40\xf4\xfe\x83\x05\x6c\xfb\x54\x21\x33\x83\x01\x6c\xf3\x51\x35\x9a\xc3\x3e\xe4\x4d\x4d\x81\x67\xbb\x4c\x18\x38\x4d\x4b\x4c\xe2\x6e\xb1\xdc\x3e\x6e\x78\x6d\x42\x6d\x4d\x0b\xf4\xdd\x41\x67\x68\xa1\xbe\x3b\xe8\x0e\x2d\xa7\xef\x3f\x71\xc6\x0d\xf0\xb4\xdf\x0f\x9a\xf7\xce\xb8\x41\xda\x25\xec\xbe\x01\x9a\xe2\xdc\xd2\xaf\x08\xbd\x36\x40\xb3\x2d\xf5\x48\xd4\x5d\xa7\xef\x0c\xc0\x90\xca\x3c\x8b\x3e\x7d\x90\xcf\xae\xd1\xb4\x46\xfd\x48\xb7\xec\x0b\xdd\x72\xd1\xc6\xe8\x9f\x97\x6f\x5e\x3f\x17\x1f\x1a\xcd\x53\xa6\x87\x4d\x20\x6e\x2c\x58\x3a\x88\xd9\x0c\x7f\x24\xa3\x7b\x2a\xeb\x15\xa3\x66\xdb\xf1\x46\xee\xc2\x86\x41\x03\x35\xd9\x54\x6d\xaa\x93\xbf\xa0\x87\x1a\x3d\x33\x0d\x71\xa4\x0c\x1b\xc1\xc0\xfb\x0e\x1b\xf0\xa3\x13\x60\xb3\xf9\x84\x59\xb0\x6c\xbe\x2e\x7d\xcf\xb2\xe9\xd0\xc7\x7d\x79\x08\xa8\xf9\x24\xbe\x85\xe3\xe6\xe7\xcf\x21\x61\x39\x03\x34\xdc\xd9\x31\x03\xec\x13\x4e\x1c\xce\x8b\x7c\xdd\xc6\x94\x17\x72\x38\xb4\x3e\x7b\x96\x7e\x19\x67\x8a\xcf\x1b\x84\xd8\xfa\xfd\xf1\xce\x4e\x63\xdc\x1f\x0c\x9b\xd6\x78\xe0\xb5\x79\x18\xe8\x73\x73\xbe\x08\xa6\x6c\xc6\xe6\xa9\xe9\xc3\x19\xba\x85\xfc\xcf\x61\xc3\x6b\xd3\xb3\xde\xb4\xd8\x80\x03\x36\x60\x6b\xdc\x6c\x9e\xb2\x11\x52\xbe\xcc\x9b\xfa\xfc\xd9\xa4\x6a\x7d\x9f\xbf\x15\x1f\xc5\xce\x8e\x89\xc6\xe3\xcc\x9f\x9f\xc7\x7b\x10\x1d\x9f\x26\xbf\xe6\x7d\x45\x96\x0f\x42\x04\xa2\x96\x48\xa3\xf9\x60\x51\x6f\x64\x9a\xd8\x15\xb4\x11\xa7\x9f\xb6\x8f\x5c\xf7\x1a\x8c\x6e\xce\x30\xf6\x9d\xeb\x05\x86\xc1\xce\x4e\xe1\x23\x8d\x26\x3f\x1a\x01\xc4\xbf\xb2\x51\x20\x3f\x50\x1d\x29\x14\x9e\x22\x31\xda\xd3\x14\xcb\x8c\x77\xf7\x24\x73\xe4\x30\x9c\xf1\xce\x0e\x94\x66\xcf\x3b\x00\xb6\x4d\x89\xb3\xb0\x03\x65\xd3\xe2\x6d\xd2\xb4\xf8\xdc\x06\xf3\xb9\x4b\x2e\x82\x90\xb5\x35\x1f\x2c\x72\x46\x55\x33\x65\xd4\x06\x9f\x93\xce\x4e\xc1\x00\x0e\x09\xe3\x50\xae\x49\xc4\x3e\xc9\x53\x0f\x5c\xe2\x74\x65\xe1\xc0\x17\xba\x2a\x39\x72\xa1\x99\xab\x01\xad\x46\xc7\xf2\xc4\x9f\xcd\x86\xdf\xb4\xfc\x90\x26\xdc\xb6\x13\x5c\x52\x1f\x3f\x3f\x68\x23\x34\x9b\x2f\x30\xb4\x1b\xf4\xb8\x87\xbf\x9a\x56\x9a\x27\x46\x27\x93\x0c\xdf\x4a\xbc\xd0\x7c\x68\x5a\x6e\xde\x2d\x4e\xee\xda\x91\xb0\x5e\x6c\x46\xea\x5c\xd5\x4a\x65\xd2\xc0\x93\x96\x4f\x33\xd5\xfc\xe5\xe9\x0c\x38\x9e\x69\x11\x76\xee\x22\x74\xb3\x98\x37\x70\x33\xed\xe2\x10\x7d\xd2\x6b\x22\x3c\x0e\x0d\xd3\xb1\x4d\xca\x43\x23\x29\x6c\x80\x87\xb9\x82\x66\x86\x74\xb2\x19\x6b\x64\xab\x4b\x75\x22\x1a\xa1\xf7\x66\xdc\x30\x07\x66\xf3\x39\x6c\xcf\xa8\x5a\xb8\xdb\x68\xff\xad\xf9\xdf\x01\xfd\xef\x70\xb7\xc9\x4d\xf3\xdd\xe6\xe9\xc0\x34\x2d\x42\xae\xd9\x73\x9a\x82\xe0\x72\x03\x3e\x30\xc9\x5a\xd7\x79\x22\x6c\x0c\xdc\x8a\x20\x20\x4c\x98\xcd\x20\x44\x4e\x60\x7f\x0a\x50\x8c\x53\x4f\xba\x89\x20\x37\x7f\x7d\xbf\x6c\x88\x08\x76\x0b\x37\xc3\x6c\x8a\x98\xe7\x86\xbc\xd9\x15\x0a\x98\xf7\x8f\x5c\x2b\xce\x14\xba\x73\xe8\x33\x6b\x73\xcb\x19\x6f\xd2\xd8\x1c\x11\xac\x97\xfe\x2a\xe4\x2c\x95\x05\xbb\xf0\x0e\x6a\xf8\x83\xce\xb0\x49\x48\xe9\x39\xf9\x74\xea\xd1\x2f\x2c\xb7\xf9\x10\x2a\xd1\x0a\x56\x7b\x49\x63\xd0\xc8\xe5\x4e\x3f\x24\x7f\x68\x3b\x18\xfa\xe4\x3a\x79\xae\x98\x98\xe0\xd6\x0f\x2a\xb6\x4a\x84\x82\xec\xee\xa8\x2d\x35\xc0\xfe\x82\xf0\xa6\x7e\xbf\x1f\x7e\xff\x54\x7c\x8e\x34\xf1\xe7\x62\x6c\xa7\x61\x87\x0f\xcd\x27\x99\x3b\x8d\xf1\x7c\x77\x06\xf1\x14\xd5\xe8\x51\x7b\x02\xdb\x6f\xdf\x5f\xf5\xcd\xb7\xef\xaf\x4c\x0b\xb6\x2f\x5e\xbc\x7a\x71\xf5\xa2\x6f\xb2\x7f\xc9\x37\x6f\xdf\x5c\x92\x9f\xdf\x5c\x5e\x99\x79\x54\x48\xc6\x56\xb7\x63\xfa\x09\x6c\xbf\xf9\xb9\xdf\xeb\x74\x2c\xd8\x7e\xff\xfa\xec\xfd\xd5\x4f\x6f\xde\xbd\xfc\xcf\x8b\x8b\xfe\x7e\xa7\x6b\xc1\xf6\x0f\x6f\xde\x7d\xff\xf2\xe2\xe2\xc5\xeb\xfe\x7e\x67\xcf\x82\xed\x97\xaf\xaf\x5e\xbc\x7b\x7d\xf6\xea\x8f\xcb\x17\xef\x7e\x7d\xf1\xee\x8f\x17\xef\xde\xbd\x79\xd7\x3f\xe8\x74\x72\xc6\xed\x78\x64\x48\xe0\xda\x85\xef\x58\xd4\xc5\x15\xfa\xe7\xbf\x88\x2e\x7f\xf6\x27\xf8\xf8\x13\xc5\x6d\xdd\xc8\x51\xba\xff\xc3\x57\xf7\x7f\x9a\xf6\x9d\xdf\x3f\x3c\xf1\xa8\x1c\xda\xc7\x6d\x46\x0e\x96\xd7\x5e\xf8\x6e\x1f\x93\xff\x92\x6b\x1b\x60\x40\x14\xf9\xbe\xf9\x67\x40\x73\x9f\xda\x34\x06\xea\x23\xa6\x02\x8a\x85\xe9\x03\x3b\x3b\x0d\xf3\xc7\x17\x57\x44\x62\x14\xcd\x3c\x6f\xf0\x27\x3d\xcc\x5e\x27\x62\x09\x8f\x73\xdc\x25\x4d\xfd\xdd\x18\x4d\x81\x1f\x40\xdc\xe7\xee\x33\xd6\x57\x1f\xb6\x99\x00\xed\x8c\x97\x0d\xd6\x7a\xb3\x79\xca\x7f\xe3\x7f\x3f\x61\xa6\x36\xdc\x66\x81\x29\x41\xca\x74\xe6\xef\xec\x34\xbc\xf6\x35\x1c\x23\x1f\x5e\x42\xcf\xee\x2b\xd6\x9a\xaa\x0c\x7e\x93\xa8\x2f\x2f\x80\xec\x29\x8f\x94\x36\x48\x84\x59\xbe\x97\x3f\xd1\xae\x1a\xd8\xf2\x07\x78\xd8\xa4\x81\x15\xde\xc3\x43\x3b\x6b\xa9\xf3\xb8\xac\x13\xfc\x80\x92\xa6\x83\x75\x58\xb8\xb8\x4c\xba\x4b\xf4\x8d\xb4\x39\x4a\x57\x9d\x16\xb7\x69\xab\x9b\x6b\x13\xb9\x81\xcb\x2b\x74\x26\x80\xed\x1f\xb1\x08\xb5\x6b\x72\x72\x69\xc0\x7e\xbf\x8f\x9f\x9b\xe6\x29\x6c\x72\x5f\x3f\xce\x9d\xa2\x0b\xc7\xb8\x85\x7d\x67\xcd\xae\xcc\x15\x8d\x32\xa6\x59\xdd\x2a\x63\x8a\xb5\xa1\xda\x62\x24\x6c\x61\x22\x6a\x05\x8b\xeb\x00\xfb\x0d\xcc\x9b\x6c\xe6\x7b\x7d\x67\xe0\x06\x12\x61\x93\xb0\xc3\x4d\xf1\x3d\x80\xb1\xaf\x32\xbe\x40\x26\xd8\xe6\x8d\x16\xd9\xd0\xdd\x15\xe1\x3b\x5f\x8e\xb3\x00\xb6\x21\x18\x4d\x23\xa1\x3e\xb6\x28\x03\x38\xec\x33\x8f\xc1\x00\x0e\xad\xfb\x00\xfa\x0e\xf5\x88\x9c\x52\x51\xda\x0b\x77\x17\x32\x76\xe6\x7f\x0d\x4e\x84\x39\xf3\xd6\xdb\x57\xce\x0c\xa2\xc5\x9a\xdd\x3e\xf5\x04\xb6\x55\x3f\xae\x01\xc4\x7c\x9e\x29\xad\x2f\x9b\xc4\xf4\x9a\x96\xe6\xf8\x20\xc7\xf4\x24\x48\xac\x81\x1b\xd2\x93\xb0\xe1\x35\x1f\x2c\xaf\x49\xe8\x29\x6f\x93\x98\xe5\xaa\xe5\x2d\x5c\x77\x53\xda\x85\x7c\xe9\xc3\x66\xdb\x87\xf6\x62\x24\xcd\x85\x46\x01\xc6\x82\x10\xfa\x70\xe0\x0d\x77\x76\x1a\x78\xe0\x0d\xe9\xe7\xa6\x85\x1f\xac\xfb\x7c\x57\xa9\xef\x4c\xa6\x5f\xfd\x15\xc1\xec\x0d\xf4\x9d\x96\xb8\x0c\x22\x7e\xe4\x82\x00\xbf\x0c\xaf\x8d\x7e\xbf\xef\x45\x57\x47\xc7\xf2\x0a\x6e\x8d\x60\x31\x7b\x33\x7e\x1f\x41\x6f\x6c\x86\x38\x60\x8a\x1e\x24\x75\x5d\xb2\x32\x85\xe9\xe2\xa1\xbd\x2f\x54\xd6\xc9\x44\x3f\x7f\x0e\xb5\x75\x36\xef\x67\xdd\x53\xf8\x60\x75\x72\x49\x86\x87\xee\x3a\x9f\xd6\x7c\xeb\x64\xfb\x25\xf5\x68\x66\x30\xcc\x8a\xda\x31\x45\xf4\x71\xcb\x7c\x06\xf3\xcf\x07\xc5\x5b\x4c\x4c\x35\x74\x91\xb9\x4e\x8b\x49\xfe\x2d\x61\x86\x48\xbc\xb4\x72\xec\x5f\xe6\x0b\x21\x32\xc1\x7d\x3c\xbe\x77\xa2\x32\x4f\x47\xa6\xcd\xfc\xf8\x6a\xa9\x46\xc8\xa6\x4d\x28\x38\x12\x31\x4e\xc4\xff\x2c\xb7\xdf\x8a\xfe\x08\xfa\x83\xe1\x13\x2f\xad\xfc\x00\xe6\xea\xe9\xf7\x41\xfb\x35\xb2\xb9\xb0\x8d\xfa\xa0\x7d\x09\x27\xd4\xe1\xad\x78\x07\xd3\x77\xd8\x0b\x4f\xfb\x98\xfe\xbb\xb3\x83\xc5\x2b\xfd\x3e\x0a\xdd\x4e\x0d\x60\xe1\xe6\x93\xa0\x3d\x5f\x04\xd3\xc6\xbd\x87\x6c\x78\xca\x9e\xb7\x44\x20\xd6\xa9\x67\x05\xec\xbd\x53\x44\x74\xac\xff\x25\xba\x9c\xdf\xf7\x9a\x96\xf7\x0f\x77\x67\xa7\xe1\xf6\x3d\x4a\x62\x41\x3b\x40\x3e\x4e\x9c\xd8\xf0\x3c\x8b\xd6\x5a\x38\xfc\x48\x29\x93\x4a\x38\xc0\x42\x7d\x41\xfd\x96\xc3\x42\xa7\xc6\x2e\x42\x7e\x03\xed\xf6\x42\x03\x2a\xfa\x47\xe7\x39\xe8\xa3\xff\xa7\xf7\x3c\x18\x38\xc3\xb0\x99\xd3\x46\x30\x70\x5a\xdd\xe8\x8b\x67\xb1\x9f\x9b\xbb\xbd\xd3\x06\x60\xd1\x5c\x96\xdb\xef\x34\xad\x7b\xf1\x53\x70\x1a\x58\xde\x69\xd8\xf1\xcc\xf1\x4e\xe7\x44\x01\x7e\xe9\xe1\x46\xb7\xd3\xf9\x9b\x4f\x83\xac\xac\x19\xb4\x1d\x90\xf8\x09\xf0\x9f\xc0\xc7\xf8\xf7\x2e\x8f\xcb\xca\x3b\x73\x8b\x11\x8d\xc8\xda\x54\xcc\xa8\xf9\x4c\x62\xf7\xdd\x66\x1b\xa3\xf7\xf3\xb9\xf0\x1c\x45\xbf\xe5\x2b\x93\x2c\x2b\xa3\x45\xbd\x65\x2d\xc4\x3c\x5c\xeb\x36\xcf\x32\xaf\xba\xdf\x0f\x9d\x65\xfe\x73\x99\xf5\x7b\xcd\x53\xff\x89\x08\xc5\x1b\x3b\x9e\xfd\xfd\x92\x8a\xa8\x4f\x9c\x71\xc3\x6d\x2a\xa4\x8c\xd8\xbd\xc1\x5c\x97\x0a\x63\x03\x6c\xde\x47\x6e\x33\xd7\x82\x96\xfc\x1a\x6c\xe6\x38\x31\xa4\x40\x82\x5d\x30\x72\x73\xe3\x10\xe4\xa8\x03\xf1\x22\xf2\x6b\x8d\xa6\xbe\xa7\x6e\xf1\x41\xa3\x63\xe1\xd0\xcb\xf5\xd6\x87\x01\x24\x87\x82\x06\xf8\xc7\x7e\x7a\xc5\x74\xc8\xc6\x3d\x39\x06\xdd\x87\xe6\xd0\xba\x5a\xce\xe1\x69\xf6\xeb\xc5\x8b\xe0\x50\x63\x13\xcb\xf0\xd9\xee\x52\x5c\x52\x20\x86\x55\x17\xe4\x02\x06\xd8\xf1\xe8\x48\x57\x6d\xea\x8c\x4e\x6c\xa5\xd5\xbd\xb9\xdd\xfa\xb2\xfe\x0c\x97\x2b\x2c\x42\xf1\x14\xe7\xc8\x75\x46\xcb\xad\x4f\x73\x95\xcd\xa6\x57\x44\xb7\x77\x4c\x36\xfd\xdd\xc2\x85\xc1\x4a\x7b\xce\xf2\x12\xd7\xc1\x78\xef\xd5\x9d\xb3\x7c\xaa\x5d\xe8\xdd\x3a\x3e\xf2\x66\x2c\x6e\x73\x28\xbb\x7e\xb1\xbf\xe4\xba\x4f\xc1\x6b\xb8\x2f\x62\xf4\x12\xf1\xb5\xdf\xcd\x20\x06\x03\x0f\xcc\x60\xdf\xfc\xee\x19\x7c\xf6\x9d\x39\xfc\xae\x99\x70\x8d\x8a\x34\xdf\xa6\xe5\xf5\xef\x45\x8e\xd3\x3f\x2f\xdf\xbc\x6e\xd3\xeb\xb7\xb1\xf0\x60\x30\x02\x73\xd8\xc0\xcd\x66\xa8\x1e\xab\x97\xc3\xcb\x5e\x0e\x8f\x07\xb5\xe2\xe6\x3d\x8b\x3e\x89\x42\x55\xbe\x3b\x47\x0b\xd7\x36\x3c\x84\x0d\x1f\x02\x9b\xe7\x01\x1b\x63\x1f\xcd\x0c\x32\x7e\x03\x83\x09\x4b\xf0\x24\x13\xf9\xff\xa5\x00\xf5\x88\x9e\x3a\x38\x52\x8b\x4a\xf3\x40\x9d\x90\x90\xd4\xe2\x92\xe2\x9a\x9a\xa2\xd4\xc2\xd2\xcc\x22\x94\x60\x4e\x2c\x28\x50\xd2\x84\x6f\x43\x81\xec\x57\xd0\x80\x2c\x2a\x45\xa8\x52\xd2\x29\x4b\x2d\x2a\x06\x15\x1b\x4a\x46\x7a\x46\x7a\x06\x4a\xb5\x9a\x5c\x80\x00\x00\x00\xff\xff\xcd\xba\xe7\x31\x40\x74\x05\x00") -func web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897JsBytes() ([]byte, error) { +func web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580JsBytes() ([]byte, error) { return bindataRead( - _web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897Js, - "web_ui/v2/assets/consul-ui-5bed6f2476654159acbc4a2eda3fc897.js", + _web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580Js, + "web_ui/v2/assets/consul-ui-a4906f79ed84ea87f5f28e23fdde9580.js", ) } -func web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897Js() (*asset, error) { - bytes, err := web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897JsBytes() +func web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580Js() (*asset, error) { + bytes, err := web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580JsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/consul-ui-5bed6f2476654159acbc4a2eda3fc897.js", size: 263115, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/consul-ui-a4906f79ed84ea87f5f28e23fdde9580.js", size: 357440, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xfd\x8f\xdb\x38\x92\xe8\xbf\xa2\xd7\x83\xc1\xa5\x33\x12\x47\xdf\x92\xed\x4b\xe3\x76\xb3\x37\xc8\x01\xd9\x3b\xe0\xe6\x6d\x7e\x19\x04\x0f\xb4\x44\xdb\xba\xc8\x92\x4f\x92\xdd\xee\x18\xbe\xbf\xfd\x81\x1f\x92\x48\x8a\x94\x64\xa7\xb3\xb3\x03\x1c\x32\xe3\xb6\xf9\x51\x2c\x92\xc5\x62\xb1\x58\x55\x84\x55\x93\x25\x39\x32\x61\x9d\xa5\xc8\xdc\x64\xdb\x63\x85\xcc\x4d\x59\x36\xa8\x32\x77\x08\xa6\xf8\xcf\xb6\x2a\x8f\x07\x73\x57\x99\x35\x4a\x9a\xac\x2c\x2e\x69\x56\x1f\x72\xf8\xb2\x5c\xe7\x65\xf2\xe5\x0a\xd0\x7e\x8d\x2a\xeb\x50\x3e\xa3\xca\xaa\x51\x8e\x92\xc6\xda\x1f\xf3\x26\x3b\xe4\xc8\xaa\xd0\xbe\x3c\x21\x6b\xdd\x14\xa6\xaa\x5c\x79\xc0\x00\x4d\x78\x49\x8e\x55\x5d\x56\xcb\x43\x99\x15\x0d\xaa\xae\x6f\x2f\xeb\xb2\x4a\x51\x65\x3d\x67\x69\xb3\x5b\xda\x57\x90\x54\x59\x93\x25\x30\x07\x3b\x04\xf3\x66\x97\xec\x50\xf2\xc5\xaa\x1b\xd8\x1c\x6b\x13\x6c\x72\x58\xef\xac\x3d\xaa\x6b\xb8\x45\xc6\x01\xa0\xaa\x2a\xab\x61\x72\x7d\x4c\x12\x54\xd7\x26\x28\xca\x26\x4b\x10\x78\x86\x55\x91\x15\x5b\xb3\xfd\xa2\x82\x0d\x41\xf3\x72\x40\x56\x52\x21\xd8\x20\xf1\xd7\x32\xcd\x6a\xb8\xce\x51\x2a\x25\x6f\xca\x44\xae\xb8\xdc\x95\x27\x54\x2d\x61\xd2\x64\x27\x19\x0a\xcd\x2a\xca\xe6\x4d\x07\xf0\x91\xfe\xa4\xc5\x1f\xcd\xf5\xb1\x69\xca\x82\x56\x4a\x51\x8e\x1a\xa4\x48\xea\xb1\x51\xe4\x51\x94\x14\x19\x02\x5e\xda\xfc\x69\xe4\x7e\xc3\x95\xde\xd5\xc7\xf5\x3e\x6b\x3e\xab\xd2\x64\xf4\xc4\x4c\x1e\x3f\x31\x47\x81\xa0\xaa\xc0\x18\x86\x7b\x98\x15\x06\x25\x66\xa3\x80\xa7\x65\x0e\xeb\xc6\x2a\x37\x16\x06\x43\x4b\x6e\xb2\xaa\x4f\x7a\x34\x00\xa5\x4e\x94\x1a\xb0\xa5\xc3\xba\x79\xc9\xd1\xb2\x2e\xf3\x2c\xbd\xde\x40\x3e\x97\x35\x4c\xbe\xe0\xf5\x53\xa4\x56\x52\xe6\x65\xb5\xfc\x61\xb3\xd9\xac\x51\xba\x62\x70\xdb\x44\x98\xf8\xb6\x7b\xd5\x51\xac\x02\x0c\x4a\x36\xd1\x00\x8c\x8b\xd6\xb6\xb7\x58\x09\xbf\xae\x1a\x9a\x1d\x9b\x23\x45\x7b\x31\x5c\x3b\x9b\x8d\xd4\x5e\x8c\x16\x21\xf4\xda\xf6\x36\xf6\x26\xd8\x6c\xae\x73\x17\xc3\x8d\x44\x35\x49\x23\x23\xf0\x14\xfd\xf1\xe2\x08\x0e\xfa\x63\x43\x37\x8d\xfc\x55\x3f\x53\x62\x67\x54\x8d\x2b\x40\x3b\x41\xe8\xdd\x0a\x7a\x2e\x9d\xd3\x02\x8a\x46\x6d\xe4\xdb\xd0\x9b\x6c\x74\xb8\xc4\xd5\x24\x2a\x01\x4a\x22\xcf\xf7\x83\x95\xf0\xeb\x1e\x9e\xac\x6a\x6c\x81\x12\x84\x46\xdb\x0b\xd6\x4e\xec\xda\x0a\xdc\xc7\x08\x16\x05\xd0\x85\x70\x9c\x60\x95\x03\x32\xc5\x2c\x6f\xa3\x33\xd6\x13\x11\x0d\xda\xa1\x09\x34\x26\x26\x3c\xda\xb8\xae\x9b\x4c\x02\xfe\x36\xe6\x37\x83\x34\x16\xc8\x75\x82\x8e\xe7\xd0\x5f\xd7\x4d\x86\xf2\xb4\x46\x8d\xb9\xab\x18\x07\x5d\x16\x65\x81\x28\x36\xe0\x39\x6b\x76\xd6\x06\xa1\x14\xc3\x37\x40\xfb\xcd\x4a\x33\x98\x97\x5b\xab\x3c\x36\x8c\x67\x3b\x46\x7d\x80\xc5\x72\x09\x37\x58\x1e\x11\xd3\xd6\x68\x53\x56\xe8\x62\x3d\xa3\xf5\x97\xac\xb1\x9a\x0a\x16\x75\x86\xa5\x09\xeb\x50\x95\x07\x54\x35\x2f\xcb\xf2\x00\x93\xac\x79\x59\x8d\xe5\x29\xea\xa7\xc7\x0a\xe2\x2f\x4b\xe0\xd4\x2b\x5d\xba\xa2\x5e\x93\xed\xb3\x62\x6b\x6d\x8e\x05\x11\x93\x96\x79\x56\x20\x58\xad\xa6\x4b\x30\x5c\x96\xf6\x8a\xc9\x3f\x16\x3a\xa1\xa2\xa9\xb9\x31\x6b\xbb\x4d\x68\x53\x39\x20\x2c\x87\x0e\x8b\x98\x45\x29\x49\x55\x89\xe5\xe8\xc7\xb2\xeb\xb3\xad\x1c\x09\x7b\x74\xfc\x8e\x45\x8d\x1a\x65\x3d\x9a\xd3\xf6\xdb\x91\xfb\x0d\x8f\x4d\x79\x25\xd2\xe5\x7f\x1f\x4b\xcc\x77\xcb\xf4\xc5\x4c\x53\x33\xcd\xcd\xb4\x31\x3b\xe2\x62\xe2\xea\xce\x31\x77\xae\xb9\xf3\xcc\x9d\x6f\xee\x02\x73\x17\x62\x59\x75\xd7\xec\x73\x33\xdb\x54\x70\x8f\xcc\x1c\x6d\x51\x91\x9a\x79\x66\x96\xb9\x79\x30\x0f\x15\x32\x1b\x74\x6e\x60\x85\xa0\x79\xcc\x2f\x7b\x58\x6d\x33\xdc\x97\x03\x4c\xd3\xac\xd8\x2e\xed\xeb\x00\xe4\x65\x53\x16\x8d\x55\x67\x5f\xd1\xd2\xb1\xed\x1f\x57\xe4\xe7\x33\xca\xb6\xbb\x66\xe9\xdb\xf6\xf5\xb7\xaa\xcc\xd1\xbb\x35\x2c\x0a\x54\x7d\x26\x0b\x4d\x58\x56\xc6\x31\xc7\xff\x81\xac\xb6\x04\x16\x8f\x71\xc7\x13\xf2\x94\x66\x27\xfc\xbf\x41\xfe\x36\x66\xdd\x54\x65\xb1\x35\x9b\xd4\xe8\xbe\x31\x80\xc9\x2e\xcb\x53\xb3\xd9\x5d\x78\x0c\x22\xdb\xbe\x1e\xf3\x4b\x9e\xd5\x0d\x93\x54\x08\xe5\x34\x98\x45\x19\x4d\x6a\xb2\x2f\xbb\x4b\xd7\xc3\x15\x1e\x00\x0b\xe6\xd9\xb6\x58\xe6\x68\xd3\x5c\xe1\x31\xcd\x4a\x13\x8b\xe8\xa9\x99\xed\xb7\x66\xb9\xfe\x2f\x94\x34\xe6\x29\x4b\x51\x79\xd9\xd1\x66\xf0\xb4\xac\xf6\xf0\xcc\xa4\x72\x3c\x10\xca\x0d\x12\x24\xe5\xe1\x85\xc8\xfc\x5a\xc9\x95\xee\x6d\xf4\xfb\x67\xc2\x87\xba\x4a\x94\xa5\xf2\x75\x44\x79\xa0\x42\x35\x52\xcb\x98\x64\xd2\x41\x83\xf6\x87\x1c\x36\xc8\x22\x3b\x0e\x19\x51\x68\xe6\x70\x8d\x72\x42\xf3\x3d\x95\x97\xc7\x64\x67\x25\x30\xcf\xcb\x63\x43\x06\xac\x23\xe6\x63\xdd\x1d\x51\x58\xc6\xbe\xfc\xaa\x4a\xad\x87\x89\x72\xc2\x15\x5e\xc8\x58\xa7\x28\x29\x19\xf5\x93\x72\x82\xb0\x70\xc5\x98\xf5\xb3\x8e\xe7\x97\xe6\x67\xc5\x0e\x55\x59\x73\xc5\x2b\xe0\xd2\x56\xd9\xb8\x8e\xeb\xaf\x30\xf3\xb0\xd8\xcc\x38\x20\xb8\xe2\xce\x6b\x38\x36\x47\xbc\xe1\xe1\x4c\xe7\xbe\x42\x45\x8a\x2a\x4c\x0c\xf8\x10\xb6\xcf\xbe\xa2\x8f\x68\x9b\xad\xb3\x5c\xe0\x8a\xb8\x24\xae\x68\xc1\xf4\xbf\x8e\x75\x43\x89\x1f\xf7\x5b\x9d\xa3\x2b\x5f\x7e\xb5\xca\xfa\x6c\x51\x3c\xf6\x65\xd9\xec\x70\xc3\xdb\x0a\xbe\xd4\x09\xcc\xfb\x81\x97\x0a\xc0\xa2\xc9\x60\x9e\xc1\x1a\xa5\x2b\xcc\xa9\x36\x79\xf9\x6c\x9d\x97\xbb\x2c\x4d\x51\xd1\xa7\xbc\x2c\xeb\xa4\x2a\xf3\xbc\x03\xb3\x2e\xcf\x18\x0b\x0c\x82\x6d\x56\xeb\xf2\xbc\x52\xa7\xee\xb3\x82\xd1\xb3\x67\xdb\x87\xf3\x75\xa7\x12\x52\xc2\x4d\x14\xc6\xee\xaa\x1d\xed\xc3\x79\xc5\x98\x86\x03\x82\x0a\xed\x0d\x9b\x4c\x50\xbb\xa8\xb3\xe2\x70\x6c\x4c\x4a\x03\x1d\xa7\xa1\x0b\x76\x03\xf7\x59\xfe\xb2\xfc\x73\x9e\x15\x5f\xfe\x0a\x93\x5f\x5f\xea\x06\xed\x7f\x29\x8b\xc6\xb4\xe0\x01\x1f\x98\x6b\x92\x62\x3e\xfc\x8a\xb6\x25\x32\xfe\xf6\x6f\x0f\xe6\x7f\x96\xeb\xb2\x29\xcd\xff\x38\xbf\x6c\x51\x61\xfe\x6d\x7d\x2c\x9a\xa3\xf9\x1e\x16\x18\x6a\x9e\x9b\x0f\xbf\x64\x15\x34\x7e\x85\x45\xfd\x60\x3e\xfc\xa5\x2a\xb3\xb4\xfd\xf1\x01\xe5\x27\x84\x05\x34\xe3\xdf\xd1\x11\x3d\x98\xdd\x6f\xf3\x4f\x55\x06\x73\xb3\x86\x45\x6d\xd5\xa8\xca\x36\x57\x4a\x79\x8c\xc9\x11\x06\xd2\x12\x5e\x52\xa6\x08\x73\x4c\x01\xfd\x7d\x59\x94\xf5\x01\x26\x48\x3b\xb5\x84\x55\xe8\x66\x15\x73\xf7\x03\xb7\xdf\x74\x13\x49\xa7\x11\x97\x21\x8b\x93\x9f\x73\x02\xf0\x79\x97\x35\xc8\x22\x2d\x2f\x0f\x15\x5a\x3d\x97\x55\x6a\x3d\x57\xf0\xb0\x2c\xca\x6a\x0f\xf3\xeb\x5b\xb3\xdd\xe6\x06\x9b\x1a\x37\xfb\xac\x6f\xab\x61\x52\xab\xcc\x58\xc3\x3a\x4b\xac\xb4\x2a\x0f\x69\xf9\xdc\xa9\x2e\xc4\x54\x2b\x29\x8b\x06\x15\xcd\x78\xae\xf1\x56\xa9\xf8\x68\x8b\x19\x6f\x55\x08\x4e\x11\x6d\x27\x5f\x5d\x38\x4e\x4c\xa8\x8e\xf2\x43\x22\x89\xaf\xcb\xf3\x67\x93\x4b\xac\x60\x9a\x95\x9f\x2f\x27\x54\x11\xa1\x9d\x31\xff\x35\xac\x11\xe6\x24\x57\xca\x75\xa4\x6d\x61\x25\x95\x6e\xca\xc3\x75\x94\xc8\xdb\xbd\xf4\x4a\xb7\xde\x56\xf8\xb3\x95\x5a\xa2\xa6\xca\xb6\x5b\x54\x29\x07\x88\xe5\x59\xed\x7e\x39\x52\x86\x8a\x3e\xed\x49\xbd\x29\x0f\x78\x81\x1a\xe4\xac\x6e\xfc\x00\xfb\x33\xc0\xba\x6c\x9a\x72\xaf\xc9\xac\xda\x95\xad\xc8\xc3\x23\x21\x65\xa9\x09\xe5\x72\x28\xa9\xa4\xb3\xac\x50\x0e\x31\xde\xea\x72\x2d\x71\xf4\xe5\xe1\xba\x2e\xf3\x63\x83\x56\x74\x42\x09\xb5\x7f\xb5\xb2\x22\x45\x67\x3c\xbb\xf6\x4a\xc9\xd8\xc7\xa1\x5b\x04\xf1\x0b\xc1\xde\x9e\x2a\x4a\xfa\x7f\xa1\xa3\xa0\x2b\x8c\x97\x63\x0e\x5f\x7a\xac\x37\xd9\x19\xa5\x1c\x6a\xcb\x6a\xbb\x86\x6f\x6c\x13\xff\x03\xc1\xe3\xaa\xa7\xce\x8e\x75\xe2\xef\x7d\xc7\x56\x78\xb6\xec\x15\x45\x51\x29\xfd\x8e\xa3\xfd\x5c\x56\xfb\x5d\x99\x23\xab\xac\xb2\x6d\xd6\x6b\x26\xb3\x82\xd0\xf4\x08\xd1\x0c\xa7\xaa\xa3\x04\x98\x66\xc7\x7a\xe9\x1f\xce\xea\x41\x97\x36\xde\x28\x50\x6c\x4d\x64\x19\xb5\xc9\x4b\x94\xe7\xd9\xa1\xce\x6a\xb2\xd7\x70\x15\xd1\xfe\x5b\x04\x0b\xbd\xb4\x22\x8a\x0e\x63\x2b\x87\xf0\xca\x0b\x1b\xcd\xe5\xc3\xc3\xaa\x1d\x40\x22\x31\xae\x92\x1c\xc1\x6a\xb9\x2e\x9b\xdd\x18\x94\x1b\xd6\xa8\xc0\xeb\x76\x30\x2d\x9f\x29\xc6\xd2\x6f\xcd\xac\x77\xed\xad\x51\x5e\x3e\x8f\xb4\xf6\x1b\xac\x32\x68\xa1\xf3\x01\x16\x29\x4a\xdf\x35\xd5\x11\x7d\xd6\xb0\xe9\x0e\x66\x56\x58\x87\x1c\x26\xe8\x46\xb0\x17\x81\xb9\x90\x15\xd7\x52\x90\x2d\x32\x1e\xba\xc4\xba\xcc\xa9\x3e\xc2\x75\x79\xba\x17\x99\xa6\x3c\xa8\x31\xc1\x19\x6a\x34\x84\x26\xc8\x40\xec\xca\x3c\x25\xc4\x41\x0f\xf6\x8b\xc5\x4a\xd0\xfb\x2b\xa8\x9e\xdf\x9e\x8b\x12\xef\xcb\x9a\x85\xa0\x6c\x94\x2a\x8e\xac\x2c\x29\x0b\x05\x5f\x14\x57\xb6\x45\x51\x60\xb7\x03\x2d\x73\x69\xd9\x09\x63\xf4\x76\x2b\xa4\x11\x6e\x3a\x54\xe4\xae\x84\x3b\x86\xe8\x70\x36\xfc\xc3\xd9\xb0\x25\xfd\x06\x84\xd0\x20\x47\xd8\x03\xac\xf0\x7e\xce\x7d\x5f\x51\x76\x19\x1c\xce\xe3\x93\xa9\x9a\x2a\x63\x6a\x08\x84\x83\xf5\xa6\xac\xf6\xcb\xaa\x6c\x60\x83\xde\x38\xb1\x9d\xa2\xed\xe3\x4a\x97\xa1\x1c\x5c\xb2\x92\xf1\xe9\x4a\x31\xb4\xe2\xdd\x0b\xeb\x94\xcb\xf5\x4a\xb9\xe8\xbb\x2b\x1e\x22\x08\x08\xe2\x61\x2b\x5f\xf5\xc7\x8e\x5e\xe2\xea\x74\x41\xea\x19\xe5\x79\x6b\x5b\xa9\x1d\x09\x78\x38\x20\x58\xc1\x22\xa1\xc7\xdb\x55\x79\x6c\x70\x71\xfe\xe0\xbe\xda\xe4\x25\x6c\xa8\xe8\x32\x60\xde\xfc\xcc\x11\xba\xc4\xbb\x50\xd1\x2c\xdd\x9b\x7a\x3a\xaa\x73\x44\xa3\x7b\x8e\x0c\x69\xd9\xf6\x8c\xfc\x14\x56\x5d\xaf\x1a\xe9\xd7\xdf\x2d\xa0\xf1\x0e\xf2\xfa\x50\xbf\x17\xd8\xd7\xc5\xf1\xbb\x0d\xea\x92\xec\xd6\xff\x48\x03\xda\x81\xa3\x17\xa9\x35\xa7\xe0\xe9\x24\xf1\x19\xf5\x5a\x31\xbd\x97\x71\xf1\xd1\x5c\x21\x10\xb5\x97\x27\x9e\xa7\x90\x8d\x90\x8f\xff\xf5\x8b\x11\xb3\xd3\xe9\x55\xee\x00\x3f\xe0\x97\x2d\xc3\xdb\xc5\xac\xd8\xc0\x9f\x9e\x66\x79\x2a\xee\x98\xa9\x42\x9b\x28\x35\x1f\xbb\x41\x04\x81\x7a\xbb\x41\xb0\x4a\x7a\x8d\x98\xaf\x69\x85\x16\x63\x4c\x6e\x30\x4c\xc2\x09\xa2\xdd\x6b\x39\xa9\x77\xc8\x01\x55\x0c\xae\x1f\x31\x1d\xd3\xe5\xb1\x10\x8e\x3b\x32\x2e\x37\x0a\x58\xca\x33\xe9\x45\x7f\xec\x19\x3d\x2d\x0d\xe4\xe2\x21\xfd\xcc\x44\xaf\x93\x2d\x5a\xc9\x62\x5a\xa2\x6d\x91\x9f\x38\xe6\x10\xa9\x6a\xf6\x51\x91\xe1\xf6\x6d\x02\xde\x3d\x68\x12\x01\x77\x54\x71\x30\x01\xa0\x95\x66\xf9\xae\x0e\x7b\xa3\xe9\xfd\xb7\x8a\x8f\xb7\xe2\xc8\x29\x31\xf4\x46\x22\xb5\xac\xde\x5e\x0d\xf5\xf6\xdf\xe5\x38\x35\x86\x13\x55\xfb\x63\xc4\xd6\xe5\xf9\xf3\x85\xd3\x48\x0a\x0a\x30\xad\x82\x6b\x0f\xcf\xdd\x8a\x71\x81\x1b\xa0\xfd\x48\x6b\x3d\x73\x37\x62\x0d\x9f\x20\xa6\x3a\x54\xdc\x6c\xc5\x14\x76\x32\xe0\xc4\x78\x26\xef\x15\x65\x63\xc1\x3c\x2f\x9f\x51\x7a\x1b\x2c\xa5\xe8\xca\x2c\x79\xf4\x59\x53\x58\x29\x0e\xff\x73\x31\xe5\x1b\x68\x6f\x2f\xdb\x03\xd1\x60\x97\x4a\xd3\x69\x20\xc9\xb1\xc2\x52\xa2\x16\x46\x10\x2f\xa2\xcd\x7a\x35\x54\xc4\x0c\x07\xd0\x2a\xe0\x1e\xb5\xe6\x4d\x29\xda\xc0\x63\xde\xac\xe4\xbb\x9b\xc9\x63\x9e\x34\x6c\x37\x4b\x9e\x1c\xe9\x38\x21\xd9\x59\x27\x0f\x7e\xca\xa9\x6c\x47\xd7\xca\x1a\xb4\x67\xca\x3e\xba\x4f\x8c\x52\xa4\x92\x62\x26\x72\xe8\xc0\x31\xbc\x69\x1b\xae\x6e\x93\xbe\xa7\x11\x71\x4d\xd1\x06\x7c\xfb\xe6\x06\x54\x60\xee\xc5\x53\xd1\x65\xdd\xb0\xb6\xd4\x91\x66\xd5\xbb\xaa\xc9\x3f\x73\x13\x8c\xff\xe1\x49\x9e\x55\x4f\x89\xcc\x14\x15\xcc\x02\xa2\x24\x15\x2a\x37\xcc\xed\x94\x12\xae\x24\xba\xde\x8f\xa0\xee\x20\x4b\x44\x51\x82\xe8\xfd\x48\xf2\x07\x79\x32\x8f\xc1\xe1\xcc\x0e\xd6\x59\x91\x35\x19\xcc\xef\x87\xdd\x1f\xe5\x29\xb1\xcd\x03\xdd\x6e\xbf\xe3\xb0\x5f\x69\xb5\x32\x15\x82\x6e\x19\x7c\x3f\x5c\xa4\xd5\x58\xb1\xfb\xf9\xef\x84\x87\xb2\xb5\xef\xdb\x6b\xd5\x38\xe3\xe5\x24\x9b\xf9\x70\xc6\x02\x46\xc9\x5b\x06\xb4\x86\x3f\x9c\x02\x86\x13\xca\xfb\xb4\x7d\x6d\x6d\x72\x74\xe6\xd3\xf0\x6f\xda\x50\x9a\x1a\x70\x60\x56\xc9\x37\xc9\x72\x0f\x06\xbc\x88\xf7\xdc\x23\x95\x14\x9a\x29\x2c\xb5\x5a\x5e\x30\xd1\xbf\x3c\x13\xd9\x4b\x57\x1e\xa3\xc9\xac\xb9\xfa\xdf\xe4\x74\xd8\xa1\xc7\x67\x1f\xda\xdc\xc1\x85\xfd\xb1\x48\x51\x45\x6e\x14\x48\x41\x28\xde\xc4\xd3\x44\x6a\x61\x00\x7f\xab\x50\xfe\xf6\xdd\x0e\xe5\x87\x4e\xba\xa1\x46\x67\xcc\x44\xa4\x81\xeb\x03\x2c\x50\xfe\xf9\xe9\xb0\x2c\x8b\xfc\x85\xf5\x81\xab\xb6\x94\xb4\xf2\xd4\x88\xe0\x0f\x61\x66\x21\x99\x71\xab\x14\xc2\x32\xd1\xb5\x7a\x01\x89\xf6\x58\xb2\x4c\x82\x5c\x32\x6f\xc1\x92\x20\xd2\x1c\x7f\xba\x3c\xc0\xe4\x4b\x97\xce\x88\x59\x48\xfc\xaf\x63\xdd\x64\x9b\x97\xf6\x38\xa2\x82\x21\x02\x6f\x81\x08\xa9\xe4\x07\xd9\xe2\xea\x36\xa9\xdd\x89\x13\x98\x27\x6f\x80\x17\x05\x68\x6f\x58\x86\x73\x38\x3f\x1a\x24\xc9\x05\x6e\x97\xd2\x6a\xae\x5d\x80\x45\xff\x51\x4b\xdd\x6e\xe2\x46\x0d\xbd\x95\xe6\xbd\xed\xfc\xb7\x99\xf7\x10\xc2\x3c\xc3\x61\x3d\x69\xf4\x6a\x53\x49\x16\x9e\xab\xb1\x50\xae\x80\xdf\x9f\xe2\x85\x3b\x04\xe7\x70\x96\x94\x1e\xae\x5a\xe9\x61\x1b\xde\xe1\x8c\x29\xc0\xb0\x0d\xfe\xce\xd4\x71\x1f\x57\xf3\x8a\x5d\x25\xaa\xb8\x48\xc6\xc7\x23\xca\x6f\xb9\xaa\x68\xf0\xda\xa5\x4e\x5b\xbb\x4e\x34\xf9\xc3\x26\xda\xc4\x1b\x38\x68\x4e\x6b\xd2\x9a\x26\xc8\x46\xe1\xf5\xb5\x26\x72\x84\x4d\x31\x35\x66\xe4\x41\xdf\xd5\x22\x2e\x5d\x04\xad\x61\xe2\x24\x89\xe2\x1e\x49\x89\x30\x35\xc7\xbc\x09\xed\xb6\xea\xe4\xc0\xdf\xb5\x7e\x87\xe6\xf3\x2c\x63\xda\x1a\x5f\xbf\xa8\x29\x50\x7d\xfe\x3d\x16\xd3\x9b\xcd\x66\x25\x4d\x90\x68\xe3\xec\x06\x51\xe8\x28\x07\xfd\x75\x18\xdc\x1c\x1e\xc6\xcc\xc2\xdc\x30\x8e\x3c\x25\x2a\xb4\x7f\x77\x21\xc2\x6e\xd3\xf5\x68\x4c\x2c\xa0\x39\xa3\x27\x6e\x35\x64\x46\x88\x65\x38\x91\x46\x1e\x07\xbc\x40\x57\x80\xdf\x7a\x34\x65\x86\xeb\x98\x2f\x74\xd7\x00\x8d\xb6\xd4\x6e\x49\x83\x42\xfa\xf1\x94\x8b\x8a\xe2\x64\x24\x89\x9f\x00\x12\xe3\xed\x5a\x12\x81\xbb\x64\x8a\x8c\x78\x8c\x27\x1b\x3f\x35\xf9\x68\x77\x7e\x51\x86\x57\x14\xe8\x44\x03\x07\xed\x6f\x37\xe3\x27\xe2\xa8\xec\x56\x77\x33\x14\x78\x51\x88\x70\xa2\x0a\xd9\x6d\x55\xc8\x22\xa1\xf1\x97\xad\xa2\x11\xa5\x68\x45\xd0\x0e\x03\xd1\xc5\x7b\x87\x73\x97\xd0\x6a\xa8\x3d\x85\xf4\x3f\xdd\xfb\x8c\x52\x52\xab\x84\x78\x34\xda\x55\x73\xbb\x37\x98\x0a\x16\x77\x6a\xf8\x56\x50\xf4\xc4\xa1\x1d\x3b\x85\xaa\x6f\x8d\xd0\xc6\xbd\x82\x06\xae\xad\xd6\x23\x93\x11\x2c\x31\x7f\xf8\x3f\xd9\xfe\x50\x56\x0d\x2c\x9a\xeb\xbf\xec\x51\x9a\x41\xe3\x4d\x6f\xe3\x1a\x3a\xc1\xe1\x8c\x09\xfc\x46\xcc\x8f\xf9\xe5\x9e\xe3\xe2\xb7\x8b\xd3\xf7\xd0\xac\xb0\xf4\x88\xc5\xb3\xb8\xd8\x88\x76\xac\x1f\x9c\xce\xa0\x3d\x74\xfc\xbb\x06\x27\xcf\xf8\x2b\x0c\x61\x66\x9e\x06\x06\x98\xe6\x78\xf6\x4f\x6f\xbb\x81\xa6\x97\x0f\xa3\xa5\x97\xc4\xd2\x13\xa5\x3f\xbd\x25\xbe\x02\x07\x58\x80\xaf\xa8\x2a\x25\x0f\x5d\x21\x4b\xb0\x7c\xb0\xfb\x3b\x5d\x76\x4a\x25\x86\x5f\x2d\x95\xd6\x35\xe6\x68\x8f\x46\x53\xc9\x9c\x84\x5a\x8b\x6a\x2e\x93\x70\x83\x69\x03\x0e\xb0\xae\x33\xea\xc5\xd0\xff\xfa\x29\xed\x76\x4f\xe6\x9f\x48\xb3\x5b\x67\x4a\xe1\x17\x57\x78\x03\xe3\x8d\x17\xb1\xc2\xad\xe3\x99\x29\xfe\xe4\x8a\x33\x17\xb5\xce\x8e\x9e\x75\xaf\x5f\x1b\x4a\xe1\xee\xda\xa4\xe2\x4a\x6c\x45\x52\x32\x2a\x5c\x56\x0e\x0f\x35\x5a\xb6\x5f\x3a\x99\xf0\x00\x13\x7a\x0f\xc5\x91\x43\x93\x76\x3b\xc2\xc0\xe2\x90\xe8\x37\x30\x31\x36\xbb\x6e\xfb\xa0\x5a\x48\x81\x06\xfa\x5c\xde\x3e\x97\xaa\x28\x9b\xb4\xab\x49\xfd\xaa\x92\xb2\xd8\x64\xd5\x9e\x28\x2e\x00\xfb\x91\x15\x5b\x85\x76\xa5\x35\xf6\x94\xbd\x43\xda\xf9\x04\x21\xda\x0f\x7c\x48\xd2\x7e\x7d\x2d\xc1\x82\x98\xbe\xf7\x39\x5d\x21\x4a\x40\x0c\xb1\xc7\x81\xff\x09\x5b\x87\xb8\xbe\x86\xe0\x52\x51\x33\xd4\x39\xe6\x70\x58\x48\x34\x4e\x3c\x24\x06\x36\x69\x1c\x33\x1c\x62\x25\x25\x60\xfc\x77\xaa\x0d\x4f\x63\xcd\x29\x5d\x52\x13\xda\xcc\x2f\xbc\xa1\xeb\x5d\x1a\x36\x02\xe6\xe9\xed\x70\x0d\xa7\x8d\xb8\xb8\x29\x6d\xa4\x46\x9a\xd2\xf4\x53\x56\x33\xff\x0d\x1e\xa3\x46\x58\xf1\xd6\xc2\x26\x5e\x0e\xc2\x32\xeb\x86\x6d\x49\x40\xe4\x48\xcc\x6e\x15\x52\x84\x9d\x5a\xf8\x44\x4b\xe8\xd6\x61\x60\x52\x95\x05\x7b\x7b\xc9\x2b\x99\xb0\xf3\xc9\xfc\xed\x91\xeb\x0e\x99\x34\x46\x73\xc8\xa3\x7d\xcc\xb3\x1e\x2f\xa2\x30\x97\x11\xa8\x98\xe0\xbb\xa4\x3c\xab\x1b\xa3\xa9\x9e\x96\x45\xb3\xb3\x7a\xd9\xee\x8d\x2b\x0b\x82\x45\x99\xa2\xfe\x57\xbd\x2b\x9f\x8d\x1f\xf0\x88\x5b\x2d\x35\x52\x28\x3d\xdb\xe7\x04\xd7\x11\xf9\x52\x05\xb6\x46\xd5\x29\x4b\x10\x85\xd8\x57\x95\x6a\xb2\x52\x8a\xae\x70\x55\x9a\xea\xa9\xe3\x09\x02\x3d\xdc\xdc\xb9\x94\x03\xcb\x2d\xb4\x6f\x82\xd3\x72\x3c\xfe\x2e\xe5\x0a\x76\xb0\xa6\x62\x37\xdd\xc7\x4c\x2e\xa1\xf3\x1f\x90\xad\x5a\xae\x82\x77\x1c\x3d\x19\xe0\xc2\x06\xdd\x05\xf1\xa6\xf2\x5c\x56\xe9\x67\x73\xbc\x1c\xfe\xaa\x2f\xd3\x39\x03\xaa\x0a\x94\xdb\x6d\x8e\x66\x35\xc7\x97\xd4\x37\x48\x4b\xa9\x9b\xa4\x2a\x62\xb2\xb5\x13\x6d\xff\x67\xa6\x55\x1e\x6d\x7d\xbc\x92\x02\x11\x5d\x85\x6e\x12\x88\x15\x85\x6c\x6d\xa9\xb3\xc2\x54\x68\xb7\xb2\xa2\x46\x8d\x41\xec\xbf\x88\xf2\x8a\x57\x5d\xd9\xa1\xa0\xe1\x9a\x2e\x2a\x6b\xd3\x06\x14\x22\xd3\xd5\x45\xe5\x4a\xce\xed\x03\x1a\x2a\x78\x42\x7b\xfd\x7c\x0d\x32\x35\x63\xf8\x84\xf6\xa2\xc0\xb1\xe2\x24\x73\x97\x9d\x64\xd4\x8d\x3f\x11\x4f\xab\x31\x0c\x14\x25\xf4\x68\x90\xc2\x93\x2a\x02\xe6\xbc\x3d\x18\x65\x2d\x9e\xc4\x4f\x51\x8f\xe4\x30\x5b\x87\x21\x71\xc5\x6c\xc3\x14\xd8\xad\xb9\x62\x27\x7a\xf8\x68\x3f\x3d\x65\xff\xcb\x04\xbe\x23\x13\x10\x0f\xed\x4a\x69\x79\xe6\xb4\x70\x57\x6e\x13\x93\x33\x51\xb2\xc5\x6d\xa4\x98\x72\xa2\x66\x96\x9f\x42\x41\x9c\x34\x55\xc1\x99\x53\x77\x7b\x55\x2d\x6a\x53\xd3\xa8\x52\x2f\xb0\x39\x9d\x3d\x7d\xbd\xb2\x63\x6a\xfa\xc6\x4b\x76\x38\xe9\x8b\xa9\xa7\x6f\x5e\xf9\x29\x14\xa4\xe9\x53\x14\x9c\x3b\x7d\x37\x57\xd5\xa2\x36\x39\x7d\xd4\xd6\xb7\xf7\x74\x10\x27\x92\xbb\x54\x57\x0c\xf8\x7d\xac\x6e\x64\x2b\x9c\xde\x00\x6e\x66\x76\xa3\x9b\xec\x7d\x5b\xcb\x6d\x23\x3c\x77\x3f\xbd\x61\x57\x13\x0f\x6e\x7f\xe7\x1d\x5f\x69\x6f\x2f\x98\xe4\x7f\xf7\xdd\xf4\xd5\x36\xcb\xef\xb5\x13\x0e\x54\x99\xf7\x1b\x21\x0c\x4c\x0e\xea\x06\x56\x8d\x64\x71\x40\xd3\x64\x83\x03\x92\x4f\xb3\xc4\x98\x1a\x0a\xb7\x59\x66\x1b\xfc\x0d\xb2\xcb\x6d\xb2\x46\x27\x05\x54\x88\x78\x2f\xb4\x6e\xe0\xff\x2b\x89\xfd\x0e\x92\x58\xbb\x7a\x9d\x08\x1f\x92\xbc\x91\x15\xfc\xfd\xe8\x40\xa2\xd0\xfe\x42\xa1\xfb\xb9\x6b\xcd\x99\x7b\x4d\xce\x32\x9c\x40\x78\xee\x46\x32\x40\x6f\x16\xf6\x17\xf1\x4c\xe1\x80\x60\xb0\x86\x06\x35\x2f\xb2\xe7\x89\x78\x97\x20\x77\x45\xd7\x72\xef\xcf\x34\xab\x3c\xdd\x37\x38\x6d\x89\xa0\x1c\x73\xd0\x9e\x3f\x46\x02\x77\xb2\x17\x14\xea\xc4\xbd\xa6\x1b\xcc\xec\xcd\x0d\x5b\x9f\x38\xe2\xfc\x55\x94\x40\x84\x7c\x54\x2f\x45\x06\x8b\x61\x25\x84\xad\x90\xee\x1f\x74\xe0\x2e\xe2\x51\x96\xfa\x94\xf0\x65\xa9\x0b\x55\x7b\x6d\x22\x84\x12\x1b\x1e\x96\xd9\x0d\x85\xbe\x31\x75\x50\x06\x5d\x8f\x24\xe4\x22\x65\x84\x01\x66\x66\xc2\x42\x22\xd0\x45\x46\xee\x69\x3a\x3f\x91\x2e\xfa\x0c\x21\x07\x8b\x58\x53\x73\x4d\xaa\x82\x50\x0c\x46\x40\xbe\x64\x92\x30\x96\x42\x0d\x8d\x09\x15\x56\x67\x85\x7c\xc7\x1c\x8f\x38\x7a\xd3\x46\xb8\xd0\x04\xb8\xb3\x01\x9e\x4e\x62\xcc\x9a\x94\x79\x4e\x6f\xc5\xe8\xed\xc2\x54\xaf\xf9\x69\xa3\x18\x4b\xc3\x18\x1e\xce\x6c\xb4\xe3\x7e\xb0\xe5\xb1\x55\x92\x0f\x07\x94\x28\xad\xd9\x1d\x05\xb9\x90\xd0\x44\xc0\x20\xea\xa0\xc5\xe1\xcc\x5f\x4f\xd0\x5a\xd5\x5d\xf7\xac\x5d\xed\x27\x31\x9e\x0c\xce\x5b\x3a\x9d\x38\xb2\x74\x0c\xdb\x20\x9e\x49\xc2\xaf\x2b\xae\x67\xa4\x02\xdb\xba\x45\x9b\x9d\x8a\xb6\xbf\x64\xac\xe7\x29\xb5\x55\x35\x2f\x03\x67\x50\xee\x46\x40\xd6\xa7\x0d\x6f\xb8\x17\xb6\xe2\x82\x40\x81\x3f\xb9\xe5\x25\xc3\x06\x78\x4d\xff\x5b\x36\x65\xd4\x20\xc3\x07\x6e\x1c\x44\x3f\x1a\x96\x11\xd8\x87\xb3\x61\x19\xe4\xf6\x61\x7a\x70\x34\xc0\xc9\x65\x44\x7b\x0f\x71\x11\xa2\x4e\x7d\x0b\x44\xee\x7a\xc3\x69\xc1\x3a\x18\x53\xd5\x25\x77\xbc\x58\xbc\xda\xf8\x04\x36\x1e\x1a\x87\x8d\x4d\xf8\xc7\x1a\x9b\x57\x40\xd4\x9b\x71\xeb\x33\x0d\xc5\x7f\x15\x28\xc1\xab\x40\x09\x1f\xc5\x9d\xe1\x3a\xef\xa2\xad\x07\x3c\xa0\x11\x37\xf8\x51\x43\x1b\xf3\x80\xf1\xd7\x53\xcc\x4c\x63\x38\x7b\x5f\x4e\xe3\x30\xf8\xcb\x64\x7e\x7d\xdb\xb6\x0e\xb9\x29\x88\x73\xb0\x1a\x9d\x01\x7e\xa0\x3c\xef\x47\xa9\x2a\x4c\xf2\xf9\x43\x4c\x97\xa1\xa7\xe8\xc5\x14\x98\x59\xdd\x50\xf3\x6e\x35\x3e\x64\x3b\x91\x77\xe8\xf6\x4e\x3c\x20\xcb\x99\x45\x0b\x7e\xc1\xd2\xe4\x60\x32\x7e\x32\x5c\xef\x70\x7e\xe4\x4f\x14\xac\xd6\xb1\xe0\xeb\x89\x82\xa6\x2b\xc3\x7d\x3a\xe6\x4f\x79\x26\x7b\xe6\x28\xcc\xcb\x86\x35\xcb\xdc\x94\x20\x99\x62\xdb\xa4\x84\x98\x72\x9c\xf2\xb0\xd9\xd7\xd6\xb6\xca\xd2\x2e\x81\xfc\xc0\x1f\x16\x1e\x30\xab\x2a\x9f\x6b\x22\xd8\x29\xf6\x33\xc7\x25\xe4\x79\x79\x0d\x24\x49\x8b\x5b\x78\x20\xdd\x26\x7b\xd9\xaa\x45\x0d\x4f\xd7\x71\x5f\xd4\x4b\xdc\xf4\x1e\x9e\xdf\xb8\x38\xdb\x74\x36\xd5\xe3\xe3\x6f\xfe\x67\x8a\x6c\x47\x01\x6d\xe1\x0a\x1d\x10\x6c\xde\xf8\xe6\xb0\x92\x6a\xef\x71\xdc\x60\xf1\x5a\x7d\x99\x85\x38\x19\xdd\x4d\x96\xe7\x13\x1d\xe8\xca\x29\x3a\xb2\x92\x46\xed\x47\xc6\x14\xa9\x8b\x56\x5e\x42\x4c\x4f\x06\x96\xf6\x9e\xea\xd3\xf6\x22\x99\x37\x2a\x7d\x9a\x02\x7c\x66\xe6\x64\x4f\x17\x0b\x9f\xd4\x4f\xb0\xcf\xa1\xe6\x16\xb1\x3f\x58\x8f\x6d\x93\xed\xb1\xec\x77\xb2\xcc\x7b\x15\x77\x1b\xb6\xc6\x5b\x06\x70\xda\x19\x96\xb1\xa0\xe2\x84\x1f\x93\x3f\x81\x82\xad\xc9\x23\x60\x24\x59\x95\xe4\x7d\xac\x47\x58\x64\xd4\x00\x6a\x89\x4b\xa2\xaa\x4f\x30\x1c\x10\xd4\x46\x56\x6c\xb2\x22\x6b\x90\x81\x60\x8d\xf7\x21\xab\x3c\x36\xab\xbb\x2a\x0d\xa2\x34\xb1\x48\x74\x78\x22\x0d\x3c\x99\xda\x0c\x4c\x6d\xcb\x1f\xd0\x26\xf1\xd3\x78\xaa\x7b\xdb\xa1\x15\x8b\xb6\xcb\x56\x8a\xf0\x1c\x03\xb7\x5e\x29\xd2\x6e\x6e\xc9\x9b\x6e\xc9\x53\xb4\xe4\xdd\xde\x92\x3f\xdd\x92\xaf\x68\xc9\xbf\xbd\xa5\x60\xba\xa5\x40\xd1\x52\x50\x5f\xff\xa5\xad\xf0\x05\xbd\x90\x00\x97\xb5\x21\x13\xcb\xc5\xfe\xd1\xc4\x5b\x99\x22\x80\x17\x89\x75\xeb\xfd\xe5\x8d\x63\x3a\xa6\xc3\x07\xf0\x12\x33\xae\x9e\x37\x56\xdb\x36\x6d\x75\x6d\x9a\x71\xbd\xfe\xcb\x3f\x32\x72\x42\xa0\xec\xdf\x8b\x73\x31\xae\x83\x39\x8c\x88\x50\xa7\x97\xe0\xf4\x0e\x43\x16\xde\xc6\xaf\xb4\x1c\x51\x4d\x83\x19\xd8\xb3\x1e\xf8\x93\x64\xb3\x28\x9d\x6e\x5d\xbc\x07\x70\x21\x74\x6c\x2e\x7a\x90\x1c\x60\x9c\xa8\xdc\x7e\xdb\x94\xd5\x3b\x4c\xe5\x56\x01\x4f\x4c\x41\xf1\x99\x1e\xa1\x87\xa6\x80\xb3\x02\x94\x2b\x82\x0a\x31\x75\x94\xd2\x87\xcd\x3d\x9c\x8d\x68\xe0\x9c\xe6\x3a\x92\x0f\xdb\x48\x31\xa5\xfe\x6c\x5e\x2c\xf5\x3c\xd3\x99\x1f\xab\x8d\x15\xe6\x41\x95\x5c\x7b\x39\xfd\xcc\x44\x7d\x2a\x71\xf6\x01\xde\x9f\xa0\x39\xab\x46\xe7\xce\x33\xbb\x38\xbd\x46\x9e\x5b\x9a\xda\x0c\x0c\x4b\xf3\x46\xed\xb3\x70\x1f\x56\x18\x43\x5d\x59\x5a\x87\xb9\xb2\x30\x35\x5c\xd0\x92\xc5\xc4\x0a\xe8\x95\xc8\x33\x6b\xb5\xaa\xca\xf9\xe5\x19\xa7\xe0\x74\x53\x84\x19\x60\x51\x92\x33\x33\x27\x8a\x2a\x4f\xd0\xf4\xdd\xdc\x84\xa4\xa6\xbc\x01\x00\x55\x4d\x72\xf5\x07\xd5\x9f\x14\xea\xe0\xb9\xf0\x2f\x34\xdc\xe6\x80\x41\xaa\xb4\x4e\x3e\x11\xfc\xc5\xa6\xf1\xe6\xcc\x05\xe6\xe7\x98\x16\xb3\x43\xe6\xc6\x71\x54\x05\xcd\xe2\x3c\x44\xdc\xf9\xae\xf5\x27\x9a\xdf\x19\xad\x81\x7c\xcf\xdd\x7b\xc5\xb0\x8f\xbf\xb7\xfb\x80\x2b\x85\xd0\xbc\x0e\xba\xa9\x7a\x5a\x43\x7e\x0c\x24\x39\xae\xb3\xc4\x5a\xa3\xaf\x19\xaa\xde\x00\xc7\xc4\xff\xb9\x81\x09\x16\x8f\x63\x4f\x88\x8c\xd4\x1a\x7d\xda\xc4\xd5\x3c\x6d\xe2\x2a\x9f\x36\xe9\x9e\x4d\x21\x43\x61\xd0\x3b\xaa\xa9\xfc\x7b\xa2\xf1\xcb\xfe\x0d\x6d\x88\xd7\x1f\x7b\x6b\x7b\xa2\xbf\xe6\x95\xe9\xea\x33\x96\xdd\x4d\x8f\xd7\xdd\x47\x3a\x01\x8d\x7d\xc4\x66\xd6\x22\xd7\x43\x8a\xe5\xd0\x2a\xf8\xff\xa7\x57\x51\xb8\xf8\x1c\xd2\x51\x84\x00\x90\x04\xa8\x18\x81\xf2\x13\xbd\x13\x1c\x6c\x76\xfc\x6e\xe8\x3f\xaa\x64\x08\xd2\x3d\x26\x62\x90\x3e\x4d\xed\x42\xfc\x52\xf7\x03\x41\x01\xdc\x29\x14\x62\x72\xa2\x1a\x2e\xc5\x6f\x17\xc6\xc8\x79\x8f\x1d\xf4\xa4\x53\x60\x9b\x2a\x1f\x03\x89\x9f\x85\xb5\x46\xcd\x33\x42\xc5\x6a\xe4\xea\xc2\xa2\xb3\x7c\x42\x4b\x87\x5c\x5e\x58\xdb\xaa\x7c\x5e\x3a\xf3\x97\xb7\xa8\xd6\x9c\x29\x0d\x74\x9e\x7a\x53\xfb\x6d\x5b\x61\xe6\x66\xde\x15\x9f\xb5\x99\x77\xa5\x99\x31\x9f\xce\xd1\x7e\x0a\xcc\xd4\xb6\x2e\x3b\xd5\x74\x64\x4e\xa2\x10\xb8\x83\xe0\x06\xfe\xe1\xac\x08\xf1\x31\x93\xfb\x0f\x5b\xcf\x33\x41\x4f\x3b\xb2\x25\xe9\xc4\x57\xb6\x84\x62\x7b\xc0\xf7\xb5\x02\xd2\x4c\x71\xe4\x22\xec\x2b\x81\xc2\x4f\x35\xe0\x82\x9d\x52\xcb\xaf\x9b\x25\xc6\xc1\x9b\x3e\x33\x57\xaf\x72\x3c\xa6\xe6\xfa\x4e\x8f\xce\x99\x33\xd1\x23\xec\x86\xc4\xdb\xf2\xd6\x07\x92\x0c\xd8\x4a\x2f\x9c\x3b\xd0\xbc\xb6\xa7\x34\x70\xdc\xbb\x0a\xb3\x4f\x05\xf2\xbb\x18\x43\x5f\xbe\x6e\x4b\xc0\xc7\x1d\xb7\x8f\x59\xe4\xf2\x6e\xc2\x98\xcf\x0a\xd3\x30\xf3\x0c\xc3\x7c\x7e\xc7\x20\x91\x04\x7e\xfd\xdc\xc1\x4c\x31\x7c\x85\x9b\x22\xb7\xa9\x60\xea\x53\x7a\xc3\x0b\xd6\x2b\xaf\x74\xac\x97\x6c\xe9\xf8\x44\xfe\x50\xdf\x1b\xd2\xb5\x43\x3e\xf0\x64\x74\x7b\x13\x9a\xce\x1a\x48\x72\xab\xff\x29\xcd\x4e\xe2\x45\x11\xd7\x6d\xa7\xb7\xbf\x93\x3b\xfe\x34\x33\x7c\xc0\x93\xf0\xc4\x57\xfe\x94\xea\x5f\xff\xa0\xf7\x93\x3f\x60\x66\x7a\x40\xd5\x13\x7b\x8e\x97\x7f\x65\x11\xa5\x56\x85\xea\xf2\x58\x25\x48\x97\xce\xf0\xd4\x66\xe7\x99\xe2\xe5\xb1\x5c\x69\x46\x21\xc4\x4c\xc0\x85\xcd\xb1\x58\x56\x1d\x58\xd0\x86\xcb\x20\x55\xf8\xc6\x84\xf2\xda\xfd\x6c\xa5\xf5\xa4\xe9\x05\x30\x22\x95\x0d\x22\x41\x0d\x62\x6d\xcd\x98\xd7\x01\xc6\x3a\xa7\x7a\x61\xd4\x88\x8e\x4b\x47\x00\xed\x1d\xd3\xd0\x62\xab\xa5\x81\x54\xf2\x16\x12\xad\xcd\x5c\x5b\x43\x3b\x6f\x2f\xfc\x4b\x22\x03\xda\x06\x1e\xda\xcb\xe4\xa3\x8c\x79\xbc\x52\x39\x3b\x6b\x5e\x3d\x79\x1d\xe9\xf0\x8e\x2b\x82\x8e\x5d\xcb\x5d\x7a\x7a\x2b\x8d\x9e\xb8\xfd\xf2\x7b\x27\x1b\xaa\x30\x8c\xf1\xe6\x29\x0f\x0d\xbf\xb7\xbb\x8a\xbd\xdd\xd5\x48\xd2\xbe\xeb\x8c\x81\xeb\xc3\x33\x4a\xf7\x90\xc1\x70\x75\x3f\xbd\xed\xcd\x3c\x1d\xb5\xe1\x06\xf3\x7c\x95\x2b\x2a\x1d\xa5\x83\x83\xe4\x5f\xab\x60\x28\x0a\xa7\x56\x49\x48\xfe\xa1\x29\xcb\x7c\x0d\xab\xd6\x26\x73\xd7\xec\xf3\xe1\x45\xd7\x50\x3e\x1b\xb1\xa8\x63\xef\x83\xce\x95\xda\x27\x25\xe3\x19\x22\x6d\xff\xce\xec\x7a\xe3\xea\x85\x53\xe5\xa6\xc6\xef\x7c\x83\x43\x1e\xe6\x11\xda\x1e\xde\x2d\xba\x51\xb1\x70\x38\x37\x37\xab\xe7\xc6\x41\xa8\xa2\x1a\x43\xc7\xf7\x7c\x3d\xe9\x19\xb0\x48\x8d\x37\xed\x92\xc6\xfd\x4a\xd1\x29\x4b\x90\x75\xc8\xce\x28\xb7\x88\x06\x61\x69\x3f\x5e\xb8\x07\x41\xba\x37\x07\x39\xfe\x79\x25\x33\x2d\x92\xd6\x67\x29\x96\xd8\xd0\xec\xd1\xb5\x25\x92\x26\x02\x37\x0d\x10\xa9\xbc\x37\x67\x91\x4e\x94\x8d\x89\x64\x3e\x2b\x10\xc8\xce\x51\xba\x56\xc8\x6b\x44\x0e\xdf\x21\x65\xf7\xf1\x3a\x24\x2f\x91\xab\xf2\xf1\x70\x39\xb6\x5c\xbb\xbc\xe9\x45\xb4\x8f\x3f\xc2\xc3\xd9\x08\xa2\x7e\x6c\x5a\x96\x85\xcf\x66\x8a\xbd\x5c\xf5\x52\xf3\x30\xcd\x38\x0c\x8c\x55\xdd\xde\x4e\x42\x28\x99\xa6\x92\x06\x42\x0c\x27\xa2\x05\x3e\x7c\xc0\xda\xe6\xdf\x2d\x16\xc4\xe9\x6b\x1b\x3c\x44\x35\x48\xa2\xa5\xaa\x7a\x43\x53\xbc\xe1\x3e\xfa\x76\xf5\xc8\x83\xee\x62\xe4\xcf\x11\xc4\x26\xcd\x8a\x79\xe3\xe8\x11\x6c\x46\xe0\x0c\x5c\x9b\x67\x56\x27\xab\x32\x08\x5a\x47\x13\xbc\x1f\x71\x9a\xd6\x76\xc1\x89\xa9\x74\xcd\x45\x6c\xcd\x61\x02\xe4\x32\x35\x92\xd2\xc8\x38\x6a\xd1\xa2\x16\xdb\x0a\xaa\x11\x5f\x8d\x16\xc3\x34\xab\xe8\xb2\x91\xa4\x30\x22\x84\xcd\xa2\x60\xa9\x5e\x88\xf6\xfa\xdd\x58\x05\x50\x8e\xcc\xc8\xab\xef\x9d\xfe\xed\x50\xab\x55\x42\xc6\xdc\xca\x16\x2c\xbe\x87\xb7\x78\x2a\x8a\xec\x56\x8a\xcd\xbc\x2d\x0c\xaa\x95\xb4\xd5\x2b\xb6\x1b\x79\xc6\x56\x94\x93\xef\x28\x26\x7f\xc1\xe6\xde\x11\x6f\x33\xae\x9a\x03\xc6\xe0\x2e\x51\x7d\x87\x88\x99\x58\x3c\xb8\x1c\xb4\x03\xe9\x0e\x71\xac\xd8\x18\x9b\x12\x4f\x3c\x4a\x21\x58\x57\x7e\xe4\xe4\xa4\x0e\x12\xa4\x2f\xdf\xb2\x09\x29\xf2\xd1\x48\x85\x36\x32\x8b\x18\xfd\x68\xa4\x42\xcb\x41\xa4\x00\x48\x9a\x1a\x4c\xef\xa8\xcb\xa5\x7a\x46\xe5\x7c\xe1\x49\x20\x94\x26\x45\x24\x95\xe6\x4b\x5b\x4c\xdb\x87\x63\xbe\x44\xfb\x43\xf3\xc2\x5d\xc1\xeb\x36\x92\xe1\x29\xd7\x40\xfb\x89\x73\x30\x35\x4a\x9f\x2a\x43\x1f\x60\xd6\x0f\xf3\xe0\xa8\x47\x6f\xae\x64\xa7\x21\xf5\x63\x75\xb3\x03\x0b\x49\x4f\x6c\x83\xf7\x65\x8a\xfe\x9a\xe1\xc3\xb7\x1c\xc4\x30\xcd\xa8\x21\x26\xef\x9f\x45\xcc\xb1\x47\x48\x85\x43\x9f\x76\xa7\x3f\x8a\x3f\x0e\x7a\xa2\x50\xef\xea\x20\xc3\xa9\xd1\x85\x83\xa0\x46\x13\x03\xdd\x2e\x9b\x47\x69\x62\x5e\x0c\x7d\x45\x61\x9e\xc7\x0a\xf2\xd1\xb7\xd9\xf3\xc7\xa2\x4f\x8c\xbe\x66\x4b\xa1\x74\x4f\x74\x18\x5f\x94\x8d\xfa\x80\xbf\x10\x82\x58\x4c\xe2\xc4\x11\xaa\x6c\xb9\xca\x5b\xa9\x8e\xf4\x49\x13\x42\x3d\xee\x6e\xae\x48\x30\x3c\xee\x11\xbe\x39\x40\xc5\xee\xda\x73\xaa\xc8\x31\xf8\xec\xa9\xe5\xcb\x26\x40\x8d\xbe\x0b\x62\xb4\xe7\x7c\x98\x9d\x60\x84\xbe\xf9\x41\x94\x35\x7e\x51\x20\x89\x00\x2a\x22\xbd\x08\x8a\x5c\xda\x56\x67\x7c\x3a\x35\x77\x50\xd6\x3c\xde\x56\x9f\xca\x38\xcc\xde\x7a\x08\xcc\x1d\xeb\x38\x3f\xea\x4b\xbf\x93\x02\xf0\xff\x8b\xfe\x18\xe5\x39\x23\x20\x5a\x16\xac\x99\x07\xa7\xa7\x23\x22\x9e\x30\x7e\x83\xf6\xab\x5e\x13\x75\x05\x9b\x0a\x21\xc2\xd7\x36\x59\x4e\xc2\xd8\x8b\x21\xe1\x35\x2e\x73\x52\x2d\xe6\xa4\xa6\x8b\x39\xc4\x3f\x23\xa9\x7e\x91\x6c\x08\x91\x77\x6b\x63\x26\x41\xea\x56\x4d\x75\xf2\xd8\xc3\x82\xd2\x56\x75\x13\x58\xf5\x0b\x80\xdf\x02\xf1\x7b\x80\xbc\x01\x10\xbd\xed\x16\x2f\x61\x5a\xea\x23\x6f\xf9\xa9\xe7\x5a\x19\x6c\x7b\xe8\xab\xe1\x82\x08\xed\x1f\xc5\xfb\x7f\x46\xf4\xad\xcc\xa1\x99\xfb\x81\x34\xdd\x8a\xda\x18\xa2\x00\x50\x38\x5b\x50\x10\xd6\x1a\x56\x4f\x6f\x85\x88\xaf\x9b\xb2\xda\x3f\xbd\x1d\x8a\xb9\x43\x81\x54\xab\x9c\xe0\x80\x6b\x5c\x76\x07\x2d\xea\x5c\x7b\x35\xcb\x40\xaf\xdc\x78\xfd\xb6\x07\x61\x40\xf9\xc1\x1b\x75\x2e\x16\x1a\xd1\xf9\x54\x2b\xe4\x27\x99\x12\xbb\xd6\xcc\xf1\x69\x53\xce\xa3\xee\x56\x7d\xc6\x40\x8d\xb7\x36\x77\x78\x3b\x62\x12\x17\x01\x2f\x42\x70\xa8\x80\x13\xcc\x8f\xc8\x62\x07\x05\xc1\xdd\x76\x80\x80\xbe\xac\xd4\xa2\xa2\xcb\x52\x5d\xad\x03\xec\x64\xab\x7a\xd7\x59\x09\x07\xb2\x1f\xf4\x53\x29\xc3\xed\x37\x68\x5f\xbe\x72\xd7\x29\x22\xb4\xba\xd8\xd1\x76\xbe\xf9\xc6\xa3\xac\x32\x54\x34\xcb\x5d\x59\x65\x5f\xcb\xa2\x81\xb9\x90\x9b\x66\x15\x75\x8f\x5a\x56\xe8\x84\xaa\x1a\xf5\xb7\x22\x5c\x56\xf9\x6c\xb5\xd9\x23\x59\xaf\x69\x85\x23\xb0\x3c\x5e\x7f\x3c\x24\x58\xd5\xb5\x1a\xbb\xba\x22\x6c\xb8\xa7\xa2\x4d\x86\xf2\xb4\x46\xcd\x90\x4a\xda\x1c\xde\x64\xc0\xe9\xc5\x0b\xe2\x50\xa6\xd7\xda\x7f\x1b\xae\x2d\xc7\xc2\xd8\xce\x61\x56\xa2\x69\xe9\x5c\xce\x25\x7a\xbc\x4f\x1c\x1a\x88\x88\x3a\x5c\x7e\xe4\xf9\x43\x76\xb6\x19\xe6\xb6\x87\x7f\x6d\x81\x14\x15\x2f\xda\x4c\x76\xca\xd2\xe6\xf3\x6c\x43\xbb\xca\x39\x04\x75\x45\x44\x2c\x75\xa5\x7a\x54\x75\x25\x04\x7c\xe7\xf0\x3a\x55\xe4\x65\x3e\x0a\xb6\x27\x11\xeb\x2b\xb1\x56\x32\xd3\x44\xb8\x50\xcd\x74\x2c\x35\x3a\x24\x9e\xb1\x68\xdf\xb7\xd6\x24\xfa\x9e\x3b\xea\x11\x4d\xd0\x4f\x8a\x3d\xed\x36\x74\xef\xaa\xde\xe2\x7c\x57\x65\x86\xb8\x5a\x89\xf5\xed\x4a\x47\xe5\x29\x66\x96\x9c\xa7\x8e\x65\x33\xde\xbf\xfb\x2c\xb5\x5e\x55\xfa\xba\xc3\x9a\xe8\x56\xf2\xbe\x6b\xa2\x25\xa5\xcd\x8c\x2e\xcf\xe5\xf3\xb3\xc7\xe6\xb6\x8d\x40\x56\x81\x8d\x92\xc6\xdf\xb9\x3f\xdf\xab\xcb\xdc\xe1\x6a\xf6\x36\x7b\x63\x13\x9c\xe5\x83\x81\x05\xc3\x81\xb5\x03\xe4\x05\x80\x6e\x0f\x9f\x73\xf3\xa6\xda\x13\xfb\xed\x6e\xac\x94\xb0\xe3\x8d\x15\xec\x36\xbd\xb1\x42\xfc\xbe\x37\x56\x4e\xdc\x8b\xba\x72\x39\xac\x77\xd6\x1e\xd5\x35\xdc\x22\xe3\x00\xe8\x03\x38\x54\xf1\xa6\x2f\x55\x1f\x93\x04\xd5\xf5\xb0\x9c\xe2\x84\xdd\x45\xfb\x51\x67\xb6\x55\xa7\xef\x30\xe6\x94\x65\x83\x31\xa7\x68\x17\xc6\x7e\xa2\xa8\x7c\x03\x61\x82\xa2\x6c\xb2\x04\x0d\x01\x4c\xdf\xfa\x8e\xdd\x21\xf7\xbe\x49\x0a\xdb\x84\xce\x0f\x49\x99\xa7\x74\x6a\xba\xc1\x98\x76\xf0\xb0\x53\x0b\x71\x66\x3c\xfd\x14\xd0\xac\x96\xfe\x45\xaa\xb8\x15\x08\xa5\x7a\x11\x06\x59\xf5\x70\xf8\x1c\xe6\x0c\xc1\x53\x2f\x98\x8f\x2e\xc7\x49\x41\x74\xb2\xa4\x72\x61\xce\x93\x14\x15\x85\x07\x6f\xa9\x76\xa5\xc4\xd7\x4e\xa4\x64\x79\x41\x48\x4f\x38\xf4\xa9\xdd\x53\x30\x5c\x22\xd8\x10\xd5\x5e\x77\x48\xd1\x06\xe1\x1a\xfa\x68\x8d\x84\x38\xe0\xa4\x24\x1a\x67\x61\x59\x94\xec\x1b\x9f\xd7\x01\xa0\x06\x7f\x06\xb3\xfb\x53\xa9\x97\xc5\xb3\x52\x88\xf6\x43\x49\x8c\xbd\xdd\xfe\x1e\xff\xf8\x1d\xa3\x58\xb1\x29\x75\xe8\xee\x34\x73\x24\x88\x05\x04\x1e\x6d\x98\xb5\xda\x49\x87\x8b\x46\xe6\x90\x33\x03\xb5\x4d\x63\x0f\x05\x53\xd5\x52\xcb\x78\x55\x59\x2d\x3f\xe2\xf3\x6e\xf6\x8e\xfc\x3b\xfb\x54\x72\x04\x37\x65\xcc\x3f\x8c\xf7\xc7\x06\xce\xe3\x2e\x3d\x54\x81\xf6\x78\x3a\x51\x91\x75\x4b\xc4\x5d\x58\x0e\x76\x83\x61\xa1\x13\x2a\x9a\x9a\x99\x77\x8d\x09\x19\xea\x8d\x50\xc9\xd9\x07\x2f\xfa\x0e\xd8\xe0\xc4\x73\xcb\xdd\x12\x56\x18\x70\xf7\x79\xfc\xa9\xd7\x93\x2d\xf9\x07\x40\xa5\x77\xb4\xec\xc3\x20\x04\x2e\x33\x81\x1b\x1b\x04\x4d\x8c\xc4\x59\xd2\xd9\xa5\x3c\xc0\x04\xcf\x09\xf0\x03\x7e\x02\xb3\x3d\xdc\xa2\xe5\xb1\xca\xdf\xfc\x53\x0a\x1b\xb8\x24\xbf\x7f\xae\x4f\xdb\x9f\xce\xfb\x7c\x95\xec\x60\x55\xa3\xe6\xdd\xdf\xfe\xef\x2f\x56\x6c\xfe\x73\x7d\xda\x1a\xa7\x0c\x3d\xff\xb9\x3c\xbf\x7b\x20\x6f\xe3\xdb\x91\xe1\x38\xfe\x83\x41\xe8\xe4\xdd\x03\xa6\x99\x07\x83\x92\x4a\xfb\xeb\xbc\xcf\x8b\xfa\xdd\xc3\xae\x69\x0e\xcb\x9f\x7f\x7e\x7e\x7e\x06\xcf\x1e\x28\xab\xed\xcf\xae\x6d\xdb\xb8\xa5\x87\xa7\x7f\x3e\xc0\x66\x67\xa4\xef\x1e\xfe\xea\xfb\x20\xf0\x0d\xfb\xa3\x6d\xb8\x01\x08\x17\x9f\xe2\x08\xf8\x4e\xee\x84\x20\xf2\x8c\x05\x08\xc3\x4f\x5e\x00\xbc\xe0\x23\x2d\xe6\x2c\x80\xf7\xf5\xe1\x67\xae\x7a\xe8\x02\xcf\x35\xec\x93\xbf\x00\x4e\xf0\x81\x94\xfa\xe4\xd9\x20\x76\x3e\xba\x11\x88\x0d\xdf\x06\x7e\x74\x0a\x5d\xb0\x88\x08\x4c\x1f\xc3\x8c\x3f\x85\x3e\x70\x9c\x9d\x13\x81\x28\x3e\x39\x31\x70\x5d\xda\xa0\x45\x1a\xc4\x1f\xaa\x46\x1c\xc7\x03\x8e\x9f\x93\x36\x2c\x8a\xac\x1b\x80\xc8\xcb\x2d\x02\x99\x54\x3e\x85\x0e\x88\xdc\xdc\x22\x8d\x3b\x21\xb0\x03\x02\x09\x77\xfa\xe9\x9f\x1e\x15\xdc\xea\xd4\xf1\xea\x81\xbd\x26\x7b\x31\x28\x90\x42\x2d\x12\x52\xba\xe5\x85\x5a\x91\x12\xbd\x58\x30\x40\xd2\x88\x34\x97\x6f\x21\x98\x96\x34\x42\x8e\x30\xa2\x79\x64\xb1\x35\x36\x59\x9e\xbf\x7b\xf8\xd1\xf5\x9c\x20\xf4\x7e\xf9\x85\x27\x15\x07\x04\x86\x63\x83\xf0\x04\x9c\x20\x4c\x6c\x0b\x38\x4e\x64\x01\xdb\xf7\x2c\x9c\x60\x01\xdb\xa3\xdf\x3e\x38\x20\xf8\xba\xb7\x0d\xfb\x93\x03\x82\x5d\x7c\xc2\xb3\xff\xc1\x71\x3e\x39\xc0\xf3\xfd\xf7\x8e\x63\x80\xd0\x76\x31\x24\xcf\xf7\x0c\xdb\x58\x80\xc0\xf3\x0c\xfb\x83\x03\xfc\x30\x7a\x0f\xc2\x20\x32\x30\xa5\x93\x42\xb6\x41\x2a\x9d\x16\xc0\x77\xdc\xc4\x36\x40\xe4\xbb\xa4\x04\x49\x36\x48\x15\xfa\x7d\xe7\x82\xc5\x22\x38\x59\x0e\x08\x68\xfb\x14\x9f\x05\x70\x12\x0b\xd8\x0e\x06\x48\xf0\xb3\xfd\x0e\x4f\x82\x1e\x29\xf6\x75\x1f\xe3\x3f\x86\x7d\xb2\x68\xdf\x0c\xdc\x37\xdc\x35\xfc\x13\x67\x91\x7e\x2d\x58\xbf\x66\x96\xfa\x3d\xfa\x4d\x87\xfc\xeb\xde\x8a\x0d\x9b\xf6\x6d\xb4\xfb\x18\xd1\x05\x70\x27\xa7\x93\x4c\xf9\xd7\x07\x42\x1d\x56\x75\xcc\xd1\xbb\x87\xa2\x2c\xb0\x1c\x26\x2c\x54\xc7\x07\xbe\xe1\x83\xe0\x43\x00\x42\xdc\x6e\xec\x19\x18\x2e\xb0\x9d\xd0\x02\x0e\x01\x79\x72\x6c\xe0\x86\xa4\x3d\xdb\x5f\x00\x9b\xb4\x89\x47\x8e\xfc\xd9\xc5\x20\x4e\x68\x3d\x83\x24\x39\x21\xae\xee\x79\x9f\x7c\xdc\x65\x3c\x12\xb6\xbf\xc0\xe9\x11\xc3\x8f\x4e\x9f\x8d\xfb\x9f\x80\x38\xf6\xc9\xd0\x85\x6c\xac\x42\x3a\x52\x5d\x9b\x06\x88\x1d\x0b\x44\x0e\x4b\xb7\xba\x12\x0c\x61\x52\x1f\xa7\x5a\x18\x00\xf9\x42\xb2\x69\xeb\xef\x7d\xc3\x23\x80\x7d\x02\xc2\x33\x02\x10\x1a\x04\xe5\xe9\x91\x71\x41\x60\xc4\xc0\x0d\x3e\x38\xf6\xc9\x01\x4e\xe0\x7f\x70\x41\x20\x72\x39\xc7\x06\x0b\xdf\x35\x62\x10\xd9\x41\x0e\x6c\xdb\xc1\xff\x5b\x2e\x88\xdd\xc8\xc0\x9f\xb1\x05\x62\x3b\xc2\x1f\xb1\xe1\x02\xdb\xb5\xc4\x0f\x87\xcf\x6d\xeb\x44\x27\x0c\x84\xf2\xc0\x6d\xcf\x07\x99\x74\x16\x72\xd2\x59\xd4\x72\x3c\x55\x88\xde\x71\x7e\x37\x4b\xfe\x7f\x0d\x8e\xc6\x31\xb4\xc5\x0d\xdb\x5c\xc7\xd2\x6c\x3b\x8c\x7f\xf9\xe5\x81\x8c\x76\x00\xa2\xc8\x31\x16\x1f\x3c\x10\xb8\xd1\x47\xe0\x79\x98\x70\x63\x0f\x4f\x71\xe0\x46\x20\x8c\xf0\xca\x72\x7d\x3f\xb7\x3c\xe0\x2c\x3c\xc3\x07\x0e\x5e\x00\x6c\x53\x7f\xf7\x00\x3c\x8f\xdf\x59\x98\xc6\xb4\x1f\xd0\x45\x3b\x9e\xb6\x30\x98\xfe\xd4\x60\x0e\x8f\x33\xad\x5b\x9d\x14\x45\x59\xa5\x96\xef\x22\xb1\xb9\x62\x33\x77\x6f\x21\x3e\xb7\x85\x78\xb7\x4a\x16\x20\x8a\x16\x86\xf3\xc1\x01\x71\x62\x01\xdf\x5b\x60\x5e\x10\x03\x0f\x13\x29\x88\x3d\xef\xb4\xc0\xa3\x8e\x17\xa5\x1f\x7a\xc0\x0b\x1d\x9c\x48\xb3\x76\x8e\x0d\xfc\x84\xd6\x31\x40\x6c\x01\x2f\xc2\x9f\xb1\xe7\x7d\xf2\xf0\xe7\x7b\xc7\x33\x3c\xe0\x45\x86\xe3\x82\xd0\x5b\x18\x1e\xfe\xe2\x1a\xde\x87\x10\x78\x01\x04\x01\x08\x08\x2b\x75\x2c\xe0\xbb\x16\x70\xdd\xf8\xa3\x0f\xa2\xd8\x70\xbe\x3e\x90\x13\xfb\x17\x44\xc8\xe1\xcf\x7f\x7e\xef\xff\xc5\x7d\x60\xf4\x81\x45\x62\x8d\xac\x30\x9c\xa5\x71\x2d\xd1\x98\xfa\x43\x36\x29\x1a\x48\xea\x42\x00\x3d\xde\xf7\x93\x1e\x1b\x71\x42\xef\x9d\xe2\xa1\x3d\x23\x3d\xe0\x05\xfd\x61\x93\xfe\x60\xc6\x1d\xc0\x0e\xd0\x9e\x45\x44\x12\xce\x0d\xe2\xe9\x83\xd5\xb9\xa3\xd7\x63\x3a\x1f\x7a\x99\x24\x22\xac\xeb\x32\x89\x0f\xef\x78\x7d\x8f\xe9\x1d\x94\x1d\x75\x7d\x61\x17\x13\xad\x9d\x39\x70\x62\xae\xcf\xb8\x9b\xc3\x90\x76\xcb\xaa\x6c\x60\x83\xde\xf8\x41\x8a\xb6\x7c\x6c\x2f\x21\xfd\x3a\x38\xb2\x28\xc2\x6f\x0e\x0b\x89\x5e\xde\xf6\xab\x2c\x39\x5e\x6a\x0b\xe7\x2d\x39\x1a\x0f\x6e\x40\xda\xce\x43\xcf\xfa\x7e\xc1\x7c\x2f\x39\xbf\x7b\x88\x1e\x8c\xe4\x85\xfc\xa9\xf0\xe7\xcf\x32\x8f\x0c\xff\x14\x45\x71\x48\x79\x64\x08\x9c\xc0\xf0\x41\x18\x45\x9f\x3c\xe0\xe2\x65\x09\x82\xf0\xe4\x00\xdf\xf7\xbf\xd2\x4c\xc7\x01\x5e\xe4\x7f\xc2\xcb\x8e\x66\x06\xc0\x76\x3d\x9d\xcc\x3d\x7c\x20\x5a\xb1\x11\x85\xea\xfb\x4c\x8d\xfe\x78\xa6\xc6\xf7\x06\x55\xec\x0c\xf5\xe8\x4d\xaa\x34\xa5\x82\xeb\x55\xe4\x7b\xbb\xa7\x94\xf8\x46\xde\x1c\x83\x45\x60\xd8\x1f\x1d\xdb\x00\x8b\x38\x30\x3c\x10\x79\xbe\x11\x1b\x36\x16\x6d\xbc\x28\x07\x0b\xd7\xb7\x1c\xe0\x38\x86\x0b\xc2\x18\x0b\x14\x9e\xbf\xf8\x2a\x91\x13\x3f\xc7\xc3\x77\x0b\xee\x0f\x99\x30\x4a\x30\x7f\xe4\x71\x63\x3e\x8a\xfc\xc0\x71\xe7\x4d\xce\x63\xa5\x5f\x15\x37\xba\x59\xdd\x72\x8d\x33\xeb\x46\xe5\x86\xeb\x8e\xdb\xf4\xd6\x6a\x6d\xf0\x6b\x2c\x8b\xf8\xfe\xd9\xf5\x8d\x00\xd8\xa1\xff\xd1\xc1\x9f\x64\x5a\x43\xb0\xf0\x42\xc3\x25\x9f\xf4\x68\x81\x73\xe8\xa7\x6d\xf8\x2c\x87\x96\xb2\x8d\x98\xe5\x10\x28\x06\x86\x10\x72\xf9\xb1\xc1\x72\xf4\x0b\x69\xb6\x7f\x89\x52\x15\xfe\x1a\xa3\xb7\xe8\x47\xcf\x7d\x10\x55\x4f\x0b\xc3\xbd\x47\xe8\x26\x3b\x8f\xe2\x74\x44\x46\xdc\x36\xec\x5d\x7c\x72\x3f\xd8\x5f\x85\x51\x98\x7b\x2d\x78\xc3\xb5\x99\xee\x36\x6c\xc6\x4d\xd7\x4d\x97\x21\xca\x9b\x8b\x57\x61\xf7\xbc\x2c\xee\xdf\x48\xd9\x8e\x07\x42\x9f\x68\x6f\xec\x85\x9b\x00\xd7\x07\xbe\xbd\x00\x5e\x18\x80\x38\xc6\x7f\x0c\xbc\x8f\x53\xad\xc3\xc2\xb5\x1c\x60\x93\xf3\x63\xe0\x46\x96\x0b\xdc\x05\xa6\xf3\xc0\x8b\x3f\xb8\xc0\x73\x5d\x7c\x4c\x76\xe9\x31\x39\x58\xb8\x16\xf0\x63\x5c\xc8\xb6\x31\xe3\x73\x23\xe8\x82\x28\xc4\xec\x0f\x7f\x12\x19\xdc\xb0\x2d\x52\x3b\xf7\x41\x18\x87\x56\x0c\x16\xb6\xff\x3e\x00\xbe\x13\x82\xc0\x0e\x8c\x10\x38\xb1\x0f\x6c\x27\x36\x22\x60\xdb\x31\xfe\x96\xd0\x06\x0c\xd2\x00\x86\x6f\x10\xf8\x06\x86\x8f\xa1\x78\x9e\x11\x83\xd8\xf6\xbf\xee\xad\x00\x2c\xe2\x05\xce\x08\xfd\x4f\x0b\x10\xda\x11\x3e\x01\xf8\xfe\xc9\x01\x91\xbf\xd8\x39\xc0\x73\xdc\xaf\x7b\xdb\xf2\x80\xed\xc7\x27\xcb\x07\x5e\x5b\x00\x7f\x65\xf9\xdc\x6a\xa4\x9e\x6a\x37\x9c\x02\xe6\xd1\xe9\x2d\x04\xf4\xbf\xa4\xf2\xc7\x20\x95\x85\xbf\x48\x21\x9c\xe0\x5a\x8a\xeb\xdd\x57\xb9\xab\x9e\x7f\x9d\xfc\xea\x8a\xe4\x5b\xc9\x69\x01\xdc\xd0\x03\xc1\xc7\x18\xd8\x31\x9e\x97\xd0\xc3\x13\x13\x39\xa1\xe1\x83\x20\xf8\x60\x9f\x1c\x10\xba\xc1\xce\x71\x41\x9c\x5b\x7d\x86\xe1\x00\x07\x6f\xa7\x8e\x17\x7f\x74\x42\x23\xe2\x87\xde\xfd\xd7\x3f\xdb\xde\x62\xa8\x7d\x11\x8e\x11\x93\x8a\x96\x79\xd3\xf5\x77\x1e\x69\x8f\x1b\x69\x67\xce\x48\xd3\x22\xcb\x73\x9e\x15\x5f\x54\x05\x9d\xc5\x62\xf1\x33\xc9\x1d\x6c\xcc\x0b\x67\xf1\xcb\x9f\x62\xba\x0f\x47\x20\x70\x43\xe0\x3a\x8b\xdc\x02\x8b\x20\xc6\x72\xec\x47\xc7\x26\xca\xdc\xd8\x27\x93\xe4\xb9\x44\x29\xf3\x31\x04\x41\x18\x1b\x0b\x10\x07\x58\xdc\x6d\x8b\x7a\x46\x00\x82\xa9\x3d\x7c\x68\x93\xf0\x6a\x36\x17\x73\x2c\x20\x5e\x7d\x29\xcc\x3c\x9d\x6f\x79\x05\x13\x2f\x09\xa1\x13\x2a\xca\x34\x1d\x4c\x8c\x1b\xbb\xef\xdd\x7f\x7d\x60\x07\x8e\x68\x61\xf8\xb9\x85\x8f\x17\x20\x72\x3e\x3a\x8e\x11\x81\x20\x08\x3f\x78\x9f\x62\x10\x44\xbb\x38\xb7\x5c\xb0\xf0\x89\xb6\xd7\xc7\x87\x90\x10\x44\x8e\x83\x27\x24\x06\x76\xe8\x92\x29\xa9\x50\xd2\xf0\xca\x81\xf7\xc4\xbb\xba\x55\x85\x59\x6d\xd7\x40\xf0\x60\x9c\xdf\x3d\x80\x28\x78\x30\x5e\xd8\xdf\x6e\x43\xc1\x99\x3d\x0f\xc0\xbf\xaa\xf3\xbb\x87\x08\xb8\x81\xa0\xc3\xf6\x00\x3e\x14\x05\xf9\xc2\x58\x3c\xcc\x6c\x92\x25\xe5\x59\x81\x12\x78\x78\xf7\x50\xff\xf7\x11\x56\x68\x86\xc6\x3a\xbc\x63\x85\xcf\x37\x8b\xf9\x3e\xe4\x73\xc7\xc6\x7c\x33\xf9\x88\xeb\x3a\x5a\xe0\x43\xca\xc2\xed\x48\xc8\xc1\xa7\xd7\x10\x04\x7e\xf4\xc1\x3d\x91\xab\x19\x91\x88\xbc\x9e\x88\x5c\xbc\xd1\x06\x81\x92\x88\xda\x56\x6e\x20\x22\x57\x20\x22\xb7\x25\xa2\x70\x48\x44\x76\xe8\x19\xe4\x33\x8f\x40\x1c\xf9\x06\xf9\x7c\x98\xd9\xfc\x2c\x82\xfa\x87\x3f\x4e\xcf\x3e\x09\xbe\xc6\xb9\x5b\x73\x9c\x14\x7d\x01\xc9\x63\x94\xe5\xbe\xdc\x56\xf0\xb0\x7b\x31\x40\xbf\x1e\x2e\xf4\x39\x90\xd6\xff\x8a\x2f\x04\xcf\x59\x4d\xb3\x89\xbf\x2b\x9d\x9b\xce\x43\x92\x4d\x55\x0a\xeb\x1d\xac\x2a\xf8\xb2\xf4\x0d\x5f\x6a\x84\xe0\xa0\x85\x20\x16\x26\x3a\xf5\x4b\x5b\x82\xc5\x55\xa3\xb8\xb1\xc0\x56\x42\x71\x4c\x21\xb5\x81\x3f\xbb\x3a\xe3\xc5\x58\x68\x09\x75\x27\x98\x15\x01\x79\x73\x91\xab\xdd\x64\xc9\x17\xb1\x0d\x15\xe6\xa4\x54\x83\xce\x7c\xe4\x29\x10\x47\x41\x85\xf6\x2c\x40\x60\x91\xec\xca\x8a\xc5\x8f\x94\xc2\xf8\x0c\x0d\xa7\x86\xe1\x8f\xe4\x20\xdf\x62\x25\xc5\xe3\x09\x43\x4f\xd0\xf1\x67\x14\x66\x3d\xa2\x20\x15\x1a\x60\x21\x93\x9e\x32\xde\x5f\xfb\x98\x6d\xeb\x2b\x2d\xc0\xd0\xfb\x71\x50\x8b\x32\x41\x09\xa9\xb4\x39\x13\x4a\x4c\x05\x2d\x9e\x06\x40\xb5\x9b\x0a\x08\x2c\x2a\xaa\x04\x21\x1b\x09\x94\xcc\xc2\x8b\xf1\x9e\x86\xd2\xf8\x99\x53\x03\x2a\x42\xd2\xb8\xb3\x0f\xfb\x24\xda\xfe\x53\x67\x05\x95\x49\x9e\xe0\x46\x67\x39\xa3\x06\x7f\x42\xd9\x40\x57\x54\x05\x37\x92\x0b\x77\x0f\x2e\x72\x56\x73\x36\x1f\x42\x4c\x17\x50\x42\xd3\xac\xda\xff\x9b\x3a\x00\x28\x90\x14\x42\xe2\x6a\xc3\xa2\xda\xf6\x8f\xfc\xdb\x2b\x34\x22\xfa\x60\x19\xea\xe2\xf8\x53\xb3\xa3\xce\x79\x74\x80\x37\x37\xd5\x3a\x10\xc4\x18\x53\x6b\x9c\xd8\x62\xc9\x09\x58\xb6\xaa\x15\x12\xda\x04\xae\xcb\x13\x7a\x24\x2f\x28\x78\xc3\x31\x14\x4b\x75\x78\x75\x37\xd4\xf7\xde\xd1\xc9\xad\xd0\x06\x2e\xcc\x0f\x52\x89\x08\x2d\xc2\xad\x02\x52\x74\x1c\x0b\xd7\xd5\xa0\xc1\x32\x06\x4b\x56\xe1\xa1\xd7\x87\xfd\x1c\xae\xef\xf6\x42\x5f\x78\x6c\x5c\x31\xd8\x43\x17\xa3\x89\xfc\xff\xa1\x11\x38\x92\xb2\xd8\x64\x15\x7d\x32\xe9\x69\xc0\x13\x86\xb5\xb8\xa0\xd3\xc3\x95\xad\x67\xa8\xf7\xb5\xd6\xd5\x96\x43\x5d\xcf\x6e\xb6\xb7\xc0\x65\x71\x2e\xff\x5f\x92\x97\x35\xfa\x7c\xe1\xc6\x5c\x90\xc6\xee\x73\x85\xd6\xcf\xa9\xfb\x2a\x81\x61\x29\x47\x23\x01\x61\x7e\xbc\xca\xe2\xe3\x30\x78\xe2\x70\x37\xa6\xe6\x24\xa1\x92\xcd\xb5\x54\xb5\xe8\x82\xc0\x48\x0d\x0c\x62\xd6\x74\xbd\x9c\xf1\x5a\xb6\xad\x07\x28\x85\xdb\x19\x78\x07\xf3\xf7\x59\x7d\x60\x28\x3e\x20\xb0\xc7\x3f\x54\x42\x5e\xcb\x50\x3e\x7a\xd9\x57\xb6\xea\xa4\x2a\xf3\xbc\x0b\xfe\x64\x9d\x59\x84\x0c\x75\x5b\xf8\x5c\xd0\x58\x4d\x59\xe6\x4d\x76\x50\x6d\xec\x8b\xcd\x62\x03\x57\xc3\xb7\xa4\xa0\x8f\xff\x49\x13\xd1\x45\x7d\x74\x1d\xfc\x8f\x5a\x66\x6c\xe0\x3e\xcb\x5f\x96\xfb\xb2\x28\x89\x6f\x3a\x67\xaf\xe1\x70\xaf\x78\x2e\x23\xe6\xa1\xb9\xc0\x1d\x4a\xf6\x56\x6d\xed\x60\xbd\xcb\xf8\x81\xe1\xf6\x0e\x65\xd0\x49\xee\xd2\xb0\x0d\x9d\xb6\x49\xdd\xd4\xe1\xd2\xf9\x70\x33\x6a\xf4\x5a\x72\xa6\x68\xee\xcb\xb2\xd9\x61\xf4\xc8\xe0\xf3\x6f\x7a\x39\xc0\xe7\xf1\x34\xf8\x51\xdd\x1e\x9b\x06\x55\x5d\x84\xc9\x28\x8e\xdd\x85\xad\xc0\xd9\x85\xee\xc6\x0b\xc5\x28\x4e\x1a\x90\x54\x62\xbd\xf0\x52\x1f\x9d\x0a\x8c\x9e\xf1\xc3\x26\xde\xc4\x1b\x5b\x5b\x1b\x23\x5e\x1c\xf7\xeb\x3e\xe4\x4b\x98\xc6\x30\x8e\x35\x23\x6d\x11\x7f\x5d\x94\x1a\x69\x76\x12\x88\x8b\x3d\xa1\xc1\x51\x0a\x9e\x6c\xdf\x8d\xbd\xd1\xa6\x97\x4b\x6b\x5f\x7e\x65\xd5\xb3\xb2\x30\xc7\x0a\x3f\xd1\x23\xda\xad\x35\x94\xd5\x6e\x47\xf4\x26\x1c\x6f\x47\xef\x1b\x30\xfb\x07\x18\x42\x72\x62\x71\x83\xc0\x6c\xff\x27\x51\x00\x39\xb0\xe4\xd8\x9c\xec\xad\xa4\xdc\xef\x51\xd1\xb4\xc4\x96\xa6\xc8\x43\x91\xb2\x64\xdd\x54\x59\xb1\x35\xf5\x59\x96\xdb\x05\x6a\x4d\xd3\x35\xf4\x94\x50\x44\xda\x4e\x53\x1f\x05\xb1\xb2\xe0\x09\x56\x19\x5c\xe7\x48\xd9\x60\x9b\xd9\x37\xb9\x40\xb1\x9f\x04\x4a\x48\x29\xda\xcc\x40\xac\x3c\xa0\x0a\x36\x65\x87\x1a\xf2\xf0\x3f\x65\xd1\x2f\xe8\xe5\xb9\xac\xd2\x3e\x4e\x64\xe2\xdb\xae\xb2\x24\x6c\xca\xfd\x8c\xbe\xee\x51\x03\x95\xfd\x6c\xe0\x76\x06\xea\xb0\x69\xaa\x6c\x7d\x6c\xd4\x63\xf5\xdf\x47\x98\x67\x9b\xac\x1f\xf4\xc5\x26\x81\x41\xa8\x84\xd4\x3e\x29\x35\x63\x54\xd7\xc7\x2c\x6f\xb2\x62\x7c\x7a\xbc\x91\x36\x79\xc2\xa6\xa7\x4d\xba\x73\xf7\xea\x19\x7e\xe1\x39\xb6\xe3\x3a\xfa\x85\xb7\x87\x4d\x82\xb9\xff\xba\x82\xc9\x17\xd4\x50\xa7\x9b\x14\x25\x25\x7b\x62\xeb\x58\xa4\xa8\xc2\xf0\xb9\x63\x28\xbf\xd1\x56\x08\xa6\x34\x36\x61\x99\xa2\x3d\x81\xa9\x60\xea\xb5\x24\x71\x2a\x6b\x49\xe3\x21\xaf\xac\x39\x75\xf8\xe5\x76\x5b\xf9\x7e\x41\x20\x88\xff\xcd\x6f\x4f\x5c\x98\xd0\x83\xc9\x3a\x99\x5f\x5b\x26\x1c\x72\x20\x9f\x5b\x79\xb8\x9a\xc3\x24\x5a\xc7\xce\x95\xbe\x74\x8e\xb7\xb6\x81\xcc\x0e\xd8\x8f\xac\xd8\xaa\xbd\x9d\x14\xe2\x25\x33\x77\xbc\x2a\x01\x1a\x87\x8b\xf2\xe9\x8b\x4a\xf3\xde\x83\x06\xcc\xf7\x78\x92\xe5\xd6\x97\x56\x05\xe1\x47\x1f\x46\x79\x0c\x7f\x22\x76\xf1\x6f\x76\xa0\xbd\xf4\xd2\x83\x6e\x10\xa5\x28\x3f\xed\x03\x2e\x34\x98\x00\x3d\x18\xa1\x1a\x35\x9f\x85\x81\x12\xc6\x9a\x0f\x22\x45\x2b\x8b\x61\xa8\x8d\x43\xab\x8a\xc1\x98\x49\x4f\x3f\xb6\x47\x65\xa7\x33\x7c\x95\x2a\x83\xf6\x9b\x95\x66\x30\x2f\xb7\x56\xc9\xc5\x3c\xe4\x5f\xe7\x23\xef\x0f\x7b\xe2\x8b\x7d\x2c\x6d\x24\x34\x12\x3b\xdc\x0d\x50\x6e\xcf\xf0\x44\x3a\x15\x94\x28\xc3\xb2\x7d\x88\x2e\xb1\x8a\x25\x46\x81\x5e\x49\x21\xe0\xe2\x5e\xe8\xf7\x22\x0f\xfa\xee\x8a\x53\x47\xda\xd7\xab\x64\x4b\xa4\x50\xb6\x0e\x63\xdf\xeb\x5f\x5c\x42\x7b\xa3\xfd\x9f\x3c\x7a\xa7\xb1\x54\xba\x74\x67\xaf\x3e\x9c\x25\x1f\x30\x4c\x3d\xc1\x82\x23\xaf\x46\xb1\xef\xeb\x54\xbb\x24\x1a\xf7\x30\x0a\xb2\x2b\x29\x77\xf5\xc5\x78\xe5\x46\x4b\x50\x7d\x38\xc4\x9f\x8c\xe0\x70\x7e\x1c\xbe\x7f\xa3\x8a\x35\xdc\x1e\x9e\xf1\x0e\xfd\x26\x85\x0d\x6c\x4f\x70\x8f\x42\x30\x24\xe5\x28\x88\xce\xcc\xfa\x13\x6f\x1f\x21\x93\xee\x9f\x12\x8f\x61\xc9\x32\xab\xe1\x92\x5f\x45\x2f\xf0\xcd\x5c\x6b\x8c\x10\x34\x0b\x44\xa2\x12\x55\x9a\x18\xd6\x7a\xa3\x54\x1e\xb3\xc5\x32\x7c\x51\xf5\xd6\xb6\x79\x17\x6a\xb5\x5f\x84\xd3\xae\x03\xfa\x4d\xf3\xa4\xf7\x1b\xc7\x04\xc1\xe0\x3d\x6f\x96\xda\xba\x12\x74\x0f\x56\x8f\xdd\x25\x0f\x99\x45\x1b\x55\x9e\x71\x0a\xc1\x46\x99\x8f\x66\x39\x5a\xa4\x5d\xc9\x22\xbb\xb9\x0a\x04\xcb\xd3\xb7\xb5\xb0\x89\x7a\x84\x7b\x5b\x9b\x8e\xc2\xa2\x65\xd2\xaa\x7d\x03\x02\xbc\x5d\x58\x49\x85\x60\x83\x06\xce\xda\xec\x37\x29\x92\xa2\x1c\x75\x45\xe8\x26\x43\xbf\x7f\xa6\x1a\xdd\xb6\xd2\x23\xfd\xc9\xd5\x79\x14\x2a\xd1\x9d\x49\x48\xaa\x8f\xeb\x7d\xd6\x7c\x96\x63\x80\x13\x59\x26\xcd\x4e\x4f\x50\x7c\xd0\x8b\xc2\xc6\x7d\x67\x9b\xdd\x01\xd6\x35\x3e\x2c\x7c\x9e\x28\x87\xbf\xea\xcb\xe0\x0f\x58\x21\x75\x63\xc4\x67\x65\x56\x73\x7c\x49\x7d\x83\xb4\x94\xba\x49\x5d\x38\xa0\xd1\xd6\xc7\x2b\x29\x10\xd1\x55\x68\x71\xba\x88\xea\x9d\xe0\x3a\xa7\xb6\x54\xc9\x0d\x5e\x37\x56\x97\xe4\x1f\x25\x36\x16\x4d\xf9\x15\x4c\x3c\x2e\x34\x08\x44\xc0\x67\xf2\x6f\x0e\xb1\xa4\xc7\x4b\x8e\x1a\xdc\x35\xbc\x1b\xe1\xad\x0c\xd8\xaa\xe7\xc9\xa4\x42\x16\xf1\x45\xd2\xbc\xec\x31\x2b\xd4\xff\x37\xf6\x52\x5e\xe3\xec\x1d\x47\xc5\x8a\x78\xea\xc2\x7d\x28\xa9\x57\x91\xad\x99\x37\x45\xc9\xee\xad\x40\xb3\x49\x0d\xf1\x7d\xd0\xd0\xb6\xff\x20\x6c\xe9\xc2\xeb\x4c\xff\x9c\x67\xc5\x97\xbf\xc2\xe4\xd7\x97\xba\x41\xfb\x5f\xca\xa2\x31\x2d\x78\x38\xe4\xc8\xaa\x49\x8a\xf9\xf0\x2b\xda\x96\xc8\xf8\xdb\xbf\x3d\x98\xff\x59\xae\xcb\xa6\x34\xff\xe3\xfc\xb2\x45\x85\xf9\xb7\xf5\xb1\x68\x8e\xe6\x7b\x58\xe0\x85\x97\xe7\xe6\xc3\x2f\x59\x05\x8d\x5f\x61\x51\x3f\x98\x0f\x7f\xa9\xca\x2c\x6d\x7f\x7c\x40\xf9\x09\x35\x59\x02\x8d\x7f\x47\x47\xf4\x60\x76\xbf\xcd\x3f\x55\x19\xcc\xcd\x1a\x16\xb5\x55\xa3\x2a\xdb\xac\xa4\x21\xe5\x0f\xe2\xc2\x6d\x0a\x54\x6f\xff\xca\x3d\x7e\x22\x56\xc7\xad\x0b\xc8\x6c\x76\xc2\xcc\x07\xb6\x3e\x9e\x3e\x7b\x28\x61\x32\xee\x4d\x93\x82\x06\x6e\xeb\x5b\x82\xdc\xcc\xaf\x40\x5a\x20\xbd\x4c\x53\x2e\x18\x0e\x65\x9c\x42\x50\x93\xa6\x7d\x7b\xc1\x94\x82\xe8\xa0\xbd\xd0\x65\x7f\xa4\xcb\xfd\x0b\x20\xba\x05\xaa\xc9\xa2\xcb\x53\xce\xd4\x2d\x4e\xb4\xd7\xe1\x48\xdf\x95\x2a\xca\x6a\x0f\x73\xc5\xbb\x7e\xbd\xa4\x91\x15\x3b\x54\x65\xcd\x75\xe7\xf0\xaf\xa3\x81\xa0\x42\xfb\x9b\x9d\xbd\xcc\x9d\x2b\x00\x71\x5c\x02\x66\x5d\xa6\x2f\x26\x0d\xe5\x7e\xa8\x90\x91\x94\x29\x32\x9b\xd4\xec\x76\xab\x81\x6d\xcc\xdc\x67\x46\xdb\x79\xba\x71\x15\x7c\x7f\x7e\xd9\x2e\x0e\xd6\x29\x36\x0e\x82\xfc\x40\x84\xc0\x61\x21\x7e\xad\x2b\xde\x38\x55\xa9\x14\xc6\x1f\x3e\xfd\x63\xb0\xe3\x91\x29\x1c\x7f\xb5\xf5\x7b\x2c\x29\xfd\xab\xb0\xdc\x7c\x89\x84\x7a\xdf\x65\x34\xff\x60\xaa\x6d\x9f\x76\xaa\x40\xdd\x27\x54\x11\x9b\x3e\x4d\x98\x6e\xba\xc2\x55\x51\xba\x93\x32\x3f\xee\x0b\x39\x40\x37\x4b\x15\x14\x03\xd9\x57\x2c\xdd\xb0\xc3\x19\xc1\x5c\x93\xcc\x9f\xd5\x88\xd6\x45\xd0\x4b\x91\xa8\xd8\xe4\xe1\x9f\x91\xb8\xac\x2c\x1c\xab\xea\xe1\x54\x3a\xee\x52\x74\x5c\x8a\x44\xa7\xc9\x11\x50\xeb\x53\x3b\x60\xa6\xcc\x39\x08\x3e\xc2\x3d\x37\xd1\x54\xb8\xfe\xe9\xd9\xf8\xd9\x78\xe3\xb8\xa1\x6d\xfc\x6c\x38\xb6\xfd\xf8\x28\xbd\x88\xaa\x2d\xa7\x7a\xbe\xc0\x16\x9e\x41\x55\x04\xa9\x12\x61\x13\xb3\x10\x45\x68\x5e\xdc\x0c\x0f\x68\x46\x77\xe8\xa3\x8a\xa2\x53\xbb\x8f\xa1\x8b\x6b\x8d\xac\xac\x96\x96\xac\x3d\x2a\x8e\xe6\x54\x01\xf2\xaa\xaa\xfc\xf8\x92\x5e\xb5\x27\x82\xc3\xfb\x33\xe3\x13\x6d\xd2\x97\xd3\x63\xfb\x2e\x54\xaf\x37\xe5\xec\x63\xc6\x1f\xa9\x0b\x42\xfe\x45\xba\x6b\xaf\x35\x35\xbb\x6f\x3f\x91\x45\x3f\x54\xd9\x4a\xaf\x50\xa2\xfd\x75\xbe\xac\x70\xdf\x83\xf4\x83\x77\xbd\xfd\x9b\x1a\x6d\xc4\x7b\x94\x5b\x02\x06\xee\x84\x60\x6f\x73\x84\x28\xd2\xa4\x58\x4f\x50\x4e\xb8\xf1\xe1\x3c\x8d\xc2\xdf\x59\x76\xeb\x64\x34\xad\x05\xa6\xc2\xb4\x66\xcc\x06\x86\x98\x84\x04\x83\x9e\xde\xe6\xc8\xf5\x2d\x8e\x2f\xc3\xa7\x60\xe6\xa3\x92\xa2\xba\xc9\x0a\x76\x3f\x21\x1d\xc7\x44\x20\x5f\x4e\xd2\x43\x6d\x78\x8b\x9b\x7f\xcb\x01\xa2\x01\x1d\x0f\x20\xf2\xbb\xae\xea\x12\xa3\xbd\x1f\x52\x3d\x85\x21\x5f\xc1\x88\x4d\xc1\x44\xf5\xcc\x9c\xe6\xd1\x7f\x82\xfb\xeb\xbc\x0f\xfe\x0d\xef\x56\xc8\x8c\x60\x30\x7c\xf3\xfa\x24\x3f\x34\xaa\xbf\xbb\xfb\x06\xe8\x2a\x9e\xc9\xae\x46\xfe\x7f\x00\x00\x00\xff\xff\x49\xaf\x8a\x77\x92\xf7\x00\x00") +var _web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xeb\x8e\xe3\x38\xd2\x20\xfa\x2a\x3c\x6e\x14\xa6\xb2\xca\x62\xe9\x2e\xd9\xee\x4c\xcc\x4c\xcd\x36\x6a\x81\x9a\x5d\x60\x67\xa7\xff\x0c\x0a\x0b\x5a\xa2\xd3\xfa\x4a\x17\x7f\x92\xec\xcc\x2c\xc3\xf3\x18\xe7\xf7\x79\xb6\xf3\x24\x07\x24\x75\x21\x29\x52\x92\x5d\xd9\xdd\xd3\xdf\x19\x54\xb7\xd3\xe6\x25\x78\x0b\x06\x83\x11\xc1\x88\x3f\x46\x7b\x54\x56\xb8\x06\x8b\xbf\xff\xef\x9f\x8c\x70\xb1\x41\x65\x9d\x44\x29\x5e\xa2\x2a\x89\xf1\x72\x97\x3c\x1e\x4b\xbc\xdc\x15\x45\x8d\xcb\xe5\x1e\xa3\x98\xfc\x79\x2c\x8b\xe3\x61\xb9\x2f\x97\x15\x8e\xea\xa4\xc8\xcf\x71\x52\x1d\x52\xf4\xb2\xde\xa6\x45\xf4\xf5\x02\x71\xb6\xc5\xa5\x71\x28\x9e\x70\x69\x54\x38\xc5\x51\x6d\x64\xc7\xb4\x4e\x0e\x29\x36\x4a\x9c\x15\x27\x6c\x6c\xeb\x7c\xa9\x2a\x57\x1c\x08\xc0\x25\x5a\x26\xf9\xe1\x58\xff\xa3\x7e\x39\xe0\xfb\x68\x8f\xa3\xaf\xdb\xe2\xf9\x0b\x9f\x58\xa2\x38\x29\xbe\x9c\xa3\x63\x59\x15\xe5\xfa\x50\x24\x79\x8d\xcb\xb6\xe9\x2d\xaa\x92\xc8\x88\xcb\xe2\x10\x17\x4f\xb9\x51\x97\xc9\xe3\x23\x2e\xff\x81\xca\x04\x19\xf8\xf9\x80\xf2\x18\xc7\xf7\x75\x79\xc4\x5f\x80\xaa\x13\x55\x8d\xea\x63\x65\x24\x51\x91\x2f\x6b\xb4\x4d\x31\x7c\x4a\xea\xbd\x11\xe3\x1a\x25\x69\x05\xea\x78\x5d\xe4\xe9\x8b\x11\xed\x93\x34\x7e\x88\x93\xd3\x43\x8a\xb6\x38\x5d\xaf\xb7\x78\x57\x94\xf8\x6c\x3c\xe1\xed\xd7\xa4\x36\xea\x12\xe5\xd5\xae\x28\xb3\x75\x59\xd4\xa8\xc6\x6f\xad\xd0\x8c\xf1\xe3\xdd\x46\x97\x71\x79\x77\xde\x16\x65\x8c\x4b\xe3\x29\x89\xeb\xfd\xda\xbc\xc0\xa8\x4c\xea\x24\x42\x29\xdc\x63\x94\xd6\x7b\x3a\x15\x4d\xff\x96\x70\x97\xa2\x6a\x6f\x64\xb8\xaa\xd0\x23\x06\x07\x88\xcb\xb2\x28\x87\xc9\xd5\x31\x8a\x70\x55\x2d\x61\x5e\xd4\x49\x84\xe1\x13\x2a\xf3\x24\x7f\x5c\xb6\x5f\x54\xb0\x11\x24\xb3\x6c\x44\x25\x46\x35\x16\x7f\xad\xe3\xa4\x22\x93\x12\x4b\xc9\xbb\x22\x92\x2b\xae\xf7\xc5\x09\x97\x6b\x14\xd5\xc9\x49\x86\xc2\xb2\xf2\xa2\x7e\xdb\x01\xbc\x63\x3f\x59\xf1\xbb\xe5\xf6\x58\xd7\x45\xce\x2a\xc5\x38\xc5\x35\x56\x24\xf5\xbd\x51\xe4\xb1\x2e\x29\x32\x84\x7e\x69\xf3\xa7\x3b\xc7\x70\xb1\x3a\x6e\xb3\xa4\xfe\xa2\x4a\x93\xbb\x27\x66\xf2\xfd\x13\x73\x14\x1d\x54\x15\x18\xeb\x61\x86\x92\x1c\xb0\x2d\x0b\x72\x74\x5a\xa7\xa8\xaa\x8d\x62\x67\x10\x30\xac\xe4\x2e\x29\xfb\xa4\x3b\x00\x19\xfa\xe3\x18\xa0\x16\x0f\xab\xfa\x25\xc5\xeb\xaa\x48\x93\xf8\x72\x05\xfa\x9c\xb7\x28\xfa\x4a\xa8\x44\x1e\x1b\x51\x91\x16\xe5\xfa\x87\xdd\x6e\xb7\xc5\xf1\xa6\x81\xdb\x26\xa2\xc8\x35\xed\x8b\x0e\x63\x15\x60\x70\xb4\x0b\x06\x60\x6c\xbc\x35\x9d\xd5\x46\xf8\x75\xd1\xe0\xec\xd8\x1a\x29\xda\x0b\xd1\xd6\xda\xed\xa4\xf6\x42\xbc\xf2\x91\xd3\xb6\xb7\x33\x77\xde\x6e\x77\x99\xbb\x19\xae\x44\xaa\x49\x1c\x19\x81\xa7\x18\x8f\x13\x06\x68\x30\x1e\x13\xd9\x71\xe0\x6e\xfa\x95\x12\x07\xa3\x6a\x5c\x01\xda\xf2\x7c\xe7\x5a\xd0\x73\xf1\x9c\x15\x50\x34\x6a\x62\xd7\x44\xce\x64\xa3\xc3\x2d\xae\x46\x51\x09\x50\x14\x38\xae\xeb\x6d\x84\x5f\xb7\xd0\x64\x55\x63\x2b\x1c\x61\x3c\xda\x9e\xb7\xb5\x42\xdb\x54\xf4\x7d\x0c\x61\xb1\x87\x6c\x84\xc6\x11\x56\x39\x21\x53\xc4\xf2\x3a\x3c\x6b\x46\x22\x76\x83\x0d\x68\xa2\x1b\x13\x0b\x1e\xec\x6c\xdb\x8e\x26\x01\x7f\x1f\xf1\x9b\x81\x1a\x2b\x6c\x5b\x5e\x47\x73\xd8\xaf\xcb\x2e\xc1\x69\x5c\xe1\x7a\xb9\x2f\x1b\x0a\xba\xce\x8b\x1c\xb3\xde\x30\x26\x62\x87\x71\x4c\xe0\x03\xd8\x7e\x33\xe2\x04\xa5\xc5\xa3\x51\x1c\xeb\x86\x66\x5b\xa0\x3a\xa0\x7c\xbd\x46\x3b\xc2\x75\x89\x69\x2a\x1e\x23\x21\x3c\x93\x71\x28\x8b\x03\x2e\xeb\x97\x75\x71\x40\x51\x52\xbf\x6c\xc6\xf2\x14\xf5\xe3\x63\x89\xc8\x97\x35\xb4\xaa\x8d\x2e\x5d\x51\xaf\x4e\xb2\x24\x7f\x34\x76\xc7\x9c\x32\x83\xeb\x34\xc9\x31\x2a\x37\xd3\x25\x9a\xbe\xac\xcd\x4d\xc3\xbe\x19\xf8\x84\xf3\xba\xe2\xe6\xac\x1d\x36\xc5\x4d\xe5\x84\x34\x39\x6c\x5a\xc4\x2c\x86\x49\xaa\x4a\x4d\x8e\x7e\x2e\xbb\x31\x9b\xca\x99\x30\x47\xe7\xef\x98\x57\xb8\x56\xd6\x63\x39\xed\xb8\x2d\x79\xdc\xe8\x58\x17\x17\xca\x43\xff\xe7\xb1\x20\x74\xb7\x88\x5f\x96\x71\xbc\x8c\xd3\x65\x5c\x2f\x3b\xe4\x6a\x98\xf2\xbd\xb5\xdc\xdb\xcb\xbd\xb3\xdc\xbb\xcb\xbd\xb7\xdc\xfb\x84\x23\xdf\xd7\x59\xba\x4c\x76\x25\xca\xf0\x32\xc5\x8f\x38\x8f\x97\x69\xb2\x2c\xd2\xe5\x61\x79\x28\xf1\xb2\xc6\xcf\x35\x2a\x31\x5a\x1e\xd3\x73\x86\xca\xc7\x84\x8c\xe5\x80\xe2\x38\xc9\x1f\xd7\xe6\x65\x00\xf2\xbc\x2b\xf2\xda\xa8\x92\x6f\x78\x6d\x99\xe6\x9b\x0d\xfd\xf9\x84\x93\xc7\x7d\xbd\x76\x4d\xf3\xf2\x8f\xb2\x48\xf1\xfd\x16\xe5\x39\x2e\xbf\xd0\x8d\x26\x6c\x2b\x70\x4c\xc9\x7f\x30\xa9\x0c\x81\xc4\x93\xbe\x93\x05\xa1\xcc\x73\x9c\x9c\x00\xfd\x5b\x2f\xab\xba\x2c\xf2\xc7\x65\x1d\x83\xee\x5b\x03\x90\xf2\xda\xcb\x7a\x7f\xe6\x7b\x10\x98\xe6\xe5\x98\x9e\xd3\xa4\xaa\x1b\x4e\x85\x62\x0e\x65\xd9\x41\x1d\x2f\x9b\x2f\xfb\x73\x37\xc2\x0d\x99\x00\x03\xa5\xc9\x63\xbe\x4e\xf1\xae\xbe\xa0\x63\x9c\x14\x4b\x72\x07\x88\x97\x49\xf6\xb8\x2c\xb6\xff\x81\xa3\x7a\x79\x4a\x62\x5c\x9c\xf7\xac\x19\xb2\x2c\x9b\x0c\x3d\x37\x5c\x39\x99\x08\xe5\x01\x09\xa3\xe2\xf0\x42\x6f\x36\x5a\xce\x95\x9d\x6d\xec\xfb\x17\x4a\x87\xba\x4a\x8c\xa4\xf2\x75\x44\x7e\xa0\xc4\x15\x56\xf3\x98\x74\xd1\x61\x8d\xb3\x43\x8a\x6a\x6c\xd0\x13\x87\xce\x28\x5a\xd2\x8b\x09\xc5\xf9\x1e\xcb\x8b\x63\xb4\x37\x22\x94\xa6\xc5\xb1\xa6\x13\xd6\x21\xf3\xb1\xea\xee\x40\x4d\x46\x56\x7c\x53\xa5\x56\xc3\x44\x39\xe1\xc2\x46\x52\xe2\x13\x46\x29\xa0\x17\xb7\x35\x3d\x29\x71\xfc\x1e\x67\x9a\xde\xc4\x78\x87\x8e\x69\xad\xec\x10\x59\xb9\x61\x87\x9a\xd4\x6a\x98\x28\x27\x5c\xd0\x99\x2e\x7e\x8c\xa3\xa2\xd9\x8e\xb4\xe3\x02\xf7\x72\x21\x53\xd5\xa3\x21\x41\x38\x96\x9f\xe4\x7b\x5c\x26\xf5\x85\x6c\xc9\x73\x5b\x65\x67\x5b\xb6\xbb\x21\xd4\xcc\x68\x50\xc5\x82\xde\x85\xac\x86\xe6\x08\xe1\x76\x93\x7f\x78\x66\xc8\x58\xe2\x3c\xc6\x25\xc1\x4e\x72\xf7\xcd\x92\x6f\xf8\x33\x7e\x4c\xb6\x49\x2a\x90\x69\x52\x92\x54\x34\x50\xfc\x1f\xc7\xaa\x66\xbb\x91\x8c\x5b\x9d\xa3\x2b\x5f\x7c\x33\x8a\xea\xd9\x60\xfd\xc8\x8a\xa2\xde\x93\x86\x1f\x4b\xf4\x52\x45\x28\xed\x31\x41\x2a\x80\xf2\x3a\x41\x69\x82\x2a\x1c\x6f\x08\xe9\xdc\xa5\xc5\x93\xf1\xbc\xde\x27\x71\x8c\xf3\x3e\xe5\x65\x5d\x45\x65\x91\xa6\x1d\x98\x6d\xf1\x4c\x7a\x41\x40\x34\xa7\xe7\xb6\x78\xde\xa8\x53\xb3\x24\x6f\x36\x98\x63\x9a\x87\xe7\xcb\x5e\xc5\x35\xf9\xbb\xc0\x0f\xed\x4d\x3b\xdb\x87\xe7\x4d\x43\xc5\x2c\xe8\x95\x38\x03\x26\x5d\xa0\x96\xca\x50\xac\x5b\x32\x1c\xe8\x48\x1f\xa3\x20\x3b\x94\x25\xe9\xcb\xfa\xcf\x69\x92\x7f\xfd\x2b\x8a\xfe\xf6\x52\xd5\x38\xfb\xa9\xc8\xeb\xa5\x81\x0e\x87\x14\x1b\x15\x4d\x59\x2e\xfe\x86\x1f\x0b\x0c\xfe\xfe\xdf\x17\xcb\xff\x55\x6c\x8b\xba\x58\xfe\xcf\xe7\x97\x47\x9c\x2f\xff\xbe\x3d\xe6\xf5\x71\xf9\x11\xe5\x04\x6a\x9a\x2e\x17\x3f\x25\x25\x02\x7f\x43\x79\xb5\x58\x2e\xfe\x52\x16\x49\xdc\xfe\xf8\x84\xd3\x13\x26\x1c\x23\xf8\x1f\xf8\x88\x17\xcb\xee\xf7\xf2\x4f\x65\x82\xd2\x65\x85\xf2\xca\xa8\x70\x99\xec\x2e\x0c\xf3\x1a\xaa\x4b\x29\x5a\x8b\x78\x51\x11\x63\x42\xc2\x85\xee\x67\x45\x5e\x54\x07\x14\x61\xed\xd2\x52\xda\xa5\x5b\x55\x72\xdc\x1c\xb8\x03\xb0\x5b\x48\xb6\x8c\xa4\x0c\xdd\x9f\xfc\x9a\x53\x80\x4f\xfb\xa4\xc6\x06\x6d\x79\x7d\x28\xf1\xe6\xa9\x28\x63\xe3\xa9\x44\x87\x75\x5e\x94\x19\x4a\x2f\xef\x96\xed\xb9\x3b\x38\x65\xb9\xd5\x6f\xc6\xb6\x19\x26\xa9\x05\x39\x4b\xb5\x78\x27\x2a\xf2\x1a\xe7\xf5\x78\x2e\x78\xa7\x94\x37\xb5\xc5\xc0\x3b\x55\x07\xa7\x90\xb6\x63\xf8\xce\xdc\xd1\x30\x53\x72\x75\xc2\x25\xbd\x45\x34\xa7\xd1\x16\x55\x98\x50\x92\xcb\x28\xee\xb6\x67\xf6\x85\x1d\xf1\x2d\x93\x69\x2a\x65\x6e\x8d\xd8\x4b\x39\xee\x26\xcf\x68\xcf\xe5\x91\x32\x8c\xc5\x6a\x25\x02\x75\x71\x20\xfb\x0e\x50\x99\x00\xf8\x01\xf5\x77\x8d\x6d\x51\xd7\x45\xa6\xc9\x2c\xdb\x0d\xab\xc8\x23\x07\xb1\x94\xa5\x5e\xff\xf3\xa1\x60\x1c\xd5\xba\xc4\x29\x22\xfd\xd6\x08\xfc\x9a\x35\xef\xcb\xa3\x6d\x55\xa4\xc7\x1a\x6f\xd8\x3a\x51\x24\xfe\x66\x24\x79\x8c\x9f\xc9\xa2\x99\x1b\x25\xbd\x1e\x87\x6e\xd0\x8e\x9f\x69\xef\xcd\xa9\xa2\x74\xfc\x67\x36\x0b\xba\xc2\x64\x97\xa5\xe8\xa5\xef\xf5\x2e\x79\xc6\x31\xd7\xb5\x75\xf9\xb8\x45\x6f\xcd\x25\xf9\x07\xbd\xbb\x4d\x8f\x74\x1d\x45\x24\xdf\xfb\x81\x6d\xc8\x6a\x99\x1b\xd6\x45\x25\x97\x0d\x0f\x65\xf1\x58\xe2\xaa\x82\xa4\x4e\x8d\xcb\x2c\xc9\x09\x47\xc3\x18\x3b\x76\x33\xf9\xd2\xb2\x69\x0f\xcd\x85\xea\x1f\xbb\xa2\xbc\xcf\x8a\x18\xa5\xff\x27\x4a\x8b\x0a\x0b\xd2\x80\xae\xf7\x11\x26\xad\xf1\x33\x5b\xe2\x03\x46\x84\x3d\x68\xbe\x4d\x4c\xda\x53\x51\x66\xfb\x22\xc5\x46\x51\x26\x8f\x49\x2f\x65\x4e\x72\xba\x51\x46\x50\x76\x88\x28\x1d\x1e\xa2\x38\x39\x56\x6b\xf7\xf0\xac\x5e\x72\xe9\x34\x0f\x3c\xc5\x79\x47\x0f\xd7\x36\x79\x8d\xd3\x34\x39\x54\x49\x45\x0f\x30\xae\x22\xce\xbe\x87\x7d\xd2\xf3\x64\x22\x3f\x32\xb6\x6f\x29\x01\x3e\x37\xb3\xb9\x5e\x2c\x36\xed\x04\x52\xbe\x78\x13\xa5\x18\x95\xeb\x6d\x51\xef\xc7\xa0\x5c\x41\x21\x04\x02\xba\x47\x71\xf1\xc4\x7a\x2c\xfd\x1e\x17\xd2\x1b\xc6\x16\xa7\xc5\xd3\x48\x6b\x2a\x31\xbe\x86\xf6\x77\x30\x93\xdc\x38\xa4\x28\xc2\x57\x82\x3d\x0b\xa4\x8d\xee\xf7\x16\x83\x4c\x91\xec\xb1\x0d\xde\x65\x4e\x8d\x11\x6d\x8b\xd3\xad\x9d\xa9\x8b\x83\xba\x27\x24\x43\xdd\x0d\xa1\x09\x3a\x11\xfb\x22\x8d\x29\x72\x30\xf1\xc5\x6a\xb5\x11\x74\x38\x0a\xac\xe7\xcf\xfc\xbc\x20\x87\xbd\x66\x23\x28\x1b\xe5\x54\x2a\x0a\xaa\x2c\xee\x6c\x83\x75\xa1\xd1\x81\xb4\xa4\xad\x25\x66\xcd\x31\x63\xb6\x9c\x1f\xa5\xe5\x43\x71\xf5\x46\xd0\xa4\x04\x87\x67\xe0\x1e\x9e\x81\x29\x49\x71\x10\x42\x80\x5e\xd4\x0f\xa8\x24\x4c\x02\xf7\x7d\xc3\x88\xb5\x77\x78\x56\x0e\x88\xee\x1e\x72\x6f\x53\x0c\x47\x54\x4a\x35\x80\x6c\x1d\xa4\x16\x29\x3a\x15\x19\x3d\xfa\x05\x3e\xaf\x65\x94\xfa\xfb\x43\xcf\x3a\x75\x52\x26\xf5\x2c\xf2\xf4\xac\xad\xd4\x6e\x54\x74\x38\x60\x54\xa2\x3c\x62\x17\xe7\x4d\x71\xac\x49\x71\x5e\x24\xb0\xd9\xa5\x05\xaa\xe9\x5d\x79\x48\x30\xf9\xd9\xa2\xb8\x40\xce\x90\xbc\x5e\xdb\x57\x8d\x74\x54\x9a\x89\x47\xe9\xbc\x0c\x69\xdd\x8e\x8c\xfe\x14\x30\xbd\x17\xba\xf4\x38\x7f\x0d\x68\x42\xb5\x5f\x1f\xea\x2f\x05\xf6\x75\xfb\xf8\x8b\x4d\xea\x9a\x9e\x90\xff\x4a\x13\xda\x81\x63\x8a\xe8\x8a\x13\x1d\x75\xbc\xf7\x8c\x7a\x2d\x63\xde\x73\xb5\xe4\x8e\xad\x60\x42\x5a\xb5\x8c\xe3\x28\xf8\x11\xec\x92\x7f\xfd\x66\x24\x24\x6c\x7a\x97\x5b\xd0\xf5\xf8\x6d\xdb\xf4\xdb\x26\xe4\x0f\x90\x4f\x47\xb3\x3d\x15\x3a\x7a\x26\x2a\xa7\xe2\xd2\xbb\x6e\x12\xa1\xa7\x26\xf1\x18\x95\x51\x2f\x6b\x73\x35\xad\xb0\x62\x0d\x91\x1b\x4c\x93\x70\x67\x68\xcf\x37\x8e\xcf\x1d\x52\x40\x15\x81\xeb\x67\x4c\x47\x74\xf9\x5e\x08\x17\x1c\xb9\x2f\x57\x32\x35\xca\xcb\xe5\x59\x7f\xd1\x19\xbd\x1f\x0d\x78\xd1\x21\xfe\xcc\xec\x5e\x77\x9e\xb7\xa7\xf9\x34\x17\xd9\x76\x7e\xe2\x62\x43\x39\x99\xd9\x97\xc3\xa6\x6f\xdf\xc7\x54\xdd\xd2\x4d\xca\x54\x8e\x4a\x00\x26\x00\xb4\x1c\x24\x3f\xd4\xe1\x68\x34\xa3\xff\x5e\x96\xed\xda\x3e\x72\xd2\x08\xbd\x91\x4d\x25\x0b\xce\x37\x43\x8d\xc0\x2f\x72\x85\x19\xeb\x13\xbb\x77\x92\x8e\x6d\x8b\xe7\x2f\x67\x4e\xb4\x28\x48\xb2\xb4\x92\xaa\x0c\x3d\x77\x3b\xc6\x86\xb6\x87\xb3\x91\xd6\x7a\xe2\x0e\x42\x0d\x9d\xa0\xa6\x4e\x8c\x1b\x6f\xd9\x94\x86\x1b\xe7\x58\xe7\x86\xdf\xcb\x8b\xda\x40\x69\x5a\x3c\xe1\xf8\x3a\x58\x4a\x23\xa4\xc6\x12\x4a\x9f\x35\xd5\x2b\xc5\x75\x7f\x6e\x4f\xf9\x06\x5a\xbd\x68\x7b\x09\x19\x9c\x52\x71\x3c\x0d\x24\x3a\x96\x84\x4b\xd4\xc2\xf0\xc2\x55\xb0\xdb\xf2\x0a\xdc\x5e\x9f\x51\x17\x5f\x71\xce\xa9\x37\xe2\xa4\x66\x12\x88\x1c\x3f\x19\x87\x22\x4d\xa2\x17\xa3\x2e\x1e\x1f\x53\xfc\x45\x2d\xb6\x00\x71\x0c\x90\x26\xeb\x00\x10\x53\x0d\xd2\x32\xb2\xd6\x98\xd3\x3d\xb5\xb9\x07\x80\xce\xa2\xca\x40\xbb\xd4\x46\x8e\x32\xdc\x5a\xa8\xb5\xaa\x0d\x59\x7f\x35\x79\x09\x94\x16\xf8\x6a\x1e\x99\x43\x72\xcb\xa7\x3c\xc0\xe4\xb5\x50\x89\x74\x2d\x1e\x18\x49\x8d\xb3\x46\x10\xc9\x4e\xb4\xd1\xbd\xa3\xc4\xed\x89\x1c\x36\x71\x4d\xbf\x59\x1b\xb6\x8e\x9d\xb8\xa5\x11\x71\xf7\xb3\x06\x5c\xf3\xea\x06\x54\x60\x6e\xed\xa7\x62\xc8\xba\x69\x6d\xb1\x23\x4e\xca\xfb\xb2\x4e\xbf\x70\x0b\x4c\xfe\x91\x45\x9e\x55\x4f\xd9\x99\x29\x2c\x98\x05\x44\x89\x2a\x8c\xc3\x99\x3b\x28\x25\x5c\x89\xc9\xbe\xbd\x83\xba\x2b\x37\x65\x9a\x69\x47\x6f\xef\x24\x2f\xe9\xa0\xeb\xe8\x1d\x9e\x1b\x11\x40\x92\x27\x75\x82\xd2\xdb\x61\xf7\x42\x07\x86\x6c\xf3\x40\xb7\x8c\xc2\x38\xec\x57\xda\xad\x8d\xb0\x43\xb7\x0d\x7e\xb9\xbe\x48\xbb\xb1\x6c\x6c\x14\x7e\xa1\x7e\x28\x5b\xfb\x65\x47\xad\x9a\x67\xb2\x9d\xc6\x0e\xad\x82\xb7\x8e\x68\x8d\x9f\x38\x51\x11\x77\x7d\xe8\xd3\xb2\xca\xd8\xa5\xf8\x99\x4f\x23\xbf\xc7\x1a\x52\x08\xc1\x08\x83\x6c\x38\x53\x1d\x4c\x13\x91\x3e\xd0\xfb\xda\x2d\x47\x7f\x63\xbe\x76\x5b\x5d\x7a\xc1\x1d\x61\x1e\x1a\xe0\x23\x05\xc6\x20\x1c\x26\x00\x1c\xba\xfa\x1d\x27\xd2\x94\xef\x7f\x73\xf9\x07\x31\xbb\xab\x3d\x30\x6f\x38\xe6\x31\x2e\xa9\xaa\x44\xdd\x6e\xc3\xd1\x20\xd1\x9e\x41\x53\x98\x59\x92\xa0\x7f\x94\x38\x7d\x77\xbf\xc7\xe9\xe1\x0b\xab\x3d\x4c\x3f\x0b\x46\x87\x0d\xb8\x1a\x6d\x0f\x28\xc7\xe9\x97\x87\x03\x67\x3c\x0f\xb8\x6a\x6b\x49\x5f\x31\xa6\x9e\xe2\xb9\xa0\x24\x43\x8f\x78\x7d\x2c\xd3\xb7\x7f\x88\x51\x8d\xd6\xf4\xf7\x87\xea\xf4\xf8\xfe\x39\x4b\x37\xcd\xf3\x86\x7b\xfa\xba\x61\xf9\x63\x75\x7a\x04\xcf\x59\x9a\x57\xf7\x8b\x7d\x5d\x1f\xd6\x1f\x3e\x3c\x3d\x3d\xc1\x27\x07\x16\xe5\xe3\x07\xdb\x34\x4d\x52\x71\xc1\x8a\xac\x9f\xd3\x24\xff\xaa\x2a\x68\xad\x56\xab\x0f\x34\x77\x01\xe8\x55\xeb\x7e\x61\xbb\x0b\xc0\xee\x1d\xec\xfb\x29\xc1\x4f\x7f\x2e\x9e\xef\x17\xe4\x48\xb6\x5d\x40\xd2\xa2\x14\x55\xd5\xfd\xa2\xaa\xcb\x63\x54\x1f\x4b\x4c\xcf\x08\x23\x2d\x10\xd9\xd0\x8b\x87\x1f\xe9\x26\x7d\x80\xea\x7c\x72\xe9\xc3\xbd\x08\xc6\xba\xe8\xca\xb5\x33\x76\x46\x79\x92\x31\x44\xd0\x94\xdc\xa1\x3c\x7a\x31\xaa\x43\x92\x03\xa7\x02\x49\xbe\x23\x87\x08\x06\x92\x75\x1e\xb4\xbd\x4d\x55\x97\xc5\x57\x6c\xc4\xa8\xda\xa3\xb2\x44\x2f\x6b\x13\xb8\x2e\x9f\x5a\xec\x76\x15\xae\xd7\x66\x9b\x46\x60\x44\xe8\xb0\xa6\x4b\xd4\xbf\x77\x68\x34\x79\x6b\xcf\x7c\x03\x3c\xf3\xcd\xe5\x8f\x5f\xf1\x0b\x55\x64\x57\x60\xb2\x8f\x67\xf3\xcd\x79\x76\x3f\x2e\xb6\xa7\x28\xed\x38\xc0\xb2\x14\xc5\x0d\xd7\xbc\x78\x57\x80\x37\x2c\xcb\xbc\x04\x57\xb5\x60\x79\xe6\xa5\x2e\xe6\xb7\x60\xdb\xe6\x65\xc6\xf4\x54\x49\x46\x8d\x55\x9a\xf9\x19\x3c\x2c\x61\xcf\x4a\xea\x62\x98\xe3\xf8\x2c\xef\xf2\xe3\x07\x86\x77\x3f\xc6\x78\x57\x3d\xfc\x78\x40\xf5\x1e\xb0\x0e\xdd\x2f\xde\xd8\xce\x6e\xb7\x5b\x34\xbf\x8d\x06\xd7\x9d\x05\xd8\x25\x69\x7a\xbf\x20\x5b\x74\x01\x92\x58\x8b\xd3\x20\xbe\x5f\xfc\xd5\xb2\x81\x97\xfa\xc0\x39\x85\xa9\xe1\x03\xc7\xf0\x0d\xe7\xe7\xf0\xdb\xe2\xc3\xc3\x8f\x1f\x58\x93\xc7\x0a\x03\xba\x9b\xd6\xfb\x12\xef\x68\xab\x3a\x78\xa3\x5b\x88\x6e\x11\x02\xf7\xd5\x00\xb6\x7b\x89\x76\xb6\x3a\x3d\x3e\xfc\xe1\x6e\x5c\x0b\xd2\x88\x1e\x08\x23\xd0\x48\x2d\x19\x4f\x80\xa8\xe1\x6b\x73\xc2\xb3\xd7\x42\x82\xa1\xe4\x15\xcf\x8c\xd4\x45\x59\xde\x59\x14\x10\xda\x87\x67\x59\x17\xd5\x5a\x58\x1d\x9e\xdb\xbe\xd2\xef\xb7\xf0\x03\x82\xec\x91\x19\xb1\x34\x2a\xff\xb6\x86\x98\x4a\x7f\xd0\x2b\x41\xd5\x15\xe4\x20\x1c\x50\xf4\x75\x00\x80\x4f\xfc\x8f\x63\x55\x27\xbb\x97\x56\xdc\xd5\x24\x4f\xcf\x2d\x35\x7f\x5c\x0e\xcd\x11\xaf\x98\x73\x06\x62\x64\xe2\x99\x89\x65\x3b\x3b\xec\xe8\x52\xf5\x8b\x1a\x2b\x8b\x2b\xaf\x2a\xc7\xec\x93\x6f\xc5\x90\x86\x3b\xb8\xa2\x02\xe3\x2e\x46\xc6\x37\x06\x92\x87\xa1\xb2\x7b\x0c\x76\xe1\x0e\x29\xa7\x83\x59\x16\xdc\x3e\xce\xc6\x32\x61\xac\x57\xda\x77\x04\x78\x8b\xf1\xce\x16\xac\x54\x07\x8f\x09\x07\x28\xf3\x1e\x67\xe7\x53\x52\x35\xd6\x99\xad\x2c\x9d\xb3\xd6\x6b\xcc\xdf\xc6\x6d\x5f\x39\x08\xf4\x6b\xda\xc9\xe5\xa8\x45\x1e\xab\xcc\x58\x53\xc0\xa1\xdf\xd5\x4f\x1a\x38\x72\xc1\x6c\x8b\x2b\x5c\x55\x49\x91\x57\x77\xa0\x2e\x67\x0d\xb6\x33\xde\x13\x95\x4e\x1b\xd5\x08\x5a\x33\x93\xff\xf7\xff\xfe\x7f\xc0\x15\xff\x2f\x84\x96\x35\x2f\x0d\x41\xc7\x07\xbe\x7f\x27\x1b\x5b\x8f\x16\x52\x3d\x9a\x51\x94\x13\xcd\xb2\xdb\x82\x93\xf6\xd9\x5a\x48\xcc\x56\x7b\xba\x45\xf9\x01\x9a\x50\x50\x6b\xd5\xad\x2e\x5e\xc7\x20\x8e\xe1\x37\x5c\x16\x43\x14\x1d\x47\xc8\xc1\x2a\x0f\xed\xb7\x29\x79\x1b\xdc\xf1\xae\x7f\x65\x83\xce\x0a\x33\x12\x51\x83\x62\xb7\x1a\x14\xd1\x54\x83\x3f\x65\x45\x63\x60\xd1\x70\xa5\xbd\x1f\x53\x55\x94\x73\x78\xee\x12\x5a\x05\x8d\xa3\xb8\x91\x4e\x6f\xa5\xa4\xdd\x41\x4c\xb2\x75\x07\x50\x4b\x7d\x5e\x05\x16\x77\x9f\xfb\x5e\x50\x0d\x1d\xd6\xcd\xdd\x08\x25\x44\x5b\xa3\x7d\xd0\xdd\xdc\xc9\xa9\xc5\xcd\xff\x95\x64\x87\xa2\xac\x51\x5e\x5f\xfe\x98\xe1\x38\x41\xe0\x6d\x6f\xab\xed\x5b\xde\xe1\xf9\xee\x7c\x75\xcf\x8f\xe9\xf9\xb7\xe1\x39\x6e\xc1\x59\x41\x2c\x4b\x2d\xf7\x45\x29\x0c\x15\xb9\xf6\x93\xd3\xbd\x14\xf1\x2d\xf7\xa6\xc9\x49\x13\x5e\x83\x27\xac\xcc\xc3\xc0\x90\x78\x39\x9e\xfd\xfe\x9d\xbc\xad\xc7\x4a\x77\x54\xe1\x9d\xf4\xa6\x9f\xbd\x85\x90\x5e\xcf\x6c\x24\x1b\xe6\xba\x90\x37\x73\xa7\x0e\xbd\x74\x2f\x29\x1a\xb9\x40\x8f\x55\x92\x49\xd6\x16\x45\x56\x14\x5d\xea\x58\xc4\xe1\x1f\xe2\x08\x9b\xd8\x67\x8f\x7b\xb8\xac\x14\x1d\x2a\xbc\x6e\xbf\x74\x86\x60\xe4\xf2\x4a\x15\x98\xdc\x44\x8a\x04\x15\x45\xdc\x8f\x34\xa9\x6a\x40\xd7\xa9\x79\x33\x54\x3e\xb0\x65\x62\xef\x8e\xc4\x9a\x09\x3d\xe9\x92\x22\xbf\xb1\xfe\xd7\xd3\x8d\x15\x99\xd4\xea\xc6\xca\x92\x3c\x6c\xa2\xae\x8a\xa7\x2a\x1f\x1a\x26\xae\x6a\xd0\xd3\x37\x0f\xcf\x97\x7a\xdf\xa6\xb2\x83\x45\x44\xb7\x3e\x97\x47\x1e\x26\x62\xaf\xe3\xae\x26\x6b\x29\x2a\xf2\x5d\x52\x32\xa1\x05\x6c\x7e\x24\xf9\xa3\x42\xb8\xd8\xa0\x97\xdb\xc9\xbf\x2d\xd2\x93\x99\xf0\xc0\xa1\xa5\x6f\x2d\x96\xe2\xac\x79\x34\x16\x21\x26\xd7\x95\x11\x5d\x2c\x0f\x3d\x52\x21\x7e\x18\xb6\xf2\xd0\x58\xef\xd7\x71\xf3\x4d\x61\x89\x4c\x05\xa3\x84\x62\xc8\xcf\xd3\x3a\xf0\x7e\xd7\x9f\xfe\x11\x5b\xdc\xd3\xa1\x35\x5c\xd1\xa7\x2e\x7d\x4e\x57\x88\x1d\x07\xcd\x2c\xdc\x0d\x1e\xc0\x35\xf4\x8a\xd4\xe7\x6a\x0f\xb6\xba\x0c\x45\x4a\x20\xed\xed\x55\x07\xb9\xc6\x30\x5a\xb2\x3d\xb9\xd4\xe5\xc3\x3b\x10\xa7\xe7\xde\x46\xe9\x42\x98\x97\xf4\xcc\x1b\xb1\xdf\x24\xa1\xa6\x60\x1e\x86\xb4\x0b\xc4\x35\xe3\x8c\x44\xdc\x24\xe9\x67\xde\x70\xd1\x58\x99\xf4\xed\x11\xab\xd1\xf8\x37\xe8\x8c\x10\x5a\x5e\x57\xcc\x6e\xe5\x96\xf4\x70\x30\xc8\x95\x9b\x2e\xb0\xd5\x80\x89\x55\xef\x4a\x5a\x8b\x0d\xe9\x61\x09\x9f\xcc\x2b\x58\x6d\x7b\x78\xe4\x90\x6e\x0e\x4f\x1c\xd7\x36\xc9\x89\x33\x8f\x5e\x91\x2d\x9f\xd7\x7b\xa3\xdf\xf6\x6f\xed\x3b\x89\x6a\xe4\x45\x8c\xfb\x5f\xd5\xbe\x78\x02\x3f\x90\x49\x35\xda\xbb\x04\x83\xd2\x1f\x62\x14\x4e\xf3\x3c\xbc\x07\x3c\x07\x6c\x85\xcb\x53\x12\xe1\x6a\x9c\x8c\x35\xa5\x14\x43\xe1\xa9\x17\x47\xaa\x84\x25\xbf\x7a\x70\x31\x07\xf6\xcc\x3d\x94\xfd\x1e\x38\xa0\x21\x0d\xbc\xba\x51\xb8\xf5\x2d\x85\x2b\x60\xf7\x66\x97\x4f\x7d\xc0\x99\xf8\x9b\x5e\x11\x05\xd1\x3d\x68\xf2\xf1\x73\xad\xcd\xe8\x81\xeb\x4a\x90\x86\xb4\x79\xdd\xbd\xb4\x53\x13\x70\x6d\x6a\xd2\xfb\x26\x35\x05\x48\x8b\xba\xac\x61\x83\xac\x6f\x94\x7b\xa1\xa2\x85\x2f\xcd\xb5\x77\x4e\x21\x4d\x57\x34\xa5\x07\xfd\xd2\x95\x63\xc2\xa2\x98\x5e\x9a\x44\xb2\xd3\xd1\xa3\x3e\x4b\xb0\x9b\x36\x7b\x8b\xd0\x46\x7b\xa2\xbe\xbd\xc7\xa2\xee\xad\x43\x4b\x46\x98\x0e\xa8\xaa\x12\xf6\x8c\xba\xff\xf5\x3e\x8e\xcf\xa2\x83\x14\x81\x8a\x2d\x85\x5f\x5c\xe1\x1d\x0a\x77\x4e\x70\x11\x71\x8d\xbd\x8f\xd5\xa3\x05\xcb\xd7\x2e\xa2\x22\x5b\x3b\x97\xdd\x8b\xf0\xb8\xee\x1c\x6f\x48\x3f\xb9\xde\xb6\x2e\x3a\xf6\xa8\x62\x37\x66\xc6\xe2\x2e\xb9\x84\xee\x2d\x9d\x6c\xef\x29\x0a\x5e\x18\x57\x4c\x26\xef\xa9\x28\xe3\x2f\x4b\x45\x26\x81\xf4\x45\xb3\x57\xb5\x1b\x4e\x86\x3b\x51\x90\xb5\x31\xbd\x7d\x75\x9b\x4d\x6e\x6e\xbc\x1c\x6b\xed\xba\x8d\xab\xdb\x5b\xa3\x2d\x8f\x57\x52\x74\x63\x6a\x07\x9f\xa9\xa1\xa2\xfc\xa0\x41\xf7\xd0\x41\x61\x35\x9b\xe4\x15\xae\x01\x35\xb1\x06\x04\x25\xf8\xa7\x76\xa6\x7f\xb7\xb9\xaa\xa8\x2c\x84\x1f\xa2\x9a\x84\xa0\x67\x95\x1f\x18\xee\xe2\x2d\x93\xfe\x31\x6a\x3d\x97\xac\xea\xc9\x9c\xa4\xc1\x95\x1a\x7f\xa0\x4f\x91\x47\x7a\xc0\x0a\xe8\xbb\xa1\xc8\xd7\xf7\x85\x16\x56\x59\x1d\xd2\xeb\xa0\xe8\x7f\x65\x38\xf3\x97\xf9\x67\xe4\xe8\x61\x36\xff\xe0\xa1\x25\xdb\x09\x34\x4d\xf3\xdf\x54\xe5\xf7\x4c\x55\x44\x49\xa3\x52\x50\x31\xb6\xbe\x8d\x62\x45\xb7\xca\xaa\xec\xb6\x69\x95\x45\xc9\xc8\x12\xcc\x2b\xce\xb7\x3a\xb9\xfa\x9c\xcd\xc9\x0c\x1c\x98\x55\x9a\x6f\x7f\x0a\x1f\x54\xc5\x66\x62\xc5\xf5\x55\xb5\x1d\x9b\xc2\x10\x95\xb8\xb5\x41\x97\x71\xcc\x68\xcd\x95\x34\x98\xa1\xc8\xee\x9a\x54\xd8\x12\x8d\x2d\xcc\xac\xe2\x7c\xab\xd3\x98\xd1\x8b\xab\xe7\x60\xc6\x9c\xd2\x7c\xfb\x93\x98\xa1\x28\x36\x17\x33\xae\xae\xaa\xed\xd8\x24\x66\xb0\x57\x45\xfd\x9b\x4a\x11\x47\x5a\xe3\xf1\xd6\x45\x04\x53\x8c\x4e\xd8\xaf\xc5\xa9\x80\x12\xfa\xfb\xde\xae\x28\x33\x26\xd8\x9b\x77\x3d\x1b\x0c\xe6\x86\x4b\x16\xfd\x2b\xa5\xd1\x7e\xc4\xa9\x2c\x6f\x83\x2e\xce\xfe\x15\xd8\x0a\xe5\x5b\x3a\xe1\xb9\xdd\x8d\xc7\xf7\xeb\x1e\xd4\xbf\xd8\x31\xfc\x4b\x9d\xb2\x03\xdd\x4e\x3b\xc1\x92\x10\xaf\x49\x96\x65\x79\x5c\xf2\xd0\x44\xa4\xaa\x51\x59\x4b\x16\x22\x2c\x4d\x36\x10\xa1\xf9\x2c\x4b\xf4\xde\xa5\x70\x9c\xd1\xbe\x15\xba\x8e\xed\x9a\x64\x94\xae\x63\x6e\x3a\xb6\xa3\xc4\xf4\x89\x63\xab\x5e\x19\x72\xb1\xef\xa7\xa4\x32\xef\x27\x84\x28\x83\xfc\x31\x76\xf6\x7d\x6f\xc5\x4f\x65\x9b\xd0\xc3\x99\x4a\x24\xfe\x2b\xdf\x52\xb8\x2e\xc9\xac\xfe\xbf\x19\xed\xdf\x19\xa3\xdd\x12\x5d\x2b\x20\x97\x6a\x47\x5e\xce\xdf\x6e\x2b\x4a\x94\xa3\xd7\x7c\x77\x3f\xf7\xed\x63\xae\x5e\x48\xbf\xf6\x55\xa3\xf8\x15\xef\x9f\xd2\xe6\x74\x71\xa6\x11\x26\x70\x06\x46\xad\x22\x43\xbc\x44\xb3\x47\xa4\xba\x1a\x8d\xe1\x88\x58\x25\x38\x3c\xb7\x2e\x87\x7a\x1b\xc8\xce\x43\x91\xdd\x39\x6d\x63\xc4\xc4\xeb\x66\x29\xc7\x8f\x54\x43\xc6\xb7\xc6\x79\xb8\x9a\xe8\xb5\xd2\x9b\x0f\xdf\x90\xd3\xd9\x64\x86\x7d\x77\xc2\xd1\xd6\x9b\x76\x98\x39\x14\x3f\xe2\xa5\xae\x54\xa7\x40\x17\xe7\x47\xe3\x2c\x79\x66\xd3\x4a\xa0\xaa\x2e\x4c\x34\xaa\xba\xb1\x32\xbb\x51\x85\x63\x2d\xbe\x90\x42\xb1\xab\x69\x5d\xf2\x8d\x38\xc6\x60\x31\xdd\x96\x33\x60\xb2\x06\x6b\x3b\x39\x52\xbd\x43\x19\xd6\x20\xe7\x02\x89\x60\x82\xd7\x61\xf4\xcc\x35\xd7\xf6\x42\xb5\x3a\x9c\x36\xd0\x72\x67\x63\x97\x0a\x88\x7e\xdc\x5c\x1b\x76\x63\xce\xa4\xa7\x0b\x67\xf9\xed\xbf\x68\xce\x32\x59\xbf\x41\x11\x4e\x5b\x3b\x9f\x0e\x71\x2a\x2e\x41\xa3\x69\xf5\x0c\x04\x59\x11\x68\xe3\x6c\x16\xd4\x81\x5e\x51\x7c\x3d\x44\x7d\xec\xbc\x9a\x7a\x48\x45\x4a\x79\x6b\x28\xe9\xee\xd6\xcc\x93\x64\x70\x2d\xf4\xcf\x22\x67\xc4\x50\x71\x3e\x80\x24\x58\x13\x0b\x7b\x47\x98\x44\x02\xad\x3f\x90\x3c\x53\xda\x49\xef\x25\xb0\x02\x0f\xd7\xd9\x3c\x4c\x98\xda\x76\xe4\x66\x96\x5d\x6e\x9c\x9c\xae\x30\xe0\x55\x13\x6d\x45\xb7\x38\x73\xa8\x0d\xcd\x35\x52\xf4\x52\x1c\x6b\xe6\x21\x4f\x39\x0e\x4e\x03\x3c\x24\x6e\xaf\x64\x6d\xaf\x70\xdf\xbc\x19\x1a\x49\x8e\x41\x20\x4b\x11\xf6\x46\x2c\x5e\x6b\x15\x22\x0f\x86\xea\xe9\x99\x8a\x9e\x34\x76\x47\x20\x48\x86\x5d\x53\xf5\x8a\x38\x26\xd5\x9a\xa9\x8c\x50\x1a\xbd\xf5\xcc\x37\xc0\x00\x8e\x79\x78\xbe\x9b\x5b\x9d\x57\x87\xf3\x46\x40\xf3\xd7\x5c\x1c\x32\x7d\x1e\x31\x7b\xc8\x22\xa9\x1c\xd8\x79\x4c\x74\x42\x7e\x8a\x2f\xdb\x75\x6c\x6e\x43\x14\x85\xe3\x18\x76\xd0\x2a\x14\x41\x0a\xc5\x13\xf5\x3d\x01\xc8\x5e\x06\xa6\xa0\x4a\xb2\x04\xa5\xd3\x58\x31\x91\x44\x51\x2d\xf2\xd0\xec\x88\xd9\xa7\x50\x9a\xc1\xa6\x9e\x7d\xe7\xd0\x81\x6c\x2f\xf0\x1e\x50\x13\x12\x81\x73\x72\x43\x0a\x71\xe8\x4e\x42\x73\xb2\x30\xeb\x94\x6b\xa8\x8b\xca\x4b\x21\x23\x78\x9c\xab\x5f\xcd\x1b\x53\x5b\x66\x37\x29\xcb\x3a\x97\x5c\x29\x37\x31\x37\x78\xa7\xb3\xd4\x82\x71\x91\x19\x25\x8e\x5e\xa2\x54\x30\x4a\xeb\x66\x98\xbb\x0c\xd8\xee\x4a\x5d\x0d\xd4\xe5\x4d\x86\xaf\x1a\x58\x0f\xa2\xdb\x5a\x52\x72\x6d\x75\xc2\x91\xb5\x05\x4c\x40\x07\x24\xfc\x52\xc3\xa2\x9e\xad\x07\x6e\xff\x38\x33\x4d\x7a\xcf\x5e\x1d\x9e\xb9\xa4\x66\xb4\x3d\xf6\x18\x80\x0c\xfc\x6e\xb8\x10\x62\x63\x8d\x99\xdd\x3f\x59\xa3\x04\xb0\x3b\x09\xd8\x27\x80\x67\x18\xde\xf4\x66\x44\xb1\xe8\xbf\x83\xbd\xa2\x98\x65\x4d\xa4\xaa\x79\x1e\xb8\xd4\xe2\x0f\x75\x49\x16\x31\x34\x94\x5e\x99\x0a\xcb\x2c\x45\xff\x7b\x93\x4c\xc8\x9b\x58\xbd\xe3\xe9\xb6\xe5\x42\x3b\xf4\x02\x32\x2b\xe4\xd0\x07\x06\xdb\xb3\xd3\x93\xa3\x01\xce\x91\x5a\xfb\xee\x2c\x38\xe1\xfe\x1e\x88\x9c\x5d\x99\xd5\x82\xb5\x48\x4f\x55\xb6\xd2\xe1\x6a\xf5\x6a\xf3\xc3\xce\x35\xab\x99\x1b\xff\xf7\x35\x37\xaf\xd0\x51\x67\x86\xb9\xdd\x34\x14\xf7\x55\xa0\x78\xaf\x02\xc5\xbf\x13\x99\x9d\xcb\x2d\x16\xd9\x02\x8e\xd8\x1e\xc3\x91\x21\x6e\x4c\x19\x86\x2b\x50\xcd\x51\xa0\x98\x6c\xac\xcd\x1c\x10\x08\xc2\x9f\xde\xf2\x9a\x5c\x6b\xf4\xd6\x92\x4a\x50\x92\xed\xf6\x38\x84\x49\xe3\x6f\x50\xc7\x30\xc3\x93\xe6\xa0\x33\xe1\xfc\xb3\x8e\x5f\x03\xd4\xfe\xfb\x81\x3c\x08\xf1\x43\xae\xae\xac\xd8\xfc\xaa\x5d\x7a\x15\xa4\xc1\xee\xbc\xaa\xb6\x7b\xa7\xa1\x74\x32\xfe\x5d\xb3\xe4\x9a\x0d\x7f\xe5\x6a\xdf\x0e\x65\x3f\x31\x40\x3b\x20\x03\xe4\xae\xde\xdf\xb1\xd5\x66\xbf\xae\x50\xed\xb2\xc1\xed\x87\xe7\x50\x6c\x57\xb1\x0c\x53\x8f\x3d\x78\x43\xce\x21\xc8\xab\xcf\x2e\x9e\x40\x39\x8e\xfc\xe6\x65\xc6\x03\x12\x81\xba\x39\xce\x1b\x0d\x73\xa1\x66\x9c\xd4\xa0\xd8\xab\x56\xea\x87\x26\x2a\xd2\xb4\x79\x62\xd6\xb0\x78\x9e\xa9\xbc\xae\x5c\x9a\xe0\x6a\x2f\x94\x47\x57\x5c\x52\x1c\x7a\x49\xe9\x39\x6e\x0a\xe7\x02\x8f\x39\x5f\x6f\x78\x31\x12\xe0\x3e\x1c\xd3\x87\x34\x91\x9d\xf8\x28\x1e\x0d\x0e\x6b\x16\xe9\x52\x82\xb4\x14\xdb\xa6\x25\xc4\x94\xe3\x94\x33\x9e\xac\x32\x1e\xcb\x24\xee\x12\xe8\x0f\xf2\x61\x90\x29\x34\xca\xe2\xa9\xa2\xf2\x73\x05\x7b\x69\xd9\x14\x55\xce\xaf\xd1\x49\xda\xe2\x23\x3a\xd0\x61\xd3\xd5\xdf\xb4\x5d\x23\x0b\x78\xcc\xf2\x6a\x4d\x9a\xce\xd0\xf3\x5b\x9b\x64\x2f\xad\x5d\x79\x77\xf7\x0f\xf7\x0b\xeb\x6c\x87\x13\x6d\x61\xe6\xed\xff\xad\xbb\x1c\x56\x52\xb1\x82\x96\xed\xad\x5e\x6b\x2c\xb3\x3a\x4e\x67\x77\x97\xa4\xe9\xc4\x00\xba\x72\x8a\x81\x6c\xa4\x59\x7b\x73\x69\x5e\x1a\xda\xfc\xb3\x4e\x7a\xe7\xe5\xdf\xff\x9d\x35\xef\xe5\x24\x6b\x91\xee\x8d\xa6\xf0\x1c\x98\x8a\xdb\xc6\xfc\xeb\x74\x62\x4e\xd8\x3e\x19\xa6\x55\x78\xe1\xa7\x50\x5e\xfb\x7c\x5f\xb2\x4a\x1f\x1b\x11\x4d\xe0\xa9\xda\xc8\x05\xb5\x09\x16\x71\xc2\x6b\x8b\x5e\x51\x8d\xc7\xb2\x78\x5a\x5b\x14\xbe\xea\x82\xdd\x5f\xb2\xa8\xb0\x93\x7f\x58\xd9\x49\xfb\x78\x91\xf3\x2b\x3d\x31\x95\x4c\x0e\xf8\x44\xfe\x81\x69\x6f\x6f\xc0\xf7\xec\x3d\x99\x64\x61\x42\xb8\x61\x58\x30\x6c\x24\xdf\x60\x6f\x0f\xde\x81\xd9\x03\x35\xbb\x05\xad\xae\xbc\x38\xee\x87\x09\xd1\xb8\x35\x50\x14\x30\x7b\x9d\x87\x58\x1f\x26\xc5\x72\x4d\x75\x25\xa5\xbe\xe8\x06\xd4\x84\x38\x3b\xd4\x2f\x02\x4e\xce\xc5\x54\xfe\x85\x72\x27\x77\x22\x58\xc1\x87\x78\xe3\x9e\xfc\x0a\x26\x49\xda\xb9\x6a\xe9\xfd\x50\x21\xd1\xce\x56\x2c\x1a\x47\x4b\xca\x14\xdd\x84\x3d\xbc\x3b\xf3\xe1\x41\x86\xe6\x13\x0e\xce\x7e\x27\x31\xe5\x64\x05\x87\xe2\x1d\xe0\x10\x3b\x46\x83\xf1\x0e\x5d\x39\xcc\x88\xf3\x7c\xa3\xcb\x86\x31\x37\x0d\xe3\xf1\x9b\xa7\xdd\x31\xc8\xf2\xe5\xb9\xae\xc3\xa5\x59\x38\xf7\xa7\xba\xcb\x3d\x08\x6a\xc3\xeb\x8e\xb8\x1f\x52\x63\xd0\x6f\x8f\x31\x42\x28\x0e\xab\x7b\x0f\x31\x29\x18\x77\x9a\x07\x16\x92\xc0\xdb\x96\x04\xe3\xda\x62\xf2\xcc\x8a\x21\x6e\xbb\xd4\xe9\xf8\xb6\x13\x4b\xd0\xfa\xb8\x91\x01\x6b\x9d\xcf\x34\x6f\xd9\x5f\x6b\x35\x46\xf6\x6a\x13\x5e\x20\x70\x90\x6b\x6b\x3b\xae\x34\x6c\x57\xc4\x54\x51\x76\x98\xf9\x34\xba\xaa\xdb\x6d\xd5\xc9\x89\xbf\x69\x3b\x0f\x03\x66\x37\x19\xd3\xf1\xb7\xf5\x7b\x9c\x01\xd5\xe7\xdf\x12\x23\x79\xb7\xdb\x6d\xa4\x05\x12\xa3\x1a\xdb\x5e\xe0\x5b\xca\x49\x7f\x1d\x7a\x37\x87\xa4\x35\x16\xed\xb6\x1f\x06\x8e\xb2\x2b\x8d\x13\xa7\x5b\x3a\xd2\x78\x50\xd1\x77\x63\x62\x03\xcd\x99\x3d\x81\x24\x02\x5d\xb8\x33\x69\xe7\x4e\x95\xe3\x06\x36\x51\xf4\xba\xcd\x3d\x0b\x18\x9b\xbc\x59\x45\x1b\xd2\xac\x2d\xab\x9d\x79\x5d\x0d\x8d\x9f\x57\xcf\x7c\xc3\x54\x70\xe4\x0b\x6f\xa2\x60\x0c\xcc\xbd\x28\x1f\x2a\xb2\x03\x94\x09\x1c\x50\x65\x21\x95\x67\x04\xf8\x0c\x71\x7a\x69\xce\x4d\x98\x38\x84\xd9\x9e\xff\x2c\x47\x8f\xa2\x34\xbf\x7f\x82\xcb\xc9\xa8\xc4\x41\x52\x5a\x40\x0b\xdf\x0d\x86\xaa\xc8\xe3\x07\x3c\xcc\x1e\x62\x55\x93\x7f\xd3\xe0\x75\xf0\xdb\x29\xe0\xf3\xf5\x13\xc1\x95\x7a\x45\xf3\xef\x01\x33\xff\x1a\x3e\x03\x5f\xc1\x73\x61\xbb\xe0\x54\x26\x05\x9d\xc0\xc3\x19\x30\x08\x17\x72\x07\x98\x7a\x81\xdc\x20\x9a\x94\xde\xc6\xdc\xa3\x86\xd3\xbc\x09\xe9\x60\x33\x0c\x1c\x27\x28\x91\x45\x51\x60\x80\x31\xc3\x32\x0a\xb4\xe1\x0a\xdd\x8e\x3b\xba\x96\x04\x04\xd2\x2b\x27\x06\x58\xa4\xbd\xc4\xca\xde\xa4\x3b\x7f\x2f\x62\xe8\x86\x2e\xb9\xf5\xc1\xc2\xdf\xd1\x98\x14\x11\xfa\xdd\xf2\x70\x6a\x67\x51\x12\x38\xa7\x24\xa1\x69\x0d\x0e\x78\xaa\x72\xdd\xd2\x3b\x82\x09\xae\x42\xff\x49\x15\xe7\x67\xa5\x48\x83\x97\x7b\x1c\x9e\x2f\x03\x97\xca\x7a\xe9\x02\x7d\xd4\xa0\xbc\x5a\xeb\x5c\x7c\xd1\xa5\x61\x2e\xc8\x1b\x2f\xa8\x60\x5b\xc4\x2f\x0f\xd5\xe9\xf1\x2c\x79\x5a\xd3\x1e\x05\x3c\xbd\xb7\xfd\xd6\x3c\x63\x70\x36\x84\xee\x40\x91\xd2\x36\xd9\x76\xf9\x37\x72\x12\xf6\x2a\x44\x46\xb2\x61\x38\xed\x81\x01\x56\x4c\x25\xed\x86\xf4\x8f\x4a\x6d\x23\xcf\x00\x88\x92\x32\x4a\xfb\xf0\xc9\xbd\x57\x67\x52\x12\x97\x7d\x02\xb0\xa0\xc7\xb9\x71\xc6\xa8\xc2\x46\x92\x1b\xc5\xb1\xde\xdc\x54\xa9\x8b\x3d\xae\xf1\xde\xac\x75\xeb\xbc\xd9\x25\x69\xba\xfe\x01\xef\x22\x37\x0e\xa7\x86\xf7\x38\xd4\xf1\x69\x87\x4c\x08\x11\x7a\x59\x43\xbb\xda\x28\xd2\xae\x6e\xc9\x99\x6e\xc9\x51\xb4\xe4\x5c\xdf\x92\x3b\xdd\x92\xab\x68\xc9\xbd\xbe\x25\x6f\xba\x25\x4f\xd1\x92\x57\x5d\xfe\xd8\x56\xe8\x9d\x4e\xcb\xc8\x72\x36\xdf\x2c\x2d\xd3\x7c\x73\x1e\xa0\xc6\x9a\x86\x8f\x77\xfe\xf2\xd6\x5a\x5a\x4b\xeb\x6e\xa3\xcb\xb8\x38\xce\x58\x6d\x72\x71\x57\xd6\x66\x19\x82\x47\xec\x7f\xbd\xce\x31\xb2\xbc\x45\x79\x8e\xcb\xe1\x13\xb8\x5f\x89\x72\x35\x54\x87\x50\x18\xb1\x43\x2a\x53\xbb\x21\x09\x6f\x63\x47\x1b\xd6\xc0\xa6\xee\xf4\xa4\x07\xfe\x20\x39\x11\xdb\x0c\x64\xcf\x42\x30\x3b\x93\x8b\xe3\x67\x8a\x90\x98\x15\x35\x8b\x30\x8d\x92\xdc\xc8\xd1\xa9\x0d\xd3\xc0\xcc\xb0\x86\xce\x4d\xc5\xfa\x7d\x84\x89\xd6\xff\xf3\x31\x05\xc7\x54\x6f\xa5\xa9\x14\x3d\xd9\x87\x67\x10\x0c\x64\x4a\xb6\x6c\x93\x39\x52\x4c\x69\xda\x3c\xab\xab\x20\x4d\x66\xaa\x85\x9a\x07\x1d\xf3\xa0\x4a\x71\x1e\xb8\x33\x7f\xa2\x3e\x53\x93\xc2\xa4\x6a\x42\x41\x3f\xb4\xcf\xb0\x26\x6a\x74\x17\xf8\xd9\xc5\xf9\xf7\xe7\xd3\xa5\x79\x3f\x06\x7c\x69\x41\x1b\x35\xa7\xef\xc3\x0a\x63\x5d\x57\x96\xd6\xf5\x5c\x59\x98\xf9\x0c\xd0\xa2\xc5\xc4\x0e\xe8\x2c\xf2\xe7\xd6\x6a\x9f\x93\xcc\x2f\xdf\x50\x0a\xce\xbe\x91\x12\x03\x74\xac\x0b\xd9\x20\xd4\xe1\xed\x36\x67\x0f\xa4\x6b\x82\x67\x15\x7d\x99\xaa\x4c\x8f\x89\xaf\x3f\xa8\xfe\xa0\x78\xb6\x34\x17\xfe\xb9\x51\x2c\x0d\xac\xf9\xb5\x9c\xbb\xd8\x74\x1f\x32\x45\x26\x5a\x8d\xb1\x39\x37\x8f\xa3\x8f\xa4\x9a\x38\x46\x01\x67\x94\xd0\xba\x36\x9e\x3f\x98\x21\x9d\x2f\x1b\x3a\xcc\x5d\x44\x3b\xea\x4e\xbe\xb7\xe7\x80\x2d\x05\x10\xb8\x0c\x86\x29\x9e\x98\xb4\x19\xa3\x4e\x32\x1a\xbc\xe3\x98\xd3\x1b\xcc\x3a\x3a\x6e\x93\xc8\xd8\xe2\x6f\x09\x2e\xdf\x42\x6b\x49\xfe\xb3\xbd\x25\x5c\x35\xc7\xe9\xd5\xb5\x14\x6d\xc6\xc7\x26\xec\x0d\x61\x0f\x75\xe9\x8a\x7a\x87\xb2\x38\xe0\xb2\x7e\x59\xd3\xa9\x00\x4c\x71\x3c\x95\xaf\xf0\xe9\xd8\x51\x6c\xc1\xa5\x23\x97\x2a\xfb\x3f\x6d\x03\x9c\xbf\xe9\xcd\xe8\xa9\xad\x36\xef\x05\x53\x7d\xc7\x32\xbb\xe5\x71\x7a\x93\x7b\x8f\xc5\xf6\xeb\x8d\xfb\xcd\x37\xaa\xed\xd0\xbe\x9e\xf8\x67\x6f\x57\x63\x7b\xfd\xa3\x00\x53\x04\xe8\x78\xea\x4d\xd5\xbd\xc1\xd0\xbc\xe3\xe1\x4f\x43\xf7\x4e\xc5\x43\xd0\xe1\x35\x2c\x06\x1d\xd3\xd4\x29\xc4\x6f\x75\xd7\x13\x8c\x88\x3b\x81\x4a\x48\x6f\x54\xc3\xad\xf8\xfd\xcc\x18\xbd\xef\x35\x17\x3d\xe9\x16\xd8\xa6\xca\xd7\x40\xaa\x12\x35\xb6\xb8\x7e\xc2\x38\xdf\xdc\x60\x05\x31\x7b\x7b\x8b\xa6\xb1\x33\xb9\x81\xce\x69\xf8\xd4\x79\xdb\x56\x98\x79\x98\x77\xc5\x67\x1d\xe6\x5d\xe9\x89\xf0\x11\x53\x60\xa6\x8e\x75\xd9\xcb\x6d\x87\xe6\x54\x79\x68\x0f\x74\x92\xae\xfa\xa1\xde\x3c\xea\x3f\x6c\x3d\x4d\x04\x19\xcd\xc8\x91\xa4\x63\x5f\x9b\x2d\x14\x9a\x03\xba\xaf\x65\x90\x66\xb2\x23\x67\xe1\x5c\xf1\x14\x2e\xf3\x3d\x2e\x42\x0c\x7b\x6a\x75\x35\xc7\x78\x96\xe3\x9e\xce\xdc\xbd\xca\xf9\x98\x5a\xeb\x1b\x9d\xcb\xcf\x5c\x89\xbe\xc3\xb6\xef\xf7\xe2\xb8\x29\x14\xef\x67\x03\xa0\x96\x7b\xe1\x7c\xf9\xce\x6b\x7b\x4a\x02\xd7\x9e\x0b\x96\x69\x5e\x7e\x20\x18\x7b\xc0\xe5\xc3\xae\x28\xe8\x6b\x62\x66\x1a\x47\x29\x77\x13\xa5\x52\x48\xc3\xb1\x51\xe2\xaa\x38\x96\x11\xd6\xa5\x37\x92\x49\x6d\x76\x9a\x28\x2c\x83\xe6\xde\x4e\x64\x9f\xdb\x43\xfb\xaf\xee\x68\x22\xd7\x2e\xfa\xd6\x57\x1a\xa3\x32\x0e\xf9\x46\xe5\x47\x5e\x7d\x3f\xfb\x7e\x83\xb1\x5b\x85\x85\xdd\xc2\xc9\x43\x7a\x78\x27\x19\x1c\x89\x1b\x91\xdf\x45\xcd\xc9\xea\xfb\x21\xd9\x46\xf2\xd4\xf0\xbb\xdc\x56\xec\x72\x5b\x73\xa6\xba\xb6\x35\x06\xae\x0f\x44\x2a\x99\xd1\x2a\x96\xe7\xe1\x5d\xef\xe7\xc3\x52\x3f\x03\x6a\x1c\x58\xcb\x15\x95\xfe\x6e\xbd\x83\xe4\x26\xdb\x54\x34\x39\xf4\x4d\x2d\x1d\x97\x3f\xd4\x45\x91\x6e\x51\xd9\xfa\xd4\xda\xd7\x59\x3a\x14\x79\x0f\x29\xf5\x88\x9f\x05\xe6\x8d\x72\xf6\xf9\x3d\x79\x46\xce\x38\xdc\x5a\x1c\x5e\xe1\xed\xce\xbe\xe2\x92\xa2\xef\xfd\xcd\x04\x9a\x11\xff\xe1\xbc\x5f\x7d\x09\x1f\x07\xa1\x8a\x22\x8e\x2c\xd7\x71\xf5\x68\x05\x50\x1e\x83\xb7\xed\x76\x25\xe3\x8a\xf1\x29\x89\xb0\x71\x48\x9e\x71\x6a\xd0\x7b\xc2\xda\xbc\x3b\x37\xd1\x80\x3b\x11\x95\xe5\x0b\x97\xdc\x0b\x5d\x45\x11\x6d\xbe\x48\x36\x42\xcd\x01\xc1\x5d\xab\x6c\x53\x42\x57\x7a\xac\xb6\x9e\x49\xf4\xa1\x55\x94\x8d\x89\x28\x3c\x2b\xf2\xc8\xde\x52\x7a\x14\x90\xf1\x5f\x8e\x17\x22\x65\x6b\x1f\x5f\x5f\x14\xc7\xcb\xd0\xf0\xab\xdd\xba\xcc\x46\xda\x25\x1f\xfe\xe1\x19\x78\x41\x3f\x37\x2d\x39\x72\x7b\x93\x7b\xed\x91\xd5\xa4\x81\xc3\xc0\x07\x8d\xad\xae\x0d\xe2\x58\xba\x55\x48\xae\x6e\x75\xc0\x07\xb8\x66\x9a\x26\x17\xae\x5e\x38\x9a\x2e\xad\xcf\x6d\xd5\x94\x88\xfe\x51\xd4\x47\xd3\xd0\xf0\xaa\xf3\x75\xad\x9c\x91\xc6\x6b\xf7\x64\x73\x63\x1d\x1b\x21\x67\xcc\x5f\xb8\xe0\xf8\x42\xdf\x9b\x11\x38\x43\xaf\xc6\xf3\xaa\xd3\x3d\xe8\x79\xad\xdb\x36\x72\xb2\x28\x34\xac\x62\x2a\xdb\x61\x41\xb3\xc3\x08\xba\x71\x99\x1a\xd5\xe7\xc8\x3c\x6a\xbb\xc5\xdc\x23\x29\xb0\x86\x3d\x3d\xdf\x61\x1c\x93\x2a\x62\x68\x71\x15\x5e\xd6\xb2\xcf\x26\x1b\x67\xf3\x30\x58\xaa\xe7\xe3\x4c\x7f\xae\xaa\x00\x0e\xcc\x4f\x79\x6b\x1d\xab\xdf\x98\xad\x60\x21\xe4\xf6\xb1\xc9\x13\x3a\x45\xd8\x31\x05\x46\xf2\x3e\x02\xa8\x8f\x2c\xc0\x24\x0d\xa6\x7a\xc7\x76\x33\xdf\x10\x11\xe5\xe2\x5b\x8a\xc5\x5f\x35\x6b\x6f\x89\x12\xca\x8b\x86\x77\x1d\xe8\x07\xd4\x7a\x01\x42\xb2\xc2\x81\xc0\xdf\xf4\x24\xbd\xc0\x58\xb1\x31\x32\x25\x31\xd3\x2a\x76\x56\x57\x7e\x8c\x29\x57\x46\x52\xd2\x97\x6f\xc9\x84\x14\x30\x60\xa4\x42\x1b\x2a\x45\x0a\x1a\xa0\xaf\xd0\x52\x90\x81\xe3\x7e\x65\x8d\xd6\x1d\xae\x26\x97\xc9\x0e\x7e\x11\xdf\x1a\xda\x31\x1c\xd3\xc6\xdc\xac\x57\xab\xe9\x0e\x92\xe1\x05\x0a\xe0\x6c\xe2\x8a\xd5\x04\x2d\x9d\x28\xc3\x82\x23\xe8\xa7\x79\x60\x4e\xc3\xa4\xd1\xb2\xdb\x0e\xa5\x00\x7a\x7e\x7c\x1f\xd1\x45\xde\xc8\xaa\x73\x3d\x61\x3d\xeb\xdf\x73\xdc\x0d\x3a\xa5\x72\x93\xa4\x81\x8c\xa6\x26\x0a\x0d\x62\x02\x4d\xcc\x59\xbb\x03\xee\xa4\x39\x7e\x01\xfa\x8a\xc2\x92\x8d\x15\xe4\x03\xa0\x33\xf0\x92\x6b\x35\x7d\xcd\x16\xd9\xd8\xf1\x66\x35\x24\x4e\xb6\xb9\x81\xee\x4a\x74\xf8\x37\xd5\x27\x0e\xe7\xe4\xd7\x90\xfc\xcb\xc7\x91\x31\x69\x0c\x43\x39\xdf\x46\x7e\x1f\x07\x81\x1f\xe5\xe8\x44\x09\xc3\x35\xe7\x54\x91\xa3\xf5\x99\x53\x3b\xb1\x59\x00\x75\xf7\x6d\x18\xe2\x8c\x73\x08\x4c\x1d\x34\xcd\x99\x44\xf9\xd5\x56\xe0\x49\xa7\xb9\x0a\x49\xcf\x82\x7c\x83\xb5\xd5\x3d\x68\x9c\x5a\x3b\x24\xbf\x1e\xbb\xae\x3e\x63\x57\x9a\x57\xbd\x43\x60\xf6\xd8\xc0\xf9\x59\x5f\xbb\xdd\x81\x4e\xfe\x5f\x71\x71\xa6\xad\x11\x10\x2d\x35\xd5\xac\x83\xc5\x39\x8c\xea\x9d\x16\x59\x38\xdb\xf4\x2f\xaa\x2e\x70\x57\x62\x4c\x49\xd4\x2e\x49\x6b\x2c\x47\xb8\xd5\x68\xe4\xe5\x5a\x8d\xaf\x43\x5d\xe4\x10\x0e\x83\xbb\xa3\xbc\x75\x50\xd4\x9e\xcf\x32\x44\xde\x2f\x62\xeb\x82\x51\xd9\xea\x52\x9d\xbc\xe6\xec\x68\x0f\xc7\xda\x38\xa4\x28\xc2\xfb\x22\x8d\x7b\x25\x72\x7b\xea\x5c\x05\x96\x99\xe0\xbe\x26\xc4\x5f\x02\xe4\x15\x80\x98\x32\x4a\xe9\x3f\xca\xa1\xce\x58\xd5\x6b\xad\x7c\xfd\xa2\x78\xde\x0f\x03\x9c\xdd\x89\xea\xb9\x06\xe9\x5b\xf6\x41\xb3\xf6\xc3\x90\xd1\x0d\xd7\x4c\x20\x0a\x00\x85\x6b\x02\x03\x61\x6c\x51\xf9\xf0\x4e\xb0\x6f\xdd\x15\x65\xf6\xf0\x6e\xc8\xb1\x0e\x79\x4b\xad\x54\x81\x03\xae\xf1\xac\x38\x68\x51\xe7\x81\x51\xb3\x0d\xf4\x52\x89\xd7\x6f\x7b\x10\x6d\x94\x9f\xbc\x51\x1f\x90\x42\x23\x3a\xd7\x97\x0a\x56\x48\xc6\xc4\xae\xb5\xe5\xf8\xb2\x29\xd7\x51\x1b\x33\x7d\x7a\xa2\xc6\x5b\x9b\x3b\xbd\x1d\x32\x89\x9b\x80\x67\x21\xb8\xae\xc0\x13\x4a\x8f\xd8\x68\x78\x7e\xc1\x53\xeb\xa0\x03\xfa\xb2\x52\x8b\x8a\x21\x4b\x75\xf5\x7e\x52\xa7\x5a\xd5\xbb\x69\x95\xfa\x40\xcf\x83\x7e\x29\x65\xb8\xfd\x01\xed\xca\x1a\x31\x9d\x4c\x41\x2b\x44\x1d\x6d\xe7\xbb\xd5\x10\x45\x99\xe0\xbc\x5e\xef\x8b\x32\xf9\x56\xe4\x35\x4a\x85\xdc\x38\x29\x99\x13\x8e\x75\x89\x4f\xb8\xac\x70\xaf\xaa\xe0\xb2\x8a\x27\xa3\xcd\x1e\xc9\x7a\x4d\x25\xb9\x40\xf2\x04\xc7\x3d\x03\x84\x55\x99\xbc\x33\xa6\x98\x5e\xa9\x39\x2c\xda\x25\x38\x8d\x2b\x5c\x0f\xb1\xa4\xcd\xe1\x35\x7a\x9c\x4f\x44\xea\xb6\x44\x2f\x4a\xff\xbe\xbe\xb6\x14\x8b\xf4\x76\x0e\xb1\x12\x2d\xbf\xe6\x52\x2e\xd1\x4d\xf2\xc4\xa5\x81\xb2\xa8\xc3\xed\x87\xd2\xb4\x78\x6a\xee\x36\xc3\xdc\xf6\x1e\xaf\x2d\x10\xe3\xfc\x45\x9b\xd9\xdc\xb2\xb4\xf9\x3c\xd9\xd0\xee\x72\xae\x83\xba\x22\x62\x2f\x75\xa5\xfa\xae\xea\x4a\x08\xfd\x9d\x43\xeb\x54\xe1\x7f\xf9\x80\x8f\x8e\x84\xac\xaf\x44\x5a\xe9\x4a\x53\xe6\x42\xb5\xd2\xa1\xd4\xe8\x10\x79\x46\xe2\x82\x2f\xaf\xad\x49\x45\x37\x37\xd4\xa3\x42\x9d\xf7\x8a\x33\xed\xba\xee\xde\x54\xbd\xed\xf3\x4d\x95\x9b\x8e\xab\xe5\x51\xdf\x2f\x3f\x54\xde\x62\x66\xf1\x79\xea\x20\x3f\xe3\xe3\xbb\xcd\x90\xe2\x55\xb9\xaf\x1b\x2c\xa7\xae\x45\xef\x9b\x16\x5a\x12\xda\xcc\x18\xf2\x5c\x3a\x3f\x7b\x6e\xae\x3b\x08\x64\x11\xd8\x28\x6a\xfc\xca\xe3\xf9\xa5\x86\xcc\x5d\xae\x66\x1f\xb3\x57\x36\xc1\x99\x23\x00\xea\xf1\x5f\x36\x41\x40\x3c\x03\xd0\x87\x6f\x98\xa1\x44\x53\x9d\x89\xfd\x71\x37\x56\x4a\x38\xf1\xc6\x0a\x76\x87\xde\x58\x21\xfe\xdc\x1b\x2b\x27\x9e\x45\x5d\xb9\x14\x55\x7b\x23\xc3\x55\x85\x1e\x31\x38\x40\xf6\xde\x93\x09\xde\xf4\xa5\xaa\x63\x14\xe1\xaa\x1a\x96\x53\xdc\xb0\xbb\x80\x09\xea\xcc\xb6\xea\xb4\x3a\x62\x4e\xd9\x66\x32\xe6\x14\xed\x42\xc4\x4f\x14\x95\x95\x09\x4b\x98\xe1\x7f\x0e\x1f\xc6\x75\xc3\xcc\x8b\x3a\x89\x30\x4c\xf2\x5d\xd1\x57\x69\x12\x07\x6d\x4e\xeb\x7c\x9b\x40\x13\x84\xa5\xe7\xa7\xa0\x7e\x91\x43\x3e\xf7\x79\xd3\xaa\xd2\xa5\xca\x70\xa1\x7b\x8a\xa0\xcc\x53\xbe\x6b\xb8\xc2\x9e\x6e\x2a\x22\xb5\xd4\x42\x53\xae\x73\xd5\x84\xfe\x51\xe2\xf4\xdd\xfd\x1e\xa7\x87\x2f\x4a\x88\x6d\xc9\x76\xf4\x0f\x8c\x46\x74\x60\xe5\xa7\xda\x6d\xfa\xcc\x70\xfc\x31\x64\x59\xed\x16\x17\xfb\x7c\x2d\x10\xb6\xb1\xc7\x60\x28\x1c\x49\xd6\x31\xac\xd1\x63\xc5\xe2\x93\x33\x6f\x91\x46\x86\x72\xf4\x88\x33\xc2\xaf\xaa\xe1\xe8\x9c\x68\xbf\x06\xa8\xde\xbd\x65\x1c\x4f\x81\xa2\xc5\x54\x8b\x38\x7d\x73\xd0\xdf\xac\x46\xe9\xe9\xe4\x4d\x62\xb2\xa4\x92\xb2\xce\x63\xf5\x15\x85\xfb\xbd\xd2\x78\x2e\x17\x4a\x29\xe3\x4a\x89\x08\x32\x2f\x2c\x8a\x58\x67\x7e\xec\x87\xf1\x2a\x72\x99\x18\x20\xb2\xc7\xf9\x85\x66\xcb\x29\x46\x7f\xe7\x2b\xf4\xe1\xee\xa5\x54\x99\x28\xf2\x21\xf8\x85\x44\x3a\xb4\x11\x1c\xab\x63\xb8\xa3\xb2\xe8\xee\x56\xad\x54\x9e\x72\x6f\x2c\x87\x4f\x7f\x78\x1e\x9e\x79\x96\x5c\xe7\x45\xf3\x8d\xcf\xeb\xee\x8e\x8d\x1b\x3b\x25\x95\xfe\xaf\xbd\xa5\x7f\x0b\xdc\x9a\xc2\x01\xc5\x9d\x5e\xb6\x0a\x22\xcb\x8f\x92\x7c\xdc\x59\xdb\xbf\xd9\xc4\x7f\xb3\x89\xbf\x47\x36\xf1\xdf\x1c\xe1\x7f\x21\x8e\xf0\xdf\x3c\xd3\x6f\xc3\x33\xfd\x62\x2c\x8c\x8e\x3d\x99\xf2\xd9\xa3\x32\xa9\x10\xf5\x03\x3e\xce\x86\x07\x5a\x74\x2c\xc9\x61\xf6\x91\xfc\xf8\x0d\x83\xf3\x34\x2b\x6a\x31\x89\xcc\x4c\xfe\x4a\x38\xaa\xdb\xf7\x75\x5c\xa4\x52\x2a\x27\x67\x3e\x98\xf8\x08\x7f\x1d\x79\x55\x65\xb5\xd4\x90\xcf\xbb\xfa\xc1\xfe\xaf\xfc\xcc\x5f\x1b\x7b\x6b\x88\x2d\xc3\xd8\xb0\xcd\xc4\x39\x9c\xa1\xcf\xe1\x79\x1c\x4f\x54\x2c\xf1\xc0\x8b\xa0\x22\xdc\xd8\xa5\xc3\xee\x33\xaf\x44\x71\x54\xcf\x7e\x04\x66\x6a\xe0\x4b\x79\x74\xff\xf7\x9b\x48\xf1\x98\x6d\xb4\xa6\x68\x7a\x46\x55\x89\xea\x27\x17\x63\x9d\xd5\x04\x45\x9c\xc5\x2d\x9e\x8b\x03\x8a\xc8\xb4\x42\xd7\xe3\xd7\x20\xc9\xd0\x23\x5e\x1f\xcb\xf4\xed\x1f\x62\x54\xa3\x35\xfd\xfd\xa1\x3a\x3d\xbe\x7f\xce\xd2\x4d\xb4\x47\x65\x85\xeb\xfb\xbf\xff\xef\x9f\x8c\x70\xf9\x63\x75\x7a\x04\xa7\x04\x3f\xfd\xb9\x78\xbe\x5f\x98\xc0\x04\x96\x19\x00\xcb\x72\x17\x80\x2e\xf5\xfd\x82\x2c\xfb\x02\xb0\xd5\x6e\x7f\x3d\x67\x69\x5e\xdd\x2f\xf6\x75\x7d\x58\x7f\xf8\xf0\xf4\xf4\x04\x9f\x1c\x58\x94\x8f\x1f\x6c\xd3\x34\x49\x4b\x8b\x87\x1f\x0f\xa8\xde\x83\xf8\x7e\xf1\x57\xd7\x85\x9e\x0b\xcc\xcf\x26\xb0\x3d\xe8\xaf\x7e\x0e\x03\xe8\x5a\xa9\xe5\xc3\xc0\x01\x2b\xe8\xfb\x3f\x3b\x1e\x74\xbc\xcf\xac\x98\xb5\x82\xce\xb7\xc5\x07\xae\xba\x6f\x43\xc7\x06\xe6\xc9\x5d\x41\xcb\xfb\x44\x4b\xfd\xec\x98\x30\xb4\x3e\xdb\x01\x0c\x81\x6b\x42\x37\x38\xf9\x36\x5c\x05\x14\xa6\x4b\x60\x86\x3f\xfb\x2e\xb4\xac\xbd\x15\xc0\x20\x3c\x59\x21\xb4\x6d\xd6\xa0\x41\x1b\x24\x1f\xaa\x46\x2c\xcb\x81\x96\x9b\xd2\x36\x0c\xd6\x59\xdb\x83\x81\x93\x1a\x14\x32\xad\x7c\xf2\x2d\x18\xd8\xa9\x41\x1b\xb7\x7c\x68\x7a\x14\x12\x19\xf4\xc3\x1f\xee\x14\x04\xe7\x84\x4b\xdd\xfb\x20\xe6\x18\xcd\xf6\x64\xa7\x99\xa6\x6a\x4f\xf1\x97\x09\xd9\x88\x5f\x8c\xb1\x1b\x0a\x26\xf0\x1a\xa6\xe4\xfc\x3d\x08\xd3\xa2\x86\xcf\x21\x46\x30\x0f\x2d\x1e\xc1\x2e\x49\xd3\xfb\xc5\x1b\xdb\xb1\x3c\xdf\xf9\xe9\x27\x1e\x55\x2c\xe8\x01\xcb\x84\xfe\x09\x5a\x9e\x1f\x99\x06\xb4\xac\xc0\x80\xa6\xeb\x18\x24\xc1\x80\xa6\xc3\xbe\x7d\xb2\xa0\xf7\x2d\x33\x81\xf9\xb3\x05\xbd\x7d\x78\x22\xab\xff\xc9\xb2\x7e\xb6\xa0\xe3\xba\x1f\x2d\x0b\x40\xdf\xb4\x09\x24\xc7\x75\x80\x09\x56\xd0\x73\x1c\x60\x7e\xb2\xa0\xeb\x07\x1f\xa1\xef\x05\x80\x60\x3a\x2d\x64\x02\x5a\xe9\xb4\x82\xae\x65\x47\x26\x80\x81\x6b\xd3\x12\x34\x19\xd0\x2a\xec\xfb\xde\x86\xab\x95\x77\x32\x2c\xe8\xb1\xf6\x59\x7f\x56\xd0\x8a\x0c\x68\x5a\x04\x20\xed\x9f\xe9\x76\xfd\xa4\xdd\xa3\xc5\xbe\x65\x21\xf9\x03\xcc\x93\xc1\xc6\x06\xc8\xd8\xc8\xd0\xc8\x4f\x92\x45\xc7\xb5\x6a\xc6\x35\xb3\xd4\x6f\x31\x6e\x36\xe5\xdf\x32\x23\x04\x26\x1b\xdb\xe8\xf0\x49\x47\x57\xd0\x9e\x5c\x4e\xba\xe4\xdf\x16\x14\x3b\x8c\xf2\x98\xe2\xfb\x45\x5e\xe4\x84\xdd\x11\x36\xaa\xe5\x42\x17\xb8\xd0\xfb\xe4\x41\x9f\xb4\x1b\x3a\x80\xc0\x85\xa6\xe5\x1b\xd0\xa2\x20\x4f\x96\x09\x6d\x9f\xb6\x67\xba\x2b\x68\xd2\x36\xc9\xcc\xd1\x3f\xfb\x10\x86\x11\xab\x07\x68\x92\xe5\x93\xea\x8e\xf3\xb3\x4b\x86\x4c\x66\xc2\x74\x57\x24\x3d\x68\xfa\xc7\x96\xcf\x24\xe3\x8f\x60\x18\xba\x74\xea\xfc\x66\xae\x7c\x36\x53\x5d\x9b\x00\x86\x96\x01\x03\xab\x49\x37\xba\x12\x4d\x87\x69\x7d\x92\x6a\x10\x00\xf4\x0b\xcd\x66\xad\x7f\x74\x81\x43\x01\xbb\x14\x84\x03\x3c\xe8\x03\xda\xe5\xe9\x99\xb1\xa1\x07\x42\x68\x7b\x9f\x2c\xf3\x64\x41\xcb\x73\x3f\xd9\xd0\x13\xa9\x9c\x65\xc2\x95\x6b\x83\x10\x06\xa6\x97\x42\xd3\xb4\xc8\xff\x86\x0d\x43\x3b\x00\xe4\x33\x34\x60\x68\x06\xe4\x23\x04\x36\x34\x6d\x43\xfc\xb0\xf8\xdc\xb6\x4e\x70\x22\x40\x18\x0d\x7c\xec\xe9\x60\xc3\x60\xf9\x1c\x83\xd5\x05\x8a\x1f\x78\x09\x0e\xa7\xe8\xdd\x2c\x0e\xfe\x35\x28\x1a\x47\xd0\x56\x57\x1c\x73\x1d\x49\x33\x4d\x3f\xfc\xe9\xa7\x05\x9d\x6d\x0f\x06\x81\x05\x56\x9f\x1c\xe8\xd9\xc1\x67\xe8\x38\x04\x71\x43\x87\x2c\xb1\x67\x07\xd0\x0f\xc8\xce\xb2\x5d\x37\x35\x1c\x68\xad\x1c\xe0\x42\x8b\x6c\x80\xe6\x50\xbf\x5f\x40\xc7\xe1\x4f\x96\x46\xd1\xdf\x4f\xe8\xaa\x8f\x84\x2a\x84\x6f\x9d\x9a\xcc\xe1\xad\xa1\x0d\xc4\x23\xc5\xed\x57\x59\x93\x74\xfe\x3d\x6d\xb1\x99\x9b\x8f\x10\x97\x3b\x42\x9c\x6b\x39\x0b\x18\x04\x2b\x60\x7d\xb2\x60\x18\x19\xd0\x75\x56\x84\x16\x84\xd0\x21\x48\x0a\x43\xc7\x39\xad\xc8\xac\x93\x4d\xe9\xfa\x0e\x74\x7c\x8b\x24\xb2\xac\xbd\x65\x42\x37\x62\x75\x00\x0c\x0d\xe8\x04\xe4\x33\x74\x9c\x9f\x1d\xf2\xf9\xd1\x72\x80\x03\x9d\x00\x58\x36\xf4\x9d\x15\x70\xc8\x17\x1b\x38\x9f\x7c\xe8\x78\x08\x7a\xd0\xa3\xa4\xd4\x32\xa0\x6b\x1b\xd0\xb6\xc3\xcf\x2e\x0c\x42\x60\x7d\x5b\xd0\x3b\xf7\x57\x4c\xd1\xe1\xcf\x7f\xfe\xe8\xfe\xc5\x5e\x34\xf8\x41\xb8\x5a\x0d\xaf\x30\x5c\x25\xa5\xd4\x4a\x29\x37\x51\x85\x67\x19\x15\x79\x8d\x09\x5f\x64\x33\xfa\x71\x7f\xdf\x7c\xcc\x1a\x76\x6d\x24\x09\xfd\x53\x6a\x07\x67\x0d\xde\x52\x87\xb9\x2d\x76\xb1\x1f\x8d\x41\x33\x34\x3d\x9c\x35\x4e\xfa\x84\x7b\x83\x78\xfb\x68\xea\x5c\x3d\x65\xe3\x12\x27\x66\x40\x25\x76\x58\x37\x64\x1a\xba\xde\x72\xfa\x11\x33\xbb\x2b\x33\xe8\xc6\xd2\x18\xe3\xb4\xcf\x24\xa1\x15\x72\x63\x26\xc3\x1c\x7a\x59\x5d\x97\x45\x8d\x6a\xfc\xd6\xf5\x62\xfc\xc8\xbb\x9b\x14\xd2\x2f\xd3\x02\xab\xa1\x6c\x47\x21\xb9\x1e\xc6\x3e\x9b\x01\x59\x90\x11\x29\x32\xce\xad\x2f\xa9\xd7\xe6\x28\xfd\x79\xe4\x80\x79\x40\x1d\x6c\x3b\x6b\xd1\x93\xe5\x9f\x08\x4d\x8e\x9e\xef\x17\xc1\x02\x44\x2f\xf4\x4f\x49\x3e\x3f\xc8\xf4\xdb\xff\x53\x10\x84\x3e\xa3\xdf\x3e\xb4\x3c\xe0\x42\x3f\x08\x7e\x76\xa0\x4d\x48\x06\xf4\xfc\x93\x05\x5d\xd7\xfd\xc6\x32\x2d\x0b\x3a\x81\xfb\x33\x21\x09\x2c\xd3\x83\xa6\xed\xe8\xee\x03\x03\x84\x55\x1d\x92\xfe\x55\xe1\xd5\xaf\x51\x83\xbc\x0a\xc3\x6f\xf6\xcb\xe3\x2f\xe4\x7b\x23\x98\xb9\x60\x1d\xfd\xf6\x08\xeb\x40\x8e\x43\xcb\xfb\x1c\x42\x7b\xe5\x40\x3b\x0c\x10\x61\xe6\x08\x03\x4a\x3e\x29\x60\xc2\x40\xd1\xef\x70\xe5\x07\xe4\xff\x26\x99\xb2\xb0\xa1\xff\xd9\x83\x81\x05\x3c\xe8\xad\xbc\x61\x5d\xa3\xa9\xfb\x99\x80\x27\xfc\x5a\xe0\x22\x19\x8c\x41\xc0\x04\x40\xdb\x6e\xea\x40\x7b\x45\x8e\x6d\xdb\x6e\xf9\xb0\xe6\xb0\x37\x75\x5c\x99\xc4\x06\x71\x17\x3f\x7f\x4e\xd0\xdf\xdf\xb7\x16\xef\xbb\xd4\x6d\xaf\x8c\xa5\xab\x21\x96\xce\x62\xec\x58\x91\xf5\x73\x9a\xe4\x5f\x55\x05\xad\xd5\x6a\xf5\x81\xe6\x2e\x1e\x7e\x8c\xf1\xae\x6a\xd0\x3a\x89\xef\x17\xa8\xe1\xff\x40\x00\xad\x95\xff\x39\x80\x5e\x40\x58\xf3\xc0\x4b\x0d\xe8\x87\x8e\x61\xc3\x95\x03\x6c\x68\x07\x9e\x61\xc1\x55\x40\x7e\xaf\x7c\x03\xda\x9e\xfb\xd9\x03\x84\xf9\x00\x84\x05\x21\xfb\x62\xe5\xc3\xd0\xb1\xc9\x4f\x2f\xa5\x15\x00\xad\x40\xa0\x00\x02\x85\x91\x1a\xd6\xfc\xb1\xc2\x1c\xc1\xfb\xd3\x47\xd7\xb4\x17\x80\xf6\x70\xbd\x2f\xf1\xee\x7e\xf1\x03\x12\xb0\x15\x9f\x70\x5e\xc4\xf1\x38\xb6\xae\xfe\xff\x80\xad\xd3\x2a\x60\xe1\xd8\x64\x6f\x0e\x14\xda\xf9\xd7\x16\xa9\x84\x32\xee\xfa\x20\xbc\x92\xc2\x92\x6b\xa9\xbd\x22\x74\xd2\xb4\xfe\xe4\x40\x77\x45\xd0\x8a\x7c\x36\x04\xce\x82\x1e\x70\xd1\x20\xc3\xb0\xa0\x1d\x58\xc0\x86\xfe\x6a\x15\x59\xd0\x73\x03\xc2\x5e\x13\x52\x6d\x9a\x21\x21\x97\xb6\x0f\x5c\xe8\xac\x08\x2e\xfb\xab\x15\x25\xa0\x04\x99\x9d\x80\xa4\x84\xae\x6f\xd8\xd0\xf6\x43\x83\x2b\xf3\xad\xb9\x0f\xf9\x30\x50\x74\xc4\x25\xfd\x88\x08\x25\x36\x43\x1f\xba\x2b\x8f\x5c\x38\xe9\x05\xdb\x0e\x2c\x06\xe0\xa3\x0b\x6d\x9b\xd0\xe7\xc0\xb1\x81\x0d\x03\x9f\x6c\x01\xdf\xa6\x42\x8a\x20\x04\x6e\x44\x3b\x41\x7f\x91\x9c\xd0\xf5\x01\xed\x04\xeb\x28\x68\x3a\x11\x82\xf0\xa3\x07\x4d\xcf\x05\xe4\x12\xeb\x84\x21\xf0\xa1\x4f\x8f\x02\x37\xa2\xbf\x49\x63\x7e\x00\x68\x19\xc3\x05\xa1\xe1\x92\x9d\xe6\xfa\xc0\x24\x97\x71\xcb\x26\x0d\x38\x0e\x08\x81\x6b\xb0\xfa\xb4\xbc\xc1\x60\xba\x46\x08\xdc\x6f\x19\x5c\xf9\x9e\xe1\x42\xdb\x43\x16\x3b\xa6\xa8\x70\x24\x30\x6c\xc0\x7e\x9b\xe4\x9e\x62\x06\xc0\xe6\x4f\x93\xe0\x63\x18\xae\xfc\x99\x07\x0a\xc7\x32\x84\x03\x67\x5c\x83\x47\x31\xe3\x0a\xfb\x99\x2a\xf6\x2b\x74\xdf\x37\xe8\xa9\x67\xe8\xa3\xaf\x52\x10\x2a\x75\x6b\xaf\x7d\xb8\x5c\xbb\x1b\x43\xb8\xf2\x80\xf9\xd9\x22\x9c\x4c\xe8\x01\x07\x06\x0e\xc1\x43\x13\xb8\x30\x70\x82\x14\xae\x6c\xd7\xb0\xa0\x45\x37\x1e\xc5\x2c\xc7\x5d\x7d\x93\xd8\xd8\x1e\x17\xbe\xc3\x13\xe1\x28\x57\xfa\x7b\x9e\xa4\xc6\x29\x18\xbf\x63\x38\x81\x3b\xe7\x34\xa6\xdf\x47\x57\x7a\x3a\xba\xc6\xae\x66\x96\x89\xcb\x35\xf6\x27\x23\x16\x19\x73\x4d\x1f\xae\x57\xdf\xff\xaa\x4a\xf1\xd7\xd8\xa2\xe1\xed\xc8\xe7\x12\xc2\xef\xbb\x9f\x2d\xf2\x49\xb1\xce\x87\x2b\xc7\xa7\xcc\x96\x0f\x98\xe8\x97\xe4\xb0\x4f\x13\xb8\x4d\x0e\x2b\x65\x82\xb0\xc9\xa1\x50\x00\x81\xe0\x73\xf9\x21\x68\x72\x46\x36\xf5\x6c\x6b\x20\x95\x45\xc0\x6b\xcc\xde\xaa\x9f\x3d\x5b\x62\x40\x56\xc0\xbe\x45\x28\x4a\x6f\xdf\x8a\x63\x8d\xce\xb8\x09\xcc\x7d\x78\xb2\x3f\x99\xdf\x84\x59\x98\x6b\x46\x76\x85\x99\x95\xce\x14\x6a\x8e\x29\xd3\x35\x56\x40\x57\xd9\xa6\x28\xad\x3d\x5e\xe5\x9c\xe2\x05\xab\xee\xb5\x6c\xa3\x03\x7d\x97\xaa\xe2\xcc\x95\x1d\x41\xdb\x85\xae\xb9\x82\x8e\xef\xc1\x30\x24\x7f\x28\x97\xc5\xee\xdf\x2b\x9b\x30\x6d\x54\x19\xe0\xd9\xe4\x2e\x43\xae\xca\x36\xf4\x9c\xf0\x93\x0d\x1d\xdb\x8e\x0c\x18\xda\x4c\xe7\xe1\xad\x6c\x03\xba\x21\x29\x64\x9a\x2e\xe5\x31\x11\x61\xe4\x2c\xc0\x3e\xdb\xeb\x38\xad\x9d\xba\xd0\x0f\x7d\x23\x84\x2b\xd3\xfd\xe8\x41\xd7\xf2\xa1\x67\x7a\xc0\x87\x56\xe8\x42\xd3\x0a\x41\x40\x78\x51\xf2\x2d\x62\x0d\x00\xda\x00\x81\x0f\x28\x7c\xca\x3b\x12\x28\x84\x5b\x83\xa1\xe9\x7e\xcb\x0c\x0f\xae\x42\xc2\x0d\xdb\xbe\xfb\xf3\x0a\xfa\x66\xf0\xc9\xa7\x4a\x30\x0b\x06\xee\x6a\x6f\x41\xc7\xb2\xbf\x65\xa6\xe1\x40\xd3\x0d\x4f\x84\x7b\x6d\x0b\x90\xaf\x4d\x3e\xb7\x75\x99\xe3\xab\x2b\x44\xba\xf3\x90\xfa\x1a\x04\xfa\x37\xaa\xfc\x3e\x50\x65\xe5\xae\x62\x84\x26\x48\x9c\xc2\xda\xee\x55\x4c\x07\xe7\x5b\xf7\xbd\xba\x55\xc0\xb5\xe8\xb4\x82\xb6\xef\x40\xef\x73\x08\xcd\x90\xac\x8b\xef\x90\x85\x09\x2c\x72\xdf\xf4\xbc\x4f\xe6\xc9\x82\xbe\xed\xed\x2d\x1b\x86\xa9\xd1\x67\x00\x0b\x5a\xe4\xec\xb5\x9c\xf0\xb3\xe5\x83\x80\x9f\x7a\xfb\xbf\xfd\xd9\x74\x56\xe3\x97\x28\x6b\x52\x6b\x36\x6f\xb9\x7e\xe5\x99\x76\xb8\x99\xb6\x5e\x5d\xac\x25\x9e\xe2\x2b\x6b\xf5\xd3\x9f\x42\x76\x68\x07\xd0\xb3\x7d\x68\x5b\xab\xd4\x80\x2b\x2f\x24\x3c\xf9\x67\xcb\xa4\x9a\xf9\xd0\xa5\x8b\xe4\xd8\x54\xc3\xf6\xd9\x87\x9e\x1f\x82\x15\x0c\x3d\xc2\xba\xb7\x45\x1d\xe0\x41\x6f\xea\xc0\x1f\x9a\x88\xbe\x9a\x09\xec\x1c\x83\xd4\x57\xdf\x0a\x33\xa5\xe3\x8f\xbc\xb6\x50\x25\xb0\x93\x17\xc6\x0e\xed\x8f\xf6\x7f\x5b\x34\x97\xa7\x60\x05\xdc\xd4\x20\x57\x25\x18\x58\x9f\x2d\x0b\x04\xd0\xf3\xfc\x4f\xce\xcf\x21\xf4\x82\x7d\x98\x1a\x36\x5c\xb9\x54\x75\xef\x92\x0b\x95\x0f\x03\xcb\x22\x0b\x12\x42\xd3\xb7\xe9\x92\x94\x38\xaa\x79\x6d\xca\x47\xea\xac\xb1\xd5\x6b\x1a\xed\xd0\xa0\xb7\x00\xcf\xf7\x0b\x18\x78\x0b\xf0\xd2\xfc\xed\x0e\x14\x92\xd9\xd3\x00\xf2\xab\x7c\xbe\x5f\x04\xd0\xf6\x04\x83\x04\x07\x92\x0b\x9e\x97\xae\xc0\x6a\x31\xb3\xc9\x26\x29\x4d\x72\x1c\xa1\xc3\xfd\xa2\xfa\xcf\x23\x2a\xf1\x0c\xf3\x03\xff\x86\x1d\x3e\xdf\x4a\xf9\x97\x41\x9f\x1b\x0e\xe6\xab\xd1\x47\xdc\xd7\xc1\x8a\xdc\x68\x56\x76\x87\x42\x16\xb9\x89\xfb\xd0\x73\x83\x4f\xf6\x89\xda\xd9\x88\x48\xe4\xf4\x48\x64\x93\x83\xd6\xf3\x94\x48\xd4\xb6\x72\x05\x12\xd9\x02\x12\xd9\x2d\x12\xf9\x43\x24\x32\x7d\x07\xd0\xcf\x34\x80\x61\xe0\x02\xfa\xb9\x98\xd9\xfc\x2c\x84\xfa\x4d\xc5\x69\xbf\xa5\xc0\x6c\x60\x01\xfc\xaf\x2f\x24\x99\x7b\x81\xbe\x4e\x12\xa2\xb7\xe1\x57\xdc\xc2\x45\xcf\x6c\x64\xd2\x86\x92\x9b\x29\x89\xcd\x84\xec\xe5\x1a\x99\xcb\x88\x25\x00\x33\xc8\x0a\x3b\x8d\xc6\xf7\x0b\x97\x7e\x19\x71\xd1\x79\xe8\xbc\xa8\x2e\xb2\xe2\xb1\x44\x87\xfd\x0b\x80\x3d\xb1\x3d\xb3\x70\xb4\xad\x83\x31\xbe\x10\x7a\x4e\x2a\x96\x4d\x1d\x3a\xb2\x8d\xdf\xb9\x00\x6c\xe8\x40\x8c\xaa\x3d\x2a\x4b\xf4\xb2\x76\x81\x2b\x35\x42\x97\x55\x0b\x41\x2c\x4c\x0d\x68\xce\x6d\x89\x26\x9a\x07\xeb\x5b\x13\x72\x41\x28\x4e\xc8\x4f\x05\xc8\x67\x57\x67\xbc\x58\xe3\x06\x59\x3d\x88\xc6\xde\x98\xae\x2a\x57\xbb\x4e\xa2\xaf\x62\x1b\xaa\x9e\xd3\x52\x64\xd9\x38\xbb\x18\x18\x06\x5e\x89\xb3\x26\xaa\x59\x1e\xed\x8b\x72\x5d\xd5\xa8\xac\x37\x92\xcb\x79\xe1\x95\x84\xde\x53\x0f\xb3\x4c\x10\x3d\x9b\xeb\x1d\xe3\x09\x40\x15\xc1\x3d\x87\xae\x10\xc7\xc3\x7c\xce\x0a\xf2\x29\x15\x1a\xf4\x42\xde\xed\xca\x28\x34\x6c\x7b\xf5\xce\x42\xc5\x47\x24\xc9\x48\x24\xac\x26\xb2\x04\xef\xab\x4e\xea\xc0\x72\xaa\x47\x22\x24\x8d\x43\xd4\xe1\xb3\x16\xd1\x7b\x0c\x73\x77\xa3\x7a\xe0\x22\x38\x62\x33\xac\xd1\xe7\x33\x42\x59\x4f\x57\x54\x05\x37\x90\x0b\x37\xd6\x8a\x0e\xa7\xa5\xa6\xdf\x27\x5d\x12\x6b\x9a\x95\x2d\xde\x94\x0e\x45\xd9\xc9\xa7\xe8\x33\x1f\xc7\x44\xe1\xce\xb6\x77\x94\xcd\xc7\xda\x65\x11\xf0\x06\x68\xad\x8b\xdb\xc8\x1e\x04\x74\xde\x08\x07\xc3\xe0\x56\x5e\x07\x82\xbe\x74\xd2\xbe\xfc\x19\xea\xfd\x99\x7b\x53\xb9\x15\xea\x2b\x1b\x6d\x8b\x13\xbe\xa3\x11\x33\x9d\xe1\x94\x8a\xa5\xba\x7e\x75\xb6\xa3\xb7\x1a\xc0\xc9\xad\xb0\x06\xce\x8d\x63\x3d\x65\x47\x58\x11\x6e\x53\xd0\xa2\xe3\xbd\xb0\x6d\x4d\x37\x9a\x8c\xc1\x0e\x56\x1c\xad\x7d\x70\xa7\xe1\x76\x6f\x4d\x6d\x03\x61\x45\x87\x93\x3d\xf4\x59\x35\x91\xff\x4f\x66\xfc\x15\x15\xf9\x2e\x29\x59\x88\xec\x87\x01\x89\x18\xd6\xe2\x82\x8c\x0d\x37\xba\x9e\x7e\xdf\xd6\x5a\x57\x5b\x0e\x6d\x36\xbb\xd9\xfe\x79\x1b\xab\x50\xfd\x9f\x28\x2d\x2a\xfc\xe5\xcc\xcd\xb9\xc0\x50\xde\xe6\x5b\x53\xbf\xa6\xf6\xab\x84\xff\x62\x04\x8e\x7a\x18\x7f\x73\x91\x39\xe0\x61\x18\x9d\xe1\xe9\xc6\x0c\xbd\x7d\x25\xd5\x6b\xb1\x6a\xd5\x79\x15\x97\x1a\x18\x38\x41\xef\x46\x39\x1a\x9a\xb6\x0f\xba\xa5\x01\xd8\xed\x34\x85\x51\x3a\xe1\xd8\x78\x45\xeb\xc7\x22\xc6\x7f\x4d\x08\xab\x7f\xe6\xe2\x09\x58\x34\x34\x29\x17\xdc\xcc\xe1\x23\xd5\xd2\x70\xa9\xb2\xa7\x72\xda\x9f\x1e\x9a\x51\x45\x65\x91\xa6\x5d\x78\x01\xe3\xb9\xf1\xc1\xac\x6e\x9c\xdc\xfa\x6a\xa3\x2e\x8a\xb4\x4e\x0e\x2a\x06\x64\xb5\x5b\xed\xd0\x66\x18\x4c\x1c\xb9\xe4\x9f\xb4\x32\x5d\x88\x20\xdb\x22\xff\x98\x1d\xf4\x0e\x65\x49\xfa\xb2\xce\x8a\xbc\xa0\xde\x4f\x39\xeb\x68\xcb\xe1\x88\x40\xd0\xf8\x00\x5c\x91\x01\x45\x99\x51\x19\x7b\x54\xed\x13\x7e\xa6\xb8\xc3\x44\x19\xa1\x88\x53\x6f\xb7\x71\x36\x76\xb1\x1d\x5b\x5c\x3a\xef\xd0\x5c\xdd\xbd\x16\xbf\x59\x37\xb3\xa2\xa8\xf7\xa4\x7b\x74\xf2\xf9\xa0\xee\x16\x74\xf9\x7e\x02\x7e\x56\x1f\x8f\x75\x8d\xcb\x2e\x1c\x51\x10\x86\xf6\xca\x54\xf4\xd9\x46\xf6\xce\xf1\xc5\x38\x01\x1a\x90\xec\x90\x3e\xf3\x6c\x15\x5b\x0a\xd2\x3d\xf0\xc3\x2e\xdc\x85\x3b\x53\x5b\x9b\x74\x3c\x3f\x66\xdb\xde\xa9\xb8\x1f\x87\x28\x0c\x35\x33\x6d\x50\x8f\x90\x38\x06\x71\x72\x12\x90\xab\x89\xa1\xca\x61\x0a\x59\x6c\xd7\x0e\x9d\xd1\xa6\xd7\x6b\x23\x2b\xbe\x35\xd5\x93\x22\x5f\x8e\x15\x7e\x60\xd7\xce\x6b\x6b\x28\xab\x5d\xdf\xd1\xab\xfa\x78\x7d\xf7\xbe\xa3\x67\xff\x02\x53\x48\xaf\x04\xb6\xe7\x2d\xdb\xff\x69\xc8\x18\x0e\x2c\x15\x05\x44\x99\x11\x15\x59\x86\xf3\xba\x45\xb6\x38\xc6\x0e\x0e\x94\x25\xab\xba\x4c\xf2\xc7\xa5\x3e\xcb\xb0\xbb\xa8\x5e\x71\xbc\x45\x8e\x12\x8a\x88\xdb\x71\xec\x62\x2f\x54\x16\x3c\xa1\x32\x41\xdb\x14\x2b\x1b\x6c\x33\xfb\x26\x57\x38\x74\x23\x4f\x09\x29\xc6\xbb\x19\x1d\x2b\x0e\xb8\x44\x75\xd1\x75\x0d\x3b\xe4\x9f\xb2\xe8\x57\xfc\xf2\x54\x94\x71\x1f\x54\x28\x72\x4d\x5b\x59\x12\xd5\x45\x36\x63\xac\x19\xae\x91\x72\x9c\x35\x7a\x9c\xd1\x75\x54\xd7\x65\xb2\x3d\xd6\xea\xb9\xfa\xcf\x23\x4a\x93\x5d\xd2\x4f\xfa\x6a\x17\x21\xcf\x57\x42\x6a\x63\x8a\xcf\x98\xd5\xed\x31\x49\xeb\x24\x1f\x5f\x1e\x67\xa4\x4d\x1e\xb1\x99\xd5\x17\x3b\xca\x7b\xf9\x08\xbf\xf1\x2c\xd3\xb2\x2d\xfd\xc6\xcb\x50\x1d\x11\xea\xbf\x2d\x51\xf4\x15\xd7\xec\x1d\x7e\x8c\xa3\xa2\x89\xb1\x7e\xcc\x63\x5c\x12\xf8\xdc\x35\x95\x3f\x68\x4b\x8c\x62\xf6\x6c\xa1\x88\x71\x46\x61\x2a\x88\x7a\x25\xb1\xa0\xca\x5a\xd2\x7c\xc8\x3b\x6b\x4e\x1d\x7e\xbb\x5d\x57\xbe\xdf\x10\x18\x91\x7f\xf3\xdb\x13\x37\x26\x72\x50\xb4\x8d\xe6\xd7\x96\x11\x87\x5e\xd8\xe7\x56\x1e\xee\x66\x3f\x0a\xb6\xa1\xc5\x9e\x97\xd0\xa3\x6d\xc0\xc4\xc3\xe6\x47\x92\x3f\x6a\x1c\x13\x28\xab\x81\x83\x14\xb5\x56\x88\x21\x47\xdf\x12\x8a\xf2\x46\x3e\x85\x3e\xb7\x1a\x06\xa8\xf5\x06\x31\x22\x4d\x75\xe3\x7c\xb0\xbd\xef\x8f\xe8\xcb\x22\x12\xcb\x3c\xbd\x90\x4a\x7f\x18\x49\x8d\xb3\xaa\x4d\x12\x18\xa3\x66\x82\xeb\xf8\x61\x72\x8e\x75\xd7\x75\x53\x1f\xd3\x6f\x6c\x0e\x28\x5b\xc7\xb1\xdd\x16\xce\xa4\x00\xc2\xba\xe5\x93\xfc\xd4\xe3\x8c\x3d\xb9\x65\xee\x70\xd9\x4d\x0c\x57\xb8\xfe\x22\x4c\xb6\xb0\xca\x7c\x18\x04\x56\x59\x8c\x89\x08\x0e\xad\x28\x88\xf4\x8c\xb0\x93\x02\x5b\xca\xee\xe6\x84\x23\x56\x56\x86\xed\x37\x83\x09\xa1\x8d\x82\x8b\xda\x43\x2f\xeb\x74\x1e\x8d\x18\x93\xb1\x3a\xd5\x46\x91\x36\xe2\xdc\xbf\xb9\x4d\x0e\xba\xdc\x0a\x0d\x28\xf7\x2b\x48\x6d\x86\x65\xfb\x20\x13\x62\x15\x43\x0c\x49\xb8\x91\x82\x98\x84\xfd\xa5\xc2\x09\x1c\xe4\xda\x1b\x4e\x9e\x68\x5e\xc4\xf7\x79\x92\x21\x1a\x93\x5f\xd1\x82\xed\x4b\x60\xee\x8e\xc0\x8b\xae\x54\xf5\x06\x1b\x7c\xc8\xde\xac\x34\x2f\x0f\x55\xde\xce\xed\xe6\x02\x33\x74\x64\x2e\x4a\x58\xc7\xcb\x29\xe3\x74\x0f\xef\x5f\x8d\xdc\x5a\xd9\xb9\x36\x02\xba\x3a\x93\x29\x7c\x5a\x11\xb2\x29\x02\x54\xb5\xcf\x64\xd0\x63\x2d\x71\x12\xe0\xfe\xd6\xae\xa9\x21\x34\xdf\x20\xc1\x54\x25\xc9\xd0\x50\x70\x87\x43\x2f\xc0\xa2\x5d\x04\xc5\xcb\xac\x88\x51\x2a\x47\xd9\x13\xc1\x9f\xb9\xf0\xf1\xa6\xd9\x4b\x12\x76\xc9\x33\x8e\x2f\x4c\x08\x93\xa3\x0c\xdf\x53\x58\x5f\x96\x83\x14\x39\x78\xf0\xa0\x80\x36\x7c\xb0\x0a\x1d\x07\xb4\x70\x38\x19\xdf\x1f\x29\xe5\x36\xf2\xfe\x1a\x32\x1f\xfd\x6e\x6c\x57\xb9\x5d\x2c\x72\x30\x74\x0b\x47\xc9\xc8\x64\x5d\x4e\x88\x12\x7a\xde\x61\x4c\x82\x65\x69\x10\xf3\x9d\xe4\xce\x68\x18\xe3\x9d\x0a\x93\xd4\x95\x49\x17\xc4\x60\xcf\xda\xa7\xc5\xb3\x76\x27\xcf\x1b\x08\xcc\x42\x4b\x35\x4d\xed\xcb\x65\x7a\xf8\x76\x8e\xe0\x3d\xc1\xea\x5f\x57\x65\x5b\xc4\x2f\x74\x0a\xfb\x89\x9e\xda\xc0\xc3\x37\xf7\x63\xc5\x01\x73\xc9\x45\x36\x45\x2b\xb1\x7c\x05\xf3\x10\x9b\x33\x0f\x21\xdf\x4f\x09\x7e\x22\x23\x65\xc6\xda\xb6\x0b\xec\x59\x36\x23\xd7\xdb\x84\x51\xbb\xcf\x15\xf0\xa1\x6b\x7d\xb6\x02\xe8\xad\x80\x07\x2c\xea\x77\xc6\x63\xa9\xc0\x03\x1e\xfb\xc2\xd2\x2c\x9b\x94\x08\xba\x6c\x8b\x26\x59\x0e\xfd\x4e\x93\x2d\xf6\x1f\xfb\xce\xd2\x05\xfb\x49\x76\x36\x8e\x79\x5a\x0a\xcd\x37\x9b\xe9\x18\x80\x94\x9a\x6b\x0f\x14\x85\xa8\x95\x67\x78\x78\xc2\x6b\xac\x4c\xb3\x8f\x1e\x64\x73\x1e\xd1\x86\xb8\xdf\x20\x25\x27\xd8\xb4\x5c\x2a\xe7\xe3\x2c\x3b\x3a\x33\x8f\xc1\x33\x44\xd9\x72\x7d\x18\xfb\x7c\x33\x8c\xbc\xae\x53\xf8\x13\xde\x0e\xb4\xff\xbb\x9e\xd4\x89\xf3\x30\x18\xb9\x6a\x12\xcd\x9d\xd7\x9d\xca\x6a\x7d\xa5\x89\x5d\x93\xdc\xab\x15\xa6\x2b\x62\xe8\x7c\x65\x11\xfd\x5c\x4c\x59\xf3\x9f\x3b\x29\x75\x1f\x49\x92\x8f\xd5\x75\xd1\x42\x1e\x28\x95\xa7\x79\x02\x25\x97\x2b\xf8\x26\xd4\x58\x84\xb8\x3a\x05\x35\x8d\x8f\x3d\xe4\x8b\x6c\x49\x45\xad\x2f\xc6\xab\x94\x5a\xae\xba\x8f\x6a\xf8\x1e\x78\x87\xe7\xbb\x46\x89\xcf\x9f\x79\xca\x90\x77\xec\xf8\x42\x75\x5d\xbe\x25\x64\xa9\x15\x93\xdf\x09\xdb\xc0\x54\xcd\x82\xe8\x9f\x51\xaf\x67\xe8\x03\x5d\x32\x21\x85\x74\x9a\x37\xc9\xf2\xa1\xce\x25\xbf\xca\xc9\xfc\xdd\xfc\xc1\x18\x22\x68\x6e\x09\x12\x96\xa8\xd2\xc4\xdd\xb2\x53\x6a\xf0\x9b\x1b\xc3\xf0\x1a\xd9\x9f\xf6\xd7\xf6\x82\xf7\x0f\xa9\x76\xfa\x62\xb5\xbb\x8b\x7d\x1b\xea\x52\xab\x08\xa5\xf8\xad\xb5\x84\x1e\xaf\x48\xe5\x53\x5b\x3f\x29\x0d\x35\x54\xe8\x06\x38\xc3\xcc\xe1\xdd\xa9\x8d\xf8\xde\x6c\x54\xe1\xf1\x22\x1f\x9e\x72\xb4\x48\x4b\x1f\xc4\xdb\xd7\x45\x40\x5d\x15\xc1\xef\xf5\x37\x26\x9b\x85\x95\x96\x17\x69\x70\x40\x75\xbd\xe6\xad\xad\x9a\x1b\xf6\x01\x55\xd5\x53\x51\xc6\x5f\x96\x8a\x4c\xd2\x13\x29\x83\x24\xa1\x12\x23\xad\x75\xd6\x00\xee\x44\x41\xd6\x86\xb6\x50\xd7\x1e\x62\x89\x51\x89\x51\x3d\x70\x7a\xdc\xfe\xa6\x45\x62\x9c\xe2\xae\x08\x6b\x84\x7d\xff\xc2\xac\x04\xda\x4a\x77\xec\x27\x57\xe7\x4e\xa8\xc4\x84\x0f\x42\x52\x75\xdc\x66\x49\xfd\x45\xb2\x09\x67\xd6\x83\x64\xfe\x91\xce\x18\x6d\x30\x2b\xe3\xe5\xd8\xa4\xe8\xca\x74\x73\x32\xc7\xa4\x6d\xbc\xe5\xf1\x4a\x8a\x6e\xe8\x2a\xb4\x7d\x3a\x8b\xea\x3a\xef\x32\xa7\xb6\x54\xc9\xf6\x5e\x37\xba\x97\xc4\xa0\x89\x8d\x05\x53\x2f\x9a\x15\x9e\xc1\x79\xfb\x9b\x81\xa3\x57\x3e\x93\x85\x45\x15\xc0\xdd\x9d\x53\x5c\x93\xa1\x91\x83\x8f\x9c\x9a\xd0\x74\x70\x26\xfb\x5e\x95\x0b\x19\xd4\x93\xd3\x45\x61\xfd\x0a\xe2\x7a\x5e\x9c\x7f\x7e\x17\x73\x81\xa8\x44\x0b\x4c\xea\xee\xeb\xfb\xe6\x43\x6f\xb6\x49\x80\xcb\x1b\x37\x42\x07\xaa\x27\xdb\xdb\x7a\x3b\xce\xd6\xf9\xf2\xb4\xf5\xe6\xa0\x24\xfd\x9b\x3e\xc4\x35\x75\x10\xc3\x6c\x0b\x9f\x1a\x9f\x38\xa6\x79\xf9\x7d\x10\x95\x33\xaf\x34\xff\x33\xb9\x13\xfd\x15\x45\x7f\x7b\xa9\x6a\x9c\xfd\x54\xe4\xf5\xd2\x40\x87\x43\x8a\x8d\x8a\xa6\x2c\x17\x7f\xc3\x8f\x05\x06\x7f\xff\xef\x8b\xe5\xff\x2a\xb6\x45\x5d\x2c\xff\xe7\xf3\xcb\x23\xce\x97\x7f\xdf\x1e\xf3\xfa\xb8\xfc\x88\x72\xb2\x53\xd3\x74\xb9\xf8\x29\x29\x11\xf8\x1b\xca\xab\xc5\x72\xf1\x97\xb2\x48\xe2\xf6\xc7\x27\x9c\x9e\x70\x9d\x44\x08\xfc\x0f\x7c\xc4\x8b\x65\xf7\x7b\xf9\xa7\x32\x41\xe9\xb2\x42\x79\x65\x54\xb8\x4c\x76\x1b\x69\x4a\x79\x4d\x8c\x60\x5f\x83\xd4\xac\x89\x92\xff\x98\x70\x9e\x7c\xed\x8e\x5b\xd6\x7b\x61\xe5\x3d\x53\x1f\xb2\xbf\xb1\x73\xbe\xc5\x74\xfa\x2a\x97\x35\x57\x3b\xa6\xb9\xda\xfd\x0c\x9b\x26\xb6\xd3\x07\x3e\xdb\x5e\xc7\xc4\xbb\xf7\x63\xb3\x94\x5c\xa6\xe3\x4c\x98\x71\x77\x64\xc6\x9b\x85\xc4\x99\x38\xe9\x38\xd3\x4f\x38\xce\xb4\x83\x90\xb3\x74\x03\xc0\x99\xae\xcb\xec\x1a\x9a\x17\x65\x86\xd2\x81\x4b\xec\x77\x9c\x79\x72\x92\xef\x71\x99\xd4\x97\xbd\xc5\x25\x5a\x30\x2c\x71\x76\xb5\x97\x8c\xe5\xde\xe6\x81\x10\x10\xdb\x22\x7e\x61\xe2\xcf\xe5\xa1\xc4\x20\x2a\x62\xbc\xac\xe3\x65\x77\xd0\x0e\xec\xa4\xe5\xce\x6a\x8f\x05\x01\xc7\xd9\xf4\x6a\x8f\x01\x1d\x1d\x6f\xe9\xf6\x95\x9b\xfa\x15\xe8\x7b\xbb\x99\x9b\xa1\x5b\x36\x1d\xbb\xe6\x78\x53\x14\xe5\x29\x94\x48\x6d\x49\xdb\x03\x24\x54\x51\x02\x95\x36\x6b\x14\x5b\xa7\x48\x07\xcb\xaf\xd1\xf6\x80\x72\x9c\x7e\x79\x38\x70\x8e\xf7\x7e\x4f\x9c\xaf\x1a\x13\xa8\xa0\x39\x4e\x2a\xb4\x4d\x31\xd5\x4f\xce\xde\xbd\x37\x52\xa7\xb9\x44\x40\x01\x53\x98\x7a\x1e\x7b\xc4\x2d\x76\x9b\x52\x80\x97\xc5\x99\xe6\x69\xaf\x8a\xa7\x7e\xc2\x25\x7d\xec\xa3\x89\xa6\xce\xe8\x92\x2a\x98\x7a\x54\xa4\xc7\x2c\x97\xe3\xa8\x37\xa9\x82\xe0\x27\xf9\x46\x58\xca\xe6\xca\x4d\x7b\xae\x49\xe6\x6f\xe0\x54\x27\x20\x28\x5f\x69\xf0\x72\x32\x77\x63\xe1\x73\x9b\xa8\xb9\x6b\x6b\x48\x4a\x25\x69\x3c\x0b\x85\xfc\x20\x05\x35\x66\x9d\xea\x34\x57\x42\x57\xfb\x54\x49\x19\x85\xe3\xa4\xa6\x67\xe1\xc0\xce\xb3\xeb\xc5\x52\x26\x96\xb4\xb8\xa0\x8d\xa0\x22\x2c\xdb\x3d\x3d\x81\x0f\xe0\xad\x65\xfb\x26\xf8\x00\x2c\xd3\xbc\xbb\x93\x54\x14\xda\x72\x0a\xdd\xaf\x6f\x52\x7d\x7a\x87\x46\xc3\x68\x0e\x92\xfa\x83\xf4\x59\x11\x7a\x99\x34\xc3\x03\x9a\x31\x1c\xdb\x1d\x40\x27\x49\x17\x95\x22\xaf\x45\x42\x23\xc3\xf9\x71\x39\x55\x00\x50\x55\x86\xac\xf6\xd3\x2a\xbe\x45\x70\x84\xd1\x69\xc8\x51\x9b\xf4\xf5\x74\xd7\xae\x5e\x6f\x55\xc0\x99\xab\x57\x40\x0e\x45\xc0\x5b\xfd\x7a\x3e\x67\xe0\x2a\xeb\xb2\x3b\x92\x40\x2e\x8c\x9a\x88\x4c\x24\xeb\x3d\xa5\x3e\x03\x32\xbf\xec\x0c\x14\xfa\x6f\x9a\xa2\x92\xf8\xc5\xc6\xd9\x65\x3e\x07\x97\xde\x48\x5f\x44\x89\x0f\x74\xaf\x6a\xb4\x16\x15\xab\xd7\x44\xda\xd9\x0b\xa1\x50\xe6\xb0\xb6\xb4\x49\xb1\x9e\xa8\x62\x0e\xaf\x75\x02\xf9\x2b\x70\xd4\x1d\xbb\xab\xb0\x53\xc2\x5b\x8c\x77\xb6\x42\x97\x33\x66\xdf\x4e\x05\xff\xde\x60\xa4\xd7\x79\xdc\xf8\x1e\x0f\x05\x67\x2e\x4e\x4e\xb3\x6f\x67\x43\x8b\x71\x55\x27\x79\x63\x0a\x24\x5d\xac\x45\x20\x5f\x4f\x12\x6d\x26\x5b\x6d\xbe\x41\x11\x0c\x06\x78\x3c\x80\xc8\xb3\x69\x2a\x7b\xa1\xd6\x9c\x8b\xe3\xfe\xb4\x2e\x63\xcf\xfc\xeb\x7d\xd2\x83\x81\x2d\x99\xc3\x5e\x39\xb6\x3d\x60\x7a\x1d\x15\x86\x37\x97\x9b\x96\x70\x2d\xfb\x32\x75\xf1\x15\xcb\x93\xaa\xaa\xa2\xd0\x64\x30\x5f\xe1\x87\x67\xbd\xbd\x96\x38\x59\x28\x52\x9d\x8d\x83\x86\xb8\xd9\xff\x6e\x93\x07\xaa\x01\x69\x54\x1f\x92\x5e\xa4\x4d\x95\x15\x23\x54\x11\x64\x6c\x71\xfd\x84\x71\x2e\x93\xb2\x01\x02\xcc\x1b\x93\xc4\x8f\x8e\x98\xbe\x7d\x07\x74\x15\xd5\x6f\xec\xa8\xb4\xcb\x4d\x61\x52\xfd\x7c\x8e\x9f\x1a\xfc\xe9\x5c\xeb\x4b\xf2\x4a\x0e\x9b\x2f\x6a\x2f\x97\x03\xe3\x9c\x8d\xa8\x1f\x1d\x18\x59\x68\xe0\xf4\xd6\x64\x83\x10\x5c\xba\xb7\xa2\xfa\x21\xf6\x18\xdd\xa8\x3f\x85\x53\x9a\xbd\xa1\x19\x9d\x9e\x38\xbe\xe9\x14\x9c\x84\x2a\x23\x05\xe3\x1a\x0e\xcf\x97\xff\x2f\x00\x00\xff\xff\x85\x01\x92\x9e\xa9\x40\x01\x00") -func web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1CssBytes() ([]byte, error) { +func web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64CssBytes() ([]byte, error) { return bindataRead( - _web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1Css, - "web_ui/v2/assets/consul-ui-9cafc4780f8a37506d814e36abac7af1.css", + _web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64Css, + "web_ui/v2/assets/consul-ui-eb2191f7fde75fdce9659f7db9d70d64.css", ) } -func web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1Css() (*asset, error) { - bytes, err := web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1CssBytes() +func web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64Css() (*asset, error) { + bytes, err := web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64CssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/consul-ui-9cafc4780f8a37506d814e36abac7af1.css", size: 63378, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/consul-ui-eb2191f7fde75fdce9659f7db9d70d64.css", size: 82089, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1090,7 +418,7 @@ func web_uiV2AssetsEncoding5ed8e95353b97ff5dd41bf66212d118eJs() (*asset, error) return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/encoding-5ed8e95353b97ff5dd41bf66212d118e.js", size: 18533, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/encoding-5ed8e95353b97ff5dd41bf66212d118e.js", size: 18533, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1110,7 +438,7 @@ func web_uiV2AssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js() (*asset, return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js", size: 529734, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js", size: 529734, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1130,7 +458,7 @@ func web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png() (*asset, erro return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1150,7 +478,7 @@ func web_uiV2AssetsFavicon16x16672c31374646b24b235b9511857cdadePng() (*asset, er return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon-16x16-672c31374646b24b235b9511857cdade.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-16x16-672c31374646b24b235b9511857cdade.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1170,7 +498,7 @@ func web_uiV2AssetsFavicon196x19657be5a82d3da06c261f9e4eb972a8a3aPng() (*asset, return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png", size: 37174, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-196x196-57be5a82d3da06c261f9e4eb972a8a3a.png", size: 37174, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1190,7 +518,7 @@ func web_uiV2AssetsFavicon32x32646753a205c6a6db7f93d0d1ba30bd93Png() (*asset, er return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png", size: 2075, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-32x32-646753a205c6a6db7f93d0d1ba30bd93.png", size: 2075, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1210,7 +538,7 @@ func web_uiV2AssetsFavicon672c31374646b24b235b9511857cdadePng() (*asset, error) return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon-672c31374646b24b235b9511857cdade.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-672c31374646b24b235b9511857cdade.png", size: 821, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1230,7 +558,7 @@ func web_uiV2AssetsFavicon96x966f8f8393df02b51582417746da41b274Png() (*asset, er return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon-96x96-6f8f8393df02b51582417746da41b274.png", size: 10171, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon-96x96-6f8f8393df02b51582417746da41b274.png", size: 10171, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1250,7 +578,7 @@ func web_uiV2AssetsFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/favicon.ico", size: 34494, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/favicon.ico", size: 34494, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1270,7 +598,7 @@ func web_uiV2AssetsLoadingCylonPinkSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/loading-cylon-pink.svg", size: 983, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1290,7 +618,7 @@ func web_uiV2AssetsMstile144x144Ac561ffa84c7e8ce1fe68d70f1c16d1dPng() (*asset, e return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-144x144-ac561ffa84c7e8ce1fe68d70f1c16d1d.png", size: 20027, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1310,7 +638,7 @@ func web_uiV2AssetsMstile150x1506b13ab220a09a9e72328a3b05d5b9eecPng() (*asset, e return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png", size: 64646, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-150x150-6b13ab220a09a9e72328a3b05d5b9eec.png", size: 64646, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1330,7 +658,7 @@ func web_uiV2AssetsMstile310x150Ccc673174b188a92f1e78bc25aa6f3f8Png() (*asset, e return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png", size: 112362, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-310x150-ccc673174b188a92f1e78bc25aa6f3f8.png", size: 112362, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1350,7 +678,7 @@ func web_uiV2AssetsMstile310x31049242d1935854126c10457d1cdb1762bPng() (*asset, e return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/mstile-310x310-49242d1935854126c10457d1cdb1762b.png", size: 201893, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-310x310-49242d1935854126c10457d1cdb1762b.png", size: 201893, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1370,7 +698,7 @@ func web_uiV2AssetsMstile70x7008e1368e84f412f6ad30279d849b1df9Png() (*asset, err return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/mstile-70x70-08e1368e84f412f6ad30279d849b1df9.png", size: 11154, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1390,7 +718,7 @@ func web_uiV2AssetsSafariPinnedTabSvg() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/safari-pinned-tab.svg", size: 3798, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1410,7 +738,7 @@ func web_uiV2AssetsVendor76de132899793eca85d7043cb5b3efe4Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/vendor-76de132899793eca85d7043cb5b3efe4.js", size: 1360997, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/vendor-76de132899793eca85d7043cb5b3efe4.js", size: 1360997, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1430,12 +758,12 @@ func web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css", size: 5357, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css", size: 5357, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _web_uiV2IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x5f\x6f\xdb\x46\x90\x7f\xcf\xa7\xd8\xf2\xce\x48\x0a\xdc\x8e\x76\x67\xff\xb7\x96\x01\xd7\x71\xdb\x1c\xea\x38\x70\x9c\xa0\x79\x0a\x28\x72\x65\x31\x47\x91\x3a\x92\x92\x63\x1f\xfa\xdd\x0f\xb3\xa4\x64\xb9\xc9\xf5\x70\xb8\x07\xaf\x86\x3b\xb3\xbf\xf9\x3f\x4b\xfa\xf4\x87\xd7\xd7\x17\xb7\x9f\xde\x5d\xb2\xd5\xb0\xae\xcf\x5e\x9c\xd2\x0f\x2b\xea\xbc\xef\xe7\x59\x5c\x2f\x62\xc7\xeb\x36\x2f\xab\xe6\x2e\x3b\x7b\xc1\xd8\xe9\x2a\xe6\x25\x11\x8c\x9d\xae\xe3\x90\xb3\x62\x95\x77\x7d\x1c\xe6\xd9\x76\x58\x72\x9f\x1d\xb3\x56\xc3\xb0\xe1\xf1\x3f\xb7\xd5\x6e\x9e\xfd\xc9\x3f\x9c\xf3\x8b\x76\xbd\xc9\x87\x6a\x51\xc7\x8c\x15\x6d\x33\xc4\x66\x98\x67\x6f\x2e\xe7\xb1\xbc\x8b\xfb\x93\x43\x35\xd4\xf1\xec\xa2\x6d\xfa\x6d\xcd\x16\x0f\xec\xf7\xbc\x5f\x55\x17\x6d\xb7\x39\x9d\x8d\xac\x23\x05\x4d\xbe\x8e\xf3\xac\x8c\x7d\xd1\x55\x9b\xa1\x6a\x9b\x23\xd8\xec\x5b\xc1\x5d\x15\xef\x37\x6d\x37\x1c\x49\xdd\x57\xe5\xb0\x9a\x97\x71\x57\x15\x91\xa7\x87\x7f\x63\x55\x53\x0d\x55\x5e\xf3\xbe\xc8\xeb\x38\x97\xd9\xd9\x8b\x84\xf4\xe2\x18\xaa\x48\xf6\xf1\x6d\x35\x2b\xda\x66\x59\xdd\xcd\x62\xb3\xab\xba\xb6\x59\xc7\xe6\x18\xfe\xc4\xfd\x72\x82\xb8\x6e\xcb\x6d\x1d\xdf\x75\x71\x59\x7d\x3d\x41\x3c\x51\xe7\x27\x88\x07\x04\xda\xc1\x8b\x13\xc4\x23\x88\x83\xd4\xa6\x6b\xcb\x6d\x41\xae\x1d\xc4\xba\xb6\x1d\x3e\xdc\xfc\x71\x10\x99\x6d\xab\xd9\x81\x59\xb7\x45\x4e\xd2\xb7\x0f\x9b\x78\x90\xc8\xb7\x43\x7b\x90\xb8\xa4\x94\x5e\xbe\xfd\x38\x71\x93\x81\xbf\x5e\x9e\xdf\x7e\xb8\xb9\x7c\x7f\xbc\x57\xf6\xbc\x5a\x6f\xba\x76\x17\x4b\x9e\x7f\xc9\x27\xc3\x87\x6e\x1b\x4f\xdc\xeb\x09\xea\xcf\xdb\xcb\xb7\xaf\x3f\xbf\xbb\xb9\xbe\xbd\xa6\x0a\x7a\x76\xfe\x75\x3e\x4c\x16\x2c\xf3\xba\x4f\x87\xf6\xe7\xce\xdf\xbd\x3b\x96\xa4\x88\xfe\x43\x58\x76\xb1\xeb\x27\xff\x93\x04\x02\x82\xa0\xa7\x3d\x5c\x17\xfb\xea\x31\xbe\x8f\x1d\x25\xf1\x75\x5c\xe6\xdb\x7a\xe8\x8f\x15\x54\xcd\x97\x98\x62\xf8\x6b\x5e\x0c\x6d\x57\xc5\x3d\xd7\x10\x97\xaa\xe2\xa0\x8c\x32\xd7\xb5\x75\x1d\xbb\xa3\xad\xf5\xa6\x6d\xa6\xa4\x98\x27\x2f\x2e\xae\xdf\xbe\xff\xf0\xc7\xe7\xdf\xde\xdc\x7e\x7e\xff\xfb\xf9\xc1\x3c\xbf\x28\x96\x8b\x7c\xb9\x5c\x1c\x00\x26\xc1\x8f\x97\x37\xef\xdf\x5c\xbf\x3d\x08\x4a\x50\xa3\x1f\xc7\x42\xbf\xbc\x79\x7b\x7e\xf3\xe9\x33\x45\xf3\x20\xd8\xf6\xfd\xdf\xc5\x5e\x5f\x5f\x7c\xb8\xba\x7c\x7b\x7b\x7e\xfb\xe6\xfa\xed\xe7\xe3\x6a\xa0\x9e\xeb\x4f\xd4\xf9\x6c\x76\x7f\x7f\x0f\x63\x34\xa1\x6a\x67\x65\x5b\x7c\x83\x72\x71\xfd\xee\xd3\xcd\x9b\xdf\x7e\xbf\xfd\x07\x84\x15\xb5\x5f\xd1\x76\x1b\x28\xda\xf5\xff\x0c\xf0\xe9\xf2\xfc\xe6\x29\x43\x42\xfa\x83\xe8\xa2\x6b\xef\xfb\xd8\x55\xcb\x87\xe3\x94\x0c\xb1\xdf\xe7\xe8\x59\x49\xc5\xaf\xd4\xa0\xe7\x9b\x4d\x5d\x8d\x85\xfc\x5b\xdd\x2e\xf2\xfa\x79\x21\x65\x6c\x36\x35\x77\x5d\x35\xff\xc1\xba\x58\xcf\xb3\xaa\xa0\xee\x1f\x1e\x36\x71\x9e\x55\xeb\xfc\x2e\xce\x36\xcd\x5d\xc6\x56\x5d\x5c\xce\x33\x6a\x91\xbc\xef\xe3\xd0\xcf\x96\xf9\x8e\x44\xb9\xc2\xaf\x0a\xb9\xd5\xd6\x19\x95\xa3\x30\x85\xcd\x6d\xb9\x70\xcb\xa0\x4a\x51\xca\x45\xae\xc4\xa2\x0c\x0a\x12\x08\x95\x57\x3f\xcf\xd2\x91\xec\xff\xad\x59\xda\xaf\xd2\x72\xeb\xb0\x50\x52\x39\x6d\xb5\x5d\xa0\x5e\xa0\x32\x8b\x60\xa4\xf4\xc6\x15\x65\x5e\xc6\x67\x9a\xd3\x91\xfd\x1c\x1a\x55\x57\xcd\x10\xef\xba\x6a\x78\x98\x67\xd9\x68\x47\x3f\x3c\xd4\xb1\x5f\xc5\x38\x7c\x47\xf9\x2e\x36\x65\xdb\xf1\x42\xe5\x41\x79\xa1\x95\x8a\x4b\x5c\x62\x5c\x2e\x74\x2c\xb5\x72\xa5\x5a\x18\xbd\x50\x12\x8a\xbe\x7f\xe6\xe1\xff\x51\xcd\xa1\x7b\x79\x28\xf2\x65\xa1\x9d\x17\x4b\x9f\x2b\x67\x84\x2d\xbd\xd4\x51\xd9\x7c\x91\x17\x2e\x5f\xee\x35\x8d\x93\x95\xb1\xd3\xd9\xfe\x5e\x39\x5d\xb4\xe5\xc3\x64\x42\xd3\x8e\x93\x7d\x7c\x4c\x5b\x65\xb5\x63\xc9\x84\x79\xb6\xce\xbb\xbb\xaa\xf9\x89\x09\x46\x03\xee\xe7\xec\x49\x2a\x49\xae\xf0\xec\xdf\xf3\x5d\xfe\x3e\x21\xb0\x1b\xba\x87\xba\x58\x9e\xce\x56\xf8\x37\xc1\xcd\xd9\xbb\x3a\xe6\x7d\x64\xb1\xc9\x17\x75\x64\x47\xa7\xaa\x86\x3d\xb4\xdb\x8e\xdd\xc7\x05\x9b\x0a\x99\x0d\x2d\xdb\xf6\x91\x4d\x37\xd4\x87\x37\x70\x3a\xdb\x1c\x19\x38\x2b\xab\xdd\x64\xfe\xec\xb9\xfd\xa7\xfd\xee\x8e\x8d\x17\x4e\x26\xad\xcf\xd8\x2a\x56\x77\xab\x61\x9e\x19\x95\xb1\xaf\xeb\xba\xe9\xe7\x19\x35\xdf\x4f\x63\xe7\xdd\x2b\x68\xbb\xbb\x19\x0a\x21\x66\xfd\xee\x2e\x3b\x3b\xbd\x63\xcb\xaa\xae\xe7\xd9\xbf\x04\x19\x7e\x3d\xf7\x59\x7a\xe4\xdd\x96\x82\x11\x77\xb1\x69\xcb\x32\x3b\x3b\xdd\xe4\xc3\x8a\x95\xf3\xec\x0a\x2d\x08\xe7\x99\x42\x90\x98\x1b\x30\xde\xb2\x71\x15\x4c\x32\x49\xb4\x73\xdc\x80\x09\x61\xa4\xa7\x55\x10\x9f\xef\x77\xec\x95\x72\x20\x44\x60\x18\x40\xa1\xcf\x11\x8c\x65\x69\x19\x51\x88\xe4\xfb\x4d\x23\xa7\x75\xc4\x38\xc8\x5e\x69\x0b\x41\x5a\xa6\x24\x58\x1b\xbe\xc1\x00\x61\x24\x07\x94\x05\x07\x81\x1e\x84\xb5\x23\x21\x15\x27\x16\xa0\xbc\xd2\x1a\x8c\xf7\x0c\x0d\x08\x3b\x1a\x61\xd8\xb8\xee\x55\x59\x87\x1c\x42\xc0\x64\x81\x9f\xd6\x91\x09\x52\x20\x47\xf0\x7a\x3c\xa3\xa7\x35\x31\x99\x06\xeb\x2c\x38\xab\x0b\x10\x0e\xc9\x47\x10\x9e\xec\x74\x20\xd0\x31\x99\x23\x68\xab\xd8\xb8\x8e\x78\x12\x02\x12\x94\x70\xea\xca\x28\x08\x0a\xc9\x33\x2d\x90\x0c\xd3\x8e\x8d\xeb\xde\xb0\x30\x8a\x8e\x01\x0a\xd3\xba\x67\x0a\xab\x49\x64\xf4\xe6\xf9\x51\x86\x10\xb4\x27\x19\x97\xf6\xa7\x65\xcf\x93\x48\x4e\x3a\x69\xc1\x5a\x4d\x7f\x89\x23\x28\x62\x80\xe8\xaf\x8c\x04\x4f\x67\x0c\x48\xa1\xbe\x93\x36\x29\x08\x3b\x68\x53\x80\x50\x1a\x50\x7a\x10\x5a\x81\x56\x81\xfc\x06\x6b\xfc\x77\xbd\x91\x8a\x4c\x45\xef\xae\x74\x80\x60\x34\xd3\x02\xa4\xfc\x56\x01\x28\xa9\xb9\x04\xa1\x5c\xca\x2a\x28\x4a\xaa\x44\x0f\x0e\x25\x27\x26\x4b\xcc\x2b\xed\x21\x38\xcd\xa4\x05\x1f\xbe\x83\x12\x1c\x57\xa0\xbd\x2b\x00\xad\x06\xad\x2d\x28\x67\x28\x5e\xa0\xa4\x63\x12\xb4\x7b\x5e\x4e\x63\x7a\xd0\x93\xd9\x42\xf8\x6c\xf6\xbc\x1f\x0c\x5a\x66\x10\xac\x50\x05\x97\x1a\x54\x50\x4c\x70\xea\x13\xcb\xa5\x04\x63\xdd\xf4\x80\x06\xbc\xb2\x17\xa0\xad\x65\x12\x41\x07\x4f\x3f\x52\x51\xb2\x25\x1b\x81\x88\xcc\xd1\x40\x50\x96\x4d\x3f\x63\x6e\x64\x3a\xcc\x0c\x28\xe1\x6a\xae\x40\x5a\xc7\x34\x48\xe9\xce\x51\x40\xb0\xc8\xa6\x1f\x31\xca\x3b\x50\x42\x33\x0f\xa8\x2e\xa4\x00\x19\x34\x93\x12\x9c\x54\xcc\x80\x63\xd2\x03\x75\xa7\x93\x9a\xb4\x3a\xab\x28\x9a\x52\x33\x07\xde\x22\xd3\xa0\x3d\xa9\x13\x86\xce\x98\x40\xe2\x46\xe9\xfc\x7b\x7a\x50\x82\x0f\x94\x40\x74\x35\xd9\xe4\xc9\x26\x54\xc9\x03\x2f\xd9\xf4\x33\x45\xf0\xe0\x81\x7c\x7c\x16\x42\x2b\x99\x12\x20\xcd\x47\xe9\xa8\x38\x0b\xc1\xf5\xa8\x89\x9a\x8b\x3b\xf0\x86\x05\xd0\x61\x22\x11\xb4\xa7\xb2\x34\x20\xb4\x07\x85\x96\x39\x40\x83\xe0\x83\xa9\x39\x18\x4b\xcd\xa7\x95\x2a\xc8\x2a\xab\x39\x68\x61\xb9\x06\xeb\x3d\x07\x1b\x24\xb7\x60\xd4\x48\x51\x09\x58\x46\xca\xac\xf0\x4c\x02\xe2\x44\x6a\x2a\xe3\x9d\x14\xa0\x25\x16\x82\xcc\xf0\xc4\x97\x88\x23\x8b\xba\x5b\xb8\x89\x96\xe0\x35\xb5\xb0\x06\x65\x1d\x07\xf4\x9a\x1d\x54\xd4\x60\xc6\x78\x8e\xe6\xa0\xd0\x60\x1c\xd7\xe0\xac\x27\x73\xf9\xc1\xf0\x0b\xab\xd2\x20\x51\x9e\x51\x30\x0c\x48\x89\x6c\x1f\x96\xc7\xb5\xb2\xe0\x05\x75\x52\x41\x7a\x84\xf5\x5c\x82\x17\x48\xf9\x92\xdc\x83\x0e\x6a\x24\x2d\xd8\xc0\x44\xda\xd1\x5c\x81\xd3\x38\xd1\xc4\xdd\x71\x03\x42\x60\x8a\xae\xb0\x54\xe6\x5e\xa8\xc4\x61\x4f\x42\x6c\x84\x60\x23\x28\x41\x28\xf6\xa4\x60\x47\x08\xea\x71\xcd\x35\x78\x4f\x53\x5e\x5a\x53\x08\xf2\x4c\x39\x6a\x4b\x81\x14\x54\x69\xb9\x02\x2b\xec\x48\xf7\xe3\x03\xc5\xcf\x4f\x64\xda\xdf\x19\x9a\x8a\x29\xbc\xa8\xc8\x1a\x21\x30\x71\x1c\x7b\x92\x72\xfd\x88\x44\x87\xd9\x13\xa8\x23\x5f\x14\xfa\xc7\x35\x1a\x70\x81\xba\xc8\x58\xbf\x1a\xcd\xfa\x88\x2a\x0d\x5e\x41\x16\x19\xc7\x41\xd3\xc8\x30\x9e\x50\x8c\x55\x07\x1a\x85\x64\x82\x2b\x50\x84\xa1\x90\xa2\x93\xd2\x6c\xad\xdf\x49\xf2\xdc\xed\x01\xa5\x03\xe7\xcd\x4a\x81\x43\x5b\xa7\xe6\x20\xa1\x02\x41\x27\x68\x44\xba\xe3\x54\x9a\xa9\xa9\x87\xe4\x9e\x56\x80\xda\xa4\xda\xd0\x82\x66\x87\x92\x7e\xa2\x0d\x8d\xd1\x1d\x0d\x0b\xe3\x1e\xd7\xd2\x03\x5a\x6e\xc0\x39\x53\x08\xa6\xc0\x23\x99\x29\x2d\x32\x0b\xd2\x23\x77\x20\xcc\x9e\x46\x10\x5e\xa5\xaa\x0d\x48\xce\x79\xcf\x2d\xb8\x24\xaf\x42\x0d\x96\x82\xec\x3c\x16\x12\x2c\x0d\x5e\x4f\x71\xf3\x82\x3a\x47\x93\x56\x99\x88\xd4\x1a\xd4\xbe\xd4\x4b\x09\x64\x22\x25\x84\x34\xbd\x52\x37\x00\xd2\x86\x57\x14\x73\x61\x78\x9a\x70\x63\xf5\xa6\x84\xa4\x1c\x50\xf3\xeb\x89\xb2\x80\xa8\x52\x4c\x83\xa7\x84\x3b\x54\xe4\x94\x32\xd4\xa1\x01\x27\x3a\xd5\x5d\x0a\x8a\xb4\x16\x50\x27\xb3\x4c\x6a\x17\xb2\x84\x8a\x80\xee\x0f\x2e\xe9\x21\x35\x14\xa7\xe6\xb0\xd4\xdb\x81\x34\x59\x3f\x92\x34\x75\x34\x4d\x5a\xb2\x3c\x05\x62\x1c\x0d\x12\x9c\xa0\x4b\x9a\x12\xed\x40\x62\xda\xa0\x2b\xd2\xa5\x4b\x9a\xf4\x69\x1d\x68\xcc\x5b\xa2\x03\x65\x46\x06\x3b\x92\x96\xae\x84\xc7\x75\x4a\x0c\x0d\x73\xa1\xd4\x2a\x55\x01\xd5\x84\x57\x05\xc1\x0a\xe3\x40\x6b\x99\x14\x90\x9f\xc6\xaa\x03\x8d\x82\x46\x63\xaa\x2a\x0e\x4e\xd1\xbc\x15\x9e\xe2\x65\xad\xdf\x17\x12\xe1\xf9\x9d\x0c\xd4\xd4\x2b\x3e\x96\x15\xb9\x2e\x93\x98\xa3\x51\xa1\xb5\x1e\x27\x92\x01\x83\x21\x5d\xf5\x63\x83\xe2\x44\x53\x69\x8d\xc3\x4b\x0b\xc7\x53\x69\x4d\x74\x2a\xad\x49\xd5\xe3\x15\x8d\x64\xe5\xc0\x04\x35\x56\xb3\xff\x18\x28\xd4\x7f\xd0\x7e\xd8\xa1\x27\x4e\x9a\xc6\xb3\xbb\xb3\x53\x7a\x23\xdc\xbf\x55\x8e\xaf\xaa\x7d\x57\x7c\xef\x8d\xdf\xd9\x32\x4a\x85\x3e\x04\x17\x54\x2c\x72\x6f\x4a\x27\xb4\x2a\x16\x66\xa1\xe2\x32\x6a\xf8\xd2\x67\x04\xf7\xec\x3d\xf5\xd9\x4b\xf7\x2e\xef\x58\xbe\xd9\xc4\xa6\x9c\x5e\x8a\xe7\x6c\xb9\x6d\xd2\xf7\xf4\xab\xbe\x2b\x7e\x64\xff\x75\x78\xf9\x25\xd1\x7f\xed\xf7\x52\x65\x5b\x6c\xd7\xb1\x19\xa0\xe8\x62\x3e\xc4\xcb\x3a\xd2\xd3\xab\x97\xa3\xc0\xcb\x1f\x7f\x3e\x9c\x9b\xce\x40\xdf\x15\x6c\x4e\x9e\x3c\xb1\x0e\x20\xf4\x59\x00\xa3\x1d\x17\xab\xaa\x2e\x5f\x4d\x87\x0e\x30\x7f\x4d\xbf\xd5\xf2\xd5\x0f\xaf\x5e\xde\xc6\xaf\xc3\xeb\x58\xb4\x65\xec\x5e\xd2\x6b\xfc\x7d\xd5\x94\xed\xfd\x8f\xc7\xd6\x1e\x3b\xf5\xea\xe5\x51\xe8\x62\x53\xb4\x65\xd5\xdc\xf1\xaa\x29\xe3\xd7\xd8\x73\x67\x62\xcc\xa5\x5d\xa0\x09\x4e\xda\x72\xa1\x97\xa5\xb4\x18\x23\x7a\x55\x62\x1e\x0d\x7c\xe9\x8f\xdd\xf9\xdf\x81\x4d\x2c\x7d\x0c\x46\x19\xb5\x08\x6e\xb9\x34\x65\xa9\xe5\x62\x69\x2d\x4a\x2c\xa5\xf4\xf1\x19\xe0\x5f\xd3\xd7\xc4\x77\x72\xf4\x4d\xd6\x9f\x3e\xc0\xcc\x22\x96\x76\x89\xda\x59\x6b\xb4\x34\x21\x2f\x16\x85\xce\x31\x96\xb9\x5a\x16\x3e\xb8\xbf\x25\xfe\xc5\xe1\xeb\xaa\x2a\xf7\xff\xf7\x5b\xe4\x7d\x55\xf0\xb2\x6b\x37\x65\x7b\xdf\xf0\xfb\xb6\x5b\xaf\xda\x3a\xd2\xb1\xe9\x23\xe7\x74\x36\x7e\xad\x9d\xce\xc6\x7f\x1e\xfe\x77\x00\x00\x00\xff\xff\xbf\x00\x35\x22\x4d\x14\x00\x00") +var _web_uiV2IndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x5f\x6f\xdc\xc6\x11\x7f\xf7\xa7\xd8\xb0\x15\xec\x00\xdd\xb9\xdd\xd9\xff\x89\x4e\x80\x22\x2b\x89\x8b\xc8\x32\x64\xd9\x88\x9f\x0c\x1e\xb9\xa7\xa3\xcb\x23\xaf\x24\x75\xb2\x54\xe4\xbb\x17\xb3\xe4\x9d\x4e\xb6\x9b\xa2\xe8\x83\xf6\x86\x3b\xb3\xbf\xf9\x3f\x4b\xea\xf8\xbb\x97\x97\x67\xd7\x1f\xde\x9c\xb3\xd5\xb0\xae\x4f\x9e\x1d\xd3\x0f\x2b\xea\xbc\xef\xe7\x59\x5c\x2f\x62\xc7\xeb\x36\x2f\xab\xe6\x26\x3b\x79\xc6\xd8\xf1\x2a\xe6\x25\x11\x8c\x1d\xaf\xe3\x90\xb3\x62\x95\x77\x7d\x1c\xe6\xd9\xed\xb0\xe4\x3e\x3b\x64\xad\x86\x61\xc3\xe3\x3f\x6f\xab\xed\x3c\xfb\x9d\xbf\x3b\xe5\x67\xed\x7a\x93\x0f\xd5\xa2\x8e\x19\x2b\xda\x66\x88\xcd\x30\xcf\x5e\x9d\xcf\x63\x79\x13\x77\x27\x87\x6a\xa8\xe3\xc9\x59\xdb\xf4\xb7\x35\x5b\xdc\xb3\x5f\xf3\x7e\x55\x9d\xb5\xdd\xe6\x78\x36\xb2\x0e\x14\x34\xf9\x3a\xce\xb3\x32\xf6\x45\x57\x6d\x86\xaa\x6d\x0e\x60\xb3\xaf\x05\xb7\x55\xbc\xdb\xb4\xdd\x70\x20\x75\x57\x95\xc3\x6a\x5e\xc6\x6d\x55\x44\x9e\x1e\xfe\xc6\xaa\xa6\x1a\xaa\xbc\xe6\x7d\x91\xd7\x71\x2e\xb3\x93\x67\x09\xe9\xd9\x21\x54\x91\xec\xe3\xb7\xd5\xac\x68\x9b\x65\x75\x33\x8b\xcd\xb6\xea\xda\x66\x1d\x9b\x43\xf8\x23\xf7\xd3\x11\xe2\xba\x2d\x6f\xeb\xf8\xa6\x8b\xcb\xea\xf3\x11\xe2\x91\x3a\x3d\x42\xdc\x23\xd0\x0e\x9e\x1d\x21\x1e\x40\xec\xa5\x36\x5d\x5b\xde\x16\xe4\xda\x5e\xac\x6b\xdb\xe1\xdd\xd5\x6f\x7b\x91\xd9\x6d\x35\xdb\x33\xeb\xb6\xc8\x49\xfa\xfa\x7e\x13\xf7\x12\xf9\xed\xd0\xee\x25\xce\x29\xa5\xe7\xaf\xdf\x4f\xdc\x64\xe0\xcf\xe7\xa7\xd7\xef\xae\xce\xdf\x1e\xee\x95\x3d\xaf\xd6\x9b\xae\xdd\xc6\x92\xe7\x9f\xf2\xc9\xf0\xa1\xbb\x8d\x47\xee\xe5\x04\xf5\xfb\xf5\xf9\xeb\x97\x1f\xdf\x5c\x5d\x5e\x5f\x52\x05\x3d\x39\xff\x32\x1f\x26\x0b\x96\x79\xdd\xa7\x43\xbb\x73\xa7\x6f\xde\x1c\x4a\x52\x44\xff\x24\x2c\xdb\xd8\xf5\x93\xff\x49\x02\x01\x41\xd0\xd3\x0e\xae\x8b\x7d\xf5\x10\xdf\xc6\x8e\x92\xf8\x32\x2e\xf3\xdb\x7a\xe8\x0f\x15\x54\xcd\xa7\x98\x62\xf8\x73\x5e\x0c\x6d\x57\xc5\x1d\xd7\x10\x97\xaa\x62\xaf\x8c\x32\xd7\xb5\x75\x1d\xbb\x83\xad\xf5\xa6\x6d\xa6\xa4\x98\x47\x2f\xce\x2e\x5f\xbf\x7d\xf7\xdb\xc7\x5f\x5e\x5d\x7f\x7c\xfb\xeb\xe9\x63\xb0\x45\xb4\xb9\x2e\x85\xdb\x03\x4c\x82\xef\xcf\xaf\xde\xbe\xba\x7c\xbd\x17\xdc\x4a\x40\x50\x5c\x7a\xcd\x6f\xf6\x87\x78\x19\xb7\x47\x28\x8e\xd0\x1f\xe0\x84\x2f\xa1\x7e\x7a\xf5\xfa\xf4\xea\xc3\x47\x8a\xf9\x1e\xae\xed\xfb\x2f\xc5\x5e\x5e\x9e\xbd\xbb\x38\x7f\x7d\x7d\x7a\xfd\xea\xf2\xf5\xc7\xc3\x9a\xa1\xce\xec\x8f\xd4\xe9\x6c\x76\x77\x77\x07\x63\xcc\xa1\x6a\x67\x65\x5b\x7c\x85\x72\x76\xf9\xe6\xc3\xd5\xab\x5f\x7e\xbd\xfe\x13\x84\x15\x35\x69\xd1\x76\x1b\x28\xda\xf5\x7f\x06\xf8\x70\x7e\x7a\xf5\x98\x47\x21\xfd\x5e\x74\xd1\xb5\x77\x7d\xec\xaa\xe5\xfd\x61\xe2\x86\xd8\xef\x32\xf9\xa4\xf0\xe2\x67\x6a\xe3\xd3\xcd\xa6\xae\xc6\x72\xff\xa5\x6e\x17\x79\xfd\xb4\xdc\x32\x36\x9b\x46\x40\x5d\x35\xff\x60\x5d\xac\xe7\x59\x55\xd0\x8c\x18\xee\x37\x71\x9e\x55\xeb\xfc\x26\xce\x36\xcd\x4d\xc6\x56\x5d\x5c\xce\x33\x6a\xa4\xbc\xef\xe3\xd0\xcf\x96\xf9\x96\x44\xb9\xc2\xcf\x0a\xb9\xd5\xd6\x19\x95\xa3\x30\x85\xcd\x6d\xb9\x70\xcb\xa0\x4a\x51\xca\x45\xae\xc4\xa2\x0c\x0a\x12\x08\x15\x61\x3f\xcf\xd2\x91\xec\xff\xd6\x2c\xed\x67\x69\xb9\x75\x58\x28\xa9\x9c\xb6\xda\x2e\x50\x2f\x50\x99\x45\x30\x52\x7a\xe3\x8a\x32\x2f\xe3\x13\xcd\xe9\xc8\x6e\x5a\x8d\xaa\xab\x66\x88\x37\x5d\x35\xdc\xcf\xb3\x6c\xb4\xa3\x1f\xee\xeb\xd8\xaf\x62\x1c\xbe\xa1\x7c\x1b\x9b\xb2\xed\x78\xa1\xf2\xa0\xbc\xd0\x4a\xc5\x25\x2e\x31\x2e\x17\x3a\x96\x5a\xb9\x52\x2d\x8c\x5e\x28\x09\x45\xdf\x3f\xf1\xf0\x7f\x54\xb3\xef\x71\x1e\x17\x28\x83\x5c\xba\x65\x19\x9d\x59\x96\x45\x0c\xd6\x84\xa5\x2b\x17\xa1\x74\xa2\xb4\x7a\xd2\x34\xce\x5f\xc6\x8e\x67\xbb\xdb\xe7\x78\xd1\x96\xf7\x93\x09\x4d\x3b\xce\xff\xf1\x31\x6d\x95\xd5\x96\x25\x13\xe6\xd9\x3a\xef\x6e\xaa\xe6\x07\x26\x18\x8d\xc1\x1f\xb3\x47\xa9\x24\xb9\xc2\x93\xbf\xe7\xdb\xfc\x6d\x42\x60\x57\x74\x5b\x75\xb1\x3c\x9e\xad\xf0\x0b\xc1\xcd\xc9\x9b\x3a\xe6\x7d\x64\xb1\xc9\x17\x75\x64\x07\xa7\xaa\x86\xdd\xb7\xb7\x1d\xbb\x8b\x0b\x36\x15\x32\x1b\x5a\x76\xdb\x47\x36\xdd\x63\xef\x5e\xc1\xf1\x6c\x73\x60\xe0\xac\xac\xb6\x93\xf9\xb3\xa7\xf6\x1f\xf7\xdb\x1b\x36\x5e\x4b\x99\xb4\x3e\x63\xab\x58\xdd\xac\x86\x79\x66\x54\xc6\x3e\xaf\xeb\xa6\x9f\x67\xd4\x7c\x3f\x8c\x9d\x77\xa7\xa0\xed\x6e\x66\x28\x84\x98\xf5\xdb\x9b\xec\xe4\xf8\x86\x2d\xab\xba\x9e\x67\x7f\x09\x32\xfc\x7c\xea\xb3\xf4\xc8\xbb\x5b\x0a\x46\xdc\xc6\xa6\x2d\xcb\xec\xe4\x78\x93\x0f\x2b\x56\xce\xb3\x0b\xb4\x20\x9c\x67\x0a\x41\x62\x6e\xc0\x78\xcb\xc6\x55\x30\xc9\x24\xd1\xce\x71\x03\x26\x84\x91\x9e\x56\x41\x7c\xbe\xdb\xb1\x17\xca\x81\x10\x81\x61\x00\x85\x3e\x47\x30\x96\xa5\x65\x44\x21\x92\xef\x36\x8d\x9c\xd6\x11\x63\x2f\x7b\xa1\x2d\x04\x69\x99\x92\x60\x6d\xf8\x0a\x03\x84\x91\x1c\x50\x16\x1c\x04\x7a\x10\xd6\x8e\x84\x54\x9c\x58\x80\xf2\x42\x6b\x30\xde\x33\x34\x20\xec\x68\x84\x61\xe3\xba\x53\x65\x1d\x72\x08\x01\x93\x05\x7e\x5a\x47\x26\x48\x81\x1c\xc1\xeb\xf1\x8c\x9e\xd6\xc4\x64\x1a\xac\xb3\xe0\xac\x2e\x40\x38\x24\x1f\x41\x78\xb2\xd3\x81\x40\xc7\x64\x8e\xa0\xad\x62\xe3\x3a\xe2\x49\x08\x48\x50\xc2\xa9\x0b\xa3\x20\x28\x24\xcf\xb4\x40\x32\x4c\x3b\x36\xae\x3b\xc3\xc2\x28\x3a\x06\x28\x4c\xeb\x8e\x29\xac\x26\x91\xd1\x9b\xa7\x47\x19\x42\xd0\x9e\x64\x5c\xda\x9f\x96\x1d\x4f\x22\x39\xe9\xa4\x05\x6b\x35\xfd\x25\x8e\xa0\x88\x01\xa2\xbf\x30\x12\x3c\x9d\x31\x20\x85\xfa\x46\xda\xa4\x20\xec\xa0\x4d\x01\x42\x69\x40\xe9\x41\x68\x05\x5a\x05\xf2\x1b\xac\xf1\xdf\xf4\x46\x2a\x32\x15\xbd\xbb\xd0\x01\x82\xd1\x4c\x0b\x90\xf2\x6b\x05\xa0\xa4\xe6\x12\x84\x72\x29\xab\xa0\x28\xa9\x12\x3d\x38\x94\x9c\x98\x2c\x31\x2f\xb4\x87\xe0\x34\x93\x16\x7c\xf8\x06\x4a\x70\x5c\x81\xf6\xae\x00\xb4\x1a\xb4\xb6\xa0\x9c\xa1\x78\x81\x92\x8e\x49\xd0\xee\x69\x39\x8d\xe9\x41\x4f\x66\x0b\xe1\xb3\xd9\xd3\x7e\x30\x68\x99\x41\xb0\x42\x15\x5c\x6a\x50\x41\x31\xc1\xa9\x4f\x2c\x97\x12\x8c\x75\xd3\x03\x1a\xf0\xca\x9e\x81\xb6\x96\x49\x04\x1d\x3c\xfd\x48\x45\xc9\x96\x6c\x04\x22\x32\x47\x03\x41\x59\x36\xfd\x8c\xb9\x91\xe9\x30\x33\xa0\x84\xab\xb9\x02\x69\x1d\xd3\x20\xa5\x3b\x45\x01\xc1\x22\x9b\x7e\xc4\x28\xef\x40\x09\xcd\x3c\xa0\x3a\x93\x02\x64\xd0\x4c\x4a\x70\x52\x31\x03\x8e\x49\x0f\xd4\x9d\x4e\x6a\xd2\xea\xac\xa2\x68\x4a\xcd\x1c\x78\x8b\x4c\x83\xf6\xa4\x4e\x18\x3a\x63\x02\x89\x1b\xa5\xf3\x6f\xe9\x41\x09\x3e\x50\x02\xd1\xd5\x64\x93\x27\x9b\x50\x25\x0f\xbc\x64\xd3\xcf\x14\xc1\xbd\x07\xf2\xe1\x49\x08\xad\x64\x4a\x80\x34\xef\xa5\xa3\xe2\x2c\x04\xd7\xa3\x26\x6a\x2e\xee\xc0\x1b\x16\x40\x87\x89\x44\xd0\x9e\xca\xd2\x80\xd0\x1e\x14\x5a\xe6\x00\x0d\x82\x0f\xa6\xe6\x60\x2c\x35\x9f\x56\xaa\x20\xab\xac\xe6\xa0\x85\xe5\x1a\xac\xf7\x1c\x6c\x90\xdc\x82\x51\x23\x45\x25\x60\x19\x29\xb3\xc2\x33\x09\x88\x13\xa9\xa9\x8c\xb7\x52\x80\x96\x58\x08\x32\xc3\x13\x5f\x22\x8e\x2c\xea\x6e\xe1\x26\x5a\x82\xd7\xd4\xc2\x1a\x94\x75\x1c\xd0\x6b\xb6\x57\x51\x83\x19\xe3\x39\x9a\x83\x42\x83\x71\x5c\x83\xb3\x9e\xcc\xe5\x7b\xc3\xcf\xac\x4a\x83\x44\x79\x46\xc1\x30\x20\x25\xb2\x5d\x58\x1e\xd6\xca\x82\x17\xd4\x49\x05\xe9\x11\xd6\x73\x09\x5e\x20\xe5\x4b\x72\x0f\x3a\xa8\x91\xb4\x60\x03\x13\x69\x47\x73\x05\x4e\xe3\x44\x13\x77\xcb\x0d\x08\x81\x29\xba\xc2\x52\x99\x7b\xa1\x12\x87\x3d\x0a\xb1\x11\x82\x8d\xa0\x04\xa1\xd8\xa3\x82\x2d\x21\xa8\x87\x35\xd7\xe0\x3d\x4d\x79\x69\x4d\x21\xc8\x33\xe5\xa8\x2d\x05\x52\x50\xa5\xe5\x0a\xac\xb0\x23\xdd\x8f\x0f\x14\x3f\x3f\x91\x69\x7f\x6b\x68\x2a\xa6\xf0\xa2\x22\x6b\x84\xc0\xc4\x71\xec\x51\xca\xf5\x23\x12\x1d\x66\x8f\xa0\x8e\x7c\x51\xe8\x1f\xd6\x68\xc0\x05\xea\x22\x63\xfd\x6a\x34\xeb\x3d\xaa\x34\x78\x05\x59\x64\x1c\x07\x4d\x23\xc3\x78\x42\x31\x56\xed\x69\x14\x92\x09\xae\x40\x11\x86\x42\x8a\x4e\x4a\xb3\xb5\x7e\x2b\xc9\x73\xb7\x03\x94\x0e\x9c\x37\x2b\x05\x0e\x6d\x9d\x9a\x83\x84\x0a\x04\x9d\xa0\x11\xe9\x8e\x53\x69\xa6\xa6\x1e\x92\x3b\x5a\x01\x6a\x93\x6a\x43\x0b\x9a\x1d\x4a\xfa\x89\x36\x34\x46\xb7\x34\x2c\x8c\x7b\x58\x4b\x0f\x68\xb9\x01\xe7\x4c\x21\x98\x02\x8f\x64\xa6\xb4\xc8\x2c\x48\x8f\xdc\x81\x30\x3b\x1a\x41\x78\x95\xaa\x36\x20\x39\xe7\x3d\xb7\xe0\x92\xbc\x0a\x35\x58\x0a\xb2\xf3\x58\x48\xb0\x34\x78\x3d\xc5\xcd\x0b\xea\x1c\x4d\x5a\x65\x22\x52\x6b\x50\xfb\x52\x2f\x25\x90\x89\x94\x10\xd2\xf4\x4a\xdd\x00\x48\x1b\x5e\x51\xcc\x85\xe1\x69\xc2\x8d\xd5\x9b\x12\x92\x72\x40\xcd\xaf\x27\xca\x02\xa2\x4a\x31\x0d\x9e\x12\xee\x50\x91\x53\xca\x50\x87\x06\x9c\xe8\x54\x77\x29\x28\xd2\x5a\x40\x9d\xcc\x32\xa9\x5d\xc8\x12\x2a\x02\xba\x3f\xb8\xa4\x87\xd4\x50\x9c\x9a\xc3\x52\x6f\x07\xd2\x64\xfd\x48\xd2\xd4\xd1\x34\x69\xc9\xf2\x14\x88\x71\x34\x48\x70\x82\x2e\x69\x4a\xb4\x03\x89\x69\x83\xae\x48\x97\x2e\x69\xd2\xa7\x75\xa0\x31\x6f\x89\x0e\x94\x19\x19\xec\x48\x5a\xba\x12\x1e\xd6\x29\x31\x34\xcc\x85\x52\xab\x54\x05\x54\x13\x5e\x15\x04\x2b\x8c\x03\xad\x65\x52\x40\x7e\x1a\xab\xf6\x34\x0a\x1a\x8d\xa9\xaa\x38\x38\x45\xf3\x56\x78\x8a\x97\xb5\x7e\x57\x48\x84\xe7\xb7\x32\x50\x53\xaf\xf8\x58\x56\xe4\xba\x4c\x62\x8e\x46\x85\xd6\x7a\x9c\x48\x06\x0c\x86\x74\xd5\x8f\x0d\x8a\x13\x4d\xa5\x35\x0e\x2f\x2d\x1c\x4f\xa5\x35\xd1\xa9\xb4\x26\x55\x0f\x17\x34\x92\x95\x03\x13\xd4\x58\xcd\xfe\x7d\xa0\x50\xff\x46\xfb\x61\x8b\x9e\x38\x69\x1a\xcf\x6e\x4e\x8e\xe9\x8d\x70\xf7\x56\x39\xbe\xaa\xf6\x5d\xf1\xad\x37\x7e\x67\xcb\x28\x15\xfa\x10\x5c\x50\xb1\xc8\xbd\x29\x9d\xd0\xaa\x58\x98\x85\x8a\xcb\xa8\xe1\x53\x9f\x11\xdc\x93\xf7\xd4\x27\x2f\xdd\xdb\xbc\x63\xf9\x66\x13\x9b\x72\x7a\x29\x9e\xb3\xe5\x6d\x93\xbe\xba\x5f\xf4\x5d\xf1\x3d\xfb\xd7\xfe\xe5\x97\x44\xff\xda\xef\xa4\xca\xb6\xb8\x5d\xc7\x66\x80\xa2\x8b\xf9\x10\xcf\xeb\x48\x4f\x2f\x9e\x8f\x02\xcf\xbf\xff\x71\x7f\x6e\x3a\x03\x7d\x57\xb0\x39\x79\xf2\xc8\xda\x83\xd0\x67\x01\x8c\x76\x9c\xad\xaa\xba\x7c\x31\x1d\xda\xc3\xfc\x31\xfd\x56\xcb\x17\xdf\xbd\x78\x7e\x1d\x3f\x0f\x2f\x63\xd1\x96\xb1\x7b\x4e\xaf\xf1\x77\x55\x53\xb6\x77\xdf\x1f\x5a\x7b\xe8\xd4\x8b\xe7\x07\xa1\x8b\x4d\xd1\x96\x55\x73\xc3\xab\xa6\x8c\x9f\x63\xcf\x9d\x89\x31\x97\x76\x81\x26\x38\x69\xcb\x85\x5e\x96\xd2\x62\x8c\xe8\x55\x89\x79\x34\xf0\xa9\x3f\x74\xe7\xbf\x03\x9b\x58\xfa\x18\x8c\x32\x6a\x11\xdc\x72\x69\xca\x52\xcb\xc5\xd2\x5a\x94\x58\x4a\xe9\xe3\x13\xc0\x3f\xa6\xaf\x89\x6f\xe4\xe8\xab\xac\x3f\x7e\x80\xe5\x3a\x08\xbb\x74\x21\x96\x5e\xc7\xdc\xbb\xa5\x59\xa2\x8f\xa8\x96\x65\x19\x83\xf1\xe2\x8b\xc4\x3f\xdb\x7f\x5d\x55\xe5\xee\xbf\x83\x8b\xbc\xaf\x0a\x5e\x76\xed\xa6\x6c\xef\x1a\x7e\xd7\x76\xeb\x55\x5b\x47\x3a\x36\x7d\xe4\x1c\xcf\xc6\xaf\xb5\xe3\xd9\xf8\x2f\xc6\x7f\x07\x00\x00\xff\xff\xbf\x38\x01\x2f\x73\x14\x00\x00") func web_uiV2IndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -1450,7 +778,7 @@ func web_uiV2IndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/index.html", size: 5197, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/index.html", size: 5235, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1470,7 +798,7 @@ func web_uiV2RobotsTxt() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "web_ui/v2/robots.txt", size: 51, mode: os.FileMode(420), modTime: time.Unix(1539276847, 0)} + info := bindataFileInfo{name: "web_ui/v2/robots.txt", size: 51, mode: os.FileMode(420), modTime: time.Unix(1539613453, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1527,38 +855,6 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "web_ui/v1/index.html": web_uiV1IndexHtml, - "web_ui/v1/static/android-chrome-192x192.png": web_uiV1StaticAndroidChrome192x192Png, - "web_ui/v1/static/android-chrome-512x512.png": web_uiV1StaticAndroidChrome512x512Png, - "web_ui/v1/static/apple-touch-icon-114x114.png": web_uiV1StaticAppleTouchIcon114x114Png, - "web_ui/v1/static/apple-touch-icon-120x120.png": web_uiV1StaticAppleTouchIcon120x120Png, - "web_ui/v1/static/apple-touch-icon-144x144.png": web_uiV1StaticAppleTouchIcon144x144Png, - "web_ui/v1/static/apple-touch-icon-152x152.png": web_uiV1StaticAppleTouchIcon152x152Png, - "web_ui/v1/static/apple-touch-icon-57x57.png": web_uiV1StaticAppleTouchIcon57x57Png, - "web_ui/v1/static/apple-touch-icon-60x60.png": web_uiV1StaticAppleTouchIcon60x60Png, - "web_ui/v1/static/apple-touch-icon-72x72.png": web_uiV1StaticAppleTouchIcon72x72Png, - "web_ui/v1/static/apple-touch-icon-76x76.png": web_uiV1StaticAppleTouchIcon76x76Png, - "web_ui/v1/static/apple-touch-icon.png": web_uiV1StaticAppleTouchIconPng, - "web_ui/v1/static/application.min.js": web_uiV1StaticApplicationMinJs, - "web_ui/v1/static/base.css": web_uiV1StaticBaseCss, - "web_ui/v1/static/base.css.map": web_uiV1StaticBaseCssMap, - "web_ui/v1/static/bootstrap.min.css": web_uiV1StaticBootstrapMinCss, - "web_ui/v1/static/consul-logo.png": web_uiV1StaticConsulLogoPng, - "web_ui/v1/static/favicon-128.png": web_uiV1StaticFavicon128Png, - "web_ui/v1/static/favicon-16x16.png": web_uiV1StaticFavicon16x16Png, - "web_ui/v1/static/favicon-196x196.png": web_uiV1StaticFavicon196x196Png, - "web_ui/v1/static/favicon-32x32.png": web_uiV1StaticFavicon32x32Png, - "web_ui/v1/static/favicon-96x96.png": web_uiV1StaticFavicon96x96Png, - "web_ui/v1/static/favicon.ico": web_uiV1StaticFaviconIco, - "web_ui/v1/static/favicon.png": web_uiV1StaticFaviconPng, - "web_ui/v1/static/loading-cylon-pink.svg": web_uiV1StaticLoadingCylonPinkSvg, - "web_ui/v1/static/mstile-144x144.png": web_uiV1StaticMstile144x144Png, - "web_ui/v1/static/mstile-150x150.png": web_uiV1StaticMstile150x150Png, - "web_ui/v1/static/mstile-310x150.png": web_uiV1StaticMstile310x150Png, - "web_ui/v1/static/mstile-310x310.png": web_uiV1StaticMstile310x310Png, - "web_ui/v1/static/mstile-70x70.png": web_uiV1StaticMstile70x70Png, - "web_ui/v1/static/safari-pinned-tab.svg": web_uiV1StaticSafariPinnedTabSvg, - "web_ui/v1/static/tada.png": web_uiV1StaticTadaPng, "web_ui/v2/assets/android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png": web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png, "web_ui/v2/assets/android-chrome-512x512-707625c5eb04f602ade1f89a8868a329.png": web_uiV2AssetsAndroidChrome512x512707625c5eb04f602ade1f89a8868a329Png, "web_ui/v2/assets/apple-touch-icon-114x114-49e20f98710f64b0cae7545628a94496.png": web_uiV2AssetsAppleTouchIcon114x11449e20f98710f64b0cae7545628a94496Png, @@ -1572,8 +868,8 @@ var _bindata = map[string]func() (*asset, error){ "web_ui/v2/assets/apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png": web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng, "web_ui/v2/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": web_uiV2AssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, "web_ui/v2/assets/consul-logo-707625c5eb04f602ade1f89a8868a329.png": web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png, - "web_ui/v2/assets/consul-ui-5bed6f2476654159acbc4a2eda3fc897.js": web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897Js, - "web_ui/v2/assets/consul-ui-9cafc4780f8a37506d814e36abac7af1.css": web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1Css, + "web_ui/v2/assets/consul-ui-a4906f79ed84ea87f5f28e23fdde9580.js": web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580Js, + "web_ui/v2/assets/consul-ui-eb2191f7fde75fdce9659f7db9d70d64.css": web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64Css, "web_ui/v2/assets/encoding-5ed8e95353b97ff5dd41bf66212d118e.js": web_uiV2AssetsEncoding5ed8e95353b97ff5dd41bf66212d118eJs, "web_ui/v2/assets/encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js": web_uiV2AssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js, "web_ui/v2/assets/favicon-128-08e1368e84f412f6ad30279d849b1df9.png": web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png, @@ -1592,8 +888,8 @@ var _bindata = map[string]func() (*asset, error){ "web_ui/v2/assets/safari-pinned-tab.svg": web_uiV2AssetsSafariPinnedTabSvg, "web_ui/v2/assets/vendor-76de132899793eca85d7043cb5b3efe4.js": web_uiV2AssetsVendor76de132899793eca85d7043cb5b3efe4Js, "web_ui/v2/assets/vendor-c3a9380433ef2f2efb4ed437d3b54b31.css": web_uiV2AssetsVendorC3a9380433ef2f2efb4ed437d3b54b31Css, - "web_ui/v2/index.html": web_uiV2IndexHtml, - "web_ui/v2/robots.txt": web_uiV2RobotsTxt, + "web_ui/v2/index.html": web_uiV2IndexHtml, + "web_ui/v2/robots.txt": web_uiV2RobotsTxt, } // AssetDir returns the file names below a certain @@ -1638,42 +934,6 @@ type bintree struct { var _bintree = &bintree{nil, map[string]*bintree{ "web_ui": &bintree{nil, map[string]*bintree{ - "v1": &bintree{nil, map[string]*bintree{ - "index.html": &bintree{web_uiV1IndexHtml, map[string]*bintree{}}, - "static": &bintree{nil, map[string]*bintree{ - "android-chrome-192x192.png": &bintree{web_uiV1StaticAndroidChrome192x192Png, map[string]*bintree{}}, - "android-chrome-512x512.png": &bintree{web_uiV1StaticAndroidChrome512x512Png, map[string]*bintree{}}, - "apple-touch-icon-114x114.png": &bintree{web_uiV1StaticAppleTouchIcon114x114Png, map[string]*bintree{}}, - "apple-touch-icon-120x120.png": &bintree{web_uiV1StaticAppleTouchIcon120x120Png, map[string]*bintree{}}, - "apple-touch-icon-144x144.png": &bintree{web_uiV1StaticAppleTouchIcon144x144Png, map[string]*bintree{}}, - "apple-touch-icon-152x152.png": &bintree{web_uiV1StaticAppleTouchIcon152x152Png, map[string]*bintree{}}, - "apple-touch-icon-57x57.png": &bintree{web_uiV1StaticAppleTouchIcon57x57Png, map[string]*bintree{}}, - "apple-touch-icon-60x60.png": &bintree{web_uiV1StaticAppleTouchIcon60x60Png, map[string]*bintree{}}, - "apple-touch-icon-72x72.png": &bintree{web_uiV1StaticAppleTouchIcon72x72Png, map[string]*bintree{}}, - "apple-touch-icon-76x76.png": &bintree{web_uiV1StaticAppleTouchIcon76x76Png, map[string]*bintree{}}, - "apple-touch-icon.png": &bintree{web_uiV1StaticAppleTouchIconPng, map[string]*bintree{}}, - "application.min.js": &bintree{web_uiV1StaticApplicationMinJs, map[string]*bintree{}}, - "base.css": &bintree{web_uiV1StaticBaseCss, map[string]*bintree{}}, - "base.css.map": &bintree{web_uiV1StaticBaseCssMap, map[string]*bintree{}}, - "bootstrap.min.css": &bintree{web_uiV1StaticBootstrapMinCss, map[string]*bintree{}}, - "consul-logo.png": &bintree{web_uiV1StaticConsulLogoPng, map[string]*bintree{}}, - "favicon-128.png": &bintree{web_uiV1StaticFavicon128Png, map[string]*bintree{}}, - "favicon-16x16.png": &bintree{web_uiV1StaticFavicon16x16Png, map[string]*bintree{}}, - "favicon-196x196.png": &bintree{web_uiV1StaticFavicon196x196Png, map[string]*bintree{}}, - "favicon-32x32.png": &bintree{web_uiV1StaticFavicon32x32Png, map[string]*bintree{}}, - "favicon-96x96.png": &bintree{web_uiV1StaticFavicon96x96Png, map[string]*bintree{}}, - "favicon.ico": &bintree{web_uiV1StaticFaviconIco, map[string]*bintree{}}, - "favicon.png": &bintree{web_uiV1StaticFaviconPng, map[string]*bintree{}}, - "loading-cylon-pink.svg": &bintree{web_uiV1StaticLoadingCylonPinkSvg, map[string]*bintree{}}, - "mstile-144x144.png": &bintree{web_uiV1StaticMstile144x144Png, map[string]*bintree{}}, - "mstile-150x150.png": &bintree{web_uiV1StaticMstile150x150Png, map[string]*bintree{}}, - "mstile-310x150.png": &bintree{web_uiV1StaticMstile310x150Png, map[string]*bintree{}}, - "mstile-310x310.png": &bintree{web_uiV1StaticMstile310x310Png, map[string]*bintree{}}, - "mstile-70x70.png": &bintree{web_uiV1StaticMstile70x70Png, map[string]*bintree{}}, - "safari-pinned-tab.svg": &bintree{web_uiV1StaticSafariPinnedTabSvg, map[string]*bintree{}}, - "tada.png": &bintree{web_uiV1StaticTadaPng, map[string]*bintree{}}, - }}, - }}, "v2": &bintree{nil, map[string]*bintree{ "assets": &bintree{nil, map[string]*bintree{ "android-chrome-192x192-501b0811835ea92d42937aaf9edfbe08.png": &bintree{web_uiV2AssetsAndroidChrome192x192501b0811835ea92d42937aaf9edfbe08Png, map[string]*bintree{}}, @@ -1689,8 +949,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ "apple-touch-icon-d2b583b1104a1e6810fb3984f8f132ae.png": &bintree{web_uiV2AssetsAppleTouchIconD2b583b1104a1e6810fb3984f8f132aePng, map[string]*bintree{}}, "auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": &bintree{web_uiV2AssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, map[string]*bintree{}}, "consul-logo-707625c5eb04f602ade1f89a8868a329.png": &bintree{web_uiV2AssetsConsulLogo707625c5eb04f602ade1f89a8868a329Png, map[string]*bintree{}}, - "consul-ui-5bed6f2476654159acbc4a2eda3fc897.js": &bintree{web_uiV2AssetsConsulUi5bed6f2476654159acbc4a2eda3fc897Js, map[string]*bintree{}}, - "consul-ui-9cafc4780f8a37506d814e36abac7af1.css": &bintree{web_uiV2AssetsConsulUi9cafc4780f8a37506d814e36abac7af1Css, map[string]*bintree{}}, + "consul-ui-a4906f79ed84ea87f5f28e23fdde9580.js": &bintree{web_uiV2AssetsConsulUiA4906f79ed84ea87f5f28e23fdde9580Js, map[string]*bintree{}}, + "consul-ui-eb2191f7fde75fdce9659f7db9d70d64.css": &bintree{web_uiV2AssetsConsulUiEb2191f7fde75fdce9659f7db9d70d64Css, map[string]*bintree{}}, "encoding-5ed8e95353b97ff5dd41bf66212d118e.js": &bintree{web_uiV2AssetsEncoding5ed8e95353b97ff5dd41bf66212d118eJs, map[string]*bintree{}}, "encoding-indexes-75eea16b259716db4fd162ee283d2ae5.js": &bintree{web_uiV2AssetsEncodingIndexes75eea16b259716db4fd162ee283d2ae5Js, map[string]*bintree{}}, "favicon-128-08e1368e84f412f6ad30279d849b1df9.png": &bintree{web_uiV2AssetsFavicon12808e1368e84f412f6ad30279d849b1df9Png, map[string]*bintree{}}, diff --git a/agent/config/builder.go b/agent/config/builder.go index 5afe86c31..0291b2a67 100644 --- a/agent/config/builder.go +++ b/agent/config/builder.go @@ -574,6 +574,9 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { }) } + datacenter := strings.ToLower(b.stringVal(c.Datacenter)) + + aclsEnabled := false primaryDatacenter := strings.ToLower(b.stringVal(c.PrimaryDatacenter)) if c.ACLDatacenter != nil { b.warn("The 'acl_datacenter' field is deprecated. Use the 'primary_datacenter' field instead.") @@ -581,8 +584,27 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { if primaryDatacenter == "" { primaryDatacenter = strings.ToLower(b.stringVal(c.ACLDatacenter)) } + + // when the acl_datacenter config is used it implicitly enables acls + aclsEnabled = true } + if c.ACL.Enabled != nil { + aclsEnabled = b.boolVal(c.ACL.Enabled) + } + + aclDC := primaryDatacenter + if aclsEnabled && aclDC == "" { + aclDC = datacenter + } + + enableTokenReplication := false + if c.ACLReplicationToken != nil { + enableTokenReplication = true + } + + b.boolValWithDefault(c.ACL.TokenReplication, b.boolValWithDefault(c.EnableACLReplication, enableTokenReplication)) + proxyDefaultExecMode := b.stringVal(c.Connect.ProxyDefaults.ExecMode) proxyDefaultDaemonCommand := c.Connect.ProxyDefaults.DaemonCommand proxyDefaultScriptCommand := c.Connect.ProxyDefaults.ScriptCommand @@ -596,7 +618,7 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { // rt = RuntimeConfig{ // non-user configurable values - ACLDisabledTTL: b.durationVal("acl_disabled_ttl", c.ACLDisabledTTL), + ACLDisabledTTL: b.durationVal("acl.disabled_ttl", c.ACL.DisabledTTL), AEInterval: b.durationVal("ae_interval", c.AEInterval), CheckDeregisterIntervalMin: b.durationVal("check_deregister_interval_min", c.CheckDeregisterIntervalMin), CheckReapInterval: b.durationVal("check_reap_interval", c.CheckReapInterval), @@ -632,18 +654,20 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { GossipWANRetransmitMult: b.intVal(c.GossipWAN.RetransmitMult), // ACL - ACLAgentMasterToken: b.stringVal(c.ACLAgentMasterToken), - ACLAgentToken: b.stringVal(c.ACLAgentToken), - ACLDatacenter: strings.ToLower(b.stringVal(c.ACLDatacenter)), - ACLDefaultPolicy: b.stringVal(c.ACLDefaultPolicy), - ACLDownPolicy: b.stringVal(c.ACLDownPolicy), - ACLEnforceVersion8: b.boolVal(c.ACLEnforceVersion8), - ACLEnableKeyListPolicy: b.boolVal(c.ACLEnableKeyListPolicy), - ACLMasterToken: b.stringVal(c.ACLMasterToken), - ACLReplicationToken: b.stringVal(c.ACLReplicationToken), - ACLTTL: b.durationVal("acl_ttl", c.ACLTTL), - ACLToken: b.stringVal(c.ACLToken), - EnableACLReplication: b.boolVal(c.EnableACLReplication), + ACLEnforceVersion8: b.boolValWithDefault(c.ACLEnforceVersion8, true), + ACLsEnabled: aclsEnabled, + ACLAgentMasterToken: b.stringValWithDefault(c.ACL.Tokens.AgentMaster, b.stringVal(c.ACLAgentMasterToken)), + ACLAgentToken: b.stringValWithDefault(c.ACL.Tokens.Agent, b.stringVal(c.ACLAgentToken)), + ACLDatacenter: aclDC, + ACLDefaultPolicy: b.stringValWithDefault(c.ACL.DefaultPolicy, b.stringVal(c.ACLDefaultPolicy)), + ACLDownPolicy: b.stringValWithDefault(c.ACL.DownPolicy, b.stringVal(c.ACLDownPolicy)), + ACLEnableKeyListPolicy: b.boolValWithDefault(c.ACL.EnableKeyListPolicy, b.boolVal(c.ACLEnableKeyListPolicy)), + ACLMasterToken: b.stringValWithDefault(c.ACL.Tokens.Master, b.stringVal(c.ACLMasterToken)), + ACLReplicationToken: b.stringValWithDefault(c.ACL.Tokens.Replication, b.stringVal(c.ACLReplicationToken)), + ACLTokenTTL: b.durationValWithDefault("acl.token_ttl", c.ACL.TokenTTL, b.durationVal("acl_ttl", c.ACLTTL)), + ACLPolicyTTL: b.durationVal("acl.policy_ttl", c.ACL.PolicyTTL), + ACLToken: b.stringValWithDefault(c.ACL.Tokens.Default, b.stringVal(c.ACLToken)), + ACLTokenReplication: b.boolValWithDefault(c.ACL.TokenReplication, b.boolValWithDefault(c.EnableACLReplication, enableTokenReplication)), // Autopilot AutopilotCleanupDeadServers: b.boolVal(c.Autopilot.CleanupDeadServers), @@ -733,7 +757,7 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { ConnectProxyDefaultScriptCommand: proxyDefaultScriptCommand, ConnectProxyDefaultConfig: proxyDefaultConfig, DataDir: b.stringVal(c.DataDir), - Datacenter: strings.ToLower(b.stringVal(c.Datacenter)), + Datacenter: datacenter, DevMode: b.boolVal(b.Flags.DevMode), DisableAnonymousSignature: b.boolVal(c.DisableAnonymousSignature), DisableCoordinates: b.boolVal(c.DisableCoordinates), @@ -826,10 +850,6 @@ func (b *Builder) Build() (rt RuntimeConfig, err error) { b.warn(`BootstrapExpect is set to 1; this is the same as Bootstrap mode.`) } - if rt.ACLReplicationToken != "" { - rt.EnableACLReplication = true - } - return rt, nil } @@ -1253,9 +1273,9 @@ func (b *Builder) serviceConnectVal(v *ServiceConnect) *structs.ServiceConnect { } } -func (b *Builder) boolValWithDefault(v *bool, default_val bool) bool { +func (b *Builder) boolValWithDefault(v *bool, defaultVal bool) bool { if v == nil { - return default_val + return defaultVal } return *v @@ -1265,9 +1285,9 @@ func (b *Builder) boolVal(v *bool) bool { return b.boolValWithDefault(v, false) } -func (b *Builder) durationVal(name string, v *string) (d time.Duration) { +func (b *Builder) durationValWithDefault(name string, v *string, defaultVal time.Duration) (d time.Duration) { if v == nil { - return 0 + return defaultVal } d, err := time.ParseDuration(*v) if err != nil { @@ -1276,6 +1296,10 @@ func (b *Builder) durationVal(name string, v *string) (d time.Duration) { return d } +func (b *Builder) durationVal(name string, v *string) (d time.Duration) { + return b.durationValWithDefault(name, v, 0) +} + func (b *Builder) intVal(v *int) int { if v == nil { return 0 @@ -1293,13 +1317,17 @@ func (b *Builder) portVal(name string, v *int) int { return *v } -func (b *Builder) stringVal(v *string) string { +func (b *Builder) stringValWithDefault(v *string, defaultVal string) string { if v == nil { - return "" + return defaultVal } return *v } +func (b *Builder) stringVal(v *string) string { + return b.stringValWithDefault(v, "") +} + func (b *Builder) float64Val(v *float64) float64 { if v == nil { return 0 diff --git a/agent/config/config.go b/agent/config/config.go index 22b1b2003..804e80507 100644 --- a/agent/config/config.go +++ b/agent/config/config.go @@ -147,17 +147,29 @@ func Parse(data string, format string) (c Config, err error) { // configuration it should be treated as an external API which cannot be // changed and refactored at will since this will break existing setups. type Config struct { - ACLAgentMasterToken *string `json:"acl_agent_master_token,omitempty" hcl:"acl_agent_master_token" mapstructure:"acl_agent_master_token"` - ACLAgentToken *string `json:"acl_agent_token,omitempty" hcl:"acl_agent_token" mapstructure:"acl_agent_token"` - ACLDatacenter *string `json:"acl_datacenter,omitempty" hcl:"acl_datacenter" mapstructure:"acl_datacenter"` - ACLDefaultPolicy *string `json:"acl_default_policy,omitempty" hcl:"acl_default_policy" mapstructure:"acl_default_policy"` - ACLDownPolicy *string `json:"acl_down_policy,omitempty" hcl:"acl_down_policy" mapstructure:"acl_down_policy"` - ACLEnableKeyListPolicy *bool `json:"acl_enable_key_list_policy,omitempty" hcl:"acl_enable_key_list_policy" mapstructure:"acl_enable_key_list_policy"` - ACLEnforceVersion8 *bool `json:"acl_enforce_version_8,omitempty" hcl:"acl_enforce_version_8" mapstructure:"acl_enforce_version_8"` - ACLMasterToken *string `json:"acl_master_token,omitempty" hcl:"acl_master_token" mapstructure:"acl_master_token"` - ACLReplicationToken *string `json:"acl_replication_token,omitempty" hcl:"acl_replication_token" mapstructure:"acl_replication_token"` - ACLTTL *string `json:"acl_ttl,omitempty" hcl:"acl_ttl" mapstructure:"acl_ttl"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl.tokens" stanza + ACLAgentMasterToken *string `json:"acl_agent_master_token,omitempty" hcl:"acl_agent_master_token" mapstructure:"acl_agent_master_token"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl.tokens" stanza + ACLAgentToken *string `json:"acl_agent_token,omitempty" hcl:"acl_agent_token" mapstructure:"acl_agent_token"` + // DEPRECATED (ACL-Legacy-Compat) - moved to "primary_datacenter" + ACLDatacenter *string `json:"acl_datacenter,omitempty" hcl:"acl_datacenter" mapstructure:"acl_datacenter"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl" stanza + ACLDefaultPolicy *string `json:"acl_default_policy,omitempty" hcl:"acl_default_policy" mapstructure:"acl_default_policy"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl" stanza + ACLDownPolicy *string `json:"acl_down_policy,omitempty" hcl:"acl_down_policy" mapstructure:"acl_down_policy"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl" stanza + ACLEnableKeyListPolicy *bool `json:"acl_enable_key_list_policy,omitempty" hcl:"acl_enable_key_list_policy" mapstructure:"acl_enable_key_list_policy"` + // DEPRECATED (ACL-Legacy-Compat) - pre-version8 enforcement is deprecated. + ACLEnforceVersion8 *bool `json:"acl_enforce_version_8,omitempty" hcl:"acl_enforce_version_8" mapstructure:"acl_enforce_version_8"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl" stanza + ACLMasterToken *string `json:"acl_master_token,omitempty" hcl:"acl_master_token" mapstructure:"acl_master_token"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl.tokens" stanza + ACLReplicationToken *string `json:"acl_replication_token,omitempty" hcl:"acl_replication_token" mapstructure:"acl_replication_token"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl.tokens" stanza + ACLTTL *string `json:"acl_ttl,omitempty" hcl:"acl_ttl" mapstructure:"acl_ttl"` + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl.tokens" stanza ACLToken *string `json:"acl_token,omitempty" hcl:"acl_token" mapstructure:"acl_token"` + ACL ACL `json:"acl,omitempty" hcl:"acl" mapstructure:"acl"` Addresses Addresses `json:"addresses,omitempty" hcl:"addresses" mapstructure:"addresses"` AdvertiseAddrLAN *string `json:"advertise_addr,omitempty" hcl:"advertise_addr" mapstructure:"advertise_addr"` AdvertiseAddrWAN *string `json:"advertise_addr_wan,omitempty" hcl:"advertise_addr_wan" mapstructure:"advertise_addr_wan"` @@ -263,6 +275,7 @@ type Config struct { SnapshotAgent map[string]interface{} `json:"snapshot_agent,omitempty" hcl:"snapshot_agent" mapstructure:"snapshot_agent"` // non-user configurable values + // DEPRECATED (ACL-Legacy-Compat) - moved into the "acl" stanza ACLDisabledTTL *string `json:"acl_disabled_ttl,omitempty" hcl:"acl_disabled_ttl" mapstructure:"acl_disabled_ttl"` AEInterval *string `json:"ae_interval,omitempty" hcl:"ae_interval" mapstructure:"ae_interval"` CheckDeregisterIntervalMin *string `json:"check_deregister_interval_min,omitempty" hcl:"check_deregister_interval_min" mapstructure:"check_deregister_interval_min"` @@ -613,3 +626,23 @@ type Segment struct { Port *int `json:"port,omitempty" hcl:"port" mapstructure:"port"` RPCListener *bool `json:"rpc_listener,omitempty" hcl:"rpc_listener" mapstructure:"rpc_listener"` } + +type ACL struct { + Enabled *bool `json:"enabled,omitempty" hcl:"enabled" mapstructure:"enabled"` + TokenReplication *bool `json:"enable_token_replication,omitempty" hcl:"enable_token_replication" mapstructure:"enable_token_replication"` + PolicyTTL *string `json:"policy_ttl,omitempty" hcl:"policy_ttl" mapstructure:"policy_ttl"` + TokenTTL *string `json:"token_ttl,omitempty" hcl:"token_ttl" mapstructure:"token_ttl"` + DownPolicy *string `json:"down_policy,omitempty" hcl:"down_policy" mapstructure:"down_policy"` + DefaultPolicy *string `json:"default_policy,omitempty" hcl:"default_policy" mapstructure:"default_policy"` + EnableKeyListPolicy *bool `json:"enable_key_list_policy,omitempty" hcl:"enable_key_list_policy" mapstructure:"enable_key_list_policy"` + Tokens Tokens `json:"tokens,omitempty" hcl:"tokens" mapstructure:"tokens"` + DisabledTTL *string `json:"disabled_ttl,omitempty" hcl:"disabled_ttl" mapstructure:"disabled_ttl"` +} + +type Tokens struct { + Master *string `json:"master,omitempty" hcl:"master" mapstructure:"master"` + Replication *string `json:"replication,omitempty" hcl:"replication" mapstructure:"replication"` + AgentMaster *string `json:"agent_master,omitempty" hcl:"agent_master" mapstructure:"agent_master"` + Default *string `json:"default,omitempty" hcl:"default" mapstructure:"default"` + Agent *string `json:"agent,omitempty" hcl:"agent" mapstructure:"agent"` +} diff --git a/agent/config/default.go b/agent/config/default.go index 1589d8ae1..f81385a58 100644 --- a/agent/config/default.go +++ b/agent/config/default.go @@ -30,6 +30,11 @@ func DefaultSource() Source { serfLAN := cfg.SerfLANConfig.MemberlistConfig serfWAN := cfg.SerfWANConfig.MemberlistConfig + // DEPRECATED (ACL-Legacy-Compat) - when legacy ACL support is removed these defaults + // the acl_* config entries here should be transitioned to their counterparts in the + // acl stanza for now we need to be able to detect the new entries not being set (not + // just set to the defaults here) so that we can use the old entries. So the true + // default still needs to reside in the original config values return Source{ Name: "default", Format: "hcl", @@ -38,6 +43,9 @@ func DefaultSource() Source { acl_down_policy = "extend-cache" acl_enforce_version_8 = true acl_ttl = "30s" + acl = { + policy_ttl = "30s" + } bind_addr = "0.0.0.0" bootstrap = false bootstrap_expect = 0 @@ -115,7 +123,7 @@ func DefaultSource() Source { metrics_prefix = "consul" filter_default = true } - + `, } } @@ -167,7 +175,9 @@ func NonUserSource() Source { Name: "non-user", Format: "hcl", Data: ` - acl_disabled_ttl = "120s" + acl = { + disabled_ttl = "120s" + } check_deregister_interval_min = "1m" check_reap_interval = "30s" ae_interval = "1m" diff --git a/agent/config/runtime.go b/agent/config/runtime.go index 883606b9e..4d912cb1d 100644 --- a/agent/config/runtime.go +++ b/agent/config/runtime.go @@ -30,13 +30,6 @@ type RuntimeConfig struct { // non-user configurable values AEInterval time.Duration - // 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. (not user configurable) - // - // hcl: acl_disabled_ttl = "duration" - ACLDisabledTTL time.Duration - CheckDeregisterIntervalMin time.Duration CheckReapInterval time.Duration SegmentLimit int @@ -56,18 +49,30 @@ type RuntimeConfig struct { ConsulRaftLeaderLeaseTimeout time.Duration ConsulServerHealthInterval time.Duration + // ACLDisabledTTL is used by agents to determine how long they will + // wait to check again with the servers if they discover ACLs are not + // enabled. (not user configurable) + // + // hcl: acl.disabled_ttl = "duration" + ACLDisabledTTL time.Duration + + // ACLsEnabled is used to determine whether ACLs should be enabled + // + // hcl: acl.enabled = boolean + ACLsEnabled bool + // 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. // - // hcl: acl_agent_master_token = string + // hcl: acl.tokens.agent_master = string ACLAgentMasterToken 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 'acl_token' will be used. // - // hcl: acl_agent_token = string + // hcl: acl.tokens.agent = string ACLAgentToken string // ACLDatacenter is the central datacenter that holds authoritative @@ -82,7 +87,7 @@ type RuntimeConfig struct { // ACLs are used to black-list, or "deny" which means ACLs are // white-lists. // - // hcl: acl_default_policy = ("allow"|"deny") + // hcl: acl.default_policy = ("allow"|"deny") ACLDefaultPolicy string // ACLDownPolicy is used to control the ACL interaction when we cannot @@ -97,9 +102,10 @@ type RuntimeConfig struct { // * async-cache - Same behaviour as extend-cache, but perform ACL // Lookups asynchronously when cache TTL is expired. // - // hcl: acl_down_policy = ("allow"|"deny"|"extend-cache"|"async-cache") + // hcl: acl.down_policy = ("allow"|"deny"|"extend-cache"|"async-cache") ACLDownPolicy string + // DEPRECATED (ACL-Legacy-Compat) // 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. // @@ -112,14 +118,14 @@ type RuntimeConfig struct { // See https://www.consul.io/docs/guides/acl.html#list-policy-for-keys for // more details. // - // hcl: acl_enable_key_list_policy = (true|false) + // hcl: acl.enable_key_list_policy = (true|false) ACLEnableKeyListPolicy bool // 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. // - // hcl: acl_master_token = string + // hcl: acl.tokens.master = string ACLMasterToken string // ACLReplicationToken is used to fetch ACLs from the ACLDatacenter in @@ -127,19 +133,31 @@ type RuntimeConfig struct { // also enables replication. Replication is only available in datacenters // other than the ACLDatacenter. // - // hcl: acl_replication_token = string + // hcl: acl.tokens.replication = string ACLReplicationToken string - // ACLTTL is used to control the time-to-live of cached ACLs . This has + // ACLtokenReplication is used to indicate that both tokens and policies + // should be replicated instead of just policies + // + // hcl: acl.token_replication = boolean + ACLTokenReplication bool + + // ACLTokenTTL is used to control the time-to-live of cached ACL tokens. This has // a major impact on performance. By default, it is set to 30 seconds. // - // hcl: acl_ttl = "duration" - ACLTTL time.Duration + // hcl: acl.policy_ttl = "duration" + ACLTokenTTL time.Duration + + // ACLPolicyTTL is used to control the time-to-live of cached ACL policies. This has + // a major impact on performance. By default, it is set to 30 seconds. + // + // hcl: acl.token_ttl = "duration" + ACLPolicyTTL time.Duration // ACLToken is the default token used to make requests if a per-request // token is not provided. If not configured the 'anonymous' token is used. // - // hcl: acl_token = string + // hcl: acl.tokens.default = string ACLToken string // AutopilotCleanupDeadServers enables the automatic cleanup of dead servers when new ones @@ -617,15 +635,6 @@ type RuntimeConfig struct { // hcl: discard_check_output = (true|false) DiscardCheckOutput bool - // EnableACLReplication is used to turn on ACL replication when using - // /v1/agent/token/acl_replication_token to introduce the token, instead - // of setting acl_replication_token in the config. Setting the token via - // config will also set this to true for backward compatibility. - // - // hcl: enable_acl_replication = (true|false) - // todo(fs): rename to ACLEnableReplication - EnableACLReplication bool - // EnableAgentTLSForChecks is used to apply the agent's TLS settings in // order to configure the HTTP client used for health checks. Enabling // this allows HTTP checks to present a client certificate and verify diff --git a/agent/config/runtime_test.go b/agent/config/runtime_test.go index c415942f4..fe286bdf1 100644 --- a/agent/config/runtime_test.go +++ b/agent/config/runtime_test.go @@ -1378,6 +1378,7 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { json: []string{`{ "acl_datacenter": "A" }`}, hcl: []string{`acl_datacenter = "A"`}, patch: func(rt *RuntimeConfig) { + rt.ACLsEnabled = true rt.ACLDatacenter = "a" rt.DataDir = dataDir rt.PrimaryDatacenter = "a" @@ -1391,7 +1392,7 @@ func TestConfigFlagsAndEdgecases(t *testing.T) { hcl: []string{`acl_replication_token = "a"`}, patch: func(rt *RuntimeConfig) { rt.ACLReplicationToken = "a" - rt.EnableACLReplication = true + rt.ACLTokenReplication = true rt.DataDir = dataDir }, }, @@ -2809,11 +2810,27 @@ func TestFullConfig(t *testing.T) { "acl_default_policy": "ArK3WIfE", "acl_down_policy": "vZXMfMP0", "acl_enforce_version_8": true, - "acl_enable_key_list_policy": true, + "acl_enable_key_list_policy": true, "acl_master_token": "C1Q1oIwh", "acl_replication_token": "LMmgy5dO", "acl_token": "O1El0wan", "acl_ttl": "18060s", + "acl" : { + "enabled" : true, + "down_policy" : "03eb2aee", + "default_policy" : "72c2e7a0", + "enable_key_list_policy": false, + "policy_ttl": "1123s", + "token_ttl": "3321s", + "enable_token_replication" : true, + "tokens" : { + "master" : "8a19ac27", + "agent_master" : "64fd0e08", + "replication" : "5795983a", + "agent" : "bed2377c", + "default" : "418fdff1" + } + }, "addresses": { "dns": "93.95.95.81", "http": "83.39.91.39", @@ -3344,6 +3361,22 @@ func TestFullConfig(t *testing.T) { acl_replication_token = "LMmgy5dO" acl_token = "O1El0wan" acl_ttl = "18060s" + acl = { + enabled = true + down_policy = "03eb2aee" + default_policy = "72c2e7a0" + enable_key_list_policy = false + policy_ttl = "1123s" + token_ttl = "3321s" + enable_token_replication = true + tokens = { + master = "8a19ac27", + agent_master = "64fd0e08", + replication = "5795983a", + agent = "bed2377c", + default = "418fdff1" + } + } addresses = { dns = "93.95.95.81" http = "83.39.91.39" @@ -3871,6 +3904,9 @@ func TestFullConfig(t *testing.T) { Data: ` { "acl_disabled_ttl": "957s", + "acl" : { + "disabled_ttl" : "957s" + }, "ae_interval": "10003s", "check_deregister_interval_min": "27870s", "check_reap_interval": "10662s", @@ -3910,6 +3946,9 @@ func TestFullConfig(t *testing.T) { Format: "hcl", Data: ` acl_disabled_ttl = "957s" + acl = { + disabled_ttl = "957s" + } ae_interval = "10003s" check_deregister_interval_min = "27870s" check_reap_interval = "10662s" @@ -3982,17 +4021,20 @@ func TestFullConfig(t *testing.T) { // user configurable values - ACLAgentMasterToken: "furuQD0b", - ACLAgentToken: "cOshLOQ2", - ACLDatacenter: "m3urck3z", - ACLDefaultPolicy: "ArK3WIfE", - ACLDownPolicy: "vZXMfMP0", + ACLAgentMasterToken: "64fd0e08", + ACLAgentToken: "bed2377c", + ACLsEnabled: true, + ACLDatacenter: "ejtmd43d", + ACLDefaultPolicy: "72c2e7a0", + ACLDownPolicy: "03eb2aee", ACLEnforceVersion8: true, - ACLEnableKeyListPolicy: true, - ACLMasterToken: "C1Q1oIwh", - ACLReplicationToken: "LMmgy5dO", - ACLTTL: 18060 * time.Second, - ACLToken: "O1El0wan", + ACLEnableKeyListPolicy: false, + ACLMasterToken: "8a19ac27", + ACLReplicationToken: "5795983a", + ACLTokenTTL: 3321 * time.Second, + ACLPolicyTTL: 1123 * time.Second, + ACLToken: "418fdff1", + ACLTokenReplication: true, AdvertiseAddrLAN: ipAddr("17.99.29.16"), AdvertiseAddrWAN: ipAddr("78.63.37.19"), AutopilotCleanupDeadServers: true, @@ -4129,7 +4171,6 @@ func TestFullConfig(t *testing.T) { DisableUpdateCheck: true, DiscardCheckOutput: true, DiscoveryMaxStale: 5 * time.Second, - EnableACLReplication: true, EnableAgentTLSForChecks: true, EnableDebug: true, EnableRemoteScriptChecks: true, @@ -4802,9 +4843,12 @@ func TestSanitize(t *testing.T) { "ACLEnableKeyListPolicy": false, "ACLEnforceVersion8": false, "ACLMasterToken": "hidden", + "ACLPolicyTTL": "0s", "ACLReplicationToken": "hidden", - "ACLTTL": "0s", + "ACLTokenReplication": false, + "ACLTokenTTL": "0s", "ACLToken": "hidden", + "ACLsEnabled": false, "AEInterval": "0s", "AdvertiseAddrLAN": "", "AdvertiseAddrWAN": "", @@ -4919,7 +4963,6 @@ func TestSanitize(t *testing.T) { "DisableUpdateCheck": false, "DiscardCheckOutput": false, "DiscoveryMaxStale": "0s", - "EnableACLReplication": false, "EnableAgentTLSForChecks": false, "EnableDebug": false, "EnableLocalScriptChecks": false, diff --git a/agent/consul/acl.go b/agent/consul/acl.go index 4dbfe2b39..9f7ca547f 100644 --- a/agent/consul/acl.go +++ b/agent/consul/acl.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/sentinel" - "github.com/hashicorp/golang-lru" + "golang.org/x/time/rate" ) // These must be kept in sync with the constants in command/agent/acl.go. @@ -25,360 +25,762 @@ const ( // are not allowed to be displayed. redactedToken = "" - // Maximum number of cached ACL entries. - aclCacheSize = 10 * 1024 + // aclUpgradeBatchSize controls how many tokens we look at during each round of upgrading. Individual raft logs + // will be further capped using the aclBatchUpsertSize. This limit just prevents us from creating a single slice + // with all tokens in it. + aclUpgradeBatchSize = 128 + + // aclUpgradeRateLimit is the number of batch upgrade requests per second. + aclUpgradeRateLimit rate.Limit = 1.0 + + // aclBatchDeleteSize is the number of deletions to send in a single batch operation. 4096 should produce a batch that is <150KB + // in size but should be sufficiently large to handle 1 replication round in a single batch + aclBatchDeleteSize = 4096 + + // aclBatchUpsertSize is the target size in bytes we want to submit for a batch upsert request. We estimate the size at runtime + // due to the data being more variable in its size. + aclBatchUpsertSize = 256 * 1024 + + // DEPRECATED (ACL-Legacy-Compat) aclModeCheck* are all only for legacy usage + // aclModeCheckMinInterval is the minimum amount of time between checking if the + // agent should be using the new or legacy ACL system. All the places it is + // currently used will backoff as it detects that it is remaining in legacy mode. + // However the initial min value is kept small so that new cluster creation + // can enter into new ACL mode quickly. + aclModeCheckMinInterval = 50 * time.Millisecond + + // aclModeCheckMaxInterval controls the maximum interval for how often the agent + // checks if it should be using the new or legacy ACL system. + aclModeCheckMaxInterval = 30 * time.Second ) -// aclCacheEntry is used to cache non-authoritative ACLs -// If non-authoritative, then we must respect a TTL -type aclCacheEntry struct { - ACL acl.ACL - Expires time.Time - ETag string +func minTTL(a time.Duration, b time.Duration) time.Duration { + if a < b { + return a + } + return b } -// aclLocalFault is used by the authoritative ACL cache to fault in the rules -// for an ACL if we take a miss. This goes directly to the state store, so it -// assumes its running in the ACL datacenter, or in a non-ACL datacenter when -// using its replicated ACLs during an outage. -func (s *Server) aclLocalFault(id string) (string, string, error) { - defer metrics.MeasureSince([]string{"acl", "fault"}, time.Now()) - - // Query the state store. - state := s.fsm.State() - _, rule, err := state.ACLGet(nil, id) - if err != nil { - return "", "", err - } - if rule == nil { - return "", "", acl.ErrNotFound - } - - // Management tokens have no policy and inherit from the 'manage' root - // policy. - if rule.Type == structs.ACLTypeManagement { - return "manage", "", nil - } - - // Otherwise use the default policy. - return s.config.ACLDefaultPolicy, rule.Rules, nil +type ACLRemoteError struct { + Err error } -// resolveToken is the primary interface used by ACL-checkers (such as an -// endpoint handling a request) to resolve a token. If ACLs aren't enabled -// then this will return a nil token, otherwise it will attempt to use local -// cache and ultimately the ACL datacenter to get the policy associated with the -// token. -func (s *Server) resolveToken(id string) (acl.ACL, error) { - // Check if there is no ACL datacenter (ACLs disabled) - authDC := s.config.ACLDatacenter - if len(authDC) == 0 { - return nil, nil - } - defer metrics.MeasureSince([]string{"acl", "resolveToken"}, time.Now()) - - // Handle the anonymous token - if len(id) == 0 { - id = anonymousToken - } else if acl.RootACL(id) != nil { - return nil, acl.ErrRootDenied - } - - // Check if we are the ACL datacenter and the leader, use the - // authoritative cache - if s.config.Datacenter == authDC && s.IsLeader() { - return s.aclAuthCache.GetACL(id) - } - - // Use our non-authoritative cache - return s.aclCache.lookupACL(id, authDC) +func (e ACLRemoteError) Error() string { + return fmt.Sprintf("Error communicating with the ACL Datacenter: %v", e.Err) } -// rpcFn is used to make an RPC call to the client or server. -type rpcFn func(string, interface{}, interface{}) error - -// aclCache is used to cache ACLs and policies. -type aclCache struct { - config *Config - logger *log.Logger - - // acls is a non-authoritative ACL cache. - acls *lru.TwoQueueCache - - // sentinel is the code engine (can be nil). - sentinel sentinel.Evaluator - - // aclPolicyCache is a non-authoritative policy cache. - policies *lru.TwoQueueCache - - // rpc is a function used to talk to the client/server. - rpc rpcFn - - // local is a function used to look for an ACL locally if replication is - // enabled. This will be nil if replication isn't enabled. - local acl.FaultFunc - - fetchMutex sync.RWMutex - fetchMap map[string][]chan (RemoteACLResult) +func IsACLRemoteError(err error) bool { + _, ok := err.(ACLRemoteError) + return ok } -// newACLCache returns a new non-authoritative cache for ACLs. This is used for -// performance, and is used inside the ACL datacenter on non-leader servers, and -// outside the ACL datacenter everywhere. -func newACLCache(conf *Config, logger *log.Logger, rpc rpcFn, local acl.FaultFunc, sentinel sentinel.Evaluator) (*aclCache, error) { - var err error - cache := &aclCache{ - config: conf, - logger: logger, - rpc: rpc, - local: local, - sentinel: sentinel, - } - - // Initialize the non-authoritative ACL cache - cache.acls, err = lru.New2Q(aclCacheSize) - if err != nil { - return nil, fmt.Errorf("Failed to create ACL cache: %v", err) - } - - // Initialize the ACL policy cache - cache.policies, err = lru.New2Q(aclCacheSize) - if err != nil { - return nil, fmt.Errorf("Failed to create ACL policy cache: %v", err) - } - cache.fetchMap = make(map[string][]chan (RemoteACLResult)) - - return cache, nil +type ACLResolverDelegate interface { + ACLsEnabled() bool + ACLDatacenter(legacy bool) string + // UseLegacyACLs + UseLegacyACLs() bool + ResolveIdentityFromToken(token string) (bool, structs.ACLIdentity, error) + ResolvePolicyFromID(policyID string) (bool, *structs.ACLPolicy, error) + RPC(method string, args interface{}, reply interface{}) error } -// Result Type returned when fetching Remote ACLs asynchronously -type RemoteACLResult struct { - result acl.ACL +type remoteACLLegacyResult struct { + authorizer acl.Authorizer + err error +} + +type remoteACLIdentityResult struct { + identity structs.ACLIdentity + err error +} + +type remoteACLPolicyResult struct { + policy *structs.ACLPolicy err error } -// lookupACL is used when we are non-authoritative, and need to resolve an ACL. -func (c *aclCache) lookupACL(id, authDC string) (acl.ACL, error) { - // Check the cache for the ACL. - var cached *aclCacheEntry - raw, ok := c.acls.Get(id) - if ok { - cached = raw.(*aclCacheEntry) - } +// ACLResolverConfig holds all the configuration necessary to create an ACLResolver +type ACLResolverConfig struct { + Config *Config + Logger *log.Logger - // Check for live cache. - if cached != nil && time.Now().Before(cached.Expires) { - metrics.IncrCounter([]string{"acl", "cache_hit"}, 1) - return cached.ACL, nil - } - metrics.IncrCounter([]string{"acl", "cache_miss"}, 1) - res := c.lookupACLRemote(id, authDC, cached) - return res.result, res.err + // CacheConfig is a pass through configuration for ACL cache limits + CacheConfig *structs.ACLCachesConfig + + // Delegate that implements some helper functionality that is server/client specific + Delegate ACLResolverDelegate + + // AutoDisable indicates that RPC responses should be checked and if they indicate ACLs are disabled + // remotely then disable them locally as well. This is particularly useful for the client agent + // so that it can detect when the servers have gotten ACLs enabled. + AutoDisable bool + + Sentinel sentinel.Evaluator } -func (c *aclCache) fireResult(id string, theACL acl.ACL, err error) { - c.fetchMutex.Lock() - channels := c.fetchMap[id] - delete(c.fetchMap, id) - c.fetchMutex.Unlock() - aclResult := RemoteACLResult{theACL, err} +// ACLResolver is the type to handle all your token and policy resolution needs. +// +// Supports: +// - Resolving tokens locally via the ACLResolverDelegate +// - Resolving policies locally via the ACLResolverDelegate +// - Resolving legacy tokens remotely via a ACL.GetPolicy RPC +// - Resolving tokens remotely via an ACL.TokenRead RPC +// - Resolving policies remotely via an ACL.PolicyResolve RPC +// +// Remote Resolution: +// Remote resolution can be done syncrhonously or asynchronously depending +// on the ACLDownPolicy in the Config passed to the resolver. +// +// When the down policy is set to async-cache and we have already cached values +// then go routines will be spawned to perform the RPCs in the background +// and then will udpate the cache with either the positive or negative result. +// +// When the down policy is set to extend-cache or the token/policy is not already +// cached then the same go routines are spawned to do the RPCs in the background. +// However in this mode channels are created to receive the results of the RPC +// and are registered with the resolver. Those channels are immediately read/blocked +// upon. +// +type ACLResolver struct { + config *Config + logger *log.Logger + + delegate ACLResolverDelegate + sentinel sentinel.Evaluator + + cache *structs.ACLCaches + asyncIdentityResults map[string][]chan (*remoteACLIdentityResult) + asyncIdentityResultsMutex sync.RWMutex + asyncPolicyResults map[string][]chan (*remoteACLPolicyResult) + asyncPolicyResultsMutex sync.RWMutex + asyncLegacyResults map[string][]chan (*remoteACLLegacyResult) + asyncLegacyMutex sync.RWMutex + + down acl.Authorizer + + autoDisable bool + disabled time.Time + disabledLock sync.RWMutex +} + +func NewACLResolver(config *ACLResolverConfig) (*ACLResolver, error) { + if config == nil { + return nil, fmt.Errorf("ACL Resolver must be initialized with a config") + } + + if config.Config == nil { + return nil, fmt.Errorf("ACLResolverConfig.Config must not be nil") + } + + if config.Delegate == nil { + return nil, fmt.Errorf("ACL Resolver must be initialized with a valid delegate") + } + + if config.Logger == nil { + config.Logger = log.New(os.Stderr, "", log.LstdFlags) + } + + cache, err := structs.NewACLCaches(config.CacheConfig) + if err != nil { + return nil, err + } + + var down acl.Authorizer + switch config.Config.ACLDownPolicy { + case "allow": + down = acl.AllowAll() + case "deny": + down = acl.DenyAll() + case "async-cache", "extend-cache": + // Leave the down policy as nil to signal this. + default: + return nil, fmt.Errorf("invalid ACL down policy %q", config.Config.ACLDownPolicy) + } + + return &ACLResolver{ + config: config.Config, + logger: config.Logger, + delegate: config.Delegate, + sentinel: config.Sentinel, + cache: cache, + asyncIdentityResults: make(map[string][]chan (*remoteACLIdentityResult)), + asyncPolicyResults: make(map[string][]chan (*remoteACLPolicyResult)), + asyncLegacyResults: make(map[string][]chan (*remoteACLLegacyResult)), + autoDisable: config.AutoDisable, + down: down, + }, nil +} + +// fireAsyncLegacyResult is used to notify any watchers that legacy resolution of a token is complete +func (r *ACLResolver) fireAsyncLegacyResult(token string, authorizer acl.Authorizer, ttl time.Duration, err error) { + // cache the result: positive or negative + r.cache.PutAuthorizerWithTTL(token, authorizer, ttl) + + // get the list of channels to send the result to + r.asyncLegacyMutex.Lock() + channels := r.asyncLegacyResults[token] + delete(r.asyncLegacyResults, token) + r.asyncLegacyMutex.Unlock() + + // notify all watchers of the RPC results + result := &remoteACLLegacyResult{authorizer, err} for _, cx := range channels { - cx <- aclResult + // only chans that are being blocked on will be in the list of channels so this cannot block + cx <- result close(cx) } } -func (c *aclCache) loadACLInChan(id, authDC string, cached *aclCacheEntry) { - args := structs.ACLPolicyRequest{ - Datacenter: authDC, - ACL: id, +func (r *ACLResolver) resolveTokenLegacyAsync(token string, cached *structs.AuthorizerCacheEntry) { + req := structs.ACLPolicyResolveLegacyRequest{ + Datacenter: r.delegate.ACLDatacenter(true), + ACL: token, } + + cacheTTL := r.config.ACLTokenTTL if cached != nil { - args.ETag = cached.ETag + cacheTTL = cached.TTL } - var reply structs.ACLPolicy - err := c.rpc("ACL.GetPolicy", &args, &reply) + + var reply structs.ACLPolicyResolveLegacyResponse + err := r.delegate.RPC("ACL.GetPolicy", &req, &reply) if err == nil { - theACL, theError := c.useACLPolicy(id, authDC, cached, &reply) - if cached != nil && theACL != nil { - cached.ACL = theACL - cached.ETag = reply.ETag - cached.Expires = time.Now().Add(c.config.ACLTTL) + parent := acl.RootAuthorizer(reply.Parent) + if parent == nil { + r.fireAsyncLegacyResult(token, cached.Authorizer, cacheTTL, acl.ErrInvalidParent) + return } - c.fireResult(id, theACL, theError) + + var policies []*acl.Policy + policy := reply.Policy + if policy != nil { + policies = append(policies, policy.ConvertFromLegacy()) + } + + authorizer, err := acl.NewPolicyAuthorizer(parent, policies, r.sentinel) + r.fireAsyncLegacyResult(token, authorizer, reply.TTL, err) return } - // Check for not-found, which will cause us to bail immediately. For any - // other error we report it in the logs but can continue. if acl.IsErrNotFound(err) { - c.fireResult(id, nil, acl.ErrNotFound) - return - } - c.logger.Printf("[ERR] consul.acl: Failed to get policy from ACL datacenter: %v", err) - - // TODO (slackpad) - We could do a similar thing *within* the ACL - // datacenter if the leader isn't available. We have a local state - // store of the ACLs, so by populating the local member in this cache, - // it would fall back to the state store if there was a leader loss and - // the extend-cache policy was true. This feels subtle to explain and - // configure, and leader blips should be paved over by cache already, so - // we won't do this for now but should consider for the future. This is - // a lot different than the replication story where you might be cut off - // from the ACL datacenter for an extended period of time and need to - // carry on operating with the full set of ACLs as they were known - // before the partition. - - // At this point we might have an expired cache entry and we know that - // there was a problem getting the ACL from the ACL datacenter. If a - // local ACL fault function is registered to query replicated ACL data, - // and the user's policy allows it, we will try locally before we give - // up. - if c.local != nil && (c.config.ACLDownPolicy == "extend-cache" || c.config.ACLDownPolicy == "async-cache") { - parent, rules, err := c.local(id) - if err != nil { - // We don't make an exception here for ACLs that aren't - // found locally. It seems more robust to use an expired - // cached entry (if we have one) rather than ignore it - // for the case that replication was a bit behind and - // didn't have the ACL yet. - c.logger.Printf("[DEBUG] consul.acl: Failed to get policy from replicated ACLs: %v", err) - goto ACL_DOWN - } - - policy, err := acl.Parse(rules, c.sentinel) - if err != nil { - c.logger.Printf("[DEBUG] consul.acl: Failed to parse policy for replicated ACL: %v", err) - goto ACL_DOWN - } - policy.ID = acl.RuleID(rules) - - // Fake up an ACL datacenter reply and inject it into the cache. - // Note we use the local TTL here, so this'll be used for that - // amount of time even once the ACL datacenter becomes available. - metrics.IncrCounter([]string{"acl", "replication_hit"}, 1) - reply.ETag = makeACLETag(parent, policy) - reply.TTL = c.config.ACLTTL - reply.Parent = parent - reply.Policy = policy - theACL, theError := c.useACLPolicy(id, authDC, cached, &reply) - if cached != nil && theACL != nil { - cached.ACL = theACL - cached.ETag = reply.ETag - cached.Expires = time.Now().Add(c.config.ACLTTL) - } - c.fireResult(id, theACL, theError) + // Make sure to remove from the cache if it was deleted + r.fireAsyncLegacyResult(token, nil, cacheTTL, acl.ErrNotFound) return } -ACL_DOWN: - // Unable to refresh, apply the down policy. - switch c.config.ACLDownPolicy { + // some other RPC error + switch r.config.ACLDownPolicy { case "allow": - c.fireResult(id, acl.AllowAll(), nil) + r.fireAsyncLegacyResult(token, acl.AllowAll(), cacheTTL, nil) return case "async-cache", "extend-cache": if cached != nil { - c.fireResult(id, cached.ACL, nil) + r.fireAsyncLegacyResult(token, cached.Authorizer, cacheTTL, nil) return } fallthrough default: - c.fireResult(id, acl.DenyAll(), nil) + r.fireAsyncLegacyResult(token, acl.DenyAll(), cacheTTL, nil) return } } -func (c *aclCache) lookupACLRemote(id, authDC string, cached *aclCacheEntry) RemoteACLResult { - // Attempt to refresh the policy from the ACL datacenter via an RPC. - myChan := make(chan RemoteACLResult) - mustWaitForResult := cached == nil || c.config.ACLDownPolicy != "async-cache" - c.fetchMutex.Lock() - clients, ok := c.fetchMap[id] - if !ok || clients == nil { - clients = make([]chan RemoteACLResult, 0) - } - if mustWaitForResult { - c.fetchMap[id] = append(clients, myChan) - } - c.fetchMutex.Unlock() +func (r *ACLResolver) resolveTokenLegacy(token string) (acl.Authorizer, error) { + defer metrics.MeasureSince([]string{"acl", "resolveTokenLegacy"}, time.Now()) - if !ok { - go c.loadACLInChan(id, authDC, cached) - } - if !mustWaitForResult { - return RemoteACLResult{cached.ACL, nil} - } - res := <-myChan - return res -} - -// useACLPolicy handles an ACLPolicy response -func (c *aclCache) useACLPolicy(id, authDC string, cached *aclCacheEntry, p *structs.ACLPolicy) (acl.ACL, error) { - // 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 - } - - // Check for a cached compiled policy - var compiled acl.ACL - raw, ok := c.policies.Get(p.ETag) - if ok { - compiled = raw.(acl.ACL) - } else { - // Resolve the parent policy - parent := acl.RootACL(p.Parent) - if parent == nil { - var err error - parent, err = c.lookupACL(p.Parent, authDC) + // Attempt to resolve locally first (local results are not cached) + // This is only useful for servers where either legacy replication is being + // done or the server is within the primary datacenter. + if done, identity, err := r.delegate.ResolveIdentityFromToken(token); done { + if err == nil && identity != nil { + policies, err := r.resolvePoliciesForIdentity(identity) if err != nil { return nil, err } + + return policies.Compile(acl.RootAuthorizer(r.config.ACLDefaultPolicy), r.cache, r.sentinel) } - // Compile the ACL - acl, err := acl.New(parent, p.Policy, c.sentinel) - if err != nil { - return nil, err + return nil, err + } + + // Look in the cache prior to making a RPC request + entry := r.cache.GetAuthorizer(token) + + if entry != nil && entry.Age() <= minTTL(entry.TTL, r.config.ACLTokenTTL) { + metrics.IncrCounter([]string{"acl", "token", "cache_hit"}, 1) + if entry.Authorizer != nil { + return entry.Authorizer, nil + } + return nil, acl.ErrNotFound + } + + metrics.IncrCounter([]string{"acl", "token", "cache_miss"}, 1) + + // Resolve the token in the background and wait on the result if we must + var waitChan chan *remoteACLLegacyResult + waitForResult := entry == nil || r.config.ACLDownPolicy != "async-cache" + + r.asyncLegacyMutex.Lock() + + // check if resolution for this token is already happening + waiters, ok := r.asyncLegacyResults[token] + if !ok || waiters == nil { + // initialize the slice of waiters if not already done + waiters = make([]chan *remoteACLLegacyResult, 0) + } + if waitForResult { + // create the waitChan only if we are going to block waiting + // for the response and then append it to the list of waiters + // Because we will block (not select or discard this chan) we + // do not need to create it as buffered + waitChan = make(chan *remoteACLLegacyResult) + r.asyncLegacyResults[token] = append(waiters, waitChan) + } + r.asyncLegacyMutex.Unlock() + + if !ok { + // start the async RPC if it wasn't already ongoing + go r.resolveTokenLegacyAsync(token, entry) + } + + if !waitForResult { + // waitForResult being false requires the cacheEntry to not be nil + if entry.Authorizer != nil { + return entry.Authorizer, nil + } + return nil, acl.ErrNotFound + } + + // block waiting for the async RPC to finish. + res := <-waitChan + return res.authorizer, res.err +} + +// fireAsyncTokenResult is used to notify all waiters that the results of a token resolution is complete +func (r *ACLResolver) fireAsyncTokenResult(token string, identity structs.ACLIdentity, err error) { + // cache the result: positive or negative + r.cache.PutIdentity(token, identity) + + // get the list of channels to send the result to + r.asyncIdentityResultsMutex.Lock() + channels := r.asyncIdentityResults[token] + delete(r.asyncIdentityResults, token) + r.asyncIdentityResultsMutex.Unlock() + + // notify all watchers of the RPC results + result := &remoteACLIdentityResult{identity, err} + for _, cx := range channels { + // cannot block because all wait chans will have another goroutine blocked on the read + cx <- result + close(cx) + } +} + +func (r *ACLResolver) resolveIdentityFromTokenAsync(token string, cached *structs.IdentityCacheEntry) { + req := structs.ACLTokenReadRequest{ + Datacenter: r.delegate.ACLDatacenter(false), + TokenID: token, + TokenIDType: structs.ACLTokenSecret, + QueryOptions: structs.QueryOptions{ + Token: token, + AllowStale: true, + }, + } + + var resp structs.ACLTokenResponse + err := r.delegate.RPC("ACL.TokenRead", &req, &resp) + if err == nil { + if resp.Token == nil { + r.fireAsyncTokenResult(token, nil, acl.ErrNotFound) + } else { + r.fireAsyncTokenResult(token, resp.Token, nil) + } + return + } + + if acl.IsErrNotFound(err) { + // Make sure to remove from the cache if it was deleted + r.fireAsyncTokenResult(token, nil, acl.ErrNotFound) + return + } + + // some other RPC error + if cached != nil && (r.config.ACLDownPolicy == "extend-cache" || r.config.ACLDownPolicy == "async-cache") { + // extend the cache + r.fireAsyncTokenResult(token, cached.Identity, nil) + } + + r.fireAsyncTokenResult(token, nil, err) + return +} + +func (r *ACLResolver) resolveIdentityFromToken(token string) (structs.ACLIdentity, error) { + // Attempt to resolve locally first (local results are not cached) + if done, identity, err := r.delegate.ResolveIdentityFromToken(token); done { + return identity, err + } + + // Check the cache before making any RPC requests + cacheEntry := r.cache.GetIdentity(token) + if cacheEntry != nil && cacheEntry.Age() <= r.config.ACLTokenTTL { + metrics.IncrCounter([]string{"acl", "token", "cache_hit"}, 1) + return cacheEntry.Identity, nil + } + + metrics.IncrCounter([]string{"acl", "token", "cache_miss"}, 1) + + // Background a RPC request and wait on it if we must + var waitChan chan *remoteACLIdentityResult + + waitForResult := cacheEntry == nil || r.config.ACLDownPolicy != "async-cache" + + r.asyncIdentityResultsMutex.Lock() + // check if resolution of this token is already ongoing + waiters, ok := r.asyncIdentityResults[token] + if !ok || waiters == nil { + // only initialize the slice of waiters if need be (when this token resolution isn't ongoing) + waiters = make([]chan *remoteACLIdentityResult, 0) + } + if waitForResult { + // create the waitChan only if we are going to block waiting + // for the response and then append it to the list of waiters + // Because we will block (not select or discard this chan) we + // do not need to create it as buffered + waitChan = make(chan *remoteACLIdentityResult) + r.asyncIdentityResults[token] = append(waiters, waitChan) + } + r.asyncIdentityResultsMutex.Unlock() + + if !ok { + // only start the RPC if one isn't in flight + go r.resolveIdentityFromTokenAsync(token, cacheEntry) + } + + if !waitForResult { + // waitForResult being false requires the cacheEntry to not be nil + return cacheEntry.Identity, nil + } + + // block on the read here, this is why we don't need chan buffering + res := <-waitChan + + if res.err != nil && !acl.IsErrNotFound(res.err) { + return res.identity, ACLRemoteError{Err: res.err} + } + return res.identity, res.err +} + +// fireAsyncPolicyResult is used to notify all waiters that policy resolution is complete. +func (r *ACLResolver) fireAsyncPolicyResult(policyID string, policy *structs.ACLPolicy, err error) { + // cache the result: positive or negative + r.cache.PutPolicy(policyID, policy) + + // get the list of channels to send the result to + r.asyncPolicyResultsMutex.Lock() + channels := r.asyncPolicyResults[policyID] + delete(r.asyncPolicyResults, policyID) + r.asyncPolicyResultsMutex.Unlock() + + // notify all watchers of the RPC results + result := &remoteACLPolicyResult{policy, err} + for _, cx := range channels { + // not closing the channel as there could be more events to be fired. + cx <- result + } +} + +func (r *ACLResolver) resolvePoliciesAsyncForIdentity(identity structs.ACLIdentity, policyIDs []string, cached map[string]*structs.PolicyCacheEntry) { + req := structs.ACLPolicyBatchReadRequest{ + Datacenter: r.delegate.ACLDatacenter(false), + PolicyIDs: policyIDs, + QueryOptions: structs.QueryOptions{ + Token: identity.SecretToken(), + AllowStale: true, + }, + } + + found := make(map[string]struct{}) + var resp structs.ACLPoliciesResponse + err := r.delegate.RPC("ACL.PolicyResolve", &req, &resp) + if err == nil { + for _, policy := range resp.Policies { + r.fireAsyncPolicyResult(policy.ID, policy, nil) + found[policy.ID] = struct{}{} } - // Cache the policy - c.policies.Add(p.ETag, acl) - compiled = acl + for _, policyID := range policyIDs { + if _, ok := found[policyID]; !ok { + r.fireAsyncPolicyResult(policyID, nil, acl.ErrNotFound) + } + } + return } - // Cache the ACL - cached = &aclCacheEntry{ - ACL: compiled, - ETag: p.ETag, + if acl.IsErrNotFound(err) { + for _, policyID := range policyIDs { + // Make sure to remove from the cache if it was deleted + r.fireAsyncTokenResult(policyID, nil, acl.ErrNotFound) + } + return } - if p.TTL > 0 { - cached.Expires = time.Now().Add(p.TTL) + + // other RPC error - use cache if available + + extendCache := r.config.ACLDownPolicy == "extend-cache" || r.config.ACLDownPolicy == "async-cache" + for _, policyID := range policyIDs { + if entry, ok := cached[policyID]; extendCache && ok { + r.fireAsyncPolicyResult(policyID, entry.Policy, nil) + } else { + r.fireAsyncPolicyResult(policyID, nil, ACLRemoteError{Err: err}) + } } - c.acls.Add(id, cached) - return compiled, nil + return +} + +func (r *ACLResolver) filterPoliciesByScope(policies structs.ACLPolicies) structs.ACLPolicies { + var out structs.ACLPolicies + for _, policy := range policies { + if len(policy.Datacenters) == 0 { + out = append(out, policy) + continue + } + + for _, dc := range policy.Datacenters { + if dc == r.config.Datacenter { + out = append(out, policy) + continue + } + } + } + + return out +} + +func (r *ACLResolver) resolvePoliciesForIdentity(identity structs.ACLIdentity) (structs.ACLPolicies, error) { + policyIDs := identity.PolicyIDs() + if len(policyIDs) == 0 { + policy := identity.EmbeddedPolicy() + if policy != nil { + return []*structs.ACLPolicy{policy}, nil + } + + // In this case the default policy will be all that is in effect. + return nil, nil + } + + // For the new ACLs policy replication is mandatory for correct operation on servers. Therefore + // we only attempt to resolve policies locally + policies := make([]*structs.ACLPolicy, 0, len(policyIDs)) + + // Get all associated policies + var missing []string + var expired []*structs.ACLPolicy + expCacheMap := make(map[string]*structs.PolicyCacheEntry) + + for _, policyID := range policyIDs { + if done, policy, err := r.delegate.ResolvePolicyFromID(policyID); done { + if err != nil && !acl.IsErrNotFound(err) { + return nil, err + } + + if policy != nil { + policies = append(policies, policy) + } else { + r.logger.Printf("[WARN] acl: policy %q not found for identity %q", policyID, identity.ID()) + } + + continue + } + + // create the missing list which we can execute an RPC to get all the missing policies at once + entry := r.cache.GetPolicy(policyID) + if entry == nil { + missing = append(missing, policyID) + continue + } + + if entry.Policy == nil { + // this happens when we cache a negative response for the policies existence + continue + } + + if entry.Age() >= r.config.ACLPolicyTTL { + expired = append(expired, entry.Policy) + expCacheMap[policyID] = entry + } else { + policies = append(policies, entry.Policy) + } + } + + // Hot-path if we have no missing or expired policies + if len(missing)+len(expired) == 0 { + return r.filterPoliciesByScope(policies), nil + } + + fetchIDs := missing + for _, policy := range expired { + fetchIDs = append(fetchIDs, policy.ID) + } + + // Background a RPC request and wait on it if we must + var waitChan chan *remoteACLPolicyResult + waitForResult := len(missing) > 0 || r.config.ACLDownPolicy != "async-cache" + if waitForResult { + // buffered because there are going to be multiple go routines that send data to this chan + waitChan = make(chan *remoteACLPolicyResult, len(fetchIDs)) + } + + var newAsyncFetchIds []string + r.asyncPolicyResultsMutex.Lock() + for _, policyID := range fetchIDs { + clients, ok := r.asyncPolicyResults[policyID] + if !ok || clients == nil { + clients = make([]chan *remoteACLPolicyResult, 0) + } + if waitForResult { + r.asyncPolicyResults[policyID] = append(clients, waitChan) + } + + if !ok { + newAsyncFetchIds = append(newAsyncFetchIds, policyID) + } + } + r.asyncPolicyResultsMutex.Unlock() + + if len(newAsyncFetchIds) > 0 { + // only start the RPC if one isn't in flight + go r.resolvePoliciesAsyncForIdentity(identity, newAsyncFetchIds, expCacheMap) + } + + if !waitForResult { + // waitForResult being false requires that all the policies were cached already + policies = append(policies, expired...) + return r.filterPoliciesByScope(policies), nil + } + + for i := 0; i < len(newAsyncFetchIds); i++ { + res := <-waitChan + + if res.err != nil { + return nil, res.err + } + + if res.policy != nil { + policies = append(policies, res.policy) + } + } + + return r.filterPoliciesByScope(policies), nil +} + +func (r *ACLResolver) resolveTokenToPolicies(token string) (structs.ACLPolicies, error) { + // Resolve the token to an ACLIdentity + identity, err := r.resolveIdentityFromToken(token) + if err != nil { + return nil, err + } else if identity == nil { + return nil, acl.ErrNotFound + } + + // Resolve the ACLIdentity to ACLPolicies + return r.resolvePoliciesForIdentity(identity) +} + +func (r *ACLResolver) disableACLsWhenUpstreamDisabled(err error) error { + if !r.autoDisable || err == nil || !acl.IsErrDisabled(err) { + return err + } + + r.logger.Printf("[DEBUG] acl: ACLs disabled on upstream servers, will check again after %s", r.config.ACLDisabledTTL) + r.disabledLock.Lock() + r.disabled = time.Now().Add(r.config.ACLDisabledTTL) + r.disabledLock.Unlock() + + return err +} + +func (r *ACLResolver) ResolveToken(token string) (acl.Authorizer, error) { + if !r.ACLsEnabled() { + return nil, nil + } + + if acl.RootAuthorizer(token) != nil { + return nil, acl.ErrRootDenied + } + + // handle the anonymous token + if token == "" { + token = anonymousToken + } + + if r.delegate.UseLegacyACLs() { + authorizer, err := r.resolveTokenLegacy(token) + return authorizer, r.disableACLsWhenUpstreamDisabled(err) + } + + defer metrics.MeasureSince([]string{"acl", "ResolveToken"}, time.Now()) + + policies, err := r.resolveTokenToPolicies(token) + if err != nil { + r.disableACLsWhenUpstreamDisabled(err) + if IsACLRemoteError(err) { + r.logger.Printf("[ERR] consul.acl: %v", err) + return r.down, nil + } + + return nil, err + } + + // Build the Authorizer + authorizer, err := policies.Compile(acl.RootAuthorizer(r.config.ACLDefaultPolicy), r.cache, r.sentinel) + return authorizer, err + +} + +func (r *ACLResolver) ACLsEnabled() bool { + // Whether we desire ACLs to be enabled according to configuration + if !r.delegate.ACLsEnabled() { + return false + } + + if r.autoDisable { + // Whether ACLs are disabled according to RPCs failing with a ACLs Disabled error + r.disabledLock.RLock() + defer r.disabledLock.RUnlock() + return !time.Now().Before(r.disabled) + } + + return true +} + +func (r *ACLResolver) GetMergedPolicyForToken(token string) (*acl.Policy, error) { + policies, err := r.resolveTokenToPolicies(token) + if err != nil { + return nil, err + } + if len(policies) == 0 { + return nil, acl.ErrNotFound + } + + return policies.Merge(r.cache, r.sentinel) } // 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 + authorizer acl.Authorizer logger *log.Logger enforceVersion8 bool } // newACLFilter constructs a new aclFilter. -func newACLFilter(acl acl.ACL, logger *log.Logger, enforceVersion8 bool) *aclFilter { +func newACLFilter(authorizer acl.Authorizer, logger *log.Logger, enforceVersion8 bool) *aclFilter { if logger == nil { logger = log.New(os.Stderr, "", log.LstdFlags) } return &aclFilter{ - acl: acl, + authorizer: authorizer, logger: logger, enforceVersion8: enforceVersion8, } @@ -389,7 +791,7 @@ func (f *aclFilter) allowNode(node string) bool { if !f.enforceVersion8 { return true } - return f.acl.NodeRead(node) + return f.authorizer.NodeRead(node) } // allowService is used to determine if a service is accessible for an ACL. @@ -401,7 +803,7 @@ func (f *aclFilter) allowService(service string) bool { if !f.enforceVersion8 && service == structs.ConsulServiceID { return true } - return f.acl.ServiceRead(service) + return f.authorizer.ServiceRead(service) } // allowSession is used to determine if a session for a node is accessible for @@ -410,7 +812,7 @@ func (f *aclFilter) allowSession(node string) bool { if !f.enforceVersion8 { return true } - return f.acl.SessionRead(node) + return f.authorizer.SessionRead(node) } // filterHealthChecks is used to filter a set of health checks down based on @@ -527,7 +929,7 @@ func (f *aclFilter) filterCoordinates(coords *structs.Coordinates) { // if the user doesn't have a management token. func (f *aclFilter) filterIntentions(ixns *structs.Intentions) { // Management tokens can see everything with no filtering. - if f.acl.ACLList() { + if f.authorizer.ACLRead() { return } @@ -538,7 +940,7 @@ func (f *aclFilter) filterIntentions(ixns *structs.Intentions) { // we know at this point the user doesn't have a management // token, otherwise see what the policy says. prefix, ok := ixn.GetACLPrefix() - if !ok || !f.acl.IntentionRead(prefix) { + if !ok || !f.authorizer.IntentionRead(prefix) { f.logger.Printf("[DEBUG] consul: dropping intention %q from result due to ACLs", ixn.ID) continue } @@ -613,7 +1015,7 @@ func (f *aclFilter) filterNodes(nodes *structs.Nodes) { // captured tokens, but they can at least see whether or not a token is set. func (f *aclFilter) redactPreparedQueryTokens(query **structs.PreparedQuery) { // Management tokens can see everything with no filtering. - if f.acl.ACLList() { + if f.authorizer.ACLWrite() { return } @@ -638,7 +1040,7 @@ func (f *aclFilter) redactPreparedQueryTokens(query **structs.PreparedQuery) { // if the user doesn't have a management token. func (f *aclFilter) filterPreparedQueries(queries *structs.PreparedQueries) { // Management tokens can see everything with no filtering. - if f.acl.ACLList() { + if f.authorizer.ACLWrite() { return } @@ -649,7 +1051,7 @@ func (f *aclFilter) filterPreparedQueries(queries *structs.PreparedQueries) { // we know at this point the user doesn't have a management // token, otherwise see what the policy says. prefix, ok := query.GetACLPrefix() - if !ok || !f.acl.PreparedQueryRead(prefix) { + if !ok || !f.authorizer.PreparedQueryRead(prefix) { f.logger.Printf("[DEBUG] consul: dropping prepared query %q from result due to ACLs", query.ID) continue } @@ -663,22 +1065,31 @@ func (f *aclFilter) filterPreparedQueries(queries *structs.PreparedQueries) { *queries = ret } -// filterACL is used to filter results from our service catalog based on the -// rules configured for the provided token. -func (s *Server) filterACL(token string, subj interface{}) error { - // Get the ACL from the token - acl, err := s.resolveToken(token) - if err != nil { - return err +func (f *aclFilter) redactTokenSecret(token **structs.ACLToken) { + if token == nil || *token == nil || f == nil || f.authorizer.ACLWrite() { + return } + clone := *(*token) + clone.SecretID = redactedToken + *token = &clone +} - // Fast path if ACLs are not enabled - if acl == nil { +func (f *aclFilter) redactTokenSecrets(tokens *structs.ACLTokens) { + ret := make(structs.ACLTokens, 0, len(*tokens)) + for _, token := range *tokens { + final := token + f.redactTokenSecret(&final) + ret = append(ret, final) + } + *tokens = ret +} + +func (r *ACLResolver) filterACLWithAuthorizer(authorizer acl.Authorizer, subj interface{}) error { + if authorizer == nil { return nil } - // Create the filter - filt := newACLFilter(acl, s.logger, s.config.ACLEnforceVersion8) + filt := newACLFilter(authorizer, r.logger, r.config.ACLEnforceVersion8) switch v := subj.(type) { case *structs.CheckServiceNodes: @@ -720,6 +1131,12 @@ func (s *Server) filterACL(token string, subj interface{}) error { case **structs.PreparedQuery: filt.redactPreparedQueryTokens(v) + case *structs.ACLTokens: + filt.redactTokenSecrets(v) + + case **structs.ACLToken: + filt.redactTokenSecret(v) + default: panic(fmt.Errorf("Unhandled type passed to ACL filter: %#v", subj)) } @@ -727,6 +1144,23 @@ func (s *Server) filterACL(token string, subj interface{}) error { return nil } +// filterACL is used to filter results from our service catalog based on the +// rules configured for the provided token. +func (r *ACLResolver) filterACL(token string, subj interface{}) error { + // Get the ACL from the token + authorizer, err := r.ResolveToken(token) + if err != nil { + return err + } + + // Fast path if ACLs are not enabled + if authorizer == nil { + return nil + } + + return r.filterACLWithAuthorizer(authorizer, subj) +} + // 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 @@ -741,7 +1175,7 @@ func (s *Server) filterACL(token string, subj interface{}) error { // 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(rule acl.ACL, subj *structs.RegisterRequest, +func vetRegisterWithACL(rule acl.Authorizer, subj *structs.RegisterRequest, ns *structs.NodeServices) error { // Fast path if ACLs are not enabled. if rule == nil { @@ -875,7 +1309,7 @@ func vetRegisterWithACL(rule acl.ACL, subj *structs.RegisterRequest, // 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(rule acl.ACL, subj *structs.DeregisterRequest, +func vetDeregisterWithACL(rule acl.Authorizer, subj *structs.DeregisterRequest, ns *structs.NodeService, nc *structs.HealthCheck) error { // Fast path if ACLs are not enabled. diff --git a/agent/consul/acl_client.go b/agent/consul/acl_client.go new file mode 100644 index 000000000..06b9d78b5 --- /dev/null +++ b/agent/consul/acl_client.go @@ -0,0 +1,101 @@ +package consul + +import ( + "sync/atomic" + "time" + + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/agent/metadata" + "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/lib" + "github.com/hashicorp/serf/serf" +) + +var clientACLCacheConfig *structs.ACLCachesConfig = &structs.ACLCachesConfig{ + // The ACL cache configuration on client agents is more conservative than + // on the servers. It is assumed that individual client agents will have + // fewer distinct identities accessing the client than a server would + // and thus can put smaller limits on the amount of ACL caching done. + // + // Identities - number of identities/acl tokens that can be cached + Identities: 1024, + // Policies - number of unparsed ACL policies that can be cached + Policies: 128, + // ParsedPolicies - number of parsed ACL policies that can be cached + ParsedPolicies: 128, + // Authorizers - number of compiled multi-policy effective policies that can be cached + Authorizers: 256, +} + +func (c *Client) UseLegacyACLs() bool { + return atomic.LoadInt32(&c.useNewACLs) == 0 +} + +func (c *Client) monitorACLMode() { + waitTime := aclModeCheckMinInterval + for { + canUpgrade := false + for _, member := range c.LANMembers() { + if valid, parts := metadata.IsConsulServer(member); valid && parts.Status == serf.StatusAlive { + if parts.ACLs != structs.ACLModeEnabled { + canUpgrade = false + break + } else { + canUpgrade = true + } + } + } + + if canUpgrade { + c.logger.Printf("[DEBUG] acl: transition out of legacy ACL mode") + atomic.StoreInt32(&c.useNewACLs, 1) + lib.UpdateSerfTag(c.serf, "acls", string(structs.ACLModeEnabled)) + return + } + + select { + case <-c.shutdownCh: + return + case <-time.After(waitTime): + // do nothing + } + + // calculate the amount of time to wait for the next round + waitTime = waitTime * 2 + if waitTime > aclModeCheckMaxInterval { + waitTime = aclModeCheckMaxInterval + } + } +} + +func (c *Client) ACLDatacenter(legacy bool) string { + // For resolution running on clients, when not in + // legacy mode the servers within the current datacenter + // must be queried first to pick up local tokens. When + // in legacy mode the clients should directly query the + // ACL Datacenter. When no ACL datacenter has been set + // then we assume that the local DC is the ACL DC + if legacy && c.config.ACLDatacenter != "" { + return c.config.ACLDatacenter + } + + return c.config.Datacenter +} + +func (c *Client) ACLsEnabled() bool { + return c.config.ACLsEnabled +} + +func (c *Client) ResolveIdentityFromToken(token string) (bool, structs.ACLIdentity, error) { + // clients do no local identity resolution at the moment + return false, nil, nil +} + +func (c *Client) ResolvePolicyFromID(policyID string) (bool, *structs.ACLPolicy, error) { + // clients do no local policy resolution at the moment + return false, nil, nil +} + +func (c *Client) ResolveToken(token string) (acl.Authorizer, error) { + return c.acls.ResolveToken(token) +} diff --git a/agent/consul/acl_endpoint.go b/agent/consul/acl_endpoint.go index c4f1d07a7..bc39d3153 100644 --- a/agent/consul/acl_endpoint.go +++ b/agent/consul/acl_endpoint.go @@ -2,231 +2,888 @@ package consul import ( "fmt" + "io/ioutil" + "os" + "path/filepath" + "regexp" "time" "github.com/armon/go-metrics" "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/consul/state" "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/lib" "github.com/hashicorp/go-memdb" "github.com/hashicorp/go-uuid" ) +const ( + // aclBootstrapReset is the file name to create in the data dir. It's only contents + // should be the reset index + aclBootstrapReset = "acl-bootstrap-reset" +) + +// Regex for matching +var validPolicyName = regexp.MustCompile(`^[A-Za-z0-9\-_]{1,128}$`) + // ACL endpoint is used to manipulate ACLs type ACL struct { srv *Server } +// fileBootstrapResetIndex retrieves the reset index specified by the adminstrator from +// the file on disk. +// +// Q: What is the bootstrap reset index? +// A: If you happen to lose acess to all tokens capable of ACL management you need a way +// to get back into your system. This allows an admin to write the current +// bootstrap "index" into a special file on disk to override the mechanism preventing +// a second token bootstrap. The index will be retrieved by a API call to /v1/acl/bootstrap +// When already bootstrapped this API will return the reset index necessary within +// the error response. Once set in the file, the bootstrap API can be used again to +// get a new token. +// +// Q: Why is the reset index not in the config? +// A: We want to be able to remove the reset index once we have used it. This prevents +// accidentally allowing bootstrapping yet again after a snapshot restore. +// +func (a *ACL) fileBootstrapResetIndex() uint64 { + // Determine the file path to check + path := filepath.Join(a.srv.config.DataDir, aclBootstrapReset) + + // Read the file + raw, err := ioutil.ReadFile(path) + if err != nil { + if !os.IsNotExist(err) { + a.srv.logger.Printf("[ERR] acl.bootstrap: failed to read %q: %v", path, err) + } + return 0 + } + + // Attempt to parse the file + var resetIdx uint64 + if _, err := fmt.Sscanf(string(raw), "%d", &resetIdx); err != nil { + a.srv.logger.Printf("[ERR] acl.bootstrap: failed to parse %q: %v", path, err) + return 0 + } + + // Return the reset index + a.srv.logger.Printf("[DEBUG] acl.bootstrap: parsed %q: reset index %d", path, resetIdx) + return resetIdx +} + +func (a *ACL) removeBootstrapResetFile() { + if err := os.Remove(filepath.Join(a.srv.config.DataDir, aclBootstrapReset)); err != nil { + a.srv.logger.Printf("[WARN] acl.bootstrap: failed to remove bootstrap file: %v", err) + } +} + +func (a *ACL) aclPreCheck() error { + if !a.srv.ACLsEnabled() { + return acl.ErrDisabled + } + + if a.srv.UseLegacyACLs() { + return fmt.Errorf("The ACL system is currently in legacy mode.") + } + + return nil +} + // Bootstrap is used to perform a one-time ACL bootstrap operation on // a cluster to get the first management token. -func (a *ACL) Bootstrap(args *structs.DCSpecificRequest, reply *structs.ACL) error { - if done, err := a.srv.forward("ACL.Bootstrap", args, args, reply); done { +func (a *ACL) BootstrapTokens(args *structs.DCSpecificRequest, reply *structs.ACLToken) error { + if err := a.aclPreCheck(); err != nil { + return err + } + if done, err := a.srv.forward("ACL.BootstrapTokens", args, args, reply); done { return err } // Verify we are allowed to serve this request - if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { + if !a.srv.InACLDatacenter() { return acl.ErrDisabled } // By doing some pre-checks we can head off later bootstrap attempts // without having to run them through Raft, which should curb abuse. state := a.srv.fsm.State() - bs, err := state.ACLGetBootstrap() + allowed, resetIdx, err := state.CanBootstrapACLToken() if err != nil { return err } - if bs == nil { - return structs.ACLBootstrapNotInitializedErr - } - if !bs.AllowBootstrap { - return structs.ACLBootstrapNotAllowedErr + var specifiedIndex uint64 = 0 + if !allowed { + // Check if there is a reset index specified + specifiedIndex = a.fileBootstrapResetIndex() + if specifiedIndex == 0 { + return fmt.Errorf("ACL bootstrap no longer allowed (reset index: %d)", resetIdx) + } else if specifiedIndex != resetIdx { + return fmt.Errorf("Invalid bootstrap reset index (specified %d, reset index: %d)", specifiedIndex, resetIdx) + } } - // Propose a new token. - token, err := uuid.GenerateUUID() + // remove the bootstrap override file now that we have the index from it and it was valid. + // whether bootstrapping works or not is irrelevant as we really don't want this file hanging around + // in case a snapshot restore is done. In that case we don't want to accidentally allow re-bootstrapping + // just becuase the file was unchanged. + a.removeBootstrapResetFile() + + accessor, err := lib.GenerateUUID(a.srv.checkTokenUUID) if err != nil { - return fmt.Errorf("failed to make random token: %v", err) + return err + } + secret, err := lib.GenerateUUID(a.srv.checkTokenUUID) + if err != nil { + return err } - // Attempt a bootstrap. - req := structs.ACLRequest{ - Datacenter: a.srv.config.ACLDatacenter, - Op: structs.ACLBootstrapNow, - ACL: structs.ACL{ - ID: token, - Name: "Bootstrap Token", - Type: structs.ACLTypeManagement, + req := structs.ACLTokenBootstrapRequest{ + Token: structs.ACLToken{ + AccessorID: accessor, + SecretID: secret, + Description: "Bootstrap Token (Global Management)", + Policies: []structs.ACLTokenPolicyLink{ + { + ID: structs.ACLPolicyGlobalManagementID, + }, + }, + CreateTime: time.Now(), + Local: false, + // DEPRECATED (ACL-Legacy-Compat) - This is used so that the bootstrap token is still visible via the v1 acl APIs + Type: structs.ACLTokenTypeManagement, }, + ResetIndex: specifiedIndex, } - resp, err := a.srv.raftApply(structs.ACLRequestType, &req) + + req.Token.SetHash(true) + + resp, err := a.srv.raftApply(structs.ACLBootstrapRequestType, &req) if err != nil { return err } - switch v := resp.(type) { - case error: - return v - case *structs.ACL: - *reply = *v + if err, ok := resp.(error); ok { + return err + } - default: - // Just log this, since it looks like the bootstrap may have - // completed. - a.srv.logger.Printf("[ERR] consul.acl: Unexpected response during bootstrap: %T", v) + if _, token, err := state.ACLTokenGetByAccessor(nil, accessor); err == nil { + *reply = *token } a.srv.logger.Printf("[INFO] consul.acl: ACL bootstrap completed") return nil } -// aclApplyInternal is used to apply an ACL request after it has been vetted that -// this is a valid operation. It is used when users are updating ACLs, in which -// case we check their token to make sure they have management privileges. It is -// also used for ACL replication. We want to run the replicated ACLs through the -// same checks on the change itself. -func aclApplyInternal(srv *Server, args *structs.ACLRequest, reply *string) error { - // All ACLs must have an ID by this point. - if args.ACL.ID == "" { - return fmt.Errorf("Missing ACL ID") +func (a *ACL) TokenRead(args *structs.ACLTokenReadRequest, reply *structs.ACLTokenResponse) error { + if err := a.aclPreCheck(); err != nil { + return err } - switch args.Op { - case structs.ACLSet: - // Verify the ACL type - switch args.ACL.Type { - case structs.ACLTypeClient: - case structs.ACLTypeManagement: - default: - return fmt.Errorf("Invalid ACL Type") + // clients will not know whether the server has local token store. In the case + // where it doesnt' we will transparently forward requests. + if !a.srv.LocalTokensEnabled() { + args.Datacenter = a.srv.config.ACLDatacenter + } + + if done, err := a.srv.forward("ACL.TokenRead", args, args, reply); done { + return err + } + + var rule acl.Authorizer + if args.TokenIDType == structs.ACLTokenAccessor { + var err error + // Only ACLRead privileges are required to list tokens + // However if you do not have ACLWrite as well the token + // secrets will be redacted + if rule, err = a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLRead() { + return acl.ErrPermissionDenied + } + } + + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + var index uint64 + var token *structs.ACLToken + var err error + + if args.TokenIDType == structs.ACLTokenAccessor { + index, token, err = state.ACLTokenGetByAccessor(ws, args.TokenID) + if token != nil { + a.srv.filterACLWithAuthorizer(rule, &token) + } + } else { + index, token, err = state.ACLTokenGetBySecret(ws, args.TokenID) + } + + if err != nil { + return err + } + + reply.Index, reply.Token = index, token + return nil + }) +} + +func (a *ACL) TokenClone(args *structs.ACLTokenUpsertRequest, reply *structs.ACLToken) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + // clients will not know whether the server has local token store. In the case + // where it doesnt' we will transparently forward requests. + if !a.srv.LocalTokensEnabled() { + args.Datacenter = a.srv.config.ACLDatacenter + } + + if done, err := a.srv.forward("ACL.TokenClone", args, args, reply); done { + return err + } + + defer metrics.MeasureSince([]string{"acl", "token", "clone"}, time.Now()) + + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLWrite() { + return acl.ErrPermissionDenied + } + + _, token, err := a.srv.fsm.State().ACLTokenGetByAccessor(nil, args.ACLToken.AccessorID) + if err != nil { + return err + } else if token == nil { + return acl.ErrNotFound + } else if !a.srv.InACLDatacenter() && !token.Local { + // global token writes must be forwarded to the primary DC + args.Datacenter = a.srv.config.ACLDatacenter + return a.srv.forwardDC("ACL.TokenClone", a.srv.config.ACLDatacenter, args, reply) + } + + if token.Rules != "" { + return fmt.Errorf("Cannot clone a legacy ACL with this endpoint") + } + + cloneReq := structs.ACLTokenUpsertRequest{ + Datacenter: args.Datacenter, + ACLToken: structs.ACLToken{ + Policies: token.Policies, + Local: token.Local, + Description: token.Description, + }, + WriteRequest: args.WriteRequest, + } + + if args.ACLToken.Description != "" { + cloneReq.ACLToken.Description = args.ACLToken.Description + } + + return a.tokenUpsertInternal(&cloneReq, reply, false) +} + +func (a *ACL) TokenUpsert(args *structs.ACLTokenUpsertRequest, reply *structs.ACLToken) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + // Global token creation/modification always goes to the ACL DC + if !args.ACLToken.Local { + args.Datacenter = a.srv.config.ACLDatacenter + } else if !a.srv.LocalTokensEnabled() { + return fmt.Errorf("Local tokens are disabled") + } + + if done, err := a.srv.forward("ACL.TokenUpsert", args, args, reply); done { + return err + } + + defer metrics.MeasureSince([]string{"acl", "token", "upsert"}, time.Now()) + + // Verify token is permitted to modify ACLs + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLWrite() { + return acl.ErrPermissionDenied + } + + return a.tokenUpsertInternal(args, reply, false) +} + +func (a *ACL) tokenUpsertInternal(args *structs.ACLTokenUpsertRequest, reply *structs.ACLToken, upgrade bool) error { + token := &args.ACLToken + + if !a.srv.LocalTokensEnabled() { + // local token operations + return fmt.Errorf("Cannot upsert tokens within this datacenter") + } else if !a.srv.InACLDatacenter() && !token.Local { + return fmt.Errorf("Cannot upsert global tokens within this datacenter") + } + + state := a.srv.fsm.State() + + if token.AccessorID == "" { + // Token Create + var err error + + // Generate the AccessorID + token.AccessorID, err = lib.GenerateUUID(a.srv.checkTokenUUID) + if err != nil { + return err } - // Verify this is not a root ACL - if acl.RootACL(args.ACL.ID) != nil { + // Generate the SecretID - not supporting non-UUID secrets + token.SecretID, err = lib.GenerateUUID(a.srv.checkTokenUUID) + if err != nil { + return err + } + + token.CreateTime = time.Now() + } else { + // Token Update + if _, err := uuid.ParseUUID(token.AccessorID); err != nil { + return fmt.Errorf("AccessorID is not a valid UUID") + } + + // DEPRECATED (ACL-Legacy-Compat) - maybe get rid of this in the future + // and instead do a ParseUUID check. New tokens will not have + // secrets generated by users but rather they will always be UUIDs. + // However if users just continue the upgrade cycle they may still + // have tokens using secrets that are not UUIDS + // The RootAuthorizer checks that the SecretID is not "allow", "deny" + // or "manage" as a precaution against something accidentally using + // one of these root policies by setting the secret to it. + if acl.RootAuthorizer(token.SecretID) != nil { return acl.PermissionDeniedError{Cause: "Cannot modify root ACL"} } - // Validate the rules compile - _, err := acl.Parse(args.ACL.Rules, srv.sentinel) + // Verify the token exists + _, existing, err := state.ACLTokenGetByAccessor(nil, token.AccessorID) if err != nil { - return fmt.Errorf("ACL rule compilation failed: %v", err) + return fmt.Errorf("Failed to lookup the acl token %q: %v", token.AccessorID, err) + } + if existing == nil { + return fmt.Errorf("Cannot find token %q", token.AccessorID) + } + if token.SecretID == "" { + token.SecretID = existing.SecretID + } else if existing.SecretID != token.SecretID { + return fmt.Errorf("Changing a tokens SecretID is not permitted") } - case structs.ACLDelete: - if args.ACL.ID == anonymousToken { - return acl.PermissionDeniedError{Cause: "Cannot delete anonymous token"} + // Cannot toggle the "Global" mode + if token.Local != existing.Local { + return fmt.Errorf("cannot toggle local mode of %s", token.AccessorID) } - default: - return fmt.Errorf("Invalid ACL Operation") + if upgrade { + token.CreateTime = time.Now() + } else { + token.CreateTime = existing.CreateTime + } } - // Apply the update - resp, err := srv.raftApply(structs.ACLRequestType, args) + policyIDs := make(map[string]struct{}) + var policies []structs.ACLTokenPolicyLink + + // Validate all the policy names and convert them to policy IDs + for _, link := range token.Policies { + if link.ID == "" { + _, policy, err := state.ACLPolicyGetByName(nil, link.Name) + if err != nil { + return fmt.Errorf("Error looking up policy for name %q: %v", link.Name, err) + } + if policy == nil { + return fmt.Errorf("No such ACL policy with name %q", link.Name) + } + link.ID = policy.ID + } + + // Do not store the policy name within raft/memdb as the policy could be renamed in the future. + link.Name = "" + + // dedup policy links by id + if _, ok := policyIDs[link.ID]; !ok { + policies = append(policies, link) + policyIDs[link.ID] = struct{}{} + } + } + token.Policies = policies + + if token.Rules != "" { + return fmt.Errorf("Rules cannot be specified for this token") + } + + if token.Type != "" { + return fmt.Errorf("Type cannot be specified for this token") + } + + token.SetHash(true) + + req := &structs.ACLTokenBatchUpsertRequest{ + Tokens: structs.ACLTokens{token}, + AllowCreate: true, + } + + resp, err := a.srv.raftApply(structs.ACLTokenUpsertRequestType, req) if err != nil { - srv.logger.Printf("[ERR] consul.acl: Apply failed: %v", err) - return err + return fmt.Errorf("Failed to apply token write request: %v", err) } + + // Purge the identity from the cache to prevent using the previous definition of the identity + a.srv.acls.cache.RemoveIdentity(token.SecretID) + if respErr, ok := resp.(error); ok { return respErr } - // Check if the return type is a string - if respString, ok := resp.(string); ok { - *reply = respString + if _, updatedToken, err := a.srv.fsm.State().ACLTokenGetByAccessor(nil, token.AccessorID); err == nil && token != nil { + *reply = *updatedToken + } else { + return fmt.Errorf("Failed to retrieve the token after insertion") } return nil } -// Apply is used to apply a modifying request to the data store. This should -// only be used for operations that modify the data -func (a *ACL) Apply(args *structs.ACLRequest, reply *string) error { - if done, err := a.srv.forward("ACL.Apply", args, args, reply); done { +func (a *ACL) TokenDelete(args *structs.ACLTokenDeleteRequest, reply *string) error { + if err := a.aclPreCheck(); err != nil { return err } - defer metrics.MeasureSince([]string{"acl", "apply"}, time.Now()) - // Verify we are allowed to serve this request - if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { - return acl.ErrDisabled + if !a.srv.LocalTokensEnabled() { + args.Datacenter = a.srv.config.ACLDatacenter } + if done, err := a.srv.forward("ACL.TokenDelete", args, args, reply); done { + return err + } + + defer metrics.MeasureSince([]string{"acl", "token", "delete"}, time.Now()) + // Verify token is permitted to modify ACLs - if rule, err := a.srv.resolveToken(args.Token); err != nil { + if rule, err := a.srv.ResolveToken(args.Token); err != nil { return err - } else if rule == nil || !rule.ACLModify() { + } else if rule == nil || !rule.ACLWrite() { return acl.ErrPermissionDenied } - // If no ID is provided, generate a new ID. This must be done prior to - // appending to the Raft log, because the ID is not deterministic. Once - // the entry is in the log, the state update MUST be deterministic or - // the followers will not converge. - if args.Op == structs.ACLSet && args.ACL.ID == "" { - state := a.srv.fsm.State() - for { - var err error - args.ACL.ID, err = uuid.GenerateUUID() + if _, err := uuid.ParseUUID(args.TokenID); err != nil { + return fmt.Errorf("Accessor ID is missing or an invalid UUID") + } + + if args.TokenID == structs.ACLTokenAnonymousID { + return fmt.Errorf("Delete operation not permitted on the anonymous token") + } + + // grab the token here so we can invalidate our cache later on + _, token, err := a.srv.fsm.State().ACLTokenGetByAccessor(nil, args.TokenID) + if err != nil { + return err + } + + if !a.srv.InACLDatacenter() && !token.Local { + args.Datacenter = a.srv.config.ACLDatacenter + return a.srv.forwardDC("ACL.TokenDelete", a.srv.config.ACLDatacenter, args, reply) + } + + req := &structs.ACLTokenBatchDeleteRequest{ + TokenIDs: []string{args.TokenID}, + } + + resp, err := a.srv.raftApply(structs.ACLTokenDeleteRequestType, req) + if err != nil { + return fmt.Errorf("Failed to apply token delete request: %v", err) + } + + // Purge the identity from the cache to prevent using the previous definition of the identity + if token != nil { + a.srv.acls.cache.RemoveIdentity(token.SecretID) + } + + if respErr, ok := resp.(error); ok { + return respErr + } + + if reply != nil && token != nil { + *reply = token.AccessorID + } + + return nil +} + +func (a *ACL) TokenList(args *structs.ACLTokenListRequest, reply *structs.ACLTokenListResponse) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if !a.srv.LocalTokensEnabled() { + if args.Datacenter != a.srv.config.ACLDatacenter { + args.Datacenter = a.srv.config.ACLDatacenter + args.IncludeLocal = false + args.IncludeGlobal = true + } + args.Datacenter = a.srv.config.ACLDatacenter + } + + if done, err := a.srv.forward("ACL.TokenList", args, args, reply); done { + return err + } + + rule, err := a.srv.ResolveToken(args.Token) + if err != nil { + return err + } else if rule == nil || !rule.ACLRead() { + return acl.ErrPermissionDenied + } + + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + index, tokens, err := state.ACLTokenList(ws, args.IncludeLocal, args.IncludeGlobal, args.Policy) if err != nil { - a.srv.logger.Printf("[ERR] consul.acl: UUID generation failed: %v", err) return err } - _, acl, err := state.ACLGet(nil, args.ACL.ID) + stubs := make([]*structs.ACLTokenListStub, 0, len(tokens)) + for _, token := range tokens { + stubs = append(stubs, token.Stub()) + } + reply.Index, reply.Tokens = index, stubs + return nil + }) +} + +func (a *ACL) TokenBatchRead(args *structs.ACLTokenBatchReadRequest, reply *structs.ACLTokensResponse) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if !a.srv.LocalTokensEnabled() { + args.Datacenter = a.srv.config.ACLDatacenter + } + + if done, err := a.srv.forward("ACL.TokenBatchRead", args, args, reply); done { + return err + } + + rule, err := a.srv.ResolveToken(args.Token) + if err != nil { + return err + } else if rule == nil || !rule.ACLRead() { + return acl.ErrPermissionDenied + } + + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + index, tokens, err := state.ACLTokenBatchRead(ws, args.AccessorIDs) if err != nil { - a.srv.logger.Printf("[ERR] consul.acl: ACL lookup failed: %v", err) return err } - if acl == nil { - break + + a.srv.filterACLWithAuthorizer(rule, &tokens) + + reply.Index, reply.Tokens = index, tokens + return nil + }) +} + +func (a *ACL) PolicyRead(args *structs.ACLPolicyReadRequest, reply *structs.ACLPolicyResponse) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if done, err := a.srv.forward("ACL.PolicyRead", args, args, reply); done { + return err + } + + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLRead() { + return acl.ErrPermissionDenied + } + + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + index, policy, err := state.ACLPolicyGetByID(ws, args.PolicyID) + + if err != nil { + return err + } + + reply.Index, reply.Policy = index, policy + return nil + }) +} + +func (a *ACL) PolicyBatchRead(args *structs.ACLPolicyBatchReadRequest, reply *structs.ACLPoliciesResponse) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if done, err := a.srv.forward("ACL.PolicyBatchRead", args, args, reply); done { + return err + } + + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLRead() { + return acl.ErrPermissionDenied + } + + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + index, policies, err := state.ACLPolicyBatchRead(ws, args.PolicyIDs) + if err != nil { + return err + } + + reply.Index, reply.Policies = index, policies + return nil + }) +} + +func (a *ACL) PolicyUpsert(args *structs.ACLPolicyUpsertRequest, reply *structs.ACLPolicy) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if !a.srv.InACLDatacenter() { + args.Datacenter = a.srv.config.ACLDatacenter + } + + if done, err := a.srv.forward("ACL.PolicyUpsert", args, args, reply); done { + return err + } + + defer metrics.MeasureSince([]string{"acl", "policy", "upsert"}, time.Now()) + + // Verify token is permitted to modify ACLs + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLWrite() { + return acl.ErrPermissionDenied + } + + policy := &args.Policy + state := a.srv.fsm.State() + + // Almost all of the checks here are also done in the state store. However, + // we want to prevent the raft operations when we know they are going to fail + // so we still do them here. + + // ensure a name is set + if policy.Name == "" { + return fmt.Errorf("Invalid Policy: no Name is set") + } + + if !validPolicyName.MatchString(policy.Name) { + return fmt.Errorf("Invalid Policy: invalid Name. Only alphanumeric characters, '-' and '_' are allowed") + } + + if policy.ID == "" { + // with no policy ID one will be generated + var err error + + policy.ID, err = lib.GenerateUUID(a.srv.checkPolicyUUID) + if err != nil { + return err + } + + // validate the name is unique + if _, existing, err := state.ACLPolicyGetByName(nil, policy.Name); err != nil { + return fmt.Errorf("acl policy lookup by name failed: %v", err) + } else if existing != nil { + return fmt.Errorf("Invalid Policy: A Policy with Name %q already exists", policy.Name) + } + } else { + if _, err := uuid.ParseUUID(policy.ID); err != nil { + return fmt.Errorf("Policy ID invalid UUID") + } + + // Verify the policy exists + _, existing, err := state.ACLPolicyGetByID(nil, policy.ID) + if err != nil { + return fmt.Errorf("acl policy lookup failed: %v", err) + } else if existing == nil { + return fmt.Errorf("cannot find policy %s", policy.ID) + } + + if existing.Name != policy.Name { + if _, nameMatch, err := state.ACLPolicyGetByName(nil, policy.Name); err != nil { + return fmt.Errorf("acl policy lookup by name failed: %v", err) + } else if nameMatch != nil { + return fmt.Errorf("Invalid Policy: A policy with name %q already exists", policy.Name) + } + } + + if policy.ID == structs.ACLPolicyGlobalManagementID { + if policy.Datacenters != nil || len(policy.Datacenters) > 0 { + return fmt.Errorf("Changing the Datacenters of the builtin global-management policy is not permitted") + } + + if policy.Rules != existing.Rules { + return fmt.Errorf("Changing the Rules for the builtin global-management policy is not permitted") } } } - // Do the apply now that this update is vetted. - if err := aclApplyInternal(a.srv, args, reply); err != nil { + // validate the rules + _, err := acl.NewPolicyFromSource("", 0, policy.Rules, policy.Syntax, a.srv.sentinel) + if err != nil { return err } - // Clear the cache if applicable - if args.ACL.ID != "" { - a.srv.aclAuthCache.ClearACL(args.ACL.ID) + // calcualte the hash for this policy + policy.SetHash(true) + + req := &structs.ACLPolicyBatchUpsertRequest{ + Policies: structs.ACLPolicies{policy}, + } + + resp, err := a.srv.raftApply(structs.ACLPolicyUpsertRequestType, req) + if err != nil { + return fmt.Errorf("Failed to apply policy upsert request: %v", err) + } + + // Remove from the cache to prevent stale cache usage + a.srv.acls.cache.RemovePolicy(policy.ID) + + if respErr, ok := resp.(error); ok { + return respErr + } + + if _, policy, err := a.srv.fsm.State().ACLPolicyGetByID(nil, policy.ID); err == nil && policy != nil { + *reply = *policy } return nil } -// Get is used to retrieve a single ACL -func (a *ACL) Get(args *structs.ACLSpecificRequest, - reply *structs.IndexedACLs) error { - if done, err := a.srv.forward("ACL.Get", args, args, reply); done { +func (a *ACL) PolicyDelete(args *structs.ACLPolicyDeleteRequest, reply *string) error { + if err := a.aclPreCheck(); err != nil { return err } - // Verify we are allowed to serve this request - if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { - return acl.ErrDisabled + if !a.srv.InACLDatacenter() { + args.Datacenter = a.srv.config.ACLDatacenter } - return a.srv.blockingQuery(&args.QueryOptions, - &reply.QueryMeta, + if done, err := a.srv.forward("ACL.PolicyDelete", args, args, reply); done { + return err + } + + defer metrics.MeasureSince([]string{"acl", "policy", "delete"}, time.Now()) + + // Verify token is permitted to modify ACLs + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLWrite() { + return acl.ErrPermissionDenied + } + + _, policy, err := a.srv.fsm.State().ACLPolicyGetByID(nil, args.PolicyID) + if err != nil { + return err + } + + if policy == nil { + return nil + } + + if policy.ID == structs.ACLPolicyGlobalManagementID { + return fmt.Errorf("Delete operation not permitted on the builtin global-management policy") + } + + req := structs.ACLPolicyBatchDeleteRequest{ + PolicyIDs: []string{args.PolicyID}, + } + + resp, err := a.srv.raftApply(structs.ACLPolicyDeleteRequestType, &req) + if err != nil { + return fmt.Errorf("Failed to apply policy delete request: %v", err) + } + + a.srv.acls.cache.RemovePolicy(policy.ID) + + if resp == nil { + return nil + } + + if respErr, ok := resp.(error); ok { + return respErr + } + + if policy != nil { + *reply = policy.Name + } + + return nil +} + +func (a *ACL) PolicyList(args *structs.ACLPolicyListRequest, reply *structs.ACLPolicyListResponse) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if done, err := a.srv.forward("ACL.PolicyList", args, args, reply); done { + return err + } + + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLRead() { + return acl.ErrPermissionDenied + } + + return a.srv.blockingQuery(&args.QueryOptions, &reply.QueryMeta, func(ws memdb.WatchSet, state *state.Store) error { - index, acl, err := state.ACLGet(ws, args.ACL) + index, policies, err := state.ACLPolicyList(ws, args.DCScope) if err != nil { return err } - reply.Index = index - if acl != nil { - reply.ACLs = structs.ACLs{acl} - } else { - reply.ACLs = nil + var stubs structs.ACLPolicyListStubs + for _, policy := range policies { + stubs = append(stubs, policy.Stub()) } + + reply.Index, reply.Policies = index, stubs return nil }) } +// PolicyResolve is used to retrieve a subset of the policies associated with a given token +// The policy ids in the args simply act as a filter on the policy set assigned to the token +func (a *ACL) PolicyResolve(args *structs.ACLPolicyBatchReadRequest, reply *structs.ACLPoliciesResponse) error { + if err := a.aclPreCheck(); err != nil { + return err + } + + if done, err := a.srv.forward("ACL.PolicyResolve", args, args, reply); done { + return err + } + + // get full list of policies for this token + policies, err := a.srv.acls.resolveTokenToPolicies(args.Token) + if err != nil { + return err + } + + idMap := make(map[string]*structs.ACLPolicy) + for _, policy := range policies { + idMap[policy.ID] = policy + } + + for _, policyID := range args.PolicyIDs { + if policy, ok := idMap[policyID]; ok { + reply.Policies = append(reply.Policies, policy) + } + } + a.srv.setQueryMeta(&reply.QueryMeta) + + return nil +} + // makeACLETag returns an ETag for the given parent and policy. func makeACLETag(parent string, policy *acl.Policy) string { return fmt.Sprintf("%s:%s", parent, policy.ID) @@ -234,7 +891,7 @@ func makeACLETag(parent string, policy *acl.Policy) string { // GetPolicy is used to retrieve a compiled policy object with a TTL. Does not // support a blocking query. -func (a *ACL) GetPolicy(args *structs.ACLPolicyRequest, reply *structs.ACLPolicy) error { +func (a *ACL) GetPolicy(args *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error { if done, err := a.srv.forward("ACL.GetPolicy", args, args, reply); done { return err } @@ -245,18 +902,22 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicyRequest, reply *structs.ACLPolicy } // Get the policy via the cache - parent, policy, err := a.srv.aclAuthCache.GetACLPolicy(args.ACL) + parent := a.srv.config.ACLDefaultPolicy + + policy, err := a.srv.acls.GetMergedPolicyForToken(args.ACL) if err != nil { return err } + // translates the structures internals to most closely match what could be expressed in the original rule language + policy = policy.ConvertToLegacy() + // Generate an ETag - conf := a.srv.config etag := makeACLETag(parent, policy) // Setup the response reply.ETag = etag - reply.TTL = conf.ACLTTL + reply.TTL = a.srv.config.ACLTokenTTL a.srv.setQueryMeta(&reply.QueryMeta) // Only send the policy on an Etag mis-match @@ -267,38 +928,6 @@ func (a *ACL) GetPolicy(args *structs.ACLPolicyRequest, reply *structs.ACLPolicy return nil } -// List is used to list all the ACLs -func (a *ACL) List(args *structs.DCSpecificRequest, - reply *structs.IndexedACLs) error { - if done, err := a.srv.forward("ACL.List", args, args, reply); done { - return err - } - - // Verify we are allowed to serve this request - if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { - return acl.ErrDisabled - } - - // Verify token is permitted to list ACLs - if rule, err := a.srv.resolveToken(args.Token); err != nil { - return err - } else if rule == nil || !rule.ACLList() { - return acl.ErrPermissionDenied - } - - return a.srv.blockingQuery(&args.QueryOptions, - &reply.QueryMeta, - func(ws memdb.WatchSet, state *state.Store) error { - index, acls, err := state.ACLList(ws) - if err != nil { - return err - } - - reply.Index, reply.ACLs = index, acls - return nil - }) -} - // ReplicationStatus is used to retrieve the current ACL replication status. func (a *ACL) ReplicationStatus(args *structs.DCSpecificRequest, reply *structs.ACLReplicationStatus) error { diff --git a/agent/consul/acl_endpoint_legacy.go b/agent/consul/acl_endpoint_legacy.go new file mode 100644 index 000000000..720a36b37 --- /dev/null +++ b/agent/consul/acl_endpoint_legacy.go @@ -0,0 +1,258 @@ +package consul + +import ( + "fmt" + "time" + + "github.com/armon/go-metrics" + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/agent/consul/state" + "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/lib" + "github.com/hashicorp/go-memdb" +) + +// Bootstrap is used to perform a one-time ACL bootstrap operation on +// a cluster to get the first management token. +func (a *ACL) Bootstrap(args *structs.DCSpecificRequest, reply *structs.ACL) error { + if done, err := a.srv.forward("ACL.Bootstrap", args, args, reply); done { + return err + } + + // Verify we are allowed to serve this request + if !a.srv.InACLDatacenter() { + return acl.ErrDisabled + } + + // By doing some pre-checks we can head off later bootstrap attempts + // without having to run them through Raft, which should curb abuse. + state := a.srv.fsm.State() + allowed, _, err := state.CanBootstrapACLToken() + if err != nil { + return err + } + if !allowed { + return structs.ACLBootstrapNotAllowedErr + } + + // Propose a new token. + token, err := lib.GenerateUUID(a.srv.checkTokenUUID) + if err != nil { + return fmt.Errorf("failed to make random token: %v", err) + } + + // Attempt a bootstrap. + req := structs.ACLRequest{ + Datacenter: a.srv.config.ACLDatacenter, + Op: structs.ACLBootstrapNow, + ACL: structs.ACL{ + ID: token, + Name: "Bootstrap Token", + Type: structs.ACLTokenTypeManagement, + }, + } + resp, err := a.srv.raftApply(structs.ACLRequestType, &req) + if err != nil { + return err + } + switch v := resp.(type) { + case error: + return v + + case *structs.ACL: + *reply = *v + + default: + // Just log this, since it looks like the bootstrap may have + // completed. + a.srv.logger.Printf("[ERR] consul.acl: Unexpected response during bootstrap: %T", v) + } + + a.srv.logger.Printf("[INFO] consul.acl: ACL bootstrap completed") + return nil +} + +// aclApplyInternal is used to apply an ACL request after it has been vetted that +// this is a valid operation. It is used when users are updating ACLs, in which +// case we check their token to make sure they have management privileges. It is +// also used for ACL replication. We want to run the replicated ACLs through the +// same checks on the change itself. +func aclApplyInternal(srv *Server, args *structs.ACLRequest, reply *string) error { + // All ACLs must have an ID by this point. + if args.ACL.ID == "" { + return fmt.Errorf("Missing ACL ID") + } + + switch args.Op { + case structs.ACLSet: + // Verify the ACL type + switch args.ACL.Type { + case structs.ACLTokenTypeClient: + case structs.ACLTokenTypeManagement: + default: + return fmt.Errorf("Invalid ACL Type") + } + + _, existing, _ := srv.fsm.State().ACLTokenGetBySecret(nil, args.ACL.ID) + if existing != nil && len(existing.Policies) > 0 { + return fmt.Errorf("Cannot use legacy endpoint to modify a non-legacy token") + } + + // Verify this is not a root ACL + if acl.RootAuthorizer(args.ACL.ID) != nil { + return acl.PermissionDeniedError{Cause: "Cannot modify root ACL"} + } + + // Validate the rules compile + _, err := acl.NewPolicyFromSource("", 0, args.ACL.Rules, acl.SyntaxLegacy, srv.sentinel) + if err != nil { + return fmt.Errorf("ACL rule compilation failed: %v", err) + } + + case structs.ACLDelete: + if args.ACL.ID == anonymousToken { + return acl.PermissionDeniedError{Cause: "Cannot delete anonymous token"} + } + + default: + return fmt.Errorf("Invalid ACL Operation") + } + + // Apply the update + resp, err := srv.raftApply(structs.ACLRequestType, args) + if err != nil { + srv.logger.Printf("[ERR] consul.acl: Apply failed: %v", err) + return err + } + if respErr, ok := resp.(error); ok { + return respErr + } + + // Check if the return type is a string + if respString, ok := resp.(string); ok { + *reply = respString + } + + return nil +} + +// Apply is used to apply a modifying request to the data store. This should +// only be used for operations that modify the data +func (a *ACL) Apply(args *structs.ACLRequest, reply *string) error { + if done, err := a.srv.forward("ACL.Apply", args, args, reply); done { + return err + } + defer metrics.MeasureSince([]string{"acl", "apply"}, time.Now()) + + // Verify we are allowed to serve this request + if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { + return acl.ErrDisabled + } + + // Verify token is permitted to modify ACLs + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLWrite() { + return acl.ErrPermissionDenied + } + + // If no ID is provided, generate a new ID. This must be done prior to + // appending to the Raft log, because the ID is not deterministic. Once + // the entry is in the log, the state update MUST be deterministic or + // the followers will not converge. + if args.Op == structs.ACLSet && args.ACL.ID == "" { + var err error + args.ACL.ID, err = lib.GenerateUUID(a.srv.checkTokenUUID) + if err != nil { + return err + } + } + + // Do the apply now that this update is vetted. + if err := aclApplyInternal(a.srv, args, reply); err != nil { + return err + } + + // Clear the cache if applicable + if args.ACL.ID != "" { + a.srv.acls.cache.RemoveIdentity(args.ACL.ID) + } + + return nil +} + +// Get is used to retrieve a single ACL +func (a *ACL) Get(args *structs.ACLSpecificRequest, + reply *structs.IndexedACLs) error { + if done, err := a.srv.forward("ACL.Get", args, args, reply); done { + return err + } + + // Verify we are allowed to serve this request + if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { + return acl.ErrDisabled + } + + return a.srv.blockingQuery(&args.QueryOptions, + &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + index, token, err := state.ACLTokenGetBySecret(ws, args.ACL) + if err != nil { + return err + } + + // converting an ACLToken to an ACL will return nil and an error + // (which we ignore) when it is unconvertible. + var acl *structs.ACL + if token != nil { + acl, _ = token.Convert() + } + + reply.Index = index + if acl != nil { + reply.ACLs = structs.ACLs{acl} + } else { + reply.ACLs = nil + } + return nil + }) +} + +// List is used to list all the ACLs +func (a *ACL) List(args *structs.DCSpecificRequest, + reply *structs.IndexedACLs) error { + if done, err := a.srv.forward("ACL.List", args, args, reply); done { + return err + } + + // Verify we are allowed to serve this request + if a.srv.config.ACLDatacenter != a.srv.config.Datacenter { + return acl.ErrDisabled + } + + // Verify token is permitted to list ACLs + if rule, err := a.srv.ResolveToken(args.Token); err != nil { + return err + } else if rule == nil || !rule.ACLWrite() { + return acl.ErrPermissionDenied + } + + return a.srv.blockingQuery(&args.QueryOptions, + &reply.QueryMeta, + func(ws memdb.WatchSet, state *state.Store) error { + index, tokens, err := state.ACLTokenList(ws, false, true, "") + if err != nil { + return err + } + + var acls structs.ACLs + for _, token := range tokens { + if acl, err := token.Convert(); err == nil && acl != nil { + acls = append(acls, acl) + } + } + + reply.Index, reply.ACLs = index, acls + return nil + }) +} diff --git a/agent/consul/acl_endpoint_test.go b/agent/consul/acl_endpoint_test.go index e7ba3a111..33458e310 100644 --- a/agent/consul/acl_endpoint_test.go +++ b/agent/consul/acl_endpoint_test.go @@ -1,7 +1,12 @@ package consul import ( + "fmt" + "io/ioutil" + "net/rpc" "os" + "path/filepath" + "reflect" "strings" "testing" "time" @@ -11,7 +16,10 @@ import ( "github.com/hashicorp/consul/lib" "github.com/hashicorp/consul/testrpc" "github.com/hashicorp/consul/testutil/retry" + uuid "github.com/hashicorp/go-uuid" "github.com/hashicorp/net-rpc-msgpackrpc" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) func TestACLEndpoint_Bootstrap(t *testing.T) { @@ -19,6 +27,7 @@ func TestACLEndpoint_Bootstrap(t *testing.T) { dir1, s1 := testServerWithConfig(t, func(c *Config) { c.Build = "0.8.0" // Too low for auto init of bootstrap. c.ACLDatacenter = "dc1" + c.ACLsEnabled = true }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -32,45 +41,81 @@ func TestACLEndpoint_Bootstrap(t *testing.T) { Datacenter: "dc1", } var out structs.ACL - err := msgpackrpc.CallWithCodec(codec, "ACL.Bootstrap", &arg, &out) - if err.Error() != structs.ACLBootstrapNotInitializedErr.Error() { - t.Fatalf("err: %v", err) - } - - // Manually do an init. - req := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLBootstrapInit, - } - _, err = s1.raftApply(structs.ACLRequestType, &req) - if err != nil { - t.Fatalf("err: %v", err) - } - - // Try again, this time it should go through. We can only do some high + // We can only do some high // level checks on the ACL since we don't have control over the UUID or // Raft indexes at this level. if err := msgpackrpc.CallWithCodec(codec, "ACL.Bootstrap", &arg, &out); err != nil { t.Fatalf("err: %v", err) } if len(out.ID) != len("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") || - out.Name != "Bootstrap Token" || - out.Type != structs.ACLTypeManagement || + !strings.HasPrefix(out.Name, "Bootstrap Token") || + out.Type != structs.ACLTokenTypeManagement || out.CreateIndex == 0 || out.ModifyIndex == 0 { t.Fatalf("bad: %#v", out) } // Finally, make sure that another attempt is rejected. - err = msgpackrpc.CallWithCodec(codec, "ACL.Bootstrap", &arg, &out) + err := msgpackrpc.CallWithCodec(codec, "ACL.Bootstrap", &arg, &out) if err.Error() != structs.ACLBootstrapNotAllowedErr.Error() { t.Fatalf("err: %v", err) } } +func TestACLEndpoint_BootstrapTokens(t *testing.T) { + t.Parallel() + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLsEnabled = true + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + // Expect an error initially since ACL bootstrap is not initialized. + arg := structs.DCSpecificRequest{ + Datacenter: "dc1", + } + var out structs.ACLToken + // We can only do some high + // level checks on the ACL since we don't have control over the UUID or + // Raft indexes at this level. + require.NoError(t, msgpackrpc.CallWithCodec(codec, "ACL.BootstrapTokens", &arg, &out)) + require.Equal(t, 36, len(out.AccessorID)) + require.True(t, strings.HasPrefix(out.Description, "Bootstrap Token")) + require.Equal(t, out.Type, structs.ACLTokenTypeManagement) + require.True(t, out.CreateIndex > 0) + require.Equal(t, out.CreateIndex, out.ModifyIndex) + + // Finally, make sure that another attempt is rejected. + err := msgpackrpc.CallWithCodec(codec, "ACL.BootstrapTokens", &arg, &out) + require.Error(t, err) + require.True(t, strings.HasPrefix(err.Error(), structs.ACLBootstrapNotAllowedErr.Error())) + + _, resetIdx, err := s1.fsm.State().CanBootstrapACLToken() + + resetPath := filepath.Join(dir1, "acl-bootstrap-reset") + require.NoError(t, ioutil.WriteFile(resetPath, []byte(fmt.Sprintf("%d", resetIdx)), 0600)) + + oldID := out.AccessorID + // Finally, make sure that another attempt is rejected. + require.NoError(t, msgpackrpc.CallWithCodec(codec, "ACL.BootstrapTokens", &arg, &out)) + require.Equal(t, 36, len(out.AccessorID)) + require.NotEqual(t, oldID, out.AccessorID) + require.True(t, strings.HasPrefix(out.Description, "Bootstrap Token")) + require.Equal(t, out.Type, structs.ACLTokenTypeManagement) + require.True(t, out.CreateIndex > 0) + require.Equal(t, out.CreateIndex, out.ModifyIndex) +} + func TestACLEndpoint_Apply(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -85,7 +130,7 @@ func TestACLEndpoint_Apply(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -97,17 +142,17 @@ func TestACLEndpoint_Apply(t *testing.T) { // Verify state := s1.fsm.State() - _, s, err := state.ACLGet(nil, out) + _, s, err := state.ACLTokenGetBySecret(nil, out) if err != nil { t.Fatalf("err: %v", err) } if s == nil { t.Fatalf("should not be nil") } - if s.ID != out { + if s.SecretID != out { t.Fatalf("bad: %v", s) } - if s.Name != "User token" { + if s.Description != "User token" { t.Fatalf("bad: %v", s) } @@ -119,7 +164,7 @@ func TestACLEndpoint_Apply(t *testing.T) { } // Verify - _, s, err = state.ACLGet(nil, id) + _, s, err = state.ACLTokenGetBySecret(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -132,6 +177,7 @@ func TestACLEndpoint_Update_PurgeCache(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -146,7 +192,7 @@ func TestACLEndpoint_Update_PurgeCache(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -157,7 +203,7 @@ func TestACLEndpoint_Update_PurgeCache(t *testing.T) { id := out // Resolve - acl1, err := s1.resolveToken(id) + acl1, err := s1.ResolveToken(id) if err != nil { t.Fatalf("err: %v", err) } @@ -176,7 +222,7 @@ func TestACLEndpoint_Update_PurgeCache(t *testing.T) { } // Resolve again - acl2, err := s1.resolveToken(id) + acl2, err := s1.ResolveToken(id) if err != nil { t.Fatalf("err: %v", err) } @@ -198,7 +244,7 @@ func TestACLEndpoint_Update_PurgeCache(t *testing.T) { } // Resolve again - acl3, err := s1.resolveToken(id) + acl3, err := s1.ResolveToken(id) if !acl.IsErrNotFound(err) { t.Fatalf("err: %v", err) } @@ -211,6 +257,7 @@ func TestACLEndpoint_Apply_CustomID(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -226,7 +273,7 @@ func TestACLEndpoint_Apply_CustomID(t *testing.T) { ACL: structs.ACL{ ID: "foobarbaz", // Specify custom ID, does not exist Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -240,17 +287,17 @@ func TestACLEndpoint_Apply_CustomID(t *testing.T) { // Verify state := s1.fsm.State() - _, s, err := state.ACLGet(nil, out) + _, s, err := state.ACLTokenGetBySecret(nil, out) if err != nil { t.Fatalf("err: %v", err) } if s == nil { t.Fatalf("should not be nil") } - if s.ID != out { + if s.SecretID != out { t.Fatalf("bad: %v", s) } - if s.Name != "User token" { + if s.Description != "User token" { t.Fatalf("bad: %v", s) } } @@ -259,6 +306,7 @@ func TestACLEndpoint_Apply_Denied(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -272,7 +320,7 @@ func TestACLEndpoint_Apply_Denied(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, } var out string @@ -286,6 +334,7 @@ func TestACLEndpoint_Apply_DeleteAnon(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -301,7 +350,7 @@ func TestACLEndpoint_Apply_DeleteAnon(t *testing.T) { ACL: structs.ACL{ ID: anonymousToken, Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -316,6 +365,7 @@ func TestACLEndpoint_Apply_RootChange(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -331,7 +381,7 @@ func TestACLEndpoint_Apply_RootChange(t *testing.T) { ACL: structs.ACL{ ID: "manage", Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -346,6 +396,7 @@ func TestACLEndpoint_Get(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -360,7 +411,7 @@ func TestACLEndpoint_Get(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -394,6 +445,7 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -408,7 +460,7 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -417,25 +469,29 @@ func TestACLEndpoint_GetPolicy(t *testing.T) { t.Fatalf("err: %v", err) } - getR := structs.ACLPolicyRequest{ + getR := structs.ACLPolicyResolveLegacyRequest{ Datacenter: "dc1", ACL: out, } - var acls structs.ACLPolicy - if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", &getR, &acls); err != nil { - t.Fatalf("err: %v", err) - } - if acls.Policy == nil { - t.Fatalf("Bad: %v", acls) - } - if acls.TTL != 30*time.Second { - t.Fatalf("bad: %v", acls) - } + var acls structs.ACLPolicyResolveLegacyResponse + retry.Run(t, func(r *retry.R) { + + if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", &getR, &acls); err != nil { + t.Fatalf("err: %v", err) + } + + if acls.Policy == nil { + t.Fatalf("Bad: %v", acls) + } + if acls.TTL != 30*time.Second { + t.Fatalf("bad: %v", acls) + } + }) // Do a conditional lookup with etag getR.ETag = acls.ETag - var out2 structs.ACLPolicy + var out2 structs.ACLPolicyResolveLegacyResponse if err := msgpackrpc.CallWithCodec(codec, "ACL.GetPolicy", &getR, &out2); err != nil { t.Fatalf("err: %v", err) } @@ -452,6 +508,7 @@ func TestACLEndpoint_List(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -468,7 +525,7 @@ func TestACLEndpoint_List(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, WriteRequest: structs.WriteRequest{Token: "root"}, } @@ -492,8 +549,8 @@ func TestACLEndpoint_List(t *testing.T) { t.Fatalf("Bad: %v", acls) } - // 5 + anonymous + master - if len(acls.ACLs) != 7 { + // 5 + master + if len(acls.ACLs) != 6 { t.Fatalf("Bad: %v", acls.ACLs) } for i := 0; i < len(acls.ACLs); i++ { @@ -514,6 +571,7 @@ func TestACLEndpoint_List_Denied(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -536,8 +594,10 @@ func TestACLEndpoint_ReplicationStatus(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc2" - c.EnableACLReplication = true - c.ACLReplicationInterval = 10 * time.Millisecond + c.ACLsEnabled = true + c.ACLTokenReplication = true + c.ACLReplicationRate = 100 + c.ACLReplicationBurst = 100 }) s1.tokens.UpdateACLReplicationToken("secret") defer os.RemoveAll(dir1) @@ -562,3 +622,917 @@ func TestACLEndpoint_ReplicationStatus(t *testing.T) { } }) } + +func TestACLEndpoint_TokenRead(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + token, err := upsertTestToken(codec, "root", "dc1") + if err != nil { + t.Fatalf("err: %v", err) + } + + acl := ACL{srv: s1} + + // exists and matches what we created + { + req := structs.ACLTokenReadRequest{ + Datacenter: "dc1", + TokenID: token.AccessorID, + TokenIDType: structs.ACLTokenAccessor, + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLTokenResponse{} + + err := acl.TokenRead(&req, &resp) + assert.NoError(err) + + if !reflect.DeepEqual(resp.Token, token) { + t.Fatalf("tokens are not equal: %v != %v", resp.Token, token) + } + } + + // nil when token does not exist + { + fakeID, err := uuid.GenerateUUID() + assert.NoError(err) + + req := structs.ACLTokenReadRequest{ + Datacenter: "dc1", + TokenID: fakeID, + TokenIDType: structs.ACLTokenAccessor, + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLTokenResponse{} + + err = acl.TokenRead(&req, &resp) + assert.Nil(resp.Token) + assert.NoError(err) + } + + // validates ID format + { + req := structs.ACLTokenReadRequest{ + Datacenter: "dc1", + TokenID: "definitely-really-certainly-not-a-uuid", + TokenIDType: structs.ACLTokenAccessor, + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLTokenResponse{} + + err := acl.TokenRead(&req, &resp) + assert.Nil(resp.Token) + assert.EqualError(err, "failed acl token lookup: failed acl token lookup: index error: UUID must be 36 characters") + } +} + +func TestACLEndpoint_TokenClone(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + t1, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + + req := structs.ACLTokenUpsertRequest{ + Datacenter: "dc1", + ACLToken: structs.ACLToken{AccessorID: t1.AccessorID}, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + t2 := structs.ACLToken{} + + err = acl.TokenClone(&req, &t2) + assert.NoError(err) + + assert.Equal(t1.Description, t2.Description) + assert.Equal(t1.Policies, t2.Policies) + assert.Equal(t1.Rules, t2.Rules) + assert.Equal(t1.Local, t2.Local) + assert.NotEqual(t1.AccessorID, t2.AccessorID) + assert.NotEqual(t1.SecretID, t2.SecretID) +} + +func TestACLEndpoint_TokenUpsert(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + acl := ACL{srv: s1} + var tokenID string + + // Create it + { + req := structs.ACLTokenUpsertRequest{ + Datacenter: "dc1", + ACLToken: structs.ACLToken{ + Description: "foobar", + Policies: nil, + Local: false, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + resp := structs.ACLToken{} + + err := acl.TokenUpsert(&req, &resp) + assert.NoError(err) + + // Get the token directly to validate that it exists + tokenResp, err := retrieveTestToken(codec, "root", "dc1", resp.AccessorID) + assert.NoError(err) + token := tokenResp.Token + + assert.NotNil(token.AccessorID) + assert.Equal(token.Description, "foobar") + assert.Equal(token.AccessorID, resp.AccessorID) + + tokenID = token.AccessorID + } + // Update it + { + req := structs.ACLTokenUpsertRequest{ + Datacenter: "dc1", + ACLToken: structs.ACLToken{ + Description: "new-description", + AccessorID: tokenID, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + resp := structs.ACLToken{} + + err := acl.TokenUpsert(&req, &resp) + assert.NoError(err) + + // Get the token directly to validate that it exists + tokenResp, err := retrieveTestToken(codec, "root", "dc1", resp.AccessorID) + assert.NoError(err) + token := tokenResp.Token + + assert.NotNil(token.AccessorID) + assert.Equal(token.Description, "new-description") + assert.Equal(token.AccessorID, resp.AccessorID) + } +} +func TestACLEndpoint_TokenUpsert_anon(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + policy, err := upsertTestPolicy(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + + // Assign the policies to a token + tokenUpsertReq := structs.ACLTokenUpsertRequest{ + Datacenter: "dc1", + ACLToken: structs.ACLToken{ + AccessorID: structs.ACLTokenAnonymousID, + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: policy.ID, + }, + }, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + token := structs.ACLToken{} + err = acl.TokenUpsert(&tokenUpsertReq, &token) + assert.NoError(err) + assert.NotEmpty(token.SecretID) + + tokenResp, err := retrieveTestToken(codec, "root", "dc1", structs.ACLTokenAnonymousID) + assert.Equal(len(tokenResp.Token.Policies), 1) + assert.Equal(tokenResp.Token.Policies[0].ID, policy.ID) +} + +func TestACLEndpoint_TokenDelete(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + existingToken, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + + // deletes a token + { + req := structs.ACLTokenDeleteRequest{ + Datacenter: "dc1", + TokenID: existingToken.AccessorID, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var resp string + + err = acl.TokenDelete(&req, &resp) + assert.NoError(err) + + // Make sure the token is gone + tokenResp, err := retrieveTestToken(codec, "root", "dc1", existingToken.AccessorID) + assert.Nil(tokenResp.Token) + assert.NoError(err) + } + + // errors when token doesn't exist + { + fakeID, err := uuid.GenerateUUID() + assert.NoError(err) + + req := structs.ACLTokenDeleteRequest{ + Datacenter: "dc1", + TokenID: fakeID, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var resp string + + err = acl.TokenDelete(&req, &resp) + assert.NoError(err) + + // token should be nil + tokenResp, err := retrieveTestToken(codec, "root", "dc1", existingToken.AccessorID) + assert.Nil(tokenResp.Token) + assert.NoError(err) + } +} +func TestACLEndpoint_TokenDelete_anon(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + acl := ACL{srv: s1} + + req := structs.ACLTokenDeleteRequest{ + Datacenter: "dc1", + TokenID: structs.ACLTokenAnonymousID, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var resp string + + err := acl.TokenDelete(&req, &resp) + assert.EqualError(err, "Delete operation not permitted on the anonymous token") + + // Make sure the token is still there + tokenResp, err := retrieveTestToken(codec, "root", "dc1", structs.ACLTokenAnonymousID) + assert.NotNil(tokenResp.Token) +} + +func TestACLEndpoint_TokenList(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + t1, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + t2, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + + req := structs.ACLTokenListRequest{ + Datacenter: "dc1", + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLTokenListResponse{} + + err = acl.TokenList(&req, &resp) + assert.NoError(err) + + tokens := []string{t1.AccessorID, t2.AccessorID} + var retrievedTokens []string + + for _, v := range resp.Tokens { + retrievedTokens = append(retrievedTokens, v.AccessorID) + } + assert.Subset(retrievedTokens, tokens) +} + +func TestACLEndpoint_TokenBatchRead(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + t1, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + t2, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + tokens := []string{t1.AccessorID, t2.AccessorID} + + req := structs.ACLTokenBatchReadRequest{ + Datacenter: "dc1", + AccessorIDs: tokens, + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLTokensResponse{} + + err = acl.TokenBatchRead(&req, &resp) + assert.NoError(err) + + var retrievedTokens []string + + for _, v := range resp.Tokens { + retrievedTokens = append(retrievedTokens, v.AccessorID) + } + assert.EqualValues(retrievedTokens, tokens) +} + +func TestACLEndpoint_PolicyRead(t *testing.T) { + t.Parallel() + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + policy, err := upsertTestPolicy(codec, "root", "dc1") + if err != nil { + t.Fatalf("err: %v", err) + } + + acl := ACL{srv: s1} + + req := structs.ACLPolicyReadRequest{ + Datacenter: "dc1", + PolicyID: policy.ID, + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLPolicyResponse{} + + err = acl.PolicyRead(&req, &resp) + if err != nil { + t.Fatalf("err: %v", err) + } + + if !reflect.DeepEqual(resp.Policy, policy) { + t.Fatalf("tokens are not equal: %v != %v", resp.Policy, policy) + } +} + +func TestACLEndpoint_PolicyBatchRead(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + t1, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + t2, err := upsertTestToken(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + tokens := []string{t1.AccessorID, t2.AccessorID} + + req := structs.ACLTokenBatchReadRequest{ + Datacenter: "dc1", + AccessorIDs: tokens, + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLTokensResponse{} + + err = acl.TokenBatchRead(&req, &resp) + assert.NoError(err) + + var retrievedTokens []string + + for _, v := range resp.Tokens { + retrievedTokens = append(retrievedTokens, v.AccessorID) + } + assert.EqualValues(retrievedTokens, tokens) +} + +func TestACLEndpoint_PolicyUpsert(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + acl := ACL{srv: s1} + var policyID string + + // Create it + { + req := structs.ACLPolicyUpsertRequest{ + Datacenter: "dc1", + Policy: structs.ACLPolicy{ + Description: "foobar", + Name: "baz", + Rules: "service \"\" { policy = \"read\" }", + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + resp := structs.ACLPolicy{} + + err := acl.PolicyUpsert(&req, &resp) + assert.NoError(err) + assert.NotNil(resp.ID) + + // Get the policy directly to validate that it exists + policyResp, err := retrieveTestPolicy(codec, "root", "dc1", resp.ID) + assert.NoError(err) + policy := policyResp.Policy + + assert.NotNil(policy.ID) + assert.Equal(policy.Description, "foobar") + assert.Equal(policy.Name, "baz") + assert.Equal(policy.Rules, "service \"\" { policy = \"read\" }") + + policyID = policy.ID + } + + // Update it + { + req := structs.ACLPolicyUpsertRequest{ + Datacenter: "dc1", + Policy: structs.ACLPolicy{ + ID: policyID, + Description: "bat", + Name: "bar", + Rules: "service \"\" { policy = \"write\" }", + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + resp := structs.ACLPolicy{} + + err := acl.PolicyUpsert(&req, &resp) + assert.NoError(err) + assert.NotNil(resp.ID) + + // Get the policy directly to validate that it exists + policyResp, err := retrieveTestPolicy(codec, "root", "dc1", resp.ID) + assert.NoError(err) + policy := policyResp.Policy + + assert.NotNil(policy.ID) + assert.Equal(policy.Description, "bat") + assert.Equal(policy.Name, "bar") + assert.Equal(policy.Rules, "service \"\" { policy = \"write\" }") + } +} + +func TestACLEndpoint_PolicyUpsert_globalManagement(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + acl := ACL{srv: s1} + + // Can't change the rules + { + + req := structs.ACLPolicyUpsertRequest{ + Datacenter: "dc1", + Policy: structs.ACLPolicy{ + ID: structs.ACLPolicyGlobalManagementID, + Name: "foobar", // This is required to get past validation + Rules: "service \"\" { policy = \"write\" }", + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + resp := structs.ACLPolicy{} + + err := acl.PolicyUpsert(&req, &resp) + assert.EqualError(err, "Changing the Rules for the builtin global-management policy is not permitted") + } + + // Can rename it + { + req := structs.ACLPolicyUpsertRequest{ + Datacenter: "dc1", + Policy: structs.ACLPolicy{ + ID: structs.ACLPolicyGlobalManagementID, + Name: "foobar", + Rules: structs.ACLPolicyGlobalManagement, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + resp := structs.ACLPolicy{} + + err := acl.PolicyUpsert(&req, &resp) + assert.NoError(err) + + // Get the policy again + policyResp, err := retrieveTestPolicy(codec, "root", "dc1", structs.ACLPolicyGlobalManagementID) + assert.NoError(err) + policy := policyResp.Policy + + assert.Equal(policy.ID, structs.ACLPolicyGlobalManagementID) + assert.Equal(policy.Name, "foobar") + + } +} + +func TestACLEndpoint_PolicyDelete(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + existingPolicy, err := upsertTestPolicy(codec, "root", "dc1") + if err != nil { + t.Fatalf("err: %v", err) + } + + acl := ACL{srv: s1} + + req := structs.ACLPolicyDeleteRequest{ + Datacenter: "dc1", + PolicyID: existingPolicy.ID, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + + var resp string + + err = acl.PolicyDelete(&req, &resp) + assert.NoError(err) + + // Make sure the policy is gone + tokenResp, err := retrieveTestPolicy(codec, "root", "dc1", existingPolicy.ID) + assert.Nil(tokenResp.Policy) +} + +func TestACLEndpoint_PolicyDelete_globalManagement(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + acl := ACL{srv: s1} + + req := structs.ACLPolicyDeleteRequest{ + Datacenter: "dc1", + PolicyID: structs.ACLPolicyGlobalManagementID, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + var resp string + + err := acl.PolicyDelete(&req, &resp) + + assert.EqualError(err, "Delete operation not permitted on the builtin global-management policy") +} + +func TestACLEndpoint_PolicyList(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + p1, err := upsertTestPolicy(codec, "root", "dc1") + assert.NoError(err) + + p2, err := upsertTestPolicy(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + + req := structs.ACLPolicyListRequest{ + Datacenter: "dc1", + QueryOptions: structs.QueryOptions{Token: "root"}, + } + + resp := structs.ACLPolicyListResponse{} + + err = acl.PolicyList(&req, &resp) + assert.NoError(err) + + policies := []string{p1.ID, p2.ID} + var retrievedPolicies []string + + for _, v := range resp.Policies { + retrievedPolicies = append(retrievedPolicies, v.ID) + } + assert.Subset(retrievedPolicies, policies) +} + +func TestACLEndpoint_PolicyResolve(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + dir1, s1 := testServerWithConfig(t, func(c *Config) { + c.ACLDatacenter = "dc1" + c.ACLsEnabled = true + c.ACLMasterToken = "root" + }) + defer os.RemoveAll(dir1) + defer s1.Shutdown() + codec := rpcClient(t, s1) + defer codec.Close() + + testrpc.WaitForLeader(t, s1.RPC, "dc1") + + p1, err := upsertTestPolicy(codec, "root", "dc1") + assert.NoError(err) + + p2, err := upsertTestPolicy(codec, "root", "dc1") + assert.NoError(err) + + acl := ACL{srv: s1} + + policies := []string{p1.ID, p2.ID} + + // Assign the policies to a token + tokenUpsertReq := structs.ACLTokenUpsertRequest{ + Datacenter: "dc1", + ACLToken: structs.ACLToken{ + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: p1.ID, + }, + structs.ACLTokenPolicyLink{ + ID: p2.ID, + }, + }, + }, + WriteRequest: structs.WriteRequest{Token: "root"}, + } + token := structs.ACLToken{} + err = acl.TokenUpsert(&tokenUpsertReq, &token) + assert.NoError(err) + assert.NotEmpty(token.SecretID) + + resp := structs.ACLPoliciesResponse{} + req := structs.ACLPolicyBatchReadRequest{ + Datacenter: "dc1", + PolicyIDs: []string{p1.ID, p2.ID}, + QueryOptions: structs.QueryOptions{Token: token.SecretID}, + } + err = acl.PolicyResolve(&req, &resp) + assert.NoError(err) + + var retrievedPolicies []string + + for _, v := range resp.Policies { + retrievedPolicies = append(retrievedPolicies, v.ID) + } + assert.EqualValues(retrievedPolicies, policies) +} + +// upsertTestToken creates a token for testing purposes +func upsertTestToken(codec rpc.ClientCodec, masterToken string, datacenter string) (*structs.ACLToken, error) { + arg := structs.ACLTokenUpsertRequest{ + Datacenter: datacenter, + ACLToken: structs.ACLToken{ + Description: "User token", + Local: false, + Policies: nil, + }, + WriteRequest: structs.WriteRequest{Token: masterToken}, + } + + var out structs.ACLToken + + err := msgpackrpc.CallWithCodec(codec, "ACL.TokenUpsert", &arg, &out) + + if err != nil { + return nil, err + } + + if out.AccessorID == "" { + return nil, fmt.Errorf("AccessorID is nil: %v", out) + } + + return &out, nil +} + +// retrieveTestToken returns a policy for testing purposes +func retrieveTestToken(codec rpc.ClientCodec, masterToken string, datacenter string, id string) (*structs.ACLTokenResponse, error) { + arg := structs.ACLTokenReadRequest{ + Datacenter: datacenter, + TokenID: id, + TokenIDType: structs.ACLTokenAccessor, + QueryOptions: structs.QueryOptions{Token: masterToken}, + } + + var out structs.ACLTokenResponse + + err := msgpackrpc.CallWithCodec(codec, "ACL.TokenRead", &arg, &out) + + if err != nil { + return nil, err + } + + return &out, nil +} + +// upsertTestPolicy creates a policy for testing purposes +func upsertTestPolicy(codec rpc.ClientCodec, masterToken string, datacenter string) (*structs.ACLPolicy, error) { + // Make sure test policies can't collide + policyUnq, err := uuid.GenerateUUID() + if err != nil { + return nil, err + } + + arg := structs.ACLPolicyUpsertRequest{ + Datacenter: datacenter, + Policy: structs.ACLPolicy{ + Name: fmt.Sprintf("test-policy-%s", policyUnq), + }, + WriteRequest: structs.WriteRequest{Token: masterToken}, + } + + var out structs.ACLPolicy + + err = msgpackrpc.CallWithCodec(codec, "ACL.PolicyUpsert", &arg, &out) + + if err != nil { + return nil, err + } + + if out.ID == "" { + return nil, fmt.Errorf("ID is nil: %v", out) + } + + return &out, nil +} + +// retrieveTestPolicy returns a policy for testing purposes +func retrieveTestPolicy(codec rpc.ClientCodec, masterToken string, datacenter string, id string) (*structs.ACLPolicyResponse, error) { + arg := structs.ACLPolicyReadRequest{ + Datacenter: datacenter, + PolicyID: id, + QueryOptions: structs.QueryOptions{Token: masterToken}, + } + + var out structs.ACLPolicyResponse + + err := msgpackrpc.CallWithCodec(codec, "ACL.PolicyRead", &arg, &out) + + if err != nil { + return nil, err + } + + return &out, nil +} diff --git a/agent/consul/acl_replication.go b/agent/consul/acl_replication.go index b008aa87a..33291cab5 100644 --- a/agent/consul/acl_replication.go +++ b/agent/consul/acl_replication.go @@ -1,347 +1,552 @@ package consul import ( + "bytes" + "context" "fmt" - "sort" "time" "github.com/armon/go-metrics" "github.com/hashicorp/consul/agent/structs" - "github.com/hashicorp/consul/lib" ) -// aclIterator simplifies the algorithm below by providing a basic iterator that -// moves through a list of ACLs and returns nil when it's exhausted. It also has -// methods for pre-sorting the ACLs being iterated over by ID, which should -// already be true, but since this is crucial for correctness and we are taking -// input from other servers, we sort to make sure. -type aclIterator struct { - acls structs.ACLs +const ( + // aclReplicationMaxRetryBackoff is the max number of seconds to sleep between ACL replication RPC errors + aclReplicationMaxRetryBackoff = 64 +) - // index is the current position of the iterator. - index int -} +func diffACLPolicies(local structs.ACLPolicies, remote structs.ACLPolicyListStubs, lastRemoteIndex uint64) ([]string, []string) { + local.Sort() + remote.Sort() -// newACLIterator returns a new ACL iterator. -func newACLIterator(acls structs.ACLs) *aclIterator { - return &aclIterator{acls: acls} -} + var deletions []string + var updates []string + var localIdx int + var remoteIdx int + for localIdx, remoteIdx = 0, 0; localIdx < len(local) && remoteIdx < len(remote); { + if local[localIdx].ID == remote[remoteIdx].ID { + // policy is in both the local and remote state - need to check raft indices and the Hash + if remote[remoteIdx].ModifyIndex > lastRemoteIndex && !bytes.Equal(remote[remoteIdx].Hash, local[localIdx].Hash) { + updates = append(updates, remote[remoteIdx].ID) + } + // increment both indices when equal + localIdx += 1 + remoteIdx += 1 + } else if local[localIdx].ID < remote[remoteIdx].ID { + // policy no longer in remoted state - needs deleting + deletions = append(deletions, local[localIdx].ID) -// See sort.Interface. -func (a *aclIterator) Len() int { - return len(a.acls) -} + // increment just the local index + localIdx += 1 + } else { + // local state doesn't have this policy - needs updating + updates = append(updates, remote[remoteIdx].ID) -// See sort.Interface. -func (a *aclIterator) Swap(i, j int) { - a.acls[i], a.acls[j] = a.acls[j], a.acls[i] -} - -// See sort.Interface. -func (a *aclIterator) Less(i, j int) bool { - return a.acls[i].ID < a.acls[j].ID -} - -// Front returns the item at index position, or nil if the list is exhausted. -func (a *aclIterator) Front() *structs.ACL { - if a.index < len(a.acls) { - return a.acls[a.index] + // increment just the remote index + remoteIdx += 1 + } } - return nil -} -// Next advances the iterator to the next index. -func (a *aclIterator) Next() { - a.index++ -} - -// reconcileACLs takes the local and remote ACL state, and produces a list of -// changes required in order to bring the local ACLs into sync with the remote -// ACLs. You can supply lastRemoteIndex as a hint that replication has succeeded -// up to that remote index and it will make this process more efficient by only -// comparing ACL entries modified after that index. Setting this to 0 will force -// a full compare of all existing ACLs. -func reconcileACLs(local, remote structs.ACLs, lastRemoteIndex uint64) structs.ACLRequests { - // Since sorting the lists is crucial for correctness, we are depending - // on data coming from other servers potentially running a different, - // version of Consul, and sorted-ness is kind of a subtle property of - // the state store indexing, it's prudent to make sure things are sorted - // before we begin. - localIter, remoteIter := newACLIterator(local), newACLIterator(remote) - sort.Sort(localIter) - sort.Sort(remoteIter) - - // Run through both lists and reconcile them. - var changes structs.ACLRequests - for localIter.Front() != nil || remoteIter.Front() != nil { - // If the local list is exhausted, then process this as a remote - // add. We know from the loop condition that there's something - // in the remote list. - if localIter.Front() == nil { - changes = append(changes, &structs.ACLRequest{ - Op: structs.ACLSet, - ACL: *(remoteIter.Front()), - }) - remoteIter.Next() - continue - } - - // If the remote list is exhausted, then process this as a local - // delete. We know from the loop condition that there's something - // in the local list. - if remoteIter.Front() == nil { - changes = append(changes, &structs.ACLRequest{ - Op: structs.ACLDelete, - ACL: *(localIter.Front()), - }) - localIter.Next() - continue - } - - // At this point we know there's something at the front of each - // list we need to resolve. - - // If the remote list has something local doesn't, we add it. - if localIter.Front().ID > remoteIter.Front().ID { - changes = append(changes, &structs.ACLRequest{ - Op: structs.ACLSet, - ACL: *(remoteIter.Front()), - }) - remoteIter.Next() - continue - } - - // If local has something remote doesn't, we delete it. - if localIter.Front().ID < remoteIter.Front().ID { - changes = append(changes, &structs.ACLRequest{ - Op: structs.ACLDelete, - ACL: *(localIter.Front()), - }) - localIter.Next() - continue - } - - // Local and remote have an ACL with the same ID, so we might - // need to compare them. - l, r := localIter.Front(), remoteIter.Front() - if r.RaftIndex.ModifyIndex > lastRemoteIndex && !r.IsSame(l) { - changes = append(changes, &structs.ACLRequest{ - Op: structs.ACLSet, - ACL: *r, - }) - } - localIter.Next() - remoteIter.Next() + for ; localIdx < len(local); localIdx += 1 { + deletions = append(deletions, local[localIdx].ID) } - return changes -} -// FetchLocalACLs returns the ACLs in the local state store. -func (s *Server) fetchLocalACLs() (structs.ACLs, error) { - _, local, err := s.fsm.State().ACLList(nil) - if err != nil { - return nil, err + for ; remoteIdx < len(remote); remoteIdx += 1 { + updates = append(updates, remote[remoteIdx].ID) } - return local, nil + + return deletions, updates } -// FetchRemoteACLs is used to get the remote set of ACLs from the ACL -// datacenter. The lastIndex parameter is a hint about which remote index we -// have replicated to, so this is expected to block until something changes. -func (s *Server) fetchRemoteACLs(lastRemoteIndex uint64) (*structs.IndexedACLs, error) { - defer metrics.MeasureSince([]string{"leader", "fetchRemoteACLs"}, time.Now()) +func (s *Server) deleteLocalACLPolicies(deletions []string, ctx context.Context) (bool, error) { + ticker := time.NewTicker(time.Second / time.Duration(s.config.ACLReplicationApplyLimit)) + defer ticker.Stop() - args := structs.DCSpecificRequest{ + for i := 0; i < len(deletions); i += aclBatchDeleteSize { + req := structs.ACLPolicyBatchDeleteRequest{} + + if i+aclBatchDeleteSize > len(deletions) { + req.PolicyIDs = deletions[i:] + } else { + req.PolicyIDs = deletions[i : i+aclBatchDeleteSize] + } + + resp, err := s.raftApply(structs.ACLPolicyDeleteRequestType, &req) + if err != nil { + return false, fmt.Errorf("Failed to apply policy deletions: %v", err) + } + if respErr, ok := resp.(error); ok && err != nil { + return false, fmt.Errorf("Failed to apply policy deletions: %v", respErr) + } + + if i+aclBatchDeleteSize < len(deletions) { + select { + case <-ctx.Done(): + return true, nil + case <-ticker.C: + // do nothing - ready for the next batch + } + } + } + + return false, nil +} + +func (s *Server) updateLocalACLPolicies(policies structs.ACLPolicies, ctx context.Context) (bool, error) { + ticker := time.NewTicker(time.Second / time.Duration(s.config.ACLReplicationApplyLimit)) + defer ticker.Stop() + + // outer loop handles submitting a batch + for batchStart := 0; batchStart < len(policies); { + // inner loop finds the last element to include in this batch. + batchSize := 0 + batchEnd := batchStart + for ; batchEnd < len(policies) && batchSize < aclBatchUpsertSize; batchEnd += 1 { + batchSize += policies[batchEnd].EstimateSize() + } + + req := structs.ACLPolicyBatchUpsertRequest{ + Policies: policies[batchStart:batchEnd], + } + + resp, err := s.raftApply(structs.ACLPolicyUpsertRequestType, &req) + if err != nil { + return false, fmt.Errorf("Failed to apply policy upserts: %v", err) + } + if respErr, ok := resp.(error); ok && err != nil { + return false, fmt.Errorf("Failed to apply policy upsert: %v", respErr) + } + s.logger.Printf("[DEBUG] acl: policy replication - upserted 1 batch with %d policies of size %d", batchEnd-batchStart, batchSize) + + // policies[batchEnd] wasn't include as the slicing doesn't include the element at the stop index + batchStart = batchEnd + + // prevent waiting if we are done + if batchEnd < len(policies) { + select { + case <-ctx.Done(): + return true, nil + case <-ticker.C: + // nothing to do - just rate limiting + } + } + } + return false, nil +} + +func (s *Server) fetchACLPoliciesBatch(policyIDs []string) (*structs.ACLPoliciesResponse, error) { + req := structs.ACLPolicyBatchReadRequest{ Datacenter: s.config.ACLDatacenter, + PolicyIDs: policyIDs, QueryOptions: structs.QueryOptions{ - Token: s.tokens.ACLReplicationToken(), - MinQueryIndex: lastRemoteIndex, - AllowStale: true, + AllowStale: true, + Token: s.tokens.ACLReplicationToken(), }, } - var remote structs.IndexedACLs - if err := s.RPC("ACL.List", &args, &remote); err != nil { + + var response structs.ACLPoliciesResponse + if err := s.RPC("ACL.PolicyBatchRead", &req, &response); err != nil { return nil, err } - return &remote, nil + + return &response, nil } -// UpdateLocalACLs is given a list of changes to apply in order to bring the -// local ACLs in-line with the remote ACLs from the ACL datacenter. -func (s *Server) updateLocalACLs(changes structs.ACLRequests) error { - defer metrics.MeasureSince([]string{"leader", "updateLocalACLs"}, time.Now()) +func (s *Server) fetchACLPolicies(lastRemoteIndex uint64) (*structs.ACLPolicyListResponse, error) { + defer metrics.MeasureSince([]string{"leader", "replication", "acl", "policy", "fetch"}, time.Now()) - minTimePerOp := time.Second / time.Duration(s.config.ACLReplicationApplyLimit) - for _, change := range changes { - // Note that we are using the single ACL interface here and not - // performing all this inside a single transaction. This is OK - // for two reasons. First, there's nothing else other than this - // replication routine that alters the local ACLs, so there's - // nothing to contend with locally. Second, if an apply fails - // in the middle (most likely due to losing leadership), the - // next replication pass will clean up and check everything - // again. - var reply string - start := time.Now() - if err := aclApplyInternal(s, change, &reply); err != nil { - return err + req := structs.ACLPolicyListRequest{ + Datacenter: s.config.ACLDatacenter, + QueryOptions: structs.QueryOptions{ + AllowStale: true, + MinQueryIndex: lastRemoteIndex, + Token: s.tokens.ACLReplicationToken(), + }, + } + + var response structs.ACLPolicyListResponse + if err := s.RPC("ACL.PolicyList", &req, &response); err != nil { + return nil, err + } + return &response, nil +} + +func diffACLTokens(local structs.ACLTokens, remote structs.ACLTokenListStubs, lastRemoteIndex uint64) ([]string, []string) { + local.Sort() + remote.Sort() + + var deletions []string + var updates []string + var localIdx int + var remoteIdx int + for localIdx, remoteIdx = 0, 0; localIdx < len(local) && remoteIdx < len(remote); { + if local[localIdx].AccessorID == remote[remoteIdx].AccessorID { + // policy is in both the local and remote state - need to check raft indices and Hash + if remote[remoteIdx].ModifyIndex > lastRemoteIndex && !bytes.Equal(remote[remoteIdx].Hash, local[localIdx].Hash) { + updates = append(updates, remote[remoteIdx].AccessorID) + } + // increment both indices when equal + localIdx += 1 + remoteIdx += 1 + } else if local[localIdx].AccessorID < remote[remoteIdx].AccessorID { + // policy no longer in remoted state - needs deleting + deletions = append(deletions, local[localIdx].AccessorID) + + // increment just the local index + localIdx += 1 + } else { + // local state doesn't have this policy - needs updating + updates = append(updates, remote[remoteIdx].AccessorID) + + // increment just the remote index + remoteIdx += 1 + } + } + + for ; localIdx < len(local); localIdx += 1 { + deletions = append(deletions, local[localIdx].AccessorID) + } + + for ; remoteIdx < len(remote); remoteIdx += 1 { + updates = append(updates, remote[remoteIdx].AccessorID) + } + + return deletions, updates +} + +func (s *Server) deleteLocalACLTokens(deletions []string, ctx context.Context) (bool, error) { + ticker := time.NewTicker(time.Second / time.Duration(s.config.ACLReplicationApplyLimit)) + defer ticker.Stop() + + for i := 0; i < len(deletions); i += aclBatchDeleteSize { + req := structs.ACLTokenBatchDeleteRequest{} + + if i+aclBatchDeleteSize > len(deletions) { + req.TokenIDs = deletions[i:] + } else { + req.TokenIDs = deletions[i : i+aclBatchDeleteSize] } - // Do a smooth rate limit to wait out the min time allowed for - // each op. If this op took longer than the min, then the sleep - // time will be negative and we will just move on. - elapsed := time.Since(start) - time.Sleep(minTimePerOp - elapsed) + resp, err := s.raftApply(structs.ACLTokenDeleteRequestType, &req) + if err != nil { + return false, fmt.Errorf("Failed to apply token deletions: %v", err) + } + if respErr, ok := resp.(error); ok && err != nil { + return false, fmt.Errorf("Failed to apply token deletions: %v", respErr) + } + + if i+aclBatchDeleteSize < len(deletions) { + select { + case <-ctx.Done(): + return true, nil + case <-ticker.C: + // do nothing - ready for the next batch + } + } } - return nil + + return false, nil } -// replicateACLs is a runs one pass of the algorithm for replicating ACLs from -// a remote ACL datacenter to local state. If there's any error, this will return -// 0 for the lastRemoteIndex, which will cause us to immediately do a full sync -// next time. -func (s *Server) replicateACLs(lastRemoteIndex uint64) (uint64, error) { - remote, err := s.fetchRemoteACLs(lastRemoteIndex) - if err != nil { - return 0, fmt.Errorf("failed to retrieve remote ACLs: %v", err) +func (s *Server) updateLocalACLTokens(tokens structs.ACLTokens, ctx context.Context) (bool, error) { + ticker := time.NewTicker(time.Second / time.Duration(s.config.ACLReplicationApplyLimit)) + defer ticker.Stop() + + // outer loop handles submitting a batch + for batchStart := 0; batchStart < len(tokens); { + // inner loop finds the last element to include in this batch. + batchSize := 0 + batchEnd := batchStart + for ; batchEnd < len(tokens) && batchSize < aclBatchUpsertSize; batchEnd += 1 { + batchSize += tokens[batchEnd].EstimateSize() + } + + req := structs.ACLTokenBatchUpsertRequest{ + Tokens: tokens[batchStart:batchEnd], + AllowCreate: true, + } + + resp, err := s.raftApply(structs.ACLTokenUpsertRequestType, &req) + if err != nil { + return false, fmt.Errorf("Failed to apply token upserts: %v", err) + } + if respErr, ok := resp.(error); ok && err != nil { + return false, fmt.Errorf("Failed to apply token upserts: %v", respErr) + } + + s.logger.Printf("[DEBUG] acl: token replication - upserted 1 batch with %d tokens of size %d", batchEnd-batchStart, batchSize) + + // tokens[batchEnd] wasn't include as the slicing doesn't include the element at the stop index + batchStart = batchEnd + + // prevent waiting if we are done + if batchEnd < len(tokens) { + select { + case <-ctx.Done(): + return true, nil + case <-ticker.C: + // nothing to do - just rate limiting here + } + } + } + return false, nil +} + +func (s *Server) fetchACLTokensBatch(tokenIDs []string) (*structs.ACLTokensResponse, error) { + req := structs.ACLTokenBatchReadRequest{ + Datacenter: s.config.ACLDatacenter, + AccessorIDs: tokenIDs, + QueryOptions: structs.QueryOptions{ + AllowStale: true, + Token: s.tokens.ACLReplicationToken(), + }, } - // This will be pretty common because we will be blocking for a long time - // and may have lost leadership, so lets control the message here instead - // of returning deeper error messages from from Raft. - if !s.IsLeader() { - return 0, fmt.Errorf("no longer cluster leader") + var response structs.ACLTokensResponse + if err := s.RPC("ACL.TokenBatchRead", &req, &response); err != nil { + return nil, err + } + + return &response, nil +} + +func (s *Server) fetchACLTokens(lastRemoteIndex uint64) (*structs.ACLTokenListResponse, error) { + defer metrics.MeasureSince([]string{"leader", "replication", "acl", "token", "fetch"}, time.Now()) + + req := structs.ACLTokenListRequest{ + Datacenter: s.config.ACLDatacenter, + QueryOptions: structs.QueryOptions{ + AllowStale: true, + MinQueryIndex: lastRemoteIndex, + Token: s.tokens.ACLReplicationToken(), + }, + IncludeLocal: false, + IncludeGlobal: true, + } + + var response structs.ACLTokenListResponse + if err := s.RPC("ACL.TokenList", &req, &response); err != nil { + return nil, err + } + return &response, nil +} + +func (s *Server) replicateACLPolicies(lastRemoteIndex uint64, ctx context.Context) (uint64, bool, error) { + remote, err := s.fetchACLPolicies(lastRemoteIndex) + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve remote ACL policies: %v", err) + } + + s.logger.Printf("[DEBUG] acl: finished fetching policies tokens: %d", len(remote.Policies)) + + // Need to check if we should be stopping. This will be common as the fetching process is a blocking + // RPC which could have been hanging around for a long time and during that time leadership could + // have been lost. + select { + case <-ctx.Done(): + return 0, true, nil + default: + // do nothing } // Measure everything after the remote query, which can block for long // periods of time. This metric is a good measure of how expensive the // replication process is. - defer metrics.MeasureSince([]string{"leader", "replicateACLs"}, time.Now()) + defer metrics.MeasureSince([]string{"leader", "replication", "acl", "policy", "apply"}, time.Now()) - local, err := s.fetchLocalACLs() + _, local, err := s.fsm.State().ACLPolicyList(nil, "") if err != nil { - return 0, fmt.Errorf("failed to retrieve local ACLs: %v", err) + return 0, false, fmt.Errorf("failed to retrieve local ACL policies: %v", err) } // If the remote index ever goes backwards, it's a good indication that // the remote side was rebuilt and we should do a full sync since we // can't make any assumptions about what's going on. if remote.QueryMeta.Index < lastRemoteIndex { - s.logger.Printf("[WARN] consul: ACL replication remote index moved backwards (%d to %d), forcing a full ACL sync", lastRemoteIndex, remote.QueryMeta.Index) + s.logger.Printf("[WARN] consul: ACL policy replication remote index moved backwards (%d to %d), forcing a full ACL policy sync", lastRemoteIndex, remote.QueryMeta.Index) lastRemoteIndex = 0 } + s.logger.Printf("[DEBUG] acl: policy replication - local: %d, remote: %d", len(local), len(remote.Policies)) // Calculate the changes required to bring the state into sync and then // apply them. - changes := reconcileACLs(local, remote.ACLs, lastRemoteIndex) - if err := s.updateLocalACLs(changes); err != nil { - return 0, fmt.Errorf("failed to sync ACL changes: %v", err) + deletions, updates := diffACLPolicies(local, remote.Policies, lastRemoteIndex) + + s.logger.Printf("[DEBUG] acl: policy replication - deletions: %d, updates: %d", len(deletions), len(updates)) + + var policies *structs.ACLPoliciesResponse + if len(updates) > 0 { + policies, err = s.fetchACLPoliciesBatch(updates) + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve ACL policy updates: %v", err) + } + s.logger.Printf("[DEBUG] acl: policy replication - downloaded %d policies", len(policies.Policies)) + } + + if len(deletions) > 0 { + s.logger.Printf("[DEBUG] acl: policy replication - performing deletions") + + exit, err := s.deleteLocalACLPolicies(deletions, ctx) + if exit { + return 0, true, nil + } + if err != nil { + return 0, false, fmt.Errorf("failed to delete local ACL policies: %v", err) + } + s.logger.Printf("[DEBUG] acl: policy replication - finished deletions") + } + + if len(updates) > 0 { + s.logger.Printf("[DEBUG] acl: policy replication - performing updates") + exit, err := s.updateLocalACLPolicies(policies.Policies, ctx) + if exit { + return 0, true, nil + } + if err != nil { + return 0, false, fmt.Errorf("failed to update local ACL policies: %v", err) + } + s.logger.Printf("[DEBUG] acl: policy replication - finished updates") } // Return the index we got back from the remote side, since we've synced // up with the remote state as of that index. - return remote.QueryMeta.Index, nil + return remote.QueryMeta.Index, false, nil +} + +func (s *Server) replicateACLTokens(lastRemoteIndex uint64, ctx context.Context) (uint64, bool, error) { + remote, err := s.fetchACLTokens(lastRemoteIndex) + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve remote ACL tokens: %v", err) + } + + s.logger.Printf("[DEBUG] acl: finished fetching remote tokens: %d", len(remote.Tokens)) + + // Need to check if we should be stopping. This will be common as the fetching process is a blocking + // RPC which could have been hanging around for a long time and during that time leadership could + // have been lost. + select { + case <-ctx.Done(): + return 0, true, nil + default: + // do nothing + } + + // Measure everything after the remote query, which can block for long + // periods of time. This metric is a good measure of how expensive the + // replication process is. + defer metrics.MeasureSince([]string{"leader", "replication", "acl", "token", "apply"}, time.Now()) + + _, local, err := s.fsm.State().ACLTokenList(nil, false, true, "") + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve local ACL tokens: %v", err) + } + + // If the remote index ever goes backwards, it's a good indication that + // the remote side was rebuilt and we should do a full sync since we + // can't make any assumptions about what's going on. + if remote.QueryMeta.Index < lastRemoteIndex { + s.logger.Printf("[WARN] consul: ACL token replication remote index moved backwards (%d to %d), forcing a full ACL token sync", lastRemoteIndex, remote.QueryMeta.Index) + lastRemoteIndex = 0 + } + + s.logger.Printf("[DEBUG] acl: token replication - local: %d, remote: %d", len(local), len(remote.Tokens)) + + // Calculate the changes required to bring the state into sync and then + // apply them. + deletions, updates := diffACLTokens(local, remote.Tokens, lastRemoteIndex) + s.logger.Printf("[DEBUG] acl: token replication - deletions: %d, updates: %d", len(deletions), len(updates)) + + var tokens *structs.ACLTokensResponse + if len(updates) > 0 { + tokens, err = s.fetchACLTokensBatch(updates) + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve ACL token updates: %v", err) + } + + s.logger.Printf("[DEBUG] acl: token replication - downloaded %d tokens", len(tokens.Tokens)) + } + + if len(deletions) > 0 { + s.logger.Printf("[DEBUG] acl: token replication - performing deletions") + + exit, err := s.deleteLocalACLTokens(deletions, ctx) + if exit { + return 0, true, nil + } + if err != nil { + return 0, false, fmt.Errorf("failed to delete local ACL tokens: %v", err) + } + s.logger.Printf("[DEBUG] acl: token replication - finished deletions") + } + + if len(updates) > 0 { + s.logger.Printf("[DEBUG] acl: token replication - performing updates") + exit, err := s.updateLocalACLTokens(tokens.Tokens, ctx) + if exit { + return 0, true, nil + } + if err != nil { + return 0, false, fmt.Errorf("failed to update local ACL tokens: %v", err) + } + s.logger.Printf("[DEBUG] acl: token replication - finished updates") + } + + // Return the index we got back from the remote side, since we've synced + // up with the remote state as of that index. + return remote.QueryMeta.Index, false, nil } // IsACLReplicationEnabled returns true if ACL replication is enabled. +// DEPRECATED (ACL-Legacy-Compat) - with new ACLs at least policy replication is required func (s *Server) IsACLReplicationEnabled() bool { authDC := s.config.ACLDatacenter return len(authDC) > 0 && (authDC != s.config.Datacenter) && - s.config.EnableACLReplication + s.config.ACLTokenReplication } -// updateACLReplicationStatus safely updates the ACL replication status. -func (s *Server) updateACLReplicationStatus(status structs.ACLReplicationStatus) { - // Fixup the times to shed some useless precision to ease formatting, - // and always report UTC. - status.LastError = status.LastError.Round(time.Second).UTC() - status.LastSuccess = status.LastSuccess.Round(time.Second).UTC() - - // Set the shared state. +func (s *Server) updateACLReplicationStatusError() { s.aclReplicationStatusLock.Lock() - s.aclReplicationStatus = status - s.aclReplicationStatusLock.Unlock() + defer s.aclReplicationStatusLock.Unlock() + + s.aclReplicationStatus.LastError = time.Now().Round(time.Second).UTC() } -// runACLReplication is a long-running goroutine that will attempt to replicate -// ACLs while the server is the leader, until the shutdown channel closes. -func (s *Server) runACLReplication() { - var status structs.ACLReplicationStatus - status.Enabled = true - status.SourceDatacenter = s.config.ACLDatacenter - s.updateACLReplicationStatus(status) +func (s *Server) updateACLReplicationStatusIndex(index uint64) { + s.aclReplicationStatusLock.Lock() + defer s.aclReplicationStatusLock.Unlock() - // Show that it's not running on the way out. - defer func() { - status.Running = false - s.updateACLReplicationStatus(status) - }() - - // Give each server's replicator a random initial phase for good - // measure. - select { - case <-s.shutdownCh: - return - - case <-time.After(lib.RandomStagger(s.config.ACLReplicationInterval)): - } - - // We are fairly conservative with the lastRemoteIndex so that after a - // leadership change or an error we re-sync everything (we also don't - // want to block the first time after one of these events so we can - // show a successful sync in the status endpoint). - var lastRemoteIndex uint64 - replicate := func() { - if !status.Running { - lastRemoteIndex = 0 // Re-sync everything. - status.Running = true - s.updateACLReplicationStatus(status) - s.logger.Printf("[INFO] consul: ACL replication started") - } - - index, err := s.replicateACLs(lastRemoteIndex) - if err != nil { - lastRemoteIndex = 0 // Re-sync everything. - status.LastError = time.Now() - s.updateACLReplicationStatus(status) - s.logger.Printf("[WARN] consul: ACL replication error (will retry if still leader): %v", err) - } else { - lastRemoteIndex = index - status.ReplicatedIndex = index - status.LastSuccess = time.Now() - s.updateACLReplicationStatus(status) - s.logger.Printf("[DEBUG] consul: ACL replication completed through remote index %d", index) - } - } - pause := func() { - if status.Running { - lastRemoteIndex = 0 // Re-sync everything. - status.Running = false - s.updateACLReplicationStatus(status) - s.logger.Printf("[INFO] consul: ACL replication stopped (no longer leader)") - } - } - - // This will slowly poll to see if replication should be active. Once it - // is and we've caught up, the replicate() call will begin to block and - // only wake up when the query timer expires or there are new ACLs to - // replicate. We've chosen this design so that the ACLReplicationInterval - // is the lower bound for how quickly we will replicate, no matter how - // much ACL churn is happening on the remote side. - // - // The blocking query inside replicate() respects the shutdown channel, - // so we won't get stuck in here as things are torn down. - for { - select { - case <-s.shutdownCh: - return - - case <-time.After(s.config.ACLReplicationInterval): - if s.IsLeader() { - replicate() - } else { - pause() - } - } - } + s.aclReplicationStatus.LastSuccess = time.Now().Round(time.Second).UTC() + s.aclReplicationStatus.ReplicatedIndex = index +} + +func (s *Server) updateACLReplicationStatusTokenIndex(index uint64) { + s.aclReplicationStatusLock.Lock() + defer s.aclReplicationStatusLock.Unlock() + + s.aclReplicationStatus.LastSuccess = time.Now().Round(time.Second).UTC() + s.aclReplicationStatus.ReplicatedTokenIndex = index +} + +func (s *Server) initReplicationStatus() { + s.aclReplicationStatusLock.Lock() + defer s.aclReplicationStatusLock.Unlock() + + s.aclReplicationStatus.Enabled = true + s.aclReplicationStatus.Running = true + s.aclReplicationStatus.SourceDatacenter = s.config.ACLDatacenter +} + +func (s *Server) updateACLReplicationStatusStopped() { + s.aclReplicationStatusLock.Lock() + defer s.aclReplicationStatusLock.Unlock() + + s.aclReplicationStatus.Running = false +} + +func (s *Server) updateACLReplicationStatusRunning(replicationType structs.ACLReplicationType) { + s.aclReplicationStatusLock.Lock() + defer s.aclReplicationStatusLock.Unlock() + + s.aclReplicationStatus.Running = true + s.aclReplicationStatus.ReplicationType = replicationType } diff --git a/agent/consul/acl_replication_legacy.go b/agent/consul/acl_replication_legacy.go new file mode 100644 index 000000000..a239f0b96 --- /dev/null +++ b/agent/consul/acl_replication_legacy.go @@ -0,0 +1,265 @@ +package consul + +import ( + "context" + "fmt" + "sort" + "time" + + "github.com/armon/go-metrics" + "github.com/hashicorp/consul/agent/structs" +) + +// aclIterator simplifies the algorithm below by providing a basic iterator that +// moves through a list of ACLs and returns nil when it's exhausted. It also has +// methods for pre-sorting the ACLs being iterated over by ID, which should +// already be true, but since this is crucial for correctness and we are taking +// input from other servers, we sort to make sure. +type aclIterator struct { + acls structs.ACLs + + // index is the current position of the iterator. + index int +} + +// newACLIterator returns a new ACL iterator. +func newACLIterator(acls structs.ACLs) *aclIterator { + return &aclIterator{acls: acls} +} + +// See sort.Interface. +func (a *aclIterator) Len() int { + return len(a.acls) +} + +// See sort.Interface. +func (a *aclIterator) Swap(i, j int) { + a.acls[i], a.acls[j] = a.acls[j], a.acls[i] +} + +// See sort.Interface. +func (a *aclIterator) Less(i, j int) bool { + return a.acls[i].ID < a.acls[j].ID +} + +// Front returns the item at index position, or nil if the list is exhausted. +func (a *aclIterator) Front() *structs.ACL { + if a.index < len(a.acls) { + return a.acls[a.index] + } + return nil +} + +// Next advances the iterator to the next index. +func (a *aclIterator) Next() { + a.index++ +} + +// reconcileACLs takes the local and remote ACL state, and produces a list of +// changes required in order to bring the local ACLs into sync with the remote +// ACLs. You can supply lastRemoteIndex as a hint that replication has succeeded +// up to that remote index and it will make this process more efficient by only +// comparing ACL entries modified after that index. Setting this to 0 will force +// a full compare of all existing ACLs. +func reconcileLegacyACLs(local, remote structs.ACLs, lastRemoteIndex uint64) structs.ACLRequests { + // Since sorting the lists is crucial for correctness, we are depending + // on data coming from other servers potentially running a different, + // version of Consul, and sorted-ness is kind of a subtle property of + // the state store indexing, it's prudent to make sure things are sorted + // before we begin. + localIter, remoteIter := newACLIterator(local), newACLIterator(remote) + sort.Sort(localIter) + sort.Sort(remoteIter) + + // Run through both lists and reconcile them. + var changes structs.ACLRequests + for localIter.Front() != nil || remoteIter.Front() != nil { + // If the local list is exhausted, then process this as a remote + // add. We know from the loop condition that there's something + // in the remote list. + if localIter.Front() == nil { + changes = append(changes, &structs.ACLRequest{ + Op: structs.ACLSet, + ACL: *(remoteIter.Front()), + }) + remoteIter.Next() + continue + } + + // If the remote list is exhausted, then process this as a local + // delete. We know from the loop condition that there's something + // in the local list. + if remoteIter.Front() == nil { + changes = append(changes, &structs.ACLRequest{ + Op: structs.ACLDelete, + ACL: *(localIter.Front()), + }) + localIter.Next() + continue + } + + // At this point we know there's something at the front of each + // list we need to resolve. + + // If the remote list has something local doesn't, we add it. + if localIter.Front().ID > remoteIter.Front().ID { + changes = append(changes, &structs.ACLRequest{ + Op: structs.ACLSet, + ACL: *(remoteIter.Front()), + }) + remoteIter.Next() + continue + } + + // If local has something remote doesn't, we delete it. + if localIter.Front().ID < remoteIter.Front().ID { + changes = append(changes, &structs.ACLRequest{ + Op: structs.ACLDelete, + ACL: *(localIter.Front()), + }) + localIter.Next() + continue + } + + // Local and remote have an ACL with the same ID, so we might + // need to compare them. + l, r := localIter.Front(), remoteIter.Front() + if r.RaftIndex.ModifyIndex > lastRemoteIndex && !r.IsSame(l) { + changes = append(changes, &structs.ACLRequest{ + Op: structs.ACLSet, + ACL: *r, + }) + } + localIter.Next() + remoteIter.Next() + } + return changes +} + +// FetchLocalACLs returns the ACLs in the local state store. +func (s *Server) fetchLocalLegacyACLs() (structs.ACLs, error) { + _, local, err := s.fsm.State().ACLTokenList(nil, false, true, "") + if err != nil { + return nil, err + } + + var acls structs.ACLs + for _, token := range local { + if acl, err := token.Convert(); err == nil && acl != nil { + acls = append(acls, acl) + } + } + + return acls, nil +} + +// FetchRemoteACLs is used to get the remote set of ACLs from the ACL +// datacenter. The lastIndex parameter is a hint about which remote index we +// have replicated to, so this is expected to block until something changes. +func (s *Server) fetchRemoteLegacyACLs(lastRemoteIndex uint64) (*structs.IndexedACLs, error) { + defer metrics.MeasureSince([]string{"leader", "fetchRemoteACLs"}, time.Now()) + + args := structs.DCSpecificRequest{ + Datacenter: s.config.ACLDatacenter, + QueryOptions: structs.QueryOptions{ + Token: s.tokens.ACLReplicationToken(), + MinQueryIndex: lastRemoteIndex, + AllowStale: true, + }, + } + var remote structs.IndexedACLs + if err := s.RPC("ACL.List", &args, &remote); err != nil { + return nil, err + } + return &remote, nil +} + +// UpdateLocalACLs is given a list of changes to apply in order to bring the +// local ACLs in-line with the remote ACLs from the ACL datacenter. +func (s *Server) updateLocalLegacyACLs(changes structs.ACLRequests, ctx context.Context) (bool, error) { + defer metrics.MeasureSince([]string{"leader", "updateLocalACLs"}, time.Now()) + + minTimePerOp := time.Second / time.Duration(s.config.ACLReplicationApplyLimit) + for _, change := range changes { + // Note that we are using the single ACL interface here and not + // performing all this inside a single transaction. This is OK + // for two reasons. First, there's nothing else other than this + // replication routine that alters the local ACLs, so there's + // nothing to contend with locally. Second, if an apply fails + // in the middle (most likely due to losing leadership), the + // next replication pass will clean up and check everything + // again. + var reply string + start := time.Now() + if err := aclApplyInternal(s, change, &reply); err != nil { + return false, err + } + + // Do a smooth rate limit to wait out the min time allowed for + // each op. If this op took longer than the min, then the sleep + // time will be negative and we will just move on. + elapsed := time.Since(start) + select { + case <-ctx.Done(): + return true, nil + case <-time.After(minTimePerOp - elapsed): + // do nothing + } + } + return false, nil +} + +// replicateACLs is a runs one pass of the algorithm for replicating ACLs from +// a remote ACL datacenter to local state. If there's any error, this will return +// 0 for the lastRemoteIndex, which will cause us to immediately do a full sync +// next time. +func (s *Server) replicateLegacyACLs(lastRemoteIndex uint64, ctx context.Context) (uint64, bool, error) { + remote, err := s.fetchRemoteLegacyACLs(lastRemoteIndex) + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve remote ACLs: %v", err) + } + + // Need to check if we should be stopping. This will be common as the fetching process is a blocking + // RPC which could have been hanging around for a long time and during that time leadership could + // have been lost. + select { + case <-ctx.Done(): + return 0, true, nil + default: + // do nothing + } + + // Measure everything after the remote query, which can block for long + // periods of time. This metric is a good measure of how expensive the + // replication process is. + defer metrics.MeasureSince([]string{"leader", "replicateACLs"}, time.Now()) + + local, err := s.fetchLocalLegacyACLs() + if err != nil { + return 0, false, fmt.Errorf("failed to retrieve local ACLs: %v", err) + } + + // If the remote index ever goes backwards, it's a good indication that + // the remote side was rebuilt and we should do a full sync since we + // can't make any assumptions about what's going on. + if remote.QueryMeta.Index < lastRemoteIndex { + s.logger.Printf("[WARN] consul: Legacy ACL replication remote index moved backwards (%d to %d), forcing a full ACL sync", lastRemoteIndex, remote.QueryMeta.Index) + lastRemoteIndex = 0 + } + + // Calculate the changes required to bring the state into sync and then + // apply them. + changes := reconcileLegacyACLs(local, remote.ACLs, lastRemoteIndex) + exit, err := s.updateLocalLegacyACLs(changes, ctx) + if exit { + return 0, true, nil + } + + if err != nil { + return 0, false, fmt.Errorf("failed to sync ACL changes: %v", err) + } + + // Return the index we got back from the remote side, since we've synced + // up with the remote state as of that index. + return remote.QueryMeta.Index, false, nil +} diff --git a/agent/consul/acl_replication_test.go b/agent/consul/acl_replication_test.go index 34ad3015f..3bd5a72d7 100644 --- a/agent/consul/acl_replication_test.go +++ b/agent/consul/acl_replication_test.go @@ -1,6 +1,8 @@ package consul import ( + "bytes" + "context" "fmt" "os" "reflect" @@ -10,9 +12,11 @@ import ( "testing" "time" + "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/testrpc" "github.com/hashicorp/consul/testutil/retry" + "github.com/stretchr/testify/require" ) func TestACLReplication_Sorter(t *testing.T) { @@ -216,7 +220,7 @@ func TestACLReplication_reconcileACLs(t *testing.T) { } for i, test := range tests { local, remote := parseACLs(test.local), parseACLs(test.remote) - changes := reconcileACLs(local, remote, test.lastRemoteIndex) + changes := reconcileLegacyACLs(local, remote, test.lastRemoteIndex) if actual := parseChanges(changes); actual != test.expected { t.Errorf("test case %d failed: %s", i, actual) } @@ -228,6 +232,7 @@ func TestACLReplication_updateLocalACLs_RateLimit(t *testing.T) { dir1, s1 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc2" c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLReplicationApplyLimit = 1 }) s1.tokens.UpdateACLReplicationToken("secret") @@ -247,7 +252,7 @@ func TestACLReplication_updateLocalACLs_RateLimit(t *testing.T) { // Should be throttled to 1 Hz. start := time.Now() - if err := s1.updateLocalACLs(changes); err != nil { + if _, err := s1.updateLocalLegacyACLs(changes, context.Background()); err != nil { t.Fatalf("err: %v", err) } if dur := time.Since(start); dur < time.Second { @@ -265,7 +270,7 @@ func TestACLReplication_updateLocalACLs_RateLimit(t *testing.T) { // Should be throttled to 1 Hz. start = time.Now() - if err := s1.updateLocalACLs(changes); err != nil { + if _, err := s1.updateLocalLegacyACLs(changes, context.Background()); err != nil { t.Fatalf("err: %v", err) } if dur := time.Since(start); dur < 2*time.Second { @@ -278,6 +283,7 @@ func TestACLReplication_IsACLReplicationEnabled(t *testing.T) { // ACLs not enabled. dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "" + c.ACLsEnabled = false }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -289,6 +295,7 @@ func TestACLReplication_IsACLReplicationEnabled(t *testing.T) { dir2, s2 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc2" c.ACLDatacenter = "dc1" + c.ACLsEnabled = true }) defer os.RemoveAll(dir2) defer s2.Shutdown() @@ -303,7 +310,8 @@ func TestACLReplication_IsACLReplicationEnabled(t *testing.T) { dir3, s3 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc2" c.ACLDatacenter = "dc1" - c.EnableACLReplication = true + c.ACLsEnabled = true + c.ACLTokenReplication = true }) defer os.RemoveAll(dir3) defer s3.Shutdown() @@ -317,7 +325,8 @@ func TestACLReplication_IsACLReplicationEnabled(t *testing.T) { dir4, s4 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc1" c.ACLDatacenter = "dc1" - c.EnableACLReplication = true + c.ACLsEnabled = true + c.ACLTokenReplication = true }) defer os.RemoveAll(dir4) defer s4.Shutdown() @@ -331,6 +340,7 @@ func TestACLReplication(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" }) defer os.RemoveAll(dir1) @@ -342,12 +352,14 @@ func TestACLReplication(t *testing.T) { dir2, s2 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc2" c.ACLDatacenter = "dc1" - c.EnableACLReplication = true - c.ACLReplicationInterval = 10 * time.Millisecond + c.ACLsEnabled = true + c.ACLTokenReplication = true + c.ACLReplicationRate = 100 + c.ACLReplicationBurst = 100 c.ACLReplicationApplyLimit = 1000000 }) - testrpc.WaitForLeader(t, s2.RPC, "dc2") s2.tokens.UpdateACLReplicationToken("root") + testrpc.WaitForLeader(t, s2.RPC, "dc2") defer os.RemoveAll(dir2) defer s2.Shutdown() @@ -364,7 +376,7 @@ func TestACLReplication(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testACLPolicy, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -375,19 +387,19 @@ func TestACLReplication(t *testing.T) { } checkSame := func() error { - index, remote, err := s1.fsm.State().ACLList(nil) + index, remote, err := s1.fsm.State().ACLTokenList(nil, true, true, "") if err != nil { return err } - _, local, err := s2.fsm.State().ACLList(nil) + _, local, err := s2.fsm.State().ACLTokenList(nil, true, true, "") if err != nil { return err } if got, want := len(remote), len(local); got != want { return fmt.Errorf("got %d remote ACLs want %d", got, want) } - for i, acl := range remote { - if !acl.IsSame(local[i]) { + for i, token := range remote { + if !bytes.Equal(token.Hash, local[i].Hash) { return fmt.Errorf("ACLs differ") } } @@ -397,7 +409,7 @@ func TestACLReplication(t *testing.T) { status = s2.aclReplicationStatus s2.aclReplicationStatusLock.RUnlock() if !status.Enabled || !status.Running || - status.ReplicatedIndex != index || + status.ReplicatedTokenIndex != index || status.SourceDatacenter != "dc1" { return fmt.Errorf("ACL replication status differs") } @@ -418,7 +430,7 @@ func TestACLReplication(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testACLPolicy, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -455,3 +467,207 @@ func TestACLReplication(t *testing.T) { } }) } + +func TestACLReplication_diffACLPolicies(t *testing.T) { + local := structs.ACLPolicies{ + &structs.ACLPolicy{ + ID: "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + Name: "policy1", + Description: "policy1 - already in sync", + Rules: `acl = "read"`, + Syntax: acl.SyntaxCurrent, + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, + &structs.ACLPolicy{ + ID: "8ea41efb-8519-4091-bc91-c42da0cda9ae", + Name: "policy2", + Description: "policy2 - updated but not changed", + Rules: `acl = "read"`, + Syntax: acl.SyntaxCurrent, + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 25}, + }, + &structs.ACLPolicy{ + ID: "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + Name: "policy3", + Description: "policy3 - updated and changed", + Rules: `acl = "read"`, + Syntax: acl.SyntaxCurrent, + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 25}, + }, + &structs.ACLPolicy{ + ID: "e9d33298-6490-4466-99cb-ba93af64fa76", + Name: "policy4", + Description: "policy4 - needs deleting", + Rules: `acl = "read"`, + Syntax: acl.SyntaxCurrent, + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 25}, + }, + } + + remote := structs.ACLPolicyListStubs{ + &structs.ACLPolicyListStub{ + ID: "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + Name: "policy1", + Description: "policy1 - already in sync", + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + CreateIndex: 1, + ModifyIndex: 2, + }, + &structs.ACLPolicyListStub{ + ID: "8ea41efb-8519-4091-bc91-c42da0cda9ae", + Name: "policy2", + Description: "policy2 - updated but not changed", + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + CreateIndex: 1, + ModifyIndex: 50, + }, + &structs.ACLPolicyListStub{ + ID: "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + Name: "policy3", + Description: "policy3 - updated and changed", + Datacenters: nil, + Hash: []byte{5, 6, 7, 8}, + CreateIndex: 1, + ModifyIndex: 50, + }, + &structs.ACLPolicyListStub{ + ID: "c6e8fffd-cbd9-4ecd-99fe-ab2f200c7926", + Name: "policy5", + Description: "policy5 - needs adding", + Datacenters: nil, + Hash: []byte{1, 2, 3, 4}, + CreateIndex: 1, + ModifyIndex: 50, + }, + } + + // Do the full diff. This full exercises the main body of the loop + deletions, updates := diffACLPolicies(local, remote, 28) + require.Len(t, updates, 2) + require.ElementsMatch(t, updates, []string{ + "c6e8fffd-cbd9-4ecd-99fe-ab2f200c7926", + "539f1cb6-40aa-464f-ae66-a900d26bc1b2"}) + + require.Len(t, deletions, 1) + require.Equal(t, "e9d33298-6490-4466-99cb-ba93af64fa76", deletions[0]) + + deletions, updates = diffACLPolicies(local, nil, 28) + require.Len(t, updates, 0) + require.Len(t, deletions, 4) + require.ElementsMatch(t, deletions, []string{ + "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + "8ea41efb-8519-4091-bc91-c42da0cda9ae", + "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + "e9d33298-6490-4466-99cb-ba93af64fa76"}) + + deletions, updates = diffACLPolicies(nil, remote, 28) + require.Len(t, deletions, 0) + require.Len(t, updates, 4) + require.ElementsMatch(t, updates, []string{ + "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + "8ea41efb-8519-4091-bc91-c42da0cda9ae", + "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + "c6e8fffd-cbd9-4ecd-99fe-ab2f200c7926"}) +} + +func TestACLReplication_diffACLTokens(t *testing.T) { + local := structs.ACLTokens{ + &structs.ACLToken{ + AccessorID: "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + SecretID: "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + Description: "token1 - already in sync", + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, + &structs.ACLToken{ + AccessorID: "8ea41efb-8519-4091-bc91-c42da0cda9ae", + SecretID: "8ea41efb-8519-4091-bc91-c42da0cda9ae", + Description: "token2 - updated but not changed", + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 25}, + }, + &structs.ACLToken{ + AccessorID: "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + SecretID: "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + Description: "token3 - updated and changed", + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 25}, + }, + &structs.ACLToken{ + AccessorID: "e9d33298-6490-4466-99cb-ba93af64fa76", + SecretID: "e9d33298-6490-4466-99cb-ba93af64fa76", + Description: "token4 - needs deleting", + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 25}, + }, + } + + remote := structs.ACLTokenListStubs{ + &structs.ACLTokenListStub{ + AccessorID: "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + Description: "token1 - already in sync", + Hash: []byte{1, 2, 3, 4}, + CreateIndex: 1, + ModifyIndex: 2, + }, + &structs.ACLTokenListStub{ + AccessorID: "8ea41efb-8519-4091-bc91-c42da0cda9ae", + Description: "token2 - updated but not changed", + Hash: []byte{1, 2, 3, 4}, + CreateIndex: 1, + ModifyIndex: 50, + }, + &structs.ACLTokenListStub{ + AccessorID: "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + Description: "token3 - updated and changed", + Hash: []byte{5, 6, 7, 8}, + CreateIndex: 1, + ModifyIndex: 50, + }, + &structs.ACLTokenListStub{ + AccessorID: "c6e8fffd-cbd9-4ecd-99fe-ab2f200c7926", + Description: "token5 - needs adding", + Hash: []byte{1, 2, 3, 4}, + CreateIndex: 1, + ModifyIndex: 50, + }, + } + + // Do the full diff. This full exercises the main body of the loop + deletions, updates := diffACLTokens(local, remote, 28) + require.Len(t, updates, 2) + require.ElementsMatch(t, updates, []string{ + "c6e8fffd-cbd9-4ecd-99fe-ab2f200c7926", + "539f1cb6-40aa-464f-ae66-a900d26bc1b2"}) + + require.Len(t, deletions, 1) + require.Equal(t, "e9d33298-6490-4466-99cb-ba93af64fa76", deletions[0]) + + deletions, updates = diffACLTokens(local, nil, 28) + require.Len(t, updates, 0) + require.Len(t, deletions, 4) + require.ElementsMatch(t, deletions, []string{ + "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + "8ea41efb-8519-4091-bc91-c42da0cda9ae", + "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + "e9d33298-6490-4466-99cb-ba93af64fa76"}) + + deletions, updates = diffACLTokens(nil, remote, 28) + require.Len(t, deletions, 0) + require.Len(t, updates, 4) + require.ElementsMatch(t, updates, []string{ + "44ef9aec-7654-4401-901b-4d4a8b3c80fc", + "8ea41efb-8519-4091-bc91-c42da0cda9ae", + "539f1cb6-40aa-464f-ae66-a900d26bc1b2", + "c6e8fffd-cbd9-4ecd-99fe-ab2f200c7926"}) +} diff --git a/agent/consul/acl_server.go b/agent/consul/acl_server.go new file mode 100644 index 000000000..b1135afae --- /dev/null +++ b/agent/consul/acl_server.go @@ -0,0 +1,179 @@ +package consul + +import ( + "sync/atomic" + + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/lib" +) + +var serverACLCacheConfig *structs.ACLCachesConfig = &structs.ACLCachesConfig{ + // The servers ACL caching has a few underlying assumptions: + // + // 1 - All policies can be resolved locally. Hence we do not cache any + // unparsed policies as we have memdb for that. + // 2 - While there could be many identities being used within a DC the + // number of distinct policies and combined multi-policy authorizers + // will be much less. + // 3 - If you need more than 10k tokens cached then you should probably + // enabled token replication or be using DC local tokens. In both + // cases resolving the tokens from memdb will avoid the cache + // entirely + // + Identities: 10 * 1024, + Policies: 0, + ParsedPolicies: 512, + Authorizers: 1024, +} + +func (s *Server) checkTokenUUID(id string) (bool, error) { + state := s.fsm.State() + if _, token, err := state.ACLTokenGetByAccessor(nil, id); err != nil { + return false, err + } else if token != nil { + return false, nil + } + + if _, token, err := state.ACLTokenGetBySecret(nil, id); err != nil { + return false, err + } else if token != nil { + return false, nil + } + + return !structs.ACLIDReserved(id), nil +} + +func (s *Server) checkPolicyUUID(id string) (bool, error) { + state := s.fsm.State() + if _, policy, err := state.ACLPolicyGetByID(nil, id); err != nil { + return false, err + } else if policy != nil { + return false, nil + } + + return !structs.ACLIDReserved(id), nil +} + +func (s *Server) updateACLAdvertisement() { + // One thing to note is that once in new ACL mode the server will + // never transition to legacy ACL mode. This is not currently a + // supported use case. + + // always advertise to all the LAN Members + lib.UpdateSerfTag(s.serfLAN, "acls", string(structs.ACLModeEnabled)) + + if s.serfWAN != nil { + // advertise on the WAN only when we are inside the ACL datacenter + lib.UpdateSerfTag(s.serfWAN, "acls", string(structs.ACLModeEnabled)) + } +} + +func (s *Server) canUpgradeToNewACLs(isLeader bool) bool { + if atomic.LoadInt32(&s.useNewACLs) != 0 { + // can't upgrade because we are already upgraded + return false + } + + if !s.InACLDatacenter() { + mode, _ := ServersGetACLMode(s.WANMembers(), "", s.config.ACLDatacenter) + if mode != structs.ACLModeEnabled { + return false + } + } + + if isLeader { + if mode, _ := ServersGetACLMode(s.LANMembers(), "", ""); mode == structs.ACLModeLegacy { + return true + } + } else { + leader := string(s.raft.Leader()) + if _, leaderMode := ServersGetACLMode(s.LANMembers(), leader, ""); leaderMode == structs.ACLModeEnabled { + return true + } + } + + return false +} + +func (s *Server) InACLDatacenter() bool { + return s.config.Datacenter == s.config.ACLDatacenter +} + +func (s *Server) UseLegacyACLs() bool { + return atomic.LoadInt32(&s.useNewACLs) == 0 +} + +func (s *Server) LocalTokensEnabled() bool { + // in ACL datacenter so local tokens are always enabled + if s.InACLDatacenter() { + return true + } + + if !s.config.ACLTokenReplication || s.tokens.ACLReplicationToken() == "" { + return false + } + + // token replication is off so local tokens are disabled + return true +} + +func (s *Server) ACLDatacenter(legacy bool) string { + // For resolution running on servers the only option + // is to contact the configured ACL Datacenter + if s.config.ACLDatacenter != "" { + return s.config.ACLDatacenter + } + + // This function only gets called if ACLs are enabled. + // When no ACL DC is set then it is assumed that this DC + // is the primary DC + return s.config.Datacenter +} + +func (s *Server) ACLsEnabled() bool { + return s.config.ACLsEnabled +} + +func (s *Server) ResolveIdentityFromToken(token string) (bool, structs.ACLIdentity, error) { + // only allow remote RPC resolution when token replication is off and + // when not in the ACL datacenter + if !s.InACLDatacenter() && !s.config.ACLTokenReplication { + return false, nil, nil + } + + index, aclToken, err := s.fsm.State().ACLTokenGetBySecret(nil, token) + if err != nil { + return true, nil, err + } else if aclToken != nil { + return true, aclToken, nil + } + + return s.InACLDatacenter() || index > 0, nil, acl.ErrNotFound +} + +func (s *Server) ResolvePolicyFromID(policyID string) (bool, *structs.ACLPolicy, error) { + index, policy, err := s.fsm.State().ACLPolicyGetByID(nil, policyID) + if err != nil { + return true, nil, err + } else if policy != nil { + return true, policy, nil + } + + // If the max index of the policies table is non-zero then we have acls, until then + // we may need to allow remote resolution. This is particularly useful to allow updating + // the replication token via the API in a non-primary dc. + return s.InACLDatacenter() || index > 0, policy, acl.ErrNotFound +} + +func (s *Server) ResolveToken(token string) (acl.Authorizer, error) { + return s.acls.ResolveToken(token) +} + +func (s *Server) filterACL(token string, subj interface{}) error { + return s.acls.filterACL(token, subj) +} + +func (s *Server) filterACLWithAuthorizer(authorizer acl.Authorizer, subj interface{}) error { + return s.acls.filterACLWithAuthorizer(authorizer, subj) +} diff --git a/agent/consul/acl_test.go b/agent/consul/acl_test.go index fdd8fc8a0..68e03610d 100644 --- a/agent/consul/acl_test.go +++ b/agent/consul/acl_test.go @@ -1,17 +1,18 @@ package consul import ( + "fmt" + "log" "os" "reflect" "strings" "testing" - "time" "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/structs" - "github.com/hashicorp/consul/testrpc" "github.com/hashicorp/consul/testutil/retry" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) var testACLPolicy = ` @@ -23,573 +24,1034 @@ key "foo/" { } ` -func TestACL_Disabled(t *testing.T) { - t.Parallel() - dir1, s1 := testServer(t) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - acl, err := s1.resolveToken("does not exist") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl != nil { - t.Fatalf("got acl") - } +var testACLPolicyNew = ` +key_prefix "" { + policy = "deny" } - -func TestACL_ResolveRootACL(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - rule, err := s1.resolveToken("allow") - if !acl.IsErrRootDenied(err) { - t.Fatalf("err: %v", err) - } - if rule != nil { - t.Fatalf("bad: %v", rule) - } - - rule, err = s1.resolveToken("deny") - if !acl.IsErrRootDenied(err) { - t.Fatalf("err: %v", err) - } - if rule != nil { - t.Fatalf("bad: %v", rule) - } +key_prefix "foo/" { + policy = "write" } +` -func TestACL_Authority_NotFound(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - testrpc.WaitForLeader(t, s1.RPC, "dc1") - client := rpcClient(t, s1) - defer client.Close() - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - rule, err := s1.resolveToken("does not exist") - if !acl.IsErrNotFound(err) { - t.Fatalf("err: %v", err) - } - if rule != nil { - t.Fatalf("got acl") - } -} - -func TestACL_Authority_Found(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLMasterToken = "root" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - testrpc.WaitForLeader(t, s1.RPC, "dc1") - client := rpcClient(t, s1) - defer client.Close() - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Create a new token - arg := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLSet, - ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testACLPolicy, - }, - WriteRequest: structs.WriteRequest{Token: "root"}, - } - var id string - if err := s1.RPC("ACL.Apply", &arg, &id); err != nil { - t.Fatalf("err: %v", err) - } - - // Resolve the token - acl, err := s1.resolveToken(id) - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing acl") - } - - // Check the policy - if acl.KeyRead("bar") { - t.Fatalf("unexpected read") - } - if !acl.KeyRead("foo/test") { - t.Fatalf("unexpected failed read") - } -} - -func TestACL_Authority_Anonymous_Found(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Resolve the token - acl, err := s1.resolveToken("") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing acl") - } - - // Check the policy, should allow all - if !acl.KeyRead("foo/test") { - t.Fatalf("unexpected failed read") - } -} - -func TestACL_Authority_Master_Found(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLMasterToken = "foobar" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Resolve the token - acl, err := s1.resolveToken("foobar") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing acl") - } - - // Check the policy, should allow all - if !acl.KeyRead("foo/test") { - t.Fatalf("unexpected failed read") - } -} - -func TestACL_Authority_Management(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLMasterToken = "foobar" - c.ACLDefaultPolicy = "deny" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Resolve the token - acl, err := s1.resolveToken("foobar") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing acl") - } - - // Check the policy, should allow all - if !acl.KeyRead("foo/test") { - t.Fatalf("unexpected failed read") - } -} - -func TestACL_NonAuthority_NotFound(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - - dir2, s2 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.Bootstrap = false // Disable bootstrap - }) - defer os.RemoveAll(dir2) - defer s2.Shutdown() - - // Try to join - joinLAN(t, s2, s1) - retry.Run(t, func(r *retry.R) { r.Check(wantRaft([]*Server{s1, s2})) }) - - client := rpcClient(t, s1) - defer client.Close() - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // find the non-authoritative server - var nonAuth *Server - if !s1.IsLeader() { - nonAuth = s1 - } else { - nonAuth = s2 - } - - rule, err := nonAuth.resolveToken("does not exist") - if !acl.IsErrNotFound(err) { - t.Fatalf("err: %v", err) - } - if rule != nil { - t.Fatalf("got acl") - } -} - -func TestACL_NonAuthority_Found(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" - c.ACLMasterToken = "root" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - dir2, s2 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.Bootstrap = false // Disable bootstrap - }) - defer os.RemoveAll(dir2) - defer s2.Shutdown() - - // Try to join - joinLAN(t, s2, s1) - retry.Run(t, func(r *retry.R) { r.Check(wantRaft([]*Server{s1, s2})) }) - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Create a new token - arg := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLSet, - ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testACLPolicy, - }, - WriteRequest: structs.WriteRequest{Token: "root"}, - } - var id string - if err := s1.RPC("ACL.Apply", &arg, &id); err != nil { - t.Fatalf("err: %v", err) - } - - // find the non-authoritative server - var nonAuth *Server - if !s1.IsLeader() { - nonAuth = s1 - } else { - nonAuth = s2 - } - - // Token should resolve - acl, err := nonAuth.resolveToken(id) - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing acl") - } - - // Check the policy - if acl.KeyRead("bar") { - t.Fatalf("unexpected read") - } - if !acl.KeyRead("foo/test") { - t.Fatalf("unexpected failed read") - } -} - -func TestACL_NonAuthority_Management(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLMasterToken = "foobar" - c.ACLDefaultPolicy = "deny" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - dir2, s2 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLDefaultPolicy = "deny" - c.Bootstrap = false // Disable bootstrap - }) - defer os.RemoveAll(dir2) - defer s2.Shutdown() - - // Try to join - joinLAN(t, s2, s1) - retry.Run(t, func(r *retry.R) { r.Check(wantRaft([]*Server{s1, s2})) }) - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // find the non-authoritative server - var nonAuth *Server - if !s1.IsLeader() { - nonAuth = s1 - } else { - nonAuth = s2 - } - - // Resolve the token - acl, err := nonAuth.resolveToken("foobar") - if err != nil { - t.Fatalf("err: %v", err) - } - if acl == nil { - t.Fatalf("missing acl") - } - - // Check the policy, should allow all - if !acl.KeyRead("foo/test") { - t.Fatalf("unexpected failed read") - } -} - -func TestACL_DownPolicy_Deny(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" - c.ACLDownPolicy = "deny" - c.ACLMasterToken = "root" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - dir2, s2 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLDownPolicy = "deny" - c.Bootstrap = false // Disable bootstrap - }) - defer os.RemoveAll(dir2) - defer s2.Shutdown() - - // Try to join - joinLAN(t, s2, s1) - retry.Run(t, func(r *retry.R) { r.Check(wantRaft([]*Server{s1, s2})) }) - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Create a new token - arg := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLSet, - ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testACLPolicy, - }, - WriteRequest: structs.WriteRequest{Token: "root"}, - } - var id string - if err := s1.RPC("ACL.Apply", &arg, &id); err != nil { - t.Fatalf("err: %v", err) - } - - // find the non-authoritative server - var nonAuth *Server - var auth *Server - if !s1.IsLeader() { - nonAuth = s1 - auth = s2 - } else { - nonAuth = s2 - auth = s1 - } - - // Kill the authoritative server - auth.Shutdown() - - // Token should resolve into a DenyAll - aclR, err := nonAuth.resolveToken(id) - if err != nil { - t.Fatalf("err: %v", err) - } - if aclR != acl.DenyAll() { - t.Fatalf("bad acl: %#v", aclR) - } -} - -func TestACL_DownPolicy_Allow(t *testing.T) { - t.Parallel() - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" - c.ACLDownPolicy = "allow" - c.ACLMasterToken = "root" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - dir2, s2 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLDownPolicy = "allow" - c.Bootstrap = false // Disable bootstrap - }) - defer os.RemoveAll(dir2) - defer s2.Shutdown() - - // Try to join - joinLAN(t, s2, s1) - retry.Run(t, func(r *retry.R) { r.Check(wantRaft([]*Server{s1, s2})) }) - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Create a new token - arg := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLSet, - ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testACLPolicy, - }, - WriteRequest: structs.WriteRequest{Token: "root"}, - } - var id string - if err := s1.RPC("ACL.Apply", &arg, &id); err != nil { - t.Fatalf("err: %v", err) - } - - // find the non-authoritative server - var nonAuth *Server - var auth *Server - if !s1.IsLeader() { - nonAuth = s1 - auth = s2 - } else { - nonAuth = s2 - auth = s1 - } - - // Kill the authoritative server - auth.Shutdown() - - // Token should resolve into a AllowAll - aclR, err := nonAuth.resolveToken(id) - if err != nil { - t.Fatalf("err: %v", err) - } - if aclR != acl.AllowAll() { - t.Fatalf("bad acl: %#v", aclR) - } -} - -func TestACL_DownPolicy_ExtendCache(t *testing.T) { - t.Parallel() - aclExtendPolicies := []string{"extend-cache", "async-cache"} //"async-cache" - - for _, aclDownPolicy := range aclExtendPolicies { - dir1, s1 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" - c.ACLTTL = 0 - c.ACLDownPolicy = aclDownPolicy - c.ACLMasterToken = "root" - }) - defer os.RemoveAll(dir1) - defer s1.Shutdown() - client := rpcClient(t, s1) - defer client.Close() - - dir2, s2 := testServerWithConfig(t, func(c *Config) { - c.ACLDatacenter = "dc1" // Enable ACLs! - c.ACLTTL = 0 - c.ACLDownPolicy = aclDownPolicy - c.Bootstrap = false // Disable bootstrap - }) - defer os.RemoveAll(dir2) - defer s2.Shutdown() - - // Try to join - joinLAN(t, s2, s1) - retry.Run(t, func(r *retry.R) { r.Check(wantRaft([]*Server{s1, s2})) }) - - testrpc.WaitForLeader(t, s1.RPC, "dc1") - - // Create a new token - arg := structs.ACLRequest{ - Datacenter: "dc1", - Op: structs.ACLSet, - ACL: structs.ACL{ - Name: "User token", - Type: structs.ACLTypeClient, - Rules: testACLPolicy, +func testIdentityForToken(token string) (bool, structs.ACLIdentity, error) { + switch token { + case "missing-policy": + return true, &structs.ACLToken{ + AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4", + SecretID: "b1b6be70-ed2e-4c80-8495-bdb3db110b1e", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "not-found", + }, + structs.ACLTokenPolicyLink{ + ID: "acl-ro", + }, }, - WriteRequest: structs.WriteRequest{Token: "root"}, - } - var id string - if err := s1.RPC("ACL.Apply", &arg, &id); err != nil { - t.Fatalf("err: %v", err) - } - - // find the non-authoritative server - var nonAuth *Server - var auth *Server - if !s1.IsLeader() { - nonAuth = s1 - auth = s2 - } else { - nonAuth = s2 - auth = s1 - } - - // Warm the caches - aclR, err := nonAuth.resolveToken(id) - if err != nil { - t.Fatalf("err: %v", err) - } - if aclR == nil { - t.Fatalf("bad acl: %#v", aclR) - } - - // Kill the authoritative server - auth.Shutdown() - - // Token should resolve into cached copy - aclR2, err := nonAuth.resolveToken(id) - if err != nil { - t.Fatalf("err: %v", err) - } - if aclR2 != aclR { - t.Fatalf("bad acl: %#v", aclR) - } + }, nil + case "legacy-management": + return true, &structs.ACLToken{ + AccessorID: "d109a033-99d1-47e2-a711-d6593373a973", + SecretID: "415cd1e1-1493-4fb4-827d-d762ed9cfe7c", + Type: structs.ACLTokenTypeManagement, + }, nil + case "legacy-client": + return true, &structs.ACLToken{ + AccessorID: "b7375838-b104-4a25-b457-329d939bf257", + SecretID: "03f49328-c23c-4b26-92a2-3b898332400d", + Type: structs.ACLTokenTypeClient, + Rules: `service "" { policy = "read" }`, + }, nil + case "found": + return true, &structs.ACLToken{ + AccessorID: "5f57c1f6-6a89-4186-9445-531b316e01df", + SecretID: "a1a54629-5050-4d17-8a4e-560d2423f835", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "node-wr", + }, + structs.ACLTokenPolicyLink{ + ID: "dc2-key-wr", + }, + }, + }, nil + case "acl-ro": + return true, &structs.ACLToken{ + AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4", + SecretID: "b1b6be70-ed2e-4c80-8495-bdb3db110b1e", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "acl-ro", + }, + }, + }, nil + case "acl-wr": + return true, &structs.ACLToken{ + AccessorID: "435a75af-1763-4980-89f4-f0951dda53b4", + SecretID: "b1b6be70-ed2e-4c80-8495-bdb3db110b1e", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "acl-wr", + }, + }, + }, nil + case anonymousToken: + return true, &structs.ACLToken{ + AccessorID: "00000000-0000-0000-0000-000000000002", + SecretID: anonymousToken, + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "node-wr", + }, + }, + }, nil + default: + return true, nil, acl.ErrNotFound } } +func testPolicyForID(policyID string) (bool, *structs.ACLPolicy, error) { + switch policyID { + case "acl-ro": + return true, &structs.ACLPolicy{ + ID: "acl-ro", + Name: "acl-ro", + Description: "acl-ro", + Rules: `acl = "read"`, + Syntax: acl.SyntaxCurrent, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, nil + case "acl-wr": + return true, &structs.ACLPolicy{ + ID: "acl-wr", + Name: "acl-wr", + Description: "acl-wr", + Rules: `acl = "write"`, + Syntax: acl.SyntaxCurrent, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, nil + case "node-wr": + return true, &structs.ACLPolicy{ + ID: "node-wr", + Name: "node-wr", + Description: "node-wr", + Rules: `node_prefix "" { policy = "write"}`, + Syntax: acl.SyntaxCurrent, + Datacenters: []string{"dc1"}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, nil + case "dc2-key-wr": + return true, &structs.ACLPolicy{ + ID: "dc2-key-wr", + Name: "dc2-key-wr", + Description: "dc2-key-wr", + Rules: `key_prefix "" { policy = "write"}`, + Syntax: acl.SyntaxCurrent, + Datacenters: []string{"dc2"}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, nil + default: + return true, nil, acl.ErrNotFound + } +} + +// ACLResolverTestDelegate is used to test +// the ACLResolver without running Agents +type ACLResolverTestDelegate struct { + enabled bool + datacenter string + legacy bool + localTokens bool + localPolicies bool + getPolicyFn func(*structs.ACLPolicyResolveLegacyRequest, *structs.ACLPolicyResolveLegacyResponse) error + tokenReadFn func(*structs.ACLTokenReadRequest, *structs.ACLTokenResponse) error + policyResolveFn func(*structs.ACLPolicyBatchReadRequest, *structs.ACLPoliciesResponse) error +} + +func (d *ACLResolverTestDelegate) ACLsEnabled() bool { + return d.enabled +} + +func (d *ACLResolverTestDelegate) ACLDatacenter(legacy bool) string { + return d.datacenter +} + +func (d *ACLResolverTestDelegate) UseLegacyACLs() bool { + return d.legacy +} + +func (d *ACLResolverTestDelegate) ResolveIdentityFromToken(token string) (bool, structs.ACLIdentity, error) { + if !d.localTokens { + return false, nil, nil + } + + return testIdentityForToken(token) +} + +func (d *ACLResolverTestDelegate) ResolvePolicyFromID(policyID string) (bool, *structs.ACLPolicy, error) { + if !d.localPolicies { + return false, nil, nil + } + + return testPolicyForID(policyID) +} + +func (d *ACLResolverTestDelegate) RPC(method string, args interface{}, reply interface{}) error { + switch method { + case "ACL.GetPolicy": + if d.getPolicyFn != nil { + return d.getPolicyFn(args.(*structs.ACLPolicyResolveLegacyRequest), reply.(*structs.ACLPolicyResolveLegacyResponse)) + } + panic("Bad Test Implmentation: should provide a getPolicyFn to the ACLResolverTestDelegate") + case "ACL.TokenRead": + if d.tokenReadFn != nil { + return d.tokenReadFn(args.(*structs.ACLTokenReadRequest), reply.(*structs.ACLTokenResponse)) + } + panic("Bad Test Implmentation: should provide a tokenReadFn to the ACLResolverTestDelegate") + case "ACL.PolicyResolve": + if d.policyResolveFn != nil { + return d.policyResolveFn(args.(*structs.ACLPolicyBatchReadRequest), reply.(*structs.ACLPoliciesResponse)) + } + panic("Bad Test Implmentation: should provide a policyResolveFn to the ACLResolverTestDelegate") + } + panic("Bad Test Implementation: Was the ACLResolver updated to use new RPC methods") + return nil +} + +func newTestACLResolver(t *testing.T, delegate ACLResolverDelegate, cb func(*ACLResolverConfig)) *ACLResolver { + config := DefaultConfig() + config.ACLDefaultPolicy = "deny" + config.ACLDownPolicy = "extend-cache" + rconf := &ACLResolverConfig{ + Config: config, + Logger: log.New(os.Stdout, t.Name()+" - ", log.LstdFlags|log.Lmicroseconds), + CacheConfig: &structs.ACLCachesConfig{ + Identities: 4, + Policies: 4, + ParsedPolicies: 4, + Authorizers: 4, + }, + AutoDisable: true, + Delegate: delegate, + } + + if cb != nil { + cb(rconf) + } + + resolver, err := NewACLResolver(rconf) + require.NoError(t, err) + return resolver +} + +func TestACLResolver_Disabled(t *testing.T) { + t.Parallel() + + delegate := &ACLResolverTestDelegate{ + enabled: false, + datacenter: "dc1", + legacy: false, + } + + r := newTestACLResolver(t, delegate, nil) + + authz, err := r.ResolveToken("does not exist") + require.Nil(t, authz) + require.Nil(t, err) +} + +func TestACLResolver_ResolveRootACL(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + } + r := newTestACLResolver(t, delegate, nil) + + t.Run("Allow", func(t *testing.T) { + authz, err := r.ResolveToken("allow") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrRootDenied(err)) + }) + + t.Run("Deny", func(t *testing.T) { + authz, err := r.ResolveToken("deny") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrRootDenied(err)) + }) + + t.Run("Manage", func(t *testing.T) { + authz, err := r.ResolveToken("manage") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrRootDenied(err)) + }) +} + +func TestACLResolver_DownPolicy(t *testing.T) { + t.Parallel() + + t.Run("Deny", func(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: false, + localPolicies: true, + tokenReadFn: func(*structs.ACLTokenReadRequest, *structs.ACLTokenResponse) error { + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "deny" + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + require.Equal(t, authz, acl.DenyAll()) + }) + + t.Run("Allow", func(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: false, + localPolicies: true, + tokenReadFn: func(*structs.ACLTokenReadRequest, *structs.ACLTokenResponse) error { + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "allow" + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + require.Equal(t, authz, acl.AllowAll()) + }) + + t.Run("Expired-Policy", func(t *testing.T) { + t.Parallel() + policyCached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: false, + policyResolveFn: func(args *structs.ACLPolicyBatchReadRequest, reply *structs.ACLPoliciesResponse) error { + if !policyCached { + for _, policyID := range args.PolicyIDs { + _, policy, _ := testPolicyForID(policyID) + if policy != nil { + reply.Policies = append(reply.Policies, policy) + } + } + + policyCached = true + return nil + } + + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "deny" + config.Config.ACLPolicyTTL = 0 + }) + + authz, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.NodeWrite("foo", nil)) + + // policy cache expired - so we will fail to resolve that policy and use the default policy only + authz2, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz2) + require.False(t, authz == authz2) + require.False(t, authz2.NodeWrite("foo", nil)) + }) + + t.Run("Extend-Cache", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: false, + localPolicies: true, + tokenReadFn: func(args *structs.ACLTokenReadRequest, reply *structs.ACLTokenResponse) error { + if !cached { + _, token, _ := testIdentityForToken("found") + reply.Token = token.(*structs.ACLToken) + cached = true + return nil + } + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "extend-cache" + config.Config.ACLTokenTTL = 0 + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.NodeWrite("foo", nil)) + + authz2, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz2) + // testing pointer equality - these will be the same object because it is cached. + require.True(t, authz == authz2) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Extend-Cache-Expired-Policy", func(t *testing.T) { + t.Parallel() + policyCached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: false, + policyResolveFn: func(args *structs.ACLPolicyBatchReadRequest, reply *structs.ACLPoliciesResponse) error { + if !policyCached { + for _, policyID := range args.PolicyIDs { + _, policy, _ := testPolicyForID(policyID) + if policy != nil { + reply.Policies = append(reply.Policies, policy) + } + } + + policyCached = true + return nil + } + + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "extend-cache" + config.Config.ACLPolicyTTL = 0 + }) + + authz, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.NodeWrite("foo", nil)) + + // Will just use the policy cache + authz2, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz2) + require.True(t, authz == authz2) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Async-Cache-Expired-Policy", func(t *testing.T) { + t.Parallel() + policyCached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: false, + policyResolveFn: func(args *structs.ACLPolicyBatchReadRequest, reply *structs.ACLPoliciesResponse) error { + if !policyCached { + for _, policyID := range args.PolicyIDs { + _, policy, _ := testPolicyForID(policyID) + if policy != nil { + reply.Policies = append(reply.Policies, policy) + } + } + + policyCached = true + return nil + } + + // We don't need to return acl.ErrNotFound here but we could. The ACLResolver will search for any + // policies not in the response and emit an ACL not found for any not-found within the result set. + return nil + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "async-cache" + config.Config.ACLPolicyTTL = 0 + }) + + authz, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.NodeWrite("foo", nil)) + + // The identity should have been cached so this should still be valid + authz2, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz2) + // testing pointer equality - these will be the same object because it is cached. + require.True(t, authz == authz2) + require.True(t, authz.NodeWrite("foo", nil)) + + // the go routine spawned will eventually return with a authz that doesn't have the policy + retry.Run(t, func(t *retry.R) { + authz3, err := r.ResolveToken("found") + assert.NoError(t, err) + assert.NotNil(t, authz3) + assert.False(t, authz3.NodeWrite("foo", nil)) + }) + }) + + t.Run("Extend-Cache-Client", func(t *testing.T) { + t.Parallel() + tokenCached := false + policyCached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: false, + localPolicies: false, + tokenReadFn: func(args *structs.ACLTokenReadRequest, reply *structs.ACLTokenResponse) error { + if !tokenCached { + _, token, _ := testIdentityForToken("found") + reply.Token = token.(*structs.ACLToken) + tokenCached = true + return nil + } + return fmt.Errorf("Induced RPC Error") + }, + policyResolveFn: func(args *structs.ACLPolicyBatchReadRequest, reply *structs.ACLPoliciesResponse) error { + if !policyCached { + for _, policyID := range args.PolicyIDs { + _, policy, _ := testPolicyForID(policyID) + if policy != nil { + reply.Policies = append(reply.Policies, policy) + } + } + + policyCached = true + return nil + } + + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "extend-cache" + config.Config.ACLTokenTTL = 0 + config.Config.ACLPolicyTTL = 0 + }) + + authz, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.NodeWrite("foo", nil)) + + authz2, err := r.ResolveToken("found") + require.NoError(t, err) + require.NotNil(t, authz2) + // testing pointer equality - these will be the same object because it is cached. + require.True(t, authz == authz2) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Async-Cache", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: false, + localPolicies: true, + tokenReadFn: func(args *structs.ACLTokenReadRequest, reply *structs.ACLTokenResponse) error { + if !cached { + _, token, _ := testIdentityForToken("found") + reply.Token = token.(*structs.ACLToken) + cached = true + return nil + } + return acl.ErrNotFound + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "async-cache" + config.Config.ACLTokenTTL = 0 + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.NodeWrite("foo", nil)) + + // The identity should have been cached so this should still be valid + authz2, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz2) + // testing pointer equality - these will be the same object because it is cached. + require.True(t, authz == authz2) + require.True(t, authz.NodeWrite("foo", nil)) + + // the go routine spawned will eventually return and this will be a not found error + retry.Run(t, func(t *retry.R) { + authz3, err := r.ResolveToken("foo") + assert.Error(t, err) + assert.True(t, acl.IsErrNotFound(err)) + assert.Nil(t, authz3) + }) + }) +} + +func TestACLResolver_DatacenterScoping(t *testing.T) { + t.Parallel() + t.Run("dc1", func(t *testing.T) { + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: true, + // No need to provide any of the RPC callbacks + } + r := newTestACLResolver(t, delegate, nil) + + authz, err := r.ResolveToken("found") + require.NotNil(t, authz) + require.NoError(t, err) + require.False(t, authz.ACLRead()) + require.True(t, authz.NodeWrite("foo", nil)) + require.False(t, authz.KeyWrite("foo", nil)) + }) + + t.Run("dc2", func(t *testing.T) { + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc2", + legacy: false, + localTokens: true, + localPolicies: true, + // No need to provide any of the RPC callbacks + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.Datacenter = "dc2" + }) + + authz, err := r.ResolveToken("found") + require.NotNil(t, authz) + require.NoError(t, err) + require.False(t, authz.ACLRead()) + require.False(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.KeyWrite("foo", nil)) + }) +} + +func TestACLResolver_LocalTokensAndPolicies(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: true, + // No need to provide any of the RPC callbacks + } + r := newTestACLResolver(t, delegate, nil) + + t.Run("Missing Identity", func(t *testing.T) { + authz, err := r.ResolveToken("doesn't exist") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrNotFound(err)) + }) + + t.Run("Missing Policy", func(t *testing.T) { + authz, err := r.ResolveToken("missing-policy") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.ACLRead()) + require.False(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Normal", func(t *testing.T) { + authz, err := r.ResolveToken("found") + require.NotNil(t, authz) + require.NoError(t, err) + require.False(t, authz.ACLRead()) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Anonymous", func(t *testing.T) { + authz, err := r.ResolveToken("") + require.NotNil(t, authz) + require.NoError(t, err) + require.False(t, authz.ACLRead()) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("legacy-management", func(t *testing.T) { + authz, err := r.ResolveToken("legacy-management") + require.NotNil(t, authz) + require.NoError(t, err) + require.True(t, authz.ACLWrite()) + require.True(t, authz.KeyRead("foo")) + }) + + t.Run("legacy-client", func(t *testing.T) { + authz, err := r.ResolveToken("legacy-client") + require.NoError(t, err) + require.NotNil(t, authz) + require.False(t, authz.OperatorRead()) + require.True(t, authz.ServiceRead("foo")) + }) +} + +func TestACLResolver_LocalPolicies(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: false, + localPolicies: true, + tokenReadFn: func(args *structs.ACLTokenReadRequest, reply *structs.ACLTokenResponse) error { + _, token, err := testIdentityForToken(args.TokenID) + + if token != nil { + reply.Token = token.(*structs.ACLToken) + } + return err + }, + } + r := newTestACLResolver(t, delegate, nil) + + t.Run("Missing Identity", func(t *testing.T) { + authz, err := r.ResolveToken("doesn't exist") + require.Nil(t, authz) + require.Error(t, err) + require.True(t, acl.IsErrNotFound(err)) + }) + + t.Run("Missing Policy", func(t *testing.T) { + authz, err := r.ResolveToken("missing-policy") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz.ACLRead()) + require.False(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Normal", func(t *testing.T) { + authz, err := r.ResolveToken("found") + require.NotNil(t, authz) + require.NoError(t, err) + require.False(t, authz.ACLRead()) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("Anonymous", func(t *testing.T) { + authz, err := r.ResolveToken("") + require.NotNil(t, authz) + require.NoError(t, err) + require.False(t, authz.ACLRead()) + require.True(t, authz.NodeWrite("foo", nil)) + }) + + t.Run("legacy-management", func(t *testing.T) { + authz, err := r.ResolveToken("legacy-management") + require.NotNil(t, authz) + require.NoError(t, err) + require.True(t, authz.ACLWrite()) + require.True(t, authz.KeyRead("foo")) + }) + + t.Run("legacy-client", func(t *testing.T) { + authz, err := r.ResolveToken("legacy-client") + require.NoError(t, err) + require.NotNil(t, authz) + require.False(t, authz.OperatorRead()) + require.True(t, authz.ServiceRead("foo")) + }) +} + +func TestACLResolver_Legacy(t *testing.T) { + t.Parallel() + + t.Run("Cached", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: true, + localTokens: false, + localPolicies: false, + getPolicyFn: func(args *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error { + if !cached { + reply.Parent = "deny" + reply.TTL = 30 + reply.ETag = "nothing" + reply.Policy = &acl.Policy{ + ID: "not-needed", + Nodes: []*acl.NodePolicy{ + &acl.NodePolicy{ + Name: "foo", + Policy: acl.PolicyWrite, + }, + }, + } + cached = true + return nil + } + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, nil) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + + // this should be from the cache + authz, err = r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + }) + + t.Run("Cache-Expiry-Extend", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: true, + localTokens: false, + localPolicies: false, + getPolicyFn: func(args *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error { + if !cached { + reply.Parent = "deny" + reply.TTL = 0 + reply.ETag = "nothing" + reply.Policy = &acl.Policy{ + ID: "not-needed", + Nodes: []*acl.NodePolicy{ + &acl.NodePolicy{ + Name: "foo", + Policy: acl.PolicyWrite, + }, + }, + } + cached = true + return nil + } + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLTokenTTL = 0 + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + + // this should be from the cache + authz, err = r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + }) + + t.Run("Cache-Expiry-Allow", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: true, + localTokens: false, + localPolicies: false, + getPolicyFn: func(args *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error { + if !cached { + reply.Parent = "deny" + reply.TTL = 0 + reply.ETag = "nothing" + reply.Policy = &acl.Policy{ + ID: "not-needed", + Nodes: []*acl.NodePolicy{ + &acl.NodePolicy{ + Name: "foo", + Policy: acl.PolicyWrite, + }, + }, + } + cached = true + return nil + } + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "allow" + config.Config.ACLTokenTTL = 0 + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + + // this should be from the cache + authz, err = r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.True(t, authz.NodeWrite("fo", nil)) + }) + + t.Run("Cache-Expiry-Deny", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: true, + localTokens: false, + localPolicies: false, + getPolicyFn: func(args *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error { + if !cached { + reply.Parent = "deny" + reply.TTL = 0 + reply.ETag = "nothing" + reply.Policy = &acl.Policy{ + ID: "not-needed", + Nodes: []*acl.NodePolicy{ + &acl.NodePolicy{ + Name: "foo", + Policy: acl.PolicyWrite, + }, + }, + } + cached = true + return nil + } + return fmt.Errorf("Induced RPC Error") + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "deny" + config.Config.ACLTokenTTL = 0 + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + + // this should be from the cache + authz, err = r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.False(t, authz.NodeWrite("foo", nil)) + require.False(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + }) + + t.Run("Cache-Expiry-Async-Cache", func(t *testing.T) { + t.Parallel() + cached := false + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: true, + localTokens: false, + localPolicies: false, + getPolicyFn: func(args *structs.ACLPolicyResolveLegacyRequest, reply *structs.ACLPolicyResolveLegacyResponse) error { + if !cached { + reply.Parent = "deny" + reply.TTL = 0 + reply.ETag = "nothing" + reply.Policy = &acl.Policy{ + ID: "not-needed", + Nodes: []*acl.NodePolicy{ + &acl.NodePolicy{ + Name: "foo", + Policy: acl.PolicyWrite, + }, + }, + } + cached = true + return nil + } + return acl.ErrNotFound + }, + } + r := newTestACLResolver(t, delegate, func(config *ACLResolverConfig) { + config.Config.ACLDownPolicy = "async-cache" + config.Config.ACLTokenTTL = 0 + }) + + authz, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + // there is a bit of translation that happens + require.True(t, authz.NodeWrite("foo", nil)) + require.True(t, authz.NodeWrite("foo/bar", nil)) + require.False(t, authz.NodeWrite("fo", nil)) + + // delivered from the cache + authz2, err := r.ResolveToken("foo") + require.NoError(t, err) + require.NotNil(t, authz) + require.True(t, authz == authz2) + + // the go routine spawned will eventually return and this will be a not found error + retry.Run(t, func(t *retry.R) { + authz3, err := r.ResolveToken("foo") + assert.Error(t, err) + assert.True(t, acl.IsErrNotFound(err)) + assert.Nil(t, authz3) + }) + }) +} + +/* + func TestACL_Replication(t *testing.T) { t.Parallel() aclExtendPolicies := []string{"extend-cache", "async-cache"} //"async-cache" @@ -609,8 +1071,9 @@ func TestACL_Replication(t *testing.T) { c.ACLDatacenter = "dc1" c.ACLDefaultPolicy = "deny" c.ACLDownPolicy = aclDownPolicy - c.EnableACLReplication = true - c.ACLReplicationInterval = 10 * time.Millisecond + c.ACLTokenReplication = true + c.ACLReplicationRate = 100 + c.ACLReplicationBurst = 100 c.ACLReplicationApplyLimit = 1000000 }) s2.tokens.UpdateACLReplicationToken("root") @@ -621,8 +1084,9 @@ func TestACL_Replication(t *testing.T) { c.Datacenter = "dc3" c.ACLDatacenter = "dc1" c.ACLDownPolicy = "deny" - c.EnableACLReplication = true - c.ACLReplicationInterval = 10 * time.Millisecond + c.ACLTokenReplication = true + c.ACLReplicationRate = 100 + c.ACLReplicationBurst = 100 c.ACLReplicationApplyLimit = 1000000 }) s3.tokens.UpdateACLReplicationToken("root") @@ -642,7 +1106,7 @@ func TestACL_Replication(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testACLPolicy, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -653,14 +1117,14 @@ func TestACL_Replication(t *testing.T) { } // Wait for replication to occur. retry.Run(t, func(r *retry.R) { - _, acl, err := s2.fsm.State().ACLGet(nil, id) + _, acl, err := s2.fsm.State().ACLTokenGetBySecret(nil, id) if err != nil { r.Fatal(err) } if acl == nil { r.Fatal(nil) } - _, acl, err = s3.fsm.State().ACLGet(nil, id) + _, acl, err = s3.fsm.State().ACLTokenGetBySecret(nil, id) if err != nil { r.Fatal(err) } @@ -673,7 +1137,7 @@ func TestACL_Replication(t *testing.T) { s1.Shutdown() // Token should resolve on s2, which has replication + extend-cache. - acl, err := s2.resolveToken(id) + acl, err := s2.ResolveToken(id) if err != nil { t.Fatalf("err: %v", err) } @@ -691,7 +1155,7 @@ func TestACL_Replication(t *testing.T) { // Although s3 has replication, and we verified that the ACL is there, // it can not be used because of the down policy. - acl, err = s3.resolveToken(id) + acl, err = s3.ResolveToken(id) if err != nil { t.Fatalf("err: %v", err) } @@ -739,7 +1203,7 @@ func TestACL_MultiDC_Found(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testACLPolicy, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -750,7 +1214,7 @@ func TestACL_MultiDC_Found(t *testing.T) { } // Token should resolve - acl, err := s2.resolveToken(id) + acl, err := s2.ResolveToken(id) if err != nil { t.Fatalf("err: %v", err) } @@ -766,6 +1230,7 @@ func TestACL_MultiDC_Found(t *testing.T) { t.Fatalf("unexpected failed read") } } +*/ func TestACL_filterHealthChecks(t *testing.T) { t.Parallel() @@ -801,15 +1266,15 @@ func TestACL_filterHealthChecks(t *testing.T) { } // Allowed to see the service but not the node. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` service "foo" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -835,15 +1300,15 @@ service "foo" { } // Chain on access to the node. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` node "node1" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -893,13 +1358,13 @@ func TestACL_filterIntentions(t *testing.T) { } // Policy to see one - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` service "foo" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) assert.Nil(err) - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) assert.Nil(err) // Filter @@ -978,15 +1443,15 @@ func TestACL_filterServiceNodes(t *testing.T) { } // Allowed to see the service but not the node. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` service "foo" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1012,15 +1477,15 @@ service "foo" { } // Chain on access to the node. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` node "node1" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1084,15 +1549,15 @@ func TestACL_filterNodeServices(t *testing.T) { } // Allowed to see the service but not the node. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` service "foo" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1118,15 +1583,15 @@ service "foo" { } // Chain on access to the node. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` node "node1" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1190,15 +1655,15 @@ func TestACL_filterCheckServiceNodes(t *testing.T) { } // Allowed to see the service but not the node. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` service "foo" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1227,15 +1692,15 @@ service "foo" { } // Chain on access to the node. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` node "node1" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1381,15 +1846,15 @@ func TestACL_filterNodeDump(t *testing.T) { } // Allowed to see the service but not the node. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` service "foo" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1421,15 +1886,15 @@ service "foo" { } // Chain on access to the node. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` node "node1" { policy = "read" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1524,6 +1989,60 @@ func TestACL_redactPreparedQueryTokens(t *testing.T) { } } +func TestACL_redactTokenSecret(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: true, + // No need to provide any of the RPC callbacks + } + r := newTestACLResolver(t, delegate, nil) + + token := &structs.ACLToken{ + AccessorID: "6a5e25b3-28f2-4085-9012-c3fb754314d1", + SecretID: "6a5e25b3-28f2-4085-9012-c3fb754314d1", + } + + err := r.filterACL("acl-wr", &token) + require.NoError(t, err) + require.Equal(t, "6a5e25b3-28f2-4085-9012-c3fb754314d1", token.SecretID) + + err = r.filterACL("acl-ro", &token) + require.NoError(t, err) + require.Equal(t, redactedToken, token.SecretID) +} + +func TestACL_redactTokenSecrets(t *testing.T) { + t.Parallel() + delegate := &ACLResolverTestDelegate{ + enabled: true, + datacenter: "dc1", + legacy: false, + localTokens: true, + localPolicies: true, + // No need to provide any of the RPC callbacks + } + r := newTestACLResolver(t, delegate, nil) + + tokens := structs.ACLTokens{ + &structs.ACLToken{ + AccessorID: "6a5e25b3-28f2-4085-9012-c3fb754314d1", + SecretID: "6a5e25b3-28f2-4085-9012-c3fb754314d1", + }, + } + + err := r.filterACL("acl-wr", &tokens) + require.NoError(t, err) + require.Equal(t, "6a5e25b3-28f2-4085-9012-c3fb754314d1", tokens[0].SecretID) + + err = r.filterACL("acl-ro", &tokens) + require.NoError(t, err) + require.Equal(t, redactedToken, tokens[0].SecretID) +} + func TestACL_filterPreparedQueries(t *testing.T) { t.Parallel() queries := structs.PreparedQueries{ @@ -1623,15 +2142,15 @@ func TestACL_vetRegisterWithACL(t *testing.T) { } // Create a basic node policy. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` node "node" { policy = "write" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1668,15 +2187,15 @@ node "node" { } // Chain on a basic service policy. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` service "service" { policy = "write" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1698,15 +2217,15 @@ service "service" { } // Chain on a policy that allows them to write to the other service. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` service "other" { policy = "write" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1772,15 +2291,15 @@ service "other" { } // Chain on a policy that forbids them to write to the other service. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` service "other" { policy = "deny" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1802,15 +2321,15 @@ service "other" { } // Chain on a policy that forbids them to write to the node. - policy, err = acl.Parse(` + policy, err = acl.NewPolicyFromSource("", 0, ` node "node" { policy = "deny" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err = acl.New(perms, policy, nil) + perms, err = acl.NewPolicyAuthorizer(perms, []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } @@ -1849,18 +2368,18 @@ func TestACL_vetDeregisterWithACL(t *testing.T) { } // Create a basic node policy. - policy, err := acl.Parse(` + policy, err := acl.NewPolicyFromSource("", 0, ` node "node" { policy = "write" } service "service" { policy = "write" } -`, nil) +`, acl.SyntaxLegacy, nil) if err != nil { t.Fatalf("err %v", err) } - perms, err := acl.New(acl.DenyAll(), policy, nil) + perms, err := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) if err != nil { t.Fatalf("err: %v", err) } diff --git a/agent/consul/catalog_endpoint.go b/agent/consul/catalog_endpoint.go index 47faeffb8..a95e6782d 100644 --- a/agent/consul/catalog_endpoint.go +++ b/agent/consul/catalog_endpoint.go @@ -2,6 +2,7 @@ package consul import ( "fmt" + "sort" "time" "github.com/armon/go-metrics" @@ -40,7 +41,7 @@ func (c *Catalog) Register(args *structs.RegisterRequest, reply *struct{}) error } // Fetch the ACL token, if any. - rule, err := c.srv.resolveToken(args.Token) + rule, err := c.srv.ResolveToken(args.Token) if err != nil { return err } @@ -138,7 +139,7 @@ func (c *Catalog) Deregister(args *structs.DeregisterRequest, reply *struct{}) e } // Fetch the ACL token, if any. - rule, err := c.srv.resolveToken(args.Token) + rule, err := c.srv.ResolveToken(args.Token) if err != nil { return err } @@ -284,7 +285,7 @@ func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *stru // we're trying to find proxies for, so check that. if args.Connect { // Fetch the ACL token, if any. - rule, err := c.srv.resolveToken(args.Token) + rule, err := c.srv.ResolveToken(args.Token) if err != nil { return err } @@ -335,6 +336,10 @@ func (c *Catalog) ServiceNodes(args *structs.ServiceSpecificRequest, reply *stru []metrics.Label{{Name: "service", Value: args.ServiceName}, {Name: "tag", Value: args.ServiceTag}}) } if len(args.ServiceTags) > 0 { + // Sort tags so that the metric is the same even if the request + // tags are in a different order + sort.Strings(args.ServiceTags) + // Build metric labels labels := []metrics.Label{{Name: "service", Value: args.ServiceName}} for _, tag := range args.ServiceTags { diff --git a/agent/consul/catalog_endpoint_test.go b/agent/consul/catalog_endpoint_test.go index 176909fa7..ddb07628c 100644 --- a/agent/consul/catalog_endpoint_test.go +++ b/agent/consul/catalog_endpoint_test.go @@ -159,6 +159,7 @@ func TestCatalog_Register_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -175,7 +176,7 @@ func TestCatalog_Register_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` service "foo" { policy = "write" @@ -424,6 +425,7 @@ func TestCatalog_Register_ConnectProxy_ACLProxyDestination(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -440,7 +442,7 @@ func TestCatalog_Register_ConnectProxy_ACLProxyDestination(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` service "foo" { policy = "write" @@ -537,6 +539,7 @@ func TestCatalog_Deregister_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -554,7 +557,7 @@ func TestCatalog_Deregister_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` node "node" { policy = "write" @@ -1184,6 +1187,7 @@ func TestCatalog_ListNodes_ACLFilter(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -1231,7 +1235,7 @@ func TestCatalog_ListNodes_ACLFilter(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: fmt.Sprintf(` node "%s" { policy = "read" @@ -1501,6 +1505,7 @@ func TestCatalog_ListServices_Stale(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true }) defer os.RemoveAll(dir1) defer s1.Shutdown() @@ -1508,7 +1513,8 @@ func TestCatalog_ListServices_Stale(t *testing.T) { testrpc.WaitForTestAgent(t, s1.RPC, "dc1") dir2, s2 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" // Enable ACLs! - c.Bootstrap = false // Disable bootstrap + c.ACLsEnabled = true + c.Bootstrap = false // Disable bootstrap }) defer os.RemoveAll(dir2) defer s2.Shutdown() @@ -1958,6 +1964,7 @@ func TestCatalog_ListServiceNodes_ConnectProxy_ACL(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -1974,7 +1981,7 @@ func TestCatalog_ListServiceNodes_ConnectProxy_ACL(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` service "foo" { policy = "write" @@ -2229,6 +2236,7 @@ func TestCatalog_Register_FailedCase1(t *testing.T) { func testACLFilterServer(t *testing.T) (dir, token string, srv *Server, codec rpc.ClientCodec) { dir, srv = testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -2243,7 +2251,7 @@ func testACLFilterServer(t *testing.T) (dir, token string, srv *Server, codec rp Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` service "foo" { policy = "write" @@ -2376,6 +2384,7 @@ func TestCatalog_NodeServices_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -2415,7 +2424,7 @@ func TestCatalog_NodeServices_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: fmt.Sprintf(` node "%s" { policy = "read" diff --git a/agent/consul/client.go b/agent/consul/client.go index f6b123a31..2c00169c4 100644 --- a/agent/consul/client.go +++ b/agent/consul/client.go @@ -48,6 +48,13 @@ const ( type Client struct { config *Config + // acls is used to resolve tokens to effective policies + acls *ACLResolver + + // DEPRECATED (ACL-Legacy-Compat) - Only needed while we support both + // useNewACLs is a flag to indicate whether we are using the new ACL system + useNewACLs int32 + // Connection pool to consul servers connPool *pool.ConnPool @@ -141,6 +148,20 @@ func NewClientLogger(config *Config, logger *log.Logger) (*Client, error) { return nil, err } + c.useNewACLs = 0 + aclConfig := ACLResolverConfig{ + Config: config, + Delegate: c, + Logger: logger, + AutoDisable: true, + CacheConfig: clientACLCacheConfig, + Sentinel: nil, + } + if c.acls, err = NewACLResolver(&aclConfig); err != nil { + c.Shutdown() + return nil, fmt.Errorf("Failed to create ACL resolver: %v", err) + } + // Initialize the LAN Serf c.serf, err = c.setupSerf(config.SerfLANConfig, c.eventCh, serfLANSnapshot) @@ -149,6 +170,10 @@ func NewClientLogger(config *Config, logger *log.Logger) (*Client, error) { return nil, fmt.Errorf("Failed to start lan serf: %v", err) } + if c.acls.ACLsEnabled() { + go c.monitorACLMode() + } + // Start maintenance task for servers c.routers = router.New(c.logger, c.shutdownCh, c.serf, c.connPool) go c.routers.Start() diff --git a/agent/consul/client_serf.go b/agent/consul/client_serf.go index a133626d3..51ce0d4ef 100644 --- a/agent/consul/client_serf.go +++ b/agent/consul/client_serf.go @@ -6,6 +6,7 @@ import ( "strings" "github.com/hashicorp/consul/agent/metadata" + "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/lib" "github.com/hashicorp/serf/serf" ) @@ -23,6 +24,14 @@ func (c *Client) setupSerf(conf *serf.Config, ch chan serf.Event, path string) ( conf.Tags["vsn_min"] = fmt.Sprintf("%d", ProtocolVersionMin) conf.Tags["vsn_max"] = fmt.Sprintf("%d", ProtocolVersionMax) conf.Tags["build"] = c.config.Build + if c.acls.ACLsEnabled() { + // we start in legacy mode and then transition to normal + // mode once we know the cluster can handle it. + conf.Tags["acls"] = string(structs.ACLModeLegacy) + } else { + conf.Tags["acls"] = string(structs.ACLModeDisabled) + } + if c.logger == nil { conf.MemberlistConfig.LogOutput = c.config.LogOutput conf.LogOutput = c.config.LogOutput diff --git a/agent/consul/config.go b/agent/consul/config.go index 1291b1f88..e3ebd8862 100644 --- a/agent/consul/config.go +++ b/agent/consul/config.go @@ -217,6 +217,13 @@ type Config struct { // operators track which versions are actively deployed Build string + // ACLEnabled is used to enable ACLs + ACLsEnabled bool + + // 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 + // 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. @@ -226,10 +233,26 @@ type Config struct { // tokens. If not provided, ACL verification is disabled. ACLDatacenter string - // ACLTTL controls the time-to-live of cached ACL policies. + // ACLTokenTTL controls the time-to-live of cached ACL tokens. // It can be set to zero to disable caching, but this adds // a substantial cost. - ACLTTL time.Duration + ACLTokenTTL time.Duration + + // ACLPolicyTTL controls the time-to-live of cached ACL policies. + // It can be set to zero to disable caching, but this adds + // a substantial cost. + ACLPolicyTTL time.Duration + + // ACLDisabledTTL is the time between checking if ACLs should be + // enabled. This + ACLDisabledTTL time.Duration + + // ACLTokenReplication is used to enabled token replication. + // + // By default policy-only replication is enabled. When token + // replication is off and the primary datacenter is not + // yet upgraded to the new ACLs no replication will be performed + ACLTokenReplication bool // ACLDefaultPolicy is used to control the ACL interaction when // there is no defined policy. This can be "allow" which means @@ -245,25 +268,20 @@ type Config struct { // "allow" can be used to allow all requests. This is not recommended. ACLDownPolicy string - // EnableACLReplication is used to control ACL replication. - EnableACLReplication bool + // ACLReplicationRate is the max number of replication rounds that can + // be run per second. Note that either 1 or 2 RPCs are used during each replication + // round + ACLReplicationRate int - // ACLReplicationInterval is the interval at which replication passes - // will occur. Queries to the ACLDatacenter may block, so replication - // can happen less often than this, but the interval forms the upper - // limit to how fast we will go if there was constant ACL churn on the - // remote end. - ACLReplicationInterval time.Duration + // ACLReplicationBurst is how many replication RPCs can be bursted after a + // period of idleness + ACLReplicationBurst int // ACLReplicationApplyLimit is the max number of replication-related // apply operations that we allow during a one second period. This is // 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 - // ACLEnableKeyListPolicy is used to gate enforcement of the new "list" policy that // protects listing keys by prefix. This behavior is opt-in // by default in Consul 1.0 and later. @@ -411,10 +429,12 @@ func DefaultConfig() *Config { SerfFloodInterval: 60 * time.Second, ReconcileInterval: 60 * time.Second, ProtocolVersion: ProtocolVersion2Compatible, - ACLTTL: 30 * time.Second, + ACLPolicyTTL: 30 * time.Second, + ACLTokenTTL: 30 * time.Second, ACLDefaultPolicy: "allow", ACLDownPolicy: "extend-cache", - ACLReplicationInterval: 30 * time.Second, + ACLReplicationRate: 1, + ACLReplicationBurst: 5, ACLReplicationApplyLimit: 100, // ops / sec TombstoneTTL: 15 * time.Minute, TombstoneTTLGranularity: 30 * time.Second, diff --git a/agent/consul/connect_ca_endpoint.go b/agent/consul/connect_ca_endpoint.go index f0bd6cf21..97e59835e 100644 --- a/agent/consul/connect_ca_endpoint.go +++ b/agent/consul/connect_ca_endpoint.go @@ -36,7 +36,7 @@ func (s *ConnectCA) ConfigurationGet( } // This action requires operator read access. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } @@ -68,7 +68,7 @@ func (s *ConnectCA) ConfigurationSet( } // This action requires operator write access. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } @@ -349,7 +349,7 @@ func (s *ConnectCA) Sign( } // Verify that the ACL token provided has permission to act as this service - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/connect_ca_endpoint_test.go b/agent/consul/connect_ca_endpoint_test.go index dcfab476c..8ded72e4f 100644 --- a/agent/consul/connect_ca_endpoint_test.go +++ b/agent/consul/connect_ca_endpoint_test.go @@ -341,6 +341,7 @@ func TestConnectCASignValidation(t *testing.T) { dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -359,7 +360,7 @@ func TestConnectCASignValidation(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` service "web" { policy = "write" diff --git a/agent/consul/coordinate_endpoint.go b/agent/consul/coordinate_endpoint.go index f683e4874..7fd524c4d 100644 --- a/agent/consul/coordinate_endpoint.go +++ b/agent/consul/coordinate_endpoint.go @@ -134,7 +134,7 @@ func (c *Coordinate) Update(args *structs.CoordinateUpdateRequest, reply *struct } // Fetch the ACL token, if any, and enforce the node policy if enabled. - rule, err := c.srv.resolveToken(args.Token) + rule, err := c.srv.ResolveToken(args.Token) if err != nil { return err } @@ -205,7 +205,7 @@ func (c *Coordinate) Node(args *structs.NodeSpecificRequest, reply *structs.Inde } // Fetch the ACL token, if any, and enforce the node policy if enabled. - rule, err := c.srv.resolveToken(args.Token) + rule, err := c.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/coordinate_endpoint_test.go b/agent/consul/coordinate_endpoint_test.go index 0d9a3232f..acc96b616 100644 --- a/agent/consul/coordinate_endpoint_test.go +++ b/agent/consul/coordinate_endpoint_test.go @@ -181,6 +181,7 @@ func TestCoordinate_Update_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -223,7 +224,7 @@ func TestCoordinate_Update_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` node "node1" { policy = "write" @@ -351,6 +352,7 @@ func TestCoordinate_ListNodes_ACLFilter(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -456,7 +458,7 @@ func TestCoordinate_ListNodes_ACLFilter(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` node "foo" { policy = "read" @@ -538,6 +540,7 @@ func TestCoordinate_Node_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -597,7 +600,7 @@ func TestCoordinate_Node_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` node "node1" { policy = "read" diff --git a/agent/consul/filter.go b/agent/consul/filter.go index 0edad0f26..ea4d938dc 100644 --- a/agent/consul/filter.go +++ b/agent/consul/filter.go @@ -6,15 +6,15 @@ import ( ) type dirEntFilter struct { - acl acl.ACL - ent structs.DirEntries + authorizer acl.Authorizer + ent structs.DirEntries } func (d *dirEntFilter) Len() int { return len(d.ent) } func (d *dirEntFilter) Filter(i int) bool { - return !d.acl.KeyRead(d.ent[i].Key) + return !d.authorizer.KeyRead(d.ent[i].Key) } func (d *dirEntFilter) Move(dst, src, span int) { copy(d.ent[dst:dst+span], d.ent[src:src+span]) @@ -22,21 +22,21 @@ func (d *dirEntFilter) Move(dst, src, span int) { // FilterDirEnt is used to filter a list of directory entries // by applying an ACL policy -func FilterDirEnt(acl acl.ACL, ent structs.DirEntries) structs.DirEntries { - df := dirEntFilter{acl: acl, ent: ent} +func FilterDirEnt(authorizer acl.Authorizer, ent structs.DirEntries) structs.DirEntries { + df := dirEntFilter{authorizer: authorizer, ent: ent} return ent[:FilterEntries(&df)] } type keyFilter struct { - acl acl.ACL - keys []string + authorizer acl.Authorizer + keys []string } func (k *keyFilter) Len() int { return len(k.keys) } func (k *keyFilter) Filter(i int) bool { - return !k.acl.KeyRead(k.keys[i]) + return !k.authorizer.KeyRead(k.keys[i]) } func (k *keyFilter) Move(dst, src, span int) { @@ -45,14 +45,14 @@ func (k *keyFilter) Move(dst, src, span int) { // FilterKeys is used to filter a list of keys by // applying an ACL policy -func FilterKeys(acl acl.ACL, keys []string) []string { - kf := keyFilter{acl: acl, keys: keys} +func FilterKeys(authorizer acl.Authorizer, keys []string) []string { + kf := keyFilter{authorizer: authorizer, keys: keys} return keys[:FilterEntries(&kf)] } type txnResultsFilter struct { - acl acl.ACL - results structs.TxnResults + authorizer acl.Authorizer + results structs.TxnResults } func (t *txnResultsFilter) Len() int { @@ -62,7 +62,7 @@ func (t *txnResultsFilter) Len() int { func (t *txnResultsFilter) Filter(i int) bool { result := t.results[i] if result.KV != nil { - return !t.acl.KeyRead(result.KV.Key) + return !t.authorizer.KeyRead(result.KV.Key) } return false } @@ -73,8 +73,8 @@ func (t *txnResultsFilter) Move(dst, src, span int) { // FilterTxnResults is used to filter a list of transaction results by // applying an ACL policy. -func FilterTxnResults(acl acl.ACL, results structs.TxnResults) structs.TxnResults { - rf := txnResultsFilter{acl: acl, results: results} +func FilterTxnResults(authorizer acl.Authorizer, results structs.TxnResults) structs.TxnResults { + rf := txnResultsFilter{authorizer: authorizer, results: results} return results[:FilterEntries(&rf)] } diff --git a/agent/consul/filter_test.go b/agent/consul/filter_test.go index ebecca213..d7a6e03b5 100644 --- a/agent/consul/filter_test.go +++ b/agent/consul/filter_test.go @@ -10,8 +10,8 @@ import ( func TestFilter_DirEnt(t *testing.T) { t.Parallel() - policy, _ := acl.Parse(testFilterRules, nil) - aclR, _ := acl.New(acl.DenyAll(), policy, nil) + policy, _ := acl.NewPolicyFromSource("", 0, testFilterRules, acl.SyntaxLegacy, nil) + aclR, _ := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) type tcase struct { in []string @@ -52,8 +52,8 @@ func TestFilter_DirEnt(t *testing.T) { func TestFilter_Keys(t *testing.T) { t.Parallel() - policy, _ := acl.Parse(testFilterRules, nil) - aclR, _ := acl.New(acl.DenyAll(), policy, nil) + policy, _ := acl.NewPolicyFromSource("", 0, testFilterRules, acl.SyntaxLegacy, nil) + aclR, _ := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) type tcase struct { in []string @@ -84,8 +84,8 @@ func TestFilter_Keys(t *testing.T) { func TestFilter_TxnResults(t *testing.T) { t.Parallel() - policy, _ := acl.Parse(testFilterRules, nil) - aclR, _ := acl.New(acl.DenyAll(), policy, nil) + policy, _ := acl.NewPolicyFromSource("", 0, testFilterRules, acl.SyntaxLegacy, nil) + aclR, _ := acl.NewPolicyAuthorizer(acl.DenyAll(), []*acl.Policy{policy}, nil) type tcase struct { in []string diff --git a/agent/consul/fsm/commands_oss.go b/agent/consul/fsm/commands_oss.go index 5292bd0f5..f842ceee4 100644 --- a/agent/consul/fsm/commands_oss.go +++ b/agent/consul/fsm/commands_oss.go @@ -14,6 +14,7 @@ func init() { registerCommand(structs.DeregisterRequestType, (*FSM).applyDeregister) registerCommand(structs.KVSRequestType, (*FSM).applyKVSOperation) registerCommand(structs.SessionRequestType, (*FSM).applySessionOperation) + // DEPRECATED (ACL-Legacy-Compat) - Only needed for v1 ACL compat registerCommand(structs.ACLRequestType, (*FSM).applyACLOperation) registerCommand(structs.TombstoneRequestType, (*FSM).applyTombstoneOperation) registerCommand(structs.CoordinateBatchUpdateType, (*FSM).applyCoordinateBatchUpdate) @@ -22,6 +23,11 @@ func init() { registerCommand(structs.AutopilotRequestType, (*FSM).applyAutopilotUpdate) registerCommand(structs.IntentionRequestType, (*FSM).applyIntentionOperation) registerCommand(structs.ConnectCARequestType, (*FSM).applyConnectCAOperation) + registerCommand(structs.ACLTokenUpsertRequestType, (*FSM).applyACLTokenUpsertOperation) + registerCommand(structs.ACLTokenDeleteRequestType, (*FSM).applyACLTokenDeleteOperation) + registerCommand(structs.ACLBootstrapRequestType, (*FSM).applyACLTokenBootstrap) + registerCommand(structs.ACLPolicyUpsertRequestType, (*FSM).applyACLPolicyUpsertOperation) + registerCommand(structs.ACLPolicyDeleteRequestType, (*FSM).applyACLPolicyDeleteOperation) } func (c *FSM) applyRegister(buf []byte, index uint64) interface{} { @@ -134,7 +140,10 @@ func (c *FSM) applySessionOperation(buf []byte, index uint64) interface{} { } } +// DEPRECATED (ACL-Legacy-Compat) - Only needed for legacy compat func (c *FSM) applyACLOperation(buf []byte, index uint64) interface{} { + // TODO (ACL-Legacy-Compat) - Should we warn here somehow about using deprecated features + // maybe emit a second metric? var req structs.ACLRequest if err := structs.Decode(buf, &req); err != nil { panic(fmt.Errorf("failed to decode request: %v", err)) @@ -143,23 +152,34 @@ func (c *FSM) applyACLOperation(buf []byte, index uint64) interface{} { []metrics.Label{{Name: "op", Value: string(req.Op)}}) switch req.Op { case structs.ACLBootstrapInit: - enabled, err := c.state.ACLBootstrapInit(index) + enabled, _, err := c.state.CanBootstrapACLToken() if err != nil { return err } return enabled case structs.ACLBootstrapNow: - if err := c.state.ACLBootstrap(index, &req.ACL); err != nil { + // This a bootstrap request from a non-upgraded node + if err := c.state.ACLBootstrap(index, 0, req.ACL.Convert(), true); err != nil { return err } - return &req.ACL + + if _, token, err := c.state.ACLTokenGetBySecret(nil, req.ACL.ID); err != nil { + return err + } else { + acl, err := token.Convert() + if err != nil { + return err + } + return acl + } + case structs.ACLForceSet, structs.ACLSet: - if err := c.state.ACLSet(index, &req.ACL); err != nil { + if err := c.state.ACLTokenSet(index, req.ACL.Convert(), true); err != nil { return err } return req.ACL.ID case structs.ACLDelete: - return c.state.ACLDelete(index, req.ACL.ID) + return c.state.ACLTokenDeleteSecret(index, req.ACL.ID) default: c.logger.Printf("[WARN] consul.fsm: Invalid ACL operation '%s'", req.Op) return fmt.Errorf("Invalid ACL operation '%s'", req.Op) @@ -330,3 +350,57 @@ func (c *FSM) applyConnectCAOperation(buf []byte, index uint64) interface{} { return fmt.Errorf("Invalid CA operation '%s'", req.Op) } } + +func (c *FSM) applyACLTokenUpsertOperation(buf []byte, index uint64) interface{} { + var req structs.ACLTokenBatchUpsertRequest + if err := structs.Decode(buf, &req); err != nil { + panic(fmt.Errorf("failed to decode request: %v", err)) + } + defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl", "token"}, time.Now(), + []metrics.Label{{Name: "op", Value: "upsert"}}) + + return c.state.ACLTokensUpsert(index, req.Tokens, req.AllowCreate) +} + +func (c *FSM) applyACLTokenDeleteOperation(buf []byte, index uint64) interface{} { + var req structs.ACLTokenBatchDeleteRequest + if err := structs.Decode(buf, &req); err != nil { + panic(fmt.Errorf("failed to decode request: %v", err)) + } + defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl", "token"}, time.Now(), + []metrics.Label{{Name: "op", Value: "delete"}}) + + return c.state.ACLTokensDelete(index, req.TokenIDs) +} + +func (c *FSM) applyACLTokenBootstrap(buf []byte, index uint64) interface{} { + var req structs.ACLTokenBootstrapRequest + if err := structs.Decode(buf, &req); err != nil { + panic(fmt.Errorf("failed to decode request: %v", err)) + } + defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl", "token"}, time.Now(), + []metrics.Label{{Name: "op", Value: "bootstrap"}}) + return c.state.ACLBootstrap(index, req.ResetIndex, &req.Token, false) +} + +func (c *FSM) applyACLPolicyUpsertOperation(buf []byte, index uint64) interface{} { + var req structs.ACLPolicyBatchUpsertRequest + if err := structs.Decode(buf, &req); err != nil { + panic(fmt.Errorf("failed to decode request: %v", err)) + } + defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl", "policy"}, time.Now(), + []metrics.Label{{Name: "op", Value: "upsert"}}) + + return c.state.ACLPoliciesUpsert(index, req.Policies) +} + +func (c *FSM) applyACLPolicyDeleteOperation(buf []byte, index uint64) interface{} { + var req structs.ACLPolicyBatchDeleteRequest + if err := structs.Decode(buf, &req); err != nil { + panic(fmt.Errorf("failed to decode request: %v", err)) + } + defer metrics.MeasureSinceWithLabels([]string{"fsm", "acl", "policy"}, time.Now(), + []metrics.Label{{Name: "op", Value: "delete"}}) + + return c.state.ACLPoliciesDelete(index, req.PolicyIDs) +} diff --git a/agent/consul/fsm/commands_oss_test.go b/agent/consul/fsm/commands_oss_test.go index 9b859f7bf..6778a3f7e 100644 --- a/agent/consul/fsm/commands_oss_test.go +++ b/agent/consul/fsm/commands_oss_test.go @@ -796,7 +796,7 @@ func TestFSM_ACL_CRUD(t *testing.T) { ACL: structs.ACL{ ID: generateUUID(), Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, } buf, err := structs.Encode(structs.ACLRequestType, req) @@ -810,7 +810,7 @@ func TestFSM_ACL_CRUD(t *testing.T) { // Get the ACL. id := resp.(string) - _, acl, err := fsm.state.ACLGet(nil, id) + _, acl, err := fsm.state.ACLTokenGetBySecret(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -819,13 +819,13 @@ func TestFSM_ACL_CRUD(t *testing.T) { } // Verify the ACL. - if acl.ID != id { + if acl.SecretID != id { t.Fatalf("bad: %v", *acl) } - if acl.Name != "User token" { + if acl.Description != "User token" { t.Fatalf("bad: %v", *acl) } - if acl.Type != structs.ACLTypeClient { + if acl.Type != structs.ACLTokenTypeClient { t.Fatalf("bad: %v", *acl) } @@ -846,7 +846,7 @@ func TestFSM_ACL_CRUD(t *testing.T) { t.Fatalf("resp: %v", resp) } - _, acl, err = fsm.state.ACLGet(nil, id) + _, acl, err = fsm.state.ACLTokenGetBySecret(nil, id) if err != nil { t.Fatalf("err: %v", err) } @@ -868,15 +868,13 @@ func TestFSM_ACL_CRUD(t *testing.T) { if enabled, ok := resp.(bool); !ok || !enabled { t.Fatalf("resp: %v", resp) } - gotB, err := fsm.state.ACLGetBootstrap() + canBootstrap, _, err := fsm.state.CanBootstrapACLToken() if err != nil { t.Fatalf("err: %v", err) } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: true, - RaftIndex: gotB.RaftIndex, + if !canBootstrap { + t.Fatalf("bad: shouldn't be able to bootstrap") } - verify.Values(t, "", gotB, wantB) // Do a bootstrap. bootstrap := structs.ACLRequest{ @@ -885,7 +883,7 @@ func TestFSM_ACL_CRUD(t *testing.T) { ACL: structs.ACL{ ID: generateUUID(), Name: "Bootstrap Token", - Type: structs.ACLTypeManagement, + Type: structs.ACLTokenTypeManagement, }, } buf, err = structs.Encode(structs.ACLRequestType, bootstrap) diff --git a/agent/consul/fsm/snapshot_oss.go b/agent/consul/fsm/snapshot_oss.go index ad4af9c5b..c03d82bed 100644 --- a/agent/consul/fsm/snapshot_oss.go +++ b/agent/consul/fsm/snapshot_oss.go @@ -24,6 +24,9 @@ func init() { registerRestorer(structs.ConnectCARequestType, restoreConnectCA) registerRestorer(structs.ConnectCAProviderStateType, restoreConnectCAProviderState) registerRestorer(structs.ConnectCAConfigType, restoreConnectCAConfig) + registerRestorer(structs.IndexRequestType, restoreIndex) + registerRestorer(structs.ACLTokenUpsertRequestType, restoreToken) + registerRestorer(structs.ACLPolicyUpsertRequestType, restorePolicy) } func persistOSS(s *snapshot, sink raft.SnapshotSink, encoder *codec.Encoder) error { @@ -60,6 +63,9 @@ func persistOSS(s *snapshot, sink raft.SnapshotSink, encoder *codec.Encoder) err if err := s.persistConnectCAConfig(sink, encoder); err != nil { return err } + if err := s.persistIndex(sink, encoder); err != nil { + return err + } return nil } @@ -161,29 +167,30 @@ func (s *snapshot) persistSessions(sink raft.SnapshotSink, func (s *snapshot) persistACLs(sink raft.SnapshotSink, encoder *codec.Encoder) error { - acls, err := s.state.ACLs() + tokens, err := s.state.ACLTokens() if err != nil { return err } - for acl := acls.Next(); acl != nil; acl = acls.Next() { - if _, err := sink.Write([]byte{byte(structs.ACLRequestType)}); err != nil { + for token := tokens.Next(); token != nil; token = tokens.Next() { + if _, err := sink.Write([]byte{byte(structs.ACLTokenUpsertRequestType)}); err != nil { return err } - if err := encoder.Encode(acl.(*structs.ACL)); err != nil { + if err := encoder.Encode(token.(*structs.ACLToken)); err != nil { return err } } - bs, err := s.state.ACLBootstrap() + policies, err := s.state.ACLPolicies() if err != nil { return err } - if bs != nil { - if _, err := sink.Write([]byte{byte(structs.ACLBootstrapRequestType)}); err != nil { + + for policy := policies.Next(); policy != nil; policy = policies.Next() { + if _, err := sink.Write([]byte{byte(structs.ACLPolicyUpsertRequestType)}); err != nil { return err } - if err := encoder.Encode(bs); err != nil { + if err := encoder.Encode(policy.(*structs.ACLPolicy)); err != nil { return err } } @@ -346,6 +353,26 @@ func (s *snapshot) persistIntentions(sink raft.SnapshotSink, return nil } +func (s *snapshot) persistIndex(sink raft.SnapshotSink, encoder *codec.Encoder) error { + // Get all the indexes + iter, err := s.state.Indexes() + if err != nil { + return err + } + + for raw := iter.Next(); raw != nil; raw = iter.Next() { + // Prepare the request struct + idx := raw.(*state.IndexEntry) + + // Write out a node registration + sink.Write([]byte{byte(structs.IndexRequestType)}) + if err := encoder.Encode(idx); err != nil { + return err + } + } + return nil +} + func restoreRegistration(header *snapshotHeader, restore *state.Restore, decoder *codec.Decoder) error { var req structs.RegisterRequest if err := decoder.Decode(&req); err != nil { @@ -403,21 +430,23 @@ func restoreACL(header *snapshotHeader, restore *state.Restore, decoder *codec.D if err := decoder.Decode(&req); err != nil { return err } - if err := restore.ACL(&req); err != nil { + + if err := restore.ACLToken(req.Convert()); err != nil { return err } return nil } +// DEPRECATED (ACL-Legacy-Compat) - remove once v1 acl compat is removed func restoreACLBootstrap(header *snapshotHeader, restore *state.Restore, decoder *codec.Decoder) error { var req structs.ACLBootstrap if err := decoder.Decode(&req); err != nil { return err } - if err := restore.ACLBootstrap(&req); err != nil { - return err - } - return nil + + // With V2 ACLs whether bootstrapping has been performed is stored in the index table like nomad + // so this "restores" into that index table. + return restore.IndexRestore(&state.IndexEntry{"acl-token-bootstrap", req.ModifyIndex}) } func restoreCoordinates(header *snapshotHeader, restore *state.Restore, decoder *codec.Decoder) error { @@ -496,3 +525,27 @@ func restoreConnectCAConfig(header *snapshotHeader, restore *state.Restore, deco } return nil } + +func restoreIndex(header *snapshotHeader, restore *state.Restore, decoder *codec.Decoder) error { + var req state.IndexEntry + if err := decoder.Decode(&req); err != nil { + return err + } + return restore.IndexRestore(&req) +} + +func restoreToken(header *snapshotHeader, restore *state.Restore, decoder *codec.Decoder) error { + var req structs.ACLToken + if err := decoder.Decode(&req); err != nil { + return err + } + return restore.ACLToken(&req) +} + +func restorePolicy(header *snapshotHeader, restore *state.Restore, decoder *codec.Decoder) error { + var req structs.ACLPolicy + if err := decoder.Decode(&req); err != nil { + return err + } + return restore.ACLPolicy(&req) +} diff --git a/agent/consul/fsm/snapshot_oss_test.go b/agent/consul/fsm/snapshot_oss_test.go index f7604c5e7..4b70f32eb 100644 --- a/agent/consul/fsm/snapshot_oss_test.go +++ b/agent/consul/fsm/snapshot_oss_test.go @@ -7,14 +7,16 @@ import ( "testing" "time" + "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/connect" "github.com/hashicorp/consul/agent/consul/autopilot" "github.com/hashicorp/consul/agent/consul/state" "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/api" "github.com/hashicorp/consul/lib" - "github.com/pascaldekloe/goe/verify" + // "github.com/pascaldekloe/goe/verify" "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" ) func TestFSM_SnapshotRestore_OSS(t *testing.T) { @@ -66,11 +68,31 @@ func TestFSM_SnapshotRestore_OSS(t *testing.T) { }) session := &structs.Session{ID: generateUUID(), Node: "foo"} fsm.state.SessionCreate(9, session) - acl := &structs.ACL{ID: generateUUID(), Name: "User Token"} - fsm.state.ACLSet(10, acl) - if _, err := fsm.state.ACLBootstrapInit(10); err != nil { - t.Fatalf("err: %v", err) + policy := structs.ACLPolicy{ + ID: structs.ACLPolicyGlobalManagementID, + Name: "global-management", + Description: "Builtin Policy that grants unlimited access", + Rules: structs.ACLPolicyGlobalManagement, + Syntax: acl.SyntaxCurrent, } + policy.SetHash(true) + require.NoError(t, fsm.state.ACLPolicySet(1, &policy)) + + token := &structs.ACLToken{ + AccessorID: "30fca056-9fbb-4455-b94a-bf0e2bc575d6", + SecretID: "cbe1c6fd-d865-4034-9d6d-64fef7fb46a9", + Description: "Bootstrap Token (Global Management)", + Policies: []structs.ACLTokenPolicyLink{ + { + ID: structs.ACLPolicyGlobalManagementID, + }, + }, + CreateTime: time.Now(), + Local: false, + // DEPRECATED (ACL-Legacy-Compat) - This is used so that the bootstrap token is still visible via the v1 acl APIs + Type: structs.ACLTokenTypeManagement, + } + require.NoError(t, fsm.state.ACLBootstrap(10, 0, token, false)) fsm.state.KVSSet(11, &structs.DirEntry{ Key: "/remove", @@ -257,29 +279,21 @@ func TestFSM_SnapshotRestore_OSS(t *testing.T) { t.Fatalf("bad index: %d", idx) } - // Verify ACL is restored - _, a, err := fsm2.state.ACLGet(nil, acl.ID) - if err != nil { - t.Fatalf("err: %v", err) - } - if a.Name != "User Token" { - t.Fatalf("bad: %v", a) - } - if a.ModifyIndex <= 1 { - t.Fatalf("bad index: %d", idx) - } - gotB, err := fsm2.state.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: true, - RaftIndex: structs.RaftIndex{ - CreateIndex: 10, - ModifyIndex: 10, - }, - } - verify.Values(t, "", gotB, wantB) + // Verify ACL Token is restored + _, a, err := fsm2.state.ACLTokenGetByAccessor(nil, token.AccessorID) + require.NoError(t, err) + require.Equal(t, token.AccessorID, a.AccessorID) + require.Equal(t, token.ModifyIndex, a.ModifyIndex) + + // Verify the acl-token-bootstrap index was restored + canBootstrap, index, err := fsm2.state.CanBootstrapACLToken() + require.False(t, canBootstrap) + require.True(t, index > 0) + + // Verify ACL Policy is restored + _, policy2, err := fsm2.state.ACLPolicyGetByID(nil, structs.ACLPolicyGlobalManagementID) + require.NoError(t, err) + require.Equal(t, policy.Name, policy2.Name) // Verify tombstones are restored func() { diff --git a/agent/consul/health_endpoint.go b/agent/consul/health_endpoint.go index e82f3e8e2..a3c29b7b6 100644 --- a/agent/consul/health_endpoint.go +++ b/agent/consul/health_endpoint.go @@ -2,6 +2,7 @@ package consul import ( "fmt" + "sort" "github.com/armon/go-metrics" "github.com/hashicorp/consul/agent/consul/state" @@ -126,7 +127,7 @@ func (h *Health) ServiceNodes(args *structs.ServiceSpecificRequest, reply *struc // we're trying to find proxies for, so check that. if args.Connect { // Fetch the ACL token, if any. - rule, err := h.srv.resolveToken(args.Token) + rule, err := h.srv.ResolveToken(args.Token) if err != nil { return err } @@ -171,6 +172,10 @@ func (h *Health) ServiceNodes(args *structs.ServiceSpecificRequest, reply *struc []metrics.Label{{Name: "service", Value: args.ServiceName}, {Name: "tag", Value: args.ServiceTag}}) } if len(args.ServiceTags) > 0 { + // Sort tags so that the metric is the same even if the request + // tags are in a different order + sort.Strings(args.ServiceTags) + labels := []metrics.Label{{Name: "service", Value: args.ServiceName}} for _, tag := range args.ServiceTags { labels = append(labels, metrics.Label{Name: "tag", Value: tag}) diff --git a/agent/consul/health_endpoint_test.go b/agent/consul/health_endpoint_test.go index cbe1141f2..5a937ec5d 100644 --- a/agent/consul/health_endpoint_test.go +++ b/agent/consul/health_endpoint_test.go @@ -891,6 +891,7 @@ func TestHealth_ServiceNodes_ConnectProxy_ACL(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -908,7 +909,7 @@ func TestHealth_ServiceNodes_ConnectProxy_ACL(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` service "foo" { policy = "write" diff --git a/agent/consul/intention_endpoint.go b/agent/consul/intention_endpoint.go index 208315d77..6c6a5e6df 100644 --- a/agent/consul/intention_endpoint.go +++ b/agent/consul/intention_endpoint.go @@ -74,7 +74,7 @@ func (s *Intention) Apply( *reply = args.Intention.ID // Get the ACL token for the request for the checks below. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } @@ -225,7 +225,7 @@ func (s *Intention) Match( } // Get the ACL token for the request for the checks below. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } @@ -291,7 +291,7 @@ func (s *Intention) Check( } // Get the ACL token for the request for the checks below. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } @@ -344,7 +344,7 @@ func (s *Intention) Check( // NOTE(mitchellh): This is the same behavior as the agent authorize // endpoint. If this behavior is incorrect, we should also change it there // which is much more important. - rule, err = s.srv.resolveToken("") + rule, err = s.srv.ResolveToken("") if err != nil { return err } diff --git a/agent/consul/intention_endpoint_test.go b/agent/consul/intention_endpoint_test.go index c70dc57a3..5bf883c54 100644 --- a/agent/consul/intention_endpoint_test.go +++ b/agent/consul/intention_endpoint_test.go @@ -314,6 +314,7 @@ func TestIntentionApply_aclDeny(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -338,7 +339,7 @@ service "foo" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -392,6 +393,7 @@ func TestIntentionApply_aclDelete(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -416,7 +418,7 @@ service "foo" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -468,6 +470,7 @@ func TestIntentionApply_aclUpdate(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -492,7 +495,7 @@ service "foo" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -532,6 +535,7 @@ func TestIntentionApply_aclManagement(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -572,6 +576,7 @@ func TestIntentionApply_aclUpdateChange(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -596,7 +601,7 @@ service "foo" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -633,6 +638,7 @@ func TestIntentionGet_acl(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -657,7 +663,7 @@ service "foo" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -737,6 +743,7 @@ func TestIntentionList_acl(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -761,7 +768,7 @@ service "foo" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -904,6 +911,7 @@ func TestIntentionMatch_acl(t *testing.T) { assert := assert.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -928,7 +936,7 @@ service "bar" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -1048,6 +1056,7 @@ func TestIntentionCheck_defaultACLDeny(t *testing.T) { require := require.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -1082,6 +1091,7 @@ func TestIntentionCheck_defaultACLAllow(t *testing.T) { require := require.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "allow" }) @@ -1116,6 +1126,7 @@ func TestIntentionCheck_aclDeny(t *testing.T) { require := require.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -1139,7 +1150,7 @@ service "bar" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -1171,6 +1182,7 @@ func TestIntentionCheck_match(t *testing.T) { require := require.New(t) dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -1194,7 +1206,7 @@ service "bar" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/consul/internal_endpoint.go b/agent/consul/internal_endpoint.go index 55abeec55..ea465b819 100644 --- a/agent/consul/internal_endpoint.go +++ b/agent/consul/internal_endpoint.go @@ -70,7 +70,7 @@ func (m *Internal) EventFire(args *structs.EventFireRequest, } // Check ACLs - rule, err := m.srv.resolveToken(args.Token) + rule, err := m.srv.ResolveToken(args.Token) if err != nil { return err } @@ -105,7 +105,7 @@ func (m *Internal) KeyringOperation( reply *structs.KeyringResponses) error { // Check ACLs - rule, err := m.srv.resolveToken(args.Token) + rule, err := m.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/internal_endpoint_test.go b/agent/consul/internal_endpoint_test.go index 29b16b530..02014f99d 100644 --- a/agent/consul/internal_endpoint_test.go +++ b/agent/consul/internal_endpoint_test.go @@ -347,6 +347,7 @@ func TestInternal_EventFire_Token(t *testing.T) { t.Parallel() dir, srv := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDownPolicy = "deny" c.ACLDefaultPolicy = "deny" diff --git a/agent/consul/kvs_endpoint.go b/agent/consul/kvs_endpoint.go index b5f3fbb57..9fb52437e 100644 --- a/agent/consul/kvs_endpoint.go +++ b/agent/consul/kvs_endpoint.go @@ -21,7 +21,7 @@ type KVS struct { // preApply does all the verification of a KVS update that is performed BEFORE // we submit as a Raft log entry. This includes enforcing the lock delay which // must only be done on the leader. -func kvsPreApply(srv *Server, rule acl.ACL, op api.KVOp, dirEnt *structs.DirEntry) (bool, error) { +func kvsPreApply(srv *Server, rule acl.Authorizer, op api.KVOp, dirEnt *structs.DirEntry) (bool, error) { // Verify the entry. if dirEnt.Key == "" && op != api.KVDeleteTree { @@ -84,7 +84,7 @@ func (k *KVS) Apply(args *structs.KVSRequest, reply *bool) error { defer metrics.MeasureSince([]string{"kvs", "apply"}, time.Now()) // Perform the pre-apply checks. - acl, err := k.srv.resolveToken(args.Token) + acl, err := k.srv.ResolveToken(args.Token) if err != nil { return err } @@ -120,7 +120,7 @@ func (k *KVS) Get(args *structs.KeyRequest, reply *structs.IndexedDirEntries) er return err } - aclRule, err := k.srv.resolveToken(args.Token) + aclRule, err := k.srv.ResolveToken(args.Token) if err != nil { return err } @@ -159,7 +159,7 @@ func (k *KVS) List(args *structs.KeyRequest, reply *structs.IndexedDirEntries) e return err } - aclToken, err := k.srv.resolveToken(args.Token) + aclToken, err := k.srv.ResolveToken(args.Token) if err != nil { return err } @@ -203,7 +203,7 @@ func (k *KVS) ListKeys(args *structs.KeyListRequest, reply *structs.IndexedKeyLi return err } - aclToken, err := k.srv.resolveToken(args.Token) + aclToken, err := k.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/kvs_endpoint_test.go b/agent/consul/kvs_endpoint_test.go index 38b4e33ba..a91985c72 100644 --- a/agent/consul/kvs_endpoint_test.go +++ b/agent/consul/kvs_endpoint_test.go @@ -74,6 +74,7 @@ func TestKVS_Apply_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -90,7 +91,7 @@ func TestKVS_Apply_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testListRules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -185,6 +186,7 @@ func TestKVS_Get_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -393,6 +395,7 @@ func TestKVSEndpoint_List_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -432,7 +435,7 @@ func TestKVSEndpoint_List_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testListRules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -478,6 +481,7 @@ func TestKVSEndpoint_List_ACLEnableKeyListPolicy(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnableKeyListPolicy = true @@ -530,7 +534,7 @@ key "zip" { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testListRules1, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -676,6 +680,7 @@ func TestKVSEndpoint_ListKeys_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -715,7 +720,7 @@ func TestKVSEndpoint_ListKeys_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testListRules, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/consul/leader.go b/agent/consul/leader.go index ce3961193..b59787772 100644 --- a/agent/consul/leader.go +++ b/agent/consul/leader.go @@ -1,11 +1,13 @@ package consul import ( + "context" "fmt" "net" "strconv" "strings" "sync" + "sync/atomic" "time" "github.com/armon/go-metrics" @@ -16,11 +18,14 @@ import ( "github.com/hashicorp/consul/agent/metadata" "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/lib" "github.com/hashicorp/consul/types" + memdb "github.com/hashicorp/go-memdb" uuid "github.com/hashicorp/go-uuid" "github.com/hashicorp/go-version" "github.com/hashicorp/raft" "github.com/hashicorp/serf/serf" + "golang.org/x/time/rate" ) const ( @@ -47,6 +52,11 @@ func (s *Server) monitorLeadership() { // cleanup and to ensure we never run multiple leader loops. raftNotifyCh := s.raftNotifyCh + aclModeCheckWait := aclModeCheckMinInterval + var aclUpgradeCh <-chan time.Time + if s.ACLsEnabled() { + aclUpgradeCh = time.After(aclModeCheckWait) + } var weAreLeaderCh chan struct{} var leaderLoop sync.WaitGroup for { @@ -79,7 +89,33 @@ func (s *Server) monitorLeadership() { weAreLeaderCh = nil s.logger.Printf("[INFO] consul: cluster leadership lost") } + case <-aclUpgradeCh: + if atomic.LoadInt32(&s.useNewACLs) == 0 { + aclModeCheckWait = aclModeCheckWait * 2 + if aclModeCheckWait > aclModeCheckMaxInterval { + aclModeCheckWait = aclModeCheckMaxInterval + } + aclUpgradeCh = time.After(aclModeCheckWait) + if canUpgrade := s.canUpgradeToNewACLs(weAreLeaderCh != nil); canUpgrade { + if weAreLeaderCh != nil { + if err := s.initializeACLs(true); err != nil { + s.logger.Printf("[ERR] consul: error transitioning to using new ACLs: %v", err) + continue + } + } + + s.logger.Printf("[DEBUG] acl: transitioning out of legacy ACL mode") + atomic.StoreInt32(&s.useNewACLs, 1) + s.updateACLAdvertisement() + + // setting this to nil ensures that we will never hit this case again + aclUpgradeCh = nil + } + } else { + // establishLeadership probably transitioned us + aclUpgradeCh = nil + } case <-s.shutdownCh: return } @@ -193,9 +229,15 @@ WAIT: // previously inflight transactions have been committed and that our // state is up-to-date. func (s *Server) establishLeadership() error { - // This will create the anonymous token and master token (if that is - // configured). - if err := s.initializeACL(); err != nil { + // check for the upgrade here - this helps us transition to new ACLs much + // quicker if this is a new cluster or this is a test agent + if canUpgrade := s.canUpgradeToNewACLs(true); canUpgrade { + if err := s.initializeACLs(true); err != nil { + return err + } + atomic.StoreInt32(&s.useNewACLs, 1) + s.updateACLAdvertisement() + } else if err := s.initializeACLs(false); err != nil { return err } @@ -253,60 +295,58 @@ func (s *Server) revokeLeadership() error { s.setCAProvider(nil, nil) + s.stopACLUpgrade() + s.resetConsistentReadReady() s.autopilot.Stop() return nil } -// initializeACL is used to setup the ACLs if we are the leader -// and need to do this. -func (s *Server) initializeACL() error { - // Bail if not configured or we are not authoritative. - authDC := s.config.ACLDatacenter - if len(authDC) == 0 || authDC != s.config.Datacenter { +// DEPRECATED (ACL-Legacy-Compat) - Remove once old ACL compatibility is removed +func (s *Server) initializeLegacyACL() error { + if !s.ACLsEnabled() { return nil } - // Purge the cache, since it could've changed while we were not the - // leader. - s.aclAuthCache.Purge() + authDC := s.config.ACLDatacenter // Create anonymous token if missing. state := s.fsm.State() - _, acl, err := state.ACLGet(nil, anonymousToken) + _, token, err := state.ACLTokenGetBySecret(nil, anonymousToken) if err != nil { return fmt.Errorf("failed to get anonymous token: %v", err) } - if acl == nil { + if token == nil { req := structs.ACLRequest{ Datacenter: authDC, Op: structs.ACLSet, ACL: structs.ACL{ ID: anonymousToken, Name: "Anonymous Token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, }, } _, err := s.raftApply(structs.ACLRequestType, &req) if err != nil { return fmt.Errorf("failed to create anonymous token: %v", err) } + s.logger.Printf("[INFO] acl: Created the anonymous token") } // Check for configured master token. if master := s.config.ACLMasterToken; len(master) > 0 { - _, acl, err = state.ACLGet(nil, master) + _, token, err = state.ACLTokenGetBySecret(nil, master) if err != nil { return fmt.Errorf("failed to get master token: %v", err) } - if acl == nil { + if token == nil { req := structs.ACLRequest{ Datacenter: authDC, Op: structs.ACLSet, ACL: structs.ACL{ ID: master, Name: "Master Token", - Type: structs.ACLTypeManagement, + Type: structs.ACLTokenTypeManagement, }, } _, err := s.raftApply(structs.ACLRequestType, &req) @@ -324,11 +364,11 @@ func (s *Server) initializeACL() error { // servers consuming snapshots, so we have to wait to create it. var minVersion = version.Must(version.NewVersion("0.9.1")) if ServersMeetMinimumVersion(s.LANMembers(), minVersion) { - bs, err := state.ACLGetBootstrap() + canBootstrap, _, err := state.CanBootstrapACLToken() if err != nil { return fmt.Errorf("failed looking for ACL bootstrap info: %v", err) } - if bs == nil { + if canBootstrap { req := structs.ACLRequest{ Datacenter: authDC, Op: structs.ACLBootstrapInit, @@ -359,6 +399,432 @@ func (s *Server) initializeACL() error { return nil } +// initializeACLs is used to setup the ACLs if we are the leader +// and need to do this. +func (s *Server) initializeACLs(upgrade bool) error { + if !s.ACLsEnabled() { + return nil + } + + // Purge the cache, since it could've changed while we were not the + // leader. + s.acls.cache.Purge() + + if s.InACLDatacenter() { + if s.UseLegacyACLs() && !upgrade { + s.logger.Printf("[INFO] acl: initializing legacy acls") + return s.initializeLegacyACL() + } + + s.logger.Printf("[INFO] acl: initializing acls") + + // Create the builtin global-management policy + _, policy, err := s.fsm.State().ACLPolicyGetByID(nil, structs.ACLPolicyGlobalManagementID) + if err != nil { + return fmt.Errorf("failed to get the builtin global-management policy") + } + if policy == nil { + policy := structs.ACLPolicy{ + ID: structs.ACLPolicyGlobalManagementID, + Name: "global-management", + Description: "Builtin Policy that grants unlimited access", + Rules: structs.ACLPolicyGlobalManagement, + Syntax: acl.SyntaxCurrent, + } + policy.SetHash(true) + + req := structs.ACLPolicyBatchUpsertRequest{ + Policies: structs.ACLPolicies{&policy}, + } + _, err := s.raftApply(structs.ACLPolicyUpsertRequestType, &req) + if err != nil { + return fmt.Errorf("failed to create global-management policy: %v", err) + } + s.logger.Printf("[INFO] consul: Created ACL 'global-management' policy") + } + + // Check for configured master token. + if master := s.config.ACLMasterToken; len(master) > 0 { + state := s.fsm.State() + if _, err := uuid.ParseUUID(master); err != nil { + s.logger.Printf("[WARN] consul: Configuring a non-UUID master token is deprecated") + } + + _, token, err := state.ACLTokenGetBySecret(nil, master) + if err != nil { + return fmt.Errorf("failed to get master token: %v", err) + } + if token == nil { + accessor, err := lib.GenerateUUID(s.checkTokenUUID) + if err != nil { + return fmt.Errorf("failed to generate the accessor ID for the master token: %v", err) + } + + token := structs.ACLToken{ + AccessorID: accessor, + SecretID: master, + Description: "Master Token", + Policies: []structs.ACLTokenPolicyLink{ + { + ID: structs.ACLPolicyGlobalManagementID, + }, + }, + CreateTime: time.Now(), + Local: false, + + // DEPRECATED (ACL-Legacy-Compat) - only needed for compatibility + Type: structs.ACLTokenTypeManagement, + } + + token.SetHash(true) + + done := false + if canBootstrap, _, err := state.CanBootstrapACLToken(); err == nil && canBootstrap { + req := structs.ACLTokenBootstrapRequest{ + Token: token, + ResetIndex: 0, + } + if _, err := s.raftApply(structs.ACLBootstrapRequestType, &req); err == nil { + s.logger.Printf("[INFO] consul: Bootstrapped ACL master token from configuration") + done = true + } else { + if err.Error() != structs.ACLBootstrapNotAllowedErr.Error() && + err.Error() != structs.ACLBootstrapInvalidResetIndexErr.Error() { + return fmt.Errorf("failed to bootstrap master token: %v", err) + } + } + } + + if !done { + // either we didn't attempt to or setting the token with a bootstrap request failed. + req := structs.ACLTokenBatchUpsertRequest{ + Tokens: structs.ACLTokens{&token}, + } + if _, err := s.raftApply(structs.ACLTokenUpsertRequestType, &req); err != nil { + return fmt.Errorf("failed to create master token: %v", err) + } + + s.logger.Printf("[INFO] consul: Created ACL master token from configuration") + } + } + } + + state := s.fsm.State() + _, token, err := state.ACLTokenGetBySecret(nil, structs.ACLTokenAnonymousID) + if err != nil { + return fmt.Errorf("failed to get anonymous token: %v", err) + } + if token == nil { + // DEPRECATED (ACL-Legacy-Compat) - Don't need to query for previous "anonymous" token + // check for legacy token that needs an upgrade + _, legacyToken, err := state.ACLTokenGetBySecret(nil, anonymousToken) + if err != nil { + return fmt.Errorf("failed to get anonymous token: %v", err) + } + + // the token upgrade routine will take care of upgrading the token if a legacy version exists + if legacyToken == nil { + token = &structs.ACLToken{ + AccessorID: structs.ACLTokenAnonymousID, + SecretID: anonymousToken, + Description: "Anonymous Token", + } + token.SetHash(true) + + req := structs.ACLTokenBatchUpsertRequest{ + Tokens: structs.ACLTokens{token}, + AllowCreate: true, + } + _, err := s.raftApply(structs.ACLTokenUpsertRequestType, &req) + if err != nil { + return fmt.Errorf("failed to create anonymous token: %v", err) + } + s.logger.Printf("[INFO] consul: Created ACL anonymous token from configuration") + } + } + s.startACLUpgrade() + } else { + if s.UseLegacyACLs() && !upgrade { + if s.IsACLReplicationEnabled() { + s.startLegacyACLReplication() + } + } + + if upgrade { + s.stopACLReplication() + } + + // ACL replication is now mandatory + s.startACLReplication() + } + + // launch the upgrade go routine to generate accessors for everything + + return nil +} + +func (s *Server) startACLUpgrade() { + s.aclUpgradeLock.Lock() + defer s.aclUpgradeLock.Unlock() + + if s.aclUpgradeEnabled { + return + } + + ctx, cancel := context.WithCancel(context.Background()) + s.aclUpgradeCancel = cancel + + go func() { + limiter := rate.NewLimiter(aclUpgradeRateLimit, int(aclUpgradeRateLimit)) + for { + if err := limiter.Wait(ctx); err != nil { + return + } + + // actually run the upgrade here + state := s.fsm.State() + tokens, waitCh, err := state.ACLTokenListUpgradeable(aclUpgradeBatchSize) + if err != nil { + s.logger.Printf("[WARN] acl: encountered an error while searching for tokens without accessor ids: %v", err) + } + + if len(tokens) == 0 { + ws := memdb.NewWatchSet() + ws.Add(state.AbandonCh()) + ws.Add(waitCh) + ws.Add(ctx.Done()) + + // wait for more tokens to need upgrading or the aclUpgradeCh to be closed + ws.Watch(nil) + continue + } + + var newTokens structs.ACLTokens + for _, token := range tokens { + // This should be entirely unnessary but is just a small safeguard against changing accessor IDs + if token.AccessorID != "" { + continue + } + + newToken := *token + if token.SecretID == anonymousToken { + newToken.AccessorID = structs.ACLTokenAnonymousID + } else { + accessor, err := lib.GenerateUUID(s.checkTokenUUID) + if err != nil { + s.logger.Printf("[WARN] acl: failed to generate accessor during token auto-upgrade: %v", err) + continue + } + newToken.AccessorID = accessor + } + + // Assign the global-management policy to legacy management tokens + if len(newToken.Policies) == 0 && newToken.Type == structs.ACLTokenTypeManagement { + newToken.Policies = append(newToken.Policies, structs.ACLTokenPolicyLink{ID: structs.ACLPolicyGlobalManagementID}) + } + + newTokens = append(newTokens, &newToken) + } + + req := &structs.ACLTokenBatchUpsertRequest{Tokens: newTokens, AllowCreate: false} + + resp, err := s.raftApply(structs.ACLTokenUpsertRequestType, req) + if err != nil { + s.logger.Printf("[ERR] acl: failed to apply acl token upgrade batch: %v", err) + } + + if err, ok := resp.(error); ok { + s.logger.Printf("[ERR] acl: failed to apply acl token upgrade batch: %v", err) + } + } + }() + + s.aclUpgradeEnabled = true +} + +func (s *Server) stopACLUpgrade() { + s.aclUpgradeLock.Lock() + defer s.aclUpgradeLock.Unlock() + + if !s.aclUpgradeEnabled { + return + } + + s.aclUpgradeCancel() + s.aclUpgradeCancel = nil + s.aclUpgradeEnabled = false +} + +func (s *Server) startLegacyACLReplication() { + s.aclReplicationLock.Lock() + defer s.aclReplicationLock.Unlock() + + if s.aclReplicationEnabled { + return + } + + s.initReplicationStatus() + ctx, cancel := context.WithCancel(context.Background()) + s.aclReplicationCancel = cancel + + go func() { + var lastRemoteIndex uint64 + limiter := rate.NewLimiter(rate.Limit(s.config.ACLReplicationRate), s.config.ACLReplicationBurst) + + for { + if err := limiter.Wait(ctx); err != nil { + return + } + + if s.tokens.ACLReplicationToken() == "" { + continue + } + + index, exit, err := s.replicateLegacyACLs(lastRemoteIndex, ctx) + if exit { + return + } + + if err != nil { + lastRemoteIndex = 0 + s.updateACLReplicationStatusError() + s.logger.Printf("[WARN] consul: Legacy ACL replication error (will retry if still leader): %v", err) + } else { + lastRemoteIndex = index + s.updateACLReplicationStatusIndex(index) + s.logger.Printf("[DEBUG] consul: Legacy ACL replication completed through remote index %d", index) + } + } + }() + + s.updateACLReplicationStatusRunning(structs.ACLReplicateLegacy) + s.aclReplicationEnabled = true +} + +func (s *Server) startACLReplication() { + s.aclReplicationLock.Lock() + defer s.aclReplicationLock.Unlock() + + if s.aclReplicationEnabled { + return + } + + s.initReplicationStatus() + ctx, cancel := context.WithCancel(context.Background()) + s.aclReplicationCancel = cancel + + replicationType := structs.ACLReplicatePolicies + + go func() { + var failedAttempts uint + limiter := rate.NewLimiter(rate.Limit(s.config.ACLReplicationRate), s.config.ACLReplicationBurst) + + var lastRemoteIndex uint64 + for { + if err := limiter.Wait(ctx); err != nil { + return + } + + if s.tokens.ACLReplicationToken() == "" { + continue + } + + index, exit, err := s.replicateACLPolicies(lastRemoteIndex, ctx) + if exit { + return + } + + if err != nil { + lastRemoteIndex = 0 + s.updateACLReplicationStatusError() + s.logger.Printf("[WARN] consul: ACL policy replication error (will retry if still leader): %v", err) + if (1 << failedAttempts) < aclReplicationMaxRetryBackoff { + failedAttempts++ + } + + select { + case <-ctx.Done(): + return + case <-time.After((1 << failedAttempts) * time.Second): + // do nothing + } + } else { + lastRemoteIndex = index + s.updateACLReplicationStatusIndex(index) + s.logger.Printf("[DEBUG] consul: ACL policy replication completed through remote index %d", index) + failedAttempts = 0 + } + } + }() + + s.logger.Printf("[INFO] acl: started ACL Policy replication") + + if s.config.ACLTokenReplication { + replicationType = structs.ACLReplicateTokens + + go func() { + var failedAttempts uint + limiter := rate.NewLimiter(rate.Limit(s.config.ACLReplicationRate), s.config.ACLReplicationBurst) + var lastRemoteIndex uint64 + for { + if err := limiter.Wait(ctx); err != nil { + return + } + + if s.tokens.ACLReplicationToken() == "" { + continue + } + + index, exit, err := s.replicateACLTokens(lastRemoteIndex, ctx) + if exit { + return + } + + if err != nil { + lastRemoteIndex = 0 + s.updateACLReplicationStatusError() + s.logger.Printf("[WARN] consul: ACL token replication error (will retry if still leader): %v", err) + if (1 << failedAttempts) < aclReplicationMaxRetryBackoff { + failedAttempts++ + } + + select { + case <-ctx.Done(): + return + case <-time.After((1 << failedAttempts) * time.Second): + // do nothing + } + } else { + lastRemoteIndex = index + s.updateACLReplicationStatusTokenIndex(index) + s.logger.Printf("[DEBUG] consul: ACL token replication completed through remote index %d", index) + failedAttempts = 0 + } + } + }() + + s.logger.Printf("[INFO] acl: started ACL Token replication") + } + + s.updateACLReplicationStatusRunning(replicationType) + + s.aclReplicationEnabled = true +} + +func (s *Server) stopACLReplication() { + s.aclReplicationLock.Lock() + defer s.aclReplicationLock.Unlock() + + if !s.aclReplicationEnabled { + return + } + + s.aclReplicationCancel() + s.aclReplicationCancel = nil + s.updateACLReplicationStatusStopped() + s.aclReplicationEnabled = false +} + // getOrCreateAutopilotConfig is used to get the autopilot config, initializing it if necessary func (s *Server) getOrCreateAutopilotConfig() *autopilot.Config { state := s.fsm.State() diff --git a/agent/consul/leader_test.go b/agent/consul/leader_test.go index 35a4321ca..a0308beb1 100644 --- a/agent/consul/leader_test.go +++ b/agent/consul/leader_test.go @@ -20,6 +20,7 @@ func TestLeader_RegisterMember(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = true @@ -89,6 +90,7 @@ func TestLeader_FailedMember(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = true @@ -150,6 +152,7 @@ func TestLeader_LeftMember(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = true @@ -196,6 +199,7 @@ func TestLeader_ReapMember(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = true @@ -257,6 +261,7 @@ func TestLeader_ReapServer(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "allow" c.ACLEnforceVersion8 = true @@ -267,6 +272,7 @@ func TestLeader_ReapServer(t *testing.T) { dir2, s2 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "allow" c.ACLEnforceVersion8 = true @@ -277,6 +283,7 @@ func TestLeader_ReapServer(t *testing.T) { dir3, s3 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "allow" c.ACLEnforceVersion8 = true @@ -332,6 +339,7 @@ func TestLeader_Reconcile_ReapMember(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = true @@ -381,6 +389,7 @@ func TestLeader_Reconcile(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = true @@ -710,6 +719,7 @@ func TestLeader_ReapTombstones(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.TombstoneTTL = 50 * time.Millisecond @@ -950,13 +960,12 @@ func TestLeader_ACL_Initialization(t *testing.T) { name string build string master string - init bool bootstrap bool }{ - {"old version, no master", "0.8.0", "", false, false}, - {"old version, master", "0.8.0", "root", false, false}, - {"new version, no master", "0.9.1", "", true, true}, - {"new version, master", "0.9.1", "root", true, false}, + {"old version, no master", "0.8.0", "", true}, + {"old version, master", "0.8.0", "root", false}, + {"new version, no master", "0.9.1", "", true}, + {"new version, master", "0.9.1", "root", false}, } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { @@ -965,6 +974,7 @@ func TestLeader_ACL_Initialization(t *testing.T) { c.Bootstrap = true c.Datacenter = "dc1" c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = tt.master } dir1, s1 := testServerWithConfig(t, conf) @@ -973,7 +983,7 @@ func TestLeader_ACL_Initialization(t *testing.T) { testrpc.WaitForLeader(t, s1.RPC, "dc1") if tt.master != "" { - _, master, err := s1.fsm.State().ACLGet(nil, tt.master) + _, master, err := s1.fsm.State().ACLTokenGetBySecret(nil, tt.master) if err != nil { t.Fatalf("err: %v", err) } @@ -982,7 +992,7 @@ func TestLeader_ACL_Initialization(t *testing.T) { } } - _, anon, err := s1.fsm.State().ACLGet(nil, anonymousToken) + _, anon, err := s1.fsm.State().ACLTokenGetBySecret(nil, anonymousToken) if err != nil { t.Fatalf("err: %v", err) } @@ -990,21 +1000,16 @@ func TestLeader_ACL_Initialization(t *testing.T) { t.Fatalf("anonymous token wasn't created") } - bs, err := s1.fsm.State().ACLGetBootstrap() + canBootstrap, _, err := s1.fsm.State().CanBootstrapACLToken() if err != nil { t.Fatalf("err: %v", err) } - if !tt.init { - if bs != nil { - t.Fatalf("bootstrap should not be initialized") - } - } else { - if bs == nil { - t.Fatalf("bootstrap should be initialized") - } - if got, want := bs.AllowBootstrap, tt.bootstrap; got != want { - t.Fatalf("got %v want %v", got, want) + if tt.bootstrap { + if !canBootstrap { + t.Fatalf("bootstrap should be allowed") } + } else if canBootstrap { + t.Fatalf("bootstrap should not be allowed") } }) } diff --git a/agent/consul/operator_autopilot_endpoint.go b/agent/consul/operator_autopilot_endpoint.go index 3f702cb18..c9a328051 100644 --- a/agent/consul/operator_autopilot_endpoint.go +++ b/agent/consul/operator_autopilot_endpoint.go @@ -15,7 +15,7 @@ func (op *Operator) AutopilotGetConfiguration(args *structs.DCSpecificRequest, r } // This action requires operator read access. - rule, err := op.srv.resolveToken(args.Token) + rule, err := op.srv.ResolveToken(args.Token) if err != nil { return err } @@ -44,7 +44,7 @@ func (op *Operator) AutopilotSetConfiguration(args *structs.AutopilotSetConfigRe } // This action requires operator write access. - rule, err := op.srv.resolveToken(args.Token) + rule, err := op.srv.ResolveToken(args.Token) if err != nil { return err } @@ -80,7 +80,7 @@ func (op *Operator) ServerHealth(args *structs.DCSpecificRequest, reply *autopil } // This action requires operator read access. - rule, err := op.srv.resolveToken(args.Token) + rule, err := op.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/operator_autopilot_endpoint_test.go b/agent/consul/operator_autopilot_endpoint_test.go index 34d36f851..33bb98690 100644 --- a/agent/consul/operator_autopilot_endpoint_test.go +++ b/agent/consul/operator_autopilot_endpoint_test.go @@ -44,6 +44,7 @@ func TestOperator_Autopilot_GetConfiguration_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.AutopilotConfig.CleanupDeadServers = false @@ -77,7 +78,7 @@ func TestOperator_Autopilot_GetConfiguration_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -138,6 +139,7 @@ func TestOperator_Autopilot_SetConfiguration_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.AutopilotConfig.CleanupDeadServers = false @@ -174,7 +176,7 @@ func TestOperator_Autopilot_SetConfiguration_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/consul/operator_raft_endpoint.go b/agent/consul/operator_raft_endpoint.go index 9cabb51a3..85bdc60bf 100644 --- a/agent/consul/operator_raft_endpoint.go +++ b/agent/consul/operator_raft_endpoint.go @@ -18,7 +18,7 @@ func (op *Operator) RaftGetConfiguration(args *structs.DCSpecificRequest, reply } // This action requires operator read access. - rule, err := op.srv.resolveToken(args.Token) + rule, err := op.srv.ResolveToken(args.Token) if err != nil { return err } @@ -80,7 +80,7 @@ func (op *Operator) RaftRemovePeerByAddress(args *structs.RaftRemovePeerRequest, // This is a super dangerous operation that requires operator write // access. - rule, err := op.srv.resolveToken(args.Token) + rule, err := op.srv.ResolveToken(args.Token) if err != nil { return err } @@ -147,7 +147,7 @@ func (op *Operator) RaftRemovePeerByID(args *structs.RaftRemovePeerRequest, repl // This is a super dangerous operation that requires operator write // access. - rule, err := op.srv.resolveToken(args.Token) + rule, err := op.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/operator_raft_endpoint_test.go b/agent/consul/operator_raft_endpoint_test.go index 8c73cd522..144209889 100644 --- a/agent/consul/operator_raft_endpoint_test.go +++ b/agent/consul/operator_raft_endpoint_test.go @@ -62,6 +62,7 @@ func TestOperator_RaftGetConfiguration_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -94,7 +95,7 @@ func TestOperator_RaftGetConfiguration_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -198,6 +199,7 @@ func TestOperator_RaftRemovePeerByAddress_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -231,7 +233,7 @@ func TestOperator_RaftRemovePeerByAddress_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -315,6 +317,7 @@ func TestOperator_RaftRemovePeerByID_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.RaftConfig.ProtocolVersion = 3 @@ -349,7 +352,7 @@ func TestOperator_RaftRemovePeerByID_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/consul/prepared_query_endpoint.go b/agent/consul/prepared_query_endpoint.go index 8873d4aad..9c7862970 100644 --- a/agent/consul/prepared_query_endpoint.go +++ b/agent/consul/prepared_query_endpoint.go @@ -60,7 +60,7 @@ func (p *PreparedQuery) Apply(args *structs.PreparedQueryRequest, reply *string) *reply = args.Query.ID // Get the ACL token for the request for the checks below. - rule, err := p.srv.resolveToken(args.Token) + rule, err := p.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/prepared_query_endpoint_test.go b/agent/consul/prepared_query_endpoint_test.go index 00bbf4a9f..ffaa08dc6 100644 --- a/agent/consul/prepared_query_endpoint_test.go +++ b/agent/consul/prepared_query_endpoint_test.go @@ -188,6 +188,7 @@ func TestPreparedQuery_Apply_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -212,7 +213,7 @@ func TestPreparedQuery_Apply_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -627,6 +628,7 @@ func TestPreparedQuery_ACLDeny_Catchall_Template(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -651,7 +653,7 @@ func TestPreparedQuery_ACLDeny_Catchall_Template(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -841,6 +843,7 @@ func TestPreparedQuery_Get(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -865,7 +868,7 @@ func TestPreparedQuery_Get(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -1093,6 +1096,7 @@ func TestPreparedQuery_List(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -1117,7 +1121,7 @@ func TestPreparedQuery_List(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -1300,6 +1304,7 @@ func TestPreparedQuery_Explain(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -1324,7 +1329,7 @@ func TestPreparedQuery_Explain(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -1436,6 +1441,7 @@ func TestPreparedQuery_Execute(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -1448,6 +1454,7 @@ func TestPreparedQuery_Execute(t *testing.T) { dir2, s2 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc2" c.ACLDatacenter = "dc1" + c.ACLsEnabled = true }) defer os.RemoveAll(dir2) defer s2.Shutdown() @@ -1479,7 +1486,7 @@ func TestPreparedQuery_Execute(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -2163,7 +2170,7 @@ func TestPreparedQuery_Execute(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: rules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -2867,6 +2874,7 @@ func TestPreparedQuery_Wrapper(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -2876,6 +2884,7 @@ func TestPreparedQuery_Wrapper(t *testing.T) { dir2, s2 := testServerWithConfig(t, func(c *Config) { c.Datacenter = "dc2" c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) diff --git a/agent/consul/server.go b/agent/consul/server.go index 94bc01e8d..feac9458d 100644 --- a/agent/consul/server.go +++ b/agent/consul/server.go @@ -1,6 +1,7 @@ package consul import ( + "context" "crypto/tls" "errors" "fmt" @@ -17,7 +18,6 @@ import ( "sync/atomic" "time" - "github.com/hashicorp/consul/acl" ca "github.com/hashicorp/consul/agent/connect/ca" "github.com/hashicorp/consul/agent/consul/autopilot" "github.com/hashicorp/consul/agent/consul/fsm" @@ -94,11 +94,24 @@ type Server struct { // sentinel is the Sentinel code engine (can be nil). sentinel sentinel.Evaluator - // aclAuthCache is the authoritative ACL cache. - aclAuthCache *acl.Cache + // acls is used to resolve tokens to effective policies + acls *ACLResolver - // aclCache is the non-authoritative ACL cache. - aclCache *aclCache + // aclUpgradeCancel is used to cancel the ACL upgrade goroutine when we + // lose leadership + aclUpgradeCancel context.CancelFunc + aclUpgradeLock sync.RWMutex + aclUpgradeEnabled bool + + // aclReplicationCancel is used to shut down the ACL replication goroutine + // when we lose leadership + aclReplicationCancel context.CancelFunc + aclReplicationLock sync.RWMutex + aclReplicationEnabled bool + + // DEPRECATED (ACL-Legacy-Compat) - only needed while we support both + // useNewACLs is used to determine whether we can use new ACLs or not + useNewACLs int32 // autopilot is the Autopilot instance for this server. autopilot *autopilot.Autopilot @@ -344,23 +357,20 @@ func NewServerLogger(config *Config, logger *log.Logger, tokens *token.Store) (* // Initialize the stats fetcher that autopilot will use. s.statsFetcher = NewStatsFetcher(logger, s.connPool, s.config.Datacenter) - // Initialize the authoritative ACL cache. s.sentinel = sentinel.New(logger) - s.aclAuthCache, err = acl.NewCache(aclCacheSize, s.aclLocalFault, s.sentinel) - if err != nil { - s.Shutdown() - return nil, fmt.Errorf("Failed to create authoritative ACL cache: %v", err) + s.useNewACLs = 0 + aclConfig := ACLResolverConfig{ + Config: config, + Delegate: s, + CacheConfig: serverACLCacheConfig, + AutoDisable: false, + Logger: logger, + Sentinel: s.sentinel, } - - // Set up the non-authoritative ACL cache. A nil local function is given - // if ACL replication isn't enabled. - var local acl.FaultFunc - if s.IsACLReplicationEnabled() { - local = s.aclLocalFault - } - if s.aclCache, err = newACLCache(config, logger, s.RPC, local, s.sentinel); err != nil { + // Initialize the ACL resolver. + if s.acls, err = NewACLResolver(&aclConfig); err != nil { s.Shutdown() - return nil, fmt.Errorf("Failed to create non-authoritative ACL cache: %v", err) + return nil, fmt.Errorf("Failed to create ACL resolver: %v", err) } // Initialize the RPC layer. @@ -456,11 +466,6 @@ func NewServerLogger(config *Config, logger *log.Logger, tokens *token.Store) (* // since it can fire events when leadership is obtained. go s.monitorLeadership() - // Start ACL replication. - if s.IsACLReplicationEnabled() { - go s.runACLReplication() - } - // Start listening for RPC requests. go s.listen(s.Listener) diff --git a/agent/consul/server_serf.go b/agent/consul/server_serf.go index 8d021e871..13308e0f8 100644 --- a/agent/consul/server_serf.go +++ b/agent/consul/server_serf.go @@ -8,6 +8,7 @@ import ( "time" "github.com/hashicorp/consul/agent/metadata" + "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/consul/lib" "github.com/hashicorp/raft" "github.com/hashicorp/serf/serf" @@ -69,6 +70,13 @@ func (s *Server) setupSerf(conf *serf.Config, ch chan serf.Event, path string, w if s.config.UseTLS { conf.Tags["use_tls"] = "1" } + + if s.config.ACLDatacenter != "" { + // we start in legacy mode and allow upgrading later + conf.Tags["acls"] = string(structs.ACLModeLegacy) + } else { + conf.Tags["acls"] = string(structs.ACLModeDisabled) + } if s.logger == nil { conf.MemberlistConfig.LogOutput = s.config.LogOutput conf.LogOutput = s.config.LogOutput diff --git a/agent/consul/session_endpoint.go b/agent/consul/session_endpoint.go index 3817460b2..0ae7db0ed 100644 --- a/agent/consul/session_endpoint.go +++ b/agent/consul/session_endpoint.go @@ -34,7 +34,7 @@ func (s *Session) Apply(args *structs.SessionRequest, reply *string) error { } // Fetch the ACL token, if any, and apply the policy. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } @@ -236,7 +236,7 @@ func (s *Session) Renew(args *structs.SessionSpecificRequest, } // Fetch the ACL token, if any, and apply the policy. - rule, err := s.srv.resolveToken(args.Token) + rule, err := s.srv.ResolveToken(args.Token) if err != nil { return err } diff --git a/agent/consul/session_endpoint_test.go b/agent/consul/session_endpoint_test.go index e66281a19..3528284e2 100644 --- a/agent/consul/session_endpoint_test.go +++ b/agent/consul/session_endpoint_test.go @@ -140,6 +140,7 @@ func TestSession_Apply_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -157,7 +158,7 @@ func TestSession_Apply_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` session "foo" { policy = "write" @@ -331,6 +332,7 @@ func TestSession_Get_List_NodeSessions_ACLFilter(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -348,7 +350,7 @@ func TestSession_Get_List_NodeSessions_ACLFilter(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` session "foo" { policy = "read" @@ -705,6 +707,7 @@ func TestSession_Renew_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" c.ACLEnforceVersion8 = false @@ -721,7 +724,7 @@ func TestSession_Renew_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: ` session "foo" { policy = "write" diff --git a/agent/consul/snapshot_endpoint.go b/agent/consul/snapshot_endpoint.go index d2de82c45..f00ba1931 100644 --- a/agent/consul/snapshot_endpoint.go +++ b/agent/consul/snapshot_endpoint.go @@ -59,7 +59,7 @@ func (s *Server) dispatchSnapshotRequest(args *structs.SnapshotRequest, in io.Re // 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 rule, err := s.resolveToken(args.Token); err != nil { + if rule, err := s.ResolveToken(args.Token); err != nil { return nil, err } else if rule != nil && !rule.Snapshot() { return nil, acl.ErrPermissionDenied diff --git a/agent/consul/snapshot_endpoint_test.go b/agent/consul/snapshot_endpoint_test.go index 33e672d3f..2cea68e41 100644 --- a/agent/consul/snapshot_endpoint_test.go +++ b/agent/consul/snapshot_endpoint_test.go @@ -250,6 +250,7 @@ func TestSnapshot_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) diff --git a/agent/consul/state/acl.go b/agent/consul/state/acl.go index 283b4b20b..5ef43b80c 100644 --- a/agent/consul/state/acl.go +++ b/agent/consul/state/acl.go @@ -7,17 +7,146 @@ import ( "github.com/hashicorp/go-memdb" ) -// aclsTableSchema returns a new table schema used for storing ACL tokens. -func aclsTableSchema() *memdb.TableSchema { +type TokenPoliciesIndex struct { +} + +func (s *TokenPoliciesIndex) FromObject(obj interface{}) (bool, [][]byte, error) { + token, ok := obj.(*structs.ACLToken) + if !ok { + return false, nil, fmt.Errorf("object is not an ACLTokenPolicyLink") + } + + links := token.Policies + + numLinks := len(links) + if numLinks == 0 { + return false, nil, nil + } + + vals := make([][]byte, 0, numLinks) + for _, link := range links { + vals = append(vals, []byte(link.ID+"\x00")) + } + + return true, vals, nil +} + +func (s *TokenPoliciesIndex) FromArgs(args ...interface{}) ([]byte, error) { + if len(args) != 1 { + return nil, fmt.Errorf("must provide only a single argument") + } + arg, ok := args[0].(string) + if !ok { + return nil, fmt.Errorf("argument must be a string: %#v", args[0]) + } + // Add the null character as a terminator + arg += "\x00" + return []byte(arg), nil +} + +func (s *TokenPoliciesIndex) PrefixFromArgs(args ...interface{}) ([]byte, error) { + val, err := s.FromArgs(args...) + if err != nil { + return nil, err + } + + // Strip the null terminator, the rest is a prefix + n := len(val) + if n > 0 { + return val[:n-1], nil + } + return val, nil +} + +func tokensTableSchema() *memdb.TableSchema { return &memdb.TableSchema{ - Name: "acls", + Name: "acl-tokens", Indexes: map[string]*memdb.IndexSchema{ + "accessor": &memdb.IndexSchema{ + Name: "accessor", + AllowMissing: true, + Unique: true, + Indexer: &memdb.UUIDFieldIndex{ + Field: "AccessorID", + }, + }, "id": &memdb.IndexSchema{ Name: "id", AllowMissing: false, Unique: true, Indexer: &memdb.StringFieldIndex{ - Field: "ID", + Field: "SecretID", + Lowercase: false, + }, + }, + "policies": &memdb.IndexSchema{ + Name: "policies", + // Need to allow missing for the anonymous token + AllowMissing: true, + Unique: false, + Indexer: &TokenPoliciesIndex{}, + }, + "local": &memdb.IndexSchema{ + Name: "local", + AllowMissing: false, + Unique: false, + Indexer: &memdb.ConditionalIndex{ + Conditional: func(obj interface{}) (bool, error) { + if token, ok := obj.(*structs.ACLToken); ok { + return token.Local, nil + } + return false, nil + }, + }, + }, + + //DEPRECATED (ACL-Legacy-Compat) - This index is only needed while we support upgrading v1 to v2 acls + // This table indexes all the ACL tokens that do not have an AccessorID + "needs-upgrade": &memdb.IndexSchema{ + Name: "needs-upgrade", + AllowMissing: false, + Unique: false, + Indexer: &memdb.ConditionalIndex{ + Conditional: func(obj interface{}) (bool, error) { + if token, ok := obj.(*structs.ACLToken); ok { + return token.AccessorID == "", nil + } + return false, nil + }, + }, + }, + }, + } +} + +func policiesTableSchema() *memdb.TableSchema { + return &memdb.TableSchema{ + Name: "acl-policies", + Indexes: map[string]*memdb.IndexSchema{ + "id": &memdb.IndexSchema{ + Name: "id", + AllowMissing: false, + Unique: true, + Indexer: &memdb.UUIDFieldIndex{ + Field: "ID", + }, + }, + "name": &memdb.IndexSchema{ + Name: "name", + AllowMissing: false, + Unique: true, + Indexer: &memdb.StringFieldIndex{ + Field: "Name", + // TODO (ACL-V2) - should we coerce to lowercase? + Lowercase: true, + }, + }, + "datacenters": &memdb.IndexSchema{ + Name: "datacenters", + AllowMissing: true, + Unique: false, + Indexer: &memdb.StringSliceFieldIndex{ + Field: "Datacenters", Lowercase: false, }, }, @@ -25,373 +154,651 @@ func aclsTableSchema() *memdb.TableSchema { } } -// aclsBootstrapTableSchema returns a new schema used for tracking the ACL -// bootstrap status for a cluster. This is designed to have only a single -// row, so it has a somewhat unusual no-op indexer. -func aclsBootstrapTableSchema() *memdb.TableSchema { - return &memdb.TableSchema{ - Name: "acls-bootstrap", - Indexes: map[string]*memdb.IndexSchema{ - "id": &memdb.IndexSchema{ - Name: "id", - AllowMissing: true, - Unique: true, - Indexer: &memdb.ConditionalIndex{ - Conditional: func(obj interface{}) (bool, error) { return true, nil }, - }, - }, - }, - } -} - func init() { - registerSchema(aclsTableSchema) - registerSchema(aclsBootstrapTableSchema) + registerSchema(tokensTableSchema) + registerSchema(policiesTableSchema) } -// ACLs is used to pull all the ACLs from the snapshot. -func (s *Snapshot) ACLs() (memdb.ResultIterator, error) { - iter, err := s.tx.Get("acls", "id") +// ACLTokens is used when saving a snapshot +func (s *Snapshot) ACLTokens() (memdb.ResultIterator, error) { + // DEPRECATED (ACL-Legacy-Compat) - This could use the "id" index when we remove v1 compat + iter, err := s.tx.Get("acl-tokens", "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 *Restore) ACL(acl *structs.ACL) error { - if err := s.tx.Insert("acls", acl); err != nil { - return fmt.Errorf("failed restoring acl: %s", err) +// ACLToken is used when restoring from a snapshot. For general inserts, use ACL. +func (s *Restore) ACLToken(token *structs.ACLToken) error { + if err := s.tx.Insert("acl-tokens", token); err != nil { + return fmt.Errorf("failed restoring acl token: %s", err) } - if err := indexUpdateMaxTxn(s.tx, acl.ModifyIndex, "acls"); err != nil { + if err := indexUpdateMaxTxn(s.tx, token.ModifyIndex, "acl-tokens"); err != nil { return fmt.Errorf("failed updating index: %s", err) } return nil } -// ACLBootstrap is used to pull the ACL bootstrap info from the snapshot. This -// might return nil, in which case nothing should be saved to the snapshot. -func (s *Snapshot) ACLBootstrap() (*structs.ACLBootstrap, error) { - existing, err := s.tx.First("acls-bootstrap", "id") +// ACLPolicies is used when saving a snapshot +func (s *Snapshot) ACLPolicies() (memdb.ResultIterator, error) { + iter, err := s.tx.Get("acl-policies", "id") if err != nil { - return nil, fmt.Errorf("failed acl bootstrap lookup: %s", err) + return nil, err } - if existing != nil { - return existing.(*structs.ACLBootstrap), nil - } - return nil, nil + return iter, nil } -// ACLBootstrap is used to restore the ACL bootstrap info from the snapshot. -func (s *Restore) ACLBootstrap(bs *structs.ACLBootstrap) error { - if err := s.tx.Insert("acls-bootstrap", bs); err != nil { - return fmt.Errorf("failed updating acl bootstrap: %v", err) +func (s *Restore) ACLPolicy(policy *structs.ACLPolicy) error { + if err := s.tx.Insert("acl-policies", policy); err != nil { + return fmt.Errorf("failed restoring acl policy: %s", err) + } + + if err := indexUpdateMaxTxn(s.tx, policy.ModifyIndex, "acl-policies"); err != nil { + return fmt.Errorf("failed updating index: %s", err) } return nil } -// ACLBootstrapInit is used to perform a scan for existing tokens which will -// decide whether bootstrapping is allowed for a cluster. This is initiated by -// the leader when it steps up, if necessary. This is because the state store -// snapshots would become incompatible with older agents if we added this on -// the fly, so we rely on the leader to determine a safe time to add this so -// we can start tracking whether bootstrap is enabled. This will return an -// error if bootstrap is already initialized. -// -// This returns a boolean indicating if ACL boostrapping is enabled. -func (s *Store) ACLBootstrapInit(idx uint64) (bool, error) { - tx := s.db.Txn(true) - defer tx.Abort() - - // Don't allow this to happen more than once. - existing, err := tx.First("acls-bootstrap", "id") - if err != nil { - return false, fmt.Errorf("failed acl bootstrap lookup: %s", err) - } - if existing != nil { - return false, fmt.Errorf("acl bootstrap init already done") - } - - // See if there are any management tokens, which means we shouldn't - // allow bootstrapping. - foundMgmt, err := s.aclHasManagementTokensTxn(tx) - if err != nil { - return false, fmt.Errorf("failed checking for management tokens: %v", err) - } - allowBootstrap := !foundMgmt - - // Create a new bootstrap record. - bs := structs.ACLBootstrap{ - AllowBootstrap: allowBootstrap, - RaftIndex: structs.RaftIndex{ - CreateIndex: idx, - ModifyIndex: idx, - }, - } - if err := tx.Insert("acls-bootstrap", &bs); err != nil { - return false, fmt.Errorf("failed creating acl bootstrap: %v", err) - } - - tx.Commit() - return allowBootstrap, nil -} - // ACLBootstrap is used to perform a one-time ACL bootstrap operation on a // cluster to get the first management token. -func (s *Store) ACLBootstrap(idx uint64, acl *structs.ACL) error { +func (s *Store) ACLBootstrap(idx, resetIndex uint64, token *structs.ACLToken, legacy bool) error { tx := s.db.Txn(true) defer tx.Abort() // We must have initialized before this will ever be possible. - existing, err := tx.First("acls-bootstrap", "id") + existing, err := tx.First("index", "id", "acl-token-bootstrap") if err != nil { - return fmt.Errorf("failed acl bootstrap lookup: %s", err) + fmt.Errorf("bootstrap check failed: %v", err) } - if existing == nil { - return structs.ACLBootstrapNotInitializedErr + if existing != nil { + if resetIndex == 0 { + return structs.ACLBootstrapNotAllowedErr + } else if resetIndex != existing.(*IndexEntry).Value { + return structs.ACLBootstrapInvalidResetIndexErr + } } - // See if this cluster has already been bootstrapped. - bs := *existing.(*structs.ACLBootstrap) - if !bs.AllowBootstrap { - return structs.ACLBootstrapNotAllowedErr - } - - // This should not be required since we keep the boolean above in sync - // with any new management tokens that are added, but since this is such - // a critical thing for correct operation we perform a sanity check. - foundMgmt, err := s.aclHasManagementTokensTxn(tx) - if err != nil { - return fmt.Errorf("failed checking for management tokens: %v", err) - } - if foundMgmt { - return fmt.Errorf("internal error: acl bootstrap enabled but existing management tokens were found") - } - - // Bootstrap and then make sure we disable bootstrapping forever. The - // set will also disable this as a side effect but we want to be super - // explicit here. - if err := s.aclSetTxn(tx, idx, acl); err != nil { + if err := s.aclTokenSetTxn(tx, idx, token, true, false, legacy); err != nil { return fmt.Errorf("failed inserting bootstrap token: %v", err) } - if disabled, err := s.aclDisableBootstrapTxn(tx, idx); err != nil || !disabled { - return fmt.Errorf("failed to disable acl bootstrap (disabled=%v): %v", disabled, err) + if err := indexUpdateMaxTxn(tx, idx, "acl-tokens"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + if err := tx.Insert("index", &IndexEntry{"acl-token-bootstrap", idx}); err != nil { + return fmt.Errorf("failed to mark ACL bootstrapping as complete: %v", err) } - tx.Commit() return nil } -// aclDisableBootstrapTxn will disable ACL bootstrapping if the bootstrap init -// has been completed and bootstrap is currently enabled. This will return true -// if bootstrap is disabled. -func (s *Store) aclDisableBootstrapTxn(tx *memdb.Txn, idx uint64) (bool, error) { - // If the init hasn't been done then we aren't tracking this yet, so we - // can bail out. When the init is done for the first time it will scan - // for management tokens to set the initial state correctly. - existing, err := tx.First("acls-bootstrap", "id") +// CanBootstrapACLToken checks if bootstrapping is possible and returns the reset index +func (s *Store) CanBootstrapACLToken() (bool, uint64, error) { + txn := s.db.Txn(false) + + // Lookup the bootstrap sentinel + out, err := txn.First("index", "id", "acl-token-bootstrap") if err != nil { - return false, fmt.Errorf("failed acl bootstrap lookup: %s", err) - } - if existing == nil { - // Not yet init-ed, nothing to do. - return false, nil + return false, 0, err } - // See if bootstrap is already disabled, which is the common case, so we - // can avoid a spurious write. We do a copy here in case we need to write - // down below, though. - bs := *existing.(*structs.ACLBootstrap) - if !bs.AllowBootstrap { - return true, nil + // No entry, we haven't bootstrapped yet + if out == nil { + return true, 0, nil } - // Need to disable bootstrap! - bs.AllowBootstrap = false - bs.ModifyIndex = idx - if err := tx.Insert("acls-bootstrap", &bs); err != nil { - return false, fmt.Errorf("failed updating acl bootstrap: %v", err) - } - return true, nil + // Return the reset index if we've already bootstrapped + return false, out.(*IndexEntry).Value, nil } -// aclHasManagementTokensTxn returns true if any management tokens are present -// in the state store. -func (s *Store) aclHasManagementTokensTxn(tx *memdb.Txn) (bool, error) { - iter, err := tx.Get("acls", "id") - if err != nil { - return false, fmt.Errorf("failed acl lookup: %s", err) - } - for acl := iter.Next(); acl != nil; acl = iter.Next() { - if acl.(*structs.ACL).Type == structs.ACLTypeManagement { - return true, nil +func (s *Store) resolveTokenPolicyLinks(tx *memdb.Txn, token *structs.ACLToken, allowMissing bool) error { + for linkIndex, link := range token.Policies { + if link.ID != "" { + policy, err := s.getPolicyWithTxn(tx, nil, link.ID, "id") + + if err != nil { + return err + } + + if policy != nil { + // the name doesn't matter here + token.Policies[linkIndex].Name = policy.Name + } else if !allowMissing { + return fmt.Errorf("No such policy with ID: %s", link.ID) + } + } else { + return fmt.Errorf("Encountered a Token with policies linked by Name in the state store") } } - return false, nil + return nil } -// ACLGetBootstrap returns the ACL bootstrap status for the cluster, which might -// be nil if it hasn't yet been initialized. -func (s *Store) ACLGetBootstrap() (*structs.ACLBootstrap, error) { - tx := s.db.Txn(false) - defer tx.Abort() - - existing, err := tx.First("acls-bootstrap", "id") - if err != nil { - return nil, fmt.Errorf("failed acl bootstrap lookup: %s", err) - } - if existing != nil { - return existing.(*structs.ACLBootstrap), nil - } - return nil, nil -} - -// ACLSet is used to insert an ACL rule into the state store. -func (s *Store) ACLSet(idx uint64, acl *structs.ACL) error { +// ACLTokenSet is used to insert an ACL rule into the state store. +func (s *Store) ACLTokenSet(idx uint64, token *structs.ACLToken, legacy bool) error { tx := s.db.Txn(true) defer tx.Abort() // Call set on the ACL - if err := s.aclSetTxn(tx, idx, acl); err != nil { + if err := s.aclTokenSetTxn(tx, idx, token, true, false, legacy); err != nil { return err } + if err := indexUpdateMaxTxn(tx, idx, "acl-tokens"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + tx.Commit() return nil } -// aclSetTxn is the inner method used to insert an ACL rule with the +func (s *Store) ACLTokensUpsert(idx uint64, tokens structs.ACLTokens, allowCreate bool) error { + tx := s.db.Txn(true) + defer tx.Abort() + + for _, token := range tokens { + // this is only used when doing batch insertions for upgrades and replication. Therefore + // we take whatever those said. + if err := s.aclTokenSetTxn(tx, idx, token, allowCreate, true, false); err != nil { + return err + } + } + + if err := indexUpdateMaxTxn(tx, idx, "acl-tokens"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + tx.Commit() + return nil +} + +// aclTokenSetTxn is the inner method used to insert an ACL token with the // proper indexes into the state store. -func (s *Store) aclSetTxn(tx *memdb.Txn, idx uint64, acl *structs.ACL) error { +func (s *Store) aclTokenSetTxn(tx *memdb.Txn, idx uint64, token *structs.ACLToken, allowCreate, allowMissingPolicyIDs, legacy bool) error { // Check that the ID is set - if acl.ID == "" { - return ErrMissingACLID + if token.SecretID == "" { + return ErrMissingACLTokenSecret + } + + if !legacy && token.AccessorID == "" { + return ErrMissingACLTokenAccessor } // Check for an existing ACL - existing, err := tx.First("acls", "id", acl.ID) + // DEPRECATED (ACL-Legacy-Compat) - transition to using accessor index instead of secret once v1 compat is removed + existing, err := tx.First("acl-tokens", "id", token.SecretID) if err != nil { - return fmt.Errorf("failed acl lookup: %s", err) + return fmt.Errorf("failed token lookup: %s", err) + } + + if existing == nil && !allowCreate { + return nil + } + + if legacy && existing != nil { + original := existing.(*structs.ACLToken) + if len(original.Policies) > 0 { + return fmt.Errorf("failed inserting acl token: cannot use legacy endpoint to modify a non-legacy token") + } + + token.AccessorID = original.AccessorID + } + + if err := s.resolveTokenPolicyLinks(tx, token, allowMissingPolicyIDs); err != nil { + return err } // Set the indexes if existing != nil { - acl.CreateIndex = existing.(*structs.ACL).CreateIndex - acl.ModifyIndex = idx + token.CreateIndex = existing.(*structs.ACLToken).CreateIndex + token.ModifyIndex = idx } else { - acl.CreateIndex = idx - acl.ModifyIndex = idx + token.CreateIndex = idx + token.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) - } - - // If this is a management token, make sure bootstrapping gets disabled. - if acl.Type == structs.ACLTypeManagement { - if _, err := s.aclDisableBootstrapTxn(tx, idx); err != nil { - return fmt.Errorf("failed disabling acl bootstrapping: %v", err) - } + if err := tx.Insert("acl-tokens", token); err != nil { + return fmt.Errorf("failed inserting acl token: %v", err) } return nil } -// ACLGet is used to look up an existing ACL by ID. -func (s *Store) ACLGet(ws memdb.WatchSet, aclID string) (uint64, *structs.ACL, error) { +// ACLTokenGetBySecret is used to look up an existing ACL token by its SecretID. +func (s *Store) ACLTokenGetBySecret(ws memdb.WatchSet, secret string) (uint64, *structs.ACLToken, error) { + return s.aclTokenGet(ws, secret, "id") +} + +// ACLTokenGetByAccessor is used to look up an existing ACL token by its AccessorID. +func (s *Store) ACLTokenGetByAccessor(ws memdb.WatchSet, accessor string) (uint64, *structs.ACLToken, error) { + return s.aclTokenGet(ws, accessor, "accessor") +} + +// aclTokenGet looks up a token using one of the indexes provided +func (s *Store) aclTokenGet(ws memdb.WatchSet, value, index string) (uint64, *structs.ACLToken, 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) + token, err := s.aclTokenGetTxn(tx, ws, value, index) if err != nil { - return 0, nil, fmt.Errorf("failed acl lookup: %s", err) + return 0, nil, fmt.Errorf("failed acl token lookup: %v", err) + } + + idx := maxIndexTxn(tx, "acl-tokens") + return idx, token, nil +} + +func (s *Store) ACLTokenBatchRead(ws memdb.WatchSet, accessors []string) (uint64, structs.ACLTokens, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + tokens := make(structs.ACLTokens, 0) + for _, accessor := range accessors { + token, err := s.aclTokenGetTxn(tx, ws, accessor, "accessor") + if err != nil { + return 0, nil, fmt.Errorf("failed acl token lookup: %v", err) + } + + // token == nil is valid and will indic + if token != nil { + tokens = append(tokens, token) + } + } + + idx := maxIndexTxn(tx, "acl-tokens") + + return idx, tokens, nil +} + +func (s *Store) aclTokenGetTxn(tx *memdb.Txn, ws memdb.WatchSet, value, index string) (*structs.ACLToken, error) { + watchCh, rawToken, err := tx.FirstWatch("acl-tokens", index, value) + if err != nil { + return nil, fmt.Errorf("failed acl token lookup: %v", err) } ws.Add(watchCh) - if acl != nil { - return idx, acl.(*structs.ACL), nil + if rawToken != nil { + token := rawToken.(*structs.ACLToken) + if err := s.resolveTokenPolicyLinks(tx, token, true); err != nil { + return nil, err + } + return token, nil } - return idx, nil, nil + + return nil, nil } -// ACLList is used to list out all of the ACLs in the state store. -func (s *Store) ACLList(ws memdb.WatchSet) (uint64, structs.ACLs, error) { +// ACLTokenList is used to list out all of the ACLs in the state store. +func (s *Store) ACLTokenList(ws memdb.WatchSet, local, global bool, policy string) (uint64, structs.ACLTokens, error) { tx := s.db.Txn(false) defer tx.Abort() - // Get the table index. - idx := maxIndexTxn(tx, "acls") + var iter memdb.ResultIterator + var err error - // Return the ACLs. - acls, err := s.aclListTxn(tx, ws) - if err != nil { - return 0, nil, fmt.Errorf("failed acl lookup: %s", err) + // Note global == local works when both are true or false. It is not valid to set both + // to false but for defaulted structs (zero values for both) we want it to list out + // all tokens so our checks just ensure that global == local + + if policy != "" { + fmt.Println("Listing by policy") + iter, err = tx.Get("acl-tokens", "policies", policy) + if err == nil && global != local { + iter = memdb.NewFilterIterator(iter, func(raw interface{}) bool { + token, ok := raw.(*structs.ACLToken) + if !ok { + return false + } + + if global && !token.Local { + return true + } else if local && token.Local { + return true + } + + fmt.Printf("Filtering") + return false + }) + } + } else if global == local { + iter, err = tx.Get("acl-tokens", "id") + } else if global { + iter, err = tx.Get("acl-tokens", "local", false) + } else { + iter, err = tx.Get("acl-tokens", "local", true) } - 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 *Store) 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) + return 0, nil, fmt.Errorf("failed acl token lookup: %v", 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) + var result structs.ACLTokens + for raw := iter.Next(); raw != nil; raw = iter.Next() { + token := raw.(*structs.ACLToken) + if err := s.resolveTokenPolicyLinks(tx, token, true); err != nil { + return 0, nil, err + } + result = append(result, token) } - return result, nil + + // Get the table index. + idx := maxIndexTxn(tx, "acl-tokens") + + return idx, result, nil } -// ACLDelete is used to remove an existing ACL from the state store. If +func (s *Store) ACLTokenListUpgradeable(max int) (structs.ACLTokens, <-chan struct{}, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + iter, err := tx.Get("acl-tokens", "needs-upgrade", true) + if err != nil { + return nil, nil, fmt.Errorf("failed acl token listing: %v", err) + } + + var tokens structs.ACLTokens + i := 0 + for token := iter.Next(); token != nil; token = iter.Next() { + tokens = append(tokens, token.(*structs.ACLToken)) + i += 1 + if i >= max { + return tokens, nil, nil + } + } + + return tokens, iter.WatchCh(), nil +} + +// ACLTokenDeleteSecret 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 *Store) ACLDelete(idx uint64, aclID string) error { +func (s *Store) ACLTokenDeleteSecret(idx uint64, secret string) error { + return s.aclTokenDelete(idx, secret, "id") +} + +// ACLTokenDeleteAccessor 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 *Store) ACLTokenDeleteAccessor(idx uint64, accessor string) error { + return s.aclTokenDelete(idx, accessor, "accessor") +} + +func (s *Store) ACLTokensDelete(idx uint64, tokenIDs []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 + for _, tokenID := range tokenIDs { + if err := s.aclTokenDeleteTxn(tx, idx, tokenID, "accessor"); 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 *Store) aclDeleteTxn(tx *memdb.Txn, idx uint64, aclID string) error { - // Look up the existing ACL - acl, err := tx.First("acls", "id", aclID) +func (s *Store) aclTokenDelete(idx uint64, value, index string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + s.aclTokenDeleteTxn(tx, idx, value, index) + + tx.Commit() + return nil +} + +func (s *Store) aclTokenDeleteTxn(tx *memdb.Txn, idx uint64, value, index string) error { + // Look up the existing token + token, err := tx.First("acl-tokens", index, value) if err != nil { - return fmt.Errorf("failed acl lookup: %s", err) + return fmt.Errorf("failed acl token lookup: %v", err) } - if acl == nil { + + if token == 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.Delete("acl-tokens", token); err != nil { + return fmt.Errorf("failed deleting acl token: %v", err) } - if err := tx.Insert("index", &IndexEntry{"acls", idx}); err != nil { + if err := indexUpdateMaxTxn(tx, idx, "acl-tokens"); err != nil { + return fmt.Errorf("failed updating index: %v", err) + } + return nil +} + +func (s *Store) ACLPoliciesUpsert(idx uint64, policies structs.ACLPolicies) error { + tx := s.db.Txn(true) + defer tx.Abort() + + for _, policy := range policies { + if err := s.aclPolicySetTxn(tx, idx, policy); err != nil { + return err + } + } + + if err := indexUpdateMaxTxn(tx, idx, "acl-policies"); err != nil { return fmt.Errorf("failed updating index: %s", err) } + tx.Commit() + return nil +} + +func (s *Store) ACLPolicySet(idx uint64, policy *structs.ACLPolicy) error { + tx := s.db.Txn(true) + defer tx.Abort() + + if err := s.aclPolicySetTxn(tx, idx, policy); err != nil { + return err + } + if err := indexUpdateMaxTxn(tx, idx, "acl-policies"); err != nil { + return fmt.Errorf("failed updating index: %s", err) + } + + tx.Commit() + return nil +} + +func (s *Store) aclPolicySetTxn(tx *memdb.Txn, idx uint64, policy *structs.ACLPolicy) error { + // Check that the ID is set + if policy.ID == "" { + return ErrMissingACLPolicyID + } + + if policy.Name == "" { + return ErrMissingACLPolicyName + } + + var policyMatch *structs.ACLPolicy + existing, err := tx.First("acl-policies", "id", policy.ID) + if err != nil { + return fmt.Errorf("failed acl policy lookup: %v", err) + } + + if existing != nil { + policyMatch = existing.(*structs.ACLPolicy) + + if policy.ID == structs.ACLPolicyGlobalManagementID { + // Only the name and description are modifiable + if policy.Rules != policyMatch.Rules { + return fmt.Errorf("Changing the Rules for the builtin global-management policy is not permitted") + } + + if policy.Datacenters != nil && len(policy.Datacenters) != 0 { + return fmt.Errorf("Changing the Datacenters of the builtin global-management policy is not permitted") + } + } + } + + // ensure the name is unique (cannot conflict with another policy with a different ID) + nameMatch, err := tx.First("acl-policies", "name", policy.Name) + if err != nil { + return fmt.Errorf("failed acl policy lookup: %v", err) + } + if nameMatch != nil && policy.ID != nameMatch.(*structs.ACLPolicy).ID { + return fmt.Errorf("A policy with name %q already exists", policy.Name) + } + + // Set the indexes + if existing != nil { + policy.CreateIndex = existing.(*structs.ACLPolicy).CreateIndex + policy.ModifyIndex = idx + } else { + policy.CreateIndex = idx + policy.ModifyIndex = idx + } + + // Insert the ACL + if err := tx.Insert("acl-policies", policy); err != nil { + return fmt.Errorf("failed inserting acl policy: %v", err) + } + return nil +} + +func (s *Store) ACLPolicyGetByID(ws memdb.WatchSet, id string) (uint64, *structs.ACLPolicy, error) { + return s.aclPolicyGet(ws, id, "id") +} + +func (s *Store) ACLPolicyGetByName(ws memdb.WatchSet, name string) (uint64, *structs.ACLPolicy, error) { + return s.aclPolicyGet(ws, name, "name") +} + +func (s *Store) ACLPolicyBatchRead(ws memdb.WatchSet, ids []string) (uint64, structs.ACLPolicies, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + policies := make(structs.ACLPolicies, 0) + for _, pid := range ids { + policy, err := s.getPolicyWithTxn(tx, ws, pid, "id") + if err != nil { + return 0, nil, err + } + + if policy != nil { + policies = append(policies, policy) + } + } + + idx := maxIndexTxn(tx, "acl-policies") + + return idx, policies, nil +} + +func (s *Store) getPolicyWithTxn(tx *memdb.Txn, ws memdb.WatchSet, value, index string) (*structs.ACLPolicy, error) { + watchCh, policy, err := tx.FirstWatch("acl-policies", index, value) + if err != nil { + return nil, fmt.Errorf("failed acl policy lookup: %v", err) + } + ws.Add(watchCh) + + if err != nil || policy == nil { + return nil, err + } + + return policy.(*structs.ACLPolicy), nil +} + +func (s *Store) aclPolicyGet(ws memdb.WatchSet, value, index string) (uint64, *structs.ACLPolicy, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + policy, err := s.getPolicyWithTxn(tx, ws, value, index) + if err != nil { + return 0, nil, err + } + + idx := maxIndexTxn(tx, "acl-policies") + + return idx, policy, nil +} + +func (s *Store) ACLPolicyList(ws memdb.WatchSet, datacenter string) (uint64, structs.ACLPolicies, error) { + tx := s.db.Txn(false) + defer tx.Abort() + + var iter memdb.ResultIterator + var err error + + if datacenter != "" { + iter, err = tx.Get("acl-policies", "datacenters", datacenter) + } else { + iter, err = tx.Get("acl-policies", "id") + } + + if err != nil { + return 0, nil, fmt.Errorf("failed acl policy lookup: %v", err) + } + ws.Add(iter.WatchCh()) + + var result structs.ACLPolicies + for policy := iter.Next(); policy != nil; policy = iter.Next() { + result = append(result, policy.(*structs.ACLPolicy)) + } + + // Get the table index. + idx := maxIndexTxn(tx, "acl-policies") + + return idx, result, nil +} + +func (s *Store) ACLPolicyDeleteByID(idx uint64, id string) error { + return s.aclPolicyDelete(idx, id, "id") +} + +func (s *Store) ACLPolicyDeleteByName(idx uint64, name string) error { + return s.aclPolicyDelete(idx, name, "name") +} + +func (s *Store) ACLPoliciesDelete(idx uint64, policyIDs []string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + for _, policyID := range policyIDs { + s.aclPolicyDeleteTxn(tx, idx, policyID, "id") + } + + if err := indexUpdateMaxTxn(tx, idx, "acl-policies"); err != nil { + return fmt.Errorf("failed updating index: %v", err) + } + tx.Commit() + return nil +} + +func (s *Store) aclPolicyDelete(idx uint64, value, index string) error { + tx := s.db.Txn(true) + defer tx.Abort() + + if err := s.aclPolicyDeleteTxn(tx, idx, value, index); err != nil { + return err + } + if err := indexUpdateMaxTxn(tx, idx, "acl-policies"); err != nil { + return fmt.Errorf("failed updating index: %v", err) + } + + tx.Commit() + return nil +} + +func (s *Store) aclPolicyDeleteTxn(tx *memdb.Txn, idx uint64, value, index string) error { + // Look up the existing token + rawPolicy, err := tx.First("acl-policies", index, value) + if err != nil { + return fmt.Errorf("failed acl policy lookup: %v", err) + } + + if rawPolicy == nil { + return nil + } + + policy := rawPolicy.(*structs.ACLPolicy) + + if policy.ID == structs.ACLPolicyGlobalManagementID { + return fmt.Errorf("Deletion of the builtin global-management policy is not permitted") + } + + if err := tx.Delete("acl-policies", policy); err != nil { + return fmt.Errorf("failed deleting acl policy: %v", err) + } return nil } diff --git a/agent/consul/state/acl_test.go b/agent/consul/state/acl_test.go index 9a78fe47a..7add45266 100644 --- a/agent/consul/state/acl_test.go +++ b/agent/consul/state/acl_test.go @@ -1,299 +1,110 @@ package state import ( - "reflect" + // "reflect" "testing" + "time" + "github.com/hashicorp/consul/acl" "github.com/hashicorp/consul/agent/structs" - "github.com/hashicorp/go-memdb" - "github.com/pascaldekloe/goe/verify" + // "github.com/hashicorp/go-memdb" + // "github.com/pascaldekloe/goe/verify" + + "github.com/stretchr/testify/require" ) -func TestStateStore_ACLBootstrap(t *testing.T) { - acl1 := &structs.ACL{ - ID: "03f43a07-7e78-1f72-6c72-5a4e3b1ac3df", - Type: structs.ACLTypeManagement, +func setupGlobalManagement(t *testing.T, s *Store) { + policy := structs.ACLPolicy{ + ID: structs.ACLPolicyGlobalManagementID, + Name: "global-management", + Description: "Builtin Policy that grants unlimited access", + Rules: structs.ACLPolicyGlobalManagement, + Syntax: acl.SyntaxCurrent, } - - acl2 := &structs.ACL{ - ID: "0546a993-aa7a-741e-fb7f-09159ae56ec1", - Type: structs.ACLTypeManagement, - } - - setup := func() *Store { - s := testStateStore(t) - - // The clean state store should initially have no bootstrap record. - bs, err := s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - if bs != nil { - t.Fatalf("bad: %#v", bs) - } - - // Make sure that a bootstrap attempt fails in this state. - if err := s.ACLBootstrap(1, acl1); err != structs.ACLBootstrapNotInitializedErr { - t.Fatalf("err: %v", err) - } - _, gotA, err := s.ACLList(nil) - if err != nil { - t.Fatalf("err: %v", err) - } - verify.Values(t, "", gotA, structs.ACLs{}) - - // Initialize bootstrapping. - enabled, err := s.ACLBootstrapInit(2) - if err != nil { - t.Fatalf("err: %v", err) - } - if !enabled { - t.Fatalf("bad") - } - - // Read it back. - gotB, err := s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: true, - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, - }, - } - verify.Values(t, "", gotB, wantB) - - return s - } - - // This is the bootstrap happy path. - t.Run("bootstrap", func(t *testing.T) { - s := setup() - - // Perform a regular bootstrap. - if err := s.ACLBootstrap(3, acl1); err != nil { - t.Fatalf("err: %v", err) - } - - // Read it back. - gotB, err := s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: false, - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 3, - }, - } - verify.Values(t, "", gotB, wantB) - - // Make sure another attempt fails. - if err := s.ACLBootstrap(4, acl2); err != structs.ACLBootstrapNotAllowedErr { - t.Fatalf("err: %v", err) - } - - // Check that the bootstrap state remains the same. - gotB, err = s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - verify.Values(t, "", gotB, wantB) - - // Make sure the ACLs are in an expected state. - _, gotA, err := s.ACLList(nil) - if err != nil { - t.Fatalf("err: %v", err) - } - wantA := structs.ACLs{ - &structs.ACL{ - ID: acl1.ID, - Type: acl1.Type, - RaftIndex: structs.RaftIndex{ - CreateIndex: 3, - ModifyIndex: 3, - }, - }, - } - verify.Values(t, "", gotA, wantA) - }) - - // This case initialized bootstrap but it gets canceled because a - // management token gets created manually. - t.Run("bootstrap canceled", func(t *testing.T) { - s := setup() - - // Make a management token manually. - if err := s.ACLSet(3, acl1); err != nil { - t.Fatalf("err: %v", err) - } - - // Bootstrapping should have gotten disabled. - gotB, err := s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: false, - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 3, - }, - } - verify.Values(t, "", gotB, wantB) - - // Make sure another attempt fails. - if err := s.ACLBootstrap(4, acl2); err != structs.ACLBootstrapNotAllowedErr { - t.Fatalf("err: %v", err) - } - - // Check that the bootstrap state remains the same. - gotB, err = s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - verify.Values(t, "", gotB, wantB) - - // Make sure the ACLs are in an expected state. - _, gotA, err := s.ACLList(nil) - if err != nil { - t.Fatalf("err: %v", err) - } - wantA := structs.ACLs{ - &structs.ACL{ - ID: acl1.ID, - Type: acl1.Type, - RaftIndex: structs.RaftIndex{ - CreateIndex: 3, - ModifyIndex: 3, - }, - }, - } - verify.Values(t, "", gotA, wantA) - }) + policy.SetHash(true) + require.NoError(t, s.ACLPolicySet(1, &policy)) } -func TestStateStore_ACLBootstrap_InitialTokens(t *testing.T) { - acl1 := &structs.ACL{ - ID: "03f43a07-7e78-1f72-6c72-5a4e3b1ac3df", - Type: structs.ACLTypeManagement, +func TestStateStore_ACLBootstrap(t *testing.T) { + token1 := &structs.ACLToken{ + AccessorID: "30fca056-9fbb-4455-b94a-bf0e2bc575d6", + SecretID: "cbe1c6fd-d865-4034-9d6d-64fef7fb46a9", + Description: "Bootstrap Token (Global Management)", + Policies: []structs.ACLTokenPolicyLink{ + { + ID: structs.ACLPolicyGlobalManagementID, + }, + }, + CreateTime: time.Now(), + Local: false, + // DEPRECATED (ACL-Legacy-Compat) - This is used so that the bootstrap token is still visible via the v1 acl APIs + Type: structs.ACLTokenTypeManagement, } - acl2 := &structs.ACL{ - ID: "0546a993-aa7a-741e-fb7f-09159ae56ec1", - Type: structs.ACLTypeManagement, + token2 := &structs.ACLToken{ + AccessorID: "fd5c17fa-1503-4422-a424-dd44cdf35919", + SecretID: "7fd776b1-ded1-4d15-931b-db4770fc2317", + Description: "Bootstrap Token (Global Management)", + Policies: []structs.ACLTokenPolicyLink{ + { + ID: structs.ACLPolicyGlobalManagementID, + }, + }, + CreateTime: time.Now(), + Local: false, + // DEPRECATED (ACL-Legacy-Compat) - This is used so that the bootstrap token is still visible via the v1 acl APIs + Type: structs.ACLTokenTypeManagement, } s := testStateStore(t) + setupGlobalManagement(t, s) - // Make a management token manually. This also makes sure that it's ok - // to set a token if bootstrap has not been initialized. - if err := s.ACLSet(1, acl1); err != nil { - t.Fatalf("err: %v", err) - } + canBootstrap, index, err := s.CanBootstrapACLToken() + require.NoError(t, err) + require.True(t, canBootstrap) + require.Equal(t, uint64(0), index) - // Initialize bootstrapping, which should not be enabled since an - // existing token is present. - enabled, err := s.ACLBootstrapInit(2) - if err != nil { - t.Fatalf("err: %v", err) - } - if enabled { - t.Fatalf("bad") - } + // Perform a regular bootstrap. + require.NoError(t, s.ACLBootstrap(3, 0, token1, false)) - // Read it back. - gotB, err := s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: false, - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, - }, - } - verify.Values(t, "", gotB, wantB) + // Make sure we can't bootstrap again + canBootstrap, index, err = s.CanBootstrapACLToken() + require.NoError(t, err) + require.False(t, canBootstrap) + require.Equal(t, uint64(3), index) - // Make sure an attempt fails. - if err := s.ACLBootstrap(3, acl2); err != structs.ACLBootstrapNotAllowedErr { - t.Fatalf("err: %v", err) - } + // Make sure another attempt fails. + err = s.ACLBootstrap(4, 0, token2, false) + require.Error(t, err) + require.Equal(t, structs.ACLBootstrapNotAllowedErr, err) // Check that the bootstrap state remains the same. - gotB, err = s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - verify.Values(t, "", gotB, wantB) + canBootstrap, index, err = s.CanBootstrapACLToken() + require.NoError(t, err) + require.False(t, canBootstrap) + require.Equal(t, uint64(3), index) // Make sure the ACLs are in an expected state. - _, gotA, err := s.ACLList(nil) - if err != nil { - t.Fatalf("err: %v", err) - } - wantA := structs.ACLs{ - &structs.ACL{ - ID: acl1.ID, - Type: acl1.Type, - RaftIndex: structs.RaftIndex{ - CreateIndex: 1, - ModifyIndex: 1, - }, - }, - } - verify.Values(t, "", gotA, wantA) + _, tokens, err := s.ACLTokenList(nil, true, true, "") + require.NoError(t, err) + require.Len(t, tokens, 1) + require.Equal(t, token1, tokens[0]) + + // bootstrap reset + err = s.ACLBootstrap(32, index-1, token2, false) + require.Error(t, err) + require.Equal(t, structs.ACLBootstrapInvalidResetIndexErr, err) + + // bootstrap reset + err = s.ACLBootstrap(32, index, token2, false) + require.NoError(t, err) + + _, tokens, err = s.ACLTokenList(nil, true, true, "") + require.NoError(t, err) + require.Len(t, tokens, 2) } -func TestStateStore_ACLBootstrap_Snapshot_Restore(t *testing.T) { - s := testStateStore(t) - - enabled, err := s.ACLBootstrapInit(1) - if err != nil { - t.Fatalf("err: %v", err) - } - if !enabled { - t.Fatalf("bad") - } - - gotB, err := s.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - wantB := &structs.ACLBootstrap{ - AllowBootstrap: true, - RaftIndex: structs.RaftIndex{ - CreateIndex: 1, - ModifyIndex: 1, - }, - } - verify.Values(t, "", gotB, wantB) - - snap := s.Snapshot() - defer snap.Close() - bs, err := snap.ACLBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - verify.Values(t, "", bs, wantB) - - r := testStateStore(t) - restore := r.Restore() - if err := restore.ACLBootstrap(bs); err != nil { - t.Fatalf("err: %v", err) - } - restore.Commit() - - gotB, err = r.ACLGetBootstrap() - if err != nil { - t.Fatalf("err: %v", err) - } - verify.Values(t, "", gotB, wantB) -} +/* func TestStateStore_ACLSet_ACLGet(t *testing.T) { s := testStateStore(t) @@ -322,7 +133,7 @@ func TestStateStore_ACLSet_ACLGet(t *testing.T) { acl := &structs.ACL{ ID: "acl1", Name: "First ACL", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: "rules1", } if err := s.ACLSet(1, acl); err != nil { @@ -351,7 +162,7 @@ func TestStateStore_ACLSet_ACLGet(t *testing.T) { expect := &structs.ACL{ ID: "acl1", Name: "First ACL", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: "rules1", RaftIndex: structs.RaftIndex{ CreateIndex: 1, @@ -366,7 +177,7 @@ func TestStateStore_ACLSet_ACLGet(t *testing.T) { acl = &structs.ACL{ ID: "acl1", Name: "First ACL", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: "rules2", } if err := s.ACLSet(2, acl); err != nil { @@ -385,7 +196,7 @@ func TestStateStore_ACLSet_ACLGet(t *testing.T) { expect = &structs.ACL{ ID: "acl1", Name: "First ACL", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: "rules2", RaftIndex: structs.RaftIndex{ CreateIndex: 1, @@ -411,7 +222,7 @@ func TestStateStore_ACLList(t *testing.T) { acls := structs.ACLs{ &structs.ACL{ ID: "acl1", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: "rules1", RaftIndex: structs.RaftIndex{ CreateIndex: 1, @@ -420,7 +231,7 @@ func TestStateStore_ACLList(t *testing.T) { }, &structs.ACL{ ID: "acl2", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: "rules2", RaftIndex: structs.RaftIndex{ CreateIndex: 2, @@ -490,88 +301,144 @@ func TestStateStore_ACLDelete(t *testing.T) { t.Fatalf("expected nil, got: %#v", result) } } +*/ -func TestStateStore_ACL_Snapshot_Restore(t *testing.T) { +func TestStateStore_ACLTokens_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, + tokens := structs.ACLTokens{ + &structs.ACLToken{ + AccessorID: "68016c3d-835b-450c-a6f9-75db9ba740be", + SecretID: "838f72b5-5c15-4a9e-aa6d-31734c3a0286", + Description: "token1", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "ca1fc52c-3676-4050-82ed-ca223e38b2c9", + Name: "policy1", + }, + structs.ACLTokenPolicyLink{ + ID: "7b70fa0f-58cd-412d-93c3-a0f17bb19a3e", + Name: "policy2", + }, }, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, }, - &structs.ACL{ - ID: "acl2", - Type: structs.ACLTypeClient, - Rules: "rules2", - RaftIndex: structs.RaftIndex{ - CreateIndex: 2, - ModifyIndex: 2, + &structs.ACLToken{ + AccessorID: "b2125a1b-2a52-41d4-88f3-c58761998a46", + SecretID: "ba5d9239-a4ab-49b9-ae09-1f19eed92204", + Description: "token2", + Policies: []structs.ACLTokenPolicyLink{ + structs.ACLTokenPolicyLink{ + ID: "ca1fc52c-3676-4050-82ed-ca223e38b2c9", + Name: "policy1", + }, + structs.ACLTokenPolicyLink{ + ID: "7b70fa0f-58cd-412d-93c3-a0f17bb19a3e", + Name: "policy2", + }, }, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, }, } - for _, acl := range acls { - if err := s.ACLSet(acl.ModifyIndex, acl); err != nil { - t.Fatalf("err: %s", err) - } - } + + require.NoError(t, s.ACLTokensUpsert(2, tokens, true)) // 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) - } + require.NoError(t, s.ACLTokenDeleteAccessor(3, tokens[0].AccessorID)) // 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) + require.Equal(t, uint64(2), snap.LastIndex()) + + iter, err := snap.ACLTokens() + require.NoError(t, err) + + var dump structs.ACLTokens + for token := iter.Next(); token != nil; token = iter.Next() { + dump = append(dump, token.(*structs.ACLToken)) } + require.ElementsMatch(t, dump, tokens) // 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) - } + for _, token := range dump { + require.NoError(t, restore.ACLToken(token)) } 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) - } + idx, res, err := s.ACLTokenList(nil, true, true, "") + require.NoError(t, err) + require.Equal(t, uint64(2), idx) + require.ElementsMatch(t, tokens, res) + require.Equal(t, uint64(2), s.maxIndex("acl-tokens")) + }() +} + +func TestStateStore_ACLPolicies_Snapshot_Restore(t *testing.T) { + s := testStateStore(t) + + policies := structs.ACLPolicies{ + &structs.ACLPolicy{ + ID: "68016c3d-835b-450c-a6f9-75db9ba740be", + Name: "838f72b5-5c15-4a9e-aa6d-31734c3a0286", + Description: "policy1", + Rules: `acl = "read"`, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, + &structs.ACLPolicy{ + ID: "b2125a1b-2a52-41d4-88f3-c58761998a46", + Name: "ba5d9239-a4ab-49b9-ae09-1f19eed92204", + Description: "policy2", + Rules: `operator = "read"`, + Hash: []byte{1, 2, 3, 4}, + RaftIndex: structs.RaftIndex{CreateIndex: 1, ModifyIndex: 2}, + }, + } + + require.NoError(t, s.ACLPoliciesUpsert(2, policies)) + + // Snapshot the ACLs. + snap := s.Snapshot() + defer snap.Close() + + // Alter the real state store. + require.NoError(t, s.ACLPolicyDeleteByID(3, policies[0].ID)) + + // Verify the snapshot. + require.Equal(t, uint64(2), snap.LastIndex()) + + iter, err := snap.ACLPolicies() + require.NoError(t, err) + + var dump structs.ACLPolicies + for policy := iter.Next(); policy != nil; policy = iter.Next() { + dump = append(dump, policy.(*structs.ACLPolicy)) + } + require.ElementsMatch(t, dump, policies) + + // Restore the values into a new state store. + func() { + s := testStateStore(t) + restore := s.Restore() + for _, policy := range dump { + require.NoError(t, restore.ACLPolicy(policy)) + } + restore.Commit() + + // Read the restored ACLs back out and verify that they match. + idx, res, err := s.ACLPolicyList(nil, "") + require.NoError(t, err) + require.Equal(t, uint64(2), idx) + require.ElementsMatch(t, policies, res) + require.Equal(t, uint64(2), s.maxIndex("acl-policies")) }() } diff --git a/agent/consul/state/state_store.go b/agent/consul/state/state_store.go index c59e09e93..78a397e24 100644 --- a/agent/consul/state/state_store.go +++ b/agent/consul/state/state_store.go @@ -21,9 +21,21 @@ var ( // is attempted with an empty session ID. ErrMissingSessionID = errors.New("Missing session ID") - // ErrMissingACLID is returned when an ACL set is called on - // an ACL with an empty ID. - ErrMissingACLID = errors.New("Missing ACL ID") + // ErrMissingACLTokenSecret is returned when an token set is called on + // an token with an empty SecretID. + ErrMissingACLTokenSecret = errors.New("Missing ACL Token SecretID") + + // ErrMissingACLTokenAccessor is returned when an token set is called on + // an token with an empty AccessorID. + ErrMissingACLTokenAccessor = errors.New("Missing ACL Token AccessorID") + + // ErrMissingACLPolicyID is returned when an policy set is called on + // an policy with an empty ID. + ErrMissingACLPolicyID = errors.New("Missing ACL Policy ID") + + // ErrMissingACLPolicyName is returned when an policy set is called on + // an policy with an empty Name. + ErrMissingACLPolicyName = errors.New("Missing ACL Policy Name") // ErrMissingQueryID is returned when a Query set is called on // a Query with an empty ID. @@ -138,6 +150,22 @@ func (s *Snapshot) LastIndex() uint64 { return s.lastIndex } +func (s *Snapshot) Indexes() (memdb.ResultIterator, error) { + iter, err := s.tx.Get("index", "id") + if err != nil { + return nil, err + } + return iter, nil +} + +// IndexRestore is used to restore an index +func (s *Restore) IndexRestore(idx *IndexEntry) error { + if err := s.tx.Insert("index", idx); err != nil { + return fmt.Errorf("index insert failed: %v", err) + } + return nil +} + // Close performs cleanup of a state snapshot. func (s *Snapshot) Close() { s.tx.Abort() diff --git a/agent/consul/txn_endpoint.go b/agent/consul/txn_endpoint.go index 1822a7497..236d4da9b 100644 --- a/agent/consul/txn_endpoint.go +++ b/agent/consul/txn_endpoint.go @@ -16,13 +16,13 @@ type Txn struct { // preCheck is used to verify the incoming operations before any further // processing takes place. This checks things like ACLs. -func (t *Txn) preCheck(acl acl.ACL, ops structs.TxnOps) structs.TxnErrors { +func (t *Txn) preCheck(authorizer acl.Authorizer, ops structs.TxnOps) structs.TxnErrors { var errors structs.TxnErrors // Perform the pre-apply checks for any KV operations. for i, op := range ops { if op.KV != nil { - ok, err := kvsPreApply(t.srv, acl, op.KV.Verb, &op.KV.DirEnt) + ok, err := kvsPreApply(t.srv, authorizer, op.KV.Verb, &op.KV.DirEnt) if err != nil { errors = append(errors, &structs.TxnError{ OpIndex: i, @@ -49,11 +49,11 @@ func (t *Txn) Apply(args *structs.TxnRequest, reply *structs.TxnResponse) error defer metrics.MeasureSince([]string{"txn", "apply"}, time.Now()) // Run the pre-checks before we send the transaction into Raft. - acl, err := t.srv.resolveToken(args.Token) + authorizer, err := t.srv.ResolveToken(args.Token) if err != nil { return err } - reply.Errors = t.preCheck(acl, args.Ops) + reply.Errors = t.preCheck(authorizer, args.Ops) if len(reply.Errors) > 0 { return nil } @@ -71,8 +71,8 @@ func (t *Txn) Apply(args *structs.TxnRequest, reply *structs.TxnResponse) error // Convert the return type. This should be a cheap copy since we are // just taking the two slices. if txnResp, ok := resp.(structs.TxnResponse); ok { - if acl != nil { - txnResp.Results = FilterTxnResults(acl, txnResp.Results) + if authorizer != nil { + txnResp.Results = FilterTxnResults(authorizer, txnResp.Results) } *reply = txnResp } else { @@ -100,11 +100,11 @@ func (t *Txn) Read(args *structs.TxnReadRequest, reply *structs.TxnReadResponse) } // Run the pre-checks before we perform the read. - acl, err := t.srv.resolveToken(args.Token) + authorizer, err := t.srv.ResolveToken(args.Token) if err != nil { return err } - reply.Errors = t.preCheck(acl, args.Ops) + reply.Errors = t.preCheck(authorizer, args.Ops) if len(reply.Errors) > 0 { return nil } @@ -112,8 +112,8 @@ func (t *Txn) Read(args *structs.TxnReadRequest, reply *structs.TxnReadResponse) // Run the read transaction. state := t.srv.fsm.State() reply.Results, reply.Errors = state.TxnRO(args.Ops) - if acl != nil { - reply.Results = FilterTxnResults(acl, reply.Results) + if authorizer != nil { + reply.Results = FilterTxnResults(authorizer, reply.Results) } return nil } diff --git a/agent/consul/txn_endpoint_test.go b/agent/consul/txn_endpoint_test.go index 83fd07b62..c1447cf99 100644 --- a/agent/consul/txn_endpoint_test.go +++ b/agent/consul/txn_endpoint_test.go @@ -158,6 +158,7 @@ func TestTxn_Apply_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -184,7 +185,7 @@ func TestTxn_Apply_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testListRules, }, WriteRequest: structs.WriteRequest{Token: "root"}, @@ -480,6 +481,7 @@ func TestTxn_Read_ACLDeny(t *testing.T) { t.Parallel() dir1, s1 := testServerWithConfig(t, func(c *Config) { c.ACLDatacenter = "dc1" + c.ACLsEnabled = true c.ACLMasterToken = "root" c.ACLDefaultPolicy = "deny" }) @@ -508,7 +510,7 @@ func TestTxn_Read_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testListRules, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/consul/util.go b/agent/consul/util.go index 9634aa089..46a3f7bfa 100644 --- a/agent/consul/util.go +++ b/agent/consul/util.go @@ -8,6 +8,7 @@ import ( "strconv" "github.com/hashicorp/consul/agent/metadata" + "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/go-version" "github.com/hashicorp/serf/serf" ) @@ -282,3 +283,38 @@ func ServersMeetMinimumVersion(members []serf.Member, minVersion *version.Versio return true } + +func ServersGetACLMode(members []serf.Member, leader string, datacenter string) (mode structs.ACLMode, leaderMode structs.ACLMode) { + mode = structs.ACLModeEnabled + leaderMode = structs.ACLModeDisabled + for _, member := range members { + if valid, parts := metadata.IsConsulServer(member); valid { + + if datacenter != "" && parts.Datacenter != datacenter { + continue + } + if memberAddr := (&net.TCPAddr{IP: member.Addr, Port: parts.Port}).String(); memberAddr == leader { + leaderMode = parts.ACLs + } + + switch parts.ACLs { + case structs.ACLModeDisabled: + // anything disabled means we cant enable ACLs + mode = structs.ACLModeDisabled + case structs.ACLModeEnabled: + // do nothing + case structs.ACLModeLegacy: + // This covers legacy mode and older server versions that don't advertise ACL support + if mode != structs.ACLModeDisabled && mode != structs.ACLModeUnknown { + mode = structs.ACLModeLegacy + } + default: + if mode != structs.ACLModeDisabled { + mode = structs.ACLModeUnknown + } + } + } + } + + return +} diff --git a/agent/event_endpoint_test.go b/agent/event_endpoint_test.go index 068c7eb8b..6b1f1e8f2 100644 --- a/agent/event_endpoint_test.go +++ b/agent/event_endpoint_test.go @@ -70,7 +70,7 @@ func TestEventFire_token(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testEventPolicy, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/http.go b/agent/http.go index 5cb6d1bfa..73e9925a2 100644 --- a/agent/http.go +++ b/agent/http.go @@ -260,7 +260,7 @@ func (s *HTTPServer) nodeName() string { // And then the loop that looks for parameters called "token" does the last // step to get to the final redacted form. var ( - aclEndpointRE = regexp.MustCompile("^(/v1/acl/[^/]+/)([^?]+)([?]?.*)$") + aclEndpointRE = regexp.MustCompile("^(/v1/acl/(create|update|destroy|info|clone|list)/)([^?]+)([?]?.*)$") ) // wrap is used to wrap functions to make them more convenient @@ -286,7 +286,7 @@ func (s *HTTPServer) wrap(handler endpoint, methods []string) http.HandlerFunc { logURL = strings.Replace(logURL, token, "", -1) } } - logURL = aclEndpointRE.ReplaceAllString(logURL, "$1$3") + logURL = aclEndpointRE.ReplaceAllString(logURL, "$1$4") if s.blacklist.Block(req.URL.Path) { errMsg := "Endpoint is blocked by agent configuration" diff --git a/agent/http_oss.go b/agent/http_oss.go index 1afdc9a24..3d0a921b4 100644 --- a/agent/http_oss.go +++ b/agent/http_oss.go @@ -11,6 +11,15 @@ func init() { registerEndpoint("/v1/acl/clone/", []string{"PUT"}, (*HTTPServer).ACLClone) registerEndpoint("/v1/acl/list", []string{"GET"}, (*HTTPServer).ACLList) registerEndpoint("/v1/acl/replication", []string{"GET"}, (*HTTPServer).ACLReplicationStatus) + registerEndpoint("/v1/acl/policies", []string{"GET"}, (*HTTPServer).ACLPolicyList) + registerEndpoint("/v1/acl/policy", []string{"PUT"}, (*HTTPServer).ACLPolicyCreate) + registerEndpoint("/v1/acl/policy/", []string{"GET", "PUT", "DELETE"}, (*HTTPServer).ACLPolicyCRUD) + registerEndpoint("/v1/acl/rules/translate", []string{"POST"}, (*HTTPServer).ACLRulesTranslate) + registerEndpoint("/v1/acl/rules/translate/", []string{"GET"}, (*HTTPServer).ACLRulesTranslateLegacyToken) + registerEndpoint("/v1/acl/tokens", []string{"GET"}, (*HTTPServer).ACLTokenList) + registerEndpoint("/v1/acl/token", []string{"PUT"}, (*HTTPServer).ACLTokenCreate) + registerEndpoint("/v1/acl/token/self", []string{"GET"}, (*HTTPServer).ACLTokenSelf) + registerEndpoint("/v1/acl/token/", []string{"GET", "PUT", "DELETE"}, (*HTTPServer).ACLTokenCRUD) registerEndpoint("/v1/agent/token/", []string{"PUT"}, (*HTTPServer).AgentToken) registerEndpoint("/v1/agent/self", []string{"GET"}, (*HTTPServer).AgentSelf) registerEndpoint("/v1/agent/host", []string{"GET"}, (*HTTPServer).AgentHost) diff --git a/agent/local/state_test.go b/agent/local/state_test.go index 70c87811f..e3024c458 100644 --- a/agent/local/state_test.go +++ b/agent/local/state_test.go @@ -782,7 +782,7 @@ func TestAgentAntiEntropy_Services_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testRegisterRules, }, WriteRequest: structs.WriteRequest{ @@ -1129,7 +1129,7 @@ func TestAgentAntiEntropy_Checks_ACLDeny(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testRegisterRules, }, WriteRequest: structs.WriteRequest{ diff --git a/agent/metadata/server.go b/agent/metadata/server.go index d83b7c1a8..2532fa3bf 100644 --- a/agent/metadata/server.go +++ b/agent/metadata/server.go @@ -7,6 +7,7 @@ import ( "strconv" "strings" + "github.com/hashicorp/consul/agent/structs" "github.com/hashicorp/go-version" "github.com/hashicorp/serf/serf" ) @@ -39,6 +40,7 @@ type Server struct { Addr net.Addr Status serf.MemberStatus NonVoter bool + ACLs structs.ACLMode // If true, use TLS when connecting to this server UseTLS bool @@ -92,6 +94,13 @@ func IsConsulServer(m serf.Member) (bool, *Server) { return false, nil } + var acls structs.ACLMode + if aclMode, ok := m.Tags["acls"]; ok { + acls = structs.ACLMode(aclMode) + } else { + acls = structs.ACLModeUnknown + } + segmentAddrs := make(map[string]string) segmentPorts := make(map[string]int) for name, value := range m.Tags { @@ -163,6 +172,7 @@ func IsConsulServer(m serf.Member) (bool, *Server) { Status: m.Status, UseTLS: useTLS, NonVoter: nonVoter, + ACLs: acls, } return true, parts } diff --git a/agent/structs/acl.go b/agent/structs/acl.go index b886c2fec..764276389 100644 --- a/agent/structs/acl.go +++ b/agent/structs/acl.go @@ -1,155 +1,698 @@ package structs import ( + "encoding/binary" "errors" + "fmt" + "hash/fnv" + "sort" + "strings" "time" "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/sentinel" + "golang.org/x/crypto/blake2b" +) + +type ACLMode string + +const ( + // ACLs are disabled by configuration + ACLModeDisabled ACLMode = "0" + // ACLs are enabled + ACLModeEnabled ACLMode = "1" + // DEPRECATED (ACL-Legacy-Compat) - only needed while legacy ACLs are supported + // ACLs are enabled and using legacy ACLs + ACLModeLegacy ACLMode = "2" + // DEPRECATED (ACL-Legacy-Compat) - only needed while legacy ACLs are supported + // ACLs are assumed enabled but not being advertised + ACLModeUnknown ACLMode = "3" ) // ACLOp is used in RPCs to encode ACL operations. type ACLOp string +type ACLTokenIDType string + const ( - // ACLBootstrapInit is used to perform a scan for existing tokens which - // will decide whether bootstrapping is allowed for a cluster. This is - // initiated by the leader when it steps up, if necessary. - ACLBootstrapInit = "bootstrap-init" + ACLTokenSecret ACLTokenIDType = "secret" + ACLTokenAccessor ACLTokenIDType = "accessor" +) - // ACLBootstrapNow is used to perform a one-time ACL bootstrap operation on - // a cluster to get the first management token. - ACLBootstrapNow = "bootstrap-now" +type ACLPolicyIDType string +const ( + ACLPolicyName ACLPolicyIDType = "name" + ACLPolicyID ACLPolicyIDType = "id" +) + +const ( + // All policy ids with the first 120 bits set to all zeroes are + // reserved for builtin policies. Policy creation will ensure we + // dont accidentally create them when autogenerating uuids. + + // This policy gives unlimited access to everything. Users + // may rename if desired but cannot delete or modify the rules + ACLPolicyGlobalManagementID = "00000000-0000-0000-0000-000000000001" + ACLPolicyGlobalManagement = ` +acl = "write" +agent_prefix "" { + policy = "write" +} +event_prefix "" { + policy = "write" +} +key_prefix "" { + policy = "write" +} +keyring = "write" +node_prefix "" { + policy = "write" +} +operator = "write" +query_prefix "" { + policy = "write" +} +service_prefix "" { + policy = "write" + intentions = "write" +} +session_prefix "" { + policy = "write" +}` + + // This is the policy ID for anonymous access. This is configurable by the + ACLTokenAnonymousID = "00000000-0000-0000-0000-000000000002" +) + +func ACLIDReserved(id string) bool { + return strings.HasPrefix(id, "00000000-0000-0000-0000-0000000000") +} + +const ( // ACLSet creates or updates a token. ACLSet ACLOp = "set" - // ACLForceSet is deprecated, but left for backwards compatibility. - ACLForceSet = "force-set" - // ACLDelete deletes a token. - ACLDelete = "delete" + ACLDelete ACLOp = "delete" ) -// ACLBootstrapNotInitializedErr is returned when a bootstrap is attempted but -// we haven't yet initialized ACL bootstrap. It provides some guidance to -// operators on how to proceed. -var ACLBootstrapNotInitializedErr = errors.New("ACL bootstrap not initialized, need to force a leader election and ensure all Consul servers support this feature") - // ACLBootstrapNotAllowedErr is returned once we know that a bootstrap can no -// longer be done since the cluster was bootstrapped, or a management token -// was created manually. +// longer be done since the cluster was bootstrapped var ACLBootstrapNotAllowedErr = errors.New("ACL bootstrap no longer allowed") -const ( - // ACLTypeClient tokens have rules applied - ACLTypeClient = "client" +// ACLBootstrapInvalidResetIndexErr is returned when bootstrap is requested with a non-zero +// reset index but the index doesn't match the bootstrap index +var ACLBootstrapInvalidResetIndexErr = errors.New("Invalid ACL bootstrap reset index") - // ACLTypeManagement tokens have an always allow policy, so they can - // make other tokens and can access all resources. - ACLTypeManagement = "management" -) +type ACLIdentity interface { + // ID returns a string that can be used for logging and telemetry. This should not + // contain any secret data used for authentication + ID() string + SecretToken() string + PolicyIDs() []string + EmbeddedPolicy() *ACLPolicy +} -// ACL is used to represent a token and its rules -type ACL struct { - ID string - Name string - Type string - Rules string +type ACLTokenPolicyLink struct { + ID string + Name string `hash:"ignore"` +} +type ACLToken struct { + // This is the UUID used for tracking and management purposes + AccessorID string + + // This is the UUID used as the api token by clients + SecretID string + + // Human readable string to display for the token (Optional) + Description string + + // List of policy links - nil/empty for legacy tokens + // Note this is the list of IDs and not the names. Prior to token creation + // the list of policy names gets validated and the policy IDs get stored herein + Policies []ACLTokenPolicyLink + + // Type is the V1 Token Type + // DEPRECATED (ACL-Legacy-Compat) - remove once we no longer support v1 ACL compat + // Even though we are going to auto upgrade management tokens we still + // want to be able to have the old APIs operate on the upgraded management tokens + // so this field is being kept to identify legacy tokens even after an auto-upgrade + Type string `json:"-"` + + // Rules is the V1 acl rules associated with + // DEPRECATED (ACL-Legacy-Compat) - remove once we no longer support v1 ACL compat + Rules string `json:",omitempty"` + + // Whether this token is DC local. This means that it will not be synced + // to the ACL datacenter and replicated to others. + Local bool + + // The time when this token was created + CreateTime time.Time `json:",omitempty"` + + // Hash of the contents of the token + // + // This is needed mainly for replication purposes. When replicating from + // one DC to another keeping the content Hash will allow us to avoid + // unnecessary calls to the authoritative DC + Hash []byte + + // Embedded Raft Metadata RaftIndex } -// ACLs is a slice of ACLs. -type ACLs []*ACL +func (t *ACLToken) ID() string { + return t.AccessorID +} -// IsSame checks if one ACL is the same as another, without looking -// at the Raft information (that's why we didn't call it IsEqual). This is -// useful for seeing if an update would be idempotent for all the functional -// parts of the structure. -func (a *ACL) IsSame(other *ACL) bool { - if a.ID != other.ID || - a.Name != other.Name || - a.Type != other.Type || - a.Rules != other.Rules { - return false +func (t *ACLToken) SecretToken() string { + return t.SecretID +} + +func (t *ACLToken) PolicyIDs() []string { + var ids []string + for _, link := range t.Policies { + ids = append(ids, link.ID) + } + return ids +} + +func (t *ACLToken) EmbeddedPolicy() *ACLPolicy { + // DEPRECATED (ACL-Legacy-Compat) + // + // For legacy tokens with embedded rules this provides a way to map those + // rules to an ACLPolicy. This function can just return nil once legacy + // acl compatibility is no longer needed. + // + // Additionally for management tokens we must embed the policy rules + // as well + policy := &ACLPolicy{} + if t.Rules != "" || t.Type == ACLTokenTypeClient { + hasher := fnv.New128a() + policy.ID = fmt.Sprintf("%x", hasher.Sum([]byte(t.Rules))) + policy.Name = fmt.Sprintf("legacy-policy-%s", policy.ID) + policy.Rules = t.Rules + policy.Syntax = acl.SyntaxLegacy + } else if t.Type == ACLTokenTypeManagement { + hasher := fnv.New128a() + policy.ID = fmt.Sprintf("%x", hasher.Sum([]byte(ACLPolicyGlobalManagement))) + policy.Name = "legacy-management" + policy.Rules = ACLPolicyGlobalManagement + policy.Syntax = acl.SyntaxCurrent + } else { + return nil } - return true + policy.SetHash(true) + return policy } -// ACLBootstrap keeps track of whether bootstrapping ACLs is allowed for a -// cluster. -type ACLBootstrap struct { - // AllowBootstrap will only be true if no existing management tokens - // have been found. - AllowBootstrap bool +func (t *ACLToken) SetHash(force bool) []byte { + if force || t.Hash == nil { + // Initialize a 256bit Blake2 hash (32 bytes) + hash, err := blake2b.New256(nil) + if err != nil { + panic(err) + } - RaftIndex + // Write all the user set fields + hash.Write([]byte(t.Description)) + hash.Write([]byte(t.Type)) + hash.Write([]byte(t.Rules)) + + if t.Local { + hash.Write([]byte("local")) + } else { + hash.Write([]byte("global")) + } + + for _, link := range t.Policies { + hash.Write([]byte(link.ID)) + } + + // Finalize the hash + hashVal := hash.Sum(nil) + + // Set and return the hash + t.Hash = hashVal + } + return t.Hash } -// ACLRequest is used to create, update or delete an ACL -type ACLRequest struct { - Datacenter string - Op ACLOp - ACL ACL - WriteRequest +func (t *ACLToken) EstimateSize() int { + // 33 = 16 (RaftIndex) + 8 (Hash) + 8 (CreateTime) + 1 (Local) + size := 33 + len(t.AccessorID) + len(t.SecretID) + len(t.Description) + len(t.Type) + len(t.Rules) + for _, link := range t.Policies { + size += len(link.ID) + len(link.Name) + } + return size } -func (r *ACLRequest) RequestDatacenter() string { - return r.Datacenter +// ACLTokens is a slice of ACLTokens. +type ACLTokens []*ACLToken + +type ACLTokenListStub struct { + AccessorID string + Description string + Policies []ACLTokenPolicyLink + Local bool + CreateTime time.Time `json:",omitempty"` + Hash []byte + CreateIndex uint64 + ModifyIndex uint64 + Legacy bool `json:",omitempty"` } -// ACLRequests is a list of ACL change requests. -type ACLRequests []*ACLRequest +type ACLTokenListStubs []*ACLTokenListStub -// ACLSpecificRequest is used to request an ACL by ID -type ACLSpecificRequest struct { - Datacenter string - ACL string - QueryOptions +func (token *ACLToken) Stub() *ACLTokenListStub { + return &ACLTokenListStub{ + AccessorID: token.AccessorID, + Description: token.Description, + Policies: token.Policies, + Local: token.Local, + CreateTime: token.CreateTime, + Hash: token.Hash, + CreateIndex: token.CreateIndex, + ModifyIndex: token.ModifyIndex, + Legacy: token.Rules != "", + } } -// RequestDatacenter returns the DC this request is targeted to. -func (r *ACLSpecificRequest) RequestDatacenter() string { - return r.Datacenter +func (tokens ACLTokens) Sort() { + sort.Slice(tokens, func(i, j int) bool { + return tokens[i].AccessorID < tokens[j].AccessorID + }) } -// ACLPolicyRequest is used to request an ACL by ID, conditionally -// filtering on an ID -type ACLPolicyRequest struct { - Datacenter string - ACL string - ETag string - QueryOptions +func (tokens ACLTokenListStubs) Sort() { + sort.Slice(tokens, func(i, j int) bool { + return tokens[i].AccessorID < tokens[j].AccessorID + }) } -// RequestDatacenter returns the DC this request is targeted to. -func (r *ACLPolicyRequest) RequestDatacenter() string { - return r.Datacenter -} - -// IndexedACLs has tokens along with the Raft metadata about them. -type IndexedACLs struct { - ACLs ACLs - QueryMeta -} - -// ACLPolicy is a policy that can be associated with a token. type ACLPolicy struct { - ETag string - Parent string - Policy *acl.Policy - TTL time.Duration - QueryMeta + // This is the internal UUID associated with the policy + ID string + + // Unique name to reference the policy by. + // - Valid Characters: [a-zA-Z0-9-] + // - Valid Lengths: 1 - 128 + Name string + + // Human readable description (Optional) + Description string + + // The rule set (using the updated rule syntax) + Rules string + + // DEPRECATED (ACL-Legacy-Compat) - This is only needed while we support the legacy ACLS + Syntax acl.SyntaxVersion `json:"-"` + + // Datacenters that the policy is valid within. + // - No wildcards allowed + // - If empty then the policy is valid within all datacenters + Datacenters []string `json:",omitempty"` + + // Hash of the contents of the policy + // This does not take into account the ID (which is immutable) + // nor the raft metadata. + // + // This is needed mainly for replication purposes. When replicating from + // one DC to another keeping the content Hash will allow us to avoid + // unnecessary calls to the authoritative DC + Hash []byte + + // Embedded Raft Metadata + RaftIndex `hash:"ignore"` } +type ACLPolicyListStub struct { + ID string + Name string + Description string + Datacenters []string + Hash []byte + CreateIndex uint64 + ModifyIndex uint64 +} + +func (p *ACLPolicy) Stub() *ACLPolicyListStub { + return &ACLPolicyListStub{ + ID: p.ID, + Name: p.Name, + Description: p.Description, + Datacenters: p.Datacenters, + Hash: p.Hash, + CreateIndex: p.CreateIndex, + ModifyIndex: p.ModifyIndex, + } +} + +type ACLPolicies []*ACLPolicy +type ACLPolicyListStubs []*ACLPolicyListStub + +func (p *ACLPolicy) SetHash(force bool) []byte { + if force || p.Hash == nil { + // Initialize a 256bit Blake2 hash (32 bytes) + hash, err := blake2b.New256(nil) + if err != nil { + panic(err) + } + + // Write all the user set fields + hash.Write([]byte(p.Name)) + hash.Write([]byte(p.Description)) + hash.Write([]byte(p.Rules)) + for _, dc := range p.Datacenters { + hash.Write([]byte(dc)) + } + + // Finalize the hash + hashVal := hash.Sum(nil) + + // Set and return the hash + p.Hash = hashVal + } + return p.Hash +} + +func (p *ACLPolicy) EstimateSize() int { + // This is just an estimate. There is other data structure overhead + // pointers etc that this does not account for. + + // 64 = 36 (uuid) + 16 (RaftIndex) + 8 (Hash) + 4 (Syntax) + size := 64 + len(p.Name) + len(p.Description) + len(p.Rules) + for _, dc := range p.Datacenters { + size += len(dc) + } + + return size +} + +// ACLPolicyListHash returns a consistent hash for a set of policies. +func (policies ACLPolicies) HashKey() string { + cacheKeyHash, err := blake2b.New256(nil) + if err != nil { + panic(err) + } + for _, policy := range policies { + cacheKeyHash.Write([]byte(policy.ID)) + // including the modify index prevents a policy set from being + // cached if one of the policies has changed + binary.Write(cacheKeyHash, binary.BigEndian, policy.ModifyIndex) + } + return fmt.Sprintf("%x", cacheKeyHash.Sum(nil)) +} + +func (policies ACLPolicies) Sort() { + sort.Slice(policies, func(i, j int) bool { + return policies[i].ID < policies[j].ID + }) +} + +func (policies ACLPolicyListStubs) Sort() { + sort.Slice(policies, func(i, j int) bool { + return policies[i].ID < policies[j].ID + }) +} + +func (policies ACLPolicies) resolveWithCache(cache *ACLCaches, sentinel sentinel.Evaluator) ([]*acl.Policy, error) { + // Parse the policies + parsed := make([]*acl.Policy, 0, len(policies)) + for _, policy := range policies { + policy.SetHash(false) + cacheKey := fmt.Sprintf("%x", policy.Hash) + cachedPolicy := cache.GetParsedPolicy(cacheKey) + if cachedPolicy != nil { + // policies are content hashed so no need to check the age + parsed = append(parsed, cachedPolicy.Policy) + continue + } + + p, err := acl.NewPolicyFromSource(policy.ID, policy.ModifyIndex, policy.Rules, policy.Syntax, sentinel) + if err != nil { + return nil, fmt.Errorf("failed to parse %q: %v", policy.Name, err) + } + + cache.PutParsedPolicy(cacheKey, p) + parsed = append(parsed, p) + } + + return parsed, nil +} + +func (policies ACLPolicies) Compile(parent acl.Authorizer, cache *ACLCaches, sentinel sentinel.Evaluator) (acl.Authorizer, error) { + // Determine the cache key + cacheKey := policies.HashKey() + entry := cache.GetAuthorizer(cacheKey) + if entry != nil { + // the hash key takes into account the policy contents. There is no reason to expire this cache or check its age. + return entry.Authorizer, nil + } + + parsed, err := policies.resolveWithCache(cache, sentinel) + if err != nil { + return nil, fmt.Errorf("failed to parse the ACL policies: %v", err) + } + + // Create the ACL object + authorizer, err := acl.NewPolicyAuthorizer(parent, parsed, sentinel) + if err != nil { + return nil, fmt.Errorf("failed to construct ACL Authorizer: %v", err) + } + + // Update the cache + cache.PutAuthorizer(cacheKey, authorizer) + return authorizer, nil +} + +func (policies ACLPolicies) Merge(cache *ACLCaches, sentinel sentinel.Evaluator) (*acl.Policy, error) { + parsed, err := policies.resolveWithCache(cache, sentinel) + if err != nil { + return nil, err + } + + return acl.MergePolicies(parsed), nil +} + +type ACLReplicationType string + +const ( + ACLReplicateLegacy ACLReplicationType = "legacy" + ACLReplicatePolicies ACLReplicationType = "policies" + ACLReplicateTokens ACLReplicationType = "tokens" +) + // ACLReplicationStatus provides information about the health of the ACL // replication system. type ACLReplicationStatus struct { - Enabled bool - Running bool - SourceDatacenter string - ReplicatedIndex uint64 - LastSuccess time.Time - LastError time.Time + Enabled bool + Running bool + SourceDatacenter string + ReplicationType ACLReplicationType + ReplicatedIndex uint64 + ReplicatedTokenIndex uint64 + LastSuccess time.Time + LastError time.Time +} + +// ACLTokenUpsertRequest is used for token creation and update operations +// at the RPC layer +type ACLTokenUpsertRequest struct { + ACLToken ACLToken // Token to manipulate - I really dislike this name but "Token" is taken in the WriteRequest + Datacenter string // The datacenter to perform the request within + WriteRequest +} + +func (r *ACLTokenUpsertRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLTokenReadRequest is used for token read operations at the RPC layer +type ACLTokenReadRequest struct { + TokenID string // id used for the token lookup + TokenIDType ACLTokenIDType // The Type of ID used to lookup the token + Datacenter string // The datacenter to perform the request within + QueryOptions +} + +func (r *ACLTokenReadRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLTokenDeleteRequest is used for token deletion operations at the RPC layer +type ACLTokenDeleteRequest struct { + TokenID string // ID of the token to delete + Datacenter string // The datacenter to perform the request within + WriteRequest +} + +func (r *ACLTokenDeleteRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLTokenListRequest is used for token listing operations at the RPC layer +type ACLTokenListRequest struct { + IncludeLocal bool // Whether local tokens should be included + IncludeGlobal bool // Whether global tokens should be included + Policy string // Policy filter + Datacenter string // The datacenter to perform the request within + QueryOptions +} + +func (r *ACLTokenListRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLTokenListResponse is used to return the secret data free stubs +// of the tokens +type ACLTokenListResponse struct { + Tokens ACLTokenListStubs + QueryMeta +} + +// ACLTokenBatchReadRequest is used for reading multiple tokens, this is +// different from the the token list request in that only tokens with the +// the requested ids are returned +type ACLTokenBatchReadRequest struct { + AccessorIDs []string // List of accessor ids to fetch + Datacenter string // The datacenter to perform the request within + QueryOptions +} + +func (r *ACLTokenBatchReadRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLTokenBatchUpsertRequest is used only at the Raft layer +// for batching multiple token creation/update operations +// +// This is particularly useful during token replication and during +// automatic legacy token upgrades. +type ACLTokenBatchUpsertRequest struct { + Tokens ACLTokens + AllowCreate bool +} + +// ACLTokenBatchDeleteRequest is used only at the Raft layer +// for batching multiple token deletions. +// +// This is particularly useful during token replication when +// multiple tokens need to be removed from the local DCs state. +type ACLTokenBatchDeleteRequest struct { + TokenIDs []string // Tokens to delete +} + +// ACLTokenBootstrapRequest is used only at the Raft layer +// for ACL bootstrapping +// +// The RPC layer will use a generic DCSpecificRequest to indicate +// that bootstrapping must be performed but the actual token +// and the resetIndex will be generated by that RPC endpoint +type ACLTokenBootstrapRequest struct { + Token ACLToken // Token to use for bootstrapping + ResetIndex uint64 // Reset index +} + +// ACLTokenResponse returns a single Token + metadata +type ACLTokenResponse struct { + Token *ACLToken + QueryMeta +} + +// ACLTokensResponse returns multiple Tokens associated with the same metadata +type ACLTokensResponse struct { + Tokens []*ACLToken + QueryMeta +} + +// ACLPolicyUpsertRequest is used at the RPC layer for creation and update requests +type ACLPolicyUpsertRequest struct { + Policy ACLPolicy // The policy to upsert + Datacenter string // The datacenter to perform the request within + WriteRequest +} + +func (r *ACLPolicyUpsertRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLPolicyDeleteRequest is used at the RPC layer deletion requests +type ACLPolicyDeleteRequest struct { + PolicyID string // The id of the policy to delete + Datacenter string // The datacenter to perform the request within + WriteRequest +} + +func (r *ACLPolicyDeleteRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLPolicyReadRequest is used at the RPC layer to perform policy read operations +type ACLPolicyReadRequest struct { + PolicyID string // id used for the policy lookup + Datacenter string // The datacenter to perform the request within + QueryOptions +} + +func (r *ACLPolicyReadRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLPolicyListRequest is used at the RPC layer to request a listing of policies +type ACLPolicyListRequest struct { + DCScope string + Datacenter string // The datacenter to perform the request within + QueryOptions +} + +func (r *ACLPolicyListRequest) RequestDatacenter() string { + return r.Datacenter +} + +type ACLPolicyListResponse struct { + Policies ACLPolicyListStubs + QueryMeta +} + +// ACLPolicyBatchReadRequest is used at the RPC layer to request a subset of +// the policies associated with the token used for retrieval +type ACLPolicyBatchReadRequest struct { + PolicyIDs []string // List of policy ids to fetch + Datacenter string // The datacenter to perform the request within + QueryOptions +} + +func (r *ACLPolicyBatchReadRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLPolicyResponse returns a single policy + metadata +type ACLPolicyResponse struct { + Policy *ACLPolicy + QueryMeta +} + +type ACLPoliciesResponse struct { + Policies []*ACLPolicy + QueryMeta +} + +// ACLPolicyBatchUpsertRequest is used at the Raft layer for batching +// multiple policy creations and updates +// +// This is particularly useful during replication +type ACLPolicyBatchUpsertRequest struct { + Policies ACLPolicies +} + +// ACLPolicyBatchDeleteRequest is used at the Raft layer for batching +// multiple policy deletions +// +// This is particularly useful during replication +type ACLPolicyBatchDeleteRequest struct { + PolicyIDs []string } diff --git a/agent/structs/acl_cache.go b/agent/structs/acl_cache.go new file mode 100644 index 000000000..9e7df6405 --- /dev/null +++ b/agent/structs/acl_cache.go @@ -0,0 +1,223 @@ +package structs + +import ( + "time" + + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/golang-lru" +) + +type ACLCachesConfig struct { + Identities int + Policies int + ParsedPolicies int + Authorizers int +} + +type ACLCaches struct { + identities *lru.TwoQueueCache // identity id -> structs.ACLIdentity + parsedPolicies *lru.TwoQueueCache // policy content hash -> acl.Policy + policies *lru.TwoQueueCache // policy ID -> ACLPolicy + authorizers *lru.TwoQueueCache // token secret -> acl.Authorizer +} + +type IdentityCacheEntry struct { + Identity ACLIdentity + CacheTime time.Time +} + +func (e *IdentityCacheEntry) Age() time.Duration { + return time.Since(e.CacheTime) +} + +type ParsedPolicyCacheEntry struct { + Policy *acl.Policy + CacheTime time.Time +} + +func (e *ParsedPolicyCacheEntry) Age() time.Duration { + return time.Since(e.CacheTime) +} + +type PolicyCacheEntry struct { + Policy *ACLPolicy + CacheTime time.Time +} + +func (e *PolicyCacheEntry) Age() time.Duration { + return time.Since(e.CacheTime) +} + +type AuthorizerCacheEntry struct { + Authorizer acl.Authorizer + CacheTime time.Time + TTL time.Duration +} + +func (e *AuthorizerCacheEntry) Age() time.Duration { + return time.Since(e.CacheTime) +} + +func NewACLCaches(config *ACLCachesConfig) (*ACLCaches, error) { + cache := &ACLCaches{} + + if config != nil && config.Identities > 0 { + identCache, err := lru.New2Q(config.Identities) + if err != nil { + return nil, err + } + + cache.identities = identCache + } + + if config != nil && config.Policies > 0 { + policyCache, err := lru.New2Q(config.Policies) + if err != nil { + return nil, err + } + + cache.policies = policyCache + } + + if config != nil && config.ParsedPolicies > 0 { + parsedCache, err := lru.New2Q(config.ParsedPolicies) + if err != nil { + return nil, err + } + + cache.parsedPolicies = parsedCache + } + + if config != nil && config.Authorizers > 0 { + authCache, err := lru.New2Q(config.Authorizers) + if err != nil { + return nil, err + } + + cache.authorizers = authCache + } + + return cache, nil +} + +// GetIdentity fetches an identity from the cache and returns it +func (c *ACLCaches) GetIdentity(id string) *IdentityCacheEntry { + if c == nil || c.identities == nil { + return nil + } + + if raw, ok := c.identities.Get(id); ok { + return raw.(*IdentityCacheEntry) + } + + return nil +} + +// GetPolicy fetches a policy from the cache and returns it +func (c *ACLCaches) GetPolicy(policyID string) *PolicyCacheEntry { + if c == nil || c.policies == nil { + return nil + } + + if raw, ok := c.policies.Get(policyID); ok { + return raw.(*PolicyCacheEntry) + } + + return nil +} + +// GetPolicy fetches a policy from the cache and returns it +func (c *ACLCaches) GetParsedPolicy(id string) *ParsedPolicyCacheEntry { + if c == nil || c.parsedPolicies == nil { + return nil + } + + if raw, ok := c.parsedPolicies.Get(id); ok { + return raw.(*ParsedPolicyCacheEntry) + } + + return nil +} + +// GetAuthorizer fetches a acl from the cache and returns it +func (c *ACLCaches) GetAuthorizer(id string) *AuthorizerCacheEntry { + if c == nil || c.authorizers == nil { + return nil + } + + if raw, ok := c.authorizers.Get(id); ok { + return raw.(*AuthorizerCacheEntry) + } + + return nil +} + +// PutIdentity adds a new identity to the cache +func (c *ACLCaches) PutIdentity(id string, ident ACLIdentity) { + if c == nil || c.identities == nil { + return + } + + c.identities.Add(id, &IdentityCacheEntry{Identity: ident, CacheTime: time.Now()}) +} + +func (c *ACLCaches) PutPolicy(policyId string, policy *ACLPolicy) { + if c == nil || c.policies == nil { + return + } + + c.policies.Add(policyId, &PolicyCacheEntry{Policy: policy, CacheTime: time.Now()}) +} + +func (c *ACLCaches) PutParsedPolicy(id string, policy *acl.Policy) { + if c == nil || c.parsedPolicies == nil { + return + } + + c.parsedPolicies.Add(id, &ParsedPolicyCacheEntry{Policy: policy, CacheTime: time.Now()}) +} + +func (c *ACLCaches) PutAuthorizer(id string, authorizer acl.Authorizer) { + if c == nil || c.authorizers == nil { + return + } + + c.authorizers.Add(id, &AuthorizerCacheEntry{Authorizer: authorizer, CacheTime: time.Now()}) +} + +func (c *ACLCaches) PutAuthorizerWithTTL(id string, authorizer acl.Authorizer, ttl time.Duration) { + if c == nil || c.authorizers == nil { + return + } + + c.authorizers.Add(id, &AuthorizerCacheEntry{Authorizer: authorizer, CacheTime: time.Now(), TTL: ttl}) +} + +func (c *ACLCaches) RemoveIdentity(id string) { + if c != nil && c.identities != nil { + c.identities.Remove(id) + } +} + +func (c *ACLCaches) RemovePolicy(policyID string) { + if c != nil && c.policies != nil { + c.policies.Remove(policyID) + } +} + +func (c *ACLCaches) Purge() { + if c != nil { + if c.identities != nil { + c.identities.Purge() + } + if c.policies != nil { + c.policies.Purge() + } + if c.parsedPolicies != nil { + c.parsedPolicies.Purge() + } + if c.authorizers != nil { + c.authorizers.Purge() + } + } +} diff --git a/agent/structs/acl_cache_test.go b/agent/structs/acl_cache_test.go new file mode 100644 index 000000000..471dc408a --- /dev/null +++ b/agent/structs/acl_cache_test.go @@ -0,0 +1,105 @@ +package structs + +import ( + "testing" + + "github.com/hashicorp/consul/acl" + "github.com/stretchr/testify/require" +) + +func TestStructs_ACLCaches(t *testing.T) { + t.Parallel() + + t.Run("New", func(t *testing.T) { + t.Parallel() + + t.Run("Valid Sizes", func(t *testing.T) { + t.Parallel() + // 1 isn't valid due to a bug in golang-lru library + config := ACLCachesConfig{2, 2, 2, 2} + + cache, err := NewACLCaches(&config) + require.NoError(t, err) + require.NotNil(t, cache) + require.NotNil(t, cache.identities) + require.NotNil(t, cache.policies) + require.NotNil(t, cache.parsedPolicies) + require.NotNil(t, cache.authorizers) + }) + + t.Run("Zero Sizes", func(t *testing.T) { + t.Parallel() + // 1 isn't valid due to a bug in golang-lru library + config := ACLCachesConfig{0, 0, 0, 0} + + cache, err := NewACLCaches(&config) + require.NoError(t, err) + require.NotNil(t, cache) + require.Nil(t, cache.identities) + require.Nil(t, cache.policies) + require.Nil(t, cache.parsedPolicies) + require.Nil(t, cache.authorizers) + }) + }) + + t.Run("Identities", func(t *testing.T) { + t.Parallel() + // 1 isn't valid due to a bug in golang-lru library + config := ACLCachesConfig{Identities: 4} + + cache, err := NewACLCaches(&config) + require.NoError(t, err) + require.NotNil(t, cache) + + cache.PutIdentity("foo", &ACLToken{}) + entry := cache.GetIdentity("foo") + require.NotNil(t, entry) + require.NotNil(t, entry.Identity) + }) + + t.Run("Policies", func(t *testing.T) { + t.Parallel() + // 1 isn't valid due to a bug in golang-lru library + config := ACLCachesConfig{Policies: 4} + + cache, err := NewACLCaches(&config) + require.NoError(t, err) + require.NotNil(t, cache) + + cache.PutPolicy("foo", &ACLPolicy{}) + entry := cache.GetPolicy("foo") + require.NotNil(t, entry) + require.NotNil(t, entry.Policy) + }) + + t.Run("ParsedPolicies", func(t *testing.T) { + t.Parallel() + // 1 isn't valid due to a bug in golang-lru library + config := ACLCachesConfig{ParsedPolicies: 4} + + cache, err := NewACLCaches(&config) + require.NoError(t, err) + require.NotNil(t, cache) + + cache.PutParsedPolicy("foo", &acl.Policy{}) + entry := cache.GetParsedPolicy("foo") + require.NotNil(t, entry) + require.NotNil(t, entry.Policy) + }) + + t.Run("Authorizers", func(t *testing.T) { + t.Parallel() + // 1 isn't valid due to a bug in golang-lru library + config := ACLCachesConfig{Authorizers: 4} + + cache, err := NewACLCaches(&config) + require.NoError(t, err) + require.NotNil(t, cache) + + cache.PutAuthorizer("foo", acl.DenyAll()) + entry := cache.GetAuthorizer("foo") + require.NotNil(t, entry) + require.NotNil(t, entry.Authorizer) + require.True(t, entry.Authorizer == acl.DenyAll()) + }) +} diff --git a/agent/structs/acl_legacy.go b/agent/structs/acl_legacy.go new file mode 100644 index 000000000..42b0c3aa1 --- /dev/null +++ b/agent/structs/acl_legacy.go @@ -0,0 +1,171 @@ +// DEPRECATED (ACL-Legacy-Compat) +// +// Everything within this file is deprecated and related to the original ACL +// implementation. Once support for v1 ACLs are removed this whole file can +// be deleted. + +package structs + +import ( + "errors" + "fmt" + "time" + + "github.com/hashicorp/consul/acl" +) + +const ( + // ACLBootstrapInit is used to perform a scan for existing tokens which + // will decide whether bootstrapping is allowed for a cluster. This is + // initiated by the leader when it steps up, if necessary. + ACLBootstrapInit ACLOp = "bootstrap-init" + + // ACLBootstrapNow is used to perform a one-time ACL bootstrap operation on + // a cluster to get the first management token. + ACLBootstrapNow ACLOp = "bootstrap-now" + + // ACLForceSet is deprecated, but left for backwards compatibility. + ACLForceSet ACLOp = "force-set" +) + +// ACLBootstrapNotInitializedErr is returned when a bootstrap is attempted but +// we haven't yet initialized ACL bootstrap. It provides some guidance to +// operators on how to proceed. +var ACLBootstrapNotInitializedErr = errors.New("ACL bootstrap not initialized, need to force a leader election and ensure all Consul servers support this feature") + +const ( + // ACLTokenTypeClient tokens have rules applied + ACLTokenTypeClient = "client" + + // ACLTokenTypeManagement tokens have an always allow policy, so they can + // make other tokens and can access all resources. + ACLTokenTypeManagement = "management" + + // ACLTokenTypeNone + ACLTokenTypeNone = "" +) + +// ACL is used to represent a token and its rules +type ACL struct { + ID string + Name string + Type string + Rules string + + RaftIndex +} + +// ACLs is a slice of ACLs. +type ACLs []*ACL + +// Convert does a 1-1 mapping of the ACLCompat structure to its ACLToken +// equivalent. This will NOT fill in the other ACLToken fields or perform any other +// upgrade. +func (a *ACL) Convert() *ACLToken { + return &ACLToken{ + AccessorID: "", + SecretID: a.ID, + Description: a.Name, + Policies: nil, + Type: a.Type, + Rules: a.Rules, + Local: false, + RaftIndex: a.RaftIndex, + } +} + +// Convert attempts to convert an ACLToken into an ACLCompat. +func (tok *ACLToken) Convert() (*ACL, error) { + if tok.Type == "" { + return nil, fmt.Errorf("Cannot convert ACLToken into compat token") + } + + compat := &ACL{ + ID: tok.SecretID, + Name: tok.Description, + Type: tok.Type, + Rules: tok.Rules, + RaftIndex: tok.RaftIndex, + } + return compat, nil +} + +// IsSame checks if one ACL is the same as another, without looking +// at the Raft information (that's why we didn't call it IsEqual). This is +// useful for seeing if an update would be idempotent for all the functional +// parts of the structure. +func (a *ACL) IsSame(other *ACL) bool { + if a.ID != other.ID || + a.Name != other.Name || + a.Type != other.Type || + a.Rules != other.Rules { + return false + } + + return true +} + +// ACLRequest is used to create, update or delete an ACL +type ACLRequest struct { + Datacenter string + Op ACLOp + ACL ACL + WriteRequest +} + +func (r *ACLRequest) RequestDatacenter() string { + return r.Datacenter +} + +// ACLRequests is a list of ACL change requests. +type ACLRequests []*ACLRequest + +// ACLSpecificRequest is used to request an ACL by ID +type ACLSpecificRequest struct { + Datacenter string + ACL string + QueryOptions +} + +// RequestDatacenter returns the DC this request is targeted to. +func (r *ACLSpecificRequest) RequestDatacenter() string { + return r.Datacenter +} + +// IndexedACLs has tokens along with the Raft metadata about them. +type IndexedACLs struct { + ACLs ACLs + QueryMeta +} + +// ACLBootstrap keeps track of whether bootstrapping ACLs is allowed for a +// cluster. +type ACLBootstrap struct { + // AllowBootstrap will only be true if no existing management tokens + // have been found. + AllowBootstrap bool + + RaftIndex +} + +// ACLPolicyResolveLegacyRequest is used to request an ACL by Token SecretID, conditionally +// filtering on an ID +type ACLPolicyResolveLegacyRequest struct { + Datacenter string // The Datacenter the RPC may be sent to + ACL string // The Tokens Secret ID + ETag string // Caching ETag to prevent resending the policy when not needed + QueryOptions +} + +// RequestDatacenter returns the DC this request is targeted to. +func (r *ACLPolicyResolveLegacyRequest) RequestDatacenter() string { + return r.Datacenter +} + +type ACLPolicyResolveLegacyResponse struct { + ETag string + Parent string + Policy *acl.Policy + TTL time.Duration + QueryMeta +} diff --git a/agent/structs/acl_legacy_test.go b/agent/structs/acl_legacy_test.go new file mode 100644 index 000000000..68660d8e3 --- /dev/null +++ b/agent/structs/acl_legacy_test.go @@ -0,0 +1,140 @@ +package structs + +import ( + "testing" + + "github.com/stretchr/testify/require" +) + +func TestStructs_ACL_IsSame(t *testing.T) { + acl := &ACL{ + ID: "guid", + Name: "An ACL for testing", + Type: "client", + Rules: "service \"\" { policy = \"read\" }", + } + if !acl.IsSame(acl) { + t.Fatalf("should be equal to itself") + } + + other := &ACL{ + ID: "guid", + Name: "An ACL for testing", + Type: "client", + Rules: "service \"\" { policy = \"read\" }", + RaftIndex: RaftIndex{ + CreateIndex: 1, + ModifyIndex: 2, + }, + } + if !acl.IsSame(other) || !other.IsSame(acl) { + t.Fatalf("should not care about Raft fields") + } + + check := func(twiddle, restore func()) { + if !acl.IsSame(other) || !other.IsSame(acl) { + t.Fatalf("should be the same") + } + + twiddle() + if acl.IsSame(other) || other.IsSame(acl) { + t.Fatalf("should not be the same") + } + + restore() + if !acl.IsSame(other) || !other.IsSame(acl) { + t.Fatalf("should be the same") + } + } + + check(func() { other.ID = "nope" }, func() { other.ID = "guid" }) + check(func() { other.Name = "nope" }, func() { other.Name = "An ACL for testing" }) + check(func() { other.Type = "management" }, func() { other.Type = "client" }) + check(func() { other.Rules = "" }, func() { other.Rules = "service \"\" { policy = \"read\" }" }) +} + +func TestStructs_ACL_Convert(t *testing.T) { + t.Parallel() + + acl := &ACL{ + ID: "guid", + Name: "AN ACL for testing", + Type: "client", + Rules: `service "" { policy "read" }`, + } + + token := acl.Convert() + require.Equal(t, "", token.AccessorID) + require.Equal(t, acl.ID, token.SecretID) + require.Equal(t, acl.Type, token.Type) + require.Equal(t, acl.Name, token.Description) + require.Nil(t, token.Policies) + require.False(t, token.Local) + require.Equal(t, acl.Rules, token.Rules) + require.Equal(t, acl.CreateIndex, token.CreateIndex) + require.Equal(t, acl.ModifyIndex, token.ModifyIndex) +} + +func TestStructs_ACLToken_Convert(t *testing.T) { + t.Parallel() + + t.Run("Management", func(t *testing.T) { + t.Parallel() + token := &ACLToken{ + AccessorID: "6c4eb178-c7f3-4620-b899-91eb8696c265", + SecretID: "67c29ecd-cabc-42e0-a20e-771e9a1ab70c", + Description: "new token", + Policies: []ACLTokenPolicyLink{ + ACLTokenPolicyLink{ + ID: ACLPolicyGlobalManagementID, + }, + }, + Type: ACLTokenTypeManagement, + } + + acl, err := token.Convert() + require.NoError(t, err) + require.Equal(t, token.SecretID, acl.ID) + require.Equal(t, token.Type, acl.Type) + require.Equal(t, token.Description, acl.Name) + require.Equal(t, "", acl.Rules) + }) + + t.Run("Client", func(t *testing.T) { + t.Parallel() + token := &ACLToken{ + AccessorID: "6c4eb178-c7f3-4620-b899-91eb8696c265", + SecretID: "67c29ecd-cabc-42e0-a20e-771e9a1ab70c", + Description: "new token", + Policies: nil, + Type: ACLTokenTypeClient, + Rules: `acl = "read"`, + } + + acl, err := token.Convert() + require.NoError(t, err) + require.Equal(t, token.SecretID, acl.ID) + require.Equal(t, token.Type, acl.Type) + require.Equal(t, token.Description, acl.Name) + require.Equal(t, token.Rules, acl.Rules) + }) + + t.Run("Unconvertible", func(t *testing.T) { + t.Parallel() + token := &ACLToken{ + AccessorID: "6c4eb178-c7f3-4620-b899-91eb8696c265", + SecretID: "67c29ecd-cabc-42e0-a20e-771e9a1ab70c", + Description: "new token", + Policies: []ACLTokenPolicyLink{ + ACLTokenPolicyLink{ + ID: ACLPolicyGlobalManagementID, + }, + }, + } + + acl, err := token.Convert() + require.Error(t, err) + require.Nil(t, acl) + }) + +} diff --git a/agent/structs/acl_test.go b/agent/structs/acl_test.go index 842abe2d2..6a5db4b05 100644 --- a/agent/structs/acl_test.go +++ b/agent/structs/acl_test.go @@ -1,52 +1,617 @@ package structs import ( + "fmt" + "strings" "testing" + + "github.com/hashicorp/consul/acl" + + "github.com/stretchr/testify/require" ) -func TestStructs_ACL_IsSame(t *testing.T) { - acl := &ACL{ - ID: "guid", - Name: "An ACL for testing", - Type: "client", - Rules: "service \"\" { policy = \"read\" }", - } - if !acl.IsSame(acl) { - t.Fatalf("should be equal to itself") - } +func TestStructs_ACLToken_PolicyIDs(t *testing.T) { + t.Parallel() - other := &ACL{ - ID: "guid", - Name: "An ACL for testing", - Type: "client", - Rules: "service \"\" { policy = \"read\" }", - RaftIndex: RaftIndex{ - CreateIndex: 1, - ModifyIndex: 2, + t.Run("Basic", func(t *testing.T) { + t.Parallel() + + token := &ACLToken{ + Policies: []ACLTokenPolicyLink{ + ACLTokenPolicyLink{ + ID: "one", + }, + ACLTokenPolicyLink{ + ID: "two", + }, + ACLTokenPolicyLink{ + ID: "three", + }, + }, + } + + policyIDs := token.PolicyIDs() + require.Len(t, policyIDs, 3) + require.Equal(t, "one", policyIDs[0]) + require.Equal(t, "two", policyIDs[1]) + require.Equal(t, "three", policyIDs[2]) + }) + + t.Run("Legacy Management", func(t *testing.T) { + t.Parallel() + + a := &ACL{ + ID: "root", + Type: ACLTokenTypeManagement, + Name: "management", + } + + token := a.Convert() + + policyIDs := token.PolicyIDs() + require.Len(t, policyIDs, 0) + + embedded := token.EmbeddedPolicy() + require.NotNil(t, embedded) + require.Equal(t, ACLPolicyGlobalManagement, embedded.Rules) + }) + + t.Run("No Policies", func(t *testing.T) { + t.Parallel() + + token := &ACLToken{} + + policyIDs := token.PolicyIDs() + require.Len(t, policyIDs, 0) + }) +} + +func TestStructs_ACLToken_EmbeddedPolicy(t *testing.T) { + t.Parallel() + + t.Run("No Rules", func(t *testing.T) { + t.Parallel() + + token := &ACLToken{} + require.Nil(t, token.EmbeddedPolicy()) + }) + + t.Run("Legacy Client", func(t *testing.T) { + t.Parallel() + + // None of the other fields should be considered + token := &ACLToken{ + Type: ACLTokenTypeClient, + Rules: `acl = "read"`, + } + + policy := token.EmbeddedPolicy() + require.NotNil(t, policy) + require.NotEqual(t, "", policy.ID) + require.True(t, strings.HasPrefix(policy.Name, "legacy-policy-")) + require.Equal(t, token.Rules, policy.Rules) + require.Equal(t, policy.Syntax, acl.SyntaxLegacy) + require.NotNil(t, policy.Hash) + require.NotEqual(t, []byte{}, policy.Hash) + }) + + t.Run("Same Policy for Tokens with same Rules", func(t *testing.T) { + t.Parallel() + + token1 := &ACLToken{ + AccessorID: "f55b260c-5e05-418e-ab19-d421d1ab4b52", + SecretID: "b2165bac-7006-459b-8a72-7f549f0f06d6", + Description: "token 1", + Type: ACLTokenTypeClient, + Rules: `acl = "read"`, + } + + token2 := &ACLToken{ + AccessorID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + SecretID: "65e98e67-9b29-470c-8ffa-7c5a23cc67c8", + Description: "token 2", + Type: ACLTokenTypeClient, + Rules: `acl = "read"`, + } + + policy1 := token1.EmbeddedPolicy() + policy2 := token2.EmbeddedPolicy() + require.Equal(t, policy1, policy2) + }) +} + +func TestStructs_ACLToken_SetHash(t *testing.T) { + t.Parallel() + + token := ACLToken{ + AccessorID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + SecretID: "65e98e67-9b29-470c-8ffa-7c5a23cc67c8", + Description: "test", + Policies: []ACLTokenPolicyLink{ + ACLTokenPolicyLink{ + ID: "one", + }, + ACLTokenPolicyLink{ + ID: "two", + }, + ACLTokenPolicyLink{ + ID: "three", + }, }, } - if !acl.IsSame(other) || !other.IsSame(acl) { - t.Fatalf("should not care about Raft fields") - } - check := func(twiddle, restore func()) { - if !acl.IsSame(other) || !other.IsSame(acl) { - t.Fatalf("should be the same") - } + t.Run("Nil Hash - Generate", func(t *testing.T) { + require.Nil(t, token.Hash) + h := token.SetHash(false) + require.NotNil(t, h) + require.NotEqual(t, []byte{}, h) + require.Equal(t, h, token.Hash) + }) - twiddle() - if acl.IsSame(other) || other.IsSame(acl) { - t.Fatalf("should not be the same") - } + t.Run("Hash Set - Dont Generate", func(t *testing.T) { + original := token.Hash + h := token.SetHash(false) + require.Equal(t, original, h) - restore() - if !acl.IsSame(other) || !other.IsSame(acl) { - t.Fatalf("should be the same") - } - } + token.Description = "changed" + h = token.SetHash(false) + require.Equal(t, original, h) + }) - check(func() { other.ID = "nope" }, func() { other.ID = "guid" }) - check(func() { other.Name = "nope" }, func() { other.Name = "An ACL for testing" }) - check(func() { other.Type = "management" }, func() { other.Type = "client" }) - check(func() { other.Rules = "" }, func() { other.Rules = "service \"\" { policy = \"read\" }" }) + t.Run("Hash Set - Generate", func(t *testing.T) { + original := token.Hash + h := token.SetHash(true) + require.NotEqual(t, original, h) + }) +} + +func TestStructs_ACLToken_EstimateSize(t *testing.T) { + t.Parallel() + + // estimated size here should + token := ACLToken{ + AccessorID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + SecretID: "65e98e67-9b29-470c-8ffa-7c5a23cc67c8", + Description: "test", + Policies: []ACLTokenPolicyLink{ + ACLTokenPolicyLink{ + ID: "one", + }, + ACLTokenPolicyLink{ + ID: "two", + }, + ACLTokenPolicyLink{ + ID: "three", + }, + }, + } + + // this test is very contrived. Basically just tests that the + // math is okay and returns the value. + require.Equal(t, 120, token.EstimateSize()) +} + +func TestStructs_ACLToken_Stub(t *testing.T) { + t.Parallel() + + t.Run("Basic", func(t *testing.T) { + t.Parallel() + + token := ACLToken{ + AccessorID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + SecretID: "65e98e67-9b29-470c-8ffa-7c5a23cc67c8", + Description: "test", + Policies: []ACLTokenPolicyLink{ + ACLTokenPolicyLink{ + ID: "one", + }, + ACLTokenPolicyLink{ + ID: "two", + }, + ACLTokenPolicyLink{ + ID: "three", + }, + }, + } + + stub := token.Stub() + + require.Equal(t, token.AccessorID, stub.AccessorID) + require.Equal(t, token.Description, stub.Description) + require.Equal(t, token.Policies, stub.Policies) + require.Equal(t, token.Local, stub.Local) + require.Equal(t, token.CreateTime, stub.CreateTime) + require.Equal(t, token.Hash, stub.Hash) + require.Equal(t, token.CreateIndex, stub.CreateIndex) + require.Equal(t, token.ModifyIndex, stub.ModifyIndex) + require.False(t, stub.Legacy) + }) + + t.Run("Legacy", func(t *testing.T) { + t.Parallel() + token := ACLToken{ + AccessorID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + SecretID: "65e98e67-9b29-470c-8ffa-7c5a23cc67c8", + Description: "test", + Type: ACLTokenTypeClient, + Rules: `key "" { policy = "read" }`, + } + + stub := token.Stub() + require.Equal(t, token.AccessorID, stub.AccessorID) + require.Equal(t, token.Description, stub.Description) + require.Equal(t, token.Policies, stub.Policies) + require.Equal(t, token.Local, stub.Local) + require.Equal(t, token.CreateTime, stub.CreateTime) + require.Equal(t, token.Hash, stub.Hash) + require.Equal(t, token.CreateIndex, stub.CreateIndex) + require.Equal(t, token.ModifyIndex, stub.ModifyIndex) + require.True(t, stub.Legacy) + }) +} + +func TestStructs_ACLTokens_Sort(t *testing.T) { + t.Parallel() + + tokens := ACLTokens{ + &ACLToken{ + AccessorID: "9db509a9-c809-48c1-895d-99f845b7a9d5", + }, + &ACLToken{ + AccessorID: "6bd01084-1695-43b8-898d-b2dd7874754d", + }, + &ACLToken{ + AccessorID: "614a4cef-9149-4271-b878-7edb1ad661f8", + }, + &ACLToken{ + AccessorID: "c9dd9980-8d54-472f-9e5e-74c02143e1f4", + }, + } + + tokens.Sort() + require.Equal(t, tokens[0].AccessorID, "614a4cef-9149-4271-b878-7edb1ad661f8") + require.Equal(t, tokens[1].AccessorID, "6bd01084-1695-43b8-898d-b2dd7874754d") + require.Equal(t, tokens[2].AccessorID, "9db509a9-c809-48c1-895d-99f845b7a9d5") + require.Equal(t, tokens[3].AccessorID, "c9dd9980-8d54-472f-9e5e-74c02143e1f4") +} + +func TestStructs_ACLTokenListStubs_Sort(t *testing.T) { + t.Parallel() + + tokens := ACLTokenListStubs{ + &ACLTokenListStub{ + AccessorID: "9db509a9-c809-48c1-895d-99f845b7a9d5", + }, + &ACLTokenListStub{ + AccessorID: "6bd01084-1695-43b8-898d-b2dd7874754d", + }, + &ACLTokenListStub{ + AccessorID: "614a4cef-9149-4271-b878-7edb1ad661f8", + }, + &ACLTokenListStub{ + AccessorID: "c9dd9980-8d54-472f-9e5e-74c02143e1f4", + }, + } + + tokens.Sort() + require.Equal(t, tokens[0].AccessorID, "614a4cef-9149-4271-b878-7edb1ad661f8") + require.Equal(t, tokens[1].AccessorID, "6bd01084-1695-43b8-898d-b2dd7874754d") + require.Equal(t, tokens[2].AccessorID, "9db509a9-c809-48c1-895d-99f845b7a9d5") + require.Equal(t, tokens[3].AccessorID, "c9dd9980-8d54-472f-9e5e-74c02143e1f4") +} + +func TestStructs_ACLPolicy_Stub(t *testing.T) { + t.Parallel() + + policy := &ACLPolicy{ + ID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + Name: "test", + Description: "test", + Rules: `acl = "read"`, + } + + stub := policy.Stub() + + require.Equal(t, policy.ID, stub.ID) + require.Equal(t, policy.Name, stub.Name) + require.Equal(t, policy.Description, stub.Description) + require.Equal(t, policy.Datacenters, stub.Datacenters) + require.Equal(t, policy.Hash, stub.Hash) + require.Equal(t, policy.CreateIndex, stub.CreateIndex) + require.Equal(t, policy.ModifyIndex, stub.ModifyIndex) +} + +func TestStructs_ACLPolicy_SetHash(t *testing.T) { + t.Parallel() + + policy := &ACLPolicy{ + ID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + Name: "test", + Description: "test", + Rules: `acl = "read"`, + } + + t.Run("Nil Hash - Generate", func(t *testing.T) { + require.Nil(t, policy.Hash) + h := policy.SetHash(false) + require.NotNil(t, h) + require.NotEqual(t, []byte{}, h) + require.Equal(t, h, policy.Hash) + }) + + t.Run("Hash Set - Dont Generate", func(t *testing.T) { + original := policy.Hash + h := policy.SetHash(false) + require.Equal(t, original, h) + + policy.Description = "changed" + h = policy.SetHash(false) + require.Equal(t, original, h) + }) + + t.Run("Hash Set - Generate", func(t *testing.T) { + original := policy.Hash + h := policy.SetHash(true) + require.NotEqual(t, original, h) + }) +} + +func TestStructs_ACLPolicy_EstimateSize(t *testing.T) { + t.Parallel() + + policy := ACLPolicy{ + ID: "09d1c059-961a-46bd-a2e4-76adebe35fa5", + Name: "test", + Description: "test", + Rules: `acl = "read"`, + } + + // this test is very contrived. Basically just tests that the + // math is okay and returns the value. + require.Equal(t, 84, policy.EstimateSize()) + policy.Datacenters = []string{"dc1", "dc2"} + require.Equal(t, 90, policy.EstimateSize()) +} + +func TestStructs_ACLPolicies_Sort(t *testing.T) { + t.Parallel() + + policies := ACLPolicies{ + &ACLPolicy{ + ID: "9db509a9-c809-48c1-895d-99f845b7a9d5", + }, + &ACLPolicy{ + ID: "6bd01084-1695-43b8-898d-b2dd7874754d", + }, + &ACLPolicy{ + ID: "614a4cef-9149-4271-b878-7edb1ad661f8", + }, + &ACLPolicy{ + ID: "c9dd9980-8d54-472f-9e5e-74c02143e1f4", + }, + } + + policies.Sort() + require.Equal(t, policies[0].ID, "614a4cef-9149-4271-b878-7edb1ad661f8") + require.Equal(t, policies[1].ID, "6bd01084-1695-43b8-898d-b2dd7874754d") + require.Equal(t, policies[2].ID, "9db509a9-c809-48c1-895d-99f845b7a9d5") + require.Equal(t, policies[3].ID, "c9dd9980-8d54-472f-9e5e-74c02143e1f4") +} + +func TestStructs_ACLPolicyListStubs_Sort(t *testing.T) { + t.Parallel() + + policies := ACLPolicyListStubs{ + &ACLPolicyListStub{ + ID: "9db509a9-c809-48c1-895d-99f845b7a9d5", + }, + &ACLPolicyListStub{ + ID: "6bd01084-1695-43b8-898d-b2dd7874754d", + }, + &ACLPolicyListStub{ + ID: "614a4cef-9149-4271-b878-7edb1ad661f8", + }, + &ACLPolicyListStub{ + ID: "c9dd9980-8d54-472f-9e5e-74c02143e1f4", + }, + } + + policies.Sort() + require.Equal(t, policies[0].ID, "614a4cef-9149-4271-b878-7edb1ad661f8") + require.Equal(t, policies[1].ID, "6bd01084-1695-43b8-898d-b2dd7874754d") + require.Equal(t, policies[2].ID, "9db509a9-c809-48c1-895d-99f845b7a9d5") + require.Equal(t, policies[3].ID, "c9dd9980-8d54-472f-9e5e-74c02143e1f4") +} + +func TestStructs_ACLPolicies_resolveWithCache(t *testing.T) { + t.Parallel() + + config := ACLCachesConfig{ + Identities: 0, + Policies: 0, + ParsedPolicies: 4, + Authorizers: 0, + } + cache, err := NewACLCaches(&config) + require.NoError(t, err) + + testPolicies := ACLPolicies{ + &ACLPolicy{ + ID: "5d5653a1-2c2b-4b36-b083-fc9f1398eb7b", + Name: "policy1", + Description: "policy1", + Rules: `node_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 1, + ModifyIndex: 2, + }, + }, + &ACLPolicy{ + ID: "b35541f0-a88a-48da-bc66-43553c60b628", + Name: "policy2", + Description: "policy2", + Rules: `agent_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 3, + ModifyIndex: 4, + }, + }, + &ACLPolicy{ + ID: "383abb79-94ca-46c6-89b7-8ecb69046de9", + Name: "policy3", + Description: "policy3", + Rules: `key_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 5, + ModifyIndex: 6, + }, + }, + &ACLPolicy{ + ID: "8bf38965-95e5-4e86-9be7-f6070cc0708b", + Name: "policy4", + Description: "policy4", + Rules: `service_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 7, + ModifyIndex: 8, + }, + }, + } + + t.Run("Cache Misses", func(t *testing.T) { + policies, err := testPolicies.resolveWithCache(cache, nil) + require.NoError(t, err) + require.Len(t, policies, 4) + for i := range testPolicies { + require.Equal(t, testPolicies[i].ID, policies[i].ID) + require.Equal(t, testPolicies[i].ModifyIndex, policies[i].Revision) + } + }) + + t.Run("Check Cache", func(t *testing.T) { + for i := range testPolicies { + entry := cache.GetParsedPolicy(fmt.Sprintf("%x", testPolicies[i].Hash)) + require.NotNil(t, entry) + require.Equal(t, testPolicies[i].ID, entry.Policy.ID) + require.Equal(t, testPolicies[i].ModifyIndex, entry.Policy.Revision) + + // set this to detect using from the cache next time + entry.Policy.Revision = 9999 + } + }) + + t.Run("Cache Hits", func(t *testing.T) { + policies, err := testPolicies.resolveWithCache(cache, nil) + require.NoError(t, err) + require.Len(t, policies, 4) + for i := range testPolicies { + require.Equal(t, testPolicies[i].ID, policies[i].ID) + require.Equal(t, uint64(9999), policies[i].Revision) + } + }) +} + +func TestStructs_ACLPolicies_Compile(t *testing.T) { + t.Parallel() + + config := ACLCachesConfig{ + Identities: 0, + Policies: 0, + ParsedPolicies: 4, + Authorizers: 2, + } + cache, err := NewACLCaches(&config) + require.NoError(t, err) + + testPolicies := ACLPolicies{ + &ACLPolicy{ + ID: "5d5653a1-2c2b-4b36-b083-fc9f1398eb7b", + Name: "policy1", + Description: "policy1", + Rules: `node_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 1, + ModifyIndex: 2, + }, + }, + &ACLPolicy{ + ID: "b35541f0-a88a-48da-bc66-43553c60b628", + Name: "policy2", + Description: "policy2", + Rules: `agent_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 3, + ModifyIndex: 4, + }, + }, + &ACLPolicy{ + ID: "383abb79-94ca-46c6-89b7-8ecb69046de9", + Name: "policy3", + Description: "policy3", + Rules: `key_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 5, + ModifyIndex: 6, + }, + }, + &ACLPolicy{ + ID: "8bf38965-95e5-4e86-9be7-f6070cc0708b", + Name: "policy4", + Description: "policy4", + Rules: `service_prefix "" { policy = "read" }`, + Syntax: acl.SyntaxCurrent, + RaftIndex: RaftIndex{ + CreateIndex: 7, + ModifyIndex: 8, + }, + }, + } + + t.Run("Cache Miss", func(t *testing.T) { + authz, err := testPolicies.Compile(acl.DenyAll(), cache, nil) + require.NoError(t, err) + require.NotNil(t, authz) + + require.True(t, authz.NodeRead("foo")) + require.True(t, authz.AgentRead("foo")) + require.True(t, authz.KeyRead("foo")) + require.True(t, authz.ServiceRead("foo")) + require.False(t, authz.ACLRead()) + }) + + t.Run("Check Cache", func(t *testing.T) { + entry := cache.GetAuthorizer(testPolicies.HashKey()) + require.NotNil(t, entry) + authz := entry.Authorizer + require.NotNil(t, authz) + + require.True(t, authz.NodeRead("foo")) + require.True(t, authz.AgentRead("foo")) + require.True(t, authz.KeyRead("foo")) + require.True(t, authz.ServiceRead("foo")) + require.False(t, authz.ACLRead()) + + // setup the cache for the next test + cache.PutAuthorizer(testPolicies.HashKey(), acl.DenyAll()) + }) + + t.Run("Cache Hit", func(t *testing.T) { + authz, err := testPolicies.Compile(acl.DenyAll(), cache, nil) + require.NoError(t, err) + require.NotNil(t, authz) + + // we reset the Authorizer in the cache so now everything should be denied + require.False(t, authz.NodeRead("foo")) + require.False(t, authz.AgentRead("foo")) + require.False(t, authz.KeyRead("foo")) + require.False(t, authz.ServiceRead("foo")) + require.False(t, authz.ACLRead()) + }) } diff --git a/agent/structs/structs.go b/agent/structs/structs.go index cc9fa8047..cd2828932 100644 --- a/agent/structs/structs.go +++ b/agent/structs/structs.go @@ -35,18 +35,23 @@ const ( DeregisterRequestType = 1 KVSRequestType = 2 SessionRequestType = 3 - ACLRequestType = 4 + ACLRequestType = 4 // DEPRECATED (ACL-Legacy-Compat) TombstoneRequestType = 5 CoordinateBatchUpdateType = 6 PreparedQueryRequestType = 7 TxnRequestType = 8 AutopilotRequestType = 9 AreaRequestType = 10 - ACLBootstrapRequestType = 11 // FSM snapshots only. + ACLBootstrapRequestType = 11 IntentionRequestType = 12 ConnectCARequestType = 13 ConnectCAProviderStateType = 14 ConnectCAConfigType = 15 // FSM snapshots only. + IndexRequestType = 16 // FSM snapshots only. + ACLTokenUpsertRequestType = 17 + ACLTokenDeleteRequestType = 18 + ACLPolicyUpsertRequestType = 19 + ACLPolicyDeleteRequestType = 20 ) const ( @@ -95,7 +100,7 @@ type RPCInfo interface { RequestDatacenter() string IsRead() bool AllowStaleRead() bool - ACLToken() string + TokenSecret() string } // QueryOptions is used to specify various flags for read queries @@ -177,7 +182,7 @@ func (q QueryOptions) AllowStaleRead() bool { return q.AllowStale } -func (q QueryOptions) ACLToken() string { +func (q QueryOptions) TokenSecret() string { return q.Token } @@ -196,7 +201,7 @@ func (w WriteRequest) AllowStaleRead() bool { return false } -func (w WriteRequest) ACLToken() string { +func (w WriteRequest) TokenSecret() string { return w.Token } diff --git a/agent/structs/structs_test.go b/agent/structs/structs_test.go index 1404662b6..95edb42fb 100644 --- a/agent/structs/structs_test.go +++ b/agent/structs/structs_test.go @@ -55,7 +55,10 @@ func TestStructs_Implements(t *testing.T) { _ RPCInfo = &SessionRequest{} _ RPCInfo = &SessionSpecificRequest{} _ RPCInfo = &EventFireRequest{} - _ RPCInfo = &ACLPolicyRequest{} + _ RPCInfo = &ACLPolicyResolveLegacyRequest{} + _ RPCInfo = &ACLPolicyBatchReadRequest{} + _ RPCInfo = &ACLPolicyReadRequest{} + _ RPCInfo = &ACLTokenReadRequest{} _ RPCInfo = &KeyringRequest{} _ CompoundResponse = &KeyringResponses{} ) diff --git a/agent/user_event_test.go b/agent/user_event_test.go index 1f7914579..46144105e 100644 --- a/agent/user_event_test.go +++ b/agent/user_event_test.go @@ -195,7 +195,7 @@ func TestUserEventToken(t *testing.T) { Op: structs.ACLSet, ACL: structs.ACL{ Name: "User token", - Type: structs.ACLTypeClient, + Type: structs.ACLTokenTypeClient, Rules: testEventPolicy, }, WriteRequest: structs.WriteRequest{Token: "root"}, diff --git a/agent/xds/server.go b/agent/xds/server.go index 7a4a0addc..0676bc37e 100644 --- a/agent/xds/server.go +++ b/agent/xds/server.go @@ -62,7 +62,7 @@ const ( // entirely agent-local and all uses private methods this allows a simple shim // to be written in the agent package to allow resolving without tightly // coupling this to the agent. -type ACLResolverFunc func(id string) (acl.ACL, error) +type ACLResolverFunc func(id string) (acl.Authorizer, error) // ConnectAuthz is the interface the agent needs to expose to be able to re-use // the authorization logic between both APIs. diff --git a/agent/xds/server_test.go b/agent/xds/server_test.go index ecb27afa8..b11904cce 100644 --- a/agent/xds/server_test.go +++ b/agent/xds/server_test.go @@ -108,9 +108,9 @@ func (m *testManager) ConnectAuthorize(token string, req *structs.ConnectAuthori func TestServer_StreamAggregatedResources_BasicProtocol(t *testing.T) { logger := log.New(os.Stderr, "", log.LstdFlags) mgr := newTestManager(t) - aclResolve := func(id string) (acl.ACL, error) { + aclResolve := func(id string) (acl.Authorizer, error) { // Allow all - return acl.RootACL("manage"), nil + return acl.RootAuthorizer("manage"), nil } envoy := NewTestEnvoy(t, "web-sidecar-proxy", "") defer envoy.Close() @@ -570,21 +570,21 @@ func TestServer_StreamAggregatedResources_ACLEnforcment(t *testing.T) { t.Run(tt.name, func(t *testing.T) { logger := log.New(os.Stderr, "", log.LstdFlags) mgr := newTestManager(t) - aclResolve := func(id string) (acl.ACL, error) { + aclResolve := func(id string) (acl.Authorizer, error) { if !tt.defaultDeny { // Allow all - return acl.RootACL("allow"), nil + return acl.RootAuthorizer("allow"), nil } if tt.acl == "" { // No token and defaultDeny is denied - return acl.RootACL("deny"), nil + return acl.RootAuthorizer("deny"), nil } // Ensure the correct token was passed require.Equal(t, tt.token, id) // Parse the ACL and enforce it - policy, err := acl.Parse(tt.acl, nil) + policy, err := acl.NewPolicyFromSource("", 0, tt.acl, acl.SyntaxLegacy, nil) require.NoError(t, err) - return acl.New(acl.RootACL("deny"), policy, nil) + return acl.NewPolicyAuthorizer(acl.RootAuthorizer("deny"), []*acl.Policy{policy}, nil) } envoy := NewTestEnvoy(t, "web-sidecar-proxy", tt.token) defer envoy.Close() @@ -723,7 +723,7 @@ func TestServer_Check(t *testing.T) { // goroutine is touching this yet. mgr.authz[token] = tt.authzResult - aclResolve := func(id string) (acl.ACL, error) { + aclResolve := func(id string) (acl.Authorizer, error) { return nil, nil } envoy := NewTestEnvoy(t, "web-sidecar-proxy", token) diff --git a/api/acl.go b/api/acl.go index 8ec9aa585..ca2e4e0cc 100644 --- a/api/acl.go +++ b/api/acl.go @@ -1,6 +1,8 @@ package api import ( + "fmt" + "io/ioutil" "time" ) @@ -12,7 +14,42 @@ const ( ACLManagementType = "management" ) -// ACLEntry is used to represent an ACL entry +type ACLTokenPolicyLink struct { + ID string + Name string +} + +// ACLToken represents an ACL Token +type ACLToken struct { + CreateIndex uint64 + ModifyIndex uint64 + AccessorID string + SecretID string + Description string + Policies []*ACLTokenPolicyLink + Local bool + CreateTime time.Time `json:",omitempty"` + Hash []byte `json:",omitempty"` + + // DEPRECATED (ACL-Legacy-Compat) + // Rules will only be present for legacy tokens returned via the new APIs + Rules string `json:",omitempty"` +} + +type ACLTokenListEntry struct { + CreateIndex uint64 + ModifyIndex uint64 + AccessorID string + Description string + Policies []*ACLTokenPolicyLink + Local bool + CreateTime time.Time + Hash []byte + Legacy bool +} + +// ACLEntry is used to represent a legacy ACL token +// The legacy tokens are deprecated. type ACLEntry struct { CreateIndex uint64 ModifyIndex uint64 @@ -32,6 +69,28 @@ type ACLReplicationStatus struct { LastError time.Time } +// ACLPolicy represents an ACL Policy. +type ACLPolicy struct { + ID string + Name string + Description string + Rules string + Datacenters []string + Hash []byte + CreateIndex uint64 + ModifyIndex uint64 +} + +type ACLPolicyListEntry struct { + ID string + Name string + Description string + Datacenters []string + Hash []byte + CreateIndex uint64 + ModifyIndex uint64 +} + // ACL can be used to query the ACL endpoints type ACL struct { c *Client @@ -44,20 +103,20 @@ func (c *Client) ACL() *ACL { // Bootstrap is used to perform a one-time ACL bootstrap operation on a cluster // to get the first management token. -func (a *ACL) Bootstrap() (string, *WriteMeta, error) { +func (a *ACL) Bootstrap() (*ACLToken, *WriteMeta, error) { r := a.c.newRequest("PUT", "/v1/acl/bootstrap") rtt, resp, err := requireOK(a.c.doRequest(r)) if err != nil { - return "", nil, err + return nil, nil, err } defer resp.Body.Close() wm := &WriteMeta{RequestTime: rtt} - var out struct{ ID string } + var out ACLToken if err := decodeBody(resp, &out); err != nil { - return "", nil, err + return nil, nil, err } - return out.ID, wm, nil + return &out, wm, nil } // Create is used to generate a new token with the given parameters @@ -191,3 +250,296 @@ func (a *ACL) Replication(q *QueryOptions) (*ACLReplicationStatus, *QueryMeta, e } return entries, qm, nil } + +func (a *ACL) TokenCreate(token *ACLToken, q *WriteOptions) (*ACLToken, *WriteMeta, error) { + if token.AccessorID != "" { + return nil, nil, fmt.Errorf("Cannot specify an AccessorID in Token Creation") + } + + if token.SecretID != "" { + return nil, nil, fmt.Errorf("Cannot specify a SecretID in Token Creation") + } + + r := a.c.newRequest("PUT", "/v1/acl/token") + r.setWriteOptions(q) + r.obj = token + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + var out ACLToken + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, wm, nil +} + +func (a *ACL) TokenUpdate(token *ACLToken, q *WriteOptions) (*ACLToken, *WriteMeta, error) { + if token.AccessorID == "" { + return nil, nil, fmt.Errorf("Must specify an AccessorID for Token Updating") + } + r := a.c.newRequest("PUT", "/v1/acl/token/"+token.AccessorID) + r.setWriteOptions(q) + r.obj = token + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + var out ACLToken + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, wm, nil +} + +func (a *ACL) TokenClone(tokenID string, description string, q *WriteOptions) (*ACLToken, *WriteMeta, error) { + if tokenID == "" { + return nil, nil, fmt.Errorf("Must specify a tokenID for Token Cloning") + } + + r := a.c.newRequest("PUT", "/v1/acl/token/clone/"+tokenID) + r.setWriteOptions(q) + r.obj = struct{ Description string }{description} + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + var out ACLToken + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, wm, nil +} + +func (a *ACL) TokenDelete(tokenID string, q *WriteOptions) (*WriteMeta, error) { + r := a.c.newRequest("DELETE", "/v1/acl/token/"+tokenID) + r.setWriteOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, err + } + resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + return wm, nil +} + +func (a *ACL) TokenRead(tokenID string, q *QueryOptions) (*ACLToken, *QueryMeta, error) { + r := a.c.newRequest("GET", "/v1/acl/token/"+tokenID) + r.setQueryOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + + var out ACLToken + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, qm, nil +} + +func (a *ACL) TokenReadSelf(q *QueryOptions) (*ACLToken, *QueryMeta, error) { + r := a.c.newRequest("GET", "/v1/acl/token/self") + r.setQueryOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + + var out ACLToken + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, qm, nil +} + +func (a *ACL) TokenList(q *QueryOptions) ([]*ACLTokenListEntry, *QueryMeta, error) { + r := a.c.newRequest("GET", "/v1/acl/tokens") + r.setQueryOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + + var entries []*ACLTokenListEntry + if err := decodeBody(resp, &entries); err != nil { + return nil, nil, err + } + return entries, qm, nil +} + +// TokenUpgrade performs an almost identical operation as TokenUpdate. The only difference is +// that not all parts of the token must be specified here and the server will patch the token +// with the existing secret id, description etc. +func (a *ACL) TokenUpgrade(token *ACLToken, q *WriteOptions) (*ACLToken, *WriteMeta, error) { + if token.AccessorID == "" { + return nil, nil, fmt.Errorf("Must specify an AccessorID for Token Updating") + } + r := a.c.newRequest("PUT", "/v1/acl/token/upgrade"+token.AccessorID) + r.setWriteOptions(q) + r.obj = token + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + var out ACLToken + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, wm, nil +} + +func (a *ACL) PolicyCreate(policy *ACLPolicy, q *WriteOptions) (*ACLPolicy, *WriteMeta, error) { + if policy.ID != "" { + return nil, nil, fmt.Errorf("Cannot specify an ID in Policy Creation") + } + + r := a.c.newRequest("PUT", "/v1/acl/policy") + r.setWriteOptions(q) + r.obj = policy + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + var out ACLPolicy + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, wm, nil +} + +func (a *ACL) PolicyUpdate(policy *ACLPolicy, q *WriteOptions) (*ACLPolicy, *WriteMeta, error) { + if policy.ID == "" { + return nil, nil, fmt.Errorf("Must specify an ID in Policy Creation") + } + + r := a.c.newRequest("PUT", "/v1/acl/policy/"+policy.ID) + r.setWriteOptions(q) + r.obj = policy + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + var out ACLPolicy + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, wm, nil +} + +func (a *ACL) PolicyDelete(policyID string, q *WriteOptions) (*WriteMeta, error) { + r := a.c.newRequest("DELETE", "/v1/acl/policy/"+policyID) + r.setWriteOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, err + } + resp.Body.Close() + + wm := &WriteMeta{RequestTime: rtt} + return wm, nil +} + +func (a *ACL) PolicyRead(policyID string, q *QueryOptions) (*ACLPolicy, *QueryMeta, error) { + r := a.c.newRequest("GET", "/v1/acl/policy/"+policyID) + r.setQueryOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + + var out ACLPolicy + if err := decodeBody(resp, &out); err != nil { + return nil, nil, err + } + + return &out, qm, nil +} + +func (a *ACL) PolicyList(q *QueryOptions) ([]*ACLPolicyListEntry, *QueryMeta, error) { + r := a.c.newRequest("GET", "/v1/acl/policies") + r.setQueryOptions(q) + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return nil, nil, err + } + defer resp.Body.Close() + + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + + var entries []*ACLPolicyListEntry + if err := decodeBody(resp, &entries); err != nil { + return nil, nil, err + } + return entries, qm, nil +} + +func (a *ACL) PolicyTranslate(rules string) (string, error) { + r := a.c.newRequest("POST", "/v1/acl/policy/translate") + r.obj = rules + rtt, resp, err := requireOK(a.c.doRequest(r)) + if err != nil { + return "", err + } + defer resp.Body.Close() + qm := &QueryMeta{} + parseQueryMeta(resp, qm) + qm.RequestTime = rtt + + ruleBytes, err := ioutil.ReadAll(resp.Body) + if err != nil { + return "", fmt.Errorf("Failed to read translated rule body: %v", err) + } + + return string(ruleBytes), nil + +} diff --git a/api/acl_test.go b/api/acl_test.go index 5b0e840af..255ca8e9f 100644 --- a/api/acl_test.go +++ b/api/acl_test.go @@ -122,7 +122,8 @@ func TestAPI_ACLList(t *testing.T) { t.Fatalf("err: %v", err) } - if len(acls) < 2 { + // anon token is a new token + if len(acls) < 1 { t.Fatalf("bad: %v", acls) } diff --git a/api/api_test.go b/api/api_test.go index 097ac7ef4..eec07aec4 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -35,8 +35,9 @@ func makeACLClient(t *testing.T) (*Client, *testutil.TestServer) { return makeClientWithConfig(t, func(clientConfig *Config) { clientConfig.Token = "root" }, func(serverConfig *testutil.TestServerConfig) { + serverConfig.PrimaryDatacenter = "dc1" serverConfig.ACLMasterToken = "root" - serverConfig.ACLDatacenter = "dc1" + serverConfig.ACL.Enabled = true serverConfig.ACLDefaultPolicy = "deny" }) } diff --git a/build-support/docker/Consul-Dev.dockerfile b/build-support/docker/Consul-Dev.dockerfile index 2b581f44a..6973b068e 100644 --- a/build-support/docker/Consul-Dev.dockerfile +++ b/build-support/docker/Consul-Dev.dockerfile @@ -1,12 +1,15 @@ -FROM golang:latest as builder +ARG CONSUL_BUILD_IMAGE +FROM ${CONSUL_BUILD_IMAGE}:latest as builder +# FROM golang:latest as builder ARG GIT_COMMIT ARG GIT_DIRTY ARG GIT_DESCRIBE -WORKDIR /go/src/github.com/hashicorp/consul +# WORKDIR /go/src/github.com/hashicorp/consul ENV CONSUL_DEV=1 ENV COLORIZE=0 Add . /go/src/github.com/hashicorp/consul/ -RUN make +RUN make dev + FROM consul:latest diff --git a/build-support/functions/10-util.sh b/build-support/functions/10-util.sh index 9dee97eb8..f7562febc 100644 --- a/build-support/functions/10-util.sh +++ b/build-support/functions/10-util.sh @@ -4,9 +4,9 @@ function err { tput bold tput setaf 1 fi - + echo "$@" 1>&2 - + if test "${COLORIZE}" -eq 1 then tput sgr0 @@ -19,9 +19,9 @@ function status { tput bold tput setaf 4 fi - + echo "$@" - + if test "${COLORIZE}" -eq 1 then tput sgr0 @@ -34,13 +34,13 @@ function status_stage { tput bold tput setaf 2 fi - + echo "$@" - + if test "${COLORIZE}" -eq 1 then tput sgr0 - fi + fi } function debug { @@ -76,7 +76,7 @@ function is_set { # Return: # 0 - is truthy (backwards I know but allows syntax like `if is_set ` to work) # 1 - is not truthy - + local val=$(tr '[:upper:]' '[:lower:]' <<< "$1") case $val in 1 | t | true | y | yes) @@ -95,7 +95,7 @@ function have_gpg_key { # Return: # 0 - success (we can use this key for signing) # * - failure (key cannot be used) - + gpg --list-secret-keys $1 > /dev/null 2>&1 return $? } @@ -114,44 +114,44 @@ function parse_version { # Notes: # If the GOTAGS environment variable is present then it is used to determine which # version file to use for parsing. - + local vfile="${1}/version/version.go" - + # ensure the version file exists if ! test -f "${vfile}" then err "Error - File not found: ${vfile}" return 1 fi - + local include_release="$2" local use_git_env="$3" local omit_version="$4" - + local git_version="" local git_commit="" - + if test -z "${include_release}" then include_release=true fi - + if test -z "${use_git_env}" then use_git_env=true fi - + if is_set "${use_git_env}" then git_version="${GIT_DESCRIBE}" git_commit="${GIT_COMMIT}" fi - + # Get the main version out of the source file version_main=$(awk '$1 == "Version" && $2 == "=" { gsub(/"/, "", $3); print $3 }' < ${vfile}) release_main=$(awk '$1 == "VersionPrerelease" && $2 == "=" { gsub(/"/, "", $3); print $3 }' < ${vfile}) - + # try to determine the version if we have build tags for tag in "$GOTAGS" do @@ -171,34 +171,34 @@ function parse_version { then version="${git_version}" fi - - local rel_ver="" + + local rel_ver="" if is_set "${include_release}" then # Default to pre-release from the source rel_ver="${release_main}" - - # When no GIT_DESCRIBE env var is present and no release is in the source then we + + # When no GIT_DESCRIBE env var is present and no release is in the source then we # are definitely in dev mode if test -z "${git_version}" -a -z "${rel_ver}" && is_set "${use_git_env}" then rel_ver="dev" fi - + # Add the release to the version if test -n "${rel_ver}" -a -n "${git_commit}" then rel_ver="${rel_ver} (${git_commit})" fi fi - + if test -n "${rel_ver}" then if is_set "${omit_version}" then echo "${rel_ver}" | tr -d "'" else - echo "${version}-${rel_ver}" | tr -d "'" + echo "${version}-${rel_ver}" | tr -d "'" fi return 0 elif ! is_set "${omit_version}" @@ -225,14 +225,14 @@ function get_version { # In addition to processing the main version.go, version_*.go files will be processed if they have # a Go build tag that matches the one in the GOTAGS environment variable. This tag processing is # primitive though and will not match complex build tags in the files with negation etc. - + local vers="$VERSION" if test -z "$vers" then # parse the OSS version from version.go vers="$(parse_version ${1} ${2} ${3})" fi - + if test -z "$vers" then return 1 @@ -252,20 +252,20 @@ function git_branch { # # Notes: # Echos the current branch to stdout when successful - + local gdir="$(pwd)" if test -d "$1" then gdir="$1" fi - + pushd "${gdir}" > /dev/null - local ret=0 + local ret=0 local head="$(git status -b --porcelain=v2 | awk '{if ($1 == "#" && $2 =="branch.head") { print $3 }}')" || ret=1 - + popd > /dev/null - + test ${ret} -eq 0 && echo "$head" return ${ret} } @@ -280,20 +280,20 @@ function git_upstream { # # Notes: # Echos the current upstream branch to stdout when successful - + local gdir="$(pwd)" if test -d "$1" then gdir="$1" fi - + pushd "${gdir}" > /dev/null - local ret=0 + local ret=0 local head="$(git status -b --porcelain=v2 | awk '{if ($1 == "#" && $2 =="branch.upstream") { print $3 }}')" || ret=1 - + popd > /dev/null - + test ${ret} -eq 0 && echo "$head" return ${ret} } @@ -306,26 +306,26 @@ function git_log_summary { # 0 - success # * - failure # - + local gdir="$(pwd)" if test -d "$1" then gdir="$1" fi - + pushd "${gdir}" > /dev/null - + local ret=0 - + local head=$(git_branch) || ret=1 local upstream=$(git_upstream) || ret=1 local rev_range="${head}...${upstream}" - + if test ${ret} -eq 0 then status "Git Changes:" git log --pretty=oneline ${rev_range} || ret=1 - + fi return $ret } @@ -339,22 +339,22 @@ function git_diff { # 0 - success # * - failure # - + local gdir="$(pwd)" if test -d "$1" then gdir="$1" fi - + shift - + pushd "${gdir}" > /dev/null - + local ret=0 - + local head=$(git_branch) || ret=1 local upstream=$(git_upstream) || ret=1 - + if test ${ret} -eq 0 then status "Git Diff - Paths: $@" @@ -383,27 +383,27 @@ function git_remote_url { # # Note: # The push url for the git remote will be echoed to stdout - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. git_remote_url must be called with the path to the top level source as the first argument'" + err "ERROR: '$1' is not a directory. git_remote_url must be called with the path to the top level source as the first argument'" return 1 fi - + if test -z "$2" then err "ERROR: git_remote_url must be called with a second argument that is the name of the remote" return 1 fi - + local ret=0 - + pushd "$1" > /dev/null - + local url=$(git remote get-url --push $2 2>&1) || ret=1 - + popd > /dev/null - + if test "${ret}" -eq 0 then echo "${url}" @@ -421,24 +421,24 @@ function find_git_remote { # # Note: # The remote name to use for publishing will be echoed to stdout upon success - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. find_git_remote must be called with the path to the top level source as the first argument'" + err "ERROR: '$1' is not a directory. find_git_remote must be called with the path to the top level source as the first argument'" return 1 fi - + need_url=$(normalize_git_url "${PUBLISH_GIT_HOST}:${PUBLISH_GIT_REPO}") debug "Required normalized remote: ${need_url}" - + pushd "$1" > /dev/null - + local ret=1 for remote in $(git remote) do url=$(git remote get-url --push ${remote}) || continue url=$(normalize_git_url "${url}") - + debug "Testing Remote: ${remote}: ${url}" if test "${url}" == "${need_url}" then @@ -447,7 +447,7 @@ function find_git_remote { break fi done - + popd > /dev/null return ${ret} } @@ -472,20 +472,20 @@ function is_git_clean { # 0 - success # * - error # - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. is_git_clean must be called with the path to a git repo as the first argument'" + err "ERROR: '$1' is not a directory. is_git_clean must be called with the path to a git repo as the first argument'" return 1 fi - + local output_status="$2" - + pushd "${1}" > /dev/null - + local ret=0 test -z "$(git status --porcelain=v2 2> /dev/null)" || ret=1 - + if is_set "${output_status}" && test "$ret" -ne 0 then err "Git repo is not clean" @@ -504,13 +504,13 @@ function update_git_env { # 0 - success # * - error # - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. is_git_clean must be called with the path to a git repo as the first argument'" + err "ERROR: '$1' is not a directory. is_git_clean must be called with the path to a git repo as the first argument'" return 1 fi - + export GIT_COMMIT=$(git rev-parse --short HEAD) export GIT_DIRTY=$(test -n "$(git status --porcelain)" && echo "+CHANGES") export GIT_DESCRIBE=$(git describe --tags --always) @@ -528,35 +528,35 @@ function git_push_ref { # Returns: # 0 - success # * - error - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. push_git_release must be called with the path to the top level source as the first argument'" + err "ERROR: '$1' is not a directory. push_git_release must be called with the path to the top level source as the first argument'" return 1 fi - + local sdir="$1" local ret=0 local remote="$3" - + # find the correct remote corresponding to the desired repo (basically prevent pushing enterprise to oss or oss to enterprise) if test -z "${remote}" then local remote=$(find_git_remote "${sdir}") || return 1 status "Using git remote: ${remote}" fi - + local ref="" - + pushd "${sdir}" > /dev/null - + if test -z "$2" then # If no git ref was provided we lookup the current local branch and its tracking branch # It must have a tracking upstream and it must be tracking the sanctioned git remote local head=$(git_branch "${sdir}") || return 1 local upstream=$(git_upstream "${sdir}") || return 1 - + # upstream branch for this branch does not track the remote we need to push to # basically this checks that the upstream (could be something like origin/master) references the correct remote # if it doesn't then the string modification wont apply and the var will reamin unchanged and equal to itself. @@ -570,7 +570,7 @@ function git_push_ref { # A git ref was provided - get the full ref and make sure it isn't ambiguous and also to # be able to determine whether its a branch or tag we are pushing ref_out=$(git rev-parse --symbolic-full-name "$2" --) - + # -ne 2 because it should have the ref on one line followed by a line with '--' if test "$(wc -l <<< "${ref_out}")" -ne 2 then @@ -578,10 +578,10 @@ function git_push_ref { debug "${ref_out}" ret=1 else - ref=$(head -n 1 <<< "${ref_out}") + ref=$(head -n 1 <<< "${ref_out}") fi fi - + if test ${ret} -eq 0 then case "${ref}" in @@ -595,16 +595,16 @@ function git_push_ref { err "ERROR: git_push_ref func is refusing to push ref that isn't a branch or tag" return 1 esac - + if ! git push "${remote}" "${ref}" then err "ERROR: Failed to push ${ref} to remote: ${remote}" ret=1 fi fi - + popd > /dev/null - + return $ret } @@ -617,23 +617,23 @@ function update_version { # Returns: # 0 - success # * - error - + if ! test -f "$1" then - err "ERROR: '$1' is not a regular file. update_version must be called with the path to a go version file" + err "ERROR: '$1' is not a regular file. update_version must be called with the path to a go version file" return 1 fi - + if test -z "$2" then err "ERROR: The version specified was empty" return 1 fi - + local vfile="$1" local version="$2" local prerelease="$3" - + sed_i ${SED_EXT} -e "s/(Version[[:space:]]*=[[:space:]]*)\"[^\"]*\"/\1\"${version}\"/g" -e "s/(VersionPrerelease[[:space:]]*=[[:space:]]*)\"[^\"]*\"/\1\"${prerelease}\"/g" "${vfile}" return $? } @@ -647,28 +647,28 @@ function set_changelog_version { # Returns: # 0 - success # * - error - + local changelog="${1}/CHANGELOG.md" local version="$2" local rel_date="$3" - + if ! test -f "${changelog}" then err "ERROR: File not found: ${changelog}" return 1 fi - + if test -z "${version}" then err "ERROR: Must specify a version to put into the changelog" return 1 fi - + if test -z "${rel_date}" then rel_date=$(date +"%B %d, %Y") fi - + sed_i ${SED_EXT} -e "s/## UNRELEASED/## ${version} (${rel_date})/" "${changelog}" return $? } @@ -680,15 +680,15 @@ function unset_changelog_version { # Returns: # 0 - success # * - error - + local changelog="${1}/CHANGELOG.md" - + if ! test -f "${changelog}" then err "ERROR: File not found: ${changelog}" return 1 fi - + sed_i ${SED_EXT} -e "1 s/^## [0-9]+\.[0-9]+\.[0-9]+ \([^)]*\)/## UNRELEASED/" "${changelog}" return $? } @@ -700,21 +700,21 @@ function add_unreleased_to_changelog { # Returns: # 0 - success # * - error - + local changelog="${1}/CHANGELOG.md" - + if ! test -f "${changelog}" then err "ERROR: File not found: ${changelog}" return 1 fi - + # Check if we are already in unreleased mode if head -n 1 "${changelog}" | grep -q -c UNRELEASED then return 0 fi - + local tfile="$(mktemp) -t "CHANGELOG.md_")" ( echo -e "## UNRELEASED\n" > "${tfile}" && @@ -732,50 +732,50 @@ function set_release_mode { # $2 - The version of the release # $3 - The release date # $4 - The pre-release version - # + # # # Returns: # 0 - success # * - error - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. set_release_mode must be called with the path to a git repo as the first argument" + err "ERROR: '$1' is not a directory. set_release_mode must be called with the path to a git repo as the first argument" return 1 fi - + if test -z "$2" then err "ERROR: The version specified was empty" return 1 fi - + local sdir="$1" local vers="$2" local rel_date="$(date +"%B %d, %Y")" - + if test -n "$3" then rel_date="$3" fi - + local changelog_vers="${vers}" if test -n "$4" then changelog_vers="${vers}-$4" fi - + status_stage "==> Updating CHANGELOG.md with release info: ${changelog_vers} (${rel_date})" set_changelog_version "${sdir}" "${changelog_vers}" "${rel_date}" || return 1 - + status_stage "==> Updating version/version.go" if ! update_version "${sdir}/version/version.go" "${vers}" "$4" then unset_changelog_version "${sdir}" return 1 fi - - return 0 + + return 0 } function set_dev_mode { @@ -785,22 +785,22 @@ function set_dev_mode { # Returns: # 0 - success # * - error - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. set_dev_mode must be called with the path to a git repo as the first argument'" + err "ERROR: '$1' is not a directory. set_dev_mode must be called with the path to a git repo as the first argument'" return 1 fi - + local sdir="$1" local vers="$(parse_version "${sdir}" false false)" - + status_stage "==> Setting VersionPreRelease back to 'dev'" update_version "${sdir}/version/version.go" "${vers}" dev || return 1 - + status_stage "==> Adding new UNRELEASED label in CHANGELOG.md" add_unreleased_to_changelog "${sdir}" || return 1 - + return 0 } @@ -811,28 +811,28 @@ function git_staging_empty { # Returns: # 0 - success (nothing staged) # * - error (staged files) - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. commit_dev_mode must be called with the path to a git repo as the first argument'" + err "ERROR: '$1' is not a directory. commit_dev_mode must be called with the path to a git repo as the first argument'" return 1 fi - + pushd "$1" > /dev/null - + declare -i ret=0 - + for status in $(git status --porcelain=v2 | awk '{print $2}' | cut -b 1) do if test "${status}" != "." - then + then ret=1 break fi done - + popd > /dev/null - return ${ret} + return ${ret} } function commit_dev_mode { @@ -842,31 +842,31 @@ function commit_dev_mode { # Returns: # 0 - success # * - error - + if ! test -d "$1" then - err "ERROR: '$1' is not a directory. commit_dev_mode must be called with the path to a git repo as the first argument'" + err "ERROR: '$1' is not a directory. commit_dev_mode must be called with the path to a git repo as the first argument'" return 1 fi - + status "Checking for previously staged files" git_staging_empty "$1" || return 1 - + declare -i ret=0 - + pushd "$1" > /dev/null - + status "Staging CHANGELOG.md and version_*.go files" git add CHANGELOG.md && git add version/version*.go ret=$? - + if test ${ret} -eq 0 then status "Adding Commit" git commit -m "Putting source back into Dev Mode" - ret=$? + ret=$? fi - + popd >/dev/null return ${ret} } @@ -879,14 +879,14 @@ function gpg_detach_sign { # Returns: # 0 - success # * - failure - + # determine whether the gpg key to use is being overridden local gpg_key=${HASHICORP_GPG_KEY} if test -n "$2" then gpg_key=$2 fi - + gpg --default-key "${gpg_key}" --detach-sig --yes -v "$1" return $? } @@ -899,24 +899,24 @@ function shasum_directory { # Returns: # 0 - success # * - failure - + if ! test -d "$1" then err "ERROR: '$1' is not a directory and shasum_release requires passing a directory as the first argument" return 1 fi - + if test -z "$2" then err "ERROR: shasum_release requires a second argument to be the filename to output the shasums to but none was given" - return 1 + return 1 fi - + pushd $1 > /dev/null shasum -a256 * > "$2" ret=$? popd >/dev/null - + return $ret } @@ -934,7 +934,7 @@ function shasum_directory { err "ERROR: No such file: '$1'" return 1 fi - + local ui_version=$(sed -n ${SED_EXT} -e 's/.*CONSUL_VERSION%22%3A%22([^%]*)%22%2C%22.*/\1/p' < "$1") || return 1 echo "$ui_version" return 0 diff --git a/command/acl/acl.go b/command/acl/acl.go new file mode 100644 index 000000000..1a49a9d89 --- /dev/null +++ b/command/acl/acl.go @@ -0,0 +1,55 @@ +package acl + +import ( + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New() *cmd { + return &cmd{} +} + +type cmd struct{} + +func (c *cmd) Run(args []string) int { + return cli.RunResultHelp +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(help, nil) +} + +const synopsis = "Interact with the Consul's ACLs" +const help = ` +Usage: consul acl [options] [args] + + This command has subcommands for interacting with Consul's ACLs. + Here are some simple examples, and more detailed examples are available + in the subcommands or the documentation. + + Bootstrap ACLs: + + $ consul acl bootstrap + + List all ACL Tokens: + + $ consul acl tokens list + + Create a new ACL Policy: + + $ consul acl policy create “new-policy” \ + -description “This is an example policy” \ + -datacenter “dc1” \ + -datacenter “dc2” \ + -rules @rules.hcl + + Set the default agent token: + + $ consul acl set-agent-token default 0bc6bc46-f25e-4262-b2d9-ffbe1d96be6f + + For more examples, ask for subcommand help or view the documentation. +` diff --git a/command/acl/acl_helpers.go b/command/acl/acl_helpers.go new file mode 100644 index 000000000..4a93a4606 --- /dev/null +++ b/command/acl/acl_helpers.go @@ -0,0 +1,175 @@ +package acl + +import ( + "fmt" + "strings" + + "github.com/hashicorp/consul/api" + "github.com/mitchellh/cli" +) + +func PrintToken(token *api.ACLToken, ui cli.Ui, showMeta bool) { + ui.Info(fmt.Sprintf("AccessorID: %s", token.AccessorID)) + ui.Info(fmt.Sprintf("SecretID: %s", token.SecretID)) + ui.Info(fmt.Sprintf("Description: %s", token.Description)) + ui.Info(fmt.Sprintf("Local: %t", token.Local)) + ui.Info(fmt.Sprintf("Create Time: %v", token.CreateTime)) + if showMeta { + ui.Info(fmt.Sprintf("Hash: %x", token.Hash)) + ui.Info(fmt.Sprintf("Create Index: %d", token.CreateIndex)) + ui.Info(fmt.Sprintf("Modify Index: %d", token.ModifyIndex)) + } + ui.Info(fmt.Sprintf("Policies:")) + for _, policy := range token.Policies { + ui.Info(fmt.Sprintf(" %s - %s", policy.ID, policy.Name)) + } + if token.Rules != "" { + ui.Info(fmt.Sprintf("Rules:")) + ui.Info(token.Rules) + } +} + +func PrintTokenListEntry(token *api.ACLTokenListEntry, ui cli.Ui, showMeta bool) { + ui.Info(fmt.Sprintf("AccessorID: %s", token.AccessorID)) + ui.Info(fmt.Sprintf("Description: %s", token.Description)) + ui.Info(fmt.Sprintf("Local: %t", token.Local)) + ui.Info(fmt.Sprintf("Create Time: %v", token.CreateTime)) + ui.Info(fmt.Sprintf("Legacy: %t", token.Legacy)) + if showMeta { + ui.Info(fmt.Sprintf("Hash: %x", token.Hash)) + ui.Info(fmt.Sprintf("Create Index: %d", token.CreateIndex)) + ui.Info(fmt.Sprintf("Modify Index: %d", token.ModifyIndex)) + } + ui.Info(fmt.Sprintf("Policies:")) + for _, policy := range token.Policies { + ui.Info(fmt.Sprintf(" %s - %s", policy.ID, policy.Name)) + } +} + +func PrintPolicy(policy *api.ACLPolicy, ui cli.Ui, showMeta bool) { + ui.Info(fmt.Sprintf("ID: %s", policy.ID)) + ui.Info(fmt.Sprintf("Name: %s", policy.Name)) + ui.Info(fmt.Sprintf("Description: %s", policy.Description)) + ui.Info(fmt.Sprintf("Datacenters: %s", strings.Join(policy.Datacenters, ", "))) + if showMeta { + ui.Info(fmt.Sprintf("Hash: %x", policy.Hash)) + ui.Info(fmt.Sprintf("Create Index: %d", policy.CreateIndex)) + ui.Info(fmt.Sprintf("Modify Index: %d", policy.ModifyIndex)) + } + ui.Info(fmt.Sprintf("Rules:")) + ui.Info(policy.Rules) +} + +func PrintPolicyListEntry(policy *api.ACLPolicyListEntry, ui cli.Ui, showMeta bool) { + ui.Info(fmt.Sprintf("%s:", policy.Name)) + ui.Info(fmt.Sprintf(" ID: %s", policy.ID)) + ui.Info(fmt.Sprintf(" Description: %s", policy.Description)) + ui.Info(fmt.Sprintf(" Datacenters: %s", strings.Join(policy.Datacenters, ", "))) + if showMeta { + ui.Info(fmt.Sprintf(" Hash: %x", policy.Hash)) + ui.Info(fmt.Sprintf(" Create Index: %d", policy.CreateIndex)) + ui.Info(fmt.Sprintf(" Modify Index: %d", policy.ModifyIndex)) + } +} + +func GetTokenIDFromPartial(client *api.Client, partialID string) (string, error) { + // the full UUID string was given + if len(partialID) == 36 { + return partialID, nil + } + + tokens, _, err := client.ACL().TokenList(nil) + if err != nil { + return "", err + } + + tokenID := "" + for _, token := range tokens { + if strings.HasPrefix(token.AccessorID, partialID) { + if tokenID != "" { + return "", fmt.Errorf("Partial token ID is not unique") + } + tokenID = token.AccessorID + } + } + + if tokenID == "" { + return "", fmt.Errorf("No such token ID with prefix: %s", partialID) + } + + return tokenID, nil +} + +func GetPolicyIDFromPartial(client *api.Client, partialID string) (string, error) { + // The full UUID string was given + if len(partialID) == 36 { + return partialID, nil + } + + policies, _, err := client.ACL().PolicyList(nil) + if err != nil { + return "", err + } + + policyID := "" + for _, policy := range policies { + if strings.HasPrefix(policy.ID, partialID) { + if policyID != "" { + return "", fmt.Errorf("Partial policy ID is not unique") + } + policyID = policy.ID + } + } + + if policyID == "" { + return "", fmt.Errorf("No such policy ID with prefix: %s", partialID) + } + + return policyID, nil +} + +func GetPolicyIDByName(client *api.Client, name string) (string, error) { + if name == "" { + return "", fmt.Errorf("No name specified") + } + + policies, _, err := client.ACL().PolicyList(nil) + if err != nil { + return "", err + } + + for _, policy := range policies { + if policy.Name == name { + return policy.ID, nil + } + } + + return "", fmt.Errorf("No such policy with name %s", name) +} + +func GetRulesFromLegacyToken(client *api.Client, tokenID string, isSecret bool) (string, error) { + var token *api.ACLToken + var err error + if isSecret { + qopts := api.QueryOptions{ + Token: tokenID, + } + token, _, err = client.ACL().TokenReadSelf(&qopts) + } else { + token, _, err = client.ACL().TokenRead(tokenID, nil) + } + + if err != nil { + return "", fmt.Errorf("Error reading token: %v", err) + } + + if token == nil { + return "", fmt.Errorf("Token not found for ID") + } + + if token.Rules == "" { + return "", fmt.Errorf("Token is not a legacy token with rules") + } + + return token.Rules, nil +} diff --git a/command/acl/agenttokens/agent_tokens.go b/command/acl/agenttokens/agent_tokens.go new file mode 100644 index 000000000..a0e3f1d7a --- /dev/null +++ b/command/acl/agenttokens/agent_tokens.go @@ -0,0 +1,134 @@ +package agenttokens + +import ( + "flag" + "fmt" + "io" + + "github.com/hashicorp/consul/command/flags" + "github.com/hashicorp/consul/command/helpers" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + testStdin io.Reader +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + tokenType, token, err := c.dataFromArgs(c.flags.Args()) + if err != nil { + c.UI.Error(fmt.Sprintf("Error! %s", err)) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul Agent: %s", err)) + return 1 + } + + switch tokenType { + case "default": + _, err = client.Agent().UpdateACLToken(token, nil) + case "agent": + _, err = client.Agent().UpdateACLAgentToken(token, nil) + case "master": + _, err = client.Agent().UpdateACLAgentMasterToken(token, nil) + case "replication": + _, err = client.Agent().UpdateACLReplicationToken(token, nil) + default: + c.UI.Error(fmt.Sprintf("Unknown token type")) + return 1 + } + + if err != nil { + c.UI.Error(fmt.Sprintf("Failed to set ACL token %q: %v", tokenType, err)) + return 1 + } + + c.UI.Info(fmt.Sprintf("ACL token %q set successfully", tokenType)) + return 0 +} + +func (c *cmd) dataFromArgs(args []string) (string, string, error) { + switch len(args) { + case 0: + return "", "", fmt.Errorf("Missing TYPE and TOKEN arguments") + case 1: + switch args[0] { + case "default", "agent", "master", "replication": + return "", "", fmt.Errorf("Missing TOKEN argument") + default: + return "", "", fmt.Errorf("MISSING TYPE argument") + } + case 2: + data, err := helpers.LoadDataSource(args[1], c.testStdin) + if err != nil { + return "", "", err + } + + return args[0], data, nil + default: + return "", "", fmt.Errorf("Too many arguments: expected 2 got %d", len(args)) + } +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Interact with the Consul's ACLs" +const help = ` +Usage: consul acl set-agent-token [options] TYPE TOKEN + + This command will set the corresponding token for the agent to use. + Note that the tokens uploaded this way are not persisted and if + the agent reloads then the tokens will need to be set again. + + Token Types: + + default The default token is the token that the agent will use for + both internal agent operations and operations initiated by + the HTTP and DNS interfaces when no specific token is provided. + If not set the agent will use the anonymous token. + + agent The token that the agent will use for internal agent operations. + If not given then the default token is used for these operations. + + master This sets the token that can be used to access the Agent APIs in + the event that the ACL datacenter cannot be reached. + + replication This is the token that the agent will use for replication + operations. This token will need to be configured with read access + to whatever data is being replicated. + + Example: + + $ consul acl set-agent-token default c4d0f8df-3aba-4ab6-a7a0-35b760dc29a1 +` diff --git a/command/acl/agenttokens/agent_tokens_test.go b/command/acl/agenttokens/agent_tokens_test.go new file mode 100644 index 000000000..13655a5b6 --- /dev/null +++ b/command/acl/agenttokens/agent_tokens_test.go @@ -0,0 +1,110 @@ +package agenttokens + +import ( + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestAgentTokensCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestAgentTokensCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a token to set + client := a.Client() + + token, _, err := client.ACL().TokenCreate( + &api.ACLToken{Description: "test"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + // default token + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "default", + token.SecretID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + } + + // agent token + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "agent", + token.SecretID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + } + + // master token + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "master", + token.SecretID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + } + + // replication token + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "replication", + token.SecretID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + } +} diff --git a/command/acl/bootstrap/bootstrap.go b/command/acl/bootstrap/bootstrap.go new file mode 100644 index 000000000..634c637ce --- /dev/null +++ b/command/acl/bootstrap/bootstrap.go @@ -0,0 +1,72 @@ +package bootstrap + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + token, _, err := client.ACL().Bootstrap() + if err != nil { + c.UI.Error(fmt.Sprintf("Failed ACL bootstrapping: %v", err)) + return 1 + } + + acl.PrintToken(token, c.UI, false) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Bootstrap Consul's ACL system" + +// TODO (ACL-V2) - maybe embed link to bootstrap reset docs +const help = ` +Usage: consul acl bootstrap [options] + + The bootstrap command will request Consul to generate a new token with unlimited privileges to use + for management purposes and output its details. This can only be done once and afterwards bootstrapping + will be disabled. If all tokens are lost and you need to bootstrap again you can follow the bootstrap + reset procedure +` diff --git a/command/acl/bootstrap/bootstrap_test.go b/command/acl/bootstrap/bootstrap_test.go new file mode 100644 index 000000000..0eb01ec11 --- /dev/null +++ b/command/acl/bootstrap/bootstrap_test.go @@ -0,0 +1,56 @@ +package bootstrap + +import ( + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/agent/structs" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestBootstrapCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestBootstrapCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + output := ui.OutputWriter.String() + assert.Contains(output, "Bootstrap Token") + assert.Contains(output, structs.ACLPolicyGlobalManagementID) +} diff --git a/command/acl/policy/create/policy_create.go b/command/acl/policy/create/policy_create.go new file mode 100644 index 000000000..16e291d87 --- /dev/null +++ b/command/acl/policy/create/policy_create.go @@ -0,0 +1,153 @@ +package policycreate + +import ( + "flag" + "fmt" + "io" + + "github.com/hashicorp/consul/acl" + "github.com/hashicorp/consul/api" + aclhelpers "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/hashicorp/consul/command/helpers" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + name string + description string + datacenters []string + rules string + + fromToken string + tokenIsSecret bool + + testStdin io.Reader +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.StringVar(&c.name, "name", "", "The new policies name. This flag is required.") + c.flags.StringVar(&c.description, "description", "", "A description of the policy") + c.flags.Var((*flags.AppendSliceValue)(&c.datacenters), "valid-datacenter", "Datacenter "+ + "that the policy should be valid within. This flag may be specified multiple times") + c.flags.StringVar(&c.rules, "rules", "", "The policy rules. May be prefixed with '@' "+ + "to indicate that the value is a file path to load the rules from. '-' may also be "+ + "given to indicate that the rules are available on stdin") + c.flags.StringVar(&c.fromToken, "from-token", "", "The legacy token to retrieve the rules "+ + "for when creating this policy. When this is specified no other rules should be given. "+ + "Similar to the -rules option the token to use can be loaded from stdin or from a file") + c.flags.BoolVar(&c.tokenIsSecret, "token-secret", false, "Indicates the token provided with "+ + "-from-token is a SecretID and not an AccessorID") + + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) getRules(client *api.Client) (string, error) { + if c.fromToken != "" && c.rules != "" { + return "", fmt.Errorf("Cannot specify both -rules and -from-token") + } + + if c.fromToken != "" { + tokenID, err := helpers.LoadDataSource(c.fromToken, c.testStdin) + if err != nil { + return "", fmt.Errorf("Invalid -from-token value: %v", err) + } + + rules, err := aclhelpers.GetRulesFromLegacyToken(client, tokenID, c.tokenIsSecret) + if err != nil { + return "", err + } + + translated, err := acl.TranslateLegacyRules([]byte(rules)) + return string(translated), err + } + + return helpers.LoadDataSource(c.rules, c.testStdin) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if c.name == "" { + c.UI.Error(fmt.Sprintf("Missing require '-name' flag")) + c.UI.Error(c.Help()) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + rules, err := c.getRules(client) + if err != nil { + c.UI.Error(fmt.Sprintf("Error loading rules: %v", err)) + return 1 + } + + newPolicy := &api.ACLPolicy{ + Name: c.name, + Description: c.description, + Datacenters: c.datacenters, + Rules: rules, + } + + policy, _, err := client.ACL().PolicyCreate(newPolicy, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Failed to create new policy: %v", err)) + return 1 + } + + aclhelpers.PrintPolicy(policy, c.UI, false) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Create an ACL Policy" +const help = ` +Usage: consul acl policy create -name NAME [options] + + Both the -rules and -from-token option values allow loading the value + from stdin, a file or the raw value. To use stdin pass '-' as the value. + To load the value from a file prefix the value with an '@'. Any other + values will be used directly. + + Create a new policy: + + $ consul acl policy create -name “new-policy” \ + -description “This is an example policy” \ + -datacenter “dc1” \ + -datacenter “dc2” \ + -rules @rules.hcl + + Creation a policy from a legacy token: + + $ consul acl policy create -name “legacy-policy” \ + -description “Token Converted to Policy” \ + -from-token “c1e34113-e7ab-4451-b1a6-336ddcc58fc6” +` diff --git a/command/acl/policy/create/policy_create_test.go b/command/acl/policy/create/policy_create_test.go new file mode 100644 index 000000000..325aeb031 --- /dev/null +++ b/command/acl/policy/create/policy_create_test.go @@ -0,0 +1,63 @@ +package policycreate + +import ( + "io/ioutil" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestPolicyCreateCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestPolicyCreateCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + rules := []byte("service \"\" { policy = \"write\" }") + err := ioutil.WriteFile(testDir+"/rules.hcl", rules, 0644) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-name=foobar", + "-rules=@" + testDir + "/rules.hcl", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) +} diff --git a/command/acl/policy/delete/policy_delete.go b/command/acl/policy/delete/policy_delete.go new file mode 100644 index 000000000..487d5d7ea --- /dev/null +++ b/command/acl/policy/delete/policy_delete.go @@ -0,0 +1,98 @@ +package policydelete + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + policyID string + policyName string +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.StringVar(&c.policyID, "id", "", "The ID of the policy to delete. "+ + "It may be specified as a unique ID prefix but will error if the prefix "+ + "matches multiple policy IDs") + c.flags.StringVar(&c.policyName, "name", "", "The name of the policy to delete.") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if c.policyID == "" && c.policyName == "" { + c.UI.Error(fmt.Sprintf("Must specify either the -id or -name parameters")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + var policyID string + if c.policyID != "" { + policyID, err = acl.GetPolicyIDFromPartial(client, c.policyID) + } else { + policyID, err = acl.GetPolicyIDByName(client, c.policyName) + } + if err != nil { + c.UI.Error(fmt.Sprintf("Error determining policy ID: %v", err)) + return 1 + } + + if _, err := client.ACL().PolicyDelete(policyID, nil); err != nil { + c.UI.Error(fmt.Sprintf("Error deleting policy %q: %v", policyID, err)) + return 1 + } + + c.UI.Info(fmt.Sprintf("Policy %q deleted successfully", policyID)) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Delete an ACL Policy" +const help = ` +Usage: consul acl policy delete [options] -id POLICY + + Deletes an ACL policy by providing either the ID or a unique ID prefix. + + Delete by prefix: + + $ consul acl policy delete -id b6b85 + + Delete by full ID: + + $ consul acl policy delete -id b6b856da-5193-4e78-845a-7d61ca8371ba + +` diff --git a/command/acl/policy/delete/policy_delete_test.go b/command/acl/policy/delete/policy_delete_test.go new file mode 100644 index 000000000..163ca9c19 --- /dev/null +++ b/command/acl/policy/delete/policy_delete_test.go @@ -0,0 +1,78 @@ +package policydelete + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestPolicyDeleteCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestPolicyDeleteCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a policy + client := a.Client() + + policy, _, err := client.ACL().PolicyCreate( + &api.ACLPolicy{Name: "test-policy"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-id=" + policy.ID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + + output := ui.OutputWriter.String() + assert.Contains(output, fmt.Sprintf("deleted successfully")) + assert.Contains(output, policy.ID) + + _, _, err = client.ACL().PolicyRead( + policy.ID, + &api.QueryOptions{Token: "root"}, + ) + assert.EqualError(err, "Unexpected response code: 403 (ACL not found)") +} diff --git a/command/acl/policy/list/policy_list.go b/command/acl/policy/list/policy_list.go new file mode 100644 index 000000000..632c17e1a --- /dev/null +++ b/command/acl/policy/list/policy_list.go @@ -0,0 +1,77 @@ +package policylist + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + showMeta bool +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.BoolVar(&c.showMeta, "meta", false, "Indicates that policy metadata such "+ + "as the content hash and raft indices should be show for each entry") + + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + policies, _, err := client.ACL().PolicyList(nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Failed to retrieve the policy list: %v", err)) + return 1 + } + + for _, policy := range policies { + acl.PrintPolicyListEntry(policy, c.UI, c.showMeta) + } + + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Delete an ACL Policy" +const help = ` +Usage: consul acl policy list [options] + + Lists all the ACL policies + + $ consul acl policy list +` diff --git a/command/acl/policy/list/policy_list_test.go b/command/acl/policy/list/policy_list_test.go new file mode 100644 index 000000000..3c8803f3f --- /dev/null +++ b/command/acl/policy/list/policy_list_test.go @@ -0,0 +1,80 @@ +package policylist + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestPolicyListCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestPolicyListCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + var policyIDs []string + + // Create a couple polices to list + client := a.Client() + for i := 0; i < 5; i++ { + name := fmt.Sprintf("test-policy-%d", i) + + policy, _, err := client.ACL().PolicyCreate( + &api.ACLPolicy{Name: name}, + &api.WriteOptions{Token: "root"}, + ) + policyIDs = append(policyIDs, policy.ID) + + assert.NoError(err) + } + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + output := ui.OutputWriter.String() + + for i, v := range policyIDs { + assert.Contains(output, fmt.Sprintf("test-policy-%d", i)) + assert.Contains(output, v) + } +} diff --git a/command/acl/policy/policy.go b/command/acl/policy/policy.go new file mode 100644 index 000000000..fa2efae2d --- /dev/null +++ b/command/acl/policy/policy.go @@ -0,0 +1,58 @@ +package policy + +import ( + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New() *cmd { + return &cmd{} +} + +type cmd struct{} + +func (c *cmd) Run(args []string) int { + return cli.RunResultHelp +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(help, nil) +} + +const synopsis = "Manage Consul's ACL Policies" +const help = ` +Usage: consul acl policy [options] [args] + + This command has subcommands for managing Consul's ACL Policies. + Here are some simple examples, and more detailed examples are available + in the subcommands or the documentation. + + Create a new ACL Policy: + + $ consul acl policy create “new-policy” \ + -description “This is an example policy” \ + -datacenter “dc1” \ + -datacenter “dc2” \ + -rules @rules.hcl + List all policies: + + $ consul acl policy list + + Update a policy: + + $ consul acl policy update “other-policy” -datacenter “dc1” + + Read a policy: + + $ consul acl policy read 0479e93e-091c-4475-9b06-79a004765c24 + + Delete a policy + + $ consul acl policy delete "my-policy" + + For more examples, ask for subcommand help or view the documentation. +` diff --git a/command/acl/policy/read/policy_read.go b/command/acl/policy/read/policy_read.go new file mode 100644 index 000000000..81feedc63 --- /dev/null +++ b/command/acl/policy/read/policy_read.go @@ -0,0 +1,99 @@ +package policyread + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + policyID string + policyName string +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.StringVar(&c.policyID, "id", "", "The ID of the policy to read. "+ + "It may be specified as a unique ID prefix but will error if the prefix "+ + "matches multiple policy IDs") + c.flags.StringVar(&c.policyName, "name", "", "The name of the policy to read.") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if c.policyID == "" && c.policyName == "" { + c.UI.Error(fmt.Sprintf("Must specify either the -id or -name parameters")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + var policyID string + if c.policyID != "" { + policyID, err = acl.GetPolicyIDFromPartial(client, c.policyID) + } else { + policyID, err = acl.GetPolicyIDByName(client, c.policyName) + } + if err != nil { + c.UI.Error(fmt.Sprintf("Error determining policy ID: %v", err)) + return 1 + } + + policy, _, err := client.ACL().PolicyRead(policyID, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Error reading policy %q: %v", policyID, err)) + return 1 + } + acl.PrintPolicy(policy, c.UI, true) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Read an ACL Policy" +const help = ` +Usage: consul acl policy read [options] POLICY + + This command will retrieve and print out the details + of a single policy + + Read: + + $ consul acl policy read fdabbcb5-9de5-4b1a-961f-77214ae88cba + + Read by name: + + $ consul acl policy read -by-name my-policy + +` diff --git a/command/acl/policy/read/policy_read_test.go b/command/acl/policy/read/policy_read_test.go new file mode 100644 index 000000000..27d68ebb8 --- /dev/null +++ b/command/acl/policy/read/policy_read_test.go @@ -0,0 +1,72 @@ +package policyread + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestPolicyReadCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestPolicyReadCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a policy + client := a.Client() + + policy, _, err := client.ACL().PolicyCreate( + &api.ACLPolicy{Name: "test-policy"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-id=" + policy.ID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + + output := ui.OutputWriter.String() + assert.Contains(output, fmt.Sprintf("test-policy")) + assert.Contains(output, policy.ID) +} diff --git a/command/acl/policy/update/policy_update.go b/command/acl/policy/update/policy_update.go new file mode 100644 index 000000000..02b6a2870 --- /dev/null +++ b/command/acl/policy/update/policy_update.go @@ -0,0 +1,177 @@ +package policyupdate + +import ( + "flag" + "fmt" + "io" + + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/hashicorp/consul/command/helpers" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + policyID string + nameSet bool + name string + descriptionSet bool + description string + datacenters []string + rulesSet bool + rules string + noMerge bool + + testStdin io.Reader +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.StringVar(&c.policyID, "id", "", "The ID of the policy to update. "+ + "It may be specified as a unique ID prefix but will error if the prefix "+ + "matches multiple policy IDs") + c.flags.StringVar(&c.name, "name", "", "The policies name.") + c.flags.StringVar(&c.description, "description", "", "A description of the policy") + c.flags.Var((*flags.AppendSliceValue)(&c.datacenters), "valid-datacenter", "Datacenter "+ + "that the policy should be valid within. This flag may be specified multiple times") + c.flags.StringVar(&c.rules, "rules", "", "The policy rules. May be prefixed with '@' "+ + "to indicate that the value is a file path to load the rules from. '-' may also be "+ + "given to indicate that the rules are available on stdin") + c.flags.BoolVar(&c.noMerge, "no-merge", false, "Do not merge the current policy "+ + "information with what is provided to the command. Instead overwrite all fields "+ + "with the exception of the policy ID which is immutable.") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) checkSet(f *flag.Flag) { + switch f.Name { + case "name": + c.nameSet = true + case "description": + c.descriptionSet = true + case "rules": + c.rulesSet = true + } +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + c.flags.Visit(c.checkSet) + + if c.policyID == "" && c.name == "" { + c.UI.Error(fmt.Sprintf("Must specify either the -id or -name parameters")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + var policyID string + if c.policyID != "" { + policyID, err = acl.GetPolicyIDFromPartial(client, c.policyID) + } else { + policyID, err = acl.GetPolicyIDByName(client, c.name) + } + if err != nil { + c.UI.Error(fmt.Sprintf("Error determining policy ID: %v", err)) + return 1 + } + + rules, err := helpers.LoadDataSource(c.rules, c.testStdin) + + var updated *api.ACLPolicy + if c.noMerge { + updated = &api.ACLPolicy{ + ID: policyID, + Name: c.name, + Description: c.description, + Datacenters: c.datacenters, + Rules: rules, + } + } else { + policy, _, err := client.ACL().PolicyRead(policyID, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Error reading policy %q: %v", policyID, err)) + return 1 + } + + updated = &api.ACLPolicy{ + ID: policyID, + Name: policy.Name, + Description: policy.Description, + Datacenters: policy.Datacenters, + Rules: policy.Rules, + } + + if c.nameSet { + updated.Name = c.name + } + if c.descriptionSet { + updated.Description = c.description + } + if c.rulesSet { + updated.Rules = rules + } + if c.datacenters != nil { + updated.Datacenters = c.datacenters + } + } + + policy, _, err := client.ACL().PolicyUpdate(updated, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Error updating policy %q: %v", policyID, err)) + return 1 + } + + c.UI.Info(fmt.Sprintf("Policy updated successfully")) + acl.PrintPolicy(policy, c.UI, true) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(help, nil) +} + +const synopsis = "Update an ACL Policy" +const help = ` +Usage: consul acl policy update [options] + + Updates a policy. By default it will merge the policy information with its + current state so that you do not have to provide all parameters. This + behavior can be disabled by passing -no-merge. + + Rename the Policy: + + $ consul acl policy update -id abcd -name "better-name" + + Override all policy attributes: + + # this will remove any datacenter scope if provided and will remove + # the description + $consul acl policy update -id abcd -name "better-name" -rules @rules.hcl +` diff --git a/command/acl/policy/update/policy_update_test.go b/command/acl/policy/update/policy_update_test.go new file mode 100644 index 000000000..06ca90b1d --- /dev/null +++ b/command/acl/policy/update/policy_update_test.go @@ -0,0 +1,74 @@ +package policyupdate + +import ( + "io/ioutil" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestPolicyUpdateCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestPolicyUpdateCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + rules := []byte("service \"\" { policy = \"write\" }") + err := ioutil.WriteFile(testDir+"/rules.hcl", rules, 0644) + assert.NoError(err) + + // Create a policy + client := a.Client() + + policy, _, err := client.ACL().PolicyCreate( + &api.ACLPolicy{Name: "test-policy"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-id=" + policy.ID, + "-name=new-name", + "-rules=@" + testDir + "/rules.hcl", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) +} diff --git a/command/acl/rules/translate.go b/command/acl/rules/translate.go new file mode 100644 index 000000000..6e286aca4 --- /dev/null +++ b/command/acl/rules/translate.go @@ -0,0 +1,131 @@ +package rules + +import ( + "flag" + "fmt" + "io" + + "github.com/hashicorp/consul/acl" + aclhelpers "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/hashicorp/consul/command/helpers" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + tokenAccessor bool + tokenSecret bool + + // testStdin is the input for testing + testStdin io.Reader +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.BoolVar(&c.tokenSecret, "token-secret", false, + "Specifies that the TRANSLATE argument refers to a ACL token SecretID. "+ + "The rules to translate will then be read from the retrieved token") + + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + data, err := c.dataFromArgs(c.flags.Args()) + if err != nil { + c.UI.Error(fmt.Sprintf("Error! %v", err)) + return 1 + } + + if c.tokenSecret { + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul Agent: %s", err)) + return 1 + } + + if rules, err := aclhelpers.GetRulesFromLegacyToken(client, data, c.tokenSecret); err != nil { + c.UI.Error(err.Error()) + return 1 + } else { + data = rules + } + } + + translated, err := acl.TranslateLegacyRules([]byte(data)) + if err != nil { + c.UI.Error(fmt.Sprintf("Error translating rules: %s", err)) + return 1 + } + + c.UI.Info(string(translated)) + return 0 +} + +func (c *cmd) dataFromArgs(args []string) (string, error) { + switch len(args) { + case 0: + return "", fmt.Errorf("Missing TRANSLATE argument") + case 1: + data, err := helpers.LoadDataSource(args[0], c.testStdin) + if err != nil { + return "", err + } + + return data, nil + default: + return "", fmt.Errorf("Too many arguments: expected 1 got %d", len(args)) + } +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Translate the legacy rule syntax into the current syntax" +const help = ` +Usage: consul acl translate-rules [options] TRANSLATE + + Translates the legacy ACL rule syntax into the current syntax. + + Translate rules within a file: + + $ consul acl translate-rules @rules.hcl + + Translate rules from stdin: + + $ consul acl translate-rules - + + Translate rules from a string argument: + + $ consul acl translate-rules 'key "" { policy = "write"}' + + Translate rules for a legacy ACL token using its SecretID passed from stdin: + + $ consul acl translate-rules --token-secret - + + Translate rules for a legacy ACL token using its AccessorID: + + $ consul acl translate-rules 429cd746-03d5-4bbb-a83a-18b164171c89 +` diff --git a/command/acl/rules/translate_test.go b/command/acl/rules/translate_test.go new file mode 100644 index 000000000..e397c240f --- /dev/null +++ b/command/acl/rules/translate_test.go @@ -0,0 +1,104 @@ +package rules + +import ( + "io" + "io/ioutil" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestRulesTranslateCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestRulesTranslateCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + stdinR, stdinW := io.Pipe() + + ui := cli.NewMockUi() + cmd := New(ui) + cmd.testStdin = stdinR + + rules := "service \"\" { policy = \"write\" }" + expected := "service_prefix \"\" {\n policy = \"write\"\n}" + + // From a file + { + err := ioutil.WriteFile(testDir+"/rules.hcl", []byte(rules), 0644) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "@" + testDir + "/rules.hcl", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + assert.Contains(ui.OutputWriter.String(), expected) + } + + // From stdin + { + go func() { + stdinW.Write([]byte(rules)) + stdinW.Close() + }() + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + assert.Contains(ui.OutputWriter.String(), expected) + } + + // From arg + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + rules, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + assert.Contains(ui.OutputWriter.String(), expected) + } +} diff --git a/command/acl/token/create/token_create.go b/command/acl/token/create/token_create.go new file mode 100644 index 000000000..80d8484eb --- /dev/null +++ b/command/acl/token/create/token_create.go @@ -0,0 +1,112 @@ +package tokencreate + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + policyIDs []string + policyNames []string + description string + local bool +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.BoolVar(&c.local, "local", false, "Create this as a datacenter local token") + c.flags.StringVar(&c.description, "description", "", "A description of the token") + c.flags.Var((*flags.AppendSliceValue)(&c.policyIDs), "policy-id", "ID of a "+ + "policy to use for this token. May be specified multiple times") + c.flags.Var((*flags.AppendSliceValue)(&c.policyNames), "policy-name", "Name of a "+ + "policy to use for this token. May be specified multiple times") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if len(c.policyNames) == 0 && len(c.policyIDs) == 0 { + c.UI.Error(fmt.Sprintf("Cannot create a token without specifying -policy-name or -policy-id at least once")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + newToken := &api.ACLToken{ + Description: c.description, + Local: c.local, + } + + for _, policyName := range c.policyNames { + // We could resolve names to IDs here but there isn't any reason why its would be better + // than allowing the agent to do it. + newToken.Policies = append(newToken.Policies, &api.ACLTokenPolicyLink{Name: policyName}) + } + + for _, policyID := range c.policyIDs { + policyID, err := acl.GetPolicyIDFromPartial(client, policyID) + if err != nil { + c.UI.Error(fmt.Sprintf("Error resolving policy ID %s: %v", policyID, err)) + return 1 + } + newToken.Policies = append(newToken.Policies, &api.ACLTokenPolicyLink{ID: policyID}) + } + + token, _, err := client.ACL().TokenCreate(newToken, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Failed to create new token: %v", err)) + return 1 + } + + acl.PrintToken(token, c.UI, false) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Create an ACL Token" +const help = ` +Usage: consul acl token create [options] + + When creating a new token policies may be linked using either the -policy-id + or the -policy-name options. When specifying policies by IDs you may use a + unique prefix of the UUID as a shortcut for specifying the entire UUID. + + Create a new token: + + $ consul acl token create -description "Replication token" + -policy-id b52fc3de-5 + -policy-name "acl-replication" +` diff --git a/command/acl/token/create/token_create_test.go b/command/acl/token/create/token_create_test.go new file mode 100644 index 000000000..ec1e353ca --- /dev/null +++ b/command/acl/token/create/token_create_test.go @@ -0,0 +1,85 @@ +package tokencreate + +import ( + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestTokenCreateCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestTokenCreateCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a policy + client := a.Client() + + policy, _, err := client.ACL().PolicyCreate( + &api.ACLPolicy{Name: "test-policy"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + // create with policy by name + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-policy-name=" + policy.Name, + "-description=test token", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + } + + // create with policy by id + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-policy-id=" + policy.ID, + "-description=test token", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + } +} diff --git a/command/acl/token/delete/token_delete.go b/command/acl/token/delete/token_delete.go new file mode 100644 index 000000000..b14be94af --- /dev/null +++ b/command/acl/token/delete/token_delete.go @@ -0,0 +1,91 @@ +package tokendelete + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + tokenID string +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.StringVar(&c.tokenID, "id", "", "The Accessor ID of the token to delete. "+ + "It may be specified as a unique ID prefix but will error if the prefix "+ + "matches multiple token Accessor IDs") + c.http = &flags.HTTPFlags{} + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if c.tokenID == "" { + c.UI.Error(fmt.Sprintf("Must specify the -id paramter")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + tokenID, err := acl.GetTokenIDFromPartial(client, c.tokenID) + if err != nil { + c.UI.Error(fmt.Sprintf("Error determining token ID: %v", err)) + return 1 + } + + if _, err := client.ACL().TokenDelete(tokenID, nil); err != nil { + c.UI.Error(fmt.Sprintf("Error deleting token %q: %v", tokenID, err)) + return 1 + } + + c.UI.Info(fmt.Sprintf("Token %q deleted successfully", tokenID)) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Delete an ACL Token" +const help = ` +Usage: consul acl token delete [options] -id TOKEN + + Deletes an ACL token by providing either the ID or a unique ID prefix. + + Delete by prefix: + + $ consul acl token delete -id b6b85 + + Delete by full ID: + + $ consul acl token delete -id b6b856da-5193-4e78-845a-7d61ca8371ba +` diff --git a/command/acl/token/delete/token_delete_test.go b/command/acl/token/delete/token_delete_test.go new file mode 100644 index 000000000..f7999a9a0 --- /dev/null +++ b/command/acl/token/delete/token_delete_test.go @@ -0,0 +1,78 @@ +package tokendelete + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestTokenDeleteCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestTokenDeleteCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a token + client := a.Client() + + token, _, err := client.ACL().TokenCreate( + &api.ACLToken{Description: "test"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-id=" + token.AccessorID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + + output := ui.OutputWriter.String() + assert.Contains(output, fmt.Sprintf("deleted successfully")) + assert.Contains(output, token.AccessorID) + + _, _, err = client.ACL().TokenRead( + token.AccessorID, + &api.QueryOptions{Token: "root"}, + ) + assert.EqualError(err, "Unexpected response code: 403 (ACL not found)") +} diff --git a/command/acl/token/list/token_list.go b/command/acl/token/list/token_list.go new file mode 100644 index 000000000..bf2f557a2 --- /dev/null +++ b/command/acl/token/list/token_list.go @@ -0,0 +1,82 @@ +package tokenlist + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + showMeta bool +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.BoolVar(&c.showMeta, "meta", false, "Indicates that token metadata such "+ + "as the content hash and raft indices should be show for each entry") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + tokens, _, err := client.ACL().TokenList(nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Failed to retrieve the token list: %v", err)) + return 1 + } + + first := true + for _, token := range tokens { + if first { + first = false + } else { + c.UI.Info("") + } + acl.PrintTokenListEntry(token, c.UI, c.showMeta) + } + + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "List ACL Tokens" +const help = ` +Usage: consul acl token list [options] + + List all the ALC tokens + + $ consul acl token list +` diff --git a/command/acl/token/list/token_list_test.go b/command/acl/token/list/token_list_test.go new file mode 100644 index 000000000..a0f3e77e1 --- /dev/null +++ b/command/acl/token/list/token_list_test.go @@ -0,0 +1,80 @@ +package tokenlist + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestTokenListCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestTokenListCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + var tokenIds []string + + // Create a couple tokens to list + client := a.Client() + for i := 0; i < 5; i++ { + description := fmt.Sprintf("test token %d", i) + + token, _, err := client.ACL().TokenCreate( + &api.ACLToken{Description: description}, + &api.WriteOptions{Token: "root"}, + ) + tokenIds = append(tokenIds, token.AccessorID) + + assert.NoError(err) + } + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + output := ui.OutputWriter.String() + + for i, v := range tokenIds { + assert.Contains(output, fmt.Sprintf("test token %d", i)) + assert.Contains(output, v) + } +} diff --git a/command/acl/token/read/token_read.go b/command/acl/token/read/token_read.go new file mode 100644 index 000000000..99c201842 --- /dev/null +++ b/command/acl/token/read/token_read.go @@ -0,0 +1,92 @@ +package tokenread + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + tokenID string +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.StringVar(&c.tokenID, "id", "", "The Accessor ID of the token to read. "+ + "It may be specified as a unique ID prefix but will error if the prefix "+ + "matches multiple token Accessor IDs") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if c.tokenID == "" { + c.UI.Error(fmt.Sprintf("Must specify the -id parameter")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + tokenID, err := acl.GetTokenIDFromPartial(client, c.tokenID) + if err != nil { + c.UI.Error(fmt.Sprintf("Error determining token ID: %v", err)) + return 1 + } + + token, _, err := client.ACL().TokenRead(tokenID, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Error reading token %q: %v", tokenID, err)) + return 1 + } + + acl.PrintToken(token, c.UI, true) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Read an ACL Token" +const help = ` +Usage: consul acl token read [options] -id TOKENID + + This command will retrieve and print out the details of + a single token. + + Using a partial ID: + + $ consul acl token read -id 4be56c77-82 + + Using the full ID: + + $ consul acl token read -id 4be56c77-8244-4c7d-b08c-667b8c71baed +` diff --git a/command/acl/token/read/token_read_test.go b/command/acl/token/read/token_read_test.go new file mode 100644 index 000000000..a1a9b472d --- /dev/null +++ b/command/acl/token/read/token_read_test.go @@ -0,0 +1,73 @@ +package tokenread + +import ( + "fmt" + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestTokenReadCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestTokenReadCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a token + client := a.Client() + + token, _, err := client.ACL().TokenCreate( + &api.ACLToken{Description: "test"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-token=root", + "-id=" + token.AccessorID, + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + + output := ui.OutputWriter.String() + assert.Contains(output, fmt.Sprintf("test")) + assert.Contains(output, token.AccessorID) + assert.Contains(output, token.SecretID) +} diff --git a/command/acl/token/token.go b/command/acl/token/token.go new file mode 100644 index 000000000..db222d45a --- /dev/null +++ b/command/acl/token/token.go @@ -0,0 +1,37 @@ +package token + +import ( + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New() *cmd { + return &cmd{} +} + +type cmd struct{} + +func (c *cmd) Run(args []string) int { + return cli.RunResultHelp +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(help, nil) +} + +const synopsis = "Manage Consul's ACL Tokens" +const help = ` +Usage: consul acl token [options] [args] + + This command has subcommands for managing Consul's ACL Policies. + Here are some simple examples, and more detailed examples are available + in the subcommands or the documentation. + + TODO - more docs + + For more examples, ask for subcommand help or view the documentation. +` diff --git a/command/acl/token/update/token_update.go b/command/acl/token/update/token_update.go new file mode 100644 index 000000000..485da7096 --- /dev/null +++ b/command/acl/token/update/token_update.go @@ -0,0 +1,169 @@ +package tokenupdate + +import ( + "flag" + "fmt" + + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/command/acl" + "github.com/hashicorp/consul/command/flags" + "github.com/mitchellh/cli" +) + +func New(ui cli.Ui) *cmd { + c := &cmd{UI: ui} + c.init() + return c +} + +type cmd struct { + UI cli.Ui + flags *flag.FlagSet + http *flags.HTTPFlags + help string + + tokenID string + policyIDs []string + policyNames []string + description string + + mergePolicies bool +} + +func (c *cmd) init() { + c.flags = flag.NewFlagSet("", flag.ContinueOnError) + c.flags.BoolVar(&c.mergePolicies, "merge-policies", false, "Merge the new policies "+ + "with the existing policies") + c.flags.StringVar(&c.tokenID, "id", "", "The Accessor ID of the token to read. "+ + "It may be specified as a unique ID prefix but will error if the prefix "+ + "matches multiple token Accessor IDs") + c.flags.StringVar(&c.description, "description", "", "A description of the token") + c.flags.Var((*flags.AppendSliceValue)(&c.policyIDs), "policy-id", "ID of a "+ + "policy to use for this token. May be specified multiple times") + c.flags.Var((*flags.AppendSliceValue)(&c.policyNames), "policy-name", "Name of a "+ + "policy to use for this token. May be specified multiple times") + c.http = &flags.HTTPFlags{} + flags.Merge(c.flags, c.http.ClientFlags()) + flags.Merge(c.flags, c.http.ServerFlags()) + c.help = flags.Usage(help, c.flags) +} + +func (c *cmd) Run(args []string) int { + if err := c.flags.Parse(args); err != nil { + return 1 + } + + if c.tokenID == "" { + c.UI.Error(fmt.Sprintf("Cannot update a token without specifying the -id parameter")) + return 1 + } + + client, err := c.http.APIClient() + if err != nil { + c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err)) + return 1 + } + + tokenID, err := acl.GetTokenIDFromPartial(client, c.tokenID) + if err != nil { + c.UI.Error(fmt.Sprintf("Error determining token ID: %v", err)) + return 1 + } + + token, _, err := client.ACL().TokenRead(tokenID, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Error when retrieving current token: %v", err)) + return 1 + } + + token.Description = c.description + + if c.mergePolicies { + for _, policyName := range c.policyNames { + found := false + for _, link := range token.Policies { + if link.Name == policyName { + found = true + break + } + } + + if !found { + // We could resolve names to IDs here but there isn't any reason why its would be better + // than allowing the agent to do it. + token.Policies = append(token.Policies, &api.ACLTokenPolicyLink{Name: policyName}) + } + } + + for _, policyID := range c.policyIDs { + policyID, err := acl.GetPolicyIDFromPartial(client, policyID) + if err != nil { + c.UI.Error(fmt.Sprintf("Error resolving policy ID %s: %v", policyID, err)) + return 1 + } + found := false + + for _, link := range token.Policies { + if link.ID == policyID { + found = true + break + } + } + + if !found { + token.Policies = append(token.Policies, &api.ACLTokenPolicyLink{ID: policyID}) + } + } + } else { + token.Policies = nil + + for _, policyName := range c.policyNames { + // We could resolve names to IDs here but there isn't any reason why its would be better + // than allowing the agent to do it. + token.Policies = append(token.Policies, &api.ACLTokenPolicyLink{Name: policyName}) + } + + for _, policyID := range c.policyIDs { + policyID, err := acl.GetPolicyIDFromPartial(client, policyID) + if err != nil { + c.UI.Error(fmt.Sprintf("Error resolving policy ID %s: %v", policyID, err)) + return 1 + } + token.Policies = append(token.Policies, &api.ACLTokenPolicyLink{ID: policyID}) + } + } + + token, _, err = client.ACL().TokenUpdate(token, nil) + if err != nil { + c.UI.Error(fmt.Sprintf("Failed to update token %s: %v", tokenID, err)) + return 1 + } + + c.UI.Info("Token updated successfully.") + acl.PrintToken(token, c.UI, true) + return 0 +} + +func (c *cmd) Synopsis() string { + return synopsis +} + +func (c *cmd) Help() string { + return flags.Usage(c.help, nil) +} + +const synopsis = "Update an ACL Token" +const help = ` +Usage: consul acl token update [options] + + This command will update a token. Some parts such as marking the token local + cannot be changed. + + Update a token description and take the policies from the existing token: + + $ consul acl token update -id abcd -description "replication" -merge-policies + + Update all editable fields of the token: + + $ consul acl token update -id abcd -description "replication" -policy-name "token-replication" +` diff --git a/command/acl/token/update/token_update_test.go b/command/acl/token/update/token_update_test.go new file mode 100644 index 000000000..3fd04c2bd --- /dev/null +++ b/command/acl/token/update/token_update_test.go @@ -0,0 +1,108 @@ +package tokenupdate + +import ( + "os" + "strings" + "testing" + + "github.com/hashicorp/consul/agent" + "github.com/hashicorp/consul/api" + "github.com/hashicorp/consul/logger" + "github.com/hashicorp/consul/testrpc" + "github.com/hashicorp/consul/testutil" + "github.com/mitchellh/cli" + "github.com/stretchr/testify/assert" +) + +func TestTokenUpdateCommand_noTabs(t *testing.T) { + t.Parallel() + + if strings.ContainsRune(New(cli.NewMockUi()).Help(), '\t') { + t.Fatal("help has tabs") + } +} + +func TestTokenUpdateCommand(t *testing.T) { + t.Parallel() + assert := assert.New(t) + + testDir := testutil.TempDir(t, "acl") + defer os.RemoveAll(testDir) + + a := agent.NewTestAgent(t.Name(), ` + primary_datacenter = "dc1" + acl { + enabled = true + tokens { + master = "root" + } + }`) + + a.Agent.LogWriter = logger.NewLogWriter(512) + + defer a.Shutdown() + testrpc.WaitForLeader(t, a.RPC, "dc1") + + ui := cli.NewMockUi() + cmd := New(ui) + + // Create a policy + client := a.Client() + + policy, _, err := client.ACL().PolicyCreate( + &api.ACLPolicy{Name: "test-policy"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + // create a token + token, _, err := client.ACL().TokenCreate( + &api.ACLToken{Description: "test"}, + &api.WriteOptions{Token: "root"}, + ) + assert.NoError(err) + + // update with policy by name + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-id=" + token.AccessorID, + "-token=root", + "-policy-name=" + policy.Name, + "-description=test token", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + + token, _, err := client.ACL().TokenRead( + token.AccessorID, + &api.QueryOptions{Token: "root"}, + ) + assert.NoError(err) + assert.NotNil(token) + } + + // update with policy by id + { + args := []string{ + "-http-addr=" + a.HTTPAddr(), + "-id=" + token.AccessorID, + "-token=root", + "-policy-id=" + policy.ID, + "-description=test token", + } + + code := cmd.Run(args) + assert.Equal(code, 0) + assert.Empty(ui.ErrorWriter.String()) + + token, _, err := client.ACL().TokenRead( + token.AccessorID, + &api.QueryOptions{Token: "root"}, + ) + assert.NoError(err) + assert.NotNil(token) + } +} diff --git a/command/commands_oss.go b/command/commands_oss.go index c53dd1a49..992f77f5c 100644 --- a/command/commands_oss.go +++ b/command/commands_oss.go @@ -1,6 +1,22 @@ package command import ( + "github.com/hashicorp/consul/command/acl" + aclagent "github.com/hashicorp/consul/command/acl/agenttokens" + aclbootstrap "github.com/hashicorp/consul/command/acl/bootstrap" + aclpolicy "github.com/hashicorp/consul/command/acl/policy" + aclpcreate "github.com/hashicorp/consul/command/acl/policy/create" + aclpdelete "github.com/hashicorp/consul/command/acl/policy/delete" + aclplist "github.com/hashicorp/consul/command/acl/policy/list" + aclpread "github.com/hashicorp/consul/command/acl/policy/read" + aclpupdate "github.com/hashicorp/consul/command/acl/policy/update" + aclrules "github.com/hashicorp/consul/command/acl/rules" + acltoken "github.com/hashicorp/consul/command/acl/token" + acltcreate "github.com/hashicorp/consul/command/acl/token/create" + acltdelete "github.com/hashicorp/consul/command/acl/token/delete" + acltlist "github.com/hashicorp/consul/command/acl/token/list" + acltread "github.com/hashicorp/consul/command/acl/token/read" + acltupdate "github.com/hashicorp/consul/command/acl/token/update" "github.com/hashicorp/consul/command/agent" "github.com/hashicorp/consul/command/catalog" catlistdc "github.com/hashicorp/consul/command/catalog/list/dc" @@ -67,6 +83,22 @@ func init() { verPre := consulversion.VersionPrerelease verHuman := consulversion.GetHumanVersion() + Register("acl", func(cli.Ui) (cli.Command, error) { return acl.New(), nil }) + Register("acl bootstrap", func(ui cli.Ui) (cli.Command, error) { return aclbootstrap.New(ui), nil }) + Register("acl policy", func(cli.Ui) (cli.Command, error) { return aclpolicy.New(), nil }) + Register("acl policy create", func(ui cli.Ui) (cli.Command, error) { return aclpcreate.New(ui), nil }) + Register("acl policy list", func(ui cli.Ui) (cli.Command, error) { return aclplist.New(ui), nil }) + Register("acl policy read", func(ui cli.Ui) (cli.Command, error) { return aclpread.New(ui), nil }) + Register("acl policy update", func(ui cli.Ui) (cli.Command, error) { return aclpupdate.New(ui), nil }) + Register("acl policy delete", func(ui cli.Ui) (cli.Command, error) { return aclpdelete.New(ui), nil }) + Register("acl translate-rules", func(ui cli.Ui) (cli.Command, error) { return aclrules.New(ui), nil }) + Register("acl set-agent-token", func(ui cli.Ui) (cli.Command, error) { return aclagent.New(ui), nil }) + Register("acl token", func(cli.Ui) (cli.Command, error) { return acltoken.New(), nil }) + Register("acl token create", func(ui cli.Ui) (cli.Command, error) { return acltcreate.New(ui), nil }) + Register("acl token list", func(ui cli.Ui) (cli.Command, error) { return acltlist.New(ui), nil }) + Register("acl token read", func(ui cli.Ui) (cli.Command, error) { return acltread.New(ui), nil }) + Register("acl token update", func(ui cli.Ui) (cli.Command, error) { return acltupdate.New(ui), nil }) + Register("acl token delete", func(ui cli.Ui) (cli.Command, error) { return acltdelete.New(ui), nil }) Register("agent", func(ui cli.Ui) (cli.Command, error) { return agent.New(ui, rev, ver, verPre, verHuman, make(chan struct{})), nil }) diff --git a/lib/serf.go b/lib/serf.go index ce2504a91..36b2d549b 100644 --- a/lib/serf.go +++ b/lib/serf.go @@ -25,3 +25,19 @@ func SerfDefaultConfig() *serf.Config { return base } + +func GetSerfTags(serf *serf.Serf) map[string]string { + tags := make(map[string]string) + for tag, value := range serf.LocalMember().Tags { + tags[tag] = value + } + + return tags +} + +func UpdateSerfTag(serf *serf.Serf, tag, value string) { + tags := GetSerfTags(serf) + tags[tag] = value + + serf.SetTags(tags) +} diff --git a/lib/stop_context.go b/lib/stop_context.go new file mode 100644 index 000000000..2721f3ee6 --- /dev/null +++ b/lib/stop_context.go @@ -0,0 +1,37 @@ +package lib + +import ( + "context" + "time" +) + +// StopChannelContext implements the context.Context interface +// You provide the channel to select on to determine whether +// the context should be cancelled and other code such +// as the rate.Limiter will automatically use the channel +// appropriately +type StopChannelContext struct { + StopCh <-chan struct{} +} + +func (c *StopChannelContext) Deadline() (deadline time.Time, ok bool) { + ok = false + return +} + +func (c *StopChannelContext) Done() <-chan struct{} { + return c.StopCh +} + +func (c *StopChannelContext) Err() error { + select { + case <-c.StopCh: + return context.Canceled + default: + return nil + } +} + +func (c *StopChannelContext) Value(key interface{}) interface{} { + return nil +} diff --git a/lib/uuid.go b/lib/uuid.go new file mode 100644 index 000000000..7815ef9ee --- /dev/null +++ b/lib/uuid.go @@ -0,0 +1,28 @@ +package lib + +import ( + "github.com/hashicorp/go-uuid" +) + +// UUIDCheckFunc should determine whether the given UUID is actually +// unique and allowed to be used +type UUIDCheckFunc func(string) (bool, error) + +func GenerateUUID(checkFn UUIDCheckFunc) (string, error) { + for { + id, err := uuid.GenerateUUID() + if err != nil { + return "", err + } + + if checkFn == nil { + return id, nil + } + + if ok, err := checkFn(id); err != nil { + return "", err + } else if ok { + return id, nil + } + } +} diff --git a/testutil/retry/retry.go b/testutil/retry/retry.go index ba3a7c36b..2ef3c4c0e 100644 --- a/testutil/retry/retry.go +++ b/testutil/retry/retry.go @@ -56,6 +56,11 @@ func (r *R) Error(args ...interface{}) { r.fail = true } +func (r *R) Errorf(format string, args ...interface{}) { + r.log(fmt.Sprintf(format, args...)) + r.fail = true +} + func (r *R) Check(err error) { if err != nil { r.log(err.Error()) diff --git a/testutil/server.go b/testutil/server.go index 6146aa6f4..3ff72639b 100644 --- a/testutil/server.go +++ b/testutil/server.go @@ -86,8 +86,10 @@ type TestServerConfig struct { RaftProtocol int `json:"raft_protocol,omitempty"` ACLMasterToken string `json:"acl_master_token,omitempty"` ACLDatacenter string `json:"acl_datacenter,omitempty"` + PrimaryDatacenter string `json:"primary_datacenter,omitempty"` ACLDefaultPolicy string `json:"acl_default_policy,omitempty"` ACLEnforceVersion8 bool `json:"acl_enforce_version_8"` + ACL TestACLs `json:"acl",omitempty` Encrypt string `json:"encrypt,omitempty"` CAFile string `json:"ca_file,omitempty"` CertFile string `json:"cert_file,omitempty"` @@ -104,6 +106,26 @@ type TestServerConfig struct { Args []string `json:"-"` } +type TestACLs struct { + Enabled bool `json:"enabled,omitempty"` + TokenReplication bool `json:"enable_token_replication,omitempty"` + PolicyTTL string `json:"policy_ttl,omitempty"` + TokenTTL string `json:"token_ttl,omitempty"` + DownPolicy string `json:"down_policy,omitempty"` + DefaultPolicy string `json:"default_policy,omitempty"` + EnableKeyListPolicy bool `json:"enable_key_list_policy,omitempty"` + Tokens TestTokens `json:"tokens,omitempty"` + DisabledTTL string `json:"disabled_ttl,omitempty"` +} + +type TestTokens struct { + Master string `json:"master,omitempty"` + Replication string `json:"replication,omitempty"` + AgentMaster string `json:"agent_master,omitempty"` + Default string `json:"default,omitempty"` + Agent string `json:"agent,omitempty"` +} + // ServerConfigCallback is a function interface which can be // passed to NewTestServerConfig to modify the server config. type ServerConfigCallback func(c *TestServerConfig) diff --git a/vendor/github.com/hashicorp/go-memdb/README.md b/vendor/github.com/hashicorp/go-memdb/README.md index 4e051c81a..65e1eaefe 100644 --- a/vendor/github.com/hashicorp/go-memdb/README.md +++ b/vendor/github.com/hashicorp/go-memdb/README.md @@ -3,7 +3,7 @@ Provides the `memdb` package that implements a simple in-memory database built on immutable radix trees. The database provides Atomicity, Consistency and Isolation from ACID. Being that it is in-memory, it does not provide durability. -The database is instantiated with a schema that specifies the tables and indicies +The database is instantiated with a schema that specifies the tables and indices that exist and allows transactions to be executed. The database provides the following: diff --git a/vendor/github.com/hashicorp/go-memdb/filter.go b/vendor/github.com/hashicorp/go-memdb/filter.go new file mode 100644 index 000000000..2e3a9b3f7 --- /dev/null +++ b/vendor/github.com/hashicorp/go-memdb/filter.go @@ -0,0 +1,33 @@ +package memdb + +// FilterFunc is a function that takes the results of an iterator and returns +// whether the result should be filtered out. +type FilterFunc func(interface{}) bool + +// FilterIterator is used to wrap a ResultIterator and apply a filter over it. +type FilterIterator struct { + // filter is the filter function applied over the base iterator. + filter FilterFunc + + // iter is the iterator that is being wrapped. + iter ResultIterator +} + +func NewFilterIterator(wrap ResultIterator, filter FilterFunc) *FilterIterator { + return &FilterIterator{ + filter: filter, + iter: wrap, + } +} + +// WatchCh returns the watch channel of the wrapped iterator. +func (f *FilterIterator) WatchCh() <-chan struct{} { return f.iter.WatchCh() } + +// Next returns the next non-filtered result from the wrapped iterator +func (f *FilterIterator) Next() interface{} { + for { + if value := f.iter.Next(); value == nil || !f.filter(value) { + return value + } + } +} diff --git a/vendor/github.com/hashicorp/go-memdb/index.go b/vendor/github.com/hashicorp/go-memdb/index.go index d1fb95146..cca853c5a 100644 --- a/vendor/github.com/hashicorp/go-memdb/index.go +++ b/vendor/github.com/hashicorp/go-memdb/index.go @@ -8,35 +8,46 @@ import ( "strings" ) -// Indexer is an interface used for defining indexes +// Indexer is an interface used for defining indexes. Indexes are used +// for efficient lookup of objects in a MemDB table. An Indexer must also +// implement one of SingleIndexer or MultiIndexer. +// +// Indexers are primarily responsible for returning the lookup key as +// a byte slice. The byte slice is the key data in the underlying data storage. type Indexer interface { - // ExactFromArgs is used to build an exact index lookup - // based on arguments + // FromArgs is called to build the exact index key from a list of arguments. FromArgs(args ...interface{}) ([]byte, error) } -// SingleIndexer is an interface used for defining indexes -// generating a single entry per object +// SingleIndexer is an interface used for defining indexes that generate a +// single value per object type SingleIndexer interface { - // FromObject is used to extract an index value from an - // object or to indicate that the index value is missing. + // FromObject extracts the index value from an object. The return values + // are whether the index value was found, the index value, and any error + // while extracting the index value, respectively. FromObject(raw interface{}) (bool, []byte, error) } -// MultiIndexer is an interface used for defining indexes -// generating multiple entries per object +// MultiIndexer is an interface used for defining indexes that generate +// multiple values per object. Each value is stored as a seperate index +// pointing to the same object. +// +// For example, an index that extracts the first and last name of a person +// and allows lookup based on eitherd would be a MultiIndexer. The FromObject +// of this example would split the first and last name and return both as +// values. type MultiIndexer interface { - // FromObject is used to extract index values from an - // object or to indicate that the index value is missing. + // FromObject extracts index values from an object. The return values + // are the same as a SingleIndexer except there can be multiple index + // values. FromObject(raw interface{}) (bool, [][]byte, error) } -// PrefixIndexer can optionally be implemented for any -// indexes that support prefix based iteration. This may -// not apply to all indexes. +// PrefixIndexer is an optional interface on top of an Indexer that allows +// indexes to support prefix-based iteration. type PrefixIndexer interface { - // PrefixFromArgs returns a prefix that should be used - // for scanning based on the arguments + // PrefixFromArgs is the same as FromArgs for an Indexer except that + // the index value returned should return all prefix-matched values. PrefixFromArgs(args ...interface{}) ([]byte, error) } @@ -101,8 +112,9 @@ func (s *StringFieldIndex) PrefixFromArgs(args ...interface{}) ([]byte, error) { return val, nil } -// StringSliceFieldIndex is used to extract a field from an object -// using reflection and builds an index on that field. +// StringSliceFieldIndex builds an index from a field on an object that is a +// string slice ([]string). Each value within the string slice can be used for +// lookup. type StringSliceFieldIndex struct { Field string Lowercase bool diff --git a/vendor/github.com/hashicorp/go-memdb/memdb.go b/vendor/github.com/hashicorp/go-memdb/memdb.go index 994a35232..65c920731 100644 --- a/vendor/github.com/hashicorp/go-memdb/memdb.go +++ b/vendor/github.com/hashicorp/go-memdb/memdb.go @@ -1,3 +1,5 @@ +// Package memdb provides an in-memory database that supports transactions +// and MVCC. package memdb import ( @@ -8,16 +10,17 @@ import ( "github.com/hashicorp/go-immutable-radix" ) -// MemDB is an in-memory database. It provides a table abstraction, -// which is used to store objects (rows) with multiple indexes based -// on values. The database makes use of immutable radix trees to provide -// transactions and MVCC. +// MemDB is an in-memory database. +// +// MemDB provides a table abstraction to store objects (rows) with multiple +// indexes based on inserted values. The database makes use of immutable radix +// trees to provide transactions and MVCC. type MemDB struct { schema *DBSchema root unsafe.Pointer // *iradix.Tree underneath primary bool - // There can only be a single writter at once + // There can only be a single writer at once writer sync.Mutex } @@ -37,6 +40,7 @@ func NewMemDB(schema *DBSchema) (*MemDB, error) { if err := db.initialize(); err != nil { return nil, err } + return db, nil } @@ -72,11 +76,12 @@ func (db *MemDB) Snapshot() *MemDB { return clone } -// initialize is used to setup the DB for use after creation +// initialize is used to setup the DB for use after creation. This should +// be called only once after allocating a MemDB. func (db *MemDB) initialize() error { root := db.getRoot() for tName, tableSchema := range db.schema.Tables { - for iName, _ := range tableSchema.Indexes { + for iName := range tableSchema.Indexes { index := iradix.New() path := indexPath(tName, iName) root, _, _ = root.Insert(path, index) diff --git a/vendor/github.com/hashicorp/go-memdb/schema.go b/vendor/github.com/hashicorp/go-memdb/schema.go index d7210f91c..e6a9b526b 100644 --- a/vendor/github.com/hashicorp/go-memdb/schema.go +++ b/vendor/github.com/hashicorp/go-memdb/schema.go @@ -2,33 +2,47 @@ package memdb import "fmt" -// DBSchema contains the full database schema used for MemDB +// DBSchema is the schema to use for the full database with a MemDB instance. +// +// MemDB will require a valid schema. Schema validation can be tested using +// the Validate function. Calling this function is recommended in unit tests. type DBSchema struct { + // Tables is the set of tables within this database. The key is the + // table name and must match the Name in TableSchema. Tables map[string]*TableSchema } -// Validate is used to validate the database schema +// Validate validates the schema. func (s *DBSchema) Validate() error { if s == nil { - return fmt.Errorf("missing schema") + return fmt.Errorf("schema is nil") } + if len(s.Tables) == 0 { - return fmt.Errorf("no tables defined") + return fmt.Errorf("schema has no tables defined") } + for name, table := range s.Tables { if name != table.Name { return fmt.Errorf("table name mis-match for '%s'", name) } + if err := table.Validate(); err != nil { - return err + return fmt.Errorf("table %q: %s", name, err) } } + return nil } -// TableSchema contains the schema for a single table +// TableSchema is the schema for a single table. type TableSchema struct { - Name string + // Name of the table. This must match the key in the Tables map in DBSchema. + Name string + + // Indexes is the set of indexes for querying this table. The key + // is a unique name for the index and must match the Name in the + // IndexSchema. Indexes map[string]*IndexSchema } @@ -37,35 +51,50 @@ func (s *TableSchema) Validate() error { if s.Name == "" { return fmt.Errorf("missing table name") } + if len(s.Indexes) == 0 { return fmt.Errorf("missing table indexes for '%s'", s.Name) } + if _, ok := s.Indexes["id"]; !ok { return fmt.Errorf("must have id index") } + if !s.Indexes["id"].Unique { return fmt.Errorf("id index must be unique") } + if _, ok := s.Indexes["id"].Indexer.(SingleIndexer); !ok { return fmt.Errorf("id index must be a SingleIndexer") } + for name, index := range s.Indexes { if name != index.Name { return fmt.Errorf("index name mis-match for '%s'", name) } + if err := index.Validate(); err != nil { - return err + return fmt.Errorf("index %q: %s", name, err) } } + return nil } -// IndexSchema contains the schema for an index +// IndexSchema is the schema for an index. An index defines how a table is +// queried. type IndexSchema struct { - Name string + // Name of the index. This must be unique among a tables set of indexes. + // This must match the key in the map of Indexes for a TableSchema. + Name string + + // AllowMissing if true ignores this index if it doesn't produce a + // value. For example, an index that extracts a field that doesn't + // exist from a structure. AllowMissing bool - Unique bool - Indexer Indexer + + Unique bool + Indexer Indexer } func (s *IndexSchema) Validate() error { diff --git a/vendor/github.com/hashicorp/go-memdb/txn.go b/vendor/github.com/hashicorp/go-memdb/txn.go index c4273648e..2b85087ea 100644 --- a/vendor/github.com/hashicorp/go-memdb/txn.go +++ b/vendor/github.com/hashicorp/go-memdb/txn.go @@ -14,6 +14,11 @@ const ( id = "id" ) +var ( + // ErrNotFound is returned when the requested item is not found + ErrNotFound = fmt.Errorf("not found") +) + // tableIndex is a tuple of (Table, Index) used for lookups type tableIndex struct { Table string @@ -291,7 +296,7 @@ func (txn *Txn) Delete(table string, obj interface{}) error { idTxn := txn.writableIndex(table, id) existing, ok := idTxn.Get(idVal) if !ok { - return fmt.Errorf("not found") + return ErrNotFound } // Remove the object from all the indexes diff --git a/vendor/github.com/hashicorp/go-memdb/watch.go b/vendor/github.com/hashicorp/go-memdb/watch.go index 7c4a3ba6e..a6f01213b 100644 --- a/vendor/github.com/hashicorp/go-memdb/watch.go +++ b/vendor/github.com/hashicorp/go-memdb/watch.go @@ -1,6 +1,9 @@ package memdb -import "time" +import ( + "context" + "time" +) // WatchSet is a collection of watch channels. type WatchSet map[<-chan struct{}]struct{} @@ -46,6 +49,29 @@ func (w WatchSet) Watch(timeoutCh <-chan time.Time) bool { return false } + // Create a context that gets cancelled when the timeout is triggered + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + + go func() { + select { + case <-timeoutCh: + cancel() + case <-ctx.Done(): + } + }() + + return w.WatchCtx(ctx) == context.Canceled +} + +// WatchCtx is used to wait for either the watch set to trigger or for the +// context to be cancelled. Watch with a timeout channel can be mimicked by +// creating a context with a deadline. WatchCtx should be preferred over Watch. +func (w WatchSet) WatchCtx(ctx context.Context) error { + if w == nil { + return nil + } + if n := len(w); n <= aFew { idx := 0 chunk := make([]<-chan struct{}, aFew) @@ -53,23 +79,18 @@ func (w WatchSet) Watch(timeoutCh <-chan time.Time) bool { chunk[idx] = watchCh idx++ } - return watchFew(chunk, timeoutCh) - } else { - return w.watchMany(timeoutCh) + return watchFew(ctx, chunk) } + + return w.watchMany(ctx) } // watchMany is used if there are many watchers. -func (w WatchSet) watchMany(timeoutCh <-chan time.Time) bool { - // Make a fake timeout channel we can feed into watchFew to cancel all - // the blocking goroutines. - doneCh := make(chan time.Time) - defer close(doneCh) - +func (w WatchSet) watchMany(ctx context.Context) error { // Set up a goroutine for each watcher. triggerCh := make(chan struct{}, 1) watcher := func(chunk []<-chan struct{}) { - if timeout := watchFew(chunk, doneCh); !timeout { + if err := watchFew(ctx, chunk); err == nil { select { case triggerCh <- struct{}{}: default: @@ -101,8 +122,8 @@ func (w WatchSet) watchMany(timeoutCh <-chan time.Time) bool { // Wait for a channel to trigger or timeout. select { case <-triggerCh: - return false - case <-timeoutCh: - return true + return nil + case <-ctx.Done(): + return ctx.Err() } } diff --git a/vendor/github.com/hashicorp/go-memdb/watch_few.go b/vendor/github.com/hashicorp/go-memdb/watch_few.go index f2bb19db1..880f098b7 100644 --- a/vendor/github.com/hashicorp/go-memdb/watch_few.go +++ b/vendor/github.com/hashicorp/go-memdb/watch_few.go @@ -1,8 +1,9 @@ -//go:generate sh -c "go run watch-gen/main.go >watch_few.go" package memdb +//go:generate sh -c "go run watch-gen/main.go >watch_few.go" + import( - "time" + "context" ) // aFew gives how many watchers this function is wired to support. You must @@ -11,106 +12,106 @@ const aFew = 32 // watchFew is used if there are only a few watchers as a performance // optimization. -func watchFew(ch []<-chan struct{}, timeoutCh <-chan time.Time) bool { +func watchFew(ctx context.Context, ch []<-chan struct{}) error { select { case <-ch[0]: - return false + return nil case <-ch[1]: - return false + return nil case <-ch[2]: - return false + return nil case <-ch[3]: - return false + return nil case <-ch[4]: - return false + return nil case <-ch[5]: - return false + return nil case <-ch[6]: - return false + return nil case <-ch[7]: - return false + return nil case <-ch[8]: - return false + return nil case <-ch[9]: - return false + return nil case <-ch[10]: - return false + return nil case <-ch[11]: - return false + return nil case <-ch[12]: - return false + return nil case <-ch[13]: - return false + return nil case <-ch[14]: - return false + return nil case <-ch[15]: - return false + return nil case <-ch[16]: - return false + return nil case <-ch[17]: - return false + return nil case <-ch[18]: - return false + return nil case <-ch[19]: - return false + return nil case <-ch[20]: - return false + return nil case <-ch[21]: - return false + return nil case <-ch[22]: - return false + return nil case <-ch[23]: - return false + return nil case <-ch[24]: - return false + return nil case <-ch[25]: - return false + return nil case <-ch[26]: - return false + return nil case <-ch[27]: - return false + return nil case <-ch[28]: - return false + return nil case <-ch[29]: - return false + return nil case <-ch[30]: - return false + return nil case <-ch[31]: - return false + return nil - case <-timeoutCh: - return true + case <-ctx.Done(): + return ctx.Err() } } diff --git a/vendor/github.com/hashicorp/hcl/decoder.go b/vendor/github.com/hashicorp/hcl/decoder.go index bed9ebbe1..dc9d45ae8 100644 --- a/vendor/github.com/hashicorp/hcl/decoder.go +++ b/vendor/github.com/hashicorp/hcl/decoder.go @@ -117,10 +117,17 @@ func (d *decoder) decode(name string, node ast.Node, result reflect.Value) error func (d *decoder) decodeBool(name string, node ast.Node, result reflect.Value) error { switch n := node.(type) { case *ast.LiteralType: - if n.Token.Type == token.BOOL { - v, err := strconv.ParseBool(n.Token.Text) - if err != nil { - return err + switch n.Token.Type { + case token.BOOL, token.STRING, token.NUMBER: + var v bool + s := strings.ToLower(strings.Replace(n.Token.Text, "\"", "", -1)) + switch s { + case "1", "true": + v = true + case "0", "false": + v = false + default: + return fmt.Errorf("decodeBool: Unknown value for boolean: %s", n.Token.Text) } result.Set(reflect.ValueOf(v)) diff --git a/vendor/github.com/hashicorp/hcl/go.mod b/vendor/github.com/hashicorp/hcl/go.mod new file mode 100644 index 000000000..4debbbe35 --- /dev/null +++ b/vendor/github.com/hashicorp/hcl/go.mod @@ -0,0 +1,3 @@ +module github.com/hashicorp/hcl + +require github.com/davecgh/go-spew v1.1.1 diff --git a/vendor/github.com/hashicorp/hcl/go.sum b/vendor/github.com/hashicorp/hcl/go.sum new file mode 100644 index 000000000..b5e2922e8 --- /dev/null +++ b/vendor/github.com/hashicorp/hcl/go.sum @@ -0,0 +1,2 @@ +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go b/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go index 5d4c56739..6e5ef654b 100644 --- a/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go +++ b/vendor/github.com/hashicorp/hcl/hcl/ast/ast.go @@ -61,10 +61,9 @@ func (o *ObjectList) Filter(keys ...string) *ObjectList { } match := true - for i, k := range item.Keys[:len(keys)] { - keyi := keys[i] - key := k.Token.Value().(string) - if key != keyi && !strings.EqualFold(key, keyi) { + for i, key := range item.Keys[:len(keys)] { + key := key.Token.Value().(string) + if key != keys[i] && !strings.EqualFold(key, keys[i]) { match = false break } @@ -157,7 +156,8 @@ func (o *ObjectKey) Pos() token.Pos { type LiteralType struct { Token token.Token - // associated line comment, only when used in a list + // comment types, only used when in a list + LeadComment *CommentGroup LineComment *CommentGroup } @@ -215,4 +215,5 @@ func (c *CommentGroup) Pos() token.Pos { // GoStringer //------------------------------------------------------------------- -func (o *ObjectKey) GoString() string { return fmt.Sprintf("*%#v", *o) } +func (o *ObjectKey) GoString() string { return fmt.Sprintf("*%#v", *o) } +func (o *ObjectList) GoString() string { return fmt.Sprintf("*%#v", *o) } diff --git a/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go b/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go index f46ed4cc0..64c83bcfb 100644 --- a/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go +++ b/vendor/github.com/hashicorp/hcl/hcl/parser/parser.go @@ -3,6 +3,7 @@ package parser import ( + "bytes" "errors" "fmt" "strings" @@ -36,6 +37,11 @@ func newParser(src []byte) *Parser { // Parse returns the fully parsed source and returns the abstract syntax tree. func Parse(src []byte) (*ast.File, error) { + // normalize all line endings + // since the scanner and output only work with "\n" line endings, we may + // end up with dangling "\r" characters in the parsed data. + src = bytes.Replace(src, []byte("\r\n"), []byte("\n"), -1) + p := newParser(src) return p.Parse() } @@ -50,7 +56,7 @@ func (p *Parser) Parse() (*ast.File, error) { scerr = &PosError{Pos: pos, Err: errors.New(msg)} } - f.Node, err = p.objectList() + f.Node, err = p.objectList(false) if scerr != nil { return nil, scerr } @@ -62,11 +68,23 @@ func (p *Parser) Parse() (*ast.File, error) { return f, nil } -func (p *Parser) objectList() (*ast.ObjectList, error) { +// objectList parses a list of items within an object (generally k/v pairs). +// The parameter" obj" tells this whether to we are within an object (braces: +// '{', '}') or just at the top level. If we're within an object, we end +// at an RBRACE. +func (p *Parser) objectList(obj bool) (*ast.ObjectList, error) { defer un(trace(p, "ParseObjectList")) node := &ast.ObjectList{} for { + if obj { + tok := p.scan() + p.unscan() + if tok.Type == token.RBRACE { + break + } + } + n, err := p.objectItem() if err == errEofToken { break // we are finished @@ -179,9 +197,18 @@ func (p *Parser) objectItem() (*ast.ObjectItem, error) { keyStr = append(keyStr, k.Token.Text) } - return nil, fmt.Errorf( - "key '%s' expected start of object ('{') or assignment ('=')", - strings.Join(keyStr, " ")) + return nil, &PosError{ + Pos: p.tok.Pos, + Err: fmt.Errorf( + "key '%s' expected start of object ('{') or assignment ('=')", + strings.Join(keyStr, " ")), + } + } + + // key=#comment + // val + if p.lineComment != nil { + o.LineComment, p.lineComment = p.lineComment, nil } // do a look-ahead for line comment @@ -244,7 +271,10 @@ func (p *Parser) objectKey() ([]*ast.ObjectKey, error) { keyCount++ keys = append(keys, &ast.ObjectKey{Token: p.tok}) case token.ILLEGAL: - fmt.Println("illegal") + return keys, &PosError{ + Pos: p.tok.Pos, + Err: fmt.Errorf("illegal character"), + } default: return keys, &PosError{ Pos: p.tok.Pos, @@ -288,7 +318,7 @@ func (p *Parser) objectType() (*ast.ObjectType, error) { Lbrace: p.tok.Pos, } - l, err := p.objectList() + l, err := p.objectList(true) // if we hit RBRACE, we are good to go (means we parsed all Items), if it's // not a RBRACE, it's an syntax error and we just return it. @@ -296,9 +326,12 @@ func (p *Parser) objectType() (*ast.ObjectType, error) { return nil, err } - // If there is no error, we should be at a RBRACE to end the object - if p.tok.Type != token.RBRACE { - return nil, fmt.Errorf("object expected closing RBRACE got: %s", p.tok.Type) + // No error, scan and expect the ending to be a brace + if tok := p.scan(); tok.Type != token.RBRACE { + return nil, &PosError{ + Pos: tok.Pos, + Err: fmt.Errorf("object expected closing RBRACE got: %s", tok.Type), + } } o.List = l @@ -331,12 +364,18 @@ func (p *Parser) listType() (*ast.ListType, error) { } } switch tok.Type { - case token.NUMBER, token.FLOAT, token.STRING, token.HEREDOC: + case token.BOOL, token.NUMBER, token.FLOAT, token.STRING, token.HEREDOC: node, err := p.literalType() if err != nil { return nil, err } + // If there is a lead comment, apply it + if p.leadComment != nil { + node.LeadComment = p.leadComment + p.leadComment = nil + } + l.Add(node) needComma = true case token.COMMA: @@ -367,12 +406,16 @@ func (p *Parser) listType() (*ast.ListType, error) { } l.Add(node) needComma = true - case token.BOOL: - // TODO(arslan) should we support? not supported by HCL yet case token.LBRACK: - // TODO(arslan) should we support nested lists? Even though it's - // written in README of HCL, it's not a part of the grammar - // (not defined in parse.y) + node, err := p.listType() + if err != nil { + return nil, &PosError{ + Pos: tok.Pos, + Err: fmt.Errorf( + "error while trying to parse list within list: %s", err), + } + } + l.Add(node) case token.RBRACK: // finished l.Rbrack = p.tok.Pos diff --git a/vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go b/vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go new file mode 100644 index 000000000..7c038d12a --- /dev/null +++ b/vendor/github.com/hashicorp/hcl/hcl/printer/nodes.go @@ -0,0 +1,789 @@ +package printer + +import ( + "bytes" + "fmt" + "sort" + + "github.com/hashicorp/hcl/hcl/ast" + "github.com/hashicorp/hcl/hcl/token" +) + +const ( + blank = byte(' ') + newline = byte('\n') + tab = byte('\t') + infinity = 1 << 30 // offset or line +) + +var ( + unindent = []byte("\uE123") // in the private use space +) + +type printer struct { + cfg Config + prev token.Pos + + comments []*ast.CommentGroup // may be nil, contains all comments + standaloneComments []*ast.CommentGroup // contains all standalone comments (not assigned to any node) + + enableTrace bool + indentTrace int +} + +type ByPosition []*ast.CommentGroup + +func (b ByPosition) Len() int { return len(b) } +func (b ByPosition) Swap(i, j int) { b[i], b[j] = b[j], b[i] } +func (b ByPosition) Less(i, j int) bool { return b[i].Pos().Before(b[j].Pos()) } + +// collectComments comments all standalone comments which are not lead or line +// comment +func (p *printer) collectComments(node ast.Node) { + // first collect all comments. This is already stored in + // ast.File.(comments) + ast.Walk(node, func(nn ast.Node) (ast.Node, bool) { + switch t := nn.(type) { + case *ast.File: + p.comments = t.Comments + return nn, false + } + return nn, true + }) + + standaloneComments := make(map[token.Pos]*ast.CommentGroup, 0) + for _, c := range p.comments { + standaloneComments[c.Pos()] = c + } + + // next remove all lead and line comments from the overall comment map. + // This will give us comments which are standalone, comments which are not + // assigned to any kind of node. + ast.Walk(node, func(nn ast.Node) (ast.Node, bool) { + switch t := nn.(type) { + case *ast.LiteralType: + if t.LeadComment != nil { + for _, comment := range t.LeadComment.List { + if _, ok := standaloneComments[comment.Pos()]; ok { + delete(standaloneComments, comment.Pos()) + } + } + } + + if t.LineComment != nil { + for _, comment := range t.LineComment.List { + if _, ok := standaloneComments[comment.Pos()]; ok { + delete(standaloneComments, comment.Pos()) + } + } + } + case *ast.ObjectItem: + if t.LeadComment != nil { + for _, comment := range t.LeadComment.List { + if _, ok := standaloneComments[comment.Pos()]; ok { + delete(standaloneComments, comment.Pos()) + } + } + } + + if t.LineComment != nil { + for _, comment := range t.LineComment.List { + if _, ok := standaloneComments[comment.Pos()]; ok { + delete(standaloneComments, comment.Pos()) + } + } + } + } + + return nn, true + }) + + for _, c := range standaloneComments { + p.standaloneComments = append(p.standaloneComments, c) + } + + sort.Sort(ByPosition(p.standaloneComments)) +} + +// output prints creates b printable HCL output and returns it. +func (p *printer) output(n interface{}) []byte { + var buf bytes.Buffer + + switch t := n.(type) { + case *ast.File: + // File doesn't trace so we add the tracing here + defer un(trace(p, "File")) + return p.output(t.Node) + case *ast.ObjectList: + defer un(trace(p, "ObjectList")) + + var index int + for { + // Determine the location of the next actual non-comment + // item. If we're at the end, the next item is at "infinity" + var nextItem token.Pos + if index != len(t.Items) { + nextItem = t.Items[index].Pos() + } else { + nextItem = token.Pos{Offset: infinity, Line: infinity} + } + + // Go through the standalone comments in the file and print out + // the comments that we should be for this object item. + for _, c := range p.standaloneComments { + // Go through all the comments in the group. The group + // should be printed together, not separated by double newlines. + printed := false + newlinePrinted := false + for _, comment := range c.List { + // We only care about comments after the previous item + // we've printed so that comments are printed in the + // correct locations (between two objects for example). + // And before the next item. + if comment.Pos().After(p.prev) && comment.Pos().Before(nextItem) { + // if we hit the end add newlines so we can print the comment + // we don't do this if prev is invalid which means the + // beginning of the file since the first comment should + // be at the first line. + if !newlinePrinted && p.prev.IsValid() && index == len(t.Items) { + buf.Write([]byte{newline, newline}) + newlinePrinted = true + } + + // Write the actual comment. + buf.WriteString(comment.Text) + buf.WriteByte(newline) + + // Set printed to true to note that we printed something + printed = true + } + } + + // If we're not at the last item, write a new line so + // that there is a newline separating this comment from + // the next object. + if printed && index != len(t.Items) { + buf.WriteByte(newline) + } + } + + if index == len(t.Items) { + break + } + + buf.Write(p.output(t.Items[index])) + if index != len(t.Items)-1 { + // Always write a newline to separate us from the next item + buf.WriteByte(newline) + + // Need to determine if we're going to separate the next item + // with a blank line. The logic here is simple, though there + // are a few conditions: + // + // 1. The next object is more than one line away anyways, + // so we need an empty line. + // + // 2. The next object is not a "single line" object, so + // we need an empty line. + // + // 3. This current object is not a single line object, + // so we need an empty line. + current := t.Items[index] + next := t.Items[index+1] + if next.Pos().Line != t.Items[index].Pos().Line+1 || + !p.isSingleLineObject(next) || + !p.isSingleLineObject(current) { + buf.WriteByte(newline) + } + } + index++ + } + case *ast.ObjectKey: + buf.WriteString(t.Token.Text) + case *ast.ObjectItem: + p.prev = t.Pos() + buf.Write(p.objectItem(t)) + case *ast.LiteralType: + buf.Write(p.literalType(t)) + case *ast.ListType: + buf.Write(p.list(t)) + case *ast.ObjectType: + buf.Write(p.objectType(t)) + default: + fmt.Printf(" unknown type: %T\n", n) + } + + return buf.Bytes() +} + +func (p *printer) literalType(lit *ast.LiteralType) []byte { + result := []byte(lit.Token.Text) + switch lit.Token.Type { + case token.HEREDOC: + // Clear the trailing newline from heredocs + if result[len(result)-1] == '\n' { + result = result[:len(result)-1] + } + + // Poison lines 2+ so that we don't indent them + result = p.heredocIndent(result) + case token.STRING: + // If this is a multiline string, poison lines 2+ so we don't + // indent them. + if bytes.IndexRune(result, '\n') >= 0 { + result = p.heredocIndent(result) + } + } + + return result +} + +// objectItem returns the printable HCL form of an object item. An object type +// starts with one/multiple keys and has a value. The value might be of any +// type. +func (p *printer) objectItem(o *ast.ObjectItem) []byte { + defer un(trace(p, fmt.Sprintf("ObjectItem: %s", o.Keys[0].Token.Text))) + var buf bytes.Buffer + + if o.LeadComment != nil { + for _, comment := range o.LeadComment.List { + buf.WriteString(comment.Text) + buf.WriteByte(newline) + } + } + + // If key and val are on different lines, treat line comments like lead comments. + if o.LineComment != nil && o.Val.Pos().Line != o.Keys[0].Pos().Line { + for _, comment := range o.LineComment.List { + buf.WriteString(comment.Text) + buf.WriteByte(newline) + } + } + + for i, k := range o.Keys { + buf.WriteString(k.Token.Text) + buf.WriteByte(blank) + + // reach end of key + if o.Assign.IsValid() && i == len(o.Keys)-1 && len(o.Keys) == 1 { + buf.WriteString("=") + buf.WriteByte(blank) + } + } + + buf.Write(p.output(o.Val)) + + if o.LineComment != nil && o.Val.Pos().Line == o.Keys[0].Pos().Line { + buf.WriteByte(blank) + for _, comment := range o.LineComment.List { + buf.WriteString(comment.Text) + } + } + + return buf.Bytes() +} + +// objectType returns the printable HCL form of an object type. An object type +// begins with a brace and ends with a brace. +func (p *printer) objectType(o *ast.ObjectType) []byte { + defer un(trace(p, "ObjectType")) + var buf bytes.Buffer + buf.WriteString("{") + + var index int + var nextItem token.Pos + var commented, newlinePrinted bool + for { + // Determine the location of the next actual non-comment + // item. If we're at the end, the next item is the closing brace + if index != len(o.List.Items) { + nextItem = o.List.Items[index].Pos() + } else { + nextItem = o.Rbrace + } + + // Go through the standalone comments in the file and print out + // the comments that we should be for this object item. + for _, c := range p.standaloneComments { + printed := false + var lastCommentPos token.Pos + for _, comment := range c.List { + // We only care about comments after the previous item + // we've printed so that comments are printed in the + // correct locations (between two objects for example). + // And before the next item. + if comment.Pos().After(p.prev) && comment.Pos().Before(nextItem) { + // If there are standalone comments and the initial newline has not + // been printed yet, do it now. + if !newlinePrinted { + newlinePrinted = true + buf.WriteByte(newline) + } + + // add newline if it's between other printed nodes + if index > 0 { + commented = true + buf.WriteByte(newline) + } + + // Store this position + lastCommentPos = comment.Pos() + + // output the comment itself + buf.Write(p.indent(p.heredocIndent([]byte(comment.Text)))) + + // Set printed to true to note that we printed something + printed = true + + /* + if index != len(o.List.Items) { + buf.WriteByte(newline) // do not print on the end + } + */ + } + } + + // Stuff to do if we had comments + if printed { + // Always write a newline + buf.WriteByte(newline) + + // If there is another item in the object and our comment + // didn't hug it directly, then make sure there is a blank + // line separating them. + if nextItem != o.Rbrace && nextItem.Line != lastCommentPos.Line+1 { + buf.WriteByte(newline) + } + } + } + + if index == len(o.List.Items) { + p.prev = o.Rbrace + break + } + + // At this point we are sure that it's not a totally empty block: print + // the initial newline if it hasn't been printed yet by the previous + // block about standalone comments. + if !newlinePrinted { + buf.WriteByte(newline) + newlinePrinted = true + } + + // check if we have adjacent one liner items. If yes we'll going to align + // the comments. + var aligned []*ast.ObjectItem + for _, item := range o.List.Items[index:] { + // we don't group one line lists + if len(o.List.Items) == 1 { + break + } + + // one means a oneliner with out any lead comment + // two means a oneliner with lead comment + // anything else might be something else + cur := lines(string(p.objectItem(item))) + if cur > 2 { + break + } + + curPos := item.Pos() + + nextPos := token.Pos{} + if index != len(o.List.Items)-1 { + nextPos = o.List.Items[index+1].Pos() + } + + prevPos := token.Pos{} + if index != 0 { + prevPos = o.List.Items[index-1].Pos() + } + + // fmt.Println("DEBUG ----------------") + // fmt.Printf("prev = %+v prevPos: %s\n", prev, prevPos) + // fmt.Printf("cur = %+v curPos: %s\n", cur, curPos) + // fmt.Printf("next = %+v nextPos: %s\n", next, nextPos) + + if curPos.Line+1 == nextPos.Line { + aligned = append(aligned, item) + index++ + continue + } + + if curPos.Line-1 == prevPos.Line { + aligned = append(aligned, item) + index++ + + // finish if we have a new line or comment next. This happens + // if the next item is not adjacent + if curPos.Line+1 != nextPos.Line { + break + } + continue + } + + break + } + + // put newlines if the items are between other non aligned items. + // newlines are also added if there is a standalone comment already, so + // check it too + if !commented && index != len(aligned) { + buf.WriteByte(newline) + } + + if len(aligned) >= 1 { + p.prev = aligned[len(aligned)-1].Pos() + + items := p.alignedItems(aligned) + buf.Write(p.indent(items)) + } else { + p.prev = o.List.Items[index].Pos() + + buf.Write(p.indent(p.objectItem(o.List.Items[index]))) + index++ + } + + buf.WriteByte(newline) + } + + buf.WriteString("}") + return buf.Bytes() +} + +func (p *printer) alignedItems(items []*ast.ObjectItem) []byte { + var buf bytes.Buffer + + // find the longest key and value length, needed for alignment + var longestKeyLen int // longest key length + var longestValLen int // longest value length + for _, item := range items { + key := len(item.Keys[0].Token.Text) + val := len(p.output(item.Val)) + + if key > longestKeyLen { + longestKeyLen = key + } + + if val > longestValLen { + longestValLen = val + } + } + + for i, item := range items { + if item.LeadComment != nil { + for _, comment := range item.LeadComment.List { + buf.WriteString(comment.Text) + buf.WriteByte(newline) + } + } + + for i, k := range item.Keys { + keyLen := len(k.Token.Text) + buf.WriteString(k.Token.Text) + for i := 0; i < longestKeyLen-keyLen+1; i++ { + buf.WriteByte(blank) + } + + // reach end of key + if i == len(item.Keys)-1 && len(item.Keys) == 1 { + buf.WriteString("=") + buf.WriteByte(blank) + } + } + + val := p.output(item.Val) + valLen := len(val) + buf.Write(val) + + if item.Val.Pos().Line == item.Keys[0].Pos().Line && item.LineComment != nil { + for i := 0; i < longestValLen-valLen+1; i++ { + buf.WriteByte(blank) + } + + for _, comment := range item.LineComment.List { + buf.WriteString(comment.Text) + } + } + + // do not print for the last item + if i != len(items)-1 { + buf.WriteByte(newline) + } + } + + return buf.Bytes() +} + +// list returns the printable HCL form of an list type. +func (p *printer) list(l *ast.ListType) []byte { + if p.isSingleLineList(l) { + return p.singleLineList(l) + } + + var buf bytes.Buffer + buf.WriteString("[") + buf.WriteByte(newline) + + var longestLine int + for _, item := range l.List { + // for now we assume that the list only contains literal types + if lit, ok := item.(*ast.LiteralType); ok { + lineLen := len(lit.Token.Text) + if lineLen > longestLine { + longestLine = lineLen + } + } + } + + haveEmptyLine := false + for i, item := range l.List { + // If we have a lead comment, then we want to write that first + leadComment := false + if lit, ok := item.(*ast.LiteralType); ok && lit.LeadComment != nil { + leadComment = true + + // Ensure an empty line before every element with a + // lead comment (except the first item in a list). + if !haveEmptyLine && i != 0 { + buf.WriteByte(newline) + } + + for _, comment := range lit.LeadComment.List { + buf.Write(p.indent([]byte(comment.Text))) + buf.WriteByte(newline) + } + } + + // also indent each line + val := p.output(item) + curLen := len(val) + buf.Write(p.indent(val)) + + // if this item is a heredoc, then we output the comma on + // the next line. This is the only case this happens. + comma := []byte{','} + if lit, ok := item.(*ast.LiteralType); ok && lit.Token.Type == token.HEREDOC { + buf.WriteByte(newline) + comma = p.indent(comma) + } + + buf.Write(comma) + + if lit, ok := item.(*ast.LiteralType); ok && lit.LineComment != nil { + // if the next item doesn't have any comments, do not align + buf.WriteByte(blank) // align one space + for i := 0; i < longestLine-curLen; i++ { + buf.WriteByte(blank) + } + + for _, comment := range lit.LineComment.List { + buf.WriteString(comment.Text) + } + } + + buf.WriteByte(newline) + + // Ensure an empty line after every element with a + // lead comment (except the first item in a list). + haveEmptyLine = leadComment && i != len(l.List)-1 + if haveEmptyLine { + buf.WriteByte(newline) + } + } + + buf.WriteString("]") + return buf.Bytes() +} + +// isSingleLineList returns true if: +// * they were previously formatted entirely on one line +// * they consist entirely of literals +// * there are either no heredoc strings or the list has exactly one element +// * there are no line comments +func (printer) isSingleLineList(l *ast.ListType) bool { + for _, item := range l.List { + if item.Pos().Line != l.Lbrack.Line { + return false + } + + lit, ok := item.(*ast.LiteralType) + if !ok { + return false + } + + if lit.Token.Type == token.HEREDOC && len(l.List) != 1 { + return false + } + + if lit.LineComment != nil { + return false + } + } + + return true +} + +// singleLineList prints a simple single line list. +// For a definition of "simple", see isSingleLineList above. +func (p *printer) singleLineList(l *ast.ListType) []byte { + buf := &bytes.Buffer{} + + buf.WriteString("[") + for i, item := range l.List { + if i != 0 { + buf.WriteString(", ") + } + + // Output the item itself + buf.Write(p.output(item)) + + // The heredoc marker needs to be at the end of line. + if lit, ok := item.(*ast.LiteralType); ok && lit.Token.Type == token.HEREDOC { + buf.WriteByte(newline) + } + } + + buf.WriteString("]") + return buf.Bytes() +} + +// indent indents the lines of the given buffer for each non-empty line +func (p *printer) indent(buf []byte) []byte { + var prefix []byte + if p.cfg.SpacesWidth != 0 { + for i := 0; i < p.cfg.SpacesWidth; i++ { + prefix = append(prefix, blank) + } + } else { + prefix = []byte{tab} + } + + var res []byte + bol := true + for _, c := range buf { + if bol && c != '\n' { + res = append(res, prefix...) + } + + res = append(res, c) + bol = c == '\n' + } + return res +} + +// unindent removes all the indentation from the tombstoned lines +func (p *printer) unindent(buf []byte) []byte { + var res []byte + for i := 0; i < len(buf); i++ { + skip := len(buf)-i <= len(unindent) + if !skip { + skip = !bytes.Equal(unindent, buf[i:i+len(unindent)]) + } + if skip { + res = append(res, buf[i]) + continue + } + + // We have a marker. we have to backtrace here and clean out + // any whitespace ahead of our tombstone up to a \n + for j := len(res) - 1; j >= 0; j-- { + if res[j] == '\n' { + break + } + + res = res[:j] + } + + // Skip the entire unindent marker + i += len(unindent) - 1 + } + + return res +} + +// heredocIndent marks all the 2nd and further lines as unindentable +func (p *printer) heredocIndent(buf []byte) []byte { + var res []byte + bol := false + for _, c := range buf { + if bol && c != '\n' { + res = append(res, unindent...) + } + res = append(res, c) + bol = c == '\n' + } + return res +} + +// isSingleLineObject tells whether the given object item is a single +// line object such as "obj {}". +// +// A single line object: +// +// * has no lead comments (hence multi-line) +// * has no assignment +// * has no values in the stanza (within {}) +// +func (p *printer) isSingleLineObject(val *ast.ObjectItem) bool { + // If there is a lead comment, can't be one line + if val.LeadComment != nil { + return false + } + + // If there is assignment, we always break by line + if val.Assign.IsValid() { + return false + } + + // If it isn't an object type, then its not a single line object + ot, ok := val.Val.(*ast.ObjectType) + if !ok { + return false + } + + // If the object has no items, it is single line! + return len(ot.List.Items) == 0 +} + +func lines(txt string) int { + endline := 1 + for i := 0; i < len(txt); i++ { + if txt[i] == '\n' { + endline++ + } + } + return endline +} + +// ---------------------------------------------------------------------------- +// Tracing support + +func (p *printer) printTrace(a ...interface{}) { + if !p.enableTrace { + return + } + + const dots = ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . " + const n = len(dots) + i := 2 * p.indentTrace + for i > n { + fmt.Print(dots) + i -= n + } + // i <= n + fmt.Print(dots[0:i]) + fmt.Println(a...) +} + +func trace(p *printer, msg string) *printer { + p.printTrace(msg, "(") + p.indentTrace++ + return p +} + +// Usage pattern: defer un(trace(p, "...")) +func un(p *printer) { + p.indentTrace-- + p.printTrace(")") +} diff --git a/vendor/github.com/hashicorp/hcl/hcl/printer/printer.go b/vendor/github.com/hashicorp/hcl/hcl/printer/printer.go new file mode 100644 index 000000000..6617ab8e7 --- /dev/null +++ b/vendor/github.com/hashicorp/hcl/hcl/printer/printer.go @@ -0,0 +1,66 @@ +// Package printer implements printing of AST nodes to HCL format. +package printer + +import ( + "bytes" + "io" + "text/tabwriter" + + "github.com/hashicorp/hcl/hcl/ast" + "github.com/hashicorp/hcl/hcl/parser" +) + +var DefaultConfig = Config{ + SpacesWidth: 2, +} + +// A Config node controls the output of Fprint. +type Config struct { + SpacesWidth int // if set, it will use spaces instead of tabs for alignment +} + +func (c *Config) Fprint(output io.Writer, node ast.Node) error { + p := &printer{ + cfg: *c, + comments: make([]*ast.CommentGroup, 0), + standaloneComments: make([]*ast.CommentGroup, 0), + // enableTrace: true, + } + + p.collectComments(node) + + if _, err := output.Write(p.unindent(p.output(node))); err != nil { + return err + } + + // flush tabwriter, if any + var err error + if tw, _ := output.(*tabwriter.Writer); tw != nil { + err = tw.Flush() + } + + return err +} + +// Fprint "pretty-prints" an HCL node to output +// It calls Config.Fprint with default settings. +func Fprint(output io.Writer, node ast.Node) error { + return DefaultConfig.Fprint(output, node) +} + +// Format formats src HCL and returns the result. +func Format(src []byte) ([]byte, error) { + node, err := parser.Parse(src) + if err != nil { + return nil, err + } + + var buf bytes.Buffer + if err := DefaultConfig.Fprint(&buf, node); err != nil { + return nil, err + } + + // Add trailing newline to result + buf.WriteString("\n") + return buf.Bytes(), nil +} diff --git a/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go b/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go index b20416539..624a18fe3 100644 --- a/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go +++ b/vendor/github.com/hashicorp/hcl/hcl/scanner/scanner.go @@ -74,14 +74,6 @@ func (s *Scanner) next() rune { return eof } - if ch == utf8.RuneError && size == 1 { - s.srcPos.Column++ - s.srcPos.Offset += size - s.lastCharLen = size - s.err("illegal UTF-8 encoding") - return ch - } - // remember last position s.prevPos = s.srcPos @@ -89,12 +81,27 @@ func (s *Scanner) next() rune { s.lastCharLen = size s.srcPos.Offset += size + if ch == utf8.RuneError && size == 1 { + s.err("illegal UTF-8 encoding") + return ch + } + if ch == '\n' { s.srcPos.Line++ s.lastLineLen = s.srcPos.Column s.srcPos.Column = 0 } + if ch == '\x00' { + s.err("unexpected null character (0x00)") + return eof + } + + if ch == '\uE123' { + s.err("unicode code point U+E123 reserved for internal use") + return utf8.RuneError + } + // debug // fmt.Printf("ch: %q, offset:column: %d:%d\n", ch, s.srcPos.Offset, s.srcPos.Column) return ch @@ -224,6 +231,11 @@ func (s *Scanner) Scan() token.Token { func (s *Scanner) scanComment(ch rune) { // single line comments if ch == '#' || (ch == '/' && s.peek() != '*') { + if ch == '/' && s.peek() != '/' { + s.err("expected '/' for comment") + return + } + ch = s.next() for ch != '\n' && ch >= 0 && ch != eof { ch = s.next() @@ -340,7 +352,7 @@ func (s *Scanner) scanNumber(ch rune) token.Type { return token.NUMBER } -// scanMantissa scans the mantissa begining from the rune. It returns the next +// scanMantissa scans the mantissa beginning from the rune. It returns the next // non decimal rune. It's used to determine wheter it's a fraction or exponent. func (s *Scanner) scanMantissa(ch rune) rune { scanned := false @@ -421,16 +433,16 @@ func (s *Scanner) scanHeredoc() { // Read the identifier identBytes := s.src[offs : s.srcPos.Offset-s.lastCharLen] - if len(identBytes) == 0 { + if len(identBytes) == 0 || (len(identBytes) == 1 && identBytes[0] == '-') { s.err("zero-length heredoc anchor") return } var identRegexp *regexp.Regexp if identBytes[0] == '-' { - identRegexp = regexp.MustCompile(fmt.Sprintf(`[[:space:]]*%s\z`, identBytes[1:])) + identRegexp = regexp.MustCompile(fmt.Sprintf(`^[[:space:]]*%s\r*\z`, identBytes[1:])) } else { - identRegexp = regexp.MustCompile(fmt.Sprintf(`[[:space:]]*%s\z`, identBytes)) + identRegexp = regexp.MustCompile(fmt.Sprintf(`^[[:space:]]*%s\r*\z`, identBytes)) } // Read the actual string value @@ -469,7 +481,7 @@ func (s *Scanner) scanString() { // read character after quote ch := s.next() - if ch < 0 || ch == eof { + if (ch == '\n' && braces == 0) || ch < 0 || ch == eof { s.err("literal not terminated") return } @@ -540,7 +552,7 @@ func (s *Scanner) scanDigits(ch rune, base, n int) rune { s.err("illegal char escape") } - if n != start { + if n != start && ch != eof { // we scanned all digits, put the last non digit char back, // only if we read anything at all s.unread() diff --git a/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go b/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go index 956c8991c..5f981eaa2 100644 --- a/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go +++ b/vendor/github.com/hashicorp/hcl/hcl/strconv/quote.go @@ -27,6 +27,9 @@ func Unquote(s string) (t string, err error) { if quote != '"' { return "", ErrSyntax } + if !contains(s, '$') && !contains(s, '{') && contains(s, '\n') { + return "", ErrSyntax + } // Is it trivial? Avoid allocation. if !contains(s, '\\') && !contains(s, quote) && !contains(s, '$') { @@ -46,7 +49,7 @@ func Unquote(s string) (t string, err error) { for len(s) > 0 { // If we're starting a '${}' then let it through un-unquoted. // Specifically: we don't unquote any characters within the `${}` - // section, except for escaped backslashes, which we handle specifically. + // section. if s[0] == '$' && len(s) > 1 && s[1] == '{' { buf = append(buf, '$', '{') s = s[2:] @@ -61,16 +64,6 @@ func Unquote(s string) (t string, err error) { s = s[size:] - // We special case escaped backslashes in interpolations, converting - // them to their unescaped equivalents. - if r == '\\' { - q, _ := utf8.DecodeRuneInString(s) - switch q { - case '\\': - continue - } - } - n := utf8.EncodeRune(runeTmp[:], r) buf = append(buf, runeTmp[:n]...) @@ -94,6 +87,10 @@ func Unquote(s string) (t string, err error) { } } + if s[0] == '\n' { + return "", ErrSyntax + } + c, multibyte, ss, err := unquoteChar(s, quote) if err != nil { return "", err diff --git a/vendor/github.com/hashicorp/hcl/json/parser/flatten.go b/vendor/github.com/hashicorp/hcl/json/parser/flatten.go index 6eb14a253..f652d6fe7 100644 --- a/vendor/github.com/hashicorp/hcl/json/parser/flatten.go +++ b/vendor/github.com/hashicorp/hcl/json/parser/flatten.go @@ -48,6 +48,12 @@ func flattenListType( item *ast.ObjectItem, items []*ast.ObjectItem, frontier []*ast.ObjectItem) ([]*ast.ObjectItem, []*ast.ObjectItem) { + // If the list is empty, keep the original list + if len(ot.List) == 0 { + items = append(items, item) + return items, frontier + } + // All the elements of this object must also be objects! for _, subitem := range ot.List { if _, ok := subitem.(*ast.ObjectType); !ok { diff --git a/vendor/github.com/hashicorp/hcl/json/parser/parser.go b/vendor/github.com/hashicorp/hcl/json/parser/parser.go index 3a62ec3f6..125a5f072 100644 --- a/vendor/github.com/hashicorp/hcl/json/parser/parser.go +++ b/vendor/github.com/hashicorp/hcl/json/parser/parser.go @@ -5,6 +5,7 @@ import ( "fmt" "github.com/hashicorp/hcl/hcl/ast" + hcltoken "github.com/hashicorp/hcl/hcl/token" "github.com/hashicorp/hcl/json/scanner" "github.com/hashicorp/hcl/json/token" ) @@ -85,6 +86,7 @@ func (p *Parser) objectList() (*ast.ObjectList, error) { break } } + return node, nil } @@ -103,6 +105,14 @@ func (p *Parser) objectItem() (*ast.ObjectItem, error) { switch p.tok.Type { case token.COLON: + pos := p.tok.Pos + o.Assign = hcltoken.Pos{ + Filename: pos.Filename, + Offset: pos.Offset, + Line: pos.Line, + Column: pos.Column, + } + o.Val, err = p.objectValue() if err != nil { return nil, err @@ -137,7 +147,7 @@ func (p *Parser) objectKey() ([]*ast.ObjectKey, error) { // Done return keys, nil case token.ILLEGAL: - fmt.Println("illegal") + return nil, errors.New("illegal") default: return nil, fmt.Errorf("expected: STRING got: %s", p.tok.Type) } diff --git a/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go b/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go index 477f71ff3..fe3f0f095 100644 --- a/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go +++ b/vendor/github.com/hashicorp/hcl/json/scanner/scanner.go @@ -246,7 +246,7 @@ func (s *Scanner) scanNumber(ch rune) token.Type { return token.NUMBER } -// scanMantissa scans the mantissa begining from the rune. It returns the next +// scanMantissa scans the mantissa beginning from the rune. It returns the next // non decimal rune. It's used to determine wheter it's a fraction or exponent. func (s *Scanner) scanMantissa(ch rune) rune { scanned := false @@ -296,7 +296,7 @@ func (s *Scanner) scanString() { return } - if ch == '"' && braces == 0 { + if ch == '"' { break } diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b.go b/vendor/golang.org/x/crypto/blake2b/blake2b.go new file mode 100644 index 000000000..58ea87536 --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2b.go @@ -0,0 +1,289 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package blake2b implements the BLAKE2b hash algorithm defined by RFC 7693 +// and the extendable output function (XOF) BLAKE2Xb. +// +// For a detailed specification of BLAKE2b see https://blake2.net/blake2.pdf +// and for BLAKE2Xb see https://blake2.net/blake2x.pdf +// +// If you aren't sure which function you need, use BLAKE2b (Sum512 or New512). +// If you need a secret-key MAC (message authentication code), use the New512 +// function with a non-nil key. +// +// BLAKE2X is a construction to compute hash values larger than 64 bytes. It +// can produce hash values between 0 and 4 GiB. +package blake2b + +import ( + "encoding/binary" + "errors" + "hash" +) + +const ( + // The blocksize of BLAKE2b in bytes. + BlockSize = 128 + // The hash size of BLAKE2b-512 in bytes. + Size = 64 + // The hash size of BLAKE2b-384 in bytes. + Size384 = 48 + // The hash size of BLAKE2b-256 in bytes. + Size256 = 32 +) + +var ( + useAVX2 bool + useAVX bool + useSSE4 bool +) + +var ( + errKeySize = errors.New("blake2b: invalid key size") + errHashSize = errors.New("blake2b: invalid hash size") +) + +var iv = [8]uint64{ + 0x6a09e667f3bcc908, 0xbb67ae8584caa73b, 0x3c6ef372fe94f82b, 0xa54ff53a5f1d36f1, + 0x510e527fade682d1, 0x9b05688c2b3e6c1f, 0x1f83d9abfb41bd6b, 0x5be0cd19137e2179, +} + +// Sum512 returns the BLAKE2b-512 checksum of the data. +func Sum512(data []byte) [Size]byte { + var sum [Size]byte + checkSum(&sum, Size, data) + return sum +} + +// Sum384 returns the BLAKE2b-384 checksum of the data. +func Sum384(data []byte) [Size384]byte { + var sum [Size]byte + var sum384 [Size384]byte + checkSum(&sum, Size384, data) + copy(sum384[:], sum[:Size384]) + return sum384 +} + +// Sum256 returns the BLAKE2b-256 checksum of the data. +func Sum256(data []byte) [Size256]byte { + var sum [Size]byte + var sum256 [Size256]byte + checkSum(&sum, Size256, data) + copy(sum256[:], sum[:Size256]) + return sum256 +} + +// New512 returns a new hash.Hash computing the BLAKE2b-512 checksum. A non-nil +// key turns the hash into a MAC. The key must between zero and 64 bytes long. +func New512(key []byte) (hash.Hash, error) { return newDigest(Size, key) } + +// New384 returns a new hash.Hash computing the BLAKE2b-384 checksum. A non-nil +// key turns the hash into a MAC. The key must between zero and 64 bytes long. +func New384(key []byte) (hash.Hash, error) { return newDigest(Size384, key) } + +// New256 returns a new hash.Hash computing the BLAKE2b-256 checksum. A non-nil +// key turns the hash into a MAC. The key must between zero and 64 bytes long. +func New256(key []byte) (hash.Hash, error) { return newDigest(Size256, key) } + +// New returns a new hash.Hash computing the BLAKE2b checksum with a custom length. +// A non-nil key turns the hash into a MAC. The key must between zero and 64 bytes long. +// The hash size can be a value between 1 and 64 but it is highly recommended to use +// values equal or greater than: +// - 32 if BLAKE2b is used as a hash function (The key is zero bytes long). +// - 16 if BLAKE2b is used as a MAC function (The key is at least 16 bytes long). +// When the key is nil, the returned hash.Hash implements BinaryMarshaler +// and BinaryUnmarshaler for state (de)serialization as documented by hash.Hash. +func New(size int, key []byte) (hash.Hash, error) { return newDigest(size, key) } + +func newDigest(hashSize int, key []byte) (*digest, error) { + if hashSize < 1 || hashSize > Size { + return nil, errHashSize + } + if len(key) > Size { + return nil, errKeySize + } + d := &digest{ + size: hashSize, + keyLen: len(key), + } + copy(d.key[:], key) + d.Reset() + return d, nil +} + +func checkSum(sum *[Size]byte, hashSize int, data []byte) { + h := iv + h[0] ^= uint64(hashSize) | (1 << 16) | (1 << 24) + var c [2]uint64 + + if length := len(data); length > BlockSize { + n := length &^ (BlockSize - 1) + if length == n { + n -= BlockSize + } + hashBlocks(&h, &c, 0, data[:n]) + data = data[n:] + } + + var block [BlockSize]byte + offset := copy(block[:], data) + remaining := uint64(BlockSize - offset) + if c[0] < remaining { + c[1]-- + } + c[0] -= remaining + + hashBlocks(&h, &c, 0xFFFFFFFFFFFFFFFF, block[:]) + + for i, v := range h[:(hashSize+7)/8] { + binary.LittleEndian.PutUint64(sum[8*i:], v) + } +} + +type digest struct { + h [8]uint64 + c [2]uint64 + size int + block [BlockSize]byte + offset int + + key [BlockSize]byte + keyLen int +} + +const ( + magic = "b2b" + marshaledSize = len(magic) + 8*8 + 2*8 + 1 + BlockSize + 1 +) + +func (d *digest) MarshalBinary() ([]byte, error) { + if d.keyLen != 0 { + return nil, errors.New("crypto/blake2b: cannot marshal MACs") + } + b := make([]byte, 0, marshaledSize) + b = append(b, magic...) + for i := 0; i < 8; i++ { + b = appendUint64(b, d.h[i]) + } + b = appendUint64(b, d.c[0]) + b = appendUint64(b, d.c[1]) + // Maximum value for size is 64 + b = append(b, byte(d.size)) + b = append(b, d.block[:]...) + b = append(b, byte(d.offset)) + return b, nil +} + +func (d *digest) UnmarshalBinary(b []byte) error { + if len(b) < len(magic) || string(b[:len(magic)]) != magic { + return errors.New("crypto/blake2b: invalid hash state identifier") + } + if len(b) != marshaledSize { + return errors.New("crypto/blake2b: invalid hash state size") + } + b = b[len(magic):] + for i := 0; i < 8; i++ { + b, d.h[i] = consumeUint64(b) + } + b, d.c[0] = consumeUint64(b) + b, d.c[1] = consumeUint64(b) + d.size = int(b[0]) + b = b[1:] + copy(d.block[:], b[:BlockSize]) + b = b[BlockSize:] + d.offset = int(b[0]) + return nil +} + +func (d *digest) BlockSize() int { return BlockSize } + +func (d *digest) Size() int { return d.size } + +func (d *digest) Reset() { + d.h = iv + d.h[0] ^= uint64(d.size) | (uint64(d.keyLen) << 8) | (1 << 16) | (1 << 24) + d.offset, d.c[0], d.c[1] = 0, 0, 0 + if d.keyLen > 0 { + d.block = d.key + d.offset = BlockSize + } +} + +func (d *digest) Write(p []byte) (n int, err error) { + n = len(p) + + if d.offset > 0 { + remaining := BlockSize - d.offset + if n <= remaining { + d.offset += copy(d.block[d.offset:], p) + return + } + copy(d.block[d.offset:], p[:remaining]) + hashBlocks(&d.h, &d.c, 0, d.block[:]) + d.offset = 0 + p = p[remaining:] + } + + if length := len(p); length > BlockSize { + nn := length &^ (BlockSize - 1) + if length == nn { + nn -= BlockSize + } + hashBlocks(&d.h, &d.c, 0, p[:nn]) + p = p[nn:] + } + + if len(p) > 0 { + d.offset += copy(d.block[:], p) + } + + return +} + +func (d *digest) Sum(sum []byte) []byte { + var hash [Size]byte + d.finalize(&hash) + return append(sum, hash[:d.size]...) +} + +func (d *digest) finalize(hash *[Size]byte) { + var block [BlockSize]byte + copy(block[:], d.block[:d.offset]) + remaining := uint64(BlockSize - d.offset) + + c := d.c + if c[0] < remaining { + c[1]-- + } + c[0] -= remaining + + h := d.h + hashBlocks(&h, &c, 0xFFFFFFFFFFFFFFFF, block[:]) + + for i, v := range h { + binary.LittleEndian.PutUint64(hash[8*i:], v) + } +} + +func appendUint64(b []byte, x uint64) []byte { + var a [8]byte + binary.BigEndian.PutUint64(a[:], x) + return append(b, a[:]...) +} + +func appendUint32(b []byte, x uint32) []byte { + var a [4]byte + binary.BigEndian.PutUint32(a[:], x) + return append(b, a[:]...) +} + +func consumeUint64(b []byte) ([]byte, uint64) { + x := binary.BigEndian.Uint64(b) + return b[8:], x +} + +func consumeUint32(b []byte) ([]byte, uint32) { + x := binary.BigEndian.Uint32(b) + return b[4:], x +} diff --git a/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go new file mode 100644 index 000000000..4d31dd0fd --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.go @@ -0,0 +1,37 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.7,amd64,!gccgo,!appengine + +package blake2b + +import "golang.org/x/sys/cpu" + +func init() { + useAVX2 = cpu.X86.HasAVX2 + useAVX = cpu.X86.HasAVX + useSSE4 = cpu.X86.HasSSE41 +} + +//go:noescape +func hashBlocksAVX2(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) + +//go:noescape +func hashBlocksAVX(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) + +//go:noescape +func hashBlocksSSE4(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) + +func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) { + switch { + case useAVX2: + hashBlocksAVX2(h, c, flag, blocks) + case useAVX: + hashBlocksAVX(h, c, flag, blocks) + case useSSE4: + hashBlocksSSE4(h, c, flag, blocks) + default: + hashBlocksGeneric(h, c, flag, blocks) + } +} diff --git a/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s new file mode 100644 index 000000000..5593b1b3d --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2bAVX2_amd64.s @@ -0,0 +1,750 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.7,amd64,!gccgo,!appengine + +#include "textflag.h" + +DATA ·AVX2_iv0<>+0x00(SB)/8, $0x6a09e667f3bcc908 +DATA ·AVX2_iv0<>+0x08(SB)/8, $0xbb67ae8584caa73b +DATA ·AVX2_iv0<>+0x10(SB)/8, $0x3c6ef372fe94f82b +DATA ·AVX2_iv0<>+0x18(SB)/8, $0xa54ff53a5f1d36f1 +GLOBL ·AVX2_iv0<>(SB), (NOPTR+RODATA), $32 + +DATA ·AVX2_iv1<>+0x00(SB)/8, $0x510e527fade682d1 +DATA ·AVX2_iv1<>+0x08(SB)/8, $0x9b05688c2b3e6c1f +DATA ·AVX2_iv1<>+0x10(SB)/8, $0x1f83d9abfb41bd6b +DATA ·AVX2_iv1<>+0x18(SB)/8, $0x5be0cd19137e2179 +GLOBL ·AVX2_iv1<>(SB), (NOPTR+RODATA), $32 + +DATA ·AVX2_c40<>+0x00(SB)/8, $0x0201000706050403 +DATA ·AVX2_c40<>+0x08(SB)/8, $0x0a09080f0e0d0c0b +DATA ·AVX2_c40<>+0x10(SB)/8, $0x0201000706050403 +DATA ·AVX2_c40<>+0x18(SB)/8, $0x0a09080f0e0d0c0b +GLOBL ·AVX2_c40<>(SB), (NOPTR+RODATA), $32 + +DATA ·AVX2_c48<>+0x00(SB)/8, $0x0100070605040302 +DATA ·AVX2_c48<>+0x08(SB)/8, $0x09080f0e0d0c0b0a +DATA ·AVX2_c48<>+0x10(SB)/8, $0x0100070605040302 +DATA ·AVX2_c48<>+0x18(SB)/8, $0x09080f0e0d0c0b0a +GLOBL ·AVX2_c48<>(SB), (NOPTR+RODATA), $32 + +DATA ·AVX_iv0<>+0x00(SB)/8, $0x6a09e667f3bcc908 +DATA ·AVX_iv0<>+0x08(SB)/8, $0xbb67ae8584caa73b +GLOBL ·AVX_iv0<>(SB), (NOPTR+RODATA), $16 + +DATA ·AVX_iv1<>+0x00(SB)/8, $0x3c6ef372fe94f82b +DATA ·AVX_iv1<>+0x08(SB)/8, $0xa54ff53a5f1d36f1 +GLOBL ·AVX_iv1<>(SB), (NOPTR+RODATA), $16 + +DATA ·AVX_iv2<>+0x00(SB)/8, $0x510e527fade682d1 +DATA ·AVX_iv2<>+0x08(SB)/8, $0x9b05688c2b3e6c1f +GLOBL ·AVX_iv2<>(SB), (NOPTR+RODATA), $16 + +DATA ·AVX_iv3<>+0x00(SB)/8, $0x1f83d9abfb41bd6b +DATA ·AVX_iv3<>+0x08(SB)/8, $0x5be0cd19137e2179 +GLOBL ·AVX_iv3<>(SB), (NOPTR+RODATA), $16 + +DATA ·AVX_c40<>+0x00(SB)/8, $0x0201000706050403 +DATA ·AVX_c40<>+0x08(SB)/8, $0x0a09080f0e0d0c0b +GLOBL ·AVX_c40<>(SB), (NOPTR+RODATA), $16 + +DATA ·AVX_c48<>+0x00(SB)/8, $0x0100070605040302 +DATA ·AVX_c48<>+0x08(SB)/8, $0x09080f0e0d0c0b0a +GLOBL ·AVX_c48<>(SB), (NOPTR+RODATA), $16 + +#define VPERMQ_0x39_Y1_Y1 BYTE $0xc4; BYTE $0xe3; BYTE $0xfd; BYTE $0x00; BYTE $0xc9; BYTE $0x39 +#define VPERMQ_0x93_Y1_Y1 BYTE $0xc4; BYTE $0xe3; BYTE $0xfd; BYTE $0x00; BYTE $0xc9; BYTE $0x93 +#define VPERMQ_0x4E_Y2_Y2 BYTE $0xc4; BYTE $0xe3; BYTE $0xfd; BYTE $0x00; BYTE $0xd2; BYTE $0x4e +#define VPERMQ_0x93_Y3_Y3 BYTE $0xc4; BYTE $0xe3; BYTE $0xfd; BYTE $0x00; BYTE $0xdb; BYTE $0x93 +#define VPERMQ_0x39_Y3_Y3 BYTE $0xc4; BYTE $0xe3; BYTE $0xfd; BYTE $0x00; BYTE $0xdb; BYTE $0x39 + +#define ROUND_AVX2(m0, m1, m2, m3, t, c40, c48) \ + VPADDQ m0, Y0, Y0; \ + VPADDQ Y1, Y0, Y0; \ + VPXOR Y0, Y3, Y3; \ + VPSHUFD $-79, Y3, Y3; \ + VPADDQ Y3, Y2, Y2; \ + VPXOR Y2, Y1, Y1; \ + VPSHUFB c40, Y1, Y1; \ + VPADDQ m1, Y0, Y0; \ + VPADDQ Y1, Y0, Y0; \ + VPXOR Y0, Y3, Y3; \ + VPSHUFB c48, Y3, Y3; \ + VPADDQ Y3, Y2, Y2; \ + VPXOR Y2, Y1, Y1; \ + VPADDQ Y1, Y1, t; \ + VPSRLQ $63, Y1, Y1; \ + VPXOR t, Y1, Y1; \ + VPERMQ_0x39_Y1_Y1; \ + VPERMQ_0x4E_Y2_Y2; \ + VPERMQ_0x93_Y3_Y3; \ + VPADDQ m2, Y0, Y0; \ + VPADDQ Y1, Y0, Y0; \ + VPXOR Y0, Y3, Y3; \ + VPSHUFD $-79, Y3, Y3; \ + VPADDQ Y3, Y2, Y2; \ + VPXOR Y2, Y1, Y1; \ + VPSHUFB c40, Y1, Y1; \ + VPADDQ m3, Y0, Y0; \ + VPADDQ Y1, Y0, Y0; \ + VPXOR Y0, Y3, Y3; \ + VPSHUFB c48, Y3, Y3; \ + VPADDQ Y3, Y2, Y2; \ + VPXOR Y2, Y1, Y1; \ + VPADDQ Y1, Y1, t; \ + VPSRLQ $63, Y1, Y1; \ + VPXOR t, Y1, Y1; \ + VPERMQ_0x39_Y3_Y3; \ + VPERMQ_0x4E_Y2_Y2; \ + VPERMQ_0x93_Y1_Y1 + +#define VMOVQ_SI_X11_0 BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x1E +#define VMOVQ_SI_X12_0 BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x26 +#define VMOVQ_SI_X13_0 BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x2E +#define VMOVQ_SI_X14_0 BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x36 +#define VMOVQ_SI_X15_0 BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x3E + +#define VMOVQ_SI_X11(n) BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x5E; BYTE $n +#define VMOVQ_SI_X12(n) BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x66; BYTE $n +#define VMOVQ_SI_X13(n) BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x6E; BYTE $n +#define VMOVQ_SI_X14(n) BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x76; BYTE $n +#define VMOVQ_SI_X15(n) BYTE $0xC5; BYTE $0x7A; BYTE $0x7E; BYTE $0x7E; BYTE $n + +#define VPINSRQ_1_SI_X11_0 BYTE $0xC4; BYTE $0x63; BYTE $0xA1; BYTE $0x22; BYTE $0x1E; BYTE $0x01 +#define VPINSRQ_1_SI_X12_0 BYTE $0xC4; BYTE $0x63; BYTE $0x99; BYTE $0x22; BYTE $0x26; BYTE $0x01 +#define VPINSRQ_1_SI_X13_0 BYTE $0xC4; BYTE $0x63; BYTE $0x91; BYTE $0x22; BYTE $0x2E; BYTE $0x01 +#define VPINSRQ_1_SI_X14_0 BYTE $0xC4; BYTE $0x63; BYTE $0x89; BYTE $0x22; BYTE $0x36; BYTE $0x01 +#define VPINSRQ_1_SI_X15_0 BYTE $0xC4; BYTE $0x63; BYTE $0x81; BYTE $0x22; BYTE $0x3E; BYTE $0x01 + +#define VPINSRQ_1_SI_X11(n) BYTE $0xC4; BYTE $0x63; BYTE $0xA1; BYTE $0x22; BYTE $0x5E; BYTE $n; BYTE $0x01 +#define VPINSRQ_1_SI_X12(n) BYTE $0xC4; BYTE $0x63; BYTE $0x99; BYTE $0x22; BYTE $0x66; BYTE $n; BYTE $0x01 +#define VPINSRQ_1_SI_X13(n) BYTE $0xC4; BYTE $0x63; BYTE $0x91; BYTE $0x22; BYTE $0x6E; BYTE $n; BYTE $0x01 +#define VPINSRQ_1_SI_X14(n) BYTE $0xC4; BYTE $0x63; BYTE $0x89; BYTE $0x22; BYTE $0x76; BYTE $n; BYTE $0x01 +#define VPINSRQ_1_SI_X15(n) BYTE $0xC4; BYTE $0x63; BYTE $0x81; BYTE $0x22; BYTE $0x7E; BYTE $n; BYTE $0x01 + +#define VMOVQ_R8_X15 BYTE $0xC4; BYTE $0x41; BYTE $0xF9; BYTE $0x6E; BYTE $0xF8 +#define VPINSRQ_1_R9_X15 BYTE $0xC4; BYTE $0x43; BYTE $0x81; BYTE $0x22; BYTE $0xF9; BYTE $0x01 + +// load msg: Y12 = (i0, i1, i2, i3) +// i0, i1, i2, i3 must not be 0 +#define LOAD_MSG_AVX2_Y12(i0, i1, i2, i3) \ + VMOVQ_SI_X12(i0*8); \ + VMOVQ_SI_X11(i2*8); \ + VPINSRQ_1_SI_X12(i1*8); \ + VPINSRQ_1_SI_X11(i3*8); \ + VINSERTI128 $1, X11, Y12, Y12 + +// load msg: Y13 = (i0, i1, i2, i3) +// i0, i1, i2, i3 must not be 0 +#define LOAD_MSG_AVX2_Y13(i0, i1, i2, i3) \ + VMOVQ_SI_X13(i0*8); \ + VMOVQ_SI_X11(i2*8); \ + VPINSRQ_1_SI_X13(i1*8); \ + VPINSRQ_1_SI_X11(i3*8); \ + VINSERTI128 $1, X11, Y13, Y13 + +// load msg: Y14 = (i0, i1, i2, i3) +// i0, i1, i2, i3 must not be 0 +#define LOAD_MSG_AVX2_Y14(i0, i1, i2, i3) \ + VMOVQ_SI_X14(i0*8); \ + VMOVQ_SI_X11(i2*8); \ + VPINSRQ_1_SI_X14(i1*8); \ + VPINSRQ_1_SI_X11(i3*8); \ + VINSERTI128 $1, X11, Y14, Y14 + +// load msg: Y15 = (i0, i1, i2, i3) +// i0, i1, i2, i3 must not be 0 +#define LOAD_MSG_AVX2_Y15(i0, i1, i2, i3) \ + VMOVQ_SI_X15(i0*8); \ + VMOVQ_SI_X11(i2*8); \ + VPINSRQ_1_SI_X15(i1*8); \ + VPINSRQ_1_SI_X11(i3*8); \ + VINSERTI128 $1, X11, Y15, Y15 + +#define LOAD_MSG_AVX2_0_2_4_6_1_3_5_7_8_10_12_14_9_11_13_15() \ + VMOVQ_SI_X12_0; \ + VMOVQ_SI_X11(4*8); \ + VPINSRQ_1_SI_X12(2*8); \ + VPINSRQ_1_SI_X11(6*8); \ + VINSERTI128 $1, X11, Y12, Y12; \ + LOAD_MSG_AVX2_Y13(1, 3, 5, 7); \ + LOAD_MSG_AVX2_Y14(8, 10, 12, 14); \ + LOAD_MSG_AVX2_Y15(9, 11, 13, 15) + +#define LOAD_MSG_AVX2_14_4_9_13_10_8_15_6_1_0_11_5_12_2_7_3() \ + LOAD_MSG_AVX2_Y12(14, 4, 9, 13); \ + LOAD_MSG_AVX2_Y13(10, 8, 15, 6); \ + VMOVQ_SI_X11(11*8); \ + VPSHUFD $0x4E, 0*8(SI), X14; \ + VPINSRQ_1_SI_X11(5*8); \ + VINSERTI128 $1, X11, Y14, Y14; \ + LOAD_MSG_AVX2_Y15(12, 2, 7, 3) + +#define LOAD_MSG_AVX2_11_12_5_15_8_0_2_13_10_3_7_9_14_6_1_4() \ + VMOVQ_SI_X11(5*8); \ + VMOVDQU 11*8(SI), X12; \ + VPINSRQ_1_SI_X11(15*8); \ + VINSERTI128 $1, X11, Y12, Y12; \ + VMOVQ_SI_X13(8*8); \ + VMOVQ_SI_X11(2*8); \ + VPINSRQ_1_SI_X13_0; \ + VPINSRQ_1_SI_X11(13*8); \ + VINSERTI128 $1, X11, Y13, Y13; \ + LOAD_MSG_AVX2_Y14(10, 3, 7, 9); \ + LOAD_MSG_AVX2_Y15(14, 6, 1, 4) + +#define LOAD_MSG_AVX2_7_3_13_11_9_1_12_14_2_5_4_15_6_10_0_8() \ + LOAD_MSG_AVX2_Y12(7, 3, 13, 11); \ + LOAD_MSG_AVX2_Y13(9, 1, 12, 14); \ + LOAD_MSG_AVX2_Y14(2, 5, 4, 15); \ + VMOVQ_SI_X15(6*8); \ + VMOVQ_SI_X11_0; \ + VPINSRQ_1_SI_X15(10*8); \ + VPINSRQ_1_SI_X11(8*8); \ + VINSERTI128 $1, X11, Y15, Y15 + +#define LOAD_MSG_AVX2_9_5_2_10_0_7_4_15_14_11_6_3_1_12_8_13() \ + LOAD_MSG_AVX2_Y12(9, 5, 2, 10); \ + VMOVQ_SI_X13_0; \ + VMOVQ_SI_X11(4*8); \ + VPINSRQ_1_SI_X13(7*8); \ + VPINSRQ_1_SI_X11(15*8); \ + VINSERTI128 $1, X11, Y13, Y13; \ + LOAD_MSG_AVX2_Y14(14, 11, 6, 3); \ + LOAD_MSG_AVX2_Y15(1, 12, 8, 13) + +#define LOAD_MSG_AVX2_2_6_0_8_12_10_11_3_4_7_15_1_13_5_14_9() \ + VMOVQ_SI_X12(2*8); \ + VMOVQ_SI_X11_0; \ + VPINSRQ_1_SI_X12(6*8); \ + VPINSRQ_1_SI_X11(8*8); \ + VINSERTI128 $1, X11, Y12, Y12; \ + LOAD_MSG_AVX2_Y13(12, 10, 11, 3); \ + LOAD_MSG_AVX2_Y14(4, 7, 15, 1); \ + LOAD_MSG_AVX2_Y15(13, 5, 14, 9) + +#define LOAD_MSG_AVX2_12_1_14_4_5_15_13_10_0_6_9_8_7_3_2_11() \ + LOAD_MSG_AVX2_Y12(12, 1, 14, 4); \ + LOAD_MSG_AVX2_Y13(5, 15, 13, 10); \ + VMOVQ_SI_X14_0; \ + VPSHUFD $0x4E, 8*8(SI), X11; \ + VPINSRQ_1_SI_X14(6*8); \ + VINSERTI128 $1, X11, Y14, Y14; \ + LOAD_MSG_AVX2_Y15(7, 3, 2, 11) + +#define LOAD_MSG_AVX2_13_7_12_3_11_14_1_9_5_15_8_2_0_4_6_10() \ + LOAD_MSG_AVX2_Y12(13, 7, 12, 3); \ + LOAD_MSG_AVX2_Y13(11, 14, 1, 9); \ + LOAD_MSG_AVX2_Y14(5, 15, 8, 2); \ + VMOVQ_SI_X15_0; \ + VMOVQ_SI_X11(6*8); \ + VPINSRQ_1_SI_X15(4*8); \ + VPINSRQ_1_SI_X11(10*8); \ + VINSERTI128 $1, X11, Y15, Y15 + +#define LOAD_MSG_AVX2_6_14_11_0_15_9_3_8_12_13_1_10_2_7_4_5() \ + VMOVQ_SI_X12(6*8); \ + VMOVQ_SI_X11(11*8); \ + VPINSRQ_1_SI_X12(14*8); \ + VPINSRQ_1_SI_X11_0; \ + VINSERTI128 $1, X11, Y12, Y12; \ + LOAD_MSG_AVX2_Y13(15, 9, 3, 8); \ + VMOVQ_SI_X11(1*8); \ + VMOVDQU 12*8(SI), X14; \ + VPINSRQ_1_SI_X11(10*8); \ + VINSERTI128 $1, X11, Y14, Y14; \ + VMOVQ_SI_X15(2*8); \ + VMOVDQU 4*8(SI), X11; \ + VPINSRQ_1_SI_X15(7*8); \ + VINSERTI128 $1, X11, Y15, Y15 + +#define LOAD_MSG_AVX2_10_8_7_1_2_4_6_5_15_9_3_13_11_14_12_0() \ + LOAD_MSG_AVX2_Y12(10, 8, 7, 1); \ + VMOVQ_SI_X13(2*8); \ + VPSHUFD $0x4E, 5*8(SI), X11; \ + VPINSRQ_1_SI_X13(4*8); \ + VINSERTI128 $1, X11, Y13, Y13; \ + LOAD_MSG_AVX2_Y14(15, 9, 3, 13); \ + VMOVQ_SI_X15(11*8); \ + VMOVQ_SI_X11(12*8); \ + VPINSRQ_1_SI_X15(14*8); \ + VPINSRQ_1_SI_X11_0; \ + VINSERTI128 $1, X11, Y15, Y15 + +// func hashBlocksAVX2(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) +TEXT ·hashBlocksAVX2(SB), 4, $320-48 // frame size = 288 + 32 byte alignment + MOVQ h+0(FP), AX + MOVQ c+8(FP), BX + MOVQ flag+16(FP), CX + MOVQ blocks_base+24(FP), SI + MOVQ blocks_len+32(FP), DI + + MOVQ SP, DX + MOVQ SP, R9 + ADDQ $31, R9 + ANDQ $~31, R9 + MOVQ R9, SP + + MOVQ CX, 16(SP) + XORQ CX, CX + MOVQ CX, 24(SP) + + VMOVDQU ·AVX2_c40<>(SB), Y4 + VMOVDQU ·AVX2_c48<>(SB), Y5 + + VMOVDQU 0(AX), Y8 + VMOVDQU 32(AX), Y9 + VMOVDQU ·AVX2_iv0<>(SB), Y6 + VMOVDQU ·AVX2_iv1<>(SB), Y7 + + MOVQ 0(BX), R8 + MOVQ 8(BX), R9 + MOVQ R9, 8(SP) + +loop: + ADDQ $128, R8 + MOVQ R8, 0(SP) + CMPQ R8, $128 + JGE noinc + INCQ R9 + MOVQ R9, 8(SP) + +noinc: + VMOVDQA Y8, Y0 + VMOVDQA Y9, Y1 + VMOVDQA Y6, Y2 + VPXOR 0(SP), Y7, Y3 + + LOAD_MSG_AVX2_0_2_4_6_1_3_5_7_8_10_12_14_9_11_13_15() + VMOVDQA Y12, 32(SP) + VMOVDQA Y13, 64(SP) + VMOVDQA Y14, 96(SP) + VMOVDQA Y15, 128(SP) + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_14_4_9_13_10_8_15_6_1_0_11_5_12_2_7_3() + VMOVDQA Y12, 160(SP) + VMOVDQA Y13, 192(SP) + VMOVDQA Y14, 224(SP) + VMOVDQA Y15, 256(SP) + + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_11_12_5_15_8_0_2_13_10_3_7_9_14_6_1_4() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_7_3_13_11_9_1_12_14_2_5_4_15_6_10_0_8() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_9_5_2_10_0_7_4_15_14_11_6_3_1_12_8_13() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_2_6_0_8_12_10_11_3_4_7_15_1_13_5_14_9() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_12_1_14_4_5_15_13_10_0_6_9_8_7_3_2_11() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_13_7_12_3_11_14_1_9_5_15_8_2_0_4_6_10() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_6_14_11_0_15_9_3_8_12_13_1_10_2_7_4_5() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + LOAD_MSG_AVX2_10_8_7_1_2_4_6_5_15_9_3_13_11_14_12_0() + ROUND_AVX2(Y12, Y13, Y14, Y15, Y10, Y4, Y5) + + ROUND_AVX2(32(SP), 64(SP), 96(SP), 128(SP), Y10, Y4, Y5) + ROUND_AVX2(160(SP), 192(SP), 224(SP), 256(SP), Y10, Y4, Y5) + + VPXOR Y0, Y8, Y8 + VPXOR Y1, Y9, Y9 + VPXOR Y2, Y8, Y8 + VPXOR Y3, Y9, Y9 + + LEAQ 128(SI), SI + SUBQ $128, DI + JNE loop + + MOVQ R8, 0(BX) + MOVQ R9, 8(BX) + + VMOVDQU Y8, 0(AX) + VMOVDQU Y9, 32(AX) + VZEROUPPER + + MOVQ DX, SP + RET + +#define VPUNPCKLQDQ_X2_X2_X15 BYTE $0xC5; BYTE $0x69; BYTE $0x6C; BYTE $0xFA +#define VPUNPCKLQDQ_X3_X3_X15 BYTE $0xC5; BYTE $0x61; BYTE $0x6C; BYTE $0xFB +#define VPUNPCKLQDQ_X7_X7_X15 BYTE $0xC5; BYTE $0x41; BYTE $0x6C; BYTE $0xFF +#define VPUNPCKLQDQ_X13_X13_X15 BYTE $0xC4; BYTE $0x41; BYTE $0x11; BYTE $0x6C; BYTE $0xFD +#define VPUNPCKLQDQ_X14_X14_X15 BYTE $0xC4; BYTE $0x41; BYTE $0x09; BYTE $0x6C; BYTE $0xFE + +#define VPUNPCKHQDQ_X15_X2_X2 BYTE $0xC4; BYTE $0xC1; BYTE $0x69; BYTE $0x6D; BYTE $0xD7 +#define VPUNPCKHQDQ_X15_X3_X3 BYTE $0xC4; BYTE $0xC1; BYTE $0x61; BYTE $0x6D; BYTE $0xDF +#define VPUNPCKHQDQ_X15_X6_X6 BYTE $0xC4; BYTE $0xC1; BYTE $0x49; BYTE $0x6D; BYTE $0xF7 +#define VPUNPCKHQDQ_X15_X7_X7 BYTE $0xC4; BYTE $0xC1; BYTE $0x41; BYTE $0x6D; BYTE $0xFF +#define VPUNPCKHQDQ_X15_X3_X2 BYTE $0xC4; BYTE $0xC1; BYTE $0x61; BYTE $0x6D; BYTE $0xD7 +#define VPUNPCKHQDQ_X15_X7_X6 BYTE $0xC4; BYTE $0xC1; BYTE $0x41; BYTE $0x6D; BYTE $0xF7 +#define VPUNPCKHQDQ_X15_X13_X3 BYTE $0xC4; BYTE $0xC1; BYTE $0x11; BYTE $0x6D; BYTE $0xDF +#define VPUNPCKHQDQ_X15_X13_X7 BYTE $0xC4; BYTE $0xC1; BYTE $0x11; BYTE $0x6D; BYTE $0xFF + +#define SHUFFLE_AVX() \ + VMOVDQA X6, X13; \ + VMOVDQA X2, X14; \ + VMOVDQA X4, X6; \ + VPUNPCKLQDQ_X13_X13_X15; \ + VMOVDQA X5, X4; \ + VMOVDQA X6, X5; \ + VPUNPCKHQDQ_X15_X7_X6; \ + VPUNPCKLQDQ_X7_X7_X15; \ + VPUNPCKHQDQ_X15_X13_X7; \ + VPUNPCKLQDQ_X3_X3_X15; \ + VPUNPCKHQDQ_X15_X2_X2; \ + VPUNPCKLQDQ_X14_X14_X15; \ + VPUNPCKHQDQ_X15_X3_X3; \ + +#define SHUFFLE_AVX_INV() \ + VMOVDQA X2, X13; \ + VMOVDQA X4, X14; \ + VPUNPCKLQDQ_X2_X2_X15; \ + VMOVDQA X5, X4; \ + VPUNPCKHQDQ_X15_X3_X2; \ + VMOVDQA X14, X5; \ + VPUNPCKLQDQ_X3_X3_X15; \ + VMOVDQA X6, X14; \ + VPUNPCKHQDQ_X15_X13_X3; \ + VPUNPCKLQDQ_X7_X7_X15; \ + VPUNPCKHQDQ_X15_X6_X6; \ + VPUNPCKLQDQ_X14_X14_X15; \ + VPUNPCKHQDQ_X15_X7_X7; \ + +#define HALF_ROUND_AVX(v0, v1, v2, v3, v4, v5, v6, v7, m0, m1, m2, m3, t0, c40, c48) \ + VPADDQ m0, v0, v0; \ + VPADDQ v2, v0, v0; \ + VPADDQ m1, v1, v1; \ + VPADDQ v3, v1, v1; \ + VPXOR v0, v6, v6; \ + VPXOR v1, v7, v7; \ + VPSHUFD $-79, v6, v6; \ + VPSHUFD $-79, v7, v7; \ + VPADDQ v6, v4, v4; \ + VPADDQ v7, v5, v5; \ + VPXOR v4, v2, v2; \ + VPXOR v5, v3, v3; \ + VPSHUFB c40, v2, v2; \ + VPSHUFB c40, v3, v3; \ + VPADDQ m2, v0, v0; \ + VPADDQ v2, v0, v0; \ + VPADDQ m3, v1, v1; \ + VPADDQ v3, v1, v1; \ + VPXOR v0, v6, v6; \ + VPXOR v1, v7, v7; \ + VPSHUFB c48, v6, v6; \ + VPSHUFB c48, v7, v7; \ + VPADDQ v6, v4, v4; \ + VPADDQ v7, v5, v5; \ + VPXOR v4, v2, v2; \ + VPXOR v5, v3, v3; \ + VPADDQ v2, v2, t0; \ + VPSRLQ $63, v2, v2; \ + VPXOR t0, v2, v2; \ + VPADDQ v3, v3, t0; \ + VPSRLQ $63, v3, v3; \ + VPXOR t0, v3, v3 + +// load msg: X12 = (i0, i1), X13 = (i2, i3), X14 = (i4, i5), X15 = (i6, i7) +// i0, i1, i2, i3, i4, i5, i6, i7 must not be 0 +#define LOAD_MSG_AVX(i0, i1, i2, i3, i4, i5, i6, i7) \ + VMOVQ_SI_X12(i0*8); \ + VMOVQ_SI_X13(i2*8); \ + VMOVQ_SI_X14(i4*8); \ + VMOVQ_SI_X15(i6*8); \ + VPINSRQ_1_SI_X12(i1*8); \ + VPINSRQ_1_SI_X13(i3*8); \ + VPINSRQ_1_SI_X14(i5*8); \ + VPINSRQ_1_SI_X15(i7*8) + +// load msg: X12 = (0, 2), X13 = (4, 6), X14 = (1, 3), X15 = (5, 7) +#define LOAD_MSG_AVX_0_2_4_6_1_3_5_7() \ + VMOVQ_SI_X12_0; \ + VMOVQ_SI_X13(4*8); \ + VMOVQ_SI_X14(1*8); \ + VMOVQ_SI_X15(5*8); \ + VPINSRQ_1_SI_X12(2*8); \ + VPINSRQ_1_SI_X13(6*8); \ + VPINSRQ_1_SI_X14(3*8); \ + VPINSRQ_1_SI_X15(7*8) + +// load msg: X12 = (1, 0), X13 = (11, 5), X14 = (12, 2), X15 = (7, 3) +#define LOAD_MSG_AVX_1_0_11_5_12_2_7_3() \ + VPSHUFD $0x4E, 0*8(SI), X12; \ + VMOVQ_SI_X13(11*8); \ + VMOVQ_SI_X14(12*8); \ + VMOVQ_SI_X15(7*8); \ + VPINSRQ_1_SI_X13(5*8); \ + VPINSRQ_1_SI_X14(2*8); \ + VPINSRQ_1_SI_X15(3*8) + +// load msg: X12 = (11, 12), X13 = (5, 15), X14 = (8, 0), X15 = (2, 13) +#define LOAD_MSG_AVX_11_12_5_15_8_0_2_13() \ + VMOVDQU 11*8(SI), X12; \ + VMOVQ_SI_X13(5*8); \ + VMOVQ_SI_X14(8*8); \ + VMOVQ_SI_X15(2*8); \ + VPINSRQ_1_SI_X13(15*8); \ + VPINSRQ_1_SI_X14_0; \ + VPINSRQ_1_SI_X15(13*8) + +// load msg: X12 = (2, 5), X13 = (4, 15), X14 = (6, 10), X15 = (0, 8) +#define LOAD_MSG_AVX_2_5_4_15_6_10_0_8() \ + VMOVQ_SI_X12(2*8); \ + VMOVQ_SI_X13(4*8); \ + VMOVQ_SI_X14(6*8); \ + VMOVQ_SI_X15_0; \ + VPINSRQ_1_SI_X12(5*8); \ + VPINSRQ_1_SI_X13(15*8); \ + VPINSRQ_1_SI_X14(10*8); \ + VPINSRQ_1_SI_X15(8*8) + +// load msg: X12 = (9, 5), X13 = (2, 10), X14 = (0, 7), X15 = (4, 15) +#define LOAD_MSG_AVX_9_5_2_10_0_7_4_15() \ + VMOVQ_SI_X12(9*8); \ + VMOVQ_SI_X13(2*8); \ + VMOVQ_SI_X14_0; \ + VMOVQ_SI_X15(4*8); \ + VPINSRQ_1_SI_X12(5*8); \ + VPINSRQ_1_SI_X13(10*8); \ + VPINSRQ_1_SI_X14(7*8); \ + VPINSRQ_1_SI_X15(15*8) + +// load msg: X12 = (2, 6), X13 = (0, 8), X14 = (12, 10), X15 = (11, 3) +#define LOAD_MSG_AVX_2_6_0_8_12_10_11_3() \ + VMOVQ_SI_X12(2*8); \ + VMOVQ_SI_X13_0; \ + VMOVQ_SI_X14(12*8); \ + VMOVQ_SI_X15(11*8); \ + VPINSRQ_1_SI_X12(6*8); \ + VPINSRQ_1_SI_X13(8*8); \ + VPINSRQ_1_SI_X14(10*8); \ + VPINSRQ_1_SI_X15(3*8) + +// load msg: X12 = (0, 6), X13 = (9, 8), X14 = (7, 3), X15 = (2, 11) +#define LOAD_MSG_AVX_0_6_9_8_7_3_2_11() \ + MOVQ 0*8(SI), X12; \ + VPSHUFD $0x4E, 8*8(SI), X13; \ + MOVQ 7*8(SI), X14; \ + MOVQ 2*8(SI), X15; \ + VPINSRQ_1_SI_X12(6*8); \ + VPINSRQ_1_SI_X14(3*8); \ + VPINSRQ_1_SI_X15(11*8) + +// load msg: X12 = (6, 14), X13 = (11, 0), X14 = (15, 9), X15 = (3, 8) +#define LOAD_MSG_AVX_6_14_11_0_15_9_3_8() \ + MOVQ 6*8(SI), X12; \ + MOVQ 11*8(SI), X13; \ + MOVQ 15*8(SI), X14; \ + MOVQ 3*8(SI), X15; \ + VPINSRQ_1_SI_X12(14*8); \ + VPINSRQ_1_SI_X13_0; \ + VPINSRQ_1_SI_X14(9*8); \ + VPINSRQ_1_SI_X15(8*8) + +// load msg: X12 = (5, 15), X13 = (8, 2), X14 = (0, 4), X15 = (6, 10) +#define LOAD_MSG_AVX_5_15_8_2_0_4_6_10() \ + MOVQ 5*8(SI), X12; \ + MOVQ 8*8(SI), X13; \ + MOVQ 0*8(SI), X14; \ + MOVQ 6*8(SI), X15; \ + VPINSRQ_1_SI_X12(15*8); \ + VPINSRQ_1_SI_X13(2*8); \ + VPINSRQ_1_SI_X14(4*8); \ + VPINSRQ_1_SI_X15(10*8) + +// load msg: X12 = (12, 13), X13 = (1, 10), X14 = (2, 7), X15 = (4, 5) +#define LOAD_MSG_AVX_12_13_1_10_2_7_4_5() \ + VMOVDQU 12*8(SI), X12; \ + MOVQ 1*8(SI), X13; \ + MOVQ 2*8(SI), X14; \ + VPINSRQ_1_SI_X13(10*8); \ + VPINSRQ_1_SI_X14(7*8); \ + VMOVDQU 4*8(SI), X15 + +// load msg: X12 = (15, 9), X13 = (3, 13), X14 = (11, 14), X15 = (12, 0) +#define LOAD_MSG_AVX_15_9_3_13_11_14_12_0() \ + MOVQ 15*8(SI), X12; \ + MOVQ 3*8(SI), X13; \ + MOVQ 11*8(SI), X14; \ + MOVQ 12*8(SI), X15; \ + VPINSRQ_1_SI_X12(9*8); \ + VPINSRQ_1_SI_X13(13*8); \ + VPINSRQ_1_SI_X14(14*8); \ + VPINSRQ_1_SI_X15_0 + +// func hashBlocksAVX(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) +TEXT ·hashBlocksAVX(SB), 4, $288-48 // frame size = 272 + 16 byte alignment + MOVQ h+0(FP), AX + MOVQ c+8(FP), BX + MOVQ flag+16(FP), CX + MOVQ blocks_base+24(FP), SI + MOVQ blocks_len+32(FP), DI + + MOVQ SP, BP + MOVQ SP, R9 + ADDQ $15, R9 + ANDQ $~15, R9 + MOVQ R9, SP + + VMOVDQU ·AVX_c40<>(SB), X0 + VMOVDQU ·AVX_c48<>(SB), X1 + VMOVDQA X0, X8 + VMOVDQA X1, X9 + + VMOVDQU ·AVX_iv3<>(SB), X0 + VMOVDQA X0, 0(SP) + XORQ CX, 0(SP) // 0(SP) = ·AVX_iv3 ^ (CX || 0) + + VMOVDQU 0(AX), X10 + VMOVDQU 16(AX), X11 + VMOVDQU 32(AX), X2 + VMOVDQU 48(AX), X3 + + MOVQ 0(BX), R8 + MOVQ 8(BX), R9 + +loop: + ADDQ $128, R8 + CMPQ R8, $128 + JGE noinc + INCQ R9 + +noinc: + VMOVQ_R8_X15 + VPINSRQ_1_R9_X15 + + VMOVDQA X10, X0 + VMOVDQA X11, X1 + VMOVDQU ·AVX_iv0<>(SB), X4 + VMOVDQU ·AVX_iv1<>(SB), X5 + VMOVDQU ·AVX_iv2<>(SB), X6 + + VPXOR X15, X6, X6 + VMOVDQA 0(SP), X7 + + LOAD_MSG_AVX_0_2_4_6_1_3_5_7() + VMOVDQA X12, 16(SP) + VMOVDQA X13, 32(SP) + VMOVDQA X14, 48(SP) + VMOVDQA X15, 64(SP) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX(8, 10, 12, 14, 9, 11, 13, 15) + VMOVDQA X12, 80(SP) + VMOVDQA X13, 96(SP) + VMOVDQA X14, 112(SP) + VMOVDQA X15, 128(SP) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX(14, 4, 9, 13, 10, 8, 15, 6) + VMOVDQA X12, 144(SP) + VMOVDQA X13, 160(SP) + VMOVDQA X14, 176(SP) + VMOVDQA X15, 192(SP) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX_1_0_11_5_12_2_7_3() + VMOVDQA X12, 208(SP) + VMOVDQA X13, 224(SP) + VMOVDQA X14, 240(SP) + VMOVDQA X15, 256(SP) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX_11_12_5_15_8_0_2_13() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX(10, 3, 7, 9, 14, 6, 1, 4) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX(7, 3, 13, 11, 9, 1, 12, 14) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX_2_5_4_15_6_10_0_8() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX_9_5_2_10_0_7_4_15() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX(14, 11, 6, 3, 1, 12, 8, 13) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX_2_6_0_8_12_10_11_3() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX(4, 7, 15, 1, 13, 5, 14, 9) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX(12, 1, 14, 4, 5, 15, 13, 10) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX_0_6_9_8_7_3_2_11() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX(13, 7, 12, 3, 11, 14, 1, 9) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX_5_15_8_2_0_4_6_10() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX_6_14_11_0_15_9_3_8() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX_12_13_1_10_2_7_4_5() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + LOAD_MSG_AVX(10, 8, 7, 1, 2, 4, 6, 5) + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX() + LOAD_MSG_AVX_15_9_3_13_11_14_12_0() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, X12, X13, X14, X15, X15, X8, X9) + SHUFFLE_AVX_INV() + + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, 16(SP), 32(SP), 48(SP), 64(SP), X15, X8, X9) + SHUFFLE_AVX() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, 80(SP), 96(SP), 112(SP), 128(SP), X15, X8, X9) + SHUFFLE_AVX_INV() + + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, 144(SP), 160(SP), 176(SP), 192(SP), X15, X8, X9) + SHUFFLE_AVX() + HALF_ROUND_AVX(X0, X1, X2, X3, X4, X5, X6, X7, 208(SP), 224(SP), 240(SP), 256(SP), X15, X8, X9) + SHUFFLE_AVX_INV() + + VMOVDQU 32(AX), X14 + VMOVDQU 48(AX), X15 + VPXOR X0, X10, X10 + VPXOR X1, X11, X11 + VPXOR X2, X14, X14 + VPXOR X3, X15, X15 + VPXOR X4, X10, X10 + VPXOR X5, X11, X11 + VPXOR X6, X14, X2 + VPXOR X7, X15, X3 + VMOVDQU X2, 32(AX) + VMOVDQU X3, 48(AX) + + LEAQ 128(SI), SI + SUBQ $128, DI + JNE loop + + VMOVDQU X10, 0(AX) + VMOVDQU X11, 16(AX) + + MOVQ R8, 0(BX) + MOVQ R9, 8(BX) + VZEROUPPER + + MOVQ BP, SP + RET diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go new file mode 100644 index 000000000..30e2fcd58 --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.go @@ -0,0 +1,24 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !go1.7,amd64,!gccgo,!appengine + +package blake2b + +import "golang.org/x/sys/cpu" + +func init() { + useSSE4 = cpu.X86.HasSSE41 +} + +//go:noescape +func hashBlocksSSE4(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) + +func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) { + if useSSE4 { + hashBlocksSSE4(h, c, flag, blocks) + } else { + hashBlocksGeneric(h, c, flag, blocks) + } +} diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s new file mode 100644 index 000000000..578e947b3 --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2b_amd64.s @@ -0,0 +1,281 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build amd64,!gccgo,!appengine + +#include "textflag.h" + +DATA ·iv0<>+0x00(SB)/8, $0x6a09e667f3bcc908 +DATA ·iv0<>+0x08(SB)/8, $0xbb67ae8584caa73b +GLOBL ·iv0<>(SB), (NOPTR+RODATA), $16 + +DATA ·iv1<>+0x00(SB)/8, $0x3c6ef372fe94f82b +DATA ·iv1<>+0x08(SB)/8, $0xa54ff53a5f1d36f1 +GLOBL ·iv1<>(SB), (NOPTR+RODATA), $16 + +DATA ·iv2<>+0x00(SB)/8, $0x510e527fade682d1 +DATA ·iv2<>+0x08(SB)/8, $0x9b05688c2b3e6c1f +GLOBL ·iv2<>(SB), (NOPTR+RODATA), $16 + +DATA ·iv3<>+0x00(SB)/8, $0x1f83d9abfb41bd6b +DATA ·iv3<>+0x08(SB)/8, $0x5be0cd19137e2179 +GLOBL ·iv3<>(SB), (NOPTR+RODATA), $16 + +DATA ·c40<>+0x00(SB)/8, $0x0201000706050403 +DATA ·c40<>+0x08(SB)/8, $0x0a09080f0e0d0c0b +GLOBL ·c40<>(SB), (NOPTR+RODATA), $16 + +DATA ·c48<>+0x00(SB)/8, $0x0100070605040302 +DATA ·c48<>+0x08(SB)/8, $0x09080f0e0d0c0b0a +GLOBL ·c48<>(SB), (NOPTR+RODATA), $16 + +#define SHUFFLE(v2, v3, v4, v5, v6, v7, t1, t2) \ + MOVO v4, t1; \ + MOVO v5, v4; \ + MOVO t1, v5; \ + MOVO v6, t1; \ + PUNPCKLQDQ v6, t2; \ + PUNPCKHQDQ v7, v6; \ + PUNPCKHQDQ t2, v6; \ + PUNPCKLQDQ v7, t2; \ + MOVO t1, v7; \ + MOVO v2, t1; \ + PUNPCKHQDQ t2, v7; \ + PUNPCKLQDQ v3, t2; \ + PUNPCKHQDQ t2, v2; \ + PUNPCKLQDQ t1, t2; \ + PUNPCKHQDQ t2, v3 + +#define SHUFFLE_INV(v2, v3, v4, v5, v6, v7, t1, t2) \ + MOVO v4, t1; \ + MOVO v5, v4; \ + MOVO t1, v5; \ + MOVO v2, t1; \ + PUNPCKLQDQ v2, t2; \ + PUNPCKHQDQ v3, v2; \ + PUNPCKHQDQ t2, v2; \ + PUNPCKLQDQ v3, t2; \ + MOVO t1, v3; \ + MOVO v6, t1; \ + PUNPCKHQDQ t2, v3; \ + PUNPCKLQDQ v7, t2; \ + PUNPCKHQDQ t2, v6; \ + PUNPCKLQDQ t1, t2; \ + PUNPCKHQDQ t2, v7 + +#define HALF_ROUND(v0, v1, v2, v3, v4, v5, v6, v7, m0, m1, m2, m3, t0, c40, c48) \ + PADDQ m0, v0; \ + PADDQ m1, v1; \ + PADDQ v2, v0; \ + PADDQ v3, v1; \ + PXOR v0, v6; \ + PXOR v1, v7; \ + PSHUFD $0xB1, v6, v6; \ + PSHUFD $0xB1, v7, v7; \ + PADDQ v6, v4; \ + PADDQ v7, v5; \ + PXOR v4, v2; \ + PXOR v5, v3; \ + PSHUFB c40, v2; \ + PSHUFB c40, v3; \ + PADDQ m2, v0; \ + PADDQ m3, v1; \ + PADDQ v2, v0; \ + PADDQ v3, v1; \ + PXOR v0, v6; \ + PXOR v1, v7; \ + PSHUFB c48, v6; \ + PSHUFB c48, v7; \ + PADDQ v6, v4; \ + PADDQ v7, v5; \ + PXOR v4, v2; \ + PXOR v5, v3; \ + MOVOU v2, t0; \ + PADDQ v2, t0; \ + PSRLQ $63, v2; \ + PXOR t0, v2; \ + MOVOU v3, t0; \ + PADDQ v3, t0; \ + PSRLQ $63, v3; \ + PXOR t0, v3 + +#define LOAD_MSG(m0, m1, m2, m3, src, i0, i1, i2, i3, i4, i5, i6, i7) \ + MOVQ i0*8(src), m0; \ + PINSRQ $1, i1*8(src), m0; \ + MOVQ i2*8(src), m1; \ + PINSRQ $1, i3*8(src), m1; \ + MOVQ i4*8(src), m2; \ + PINSRQ $1, i5*8(src), m2; \ + MOVQ i6*8(src), m3; \ + PINSRQ $1, i7*8(src), m3 + +// func hashBlocksSSE4(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) +TEXT ·hashBlocksSSE4(SB), 4, $288-48 // frame size = 272 + 16 byte alignment + MOVQ h+0(FP), AX + MOVQ c+8(FP), BX + MOVQ flag+16(FP), CX + MOVQ blocks_base+24(FP), SI + MOVQ blocks_len+32(FP), DI + + MOVQ SP, BP + MOVQ SP, R9 + ADDQ $15, R9 + ANDQ $~15, R9 + MOVQ R9, SP + + MOVOU ·iv3<>(SB), X0 + MOVO X0, 0(SP) + XORQ CX, 0(SP) // 0(SP) = ·iv3 ^ (CX || 0) + + MOVOU ·c40<>(SB), X13 + MOVOU ·c48<>(SB), X14 + + MOVOU 0(AX), X12 + MOVOU 16(AX), X15 + + MOVQ 0(BX), R8 + MOVQ 8(BX), R9 + +loop: + ADDQ $128, R8 + CMPQ R8, $128 + JGE noinc + INCQ R9 + +noinc: + MOVQ R8, X8 + PINSRQ $1, R9, X8 + + MOVO X12, X0 + MOVO X15, X1 + MOVOU 32(AX), X2 + MOVOU 48(AX), X3 + MOVOU ·iv0<>(SB), X4 + MOVOU ·iv1<>(SB), X5 + MOVOU ·iv2<>(SB), X6 + + PXOR X8, X6 + MOVO 0(SP), X7 + + LOAD_MSG(X8, X9, X10, X11, SI, 0, 2, 4, 6, 1, 3, 5, 7) + MOVO X8, 16(SP) + MOVO X9, 32(SP) + MOVO X10, 48(SP) + MOVO X11, 64(SP) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 8, 10, 12, 14, 9, 11, 13, 15) + MOVO X8, 80(SP) + MOVO X9, 96(SP) + MOVO X10, 112(SP) + MOVO X11, 128(SP) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 14, 4, 9, 13, 10, 8, 15, 6) + MOVO X8, 144(SP) + MOVO X9, 160(SP) + MOVO X10, 176(SP) + MOVO X11, 192(SP) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 1, 0, 11, 5, 12, 2, 7, 3) + MOVO X8, 208(SP) + MOVO X9, 224(SP) + MOVO X10, 240(SP) + MOVO X11, 256(SP) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 11, 12, 5, 15, 8, 0, 2, 13) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 10, 3, 7, 9, 14, 6, 1, 4) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 7, 3, 13, 11, 9, 1, 12, 14) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 2, 5, 4, 15, 6, 10, 0, 8) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 9, 5, 2, 10, 0, 7, 4, 15) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 14, 11, 6, 3, 1, 12, 8, 13) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 2, 6, 0, 8, 12, 10, 11, 3) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 4, 7, 15, 1, 13, 5, 14, 9) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 12, 1, 14, 4, 5, 15, 13, 10) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 0, 6, 9, 8, 7, 3, 2, 11) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 13, 7, 12, 3, 11, 14, 1, 9) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 5, 15, 8, 2, 0, 4, 6, 10) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 6, 14, 11, 0, 15, 9, 3, 8) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 12, 13, 1, 10, 2, 7, 4, 5) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + LOAD_MSG(X8, X9, X10, X11, SI, 10, 8, 7, 1, 2, 4, 6, 5) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + LOAD_MSG(X8, X9, X10, X11, SI, 15, 9, 3, 13, 11, 14, 12, 0) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, 16(SP), 32(SP), 48(SP), 64(SP), X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, 80(SP), 96(SP), 112(SP), 128(SP), X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, 144(SP), 160(SP), 176(SP), 192(SP), X11, X13, X14) + SHUFFLE(X2, X3, X4, X5, X6, X7, X8, X9) + HALF_ROUND(X0, X1, X2, X3, X4, X5, X6, X7, 208(SP), 224(SP), 240(SP), 256(SP), X11, X13, X14) + SHUFFLE_INV(X2, X3, X4, X5, X6, X7, X8, X9) + + MOVOU 32(AX), X10 + MOVOU 48(AX), X11 + PXOR X0, X12 + PXOR X1, X15 + PXOR X2, X10 + PXOR X3, X11 + PXOR X4, X12 + PXOR X5, X15 + PXOR X6, X10 + PXOR X7, X11 + MOVOU X10, 32(AX) + MOVOU X11, 48(AX) + + LEAQ 128(SI), SI + SUBQ $128, DI + JNE loop + + MOVOU X12, 0(AX) + MOVOU X15, 16(AX) + + MOVQ R8, 0(BX) + MOVQ R9, 8(BX) + + MOVQ BP, SP + RET diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go b/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go new file mode 100644 index 000000000..4bd2abc91 --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2b_generic.go @@ -0,0 +1,179 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package blake2b + +import "encoding/binary" + +// the precomputed values for BLAKE2b +// there are 12 16-byte arrays - one for each round +// the entries are calculated from the sigma constants. +var precomputed = [12][16]byte{ + {0, 2, 4, 6, 1, 3, 5, 7, 8, 10, 12, 14, 9, 11, 13, 15}, + {14, 4, 9, 13, 10, 8, 15, 6, 1, 0, 11, 5, 12, 2, 7, 3}, + {11, 12, 5, 15, 8, 0, 2, 13, 10, 3, 7, 9, 14, 6, 1, 4}, + {7, 3, 13, 11, 9, 1, 12, 14, 2, 5, 4, 15, 6, 10, 0, 8}, + {9, 5, 2, 10, 0, 7, 4, 15, 14, 11, 6, 3, 1, 12, 8, 13}, + {2, 6, 0, 8, 12, 10, 11, 3, 4, 7, 15, 1, 13, 5, 14, 9}, + {12, 1, 14, 4, 5, 15, 13, 10, 0, 6, 9, 8, 7, 3, 2, 11}, + {13, 7, 12, 3, 11, 14, 1, 9, 5, 15, 8, 2, 0, 4, 6, 10}, + {6, 14, 11, 0, 15, 9, 3, 8, 12, 13, 1, 10, 2, 7, 4, 5}, + {10, 8, 7, 1, 2, 4, 6, 5, 15, 9, 3, 13, 11, 14, 12, 0}, + {0, 2, 4, 6, 1, 3, 5, 7, 8, 10, 12, 14, 9, 11, 13, 15}, // equal to the first + {14, 4, 9, 13, 10, 8, 15, 6, 1, 0, 11, 5, 12, 2, 7, 3}, // equal to the second +} + +func hashBlocksGeneric(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) { + var m [16]uint64 + c0, c1 := c[0], c[1] + + for i := 0; i < len(blocks); { + c0 += BlockSize + if c0 < BlockSize { + c1++ + } + + v0, v1, v2, v3, v4, v5, v6, v7 := h[0], h[1], h[2], h[3], h[4], h[5], h[6], h[7] + v8, v9, v10, v11, v12, v13, v14, v15 := iv[0], iv[1], iv[2], iv[3], iv[4], iv[5], iv[6], iv[7] + v12 ^= c0 + v13 ^= c1 + v14 ^= flag + + for j := range m { + m[j] = binary.LittleEndian.Uint64(blocks[i:]) + i += 8 + } + + for j := range precomputed { + s := &(precomputed[j]) + + v0 += m[s[0]] + v0 += v4 + v12 ^= v0 + v12 = v12<<(64-32) | v12>>32 + v8 += v12 + v4 ^= v8 + v4 = v4<<(64-24) | v4>>24 + v1 += m[s[1]] + v1 += v5 + v13 ^= v1 + v13 = v13<<(64-32) | v13>>32 + v9 += v13 + v5 ^= v9 + v5 = v5<<(64-24) | v5>>24 + v2 += m[s[2]] + v2 += v6 + v14 ^= v2 + v14 = v14<<(64-32) | v14>>32 + v10 += v14 + v6 ^= v10 + v6 = v6<<(64-24) | v6>>24 + v3 += m[s[3]] + v3 += v7 + v15 ^= v3 + v15 = v15<<(64-32) | v15>>32 + v11 += v15 + v7 ^= v11 + v7 = v7<<(64-24) | v7>>24 + + v0 += m[s[4]] + v0 += v4 + v12 ^= v0 + v12 = v12<<(64-16) | v12>>16 + v8 += v12 + v4 ^= v8 + v4 = v4<<(64-63) | v4>>63 + v1 += m[s[5]] + v1 += v5 + v13 ^= v1 + v13 = v13<<(64-16) | v13>>16 + v9 += v13 + v5 ^= v9 + v5 = v5<<(64-63) | v5>>63 + v2 += m[s[6]] + v2 += v6 + v14 ^= v2 + v14 = v14<<(64-16) | v14>>16 + v10 += v14 + v6 ^= v10 + v6 = v6<<(64-63) | v6>>63 + v3 += m[s[7]] + v3 += v7 + v15 ^= v3 + v15 = v15<<(64-16) | v15>>16 + v11 += v15 + v7 ^= v11 + v7 = v7<<(64-63) | v7>>63 + + v0 += m[s[8]] + v0 += v5 + v15 ^= v0 + v15 = v15<<(64-32) | v15>>32 + v10 += v15 + v5 ^= v10 + v5 = v5<<(64-24) | v5>>24 + v1 += m[s[9]] + v1 += v6 + v12 ^= v1 + v12 = v12<<(64-32) | v12>>32 + v11 += v12 + v6 ^= v11 + v6 = v6<<(64-24) | v6>>24 + v2 += m[s[10]] + v2 += v7 + v13 ^= v2 + v13 = v13<<(64-32) | v13>>32 + v8 += v13 + v7 ^= v8 + v7 = v7<<(64-24) | v7>>24 + v3 += m[s[11]] + v3 += v4 + v14 ^= v3 + v14 = v14<<(64-32) | v14>>32 + v9 += v14 + v4 ^= v9 + v4 = v4<<(64-24) | v4>>24 + + v0 += m[s[12]] + v0 += v5 + v15 ^= v0 + v15 = v15<<(64-16) | v15>>16 + v10 += v15 + v5 ^= v10 + v5 = v5<<(64-63) | v5>>63 + v1 += m[s[13]] + v1 += v6 + v12 ^= v1 + v12 = v12<<(64-16) | v12>>16 + v11 += v12 + v6 ^= v11 + v6 = v6<<(64-63) | v6>>63 + v2 += m[s[14]] + v2 += v7 + v13 ^= v2 + v13 = v13<<(64-16) | v13>>16 + v8 += v13 + v7 ^= v8 + v7 = v7<<(64-63) | v7>>63 + v3 += m[s[15]] + v3 += v4 + v14 ^= v3 + v14 = v14<<(64-16) | v14>>16 + v9 += v14 + v4 ^= v9 + v4 = v4<<(64-63) | v4>>63 + + } + + h[0] ^= v0 ^ v8 + h[1] ^= v1 ^ v9 + h[2] ^= v2 ^ v10 + h[3] ^= v3 ^ v11 + h[4] ^= v4 ^ v12 + h[5] ^= v5 ^ v13 + h[6] ^= v6 ^ v14 + h[7] ^= v7 ^ v15 + } + c[0], c[1] = c0, c1 +} diff --git a/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go b/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go new file mode 100644 index 000000000..da156a1ba --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2b_ref.go @@ -0,0 +1,11 @@ +// Copyright 2016 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !amd64 appengine gccgo + +package blake2b + +func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) { + hashBlocksGeneric(h, c, flag, blocks) +} diff --git a/vendor/golang.org/x/crypto/blake2b/blake2x.go b/vendor/golang.org/x/crypto/blake2b/blake2x.go new file mode 100644 index 000000000..c814496a7 --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/blake2x.go @@ -0,0 +1,177 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package blake2b + +import ( + "encoding/binary" + "errors" + "io" +) + +// XOF defines the interface to hash functions that +// support arbitrary-length output. +type XOF interface { + // Write absorbs more data into the hash's state. It panics if called + // after Read. + io.Writer + + // Read reads more output from the hash. It returns io.EOF if the limit + // has been reached. + io.Reader + + // Clone returns a copy of the XOF in its current state. + Clone() XOF + + // Reset resets the XOF to its initial state. + Reset() +} + +// OutputLengthUnknown can be used as the size argument to NewXOF to indicate +// the the length of the output is not known in advance. +const OutputLengthUnknown = 0 + +// magicUnknownOutputLength is a magic value for the output size that indicates +// an unknown number of output bytes. +const magicUnknownOutputLength = (1 << 32) - 1 + +// maxOutputLength is the absolute maximum number of bytes to produce when the +// number of output bytes is unknown. +const maxOutputLength = (1 << 32) * 64 + +// NewXOF creates a new variable-output-length hash. The hash either produce a +// known number of bytes (1 <= size < 2**32-1), or an unknown number of bytes +// (size == OutputLengthUnknown). In the latter case, an absolute limit of +// 256GiB applies. +// +// A non-nil key turns the hash into a MAC. The key must between +// zero and 32 bytes long. +func NewXOF(size uint32, key []byte) (XOF, error) { + if len(key) > Size { + return nil, errKeySize + } + if size == magicUnknownOutputLength { + // 2^32-1 indicates an unknown number of bytes and thus isn't a + // valid length. + return nil, errors.New("blake2b: XOF length too large") + } + if size == OutputLengthUnknown { + size = magicUnknownOutputLength + } + x := &xof{ + d: digest{ + size: Size, + keyLen: len(key), + }, + length: size, + } + copy(x.d.key[:], key) + x.Reset() + return x, nil +} + +type xof struct { + d digest + length uint32 + remaining uint64 + cfg, root, block [Size]byte + offset int + nodeOffset uint32 + readMode bool +} + +func (x *xof) Write(p []byte) (n int, err error) { + if x.readMode { + panic("blake2b: write to XOF after read") + } + return x.d.Write(p) +} + +func (x *xof) Clone() XOF { + clone := *x + return &clone +} + +func (x *xof) Reset() { + x.cfg[0] = byte(Size) + binary.LittleEndian.PutUint32(x.cfg[4:], uint32(Size)) // leaf length + binary.LittleEndian.PutUint32(x.cfg[12:], x.length) // XOF length + x.cfg[17] = byte(Size) // inner hash size + + x.d.Reset() + x.d.h[1] ^= uint64(x.length) << 32 + + x.remaining = uint64(x.length) + if x.remaining == magicUnknownOutputLength { + x.remaining = maxOutputLength + } + x.offset, x.nodeOffset = 0, 0 + x.readMode = false +} + +func (x *xof) Read(p []byte) (n int, err error) { + if !x.readMode { + x.d.finalize(&x.root) + x.readMode = true + } + + if x.remaining == 0 { + return 0, io.EOF + } + + n = len(p) + if uint64(n) > x.remaining { + n = int(x.remaining) + p = p[:n] + } + + if x.offset > 0 { + blockRemaining := Size - x.offset + if n < blockRemaining { + x.offset += copy(p, x.block[x.offset:]) + x.remaining -= uint64(n) + return + } + copy(p, x.block[x.offset:]) + p = p[blockRemaining:] + x.offset = 0 + x.remaining -= uint64(blockRemaining) + } + + for len(p) >= Size { + binary.LittleEndian.PutUint32(x.cfg[8:], x.nodeOffset) + x.nodeOffset++ + + x.d.initConfig(&x.cfg) + x.d.Write(x.root[:]) + x.d.finalize(&x.block) + + copy(p, x.block[:]) + p = p[Size:] + x.remaining -= uint64(Size) + } + + if todo := len(p); todo > 0 { + if x.remaining < uint64(Size) { + x.cfg[0] = byte(x.remaining) + } + binary.LittleEndian.PutUint32(x.cfg[8:], x.nodeOffset) + x.nodeOffset++ + + x.d.initConfig(&x.cfg) + x.d.Write(x.root[:]) + x.d.finalize(&x.block) + + x.offset = copy(p, x.block[:todo]) + x.remaining -= uint64(todo) + } + return +} + +func (d *digest) initConfig(cfg *[Size]byte) { + d.offset, d.c[0], d.c[1] = 0, 0, 0 + for i := range d.h { + d.h[i] = iv[i] ^ binary.LittleEndian.Uint64(cfg[i*8:]) + } +} diff --git a/vendor/golang.org/x/crypto/blake2b/register.go b/vendor/golang.org/x/crypto/blake2b/register.go new file mode 100644 index 000000000..efd689af4 --- /dev/null +++ b/vendor/golang.org/x/crypto/blake2b/register.go @@ -0,0 +1,32 @@ +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build go1.9 + +package blake2b + +import ( + "crypto" + "hash" +) + +func init() { + newHash256 := func() hash.Hash { + h, _ := New256(nil) + return h + } + newHash384 := func() hash.Hash { + h, _ := New384(nil) + return h + } + + newHash512 := func() hash.Hash { + h, _ := New512(nil) + return h + } + + crypto.RegisterHash(crypto.BLAKE2b_256, newHash256) + crypto.RegisterHash(crypto.BLAKE2b_384, newHash384) + crypto.RegisterHash(crypto.BLAKE2b_512, newHash512) +} diff --git a/vendor/vendor.json b/vendor/vendor.json index b56d5f7a6..bc87735b5 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -120,7 +120,7 @@ {"path":"github.com/hashicorp/go-discover/provider/vsphere","checksumSHA1":"s5lxWYL2UiEeOksa3DVEYWJsH1I=","revision":"f9c9239562a8e21e5a37f1f2604d8f1c11bc3893","revisionTime":"2018-08-31T15:49:06Z"}, {"path":"github.com/hashicorp/go-hclog","checksumSHA1":"qhjAx0nMYBeQqRTaf7sQYpfUIq0=","revision":"69ff559dc25f3b435631604f573a5fa1efdb6433","revisionTime":"2018-04-02T20:04:05Z"}, {"path":"github.com/hashicorp/go-immutable-radix","checksumSHA1":"Cas2nprG6pWzf05A2F/OlnjUu2Y=","revision":"8aac2701530899b64bdea735a1de8da899815220","revisionTime":"2017-07-25T22:12:15Z"}, - {"path":"github.com/hashicorp/go-memdb","checksumSHA1":"T65qvYBTy4rYks7oN+U0muEqtRw=","revision":"2b2d6c35e14e7557ea1003e707d5e179fa315028","revisionTime":"2017-07-25T22:15:03Z"}, + {"path":"github.com/hashicorp/go-memdb","checksumSHA1":"4Ge4Vvtbyhb5nN3o+7Vq0Za8i8U=","revision":"1289e7fffe71d8fd4d4d491ba9a412c50f244c44","revisionTime":"2018-02-23T23:30:45Z"}, {"path":"github.com/hashicorp/go-msgpack/codec","checksumSHA1":"TNlVzNR1OaajcNi3CbQ3bGbaLGU=","revision":"fa3f63826f7c23912c15263591e65d54d080b458","revisionTime":"2015-05-18T23:42:57Z"}, {"path":"github.com/hashicorp/go-multierror","checksumSHA1":"lrSl49G23l6NhfilxPM0XFs5rZo=","revision":"d30f09973e19c1dfcd120b2d9c4f168e68d6b5d5","revisionTime":"2015-09-16T20:57:42Z"}, {"path":"github.com/hashicorp/go-plugin","checksumSHA1":"lbG9uwM7qJlTIBg+8mjCC88sCPc=","revision":"e8d22c780116115ae5624720c9af0c97afe4f551","revisionTime":"2018-03-31T00:25:53Z"}, @@ -133,15 +133,16 @@ {"path":"github.com/hashicorp/go-version","checksumSHA1":"tUGxc7rfX0cmhOOUDhMuAZ9rWsA=","revision":"03c5bf6be031b6dd45afec16b1cf94fc8938bc77","revisionTime":"2017-02-02T08:07:59Z"}, {"path":"github.com/hashicorp/golang-lru","checksumSHA1":"d9PxF1XQGLMJZRct2R8qVM/eYlE=","revision":"a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4","revisionTime":"2016-02-07T21:47:19Z"}, {"path":"github.com/hashicorp/golang-lru/simplelru","checksumSHA1":"2nOpYjx8Sn57bqlZq17yM4YJuM4=","revision":"a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4","revisionTime":"2016-02-07T21:47:19Z"}, - {"path":"github.com/hashicorp/hcl","checksumSHA1":"HtpYAWHvd9mq+mHkpo7z8PGzMik=","revision":"23c074d0eceb2b8a5bfdbb271ab780cde70f05a8","revisionTime":"2017-10-17T18:19:29Z"}, - {"path":"github.com/hashicorp/hcl/hcl/ast","checksumSHA1":"IxyvRpCFeoJBGl2obLKJV7RCGjg=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/hcl/parser","checksumSHA1":"l2oQxBsZRwn6eZjf+whXr8c9+8c=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/hcl/scanner","checksumSHA1":"vjhDQVlgHhdxml1V8/cj0vOe+j8=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/hcl/strconv","checksumSHA1":"JlZmnzqdmFFyb1+2afLyR3BOE/8=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/hcl/token","checksumSHA1":"c6yprzj06ASwCo18TtbbNNBHljA=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/json/parser","checksumSHA1":"jQ45CCc1ed/nlV7bbSnx6z72q1M=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/json/scanner","checksumSHA1":"S1e0F9ZKSnqgOLfjDTYazRL28tA=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, - {"path":"github.com/hashicorp/hcl/json/token","checksumSHA1":"fNlXQCQEnb+B3k5UDL/r15xtSJY=","revision":"d8c773c4cba11b11539e3d45f93daeaa5dcf1fa1","revisionTime":"2016-07-11T23:17:52Z"}, + {"path":"github.com/hashicorp/hcl","checksumSHA1":"bWGI7DqWg6IdhfamV96OD+Esa+8=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/hcl/ast","checksumSHA1":"XQmjDva9JCGGkIecOgwtBEMCJhU=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/hcl/parser","checksumSHA1":"1GmX7G0Pgf5XprOh+T3zXMXX0dc=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/hcl/printer","checksumSHA1":"encY+ZtDf4nJaMvsVL2c+EJ2r3Q=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/hcl/scanner","checksumSHA1":"+qJTCxhkwC7r+VZlPlZz8S74KmU=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/hcl/strconv","checksumSHA1":"oS3SCN9Wd6D8/LG0Yx1fu84a7gI=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/hcl/token","checksumSHA1":"c6yprzj06ASwCo18TtbbNNBHljA=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/json/parser","checksumSHA1":"PwlfXt7mFS8UYzWxOK5DOq0yxS0=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/json/scanner","checksumSHA1":"afrZ8VmAwfTdDAYVgNSXbxa4GsA=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, + {"path":"github.com/hashicorp/hcl/json/token","checksumSHA1":"fNlXQCQEnb+B3k5UDL/r15xtSJY=","revision":"65a6292f0157eff210d03ed1bf6c59b190b8b906","revisionTime":"2018-09-06T18:38:39Z"}, {"path":"github.com/hashicorp/hil","checksumSHA1":"kqCMCHy2b+RBMKC+ER+OPqp8C3E=","revision":"1e86c6b523c55d1fa6c6e930ce80b548664c95c2","revisionTime":"2016-07-11T23:18:37Z"}, {"path":"github.com/hashicorp/hil/ast","checksumSHA1":"UICubs001+Q4MsUf9zl2vcMzWQQ=","revision":"1e86c6b523c55d1fa6c6e930ce80b548664c95c2","revisionTime":"2016-07-11T23:18:37Z"}, {"path":"github.com/hashicorp/logutils","checksumSHA1":"vt+P9D2yWDO3gdvdgCzwqunlhxU=","revision":"0dc08b1671f34c4250ce212759ebd880f743d883","revisionTime":"2015-06-09T07:04:31Z"}, @@ -287,6 +288,7 @@ {"path":"github.com/vmware/govmomi/vim25/types","checksumSHA1":"F58FP8qS+yAPVSCUPRsv2lhkfA0=","revision":"0627a5e7a9dc71f6e02b25f781a9b82f5985b084","revisionTime":"2018-07-14T17:07:08Z"}, {"path":"github.com/vmware/govmomi/vim25/xml","checksumSHA1":"6XLRzLEvncx5ORtvBjp41KfRTjc=","revision":"0627a5e7a9dc71f6e02b25f781a9b82f5985b084","revisionTime":"2018-07-14T17:07:08Z"}, {"path":"github.com/vmware/vic/pkg/vsphere/tags","checksumSHA1":"ZLGAwcBpN5I+RNzoxt5pTssyobU=","revision":"e0dd53e0e72531b36976839a79093a3cf8126411","revisionTime":"2018-07-12T16:27:50Z"}, + {"path":"golang.org/x/crypto/blake2b","checksumSHA1":"ejjxT0+wDWWncfh0Rt3lSH4IbXQ=","revision":"0c41d7ab0a0ee717d4590a44bcb987dfd9e183eb","revisionTime":"2018-10-15T00:23:17Z"}, {"path":"golang.org/x/crypto/chacha20poly1305","checksumSHA1":"XeVtoYW/XdZj+VJpmHmPKcqJO+o=","revision":"a49355c7e3f8fe157a85be2f77e6e269a0f89602","revisionTime":"2018-06-20T09:14:27Z"}, {"path":"golang.org/x/crypto/cryptobyte","checksumSHA1":"VrW/nowBxVcqQhIrqDJNxr5NWu0=","revision":"a49355c7e3f8fe157a85be2f77e6e269a0f89602","revisionTime":"2018-06-20T09:14:27Z"}, {"path":"golang.org/x/crypto/cryptobyte/asn1","checksumSHA1":"YEoV2AiZZPDuF7pMVzDt7buS9gc=","revision":"a49355c7e3f8fe157a85be2f77e6e269a0f89602","revisionTime":"2018-06-20T09:14:27Z"}, diff --git a/website/source/api/agent.html.md b/website/source/api/agent.html.md index ecd3fa62d..55be66577 100644 --- a/website/source/api/agent.html.md +++ b/website/source/api/agent.html.md @@ -246,6 +246,11 @@ In order to enable [Prometheus](https://prometheus.io/) support, you need to use configuration directive [`prometheus_retention_time`](/docs/agent/options.html#telemetry-prometheus_retention_time). +Note: If your metric includes labels that use the same key name multiple times +(i.e. tag=tag2 and tag=tag1), only the sorted last value (tag=tag2) will be visible on +this endpoint due to a display issue. The complete label set is correctly applied and +passed to external metrics providers even though it is not visible through this endpoint. + | Method | Path | Produces | | ------ | ---------------------------------- | ------------------------------------------ | | `GET` | `/agent/metrics` | `application/json` | diff --git a/website/source/api/catalog.html.md b/website/source/api/catalog.html.md index 618f2d9a0..eca91df9b 100644 --- a/website/source/api/catalog.html.md +++ b/website/source/api/catalog.html.md @@ -399,7 +399,9 @@ The table below shows this endpoint's support for the datacenter of the agent being queried. This is specified as part of the URL as a query parameter. -- `tag` `(string: "")` - Specifies the tag to filter on. +- `tag` `(string: "")` - Specifies the tag to filter on. This is specified as part of + the URL as a query parameter. Can be used multiple times for additional filtering, + returning only the results that include all of the tag values provided. - `near` `(string: "")` - Specifies a node name to sort the node list in ascending order based on the estimated round trip time from that node. Passing diff --git a/website/source/api/health.html.md b/website/source/api/health.html.md index 624c6263a..bea233cd2 100644 --- a/website/source/api/health.html.md +++ b/website/source/api/health.html.md @@ -178,7 +178,9 @@ The table below shows this endpoint's support for part of the URL as a query parameter. - `tag` `(string: "")` - Specifies the tag to filter the list. This is - specifies as part of the URL as a query parameter. + specified as part of the URL as a query parameter. Can be used multiple times + for additional filtering, returning only the results that include all of the tag + values provided. - `node-meta` `(string: "")` - Specifies a desired node metadata key/value pair of the form `key:value`. This parameter can be specified multiple times, and diff --git a/website/source/docs/agent/telemetry.html.md b/website/source/docs/agent/telemetry.html.md index 4e4784915..2bc2344bc 100644 --- a/website/source/docs/agent/telemetry.html.md +++ b/website/source/docs/agent/telemetry.html.md @@ -933,6 +933,12 @@ These metrics give insight into the health of the cluster as a whole. queries counter + + `consul.catalog.service.query-tags..` + This increments for each catalog query for the given service with the given tags. + queries + counter + `consul.catalog.service.not-found.` This increments for each catalog query where the given service could not be found. @@ -951,6 +957,12 @@ These metrics give insight into the health of the cluster as a whole. queries counter + + `consul.health.service.query-tags..` + This increments for each health query for the given service with the given tags. + queries + counter + `consul.health.service.not-found.` This increments for each health query where the given service could not be found.