From abf901d9325a4482bfd9bb43077940396370f1ff Mon Sep 17 00:00:00 2001 From: LowEel Date: Thu, 8 Oct 2020 21:53:05 +0200 Subject: [PATCH] Initial commit --- .gitignore | 6 + .vscode/settings.json | 3 + LICENSE | 15 + README.md | 122 +++ alloc.go | 51 ++ assets/message.txt | 40 + bindata.go | 237 +++++ blacklist.txt | 6 + build.sh | 24 + classifier.go | 147 +++ file.go | 93 ++ go.mod | 11 + go.sum | 10 + handler.go | 80 ++ log.go | 125 +++ main.go | 53 ++ matrix.go | 276 ++++++ run.sh | 8 + vendor/github.com/blevesearch/bleve/LICENSE | 202 +++++ .../blevesearch/bleve/analysis/freq.go | 152 ++++ .../blevesearch/bleve/analysis/test_words.txt | 7 + .../bleve/analysis/tokenizer/regexp/regexp.go | 84 ++ .../blevesearch/bleve/analysis/tokenmap.go | 76 ++ .../blevesearch/bleve/analysis/type.go | 103 +++ .../blevesearch/bleve/analysis/util.go | 92 ++ .../blevesearch/bleve/document/document.go | 101 +++ .../blevesearch/bleve/document/field.go | 41 + .../bleve/document/field_boolean.go | 123 +++ .../bleve/document/field_composite.go | 124 +++ .../bleve/document/field_datetime.go | 159 ++++ .../bleve/document/field_geopoint.go | 152 ++++ .../bleve/document/field_numeric.go | 145 +++ .../blevesearch/bleve/document/field_text.go | 139 +++ .../bleve/document/indexing_options.go | 66 ++ .../blevesearch/bleve/geo/README.md | 9 + .../github.com/blevesearch/bleve/geo/geo.go | 208 +++++ .../blevesearch/bleve/geo/geo_dist.go | 98 ++ .../blevesearch/bleve/geo/geohash.go | 111 +++ .../github.com/blevesearch/bleve/geo/parse.go | 179 ++++ .../blevesearch/bleve/geo/sloppy.go | 212 +++++ .../blevesearch/bleve/index/analysis.go | 110 +++ .../blevesearch/bleve/index/field_cache.go | 88 ++ .../blevesearch/bleve/index/index.go | 369 ++++++++ .../blevesearch/bleve/index/store/batch.go | 62 ++ .../blevesearch/bleve/index/store/kvstore.go | 174 ++++ .../blevesearch/bleve/index/store/merge.go | 64 ++ .../blevesearch/bleve/index/store/multiget.go | 33 + .../blevesearch/bleve/numeric/bin.go | 43 + .../blevesearch/bleve/numeric/float.go | 34 + .../blevesearch/bleve/numeric/prefix_coded.go | 111 +++ .../blevesearch/bleve/registry/analyzer.go | 89 ++ .../blevesearch/bleve/registry/cache.go | 87 ++ .../blevesearch/bleve/registry/char_filter.go | 89 ++ .../bleve/registry/datetime_parser.go | 89 ++ .../bleve/registry/fragment_formatter.go | 89 ++ .../blevesearch/bleve/registry/fragmenter.go | 89 ++ .../blevesearch/bleve/registry/highlighter.go | 89 ++ .../blevesearch/bleve/registry/index_type.go | 45 + .../blevesearch/bleve/registry/registry.go | 184 ++++ .../blevesearch/bleve/registry/store.go | 51 ++ .../bleve/registry/token_filter.go | 89 ++ .../blevesearch/bleve/registry/token_maps.go | 89 ++ .../blevesearch/bleve/registry/tokenizer.go | 89 ++ .../blevesearch/bleve/search/collector.go | 52 ++ .../blevesearch/bleve/search/explanation.go | 55 ++ .../bleve/search/facets_builder.go | 341 +++++++ .../bleve/search/highlight/highlighter.go | 64 ++ .../bleve/search/highlight/term_locations.go | 105 +++ .../blevesearch/bleve/search/levenshtein.go | 114 +++ .../blevesearch/bleve/search/pool.go | 91 ++ .../blevesearch/bleve/search/search.go | 378 ++++++++ .../blevesearch/bleve/search/sort.go | 741 ++++++++++++++++ .../blevesearch/bleve/search/util.go | 69 ++ .../blevesearch/bleve/size/sizes.go | 59 ++ .../blevesearch/go-porterstemmer/.gitignore | 8 + .../blevesearch/go-porterstemmer/.travis.yml | 16 + .../blevesearch/go-porterstemmer/LICENSE | 19 + .../blevesearch/go-porterstemmer/README.md | 118 +++ .../go-porterstemmer/porterstemmer.go | 839 ++++++++++++++++++ .../github.com/lytics/multibayes/.travis.yml | 2 + vendor/github.com/lytics/multibayes/README.md | 63 ++ vendor/github.com/lytics/multibayes/doc.go | 9 + .../github.com/lytics/multibayes/encoding.go | 66 ++ vendor/github.com/lytics/multibayes/sparse.go | 73 ++ .../github.com/lytics/multibayes/stopbytes.go | 181 ++++ .../github.com/lytics/multibayes/testutil.go | 33 + .../github.com/lytics/multibayes/tokenize.go | 166 ++++ vendor/modules.txt | 16 + whitelist.txt | 4 + zgc.go | 26 + 90 files changed, 9854 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 LICENSE create mode 100644 README.md create mode 100644 alloc.go create mode 100644 assets/message.txt create mode 100644 bindata.go create mode 100644 blacklist.txt create mode 100755 build.sh create mode 100644 classifier.go create mode 100644 file.go create mode 100644 go.mod create mode 100644 go.sum create mode 100644 handler.go create mode 100644 log.go create mode 100644 main.go create mode 100644 matrix.go create mode 100755 run.sh create mode 100644 vendor/github.com/blevesearch/bleve/LICENSE create mode 100644 vendor/github.com/blevesearch/bleve/analysis/freq.go create mode 100644 vendor/github.com/blevesearch/bleve/analysis/test_words.txt create mode 100644 vendor/github.com/blevesearch/bleve/analysis/tokenizer/regexp/regexp.go create mode 100644 vendor/github.com/blevesearch/bleve/analysis/tokenmap.go create mode 100644 vendor/github.com/blevesearch/bleve/analysis/type.go create mode 100644 vendor/github.com/blevesearch/bleve/analysis/util.go create mode 100644 vendor/github.com/blevesearch/bleve/document/document.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field_boolean.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field_composite.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field_datetime.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field_geopoint.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field_numeric.go create mode 100644 vendor/github.com/blevesearch/bleve/document/field_text.go create mode 100644 vendor/github.com/blevesearch/bleve/document/indexing_options.go create mode 100644 vendor/github.com/blevesearch/bleve/geo/README.md create mode 100644 vendor/github.com/blevesearch/bleve/geo/geo.go create mode 100644 vendor/github.com/blevesearch/bleve/geo/geo_dist.go create mode 100644 vendor/github.com/blevesearch/bleve/geo/geohash.go create mode 100644 vendor/github.com/blevesearch/bleve/geo/parse.go create mode 100644 vendor/github.com/blevesearch/bleve/geo/sloppy.go create mode 100644 vendor/github.com/blevesearch/bleve/index/analysis.go create mode 100644 vendor/github.com/blevesearch/bleve/index/field_cache.go create mode 100644 vendor/github.com/blevesearch/bleve/index/index.go create mode 100644 vendor/github.com/blevesearch/bleve/index/store/batch.go create mode 100644 vendor/github.com/blevesearch/bleve/index/store/kvstore.go create mode 100644 vendor/github.com/blevesearch/bleve/index/store/merge.go create mode 100644 vendor/github.com/blevesearch/bleve/index/store/multiget.go create mode 100644 vendor/github.com/blevesearch/bleve/numeric/bin.go create mode 100644 vendor/github.com/blevesearch/bleve/numeric/float.go create mode 100644 vendor/github.com/blevesearch/bleve/numeric/prefix_coded.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/analyzer.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/cache.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/char_filter.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/datetime_parser.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/fragment_formatter.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/fragmenter.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/highlighter.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/index_type.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/registry.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/store.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/token_filter.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/token_maps.go create mode 100644 vendor/github.com/blevesearch/bleve/registry/tokenizer.go create mode 100644 vendor/github.com/blevesearch/bleve/search/collector.go create mode 100644 vendor/github.com/blevesearch/bleve/search/explanation.go create mode 100644 vendor/github.com/blevesearch/bleve/search/facets_builder.go create mode 100644 vendor/github.com/blevesearch/bleve/search/highlight/highlighter.go create mode 100644 vendor/github.com/blevesearch/bleve/search/highlight/term_locations.go create mode 100644 vendor/github.com/blevesearch/bleve/search/levenshtein.go create mode 100644 vendor/github.com/blevesearch/bleve/search/pool.go create mode 100644 vendor/github.com/blevesearch/bleve/search/search.go create mode 100644 vendor/github.com/blevesearch/bleve/search/sort.go create mode 100644 vendor/github.com/blevesearch/bleve/search/util.go create mode 100644 vendor/github.com/blevesearch/bleve/size/sizes.go create mode 100644 vendor/github.com/blevesearch/go-porterstemmer/.gitignore create mode 100644 vendor/github.com/blevesearch/go-porterstemmer/.travis.yml create mode 100644 vendor/github.com/blevesearch/go-porterstemmer/LICENSE create mode 100644 vendor/github.com/blevesearch/go-porterstemmer/README.md create mode 100644 vendor/github.com/blevesearch/go-porterstemmer/porterstemmer.go create mode 100644 vendor/github.com/lytics/multibayes/.travis.yml create mode 100644 vendor/github.com/lytics/multibayes/README.md create mode 100644 vendor/github.com/lytics/multibayes/doc.go create mode 100644 vendor/github.com/lytics/multibayes/encoding.go create mode 100644 vendor/github.com/lytics/multibayes/sparse.go create mode 100644 vendor/github.com/lytics/multibayes/stopbytes.go create mode 100644 vendor/github.com/lytics/multibayes/testutil.go create mode 100644 vendor/github.com/lytics/multibayes/tokenize.go create mode 100644 vendor/modules.txt create mode 100644 whitelist.txt create mode 100644 zgc.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b9797d0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +zardoz +bayes.* +/logs +logs/* +binaries/* +binaries diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a460645 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "go.inferGopath": false +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ac86561 --- /dev/null +++ b/LICENSE @@ -0,0 +1,15 @@ + Zardoz: a lightweight WAF , based on Pseudo-Bayes machine learning. + Copyright (C) 2020 loweel@keinpfusch.net + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..7092e9f --- /dev/null +++ b/README.md @@ -0,0 +1,122 @@ +# Zardoz: a lightweight WAF , based on Pseudo-Bayes machine learning. + + + +Zardoz is a small WAF, aiming to take off HTTP calls which are well-known to end in some HTTP error. It behaves like a reverse proxy, running as a frontend. It intercepts the calls, forwards them when needed and learns how the server reacts from the Status Code. + +After a while, the bayes classifier is able to understand what is a "good" HTTP call and a bad one, based on the header contents. + +It is designed to don't consume much memory neither CPU, so that you don't need powerful servers to keep it running, neither it can introduce high latency on the web server. + +## STATUS: + +This is just an experiment I'm doing with Pseudo-Bayes classifiers. It works pretty well with my blog. Run in production at your own risk. + + +## Compiling: + +Requirements: + +- golang >= 1.12.9 + +build: + +```bash +git clone https://git.keinpfusch.net/LowEel/zardoz +cd zardoz +go build +``` + +## Starting: + +Zardoz has no configuration file, it entirely depends from environment string. + +In Dockerfile, this maps like: + +```bash +ENV REVERSEURL http://10.0.1.1:3000 +ENV PROXYPORT :17000 +ENV TRIGGER 0.6 +ENV SENIORITY 1025 +ENV DEBUG false +ENV DUMPFILE /somewhere/bayes.txt +ENV COLLECTION 2048 +``` + +Using a bash script, this means something like: + +```bash +export REVERSEURL=http://10.0.1.1:3000 +export PROXYPORT=":17000" +export TRIGGER="0.6" +export SENIORITY="1025" +export DEBUG="true" +export DUMPFILE="/somewhere/bayes.txt" +export COLLECTION +./zardoz +``` + +## Understanding Configuration: + +**REVERSEURL** is the server zardoz will be a reverse proxy for. This maps to IP and port of the server you want to protect. + +**PROXYPORT** is the IP and PORT where zardoz will listen. If you want zardoz to listen on all ports, just write like ":17000", meaning, it will listen on all interfaces at port 17000 + +**TRIGGER**: this is one of the trickiest part. We can describe the behavior of zardoz in quadrants, like: + + + +| - | BAD > GOOD | BAD < GOOD | +| ------------------------------- | ----------- | ---------- | +| **\| GOOD - BAD \| > TRIGGER** | BLOCK | PASS | +| **\| GOOD - BAD \| <= TRIGGER** | BLOCK+LEARN | PASS+LEARN | + + + +The value of trigger can be from 0 to 1, like "0.5" or "0.6". The difference between BLOCK without learning and block with learning is execution time. On the point of view of user experience, it will change nothing (user will be blocked) but in case of "block+learn" the machine will try to learn the lesson. + +Basically, if the GOOD and BAD are very far, "likelyhood" is very high, so that block and pass are taken strictly. + +If the likelyhood is lesser than TRIGGER, then we aren't sure the prediction is good, so zardoz executes the PASS or BLOCK, but it waits for the response , and learns from it. To summerize, the concept is about "likelyhood", which makes the difference between an action and the same action + LEARN. + +Personally I've got good results putting the trigger at 0.6, meaning this is not disturbing so much users, and in the same time it has filtered tons of malicious scan. + +**SENIORITY**: since Zardoz will learn what is good for your web server, it takes time to gain seniority. To start Zardoz as empty and leave it to decide will generate some terrible behavior, because of false positives and false negatives. Plus, at the beginning Zardoz is supposed to ALWAYS learn. + +The parameter "SENIORITY" is then the amount of requests it will set in "PASS+LEARN" before the filtering starts. During this time, it will learn from real traffic. It will block no traffic unless "seniority" is reach. If you set it to 1025, it will learn from 1025 requests and then it will start to actually filter the requests. The number depends by many factors: if you have a lot of page served and a lot of contents, I suggest to increase the number. + +**DUMPFILE** + +This is where you want the dumpfile to be saved. Useful with Docker volumes. + +**COLLECTION** + +The amount of collected tokens which are considered enough to do a good job. This depends by your service. This is useful to limit memory usage if your server has a very complex content, by example. + + +**TROUBLESHOOTING:** + +If DEBUG is set to "false" or not set, minute Zardoz will dump the sparse matrix describing to the whole bayesian learning, into a file named bayes.json. This contains the weighted matrix of calls and classes. If Zardoz is not behaving like you expected, you may give a look to this file. The format is a classic sparse matrix. WARNING: this file **may** contain cookies or other sensitive headers. + +DEBUG : if set to "true", Zardoz will create a folder "logs" and log what happens, together with the dump of sparse matrix. If set to "false" or not set, sparse matrix will be available on disk for post-mortem. + +**CREDIT** + +Credits for the Bayesian Implementation to Jake Brukhman : https://github.com/jbrukh/bayesian + + +## TODO: + +- [ ] Loading Bayesian data from file. +- [X] Better Logging +- [ ] Configurable block message. +- [ ] Usage Statistics/Metrics sent to influxDB/prometheus/whatever + + + + + + + + + diff --git a/alloc.go b/alloc.go new file mode 100644 index 0000000..5ef1e85 --- /dev/null +++ b/alloc.go @@ -0,0 +1,51 @@ +package main + +import ( + "fmt" + "log" + "net/http" + "time" +) + +//HTTPFlow is a type containg all the data we need. +type HTTPFlow struct { + request *http.Request + response *http.Response + sensitivity float64 // value who triggers decisions + seniority int64 + collection float64 + refreshtime time.Duration +} + +//DebugLog tells if logs are in debug mode or not +var DebugLog bool + +//ProxyFlow represents our flow +var ProxyFlow HTTPFlow + +//ZClassifier is our bayesian classifier +var ZClassifier *ByClassifier + +//BlockMessage is the messgae we return when blocking +var BlockMessage string + +//Maturity is the minimal amount of request , needed to say Zardoz has learnt enough +var Maturity int64 + +func init() { + + ZClassifier = new(ByClassifier) + ZClassifier.enroll() + + ProxyFlow.sensitivity = 0.5 + ProxyFlow.seniority = 0 + + bl, err := Asset("assets/message.txt") + if err != nil { + log.Println("Cannot marshal asset error message!!") + BlockMessage = "" + } else { + BlockMessage = fmt.Sprintf("%s", bl) + } + +} diff --git a/assets/message.txt b/assets/message.txt new file mode 100644 index 0000000..49f7e07 --- /dev/null +++ b/assets/message.txt @@ -0,0 +1,40 @@ + + + +ZARDOZ SAYS: + + + + +

ZARDOZ Blocked your request

+ +
+ +
+ + +If you read this message, Zardoz blocked you.

+ +Zardoz is a WAF (Web Application Firewall) based on pseudo-bayesian machine learning.

+This means your request is very similar to requests making troubles.
+For more information, check Zardoz (https://git.keinpfusch.net/LowEel/zardoz)

+Sorry for the inconvenience, but:

+ +
+
+Zardoz: Zardoz speaks to you, his chosen ones. You have been raised up from brutality, to kill the brutals who multiply, and are legion. To this end, Zardoz your god gave you the gift of the gun. The gun is good.
+Exterminators: The gun is good.
+Zardoz: The penis is evil. The penis shoots seeds, and makes new life, and poisons the earth with a plague of men, as once it was. But the gun shoots death, and purifies the earth of the filth of brutals. Go forth and kill!
+
+
+ + + + diff --git a/bindata.go b/bindata.go new file mode 100644 index 0000000..478aa80 --- /dev/null +++ b/bindata.go @@ -0,0 +1,237 @@ +// Code generated by go-bindata. +// sources: +// assets/message.txt +// DO NOT EDIT! + +package main + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "strings" + "time" +) + +func bindataRead(data []byte, name string) ([]byte, error) { + gz, err := gzip.NewReader(bytes.NewBuffer(data)) + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + + var buf bytes.Buffer + _, err = io.Copy(&buf, gz) + clErr := gz.Close() + + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + if clErr != nil { + return nil, err + } + + return buf.Bytes(), nil +} + +type asset struct { + bytes []byte + info os.FileInfo +} + +type bindataFileInfo struct { + name string + size int64 + mode os.FileMode + modTime time.Time +} + +func (fi bindataFileInfo) Name() string { + return fi.name +} +func (fi bindataFileInfo) Size() int64 { + return fi.size +} +func (fi bindataFileInfo) Mode() os.FileMode { + return fi.mode +} +func (fi bindataFileInfo) ModTime() time.Time { + return fi.modTime +} +func (fi bindataFileInfo) IsDir() bool { + return false +} +func (fi bindataFileInfo) Sys() interface{} { + return nil +} + +var _assetsMessageTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xfb\xc7\xce\x84\x40\xb6\x2d\x0c\xce\xeb\x29\xaa\x47\x3d\xc8\x7b\x95\x78\x73\x6e\xf5\x91\x02\x48\xbc\xf7\x30\xc3\x7b\xef\x69\xf5\xbb\xb7\xbe\xaa\xf3\x0f\x5a\xea\xd9\x9f\x12\x04\x44\xae\x88\xd8\x39\xc8\xb5\xf6\xda\x04\xff\xfa\x7f\x70\x06\xeb\x46\xe6\xef\x9f\xf5\x3e\xf4\xff\xfd\x8f\x7f\xfd\x5f\x4d\x91\xe4\xff\xfd\x8f\x7f\xed\xcd\xde\x17\xff\x1d\x03\x9b\x33\xe2\x7f\x3a\x20\x72\xfe\xeb\x5f\xdf\xff\xf4\xfd\xe3\x5f\xdb\xfe\xfc\xb5\xe9\x94\x3f\xff\xfc\x7f\xff\xe3\x9f\xff\x4c\x93\xac\xab\xd6\xe9\x18\xf3\xff\x9d\x4d\xfd\xb4\xfe\xd7\x3f\xd3\x3e\xc9\xba\xff\xf3\x8f\x7f\xfe\x73\x2f\xee\xfd\x7f\x27\x7d\x53\x8d\xff\xf5\xcf\xbe\x28\xf7\xbf\xbe\xff\xc1\x5c\x75\xb3\x17\x7f\xf7\xe5\x34\xee\xff\xbb\x4c\x86\xa6\x7f\xfe\xeb\x9f\x60\x6d\x92\xfe\x7f\xfd\x53\x2c\xfa\xb3\xd8\x9b\x2c\xf9\x5f\xff\xdc\x92\x71\xfb\xdf\x5b\xb1\x36\xe5\xff\xf9\xc7\xff\xe7\x1f\xff\xfa\xfe\xcf\xea\xff\xfa\xfe\x4f\xa4\x7f\x61\xfc\xf7\x3f\xfe\xf1\xaf\x1a\xfe\xbf\xc2\x65\xfa\x29\xeb\x8a\xfc\x9f\xcf\x74\xac\xff\x5c\x8b\xe5\x28\xb6\xfd\x5f\xdf\x1a\xfe\x43\x65\xc5\xb8\x17\xeb\x7f\xff\xe3\x5f\xcd\x50\xfd\x73\x5b\xb3\xff\xd7\xff\x33\x4f\xf6\xe4\xbf\x9a\x21\xa9\x8a\x6f\x3b\x17\xd5\xff\x49\x93\xad\x20\xb0\xff\xf5\xa5\xdb\x2f\x72\x31\x1c\x00\xd1\x8f\xb1\x3c\x9e\x01\x11\xcf\x58\x9e\xc8\x54\x91\xc8\x5a\x94\xc2\x5a\x95\xc4\xda\x9a\xce\x55\x9b\xc9\xd7\x5a\xc8\xdf\x91\xcb\xdb\x5e\x24\x3c\x5a\x21\x30\x53\x2d\xd4\x9e\x2f\x36\x5d\x29\x39\x56\x2f\x3f\xd5\x28\x30\xd0\xaa\x36\xdb\xa0\x36\xda\x20\x3f\xe9\x7f\xe6\xb6\x22\x91\xb9\x3a\x89\xb5\x25\x85\xad\xa5\x41\xb0\xbd\x58\x6e\xa2\xe1\xff\xde\x91\x7e\x2f\x00\x6c\x16\x08\x2b\x38\x23\x0e\x38\x12\x00\xf5\x8f\x01\xf7\x8f\xf9\x52\x16\x10\x2d\x00\x00\xc8\x18\x60\xfd\xc0\xff\xef\xe7\xc7\x82\xcb\xe2\x99\x2a\x93\xd8\xf2\xfb\x03\x3f\xc9\x02\x40\x62\xc0\xa5\xb1\x0c\xf0\x58\x70\x65\x1c\xb8\x34\x1e\x58\x7f\x38\xf0\xfb\x59\x9e\x23\x59\xd1\xfd\x83\x78\x3b\xb2\x32\x4f\x1a\x05\x46\x9b\x7f\xad\xb5\xfc\x24\xde\xb1\x5e\x6f\x15\x19\x7e\x50\x6d\x0b\x55\x6b\xb9\xe4\x6e\x1e\xb2\xdd\x0c\x53\x9a\xbf\x18\x84\xea\xf7\xb7\xfe\x7f\x8e\xff\x7f\x31\x9c\xdf\x1f\x60\x33\x1b\x00\x89\x05\x95\x06\x40\x25\x71\xc0\x02\xdc\xff\x80\x18\x50\xff\x38\xc9\x96\x6e\xcb\xd6\x6d\x86\x95\x3c\x6d\xe0\x6f\x09\x92\x9d\x2f\x3d\x01\x0e\x68\x0c\x00\x92\x0d\xee\x1f\x30\x2f\x0e\x06\x6e\x53\x09\x53\xa3\xa8\x8c\x9e\x68\xec\x8e\x24\x42\x59\x74\xd1\x74\xdf\xd6\x54\x8e\x4e\x95\xb8\xd6\x57\x67\x9b\x43\xe1\x65\xd2\xd3\xb0\x09\xd0\xfb\x0f\x24\x66\x3e\x8a\x3c\x10\xdf\xc9\xe3\x41\x3c\x6d\x4d\x4b\xc2\x40\xbc\x6d\x4e\x4c\x2a\xce\x92\x97\x4a\x6b\x6a\x27\x47\x79\x2e\x1f\x2a\x5e\xa8\x38\xc7\x49\x54\x53\x50\x3c\xe6\xf2\x8a\x24\x65\xa6\x74\x01\xd9\x14\xcf\x02\xd1\xbe\xde\xc4\x52\x10\x48\xd2\x77\x68\xdf\xdb\xa9\xd4\xd7\x7a\xdd\x02\xc3\xa6\xf4\xb8\x67\x4b\xd4\x3e\xbd\x38\x0c\x97\x6b\xff\x46\x5e\x01\xe4\x50\x0f\x43\xe5\xe2\x43\xfb\x3a\x95\x11\x4f\xf1\x7c\xea\xca\x6b\xb1\x14\x05\x29\xf6\x50\x7b\x60\x1b\x6a\xc7\x72\x2d\x66\x62\x7c\xb6\x99\x28\x0f\x28\x46\x4d\x13\xef\x70\xe6\x71\x6e\x26\x46\xbb\x9a\x4b\x3f\xa5\x7d\xc1\x00\xd9\x3e\x65\x5a\xf3\x05\xe8\x78\x66\x9d\x16\xda\x89\xc0\xc3\xf5\x0b\x78\x7a\xed\xfa\xb1\xb5\xd3\x00\x6d\x7a\x0a\x2d\x89\xcb\xbc\x43\xe1\xb3\x94\x4d\x4f\x39\xba\x76\x9c\xdc\x99\xc2\x6b\xa4\x3f\x75\xdb\x02\xbf\x26\x45\x3e\x3b\x87\x26\xc7\xbe\xed\xd3\x15\x87\xc2\x17\xd6\x67\xf8\xb6\x36\xfc\x83\xa6\x9d\x76\x61\xc1\x87\xe3\x43\x66\x2a\xbe\x3c\x43\x17\x2f\x66\xbd\x28\xe0\xe0\x03\xa1\x81\x78\x30\x3b\x2a\x48\x9d\x98\xd3\x4b\xa9\x54\xd4\xaf\xcb\x77\xe9\xb5\xa3\xb5\x2f\x6d\xf4\xb6\x6a\x58\x70\xf1\x84\xc4\xfb\xb0\xee\x53\xf6\xe0\xe8\xd3\x38\x1a\x44\xd8\x88\xb2\x8c\x7f\xfc\x73\x50\x59\x2f\x18\x82\x88\xad\xd3\x2c\x8f\x8a\x27\xdb\xa4\xfc\x51\xf8\x78\x5c\xda\x75\x9d\xdb\x79\x76\x74\x0f\x56\x64\xd9\xfe\x5e\x6c\x57\x73\xe6\x07\xce\x5a\xa2\xfe\x68\x64\x32\x17\xa9\x31\xe2\xb2\x94\xfa\x76\x15\x03\x4e\x2b\x43\x64\xc2\x65\xbe\x6d\x7b\x75\xa2\x99\x8c\xad\x3b\x71\xcb\x60\x9c\x86\xbe\x0b\x17\xa8\xb8\xdf\x1d\x29\x42\xf8\x81\x50\xc4\xae\xdf\xc7\xb9\x9d\xd4\xf3\x76\x1d\xfc\x19\x14\x92\xb8\xbd\x38\x5a\x16\x87\xf3\x2a\x84\xd1\x5e\x8e\x8d\xb2\x0b\xe9\xed\x09\x84\xba\xf1\xaf\x3d\xc8\xda\xcb\x8f\xa7\xed\x5a\x54\xf7\xdc\xbc\x4c\x18\x06\xba\xf4\xfc\x58\x1f\xfd\x07\xae\xa8\xc2\x54\xf2\x4b\x01\x87\x09\xc5\x78\xb7\xce\x3d\x86\x13\x92\xa8\x8e\x58\xc6\x22\xb2\xfa\x5e\x51\x46\xa5\xa6\xb2\xbb\xe3\x1d\xb4\x9a\xe6\x76\x68\x4c\x28\xfb\xba\x20\x47\xc7\x21\x14\x95\x2d\xe3\xeb\x57\x49\x71\x87\x2c\x2d\x1e\xf2\xab\x6d\x9b\xfe\x40\xc9\xfc\x35\xea\xab\x7c\x03\x08\x2a\xb1\x06\xe9\x20\xc7\x7a\x82\x0c\xef\xfc\xbd\x2e\xa5\x0b\x31\xb5\x62\x8f\xdb\xc1\x25\x7f\x9b\x1b\xda\x27\xc1\xfb\xf4\xba\x06\x43\x98\x2d\xb7\x15\x76\xee\xb3\xe9\x68\x5d\xd7\x07\xf8\xc0\xee\xe5\x9b\x51\x73\x10\x09\x65\xf8\x1a\xcf\x0f\x2d\x45\x28\x8b\x65\xca\x53\x3c\x2d\x4a\xc5\xfd\x35\x3c\x10\x87\xe6\xb5\x3d\x43\x01\x66\x6e\xa1\xde\xd0\xde\xb7\xc5\x90\x8b\x5a\x5a\x97\x01\xf3\x4d\xc5\xa1\x10\x40\x77\xc7\x51\x4c\x1e\x08\xae\x85\x7a\xfe\x8f\x21\x29\x08\xac\xb9\x9d\xd6\x76\xc4\x83\xce\x03\x05\x51\x1f\xb3\xce\x2e\x80\xbe\xa7\x78\xda\xa0\x58\xb7\x98\x18\x9f\x3c\xad\xa9\x9c\x64\x62\x5e\x4b\xff\x05\x3a\x27\x4f\xe0\xab\x34\xd3\x86\x4f\x19\x04\x14\xb3\xe9\x20\x65\xe2\x74\x80\xbf\x76\x4c\x2d\xa2\x6e\x31\x23\x09\x85\xf8\xb4\x30\x6f\xe7\x81\x55\xe7\x76\x64\x36\x57\x6b\xa9\x3c\xd7\x8e\xa7\x5f\x41\xff\x4a\xc2\x03\x4b\xed\x18\x19\xa4\x54\x62\x01\xb3\xdd\xa8\xf3\x5d\x7b\xfa\x1a\xfb\xd5\x32\x2f\x28\x83\x0e\x9f\xd2\x23\xe1\xf9\x78\xf2\x46\x9d\xd3\x15\xb0\x4a\x13\x61\x0f\xed\x6b\x4d\xa5\x91\x41\x25\x3a\x0b\x19\xe5\x15\x09\xf0\x5b\x9e\x6b\x3a\x7c\x22\x6a\xeb\x4a\x78\xde\xe2\x81\x60\x8f\x43\x63\x68\x50\xd9\x3b\xee\xd7\xa9\x98\xdb\xc6\x78\x99\xe7\xcc\xd1\x97\x94\xc9\x0b\x12\x21\xe1\xb9\x89\xed\x70\xfc\x6e\x5a\x9c\x56\x80\xf6\x6b\x9f\x29\xc6\xa7\xcd\x63\x86\x1a\x3c\x36\x81\x4d\x1f\xc6\xe1\xac\xd9\xda\xb2\x77\xa8\x71\xaf\xfa\x41\x46\xe9\x4c\x9e\xff\xf7\x17\x57\x8c\x8a\x07\x10\xc8\xa0\xa1\x05\x66\x6f\xb1\x1b\xb4\xea\x32\x3b\xf4\x95\x0f\x40\x99\x34\x39\xd4\xd8\xb3\x2c\xb0\xd2\xf4\x04\xf2\x05\x94\x96\xe8\xcb\x60\xe8\x11\x0d\xfe\x96\xee\xca\xa4\xd7\x7a\xe4\x88\x09\xf8\x22\xf9\x36\x2b\x95\x0e\x70\x80\x1e\xba\x00\x31\x25\xb3\xe1\xcc\x5e\x64\xdf\x35\x2b\xd0\x49\xb9\x15\xa7\xc9\xa5\x08\xd5\x09\xd3\x86\x84\x3d\xb1\x8d\x83\x10\xbd\xb4\xb0\x0b\xc4\xcf\x7e\x1e\x6c\xc2\xf2\xa4\x1f\x8e\x4c\x07\x7b\x44\xe5\x34\x54\xf1\x85\x5c\x8c\xc6\xba\x5b\x50\x43\xb4\xb9\xda\xd8\x6b\x36\x12\x18\x8d\x0a\x0a\xf1\xca\x45\xe2\xc3\xe9\xec\x38\x81\xfe\xfc\x7a\x96\xba\x9d\x9c\x82\xaf\x4f\x10\x42\xf9\x58\x39\xb4\x1a\x62\x78\xc9\xd7\xd1\x04\x43\xe9\x5c\x7a\xc0\xb1\x87\x02\xaf\xd3\x2f\x30\x71\xe6\x7b\xb1\x09\x85\xa2\xc1\x82\x6a\x14\xe9\x3a\xaf\xf1\x76\xb8\xca\x6f\xa3\x9e\x84\x0b\xe9\xca\x93\x2b\x89\x8d\x96\x35\xdf\x07\x23\xe1\x2a\xad\x4c\x01\x85\xe3\xaf\x6e\xcf\x4f\xbe\xd1\xbf\xa4\x16\xa6\xd1\x2d\x3a\xe3\x24\x9b\xa7\x2a\x9e\x23\x1e\xe2\x50\x80\x83\x0c\x07\x4b\xbc\x42\x6c\xf2\x26\xdf\x8b\x2d\x64\x5e\x92\xad\x0e\x47\xe0\x47\x72\x30\x72\x0f\x6a\x22\x26\x5a\x63\x3c\xa2\xb4\xfd\xc8\xa0\x30\x0a\x6c\xbe\xd7\x78\xec\x34\x14\x19\xc3\x60\x44\x99\xc0\x77\x7c\x6a\x14\x23\x78\x37\xeb\x1b\x8e\xcd\xb9\x27\xf6\x35\x7b\xc8\x49\xc4\xae\x9b\xf4\xcd\x42\x61\xe9\xad\x3f\x5e\xb6\xbf\x63\x67\xe4\x32\x5c\xf9\xa6\xd0\x2a\xe6\x0e\x21\x21\xc3\xb3\xaa\xa9\x11\xab\xf9\xe1\x75\x62\x49\x7a\xd0\x83\xe4\x22\x81\x41\x1f\x6c\x53\x0f\x73\x59\xed\x30\xae\x5e\xf0\x4c\x63\x4f\x7e\xd3\x66\xe7\x20\x18\xf6\xd3\xdc\x0a\x64\xd6\x78\xd0\x28\xe4\xec\x05\x11\x18\xda\x4a\xae\xf0\xa2\x89\xad\x6d\xf3\x5c\x82\x79\x9a\xd2\xbe\x50\x75\x14\x80\xc3\x7d\x97\x76\xae\xb0\x74\x4c\xaf\x3a\x69\xad\x33\x9f\x6d\x4d\x31\xc4\xa2\x7e\x45\x1f\x63\x1f\x6d\x45\x5c\xb3\x69\xd4\xc6\xf0\x1c\x93\x33\xb4\x36\xc5\x56\x5c\x8a\xbe\xc5\x84\x5e\xe4\x66\x92\x57\xd7\x66\x46\x74\xb3\xda\xf1\xe6\xdb\xa7\x4f\xda\x20\xed\x8b\xb9\x68\xdf\x82\xb1\xc8\x2a\x8e\x03\x52\x29\x93\x79\xbc\x3a\x88\xd0\x69\x81\xdd\xaa\xc2\xc7\xdb\xcd\xb7\x49\xee\xf4\xb2\xa5\x21\xf5\x70\x82\xfd\x66\xbf\x1c\x67\x3f\xf4\xea\x5a\x8b\xa0\xdc\x83\x84\x20\x60\x16\x81\x10\xa8\xd7\xd4\x54\x16\x8c\x5f\x68\x0a\x65\x70\xb4\x56\xb8\x9f\x4c\xe6\xac\x45\x3a\x85\x51\xe4\x68\xf2\xe5\x28\x14\x55\xf2\xae\x2f\x1c\x9f\x49\x96\xa0\x8c\x94\xde\x16\x98\x63\xa8\x88\xa4\xc3\xfb\x7b\x9f\x4e\x9f\xc9\x7d\x89\x5a\xd8\xd6\xc7\x05\x4f\xda\x1c\x85\x59\x82\x75\xd5\x6b\x58\xa1\xe8\x57\x8c\x05\x24\x51\x24\x8e\x91\x71\x01\x28\xb8\x0c\xbd\xe9\x33\xe8\xb8\x64\x0f\xf1\xbb\x7b\xe3\x43\x13\x84\x1e\x5f\xfa\x84\x74\x4d\xf1\x8d\x9c\x07\xc4\x5a\x65\x52\xc0\x39\x28\x82\xd0\xe8\xa1\x3a\xf5\xbc\xdf\x63\xa8\xda\xe0\xf0\x8a\x0b\x99\x6b\x47\x3e\x25\x67\xd7\xc6\xe5\x5c\xad\x47\xea\x57\xb0\xbe\xcc\x6d\x46\x91\xe0\x26\x44\x82\x3c\x87\x59\xc3\xc1\x19\xfe\x3c\x44\xe8\x33\xad\x7b\xbf\x96\x0e\x91\xa6\x32\x03\xb4\x5b\xd1\xa7\x96\x66\x88\xe6\xd4\x4d\xab\x84\x9a\x30\x21\x9c\x7d\xcd\x03\x64\x39\x0b\xdb\xd6\xd3\x6e\x79\xa6\x49\xa0\xc4\xc7\xd4\x13\x02\x3a\x22\x1c\x67\xa4\x6e\xe9\x8d\x0f\x1f\x09\x47\x8c\x16\x7d\xf0\xf5\xf4\x07\x1e\x55\x16\x5a\xbe\x6b\x8e\x64\x73\xf5\x19\xc5\x62\x13\xe1\x10\x4a\x17\xb8\x5d\x3c\x8e\xe0\x16\xfd\x8d\xae\xb4\xea\xce\xfa\xd5\xeb\xb2\xec\xe0\x41\x23\xa2\x42\x77\xc8\x98\x88\xda\x23\x92\x47\x2d\xcb\x16\x8d\xa0\x61\x06\xe7\x0d\xff\x5e\x67\x39\x0f\x88\x98\x45\x7f\x59\x7e\xaf\xd0\xdb\x72\x8f\x29\xbf\x2d\xb2\xae\xc7\x80\x6e\xc6\x14\x2c\xe8\xcf\xb0\xc7\xba\x8b\x22\x65\x84\xa4\x95\x08\x4c\x69\x9e\x28\xc3\x15\xaf\xe8\xfb\x8e\xc8\xf4\x55\xda\xdb\x8e\xd6\x2d\xbb\x5a\xeb\xb5\x87\xe6\x7e\xd1\x09\xc4\x53\xba\xa8\xe2\x69\xfd\x91\xbe\xc9\xf3\xe3\x33\xe5\x8b\xa0\x54\x0c\x4e\x41\x9c\x75\x5b\x26\x3a\x01\xcf\x9e\xbc\x40\x01\x3c\xdb\x82\xe9\x51\xa6\x5f\xe5\xb1\x8a\x5f\x79\x9a\x07\x3a\xc8\x54\x7a\x8c\xe7\xab\x62\x07\xd2\x44\x79\x11\xcf\xf1\xe0\x57\x28\xcc\xf4\x55\xea\xdb\x62\x33\x4f\xf3\x56\x9e\xad\x7e\xd8\x44\x79\xac\x91\x08\xc9\x5f\x5e\x66\x3b\x27\xbd\x88\xff\xbe\xae\x71\xaf\x1c\x6f\x6b\x02\x8d\x06\x69\x99\x57\x26\xb5\xc5\x80\xbf\x51\xc5\xbf\x2f\x23\x6c\x8a\xa6\xdb\x1e\xfe\x26\xf0\x0c\xd3\xa9\x2d\xe6\xe3\xff\x5c\xb7\x6e\xf5\x9f\x27\xeb\xaa\x06\xe9\x42\xdd\xea\x06\xc9\x38\x7b\xc5\x2c\x88\x22\x18\x89\x99\x64\x1e\xbd\x89\xb3\x5d\xdb\xde\xb6\x73\x02\x47\x78\x91\x37\x8c\xfb\x34\xd1\xd3\x1c\x4d\x09\x22\x54\xbf\xf9\xf2\x34\x5f\x55\x74\xd2\xb5\x90\x61\xd4\x0a\x9a\xe3\x55\x80\xbe\x84\x17\x98\xc9\xe8\x70\xf6\x4f\x84\xe6\x48\xb8\x2d\xf3\x74\xa8\x02\xfe\xd9\xa4\x07\x2c\x30\xa5\x89\x96\x15\xbe\xc2\x4c\x60\xdf\xb9\x44\xcb\x97\xb0\xfb\x93\xb5\x5f\xc5\x56\x3e\xaf\x60\x93\x07\xda\xd4\x42\x9a\x9e\xf2\x34\x6f\x63\x59\x66\xa8\x77\x9c\xf4\xf0\xa6\xb9\x9b\xbe\xb2\x9b\x16\xcc\xc1\x9f\x72\xea\x5d\x01\x8b\xfb\x5c\xf2\xdc\x5f\xf7\x3e\x47\x3c\x57\x79\xd1\x02\x6c\x5d\x15\x19\x96\x82\xd6\x5a\x82\xbc\xed\x15\x37\x26\x1c\xdd\x15\xc5\x1e\xa2\x96\xd7\x1f\xbc\x42\xdf\xec\xc3\x24\xf6\x6f\x11\xc0\xf5\x76\xe2\x89\xae\xd6\x17\xa9\x8f\x1d\x81\x10\x56\x9d\x9f\x7b\x40\x9c\x77\x09\x8e\x80\x21\xd5\xbb\x2e\xdf\xb0\x7f\xc8\xc8\x7d\xb7\xe7\x8d\x4a\x73\x0c\xd9\x6c\x40\x1d\x33\xaf\x6f\xd9\xc6\x1d\x7d\x84\x4d\xf8\x5e\xbf\xde\xef\xb7\xef\x65\x72\xe7\xe6\x0f\x2d\xe4\x99\xdb\x4d\x6c\x1d\xf9\x47\xb4\xdb\x6e\xa4\x60\xe5\x18\xc6\x16\x99\xa5\x4b\xf9\x12\xb5\x77\xdc\xfd\xa6\xce\x41\x05\x0b\xc4\xcf\x60\x68\x6e\x39\xac\xf2\xf4\x56\x88\x40\xb1\xa6\x75\xc8\x42\xc3\xe4\x47\xd9\x74\x15\x6e\xc8\x6d\xdd\xd5\xe6\x1e\x13\x1d\x36\xec\x0a\x5b\x98\x45\x9f\x36\xaf\x15\x04\x3f\x8e\x28\x1a\x5e\x36\xf4\x91\xf2\xeb\xbd\x7d\x67\xc3\x75\x28\xff\x42\xe9\x12\xba\xc6\x9a\x5a\x41\xb0\xeb\x7c\x8a\x4e\x21\xe8\x58\xec\x25\x22\x3d\x23\x09\x18\x92\x10\x1e\xbb\x85\x30\x34\xb9\xc2\xe6\xa3\x0f\x72\x3a\x22\xa7\x39\x82\x18\xc1\x67\xaa\x2e\x17\x3a\xba\x24\x51\x2e\xfd\xd1\x5f\x5b\xf2\xb5\xd5\x91\x63\xb7\x2c\xe4\x09\x65\x98\x05\xbd\xde\xfd\x4e\x06\xa2\x3c\x13\xa9\xb5\x7e\x14\x98\xc7\x45\x00\x75\x8c\x49\xf4\xf8\xed\xe9\x29\x1c\xa9\x5b\xc7\xfd\xd2\xfc\x9b\xec\x5f\xa8\x87\x8d\xbe\xa9\xf6\xbd\x3a\x54\xef\xeb\x3d\x4e\x7e\xde\x01\x3a\x07\x71\x80\xc4\xe7\x3c\x86\xb1\xae\x8d\x3f\x1d\x3e\x0a\x58\xfe\xcc\x1a\x7d\xee\xa1\x8b\x91\x09\x04\x23\x4f\xf2\x56\x5a\x3a\x2b\xc7\x87\xef\xbf\xbd\x79\x06\x3c\xf1\x42\xcd\x73\x58\xc8\x42\x98\x95\x74\xbf\x32\x87\x4f\x65\x8a\x2c\x3c\x65\x1e\xcb\x6c\x8c\xb4\x03\x06\xcf\x4c\xb7\x8b\x03\x34\x4c\xdf\x41\xb8\x07\xd5\x6e\x34\x62\x61\xb9\x88\x30\x0d\x9a\xe2\xca\x9c\xfc\xcc\x54\xc3\x05\x07\xf4\x38\xe9\xd2\xda\xea\xe8\xb4\x2c\x19\xfe\x44\x2a\xe0\xa4\xcf\xd4\xbe\x42\xe9\xcc\xe6\x5d\x41\x33\x97\x5d\xb4\x45\x24\x80\xde\x73\x85\x7d\xef\xb6\xcd\x5b\x64\x55\x72\x83\xb6\xc3\xfe\x5c\xf4\xed\x35\xd8\x47\x4c\x26\x49\x60\x39\x02\x0a\x49\x09\xa1\x85\xeb\x23\x80\x82\xaa\x60\xd3\x9e\x65\xd8\x76\x0e\x93\x4b\x5f\x53\x5a\x57\xf4\x9a\x89\xf2\xa0\x55\xa8\x9e\x47\x10\x47\x71\xe0\xe1\x77\x6f\xdf\xc8\xda\xe5\xcb\x49\x81\x5c\x38\x6f\xda\x9a\x7e\x3f\xee\x89\xfb\xaa\x35\x23\xe1\xa0\xae\x70\x1f\xb3\x5c\xeb\x10\x68\x2a\x82\x8c\xb5\x7d\x2e\x92\x98\x3b\xec\x9f\xa7\xb4\x21\x07\x8a\xc9\xe5\x61\xb1\x53\xf7\xaa\xaf\x15\x4d\x56\x60\xdc\x67\x08\xaf\x6f\x09\x67\xb2\x40\xd4\xc7\x73\x01\xa9\x33\xc1\x5b\xc1\x44\x4d\x0c\x47\x44\x9a\xf6\x70\xe0\x12\xd4\xf6\x94\x7a\x92\x30\x3e\x27\x68\xea\xe5\x09\xc7\xd3\x77\xe2\xca\x86\x59\xec\x91\x2e\x99\xf1\x7a\x54\xc5\x68\x67\x97\x85\x36\xef\x64\x32\xdf\xf0\x87\x03\x59\xa6\x2e\xe5\x34\xa6\x19\xa3\xfd\xd1\xb5\xc8\x08\x90\x02\x93\x55\xf9\x4b\x94\xc9\x08\xfa\x75\x12\x86\x5d\x96\x96\x26\x87\xae\x99\x2b\x60\xfb\xd3\x42\x35\xab\x1b\xd4\xb3\xe6\xcf\x13\x73\xd1\x73\xf1\x49\x7a\x20\xb7\x2f\x60\x90\x60\xbc\x1b\xf9\x0b\x1e\xfb\xee\x31\x8b\xf7\xfb\x90\x51\xcb\xa2\x0b\x8d\x09\xdd\xf8\x07\xc1\x9f\xfd\x40\x19\x20\x14\xe5\xe9\xe4\xb2\x8b\x1f\xfe\x9a\xc8\x83\x7a\xb8\x74\x60\x12\x70\x89\x0a\x23\x32\x43\x5b\x40\x35\x25\xd6\x9f\xf3\xe5\x8e\xe2\x19\x0e\x29\xba\x71\xa2\xf3\xf5\x3c\x61\x40\x71\xd7\x4b\x07\x39\x9a\xed\x9e\xc3\x2b\xd8\x84\xcd\x90\x74\xb0\x41\x35\x15\x51\xcc\x79\x2b\x8b\x56\xe5\x4b\x9b\x77\x40\xd3\x42\xf7\x30\x08\xc9\x8d\x27\x05\x3e\x4a\x74\x46\x7c\x25\x59\x32\xe6\xde\x5b\xb9\xc8\x32\xc3\x87\xcd\xa0\x20\x29\xea\x1e\x13\xa6\x1b\x10\xe5\x3e\x4f\x21\x4b\x6b\xa6\xd8\xb8\x9f\xe7\x1a\x6d\x23\x15\xcc\x8f\x83\x77\xcd\xa5\x06\x06\xee\x3e\xbe\x17\xab\xe0\xbd\xf0\xbc\x41\xc1\xb3\xc7\xa7\xa0\x8d\xc0\x47\xc4\xe6\x13\x94\x06\xed\xd2\x5c\x51\xaf\x3b\x73\xa8\x86\x87\xc9\x13\xcd\x79\xf6\x6a\xe6\x5c\xf2\xe4\x11\xe4\x73\x8a\x4d\xc1\xcc\x97\xeb\x43\xd3\xb0\x71\x78\xda\x7c\x5a\x36\xe8\xb1\x4a\x66\x48\xd6\x7f\x89\x06\xf9\x09\xe0\x70\xcf\x17\x0c\x1a\xb4\xc3\x04\xea\x4b\x11\x12\x8d\x6d\x6e\x1f\x68\x50\x90\x79\x39\xc7\x5b\x80\x84\x82\x12\x99\xa8\x0c\xd2\xe2\x05\xa8\x3a\x67\xf2\xa2\x75\xb7\xa4\x07\xd8\x44\x44\xa6\x3f\x35\xf9\xc3\xe6\x84\xc9\x73\xa2\x0e\x7e\x8a\x69\x30\xd6\x6d\x47\x13\xf8\x41\x1a\x54\x28\x92\x6f\x71\xef\x94\xe1\xd3\xa3\x00\x86\x22\x80\x14\x4f\x22\xe9\xad\x3c\x4f\x2f\xc0\xb5\xa1\x78\x02\xc5\x0e\x64\xea\xa3\xfc\xcd\x3b\x31\xe6\xa2\x68\x6c\x3b\x1d\x30\xe0\x78\xee\x9d\x08\x1e\xf0\x6d\x53\xdb\x63\xe5\x71\xc8\x04\x8e\x6f\x6f\xfd\xf9\x1d\x87\xb3\xa6\xd7\x16\xb6\x4a\x6d\xda\xbf\x7b\xb6\xfd\x8f\x19\xf2\x14\x51\x07\x6c\x55\xd0\x6c\x33\x01\xca\x2b\x7b\x3b\x9e\x1a\xdb\x62\x20\xed\xdf\xe9\x3f\x30\x79\xbe\xa9\xc7\xa6\x79\xcc\xa0\xb6\x28\x8f\xb1\x63\x9e\xd3\x81\x68\x89\xa7\x1d\x63\x13\xb3\x00\xdf\xc2\x66\x83\xa8\x8f\x05\xb2\x3c\xa0\xf0\xb2\x1a\x4d\x3b\x0c\x54\x41\x11\x47\x07\x14\x89\x99\xff\xb9\x97\x3f\xac\x07\x72\x4e\xff\x33\x1d\xec\xf6\x85\x71\x98\xe7\xa1\x13\x82\xf3\x64\xba\x38\x67\x39\x10\x9e\xfb\x6a\x38\xe9\x4f\x95\x82\xab\xdf\x44\x38\x53\xd9\x18\x25\x95\xf5\x2d\xfa\xa2\xc6\x46\x7e\x3f\x1d\x10\x87\xcd\xcd\x25\x22\x82\xb3\x6e\x28\xc2\x63\xdf\xfd\x93\x0e\x61\xa7\xf4\xd2\xc7\x9f\x65\x7c\x50\x35\xa7\x24\xfc\xee\xcd\x53\x36\x47\x8b\x9d\x5f\x1a\xfe\xa3\x5f\xf7\xd8\x22\xab\x8e\xc2\x1b\x14\x3f\xa7\x64\x0e\x0a\x76\xb7\x36\x89\x9f\x04\xdf\x50\xf6\x20\x9b\x0a\x46\x0a\xd3\x53\xa9\x4a\xc0\x78\x0b\xda\x8f\xbb\x17\xaf\x85\xbf\x91\x9e\x79\x24\x56\x2a\x90\x48\x5a\xd5\xc8\xa7\xd4\x53\x83\xeb\x6e\xc2\x46\xda\x68\x17\x70\xda\x4c\x06\x0c\xf1\x91\xe8\xbc\xe9\xa5\x3d\x39\x6d\xfa\x4c\x1d\x47\x42\xbd\x27\x99\x19\xfe\xa1\x13\xfb\x4d\xa3\xc3\x02\xf8\xed\x60\x6a\x13\xa8\x0a\x6e\x5c\x10\x38\xb4\x5f\x2b\xf1\x4e\x9a\x29\xe4\x7a\xb8\xe7\x8d\x60\x93\xfb\xad\xc5\x5e\x6c\x62\xc9\x48\xb2\x8d\x5c\x0a\xa4\x8c\x42\xc9\x3e\xb8\xce\x4f\xed\x24\xb8\x46\xc1\xe2\xb9\xfc\xb4\xe0\xf4\xca\xe5\x27\xec\xd2\x47\x79\x30\x46\x44\xc0\x84\xb4\x4e\x73\x1b\xcd\x3d\x14\xfc\x97\x02\xbf\xfd\x37\x87\x84\x75\x93\x2d\xe9\x87\x44\x3f\xf1\xaf\xf8\x4b\x11\x58\x1e\x9a\xb7\xae\x98\x87\xa3\x17\xf8\xeb\x7e\x2a\x27\x49\xcb\x82\x91\xbc\x43\x1a\x44\x26\x7d\xf4\xb4\x78\xaa\x9f\x30\x1c\x50\x7e\x02\xee\x44\x7a\xe7\xc8\x9a\x23\xed\x6d\xd8\xd9\x2e\xd3\xfd\x6c\xa8\xf6\x75\x78\x74\xd6\x91\xb8\x0f\xe4\xfc\x51\x7c\xac\xd8\x62\x69\x72\x70\xc1\xd7\xca\x41\x83\x91\x25\x75\x57\xe7\xe3\x18\x4a\xf0\x06\x8c\x2c\x5e\x68\xcd\x09\x65\xe6\xf7\xc5\x76\xf4\x42\x1b\xde\x6b\xcc\xfa\xad\xc1\xb2\x4c\xe7\xd7\x8e\x13\x2f\xab\xcd\x12\x2e\x2c\xf8\xe4\xad\x1a\xa4\x17\xea\xa7\xa4\x1f\x77\x8b\xc8\x62\x71\x90\x34\x8b\xa8\x0d\xfc\xf3\x49\xed\x47\xf1\x26\x16\xc5\xe5\x8c\x7c\xe0\x22\xa1\xe5\xee\xd8\x15\xb8\xd0\x51\x57\xf2\xef\xcf\xba\x87\x73\xe8\x92\x04\x1c\x3a\xa4\x11\xb6\xf7\xec\x33\xec\x3a\xca\x7c\xb6\x21\x43\xea\xe4\xbf\x73\xdd\xf9\x1e\x32\xf0\xbe\xef\x04\x48\xad\x3d\x31\xab\x8a\x3e\x0b\x20\xd3\xe1\xb8\xec\x46\xb3\x4b\x73\x5e\xfd\x64\xbc\xf8\x62\x08\x18\x25\xfd\x79\x97\x60\xce\x2d\xfb\x74\x22\x85\x44\x95\x9f\x99\xc4\xd6\x81\xef\xa1\xb1\x0c\x61\xe8\xb9\x1c\x32\xf2\xd3\xc4\x72\xef\xe6\xc8\x64\x3f\x89\xd7\xeb\x11\x3d\x17\x3d\x66\x62\xfc\xf9\x6d\x3c\xf9\x06\x62\xc6\x5f\xbd\x7d\xd7\x49\xb4\x91\x1a\x69\x11\xe4\x7b\xe1\xfc\xd0\x86\xb2\x4a\x65\x90\x57\xba\x79\x3b\xd3\x28\xbb\x75\x03\x74\x3b\xbf\xfe\xe3\x7e\x34\x78\xc1\x48\xe4\x71\x3f\x52\x63\x40\x4e\xa5\x58\xe5\x3c\x2b\xfe\x6a\x49\x54\x96\x7d\xc6\x57\x91\xac\xca\x6a\x89\xc1\x13\x25\x73\x1e\x56\xc3\x78\xb0\x98\xac\x73\xa8\xab\x1e\x56\x1b\x79\x47\x8e\x00\xbc\xc5\xfa\xa3\x0b\x2f\xa0\xb7\x1f\xf7\x2c\xd4\x66\xa7\x8f\xb5\xcc\x78\xa6\x3e\xfa\x69\x28\xd8\xd6\xc6\x6d\xda\xb7\x7c\x69\x3d\x7a\x9b\x8e\xc9\x15\x65\xb0\x93\x60\x94\xbf\xec\xb7\x29\x5d\x9a\xf4\x38\x20\x83\xa1\xd7\xa3\x05\x9e\x06\x25\xe7\xc9\x8a\xdd\x07\x08\x76\x07\x0c\xb1\x10\xea\x09\x43\x43\x60\xa3\xda\xcb\x6f\x23\x73\x07\xd0\x35\x0c\x19\xdc\x11\x4f\xe6\x08\xec\x5b\x6b\x59\x19\x6d\x6f\xf6\x41\x79\x33\xe1\x57\x61\xf9\xea\x35\x3e\xb6\xc7\x4f\x66\x40\xf8\xe0\xf4\x32\x24\x25\x74\xcf\x0d\xaa\xb2\x38\xa2\xa0\x14\x51\xb5\x67\xb0\x6d\x34\x0f\x21\x02\xaa\x20\x8b\xbd\x68\x99\xd8\xea\x45\x03\x63\xe2\x04\x9b\x76\xb0\xda\x44\x0e\x73\xbc\x02\x0d\x08\x7a\xc0\xac\xc1\x20\x9c\xb8\x25\xa4\xa0\xfd\x40\xbb\x15\x09\x85\x07\x89\x5d\xd7\x42\xcc\x9c\x68\x1c\x32\xa4\x70\x90\xb4\x4c\x54\xc7\x94\xe8\x00\x6d\x18\x3c\x82\x59\x27\xa2\x1a\x85\x16\x84\x60\x89\x31\x0a\xca\x91\x00\x51\x54\xde\x88\xa6\xcd\x27\x54\xd3\x90\x6e\x3b\x9a\x0b\x45\x60\x2c\x56\xf3\x34\xef\xe4\x39\x30\x47\xbf\x68\x8a\x66\x9f\xb7\x98\x68\xda\x8a\x5d\xb9\x14\x91\x67\x21\xbe\xa9\x6d\x4c\x5c\xed\xcc\x03\xca\x1f\x4d\xb6\xad\x6e\x81\xc9\xcb\x39\x83\xf3\x81\xa2\xd4\xd6\x04\x36\xaf\xf8\x83\x56\x4c\x05\x69\xd1\xe4\x29\x40\x30\x14\x55\x50\xcc\xa1\x7e\x2d\x06\x78\x8a\x18\x79\x46\x02\x84\xbf\xe1\xd4\x22\x79\xc0\x34\xda\xa9\xb5\x26\xf0\x5a\x93\x67\xbf\x16\x33\x34\xa4\xa7\x88\xe3\xdf\xb4\xac\xc2\x03\x03\x9f\x36\x28\x9e\x36\x76\xb2\x84\x44\x1a\xea\xca\xd3\xd8\x8a\x19\x9a\xf7\x2f\x0e\xeb\x52\x26\xf6\x49\xa4\xee\xe3\x0b\xbe\xb8\x5a\x92\xb8\x5a\x4c\xda\xda\x14\x36\xa5\x89\xc0\x20\xaf\xc5\xfc\x3e\x30\xff\x3a\xfb\x79\x5a\x57\x19\x36\xd5\xef\x93\xf3\x08\x45\x84\x15\x36\x95\x4d\xf5\x1b\x77\x74\xaa\xcc\x62\xd4\x38\xfe\x67\x29\x01\xc3\x73\x43\xff\xe7\x5b\x82\x8b\x6f\x2a\xc6\xa9\xcc\xa2\xbd\x3d\xd0\x0e\xed\x1c\x28\x60\x62\x74\xbe\xe9\xa3\x89\x2a\x7a\x20\xdf\x36\xbd\x98\x3c\x5f\x41\x20\x07\x9e\xf6\x6f\xc5\x8a\xe7\x40\x91\xbc\xdc\x62\xba\x0a\x74\x23\x10\x8b\x53\x41\x6f\x84\x18\xf7\xf4\x5c\x82\x88\x69\xa8\x2c\xa2\x74\x4d\x84\x48\x18\x35\xb1\x85\xf6\x64\x88\x84\x3e\x98\x4f\x85\xfc\xc5\x2e\x9f\xeb\x7e\x12\xca\xa5\xa3\x64\x81\xe9\xc5\xeb\xea\xa8\x8b\xd7\xb6\xcb\x8f\x16\xc6\x24\xf8\xf3\x4a\xc1\x94\x74\xf4\x9b\xf1\xbf\x4f\xaf\x51\x3e\x37\x0c\x19\x27\x7c\xa6\x2c\xc5\x3b\x23\x1b\xea\x42\xfc\x88\xb5\xfd\x75\xa6\x76\x42\x9c\x1d\xc1\x79\xd9\x4c\x4f\x12\x96\x0c\x6f\xdf\x96\x8c\x3c\x9d\x8d\x52\x87\xc4\x24\x72\x5c\xa2\x95\xde\x4e\x06\xa0\xaf\x55\xc5\x41\xab\xfd\xe2\x53\xbf\x0b\x54\x8d\xf4\x05\x30\x92\xca\xa9\xee\xb7\x74\xb4\x0a\xda\xd0\xeb\xb3\x72\x5f\xa0\x9c\xce\x30\x7d\x97\xb2\x70\x32\xdf\x6b\xd5\x24\xda\xc8\xc6\x6d\x29\x38\x49\x62\x59\x68\x81\x36\xc9\x5f\xf2\xbe\x92\x4a\x1b\xa8\x36\x41\x79\x46\x8e\x57\xc7\x8b\x65\xe4\x63\x93\xf0\x3c\x35\xb9\x06\x91\xa6\x28\x31\x92\x47\xc9\xb0\x61\xce\xa4\xbf\x16\xa3\x8c\x21\x7b\xcc\xc7\xef\x67\x64\x84\x0c\xc0\x2f\xa2\x7a\x62\x97\xf5\x95\xf0\x12\x45\x9e\x70\x0e\xf9\xd8\x52\x2d\x0a\x58\x58\x94\x5a\xbe\xe0\x7b\x90\x7b\x64\xbc\xae\x3e\x27\x97\x8c\x97\x4d\x19\x76\x95\xca\xba\xe0\x01\x05\x21\x02\x1f\x74\x9f\x1a\x07\xce\x61\x12\xf8\xd2\x42\x0f\xd1\x5a\xd5\x47\xea\xda\xea\xbb\x84\xc3\x6e\xec\xd0\x12\xfc\xba\x0e\x8a\xd3\x91\x60\xd1\x21\xc1\xde\xe3\x4d\xa2\x24\x80\x6f\x55\x8a\x6d\x6e\x63\x45\xb3\x51\xb2\x56\x5c\xbd\x8f\x60\xa0\xe7\x04\xd7\x87\x8e\x37\xf1\xa6\x3d\x6b\x37\x2c\xc8\x73\xe0\x52\xd4\xf7\xed\xa7\xf1\x46\x93\x79\x8e\x64\x9f\xd0\x44\xb7\x4b\xd7\xa4\x85\x0c\xf7\x33\x4e\xcf\x66\xa1\xd3\x72\x3f\xff\x25\xe1\x12\x0c\x2b\x55\x61\xf5\x21\xb5\xd7\xcb\x09\xe5\xe9\xb7\x93\x31\x84\xf0\x99\x04\x0b\xfa\x79\x82\x80\xb7\x96\x81\xdf\x4a\xd7\x3b\xee\x73\x35\x7d\x35\x6f\xb1\xda\x22\xb7\xa5\xd4\x60\x95\x72\x72\x0d\x7b\xb4\x56\x80\xe8\x7d\xcf\x04\xa4\x77\x0d\x34\xca\xe9\xe5\xe7\xc1\xd8\x94\x70\x17\xd2\x0a\x5a\x95\x6e\x70\xac\xeb\xbf\x7e\x72\x13\xd4\x72\x70\x53\x7a\x0e\xe5\x25\x50\xf8\x4c\x43\xa5\xbf\x1a\xa7\x95\x1f\xee\xb2\x49\x7c\x0a\x74\xac\xa7\x17\x46\xdb\xe6\xdc\x62\xf9\x96\xfc\x0d\x0b\x3c\xbd\x53\x4e\x34\xa7\x3a\x05\xd4\xcf\xa3\x10\xbc\xd1\x36\xeb\x00\x89\xe9\xa2\xcd\x41\xcb\x7d\x79\xb3\xef\x72\xc9\x6c\xb3\xa0\x81\x14\x0f\x23\xdb\x0f\x2c\x48\xad\x36\xbf\xfd\x1a\x42\xb9\x6d\x8f\xd7\x7c\x23\x63\x06\x2f\xf2\x64\xb5\xfb\x0d\xfa\x74\x06\x8c\xcf\xde\xf2\x11\xb2\xda\x45\xcd\x41\xc9\xa0\x23\x21\x84\x15\xa1\x38\xe7\xd7\xfb\xcf\x6c\xf2\xce\xd1\xae\x9e\x8d\xec\xd7\x2f\xfb\x88\xdd\xd7\xf1\x17\xa8\xd9\x22\xae\x9c\xb3\x65\x14\x0c\x3a\x5a\x5e\xbd\xbf\xd3\x59\xca\xfa\x86\xc5\xe8\x24\x3d\x9e\x8e\x72\xaf\x67\xd2\x67\xb2\x6a\x66\x7f\xcb\x4e\x2c\x59\xab\x2a\xc3\x49\x58\xea\x37\x78\xa8\x11\xed\x62\x4c\x89\x4e\xa0\x0e\x69\x3b\xa4\x7b\xeb\xcf\x46\x73\x88\x8e\x97\xa1\xd4\x9c\xb8\x14\xfb\x86\xc5\x66\x70\x7b\xcc\x47\xb3\x97\xd0\x82\xfc\xe0\x31\x3b\x55\xb1\x95\x29\xf9\xe1\xbe\x67\xf0\x7e\xe4\xcf\xf4\xd2\x52\x42\x32\xc5\xc6\xc9\x62\xd6\x26\x3e\xb5\xac\xba\xf6\x91\x8f\xfe\x41\xda\xd2\x40\x36\xa2\x7d\x3d\x20\x9a\x08\xbe\x66\xe9\x44\x06\x6f\xd7\x9f\x8b\x30\x05\x39\xb4\x3a\x8f\x33\xcb\x02\xe2\x76\xc3\xe9\x7f\xaf\x14\x56\xd0\x33\xff\xa1\xb3\x24\x76\x3d\xbb\xdd\xb4\xdb\x0e\xa7\xf9\xf5\x83\x99\x16\x93\x5d\x89\x27\x35\xc1\xeb\x21\xfd\x44\x80\x93\x57\xaf\x64\xc2\x10\xcb\xcd\xb3\x4e\xee\x0d\x0b\x73\x5a\x39\xca\x73\x38\x5d\x21\x20\xa7\xbb\x6f\x9f\xa6\x18\x13\xe6\x75\xa2\x98\x1f\x1a\xc7\xe7\xfa\x40\xb0\x12\x2f\xa1\x6d\x8a\x52\x1a\x5d\xb4\x7d\x8b\x7f\xad\x7f\x67\xae\xb6\x97\xb3\xb5\xd5\x5a\x12\xf6\x47\xae\x3c\xc7\x03\xae\xa9\x3d\xe0\x8b\xd6\x74\xff\x91\x75\xa5\x18\xb5\x05\xa6\x68\x22\x94\x8a\xb1\xfe\x30\x12\xf4\x37\x82\xf1\x14\xa3\x99\x80\xd0\xe8\xa2\xf5\x5d\xff\x90\x5e\x89\x4e\x7e\x0a\x2c\x8a\xe0\xb9\x3f\xc2\xb6\xa6\x4b\x11\x14\x20\xb1\x95\x8d\x43\x65\x51\x37\x15\x6b\x8a\x3a\x5b\x25\xbc\xc5\x36\xf7\xb4\xc3\x82\x67\xce\x8e\x63\x58\xca\xdc\x09\x44\x83\x7a\x85\x91\x48\xd5\xbf\x53\x75\x97\x80\x62\x40\x2d\x22\xef\x4d\x81\x6b\xe7\xa7\xd1\x4e\x14\x5b\xfd\x70\x73\xb5\xab\xf1\xd5\x41\x53\xb7\x3a\xe0\xdf\xf1\xb4\xf1\xbf\xc8\x80\x2a\x4f\xb1\xae\x4c\x3e\xf8\x39\x89\xe0\x12\x90\xa9\xb4\x22\x0f\xe4\x27\xf1\xdf\xa6\xf9\x63\x66\x6e\xca\x20\x0d\xd2\x28\x4f\xb5\x4a\x43\x01\xa4\x17\xf6\x36\x3e\x01\xaf\x48\x5c\x1b\x02\x7f\x6a\x62\x67\x10\x28\x5c\x1c\xd2\x20\x45\xfc\x77\xe5\x3c\x9a\xa5\x59\x87\x15\x49\x0d\x92\xf8\x80\x12\xbe\xfd\x30\x9e\x54\x78\x27\x69\x97\xde\x8a\x86\x3e\x44\xb7\xbc\x16\x34\xbb\xff\x8b\x84\x02\x64\x19\x7c\x19\x74\x27\x47\x1d\xfd\xbe\xc1\x42\xa0\xb0\x4e\xbb\xf0\x41\x9f\xb3\xdb\xcf\xf3\x90\x7e\xf6\xe8\xc0\x3b\x54\x4b\xa8\x2e\xdf\xb7\x4f\x2f\x2b\x8a\x63\xa1\xd8\x71\xe1\xf3\x82\x1d\x41\xae\x4f\x18\x2f\x2b\xc7\x4d\x7a\xaf\x2a\x3c\x23\xba\x6e\xed\xeb\xa4\x3f\xfa\x76\x9c\xc3\xbd\x6f\x0b\x2d\xc2\xd9\xfe\xbe\xec\x3e\xaa\x9b\x0c\x72\x54\xec\xfd\x36\xb1\x0f\x0c\xdc\xa3\x6e\x12\xee\xd4\x93\x8b\xa7\x6d\xf4\xd2\x6c\xd2\x07\x53\x81\xb0\x7e\x9d\x63\xd0\x83\x43\x7a\xd2\xc0\x90\xb6\x51\x95\x4f\x01\x2b\x9b\x39\x3e\xb4\xc0\x77\x82\x55\xcf\x98\xe0\x53\x89\xed\xb0\x66\x44\xc9\xab\x3f\x48\x05\x19\x77\xe2\x70\x6c\x05\x3c\x2e\x32\xd8\xfe\x8d\xfb\x89\x4f\xc5\x46\xd1\x2a\x91\x6c\x56\xd2\x3d\xba\xf5\xf4\x55\x9b\x7c\x9d\xb1\x8d\xea\xac\x73\x4a\x87\x23\x63\x3d\xca\x08\xe3\x69\x16\x23\x24\xda\xb9\xa3\x3b\xb4\x09\x48\x1e\x22\x47\x31\xf3\xa3\x44\x87\xd9\xfe\x14\x45\xc6\xe4\xaa\xa5\x08\xef\xd7\x47\xd7\xfc\x5c\x85\xee\x5e\x68\x72\x8e\x1b\xbf\x45\xd3\xce\xe7\xa0\x47\xb5\xe8\x60\xd0\x8c\xe9\x16\xe0\x3e\xcf\x64\xe5\x04\x0c\x4d\x64\x1d\x14\x63\x7b\xce\x7f\xe7\x63\x0e\x1e\x4d\x6d\x7e\x0b\x46\x76\xc5\x9e\xa4\xf8\xa3\x04\x40\x93\x9d\xa5\x13\x2b\xba\x29\x93\x23\x72\x11\x9f\x84\xbe\x59\x67\x30\x19\x52\x9b\xd0\x63\xef\xbd\x63\xaa\xe3\xb3\xe0\xd0\x1b\x90\x49\x12\x47\x73\x4e\x48\x05\x22\x3c\x4c\x10\x2b\x6f\x16\xd2\xc3\x04\x7d\xc8\xf6\xb3\x28\xf6\xbb\xa9\xd1\x7b\xe0\x7c\x98\xdf\x19\xd1\xc6\x84\x47\x79\xdd\x82\xea\x13\x19\xdb\x82\x21\xf0\x11\x81\x27\x82\x11\x8f\xd1\x47\xd0\x62\x01\x8b\x9e\x64\x24\xd2\xc5\x09\xc3\xfa\x7e\x5e\x55\xae\x7e\x4c\x46\x2f\x0f\x36\x8f\xb6\xd0\x43\xa9\x27\xfa\xfa\x85\xaa\x3b\x83\x4c\xa5\x4a\xc2\x79\x10\x7a\xde\x7e\xc9\xbf\x73\xac\x73\x5f\x80\xe4\x91\x8f\x47\x97\xeb\xc9\x4a\x95\xfb\x82\xb9\x4c\x65\xd2\xfa\x4b\x4a\xe9\xaa\xe2\xa6\x93\x2b\xdd\xaa\x45\xd7\x5e\x51\xe2\x43\x9f\x87\xfa\xc4\xcb\x41\xde\xa4\x89\xed\xb2\x34\x1b\xf5\x04\x75\xd3\x40\x41\xa1\x01\x39\x1c\xfe\x77\x93\xfd\x5b\xf7\xab\x94\x98\xb9\x99\x06\xda\x31\x29\x5b\x7e\x6d\x31\xa2\x9e\x64\x33\xf5\xf0\x4a\x7f\xd5\xec\x36\x4b\x87\x9f\xaa\x8b\xae\x34\xb8\xbe\x53\xa8\x4a\x9c\x84\x48\x8a\xc2\x2d\x15\xe7\x8a\xbe\x41\x69\xac\xe7\xfc\xc4\x77\xb6\x74\x89\xe0\x7d\xee\xd5\x0c\x91\xe1\x4c\xaf\x80\xbe\x93\xd0\xcb\x6f\x31\x03\x66\xed\x22\x2f\x5e\x36\xeb\x03\x1f\xa4\x73\x37\x81\xcd\x0a\x39\x60\x33\xf1\xb4\xd7\xa0\x95\x21\xe3\x45\xae\x1e\xc3\x86\x4c\x43\x33\x76\x65\x24\x3c\xdc\xbf\xec\xbb\x47\x45\x99\xf2\x11\x6a\x1d\x13\x16\xcf\xd3\x8b\x45\x69\x56\xc2\x4a\x71\xd3\x04\xa2\x0d\x13\x51\xa6\xfa\x8f\xbe\xb3\x5b\x92\xb9\xab\x35\x34\x7c\xad\x5d\x6d\xe7\xd7\x39\x73\xed\x65\x7d\x63\x8e\x3e\xbe\xc5\x9a\x58\xbf\xbb\xab\xda\x71\xb3\x71\xbf\xd3\x7d\xe2\x81\x38\x57\x82\x8b\xcf\x59\xf3\xc7\xd7\xa9\x84\x20\x25\x81\xef\x11\x3b\x65\xef\x06\xf4\x9d\x21\x62\x4e\x16\xf2\xd9\x10\x44\x11\x5c\xc2\xb1\x71\xe1\x58\xe0\x09\x37\xd4\x54\x23\xbf\x89\x0a\xb1\x0e\x4d\x98\x9f\xdc\xfb\x3d\x48\x5a\x6f\xed\xcb\x17\xa9\x2e\xc0\x8d\xa2\x48\x16\x2a\x0b\x1e\xc9\x2f\xb4\x9e\xd4\xf0\x19\x11\x37\x94\x66\x01\xb2\xb7\x1f\x35\x57\x37\x5f\x82\x9f\x6c\x38\xcd\x61\xca\x59\x93\x67\x64\x4d\xed\x14\x04\x95\xc2\x14\xf7\xe1\x7a\x22\xed\xb3\x75\x05\x66\x11\xc6\x58\x2d\x4c\xe1\x36\x97\x64\xa7\x01\xcc\xa8\xa9\x27\xad\x0b\xd4\x07\x76\x67\xe4\x7b\xa4\x11\x71\x26\x2b\x8f\x89\xe7\x87\x32\x24\xa9\x40\xe5\x17\xa8\x3b\xbb\x26\xb8\x33\x4c\x56\x5d\xa2\xef\x2f\x17\x86\x53\x1e\x41\x8e\xee\xa7\x04\x24\x12\x19\xbd\x20\x7c\x91\x9a\x95\xbe\xac\x48\xfe\xec\x67\xc6\x77\x31\x5e\x38\xe8\x78\x87\xb3\xf6\xfb\xc5\x7c\x1e\x19\x50\xc1\xa9\x62\x2b\x49\x90\x3d\xbd\xd6\x3a\x65\xb5\xce\xb6\xd3\x02\xa4\xa6\xb6\xff\xd2\x5c\x85\xad\xad\x69\x83\x40\xce\x36\x14\xc1\x03\xd1\x9a\x3c\x1f\xfc\xf5\x79\x40\xe1\xff\x28\x1c\xd2\x3c\x45\xa9\x18\x1c\xfa\xe3\x78\x46\xa8\x9b\xbf\x84\xdb\x53\x94\x9a\x5e\x80\xd9\x34\x53\xfc\x87\x34\x9a\xc9\x03\xe5\x6c\x7b\xe6\x9f\x10\xe8\x00\x0a\x47\x1b\x02\x9c\x35\x9d\xbb\x35\x31\xd8\x28\x16\x4d\xb4\xd8\xce\x56\xec\x3f\xff\xb5\xaa\xd7\x9a\x6d\x81\x6b\x3a\x8c\x84\x2d\x0e\xfe\x4b\xb6\x43\x69\x36\xb8\xa1\xe2\xa6\xdb\xc9\x77\x4e\x14\x8b\x8a\x17\x85\x84\x97\xaf\xe2\x93\xfc\x5b\x10\xe4\x29\xc6\x49\x4f\xcb\xa0\x58\xb0\xe9\x05\xa8\xa6\x2e\x0e\x15\x63\x49\xe6\x6c\x79\x00\x0a\x12\x41\x61\x78\x15\x94\xb3\x35\x6d\xd1\x44\x65\xf8\x04\x32\xcf\x54\xea\x56\xd4\xff\xd4\x4a\x9a\xd8\xba\x7d\xa7\x4b\x09\x3c\xb1\xb7\xa6\x3f\x9b\x11\x03\xaf\xec\xed\x68\xa2\x7c\xb6\xfe\xf7\x73\x03\x81\xb1\xaa\x89\x5d\xb8\x15\xf5\x25\x5d\x24\x2c\xd8\xa0\x0f\x19\x34\x2b\xfb\xac\xe3\x2b\x63\xe0\xbb\xfa\x1f\x26\x1c\xd1\x0f\xcc\xc0\x8a\xdf\xec\xc6\x80\x89\x64\x7b\xcf\x9b\x48\xd7\xa1\x29\xab\xed\x8f\x88\xa6\x0c\x9f\xc5\xc1\x0c\x64\x1d\xbe\xe5\x96\xd8\x46\xdd\xaf\x5a\xdb\x53\xf5\xcf\xf4\x85\x96\xe7\xb4\x80\x83\xe6\xcb\x32\xcf\xd5\x24\x51\x2f\xba\xf6\x4c\x62\xe6\x5d\x41\xfe\x96\x67\xc9\xc6\x66\x98\x67\x69\x90\x2f\xfb\x75\xd5\x47\x41\xec\x66\x70\xb4\xe1\xd8\xc5\x21\xab\x8f\x90\x49\x09\xbb\xe9\xe2\xd8\x51\x0a\x75\x9a\x2f\x7b\x44\xe7\x7e\x50\x75\xd2\xdf\xc5\x31\xd6\xeb\x33\xc6\x3c\xa9\x1e\x13\x49\x47\x7d\xc7\xf6\xfb\xf9\xd8\x89\x3a\x46\xad\x33\x0d\xb0\x38\xae\x34\x43\x1b\xb9\x16\x5d\x3a\xd9\x05\xd8\x93\xc8\xb1\x5e\x7f\xba\xce\x17\xba\x37\x94\xbf\xf1\x4c\x7e\x81\xd2\x1c\xf8\xca\x3a\xc8\x9e\xd6\x58\x9a\x78\xe4\x58\xfb\x6d\x9b\x7b\xaf\xfd\x99\x52\x02\x27\xca\xd2\x66\x72\xe7\x26\x43\xf4\xee\xc3\x7b\x44\x56\x61\xbb\x64\x14\x60\xe6\xa0\xf8\xe9\xbb\x33\xda\xd6\x50\x3f\x51\x8f\xb3\x5f\x1a\xd8\x68\x8c\xae\x96\xb1\x92\xcc\xa7\x91\x77\x1d\x2e\x1e\x61\x0a\xfb\xb3\xd6\x1c\x0a\xb7\x3a\x8a\xfa\xf4\x7e\xb0\xe7\xec\xed\x06\x99\xb0\x24\x72\x7e\x97\xd8\x15\x3b\xa8\x57\x42\xcc\x3a\x26\xb4\xb3\xe5\x8e\xf3\x49\x78\x0d\x63\x1f\xa6\x00\xd7\x8d\xc3\xab\xca\x05\xc3\x76\xf9\xd5\xf1\xec\x03\xf1\x31\xd3\x8a\x22\x03\x0a\x5e\x2b\xcc\x50\xa1\xa2\xd1\xba\xaf\xab\xa3\x2a\xb1\x4e\xf0\x45\x9f\x8b\x3e\xab\x58\x91\xe9\xbc\x62\xce\xba\x9d\xae\x6e\xda\x5e\xb8\x6e\x6f\x69\xe0\x05\x41\xe1\xb6\x92\xf5\x19\x12\x22\x18\x8e\x24\x85\xcd\x18\xa1\x74\x28\xfa\x0a\x3d\xe3\x57\x0f\xb5\x20\x06\xcb\xf9\xe7\x74\x6f\xb9\x08\xd5\x53\xc6\xac\x46\x56\xde\x93\xa3\x55\xe2\x96\x9c\xf2\xfc\xc3\x90\xa8\x74\x74\xfb\xd4\xdd\x6d\x5a\xd3\x54\x5c\x58\x26\x9f\x9b\x52\x6c\x38\x94\xd1\x0d\x34\xa8\x42\x65\x82\x8e\x61\x56\x44\x77\x70\xf8\x43\x0c\xc9\x62\xf7\x91\x9d\x56\xd0\x61\xb4\xc7\x20\x57\xba\xcc\xe2\x9f\x67\x39\x39\xe5\x5c\xe9\x05\x1a\x2f\x92\xc0\xf6\x57\xa6\xda\x75\xfc\x8d\x84\x7f\x68\xa5\xff\x49\xf6\xef\x5f\xd8\xca\x68\xed\xc9\xcf\x6b\xaf\xd0\xd5\x7f\x97\xa0\xdf\x64\xf5\xa1\x13\xd4\xa6\xf5\xee\x88\xf1\x74\x31\x35\xf8\x54\xc6\x4f\x3c\x8a\x66\x31\x1c\x4b\xd1\x49\x2b\xc2\x96\xc1\xae\x1c\x11\xde\x85\xaa\x23\x99\x70\x44\x27\xef\xa7\x4a\xf0\x0c\xf9\xf1\x57\x07\xb5\xa5\x64\x7d\x17\x81\xdc\x92\xeb\x7b\x31\x7d\x62\x3c\xf1\xbc\xeb\xc7\x2c\x1c\xf8\xca\xfb\x88\xc2\x3f\x9a\x28\x19\xa6\xe7\x61\xb9\x76\xe6\x0e\xe8\xb4\x88\x92\xf4\xaa\xe3\xde\x65\x26\xe4\xa1\x85\x97\xcf\xb1\x56\x4e\x2d\x07\xcc\xcf\x32\x32\x3f\x45\x83\x99\xa8\x79\xa0\x06\xbf\x06\x15\x32\xe7\x17\x3f\x65\xb1\x7d\xda\x3d\x08\x5e\xa7\x41\xc1\x36\x5d\x07\x22\x5b\xc2\x7b\x65\xb0\x97\x9c\xb0\xa1\x2a\x58\xbd\xad\xb9\x34\x74\x9d\x08\xff\x38\xf9\x76\x72\x71\x47\x61\xd1\xd3\x9b\x6e\xb3\x4a\xac\x23\xc5\xaa\xfc\x24\xd3\x31\xab\xaa\x9b\xa6\x8b\x23\x05\xe9\x59\x6f\x83\x3d\xbb\xe3\x8e\xb7\xc8\x32\xa7\x1a\x2d\x20\xa9\x87\xe9\x3a\xc4\xaf\x03\x8b\xd9\xb3\x6c\xd3\x92\x1a\x19\x24\xb4\x6a\xc1\x31\x11\x68\xf6\x97\x67\x27\xa7\x7e\x32\xad\x6a\x73\x79\xef\x8b\x5d\xe6\x8f\xc5\xac\x87\x10\x1d\x3a\x82\x90\x66\x11\x83\xab\x1d\xdf\xfa\xb2\x0e\xcb\x6a\xe6\xcc\x75\xc5\x08\x93\xef\x18\x86\x02\x5f\xf2\xe3\x18\x2b\xd1\x2f\x2f\x7a\xac\x08\xfa\xc6\x5a\xbf\xfe\xec\x3a\x8b\x9f\xf2\xf4\xde\x80\x1c\x4c\x9f\x1c\xe4\xc8\x57\xad\xab\x65\x27\xa6\x63\x0f\xf7\xa6\x1d\xe3\x0b\x0d\x1c\x70\x5f\x86\x6c\x46\xda\x24\x86\xa6\x3d\xdc\x26\x28\x7e\x07\x9a\x07\x0f\xe3\x56\x61\xd7\xae\xfa\x9a\xa8\x99\x12\x5b\x1c\x96\x9f\x97\x53\xdc\x7a\xe8\xb7\x32\x67\x26\x7a\xea\xdc\xb7\xc3\x6f\x2b\xed\xc4\x48\x0b\xeb\xb1\x38\x93\x81\x9a\xa4\x5a\xf2\x92\x28\xca\xb1\x80\x12\xd1\x35\x7c\xde\x80\x30\xa6\x46\xf6\x47\xc1\xc9\xf2\x97\x80\x9f\x6e\xa8\xb2\x9b\x68\x20\x86\x64\x3f\xd9\x60\xcf\xd1\x95\xd5\xd7\xc1\xbc\x5e\x69\xeb\x5a\x11\x7c\x1b\x6f\xee\x41\xb6\x39\x06\x9d\x72\xd8\x40\x5b\x9c\xbb\x3a\xd0\xf6\xa6\x3a\xf6\x9b\xd0\x42\xf1\xf1\x08\x1e\x8b\xa6\x98\x48\x36\xf4\xd3\x82\xc5\x84\xc7\xb0\xf7\x03\x3f\x32\xff\x50\x73\xa1\xcd\x88\x40\x80\x9e\x6f\x33\xb4\xc0\x9b\xae\x88\xe3\x8b\x5e\xe7\xce\x1e\x16\x9d\xb5\x20\xbd\x88\xb2\x81\x63\x5a\xf0\xcd\xf9\xb9\xda\xca\x76\x8f\x90\x22\x50\xb4\x73\x0c\x1d\xb3\x3e\xd4\x43\x81\xbb\x6a\x94\x29\x4d\x61\x2b\x99\xf4\x57\x5e\xa5\x17\x53\x1f\x9c\x64\x43\x0e\x85\x17\x12\x75\x38\x83\x42\x53\xf9\x5f\x62\x54\x09\x50\x79\xbe\x69\x75\xde\x9a\x14\xa5\x9d\x8a\x1c\xb0\xcd\xbf\x4d\x87\x35\xfd\xfe\xcc\x06\xfb\x3f\x7a\xd3\xfe\x9d\xff\x63\x19\x3c\xd3\xa8\x18\x3b\xa6\x15\x0d\x52\x00\xcf\xff\x5b\xab\x94\xf6\xdf\xe7\xaa\x50\x8c\x8a\x9d\x3c\xc5\xd4\x3d\xc6\x53\xcc\x67\x3a\x14\x20\xea\x6c\x8d\xfe\x69\x08\xcf\x56\x0a\x1f\x4b\x52\x6c\xb9\xa3\xa9\x4b\xca\x30\x66\x6c\x65\xdf\x3e\x78\xad\x39\x0a\x87\x3e\xb5\x9d\x4b\xf7\xec\xf9\xcb\xeb\xdb\x61\xc0\xaa\x22\x61\xd3\x57\xa9\x12\xa5\xe2\x26\xca\xeb\xf2\x0f\xad\xbc\x16\xd3\xf4\x15\xc7\xeb\xf1\x1c\x25\x15\x78\xa0\x51\xd4\x55\xd4\x0b\x32\x0f\x8c\x62\x6f\xdd\x36\xfe\x24\xc2\x9f\x47\x6a\x1a\x53\x1c\xad\x09\x08\x75\x8b\x4e\x3f\xcf\x67\xeb\x91\xe7\x09\x88\xb3\x4c\x9e\x05\xbc\xa0\x48\x91\x2e\x22\x13\xa0\xbc\x68\x36\x12\x4f\x01\x11\x2c\x90\xed\xa6\x9b\x87\x8a\x84\xc6\xc3\xea\xb3\x70\x13\x20\x5e\xaf\x91\xb2\x3f\x13\x39\x86\xc7\x44\xa2\xde\x3c\x5c\x10\x54\x23\xed\xd7\x39\x0a\xe6\x03\x17\xe8\x67\xd5\xad\x6d\xd7\x88\xec\x24\x51\x8f\x35\xfb\x09\x0b\xd0\xea\x7b\x01\xc4\x6e\xf9\xd2\x24\x43\xd9\xeb\xcf\xb5\x89\x79\xe4\xee\x11\x65\x25\x38\x93\x2f\x52\xf5\x70\x6c\xd2\xbc\x7b\x2f\x78\xc6\x23\x6e\x96\x51\x7e\x6e\x8a\x58\x66\xe1\xc9\x3a\x0a\xd6\xf2\x60\xe8\xee\x0e\xfc\xe8\x17\x99\xf0\x49\x92\xec\xeb\xee\xcd\xc1\x46\x56\xaf\x68\x1e\xc4\x9f\x9f\x02\x70\x8e\x10\x57\x06\x5a\xcc\xde\x0a\x38\xe9\x32\x94\x46\xfb\xb8\x4f\x42\x4c\x14\xd4\x5b\x23\x63\x96\x4d\x63\x32\xd8\xf4\x64\xf4\xeb\xb8\xe8\x6a\x3f\xbc\xb8\x29\xae\xf5\x64\xd1\xb4\x00\x53\xe7\x74\xde\xae\x9d\x04\x08\x49\x87\xd0\xb4\xc9\x09\x50\xb2\x1f\x56\xbb\x95\xca\xe0\x5b\xe2\x71\xf1\x4e\xb7\xf5\xb9\xe5\x1f\xd2\x36\x3e\x28\xa7\xb3\xcb\x97\x41\x5e\xd8\x09\xd0\xe4\x37\xe5\xab\xbd\x77\xc2\x6e\xce\x65\xc0\x68\x29\x52\x4c\x69\x9c\x06\x7e\x7b\x88\x51\x6b\x8e\x81\x35\x6e\xf1\x54\x77\xad\x44\xdb\xc8\xa2\xb6\xcc\x95\xbc\xb7\x6b\x34\xa3\x22\xc3\xee\x7c\xae\x8c\xca\xdf\x33\x4f\x2a\xdb\x3e\x8e\xec\x03\xbe\xcf\xf8\x2c\x2e\xcc\x40\x75\x44\xb4\xa9\xbe\x9c\xae\x87\xd0\x10\x53\x38\x3f\xbd\xc3\xa8\x37\x94\xae\x9b\x79\xb8\x47\x81\x84\x3a\xa1\xcd\x78\xaf\x1c\xe3\x20\xab\x4a\xaf\x7e\xfe\xdb\xb3\xfb\x44\xdc\x0f\x3a\x4f\x24\x47\x69\x79\xe2\xd7\x29\x51\x66\x57\xa7\x41\xa9\xbd\xb1\xa7\x8c\xdd\x81\x04\xbf\xae\xb8\xe5\x16\x3c\x3a\x03\x27\x68\xbf\x63\x30\x2d\xb1\x99\x51\xfb\x73\x0c\x30\xfc\x40\x87\x18\xbb\xe2\x29\x60\xfb\x57\x51\x6c\xca\x5e\x61\xd9\x58\x53\xa2\x74\x49\x58\x96\xf0\x88\xcd\xa6\xc2\xcc\xfc\x67\x99\xc5\xc9\xf5\x7f\x2a\x16\x86\x5b\xbe\x2e\x82\xdb\xde\xbe\xe1\x7f\xf9\x9c\x21\xe6\xfe\x7b\xee\x5e\xb7\xe3\x11\xe6\xb6\xa9\x34\x85\xdf\xe1\xe0\x88\x38\xff\x2a\xa1\x73\x84\x51\x46\x6d\x5c\xf0\xd9\x8a\x39\x42\x2d\x9b\xac\x5f\x24\x35\x8b\xfd\xa9\x8f\x57\x50\x92\x64\x42\xfd\x2e\x22\x45\xd7\xdb\xfb\xf8\x27\x18\xa1\x8c\x9b\x4b\x72\x9d\xde\x67\x45\x48\x74\x9d\xd3\x3a\xce\x4a\xc7\x49\x96\xbc\x24\x9a\xce\xd5\x1c\xe7\x67\x18\x00\x14\xb0\x87\x74\xa1\xf2\x84\x61\x83\x7a\x15\x4b\x3f\xaf\xe7\x99\xce\x91\x1c\xad\x45\x94\xd0\xba\x16\xc7\x02\xf5\x73\x0a\xec\xf1\x13\xb7\x55\x79\x7a\x4d\x89\x85\x79\x68\xdd\xe4\x3d\x7f\x1b\x0e\xb6\x37\x78\xce\x19\x82\xa8\xb6\xe8\x6f\xf1\xd5\x29\x28\x35\xe3\xbd\xb0\xfa\x0e\x3b\x3d\x8b\xfe\x18\x38\xb6\x06\x95\xf6\xd6\x6d\x31\x59\xc8\xf2\xdb\xd2\x0b\xfe\xf4\xb2\x76\xf2\x1a\x26\x2f\xa7\xf3\xf5\x8a\xd6\x2a\xd4\x32\x89\x73\xcb\xc6\xf1\xb8\x33\x4c\x74\xa9\x64\xa9\xac\x7e\x22\xba\xc2\x7e\x59\xfe\xa2\xe6\xe1\x57\xd8\x87\xec\xdc\x46\xc8\xd2\x81\x2a\x10\x81\x72\x0f\xf2\x81\x90\x3f\x62\x18\xe6\xab\x64\xf4\xe9\x16\x18\x6b\xd6\x47\xa2\x01\xed\x64\xea\x7a\x6d\x8f\xee\x42\xd8\x1a\x56\xae\xa3\xdd\xac\x2c\xd3\xd7\xc5\x57\xdc\x47\xdc\xd9\x09\x04\xaa\x76\xef\x39\xdb\x05\x13\xa2\xa9\x6f\x71\x18\x28\xd2\x26\x23\xb4\xaf\x2d\x51\x96\xd7\xce\x6b\xf5\x95\xb5\x20\xf2\x57\x32\xf4\x67\x5a\xda\x3c\xd8\xbb\x30\x4b\x9b\x7c\xee\x12\x3f\x74\xda\x91\xfe\x84\xf2\xc9\x44\x8c\x8b\xe9\x0e\x03\xed\x05\x2d\x72\x4c\x13\x36\x80\x6f\xf5\x76\xa9\x75\x6e\x66\x72\x68\xb9\x9f\x8b\xc9\x0a\x8d\x39\x83\x63\x80\x3e\xcf\xa7\x23\x7e\xbd\x4b\x94\xc9\x81\xe4\xf2\xf7\x27\x5c\x44\x97\xb0\x70\x07\x25\x8e\xbe\x81\xdf\x84\x49\x21\xba\xfa\x44\x1b\x05\xc3\x1c\x78\xfd\xaa\xf2\x62\x66\xe9\x97\xdf\x89\x86\x82\x29\x6e\x73\x0d\x11\x87\xf9\x79\x4c\xe4\x0b\x56\x41\xc1\xa7\x89\x5c\xc0\x25\xf7\x8d\xfb\xc8\x02\x77\xc9\x03\xb3\x88\x3e\xcb\x5b\x93\x57\x2d\xf3\xd5\xfc\x8b\xfe\xd6\x98\xae\xc3\x07\xe7\xed\xbf\xee\xc7\x4d\x58\x64\x3d\x23\x4a\xb5\xa1\xfb\x96\xa6\x1a\x4b\xd0\x8a\xf5\x75\xa4\xb1\xe5\x8c\x6c\xa6\xd2\xc3\xca\xab\x61\x33\x2d\x06\xa6\xd2\xc8\xcb\x46\x24\xb0\x96\xec\x13\xc5\xe3\x2d\xa7\x77\x9a\x99\x89\x7c\x10\xaf\x84\x82\x14\xcc\xb2\xb3\x4e\x02\x74\xd0\xea\x7c\xb3\x58\x1a\x4d\x28\x75\x53\x3b\x4d\xa5\xb3\xb5\xed\x03\xb6\x79\x6d\xc8\xe6\x01\x10\x2a\x27\x51\x53\x12\x2a\x93\x8a\x7d\x4a\xcd\xd3\x3e\xb9\x68\x4d\x20\xe6\x39\x69\x6a\x4c\xa3\xbd\x6f\x0b\xbc\xd6\xc4\xb6\x13\xc8\x20\xff\xef\xab\x85\x17\x6d\x0f\xfc\xf9\x8d\x0f\xcc\x56\xcc\xfd\x3f\x65\x27\xc5\xa8\x71\xd8\xfa\x1f\xa9\xb0\xd9\x3f\x55\xf0\xd9\x9a\x5e\x78\x8b\x9b\x0c\xce\xd9\x20\x84\x1b\xea\x61\xb2\xf2\x77\xa8\x1d\x90\x68\x43\xc5\x7d\x01\x63\xc7\x93\xd0\xbc\xaf\xb5\xb3\x35\x4d\x98\x42\xe2\x28\xbe\x55\xa1\xd2\x39\x3b\x8c\x0b\xcb\x4a\xcb\x7b\x53\x0b\x66\x99\x57\x2e\xfb\x3f\x8f\x1b\x50\x9d\xad\x2d\x20\x61\x24\xa4\x89\xcf\xc4\xe9\x0a\xcf\x36\x46\x22\x94\xc9\x08\x14\xc6\xf3\x00\xe2\x64\xd1\xb4\x61\xd8\x7c\xad\x4d\xf5\x67\x79\xd0\x71\x3c\x1d\x18\x9f\xf6\x73\xb5\x31\x5a\xe1\x81\x3f\x6d\xc5\x6e\xb0\xed\x6d\x55\xf0\x76\x3f\x8a\x04\x20\xba\xf2\x46\x1e\x48\x60\x8e\xa6\xcd\x9b\xf2\x05\x60\xf5\x37\xa9\xe1\xc3\x79\x89\x72\xcb\x95\xa6\x43\xbe\xba\x11\x66\xdc\x0b\xd6\xc7\x5c\x7e\x75\xfe\xc7\xdd\x66\x71\xda\x27\x05\x92\x7d\xa7\x2d\x63\x25\xf2\xec\x14\xca\xee\x64\x14\xfb\x30\x10\xd2\x70\x4c\x7a\xa1\xe0\xd0\xed\x8c\xac\x3c\xc3\x8e\x1c\x5e\x42\xe3\x03\xd9\xd3\x1d\xc6\xbf\x18\x44\x2c\x26\x08\x67\x71\x10\x89\xa4\xb7\x23\x4f\xf1\x49\xe2\x42\xf0\xdb\x31\xad\x8a\x79\x5d\xb2\xf9\x67\x3f\x01\x3e\xef\x4b\xd9\xb5\x71\xa1\x45\x73\x0f\x4b\x86\xe6\x43\x36\x3e\x48\x3a\xef\x34\x35\x78\x9d\x04\xca\x2e\x42\xe9\x15\x33\x68\x4c\x66\x02\xf9\x22\x24\x4a\x6d\x71\x9b\x13\x0b\x4e\xc6\xc1\x4b\x98\x06\xd0\xef\xad\x5d\xe3\x67\x1e\x27\x1f\x96\xae\xd0\x05\x2a\x91\x16\xc9\xba\x64\x53\xa0\x20\x5e\x2a\x3d\x59\x21\xdd\x6f\xe5\xfb\xa3\xcf\xaa\xbd\xcc\x24\xb7\xca\x72\xd5\xc2\x7f\x3d\xa5\x1f\x7d\x7b\x96\xb7\xe8\x4c\x63\x32\x6f\x9a\x97\xef\xe9\xf6\x4a\xea\xdf\x28\x70\x1f\x3a\x14\x0e\x07\xe9\x6f\xa9\xa3\x3b\xb6\x73\x15\x6d\x2a\x71\xd7\xd7\xd0\xa2\xd1\x5e\x27\xb4\x86\x96\xe7\xed\xf6\xf4\x35\x61\x21\xcc\x8d\x59\x56\x33\x3d\x97\x26\x20\xa3\x6b\x4b\xab\xaf\x4f\x2f\x04\x1f\x7f\x19\x82\xea\x37\x2e\x17\x03\x20\x8b\x22\x91\x8f\x3d\x4d\xc1\xf7\xf2\x1e\xb2\x5a\x60\x4e\xa2\xef\xab\x62\xd9\x15\x4c\x24\x9f\x5f\xe9\x5b\xe7\xaa\xc8\xe4\x60\xde\x7e\x83\x75\xdc\x68\x18\x0c\xc2\x17\xa1\xfe\x34\xab\x4d\x66\x5c\x2b\x7b\x2f\xd0\x29\x5e\xf7\xca\xc1\xa0\xc2\x74\x3c\xbc\xfb\xfb\x06\x36\xbc\x5a\xf1\xd1\xe1\xb8\x39\x06\xe8\xa3\xe8\x5b\x74\x5f\x37\x9d\xd0\xe5\xba\x68\xc2\x8a\xfc\x36\x4a\x4b\x76\xfe\xc7\xea\xcb\x02\x6c\x9a\xa0\xea\x2f\x9f\xfa\x23\xac\x2e\x4e\xa2\x8e\xd7\x1a\xf5\x3c\x43\x97\xc6\x16\x6d\xdd\xfc\xcc\xc3\x7c\xb7\x82\xbe\x6e\xf7\xd6\x9e\xaa\xf2\x6e\x88\xe3\x76\xf8\xfc\x81\xa4\xdf\xd3\x1f\x97\x69\x14\xb0\xcd\xa0\x8b\x1f\x5b\x67\xe6\xce\x9c\xf8\x99\xdf\x2a\x5e\x91\x42\x6c\xdd\x7c\x78\xb6\x62\x4a\x53\x57\x82\xbb\x66\xef\x93\xac\xfb\x71\x1b\xf3\x49\x08\x17\x8a\xa9\x30\xed\xde\x39\x45\xf7\x6e\xeb\x2c\x0a\x43\x3e\x53\xd9\x8a\x7a\xd6\xc3\xed\xfc\x7c\x21\xc2\xe7\xcf\x08\x69\x30\x86\xb9\x51\x71\x51\x0e\x5d\x81\x10\x85\x55\xd0\x93\x94\xd7\xc7\xf9\x04\xbe\xe5\x3b\x1a\x9f\x1f\x85\xdb\xf9\x57\x37\x3d\x66\x74\x84\x8b\xe9\x0d\x63\xf2\x4e\xc7\x16\x78\xfe\x25\x38\x05\x9a\x1f\x5e\x9c\xe1\x74\xa3\xe0\x39\xe5\x1d\xfd\xb4\x26\x64\xba\x98\xb3\x24\x40\xfd\x8e\xa0\x46\x27\x0a\x65\x31\x9d\x4e\x0f\xc7\xc1\x71\x10\x6d\x92\xe4\xaa\x2e\xa7\xb1\x87\x77\x82\x66\xb6\x2a\x47\x13\x28\x3c\x4a\xab\xe1\x75\xde\xd1\x55\x86\x7f\x8f\x26\x5f\xf8\x37\xb6\x11\x2b\xa9\xe9\x73\xb1\x05\xe6\xad\x12\xa5\x3e\x2f\x90\x97\xe4\x16\xa2\x7c\x2f\x60\x78\x6b\xf5\x2c\xa6\x04\x77\x67\xe3\xcd\x5b\x31\xa6\x8e\x86\x09\x84\xc5\xb5\x08\x9f\x9c\xfe\xa7\x22\xbf\x2e\x9d\x86\x21\x2d\xf4\x81\x2c\x74\x9f\x45\xcb\x7e\xf1\x72\x52\xa0\x4d\x67\x08\x0a\x9d\xbc\x57\x20\x0b\x04\xa9\x1c\x51\xbf\x98\x4f\x5d\x7f\x69\xb4\xfb\xb4\x46\x6f\x1b\x86\x64\x4d\x1e\x7b\xe3\xc3\x02\xfc\x71\x2a\xe1\x56\xb0\x9c\x77\xde\xb7\x51\xb1\x74\x11\x18\x59\x60\x1d\x85\x4a\x10\x6d\xac\x1d\xc6\xeb\xef\xae\x3d\x0c\x38\x47\x88\x1c\xb6\xd0\xaf\xcb\xef\x49\xb8\x43\x8b\xa0\x6b\xaa\xd4\xc6\xb2\xd8\x7f\x12\x22\x96\xd0\xed\xe6\x51\x24\x2f\xf6\x63\x5a\x85\x20\x5e\x13\x8a\xbd\xc6\x4d\xb6\x11\x5e\x4f\xda\xec\x65\x5c\xde\xd8\x72\x32\xd9\xca\x69\xdc\x71\xe6\x60\x68\x78\xad\x91\x29\x81\xcb\xa4\xcc\xd9\x07\x16\x2c\xc7\x36\x4c\x2c\xbb\xc5\x92\xfa\xec\x4c\xfa\x09\x78\x68\xd8\xc9\xc5\xfb\x89\xdb\x5a\x52\xa0\x39\x4a\x80\x3a\xa6\x7f\x5e\xf0\x73\x74\xce\x34\xcb\xed\x6f\xf0\x65\x41\x81\xf1\xb5\x2e\xaf\x96\xb8\x1c\xe4\xe8\xf6\xf4\xc9\x58\x16\x17\xd0\xee\x3b\x97\xe8\x7a\x44\x91\x36\x45\xa2\x64\x46\xcd\x19\xb7\xf9\x44\x19\x81\xda\x4a\x3c\x7f\xdb\x43\xf3\x86\x16\x0e\xa6\xd6\x7a\xed\xdf\x7f\x8a\x48\x3e\xe0\x74\x1e\x87\x38\x3b\x83\x40\xce\x9d\xd6\x14\xf3\x00\xd0\x04\x2f\xda\x39\x01\x78\x71\x68\xa6\xd3\xa8\x2d\x02\xcc\x32\xe7\x45\x2f\x32\x81\xa7\xb4\x3c\x45\xd5\xc1\x50\x71\xff\xd9\x23\x0f\x14\x92\x6d\xa8\x45\x1a\xea\xa1\xe2\x3d\x73\x77\x2c\x7b\xe8\x63\x9e\xad\xa6\xe8\xc5\x3d\x1d\x16\x8f\xc9\x52\x99\x09\x64\xf4\x62\xe6\x36\xff\x49\x80\x29\xea\xa0\x69\x50\xaf\x28\x83\x8a\x95\xa6\x3f\xd6\x6f\x32\x8c\x22\x3c\xee\x1e\x86\x26\x11\x30\xaa\xf0\x39\x89\x10\x26\x1a\x31\x94\x94\xa1\x09\x21\x01\xb9\xea\x19\x4a\xac\x7a\x05\x46\x79\x8a\x19\x4f\x69\xeb\x5a\x11\x34\x09\x93\x22\xea\xf0\xcf\x75\x63\x5d\x46\x85\x4a\x5c\xe4\x83\x71\x93\xdd\xd9\x70\xde\x63\x62\x1c\x9f\xe2\x49\xa8\x87\xda\xa2\xa0\xc8\x48\x52\x53\x07\x9e\x64\x54\xd0\xaa\x6b\xf5\xa2\xe9\x16\xd7\x73\xba\xfc\xa2\x53\xfc\xef\x77\x64\x98\x89\x82\x40\x91\x78\x9c\xc3\xa1\xd3\x95\xd4\x8c\x0f\x86\xee\xef\x57\x71\xbc\xdc\x75\x8e\x22\xe3\xb2\xc0\x4e\x95\x2c\x9b\x11\xdb\xb3\x87\xf9\x45\xea\x63\x85\xa0\xd5\x3a\xc9\x66\x9f\x87\x80\x3c\xee\xc1\x4d\x71\x99\x10\x49\x78\xc8\x0e\x65\x43\xdb\x8a\xea\x0e\xc5\xb0\x4b\x91\x5c\x2f\xda\x21\xb6\xcf\x18\xbc\xdc\x87\x24\x65\x24\xd0\xda\x4f\x46\x37\x70\x66\x1c\x3c\xf7\x1b\xf5\xa0\x98\x50\x26\x1f\x54\xf1\x5d\x58\xa8\x5f\x24\xd6\x59\x75\x15\xf7\x71\x2c\xa0\xb7\x4f\x2b\xcb\x6a\x73\x34\xa2\xe6\xd7\x2d\xb2\x64\x07\x6a\x22\x0b\x27\xcb\xd2\x9b\x6d\x85\x59\xcc\x92\x8d\x87\xf1\x16\xd1\x2f\xc2\xeb\x1b\xe5\xc9\x0f\x90\x45\xfa\x73\xad\x5b\xfb\x3c\x11\xb2\x3f\x04\x47\x2b\xdf\xac\x99\xba\xb5\x1f\xe4\xd7\x99\xc7\xc2\x6e\xdc\x2a\xa6\x0d\x25\x96\xa4\x75\x6a\xdf\x27\xd2\xba\x4f\x3c\xb1\xcd\x74\xa3\xbc\x77\x99\xa9\x39\x73\x85\x35\xff\xae\x0b\x45\x79\x57\xba\x64\xe9\x59\xd6\x0e\x7a\xb1\xb2\x51\x1f\xec\x31\x8c\x64\x9e\x5a\x4f\xc9\xbb\xaa\x6b\x65\x4e\x29\x3e\x4a\x7a\x3d\xe3\xfe\xa1\xad\x27\xd8\x7c\x38\x43\xfd\x6a\x18\xef\x9b\x84\x2d\xf2\xad\x0b\xf7\x93\x6c\xba\x0e\x8d\x3e\xed\xfb\x6b\xc1\xb9\x48\xf7\x4b\x70\x64\x15\x9f\xf3\x70\x71\x3f\x4c\xf2\x05\xda\x3b\xe2\xe8\x7e\xae\x66\x58\x8e\x82\x1c\x4d\xc9\x8f\x8b\xe8\xa8\x2c\xb1\xa9\xe2\x25\xad\x05\x11\xa6\x0a\x23\xcc\x2a\x47\x76\x31\x45\xdc\x0a\x0c\xe5\xd8\xa1\x92\x1a\x9c\x13\xbe\x9c\x20\x4f\x70\x2b\x1a\xf9\xeb\xaf\x53\x55\x5b\x98\x56\xde\x6e\xe9\x03\x49\x0f\x87\x35\xb7\x51\x9d\x0a\x90\xfb\xbe\x99\xb6\xeb\x79\x20\x2f\x4d\xd4\xb7\xdd\xa8\x4b\x28\x11\x3f\x86\x5a\xd4\xba\xa0\x00\x46\x37\xd6\x1f\x9a\xb5\x94\xbf\xe1\x7e\x84\x1c\x59\x73\x5c\x5f\xe0\x04\x49\x1a\x0a\x10\x1d\xfb\x4d\xe0\x12\x4d\xc0\x67\xad\x6f\x19\xdf\x0c\x3e\xbe\x75\x5c\x36\x17\x31\xed\xb1\xe3\x3e\xf9\x7c\xe3\x70\x2b\x0b\x18\x94\x53\x2e\xb6\xd1\x4d\x30\x54\x9c\x43\x4b\x63\xc1\xef\x0f\x2a\x96\xad\xa0\x50\xcf\x97\xe7\xb0\x38\xe9\xf9\x35\x87\x4b\x44\xc1\x1d\x8f\xbc\x66\xb3\x34\xe7\x70\x3e\x5d\x63\x9a\xf0\x94\x57\x05\x6b\x54\xb9\x7a\xe0\x4d\xe2\x9c\xa9\x62\x0a\x18\xef\x23\x64\x6a\x25\x9e\x6f\xf8\x1e\x21\xeb\x4f\xb4\x83\x2e\x36\x06\xce\x55\xc0\xb7\xb5\xba\x42\x8f\xbb\x0d\xee\x11\x04\x65\xdb\x7f\x3b\x69\xaf\x83\x60\xa1\x0b\xf2\x2e\x97\x11\x32\x7a\x8e\x7f\xa4\xaf\x83\xd2\xd8\xf7\x4a\x03\x56\x4f\x07\x53\xd6\xbc\x33\xb1\x8a\x65\x47\xd7\x66\x47\x27\xf1\xa3\x68\x3f\x49\x5f\xb3\x7a\x9f\xab\xc3\xd0\x46\x44\x26\x61\x02\xc3\x8d\x44\x33\xb9\x3b\x9f\x68\x3d\xd1\x8b\x9c\xcb\x3d\x42\x4e\x02\xd3\xdb\x71\x21\xdc\xaf\xe9\xb7\x01\x40\xb9\x80\xa2\x5a\x69\x1e\x43\x9a\x85\x1a\x96\x75\x6e\x82\xdb\x24\x29\xe8\xc2\x84\x46\x33\x37\x6b\xbf\x48\x0b\xaf\x6f\x96\x72\x41\x2e\x0f\x60\xac\x86\x4a\x32\x89\x4d\x64\x3e\x37\xe9\x97\x49\xb8\x7c\x8e\x93\xe6\xf7\xec\x15\xe5\xbb\xd3\x94\x0b\xfa\x72\x53\x4f\x8f\xf1\xa7\x3d\xeb\xcf\xd1\x5c\x03\x0e\xbb\x5e\x84\xca\x72\xde\x7b\x54\xf7\xc1\x17\x72\x3c\x69\xb9\x8a\xe4\x78\x09\xbb\x07\xbc\x38\xc9\x1e\x6e\x80\x4c\xc4\x57\x8e\x4e\x59\xc6\xb6\x46\xa5\x55\x03\x35\xb8\xa0\x23\x7c\x63\x71\x4f\x4e\x96\xe3\xe5\xe1\xb7\xdf\x81\x30\x9f\xd2\x39\xd2\xe6\xeb\x6c\x64\x0b\xdd\x91\x95\xb4\x89\x41\x3f\xb5\x12\x09\x68\x8a\xae\xfc\x17\xa9\x3e\x23\xdc\x7f\x04\x1a\xd5\x39\x61\xfa\x84\x91\x39\x9a\x32\x78\x83\xb7\x86\xfd\x55\x74\xbd\x9e\x02\x96\x52\xb1\xcb\xaf\xcc\x84\xaf\x1e\x8f\x58\x4d\x40\x79\x48\x44\xb0\xc2\x4b\x56\x24\xee\x28\x32\xb8\xed\x98\x24\x57\x3b\xac\xc7\x7b\x0b\x02\xf2\x7c\x7d\xe4\x0d\x60\xc2\x81\x81\xc0\x4f\x7d\x27\x03\x72\x29\x5d\x64\x15\x8e\xcb\xc1\x4a\x45\xb9\x38\xb1\x82\x53\xc2\x2e\x10\x2f\xbb\x72\x8c\x13\x4a\xed\xde\x12\x1a\xad\xdf\x8a\x30\x3a\x37\xe4\xc7\x02\x99\xf6\xf4\x50\xef\xa8\x94\xf0\xeb\xf9\x60\xab\x4a\xac\x73\x31\x11\x41\x39\xa4\x46\x3e\xab\xde\x48\x04\x0c\x2e\xa2\xab\x45\x94\xb1\x1d\x36\xaa\xca\x65\xaa\x4a\x1b\x16\xab\x89\xf4\x72\x90\xb2\x04\xed\x77\xfa\x4a\x42\x6a\xb0\x2b\xc0\xee\x50\x27\x62\xa2\x64\x67\x82\x85\xb7\x7e\xf8\xc4\x02\x0d\x19\x56\x42\x4f\xb9\x8c\x4a\xa7\x31\xd0\xc6\x01\x32\x12\xf3\xbf\xc8\x7a\x63\xa3\x9b\x05\x63\x18\x9d\x64\xe1\x6b\xe7\x97\x50\xc4\xaa\x3c\xc3\x99\xc4\x74\xa2\xa1\x49\x28\x65\x44\x05\xd3\xf6\xe3\x76\x05\xbb\xe3\x9e\xb5\xd0\x49\xd3\x1c\x51\xe1\xcd\x3d\x9f\x6d\xd6\xa3\xd0\x24\xc8\x9e\x5a\x3b\xa2\x39\x6b\xfa\xe3\xdd\x0e\xd3\xb9\xd3\x62\x37\x48\x91\xc0\x50\x57\x30\xe0\x74\x81\x55\xd4\x8e\xdb\xed\x9c\x8a\x27\xcf\x1f\xaa\xc4\x49\x3c\xe0\x5a\xcc\x0f\x0a\x12\x53\xec\x6d\xad\xa6\x15\x9e\x43\xbd\x80\xe8\x46\x69\x8a\x27\x40\x41\x20\x01\x57\x41\x8b\xb4\x0e\xf8\xb1\xa9\x87\x2a\xf3\x7c\xc0\xfd\xbb\x1e\x71\x77\x50\x74\x5b\x60\x02\x50\x29\x28\x92\x07\x72\xf1\xb5\xbd\x49\x6f\x2a\xd6\x44\xa6\x88\x5e\xfc\x93\x5e\x84\x7f\x6f\xc2\x41\x86\x1a\x99\x03\xcc\xd3\x2f\xea\x03\x03\x49\xd6\xd9\x9e\x4b\x0c\x9a\xad\x04\xb6\x54\x9a\xf7\x76\xb2\x4f\x0f\x44\x74\x19\x98\x22\x2b\x68\xa0\x65\x1f\x58\x9a\x62\x19\xa3\x16\x8f\xb1\x93\xfa\x30\x7b\x87\x2d\x91\x69\xa3\x28\x3f\x01\x84\x48\xbb\xce\xfe\xe5\x35\x7c\x62\xea\xa1\xe7\xc5\x0b\x95\xa7\x74\x83\xde\x43\x17\x8f\xc5\x63\xa0\x9f\x37\x09\x83\x8e\x9a\x45\xaf\xe0\x62\xef\x54\xa6\x67\xcf\x52\xe6\xe9\xd7\xe4\x99\x26\xcf\x0f\x8d\xea\x05\xa5\x53\x71\xd8\x44\x38\x2e\xe1\x81\x42\xf9\xf1\x60\xe8\xc1\xc7\xd7\x2b\xba\x76\xaa\x22\xe1\x45\x2b\xf1\x38\xd7\x20\x7a\x66\xa9\x6d\xc8\x53\xec\x63\xa2\x61\x96\xdd\x20\xd3\xe8\xf0\xd9\xd2\x81\x38\x9c\xfc\xf7\x3e\xe1\x24\xa1\x09\x1a\x8e\x5e\xed\xfe\x65\x67\x3d\xcd\x66\x04\x40\xb4\x22\xc5\xab\x34\x1b\x29\xb2\x8b\xd6\x7d\xfa\x82\x3f\x9b\xb7\x0c\x90\x29\x4f\x93\xbd\x08\xda\x74\x92\xe5\x77\x33\xb4\x98\x5a\xb0\x78\x87\x5a\xf8\xdb\x10\xd9\xf8\xad\x6b\x75\xd4\xd6\x71\x04\xcb\x71\xe4\x5b\x5a\x19\xf7\x55\x4a\x7e\xec\x6c\x59\xe1\xfb\x3d\xb4\x1c\xf7\x53\x24\x9d\x97\xcb\xbf\x22\xc9\x07\xc6\xd6\x96\x71\xf6\xb2\x56\x9e\x6d\x7f\xbf\xc1\xb7\x18\xd9\x13\xe2\x64\x70\xa3\xeb\xd4\x3e\xfb\xde\xc5\x6d\x5b\xdb\x9f\xc4\xf9\x99\xd4\x7d\x29\x59\x0e\x7b\x5f\xf7\x25\x87\x21\x88\x3a\x6a\xd4\x53\xfb\x89\xdc\xe8\xdb\xcf\xba\x58\x7d\x7a\xde\xd7\xda\xed\x47\x75\x2a\xd9\x99\xe6\x69\x0f\x61\xe6\x38\xe6\xa2\x6b\x90\x02\x76\xb5\xa0\x86\x44\xb3\x99\x08\x01\x86\x7d\xf0\x6e\x1a\x40\x49\x7c\x62\x5d\x16\x33\x5f\xa8\xe5\x63\x2a\x7e\x6f\x17\xca\xa0\x87\x52\x15\x4c\x1c\xeb\xa5\x86\xbc\xef\x86\x1a\x0d\x21\xce\x34\x84\x35\x07\x19\x47\x5f\x35\x0b\xaf\xa4\xa1\x5d\x5a\xb1\x12\xef\xee\xda\xe1\x5b\x7d\xe9\x97\x93\x3f\xb0\x4e\xf0\x98\xc6\xd9\xe8\xad\x8c\x00\xff\x44\x9f\x55\xa6\x6b\x57\xf4\x8c\xf5\x26\x6a\x6d\xd9\xb2\x65\x14\x7e\x02\xe4\xbf\x33\x52\xd4\x54\x21\x5b\xe6\xaf\x8e\x56\xb6\x4e\xc5\xbc\x75\x95\x79\x4f\xc5\xd1\x7b\x82\x40\x3f\xe7\x1a\x0b\xd1\xb9\x8f\x50\x2f\xdd\x67\xa3\x80\xf3\xae\xf0\x27\x9f\x11\x58\x04\x3f\x60\x57\xac\xac\xf5\x14\x49\x6f\x78\x5b\xdb\x7f\x35\x47\x83\xbc\x1d\x9b\x8c\xd7\x20\x45\x21\x11\xa0\xae\xb3\x63\x89\x32\x3b\x80\xd1\xc4\xf9\xe9\x1a\x7b\xe5\x27\x84\x64\x28\x2b\xfe\xc0\x3e\xb1\x75\x5d\x00\x2c\xd3\x82\xd3\x5c\xb4\xf4\x2c\xb7\x91\x4e\x11\xbb\x83\x4d\x5e\x19\x6a\x9d\xe0\x85\xf6\xd4\x79\x2d\x27\xa0\xb6\xac\x56\xd6\x36\x27\x7e\x3e\xcc\xb9\x6a\x2f\x54\x6d\xa6\xb0\x02\x40\xd9\x23\x4b\xd2\xb4\x29\x20\x8d\xbf\x70\xb6\xdd\x1e\xfa\x0e\x6d\x1d\x18\xaa\xa1\x8b\x76\x68\x03\xa6\xcb\x44\x0a\xa6\x90\x32\x26\x46\xc8\x47\xf6\xe0\x18\x9f\xc7\x88\x25\x6c\xbc\x5c\x5a\x0e\x7b\x9b\xf4\xdf\xef\xf2\xce\xc3\x5b\x73\x7b\x99\xa4\x7c\x81\xf8\xf7\x2b\x6a\xd5\x45\x85\xe7\x70\xd4\xb4\xb5\xc7\xab\xd6\xa0\x5c\xc1\xc9\x52\x66\x8b\x28\xcd\x05\x29\x7c\xfa\xea\x69\xc3\x94\x40\x6f\x39\xa4\x52\xbf\x98\x61\xc4\x3d\xd4\x08\x3b\x9d\xb0\x4c\xb7\xe0\x75\x5e\x8a\xc4\xb8\x8f\x28\x0f\x21\x68\x24\x26\x75\xd7\x3f\x50\xf1\x29\xe0\x10\x19\x89\x1b\x22\x17\xff\xc4\xfa\x33\x41\x8c\x01\x6d\x71\xd5\x76\xae\xea\xee\x3e\x6f\xe1\x87\x3e\x1e\x05\x74\xbf\x70\x44\x9b\x0a\x06\x0e\x1d\x58\x48\xf4\x11\x20\x4b\x3f\x10\xbf\x3a\xe7\x95\xf5\x3a\x9f\x9e\xd1\xeb\xcb\xd7\xe9\xe6\xaa\xbf\xbf\xbf\xdd\x29\xb4\x16\xd2\x73\xb2\x11\xa2\xd7\xd3\xfd\xd4\x92\x9f\xee\x33\xde\x27\x67\x3e\x77\x35\x18\xf7\xb9\xb7\xcd\xda\x3a\x79\x01\x85\x1f\xf2\xc2\xbb\x91\xf2\xef\xf1\x82\x1f\x9e\xcf\x28\xa2\x83\x56\x8f\xd6\xfa\x8f\x77\x7a\xb1\xd8\x9a\x84\xa0\x07\x9f\x01\xf9\x55\xd0\x23\x60\x92\x5a\xba\xb4\xb5\xae\xb7\x6b\xd7\x3b\x92\x33\x3d\x41\xd6\xfb\xaa\xab\x09\xd2\xa0\x4c\xf1\x6d\x1c\xbe\xfe\xc0\x9e\xe8\x8d\xa1\x8e\x8b\x93\xfe\xfe\xbe\x75\x2d\xff\x22\x65\x32\x53\xc9\x4c\x36\xdc\x58\x64\x2c\x8b\xc2\xe2\x15\x8d\x64\xfa\x9c\x82\xad\x1a\x0a\x1f\x7e\xf6\x77\x04\xb4\xa2\xb0\x1c\xb4\x6a\x9e\x58\x75\x5d\x7a\xff\xa2\xb4\x1d\x25\xdd\x49\x13\x18\xfd\x0d\x86\x6f\x20\x99\x91\xc5\x8b\xd4\xcf\x79\x5a\xfe\x02\x7e\xf0\x32\x1c\x2c\x3e\xe0\x9d\x34\x35\xd8\x66\xdc\xb8\x30\xa3\xa8\x30\x3e\x8c\xff\x2f\x11\x67\x8d\xb3\x3b\x94\x6c\xd1\x01\x39\x30\x53\x68\x7f\x66\x66\xca\xcc\xcc\xec\xd1\x3f\xfd\xf7\xb5\xba\x07\x70\xa4\x13\xd5\xaa\x2d\xed\x55\x6d\xd4\x0f\x56\xcd\xeb\x7d\x4b\x2d\xd3\x9e\xc2\x50\x01\xe7\x36\xd3\x96\xca\x68\xf3\xdd\xe3\x00\x73\xf0\x5d\x4e\x11\x0d\x10\x90\x08\x71\xa9\x64\x38\xd0\x03\x13\x62\x14\x41\x7d\x80\xd3\x61\x84\x94\xd3\xf7\x5d\x62\xdb\x81\x0c\x6e\x91\x1a\x8e\x05\x76\x39\x42\x1e\x52\x77\x18\x1a\x63\x56\x3c\xe7\xd7\xd1\x4f\x14\x5b\xa4\xd5\xef\x6b\x34\x2e\x48\xdf\x62\xe2\x13\x46\x90\x65\xe4\x49\x6a\xc4\xbe\x9e\xf6\x1d\xb1\x63\xd6\x10\xd9\x57\x7d\xc0\xac\x95\xd1\xf1\x43\xb8\x02\x0b\xc4\x7e\xd3\x56\xb6\xdf\xad\x8e\xbe\x9e\x9c\xe5\x4a\x82\xa2\x08\x62\xea\x3d\xd1\x62\x4d\x35\x66\x28\xcf\xf7\xb8\x7b\xdb\xbe\xaa\xc0\xda\x00\xcc\x7b\xf6\x67\xcf\xb1\xa1\x7e\x63\xcf\x40\x33\xef\x33\x8e\xc0\x49\x87\x83\xcf\x1d\x01\x31\xce\x7c\xc2\x6c\xe7\x16\xe8\x60\xcf\xdb\x04\xcf\x6d\x28\x4d\x4e\xb6\xba\xe1\xcc\xdc\x65\x2a\x89\xaa\x37\x09\x5c\x31\xbd\x33\x1b\xcf\xc5\xaa\x1d\x8e\xd0\xe1\x3e\xa3\x8f\x75\x2a\x4b\x06\x43\x13\x4c\xe0\x70\x82\x30\x41\x33\x0f\xd0\x8c\xe4\x74\x87\x6b\xe7\x62\x27\x65\xd3\x65\xb3\xb8\xc1\x8d\xed\x5b\xb9\x4d\x8f\xcd\x0c\x21\xaa\x3f\x68\x93\x67\x56\x11\xd4\x1f\x55\x10\x8c\xb5\x38\x10\x53\x42\x65\xf1\xeb\xe6\x80\xb1\xcf\x54\xda\x55\x3b\xa4\x28\xdf\x40\x8f\xb0\x63\x66\xbf\xac\x08\xbf\xcb\x75\x9a\x10\x4b\x33\x65\xfc\x92\x56\x80\x67\xbe\x9d\xa9\x1d\x18\xce\xf0\xe7\x5a\x7a\x1f\x87\xbc\xf4\x76\x20\x6d\xef\xb1\x91\x44\x2a\x97\x98\xcf\x56\x23\x9c\x3f\xb1\x92\x21\xc7\x6e\x57\xe6\xcd\x71\x43\x34\xef\x45\xf6\xf1\xf9\xe6\x70\xd8\xe6\x26\x4b\x4a\xbb\xd7\x71\xc0\xb6\xfb\xda\x99\x95\x4d\xe7\x73\xea\xe9\x70\x9b\x4e\x1a\x1c\x49\x1a\x70\x68\xf7\x85\x49\x10\x7f\x39\xbd\x32\xcc\x12\xea\x45\xf7\xd9\x33\x8b\xb2\x9f\x83\x1b\x8c\xcf\x94\x25\x6c\x33\xd4\x0e\x15\x5c\xdb\x9a\x2a\x13\xbd\xa9\x25\x18\xf8\x7c\xa7\x4c\x68\xaa\xa1\x9a\xb2\x74\x9a\xfb\xf0\x4f\xff\xc0\x87\x87\x35\x80\x28\xdb\x23\xba\xec\x27\x18\x0e\x24\x70\x2d\xbf\x63\xb6\x7b\x58\x33\xc0\x92\xdd\x10\xff\x7a\x98\x64\xc0\x83\x47\xa9\x60\xa1\x2c\x5c\x8e\x14\x14\xd5\xd7\x79\xb4\xd0\xed\x99\x8a\xfd\x7b\xa7\xf4\x32\xca\x4c\x39\x13\x72\xff\x6d\x52\x85\xd8\xb8\x14\xfc\xec\xef\x37\x6f\xb1\x26\x8c\x98\x34\x4c\xdf\x82\x3d\xd9\x94\x95\xba\xff\x68\xc0\x64\xb1\xcc\x96\xaa\x2f\xab\x3f\x7a\xc3\x60\xb4\xee\xe7\xc5\x49\x35\xaf\x6d\x5b\xe1\xb0\x29\xe2\x46\x22\x5e\x5e\xc9\xbf\x49\x3a\x6f\xfe\xe6\x4d\x2b\x87\x0f\x69\x2c\xca\x2e\xdf\xf9\x74\x62\x5f\x94\x56\xbb\x57\xb0\x4f\xc1\xe7\xa4\xc9\x71\x23\xed\x42\xb1\xa5\x27\xbb\xe9\x0a\xbb\x1e\xe1\xd1\xea\x1a\x7b\xe8\x90\x91\x1c\x63\xcc\x94\xdf\x33\xc7\x38\xf2\xd8\xf0\x5f\x79\xf6\x0b\xc1\xfe\xed\x9d\x94\x09\x8c\xd1\x1d\x4e\x55\x36\x36\xbf\x28\x88\xca\xe6\xd8\xad\xca\x46\x2d\xc9\x0f\x09\xdd\x8b\x22\x33\xb3\xfe\xc4\x98\x34\xd9\xc7\x9e\x73\x9c\xc5\xbe\x95\xec\x03\xfd\xb6\xd4\x7b\xde\x97\x61\x9a\x04\x9c\xa8\x4f\x62\x6a\x87\x0a\x46\x06\x0b\xd3\x8f\xa9\xeb\x93\x3e\xa8\xac\x55\x7a\xdb\x86\x54\xaf\xfa\xf4\x19\x01\x9f\xd7\xde\xa9\xc3\x5a\x7b\x05\x7e\xbd\xfe\xac\x74\x4e\x5b\x70\xaf\x7a\xdb\x76\xe3\xee\x0d\x68\x2e\xbc\x01\xc1\x18\xe1\x0f\x76\x38\xa3\xfb\xd9\xfd\xe9\x85\x7a\x3f\xb9\x8e\x8d\x60\x09\x45\xa0\xe8\xdd\xc1\xef\x0b\x01\xf4\x74\x90\x53\xba\x7d\x94\xfa\x49\x1d\x19\x8c\x95\x03\x37\x91\x4c\x8b\x8e\xf3\x9c\x41\x10\xbe\xa1\x58\x5c\x43\x88\x42\x6d\xd0\x37\x77\x2e\xfd\x28\x60\xc8\x31\x88\x15\xfb\x81\x1f\x0e\xb9\x93\x2b\x08\x37\x53\x54\x9c\x3e\x5d\x1e\xf5\xa6\xb3\x55\x4b\xc7\x36\x1c\xa2\xa5\xa5\x7c\x83\x12\xe1\xcd\xf9\x13\x51\xf8\x07\xf9\x80\x02\x8c\xb1\x85\xac\x2d\x8c\x3a\xd9\xe8\x79\x8a\xc1\x5c\xc9\xc0\x22\xf8\x4e\xce\x54\x5f\x3e\x2b\x4a\xd4\x44\x0d\x65\x8e\xa6\x68\x93\xbf\x01\x68\x8d\x74\xb2\xff\x72\x0a\x28\x24\x05\x70\x95\xc3\xb9\x3c\xd4\x94\xa4\x07\xd8\x9a\xaf\x8c\xdd\x6e\x95\x9e\x81\x38\x1f\x93\x8e\x6f\x00\x49\x14\xb0\x4d\x78\x5b\xd1\x43\xe9\xab\xed\x05\x02\xde\xcc\x69\x97\xce\x5a\x2d\xe3\xb5\x2d\x4b\xa9\xb9\xda\x02\x05\x80\x5d\x67\xb2\x74\x8c\xe7\x0a\xde\x2c\x92\x1a\xdb\x38\x56\x32\x81\xb5\xde\x94\xed\x61\x68\x57\xfe\x42\x77\x91\x7a\x78\x80\x68\xe0\xd0\x57\x7d\x9e\xa6\x26\x1b\x83\x27\xbf\x2b\xe7\xe8\x95\x50\x96\x2d\x59\x7c\xd4\x9e\xd6\x6f\xe5\x9c\x22\xdd\xbf\x34\x25\xe3\xfe\x5b\x2f\x28\xf2\x63\x60\x96\xd0\x75\x85\x48\xaf\x36\x14\x04\xe9\x9f\x33\xae\x75\x6d\x62\xb0\xf5\x84\x5d\x38\x2c\x03\x3f\xa8\x5d\x2b\x3a\xd5\x68\x61\x4f\x4d\xe8\xb0\x74\x98\xef\x6a\xb5\xe9\x2e\x4a\xd4\xb9\x4f\x65\x03\x8c\x5f\x44\xa7\xb2\x57\x2d\xba\x72\xc1\x37\xb9\xe2\x33\x2f\x6b\xd1\xf0\x3d\x8b\x51\x4e\x82\x6f\x82\x8c\x62\xec\x46\x08\x0d\x85\x46\x7a\xb3\x52\xe5\xea\x9a\xdb\x53\x1c\x85\x17\xd8\xc8\x6e\xda\x8b\x26\x0f\x58\x42\x02\x35\x87\xf5\xdd\xee\x0b\x56\x1e\x54\x48\xfd\x29\x69\x60\xe7\xfb\x21\xd7\x36\xc2\x32\x9f\x2f\x41\xe5\x19\x69\x8d\x1c\xd3\x86\xf4\x8b\x26\x28\xc7\x15\x3f\x1f\x9e\xad\x2d\xf1\x41\xc7\x55\x90\x9b\xbd\x80\x53\x16\xd1\x76\x04\x14\x0e\xd9\xee\x68\xf6\x45\xc6\x60\xda\x3f\x2a\x63\xa8\xee\x88\xaa\x1d\xcb\xba\x65\x18\x9b\x71\x47\x8d\xa3\x78\xa6\xd8\xeb\xc6\x43\x83\xc8\xed\xa0\x67\x03\xc6\x7c\x0d\xd0\x32\x2f\x8f\xb3\xbe\x6a\x57\xe0\xeb\x0f\x3a\xd8\xc5\xf6\x0c\x3f\x9d\x1b\xc2\xef\x55\x2b\x68\x54\xb2\x14\xe3\x05\x5a\x7c\x7e\x9d\xee\x75\xd3\x44\xc1\xc3\x4c\x3c\x15\x54\x30\x10\x42\x1d\x38\x9e\x48\xa7\x72\x2d\xfd\x43\x6b\x5c\x1f\x40\x19\x66\x47\x66\x4d\x54\xf0\x9a\x64\x63\xae\x19\x06\x87\xe5\x4a\x9e\x33\x38\x5d\xa9\xa7\xd2\xfa\xa4\x41\x96\x09\xb6\xde\xd0\x16\x5a\xec\x29\x0f\x43\x12\x21\xd8\xaf\x2f\xa0\x4d\x85\x48\xc3\xed\xde\x40\x3a\xfd\xfd\xc7\xd8\x79\x0d\x14\x32\x1a\x0c\x57\x33\x6d\x69\x8a\x42\x53\xfa\xad\x78\x31\x37\x58\x26\x74\x3d\x2e\xa4\xc5\x0e\x13\xc1\x0e\x94\xb0\x37\x8b\xe4\xd8\x8c\x3d\x14\x96\xea\xc2\x3a\x99\xc0\x15\x63\x9f\x90\xed\xdf\xde\x2e\x90\xab\x58\xa6\x9e\x43\x37\x3e\x93\x58\x97\xad\x2c\xa6\xd3\xd6\x55\x58\x73\x6f\xea\x01\xa9\xf5\xce\x1d\x4d\x30\xf2\xd4\x8d\x2d\x57\x82\x82\x58\x79\x86\x6c\x95\xcd\x1c\x9d\xf3\x4e\xf9\xb6\xa8\x4a\xf8\xcc\x50\x94\xef\xc4\x6d\xfb\x11\x90\xc9\xd9\x75\x9c\x59\x93\x53\xf7\xf4\xaa\x65\x9f\x4d\x96\x51\xda\x38\x61\xaa\x7d\x8b\x6d\x49\x86\xa2\x7c\x36\x5b\xd7\x3e\x76\x59\xe9\xe8\xb4\xc3\x9c\x97\x83\xcd\xcd\x7e\x19\xf0\xc1\xe2\x62\xf3\xdf\x04\xdf\x6b\x28\xb6\x06\xa7\x87\x02\x9f\xf9\x3e\xa7\xa6\x72\xa8\x9e\xbe\xb9\x45\x49\x88\x21\x7b\xe9\x9b\xfd\x57\x7c\xec\x55\x10\xdb\x93\xb3\x11\xa0\x9e\x91\xb8\x6d\x51\xbe\x4a\x0f\x49\xb7\x7d\xfa\x4c\xad\x94\x31\x53\xab\x40\x3e\x9b\xc5\xb1\x25\x49\xd9\x9a\x7b\x67\x3f\x21\xa1\x98\x21\xf1\x99\x65\x94\xd7\x56\x7d\x13\x56\x65\x66\xe6\x48\x5f\xb3\x63\x56\xa5\x81\x54\xfc\x55\x66\xf7\x5a\x5e\xdb\x6a\x39\x46\x06\x0c\x97\x75\xdf\x5c\x9b\xa9\x58\x7a\x9f\x43\x95\x67\x7a\xd4\x7a\x09\x4e\xf6\x6d\x62\x86\x80\x53\x7e\x3c\xfb\x22\x94\xe7\x10\x47\xf8\xce\xeb\x8d\x4d\x0f\x31\x3a\x14\x0b\xc2\x87\x18\xa2\x5e\xc7\x33\xe3\x57\xd3\xd8\x4c\x28\x3e\xd3\xf7\x6c\x6b\x63\x27\xa5\xad\x65\x96\xa9\xc4\x52\x04\xc3\xce\xdc\xd4\xb6\x00\xcc\xf8\xcc\x91\x16\xe1\x08\x0b\xe6\x66\x37\x8f\x04\xc0\xf6\xde\x10\x31\x74\xaf\x0b\xf2\xc3\x4c\xfc\xf2\x88\x94\x9a\x77\x9c\x55\x48\x0a\x28\xca\x1a\x24\xdd\x2a\x32\x8e\x35\x78\x27\x2f\xe8\x8e\xd2\xfc\xaa\xca\xd0\x26\x33\x7a\x10\xa1\xcc\xb3\x31\x63\x62\x20\x28\x83\xc3\x0c\x66\x1a\xd2\x3a\x56\x69\x3e\xd4\xb7\x83\xfa\x74\xd1\xa9\x3b\x82\xc8\x92\xa3\xef\x34\x19\xd5\x25\x75\x37\x95\x3b\xf9\x45\xaa\x2f\x72\x24\xd3\xdf\x44\x4f\x3e\x75\xf5\xf4\x1c\xd1\x40\xfc\xe1\x5a\xa4\xcb\x7d\x89\xb9\x5a\x6e\xd6\xcb\x3e\xb9\x04\x42\xf0\x66\x57\xa4\xcf\xc5\xbb\x96\x61\xf9\x5e\x72\x80\xd6\x3a\x7e\xff\x32\xdf\x67\x2a\x48\x30\x0e\xe3\x14\x19\x63\xa6\x59\x67\x2c\xed\xe5\xf0\xc9\x80\x66\x71\x78\xfe\xe6\x61\xd8\xc2\x4f\x82\xa4\x07\xbf\xa2\x57\x08\xa8\xee\x90\xf1\xa2\x7b\x53\x37\x0d\x24\xf1\x9b\xea\x84\x99\x9d\xdd\x7b\x1d\xc7\x07\x75\xec\xf7\xd3\x63\xd3\xc4\x1f\x4f\xf8\x31\xb3\xaf\x0a\xcc\x6f\x50\xcd\x54\x29\x69\x95\xb9\x73\x88\x01\xef\xdf\x24\x0d\x9e\xbf\xbc\x39\x13\x5b\x87\x37\x86\xa6\xc0\x80\x86\xa5\xee\x69\x97\x3a\xc3\x5e\x3c\x81\xe6\xb0\xb2\x4c\x42\x81\x0b\x72\xac\x82\x80\x01\x41\xf9\x10\x51\x4b\x2c\x09\x09\x5c\x60\x3a\xee\x25\xde\xaa\x1e\xc8\x16\x2b\x0d\x76\xca\xd7\x0c\xbe\xe4\xc6\x66\xe9\xae\x1c\x8f\xfd\xad\x4f\xa9\x8e\xad\x6c\x84\x65\x9c\x0d\xb6\x12\x2c\x2d\xbb\x7a\xdb\x51\xc5\x90\xc2\xc0\xca\xdb\x5c\x79\x68\x28\xf9\x93\x1f\xbb\xa2\x4b\x25\x47\xfd\x21\x0c\x43\xbf\x2c\xba\x75\x63\x9d\x86\xc8\xfc\x9d\xfa\x94\xf1\xfa\xce\xa2\xf2\xb6\x01\x2d\x72\x4e\xa9\xb5\xec\xc1\xb7\x7c\xae\xd9\x5f\xfc\xa6\xe6\x83\x1e\xe0\xf8\xe3\x90\xba\xd6\xd3\xfb\x7a\xae\xe5\xb4\x81\x81\xd6\x96\x44\x15\x26\x1a\x92\x4b\xa0\xc6\x3b\xb7\x15\x07\x79\xc5\x69\x8b\x4b\x41\x59\x98\x45\xfe\x46\x87\xec\x37\xea\xfa\x35\x91\xf0\x6e\x28\xfb\xe6\xf9\x8d\x50\x20\xf9\xee\xfb\x2d\xa6\xdc\xc5\x89\x81\x14\x63\x64\x9c\xb7\x05\xce\x6f\x81\xd9\x18\xce\x4c\x68\x0d\x9f\x09\x92\xb7\xef\x2d\xd4\xee\x20\x93\xc4\xf3\x6c\x57\xdf\xe4\x90\x03\xaa\xde\x21\xe3\xcd\x23\xa2\xe2\x21\xa6\x58\x84\x4f\x66\xdf\xa1\x14\x63\x14\xd0\x57\x5f\x64\x41\x4c\x48\x2b\x1e\x37\xc6\x90\xc9\x8a\x41\x90\xe1\x7c\xf7\x3e\xb3\x16\x1e\x84\xbb\x93\xca\xe5\x65\x2c\xf3\x54\xed\x74\x7f\xab\x10\xf5\x7e\x88\xb9\x58\x95\x8d\xbb\x48\xb1\x9b\x2b\xe8\x43\x09\xfd\x10\x81\xf7\x21\x4b\xd7\x44\x37\x12\xdc\x20\x75\x9b\x16\x2a\x95\xe7\x5a\xb8\x61\x7f\xee\x69\x05\x56\x65\xdf\x03\xfa\x4a\x26\x64\x25\xba\x95\x66\x5a\x4f\x64\x92\x99\x4b\xae\x01\x92\x06\xe2\x37\x31\x3e\x15\x6f\x9b\x18\x36\x88\x67\x0e\x59\x20\xb6\xdd\x27\xbe\xe7\x62\x86\x3e\x8e\x83\xd8\xf6\x4d\x30\xae\x53\x60\x68\x2e\xaf\x9b\xeb\xd0\x23\x19\xe5\x02\x34\x59\x19\xc0\x67\xfc\xfc\x7c\xc4\xaa\xf7\x67\xfb\x1a\xca\x01\xa6\x22\xac\x89\x1b\x36\x9e\xf8\x3b\x9b\x41\x23\xa1\x4e\x11\xad\xc8\xc8\x1a\x8d\xfe\x26\x23\xe2\xeb\x50\x40\x15\xa6\xcf\x6c\x33\x30\xad\x15\x99\x2e\xff\xa4\xfa\xa3\x70\xa2\xac\x44\xde\xd1\x9e\x5a\xc7\x14\x41\x20\x9d\xc9\x62\x71\xed\xce\x21\xdd\x4b\xfc\xe9\x81\x65\x52\x13\x11\xe0\xd2\x12\x2d\xf2\x31\x77\xc6\x42\x7f\xb1\xfb\x2b\xa1\x9e\x72\x04\xb3\x34\x31\x50\x88\x82\x6e\x95\x3e\x3e\x6a\x3c\xed\x62\x2d\x59\xc6\xd9\xf5\xe4\xa1\xf6\xd8\x6d\x9e\x9f\xfa\x03\x0f\xe4\x63\x4b\x09\x01\xda\x21\x57\x27\x13\xb1\xb8\x32\x41\xbc\x8f\x42\x1c\x3e\xb0\xb1\x2d\x8e\x72\x06\x5c\x74\xbc\xf8\x80\x4b\x25\xa2\xa4\x7b\xf1\xde\xbc\xfa\x82\x84\x28\x72\xfb\x7e\xf6\x24\x7e\x1b\xea\x76\x1e\x5f\x2b\xfb\xe3\x33\xf2\x05\x6b\x38\xeb\x08\xdc\xe5\x66\xc3\xcc\x7c\x4d\xa2\x42\xb2\xc3\xd7\xbd\x68\xec\x3e\x5e\xc1\x6a\xbe\x4f\x7b\xf0\x8a\x8a\xf1\x5f\xe3\x56\x59\x68\x78\xb5\x82\xfb\xc2\xf2\x25\x45\x52\xe9\x11\x69\xd7\xb6\xd9\x68\x09\xf6\x00\x6e\xa0\x52\xd2\x87\x0f\x32\xc6\x1e\x5b\x92\x07\x5d\x94\x9b\xfd\x22\x1b\x6b\xf3\x58\x74\x53\x41\xc5\x16\xf9\x99\xc6\x39\xe5\x24\xeb\x70\x6f\x86\xfd\xbc\x32\x17\xbb\x8f\x80\x19\x4d\x16\x4d\x58\x91\x31\x6c\x4e\xe6\x04\x9f\x7d\xef\x23\xfc\x40\xfd\xda\xbe\xaf\x61\x97\x2d\x56\x8d\x82\x7e\x1e\xe1\x3b\x96\xb4\xd8\xf3\xd6\xbd\x8b\xc9\xa4\x62\x55\x09\x1c\xf2\xf9\x0c\xa3\xea\xe5\xa0\x58\x83\x4d\x01\xb4\xff\xdb\x41\x68\x89\xd8\x3b\x75\xfa\x82\x10\x73\xae\xed\x54\x35\xe7\x3a\x76\x2e\xef\xb9\x79\x55\x06\xff\x6c\x16\x8a\x62\xca\x2f\x78\x14\x59\x79\x61\x46\x4c\x7c\x29\xa9\xf2\x70\xee\x3c\x91\x06\x47\x00\xd5\xcd\x56\x38\x5d\x75\xce\xa5\x97\x26\xf6\x73\xc8\xb5\x71\xee\xdd\x4c\xbd\x69\xec\x85\x0e\x31\xa4\x13\x7b\xda\x5a\xe0\x3b\x78\xf6\xa1\xf0\x4e\x05\x9b\x5b\x68\x55\x9e\xac\xc1\x11\xae\xb4\x25\x27\x32\x98\x6f\x6e\x22\xfd\xb2\x44\xd3\xf6\xfb\x6c\x05\x40\x05\x7b\xde\xfe\x1e\x2e\x66\x4e\xf9\x61\x9e\xfb\x0c\x61\xa6\x01\x90\xc6\x9c\x24\xdf\x6a\xe8\x7a\xb8\xaf\x6a\xb7\x49\x2b\x31\x07\x2f\x3b\x4e\xb5\x29\x2b\x3a\xf6\xef\xa9\xfd\x2a\x86\x20\x41\xda\xdc\x5a\x4f\xf0\xd9\x8e\x4e\x81\xcb\xad\x70\x04\xcb\x06\x5d\xeb\xe8\x14\x75\x7c\xce\x6a\x33\x75\x70\xdf\xa6\x2e\x75\x73\x1c\x3a\x8c\x90\x39\x1b\x3e\x4f\xb6\x0e\x77\xef\x2e\x7f\xfe\x51\xf5\xd4\x76\x6c\x44\x41\x68\xef\x97\x55\x26\xfc\x7e\xfb\xe6\xd4\x9d\x65\xc8\x9f\x8d\x56\xe0\xd8\x38\x9f\x0a\x0c\xe2\x4f\xcd\x5e\x13\x16\xaf\x0a\x99\xed\x4a\x54\xbf\xeb\x91\xe0\x96\x82\xa4\xf9\xf3\x0f\x1f\xa2\x03\xe3\x61\xa5\xc1\xbd\x5f\x96\x84\x67\x61\x9b\x24\x7a\xe6\xc2\x4c\xf3\xae\x86\x2c\x91\x9d\xc2\x42\xec\x62\x64\xac\x97\x8a\x2b\xa2\x82\xb6\xec\xd3\xe6\x74\x2d\x29\xf2\xc5\xc5\x8b\x60\xd4\x2a\x22\x8e\x5c\x96\x51\x3b\xd1\xd5\x0b\xf3\xb1\xca\xb9\xcb\x82\x00\x7b\x8d\xca\x6b\xb4\x7b\x38\xf0\x5e\xa1\x23\x03\x1c\x93\xe9\xd0\x0d\x6f\x43\xb5\xab\x85\x89\xde\x57\xb5\xa1\xae\x67\x92\xe5\xac\xc5\xf8\xa8\xa5\xf1\x7c\x2d\x1d\x91\x33\xc5\x4a\xdb\x50\x40\x70\x06\xa3\xd3\x7e\x9d\x99\x17\x24\xae\xcb\x4d\x42\x85\x61\x80\xf1\x50\xc6\xf0\x72\xae\xbb\x98\xff\x12\x8c\xbf\xcb\x8a\x24\x8b\x95\x0f\x0d\x35\x62\x72\xbd\xdf\xf7\xac\x13\x76\x32\x46\x99\xf0\xc0\xe9\xc6\x42\xf6\x7e\x0e\xdf\xeb\x1a\xcf\xec\x11\x7d\xd6\x98\x76\xfb\x63\xa5\xfd\xf8\xaf\x4e\xf7\x07\x92\xc7\xf9\x77\x73\x65\xb1\xd4\x61\x3d\x71\x8a\xc7\x04\x45\x64\xe6\x39\x7b\xcd\x3c\xb0\x43\xa5\xfd\x3d\x9d\xc2\xb2\x14\xd1\xbd\x33\xfb\x9c\xb7\x15\xce\xdf\x7b\x62\xb7\xe7\x25\x66\x2a\x6e\xda\xcf\x74\x19\x2e\x95\xfe\xe2\x17\x2a\x53\x21\x99\x2f\x18\xad\x07\xbf\x39\x60\xdf\x24\x43\x56\xdb\x6c\x5d\xd7\x1d\x7c\xad\x71\x59\x54\xba\xa2\x10\x23\xb5\x05\xf4\xca\x2e\x6b\xb1\x5d\x74\x43\x37\xf8\x19\xf7\xed\x4d\xd2\x14\x71\x0d\x4d\x8c\x88\x81\x17\x36\x39\xc7\xca\x4f\xe8\x31\x75\xea\xc5\xdd\xed\x5e\x73\xb4\xe4\x99\x9e\xe1\xea\xbe\xcf\x58\x36\x17\xeb\x77\x1a\x73\x37\xf9\xcb\xd0\xf4\xcc\x74\x44\x71\x7c\x88\x50\x29\x12\xae\xfb\x5d\xf1\x9c\x0d\xd7\x72\x66\xfc\xce\x74\x00\x46\xad\x14\x8d\xd0\x5d\xfe\xc3\x38\x4b\x96\x5b\x33\xc7\x37\x77\x3e\x7a\xc8\x1e\x2e\x0d\x7e\xa9\x6a\x9a\xae\xc8\xcc\xb3\x04\x79\x0c\xd8\x33\xdf\xdf\x77\x1c\x62\x3f\xf5\x07\x1d\xd5\x3b\xf6\x80\x3c\x12\xb1\xdc\x7a\x51\x0c\x99\xfb\x01\x4a\x39\x85\x76\x06\xdd\xbe\x2d\x32\xec\xea\x95\x97\x3b\x31\xfb\x11\x00\x9d\x4b\xe3\x49\x0a\x36\x46\x39\x93\xbf\xbb\x4c\x68\xe8\x0e\x4a\xf7\x51\xd0\x49\xef\x82\x7d\x91\x11\xa3\x44\x56\xba\x0a\x91\x1d\xe5\x41\x9b\x65\xa9\xb9\xe4\x8b\x1b\x5f\x1a\x31\xac\x8b\x79\x44\x85\x6e\xf6\xc3\x1a\xd6\x35\xa4\xa1\x93\xb5\xb7\x69\x71\x13\xfb\x3a\xd3\x6b\x94\xa1\x56\x45\xf2\x1b\x50\xc6\xf5\xcb\xf6\x5f\xfd\xb4\xe7\x58\xf0\x74\x4a\x34\x89\xdd\x79\xdb\x6e\x47\xc1\x65\x9a\x06\xf6\xda\x56\xdc\x9e\xf9\x5e\x88\xb0\x62\xcd\xe4\x30\x07\x4f\x8e\xc0\xb4\x52\x3c\x6f\x86\x89\x19\xeb\xbd\x89\x47\xc0\x01\x5d\x12\x0c\x00\x02\xf4\x61\x4e\xf1\xe3\x4e\xc4\x7c\xa0\x44\xb8\x8c\x50\x7b\xc6\xd0\xa1\xad\xa6\x53\xfd\x7a\x89\x95\x92\x86\x90\xd0\x15\xe0\xc1\x66\x3b\x86\x9b\xca\xb4\x77\xc1\x85\xfc\x6c\xc8\xe4\x47\x78\x47\x92\xa5\x70\x1b\x46\x84\xa3\x5a\x2b\x8b\x99\xe9\x63\x3d\xd6\xbe\x75\x1e\xd9\xba\x78\x7d\x2a\x2c\xa7\xbd\x0f\xd5\x91\x01\x2c\xfe\xde\x6e\xa8\xbb\xaa\x24\x3a\x09\x92\x0c\xdb\x9c\xb3\x1f\x3a\x41\x25\xee\x12\xbf\xb7\x35\x7e\x01\x2b\xba\x2e\x8b\x8b\x6d\x49\xfe\x12\x7c\x3e\xa3\x83\x9c\x0f\x79\x75\x5e\x6e\x7f\x92\x32\x5d\x0f\x0f\x7a\xb2\x05\x9b\x0e\x2c\x3a\x60\x09\x1a\x66\x44\x61\xad\x53\x3d\x8d\x1c\x46\xdd\xad\xc4\x4b\x86\xa8\x54\x4f\x7c\xb8\x2c\x7c\xbc\xb2\x2f\x5c\x42\x32\xcc\xdd\x87\x3b\x8d\x97\xb0\xef\x64\x9f\x68\xf7\x0a\xbe\x28\xc4\x0c\xfe\xbd\xb0\xca\x97\xfc\xe6\xbc\x1b\xca\xca\xf8\x4c\x8b\xb0\x8a\x43\x88\xb3\x95\xd8\x61\x43\xd9\x44\xb4\x66\x71\x9d\x2a\x91\x55\x21\xe8\x25\x7c\x6c\x50\x04\x7b\xd1\xae\xc4\x58\xe8\x2a\x0f\xcb\x0c\x5f\x3c\x97\xa2\xbc\x96\xe3\xc9\x64\x5a\x44\x50\x3a\xa6\xe2\x85\x94\x1f\x40\x78\x8a\x0e\x89\xf0\xf4\x3c\x85\x1b\xe9\x88\x1a\x93\xb2\x6c\x92\xda\x92\x51\x77\xc3\xe2\x2f\x6d\x91\xa0\xdd\x8c\x93\xa7\x4f\x9f\xac\x65\x44\x0d\xa8\x4d\x63\x75\x08\xe3\x93\xd6\xc7\x63\xf6\x74\x42\x31\xdb\x09\x85\xe2\xcc\xcd\x59\x90\x65\x5a\x00\x6c\xf7\xdb\x90\xac\xd4\x97\xcd\x8d\x49\x1a\x2b\xeb\x88\x66\x1b\xc6\x25\x28\xa5\xdb\xee\x8a\xb7\x47\x94\x3a\x19\x53\x75\xef\xd5\x03\x62\x24\x4a\x38\x85\xe1\xc9\xc5\xb2\x13\x1e\xf8\x5a\xad\x8d\xee\xe4\x88\x00\x7d\xae\x40\xea\x3f\x07\x4d\x15\x50\x4a\xfb\xc3\xed\x5c\x0f\x25\x61\xc8\x64\xc6\xa6\x83\x66\x04\x9f\x2f\xb5\xb1\xaf\x53\x65\x0d\x0e\x6c\x6b\x2e\x50\x39\xcb\xe0\xdd\xea\xb1\xad\x8a\x62\xd0\xb9\x38\x69\x9b\x61\x2d\x64\x3e\x3d\xdb\x4c\x19\x8c\xfa\xa7\xd9\x5d\x69\x67\xea\x6d\x4b\x11\x35\x8b\x60\x06\x87\xcc\x60\xd8\xfc\x51\x42\x63\x66\x9e\x33\x53\x8b\x41\xa0\x1a\x13\x18\x69\x12\x44\x71\xd9\x4c\x6f\x6c\x3e\x9b\x6b\x2c\x43\x45\xc5\x31\xc7\x48\xca\x2f\x49\x49\x9a\x6c\x6e\x24\x2f\x1c\x32\xd0\x72\xdc\xc9\xca\x6c\x2d\x5a\xfd\x35\xcf\xf8\xe1\xf4\xea\xba\x65\xea\x9c\xb7\xf7\x39\xc2\x59\x82\x02\xa3\xa1\xd2\x3b\xbf\xa8\x64\x18\xd9\xf5\xd9\x28\x98\x1d\x36\x57\x9b\xce\x83\xce\x60\x0e\x41\x22\x26\x59\x82\xf6\xe6\x00\xec\x33\x32\x30\xd3\x84\xc0\xb6\x6e\x69\xd2\xbf\xd9\x0f\xbd\xcf\xc9\x29\x4e\xfe\x1c\xe9\xb2\xf1\x57\x87\xbd\x51\x95\x24\xab\x1c\x24\xc1\x98\x48\x7a\xb5\xc8\x82\x10\x24\x16\x95\x16\x5b\x50\xd8\xf9\xf6\xd0\x95\x09\x50\x7c\xfe\x1e\xd7\x21\x7d\xd3\x04\x27\x7b\xde\x64\x12\xc3\xe6\x58\x32\x84\xde\x0f\xbd\xe9\x78\x6c\xc6\x92\x32\x7a\x15\xa4\xdb\xeb\x7d\x87\x04\x60\x9f\xad\xca\xba\x34\xd5\xa0\x9b\x0e\x47\x3a\xdc\x5b\xe8\xe4\x79\xcf\x31\x43\xb5\xca\xba\x44\xd4\xf9\x27\x6d\x4e\xdb\x62\x92\xf0\x9b\x99\xe7\x71\xea\xee\x9b\x57\x29\x13\x18\x31\xb5\xda\x1e\xc3\xe6\x32\x99\x59\xfb\x4e\x43\xbd\x58\x6d\x5d\xea\xff\x6d\xf3\x4c\x11\x5e\x7a\x44\xaf\x27\x41\x79\xab\x79\x1f\xf6\xf3\x08\x29\xd9\x5e\xa8\xb2\x41\xc4\x50\x26\x16\x19\x8a\xe3\xe7\x10\xd7\x02\xac\xb5\x74\x2f\xb1\xf5\x7b\x2d\xb9\xee\xe1\xe7\xab\x60\x13\xe1\x80\x07\x3f\xaf\xf7\xce\xae\x3b\xdd\x10\x8c\x84\xf5\x33\xd2\xa4\x69\x37\x61\x7b\xb1\xd2\xfd\x51\x74\xa7\x97\x0e\x07\x47\xc0\x45\x50\x96\x48\x12\x53\x42\xe2\x4b\x64\x47\x87\xb1\x4d\x65\x9a\x0a\x12\x04\x3b\x2e\xf6\xce\x79\xec\x23\x61\xfe\xc4\xf5\x77\xed\x53\x1e\xa3\x6a\x93\x0e\x44\x54\x82\x78\x63\xb0\xe4\x09\xba\xfb\x76\x5c\xe2\x8a\x89\x4b\x79\xc5\x69\x93\x4e\x23\x57\x4e\xc0\x61\x2c\x66\xba\xc5\x30\xd4\xa8\x61\x16\xd6\x3c\x97\x34\x4c\xaa\xb6\xcb\x98\x84\xf6\x8b\x0b\x06\xc9\xca\x27\x36\x90\x21\xbf\xbc\x57\xb9\xaa\x2e\x7f\x0d\x2d\x62\x44\x92\x98\x43\x96\xdf\x9d\xc8\xa8\xc4\x6c\xce\x5b\xc5\xf7\x3a\x74\xb5\xbf\xcc\xf4\xc5\xae\x1e\xd6\xeb\x29\xaf\x49\xc3\x25\x43\x37\x82\xb7\x1c\xaa\x50\xab\x5c\xbb\x4b\x2f\x09\x4a\x56\xc7\xab\x0d\xc8\x10\x32\xd1\x0e\x09\x4b\x15\x6b\x3a\xb7\x3a\x0b\xce\xd6\x73\xdf\xc2\x4d\xca\x6d\xde\x4b\x6a\x1c\x36\x45\x8d\xe3\xfa\x1f\x87\xf5\xff\xab\xe7\x84\x2f\x14\xb6\xc4\xc8\xd2\x66\x77\xcf\xc9\x28\xb7\x0a\x21\x2b\xd1\x2d\x0b\x91\xd4\x10\x80\xb4\x36\x2a\xb5\xec\xd4\x33\xf8\xd3\xce\x48\xea\xee\x01\x84\x43\x17\xcc\x6d\x58\x57\x3e\x0d\xea\x9c\x08\x64\x3e\xe0\xe6\x5b\x81\x21\x9c\xa4\xb4\xaa\x9e\x93\x8d\x41\xa2\x60\x11\xb2\xfb\x99\x6c\x4d\xc1\x01\x29\x70\xa6\x40\xa0\x2a\x51\x45\xef\x30\xde\x21\x99\x24\xb2\x59\x11\xb0\xa1\xc6\xb7\xf9\xe7\x26\xec\xde\xeb\x0a\x14\xdc\xe4\xa7\x67\x7e\x58\x1e\xd0\x03\x0a\x2b\x33\xdd\x24\x04\x97\x45\xbc\x9e\x74\xa7\x0d\xbc\x76\x42\x02\xb4\x73\x36\xc0\xf8\xc0\xc6\xaa\x0f\x63\xb6\x64\xc5\x60\xef\x4b\xb6\x7b\x44\xe0\x13\xcd\x7a\x90\x15\xc5\x08\x8f\x76\x46\x66\xce\xe4\xc9\x12\x36\xc4\x55\x12\x46\xa5\x95\xa1\x7e\xbe\x4e\xe5\x27\xec\x0a\x11\xfa\xe9\x47\x2a\x01\x71\xe1\x61\x9c\x85\x00\xbb\xe9\x73\x5a\xd4\xab\xec\x89\x14\x03\x74\x08\x7a\xe1\x0e\x70\xa5\xf3\xb3\xf9\xa6\x44\xad\x74\xcd\x42\x3a\x38\x8f\x04\x16\x43\xf0\xfa\x2d\x63\x4f\x92\x4e\x1d\xf0\x4d\xbe\xc8\x5b\x39\x84\x5b\xf8\xaa\x95\x18\x3c\x84\xe5\x4f\xf6\x79\xa1\xc0\xaa\x6a\x02\xd9\x5a\x78\x29\xb1\x7e\xb2\x55\x9f\x49\x22\xca\x6b\x20\x70\x9e\x08\x65\x7a\x35\xcf\x9a\xd9\xc4\xc6\x5d\xc3\x6f\x0d\x45\x41\x31\x7f\x29\xad\xe9\xc3\x4d\x6f\x82\xc5\x0a\x7b\x37\xd8\x7c\x2d\x9d\x29\x55\x86\x86\xb4\xb7\x10\x3d\x74\xd0\xb0\x0a\xdb\x6a\x5c\x4a\xfa\xed\x57\xf7\xd0\x3d\x45\x05\x3a\xd1\xed\xb0\xe7\x45\xc6\xb9\xee\x8f\x8f\xb1\x16\x6b\xc4\x9a\x53\x38\xa7\x61\x10\x43\x3b\x8d\x07\xc7\x8c\x9e\xa4\xff\x2e\x96\xe6\x42\x14\xce\x02\xf9\x8b\xbf\x91\x35\x30\x4b\xaa\x8e\x88\x1d\xd2\x62\x1a\xa3\x6d\xb3\x0f\xbf\x3b\x95\x8c\x78\x9a\xc1\x1e\x5a\xa8\x77\x7c\x89\xa5\x1d\xa2\xdd\xab\x19\x98\x45\xcb\xf7\xdb\x6b\x8e\x61\x7f\xe2\x84\x9e\x91\xb7\x73\x40\x60\x58\x29\x3d\x4b\xdf\x2e\xbe\x7c\xb3\x3c\x06\x29\xb8\xa3\x93\x9d\x36\x2e\x05\xb7\xa4\x3d\xbe\x31\x2b\x5e\xea\x8e\x6a\xaf\xe0\x17\xae\x89\xa2\xa2\x73\x7e\xf8\x50\xbd\x49\x67\x9f\x73\x16\x34\x65\x43\x0e\x8d\x84\x39\x8a\xde\x9d\x7c\xc2\x70\xda\x01\xfb\x5a\x17\x11\x44\x23\xe2\xfc\x45\x82\x96\x68\x2a\xd9\xe8\x2b\x78\x69\xb1\x36\xfa\xbd\x19\x2e\x01\x5b\x2f\xe4\xc1\xda\xce\x67\x33\xcb\x49\x70\x92\x22\xde\x95\x4a\x08\x3a\x93\x45\xc2\x31\x7a\x90\x19\x91\xc5\x19\x7a\x14\x9f\x51\x9b\xb1\x07\x3e\x61\xd6\xf4\xa7\x56\x65\x1a\x27\xc7\xfa\x24\x33\x78\x44\xc1\xc9\x9d\x4e\xca\x2a\xec\xfc\xe5\x8b\xbe\x45\xcc\x03\xd9\xc1\xf2\x6a\x08\x41\xd7\x22\xc5\x51\x2a\x52\x1e\x66\x6c\x72\x02\x10\x50\xa1\x42\x31\x82\x3b\xe8\xb5\xa6\xe6\x93\x26\x36\x04\x0a\x8d\xa9\x0f\x4f\xf5\xe5\x2c\xe4\x86\x43\x1f\xf0\x71\x48\xa2\x9b\xaf\x2f\x25\xd1\x2b\x8c\x3a\xe5\x62\x2d\x96\x4f\x37\x05\x9a\xee\xae\x78\x7f\xce\x81\x4b\xaf\x91\xd6\x44\x32\xa6\xa7\x21\xad\x0e\x61\xdb\x95\x3b\xa8\x77\xdf\x85\x8e\x77\xdf\xaf\xea\xba\x95\x7b\xf9\x95\xc5\xe3\x06\x43\x89\xcd\x34\x8d\x75\x75\xd9\x6c\x0e\x39\x86\x58\xb2\x84\xdf\x83\xf0\x2a\xd6\x1f\xee\x47\x83\xad\x88\xce\xd8\x7e\x36\x4b\xd5\xfe\x2f\xf7\x1d\xd3\x71\x7f\x79\x41\xf8\x6c\x62\x19\xc2\xc4\x2e\x2c\x59\xac\xde\x34\x89\x66\x2a\x48\x4c\x25\xfb\x8e\xb2\x88\x79\xf1\xd9\x28\x67\x30\x1a\x4b\xad\xf2\x24\xe3\xe0\xe6\x64\xb5\x33\x1d\xae\x9b\x53\xc0\x60\xb3\x5d\xdb\x2a\xd8\x87\x00\xb4\xa2\x25\xa2\xe7\xe6\xb8\xf0\x6b\x7a\x9c\xa2\xa0\x92\x8a\xbf\x76\x6c\x2b\xb9\x78\x9c\x1e\x23\x7d\xd9\xcc\x2e\xed\x9b\x13\x7c\xd9\x8d\x4e\x34\xc1\xc9\xbd\x6f\xb3\x52\x6b\x76\x9a\x0c\x6e\x12\x4d\x55\x63\x58\x1a\x0c\x3b\xf9\x0b\x98\x9a\xde\xa5\xcb\xbe\xcd\x92\x7b\x9c\xbe\x33\x7f\x25\xcd\xe4\x38\x36\x33\x59\x83\x17\x6b\x74\x1a\x32\xf3\x3d\x36\x83\xdd\x2a\x13\x4d\x1f\x3e\xfb\x91\x0c\x82\xc2\x6f\xaf\x4b\x85\xcd\xa0\x39\x11\xd5\xb7\xb7\x22\xb3\x79\xb7\xe9\x19\x3d\xab\x0f\xd6\x77\x2f\xe7\x43\x3a\x1f\x90\xbd\x66\x0a\x68\x32\x21\xd0\xbf\x27\xd5\xba\x3a\xc1\xe6\x5b\x4d\xdc\x40\x09\x38\xe7\x55\x6f\x6b\xce\xa1\x4d\x99\xd9\xbb\x2f\x00\x98\xb3\xe6\x34\x93\xa6\xcf\xc1\x99\xc7\x0e\x4d\xf6\x34\x61\xa9\x97\x04\x03\x08\x1d\x74\x09\x1d\x10\x48\x05\x01\x17\x18\xb1\xa7\xca\x43\x98\xbe\xaf\xad\x05\x7c\x09\xf3\x6e\x1c\x29\xf0\x22\x21\x7d\x32\x54\x06\xef\xfd\x48\xca\xfd\x5e\x6c\xfe\x3e\xca\xda\x7f\xe4\x94\xca\x96\xc5\x67\xbe\xeb\xa6\x71\x65\x00\xdd\x37\x55\xcd\xb2\x0e\x27\x99\xd9\x80\x29\x0f\xe5\x55\x75\x88\x99\xb1\xb9\xc3\x7d\x5b\x31\x98\xd8\xc2\x66\xd6\xb6\x32\x41\x63\x97\xab\x1d\xb4\xb1\x96\x20\xd3\x89\xf4\x8b\x74\xca\xf6\x4e\x37\xca\xcc\x56\xac\x4f\xfc\x7e\x0f\xf9\x57\xaf\xac\x57\x06\xb7\xc8\x93\xa9\x78\xeb\x2b\x7a\xe5\xfc\x69\x07\x1b\xea\xd8\x44\xc4\x1a\xc9\xc6\xcf\xc8\x58\xd9\xa6\x1e\xdc\x76\xb4\x03\x19\x6d\xed\x9e\x2c\x67\xc8\x0f\x0f\xb8\xb8\x2c\x3c\xad\x07\x7d\x84\x43\x57\x41\xce\x25\xe9\x8a\x4c\x76\x8d\x27\x21\x8a\xdc\xb3\xdd\x36\x73\xd6\x32\xd7\x03\x84\x9e\xaf\x81\xc3\x27\x86\x9c\xa2\xd7\xbd\x90\x86\x29\xc4\xf4\xe1\x30\x21\x6d\xd5\x49\xd8\x4a\xcf\xe6\xeb\x02\xd2\x88\xc0\xc2\xb8\x96\x7d\x71\x66\x1a\xb8\x31\xd4\xf8\x5c\xc3\x9e\x0e\xbf\x61\x0e\xd1\x91\x58\xdc\x44\x56\xe1\x48\xce\xa5\x4f\x15\x1c\x1d\x14\xd3\x0d\x4d\x6f\x1c\x65\x4c\x3b\xf1\x8c\x08\x32\x69\x2d\x61\xee\x48\x29\x2d\x26\xee\x9e\x0f\x11\x0f\xe4\x2d\x3c\x31\x19\x75\xcd\xc0\x70\xd9\xfa\xc1\x6e\xe7\x05\xbb\x59\xaf\x78\x32\x75\x51\x62\x5c\xb6\x64\xe6\x56\xfd\xf5\x69\x2a\x2c\x67\x5e\xa7\xe6\x29\xc8\xf9\xb2\x4c\x25\x82\x11\xe9\x07\xc0\xc3\xfd\xda\xd5\xf7\x12\x2a\x3e\x1c\x36\x86\x96\x51\x34\xa7\xef\x81\xc4\x12\x02\x32\x46\x25\x91\x0d\xbb\x11\xb6\x9d\xa0\xbd\x19\x31\x34\xcc\x52\xc2\x62\x54\xaf\x56\x10\x99\xd1\xd2\x60\xce\x7b\x18\x9f\xd7\x35\x51\x64\x19\xd0\xe4\xfc\xe5\x00\xed\xbf\x4a\xa6\x5d\x04\x94\xb7\xd8\xad\xc7\x73\x2f\x99\x0e\x32\x03\x61\x76\xf5\x10\x63\x4b\x10\xfe\x3c\x04\xd4\x2e\x1c\xf3\xe3\xae\x8f\xf0\x1f\x9b\xfd\xaf\x8b\xa5\x32\x82\xe4\xf8\xff\xac\xad\xff\x31\x93\x21\xa1\xe0\x57\x1b\x0a\x84\xaf\xc9\x81\x63\x1e\x92\x88\x2c\x97\x3c\xed\x15\x48\x4e\xe5\x53\x07\x38\xc3\x07\x97\xbf\x32\xc1\x3a\x3b\x9d\x52\x55\xc8\x31\x6e\x67\x96\x74\x39\x58\x8d\x90\x5e\xd6\x0c\x4f\xbf\x8f\x7f\x22\x36\x63\x9f\x97\xeb\xde\xed\xc3\x87\x99\x2e\x05\xa4\x9b\xd1\x60\x1f\xae\xd4\x7d\xb2\x99\xae\x87\x20\xe4\x5b\x10\x48\x8b\x8b\x6c\xd5\xcc\xdd\xc3\xbc\x1d\x6d\x6d\x58\x02\x0b\x56\x2b\x8a\x39\xa3\x6f\x9d\x08\xb8\x3d\xbd\xf9\xc7\x65\x57\xca\xe7\xfc\xd4\xf3\x41\x9d\xad\xd8\x49\x6e\x5e\x57\x22\x3e\x69\x7f\xea\xa8\x18\x8b\xbc\xbd\x4e\x30\x2d\x94\x21\x9a\xf3\xe2\xe4\xa0\x4c\x5c\x89\xf3\x98\xec\xa0\x70\x77\x4f\x00\xd7\xe1\xaf\x00\x74\x6a\x61\x61\xf5\xe3\x2e\x63\x37\x0a\x74\xcd\x5e\x8d\x7b\xb2\x84\x2b\x72\xae\x48\x4a\x44\xf0\xcf\x51\x0e\x0b\xf2\x92\xdf\xab\xd0\x6d\x49\x9b\x68\x71\x6d\x96\xab\x43\xe5\x9a\x26\xb9\x48\x41\xa4\x69\x13\x93\x25\xcd\x0e\x90\x12\x50\x22\xc3\xf4\xfc\x22\x04\x99\x8c\x29\x3a\x44\x1d\xd1\xd0\xca\xba\x9e\x85\x79\x31\x27\x6e\x2b\x83\xa4\x24\xe2\x5f\x36\x7a\x60\xc9\x39\x0f\xc3\xd4\xe7\x8f\x2d\x98\x58\xdd\x4d\x3b\x7d\xc3\x35\x65\x37\xb3\x8b\xaa\xf6\x71\x96\xdc\xde\x4b\xa7\xee\xf9\x60\x71\xab\xd9\x69\x96\xae\x90\x72\xc1\x79\x76\xb2\x33\x94\x63\x3b\x1d\x29\x50\xac\x99\xc5\xb4\xdf\x39\x3d\x04\x97\x47\xc3\xaa\xf4\x47\xc3\x87\x92\x78\xd7\xf1\xca\x2a\x50\xa4\xa9\x3f\x05\x0b\x2c\xb1\xb8\x9f\x13\xcc\x83\xd2\x55\xe3\xb6\xe0\x44\x4f\x16\xb4\xd5\x82\x5e\x0d\x59\x49\xa2\xb8\x3c\xdd\x4e\x50\x96\xcf\x98\xba\x87\xce\xc8\x5d\x0c\x7d\x28\x39\xcd\x12\x9d\x77\x91\x4d\x35\xdf\x0f\xad\x73\xd5\x64\x0c\x06\x3f\xaf\x57\xf5\x58\x3b\x87\x40\xa1\xe5\x51\x96\x62\x26\x76\x91\x6d\xa3\x5e\x32\x4b\xb5\xcc\xae\x27\x60\x29\x93\x02\x29\xc6\x29\xc7\x24\xcb\x1d\x9e\xf1\xc6\x0d\x5f\xe9\x94\xb0\x46\xcb\xe3\x7b\xf0\x72\x12\x7c\x96\x6a\xb0\xec\xa7\x0b\xbc\x7f\x2a\xc4\x33\x00\x2c\x4c\x35\x36\x4b\x86\xf2\x75\x07\xb2\x29\x36\x35\x59\x87\xc3\x03\x00\xeb\xf0\x7d\x41\xc8\x92\x0c\xd0\x8c\xc8\x75\x6d\xbf\xe7\xf1\x4c\xd1\x84\x0d\x5e\xc8\xcc\x4b\x17\xb6\x98\x24\xfb\x81\x97\x2b\x66\xcc\x6b\x7d\xee\x0f\x25\x7d\xd5\xdc\x6f\x83\x0f\xef\x92\x36\xf8\x49\x12\x84\xa9\x33\x7e\xdd\x52\xc9\x82\x70\x92\xdc\xe1\x39\x1f\x32\x33\xbc\x64\x95\xb5\x64\x3c\x56\x26\x30\xfb\xad\x58\x86\xc2\xd0\x26\x2d\x27\xad\x69\xa9\xb5\x30\xdc\x3a\x03\x14\xbc\x47\x02\x85\x41\xb6\xde\x63\x2b\x54\xab\x32\xbe\xc4\x5a\x86\x16\xb4\x69\xfc\xa0\x0c\xf6\xb9\x75\x89\x70\xc8\xcc\x52\x3c\xd8\x43\xd8\xb5\x74\xed\x18\xe4\x65\x61\x66\x75\xce\x4b\x87\x5d\x27\xcc\x87\x90\x3e\x0b\xd2\x00\xcc\x73\x3d\x70\x48\xa8\x68\xd2\x0c\x6f\x72\x6d\xd3\xb1\x34\x61\x51\x39\x64\x3e\xf8\xcc\x50\x18\x4d\x08\x8a\xc2\x92\x09\x28\xfc\x1a\xef\xe3\xa7\x56\x0f\x91\x49\xb4\x34\x43\xa1\xd2\xd4\x18\x32\xa2\xf9\xd0\x95\x91\x54\x6f\x08\x2a\x86\x76\x10\xc3\x0d\x4f\x57\xf4\x08\x1a\xb3\xf2\xdf\xe9\x10\x3f\x64\xa7\xb3\x8b\xf4\x57\x48\xc0\x35\xf1\xb6\x7a\x38\x1a\x2e\x98\x86\x39\x81\x56\xce\x1b\x04\x4f\x5f\xdc\xdf\xf9\x98\xc8\x35\x78\x88\x71\xa6\x56\x4b\x34\x00\xe7\xb0\x32\xf6\x0b\xf6\x41\x46\xa9\xea\x11\xe1\xa6\xc7\x53\xdd\x00\xef\xdf\xbb\x1c\x1b\xe5\x18\x9e\x9d\x8c\xbc\x3e\xa1\x7e\x7b\xc6\xa2\x53\x8f\x14\xfe\x4c\x62\x5a\xf0\x73\xe2\x0c\xbb\x6a\xc2\x7e\x1e\x83\x0e\xbc\x5a\xd8\x08\xba\x16\xbf\x33\x0f\x45\x77\x70\x12\x4a\x8f\x0c\x95\x31\x76\xca\x78\xcc\x11\xf4\x13\x09\x75\x18\xf5\x52\x5d\x16\xac\x7e\xa2\x8c\x26\x41\xcc\x92\x71\x8d\x30\x2d\x92\x57\x24\x10\xe9\xfb\x1c\x52\xa0\x92\xcc\xe1\x09\xbe\xde\x92\x25\xa6\x14\xfc\x4b\x4b\x24\xd6\xa5\xbe\xc9\xac\xd9\x09\x8e\xb8\x08\x09\x34\x05\xf1\x70\x76\x1b\x07\x37\x6a\x90\x84\x03\xf5\x1b\x29\xcf\xb2\x99\xcf\xa1\x01\xf3\xd9\xba\x71\x02\x79\x2b\x9c\x5f\x4b\xe4\x8b\xf7\x9a\x4e\x9f\x03\xd3\x83\x8b\x41\x7e\x65\xa9\x1f\xb5\x77\x22\x87\xcf\x48\x7a\xc9\x1f\x95\xf7\x05\xfb\xb9\x00\x38\x04\xc6\x12\xf9\x61\x47\xb4\x33\x10\x5d\x32\xfd\x80\x7d\x5c\x8b\x5b\x1d\x93\x38\x80\xa8\x4b\x3b\x8a\x3f\x13\x16\xa6\x49\x60\x28\x20\x10\x10\x80\x66\xa4\xe9\x9d\xab\xb2\xa5\x57\x29\x6b\x6b\x4e\xaa\x2e\x5b\xa1\x3a\x1c\x0a\x73\xdf\x84\x19\x69\x12\x53\xe9\x42\xe6\x66\x32\xa4\x69\x9a\x6a\x48\x55\x17\x97\xa7\x18\x08\x45\x05\xcd\x6b\x1b\xd1\x7a\xe0\x3b\x03\xe0\x6e\x2d\x6a\xe3\x07\x81\x1e\x67\x8d\x34\x15\x3d\xd5\x4f\xea\xcf\x9f\x3e\x9e\xd4\xec\xd5\xe3\xf5\xbb\x9e\x0d\x36\xe9\x0b\xb8\x8a\xb0\xa4\x72\x1d\xca\x1f\xc7\xe6\x6e\x41\xca\x84\x3c\xdf\x60\x07\xbe\xb7\x6c\xa0\x25\x53\x6b\xea\xc8\xda\xfc\x00\xf4\x69\xa2\xea\xc1\xe0\xc3\x61\xa9\x9a\x94\x85\x7f\x94\xae\x82\xf5\xfc\xb7\x18\x53\xa3\x30\x51\x5e\x97\xb1\x34\x79\x12\x62\xb0\x51\xc2\xf5\xd2\x78\x4c\x86\xd8\x1e\xe3\x8e\x61\x17\xef\xca\xaa\x08\xde\x6c\xa4\xac\x45\x82\xd2\xa3\xf9\x33\x39\x84\x31\x12\xd9\x3d\x43\x26\xe9\x0e\x69\x08\x96\xe5\xd8\x14\x4b\x6d\x91\x75\x40\x68\x81\x84\x2a\x07\xf1\x41\x3e\x84\x91\x18\xb5\x18\x74\x9b\x6a\x26\xf8\x0d\x28\x67\xbe\x5c\xf6\xd4\xc9\x16\x13\xd5\x7c\x5e\xae\xbc\x3a\x48\xf3\xea\x89\xc5\x80\x42\x38\xc0\x50\xb6\xfa\xc5\x98\x11\x78\xfd\xea\x98\x4c\x62\x16\xb6\x59\x86\x4c\xac\x5c\xf2\xc2\x64\x9a\xc0\xc0\x62\x21\xab\xa6\xa5\xae\x79\xe2\xbe\x22\x93\x30\xdc\xa2\xd0\xae\xc5\xe7\xe7\x6c\x92\x78\xe5\x4d\x49\x27\x9d\xaf\xb1\x1a\x40\xeb\x45\xbb\x8f\xe4\x81\xc5\x51\x3f\x51\x41\xe9\xea\xef\x23\x8a\xa9\xf5\x4b\x18\x80\xd6\xba\x03\xed\x1f\x5a\x64\x89\xf1\xe0\x8a\xc2\x8c\x8c\x4d\x7e\x5d\x84\x6a\xdd\x62\x37\x7f\xdc\x38\x36\x0b\x7d\xcf\x2f\xfe\xe3\xcb\x28\x87\xb3\x1d\xaf\x44\xc8\xe7\xef\x50\x17\xec\xcb\xd0\xb7\xc9\x4c\x8f\x8d\xb8\x79\xfb\xa5\xda\x7e\x9a\x18\x12\x0e\x5f\x35\x7e\x05\x15\x6c\xd7\x38\xd5\x10\x04\x72\xb6\x69\x39\xa3\xa0\x12\x44\x79\x44\xc8\x9c\x87\xa7\x9f\xce\xb7\x67\x57\x71\xab\x60\x04\xbb\xd6\x79\x51\xde\x38\x74\xf8\xc1\x9b\x5c\xb8\x44\xa2\x2c\xe7\xfc\x3e\x96\xf8\x72\x79\x71\x62\xc5\x13\x06\x1a\xbd\x26\xd0\xc0\xd1\x3c\x14\xb8\xcf\x79\x6b\xea\x22\x4b\x79\x5d\xac\x5e\x7b\xc0\x94\x29\x6b\x29\xe6\x02\x75\x7f\x27\x8a\x1c\x32\xaf\x89\x0a\xf1\xe9\x6a\x49\x7e\xf0\xa0\x28\x22\x13\x4d\xac\xe5\xc7\x75\xee\x9e\xcc\x4c\xb0\x1e\x1e\x14\x3e\x1d\x51\x1e\xda\xfa\x15\x8b\xb6\xba\x1e\xd7\x99\x39\x27\x2d\xc1\x05\x2d\x73\xb1\x50\x9d\x46\xd1\xe9\xe3\x1d\xf2\xf2\xeb\x8f\x7a\xf5\x70\x68\x87\xf6\x2c\x33\xab\xc6\x0d\x6f\x15\x0a\xfb\x42\x4e\xb7\xd5\xbf\xbb\xc0\x6f\xfc\xed\xe4\xce\x52\x0f\x4a\xa4\xb2\xf3\x0c\x15\x13\xda\x76\x05\xbb\x7c\x6e\xbd\x1a\x8f\x4b\xc8\x53\x67\xe6\xdf\xbb\xb2\xb6\x5c\x90\x6f\x31\x96\x72\xeb\x78\xc2\xc4\x03\xba\x3c\x0f\xe9\x89\xaf\xfa\xac\x46\xbb\xb0\x75\x06\x3c\x88\xb7\x3a\x28\x22\xd0\x15\xd7\x30\xec\x2b\x74\x51\x30\xcf\x61\xb0\x24\xc8\x88\x61\xdb\x50\xef\x18\x28\x43\x3b\x81\xfe\x5c\x66\xed\x8e\x1c\xff\x8c\x38\xd0\x3b\xe9\x26\x5c\x21\xe3\x6a\xae\xd5\xcf\x10\x73\x11\xf3\xf0\x01\xfd\x8d\xef\x2c\x6b\xe5\x42\x69\xd8\x6e\x98\x52\x2d\xf5\x7c\x2e\x1b\x0a\x55\xba\xfa\x2a\xee\xc2\x7c\x54\xa7\xc4\xb9\xb0\x50\x7a\x4b\xcf\xd1\xa6\x74\xfa\x39\x39\xb0\xe9\xc6\x33\x01\x79\x0f\xb3\xd0\xf5\x7e\x89\x0d\xc2\x25\x21\x7f\x64\x37\xea\xea\x4c\x91\x3f\x94\x59\x37\x75\xa4\x47\xa9\x85\x67\x2c\x09\x1e\x68\x12\x92\x2f\x45\x33\x1b\xa5\xaa\xd6\x76\x8d\x23\xae\xca\x65\x1c\x0b\xe3\x43\x57\x17\xb9\x9b\x21\x04\x9d\x0e\x64\x18\x44\xb4\x9e\x76\x2e\x3b\x26\x2d\x36\x4a\xbe\xec\xf8\x62\x7b\xb0\x65\xba\x3e\xde\x96\xd7\x23\xf4\x95\x6b\x21\xc4\x8a\xce\x51\x7c\x88\x61\xdc\x05\xeb\xe7\xf2\x6a\x95\x9d\x2a\xed\x54\x0c\xe9\x85\xd9\xb2\xb2\x4b\x62\x77\xf6\x97\xfc\xa6\x4f\x28\x4b\xda\x6c\x06\xa2\x21\xde\xe9\xdc\x2a\xa2\xd7\x2a\xf7\x91\xf2\x78\x83\x3e\xca\xc2\x14\x2d\xf2\xe6\x39\x1b\x75\x47\xd4\xd9\x5c\xaa\x25\x74\xfb\xf0\x68\xa6\xf9\x18\x2e\xc4\x85\x68\x21\x42\x0d\xef\x93\xe5\xc5\x38\x96\xef\x2b\x97\xe0\xed\xbb\x8b\xd0\x68\xd6\xe2\xcb\x22\xe3\xc1\x44\x8a\xf4\x44\xa8\x0c\xe2\x80\x08\xb3\x60\x93\x11\x00\x5e\x64\x7a\xdf\x44\x9d\xdf\xad\xd5\x28\x73\xab\xfd\x96\xe0\x59\xca\xe3\x8d\xda\x10\x17\xf6\x8f\x6d\xba\x63\x3c\x45\x23\x9b\x49\x6d\x4b\x96\x43\x3a\x0e\xbd\x7c\x10\x27\x0b\x8a\xae\x9f\xdf\x8e\x05\x9e\xf5\x3d\x94\x6a\xc0\xa4\x03\xfc\x75\xa5\x40\x91\x70\x9e\x70\xbf\xb3\x48\x65\x64\x46\x7b\xbe\x40\x99\xd7\x0d\xbf\xdc\x10\x43\x60\xae\x8e\xb0\xee\xa6\x6b\x4b\x05\x5f\xd3\xe3\x3c\x41\x76\xbd\xa3\x01\x6c\xdb\xb1\xd1\x37\x89\x6d\xd6\x10\x17\x44\x97\x59\x80\x7c\x93\xd4\x10\x20\x17\x3c\xb2\x9c\xd7\xf8\x0a\xcd\xe5\x4d\xed\x91\x30\xa4\xbe\xcb\x35\x5d\xa4\x1e\x6f\x1c\x23\xbd\x3f\x16\x15\xeb\xd8\x37\xcf\x44\xcb\x30\xde\x63\x39\x68\x1e\x5e\x0a\x44\xef\xfd\x27\x02\x4d\xbf\xb8\x4e\xcb\xdc\x41\xda\x88\xe8\x81\x5e\x80\x03\xb4\x10\x4a\x0f\x27\x73\x58\x0b\x54\xe9\x45\xdb\xa1\x89\x4b\xd9\x5c\xdc\xd8\x64\xf0\x66\xde\x2e\xe7\x7a\x8e\x26\xb0\x61\x35\xa6\x4d\xec\x58\x5c\xe6\xe4\x98\x43\x06\x3b\xb1\x3b\xb0\xdd\xac\xa5\xc3\xba\x37\xd4\x9d\x83\xb6\x35\xbd\x61\x23\xd3\xbc\x67\x0c\x3d\xc4\x62\x1e\x69\x37\xe4\xe9\x67\x95\xdb\xbd\xb0\x53\xbe\x1b\xe8\xb7\x06\xe1\xc7\x1f\xef\xe9\x32\x0c\x08\x1e\x8a\x6b\x94\xbe\x17\xd0\x71\xc1\x26\x4f\x52\x39\x9a\xfc\x71\x17\x15\x22\x71\x2f\xce\xa7\xb4\xf2\xcb\x40\x48\xd0\x7f\x46\x3b\xfe\x0b\xbb\x24\xd7\x45\x4c\x54\x83\x19\xe9\x20\x8d\x92\x0a\x37\xf2\xcb\x5e\x7e\x77\xa5\xa3\x84\x77\x02\x19\xed\x2a\x8f\x19\x27\xe1\x2f\xc3\x94\xb4\xe1\x72\x24\x00\xb3\x90\x6a\x74\x3f\x6b\xea\xd3\x8a\xbe\x6d\xd1\xf0\x0d\xb9\xc1\xb5\xc3\x01\x27\x50\xba\xc4\x12\x1d\x37\xef\x6a\xb1\xb3\x90\xc5\x3a\xc2\x4e\xe5\x32\x41\x51\x68\x82\x95\x1f\x12\xea\xa7\x3e\x96\x84\x5f\x23\x7d\xec\x7c\x3e\x8f\x73\xd4\x31\xf6\xb9\x3f\xaf\x23\x03\x46\x0c\x1f\xbc\x58\xb3\xe2\xd4\xa1\x8c\xe7\xd0\x65\x38\xc1\xb2\xe6\xb8\x04\x80\xd9\xcb\x83\x17\xc9\x24\x6b\x3f\xa4\x18\xd0\xbf\x3f\x9a\x10\x9b\xd8\xac\x62\xc8\xcc\xc1\x72\x25\x68\x78\xf2\x48\xa1\x80\xe0\x77\xf4\x40\x75\x61\x0d\x7f\x80\xe1\x89\x59\xc0\x3a\x24\x4d\x16\xdf\x73\x7f\x5e\xd6\xd7\xc3\xe9\xc7\x51\xbd\xae\x6b\xf7\x2d\x2b\x62\xa4\xef\x9a\x04\x1b\x6d\xbe\x78\x3e\xef\x2b\x42\x22\x97\x10\x52\xb9\xe2\xa6\x54\x0f\x7e\x86\x16\xd3\x7b\xdc\xf0\xab\x13\xd0\x08\x8a\x6d\x43\x46\xd4\xfa\x7d\x6b\x43\x2b\xd6\xb2\xde\xdc\xfc\x36\x7d\x12\xfa\x40\x6c\xa6\x8c\x56\xf4\x38\xd5\x21\x73\x76\x45\x16\xba\x98\x24\x64\xb0\xad\x5e\x01\x96\x3a\xb3\x25\x69\xc9\x96\x20\xf4\x63\xcf\x3e\x93\x34\xd9\x9c\x34\xae\x2c\xce\x35\xa5\xe7\x52\x3d\xd7\x8e\xcc\x8d\xc9\xa6\x4e\x13\xc5\x8b\xb2\x96\xbc\x32\x15\xcb\x92\xd2\xbb\xa4\x34\x40\xeb\x72\x0e\x51\x3a\x10\xf8\x75\x42\x42\xbf\x1c\x4c\x5b\xd3\xfe\xdd\x73\xcc\x0a\x36\xc3\x82\x65\xe3\x56\x65\x63\x4b\x7d\x7e\xde\xb7\x8e\x5b\x97\xf7\xe2\x4c\xb0\xc7\x5f\x27\x5d\x1e\x1f\x17\x08\x99\x35\x34\x11\xb4\x9e\x09\xa9\xcf\x83\x08\x49\x21\xcd\x9a\xa0\xd0\x2b\x46\x65\xa7\xa5\x43\x9f\x4e\x70\xb4\x8c\x59\x97\x6f\x4c\x6a\xb5\x76\x66\x45\xaf\xfa\xf9\x48\xbd\xda\x3a\xae\x9d\x44\xea\xfa\x43\x21\xa0\x10\x93\x41\x22\xec\xe2\xca\xc6\x99\x90\x54\x4c\x79\x88\xdf\xf4\xc3\x91\x2c\x14\x03\xc9\x4c\xcf\xda\x5a\xcc\x3c\xd7\x6d\xb5\xbf\xa3\xa9\xa9\xa2\x4e\xa1\x5a\xae\x5d\xe1\x84\x97\x6f\x46\x1f\x27\x81\x65\xf1\x8c\x91\x62\x3e\x90\x6c\x4f\x7b\xbd\x20\x1b\x53\x3d\x1b\xf9\x96\xeb\xf8\x9a\x35\x74\x40\xed\x4c\xe7\x40\x24\x89\x70\x7c\x36\x48\x9e\xc6\x65\x7b\x08\xf3\x55\xca\xac\x56\x4b\xb4\x4b\x3a\x09\xdb\x7d\xff\x6d\x0f\x3d\xdd\x3f\x9d\x26\x74\x1d\xa4\x4e\xab\x62\x57\xb1\xf7\xbf\x38\x09\x59\x7a\x87\xb0\x78\x5b\x72\xf0\x1e\x59\xda\x09\xa0\x5f\xc1\xe6\x97\x58\x50\xd9\x10\x4a\x71\x8d\x6d\x0e\x91\xc0\xdb\x56\xf4\x2f\x99\xcd\xef\x6a\xe1\x89\xb5\x6e\xf2\xa2\x13\x53\xfa\x62\x18\xf5\xf8\xdd\x03\x05\xc3\x27\xec\x1f\xbe\xe1\xb0\x50\xd5\xa9\x67\x2e\x44\x44\xb9\x31\xe2\x6b\x55\x38\x72\xc4\x9c\x22\xe6\x50\xd8\x69\xb0\xe6\x71\x5f\x4f\xbf\x9e\x86\xab\x1a\xc6\x09\xbe\x4f\xde\x80\x35\x5c\x2d\x0d\x8b\xe8\x93\xe4\x40\x21\x73\x6c\x8b\x34\xd2\xcc\x9e\xed\xa6\x95\x6c\x60\xd8\xd7\x4c\x75\xc9\xca\xc6\xcb\xf2\x91\x9d\x38\x1a\x1b\x26\xad\x87\x70\x25\x66\x01\x20\x62\x83\x47\x8e\x0d\xa9\x91\x95\x32\x8d\x6f\xb7\x57\x07\x45\x70\x27\x49\xf4\x4e\xf5\x89\x68\x22\xf5\x50\x01\xc5\x78\xf8\x76\xa9\x10\xe2\xc3\xc0\xd1\xab\xe1\x85\xe4\xb6\xcf\xd1\xb6\xd6\x41\x8f\x0f\xbc\xd9\x17\xdf\x82\xf9\xc6\x0c\xf1\x50\x9e\x6e\x6c\x15\x16\x5b\xad\x04\x3d\x96\xd2\x69\xc8\x10\x73\x03\x0f\x5f\xd3\x1e\x88\x5f\xeb\xb3\xeb\x98\xce\xa1\x23\xa7\xfc\xba\xb4\x97\x14\xfb\x6c\x16\xe5\xf6\x61\x31\x89\x5c\xf0\x15\x89\x0c\x28\xba\xdc\xb3\x31\xc4\x61\xd0\x57\x16\x24\xc1\xa5\x29\xdf\x43\xcb\xca\x61\x9a\x0b\x7d\xe3\x47\x14\xf7\x2d\x6f\x38\x05\xf2\x25\x02\x78\xc4\x05\xa7\xa8\xfc\xec\x67\x24\xd1\x29\x86\x1b\x87\xe4\x89\x20\x9c\x0c\xc9\x6f\x11\x9c\x11\xb7\x7a\x35\x92\x11\xef\xf1\x1c\x8b\x5d\x1f\xd3\x1f\x95\x18\x9a\x2c\x6b\x73\xba\xa9\xed\x7e\xdd\x15\xd9\xb7\x7b\x98\xc7\x97\xa3\xb9\x9f\xe0\xa8\xce\x38\x51\x6c\x70\x10\x82\x42\x34\xd3\x1b\x07\xbf\x30\xef\xa7\x9b\x29\xae\x2d\xcf\x70\x90\x8d\x02\xb1\x6f\xf3\xb2\x04\xbc\xc4\xb4\x03\x9b\xd4\x78\xef\x9d\xfa\x61\xd1\x8f\x1b\xcf\xbc\x2f\x27\xc1\x3d\xbf\xbd\x1c\xa3\x3e\xd8\x14\xea\x2a\x3f\xf9\xf7\xe2\xb6\x86\x6e\x9e\xb4\xa6\x0f\x04\xba\x31\xb6\x21\x90\x81\x74\x52\xd3\x32\x3f\x96\x04\x8e\xfc\x83\x24\x4f\xa6\xb5\xc6\xa5\x4e\x1c\x3d\xb5\x1e\xfb\x91\x40\x71\x44\xc1\xc2\xe5\xc4\x54\xaa\x07\x41\xdc\xb7\x8c\x99\x7a\xd1\x10\x30\x9e\x38\x3b\x9d\x82\x10\x14\xce\xe9\x96\x74\x4e\xb7\x32\x50\x91\x25\x41\xa6\xa7\x66\x0d\x5c\x32\x19\x6f\x7a\x61\xde\x6e\x5a\x69\xca\xfa\x11\x89\x08\xed\x64\xd6\xc7\x13\xd3\x02\x70\x7a\x85\x8b\x5c\x84\xd7\xc5\x25\x30\x10\x1e\xf1\x2d\x07\xde\x54\x74\x9f\x91\x70\x2b\xb7\xfe\xa8\xb6\x09\x2d\xc2\x1a\x7c\xe5\x37\x8f\x3a\x4e\x13\x7d\x96\x72\xca\x78\x58\xab\xb9\x45\xbe\xdf\x1f\x07\xa7\x7f\x92\xfc\x93\x2d\x02\x6a\x2b\x27\x33\xdf\x03\x49\x49\x88\x0e\x4f\xe5\x39\x58\x46\x62\x69\x46\xdd\xca\xa9\x5c\x16\x3c\x6b\x0b\x79\xb6\xa5\xc2\x66\x95\xc9\x54\xf7\xc3\x81\x07\x5a\x3f\x87\x4b\x6b\xe3\xa8\xc0\x78\x64\xfe\x9d\x81\x0d\xa6\x07\x04\xcf\xc3\xe0\xcc\xe8\x8d\x75\x3d\xfa\x45\x19\x49\xd6\xf5\x10\x97\xdc\x41\x33\xe9\x13\x45\x97\x5d\xae\xa9\x26\x28\x2b\x87\x60\xc2\x1e\x3d\x43\xa5\x91\x30\xc1\x12\x0a\x2c\xbe\x80\x33\xc0\x3f\x4a\xfb\x22\xfd\xd2\xfb\xa9\xa1\x12\x9a\x6d\x57\x0d\xeb\xc2\x70\x4d\xf1\xb9\x87\x17\x49\xc3\x38\x94\x63\x1f\x66\x06\x07\x6a\x87\x87\x24\xc9\x57\xdd\x12\xc7\xee\xc3\x21\x67\xf3\x52\x69\xd3\x83\xf7\xfe\x78\xef\xc8\x4b\x38\xcd\xb0\xd1\x50\x36\xbd\x8d\x8a\x21\xe3\x6f\xd6\xc6\x65\xea\x2a\xdb\x1e\x10\x80\x63\x9b\xa1\x81\xe4\x85\xa1\xe7\xeb\xc0\x0f\x9a\x1e\x58\xbe\x71\x1d\xb5\xc0\xa8\xa0\x9f\x5a\xb9\x53\xcb\x1d\x40\xdf\x40\xa8\x90\x92\x44\x76\x48\xa2\x9a\x76\x4f\x9f\xb8\x3f\xfc\xd4\x62\x7d\xf7\x2e\xd1\x43\x91\x49\x10\x3f\x19\x50\x44\x11\x06\xad\xe9\xf2\x11\xfc\xa0\xdd\x53\x14\x33\xe7\x8e\x70\x16\xc1\x3e\xff\x39\xfb\x22\xf1\x6e\x83\x5e\x9f\x34\x4e\x7e\xdb\x6b\xab\x04\xd2\x75\x4f\x4f\x0b\x1e\x45\xab\x2b\xcb\xc7\x4d\x95\x43\x64\x46\x0c\x55\x06\xfb\x91\x5e\x4b\x3d\x83\xb0\xc1\x55\xa5\x82\x14\x8f\x22\x7a\x8a\x4f\x6e\xda\xa1\x4d\xc3\x42\x88\x8c\x04\xb7\x6c\xef\x22\xec\xf1\x67\xd5\xaa\x58\x31\x9f\xf3\x1a\x2b\xbf\xc9\xe2\x28\x62\x67\xf6\x9a\x52\x49\x75\x66\xb5\xbe\x48\x7a\x6e\xe2\xc3\x03\xd7\x1b\x32\x3d\x1b\x2f\x13\x57\x5c\x47\xd8\x8c\x90\x88\x42\xc6\xbc\x0d\x52\x40\x13\x58\x12\x90\x6b\x9a\x12\x0a\xe4\x82\x13\x31\x9f\x1a\x12\x18\xbd\x37\xbb\xdd\xae\xd7\xc0\x90\xa3\x8a\x34\xbb\xa9\xf8\x2c\x19\x32\x10\x59\xca\x57\xe1\xdb\x93\xbe\xa9\x07\x0a\x74\xbe\x93\x13\x16\x58\x71\xf5\x06\x6a\x98\x1f\xb1\x6b\xd2\xaa\x6b\xe5\x93\x45\x9d\xf9\x43\x7b\x87\xa8\xd2\xb3\x2f\x85\x19\x87\xe0\xec\xe4\x57\x48\x9f\x60\x7d\x22\x5a\x1d\x18\xe2\xbc\xab\x3c\xd3\x25\x0e\x55\x5e\x86\xe4\x47\x9c\xe5\x6f\x85\x2b\x5a\x25\xf0\xb5\x68\x39\x4b\x30\xe4\xbb\x03\x87\xef\x01\x1c\x1c\xce\x23\x48\x6c\xd2\xa9\xbc\xa4\xec\xa7\x44\x2a\x59\x2c\x96\xe1\x68\x3f\x3a\x72\xb6\xda\xf9\x10\x5d\x1f\xce\x45\x4e\x60\x29\xae\xa6\x2b\x2c\x61\x28\x24\x93\x85\x56\x8f\xcc\x5b\xdd\x24\x23\xf0\x1d\x6a\xaf\x40\xe4\x72\xe4\x46\x26\x0a\x38\x12\x2f\x00\x1b\x61\x81\xe1\x15\xa2\x09\x64\xf5\xce\x24\xd4\x46\xeb\xde\x25\x0b\xfd\x57\xe0\xf3\x8b\x25\xb9\x35\xb0\x78\x8e\xea\x67\x11\x7d\xa2\x8b\xdb\x0f\x27\x96\x23\x1c\x13\x6d\x44\x9d\x21\xae\x5c\xc8\xfe\x42\xad\x9f\xe6\x17\x4e\xbe\xce\x2b\x98\xc3\xec\xc9\xd0\x25\xdb\xae\x74\xe4\x3d\xd1\x34\x12\x86\xc7\x3b\x27\x26\x88\x18\xd7\x34\xc1\x82\x07\xe4\x58\xde\xb1\xb4\x3c\xdf\x48\x71\x0f\xb6\x71\xbb\xd1\xe0\x52\x96\x55\x3d\xee\xc6\xf4\x04\xac\x84\x30\x00\x27\x61\x81\x50\xe0\x14\x81\x5e\x6a\x3a\xc2\x61\x80\xc8\x87\x6b\x0d\xc9\x3f\x24\x05\x40\x63\xa8\x38\x32\x0d\x86\x0c\xb4\x20\xf3\x48\xf3\xec\xd0\x44\x82\x8a\xd7\xdc\x34\xc9\x4d\xbf\x34\xae\x20\x04\x29\x46\xb0\xbd\x82\x0b\x64\x14\xba\xfc\x24\x1b\x05\xef\x96\x33\xb8\x00\x20\xe0\x83\x97\xed\x72\xb4\x2a\x8c\xb7\x11\x1b\xce\x78\x18\xd1\xe9\x5e\xf8\x98\x39\x88\x6a\xdc\xaf\xf5\x1c\xa2\xa1\xed\xdd\x28\xf8\x14\xf3\xa5\x9a\x11\x8b\xcb\x67\x11\xe4\x2d\x71\xdc\xa6\xec\xb7\x1d\x11\xee\xb0\x14\x9a\xab\x4b\x9c\xbe\x6a\xb7\xcd\x33\xc2\x0e\xfe\xf1\x9f\xbd\xdf\x3e\xc7\xbe\x26\x78\xb3\xc4\x72\xce\xd8\xb3\x9e\x93\x22\x68\x1a\x96\xef\xf6\xdd\xf5\x79\x1d\xd8\xa9\x3d\xce\x04\xb3\x7d\xa3\x1d\xf1\x59\xae\xd7\x56\x5c\x9e\x2a\xb9\xa4\xba\x64\xcf\x70\x68\x16\xc9\xcc\x61\x26\x05\xfa\x62\x26\x2b\xf4\x7a\xf8\x94\x49\x8e\x3a\xff\x6d\x9c\x2e\xbc\x5c\x77\xaa\x9f\x38\x45\x31\x1c\x7e\x7a\x1f\x5b\x70\xe5\xda\xec\xdb\x2c\xad\x4b\x33\xdf\x02\x51\xdd\x0f\xef\x32\x42\xf1\x6e\xd7\xb2\xe1\x6f\x4b\xd2\x1d\x2a\xd7\x1f\x0e\xbd\xe8\xe0\x96\x56\x25\x62\xb7\xf0\xc3\xb9\x84\x5e\xf1\x09\xce\x16\xe1\x4a\xbc\x31\x45\x47\x67\x5e\xd8\x61\xc8\xea\xb9\xf2\x84\xac\x85\xaf\xad\x8d\x7f\xdf\x15\xbe\x44\x47\x84\x6f\x0e\x3b\x68\x96\x5a\xab\xfa\x21\xc3\x63\x49\xd8\xad\xf8\x03\xf0\xe3\xf0\x78\xde\x6c\x75\x5a\x08\x8a\x72\x55\xd3\x90\x38\x51\x0f\x4a\xd7\x5b\x34\x51\x49\x14\x66\x61\x9f\x1a\x08\x72\x9a\x7b\x09\x6d\x45\x6e\x63\x88\x11\xf9\xb5\xf0\x86\x80\x17\xf2\x8b\x21\x9e\xdf\x8a\xa5\xaa\xc4\xaa\x32\xd2\x45\xec\x49\xcb\x8e\xe8\xe9\x55\x75\x27\x1d\xd4\xad\x69\x73\xae\x7b\xb7\x6d\x6f\x68\x95\xfa\x2a\xd6\x8a\xb6\xcb\x29\xb2\x73\x4b\x04\x7e\xe7\xf7\x10\x6b\x46\xec\x0f\xec\x04\x98\x17\x49\x14\x4b\x10\x42\x85\xd5\xf7\x44\x5b\x23\x9c\xaa\xc5\x0d\x11\xb9\x23\x8d\x2c\xe5\x50\xbf\x5b\x57\xc8\x58\xe1\x00\xfc\x5c\x88\x77\xa4\x39\x95\x40\x46\x78\x72\xa0\x58\x24\x9a\x1a\x0f\x2a\x8c\x5d\x83\x78\x68\xca\x9f\x94\x5b\x0f\xea\xc5\x3c\xb6\xbd\x23\xb2\x54\xa9\x5e\xcf\x0f\x80\x9d\xf6\x62\x3e\x6e\xfd\x98\x56\x27\x61\x98\x09\xdd\xeb\x81\x41\x47\x05\x38\x43\x5e\x7c\x1c\x1c\x16\x44\x8d\xf6\x8c\x51\x2b\x30\xb7\x88\x51\x47\x02\xd1\x40\xc6\xa8\xef\x74\xdd\x5a\x7c\x3a\xbb\x73\x1c\x8b\xd7\x0a\x76\xd8\xd4\x8c\x55\x35\xc0\x55\x0a\x90\x09\xc1\x53\x13\x45\x23\xae\x9c\x31\xc1\xdf\xd1\xf0\xb8\x83\x58\xc9\xe4\x2d\xc6\x14\xc5\x54\x9f\xbd\x1f\xe1\x96\xa9\x3e\x4f\xee\x15\x8d\x1f\xb7\x47\x9b\xaf\xad\x5b\xb3\x60\x69\x3d\x0a\x22\xca\x97\x0a\x58\xf0\x52\xe9\x7c\x4f\xb4\x31\x68\x4b\xf0\x66\x93\xf5\xf7\x98\x90\x90\x1b\x6e\xf1\x90\xdd\x15\xae\xf6\xde\x8b\xb8\x69\x87\x26\xd6\x7d\x86\x92\x56\x45\x5f\x1e\x46\x8c\x5b\xf2\x22\xfa\x3f\x2c\xe9\x10\xec\x09\x16\x7e\xaf\xf8\x85\xb9\xb9\xc3\x5a\xdc\x44\xab\x8f\xfb\xe3\x29\xff\xe9\xb1\xf7\xaa\xd0\x45\x5d\x3f\xe9\xa8\x39\xe0\x50\xd5\xd1\x6d\xcc\xb7\x93\x15\x3a\x1d\x42\x60\x47\xe9\x7d\xa6\x44\xa2\xf7\xc0\x03\xcd\x83\x70\x47\x57\xd4\x34\x61\x83\xea\x14\x53\x0c\xc7\x36\x7c\x81\x86\x98\xe1\x51\xa7\x22\x11\x64\xa9\x5b\xdd\x37\x6f\x73\x69\x8e\x89\x78\x3f\x9f\xad\xe5\x4e\x9f\x13\xfc\x58\xf9\x23\xfd\x23\x44\x76\x96\x00\xe2\xd5\x6f\x27\x9f\x36\x88\x66\xcf\xf0\x21\xaa\xb0\x7c\x21\x57\x38\xfa\xed\xa7\x8e\x7f\xe3\xa9\x02\x3a\x94\x35\x7d\x51\x3b\xdf\x64\x44\xe7\x40\xfb\x28\x3d\xce\xc1\x87\x41\x31\x35\x91\x70\x33\x0f\x92\x2f\xc8\xb4\x5a\x38\xa3\x35\x85\xfa\x51\x1e\x99\x5c\x8b\x58\x5b\xea\xc0\x4a\xfd\x3b\xb7\x3b\x76\xa8\xf5\x8b\x6c\xe7\x72\x6e\xc7\x9f\xc7\x17\xe8\x70\xab\x9c\xee\xd2\x22\x82\xdf\x41\x9e\xc8\x80\x37\x53\x97\x91\x86\x7f\x84\xd2\x60\xbf\x1a\xfe\xd4\x40\x21\xf4\x38\xbd\xca\x3d\xfe\xd8\x56\x3a\x6b\xdc\x37\x5d\x35\xa4\x32\x1f\xfa\xd8\xeb\xb0\x53\xb5\x08\x9f\x7d\xa7\xb7\x4d\xc7\x5f\xc4\x78\x97\xaa\xfa\x23\x0a\x51\x94\xac\x8c\x26\x88\x09\xfa\x3d\x70\x36\x83\x21\xc9\x0f\x01\xaf\x66\xb0\x13\x3f\xa3\x57\x03\x55\xb9\x27\xda\x12\xab\xa3\x93\x89\x81\x80\x66\xce\x50\xe2\xdb\xab\xe9\x23\x32\x56\x76\x69\x2c\x42\x9c\x3d\x51\x87\xbc\x0c\x83\xe3\x86\xa2\x3a\xba\x73\x54\x3d\x30\xaf\x41\x9e\x06\xbf\x46\x15\xde\xbe\x06\x07\xc3\x99\xf6\x84\x8f\x64\xb3\x8a\x83\xc3\x10\x4d\x8d\xfe\x51\xfa\x0a\x6e\x0f\x2a\x70\x89\xd2\xa5\x9b\xf6\xe1\xc9\x32\xb3\x18\xf2\x3e\xa6\x89\xa6\xd3\x1f\xb1\x56\xd1\x42\xb6\xa0\xad\xc7\xf7\xe2\xa8\x98\x7a\xdc\xc7\xa8\xbb\xdd\x21\x21\x04\x25\xca\x50\x5a\x6a\x4a\x1c\x3f\xa1\x63\xa3\xe2\x43\xbe\x60\x9f\xf8\xb1\x19\xc8\xe3\xf6\x40\x46\xf5\x5c\xa8\x8f\x9a\x3e\xa6\x00\x2f\xf8\xbd\xc4\xea\x5e\x0a\x45\xf0\x79\x93\x11\x7b\xe6\xf8\x9a\x13\xe3\x71\xad\x23\x25\xc8\x0a\x96\x8d\x16\x0f\x07\x0e\xef\x55\x97\xce\x7a\x86\xc1\x7b\xdf\xde\xb1\x54\x9d\xcb\xf4\x6c\x6d\x97\xb4\xbb\x09\xc2\x93\x45\xc4\xc7\x0e\x67\x31\x3a\xef\x2f\xcd\x43\x11\x9e\x7c\x56\x62\x32\xc4\xf0\xdb\xef\x21\x75\xd7\xc1\x3f\xc2\xa7\x45\x2d\xef\xab\x47\xb4\x31\x9c\x5d\x83\xc8\x51\xb5\x38\x4d\xab\x55\x45\x7f\x2b\x0b\xae\xcb\xd2\x18\x9c\xb2\xeb\x2d\xcf\x7d\x82\x31\x7f\xdb\x4f\x70\x1a\xd9\x4a\xce\x34\xe3\xeb\x58\x57\x82\x22\xa4\x76\xdf\xab\x96\x54\x13\x45\x52\x77\xc0\x56\x15\x59\x89\x3a\x78\x1a\xce\x5c\x89\x70\xea\xdf\x8a\x88\x54\x6a\x20\x5e\xfe\xd3\x8b\xd6\xa4\x2d\xe7\x54\x44\x64\x61\xb8\xbe\x1c\x7e\xfe\x1b\x72\xd9\x01\x2c\x6d\x27\x1d\xed\x34\xf8\x2a\xc3\xf8\x95\x45\xbd\xe3\xac\xf4\x3f\xcc\xc6\x7f\x18\x45\x58\x89\x70\x28\x6e\x8c\x53\xd7\xb2\xb6\x2d\x76\xe0\x24\x02\x55\x8f\x56\x16\xd0\x83\xaf\x88\x0a\x9b\x5d\x51\x10\x47\x2a\xf8\x27\x24\x7c\xbc\x89\xcb\xc0\x46\x13\x77\xcf\xb7\x31\x72\xa9\xa0\x34\x72\xe0\xcd\x04\xaa\x83\xbd\xae\x70\xc2\x8c\x04\xec\xf1\xf2\xa6\xca\xe3\x91\x26\x96\x6a\x70\xb2\x98\xab\xd3\x65\xf9\xef\xe7\x81\x8e\x6c\x73\x61\xd3\x25\xa1\x6f\x2e\x9c\x5a\x3e\x42\x99\x81\x1b\x9a\xc1\x89\xd7\xed\x81\x11\x21\x0d\xed\x11\xcf\x52\x3f\x5c\x3e\x60\x0f\xea\x00\x4e\x08\x6b\xa4\xa9\x3d\x95\x83\xd6\x3b\xdf\x16\x1d\xe2\xf3\x30\x45\x5f\x6d\x50\x6c\x65\x91\xa6\x57\xce\x80\x2e\x0d\xe1\x18\x40\x97\x0f\xe9\x61\x35\x42\x3f\xb1\xe7\x44\xf0\x09\xe9\x4b\x27\x73\xce\x24\x7f\xed\xc5\x4b\xfe\xd7\x13\x4f\xc9\xf7\xfd\x98\x00\x60\x75\x85\xca\x89\x74\x6a\x24\x6a\xfb\xaa\xe8\x09\x46\xfa\x30\x8e\x2d\x5e\xdf\x43\x9d\x69\xc2\xa9\x6b\x32\x1b\xe3\x73\x02\xdf\xa9\x7b\x9d\xd4\xa1\x58\xda\x6a\xa6\xf1\x63\xf7\x97\xbb\x8e\x7a\xb7\xc8\x1b\xa9\x5b\xd3\x62\xa8\x1d\x08\x42\xa4\x49\x47\xff\x9c\xf1\x05\x09\x7c\x6f\x82\x36\x83\x31\xc6\x45\x98\xf5\xd3\x00\x09\xa6\x4c\x3b\x07\xea\x8c\x65\x4a\x0b\x09\x0e\xd1\xe9\xe0\x2c\x39\xff\x9b\xd9\xba\x89\x81\xd8\x0a\x80\x44\x0b\x11\xa1\xae\xd4\x52\xc7\xaa\x40\x91\x17\xf5\x49\xb6\x69\xa8\xb2\xf6\x7b\xe7\xdc\x8f\x4a\x84\xc8\x40\xf3\x27\xd4\x5d\x4d\x7c\x5e\x4b\x3b\xbd\x88\xbd\x1d\x02\x36\xbf\x84\x18\x60\x35\x4b\xa1\xb1\x3d\x98\xe1\xec\x38\xb6\xfa\xe4\x4d\xd0\x14\x6b\xcd\x9f\x82\x67\x1a\x4f\x49\xba\x67\x42\xe7\x39\xb6\xa6\x85\xcd\xd3\x49\xcf\x52\x84\xac\xf9\xc0\x77\x23\x1e\xda\x3b\x64\xa8\xc3\x54\x9e\x88\x89\x25\xdb\x43\x35\xf8\xbc\x73\x08\x36\xc7\x60\xc6\x09\xdb\x1d\xe0\x68\x4f\x43\xb6\x3c\x2d\x96\x17\x3d\xa0\x0e\xdd\xe3\x01\x07\x1a\xa7\xef\xac\x2b\xe4\xa1\x13\x13\x07\x24\x73\x1c\x29\x91\x71\x26\xee\x73\xb0\x3d\x9b\x42\x4b\xa7\x65\xb8\x62\x04\xbe\xb0\xcf\x8d\xba\x3d\xa4\x4c\xc3\x76\x6b\x90\xdc\xe1\xb1\x18\xe7\x91\x3c\x91\x06\x5a\xe1\xba\x69\x3b\x27\xa1\xe7\x47\xac\x41\xb7\xf2\x61\xee\xa4\x6d\xf7\xf6\xed\xc1\x2b\xd0\x01\xd2\x25\xc8\x0f\xb8\xf3\xf0\xba\x7e\x28\xe1\x5d\xe0\x50\x46\x24\xca\x02\x79\x79\x69\xa1\x89\x65\x43\x83\x4c\x85\xf6\x65\xf9\x94\x43\x7e\xc5\x5e\x11\x31\x30\xbd\xf4\x79\x47\x13\xfd\x34\xe7\x99\xd6\x21\x0a\xf9\xbe\xa7\x19\x14\x2a\xf4\x8f\x87\xe7\x08\x0e\xde\x64\x27\xf2\xcd\xd3\xd5\x81\x31\xfc\xde\x10\x00\xd9\x62\xa6\xb2\x8e\xc0\x49\xa8\xec\x9e\xc2\xa4\xdd\x17\xbc\x7f\xea\xd4\xd7\xf8\x0b\x85\x16\x5c\xd2\xa1\x41\xce\xd4\xaa\xc2\xcb\x32\x50\x9a\xf8\xb1\x37\x2b\x35\x2e\x78\xff\x52\x62\xf1\xed\x4d\x3c\x95\xed\xc4\x87\x83\x2c\x59\x86\xb2\x29\xeb\x31\x66\xc6\x87\xe8\x59\x1c\x23\xa3\xab\x14\x6c\x78\x28\x28\x02\x43\x6e\xb4\xc1\x76\xa7\x2b\xc2\xaa\x52\x45\x46\x5f\xfa\x56\x2c\x31\x6b\xda\x27\x39\xd0\x29\xfc\x08\xe1\x4c\x0c\x3d\x2a\xd6\xfc\xbd\x4c\x14\xe6\x54\x6a\x0b\x27\xc8\xdb\x77\x23\x23\xb4\x0e\x6e\x43\x13\xd3\xf9\x9c\x51\xb1\xa4\x9e\x60\x98\xd9\xcd\xb6\xd0\xa0\x2f\x88\x5f\x8c\x8a\xba\xe2\xec\xad\xf4\x5c\x42\xe3\x2a\xd2\x63\x59\x23\xe1\xca\x6f\x8d\x7f\x3e\x3a\xd2\x62\x5a\xed\x41\x34\x58\xf6\x4c\x53\x72\xa7\xb4\x54\xb6\x83\xbf\x48\x1a\x61\x24\x72\x7a\xc5\x1c\xa1\x33\x6e\xb4\x5f\xdb\xa5\x16\xdc\xe8\xed\x32\x4e\x84\xa7\x0e\x73\x48\x09\x31\x4c\x0a\xcf\x9d\x07\xb3\x11\x94\xc0\x11\x5b\x62\xb3\xff\x8e\x43\xbc\xfa\x9c\x0a\xec\x91\xb8\xc8\xd3\x12\x0e\x45\x31\x7e\x28\xd1\x23\x99\x6d\x65\xf2\x66\xa9\xef\x12\xe6\x10\x41\x4e\xed\x7e\xce\x9c\x00\xe6\xcf\x45\x7a\xf7\x89\x7d\x93\x35\xda\x4e\x18\x42\xe0\xea\xb9\x59\x3c\xfe\x54\x02\xae\xbc\xfa\x4b\x54\x46\xc5\xa4\xa3\xa6\xe0\x14\xe4\xb9\x35\xd5\xc0\xf5\xe7\x22\xb9\x0a\xf9\x2e\x5b\x74\x49\xc4\x82\xa4\xab\x3e\x30\x9e\x46\x50\xe2\xf9\x5a\xe8\xcc\x58\x24\xab\xaf\xd5\xdc\x1c\xfd\x44\x6b\xbd\xb5\x39\x6e\x8e\x11\xb0\x5d\x8b\x71\xaf\x68\x38\xa5\x34\xaf\x1d\xd5\xaa\x79\x8e\x20\x59\x64\x10\xd3\x1a\x2a\xa0\x15\xfa\x73\x22\x03\x8c\xa3\xb5\x96\x7e\xae\xc4\x25\x9b\xf8\x11\xcf\x9a\xa9\xc2\x04\x9e\x04\x16\x81\x7e\x0c\xbf\xe9\xb5\x45\x5e\x2c\x1f\x7a\x18\x05\x87\x9a\x42\xfd\x20\x97\x22\x55\xc7\x03\x63\x79\x35\x15\xac\xab\x8e\x20\x5f\xf6\xa5\x09\x97\x46\x56\xfb\x22\x72\x94\xe7\xbb\x8c\x3c\xee\x57\x84\x17\x78\xff\xd0\x41\xcf\xd4\x3c\x93\x4c\x07\xa0\x83\xb1\x8f\xc6\xe9\x12\xe1\xf1\x5c\x23\xbf\xc9\xc9\x40\x01\xae\xac\x83\x36\x2f\x0c\x7b\x84\xc6\x33\x91\x5d\xfc\xe2\x04\xb0\x9e\xed\x68\x02\xb7\x1c\x58\xda\x52\x57\x0c\xf1\x56\x80\x33\xc7\x52\xd7\x2e\x53\x7a\x2c\xa3\xe0\x3c\x1a\xdb\xca\x7a\xda\x14\xd5\x73\xf5\xa1\x5e\x36\x04\x96\xea\xc0\x83\xe0\x4e\x3d\x29\x89\xc4\x17\xa5\xd4\x90\x93\x60\xce\x8a\xc1\x76\xa1\x97\x6c\x49\xcd\xc4\x50\x4f\x31\x4d\x9d\xfd\xca\xc6\x98\x06\x33\x64\xb3\x96\xdf\x01\x7b\xde\xe8\x9a\xa6\xfb\x9e\x0c\xc9\x89\x50\x77\x4c\x28\x43\xfa\xdf\x0a\xcc\x61\x3e\xd4\x7b\x79\x44\xfc\x70\x94\x73\xde\x95\x20\x0b\x5a\x4b\x70\xa4\xe9\x57\x10\x5e\xb5\x17\xf6\x3e\xda\xc2\x19\xa9\x19\xbc\x72\xb0\x26\x2c\xe6\xfe\x78\xef\x61\xf6\x39\xb5\x00\x4d\xc8\xa8\x56\x87\x52\x6b\xa6\xc6\x34\xae\x95\x6e\xfc\xbc\xef\xe8\x74\x9f\x78\xdf\x41\x06\xdd\xa9\xb3\x06\x75\x22\x3f\xe2\x80\x34\xc5\x05\x6b\x07\xbe\xf6\x99\xab\x8d\x30\xec\x1a\x32\x92\x2a\x70\x06\x6a\x99\xe2\x83\xe9\xf6\xd0\xea\x95\x28\x96\xd4\xf6\x08\xfa\x93\xd8\xce\xca\x61\xb8\x6c\x33\x43\x81\x82\x39\x39\x44\xab\x46\x53\x31\x80\xb9\xa7\xee\xc4\x2a\x23\xa1\x0f\x1e\x16\xdf\xef\x49\x34\x7d\x1a\xed\x02\xf2\x32\xac\x7c\x7f\xf2\x9e\x22\xd4\xab\xf6\xec\xeb\x9e\x7d\x8b\x97\x5a\xe8\xf5\x84\x4e\x11\x2e\xa1\x78\xb7\xe1\xbb\x06\x66\xe9\x74\x08\xf8\xcd\x16\x24\x10\x1d\x88\xf4\x31\x8b\x7b\xca\x29\x86\xe4\x5b\xec\x24\x58\x22\xf1\x4d\x29\x6c\x24\xcf\xeb\x2c\xd0\xe2\x61\x0e\xfb\x1b\x29\x89\x09\xde\x32\x8f\x28\x58\xae\x5c\x93\x40\x25\x21\xf9\x76\x50\x7a\x7d\x90\x5d\x47\x26\xef\xb5\x3d\x67\xc8\xd2\x3c\xc7\xa9\xcb\x86\x17\x23\x4a\xdc\x16\x1e\x9d\x0c\x81\x9a\xc1\xc9\x3d\x7b\x3b\x7a\x1a\x28\xd5\xee\xc8\xff\x8f\x83\xb3\xc8\xd9\x14\x00\x82\xe8\x81\x58\xe0\xb6\x84\x0f\x77\xb7\x1d\xee\xee\x9c\x7e\xf2\xcf\x1d\x3a\xf5\xea\x25\x9d\x7a\x8f\xec\x76\xde\x97\x27\xb9\x5a\x2a\x9e\x76\xda\x8c\x38\x2a\x8b\x29\x03\xc4\x40\xc6\xc0\xc5\xff\xa9\x81\x2b\xb6\xa5\xbe\xd7\xa6\x43\x13\x04\x4c\x4b\x16\xf2\xad\xd3\x7d\x9d\x52\xb5\xfa\xac\x3e\x38\x5c\x07\xa6\xe7\x8e\x72\x79\x2f\x49\x67\x8a\xd3\x94\x44\xb2\x73\x21\x0e\xb0\x9a\x58\x58\xbf\xdc\x4d\x1c\xcb\x42\x96\x26\xad\xeb\x72\xb5\x74\x45\x67\xbd\xb6\xa5\xa7\xa8\xf8\x4f\x59\xec\x9f\xee\x43\xd0\x7c\x5b\x3a\xbd\x43\xa3\x37\x78\x7e\x01\x2e\x99\xc8\x8d\x07\xa1\xf7\xb5\x3b\x7d\x7f\xbd\xa4\xcb\xdd\x92\xfd\xab\xd2\x38\x29\x4d\xd6\xe6\x4a\x28\x53\xd7\x55\xb9\xef\xab\x54\x60\x52\xe2\x7d\x76\x32\x3e\x7d\x42\xfa\xc8\xc5\xe0\x96\x20\xda\xb6\xae\xe6\x30\xe7\x8a\xf8\xc8\x32\x62\x8e\x53\xbb\x8f\x62\x6d\x53\xb3\x77\xea\xbf\x3c\xd5\xe7\xc9\xb2\x63\x7e\xfc\x90\xf0\xaf\x1d\x12\x37\x37\x70\x9a\xd0\x71\x11\x4d\x75\xce\xd0\xeb\xba\xd7\x59\xd4\x54\x73\xad\x4e\xa4\x0b\xfd\xdc\x5a\x63\x64\x45\x31\x1d\x1c\x9f\x2b\xf7\x89\xeb\x2a\x1d\x39\xd5\x9d\x51\x86\x82\x66\x37\xcb\xa5\x93\x25\x7c\xd9\x3c\x6f\x0c\x23\xfd\x66\x0a\xec\xdf\xcf\xf3\xf8\xfe\x89\x39\xf6\xf1\xa4\x96\x67\xba\x61\x07\x02\xb6\xe0\x8f\xc8\x37\xfa\x49\xba\x6c\xaa\x2d\x39\xdf\x7a\x04\x46\x92\xcc\x94\x7b\x13\xf9\x71\x5b\xc4\x7a\xdd\x26\x8f\x59\x79\x61\xfa\x48\xe1\x38\x69\xa9\x61\x29\xc6\x14\x51\xcf\x81\x42\x41\x9b\x13\x95\x0c\xc6\x0d\xfb\xe0\xf2\xc0\xb1\x4e\x74\x86\x02\xa2\xc9\x8f\x31\x3f\x96\x72\x7a\x75\x5d\x02\x63\x65\xc3\xe6\xe9\xf0\xd5\x93\x05\x31\x6d\xae\xee\x39\x78\xbd\xf8\x8f\x75\xad\x70\x20\x11\xec\xad\xd6\xb5\x3e\xe4\x65\x91\xc1\xad\x1b\x12\xbd\x68\x97\x27\x18\xb2\xc2\x4e\xaf\xac\x17\x55\xba\x97\xa5\x1e\x95\x37\x4b\x53\xed\x3c\x31\x54\x20\x65\x30\xea\x71\xdb\xb0\x60\xf6\xf3\xcc\x4e\x5d\x3d\xe0\x4c\x33\x3e\x60\x29\xb9\xe0\xbc\xa2\x70\x1a\x18\x2f\xf3\xd4\x87\xea\x3a\x09\xa0\xf3\x3d\x24\xec\xe2\xa1\xa3\xcd\x45\xce\xdb\x79\xfa\x40\x75\xc6\x6e\xf1\xa7\xd0\x7d\x0f\xf0\xa7\xa7\x1a\x21\x5d\xf6\x36\x66\x51\x1d\xd1\x29\x05\xa9\x47\x85\x45\x6d\x37\x47\x37\x05\x7f\x4b\xe4\x58\x0d\x9d\x45\xce\xa5\xf9\xe8\x8b\x90\xae\xab\xc8\x18\xd7\xe3\x16\xbb\x4d\xd2\xc3\x11\xc8\x71\xce\x17\x93\x39\x75\x56\xf8\x59\xfe\x74\x20\x5c\x1d\x91\xb5\xe0\xb4\x3a\x1c\xef\x27\x40\xa6\x69\xdc\x8f\x27\xf6\x57\x1a\x1e\xd7\xae\x13\xfd\xf9\x98\xbf\x9c\x0a\xa8\xc2\xf1\x86\x2c\xa1\x03\xad\xdd\x68\xcd\xcd\xfc\xec\xa4\x4f\x56\x29\x8c\x73\xf0\x63\x94\xcd\x93\x05\x51\xa9\xfe\xb5\xb0\x46\x34\x01\xa7\x0f\xa2\x2f\xed\x92\xe5\x3b\x39\x66\x92\x58\xd2\xd7\x2a\x3f\x13\x43\xef\xf6\x47\xf5\x2d\x4b\xe7\x89\x96\x43\x7f\x3c\x6d\x8e\x7e\x47\xff\xce\x12\xca\xed\x87\xc4\xe5\xce\xfd\x65\x73\x0c\xb8\x66\x90\xd5\x41\x74\xa8\xab\x24\xd2\xe2\x87\x73\xdf\x42\xa8\xa5\x69\xe4\x00\xef\x91\xc3\x9a\xea\xd0\x9b\xc8\xbb\x5e\x7f\x1a\x7b\x58\xdb\xd4\xf6\x3f\x54\x84\x0c\x11\xbf\xcd\x9b\xfd\xbc\x54\x97\xaa\x74\xaf\x7d\x8c\xe4\xdb\x8e\x72\x15\x6b\x36\x1e\x51\xa2\x6a\x0e\x5d\xe2\xa5\x1f\xa1\x80\x53\x5b\xf4\xc7\xdd\x7b\x97\x3b\x4f\x38\xc2\x9e\xad\x85\x2f\x61\x76\x30\x4b\x22\x66\xfe\x45\x0a\x25\xc4\x3d\x16\xe4\x65\xb2\x29\x9a\x35\xb4\x73\x66\x9a\xf8\x37\x1e\x42\x19\xf1\x2f\x2d\xdf\xf7\x55\xfe\xaa\x18\x08\x9a\xa7\x4b\x39\x1c\xc6\xa9\x1d\x59\xd4\x0e\xc6\xf4\x74\xfa\x05\x80\x88\x11\x21\x91\x12\x2e\x5c\xcd\xc3\x76\x26\x42\x7d\xca\x3f\x86\xfe\x64\x9c\x91\x2c\xf4\x89\x0c\x73\x96\x0d\xcb\x5c\x50\x2d\xe4\x6f\x17\xe5\x62\x3b\x26\xdb\xed\x72\x0e\xe7\x48\xcc\xb6\x70\xeb\xe1\x4a\x1c\x5d\x8a\x92\x6c\xce\xb5\xce\x9a\x42\x17\xac\x15\xd5\x80\xb2\x9d\xfb\xc2\xdd\x9f\x94\x0b\xfc\x53\xab\x3c\x7a\xae\x6b\x4f\x2b\x55\x62\x7a\x56\xa1\x09\x97\xc1\x63\x86\x53\x14\x69\xf0\x47\x67\x0b\xde\xdf\xfc\xeb\x20\xf9\xf1\x76\xff\x7d\x56\x5d\xff\xe9\x14\x67\xa6\xb4\x31\x4d\x73\xbb\x5d\x91\x02\x2c\x2e\xe7\xad\x9e\xdb\xed\x8f\x4c\x13\xd3\x83\x5a\xcc\xc7\x6f\xe5\xf2\x78\xfa\x73\x20\x59\x73\x56\x9e\x24\xb8\x20\xc5\xb0\xf6\xa0\x9b\x1b\xb3\xd1\x65\xa9\xe7\xf0\x0a\x4c\x8d\x0c\x7a\xc0\x1a\x12\x76\x48\xe5\xeb\x36\x3d\x8a\x05\xf7\xd2\x1b\x1e\x0a\xa5\x6e\x96\x17\xf3\xa7\x06\x32\x82\x78\xd7\x53\xc7\x27\xb1\xeb\xae\x22\x82\x01\x74\xe6\x82\xd7\xc1\x9c\xb4\x70\xd0\xc9\xae\x85\x4f\x80\xf4\xa1\xbe\x12\x0c\xcf\x4c\x7d\x80\xe7\x3d\x19\x11\x23\x76\x38\x03\xf0\x42\xb9\x3f\x41\x52\xa0\x99\x5f\x88\x0d\x3b\xee\x88\x0f\x96\x77\x35\xcc\x76\x45\x5f\xc5\x01\x58\xb5\xe7\x07\x32\x6c\x0a\xd3\x85\x72\x64\x9e\x4b\xaa\x68\x5b\x9a\xa9\x7e\xc8\x1c\xce\x75\xa2\x8a\x11\xda\xf5\x8c\x60\x87\x10\xc7\xf4\x31\x64\x80\xb4\x28\xf4\x19\xc8\x69\xe3\x9c\xd8\x5d\xa3\xcd\x24\x34\xa1\xa6\x8c\xfa\x20\x46\x3f\x21\x0b\x9f\x39\x42\xd7\xa9\xda\xd4\x7d\xcc\x1a\x60\x6e\x9f\x41\xbd\x3d\xbd\x8c\xc9\x85\x9b\xec\x08\xa1\x6b\xe4\x89\x69\xd9\xe2\xc4\xf7\x59\x81\xc8\x74\x3e\x6e\x6c\x80\x4b\xdd\xb3\x33\x95\xc5\x18\x6a\xe7\xbe\x94\x47\x4c\x2c\xdd\x3d\x01\xce\x63\x1d\xcf\x2f\xc8\x44\xec\x38\xbd\x62\x12\x65\x6b\xc9\x16\xad\x29\x15\x34\xb5\x8e\x60\x79\xb9\x6c\xd0\x7c\x1c\xcb\xa7\x9e\xc6\xab\x97\x9f\x7a\x9b\x2a\xb6\x51\x79\x61\xba\x08\x9c\xc2\x53\xa7\xc4\xae\x93\x1f\xc7\x83\x8f\x6d\x3f\x7e\x53\x5f\x03\x9a\x19\x49\x3d\xe4\x98\xaa\x01\xcb\xb2\xbc\x70\xf9\x78\x2e\x98\xe3\xae\x3f\x6f\x1c\xd4\xc5\xe4\x23\x45\xa1\xae\x70\xac\xdd\x65\xf9\x9e\x9f\xe4\x6f\xb7\x13\xd6\xa2\x1d\x98\x50\xd7\xfb\xf8\xcf\x4d\x7a\x46\x91\x3f\xcf\xbb\x50\xda\x73\x1c\x53\xc8\x72\x67\x12\x7e\xe3\xd9\x9f\x5b\x09\x85\xa6\xfc\xac\x14\xce\x98\x41\x3a\x56\xe3\x56\x64\x83\x67\x76\x3b\x21\xe5\xde\x24\xcb\x6b\x73\x90\xd3\x4d\xd6\x5e\x9f\x3c\x88\x54\xf6\x9e\x77\x92\xfb\xad\xbc\xcf\x9b\x7e\x0e\x0c\x78\x84\x46\xfa\x45\x30\xc1\xaa\xed\xbc\xba\xc9\x36\x81\xc4\x3c\xfe\xfb\xc0\xac\x21\x45\x71\xaf\xbe\xde\x6e\x85\xfb\xdc\x35\xd5\xca\xc6\xba\x89\x2f\x84\x89\x07\xc9\x23\x83\xb2\xb4\x7d\x6e\xab\x96\xf4\x40\x57\xe9\x60\x08\x7a\xb2\xfc\x14\x6d\xb4\xf3\x98\x54\xc6\x05\xf4\x04\xb8\x5a\x4a\xf0\x66\x7e\x4e\x92\x2c\x65\x84\xf2\xcc\x6f\x4f\x8c\xdc\xd0\x72\xd1\x2e\x2f\x66\xa5\xa0\xd5\x89\x65\x9a\x48\x4a\xcc\x52\xd4\xe9\x70\x36\xe7\xd4\xc9\x04\x22\x54\x1c\x36\x9f\x28\x1f\xce\xf6\xc1\xdf\x3b\xc6\xb5\x1e\x4c\xf7\x02\x36\x56\xc2\x13\x30\xc4\x1e\x46\x72\xa9\xbb\xcc\xf3\x69\xb0\x7c\x1c\x25\x07\x75\x70\xc5\x99\xe2\xcd\xab\x76\xf6\x85\x4b\xdb\x90\x99\x8d\x17\x38\x2d\x3d\xc0\x71\x3a\x23\xf6\xbd\x15\x2f\x65\x44\xba\x8f\x33\x38\xb0\x6c\x75\x89\x23\x60\x1f\x9a\xdf\x26\x11\xca\xe1\x92\x78\x2c\xa9\x20\x52\xad\x8f\xea\xbe\x4b\x28\x66\x0d\x7c\x0d\xc4\xd7\x26\x5a\xfe\x82\x17\xcf\x44\xfc\x0a\xdb\x3e\x63\xe3\xe2\x44\x87\x30\x82\x10\x65\x36\x5c\xe1\xca\x35\x15\x5e\xb9\x5b\x78\xbd\x50\xec\xdf\x15\x76\x90\x1f\x04\xbd\xc6\xa1\x35\x67\x61\xf4\x01\xd6\x77\x9c\xeb\xb9\x54\x6f\x75\x2f\xbb\x26\x0b\xd2\x46\x30\x52\x0f\x13\x30\x5c\x20\x63\x06\x30\x09\xc6\x41\x58\xc8\x3d\x72\x9c\x0a\x96\xe5\x4b\xa6\x7c\xc7\xf4\x35\x2b\xec\xd1\xbe\xa7\xfd\x12\x7b\x6d\x2c\xc5\x35\x55\xcc\xbd\x6e\x62\x2e\xea\xd4\x5a\x86\xa1\x3f\x93\xa9\x48\x4c\xde\xb3\x58\x23\x5c\x09\x8a\x3f\x60\xad\xe4\x3f\x61\xaf\x71\xc5\x3a\x42\x05\xfe\xd6\x12\x19\x9b\x20\x6b\x0c\x1a\xe1\x6e\xc1\x62\x04\x6b\x2c\xa1\xc3\x90\x0c\x52\xd4\xf7\xe0\x1b\x9d\xe3\xf9\x08\x26\xe8\x3a\x7a\x1c\x8b\x70\x82\x19\x8b\x15\x35\x22\x51\x0a\x22\x09\x59\x9d\xa9\xc6\xf5\x24\x62\xe1\x57\xf7\x8d\xc6\x54\x1e\xcb\x21\x11\x39\x9e\x19\xe1\x54\x1e\x0a\x28\x24\xe2\x3a\x42\x27\xab\xce\xc9\x35\x0d\x39\x1e\x67\xd8\xa4\x4f\x5b\x8a\xb2\xa3\x3a\xc0\xe1\x01\xfb\x04\x1b\xce\xb3\x40\x89\x6b\x59\xe0\xcd\x84\xfd\x41\x66\xeb\xea\xe1\x2f\xf4\x49\x7a\xdb\x5b\x22\x2a\xd3\x39\xf7\xad\x1b\x34\x52\xae\x28\xcc\x34\x0b\x27\x4c\x84\xa5\xf0\x09\x49\x16\xa2\xbc\x2a\x84\x3e\x2b\x44\x33\x94\x00\x8b\x53\x67\x88\x27\x4c\x5f\xf1\xef\x8c\x90\xe3\xc2\x88\x1a\xa1\xa7\x5c\xbf\xf1\x64\xd8\x90\x98\x7e\x2c\xab\xcf\xfc\xae\x8c\xcc\x1e\x35\xf0\x54\xc2\x27\x1b\x3b\x70\xf2\x43\x48\xec\x01\xd8\xc7\x0f\xbf\x1d\x98\x0f\xcb\x6f\xe1\x33\x79\x7e\xdc\xdd\x15\x0d\xc0\x3d\x41\xb0\x30\xf0\x4f\x39\x7a\x7f\x78\x8e\x8c\x76\x4f\x80\x51\xe1\x2d\x9c\x7c\x61\xe3\xb0\x4d\x34\x5d\x7d\x99\xac\x36\x61\xa4\x2b\x9c\x66\x58\x1c\xa3\xcb\x2e\x8e\xfc\x45\x93\x09\xb6\x5c\x7e\xcc\xd8\x9f\x67\x2f\xbb\x9c\xa1\xcf\x13\xa2\x67\xe1\x42\x84\x19\xe1\x65\x08\x99\xfe\x9d\xf3\x58\xba\x5e\x58\x54\xb8\x21\x3c\x41\x70\x89\x8c\x8b\x2a\x9c\x18\x75\x88\x82\xcc\xe6\x55\x0e\x14\x7e\x4b\x9c\x30\x6d\x50\x8f\x54\x3a\x63\x92\xe8\xad\x8a\xb5\xf8\x43\xf0\x14\xbe\xb5\xf4\x95\xc0\xae\x46\x9f\x73\xc1\x1e\x4a\x22\x67\xfe\x4c\x75\x13\xeb\xab\x08\x4b\x7f\xe3\xfc\xa5\x5d\xe6\x44\x49\xca\x0f\x53\x9c\x41\xbf\xa3\x96\x90\x95\xd5\xd6\x0e\xa1\x78\x7c\x20\xd2\x7d\xab\x5d\x1a\xdf\x9c\x6a\xf3\x81\x53\x9d\xb3\x92\xda\xd9\xbc\x46\x75\x8a\x90\x51\x82\xf1\xe5\xd4\xb8\x72\xdf\xdd\x45\x5c\x0a\x76\x7f\x11\x96\xd5\xd6\xf5\x0e\x74\x85\x5e\xe2\xaa\x71\x05\x23\x2d\x44\x0e\x5a\xed\x2f\x19\xb7\x2b\x80\xcc\xfa\x0a\xc2\x36\x99\xe8\x72\x9d\xbe\xfb\x80\x94\x28\x38\x73\x2f\x5a\xc7\xf0\x87\xbe\xdc\x43\x8a\x51\x7e\x68\x52\x40\x8b\xd1\xaa\xbb\xe5\x62\x3f\x2e\xfd\xa4\xc5\x08\x92\x67\xc8\x0e\x96\x60\x29\xd2\x0e\x02\xc4\xd2\x47\xf7\xb4\xab\x4e\x9f\x53\xa7\x17\x27\xa1\x67\x19\xe0\xfc\x43\xfd\x62\xca\x9f\x9f\xdc\xec\x8e\x0b\x5c\x38\x9d\x26\x13\x0c\x64\xb6\x54\x82\x10\x81\x74\xed\x91\x7c\xb4\xaf\x67\xf8\x6f\x22\x03\x0b\xe2\x56\xce\x2d\xbc\x02\x1f\x0b\x56\xb6\x56\x17\x4d\xad\x8c\x8e\x36\xef\xd6\xe3\x4b\x39\xc2\x9d\x44\x52\x37\x74\x43\x17\xf9\x8e\xf8\x3c\x83\xb8\x3c\x2b\x75\xd2\x2a\xdf\x1a\xb4\x43\x5b\xc5\xd0\x98\x43\xf1\xe7\x3d\x1d\xb2\xf9\x4a\xe5\xd8\x5d\x56\x22\x94\x7d\x68\x8d\xde\xef\xe5\x03\x3c\xeb\x0c\x2b\x86\x75\xcd\x20\x53\x60\xe3\x21\x82\xef\x27\xea\x55\x36\xee\x51\x12\x1a\x85\x1b\xf5\x06\x9e\x0c\xf3\xcb\x0f\x1d\x53\xaa\x76\x05\x6f\x4c\x11\x38\x57\x9e\xc6\xd9\x42\x0e\x5a\xeb\x6b\x5d\x1d\x3f\x21\x06\x21\xdc\x3d\x82\x67\x8b\xab\x2f\x5f\x8f\x56\x9e\xd7\x6b\xe5\xee\x1c\x65\x87\xe7\x61\x1c\x60\x2f\xf5\x9d\xdc\xe7\x43\xe0\xc7\xea\x46\xc2\x4b\x90\x88\xb4\xa8\x16\xdb\xf8\x13\x0a\x0c\xf9\xf9\xb9\x5e\xe9\xc1\x79\x35\x30\x54\x80\x37\xeb\xba\x9b\x26\x03\x2f\xd4\x58\xf0\xd5\xd1\xd1\x11\x16\x44\x48\x64\xf0\xb4\x02\xb4\x8b\xec\xbd\x66\x3f\x05\x2e\x82\x6e\xbd\x41\x1b\xb4\xcc\xbe\xe4\x9d\xcd\x93\x16\xa2\x73\xd9\x49\x9f\x54\x3a\x4c\xea\x79\x56\x4c\xc3\xa0\x36\x78\x2c\x67\xee\xd7\xee\x64\x62\xf7\xbe\x8b\x45\x82\x93\x20\x18\x73\xff\xac\xec\xf0\x09\xea\x41\x59\x49\x5a\xd5\x15\xe9\x81\x4b\xbe\x73\x98\xf0\xfa\x9e\x87\xda\x1a\x43\x70\xeb\x72\x7f\x1b\xd7\x77\x26\x89\x2c\x49\x5c\x50\xdc\x34\xc9\x86\x71\xc8\x8f\x08\xe9\x1e\xc8\xe8\xc1\xaf\x15\x63\xed\xa9\x01\xda\xc1\xc3\xb8\xe6\xd2\xd2\x2a\xa7\x84\x55\x0e\x64\xd7\xcb\x44\x59\x46\x2f\x79\xea\x64\x66\x8e\x2f\xc6\x25\x12\x5a\x94\x52\x2f\x3a\x02\x42\x16\x85\xfd\x5e\x9d\xf2\xeb\x1a\x50\x5e\xa7\x93\x0c\xd1\xef\xc5\x84\xf9\x71\x1f\x0d\x9a\xf3\x03\x2c\xfb\x9a\xe6\xf7\x08\x31\xcc\x44\x96\x03\xcf\xf0\xd1\x99\x8b\x73\xc0\xea\x8c\xc0\x2c\xbd\xc9\x76\x5a\x05\x2d\x7e\xc7\x03\xe0\xd5\xce\x78\x71\x3c\x37\x63\xe9\x3e\x22\xba\x2d\x80\xdb\x08\xf7\xa0\x8b\xf6\x32\x35\xeb\xea\xd3\x35\xf6\xaa\x7b\x83\x41\xcd\x5d\x6d\x27\x8b\x58\x2d\x5d\xee\x3b\x77\xe7\xf3\x06\x98\x4c\xaf\x3f\xdc\xe4\x0e\x99\xea\x48\x68\x19\x10\xa9\xc6\x2d\x80\x16\x17\x4c\x31\x4d\x4b\x5d\x11\x87\x49\x74\xc9\xd4\x7b\xfa\x4e\x65\x67\xbf\x4d\x2c\xa6\xee\xca\x1d\xd8\x6f\x52\x7c\xdf\x8b\x64\x8b\xd3\x26\x19\xa3\xd5\xf1\x45\x9a\x03\xc2\xe8\xea\x71\xa5\x58\xad\x96\x07\xc1\x17\xbd\xff\x78\x0e\xf0\xcb\xc1\xd0\x6d\x81\xb1\xe2\xe9\x5b\x9b\xae\x33\xf5\x0e\xa2\xab\x70\xa4\x9f\xb7\x84\xf9\x51\x64\xbf\x49\x50\xe2\xba\xd3\x38\x91\x43\x85\x1f\x37\x9b\xae\xce\x91\x94\x7f\x84\x99\x24\xb3\x8c\x59\x56\xe6\x0c\xe6\xa0\xfb\x28\x4b\x88\xe1\x96\x55\x7d\x06\xe3\x5e\x42\x52\xe7\xb1\xa0\x0b\x23\xc7\x37\xcd\x47\x40\xbd\x70\xdb\x4c\x2a\xa2\x7f\x76\x3c\xd9\x3f\x50\x90\xcc\x6a\x51\x66\x78\x7c\x6d\xfb\xbe\xcd\x32\x4d\x64\xd9\x74\xd9\x0f\x48\xdd\xdc\x35\x6a\x95\x6b\x1b\x55\x71\xaf\x13\x37\xbd\xe9\xfb\xec\xa5\xae\x3c\xa2\x6d\xfc\x7c\x4c\x5d\xd5\x0a\xac\x1e\xd7\x96\xd9\x22\xa7\x5f\xeb\xb1\x11\x57\xd4\xe9\x9a\x4d\x2e\x5f\xf9\xb1\x7f\x68\x2c\xb8\x88\xa1\x7d\xea\xf1\x5a\x4e\x3e\x8d\x17\xa7\x76\x62\x2d\x30\x94\x0f\x17\x7f\x80\x7a\x16\x3a\xb1\x42\x2e\x76\x09\xc3\x99\xf1\x4f\x27\x8a\xb8\xf8\x4b\x41\x2b\x32\x7f\x84\x75\xa5\xc9\x04\x92\xed\x58\xa0\xe0\xcd\x2d\x7c\x9d\x4b\x44\xae\x33\x87\xbd\x14\xe2\xb5\x95\xca\x52\x0d\x61\xe8\x7c\xb4\xfc\xc3\x9f\x28\x98\xe9\x8c\x28\x32\xa6\x1d\x5b\xbb\x6c\x32\x76\xb5\x0c\xd8\x81\xb0\xdc\xe6\x7f\x5e\x9a\xff\x1c\xef\x9b\x20\x9c\x5a\xef\x1d\x82\xb1\xa8\x1d\xf3\x03\x42\x9e\x33\x3b\x71\xf5\x45\x65\x8f\xc5\x93\x9d\xaa\xea\x60\xde\xb6\xa5\x98\x33\x1f\x75\x89\x2d\x33\x6b\xb1\xd8\x74\x3b\x85\x09\xd4\xec\x4b\xd1\x86\x7c\xdf\x33\xab\xd9\xb4\x3d\x20\xdd\x70\x11\x6a\xc3\xf8\x41\xdb\xdb\x9d\x4c\x81\x73\xb9\xb6\xdf\xa1\x91\xd4\x6e\x57\x8d\x16\x6d\x26\x68\xa2\xee\xd1\x50\xa0\x79\x3f\xd8\xcd\x47\xc1\x00\x3a\x8d\x56\x09\x8b\xd3\x6f\xd1\xdd\x48\x98\xe9\xad\x70\x0e\xa4\xf7\x31\xd9\x48\xc8\x39\x0b\xc8\xcd\x01\xae\x25\x73\xfe\x5c\xea\xed\x2b\x50\x63\xc5\x67\xa0\x55\x92\x19\x37\x44\x87\x0e\xa8\xd7\x25\x40\xfa\xf1\x4d\x2f\x62\x09\x9d\xc3\xd0\xfb\xe6\xe9\x8c\x65\xb8\x9f\x77\xfb\xd9\x03\x33\xf5\x0b\xb6\x14\xb1\xb9\x69\x00\x68\x83\x58\x38\x58\x8a\x19\x31\x7c\x02\x28\x29\x59\x31\x07\xa1\x2d\x7d\x7e\xc4\x08\x21\xb9\xdd\xa6\x6e\xcc\x93\xc5\xc8\x3e\x40\xba\x92\x2e\x08\xff\xec\x2d\x3b\xb2\x57\x7e\x41\xef\xcc\x73\x18\x07\xfb\x1e\xcd\x2c\x77\x86\xa1\xf8\xd4\x42\xda\x6b\x1d\x38\xf3\xdc\x95\xcf\xf1\xe8\xf2\x53\x2d\xcc\x90\x12\x8b\xbf\xb4\x12\x6d\x76\xea\xe4\x27\xa4\xaf\x4c\x8a\x16\xad\x63\xae\x29\x94\xbb\x86\xa9\x65\x70\x55\xdb\x0f\x39\x2f\xa4\x5d\x63\xca\xfa\x99\x3f\xdc\x96\x8c\x22\xc6\xfd\xb3\xd3\x21\xbc\xd8\x9f\xbc\xdc\x9d\xd2\x84\xb2\x47\xbf\xb6\xa7\xff\x2d\x5e\x3a\x24\x6e\x26\x63\x10\x83\xd0\x28\x63\x7a\x24\x1c\xa3\x29\xea\xa2\x51\x67\xa5\xb6\x67\xe1\x6d\xa8\x63\x4f\x20\xe5\x69\x55\xbe\x1f\x2f\xb7\xab\x88\x2b\x51\x1d\xa0\x5d\x9f\x99\x59\xdd\x7b\x58\x46\xb0\x11\x02\xc8\x80\x87\x60\x86\xe7\x9f\x3b\x79\x6c\xce\x1e\x48\x8c\x6c\x24\xf4\x16\xf9\xf2\x62\xd3\x57\x56\xef\xec\x5d\x53\xe0\xe5\x37\xd9\x15\x40\x07\xe2\xe2\x07\x7d\x7a\xb8\xf6\xaa\xdb\xa0\x3d\x63\xa9\x7b\x73\x58\x17\x91\x8d\x94\x83\x97\x56\x65\xb8\xb9\x8a\x9c\x1b\x98\x16\xbf\x96\xbb\xb6\x0f\xec\xbe\xfa\x83\x3e\xe8\xef\x5e\x11\x9a\xff\xa6\x5e\xea\xda\xbd\x05\x16\x83\x27\xb2\x46\x43\xde\x5c\x55\x03\x65\x0d\xb1\xa1\x56\x8c\x45\xb4\xaf\xb8\x87\x1b\x05\x4d\xd6\xbe\xe0\x89\x91\xd8\xa3\x68\x3a\xa4\x10\xed\xf9\x9e\x0f\x5f\x7b\xbf\x2a\xc1\xa7\x82\xf7\x77\x51\xae\x96\x9e\xa5\x1b\x2c\xdb\x22\x79\x45\x09\xdf\xe6\x39\xa6\x89\x61\xec\x12\xbc\x73\xb4\x0c\x1a\x32\x5c\xf9\xd9\xe6\x6d\x33\x51\x94\x21\xd4\x1b\x8f\x58\x6c\x9a\x26\xdd\x6a\xbe\x6c\xce\xe0\x74\x85\x30\xf1\xc7\xa5\x3f\x21\x1b\x0c\x0f\x7a\xeb\x39\x04\x1c\x23\xe9\x32\x8a\xd0\x34\xc0\xc6\x92\x81\x73\xd3\x9e\x88\xc6\xbf\x04\xfb\x05\x78\x94\x5e\x0a\xdd\xf9\x8f\x79\x6c\xad\xe3\x81\x35\xe6\x96\xb7\x3a\x8d\xdd\x34\x38\x26\xef\x3e\x83\x4b\x35\x72\x68\xaa\xae\x5f\xc2\x3a\xda\x79\x8f\x3e\xf7\x47\x12\x7e\x84\xd6\xb7\xf3\x04\x32\x42\x26\xda\x76\x8c\x84\x49\x25\xeb\xba\xd8\x35\xc4\xc8\x35\x5d\x1e\xe2\x76\x39\xe7\x05\x71\x59\x6a\x43\xe5\x62\xd8\x1b\x3b\xe9\xac\x98\xa6\x90\xd2\xe5\x7b\xc1\xa1\x1c\xc0\xbc\xa9\xe1\x7b\x8e\x3e\x69\xdb\x7b\xb7\xba\x01\x00\x07\x18\x0c\xc0\x53\xc5\x6d\x0a\xef\x80\x7a\xf3\xb5\x8b\x71\xac\xc2\xaa\x14\x04\xda\xcf\x1f\xbe\x97\xb4\x34\xbe\x7e\x02\x88\x92\x73\x5b\xeb\xe6\x28\x34\x07\x87\xe9\xd3\x67\xa5\x60\x41\x3b\x8b\x0a\x7e\x22\x5a\x57\xb4\x7c\x51\x05\x4c\x45\x0e\xa1\x38\x17\xf8\x4d\xf1\xe6\x6d\x52\x2a\x2c\x90\x62\x07\x9c\x41\x99\xb2\xf4\xdb\x97\xa6\xf8\xa5\xd9\x39\x59\x9b\x01\x40\x97\x1b\x37\xf9\x87\x4b\x5a\xdc\x04\x32\x6c\x24\xe2\x36\xa1\x87\xaa\x0c\x1c\x5a\x22\xb2\xb7\x53\x03\xb4\x62\x5d\xd1\xee\x60\xcc\x55\xb6\xf4\xaa\x33\xd3\xe1\xf8\x4c\x6c\xa8\x9c\x64\x28\xd8\x63\xb3\xf2\xcc\x3e\x1e\x2a\x28\xc9\xb5\x20\x98\x84\xce\x3b\x95\x17\x84\xf7\x7f\x95\xec\xd7\xf4\xb1\x6a\x99\x1b\xea\x41\x5d\xdb\x2a\x01\xca\x75\x5d\xfa\x60\x86\xdf\xf3\xeb\xc3\x60\x12\xcc\xe7\x81\x05\xad\xb4\x6b\x46\x80\xb9\xe4\xc5\x9d\x63\x8f\x9f\xac\x9a\x9b\x54\x21\xb6\x2b\xb1\x82\x5c\xd9\x10\x5f\xac\x28\x78\xd9\x0b\x22\xf3\xa6\x9a\x5f\x73\x05\x27\xf9\xa3\x87\xba\xc8\x05\x77\xa5\x3b\x9a\xd8\xb2\xcb\xdf\xf2\x45\x9d\x9a\x7a\x38\x03\x53\x87\x39\x01\x2e\x3e\xad\x61\x56\xd5\x04\x87\x71\x71\x90\x1c\x4e\x0e\xf2\xf2\x33\xc4\xf5\x41\xc3\x1d\x0b\xe9\xae\x96\x48\x33\x80\x74\x44\x90\xe5\xe0\x5b\x40\xca\xa2\xe0\x50\xba\x06\x96\x41\x89\xdd\xc4\x48\x0a\xc2\xf5\x7d\x1c\xdb\xf5\xb2\x78\x1e\x90\x4d\xfa\x31\xf3\xfa\x1c\xe5\xb2\x0d\xb2\xee\xd8\xe6\x89\xc5\x1a\x77\x56\x7f\xbe\x07\xf9\x10\x2d\xd9\x87\x09\x57\xbe\x76\xbe\x43\x8a\x75\xe7\xd4\xf9\x4c\xa9\x92\xb1\x2f\x91\x81\x39\x78\x3e\xf7\x8b\xc2\xb7\xb9\x58\x9e\x41\x5b\xf7\x18\x06\xe9\x64\x9f\x50\x80\x46\xce\x3f\xdc\x36\xc5\x9d\xf0\x99\x7a\x61\x87\xb3\x28\xfb\xd2\x82\xf1\x53\x3c\x7e\xf7\x3c\xe1\x62\x96\xde\xe1\x37\x45\x8a\xe1\x08\x23\x60\x26\x50\x91\x70\xee\x63\x09\x16\xfe\x7e\x1a\xb8\x7b\xc6\xcd\x5a\x80\x6f\xc7\xe4\xa4\xf0\xe1\x5a\x74\x65\x63\x34\xf2\x38\xa8\x9e\x50\x87\xaa\x55\x14\xe3\xcf\x8d\xb0\x60\x89\x3b\x5a\x96\x5f\xfd\xb7\xf0\xe3\xf2\x15\x76\x94\xa6\x15\x5f\xfd\x8e\x1b\x89\x62\xae\x93\x40\xc6\x68\xf7\x53\xd3\x5e\x67\x0f\xce\x10\xf6\x1e\x05\x64\x53\xcb\x0b\xab\xb4\x66\xef\xef\xb7\x95\x10\xec\xdd\x81\x31\x70\xf9\x52\x20\x6b\xd1\xdf\xf9\x46\x26\x9b\x8e\x22\x8b\x12\x23\x54\xd1\x2c\x58\xf0\xec\x48\x53\x57\xe8\x6a\x40\xc7\xc6\x9b\x83\xda\x82\x7a\xab\x3d\x92\xde\x65\x1f\x6a\x2d\xa1\x29\x2b\x57\x54\x0e\xe8\xe4\x9b\xed\x57\xc9\xe3\x8f\x2f\xde\x53\xd7\x31\x29\x3d\xc5\xf0\x58\xaa\x90\xa6\x95\xc4\x50\x21\xfe\x95\xc4\x1f\x00\x49\x14\x4c\x28\x44\x9b\x28\xef\x41\x66\xcf\xde\x65\xc6\x67\x8e\xcc\xcf\x72\x4f\x3f\x6d\x16\xba\xd9\x2c\x9f\xda\x2c\x4b\xa5\x54\x07\x4f\x8a\x0b\x16\x2e\x3b\xde\x96\x2e\x0b\xbb\xa9\x6f\x5e\xc4\x27\x08\x76\x2b\x1e\x5e\x08\x1a\x8b\x60\x95\xda\x03\xaf\x00\x5e\x50\x57\x5c\xb5\x44\x74\x5d\xbc\x6f\x7a\x2d\xb7\x2f\xf9\xf7\xb3\xd0\x45\x98\x96\x72\xd0\x56\xab\xd6\x62\x62\x10\xfd\x4c\xb4\x73\xbe\xdd\xe8\x43\x87\x56\x89\xf3\x46\xca\x3e\x10\xee\x99\x54\x78\xf9\x7e\x75\x3b\x0a\xdb\x8a\xf4\xaf\xf3\x81\x1a\xcf\x77\xbf\xe3\x64\xbf\x00\x5d\xcc\x13\xbd\xda\x21\x23\xed\xb9\x26\x39\x22\x8a\x7e\xb8\x75\x79\x56\xa0\x23\xd3\x83\x04\x5b\x66\xc8\xc7\x97\xf6\xa0\x2b\xfa\x2b\x95\x00\xb4\x4f\x77\x10\xa9\xac\xc3\x4e\x9d\x53\x7a\x6a\x56\xf2\xc6\x78\xc2\x75\x34\x51\xac\x48\x4a\x10\x46\xb2\xdd\x70\x8b\x1d\x41\x09\xff\x6e\xa6\x1b\xfc\x8c\xe3\x28\xa0\x30\x91\x8e\x28\x56\xa1\xef\xd0\x2e\x39\x67\x99\xee\xdc\xbe\xf2\x7f\x56\x04\x6f\xcc\x83\x9c\xcb\xa6\x61\x1a\x0a\x0d\xf7\x3a\x89\xfe\xa0\x44\x32\xad\xee\x7c\x3d\xb4\xd1\x1d\x1f\x9f\xbb\x5b\xab\x59\x01\x69\x30\x2b\x20\x96\x9e\x3f\xc9\xd9\x18\x11\x9f\x2e\x25\xe9\x94\x57\x2e\x2e\x86\x06\xd3\xde\x89\xfa\x00\xda\xdb\x90\xba\x99\x98\x72\x06\x9d\x2f\x81\x14\x5f\xca\xf4\x3c\xa6\xf2\x0d\x21\x80\x3e\x1a\x2c\x09\x57\x0c\x22\xc8\x43\x91\x85\x61\x17\xad\x96\xc1\x73\xfc\x4d\xf3\xca\x53\xc7\xf1\xf3\xd2\x85\xdf\x23\xca\xa8\x75\x97\x63\x15\x52\xdc\x9f\xa4\x21\x33\x1f\x66\xef\xcd\xb9\x6e\xbb\xc4\x3e\x74\xb3\x3f\x8f\xdd\x7e\xc6\x76\xab\x37\x97\x08\x81\xb9\x29\x59\x7f\xa3\xc7\x9c\xab\x13\xe4\xc6\xa6\xab\xb6\x51\x03\x25\xb0\x17\x26\x5c\x49\x70\xe9\xa3\x09\xd8\x5f\x6a\xd3\x16\x38\xee\x6c\x4c\xec\x86\x99\x12\x50\xe6\xc3\x49\x6f\xf7\xce\xd9\x00\x8b\xb8\xe2\xd0\xb4\xaa\x68\x47\x24\xa9\x5a\xc6\xa3\x23\x02\x83\x7b\xb3\x0f\x01\xbb\xa9\x06\x4d\x5b\x14\x8c\xcb\x51\x84\x54\x72\x6c\xc1\xf4\x66\xa3\x1d\x8b\x56\x06\xaf\x76\x8d\x24\xd9\x12\xbe\x14\x34\xf9\x9a\x6c\xb1\x65\x54\xc0\x58\xd2\x55\x44\x94\x53\x7d\x10\x46\xa8\x2b\xee\x74\x46\xfb\x97\x25\x89\x90\x38\xaa\x88\x35\x4a\xa2\xde\x21\x42\x21\x42\x15\x96\xa6\xec\x42\xc3\x52\x19\x65\x2e\x4a\x7f\xc2\xbb\x0c\x32\x52\xd3\xc0\xbd\x25\xfd\xbc\x32\xea\x8f\x9d\x18\x7a\xa5\xf9\xdc\x30\x91\xb2\x2c\x43\xd8\x55\xbf\x65\x72\x32\x69\xa9\x9c\x1e\x22\x3d\x6c\x67\x38\x02\x17\x25\x6d\x82\x57\x1b\x9a\x24\x8b\xd8\xfd\xd3\x4e\x38\x7e\xcf\xc7\x51\xe1\xe9\xd2\x21\xda\xcb\x1d\x9c\xfb\x7c\x46\x2c\xef\x85\x2b\xea\xc6\x15\xc1\x52\x23\xc0\x65\x56\xb9\x75\xe0\xe0\x7c\x3a\x85\x36\x6f\x6b\xb2\x94\x3e\xa1\x66\xe8\xad\x9f\x5e\xd2\x16\x42\xd5\x87\x11\x1f\xe4\x30\xb3\x6a\x7d\x3b\x92\x7e\xf2\xb2\x4c\xc2\x6d\xe8\x38\x0e\xd4\x74\x83\x42\xc8\x77\xc4\xe0\xcc\x67\x77\x3d\x92\xc8\xe0\xac\x4e\xe8\xc3\xc3\xb0\x4c\x3c\x8d\xf1\xf1\x4d\x20\x31\xab\x1c\x8f\xb8\xcc\x7e\xc8\x13\x42\xa4\x7e\xf8\x84\x88\x87\xc1\xce\x15\x93\xe1\x28\xf2\xfd\xd5\x4c\x6f\xf8\x90\x3d\x04\xa0\x33\xec\x34\x61\x60\xe3\xed\x61\x65\x55\xd6\xf2\x4f\x15\xe4\x28\x65\xc7\x11\xe9\x03\x3c\x6a\x7c\x6d\x70\x26\xc3\xe3\xb2\xd3\xeb\xb2\xb6\x3d\x0e\xeb\x54\xb6\x61\x68\x1a\xbd\xe3\x5e\xa9\x9c\x51\x67\x51\x5f\x03\x6b\xd7\xd3\x74\x48\x6c\x9e\x2c\xc6\x04\xad\xbd\xa4\x5d\x6d\x85\x86\x7a\x48\xd5\xc4\xe2\x7a\x1f\x53\xa7\xd7\x30\x4a\xf1\x26\x39\x85\x6a\x3d\x74\x25\x12\x2d\x11\x45\x38\xc7\xb8\xe4\x1b\xfb\xe6\x97\xc7\xbe\x84\xae\x7e\xdc\x0d\x75\xe9\xa6\x36\x95\x71\x8c\x42\x9d\xfa\x6f\x8e\xe2\xe7\x36\x75\xc8\xbb\x88\xd2\xc1\x30\x7c\x81\xe6\xf0\x99\x18\x6a\xef\x7d\xcf\x99\xfa\x4e\xb4\xae\x40\x46\x74\xa1\xb5\x9d\xae\x2f\x69\x45\xaf\xc6\x50\x7e\xd5\x2a\x09\x19\x29\x07\x0a\x3e\xd0\x8a\xbb\xac\x64\x58\xbc\x9b\x9e\x3c\x8b\x59\xc2\x0d\xfd\x55\xf3\x5a\xea\x3b\x68\xf5\xe4\x0e\xff\x3d\x75\x87\x2e\xab\x77\xf5\x9d\xc9\x3e\xee\xad\xaf\x41\x46\x47\x71\xb1\xea\x4f\xd7\x69\x09\xcd\x3a\x64\xfd\x60\x2c\x0e\x0a\x2a\x5f\x49\x0c\x4e\x13\x8b\x73\x0c\x3f\x2a\x26\x81\x42\xb7\x68\x8d\xcf\xd6\x7e\xdf\xf8\x1c\xfb\x68\xa2\x7b\x65\x1b\xf0\xc6\xb9\xbe\x87\x98\x67\x6a\x68\x71\x91\x3c\x63\x3c\x02\x42\x1c\x14\x9b\x0b\x44\x84\x4a\x24\x3d\x7a\x57\xda\x9b\xee\x73\xce\xc0\x0c\xd0\x44\x30\xe4\x75\x32\x49\x33\xf7\xb3\x26\x60\x94\x78\x62\xc9\xdf\xbe\x43\xeb\xef\xc6\xcd\x3c\x67\xa8\x64\x89\xbf\xaf\xaf\xb2\x76\x7c\x7d\xe7\x9a\x5f\x16\xf7\x33\x13\x4d\x3c\x1c\x28\xa2\x58\x92\xd4\x9e\xcd\x77\xbd\xb4\x67\xff\x99\x58\x54\x22\x76\x48\x3d\x98\x1b\x59\x88\x02\xeb\xe3\x14\xb9\x60\x75\xcd\x05\xe7\x76\x82\x2c\x0b\xe9\xfe\xa7\x95\x65\x42\x03\xe4\x1f\xb1\x1a\x58\xa4\x6a\x97\xd4\x75\x61\x0e\x07\x05\x8b\x99\xc9\x42\x45\x53\xdd\xe8\xa0\x9b\x80\xa0\xef\xd3\x27\xd6\x85\x37\xe7\xea\x80\x32\xf5\x8b\x23\xf9\x1e\xfa\x3c\x90\x61\x08\x42\x6e\x89\x93\x68\x33\x4f\x82\x83\x38\x0a\xe5\xd3\xa8\xd1\x9c\x83\x17\x74\xdb\x66\x29\x04\x86\x45\x91\x9a\x7d\x51\x36\xd1\xba\x0a\x07\x97\x2d\x90\x91\xd7\x1e\x10\xc1\xc0\x6c\x09\x8e\x5b\x85\xa7\x54\x29\x73\x16\x58\x6a\xb3\x7e\x0f\xc7\x00\x31\x98\x9e\x18\x31\x50\x8e\x21\xc0\x16\x56\xec\x9a\xeb\x3d\xda\xe8\x72\x37\x12\xc0\xef\x6d\x9a\x79\x27\xe8\xe3\x18\xfb\x0b\x5a\x35\x38\x65\xf9\xf9\x9e\xab\x0e\xbb\x63\x66\xee\x32\x39\x34\x02\x17\x59\xd2\xbe\x61\x48\xd9\xa3\x97\xdf\x76\xa7\x4b\xb2\xb1\x9f\xe9\xed\x2c\x6b\x69\xc6\xcd\x7a\x2e\xa2\x3f\xb1\x20\x5f\x42\x54\x74\x0a\xbe\xa5\x9d\xb8\x19\xa8\x0a\x74\x0e\xc2\x42\x06\xf5\x46\x9c\x09\xb5\x1c\xe1\x9d\xcf\x47\x8a\x07\x09\x1d\xf0\xc2\x25\x08\x78\x33\x5d\xf6\xea\x7d\x68\x86\x63\x6c\x80\x57\x64\x6a\x26\x74\x75\x87\x6b\x42\x76\x5d\xa6\xd8\x37\x91\x3e\x68\xcc\x34\x26\x8f\x21\x76\xe0\x33\x62\x65\x6a\x1f\x7c\x83\xa8\x0f\x5e\x72\x84\x17\xb7\xd2\x1d\x3c\x52\x06\x42\x94\x5a\xf6\xd3\x0e\x5a\xa3\xc6\x83\xd5\x36\x78\x52\x58\x69\xe7\x73\x54\x0c\x93\x9a\x6d\x4f\x3b\x9c\x9c\x83\x2c\xc2\xab\x45\x76\xbf\xe3\xde\x1b\x15\x42\x71\x2a\x54\xda\x01\x44\xfb\x36\xef\xe2\x86\x46\xeb\x19\x2f\x45\x93\xb8\x67\x0a\x0c\x60\x44\x60\x6e\x65\x17\x18\x88\xba\xb1\x6d\x3a\xae\x72\x6f\xaa\x01\x51\x71\x24\xb9\x28\x4b\xe2\xa3\xdb\xb3\xa1\xce\xa5\xfb\x5a\x99\x4d\x06\x51\x69\xd3\x7d\xb4\xe5\xef\xfb\x61\x3a\x0b\x26\xa9\xaa\x5d\x8e\x6b\x06\xe6\x10\x98\x79\xa5\x38\x76\x35\x9b\x0a\x99\x4a\xe8\x34\x97\x95\x62\x44\xd2\xd1\x29\x44\xd8\x55\x28\xf4\xf7\xf4\x93\x58\x7e\x01\x6f\x79\xd5\xdb\xa7\x16\xcb\x62\x00\x48\x31\x9e\x81\x8d\x1c\x88\xad\x82\xa4\x2c\xf4\xb9\x92\x49\xb2\x34\x78\xbd\xdc\x1c\x90\x07\xea\xb1\x9d\x28\x2c\x01\xbf\xbd\x00\xd5\xde\x56\x28\xa3\x64\xaa\x72\x27\x5d\x48\x15\x34\x08\x5c\x83\x93\x40\x75\xff\xe7\x25\xe4\x4a\x4d\x13\x4d\x74\x69\x33\x47\x41\x81\x34\x6a\xb8\xe7\x8e\x4f\x39\xc3\xde\xc3\xcb\x61\x11\xdd\x3e\x1d\xb2\x21\x36\xbb\x82\x2f\x53\xf6\x73\x84\x9d\xaf\xc6\xa5\x43\x49\xa4\xb8\xd1\x4f\xef\xc3\x71\xf8\xfd\xe2\x11\x6c\xad\x8e\x0a\xa6\x49\xe1\x4d\x2b\xaa\x3c\xcb\x07\xbf\x84\x3f\x6a\xcf\xe8\x4c\xf4\x33\x6c\x14\x02\xc3\xad\xf4\xee\x6c\xf2\xb6\xe9\x91\xb0\x1b\xaa\x54\x80\x2e\x48\xd8\x5b\x23\x17\xdf\x12\xad\xbf\x9b\x76\x06\xbf\x9c\x2f\xae\x27\xb0\xe6\x72\x49\x95\x4d\xef\xf7\x03\x09\x92\x1b\x81\x5d\xc9\x32\x8a\x01\x70\xd4\xb3\x9b\x9e\x0c\x81\x02\xe9\xf6\x88\x16\xce\x1c\xba\x1c\xa0\xb7\x74\x45\x11\xed\xfd\x24\xc4\xcd\x1b\xcc\x03\xc8\xc3\xa6\xc2\xd2\xe0\x80\x4d\x50\xa1\x85\xd7\xec\x62\xd9\x22\x04\xfd\x23\x21\xc3\xb2\xa5\xf9\xb1\xef\xae\x78\xa6\x37\x9e\x03\x14\x6c\xab\xc8\x20\x4e\x2b\x29\x21\x4a\x2a\xee\x60\x25\xf4\x19\xf5\x07\x8d\x7a\x75\x85\x09\x8e\x2a\xa9\xe9\x3e\x8a\x8b\x6f\x3b\xee\x6d\x95\x53\xa0\x29\x2a\x1f\xdd\x42\x1a\x1a\x7e\xd6\x5a\xb2\x32\x97\x77\x20\xaf\x68\x0c\x85\xc5\x81\xf0\xd6\x5e\x8e\x63\xac\xed\x62\xf6\x54\xbe\xf1\x95\x1f\xbe\xc5\x03\xd0\x3e\xb2\x44\xc7\x92\x3c\x03\xd9\x8a\x2c\xd4\x5b\xe6\x97\x3e\xec\xf6\x03\xe5\x09\x2a\xfc\x1e\x29\xab\xac\x5b\x50\xdf\x74\x21\x36\xb0\x4d\x31\x32\x3d\x07\x39\xbb\x48\x0e\x6a\xf0\x66\xa3\xa9\xee\x9b\x0b\xd9\x0e\xbd\x00\xf9\x48\x87\xf2\xd4\x79\x6a\x3e\x9b\x1a\x4c\x22\xfd\xcd\xa1\xad\x7d\x51\x94\xad\x2d\xc8\x32\x7e\xc1\xc5\x6a\x62\x30\x83\xb6\xf5\x7a\x23\x5a\x28\x0d\x19\x6b\x84\xd4\x7d\xdc\x7d\x7a\xfb\x76\x45\xf3\x5a\x1c\xc3\x7e\x40\x2d\x81\xfa\x30\x13\xad\x19\x98\x60\x33\x8f\x4c\xbf\x3f\x27\xeb\x8e\xa9\x63\xcc\xa2\xe6\x7e\xeb\x14\x99\x13\x0c\x5f\x3e\x6f\x0e\x84\x92\xb2\xee\x58\xf1\xaf\xa0\x58\xc8\xba\x51\xd3\xd3\xb5\x5d\xa3\x1c\xda\x99\x84\x71\x24\xcb\xd2\xf6\x8c\x63\xc3\x95\x66\xbf\xb8\xce\xbb\x72\x7d\x4c\x11\x04\x34\xdd\x28\xac\x86\x64\x6a\x5c\x4c\xdb\x7e\x6f\x23\xc7\x13\x19\x70\xd7\xd5\x2c\x6b\x71\x15\x33\xbd\x12\x8a\x04\xde\xbf\xf5\x87\x31\x16\x19\xc0\x61\x69\x21\x49\xee\x75\xfd\xd8\x57\x86\xd0\x0f\xfb\xa4\x19\xaf\xa2\xe7\xf0\xb4\x5d\x0b\x81\x87\xf9\xc2\x8b\x19\x0b\x8e\x7e\x7b\xd2\x11\xe8\x84\xdb\xa2\x1c\xb5\xf7\x08\xf2\x77\xf2\x35\xb2\x91\xb0\x70\x00\xad\x06\xe3\x62\x42\x0e\x23\x02\xae\xf6\x03\x54\xe8\x76\x48\xd4\xa0\x41\x98\x07\x4a\x9d\x92\x99\xdc\x57\x58\xc4\x24\x7a\x20\x23\x27\x1d\x5e\xb9\x3a\xd4\xd0\x2c\x1c\xf8\xa8\xf8\xf6\x0f\x51\x07\x68\x4a\x13\x0e\xfc\x13\xf5\x49\x03\xd0\xa6\x13\x2b\x74\x9d\x2a\x87\x44\x90\xa0\x51\x62\xd4\xc3\x2c\x62\x4f\x98\x6d\xbe\xde\x1e\xf4\x6a\xf0\x66\x54\xe5\x41\x2c\xd7\x70\x7a\x13\xce\x4c\x7f\x02\x91\xa9\x9d\x94\x82\x85\x5d\xa3\xf8\x90\xbe\x96\x90\x6d\x9b\x77\xdc\xe2\xe2\x6d\x08\x19\xf0\x66\x96\xf3\x97\xee\x73\x36\x64\x2d\xca\xe7\x43\xc3\xf4\xbd\xfd\xab\x31\x3c\x5d\xc1\x9b\x19\x00\xb6\x6a\xec\x6d\xc7\x06\x01\xa2\x57\x6a\x6b\x64\xf2\x17\xef\x25\x0a\x41\x70\x41\x28\xeb\x30\x23\xda\x78\x4f\x1d\xfe\xd0\x7e\xb2\x5d\xe6\x64\x87\x3b\xd4\xa4\x94\x76\xcb\xa6\xbe\x8e\xb6\x9a\xc0\x36\x92\x46\xd5\xdb\x0f\x48\x32\x0f\xa6\x03\x72\xab\x46\x0d\x28\xe4\x01\x82\x78\xe8\x98\xa0\xa4\xdf\xdd\x97\x0a\x2b\x8f\x55\xe0\xaa\xa9\xe9\x3c\x5f\x34\x9b\x96\x67\x28\x83\x52\x88\xed\x19\x32\xc0\x28\xda\xf4\x85\xae\x0c\xea\x99\x0d\x4a\xba\x9a\x31\xaf\xec\xcd\xd1\xae\x9b\xd9\xd6\xad\xc2\xa0\x1a\xad\xe6\x1f\x6f\x40\x90\x51\x92\x7b\xc7\x29\xc4\xe0\xb4\x18\xdb\x0e\x1c\x90\x26\xaf\x43\x46\x7c\x5e\xfa\x7c\x62\xf4\x8c\xc7\x56\x1e\xbc\x19\xe3\xf8\x71\x24\x5b\x7e\xc3\x07\x2a\x88\xbc\xb9\xa0\x5a\xe7\x20\x56\xda\x18\xd1\xe9\x5d\x56\x97\x55\x39\x85\xe7\x32\x89\x3f\x32\x16\x8a\xe8\xaa\x1a\x87\x91\x39\x25\x25\x5a\x1c\xe9\x2c\xd8\xc1\x59\xfa\xc4\xd6\xd5\xc3\xd2\x3d\x73\x70\x04\x96\x62\xcc\x34\x3a\xa7\xa2\x98\x2f\x84\x01\xa7\x4b\x26\xc0\x18\x9c\x9e\x66\x89\x0e\xb6\xdc\x45\x0f\x69\x84\xca\xbd\x6a\xf5\xa5\x1a\x9a\xc2\x22\x1e\xe1\x9f\x2f\xe0\x61\xcf\x28\x0a\x4e\xc2\x4b\x45\x31\xb4\x89\x97\xe0\xcd\x95\xb9\x2d\x2d\x3b\x48\x31\xe3\x62\x2c\x90\x31\x03\xd4\xf3\x11\x30\xd6\xcf\x91\xf9\xc8\xf4\x65\xa1\x9f\x87\xe7\x55\x6a\x6c\xec\xb8\x76\x5c\x4b\x94\xa2\x96\xf0\x8b\x2d\x5d\x5f\xd8\x11\x09\x6c\x92\x5d\x5b\xf4\xa7\xf0\xda\xf9\xca\xbe\xea\xf5\x50\x56\x61\x0e\xf1\x9a\x01\x45\xc8\x7c\xfd\xaa\xfb\x97\x07\xf4\x86\xbc\x2b\x6f\xa2\x11\xa1\x4f\xef\x4c\x8c\xaf\x96\xc1\xef\xb9\xe8\x58\x09\xdb\xc2\x29\xda\x40\x0b\x38\x66\x0d\x9b\x5f\xc3\x80\x4e\x5a\x75\x04\x29\x84\xc3\xac\x10\xca\xaf\xee\xea\x71\x53\xb8\x15\xb2\x39\x17\x94\xcc\xfa\x0e\xd0\xdb\x83\xd1\xa0\x29\xb2\xf3\x47\x59\x1b\xfb\x5b\xda\xeb\xfd\x95\x76\x60\x9a\xea\xbb\xf7\x7c\x21\x75\xaf\x20\x14\xe9\x56\xa6\x6a\xe7\x1c\x39\x5a\xb5\xfa\x28\x74\x53\xd4\x09\x2a\x11\xc1\xc8\x73\x8c\x54\xea\x0c\x6e\x2e\x69\x6c\x57\x1b\x01\x68\x40\x52\x86\xe6\x6d\xa5\x13\x53\xfe\x32\xb9\x70\x9c\xa0\x44\xa7\x75\xba\x51\x56\xa6\x22\x43\x85\x47\x7e\x92\xf0\x8c\x44\xcc\x79\x45\xc1\xc1\xd0\x40\x49\x69\x29\x48\xf4\x15\x05\xb2\xfb\x6f\xe4\x74\xf5\x8b\x30\x22\x2b\x31\x82\x41\x87\x74\x7e\xbf\x21\xe1\xd9\x28\x25\x7c\x3a\x7b\x9f\x4c\x69\xb9\xfb\x62\x40\x99\xd8\xa7\xfd\x5b\x00\xb8\x62\xa8\x92\x4b\x1f\x82\xd8\x19\x19\x20\x9f\xa5\x1b\x3d\x01\xe8\xdd\x17\x27\xdf\x06\xbc\x09\x85\xb2\x5f\x5a\x8a\xf4\xde\x17\xcc\x17\xc5\xf4\x41\x60\x17\xee\x96\xa0\x3c\xfa\x12\xe0\x8d\x5a\x10\x4d\x31\xe5\xa8\x1e\x01\x51\x1e\x41\xaf\x39\x48\x69\x9b\x37\xcb\xf9\x36\x44\x98\x5a\xc9\x25\xb5\xc9\xbd\x4b\x8b\x31\x9b\x3b\xf0\x1f\x95\xa3\x84\x72\x94\xeb\x61\xf1\x8e\x36\x63\xbd\x64\x0a\x0c\x33\x6f\xdf\x9a\x7e\x27\x76\x1f\x97\xa4\x71\x4a\x37\x65\x38\x14\x43\xa0\x57\x71\xb1\xc5\x8f\xa4\x05\x57\x5e\x27\x78\x59\xf8\x41\xb8\xf0\x60\x7e\xda\xd3\x2d\xf7\xb9\x50\xea\x2b\xc0\xf8\xbb\xd8\x22\x2a\xde\x30\x15\x5e\x0f\x01\x26\x31\xf5\x32\xa3\x44\xf6\xba\xe4\x5d\xf5\xb6\x7a\x2e\xa4\x9b\x66\xaf\x84\xec\xd9\xaf\x1a\x74\x7f\xae\xee\x2b\x64\x8a\x52\xca\xc5\x72\xaa\xa5\x17\x54\xb0\x8d\xf9\x55\xa3\xc5\x60\x8e\x1b\xd1\x14\xc8\xef\x79\x9d\xa4\xff\x6e\x32\xf7\x9d\x06\x2e\x31\xff\x31\x4a\xfb\x51\x51\xa2\xde\x7e\x9b\x1c\x46\x70\xc6\x88\xb9\x6e\xda\x2c\xb2\x5c\xb8\xb2\x95\x11\x11\xeb\x25\x9e\x1d\xfe\x4e\xac\x1c\x6d\x24\xd0\x04\x42\xcd\x42\x38\x5d\xb0\x95\x04\x2c\x12\xde\x97\x77\x71\xf5\x8c\xe7\x18\x4a\x11\xea\xa5\xc8\xed\xf2\x6f\x78\xfb\xa4\x23\xec\x22\x63\xdd\x29\x66\x61\xde\xcf\x3f\x6a\x1d\xb1\xf0\x32\x0d\xf5\xed\x54\x29\xee\x74\x90\x2d\xed\xa1\xa4\x34\x74\x5a\x7a\x8a\x20\x65\x2d\xe1\x14\x17\x87\x01\x3a\x03\x59\x83\x2c\x1d\x12\x0f\x8c\xb8\xd2\x76\x19\xa0\x6b\x2f\x83\x00\x54\xc6\xa2\x18\xfd\xe9\x6a\x9c\x84\x1a\xed\xc5\x5a\x13\x57\x12\xde\x8a\xb3\xf0\x69\x0f\x4d\xfd\xb8\xbb\xf2\x2c\xf7\x43\x7f\x7a\x2e\x0c\x9a\x04\xad\x4a\xf5\x46\xea\x7d\x51\x13\xb3\xef\xb3\x05\xad\xcf\xcd\x45\x93\x4d\x1c\x1b\xaf\x04\xd7\x84\x77\x44\x15\xa6\xfb\xa6\x6d\xd9\xea\xb2\x7b\x65\x9e\xa8\xc8\x88\x62\x0a\x53\x1d\xd0\xfd\x1e\x29\x39\xd7\xb3\x2f\x24\xa2\x6f\xea\xd3\xe7\xfb\x80\xe6\x38\x3a\x33\xd4\xd3\x00\x67\x16\x5d\x3f\x80\xfb\x0c\x29\x8f\x7e\xc4\x51\xcd\x34\x72\xca\x73\xac\xed\x89\xc6\x24\x4f\x3d\x9e\xda\x43\x17\xe9\x20\xa9\xdb\x79\xb5\x2e\x7b\x7c\x3c\xdd\xa6\x23\xe1\xc1\x4f\xd1\x82\xfd\xb9\x1d\x31\xbd\xf5\x79\x56\x3a\x74\xab\x52\x3a\x99\x26\xb4\x6b\x71\xed\xbc\xc0\x33\xd1\xc0\x46\x69\x2c\x60\xb8\x21\xef\xd0\x87\xb8\x9c\xdd\xef\x25\x56\x7a\x0d\xc4\x6b\x7c\xeb\x0d\xe8\xaf\x3b\x9c\x83\x37\x5b\x10\xd7\x4e\xa6\x24\x84\x63\x72\xbc\xa0\x6d\x8d\xea\x4f\xaf\xe0\xd9\xbb\x20\x30\xa0\x08\xf5\xd7\x3d\x87\x95\x70\xdd\xc4\x25\xdb\x05\x98\x80\x6e\x21\x96\x02\x78\x82\x3b\x9e\x92\x73\x80\x5c\xdf\x82\x37\xf3\xc9\x2c\xc9\x73\xed\x94\xdb\x0d\x37\x00\x95\x25\xc4\xcf\x79\x1d\xc2\x58\x71\x80\x26\x56\xf6\xea\x79\x38\xf1\x40\xba\x33\xcc\x78\x54\x34\x88\xcf\xe0\x46\x39\x0d\xe2\xb1\x53\xd7\x2f\x82\x52\x44\x47\x6a\x33\x09\xef\x96\xda\xcb\x67\xb3\x0f\x08\x14\xa1\xa1\x59\xc5\x0e\x4d\x8c\x2b\xef\xe3\x37\xd7\x39\x82\x81\x5f\x18\xd8\x0e\x83\xb7\x29\x17\x3e\xc3\xe4\x04\x2c\x75\x09\x27\x3a\x48\x69\x76\xee\x9c\x50\x40\x39\x29\x7e\x22\xbb\x6f\x74\xcc\xa4\xb9\xc9\xb4\x8e\x68\xf8\x8c\x0b\xd8\x4c\x40\xd5\xa2\x66\x2f\x17\x43\xbb\x62\x0d\x08\xc8\x17\x2d\xf2\xa9\x38\x2d\xb3\xfa\x02\x11\x72\xf9\x5a\xd5\x4b\x24\x1d\x09\x0b\xce\x36\x71\xf9\x88\x6b\x2d\x4f\x37\x7c\xf6\xe0\xa8\x38\xde\x8f\xc9\xbe\x8c\xd7\x2e\x5a\xc1\x85\x90\x49\xa3\xb1\xd6\x62\x31\x0a\x3d\x0c\x61\x8f\xd2\xbd\xe7\x30\xdf\x7c\x15\x42\x60\xd4\x7b\x1a\x40\x52\xd3\x45\x5f\xe7\x34\x21\x6c\x39\x51\xe2\x24\xca\x7e\xf8\x39\xd1\x6f\xeb\x81\x94\xaa\x2e\x7f\x8d\x56\xcd\xbd\x41\x4a\xc4\xea\xea\xdb\xb6\x77\x7f\x1c\x21\x85\x4d\x3d\x11\xd1\x33\xdd\x8a\xe0\xd4\x34\x4f\x0e\x86\x13\x4d\xfc\xe4\xb8\x24\x23\x35\x55\xb0\x3e\x7d\x6d\x85\x7e\x1d\x78\xb3\x37\xbe\xa9\x20\xff\x22\xdd\x09\x0c\x5a\x33\x1f\x4b\x29\x11\xe0\x6c\x55\xdd\xe1\x7c\x50\xd2\xfd\xd0\x7d\x0a\xf5\xfc\x80\x7f\xf0\xc3\x43\x1e\x82\x30\x82\x7a\x0c\x1d\xfd\x78\xf3\x21\xa9\xe4\xb1\x98\x0e\x11\x7c\x9a\x73\x6e\x1b\x82\x12\x4e\xb7\x1b\xf2\xf1\x49\xc5\x7d\x7a\x96\x29\x68\x02\x0c\x62\x4f\xe4\x80\xcd\xb7\x15\xf0\x56\x36\x95\x1e\xc5\x01\xce\x3c\x51\x71\x3c\xe3\xee\xbc\xc6\x82\x14\x0b\x36\x88\xe3\x68\xba\x08\xb5\x1e\x7b\xa8\xe3\x74\xd3\xce\x5e\x68\xdc\x4c\x98\xea\x13\x15\x6c\x7c\x25\x82\x0f\xa3\xaf\xb9\x24\xaf\xc2\x5a\x3c\x6c\x76\x31\xf4\xf7\x70\xf2\xcd\x65\xde\x1b\xd0\xeb\xf6\xfa\xc7\x28\xb0\x2f\xa1\x63\x50\xd5\x3c\x86\x22\x9f\xb7\x86\xbe\x26\xeb\xd6\x62\x6f\xbb\xea\x92\x88\x92\xc8\xa2\x5b\x44\x80\x33\x30\x59\x0b\xbc\x14\x84\xa4\x4b\x40\x32\x85\xda\xbd\x34\x75\xdd\x03\xb4\x99\xc2\x10\xbe\x9e\x23\x82\x7e\x3a\xe5\xaa\x8d\x28\xaa\x31\x30\x51\x41\x93\x6c\xc9\x81\x0d\xcf\x7e\x3f\xad\x2c\x73\x9c\x68\xa6\x71\xaa\x4c\x51\x55\x83\xe9\x06\x1d\xe2\x27\x1a\x03\xa7\x57\x78\xad\x66\xa5\x00\x2b\x6a\x67\x96\x66\x4a\xe6\xdd\xe0\xb8\x1b\x27\x3f\xac\xcc\x48\x9b\xab\xc4\x5d\xdd\x7d\xf4\x7a\x1c\xdd\x0e\x3c\xf0\x6d\x21\x8b\x55\xab\x22\x2a\x14\x8f\x75\xb9\x74\xdb\x4e\xba\x7f\x3a\xa8\x24\xb0\x73\x12\x7e\x77\x09\x87\xfc\x2a\x8b\x72\x4e\x01\xd3\xe2\xe8\x92\xa4\xd6\x12\x4a\xaf\xc7\xa0\x62\xf6\x71\x7e\x1d\x2b\x0d\xa4\xbf\x3b\x49\xa4\xa8\xf8\x87\x2c\x78\x8c\x8b\x6f\x98\xb1\xd4\xe3\x94\xc2\xc1\x64\x74\xb4\x72\xc1\x3e\x70\x9e\xf3\x96\x8e\x2f\xa1\xc2\x6f\xc2\x85\xfe\x3b\x6f\x86\xc3\x7d\x75\xd8\x0f\xc9\xc2\xcc\xf9\xf0\xf4\xda\xd8\xb2\x39\xfa\x5e\x4f\x7a\xd3\x8e\xe8\x36\x03\x10\x63\xa2\xc9\x30\xae\xa0\x16\x3c\x60\x21\x9c\x76\x8c\x8f\x93\xb0\x3a\x31\x71\x4a\xd9\x83\x05\x2b\xcc\xe9\xd4\x60\xe1\x9a\xd8\xe3\x36\x1e\x67\x39\x9d\xe8\x89\xfc\xf2\x23\xf9\x2c\x85\x92\xd6\x2d\x24\x06\x41\x4e\x3e\x4e\xd0\x9f\x2c\xb1\x9b\x47\x68\x1b\x91\x3a\x89\xbc\xef\xbe\xde\xed\x67\x94\x77\x2c\x98\x1e\x0a\x5b\xa5\xb2\x16\x68\x29\xb2\x3b\xa6\xed\x2e\xfe\x02\x7e\xbe\x15\x24\xc0\x98\x35\x18\x96\x18\x86\x28\x48\xf0\xf9\xd6\x2c\x4b\x3f\x91\x82\x9b\xe1\xd8\xb9\x8f\x75\x7f\x07\x0e\x17\x33\x69\x8c\xee\xf7\xba\xa5\x2d\xac\x24\x94\xad\xe0\x52\x0c\x9e\x39\xfd\x90\x80\x7d\xdf\x6d\x32\x92\x2e\x34\x2c\x22\x0f\xc1\x66\xda\x13\x8b\x92\xb9\x31\x52\xf0\x05\x79\xf6\x82\x81\x4b\x92\xb2\xbc\x2c\x4c\x04\xef\x3a\x49\x03\x80\x53\xec\x4e\x69\x79\xb0\x86\x7d\xb8\x60\x27\x71\x08\x82\x44\x8e\x2b\xdb\xb2\xe6\x78\xf7\x5b\xdd\x2b\x02\xde\x63\x73\x2b\xe4\x4b\xcb\x0c\xf2\xa7\xa0\x16\x11\x38\x14\xc3\x91\x70\x6b\x78\x44\x5e\x17\x9f\x94\x85\x0a\xba\x2e\xf2\x5b\x02\x96\xbb\xa2\xde\x21\x1e\x8b\x23\x0f\x37\xfd\xa5\xde\x76\xaf\xa4\x7b\x5b\x64\x30\xdc\xcf\x1b\x4c\x2e\x1e\x79\x0e\xc4\x82\xad\xb7\x08\x7d\x7d\x14\x22\x44\xdf\x81\x04\x0f\x27\x92\x06\x59\x91\x56\xba\x5d\x5a\x96\x4c\x9f\x39\xe8\x49\xbc\xf1\x7c\x91\x9e\x5d\x36\xfe\xe8\x7e\x97\x0c\x99\xc5\xc6\xd8\xab\xf6\x21\x30\x10\xb8\xee\x65\xf3\x6a\xfa\x37\x7b\x7c\x13\x4d\x5c\xf7\x4d\xe9\xab\xbf\x11\xe6\xe4\xa2\xc8\x12\xb9\xbb\x28\xbd\x7b\x7e\xea\x9e\x1e\x04\x5d\x30\x2c\xfd\x71\xee\x4a\xd7\xc2\xec\x12\x79\xa0\x1e\xeb\x3a\x06\xd0\xb9\x7f\x65\x63\x11\x01\x21\xac\x62\x7d\x76\x7f\x5d\xd2\xf7\xed\xd4\x80\x4d\xef\x23\x06\xac\x5a\xbc\xa4\xf2\xf4\xfa\x51\x62\x0b\x6a\x60\x83\xaa\xef\x44\xe4\xd3\xd8\xb9\x78\xcf\x37\xdf\x73\x32\x82\x97\x6c\x9d\xad\xa5\xce\x9c\x49\xc4\x81\x72\xaa\x2e\x49\xf8\x56\x9f\x7d\x14\x90\x82\x4e\x64\x9d\x6c\xe6\x0d\xe0\x01\xea\x80\x06\xa8\x94\x47\x4a\x1a\x7b\xf6\xc9\xe8\x19\x5b\x07\x03\xd8\x91\xe4\xef\x55\x37\x73\x44\x0d\x18\x7a\x62\xd7\x73\x8f\x3c\x12\xae\x7c\xad\x96\x24\xbc\xdd\x0a\x5d\x46\xf8\x3c\x94\xf3\x20\xa3\x00\xce\x5d\x97\x4f\x28\xdb\xeb\x4c\xab\x3c\xb3\x37\x84\x8a\x8f\x76\xbf\x1d\x70\xfa\x7a\xb5\x53\xcb\x25\x07\x79\x34\xce\x5d\xd3\xf0\x52\x35\x31\xb0\x3c\x2a\x6e\xdb\xaf\x57\x27\x85\xb9\x9f\xcf\xac\x99\x0f\xad\xf5\xef\x67\xfb\x8c\xfc\xb4\x56\x6b\xf9\xfc\x2d\x30\x87\xa3\x1c\xfa\x94\x86\x88\xe7\x10\xb8\xe2\xad\x11\xb0\x0f\x1e\xc2\xc5\x0b\xbf\x64\x95\xa8\x68\xbe\x53\xc3\x36\x9b\x10\x28\xa7\x9c\x0b\x39\x44\x83\xed\x59\x66\x19\x60\x05\xb5\x5a\xd2\x33\x7b\xdc\x10\x8a\x26\x5a\xf2\xcd\x01\x98\x32\xac\xf6\x88\xaf\x7a\x75\xf9\x9b\xee\x37\x67\x4a\xd8\x20\x9e\x25\xf8\x0a\xd1\x4f\x2d\x71\xfe\xbd\x0c\xd9\x49\x3d\x3c\x14\xfa\x1f\x31\xcc\xfd\x00\x4b\x3d\xd4\xfc\x5e\x88\x31\x20\x17\x8f\x2a\xa9\x78\xcd\xcd\x9e\xa8\x9b\x76\xf4\x50\x98\x52\x54\x18\xbf\x3a\xa2\x9f\x9f\x3c\xc5\x21\xf8\x88\x95\x0e\xc2\xca\x23\x83\x43\x14\x25\xfa\x86\xc5\x9d\x57\x78\x5a\x80\xe9\x4e\xae\x10\x6f\x5c\x0b\x73\x54\xc3\x70\x6a\x84\xb1\x0f\x9f\x1c\x83\x37\x83\x6d\x8e\x97\x4e\xcb\x0e\x39\x97\x7f\xf2\x67\xc0\xdc\xc6\x4a\x69\xe0\x17\xfa\x96\x4f\x3c\xd1\x53\xa6\xd0\x30\xd5\x2c\x93\x4f\x52\x46\x16\x5f\x18\x2f\xd7\x8d\x5c\xb4\x2c\x57\xab\x8b\x43\x40\x2a\xe2\x75\xef\x22\xd3\xed\x61\x1c\x26\x8b\x96\xf7\xad\xeb\x15\x5d\xb4\x01\x91\x49\x96\x0e\x9a\x68\x20\xb9\x94\x8b\x4f\xe4\x68\x64\x50\xb6\x71\x32\xf4\xdd\x78\x6e\x6e\x32\x1f\x20\xc5\x70\x11\xe1\x56\xde\xb8\x47\x39\x41\xcf\x02\xa8\x3a\x46\xd9\xb2\x3b\x68\x2b\xfe\xf3\x44\xa1\x96\x55\x4e\xf3\xba\x6a\x2a\xad\xde\x9a\x8a\x70\x11\xd3\x36\xbf\x87\xd6\x9a\x4f\x1c\x53\xe5\xb0\xda\x02\xf2\x78\x2d\xcb\x8b\xf4\x06\xe1\xf7\x8d\x45\x8c\xa2\xeb\x10\xc9\x62\x5e\xd7\xc2\x85\x77\xa9\x0c\xb6\x6e\xcd\x71\xa7\x9e\x70\xbc\x85\xbd\xae\x47\xcd\x96\x3f\x58\x46\x74\xfb\x06\x3d\x8d\x18\xa5\xba\x5b\x64\x86\x23\x50\x6e\xb9\x68\x25\xc9\xe7\xc0\x2c\xe6\x3d\x0e\x1c\xba\xd6\x41\x9f\x4f\x58\xd8\x98\xee\xd9\xd2\xbe\x8b\x74\x62\x1c\xa7\x31\x55\x7b\x96\xae\x77\x14\x61\xeb\xec\xaf\x73\xd6\x60\x78\xdf\x9e\xbb\xa5\x3f\xf2\xb8\x37\xa3\xe4\x65\xb0\x2f\x11\x95\x00\x39\x8e\xd0\xd5\xcc\x6c\xbe\x8a\x07\x4a\x35\x89\x52\x61\x32\xad\x55\x35\x03\xb4\x6a\xb7\xbc\xe2\x3b\x5b\xd1\x72\xd4\x69\x2e\x8a\xc1\x77\x46\x08\x14\xd6\x17\xcf\xc0\x46\x10\x97\xda\xfb\x5e\x53\x26\x86\xcd\x88\xce\x0f\xe9\x01\x39\xf9\x24\x40\x70\x8c\x61\xbf\x50\xaa\x6b\x5a\x44\x4d\xd7\xa4\x09\x89\xf2\xcc\x61\x5b\x11\x9b\x58\x94\xc2\x46\x3d\x49\x6a\xce\x11\x0f\x24\x60\x33\x55\xc8\x25\x40\xe8\x31\x16\xaa\x73\x09\x5c\x52\x18\x90\x65\xa3\xb4\x22\x02\x3c\x2d\xed\x58\x33\xa6\xd4\xd2\x3e\xc1\x78\xde\x77\xb6\x30\xef\x3a\x32\x18\x13\x1c\xb0\x5d\x68\xfd\xa1\x5a\xda\x0a\x80\x36\x92\x5c\x9d\x4a\xba\x76\x3c\x70\x6c\x9f\x88\xc5\xfe\x39\x40\xda\xa7\xc9\x82\xba\x5c\xc4\x3f\x07\x6d\x1f\x91\x36\x99\x26\x77\x6c\xef\x13\x7f\x91\xb6\x1d\x7a\x8d\xd0\x7b\xd3\x9e\x6a\xd9\xf5\xc3\x7e\x87\x02\xac\xae\xf8\xd7\xb8\x79\x47\xc1\x5f\x85\x91\x1e\x69\x28\x48\x79\xce\xb4\x44\xe4\x21\x5c\xc4\x63\xd3\x47\x40\x56\xae\x93\xa1\x1b\xd0\x01\xd1\xb9\xbc\xe3\xdd\x61\x2d\x92\x82\x30\xed\xa5\xfa\x92\x0f\x53\x64\x2b\xba\xf4\x35\xd5\x68\xb5\x84\x3e\x9c\x82\x14\x13\x04\x74\x12\xfd\xdc\xb4\x58\x8d\xb7\xdb\x90\x00\x01\xd1\x4d\xa2\xca\x82\xd0\x37\x90\x51\x0b\xfc\x32\x04\x22\x6c\x86\x57\xd6\xec\x81\x1b\x40\x8c\x7d\x51\x64\x75\xa4\xc5\x72\xf0\x86\x72\x55\xd4\x7f\x26\x3a\x94\xdf\x45\xc8\x85\x0a\x1b\x0a\x5b\x26\xad\xdc\xd5\xcc\x77\x42\x31\x50\x70\x69\x0d\x50\x0a\x4a\x6b\x12\x72\xca\xe4\x1a\x47\x04\x3d\x98\x30\xbd\x81\x70\x87\xd8\xc9\x84\x6a\x16\xf0\xb3\xc5\xc9\x4b\x2b\xea\xcc\xb3\x61\xe8\xcc\xbc\xaa\x0c\x37\x2e\x78\xa8\xc3\x4f\x8f\x2f\x36\xac\xa5\xfa\xb9\x40\x2d\x7c\xeb\x60\x90\x72\x87\xbe\x29\x1d\x2d\xd4\xcf\x1b\x18\xe4\xaf\xae\xc6\x89\xe6\x00\xb9\x1c\x96\xbd\x85\xd3\x5f\x8a\x84\x5e\x7f\x36\x68\x30\x60\x09\x94\x1e\x55\x02\x5b\x81\xc1\x37\x80\x9b\xba\x16\x9b\xe7\xa4\x8c\x75\x5f\x18\xc0\xa9\xe7\x1c\x56\x22\x5c\x48\x98\x44\xf7\x72\x40\x8d\x1c\xf3\x40\x99\xc3\x3c\x9c\x61\x27\xe1\xa4\x9e\x8d\x94\xc3\xe3\x46\xc5\xbe\x62\x69\x1a\x67\x15\x22\xc4\x96\x57\xee\x86\x7f\x99\xf3\x92\x8d\x21\xe5\x68\x51\x5e\x2c\x53\xc7\xc9\x33\x75\xc2\xa1\xa8\x56\x99\x3c\x5e\x5e\x9c\x5e\x59\x61\x59\xf9\x4a\x78\x51\xf8\xc4\x40\x5c\xcf\xcc\x13\x16\x3b\x89\x7a\xfe\x29\xd5\x40\xd4\x9c\x32\x02\xba\xa1\xc7\xad\xd6\xa9\xa2\x59\x61\x13\x92\x32\x43\xd6\x97\x11\x49\xa9\x4d\xdc\xde\x02\x62\x0e\x20\xe9\x72\xc8\x10\xe7\x98\xcb\xe1\x9e\x82\x00\x66\x69\x7e\x4b\x94\x4e\x1f\x37\x28\x14\xb1\xbb\xf9\xad\x1b\x64\xfa\x3b\x90\xe9\x2f\xf4\xee\xac\xc0\xeb\xe7\xa1\x23\x46\xd0\xa3\x61\x5b\x68\xe4\xdd\x24\x95\x32\xbe\x8f\x56\xfb\x76\xb1\xfc\xc8\x3d\xe8\x65\xc0\x15\x36\x45\xd3\xc8\xd7\xed\x37\xaa\x2b\x26\xae\xc6\x35\xa8\x26\xf0\xe6\xf4\x96\xd3\x6b\xf1\x27\x8a\xa1\x84\x6f\xd0\xe3\x92\xce\x9b\x72\x94\x10\xa3\xa1\x59\x92\x7d\x32\x60\x9c\x90\x63\x2b\xb2\xc7\x59\xef\xaa\xe1\xe9\x28\x7c\x89\x3f\xa1\x97\xd2\x71\x64\x77\x15\x6d\xe3\xaa\x31\x29\xab\x4b\xa3\xc5\x59\x50\xb9\x87\x40\xb9\x7d\x07\x8a\x22\xaa\xc4\xa9\xe9\xf4\xb8\xaa\xb6\x56\x98\xc7\x49\x38\x6b\x89\x50\xb0\x9e\x79\xf0\xe0\xe5\xda\xfc\xee\xce\xbb\xc2\x03\x3f\x08\x5f\x3a\x2b\x3f\x7f\xa4\xa6\x1c\x7b\xe8\x75\x0a\x27\x9a\x08\x29\x0e\x50\x95\xc4\xc0\x9e\x17\xce\x27\xf1\x72\x82\xe1\x86\x0f\x99\x00\xc4\x98\x7e\xe3\xfb\xe7\xd5\x50\x63\xc8\x65\x81\x04\x5b\xa0\x97\x24\x33\xae\xa5\x4d\xa0\xa9\xa7\x1d\xd3\x31\xbe\x3a\x29\x56\xbd\x8f\x67\xa8\xb9\x68\xb9\x40\x9e\xce\xdc\x27\xf9\x86\x49\x63\x3a\x91\xbe\xd7\x7a\x15\x79\xb4\x1d\xa7\x51\x33\xe5\xcd\xa5\xe8\x50\x12\xbd\x36\x91\x5a\xca\x1f\x2b\x8a\xa0\xc8\x5d\x11\x6b\xe8\x28\x8c\xe6\xc3\x25\xa4\x69\xf6\xfc\x4a\x9b\xe1\x1e\xdf\xd1\x4e\xd7\x00\x85\xce\x75\xa3\x89\x18\x65\x49\xc8\xba\x17\x78\x1e\xc7\x18\x9b\x83\x2c\x0d\x2f\x47\x72\xed\x3e\xd0\x4c\x61\xd7\x13\x48\x21\x09\x6f\xae\x1f\x84\x8f\x08\x55\x39\xd3\x44\x61\xf3\x76\x22\x27\x1d\xa2\xce\x2f\xd6\x64\x33\x88\x0a\x14\xbc\x7f\xea\x86\x6b\x9a\x4f\x1b\x3d\xdf\x35\x83\x9d\x4b\xe9\xf2\x80\xee\xd9\xba\x74\xd2\x4e\xb4\x70\x08\xc2\x5c\xdc\x8f\x3e\x5c\x79\xf8\xf5\x14\x0e\xcc\xf1\xfa\x99\x4d\x1a\xdf\x3e\xd2\x8f\xb1\x07\x2c\x53\x36\x51\xc1\x04\x92\xef\x39\x78\x4f\x70\xd6\xae\x53\xd7\x75\xee\x93\xd2\x46\x43\x77\x69\x62\xc6\x5e\xa0\xd9\x4f\x02\xdb\xce\xbf\xd8\x60\xc0\xb9\x45\x38\xb0\x8e\x2c\xa8\xbc\x8a\x85\x10\x57\x66\x37\xd5\x52\xd7\x75\x42\x40\x19\x34\xa9\x41\xf0\x75\xd9\x69\xef\x9c\x65\xbf\xe7\xf9\x10\x55\xde\x8d\xef\xe8\xb5\x77\x09\x52\xc9\xcf\xdd\xd6\x6c\xf0\xe6\xe8\xaa\x32\x1c\x35\x20\x85\xca\x81\xb2\x05\xc4\x34\x8f\x18\x9b\xe1\xa0\xbd\xe3\x62\x94\x3b\x52\x14\xd9\xb4\xd2\x9d\xa6\x6c\xab\x29\x56\xd0\xed\x1c\xf7\x32\x07\x38\xb5\x90\xd1\x8f\xef\xca\x86\x67\xab\x79\x28\x7b\x80\xce\x9f\x0b\x9d\x0b\x33\x7e\x53\xfe\x98\x91\x85\x6c\x25\xed\x57\x7c\xb6\x6c\xa1\x39\x2a\xb2\x5c\x6b\x6d\xf0\xed\xba\x4e\x50\x35\x48\xac\xfb\xe2\x5f\xb4\x69\x81\x8c\x62\xa6\xd7\x4c\x7d\xa8\x2e\xc0\x5c\x2b\x30\x21\xc7\xd5\xbb\x09\xdb\x09\xa6\xb5\x72\x85\xb5\x68\xcc\x02\x0f\xf3\x8d\xc7\x67\x24\xef\x89\x1b\x93\x3e\xb5\xf1\xf7\xea\xd8\x7a\x84\x28\xdc\x28\x34\x44\x3f\xac\x5c\x9b\xd6\x16\x59\xb4\xba\xbe\x93\xf3\x38\xbd\xf2\x83\x4a\xa8\xd5\x77\xf6\xff\x93\xdf\x74\x25\x81\x88\xc6\x2b\x03\x64\xdc\x78\xb6\xa8\x31\x89\xbb\xea\xfe\xd4\x5f\x68\x97\x2e\xc5\x4f\x64\x20\xb5\x03\x15\x48\xfc\xd8\x3f\x4e\xc3\xf6\x63\xe0\x38\x49\x45\x29\xb7\x99\x3f\x46\x2e\xb4\xc0\xbd\x73\xa8\x22\x58\xbf\x30\x37\x3e\xa9\x97\xa0\x6d\xde\x75\x60\xf0\x90\x6f\xd3\x32\x65\x7a\xf9\xbc\xd4\xa1\xd5\xbc\x77\x5c\x2b\xed\x25\xfd\x59\xd0\x87\x1a\xd6\x08\xde\x13\x83\x5f\x5a\xfe\xaa\x77\x80\xb5\xa1\x94\xb5\x8b\xae\x8d\x89\xbb\xa9\xeb\xf4\x9a\x79\x70\x3c\x73\xaf\x36\x93\xcb\xa5\xa1\x68\x85\x33\x3f\xb6\x08\xd8\x56\x8f\x5c\x7f\x1c\xe0\x77\x12\xbe\x6e\x7a\x9b\x17\xa4\x3e\xe8\x11\xeb\xef\x18\xc7\x63\x3f\x7c\x2d\xb2\xd7\xed\xb2\xb3\x63\x54\xba\x65\xa7\x71\xbb\x53\x29\xdd\xa7\x56\x64\x28\x69\x9a\x0e\x17\x24\x8f\x9f\x5b\xdf\xe7\xfb\xf4\x9d\x4c\xc2\xd5\xe0\x6c\xb5\x3d\x17\xe1\x35\x87\x41\xf3\x5a\xf2\xa0\x1e\x22\x71\xb4\x09\xec\xf9\x9b\x93\x30\x2c\xa8\x0d\x8e\xff\x18\x66\x53\xfd\x14\x9d\x8f\x29\xdc\xfa\xbb\xe1\x36\x12\xfb\x57\x4c\xfa\x5f\x1b\x33\xb8\xb6\xea\x98\x90\x03\xb9\x08\xd4\x3d\x3c\x37\x68\x79\x20\x24\x9e\x22\xc3\x78\x60\xa3\xc8\x4a\x17\x66\xa8\x83\x2e\x2c\xf1\x8d\xf6\xa4\xe3\x6e\x46\x9f\x31\x58\xd2\xd0\xb7\x09\x87\x28\xe8\xd2\x93\xb2\x5c\x9f\x32\x04\x8b\x5d\x2d\x1d\xc3\x80\x73\xba\xd2\x01\x11\x8e\x87\xe8\x15\x1c\x38\x69\x7d\xe6\xbd\xd6\xe3\x78\x0d\x94\x61\xef\x16\x17\x33\xe8\x1d\x77\x53\x3d\x8a\x96\xec\x79\x53\xe9\xe0\x38\xbc\x08\x32\x01\xd2\x29\xa0\xb9\xce\x98\x7a\x6c\xa6\xdf\x3e\xf6\x1f\x42\x64\x0d\x6b\xea\x38\x5e\x70\x9e\x6e\x3c\xf9\xfe\x1c\xc8\xab\x57\x6f\x67\x19\x45\x61\x2d\xa3\x96\x92\xce\xa6\xfd\x10\xfb\x31\x21\x73\xcb\x02\xe6\xc3\x32\x9c\x5d\x8f\x73\x1b\x55\xbc\xed\x03\x12\x48\x72\xdc\x5f\x11\x97\x0b\x64\xfa\x30\x25\xb4\x7a\xe0\x0f\xf9\x75\xca\x9a\xa5\xab\xe0\xf1\x30\xc4\x3e\x13\xc7\xf5\x41\xb0\xd0\x3d\x49\x69\xdb\x42\xda\x47\x38\x41\x04\x26\x8e\xa8\x48\x08\x4d\x53\x5f\x2c\x3e\x1f\xea\x69\x54\x44\x7e\xa0\x7b\x30\xf4\x47\xdd\xf1\x98\x3a\x09\x8e\x16\xe2\x57\x96\xe5\xf0\x50\xac\x2d\x48\x6f\x7e\x41\xc3\xc2\xda\x53\xcc\x4e\x12\x58\xa7\x67\xd5\xb7\xff\x38\x80\xf6\x06\xf5\xc6\xee\x94\xd0\x3c\x70\x05\x03\x5c\xc6\x65\x85\x6c\x4d\xef\x71\xea\x5e\x92\x04\xf3\x2e\x7c\x11\x6d\xda\xe6\xd4\x82\x65\x70\xf6\xd9\x45\xdc\x0b\xd9\xd8\x28\x75\x73\xb6\x44\x2a\x98\x26\x98\xa6\x4a\x59\x36\x4f\x7a\x70\xe4\x70\x6c\xcb\x10\x57\x9f\x38\xd7\xdc\x6f\x3a\x3e\xc0\x22\x3f\xe7\x52\x50\x24\x89\x33\xb7\x79\x04\x2d\x98\xfb\x56\x08\x42\x37\xd4\x2f\xc2\xee\x4a\x14\x7c\xd9\x16\x49\xb4\xb8\xa2\x66\x46\x16\x0f\x9e\xaa\xaa\xa6\x1f\xa0\x6e\x1c\xa4\x18\xd6\x7e\x90\x09\x59\x71\x03\x8b\x76\x9a\xa8\xf7\x59\x3a\xf1\xed\x90\x2e\x33\x61\xb0\xf0\xb5\x24\xef\xbe\xe7\x7d\x56\xf7\x89\x4a\x05\xc5\xb4\x5e\xae\xf6\x7e\x4d\x5e\x0a\xe9\xce\xd6\xe4\xcf\x3b\x69\xa0\x84\xf3\x68\x1c\x4f\x21\x71\x9f\xa4\x43\x49\xdf\x22\xef\x9e\xab\xb1\x46\xa1\xee\x97\xfa\x9d\xc3\x71\xe8\xf8\xd6\xf6\xb0\x83\xb0\x47\x06\xc1\xae\x3b\x40\x1b\x77\x3a\x6d\x7d\x5e\xa9\x7b\xbf\xf0\x2d\xb0\x92\x25\xe4\xeb\x91\x81\x69\x48\xc5\x2a\x71\x9a\x82\x8f\x3d\xde\x46\x34\xc9\xd0\x86\x41\x20\x5a\x10\xfe\x85\x67\xa6\xe7\x7c\xe1\xb4\x70\xe4\xe2\x23\xe3\x62\xdd\x8d\xae\x69\xd5\x96\x8f\x95\x92\xed\x5d\xc9\xa7\x8a\x47\xd9\x87\xf4\x6d\xec\xc6\xaa\x47\x8c\x8b\x48\xa0\x7c\xdc\xa7\x55\x71\x50\x0d\x11\x6c\xf8\xaf\xe2\x0b\x4d\x7a\x49\x63\x50\xe2\x9b\x23\x74\xce\xcb\x6e\xed\x14\xe1\xd6\x99\x2c\x6c\x1b\x6d\xf8\x27\x94\x72\xe2\x80\xe1\x44\x66\xa1\xf6\x1a\xd5\x3c\x29\xa6\x9e\xeb\xe9\xa5\x4f\xcf\xe4\x4e\x6d\xbc\xae\xeb\xa6\x9b\x40\x2a\xe4\x44\xb5\x6a\x3e\x36\x22\x47\x39\x54\x6f\x2a\x98\xa9\x72\x1b\x5d\x4c\x38\x50\xbd\xfb\xeb\xed\x22\xaf\x3e\x11\x91\xbe\x48\xb4\xba\xd0\xc1\xc1\x8a\xe1\xb9\xa9\x21\x7c\x6a\x75\x97\x9d\x64\x27\xa1\xeb\x65\x81\x0c\x7f\x25\xf3\xe3\xd2\x21\x8e\x4a\x4c\x2a\x27\x56\x76\xa6\x3b\xad\x43\x9e\x43\x22\x3a\xaa\xa5\xb4\x0e\x85\xfa\xda\x3e\x79\x87\x3c\xd1\x7d\x6c\x59\x42\xe3\x41\x20\x26\xb0\x16\x91\xc0\x0d\xb9\xe9\xe7\xb4\x3b\x82\xc5\x85\xf3\x5a\x47\x18\xec\xe5\x6a\x84\xcd\x10\x54\x98\xdf\x7c\x6f\x12\x48\x46\x11\x43\xa0\x9d\x89\x64\x19\xbe\xc3\x25\x43\xc7\x72\xb2\x4a\xde\xa5\x4e\x18\x12\x10\xa1\x1d\x86\x94\x38\x19\x88\x1d\xbf\x9c\xc4\xc6\xf7\xb4\xd2\x13\xb0\xb4\x8e\x48\x2d\xab\x7f\x70\xe9\xd4\x54\x15\x81\x09\x08\x71\xb5\x1c\xe1\xf3\x1e\xfa\xaa\x97\x4b\xd9\x80\x9c\x61\x32\xbf\x17\x15\x98\x50\x17\xc1\xf3\x0a\xcf\x96\xfe\xe8\xde\x2f\x4c\x80\x18\x12\xe2\x8b\x03\xbc\x29\x4c\x2a\xda\xc3\x70\x00\x76\x69\xf9\xe8\xaa\x03\xcb\x03\xe4\x4e\x3a\xda\x14\xc9\x00\x1a\x84\x20\x91\xdd\x02\x46\x3c\x1c\xd8\x48\xe2\x29\x96\x65\x9e\x3f\x79\x8b\xdf\xd3\xae\xd0\xf5\x81\x48\xac\x73\x0c\x0e\xe3\xcd\xce\x06\x75\x97\xe9\x2a\x19\x27\x81\xc3\x1f\x3e\x28\xdb\x02\xba\x18\xef\xc3\xd7\xa1\xb5\x0a\x3a\x58\xda\x02\x6b\xb5\x5c\x64\x23\x22\x35\x26\x91\x6f\xe8\x46\x70\x40\x3a\xb3\x3a\x1c\xfb\x71\x83\x72\x54\xbc\xf7\x19\xe0\x19\x42\x00\x15\x9a\x84\x6f\x1d\xde\xd5\x75\xf1\x98\x91\x0e\x3f\xac\xb6\x94\xde\xb7\xdb\x0b\x0b\x20\xea\xa2\x9a\x13\x7f\xea\x03\x3f\x19\x71\x68\x2a\x3f\x75\xa7\x22\xda\xd5\xa7\x7a\xb5\x1f\x2c\xcb\x40\xe7\xaf\x29\xd3\xd6\x38\x21\xdd\x94\x89\x5e\x47\xaf\x84\x26\xb0\x15\x92\x7c\x03\xe0\xf4\xe5\xfc\x18\x55\x49\x00\x45\x88\x7a\x76\xd8\x7e\xae\xf1\xc9\xae\xf1\xe9\x55\x64\xb8\x72\x61\x9d\x5e\x72\xa3\x7d\xd0\xa9\xb2\x6b\xad\xb2\x98\x07\x5e\x9a\x25\x68\x50\x53\xfc\x5e\x8e\x5f\x76\xdf\x8a\xd6\xaf\x1c\x19\x6c\x0b\x9d\x9c\x59\xfd\x22\xc3\x97\x7c\xf6\xab\x9f\x42\x77\x44\x6f\x0d\xd0\xf9\x92\xc2\x3c\xf9\x9c\x21\x5e\xb4\x5a\xaa\xc2\xd7\xd2\x87\x42\x02\xc7\x1c\x4b\xc9\xb1\x61\xbe\x69\x91\x3a\xb3\x3f\x94\x7e\x56\x3e\x5f\x53\x57\xe5\x4e\xcf\x54\xb9\xba\xc4\x4a\x05\xf3\x70\x47\x7e\x3f\xc4\xb0\x62\x5a\x4f\xb0\xc5\x44\xc3\x25\x47\x5e\xa1\x47\xe6\xa2\x22\x24\xfd\xde\x63\xbf\x2b\x8a\x19\xf7\x37\xa4\xf5\xb5\x42\x42\xa3\x63\x6e\xca\x99\xe1\x2e\x28\x51\x2d\x59\x57\x18\x4e\x78\x3d\xd7\xe9\x0d\xd3\x13\x8b\x6f\x8d\x3b\xad\xaf\x8d\x52\x51\xcd\x90\x52\xed\xb7\x4d\xf2\x9d\x63\x6b\x45\x11\x85\xed\x33\x2e\xd3\x17\x43\xb2\x42\xf3\x91\xe9\xd4\x7c\xb9\x8a\x0e\x4f\x0b\x7e\xcc\xd6\x90\x24\xe8\xa4\x82\x7e\xa2\x33\x1c\xbd\xae\x52\x88\x07\x6f\x9f\x2a\x86\x84\x28\x2a\x05\x15\xdb\xca\x86\x58\xfa\xf3\x44\xda\x7b\x90\x05\xc0\xe3\x97\x51\x34\x75\x67\xbf\xde\x20\xfd\xf5\x7c\xaf\xca\x86\xc5\xb5\x65\x30\x2f\x7e\xab\x55\xb6\x94\x85\x56\x7e\x54\x44\x89\xf6\x55\x57\x8b\xb2\x1e\xa7\x30\x1c\xf4\x2b\x93\x42\x48\xba\x6a\x4e\xf9\xc1\x4e\xd9\xce\x14\x83\xbe\xc9\xe4\xd4\xb8\x3d\xfb\x00\x08\xef\xb9\xa2\x69\x58\xbd\xb7\x08\x97\x15\x94\x08\x41\x8a\xf6\xf8\x50\xea\xee\xbe\x2f\x66\x81\x94\xb4\x19\xae\x51\xdf\x0a\x33\x7c\xff\x72\x5c\xc1\x1f\xbf\xb0\x3b\x6f\x20\x17\xb4\x4b\xbc\x3b\x8a\x04\xc7\xb1\xb3\x24\x33\x4a\x43\xcb\x1a\x6d\x08\x13\xe0\x8e\xf1\x55\x48\xd0\x9f\x83\xaa\x6d\x0c\xa8\xec\x74\x5a\x10\xd8\x76\xc7\x76\x11\x89\x70\x60\x9f\x89\x91\xbb\x33\x8e\xd6\x88\x07\xa7\x20\xd5\xa5\x18\x5a\x22\xdb\x43\x6b\x97\x21\x2d\xda\xd7\x03\x15\x78\x3c\xda\xda\xdd\x44\x3c\xf7\x85\xad\xc2\xaa\x27\x55\x2e\x75\xfe\x8a\x32\x49\x25\x83\x69\x77\x5d\x63\xa9\x44\x39\x53\x86\x77\x9c\xd1\x6b\xd1\x02\x2d\x82\xa2\x6e\x6b\x4f\xe7\x2c\xfe\xac\x72\x3e\xb8\xbd\x56\x96\x7c\x57\x1b\x5c\x1b\x8d\x21\xc6\x18\x19\x67\xd6\x6f\xac\xe5\x23\x90\x61\x3d\xcb\x41\xbb\x89\xea\xaa\x87\x19\x03\x4f\x23\xbe\x5d\xeb\x22\xa9\x4b\x51\xc1\x36\x5b\xad\x8d\xe3\x3c\x0d\xab\xbb\xe2\xd7\x5a\x73\xab\xee\xc8\x78\x3d\xed\x40\x73\xd5\x15\x83\x46\xac\x80\xd3\x10\x73\x63\xab\x69\xe3\x66\x8a\xd5\x49\x81\xe0\xcc\x7d\x0f\xcb\xda\x46\xf8\x38\x7d\xb0\xc1\x1f\x52\x1c\x66\x6a\x77\x7b\x22\x11\x89\x90\x00\xb7\x2e\xa9\x51\xec\x0b\x60\x0e\xce\x32\x37\x95\xe1\x0d\xfc\xc7\xd8\x7b\xec\xce\x8f\x2b\x59\x83\xfb\x7a\x8a\xdf\xf4\x66\xba\xa1\x3b\x25\xef\x2e\xaa\x0b\x90\x52\xde\x7b\xb7\x93\xf7\xde\xa4\xa4\xa7\x1f\xfc\xab\xee\x1d\x74\x2f\x06\xf8\x16\x99\x60\x06\xc9\x88\x73\xe2\x44\x02\x0c\x80\x00\xf3\x5f\x2d\xa0\xc4\x79\x0f\xd3\x5c\xa8\x10\x0f\x66\xd4\xac\x33\x30\x0a\xd7\xf1\xb9\x16\x24\xc9\xe4\x16\x4b\x4a\x9c\xbd\x3b\x12\xf6\x5e\x9b\xb8\x52\xf4\x83\x50\x3d\x4b\xd9\x79\x9e\xb7\x1b\xe9\x27\x72\x42\x82\x8c\x5e\x58\xfc\x01\xf7\xa2\x48\x29\xed\x57\x5e\x13\x69\x41\x9d\xe3\xe1\x03\x12\xa0\x0f\xaf\x23\xf0\xd1\x24\x59\x90\x62\xb2\x28\xf0\x96\xcc\xb2\x4c\xe1\x72\x90\x08\x73\x0a\x8d\xd6\xa2\xc8\x99\xde\x70\x0d\xe9\xa3\x40\xa9\x0e\xbc\x85\x62\x17\x18\x9d\xde\xc5\xb3\x4d\x1b\x28\x81\xb2\x82\x60\xad\x34\x2d\x96\x63\x1e\x01\x9d\x2c\xab\x95\x8b\xe9\x92\x2e\x4b\x73\x32\x27\xcd\x55\x2b\x90\xc8\xe0\x15\xf2\xf5\xe6\x16\x6f\x7f\xfd\x54\xe5\xe1\xa5\x04\x07\x0f\x10\x5a\x2c\x55\x5a\xac\xc5\x51\x9e\x68\xf1\x75\xb1\xb8\x9a\xda\xcb\xb2\xe4\x73\x53\x77\x7f\x24\xf7\x17\xd8\x40\xce\x0a\xb2\x50\xa0\x9d\xba\xbe\xf9\x89\x13\xd8\xaf\x75\x85\xf6\xb1\x7d\x88\x1d\xc7\x95\x24\xe3\x9f\x5a\x92\x8b\xc1\x14\xe9\x95\x4c\xd6\xcb\x47\xfd\x16\xb9\xea\xc2\x71\x6f\x45\xd2\xba\xcf\xad\x32\xd6\x81\xe0\xeb\x77\x2f\x0f\xfa\xd3\x78\xb8\x4f\x14\xf9\x8d\xe0\x11\x83\x3a\xec\x3e\x51\xf0\x1d\xa6\x29\x89\x94\x53\x07\x36\x38\x56\xb2\xe1\x89\x54\xbe\x8c\xd4\x94\x4d\xd6\x75\xf4\x00\xb0\x43\x22\x8e\xf1\x6e\xbc\xf8\xe1\x6a\x61\x4f\x64\x00\x2e\x18\x02\xbc\x0a\x09\x6e\x89\x53\xc3\x03\xe3\x24\xa4\xb4\x4f\x0a\xdb\xb5\x92\x92\x4e\x48\xc7\xb0\x88\xfc\x12\xc1\x2f\xb7\xf6\x03\x22\x7f\xbf\x6c\xa8\x6a\xbb\x05\xe6\x29\xed\xe7\xe3\x96\x0c\x77\xd5\x0c\xbd\xab\x4b\x99\x34\xdd\x7a\xb5\x2a\x20\x36\xdf\xf9\xe3\xaa\x90\xc5\xed\xcb\xdb\x77\x57\xe4\x1b\x2e\x20\x9d\xfd\xbb\xb1\xd6\x6c\xee\xe5\x67\x9f\x58\x03\x96\xf5\xd5\xca\xb9\x23\x10\x36\xe9\x5b\xc3\xad\xa8\x90\x27\x04\x4f\x2e\xd9\xea\xb1\xe9\x9f\x4d\x0f\xb6\xeb\x0e\x49\xcb\xa4\xe6\x8a\x43\xe8\xea\xf0\x8d\xce\x62\x27\x30\x3f\x2f\xd6\xc9\x41\xd3\x7b\x6f\xbf\xfb\x3a\x97\xdc\x1d\x90\x59\xf5\x41\x57\xc0\xd5\xaa\x4f\x66\x16\x16\xc5\x84\x5a\xcd\x7f\xc6\xed\xc2\x32\x3a\x0d\x9b\x4e\x0d\xf3\x00\xc9\x71\xa9\x76\xd9\x15\xc1\xbf\xd5\xd2\xa8\x69\x08\xd9\xd9\xe5\x8b\xc2\x18\x63\x8d\xb8\xc7\x18\xb0\xf5\x60\x39\x1b\x47\xf9\x7e\x6b\x56\xf1\x9a\x13\xf9\xd8\xe9\xbe\x91\x33\xb8\x22\xaa\xab\xa3\xc3\xc2\x66\x80\xf2\xdd\xb3\x87\xe1\xc1\xb6\xef\x16\x30\xd4\x0a\x58\x80\x67\x18\xfe\x08\x78\x72\x8b\xae\x1e\x54\x50\x6a\x98\x08\xd0\x0a\x25\x68\x2d\x72\x4f\x1d\x5f\xbd\xb8\xe9\xc4\xc2\x96\x07\x25\x5a\x38\x85\x19\x9d\xcb\x17\x60\xa8\x4d\x38\xdc\x23\x6f\xb8\xab\x90\xf3\x00\x8b\xdf\xd3\xa9\x35\xba\x66\xdd\x92\xa0\x87\x68\x8f\xd1\x8a\x24\xa2\x43\xf2\xd3\x97\x1a\xd7\x29\x7a\x7b\xc1\x49\x75\x18\x58\xb7\x5a\xa3\x4e\x9d\x3e\xfb\xfa\x0d\x70\x14\x3e\xaf\xb4\x72\xeb\x4b\xb4\x13\xea\x89\x85\x6f\x26\xca\x5e\x8a\xb6\xc9\xb5\x96\xd3\x83\x58\xa6\x59\x29\x16\x18\xc2\x34\x9f\xd8\x32\x4b\x2e\xca\x3a\x9e\xea\x26\x95\x16\x5b\x6f\x5d\x41\x86\x0a\x16\xc6\x43\x50\x9e\x81\xad\x03\xd8\x14\x3c\x40\x50\xee\xd0\x4e\xd1\x46\x97\x30\x3a\x48\x79\x44\x4c\xfa\xe3\xa1\x1c\x77\x78\x7e\xee\xcd\x38\xd3\xc5\x18\x26\x09\x5e\x23\x00\x22\x6c\xa6\x46\x0e\x5c\x28\x4f\x4a\x5f\x6f\x7f\x51\x4d\xd6\x3b\x0a\xce\x42\x64\x2d\xa5\x36\xd1\x9a\x0f\x55\xe3\xd8\xdb\x51\x41\xe7\x0f\x14\xff\x11\x0b\xa3\xf7\x72\x12\x91\x26\x3b\x25\x7a\xd7\xd6\x38\x35\x94\xfa\x2f\x19\x83\x46\x82\x29\x53\x48\x90\x06\xc9\xae\xa9\x1b\x52\x5b\x64\x40\x4a\xc2\xe4\x8d\xdf\xb1\x60\x39\xc5\x16\x56\xcc\x85\x73\xc4\xc9\xc8\x3e\x12\xe7\x50\x4c\x59\x09\xb1\x23\x6b\xf8\xa8\xa3\x6d\xaf\x2e\x6c\x6a\x07\xa7\xc6\x13\x51\x49\x64\x1f\x78\x5b\xf5\xe5\xfc\xcc\x01\xd6\xba\xb3\x0f\x2c\x74\x8a\xbb\xed\x3c\xb9\x5a\x66\xdf\x59\x94\x1f\x5f\xa8\x87\xb7\x0c\xe0\x76\x16\xdd\x05\x19\xf5\x71\x61\xa5\x72\x5f\x04\xb0\xa0\xae\x25\x99\x4e\x21\x7a\x81\xb8\xed\x40\xe3\x47\xfc\xc2\x2e\xdb\x3a\x37\xff\xc6\x1c\x80\xa4\x37\xe8\x4b\x4e\xe5\x8b\xbd\xbb\x80\xe5\x71\xca\x0c\x19\x47\x8c\xc6\x5e\x7b\xfa\x4c\xec\xd9\x79\xde\x9c\x8e\xe7\xa1\x5d\x64\xcf\x6a\x0c\x39\xde\x7d\x47\xfa\x93\xbf\xa9\xb7\xbe\x5e\xfc\xab\xed\x77\xa3\x53\x10\x72\x5c\x56\x66\x1c\x6d\x16\x13\x1c\xcd\xf8\x98\x02\x1a\x76\x57\x38\x91\xbe\xc9\xf0\x18\x93\xd3\x9b\x0f\x4d\x7b\xae\x2b\xad\xdf\x17\xa1\x25\x5b\x88\x18\xfd\xbe\x9c\x23\xc7\xe0\xea\xc9\x78\x80\x15\xf6\x61\xef\x8b\x74\xc5\xf4\x5e\x8e\xdf\xa0\x20\x72\x6d\x93\xdd\x8b\x2c\x74\xa3\x55\xbf\xaa\xb5\xe4\x9c\x02\x0a\xce\x42\x1b\x67\x30\xc6\xc7\xaa\x75\x12\xc1\xed\x24\xa4\x5f\x4e\x89\x06\x53\xa6\x48\x23\x7f\x1b\x6a\xf3\x7c\xdb\x4c\x59\x4e\x11\x3f\x90\x2e\xa0\xdf\x0c\x36\x99\x37\xb9\x83\x68\x39\x26\x45\xdc\x57\xc0\xc2\xfa\x05\x98\x7b\xab\x2b\x48\x1f\x37\xb5\xd5\x64\x97\xe6\xf3\x2a\x53\x2a\x7c\xe8\xce\xc7\x06\x0f\x72\x97\xc4\x80\x6e\x4a\x4c\x0a\x44\xef\xb9\xce\x70\xe5\x6c\x68\x3e\x75\x9f\x11\x5e\x67\xb2\x6f\xa0\x18\x8c\x92\x25\x59\x8f\x1c\xb7\xa4\x57\x7e\x19\x98\x0b\x87\x0d\xfb\xda\x12\xa5\xa6\xe0\x91\x99\xfb\xa9\xed\x69\x78\x11\xb9\x5a\x75\x64\x1a\x57\x97\xaa\x49\xab\xb0\x59\xba\x21\x1a\x16\xf1\xad\x71\xb2\xae\x3b\x8f\x0e\xdb\xfa\x1e\x9c\x60\xed\x1a\x92\xc9\x75\x7c\x6d\x7a\x40\x5a\x9d\xf2\xd6\xaa\x48\x77\x80\x4b\x10\x5a\x6c\x68\x63\xdb\xf4\x05\xda\x5e\x31\xbc\x50\xc4\x8d\xc3\xca\x4c\xcc\x07\xbd\xc6\xb5\x08\x08\xaf\x52\x64\x79\xd6\xfb\xf9\xae\x17\x51\xea\xe3\x44\x16\xb2\xe6\x74\x86\x1c\x4d\x8a\x44\xe4\x42\xad\xae\xe4\x43\x25\xe4\xd6\xa2\xa9\x69\x8c\x5f\xa9\x17\xf5\xea\x0a\x09\x2f\xe1\x11\xc5\x5b\xbd\x18\x6c\xda\xe0\x01\xfb\x37\xaf\xa0\x15\xee\x88\x31\x15\x61\xd4\x3b\xfb\x25\x02\x5d\xfb\x63\x5d\x61\x06\x8b\xc8\x11\x2f\x61\x9f\xfa\xa3\x5d\xa6\x98\xfc\x12\xb0\x8f\xdc\x9d\xf0\x60\xa9\xfd\x24\x66\x75\x45\x5e\x23\xcc\xd8\xe9\x79\x33\xea\x10\xd3\x91\xc0\xce\xd6\xb8\x4f\x9f\xef\x3a\x67\x1d\x7e\x88\x12\x7b\xdf\xb1\x8d\xb1\x08\x98\x48\x7e\x2c\x90\xe1\x98\x60\xf2\xb2\xb4\xb0\x3e\x81\xfd\x2c\x3a\x07\xf4\xc5\x9a\x97\xf0\x3e\xcb\x42\xc7\xe4\xa6\x73\xd7\x98\x62\x24\x98\xa3\x2e\xc6\x78\xef\xb4\x0f\x81\xbe\x76\x04\x54\xf5\x15\x40\xda\x75\x46\x86\x01\xcb\x4d\x25\x4f\x5a\xdf\xe9\x8e\x28\xd6\x7a\xec\x2c\xae\xd9\x63\x21\x6e\xd1\xbd\xb0\x46\x27\x5e\xb2\x2d\x91\xbf\xa4\x51\xe7\x60\xb9\xb8\xc8\x70\xc5\xbd\x2c\x47\x67\xe8\xe7\x4d\x2e\xa4\xf8\xf9\x49\x0e\x17\x78\x8a\x75\xdc\x6f\x84\xfa\xaa\x06\xf5\x8c\x79\xf7\x3d\xbf\x0b\x81\x12\x5b\x75\xf3\xc9\xb5\xa9\x74\x4d\xe0\x37\xbd\xae\x6f\x95\x96\xfb\x7a\x14\x44\xc9\x63\x18\xf2\xd7\x05\xec\x26\x73\x0a\x1d\xdd\x1f\xfd\x00\xa9\xa5\x53\xb2\xd2\xbc\x67\x6c\xd1\x66\x05\xf4\x34\xf6\xbc\x40\x41\xb3\x01\x7d\xd5\x51\x88\x0c\xa3\x3a\x60\x06\x98\x95\x29\xd4\xf7\x57\xf3\xad\x36\x06\x5b\xaf\x6b\x2e\x4c\x17\x67\x8f\x24\x53\x31\x7b\x6a\xa8\x7e\xa2\xe0\xcf\x70\x6e\x26\x9a\x7f\x37\x49\x3a\x2d\xa2\xe6\xc0\x23\x1c\xd8\x62\x1e\x2e\xe8\x08\xaf\x25\x6b\xb9\x5b\xe2\x2b\x48\x92\x99\x74\x84\x60\x51\xbf\xa7\x7b\x0e\x06\x50\x36\xd3\x55\xc9\x5a\xee\xdb\xf1\xc7\xf9\x24\x14\xc2\x7e\xad\xd7\x25\x9d\x4d\x14\x72\x5d\xa0\xf4\xee\x89\xa7\xf1\x80\xe7\xae\x7f\x9c\x22\x1d\xb2\x1b\xb9\xe3\x2f\xa9\xe8\x94\xca\xf6\x9f\x95\x3e\xa2\x3e\x93\xf3\x4d\x3e\x4d\xbd\xab\x03\xbd\xf7\xbc\xad\x4b\x5b\xb6\x4a\x5c\xb7\x4c\xcb\x06\x7a\xbd\xb0\x96\x07\xfb\xe3\x1d\xb5\x54\x07\x3e\xd4\x69\x07\x2d\x44\x59\x3a\x89\x7c\xef\x86\x6f\x37\x06\xc0\xad\xc5\x77\xd0\xc4\xe8\xd8\x71\x79\xc2\x1a\x02\xe9\xe4\x14\x38\x8e\x0b\xad\x1c\x41\x0f\x36\xb3\xf1\xa5\x68\x44\xe5\x90\xbd\xb8\xf8\x02\x5e\x2b\xde\x22\x8a\x2d\x17\xbb\x7e\xac\x7b\xd0\xc5\xba\xee\x10\x8a\x4e\xd2\x4e\x2d\x56\x01\x79\x34\xd5\xe2\xc2\xe6\x9b\xe3\x37\xf3\x99\x24\xd3\x03\x19\x2d\xb0\x9d\xc8\x49\xa0\xee\x94\x13\xc1\x2f\xce\x4f\x99\x9a\x29\x3d\x7c\xe3\xcf\x8d\xd4\xa0\x9b\x63\xf2\x66\xbe\xe1\x6a\xf0\x71\x66\xcc\xf1\xcb\x6a\x9c\x21\x7b\x5d\x6c\x2d\x16\x09\x07\x28\x32\x00\x4a\xa1\x49\xc6\xbe\x87\x39\xe8\x46\x3d\xc7\xc0\xee\xfb\x1d\x5a\x49\x39\x45\x7f\xd2\x04\x9b\xf3\x20\xc8\x98\x63\x6f\xc4\x4f\x26\xc0\x91\x47\x4e\xa1\xcd\x19\xe1\xc8\x7e\x73\x27\x84\x04\x0c\xde\xa9\x33\xec\xcc\xcf\x63\xf4\xbe\x5f\xef\x05\x70\x67\xbd\x8e\x58\x46\x65\xf6\x5a\xbc\xec\xda\xd7\x6d\x23\x6b\xd5\x79\x89\x82\x9e\x61\x33\xc9\x58\xd5\xbd\xe9\x11\x53\x82\xea\x5a\xc8\xbd\x69\x06\x1b\x64\x85\x66\x91\x35\x48\x9f\x67\x51\xb0\xf4\x10\x31\x6b\xfc\x5a\xe9\xfa\xa4\xe8\xa9\x55\x29\x69\x3f\x2b\x53\xd1\xec\xaa\x89\x09\xab\x87\xa1\xd3\xcb\xd6\x14\x6e\xfb\xe4\x2c\x06\x5a\x1b\xa7\xcb\x46\x2c\xd9\x88\x73\x94\x93\x86\x78\xd5\x9a\xf6\xf1\x80\x4d\xed\xda\x1d\x80\x86\xa7\x66\xbb\x5e\x89\xa7\xe9\xb8\xfd\xee\x3e\xbc\x56\x74\x6d\xc2\xd4\x8b\x1d\xd2\x10\x57\xeb\x70\x24\xb8\x1b\x47\xb6\x4d\x80\x31\x55\xc1\xe9\x2a\xd4\x97\x3f\x9a\xf8\xc9\x73\x5c\xf8\x0c\xfb\xd8\x56\x49\x68\x9f\xca\x92\x68\x1f\x74\xe8\x7c\xce\x84\x3a\x59\xc2\x56\x1a\xe2\xfc\x73\x96\x19\x2a\x86\x56\xd5\xe5\xc4\x0f\xda\x90\x15\x01\x73\x44\x7b\x69\xaa\x0c\x08\xcb\x83\x7e\x72\xd0\xb7\xbd\xbe\x4a\x17\xa4\x45\xa1\xa3\x8b\xef\x48\x40\x4b\xc0\x8a\x9f\xbc\x14\x13\x6b\x93\x30\x12\xa6\x00\x2f\xeb\x0a\x09\x96\x6f\x77\x70\x92\xa8\x5c\xd3\xae\xb7\xd8\xcc\x09\x21\x9b\x41\x35\x1d\x21\xf3\xf4\x18\x60\x2b\x30\xec\x7d\xa0\x52\xec\x70\xe3\xfb\x16\xa4\x8c\xaa\x32\x23\x01\x9e\x6b\xfb\x10\xd7\x67\x0b\xa1\xa9\x56\x8b\x6f\xb0\x53\x00\x9d\xba\x08\xac\x8f\x5e\x96\x22\x9f\x5d\x20\x3f\x1a\x11\x82\xe9\x65\x69\x60\x43\xc8\x4b\x29\x56\x17\xcd\x40\x64\x14\x0c\x93\xb0\x67\x25\xd5\x61\x19\x5e\x31\xc1\x75\x72\xfe\xe5\x98\x13\x2d\x1f\x86\x32\x02\x49\x3d\x50\x91\xc9\x10\xa6\x90\xa4\xe7\x9c\x01\x4f\xa7\xc3\xdf\x47\x4b\x4d\x54\xa2\x12\xd3\xad\xee\xc0\x92\xb6\x72\x72\x1c\x77\x5f\x65\x91\x9b\xf2\x9a\x95\x65\xd0\x4a\x97\x77\x52\xfc\xe6\xdb\x4e\x8f\xaa\x45\x5a\xab\xc2\x97\xd0\xd6\x67\x36\xc4\xdf\x8b\x32\xed\xd3\xad\x1e\x07\x5d\xaf\x1d\x58\xb6\xcb\x4b\x90\xfe\x8c\xdf\x52\x77\x40\x8e\x4a\x5a\xdb\xfa\xa6\xf0\x41\x5b\x10\xbe\x8a\x13\x97\x9d\xcd\x90\xb1\x2a\x59\x7e\x41\xc3\xb9\xc8\x2f\x61\x37\x63\xe3\xa6\x66\x1a\xb4\x73\x54\xc6\xc0\x97\xa6\x60\xa4\x53\x02\xcf\x79\xfa\xa9\x58\xfa\xf0\x85\x81\xfb\xc2\x28\xb4\x58\xe7\x4b\x11\x41\x8f\xd7\x59\x27\x1c\xa0\x68\x5d\xef\xc3\x12\x0e\xb1\xde\xc9\xd4\xb5\x1b\x5e\x63\xd8\x8e\x26\x9a\xb4\x9b\x41\x0f\x6b\x92\x43\x39\xa5\x66\x42\x12\x74\xff\x22\x70\xb3\x98\xe3\x06\xe0\x13\x8f\xbe\x7a\xf1\x35\x10\x51\xce\x4c\x55\xb1\x27\x44\xc9\x67\x5a\x7d\xb7\x71\x4e\x7d\x18\x4d\x07\x28\x44\xe2\x85\x8e\x0b\x57\x5c\xa7\xcc\x3b\xfc\x14\x2a\xb2\xd2\xfa\xf2\x19\x90\x3b\x34\xf8\x65\xe0\x21\xa1\xa5\xeb\x90\xf7\x4b\x3a\x0a\x1b\xf5\x54\xbd\x35\xdc\x34\x85\xde\xad\x0b\x0f\xab\x43\x50\x83\x94\x71\x6f\x4a\xcb\x3c\x68\x4d\xd3\x8b\x88\xf3\x56\x83\x0a\xd1\x4e\xf4\x38\x22\xe8\xc1\xa8\xf2\x3e\xe3\x57\x9f\x81\xe5\xbc\xa5\x95\x0b\x84\xf5\xe8\x72\x62\xa4\x8e\x37\xbf\x4b\xf1\x06\x69\xcf\x64\x27\x32\x90\x8f\xf3\x58\x68\xe7\xc2\x86\x7e\x27\x53\xef\x56\x74\x7e\x52\x7b\x18\x0e\x5f\xc8\x7c\xcf\xbe\x73\xf1\xf6\xf8\x6e\xe0\xa6\x54\x45\x5d\xd6\xab\x99\xef\x5e\x30\xe7\xf1\x1b\x8e\xb9\x16\xb9\x50\x2a\xc0\x63\x8f\x47\xb4\xc6\xd4\xed\x18\x6b\x26\x50\xc7\x00\xf3\xf9\xd2\x76\x4a\x0a\xeb\xe4\x45\xde\x99\x60\x58\x3f\x35\x32\xe6\x0c\xa6\x3e\x91\x41\xe4\xd0\xa2\xd7\x22\x21\x26\x00\xd3\x03\x70\x67\xc2\x7c\x1e\x60\x4c\x09\x07\x54\x3c\xe4\xed\xc1\xbb\xcf\xbf\xc7\xac\x21\x26\x81\x3e\x21\xaa\x49\xfd\x74\x05\x9d\x95\x83\xf7\x23\x93\xc9\x18\x54\x9a\x88\x8d\xc7\xc7\x3f\x59\x59\x9e\xb5\x24\x5b\x82\x8c\xad\x58\xee\xb3\x08\xa8\xb5\xd0\x2b\x21\x0c\xf2\x78\xd7\x6b\x80\x4c\x46\x56\x46\xc9\x60\xe7\x85\xfc\xe8\x06\xcc\x55\x3a\xf8\x65\x6e\x19\x32\x2d\x68\xe5\x49\xd8\xd4\x83\x61\x08\x0e\xd8\xc7\x65\xae\x54\x90\x35\xc0\xf8\x17\xe5\x40\xe6\x03\xe9\x9e\x8a\x9a\x91\x24\x83\xe5\x98\x68\x61\xec\x19\x17\x22\x0b\x92\x5a\xe7\xc1\xd6\x8f\x81\xda\x26\xf1\x96\x7d\x23\x6f\xc4\x0a\xd9\x8f\x4e\x2a\x25\x6b\x87\x0c\x04\xd8\xc5\xda\xa4\xa5\xa2\xc6\x75\xf4\x5c\x0e\xc9\x71\x3e\xe7\x11\xeb\x4b\x55\x3e\x7b\x3f\xa5\x47\x9f\x06\xaf\xa0\xb2\x32\xcc\x6a\x01\x8b\x62\xfc\x2e\x8e\xd9\x52\xf5\xcf\x2f\x5e\xca\xa6\x0b\x4d\x07\xbe\x2f\x86\x24\x8a\xc0\xc6\x2c\xef\x7d\xab\x0f\xa9\xb5\xd6\xdd\x83\xa3\xe3\x8d\x47\xb4\x58\x2e\x8d\xaf\xc6\x40\xdd\x89\xf8\xc9\xf7\x45\x46\x8f\x43\x5e\x97\x01\x9a\xfc\xc2\x6a\xc1\x5b\xe8\xb5\x04\xca\xc9\x44\xaf\x87\x33\xbd\xd4\x27\x0f\x8f\xb9\xf9\xb8\x25\x7e\x8e\x7c\x2f\x97\x5e\x06\x2c\x3b\x48\xfa\x40\x77\xc4\x8f\x83\x7e\xee\xf9\x8d\x91\x5d\xcf\xf6\x8e\x82\xe5\x10\xb3\x85\xa8\x3f\x59\x49\xc3\xcf\x6a\xf5\xc1\x4a\xf8\x50\x57\x35\xce\x7d\xa3\xb8\x4a\x0c\x52\x0c\x2c\x0f\x5f\x09\xa0\x93\x1d\xc5\x82\xe2\x4d\x2a\xdd\xd4\x8e\xd0\x45\x98\xcc\x44\x73\x6e\xa2\x82\x64\x33\xf8\x5d\x55\x84\x3c\x8e\xb9\xe9\xdb\xa0\xa0\x20\xf0\xf2\xf7\x3b\x34\x07\x38\x8e\x1f\x4c\x96\x18\x96\x26\xea\x68\x20\x0d\x96\x87\x48\x84\xca\xb3\xa9\xa9\x58\x29\x23\xe1\x8a\xd4\xdf\x85\x27\x80\x8b\x3f\xc8\xc2\x3f\x60\x85\x8a\x68\x4f\xc8\x93\xa5\xd8\xdb\x17\xb9\x1a\xd7\x26\x0d\x34\x9f\x2b\x38\x98\x64\x6d\xc5\xfa\x5c\xbf\xfb\xfe\x5b\xbe\xc5\x7a\x66\x22\x31\x8e\x67\xf5\x39\x35\xad\x60\x02\x72\xb9\xdf\x60\xed\x2c\xad\x77\xc8\xce\x53\x3c\x9d\xf2\xef\xde\x55\xf5\xca\x0d\x32\x45\x90\x85\x26\x19\x5f\xa5\x9d\xd2\x30\x7a\x1f\x3d\x48\x91\xa3\xc9\xa7\x5b\x61\xf3\x29\x79\xeb\x5f\x87\x4b\x97\xe2\x6b\x0e\x30\x09\x04\x81\x70\x91\x29\xee\x75\x41\x24\xb1\x11\x06\xa1\xf8\x82\xb7\x10\xc0\x4e\xa5\x94\xb7\x91\xb2\x74\x38\x84\xb7\x6f\xa7\x43\x3e\x63\x12\x2c\xbf\xfb\xa7\xa1\xd7\x45\x73\xa9\x53\x2b\xd5\x50\x45\x7b\xca\x15\x2e\x78\x80\xdf\x89\x2c\x07\xa1\x8a\x7c\x03\x8e\x9d\xef\xfd\x75\x0d\xb5\x51\xf4\xaf\xfc\x54\x97\x9f\x7a\xe5\xeb\x16\xf2\xb1\x98\xcb\x51\xa6\x50\xf8\xc1\xaf\x25\xe9\xc9\xfa\x31\x2e\x06\x2c\x8f\x6d\xb6\xc2\xa3\xc9\x0a\xab\x8e\x64\x17\x3b\xed\x5c\xdf\x9c\xac\xeb\x48\x20\xc8\xdf\x3d\x1b\x0b\x0c\x64\x13\xaf\xaf\x9e\x9e\x09\xc2\xa8\x3f\x60\x06\xe0\x73\x19\x9d\xd5\x87\x72\xc7\x35\x19\x70\x53\xdd\x61\xcb\x1f\xe7\xd0\x9c\xbd\x2d\x47\x74\xcd\xc9\xde\x01\x96\x99\x9b\x5e\xcb\xee\xd0\x9e\x10\x42\x10\x1a\xa5\x96\x0b\x47\x48\x6a\xd8\xcb\xef\xa6\x20\x34\x5c\xbd\xda\x88\xc5\xa5\xc8\xd6\xec\xed\x6f\xf8\x7e\x3f\x33\x40\x01\xea\xa9\xeb\xd7\x40\xaf\xe8\x37\x0d\x78\xc0\x45\x93\xe5\x30\xe1\x2a\x60\xb3\x23\x25\x26\x21\x37\x18\xee\xd0\x18\xcc\x42\x57\xbc\x23\x52\x08\xa1\x29\xd3\xf2\x36\x80\x74\x53\x1b\xb7\x5e\x8e\x14\x24\x7c\x93\xd1\x70\x46\xab\xe7\x59\xb3\x66\xe9\x26\xd9\xb9\x6b\xb0\x32\xdc\x43\x22\x16\xf8\x41\x12\x07\x5b\x05\xc1\x4a\x7a\x94\x6f\x4f\x7f\xb6\x0e\xc9\x49\x2c\x2e\xbe\x0b\x23\x02\x46\x96\x2c\x69\xd8\xc4\x9a\x40\x40\x3f\xa9\x2c\xf4\x71\x95\x17\xc4\x62\x4d\x1b\x16\xc9\x25\xb7\x8a\x78\x68\x0a\xe7\x67\x4f\xbe\x15\xb2\xc5\xb4\x48\x47\xe9\xb4\x21\xab\xb6\x40\x6f\x88\xc2\x5c\x26\x2a\x02\x03\x80\xe5\x91\xc0\xd1\x4c\xa4\x55\x7c\x70\x82\xb4\x50\xc5\xe3\x9c\xca\xc3\x9d\xd2\xd5\x1d\xd1\x80\xbb\xde\x32\x93\x6a\x5a\x8e\xb9\x09\x67\x81\xe2\x99\xfd\x46\x1c\x46\xfe\x08\x7b\x6d\x31\xb6\x5d\xf9\x3c\x0c\x73\x76\xd5\x74\xf0\xbb\x95\xfd\x9d\x0e\x60\xf9\xde\x9f\xc0\x78\x10\xea\xed\xb3\x61\xe5\x32\x42\xd5\x48\x6f\x39\xe2\x73\xc6\x50\x63\xaa\x31\x70\xf0\xa0\xaf\x4a\x6e\x94\x69\x24\x95\x5f\x08\xcd\xa9\x88\x8c\x9e\x36\xee\x1c\x07\xe4\xc0\xfa\xa7\x83\x51\x67\xea\x67\x98\x34\x8d\x52\xb8\x98\x63\x86\x54\xb6\x91\x42\x29\x82\xde\xbb\x9f\x63\x92\x02\xd0\xde\x26\xcd\x27\x4c\x9c\x47\x42\x22\x5f\xf8\xf3\xb9\x3b\x1f\x0b\x94\x0f\xf7\x12\xc9\x96\x54\x48\xbf\x79\xb6\x16\x6c\x9e\x9f\x68\x9e\x80\x5b\x20\xa3\x74\x77\xcd\xb6\x8c\xa9\xde\x92\x0d\x85\x53\x24\xcc\x72\xec\x58\x3c\x34\xc1\xf2\x48\xe9\x76\xe5\xc3\xf8\xb2\x35\x99\x67\x79\xdd\x40\xf5\x82\x46\xea\xce\x06\x7a\x28\xfd\x10\x83\xf2\x51\x42\x2a\xd5\x31\x25\x62\x59\x9a\x58\x48\x04\x1f\x90\x43\xa4\xdb\x11\xa3\x44\x5b\x35\xe1\xe2\x19\xa1\x0f\x32\x5d\x81\x79\xa5\xdd\xd9\x14\xd5\xa2\x7e\xb1\x98\x83\x1e\xb6\xdd\x87\x2d\x6c\x0b\xcb\x56\xf2\xef\x5d\xd8\x32\x3d\xde\xca\x47\x94\x1b\xd8\x5a\x26\xc9\x28\xf4\xb2\x24\x3c\xfd\x69\x68\x49\x9d\x4a\xac\xd5\xd3\xfb\x65\x7b\x8b\x89\x84\x30\x9c\x5a\x04\x3d\x91\xb9\x0d\x4d\x9f\xab\x1b\x9b\x05\x60\xf9\xa2\xa5\x14\x6e\x0c\x34\x8b\xd4\xf7\xcb\xee\x8a\xcc\x3d\x1c\xbd\xae\xdb\x18\x12\xbd\x83\xa6\x05\x0a\x90\xc9\x86\x68\x09\x8e\x02\xdb\x7e\x15\xfb\x40\x56\x1f\xf5\xd5\xf5\x3e\x8a\x1b\x10\x64\xd7\x0e\x96\x5c\x45\x4b\xe9\xc1\xbb\x0f\xca\x21\xeb\xfc\xd3\x23\x3c\x45\xe5\xed\x23\x7f\x43\xe7\xd2\xd0\xcd\xf6\xd0\x01\xa1\xe4\x76\x94\xfd\xd2\xf9\x74\x16\x09\x17\x77\xd9\x69\x6b\xaa\x93\x31\xda\xd9\x1d\x5e\x78\xda\xc1\x62\xa2\xde\x6e\xa0\x37\x1b\xd1\xd0\x94\xf4\xae\x7d\x82\xa1\xc5\xd1\x45\xfa\x5a\x97\xbf\x79\x5c\xca\x98\x7b\xe3\x5b\x87\x99\x48\x51\x2f\x2e\x63\x4b\x47\x68\xd9\x6a\xca\xe7\xd7\x47\x7c\x14\x01\x47\xab\x3c\x18\xf3\x29\xec\x43\x15\x23\x32\x83\x83\x2e\xd8\xd8\x8c\xae\x60\x0d\x17\xbc\x44\x31\x8d\x24\xf8\xa3\x7d\x9a\xea\x88\xec\xc3\xbd\x28\xc6\xd5\x5e\x7b\xc9\x4e\x0a\x26\x5c\x6c\x70\xf2\x85\xd3\xc7\x5c\x22\x3f\x7b\x8a\xde\x91\x00\xa6\xad\x5a\x79\xf2\x82\xea\x8e\x4d\xf6\x22\x7b\xe3\x41\x8d\x6d\x88\x59\xba\xd8\x6b\xb4\xfa\xee\x61\x25\xd4\x49\xf8\xf6\xe4\x8a\x5b\x1c\x7e\x01\x04\x9a\xb3\x1a\x06\x31\x1c\x77\xa9\xee\xc0\xf8\x7d\x19\x1e\xc4\x5b\xd2\x65\xc9\xcf\x40\x5c\x9b\xee\x1f\x53\xbe\xa5\x88\xb0\xa8\x0a\xfb\xad\x86\x6f\xdf\x4a\x88\x91\xa8\x66\x2a\x62\x7d\x55\x62\x1f\xd9\xfc\x2c\xcf\x5b\xa5\xe3\x00\x33\xf7\x3d\xc4\x62\x9c\x64\xe2\x97\xa6\xca\xa3\x00\x3b\x47\x92\x83\xc2\x46\xed\x90\x9d\x17\x69\x4a\x3d\x39\x57\x5d\xb1\xb3\x2e\xcf\xa7\xca\xf9\xe2\x24\x0a\x4a\xe2\xa3\xf9\x36\x79\xce\x57\x14\x1c\x13\x9c\x55\xdc\xb7\x0b\xa2\x45\x59\x5a\x26\x50\x61\x1e\x05\x9b\x91\x6f\x24\xfd\x2e\x1e\x87\xd3\x1c\x4b\x4c\x23\xc5\xc6\x00\x72\x43\xef\x41\x88\xcb\xcf\x41\x0f\x9e\x40\xbd\x3c\xc0\x7c\x1a\xbf\x5a\x7d\x9a\x48\x0e\xa7\x78\x54\x3c\x0c\xb3\xe1\x82\x79\xd0\x1b\x0f\x47\x5b\x94\xcc\x91\xce\xb0\xd4\x6f\xbd\x82\x9b\x36\x04\x10\x75\x71\x96\xe0\xe9\xa3\xc6\x4e\x07\x49\x0d\xc5\xc0\xc7\x99\x9b\x84\x7c\xe8\x8b\x41\x1f\xb4\x9f\xea\xd1\x35\x89\xd2\xcd\x6e\x3d\x73\x1b\x11\x19\x50\x18\xd4\x32\xac\x6b\xea\x2e\xa9\xcb\xb0\xf7\x58\xc3\x27\x1d\xb4\x45\xed\x4e\xd3\x49\x9b\xaa\x15\x44\x42\x16\x84\x6c\xce\xc7\x1f\x87\x29\xb4\x0f\x62\x22\x1a\x40\xdd\x9c\x41\xbb\xf9\x3d\xf2\xd4\x62\xdf\x79\x8f\x6d\xfa\x9d\x45\x8c\x68\x87\x97\xc5\x78\x97\x24\xb9\xc4\x30\x7b\xe3\x5d\xe7\xa8\xcf\x5e\x43\x3c\xf1\x6c\x96\x21\x07\x9d\xc4\xfa\x1b\x48\xb7\x03\x6e\xbd\x9a\x70\x61\x3d\x97\xe3\x16\xc5\x50\xe2\x8c\x2d\x83\x07\x32\xba\xb2\x22\xed\x27\x91\xfb\x13\x77\xbf\xd8\x47\x46\x2c\x74\xe9\x8a\xdc\x71\x0f\xa1\x70\xc4\x52\x4f\x18\xd6\x64\xc9\x82\x28\x9b\x93\x6e\xf8\xdd\xff\xac\xec\x04\x28\xe2\xe9\xb5\xfd\x17\x6d\x5d\xb4\xcf\x1e\x43\x97\x41\xc3\x9d\xca\xf5\x46\xf4\x74\x1e\x7b\x23\xdd\xd7\xd6\xc9\xfa\x6d\xe8\xf9\xd2\xbe\x70\x21\xa1\x33\x51\x0f\x33\x4f\xc9\xf5\x85\x7d\x6b\xce\x48\xc9\x60\xd9\x38\xbc\xb5\x70\xdd\xe0\x2e\x30\xd4\xf3\x5d\xdd\x69\xb5\x26\xec\x73\xe0\x05\xb0\xac\x54\x34\x2c\x7d\x35\x8e\x40\x46\x5c\xd5\x88\x15\x25\xa9\x7f\x27\xef\x1b\x7d\x7a\xaf\xde\x1f\xe9\x68\xca\xf4\xd0\x54\x20\x34\x4b\x43\x1b\xd1\xb8\xf2\x9e\x57\x9b\x3a\x32\x80\x5a\x8a\xf0\x21\xd1\x7d\x52\x0a\xea\x42\x6c\x6b\x30\x90\x62\x20\xdc\xb5\xab\x2f\x17\xe8\x97\x47\xc3\x45\x08\xb6\x69\x6d\x09\xbf\xfe\x6a\x9c\xe0\xe1\x10\x14\xd5\x18\x2d\xea\x27\x59\x8a\x71\xa9\x88\xaf\xc4\x62\x31\x77\x78\xe5\x68\x8a\xbd\x7a\x18\xca\x69\x89\x64\x11\x3e\xa7\xd9\x24\x20\xa3\x21\x3c\xe9\xcc\x6c\x7f\xeb\xe9\x9c\x14\x0c\xbc\x79\x6f\x43\x2a\x52\x1b\x63\xda\x6a\x7b\x41\xd7\xb7\xaf\xd6\x92\xe2\x35\x88\x8e\x22\xb0\xfa\xba\xe7\x9d\xf2\x54\x77\xa0\x66\xa1\x6b\x92\x66\x18\xea\x52\x4d\xc1\xb3\x8c\x69\xad\x98\xb7\x18\xea\x7c\xeb\x3c\x16\x73\x10\x50\x93\xa9\x54\x6a\xa8\x46\xcd\x1a\x84\x36\xf0\x0d\xa1\x57\x6b\x03\x1d\x3e\x29\xae\xff\xbe\xab\x33\x29\xc0\xd8\xf6\x9c\xcb\xdd\x0e\xff\x02\x8b\x77\x5a\x77\xd0\x48\x46\xea\xc5\x2d\x32\x1a\xa0\xd2\xea\xc9\xa2\x1f\x33\xd6\x5b\xcd\x13\xfb\x1d\xb1\x97\x45\xea\xb7\x7e\x30\x1c\xa5\xda\xdf\xf6\x73\x4c\x52\x02\x93\xb0\x06\x01\x3e\xa0\xa2\xaa\x7b\xd3\x4f\x0b\xe1\x56\xbc\x71\x0c\x10\x85\xce\x28\x7d\x80\x8a\x84\x5e\x08\x9f\x07\x78\x3d\x97\x2f\x72\x6c\x20\xc3\x28\x89\xd7\x78\x53\x67\xa4\x87\xc1\x23\x63\x08\xbd\x21\x0f\x41\xf9\x5e\x12\x30\x03\xfa\x82\x2c\xa6\xd9\x85\x67\xf2\x5a\x7d\xc6\xac\xe8\xae\x71\xa4\x63\xa8\xf3\x0d\x11\xfe\xa4\x30\x1c\x14\xd0\x53\xd4\x97\x85\xaf\x1a\x67\xf1\xc1\xc7\x46\xb0\xfe\x64\x51\x8e\x13\xad\xf2\xac\x04\x81\x54\xac\xe6\x19\x15\x85\x21\x7b\x09\x48\xd8\x49\x90\xf2\x33\xfe\x5c\x2f\x4f\xbd\x7c\x47\xe4\x14\x03\x33\x21\x36\xb6\x8f\x80\xae\x40\x05\x97\xf6\x9a\xb1\x30\x57\x88\x90\x31\x54\x8a\x50\xca\x25\x23\xf9\xd9\x00\x5a\x65\xe7\x51\xda\xec\x51\xa0\xde\x04\xc5\x33\x78\xe0\x26\xe8\x11\x0c\x91\xdf\x26\xf4\x95\xbb\x27\x05\x2c\x1d\x49\x97\x79\x5c\xfe\x10\xdd\x9a\xc4\x2d\x79\xa1\x0f\xd5\xc1\x7b\x15\xcd\x6b\xef\xd8\xff\x92\x27\xd0\xf6\x61\x9f\x87\x33\x3b\xf2\x43\xc4\x91\x1a\x5c\x58\xc3\x9b\x33\x80\xaa\xbd\x42\x37\xa0\x6a\x76\x26\x43\x2a\x89\x52\x13\x70\x16\x6b\x1e\xd4\xd4\x79\x1e\xbc\x82\xb0\x3f\x5e\x11\x24\xa4\xde\x07\xbc\x00\x76\x3d\x53\xcb\xa2\xa4\xd4\x8a\xb0\x78\x00\x1b\x6c\xcc\x2f\x30\xb3\xa9\x23\x69\xd9\x5d\xcf\x5a\x7f\x1b\x93\xe9\x4c\xe3\x4c\xa8\xc3\xfd\x89\x1c\x91\x6f\x27\xda\x50\x9b\x03\x53\x4c\xb1\x06\x8e\xe6\x21\x8d\xd7\x5f\xb8\x24\x0b\xcd\xe5\x10\x1b\xe9\x1d\x73\x09\x88\xb3\x8b\x26\xfa\x36\x45\xa7\x22\x49\x66\x32\xcc\xa5\x9e\x8a\x2d\x7c\x33\xaf\x85\xbe\xb3\xeb\x74\x86\xcc\xea\x2b\xb7\xb3\xeb\xac\xd3\x06\xd1\xea\xe7\x35\xf7\x9f\x65\x87\x04\x00\x99\x2c\x7e\x53\xb2\x85\x37\x51\x48\x9c\xb4\x0f\xd2\x0d\xc7\xee\x78\x77\x41\xc5\xfd\xa6\x89\xe4\x01\x77\xea\x8e\xfb\x55\xa6\xcc\x98\x86\xbf\x34\xef\x0d\xa1\xa4\xe2\x14\x61\x72\x9b\x53\xa6\x57\x52\x45\xc2\xa4\x2b\x48\x97\xaa\x06\xec\x1d\x58\xf1\x59\xe1\x8d\xa0\x02\xea\xca\xa7\xbe\x0c\x3e\x83\x7e\xcc\xd0\x1e\xce\xc8\xf0\xae\x49\x42\x16\x50\x41\x69\x0d\xc5\xf0\x00\x2d\xc3\x0f\x02\x11\xc8\x15\xdf\x49\xf3\x70\x20\xa3\xd4\x2d\xa3\x92\xeb\x91\xc8\x9a\x88\x1c\x01\xa7\x2b\x4b\xa5\x89\x22\x4b\x13\xd5\xce\xef\x89\x5f\x8a\xf8\x21\x0d\xa2\x5e\xdf\x53\x76\x58\x5b\xf4\x6e\x5b\x6a\xcd\x77\x41\xa8\x04\x04\xa7\xe9\x97\xb2\x23\xa3\x53\x86\xfa\x53\x7b\x62\x5e\xa5\x3b\xbc\x9a\x0b\x31\x17\x8e\x81\x8a\x07\xcc\xe8\xb8\xc4\x8a\x2a\xc2\x83\x8e\x0e\x23\xcb\xb9\x79\xc1\xc2\xdc\x16\x65\xca\xfd\x8e\xa8\x2f\xb2\x21\xe3\x8a\xe8\x73\x7d\x6e\x07\xb9\xa5\xe6\x2d\xa5\x67\x2f\xb1\x27\xe4\x56\xca\x3a\x3a\x24\x1a\x1d\xf6\xc5\xf1\x07\xa8\xc6\x73\x5b\x46\x81\xb5\xae\x97\x70\x8b\x1a\x8c\xc7\xf8\x92\xec\x52\xc7\xe0\x16\xb6\xba\xc7\x51\x10\xa7\xd0\xd8\xb3\xd1\x80\x2e\xd7\x09\x21\xe8\x01\x2d\x6a\xf6\x68\x09\x60\x1d\xe7\x0c\xb5\x98\x73\x39\xa3\x12\xc7\x5d\x4f\xf4\x64\x2e\x6f\xe2\x3b\x04\x5e\x02\x72\x0d\x44\xfa\x88\x9e\xa2\x2d\xb5\x07\xbb\x1c\x70\x9e\x0e\x6a\x78\x6d\x8e\xbf\x63\x37\x1d\x35\xf3\x07\x8e\xc6\xbd\x30\xdd\x87\xdc\x9e\xf7\x40\xd4\xf8\x9d\x9a\xf4\xe5\xbe\xc4\x21\x61\xbe\xcb\xeb\x7c\xbc\x0b\x11\x63\xe1\x74\x8a\xad\x7e\xb2\xb9\xe6\xd3\xa9\x1c\xf2\x7a\xdf\xb4\x81\x10\x2d\x21\x85\x20\x71\x3a\x13\xc0\x3b\x64\xb8\x90\x75\x3a\x8a\x02\x9a\xbc\xc2\x0f\x23\x57\x7e\xd5\x5b\x46\xef\x97\x53\xf5\x2a\x9d\x69\x3a\x7f\x88\xe6\xe3\x15\xad\xfc\xae\xc6\xba\xce\x8c\x2c\x61\xcb\x6b\x4b\xc7\x61\xd8\x0f\x6f\xbf\x80\xaa\xeb\xc7\x97\xf9\xfb\xbd\xd2\x5c\xf0\xf6\x6d\xca\xa0\xc2\xda\x37\x90\xe1\xa7\xc8\x90\x43\x82\x3d\xb4\x90\x64\xc1\x36\xc4\xc1\x00\x80\x13\x6f\xad\xdc\x73\x0c\x90\x87\x73\x13\x7c\x11\xcd\x48\xb7\x31\x99\x3e\xd3\xc5\x08\x82\xc9\x89\x76\x99\xd7\xf3\x16\x57\x58\x10\xa0\x02\x8f\x28\x07\x30\x35\xa8\x5b\xca\xdd\x6f\x7d\xd4\x0e\x8e\x26\xdb\xc4\x49\xc4\xe4\x1c\xcf\x02\xd1\x23\x72\x98\x53\x39\xe2\xa4\x92\x6d\x6e\x61\x15\x4a\xfc\xf6\xa0\x9e\xb0\x2c\xad\xf6\x2f\x82\xec\x4f\x88\x76\x8f\xdc\x1b\x17\xff\x8d\x49\xee\x0d\xfd\x8e\xf8\xc2\xaf\xe7\x66\x25\xbe\x23\xf2\xfb\xbc\x0b\xba\x8c\x37\x6c\xd0\xc9\xb5\x70\xd5\xeb\x22\x50\x5e\x03\x53\xea\x32\xd6\x1d\x94\x66\x95\xf1\x89\x43\x10\xc6\x50\xa0\xe5\x1e\x25\xc2\xbd\x1c\x03\xab\xf6\x69\x66\x2b\x7a\x3d\xa1\xeb\x4d\x98\x57\xc5\x0e\x67\x0c\x2c\x63\xf8\xea\x35\xd8\x08\x81\x91\x94\x6c\xb0\xc3\xbc\x2f\xe0\x9a\xbe\x2f\x9f\xa6\x51\x3a\x31\x45\x90\x1a\x15\x36\x21\x33\xa4\x12\xc1\xce\x65\xbe\xd1\xd3\xcc\xe1\x67\x5c\x03\x99\xc8\x74\x68\xd8\x2a\x9b\x18\xf2\x08\x99\xd2\xd7\xd0\x52\xf9\x96\x3d\x11\xcd\x2b\x50\x48\x25\xaf\x1a\x8c\x7c\xea\xce\x22\xed\xdb\x43\x91\xef\xdd\xe6\xb7\xa6\xc3\xf3\x71\x7d\x83\x73\x26\x03\xed\x74\xd1\xc2\xea\xb3\x42\xc7\xf8\xca\xb2\xf6\xf4\x21\xb7\x94\x98\xd4\x58\xcb\x82\x2f\x84\xb8\x54\x9e\x51\x8c\x78\x28\xa6\x9f\xe9\x57\x94\x40\x25\x06\xa9\x82\x37\x5c\x6c\xae\xdd\x3b\xcb\xa0\xd5\x38\x77\x85\xf8\x25\x9a\xdc\xf5\x5c\xef\x48\xe5\x19\xab\xdb\xaa\xbc\xc1\x72\x67\xb5\x3c\xa5\xbe\xc1\x82\x2d\xa3\x71\x01\x03\x44\xe6\x15\x09\x47\x0f\x1d\xa4\x70\xfa\xaa\x54\x41\x05\x22\xa9\x70\xaa\xde\xf6\xb9\x3f\x81\xc1\xa8\xb8\xed\x09\x65\x2d\x01\x65\xce\xa1\x9d\x57\x8f\xc2\x96\xd2\x8b\xf6\x0e\xc5\x7c\x2b\x2e\x46\x37\x9f\x6d\x9a\x98\x1a\x02\xc0\xd6\x9d\xe5\x9d\xb6\x68\x3c\xd7\xee\x92\x02\x57\x86\x91\x6b\x8a\x96\xdd\xaf\xdb\xc7\xa9\x6b\x67\x3b\x38\x6e\x9e\x7f\xce\x28\xfc\x61\x83\xa1\x13\x03\x91\xdd\x7d\x5e\x22\xe1\x0b\xc3\xa1\xc4\xc7\xa2\x99\x90\x62\x22\x59\x04\x40\x49\x8e\x4f\xaa\x7b\xfb\x19\xf7\x61\xce\x48\x20\x63\xbd\x91\x75\x2e\xd9\x15\x64\x22\x91\x8a\xa1\x69\x9a\x49\x28\x27\x49\xf4\x82\xee\xb6\x61\x39\xc8\xbd\x21\x5d\xd5\xa7\x11\x1c\xda\x89\xee\x50\xa7\xc8\xf1\x33\x84\x3e\x18\x07\x16\xb1\x00\x3c\x18\xf8\x62\x17\x59\xbe\xf1\x96\x21\x8c\xed\xee\x30\x26\x91\x92\xa5\x96\xd5\xfb\x4d\x87\x3d\xa6\x4f\xf5\xd1\xfa\x72\x44\x92\x01\xfa\x5e\x9f\x68\xfb\x71\xa7\x21\x6e\x4d\xf0\xcb\xae\x19\xec\x62\x10\x82\x34\x2e\x54\x53\x89\x2b\x01\xfb\x5e\xfe\x6a\x06\xd8\xbc\xfc\x20\x37\xf4\xa0\xc0\x95\x75\x86\xdc\x0e\xb9\xa7\xbf\xe6\xb3\x9a\x76\x89\x6d\x50\xae\x21\x09\x7e\xa4\xc6\x32\x0f\x43\x42\xa0\x0a\x97\xa5\x59\x51\x29\xa8\x69\x6f\xce\xc3\x33\x06\x09\xef\xe5\x0a\x36\xef\x62\x79\x40\xbf\xac\xe6\x9a\xf6\x58\x72\xd7\x0b\x53\xc7\x09\x68\xe4\xfd\x8e\xcf\xfd\x59\x89\xd3\x69\x71\xbd\xdf\x0c\x7d\xd4\x19\xe9\x15\x95\x0b\x04\x8f\x10\xe0\x8f\xb0\x54\x8e\x0c\x23\xe2\x24\xf7\x6c\x83\xa9\x03\x61\x77\x08\xcb\x96\xe9\x78\x86\xfa\xf1\x75\x7d\x9a\xfc\x8b\x7c\xf3\x7a\x18\x58\x0b\x5d\x93\x15\xd8\x91\xa2\xe1\x64\x8d\xdf\xf2\x87\x13\x11\x67\x10\x21\xb0\x5d\x57\xb2\xbb\x53\x0d\xf3\x53\x61\x07\xd7\x60\xef\xdb\x39\x18\x52\x94\x87\xe6\xe6\xac\x3b\xdb\x95\xe8\x10\x1d\x52\x72\xfd\x90\xc9\x9d\xaf\x50\x17\x80\x14\x13\x1a\xdb\x3a\x8e\x4b\x42\x0c\x29\x42\x1f\xfb\xd7\x53\x58\xa1\xb9\xae\xb0\x84\x59\x2d\x05\x46\xf0\xdb\xd3\x6f\xa1\x4d\x8c\xf9\xb2\xb7\x9f\xf9\x99\x0a\x3a\xd7\x10\xd3\xeb\xbd\x56\x8b\xd5\x60\x8f\x75\xf9\x76\x24\x90\x4b\xdc\x96\x06\xf5\x90\xd7\xfa\xa9\xe3\x3b\xe8\x58\x2d\x4d\x46\x1f\x85\x5e\x3b\x75\x77\x2a\x40\x41\x46\x8a\x93\x37\x5b\x64\x53\x9a\x22\x26\x22\xa9\x64\x01\xd7\xca\x23\x5f\x07\x6d\xdb\xfa\x24\x53\xac\x9b\x22\x93\x40\x70\x30\xe7\x93\x65\xf3\x8e\x0c\x0a\xc9\x24\x31\xec\x32\xd1\x1a\xcb\xa2\x18\xd8\x0f\x00\xec\x4a\x5e\x79\x6f\xda\xc6\x22\xa2\x9c\x01\xe1\xcd\x84\x65\x22\x12\x36\x87\xef\x8e\x99\x1c\x40\x71\xa8\x44\xe1\x7b\x7b\xcc\xdd\xae\x10\x1a\x8e\x21\xb2\x30\x2f\xa0\x29\xd9\x74\x1d\x0c\xfa\xd9\x98\x43\x60\x14\xd9\xd3\x18\x42\x3a\x71\xe5\xf1\x9c\xb0\x9c\x10\x89\x4a\x96\xad\x4f\x10\x7a\xf4\x64\xb0\x3c\x16\x88\x4c\xda\xe0\x72\xc5\xa4\x87\x46\x17\x4e\x89\x83\x6c\xc3\xc0\x46\xac\x4f\x1c\xcb\x4b\x07\x32\x8c\x80\x7e\x2c\xce\x75\x15\x98\x7a\x4c\xeb\x49\x07\xcf\x4e\x9d\x14\x41\x5b\x45\x36\x50\xea\xa9\xa7\x1e\x02\xe7\x9d\x08\x29\xfe\x0d\x29\x79\xe8\x06\xf1\x83\x30\x79\x75\xb9\x44\x30\x67\xe7\xe8\x7f\x43\xb8\xd7\xdb\x27\x7a\x15\x79\xfa\xf4\x92\x6c\x1d\x3e\x70\xf3\xb8\x13\xcf\x68\x87\x83\xb0\xc4\x82\x86\x15\xd2\x0b\xab\xa2\xf5\x91\xd9\xd6\xb0\xe3\x16\x57\x5d\xfe\x16\xd0\xda\xb9\x85\xaa\x8e\x50\x9f\x21\x4f\xd0\x1e\x97\x25\x74\x3d\xa3\x86\xbf\x9c\xa2\x53\x9b\xb7\x09\x9b\x53\x2e\x41\x38\x7e\xe9\x3d\x88\x8e\x2a\x3d\x72\xef\x2a\x34\x43\x13\xb0\xe4\x6d\x26\x53\xbc\xbd\xa0\xed\x97\x57\xdc\x59\xbe\x9f\xa4\x36\xeb\x5e\x7a\xcd\x0b\x7e\x4f\x84\xd0\x75\x16\x45\xc4\x12\x46\x87\x4d\xd5\xdb\x21\x04\xe9\x22\x5a\x2b\x92\x93\xe2\x8f\x65\x3d\xbe\xc7\x5e\xe3\x2c\x25\x95\xdb\x84\xe2\xdb\x7a\x79\xf0\x90\x44\xbd\x2e\x6e\x08\x70\x22\xf4\x15\x33\xf1\x00\xf8\x56\x63\x9c\xf4\x67\x31\xca\x7c\x03\xc2\x14\x49\x2e\xd6\x66\xa4\x5e\x41\x4d\xb5\x47\xc6\x35\x6a\xbf\x2e\xdf\x34\xe9\x7e\xc1\x37\xd3\x27\xeb\xdb\xe2\x9a\x73\x07\x4e\x21\xa5\x57\x2b\x2c\xbb\x14\x98\x97\x22\x9f\xdb\x83\xf2\x79\x5a\x33\x56\xc7\x32\x00\x1c\x5a\x5e\xd9\x49\x9e\x36\x8a\xe1\xbb\x1f\xf0\x77\xc5\xc4\xfb\x2c\xd1\x4a\x21\x83\xaf\x28\x45\x63\x2d\x75\x88\x33\x1e\xa8\x0f\xda\x41\x4e\x05\x27\xfd\x01\xb4\x00\x97\xb8\xcf\xb8\x9a\x59\x6b\xea\xb1\x1c\x14\x9b\x6e\x15\x2b\x95\x53\xa6\x4d\xfb\xf9\xae\x2e\x22\x05\x53\x85\xe7\x7d\xd1\x02\x34\xaf\xa7\xf7\x4d\x5b\x38\x45\x56\xe3\x10\xaa\x8b\x34\x23\x80\xd7\x32\x4b\x24\x49\xde\xb2\x9c\xbc\x16\xb1\x7a\xc3\xf1\xb4\x5a\x7e\xdc\x4a\x4d\xf4\x83\x39\x97\xd2\xee\x3a\x3f\x1d\x74\x47\x96\x39\x1f\x1e\xf4\xb8\x41\x92\xd9\xad\x42\x61\x89\x43\x1b\x85\xce\x2b\x0a\xe9\x28\x6f\x10\xc5\x97\x47\xee\x21\xf1\x28\x16\x13\x75\x31\xc5\x68\xbd\xbf\x8a\x96\x9b\x7c\xde\x88\xe9\x8f\x01\x57\xeb\xf8\xb9\x69\x75\x01\xa7\xc3\x19\xf5\x3c\xd7\xd7\xb5\x44\x45\xd3\x09\xe0\x8c\xa8\xac\x3c\x8d\xa9\x1c\x5a\x3d\x03\xd8\x4c\xa7\x17\xaf\x18\x83\xde\x46\xac\xb4\x79\xce\xd6\xd0\x34\x29\xf5\x3b\x7b\xe2\x0d\xf4\x87\xbf\x7e\xb0\x4b\x8e\x52\x9d\xb1\xea\xf8\xb1\x4b\xb5\xf1\x10\xca\xe6\x16\xf5\xd5\x76\x1c\x0c\x5e\x3f\x72\xf1\xac\x25\x2e\xeb\xd3\x14\x93\x26\xa5\x3a\x85\x6f\xf3\x90\x9a\xda\x74\x17\xc2\x5c\xc7\x8e\x75\xc9\x26\x09\x9e\xf8\x72\x86\x8c\x23\x8f\x8f\x53\xbc\xdc\x63\x44\xc8\x1c\xea\x48\xf3\xfd\x58\x41\xc1\xf1\xdd\xc3\xe9\xf9\x92\x34\x78\x90\x16\x56\xc1\x46\xa8\x8f\xf4\x23\x09\xb5\xc4\xe1\x99\x0b\x70\x22\x1a\xe8\x4f\x24\x3c\x42\xdd\x0c\xc5\x89\x34\xb9\xb6\x86\xd7\x38\xa7\xa6\x67\x00\xa7\x06\x19\x23\x30\x1a\x97\x32\xd9\x81\xba\x4d\x7a\xc1\xb0\x5e\x5f\x00\x9e\x5c\xb2\x09\x60\x35\xc8\xf2\x18\x0c\x57\xdc\x87\x5d\x14\x18\x8d\xd8\xed\x77\xaf\x58\x3a\xda\x77\xbe\xc2\x1a\x89\xd1\x32\xe4\x73\xaf\x8a\x65\xf9\x45\x8d\xcc\xd9\x5d\x6f\x3a\xfa\x3a\x28\x88\x62\x15\x86\x9c\xa8\x8e\xa1\x2d\x39\xdf\x46\xf5\xd3\x39\xe2\x2a\x5d\xfd\xf9\x7d\xf8\x9b\x39\x44\xf6\xae\xa9\x76\xa6\x60\x2c\xce\xa2\x2f\xd4\xf9\x4f\x4f\x1d\xe8\x16\xf0\xfe\x69\x55\x4e\x86\xd0\xc8\xb1\x94\xae\xc9\xf2\x89\x2f\x15\x5e\x67\x58\x69\x06\x1b\xd6\x72\x90\x4a\x71\x8f\x62\xea\xfa\x71\x29\x06\x79\xbb\x8f\x3b\xd4\x9e\xef\xe3\x08\x75\x85\xd7\x29\x82\x3a\x97\x63\xae\x85\x93\x16\x46\x89\x18\x2d\xb4\x3a\xe0\x5a\x59\x0c\xbd\xba\xae\x7b\x34\xde\xa0\xb9\x2a\x19\x9e\x8b\x92\x3d\x78\x57\x9a\xfc\x57\x76\x68\xdf\x4f\xcc\xd7\x3a\x02\xd0\x5a\x61\x3a\x4f\x1d\x41\x12\x14\x96\xe3\x6b\x31\xef\x38\x89\xc2\x56\x82\xb0\x01\xd1\xdc\x89\x6b\xb5\x1e\x03\x5e\x86\x3b\x6d\xec\x50\x27\x37\x9a\x11\x62\x74\x93\x5c\x12\x64\xd4\x14\x4e\x23\x8f\x76\x38\x40\xec\x62\x96\x05\x86\x86\x0c\xde\x55\x23\x1c\x08\x77\xa3\x4c\x7b\xed\x2c\x39\xdc\x44\x0b\xef\x53\x38\xb6\x05\x28\xde\x58\xce\x28\xe8\x0a\xcf\xc1\x48\xa1\xde\xc8\x47\x1d\x25\xa7\x61\x68\x7b\x8e\xb4\xf2\x3a\x6f\x77\x85\xfa\x86\x53\xe8\xb2\x48\x1d\x3d\x99\x11\x02\x03\x7a\xdc\x19\x2a\x75\x22\x79\x0e\xdd\xdd\x8c\x6d\xc5\x1a\xc9\xf0\x71\x8b\x19\xda\xdb\x01\x0b\x8f\xa1\x44\x0d\x28\xac\x4f\x2c\xb0\x57\x53\x88\x85\xbf\x2e\xb6\x96\x8a\x13\x9b\xfb\xc7\x91\xd8\xef\xb3\x9a\xe9\xbc\x90\x80\x33\xa5\xe5\x3b\xf6\x31\x77\x60\xd8\x5b\x97\x95\x11\x0a\x4b\xb1\xd2\xbb\x98\xe2\x9f\x6b\x52\x3e\xf5\xaf\xbe\x46\x8b\xa0\xf0\xab\x15\xa1\x9f\x2b\x6c\x1f\x1a\x43\x94\xd5\x38\x1a\x84\x4f\xa4\x67\xba\xcf\x1d\x72\x83\xb3\x1f\x7a\x3d\x16\x72\xfd\x60\x4a\xeb\x9a\xaa\xd1\x81\x0c\xa7\x5b\x70\x75\xb9\xd9\xe8\xa7\x85\xa8\x88\xad\x73\x77\x04\xf7\xd5\xab\x23\xf0\x94\x24\x50\xb0\x5d\x53\x8a\x98\xef\x45\xf2\xc1\x65\x43\x3d\xdf\x34\xf2\x89\x07\xd5\x75\x68\x8b\xc1\x50\x67\xb0\xd5\xb2\xf8\xec\xf1\xf0\x16\x19\x02\xf1\x1d\xe6\x07\x9d\x3c\x78\xef\xf7\xfd\x9b\x12\xa7\x2f\x35\x1d\x31\x44\xd0\x16\x18\x63\xa6\xb4\x5e\x18\xdc\x8c\x7f\x38\x8a\x84\x55\x2c\x3f\xb1\x37\x7d\x7b\x36\xdc\xba\xdf\x89\x77\x86\xa2\xe6\xbe\xae\xeb\x74\xc8\x7a\x09\x20\x27\xa9\x50\x19\xa5\x9a\x35\xce\x20\xba\xcc\xa8\xfb\x24\x07\x2c\x3b\x62\xd6\x14\x27\x06\x61\x11\x62\x66\x2e\x69\x34\xf3\xe4\xb3\x5d\x1a\xa6\x25\x76\xb6\xb3\xf4\xa9\x6b\x4a\x82\x37\x27\x4d\x65\x23\x89\xf4\x00\x20\x78\xaa\x11\xb3\x2c\x14\xa1\x16\x3a\x0e\xe2\xf6\xd8\xc5\xb8\xe2\x39\x67\xc0\x72\x22\x73\x44\x0f\x90\xa0\x1b\x4e\x59\x64\x31\x95\xeb\x24\x7c\xeb\x2c\xf1\xe2\x33\x1f\x25\xa2\x28\xd2\x3f\x69\x4e\xdc\x1e\x1f\xb9\xcf\x02\x6c\x39\xd7\xd1\xeb\x73\xac\x86\x1e\x70\x9f\xec\xc6\x22\xab\xdf\x98\x8e\x5e\x2f\x8d\x00\x52\x78\x0a\x90\x21\xc4\xdb\x38\x46\x4e\xbd\x0f\xf8\x2b\x9b\x9c\x5e\x3e\xb5\xd7\x83\x5e\x94\xb1\xe3\x45\x30\xd4\x51\xb1\xca\xa6\xf5\xdc\x4c\x2d\x51\xdb\xa8\x34\xf5\x74\xea\xed\x5b\x81\x8c\xbc\x6e\xb0\xf8\xf4\x10\x41\x24\x61\x48\xb8\xda\x75\x06\x76\x0e\x8e\x5b\xb2\xa1\xb6\x36\xe5\x90\x6a\xa5\x43\xf3\x5d\x13\x8b\x62\x6c\x58\x0f\x71\x79\x87\xc3\x14\xeb\x87\xc6\xfa\x90\xf7\xdd\x91\xf0\x61\xba\x89\x38\x1f\x62\x5c\x5f\xb1\x3c\xf4\x9f\xe9\x76\x2b\x88\xec\x59\x79\x15\x84\xd5\xb8\x53\x54\x8b\xd4\xc4\xe9\xcd\xca\xee\xc8\x60\xc9\x36\x9b\x2c\xf3\xca\xd4\x0c\x81\xc3\x9a\x1b\xcb\x65\x45\xc5\x28\x62\xcb\x26\x87\x51\x42\x63\xca\x37\xd3\x43\x42\xef\x02\x52\x42\x99\xf1\x53\x93\xf9\x71\x7f\xd0\xe0\xa5\xa0\xbe\xab\x4c\xbe\xc0\x47\x94\x01\x2f\x0f\x3e\x60\xb6\x14\xfd\x4f\x29\xca\xae\x6a\xc1\x2b\xf3\x49\x63\xc0\x6f\x42\x5b\xc9\x9d\x51\x80\x2d\xcd\xe9\x8c\x00\x86\x13\x3d\x5b\x92\xfb\x2c\xf9\xa3\x63\xc4\x8f\x13\x42\xf3\xa4\x50\x33\x69\xa4\x1a\xe8\xbc\x7c\x74\x51\xcc\xed\xc9\x0e\xe2\x33\xf1\xba\xee\xa4\x63\xd8\xe7\x14\x3e\x63\xdb\x54\xa6\x2d\x61\x20\xbe\xc6\xf4\xbb\xb8\xb7\x46\xdd\x4b\xf7\xd1\xb5\x4e\xd4\xf1\x55\x10\xa4\x34\xad\xef\x0e\x52\xc4\x7a\x7a\xa7\x44\x41\x15\x7a\x9d\xc4\x63\x1c\xc9\xf5\xa6\x90\xe1\x4d\x57\x28\xc7\xb3\xeb\xb1\x7f\x1d\x3c\x9d\x32\xca\x75\x4f\xfb\xf4\x5e\x73\x77\xc4\x28\x2b\xa0\xa8\x6e\x8b\x76\x82\xdd\xe9\x64\x68\x53\x0a\x83\xf9\xd9\x82\x5c\x49\xc3\x37\xac\xcf\xb0\x48\x24\x16\xb4\x2f\x05\x2c\x17\x2f\x4a\xb2\x6b\x6e\xa3\x01\xd7\x0a\x8d\x13\xc9\xfd\xd9\xc0\x35\x1a\x67\xaa\x6d\xac\xf9\x5b\xb3\x66\x89\xca\x86\x5a\x64\x2e\x96\xdd\xf1\x92\xc4\x93\x44\x6d\x45\xe3\x2e\x75\x2b\xaf\x96\x42\xc7\x38\x5a\x07\x8b\x18\x79\x88\xee\x5c\x45\x08\x60\x23\xef\xb2\xa7\xf1\x48\xcf\x6a\x2b\xfd\xf1\xdd\xf4\xe8\xc5\xfb\x76\x8c\xb7\x66\x1f\x8c\xcd\xed\x2c\x86\x5d\x00\xb1\x7c\x5d\xa7\x29\x3f\x1e\xc7\x81\x1a\x89\xad\x87\x18\xd8\x5c\xf9\x7a\x77\xbf\x06\x49\x20\xb1\xa6\x45\xaf\x51\xe2\xed\x00\x8c\x07\xdd\x3b\x31\x8f\xce\xf8\x08\x54\xcc\x54\xd5\x7d\xbf\xdc\xf7\x52\x4a\x58\x2f\x15\xe6\x8b\xb4\xaa\x5e\x4e\xca\xe2\x52\xfa\xc1\xa7\x60\x77\x08\x27\xa2\xef\x19\x8f\xe1\xaa\xd4\x19\x0e\x59\xbe\x36\xff\xde\xa7\x5b\x69\x2c\x19\x64\xe0\xf7\x23\xb6\x3e\xb8\xf8\xbb\x2e\xc9\x5c\x10\x79\x48\xdf\xe9\x61\x3b\x74\x8a\x14\x17\x6d\x8a\x8c\x71\x6a\xf3\xc7\xd6\x06\xad\xd0\x3f\x18\x89\x19\x9f\x95\x6e\xfd\x31\xc3\xeb\x63\x82\x7d\x6c\x0e\x9c\xc7\x3c\x0b\x2f\xb5\x96\xe1\xce\x9d\xc9\x25\x49\xd5\xd4\xcf\xf8\xbd\x25\x9a\xd0\xdc\xe2\x73\x92\x29\x5d\xd7\xe0\xa5\x7e\x4a\xd3\xee\xd2\x20\x1b\x1a\x12\xda\x5c\x32\x65\x0b\xf9\x5a\x86\xee\x96\xcd\x97\x19\xb7\xf6\xad\x5b\xcf\xd5\x52\x3c\x60\x94\xd6\xa1\xab\x29\x7a\x44\xd4\x73\xad\x0d\x3a\x91\x68\x3c\x94\x9c\xb6\x42\xf4\xad\x9e\x52\xcb\xb1\xe8\xbe\x11\x76\xed\x2e\x85\x5d\x79\x3e\x3f\xf0\xe4\x1e\x19\xaa\x0d\x95\xbd\x07\x73\xb8\x4a\xe9\x55\x20\xab\x42\xf2\x6c\xb4\xf8\x52\x50\xfc\x65\xb6\x62\x4f\x84\x7c\xef\x4e\x72\x15\x2d\x3c\x55\x0b\xa8\xe1\x72\x59\xc4\xb6\xa6\x5b\xd6\x77\xb9\x66\x44\xf2\x26\x6f\x86\x55\x6a\x14\xbb\xb0\x73\x5d\x67\x0d\x7b\x60\xda\x67\x8a\xd8\x0a\x07\xda\x56\x22\x04\x93\x61\xcf\x20\x22\xed\x6a\xd1\x89\x5b\xa6\x8a\x9e\xcd\xa5\x45\x94\x26\x53\xcf\x7e\xc2\x03\xd6\x18\xaa\x09\x22\x3d\xcb\x8a\xef\x63\x72\xdd\x15\x2d\xa4\xdb\x3b\x5b\xd3\xab\xaa\x4f\x29\x21\x82\x61\x4f\x89\x6f\x90\x13\x99\xae\x4b\x9b\x66\xa4\x51\xee\xd9\x3d\xd2\xd6\x9c\x73\x96\x67\xe1\x49\x7e\x6e\xa4\x89\xd2\xc0\x0d\xb4\xaa\x12\x12\xb5\xa4\xcf\xb0\xba\x7d\xff\x75\x6e\x4a\x25\x36\x54\xba\xa2\x19\x04\xa0\x43\xa5\xc2\x3a\x3c\x36\xe9\x70\x05\xdc\x0d\x6d\x59\xe7\xc1\x23\x1a\x0b\x5c\x6a\x82\xbe\x8d\xe7\x8e\x1b\x1c\xc4\xc2\xb6\x79\x56\xb9\x54\xe1\x34\xaa\x17\xb4\x79\xcb\x5a\xfc\x08\x26\x1d\x7c\xc8\x7a\xea\x57\x0e\x87\x5a\x91\xe4\x2f\x58\x40\x3e\x6b\xce\x18\xfe\x48\x3b\x42\xed\xd4\x3a\xdf\x8d\xeb\x8a\x76\xce\xd6\xb1\xa2\x6d\xbb\x29\xed\xba\xa9\xc9\x6f\x2d\xcd\x23\x25\x7d\xda\x21\xaf\xe3\xae\x75\x1c\x1c\x1f\xaf\x2f\x84\x46\x86\xd3\xa5\x68\x93\x60\x4b\xdc\x9b\xb9\xae\xe3\x00\x1d\xf4\x7c\x9e\xf7\xed\x7d\xd6\x49\x65\xb7\xdb\xe6\x6a\x25\x9b\xb9\x44\xec\x68\x03\x53\x2c\x37\xb2\xf1\xc4\xda\xde\x59\xde\x62\xb0\x15\x66\x25\x35\xdc\xf9\x1a\x78\xd9\xd7\xf7\xde\xd5\x58\x74\x9d\x5a\xca\x40\x73\x82\x24\x50\x02\xdc\xd4\x3b\x30\x5d\x1d\x65\x09\x61\x55\x35\x16\x51\x8d\x49\x9e\x0a\x2a\xe2\x2d\x22\xbe\x68\x1f\x45\xfd\x46\x75\x4c\xad\x98\xd9\x1f\xd2\x1a\x5c\x3b\x14\x0c\xeb\x5d\x43\x84\xf9\x5c\x85\x7c\x2c\x21\x8b\xaa\x5f\x4c\xa6\xc1\x72\x72\xe0\x60\xc6\xd8\xee\x24\x0f\x32\x8c\x44\xc6\x1d\xb1\x2a\xdd\x9b\xb5\xd1\x7d\xa3\xa5\x32\x7d\x33\x6b\x94\xe7\x29\x98\x81\xd7\x8f\x42\x2b\x54\xd0\xb3\x39\xd7\x9c\xf7\xf6\xb9\xef\x0c\x71\xfd\x71\x40\xb2\x94\x86\x39\x47\xd9\x84\x0d\xc0\xd9\xa1\xe3\xb2\x20\xd5\x13\x0b\x45\x60\x0e\x4a\x51\x28\x2c\xb1\xc8\xdf\x14\x7f\x1c\xd0\x62\x04\x7a\xa6\xa4\x13\x6b\xae\x47\x2c\x25\xea\x49\xe9\x5b\x9e\x95\x9d\xae\x0f\x62\x82\xe5\xfb\x00\x94\xf7\x18\x51\x1f\xaa\x16\x57\x4c\x35\x6e\x4f\x13\xb3\xbe\x7f\xe7\xfe\x7a\xfb\x3d\xfb\x3c\xe3\x81\x25\x62\x04\xc8\x4b\x6e\xd4\x25\x9c\x57\xc4\x35\x1c\x64\xe4\x4f\x8d\xf3\x81\x6a\xd0\x77\x4b\x1d\x9e\x33\x24\x0c\x51\x58\xd4\xbf\x8f\xde\x98\x3a\x66\xe8\xb4\x1f\x06\x5b\x5e\xdd\xf8\x1c\xa4\x41\xf3\x80\xf1\xd4\x21\x2b\x06\x53\xf9\xd1\xa9\xa7\x2f\x45\x49\x1b\x17\xb6\xdf\xc5\xe4\x94\x9a\x5f\xc3\xc3\x8e\x40\xcf\xdb\x8f\x98\xd5\x54\x60\x47\xad\x3a\x7c\x89\x59\x67\xc4\x91\x8c\xa7\x1b\xc2\xc1\x71\x23\x22\xd6\x08\x2b\x09\x28\x73\xe9\x4e\x08\x1f\xe0\x72\x64\x49\xb3\xd5\x43\xfa\x01\xde\x9b\xab\x7f\x0c\x94\x08\xb7\x2b\xb8\x62\x37\x42\xdd\x81\x9e\xc1\x57\x6a\x46\xc2\x19\xb8\xdc\x3a\x58\x7a\xc5\x16\xca\x8a\xa1\x89\x48\x20\x20\x4c\x0a\xaa\x0f\x1e\xa6\x93\x4e\x96\x08\x50\x6d\x59\x45\xc3\x88\xe3\xb5\x66\x53\x3e\xb9\x71\x98\x42\xd2\xca\x72\x08\xaa\xbf\xa0\x9d\x8a\xe8\x24\xcd\xb4\x19\xd9\xd1\x73\xd8\xf2\x52\xcd\x4a\x7f\x99\x0a\x14\x14\x12\xdb\xca\x67\x10\xde\x71\x99\xe4\x84\x0c\xc5\xa0\x75\x8f\x22\x60\xd7\x44\xa3\x06\xe2\x18\x93\xd0\x4d\x54\x5f\x96\xb1\xcb\x94\x16\x95\xab\x6e\x13\x7f\xd2\x6c\x17\xd5\x1b\x39\x74\xf5\x59\xc4\x1e\x67\xdc\xf4\xb0\xff\x26\x6c\x36\x28\x79\x67\xc1\x92\xe0\xc4\xa6\x64\x17\xf7\x64\x59\x86\x47\x67\xe2\x9b\xec\xc0\x24\x65\x69\x1e\x9c\xcf\x1d\x6e\x09\x2f\x4f\x0d\xc7\xbe\xcd\xb7\x82\xba\xa3\x6d\xdb\x0b\x83\x4e\x9f\x0a\x85\xfe\x06\x97\x98\x82\x9a\x29\xbf\xe7\x3b\xee\xa7\xf7\xf5\x33\xff\x93\xaf\x39\x85\x51\x6b\x41\x28\x4f\xd5\x1c\x48\x92\x4d\xde\x38\xe8\x7c\xbb\x74\xcc\x03\xe4\x70\x14\x76\x6e\x97\x08\x86\x84\xe5\x8e\xf2\xca\x5f\x16\x5b\x27\x08\xc0\x4f\x63\xf1\xee\x09\x99\xd8\xfb\x34\x55\x98\xa6\x39\x41\x99\x55\x95\x4a\x27\x4b\x31\xcd\x0a\xdd\x46\x0c\x2a\x07\xc3\x0d\x06\xa3\x24\x92\xe5\x40\x3f\x49\xe6\xc4\x6f\xae\x96\xc1\x7b\xa0\x7e\xab\xd9\x1a\x4d\x56\xc6\x6d\x50\x57\x37\xc8\x48\x75\xaa\xb3\x94\x0c\xa0\xfb\x72\x1c\x15\x5b\xd7\x5f\xaf\x2e\xd0\x3a\x21\xac\xa0\x9d\x07\xe8\x1a\x4e\x0e\x1a\x7c\x63\x6a\x74\xed\x7e\x32\xad\xcb\xef\x7f\xf5\x89\x5e\x7b\xec\x14\x41\x4c\x99\x13\xae\xec\x12\xc3\xb2\xc5\x8a\x6e\xde\x91\x10\x9a\x9c\xf1\x87\x4b\x4f\x19\x8e\x25\x55\x2f\xe0\x22\x24\x60\xe8\xf9\x3a\x77\xb6\xa5\x77\xab\x5a\x4d\x70\x4f\x82\x12\x2d\xa8\xa3\x98\x63\xac\x35\xb4\xd1\xe8\xc8\xfd\x5e\xcc\x37\x87\x9f\x30\x84\x0f\x29\xeb\xb2\x43\xd2\x32\x24\xd1\x4b\x99\x12\xf1\xc7\x82\x99\xf8\x75\x63\x05\xb2\x57\xb4\xce\xec\xea\x7e\xc3\x97\xf8\x42\x9d\x97\xa5\x28\x74\xcc\x9a\xc3\x6b\xdf\x6c\x94\x15\xdc\xda\x42\xef\x64\xf8\x16\x98\x1e\x32\xc1\xb7\x83\x5d\xc3\xde\xf5\xd3\xa2\x1b\x0e\xc9\x28\xbd\xd6\x34\x51\x0e\xd8\x12\x4c\x48\xc7\xdb\xf5\x6c\x79\xd1\x4e\x07\xc3\x83\xac\xfe\x3e\xbb\xe8\xdc\x21\x0f\xbb\xd4\xb9\x05\xf5\x70\xe9\x90\xbb\x5f\xb2\x8d\xbd\xbe\xe7\x91\x04\xd5\xeb\xbd\x3e\xbc\x32\x55\xea\x64\x68\x3a\xce\x37\xa3\x75\x50\xf1\xb4\x29\x20\x11\x3e\xda\x22\x4d\xcd\x42\xd3\xc6\x7d\x3b\x5f\x2f\x64\x2d\x52\x27\x84\x5f\xfe\x6a\x50\xf9\xfb\x7d\xaf\xaa\x1e\x77\x3a\xad\x6e\x8b\x77\xc0\x35\x92\x31\x2b\xdd\x4e\x17\xad\x43\x56\x08\x75\xa6\x84\x53\x6c\x6d\x55\x2f\xdb\xf9\x5f\xc4\x51\xcf\x3d\xc4\x44\x90\x44\xba\xcc\x61\x21\x15\xb1\x34\x78\x3f\xed\x2d\x3b\xd3\x97\xc2\xb5\xe0\x3c\x87\xc2\xd8\x93\x2d\x54\xc3\x10\x71\x10\x6e\x1a\xce\x4a\x83\x36\x91\x4e\xf7\x2c\x0b\xe0\x12\xb5\xea\x61\xfa\x16\x93\x90\x74\x2a\xea\x9c\x6e\xc0\xf7\xa9\x96\x32\x95\xbe\xb6\x43\x31\x46\x5d\xb0\xf7\xe2\x4c\x85\x2d\xe1\x54\x69\x91\x47\xac\x71\x67\x6f\x76\xac\x13\x83\x54\xe3\x39\x16\x32\x12\x8c\xe5\x48\x3e\xc1\x16\xca\x8f\xc5\xe4\xa7\xcf\x5a\x19\xbc\x0d\x03\x4a\xab\xa8\xba\xba\x02\xdf\x7c\x75\xaa\x00\xdd\x3e\x31\xc6\xc4\xe9\x60\x47\xb0\x3c\x01\xcd\x7a\x23\x8d\xd2\x4b\x99\x68\x75\x32\x5c\x1f\x12\xa1\x53\x7e\x95\x95\x19\x39\x26\xd6\x9c\xee\x5d\x61\xa2\xea\x0b\xf8\x7b\x3f\x3a\x46\xc6\x2b\x5b\xa1\x3c\x65\x1e\xa2\xa8\x06\x7d\xa7\xbc\x07\x8b\x6d\xc1\xb3\x63\x94\xbc\xf0\x31\x6d\x58\x7c\x7d\x6a\x6e\x84\xb7\xda\xdb\x91\xba\x9a\x1c\x58\x32\x0f\xbd\x1a\x42\x54\xc7\xd5\xab\x9d\x33\x81\x19\x62\x13\xe5\x7a\x80\x21\xeb\x35\x3d\xca\x9b\x47\x1b\x60\x90\xa9\x2f\xa3\x23\x10\xd5\x27\x14\x71\x29\x4b\xf6\x09\x0a\x31\x20\xfc\x0e\x42\x9e\x53\x03\x30\x98\xf4\x92\xac\x3f\x27\x40\x8a\x94\x4f\x0d\xd0\xe1\xe4\x18\xef\x52\xd6\xe9\x66\x94\x5e\xb8\xba\x5f\x2f\x91\xd1\x02\xbb\xc9\x20\x4f\x0f\xb1\x39\x9a\x41\x00\xbf\xcc\x2b\x31\xf7\x3d\x4e\xd1\x4e\x46\xb8\xe8\x83\x9a\xc3\xcf\x13\x84\xdb\x92\x24\x38\xf8\x67\x51\xb7\x64\x33\x9c\xca\x2e\x97\x72\x02\xc7\x24\x19\x53\x51\xc7\x3e\xcc\x54\x72\xb8\x44\x06\x5d\x39\x2d\x85\x47\x44\x57\xa7\x24\x68\x9f\x2a\x3a\x20\x36\x79\xa7\x71\xcf\x26\xd8\xef\xbb\x64\xee\xa0\xe0\x3c\x70\x51\xcc\x90\xd7\x05\x68\xfb\x6b\x32\x0d\xa7\xa0\xef\xdd\x59\x9a\x61\xdc\xc3\x8d\x3a\x05\x93\x37\x24\x47\x79\x9a\xeb\xf6\xd0\x17\x46\x9a\x60\x84\x87\xf2\x6c\x17\x5b\x76\x7c\x65\x21\x11\x09\xcf\xeb\xa1\x03\x3d\x0e\x5b\x7b\x55\x50\xf7\x3a\xd1\xf1\x8e\x67\x9e\x8e\x05\x1d\x5f\x19\x4a\xbb\xf8\x95\x94\x70\x87\x2a\x6a\x99\x40\x46\x39\xd0\xf2\xdc\xe3\xc9\xcc\xc7\xc9\x8e\x4f\xbc\xb8\x3b\x5b\xee\x80\xd2\x04\xd4\xa4\xff\x8c\xb6\x24\x59\x79\xdd\x89\xa9\x27\x1a\x30\x7c\x59\xc4\x15\x2e\xfc\x2b\x90\x4d\x81\x70\x75\x19\x6f\x17\x54\x56\xd7\x9e\x20\xf2\xcb\x6f\xa2\xf0\xe2\x3c\x7c\x98\x83\x79\x19\x29\x91\xed\xe2\x5e\x68\xa7\x3c\xc7\x00\xc9\xc5\x5c\x0f\x0f\x1a\x09\xca\x01\xc5\xe8\x96\xce\x09\x06\x6b\x43\x71\x5c\xf3\x7d\x41\xf4\x43\x8a\x64\x1e\x46\x4b\x91\x21\x03\x0a\x1a\x19\x70\x12\x71\xca\xa6\x0f\xab\xad\xaf\x42\x2d\x72\x40\x1e\x3c\xe0\x1a\xf9\x47\x0a\x87\x64\x99\x05\x24\x12\x92\x4a\x3c\x69\x93\x91\x9a\xd0\xa9\x8c\xd0\xf9\xd1\xcf\x62\xc6\xbe\xa6\xa5\xf6\xa9\x93\xd9\x6e\xa4\x7d\x5c\x25\x62\xcd\x8f\x28\xa6\xf8\x3a\x5f\x33\xe9\xd5\x13\x7f\x8f\xe3\xa6\xe8\x58\xcb\xeb\x7b\xcd\x2a\x9f\x7b\x1b\xb7\x10\xb2\x01\xf1\xee\x5d\x57\x80\xb2\x26\x11\xb6\x4d\x6c\xc2\x61\x4b\x4a\x19\x5e\x32\xc7\x36\x26\xd1\xb7\x3f\x53\xd5\x56\x29\x02\x95\x8d\x4a\x15\x17\xbf\x8d\x86\x77\x7e\x38\xb3\xba\x7c\xc0\x45\x03\x51\xc6\x60\xd1\x58\x26\xcb\xb0\xce\xe8\x64\x86\x49\x3a\x0a\x0f\x38\x38\xe9\x5b\xbd\xe1\x51\x5f\xc0\x70\x58\x47\x8c\x19\x0e\x11\xa6\x44\xcc\xc7\x63\x3d\xa9\x98\x84\x6c\xd3\x70\x8d\xa6\xfa\x09\x8d\x31\x74\xa6\x6f\xc8\x49\x7d\xb0\x67\xed\x47\xb5\xec\x61\xb2\x79\x57\x07\x15\x94\xc7\x41\x21\x19\xa4\xbe\xc0\xce\x96\x26\x5e\xa2\x27\x14\x58\xf2\xe6\xcc\xf2\x68\x21\x15\x71\x9b\x4b\x0c\x65\xb4\x12\x00\x2d\xf7\xb4\xee\x0a\x4e\x30\x37\x97\x3c\xed\x5f\x45\xa8\x9f\xd6\x20\xe4\xb5\xd0\xe6\x7c\x9f\xac\x0d\xac\xe2\x53\x73\xf1\x94\xea\x2f\xd3\xd5\x2e\x1f\x41\x73\x46\x9f\x0c\x9f\x4a\xcb\xec\x10\x90\x8e\x87\x11\x2c\x99\x79\x72\x30\xdd\xf1\x1c\x65\x0c\x5a\xb6\x56\x11\x94\x33\xd1\x19\xb7\x31\x25\x4f\x19\x6a\x07\x37\x18\x0a\xe4\x7b\x4b\x62\x75\x79\x10\x7c\xb1\x46\xfc\x29\x5d\x25\x1c\xb4\xfc\xea\xd8\x2d\x8f\x9c\x37\xcf\x82\x31\x19\x0b\x98\x69\xa3\x8f\x86\xbe\xe8\x0a\x1f\x99\xeb\x6c\xb9\x07\xc8\xc5\x4d\xe6\x81\x7a\x65\x2e\xe2\x79\x1f\xc2\x51\x45\x96\x84\x3f\x70\x19\xba\xa6\xc9\xc8\xb8\x9d\x31\xb9\x76\x47\x8e\xf9\x4a\x82\x96\x29\xb6\x80\x67\xdd\xd0\x7d\xbe\x26\xa6\xb3\x3d\xef\x0f\x87\xd3\x4c\xbe\x26\x8f\xca\x8d\xe6\x46\xdb\x41\xa3\xeb\xfa\x7a\xdf\xed\x04\xbd\xeb\x39\x1c\x11\x6f\xf6\xbd\xbd\x35\x86\x3e\xfd\xf4\x18\xee\x90\x2c\x84\x9b\x6a\x7d\xe4\xd9\x37\xb3\x7a\xea\x69\x06\x96\x44\xfa\x34\x67\x26\x1f\x3f\xe4\xaf\x4b\x22\xa2\xdb\xe7\xdc\x51\xef\xa9\x3c\x9b\xf2\x4b\x62\x57\x67\xe3\xbb\x4d\xff\xfa\xa4\x7d\x11\x79\x1e\x6f\x23\x94\x7a\x47\x98\x5a\x4b\x41\x32\xa8\x67\xa7\xcb\xb2\xf3\x3d\x97\xeb\x61\x96\xda\x56\xdc\xae\xef\x4a\x7a\xf1\x9c\x41\x93\xe3\x59\x14\xa3\xc4\x0f\x9f\xe3\x08\xf0\xa5\x53\xcb\x05\x31\xb8\x55\x14\x6b\x2d\xbc\xda\xc0\x61\x03\x56\x46\x17\xad\x1d\x51\x5d\xfd\xc7\x56\x71\xc3\x70\x77\xb2\x02\x96\x8e\x9c\xd1\x38\xba\xb5\x00\x9f\xeb\xf2\xe3\x7a\x35\x94\xa2\x5a\xc9\x77\x2c\x8c\x81\x3e\x1a\x8f\x9b\x14\x7e\xa2\x63\xe0\x74\x97\xc9\x0b\xa2\x46\x8e\xe3\xa3\xa5\x45\x3d\xc9\xa2\xf3\xa4\xc4\x82\x74\x2d\xed\x72\x21\xb1\x4f\xfd\xc7\x75\x7b\x93\xbb\xef\x1e\x36\xab\x44\x90\x5a\x43\x27\x4f\xdb\xbd\x04\x3b\x0b\x45\x61\x4b\x92\xb0\xb5\x1f\xbd\x0c\xd5\xba\x87\x53\xda\x35\xf6\x52\xe0\x3f\xf3\xdc\x46\x4c\x60\x5b\xee\x0a\x85\x6a\xe6\x65\x6a\x7d\x15\x4f\x08\x0d\x37\x6f\x43\xee\x41\xbb\xf2\xe9\xaa\xe9\x6e\x38\x4e\xd6\x7b\xb6\x0c\x5f\xb2\x85\xd7\x7a\x62\x84\xc5\x94\x7b\xaa\xd4\x06\x35\x9f\x57\xfe\xec\xe7\x10\x18\x23\xc1\x4a\x8d\xf0\xcc\xcb\xf7\x24\x5a\xe6\xbc\x12\x3a\x55\xb9\x3b\x6c\x62\x06\x5d\x34\x0b\x8b\x51\x1d\xd7\x33\x74\x47\x42\x8d\xac\xf5\xe7\xdc\x4c\xa1\x2e\x81\x5f\x56\xef\xf6\xf4\xda\x00\xe8\x98\xc9\x30\xc1\x30\x3e\x78\x41\x9d\x7d\x01\x3a\xe8\x70\x71\xac\xeb\x5e\x4a\x4b\xbb\x4c\xd7\xa2\x10\x36\xa8\x8e\x8c\x4d\x10\x0d\x8a\xe8\x5d\x9c\xea\xbe\x55\x39\x6d\x91\xc7\x9f\x49\x1d\xd7\x80\x78\x9f\x22\x29\xaf\x01\xef\x59\x0b\x01\x18\x20\x7f\xd7\x5c\xf1\x7a\x48\x73\x42\x7e\x43\xe9\x64\x75\xd0\xc4\x96\xcd\xf7\x1d\x40\x26\x6a\x79\x9e\x98\x81\x6c\xc4\x48\x50\x37\x09\x0e\x5e\x4e\xb4\xd7\x99\x59\x1b\xaa\xa9\x4e\x7f\x45\xd1\x01\x54\x58\x5c\x9e\x53\xa6\xbf\xe6\x47\xbe\x1f\x46\x5d\x1e\xf7\x19\xda\x5b\xa1\x73\xb8\x71\x63\x6c\x9b\x5b\x97\x88\xf2\x90\x4a\x31\x67\x6c\x65\x92\xc9\x3f\x73\x31\xcc\xc7\x9b\x8b\x0e\x1e\x0f\x3e\x47\xcb\xef\xf1\x3a\x1e\x0a\x23\x5a\x17\x2b\x28\x42\xe5\xd2\xb8\xa9\xdf\x02\x0f\x63\x57\x0f\x19\x1c\x37\xa2\x1e\x51\x65\x9a\x84\x40\x56\x65\x31\x9f\x50\x6f\x49\xed\xe0\xe5\xe4\xdc\x44\x9e\x3d\x6c\x69\x8b\x81\xfd\x2e\xd9\xb8\x18\x94\xeb\x07\x3b\x66\x96\x18\x36\x43\x4d\x07\x04\x63\x95\xd1\x36\xfe\xb8\x69\xf8\x3c\xae\xe3\x1b\xcb\x0e\x6d\xc2\xc5\x76\x96\xa9\xf3\xf4\x2a\x08\xa9\xfb\x88\x6e\xa6\xed\xd5\x4a\xbd\xf6\x16\x22\x39\xe1\x80\x74\xff\xdf\xff\x37\xf8\xe7\x6f\x7f\x80\x79\x39\x1d\xe5\xf6\xe7\x6f\xbf\xfd\x26\x57\x3f\xcf\x7c\xfe\x6c\x65\x5a\xfc\x1c\x4d\xbb\xff\x8c\xe5\xbe\xa7\x75\xf9\x8f\x9f\x24\xdd\x8a\xf9\xfd\xc9\x86\x39\xef\xcb\xe2\xd7\xaa\xdf\x7f\xfe\xc8\x36\xf0\xcf\xbf\xbf\x7f\xfb\xed\x5f\x0b\xda\xfd\x27\xfd\x09\x19\xe1\xe7\x3f\xc3\x32\xfb\x61\x96\x65\x68\xf3\xf4\x68\xe7\xe9\x47\x68\xb7\xf2\x9b\x0e\xc3\x7f\xfd\x64\xe9\x5e\x16\x3f\xf3\xf4\xb3\xec\xe5\x59\xcc\xff\x4f\x96\x3e\xe5\xde\xa6\xd3\xcf\x98\xe6\x4d\x3b\x95\x3f\x43\x99\x6e\x53\x3b\xd5\xff\x3b\x84\xf7\x37\xa0\x74\xda\x7f\x85\xdf\x7e\xb6\x72\x3d\xcb\xfd\xf8\x15\xf2\x2a\xb7\xe7\x67\x6f\xc7\x76\x48\xb7\x9f\x63\xfe\xf7\xd4\xfe\x33\xa6\x7d\x3b\xd5\x3f\xc7\x36\x9f\xd9\x50\xee\xbf\xff\xed\x49\x98\xb7\x9f\x71\xde\xca\x9f\x76\xaa\xe6\x6d\xfc\x0b\xdf\x3f\x7e\xf2\xa6\xcc\xfb\x9f\x3f\xd2\x9f\x66\x2b\xab\xff\xfe\x8f\xe6\x38\x96\xfd\x9f\x20\x58\xb7\xc7\xef\x7d\xd9\x4e\x4b\x75\xee\x79\xf3\xfb\x54\x1e\xa0\x36\x7f\xf9\x72\x00\xdf\xbf\x28\xff\xc7\x9f\x7f\x53\xff\x03\x4c\xff\xfc\xf9\xcf\xff\xd3\x5d\xff\xf5\x17\x92\xbf\xe1\xb8\xf3\xb6\x3d\x3f\xd5\xbc\xfd\x1c\xcd\x2f\x4c\xf9\x3c\x5d\xe5\xd4\x96\x53\x5e\xfe\xe3\x27\x3b\x8f\x7f\xfe\xfc\xef\x54\xff\xd1\x6c\x7f\xfe\xf6\xc7\xb2\x95\x7f\xfe\x2b\xeb\xff\xfc\xb7\x3c\xfb\x52\xa6\xfd\xfe\x2b\x03\xcf\x7c\xfe\xe3\xe7\x57\xc2\xf2\x66\xde\xcb\xe9\x67\x9e\xca\xfd\xf7\x9f\x78\x3e\x7f\x9a\xf4\x2a\x7f\xb2\xb2\x9c\x7e\xb6\xb4\xfd\x25\xc4\xb9\xfc\x54\xdb\x3c\xfe\x64\xdb\x79\xa4\x43\x7b\x3c\xff\xf8\xe5\xa0\x6f\x87\xe1\x2f\x3c\x7f\x9b\xf7\x9f\x6f\x33\xff\x8c\xe7\x70\xb4\xcb\xf0\xfc\xe3\x27\x9d\x8a\x9f\x74\xfb\x25\x55\xdd\xce\xd3\xef\x3f\xde\xfc\x77\xc1\x94\x53\xf1\xff\x15\xcb\x5f\x2a\xd5\x73\xf1\x53\xff\x0a\xf9\xab\xb0\x7e\xf9\xab\xdb\xea\xf8\x99\xab\xbf\xc7\xe7\xaf\xad\x7f\x0f\x7e\xe9\x58\xcf\x73\xf1\x2f\x8d\xf8\xfb\x28\xb7\xb1\x9d\xd2\x63\xde\xf6\x7f\xfe\xff\x2c\xfa\x37\xfd\x5f\xb3\x4b\x39\xb5\xfb\xaf\xf9\xf2\x6a\x87\xdf\xff\x87\x69\x6f\xe6\xf9\xd8\x7f\xf6\xb2\x2c\xf6\xbf\x81\x8f\x69\x5f\xee\x3f\x53\xf9\xfd\x19\xda\xaa\xfc\xdb\xb6\xcc\xed\x3e\x4f\xfb\x5f\xb0\xca\x74\x3b\x9a\x9f\x6f\x7b\x34\x3f\xe9\xcf\x32\xa4\xf5\x59\xfe\x42\x3c\x96\xd3\x3f\x7e\xd2\xfd\x67\x9e\xf2\xf2\xa7\x3d\x7e\xbe\xe9\xfe\xfb\x0f\x7b\x1e\xff\xa6\xf2\xef\x48\x45\x99\x1e\xcd\xbf\xbc\x9e\x5b\x5b\xb5\xe5\xff\x74\xfb\x2f\xea\x55\x3b\xfc\xfd\xe3\x5f\xf9\xfd\xfd\x47\x9c\x7f\xd5\xc0\xaf\x98\x53\xf1\x57\xfa\xff\xaf\xbf\x49\xfe\x01\xfe\x25\xf5\x5f\xaa\xff\xf6\xdb\x1f\x60\x36\x17\xcf\x2f\x6b\x73\x8c\xc3\x9f\xbf\xfd\xbf\x01\x00\x00\xff\xff\x74\x75\xf2\x56\x27\x01\x01\x00") + +func assetsMessageTxtBytes() ([]byte, error) { + return bindataRead( + _assetsMessageTxt, + "assets/message.txt", + ) +} + +func assetsMessageTxt() (*asset, error) { + bytes, err := assetsMessageTxtBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "assets/message.txt", size: 65831, mode: os.FileMode(436), modTime: time.Unix(1574077966, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +// Asset loads and returns the asset for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func Asset(name string) ([]byte, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) + } + return a.bytes, nil + } + return nil, fmt.Errorf("Asset %s not found", name) +} + +// MustAsset is like Asset but panics when Asset would return an error. +// It simplifies safe initialization of global variables. +func MustAsset(name string) []byte { + a, err := Asset(name) + if err != nil { + panic("asset: Asset(" + name + "): " + err.Error()) + } + + return a +} + +// AssetInfo loads and returns the asset info for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func AssetInfo(name string) (os.FileInfo, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) + } + return a.info, nil + } + return nil, fmt.Errorf("AssetInfo %s not found", name) +} + +// AssetNames returns the names of the assets. +func AssetNames() []string { + names := make([]string, 0, len(_bindata)) + for name := range _bindata { + names = append(names, name) + } + return names +} + +// _bindata is a table, holding each asset generator, mapped to its name. +var _bindata = map[string]func() (*asset, error){ + "assets/message.txt": assetsMessageTxt, +} + +// AssetDir returns the file names below a certain +// directory embedded in the file by go-bindata. +// For example if you run go-bindata on data/... and data contains the +// following hierarchy: +// data/ +// foo.txt +// img/ +// a.png +// b.png +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error +// AssetDir("") will return []string{"data"}. +func AssetDir(name string) ([]string, error) { + node := _bintree + if len(name) != 0 { + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") + for _, p := range pathList { + node = node.Children[p] + if node == nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + } + } + if node.Func != nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + rv := make([]string, 0, len(node.Children)) + for childName := range node.Children { + rv = append(rv, childName) + } + return rv, nil +} + +type bintree struct { + Func func() (*asset, error) + Children map[string]*bintree +} +var _bintree = &bintree{nil, map[string]*bintree{ + "assets": &bintree{nil, map[string]*bintree{ + "message.txt": &bintree{assetsMessageTxt, map[string]*bintree{}}, + }}, +}} + +// RestoreAsset restores an asset under the given directory +func RestoreAsset(dir, name string) error { + data, err := Asset(name) + if err != nil { + return err + } + info, err := AssetInfo(name) + if err != nil { + return err + } + err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) + if err != nil { + return err + } + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + if err != nil { + return err + } + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil +} + +// RestoreAssets restores an asset under the given directory recursively +func RestoreAssets(dir, name string) error { + children, err := AssetDir(name) + // File + if err != nil { + return RestoreAsset(dir, name) + } + // Dir + for _, child := range children { + err = RestoreAssets(dir, filepath.Join(name, child)) + if err != nil { + return err + } + } + return nil +} + +func _filePath(dir, name string) string { + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) +} + diff --git a/blacklist.txt b/blacklist.txt new file mode 100644 index 0000000..1e2df56 --- /dev/null +++ b/blacklist.txt @@ -0,0 +1,6 @@ +penis +wallet +/.well-known/host-meta +/.well-known/host-meta/ +/.well-known/nodeinfo + diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..862e2d0 --- /dev/null +++ b/build.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +rm ./zardoz + +GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -mod=vendor +file zardoz +mv ./zardoz ./binaries/arm64/zardoz +tar -cvzf ./binaries/tgz/zardoz_arm64.tgz -C ./binaries/arm64 . --owner=0 --group=0 + +GOOS=linux GOARCH=arm CGO_ENABLED=0 GOARM=7 go build -mod=vendor +file zardoz +mv ./zardoz ./binaries/armv7/zardoz +tar -cvzf ./binaries/tgz/zardoz_armv7.tgz -C ./binaries/armv7 . --owner=0 --group=0 + +GOOS=linux GOARCH=mips CGO_ENABLED=0 go build -mod=vendor +file zardoz +mv ./zardoz ./binaries/mips32/zardoz +tar -cvzf ./binaries/tgz/zardoz_mips32.tgz -C ./binaries/mips32 . --owner=0 --group=0 + +GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -mod=vendor +file zardoz +mv ./zardoz ./binaries/amd64/zardoz +tar -cvzf ./binaries/tgz/zardoz_amd64.tgz -C ./binaries/amd64 . --owner=0 --group=0 + diff --git a/classifier.go b/classifier.go new file mode 100644 index 0000000..7b55ab9 --- /dev/null +++ b/classifier.go @@ -0,0 +1,147 @@ +package main + +import ( + "bytes" + "fmt" + "io/ioutil" + "log" + "net" + "net/http" +) + +//Zexpressions is the set of regexp being used by zardoz +var Zexpressions = []string{ + `[[:alpha:]]{4,32}`, // alpha digit token + `[ ]([A-Za-z0-9-_]{4,}\.)+\w+`, // domain name + `[ ]/[A-Za-z0-9-_/.]{4,}[ ]`, // URI path (also partial) + `[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}`, // IP address + `[0-9a-fA-F]{8}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{4}\-[0-9a-fA-F]{12}`, // UUID +} + +func passAndLearn(resp *http.Response) error { + + ProxyFlow.response = resp + ProxyFlow.seniority++ + req := ProxyFlow.request + + switch { + case isAuth(resp): + log.Println("401: We don't want to store credentials") + case isError(resp): + buf := bytes.NewBufferString(BlockMessage) + resp.Body = ioutil.NopCloser(buf) + resp.Status = "403 Forbidden" + resp.StatusCode = 403 + resp.Header["Content-Length"] = []string{fmt.Sprint(buf.Len())} + resp.Header.Set("Content-Encoding", "none") + resp.Header.Set("Cache-Control", "no-cache, no-store") + log.Println("Filing inside bad class") + feedRequest(req, "BAD") + ControPlane.StatsTokens <- "DOWNGRADE" + case isSuccess(resp): + log.Println("Filing inside Good Class: ", resp.StatusCode) + feedRequest(req, "GOOD") + } + + return nil +} + +func blockAndlearn(resp *http.Response) error { + + ProxyFlow.response = resp + ProxyFlow.seniority++ + req := ProxyFlow.request + + buf := bytes.NewBufferString(BlockMessage) + resp.Body = ioutil.NopCloser(buf) + resp.Status = "403 Forbidden" + resp.StatusCode = 403 + resp.Header["Content-Length"] = []string{fmt.Sprint(buf.Len())} + resp.Header.Set("Content-Encoding", "none") + resp.Header.Set("Cache-Control", "no-cache, no-store") + + switch { + case isAuth(resp): + log.Println("401: We don't want to store credentials") + case isError(resp): + log.Println("Filing inside bad class") + feedRequest(req, "BAD") + case isSuccess(resp): + log.Println("Filing inside Good Class: ", resp.StatusCode) + ControPlane.StatsTokens <- "UPGRADED" + feedRequest(req, "GOOD") + } + + return nil + +} + +func feedRequest(req *http.Request, class string) { + + feed := SourceIP(req) + + // feed := formatRequest(req) + + if class == "BAD" { + + log.Println("Feeding BAD token: ", feed) + + ControPlane.BadTokens <- feed + + } + + if class == "GOOD" { + + log.Println("Feeding GOOD Token:", feed) + + ControPlane.GoodTokens <- feed + + } + +} + +//Unique returns unique elements in the string +func Unique(slice []string) []string { + // create a map with all the values as key + uniqMap := make(map[string]struct{}) + for _, v := range slice { + uniqMap[v] = struct{}{} + } + + // turn the map keys into a slice + uniqSlice := make([]string, 0, len(uniqMap)) + for v := range uniqMap { + uniqSlice = append(uniqSlice, v) + } + return uniqSlice +} + +func isSuccess(resp *http.Response) bool { + return resp.StatusCode <= 299 +} + +func isAuth(resp *http.Response) bool { + return resp.StatusCode == 401 +} + +func isError(resp *http.Response) bool { + return resp.StatusCode >= 400 && resp.StatusCode != 401 +} + +//SourceIP returns the source IP of a http call +func SourceIP(req *http.Request) string { + + var feed string + + if feed = req.Header.Get("X-Forwarded-For"); feed != "" { + log.Println("Got X-Forwarded-For: " + feed) + } else { + + feed, _, _ = net.SplitHostPort(req.RemoteAddr) + + log.Println("NO X-Forwarded-For, using: "+feed+" from ", req.RemoteAddr) + } + + return feed + +} diff --git a/file.go b/file.go new file mode 100644 index 0000000..865b303 --- /dev/null +++ b/file.go @@ -0,0 +1,93 @@ +package main + +import ( + "encoding/json" + "fmt" + "io" + "log" + "os" + "time" +) + +// WriteToFile will print any string of text to a file safely by +// checking for errors and syncing at the end. +func writeToFile(filename string, data string) error { + file, err := os.Create(filename) + if err != nil { + return err + } + defer file.Close() + + _, err = io.WriteString(file, data) + if err != nil { + return err + } + return file.Sync() +} + +func handlepanic() { + + if a := recover(); a != nil { + fmt.Println("OPS!: Recovering from:", a) + } +} + +func saveBayesToFile() { + + log.Println("Trying to write json file") + defer handlepanic() + + dumpfile := os.Getenv("DUMPFILE") + if dumpfile == "" { + dumpfile = "bayes.json" + } + + ZClassifier.STATS.busy.Lock() + defer ZClassifier.STATS.busy.Unlock() + + statsREPORT, err := json.MarshalIndent(ZClassifier.STATS.stats, "", " ") + if err != nil { + statsREPORT = []byte(err.Error()) + } + + ZClassifier.Working.busy.Lock() + defer ZClassifier.Working.busy.Unlock() + + wScores, err := json.MarshalIndent(ZClassifier.Working.sMap, "", " ") + if err != nil { + wScores = []byte(err.Error()) + } + + ZClassifier.Learning.busy.Lock() + defer ZClassifier.Learning.busy.Unlock() + + lScores, err := json.MarshalIndent(ZClassifier.Learning.sMap, "", " ") + if err != nil { + lScores = []byte(err.Error()) + } + + report := fmt.Sprintf("STATS: %s\n WORKING: %s\n LEARNING: %s\n", statsREPORT, wScores, lScores) + + writeToFile(dumpfile, report) + + log.Println(report) + +} + +func jsonEngine() { + + for { + log.Println("Zardoz Seniority: ", ProxyFlow.seniority) + saveBayesToFile() + time.Sleep(1 * time.Minute) + + } + +} + +func init() { + log.Printf("File Engine Starting") + + go jsonEngine() + log.Printf("FIle Engine Started") +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e1c0ce6 --- /dev/null +++ b/go.mod @@ -0,0 +1,11 @@ +module zardoz + +go 1.13 + +require ( + github.com/blevesearch/bleve v0.8.1 // indirect + github.com/blevesearch/go-porterstemmer v1.0.2 // indirect + github.com/go-bindata/go-bindata v3.1.2+incompatible // indirect + github.com/jteeuwen/go-bindata v3.0.7+incompatible // indirect + github.com/lytics/multibayes v0.0.0-20161108162840-3457a5582021 +) diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..3ea608f --- /dev/null +++ b/go.sum @@ -0,0 +1,10 @@ +github.com/blevesearch/bleve v0.8.1 h1:20zBREtGe8dvBxCC+717SaxKcUVQOWk3/Fm75vabKpU= +github.com/blevesearch/bleve v0.8.1/go.mod h1:Y2lmIkzV6mcNfAnAdOd+ZxHkHchhBfU/xroGIp61wfw= +github.com/blevesearch/go-porterstemmer v1.0.2 h1:qe7n69gBd1OLY5sHKnxQHIbzn0LNJA4hpAf+5XDxV2I= +github.com/blevesearch/go-porterstemmer v1.0.2/go.mod h1:haWQqFT3RdOGz7PJuM3or/pWNJS1pKkoZJWCkWu0DVA= +github.com/go-bindata/go-bindata v3.1.2+incompatible h1:5vjJMVhowQdPzjE1LdxyFF7YFTXg5IgGVW4gBr5IbvE= +github.com/go-bindata/go-bindata v3.1.2+incompatible/go.mod h1:xK8Dsgwmeed+BBsSy2XTopBn/8uK2HWuGSnA11C3Joo= +github.com/jteeuwen/go-bindata v3.0.7+incompatible h1:91Uy4d9SYVr1kyTJ15wJsog+esAZZl7JmEfTkwmhJts= +github.com/jteeuwen/go-bindata v3.0.7+incompatible/go.mod h1:JVvhzYOiGBnFSYRyV00iY8q7/0PThjIYav1p9h5dmKs= +github.com/lytics/multibayes v0.0.0-20161108162840-3457a5582021 h1:J9Pk5h7TJlqMQtcINI23BUa0+bbxRXPMf7r8gAlfNxo= +github.com/lytics/multibayes v0.0.0-20161108162840-3457a5582021/go.mod h1:lXjTNxya7kn6QNxA3fW8WGYQq0KL/SUcPE9AwcPSgwI= diff --git a/handler.go b/handler.go new file mode 100644 index 0000000..4135ea0 --- /dev/null +++ b/handler.go @@ -0,0 +1,80 @@ +package main + +import ( + "fmt" + "log" + "math" + "net/http" + "net/http/httputil" +) + +func handler(p *httputil.ReverseProxy) func(http.ResponseWriter, *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { + //put the request inside our structure + ProxyFlow.request = r + log.Println("Received HTTP Request") + probs := ZClassifier.Posterior(SourceIP(r)) + log.Printf("Posterior Probabilities: %+v\n", probs) + action := quadrant(probs) + ControPlane.StatsTokens <- action + + switch action { + case "BLOCK", "BLOCKLEARN": + p.ModifyResponse = blockAndlearn + w.Header().Set("Probabilities", fmt.Sprintf("%v ", probs)) + log.Println("Request Blocked") + p.ServeHTTP(w, r) + + case "PASS", "PASSLEARN": + p.ModifyResponse = passAndLearn + w.Header().Set("Probabilities", fmt.Sprintf("%v ", probs)) + p.ServeHTTP(w, r) + log.Println("Passing Request") + + default: + log.Println("No Decision: PASS and LEARN") + p.ModifyResponse = passAndLearn + w.Header().Set("Probabilities", fmt.Sprintf("%v ", probs)) + p.ServeHTTP(w, r) + + } + + } +} + +func quadrant(p map[string]float64) string { + + sure := math.Abs(p["BAD"]-p["GOOD"]) >= ProxyFlow.sensitivity + badish := p["BAD"] > p["GOOD"] + goodish := p["GOOD"] > p["BAD"] + + if ProxyFlow.seniority < Maturity { + log.Println("Seniority too low. Waiting.") + return "PASSLEARN" + } + + if sure { + + if goodish { + return "PASS" + } + + if badish { + return "BLOCK" + } + + } else { + + if goodish { + return "PASSLEARN" + } + + if badish { + return "BLOCKLEARN" + } + + } + + return "PASSLEARN" + +} diff --git a/log.go b/log.go new file mode 100644 index 0000000..53810aa --- /dev/null +++ b/log.go @@ -0,0 +1,125 @@ +package main + +import ( + "io/ioutil" + "log" + "os" + "path/filepath" + "time" +) + +//Zardozlogfile defines the log structure +type Zardozlogfile struct { + filename string + logfile *os.File + active bool +} + +//VSlogfile is the logger we use +var VSlogfile Zardozlogfile + +func init() { + + verbose := os.Getenv("DEBUG") + log.Println("Verbose mode on: ", verbose) + DebugLog = (verbose == "true") + log.Println("DebugLog: ", DebugLog) + log.Println("Starting Log Engine") + // just the first time + var currentFolder = Hpwd() + os.MkdirAll(filepath.Join(currentFolder, "logs"), 0755) + // + + VSlogfile.active = DebugLog + VSlogfile.SetLogFolder() + go VSlogfile.RotateLogFolder() + +} + +//RotateLogFolder rotates the log folder +func (lf *Zardozlogfile) RotateLogFolder() { + + for { + + time.Sleep(1 * time.Hour) + if lf.logfile != nil { + + err := lf.logfile.Close() + log.Println("[TOOLS][LOG] close logfile returned: ", err) + } + + lf.SetLogFolder() + + } + +} + +//SetLogFolder sets the log folder +func (lf *Zardozlogfile) SetLogFolder() { + + if DebugLog { + lf.EnableLog() + } else { + lf.DisableLog() + } + + if lf.active { + + const layout = "2006-01-02.15" + + orario := time.Now().UTC() + + var currentFolder = Hpwd() + lf.filename = filepath.Join(currentFolder, "logs", "Zardoz."+orario.Format(layout)+"00.log") + + lf.logfile, _ = os.Create(lf.filename) + + log.Println("[TOOLS][LOG] Logfile is: " + lf.filename) + log.SetOutput(lf.logfile) + + // log.SetFlags(log.LstdFlags | log.Lshortfile | log.LUTC) + log.SetFlags(log.LstdFlags | log.LUTC) + + } else { + log.SetOutput(ioutil.Discard) + } + +} + +//EnableLog enables logging +func (lf *Zardozlogfile) EnableLog() { + + lf.active = true + +} + +//DisableLog disables logging +func (lf *Zardozlogfile) DisableLog() { + + lf.active = false + log.SetFlags(0) + log.SetOutput(ioutil.Discard) + +} + +//LogEngineStart just triggers the init for the package, and logs it. +func LogEngineStart() { + + log.Println("LogRotation Init") + +} + +//Hpwd behaves like the unix pwd command, returning the current path +func Hpwd() string { + + tmpLoc, err := os.Getwd() + + if err != nil { + tmpLoc = "/tmp" + log.Printf("[TOOLS][FS] Problem getting unix pwd: %s", err.Error()) + + } + + return tmpLoc + +} diff --git a/main.go b/main.go new file mode 100644 index 0000000..9b2a135 --- /dev/null +++ b/main.go @@ -0,0 +1,53 @@ +package main + +import ( + "log" + "net/http" + "net/http/httputil" + "net/url" + "os" + "strconv" +) + +func main() { + + vip := os.Getenv("REVERSEURL") + pport := os.Getenv("PROXYPORT") + sensitivity := os.Getenv("TRIGGER") + maturity := os.Getenv("SENIORITY") + collect := os.Getenv("COLLECTION") + + log.Println("Reverse path is: ", vip) + log.Println("Reverse port is: ", pport) + + remote, err := url.Parse(vip) + if err != nil { + panic(err) + } + + ProxyFlow.sensitivity, err = strconv.ParseFloat(sensitivity, 64) + if err != nil { + ProxyFlow.sensitivity = 0.5 + } + log.Println("Trigger is: ", ProxyFlow.sensitivity) + + Maturity, err = strconv.ParseInt(maturity, 10, 64) + if err != nil { + Maturity = 1024 + } + log.Println("Minimum request to learn: ", Maturity) + + ProxyFlow.collection, err = strconv.ParseFloat(collect, 64) + if err != nil { + // This is because we assume every example should add at least one token + ProxyFlow.collection = float64(Maturity) + } + log.Println("Collection limit is: ", ProxyFlow.collection) + + proxy := httputil.NewSingleHostReverseProxy(remote) + http.HandleFunc("/", handler(proxy)) + err = http.ListenAndServe(pport, nil) + if err != nil { + panic(err) + } +} diff --git a/matrix.go b/matrix.go new file mode 100644 index 0000000..5b28ec6 --- /dev/null +++ b/matrix.go @@ -0,0 +1,276 @@ +package main + +import ( + "bufio" + "log" + "os" + "strings" + "sync" + "time" +) + +//ByControlPlane contains all the channels we need. +type ByControlPlane struct { + BadTokens chan string + GoodTokens chan string + StatsTokens chan string +} + +type safeClassifier struct { + sMap map[string]string + busy sync.Mutex +} + +type safeStats struct { + stats map[string]int64 + busy sync.Mutex +} + +//ControPlane is the variabile +var ControPlane ByControlPlane + +//ByClassifier is the structure containing our Pseudo-Bayes classifier. +type ByClassifier struct { + STATS safeStats + Learning safeClassifier + Working safeClassifier + Generation int64 +} + +//AddStats adds the statistics after proper blocking. +func (c *ByClassifier) AddStats(action string) { + + c.STATS.busy.Lock() + defer c.STATS.busy.Unlock() + + if _, exists := c.STATS.stats[action]; exists { + c.STATS.stats[action]++ + } else { + c.STATS.stats[action] = 1 + } + +} + +//IsBAD inserts a bad key in the right place. +func (c *ByClassifier) IsBAD(key string) { + + log.Println("BAD Received", key) + + k := strings.Fields(key) + + c.Learning.busy.Lock() + defer c.Learning.busy.Unlock() + + for _, tk := range k { + + if kind, exists := c.Learning.sMap[tk]; exists { + + switch kind { + case "BAD": + log.Println("Word was known as bad:", tk) + case "GOOD": + c.Learning.sMap[tk] = "MEH" + log.Println("So sad, work was known as good", tk) + case "MEH": + log.Println("Word was known as ambiguos:", tk) + } + + } else { + c.Learning.sMap[tk] = "BAD" + } + + } + + log.Println("BAD Learned", key) + +} + +//IsGOOD inserts the key in the right place. +func (c *ByClassifier) IsGOOD(key string) { + + k := strings.Fields(key) + + log.Println("GOOD Received", key) + + c.Learning.busy.Lock() + defer c.Learning.busy.Unlock() + + for _, tk := range k { + + if kind, exists := c.Learning.sMap[tk]; exists { + + switch kind { + case "GOOD": + log.Println("Word was known as good: ", tk) + case "BAD": + c.Learning.sMap[tk] = "MEH" + log.Println("So sad, work was known as bad: ", tk) + case "MEH": + log.Println("Word was known as ambiguos: ", tk) + } + + } else { + c.Learning.sMap[tk] = "GOOD" + } + + } + + log.Println("GOOD Learned", key) + +} + +//Posterior calculates Shannon based entropy using bad and good as different distributions +func (c *ByClassifier) Posterior(hdr string) map[string]float64 { + + tokens := strings.Fields(hdr) + ff := make(map[string]float64) + + if c.Generation == 0 || len(tokens) == 0 { + ff["BAD"] = 0.5 + ff["GOOD"] = 0.5 + return ff + + } + + log.Println("Posterior locking the Working Bayesian") + c.Working.busy.Lock() + defer c.Working.busy.Unlock() + + var totalGood, totalBad float64 + + for _, tk := range tokens { + + if kind, exists := c.Working.sMap[tk]; exists { + + switch kind { + case "BAD": + totalBad++ + case "GOOD": + totalGood++ + } + + } + + } + + ff["GOOD"] = 1 - (totalBad / float64(len(tokens))) + ff["BAD"] = 1 - (totalGood / float64(len(tokens))) + + return ff + +} + +func (c *ByClassifier) enroll() { + + ControPlane.BadTokens = make(chan string, 2048) + ControPlane.GoodTokens = make(chan string, 2048) + ControPlane.StatsTokens = make(chan string, 2048) + + c.Generation = 0 + c.Learning.sMap = make(map[string]string) + c.Working.sMap = make(map[string]string) + c.STATS.stats = make(map[string]int64) + + c.readInitList("blacklist.txt", "BAD") + c.readInitList("whitelist.txt", "GOOD") + + go c.readBadTokens() + go c.readGoodTokens() + go c.readStatsTokens() + go c.updateLearners() + + log.Println("Classifier populated...") + +} + +func (c *ByClassifier) readBadTokens() { + + log.Println("Start reading BAD tokens") + + for token := range ControPlane.BadTokens { + log.Println("Received BAD Token: ", token) + c.IsBAD(token) + } + +} + +func (c *ByClassifier) readGoodTokens() { + + log.Println("Start reading GOOD tokens") + + for token := range ControPlane.GoodTokens { + log.Println("Received GOOD Token: ", token) + c.IsGOOD(token) + } + +} + +func (c *ByClassifier) readStatsTokens() { + + log.Println("Start reading STATS tokens") + + for token := range ControPlane.StatsTokens { + c.AddStats(token) + } + +} + +func (c *ByClassifier) readInitList(filePath, class string) { + + inFile, err := os.Open(filePath) + if err != nil { + log.Println(err.Error() + `: ` + filePath) + return + } + defer inFile.Close() + + scanner := bufio.NewScanner(inFile) + for scanner.Scan() { + + if len(scanner.Text()) > 3 { + switch class { + case "BAD": + log.Println("Loading into Blacklist: ", scanner.Text()) // the line + c.IsBAD(scanner.Text()) + case "GOOD": + log.Println("Loading into Whitelist: ", scanner.Text()) // the line + c.IsGOOD(scanner.Text()) + } + } + } + +} + +func (c *ByClassifier) updateLearners() { + + log.Println("Bayes Updater Start...") + + ticker := time.NewTicker(10 * time.Second) + + for ; true; <-ticker.C { + var currentGen int64 + log.Println("Maturity is:", Maturity) + log.Println("Seniority is:", ProxyFlow.seniority) + if Maturity > 0 { + currentGen = ProxyFlow.seniority / Maturity + } else { + currentGen = 0 + } + log.Println("Current Generation is: ", currentGen) + log.Println("Working Generation is: ", c.Generation) + if currentGen > c.Generation || float64(len(c.Learning.sMap)) > ProxyFlow.collection { + c.Learning.busy.Lock() + c.Working.busy.Lock() + c.Working.sMap = c.Learning.sMap + c.Learning.sMap = make(map[string]string) + c.Generation = currentGen + log.Println("Generation Updated to: ", c.Generation) + ControPlane.StatsTokens <- "GENERATION" + c.Learning.busy.Unlock() + c.Working.busy.Unlock() + + } + + } + +} diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..ab34122 --- /dev/null +++ b/run.sh @@ -0,0 +1,8 @@ +export REVERSEURL=https://google.com +export PROXYPORT=":8089" +export TRIGGER="0.6" +#export SENIORITY="1025" +export SENIORITY="15" +export DEBUG="true" +export DUMPFILE="bayes.json" +./zardoz diff --git a/vendor/github.com/blevesearch/bleve/LICENSE b/vendor/github.com/blevesearch/bleve/LICENSE new file mode 100644 index 0000000..7a4a3ea --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/vendor/github.com/blevesearch/bleve/analysis/freq.go b/vendor/github.com/blevesearch/bleve/analysis/freq.go new file mode 100644 index 0000000..198c149 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/analysis/freq.go @@ -0,0 +1,152 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package analysis + +import ( + "reflect" + + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeTokenLocation int +var reflectStaticSizeTokenFreq int + +func init() { + var tl TokenLocation + reflectStaticSizeTokenLocation = int(reflect.TypeOf(tl).Size()) + var tf TokenFreq + reflectStaticSizeTokenFreq = int(reflect.TypeOf(tf).Size()) +} + +// TokenLocation represents one occurrence of a term at a particular location in +// a field. Start, End and Position have the same meaning as in analysis.Token. +// Field and ArrayPositions identify the field value in the source document. +// See document.Field for details. +type TokenLocation struct { + Field string + ArrayPositions []uint64 + Start int + End int + Position int +} + +func (tl *TokenLocation) Size() int { + rv := reflectStaticSizeTokenLocation + rv += len(tl.ArrayPositions) * size.SizeOfUint64 + return rv +} + +// TokenFreq represents all the occurrences of a term in all fields of a +// document. +type TokenFreq struct { + Term []byte + Locations []*TokenLocation + frequency int +} + +func (tf *TokenFreq) Size() int { + rv := reflectStaticSizeTokenFreq + rv += len(tf.Term) + for _, loc := range tf.Locations { + rv += loc.Size() + } + return rv +} + +func (tf *TokenFreq) Frequency() int { + return tf.frequency +} + +// TokenFrequencies maps document terms to their combined frequencies from all +// fields. +type TokenFrequencies map[string]*TokenFreq + +func (tfs TokenFrequencies) Size() int { + rv := size.SizeOfMap + rv += len(tfs) * (size.SizeOfString + size.SizeOfPtr) + for k, v := range tfs { + rv += len(k) + rv += v.Size() + } + return rv +} + +func (tfs TokenFrequencies) MergeAll(remoteField string, other TokenFrequencies) { + // walk the new token frequencies + for tfk, tf := range other { + // set the remoteField value in incoming token freqs + for _, l := range tf.Locations { + l.Field = remoteField + } + existingTf, exists := tfs[tfk] + if exists { + existingTf.Locations = append(existingTf.Locations, tf.Locations...) + existingTf.frequency = existingTf.frequency + tf.frequency + } else { + tfs[tfk] = &TokenFreq{ + Term: tf.Term, + frequency: tf.frequency, + Locations: make([]*TokenLocation, len(tf.Locations)), + } + copy(tfs[tfk].Locations, tf.Locations) + } + } +} + +func TokenFrequency(tokens TokenStream, arrayPositions []uint64, includeTermVectors bool) TokenFrequencies { + rv := make(map[string]*TokenFreq, len(tokens)) + + if includeTermVectors { + tls := make([]TokenLocation, len(tokens)) + tlNext := 0 + + for _, token := range tokens { + tls[tlNext] = TokenLocation{ + ArrayPositions: arrayPositions, + Start: token.Start, + End: token.End, + Position: token.Position, + } + + curr, ok := rv[string(token.Term)] + if ok { + curr.Locations = append(curr.Locations, &tls[tlNext]) + curr.frequency++ + } else { + rv[string(token.Term)] = &TokenFreq{ + Term: token.Term, + Locations: []*TokenLocation{&tls[tlNext]}, + frequency: 1, + } + } + + tlNext++ + } + } else { + for _, token := range tokens { + curr, exists := rv[string(token.Term)] + if exists { + curr.frequency++ + } else { + rv[string(token.Term)] = &TokenFreq{ + Term: token.Term, + frequency: 1, + } + } + } + } + + return rv +} diff --git a/vendor/github.com/blevesearch/bleve/analysis/test_words.txt b/vendor/github.com/blevesearch/bleve/analysis/test_words.txt new file mode 100644 index 0000000..b86e254 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/analysis/test_words.txt @@ -0,0 +1,7 @@ +# full line comment +marty +steve # trailing comment +| different format of comment +dustin +siri | different style trailing comment +multiple words with different whitespace \ No newline at end of file diff --git a/vendor/github.com/blevesearch/bleve/analysis/tokenizer/regexp/regexp.go b/vendor/github.com/blevesearch/bleve/analysis/tokenizer/regexp/regexp.go new file mode 100644 index 0000000..c3401d8 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/analysis/tokenizer/regexp/regexp.go @@ -0,0 +1,84 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package regexp + +import ( + "fmt" + "regexp" + "strconv" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/registry" +) + +const Name = "regexp" + +var IdeographRegexp = regexp.MustCompile(`\p{Han}|\p{Hangul}|\p{Hiragana}|\p{Katakana}`) + +type RegexpTokenizer struct { + r *regexp.Regexp +} + +func NewRegexpTokenizer(r *regexp.Regexp) *RegexpTokenizer { + return &RegexpTokenizer{ + r: r, + } +} + +func (rt *RegexpTokenizer) Tokenize(input []byte) analysis.TokenStream { + matches := rt.r.FindAllIndex(input, -1) + rv := make(analysis.TokenStream, 0, len(matches)) + for i, match := range matches { + matchBytes := input[match[0]:match[1]] + if match[1]-match[0] > 0 { + token := analysis.Token{ + Term: matchBytes, + Start: match[0], + End: match[1], + Position: i + 1, + Type: detectTokenType(matchBytes), + } + rv = append(rv, &token) + } + } + return rv +} + +func RegexpTokenizerConstructor(config map[string]interface{}, cache *registry.Cache) (analysis.Tokenizer, error) { + rval, ok := config["regexp"].(string) + if !ok { + return nil, fmt.Errorf("must specify regexp") + } + r, err := regexp.Compile(rval) + if err != nil { + return nil, fmt.Errorf("unable to build regexp tokenizer: %v", err) + } + return NewRegexpTokenizer(r), nil +} + +func init() { + registry.RegisterTokenizer(Name, RegexpTokenizerConstructor) +} + +func detectTokenType(termBytes []byte) analysis.TokenType { + if IdeographRegexp.Match(termBytes) { + return analysis.Ideographic + } + _, err := strconv.ParseFloat(string(termBytes), 64) + if err == nil { + return analysis.Numeric + } + return analysis.AlphaNumeric +} diff --git a/vendor/github.com/blevesearch/bleve/analysis/tokenmap.go b/vendor/github.com/blevesearch/bleve/analysis/tokenmap.go new file mode 100644 index 0000000..7c0d0a8 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/analysis/tokenmap.go @@ -0,0 +1,76 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package analysis + +import ( + "bufio" + "bytes" + "io" + "io/ioutil" + "strings" +) + +type TokenMap map[string]bool + +func NewTokenMap() TokenMap { + return make(TokenMap, 0) +} + +// LoadFile reads in a list of tokens from a text file, +// one per line. +// Comments are supported using `#` or `|` +func (t TokenMap) LoadFile(filename string) error { + data, err := ioutil.ReadFile(filename) + if err != nil { + return err + } + return t.LoadBytes(data) +} + +// LoadBytes reads in a list of tokens from memory, +// one per line. +// Comments are supported using `#` or `|` +func (t TokenMap) LoadBytes(data []byte) error { + bytesReader := bytes.NewReader(data) + bufioReader := bufio.NewReader(bytesReader) + line, err := bufioReader.ReadString('\n') + for err == nil { + t.LoadLine(line) + line, err = bufioReader.ReadString('\n') + } + // if the err was EOF we still need to process the last value + if err == io.EOF { + t.LoadLine(line) + return nil + } + return err +} + +func (t TokenMap) LoadLine(line string) { + // find the start of a comment, if any + startComment := strings.IndexAny(line, "#|") + if startComment >= 0 { + line = line[:startComment] + } + + tokens := strings.Fields(line) + for _, token := range tokens { + t.AddToken(token) + } +} + +func (t TokenMap) AddToken(token string) { + t[token] = true +} diff --git a/vendor/github.com/blevesearch/bleve/analysis/type.go b/vendor/github.com/blevesearch/bleve/analysis/type.go new file mode 100644 index 0000000..589cc1c --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/analysis/type.go @@ -0,0 +1,103 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package analysis + +import ( + "fmt" + "time" +) + +type CharFilter interface { + Filter([]byte) []byte +} + +type TokenType int + +const ( + AlphaNumeric TokenType = iota + Ideographic + Numeric + DateTime + Shingle + Single + Double + Boolean +) + +// Token represents one occurrence of a term at a particular location in a +// field. +type Token struct { + // Start specifies the byte offset of the beginning of the term in the + // field. + Start int `json:"start"` + + // End specifies the byte offset of the end of the term in the field. + End int `json:"end"` + Term []byte `json:"term"` + + // Position specifies the 1-based index of the token in the sequence of + // occurrences of its term in the field. + Position int `json:"position"` + Type TokenType `json:"type"` + KeyWord bool `json:"keyword"` +} + +func (t *Token) String() string { + return fmt.Sprintf("Start: %d End: %d Position: %d Token: %s Type: %d", t.Start, t.End, t.Position, string(t.Term), t.Type) +} + +type TokenStream []*Token + +// A Tokenizer splits an input string into tokens, the usual behaviour being to +// map words to tokens. +type Tokenizer interface { + Tokenize([]byte) TokenStream +} + +// A TokenFilter adds, transforms or removes tokens from a token stream. +type TokenFilter interface { + Filter(TokenStream) TokenStream +} + +type Analyzer struct { + CharFilters []CharFilter + Tokenizer Tokenizer + TokenFilters []TokenFilter +} + +func (a *Analyzer) Analyze(input []byte) TokenStream { + if a.CharFilters != nil { + for _, cf := range a.CharFilters { + input = cf.Filter(input) + } + } + tokens := a.Tokenizer.Tokenize(input) + if a.TokenFilters != nil { + for _, tf := range a.TokenFilters { + tokens = tf.Filter(tokens) + } + } + return tokens +} + +var ErrInvalidDateTime = fmt.Errorf("unable to parse datetime with any of the layouts") + +type DateTimeParser interface { + ParseDateTime(string) (time.Time, error) +} + +type ByteArrayConverter interface { + Convert([]byte) (interface{}, error) +} diff --git a/vendor/github.com/blevesearch/bleve/analysis/util.go b/vendor/github.com/blevesearch/bleve/analysis/util.go new file mode 100644 index 0000000..8e4348a --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/analysis/util.go @@ -0,0 +1,92 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package analysis + +import ( + "bytes" + "unicode/utf8" +) + +func DeleteRune(in []rune, pos int) []rune { + if pos >= len(in) { + return in + } + copy(in[pos:], in[pos+1:]) + return in[:len(in)-1] +} + +func InsertRune(in []rune, pos int, r rune) []rune { + // create a new slice 1 rune larger + rv := make([]rune, len(in)+1) + // copy the characters before the insert pos + copy(rv[0:pos], in[0:pos]) + // set the inserted rune + rv[pos] = r + // copy the characters after the insert pos + copy(rv[pos+1:], in[pos:]) + return rv +} + +// BuildTermFromRunesOptimistic will build a term from the provided runes +// AND optimistically attempt to encode into the provided buffer +// if at any point it appears the buffer is too small, a new buffer is +// allocated and that is used instead +// this should be used in cases where frequently the new term is the same +// length or shorter than the original term (in number of bytes) +func BuildTermFromRunesOptimistic(buf []byte, runes []rune) []byte { + rv := buf + used := 0 + for _, r := range runes { + nextLen := utf8.RuneLen(r) + if used+nextLen > len(rv) { + // alloc new buf + buf = make([]byte, len(runes)*utf8.UTFMax) + // copy work we've already done + copy(buf, rv[:used]) + rv = buf + } + written := utf8.EncodeRune(rv[used:], r) + used += written + } + return rv[:used] +} + +func BuildTermFromRunes(runes []rune) []byte { + return BuildTermFromRunesOptimistic(make([]byte, len(runes)*utf8.UTFMax), runes) +} + +func TruncateRunes(input []byte, num int) []byte { + runes := bytes.Runes(input) + runes = runes[:len(runes)-num] + out := BuildTermFromRunes(runes) + return out +} + +func RunesEndsWith(input []rune, suffix string) bool { + inputLen := len(input) + suffixRunes := []rune(suffix) + suffixLen := len(suffixRunes) + if suffixLen > inputLen { + return false + } + + for i := suffixLen - 1; i >= 0; i-- { + if input[inputLen-(suffixLen-i)] != suffixRunes[i] { + return false + } + } + + return true +} diff --git a/vendor/github.com/blevesearch/bleve/document/document.go b/vendor/github.com/blevesearch/bleve/document/document.go new file mode 100644 index 0000000..6ac17b9 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/document.go @@ -0,0 +1,101 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "fmt" + "reflect" + + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeDocument int + +func init() { + var d Document + reflectStaticSizeDocument = int(reflect.TypeOf(d).Size()) +} + +type Document struct { + ID string `json:"id"` + Fields []Field `json:"fields"` + CompositeFields []*CompositeField +} + +func NewDocument(id string) *Document { + return &Document{ + ID: id, + Fields: make([]Field, 0), + CompositeFields: make([]*CompositeField, 0), + } +} + +func (d *Document) Size() int { + sizeInBytes := reflectStaticSizeDocument + size.SizeOfPtr + + len(d.ID) + + for _, entry := range d.Fields { + sizeInBytes += entry.Size() + } + + for _, entry := range d.CompositeFields { + sizeInBytes += entry.Size() + } + + return sizeInBytes +} + +func (d *Document) AddField(f Field) *Document { + switch f := f.(type) { + case *CompositeField: + d.CompositeFields = append(d.CompositeFields, f) + default: + d.Fields = append(d.Fields, f) + } + return d +} + +func (d *Document) GoString() string { + fields := "" + for i, field := range d.Fields { + if i != 0 { + fields += ", " + } + fields += fmt.Sprintf("%#v", field) + } + compositeFields := "" + for i, field := range d.CompositeFields { + if i != 0 { + compositeFields += ", " + } + compositeFields += fmt.Sprintf("%#v", field) + } + return fmt.Sprintf("&document.Document{ID:%s, Fields: %s, CompositeFields: %s}", d.ID, fields, compositeFields) +} + +func (d *Document) NumPlainTextBytes() uint64 { + rv := uint64(0) + for _, field := range d.Fields { + rv += field.NumPlainTextBytes() + } + for _, compositeField := range d.CompositeFields { + for _, field := range d.Fields { + if compositeField.includesField(field.Name()) { + rv += field.NumPlainTextBytes() + } + } + } + return rv +} diff --git a/vendor/github.com/blevesearch/bleve/document/field.go b/vendor/github.com/blevesearch/bleve/document/field.go new file mode 100644 index 0000000..2fe9166 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field.go @@ -0,0 +1,41 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "github.com/blevesearch/bleve/analysis" +) + +type Field interface { + // Name returns the path of the field from the root DocumentMapping. + // A root field path is "field", a subdocument field is "parent.field". + Name() string + // ArrayPositions returns the intermediate document and field indices + // required to resolve the field value in the document. For example, if the + // field path is "doc1.doc2.field" where doc1 and doc2 are slices or + // arrays, ArrayPositions returns 2 indices used to resolve "doc2" value in + // "doc1", then "field" in "doc2". + ArrayPositions() []uint64 + Options() IndexingOptions + Analyze() (int, analysis.TokenFrequencies) + Value() []byte + + // NumPlainTextBytes should return the number of plain text bytes + // that this field represents - this is a common metric for tracking + // the rate of indexing + NumPlainTextBytes() uint64 + + Size() int +} diff --git a/vendor/github.com/blevesearch/bleve/document/field_boolean.go b/vendor/github.com/blevesearch/bleve/document/field_boolean.go new file mode 100644 index 0000000..6864b16 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field_boolean.go @@ -0,0 +1,123 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "fmt" + "reflect" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeBooleanField int + +func init() { + var f BooleanField + reflectStaticSizeBooleanField = int(reflect.TypeOf(f).Size()) +} + +const DefaultBooleanIndexingOptions = StoreField | IndexField | DocValues + +type BooleanField struct { + name string + arrayPositions []uint64 + options IndexingOptions + value []byte + numPlainTextBytes uint64 +} + +func (b *BooleanField) Size() int { + return reflectStaticSizeBooleanField + size.SizeOfPtr + + len(b.name) + + len(b.arrayPositions)*size.SizeOfUint64 + + len(b.value) +} + +func (b *BooleanField) Name() string { + return b.name +} + +func (b *BooleanField) ArrayPositions() []uint64 { + return b.arrayPositions +} + +func (b *BooleanField) Options() IndexingOptions { + return b.options +} + +func (b *BooleanField) Analyze() (int, analysis.TokenFrequencies) { + tokens := make(analysis.TokenStream, 0) + tokens = append(tokens, &analysis.Token{ + Start: 0, + End: len(b.value), + Term: b.value, + Position: 1, + Type: analysis.Boolean, + }) + + fieldLength := len(tokens) + tokenFreqs := analysis.TokenFrequency(tokens, b.arrayPositions, b.options.IncludeTermVectors()) + return fieldLength, tokenFreqs +} + +func (b *BooleanField) Value() []byte { + return b.value +} + +func (b *BooleanField) Boolean() (bool, error) { + if len(b.value) == 1 { + return b.value[0] == 'T', nil + } + return false, fmt.Errorf("boolean field has %d bytes", len(b.value)) +} + +func (b *BooleanField) GoString() string { + return fmt.Sprintf("&document.BooleanField{Name:%s, Options: %s, Value: %s}", b.name, b.options, b.value) +} + +func (b *BooleanField) NumPlainTextBytes() uint64 { + return b.numPlainTextBytes +} + +func NewBooleanFieldFromBytes(name string, arrayPositions []uint64, value []byte) *BooleanField { + return &BooleanField{ + name: name, + arrayPositions: arrayPositions, + value: value, + options: DefaultNumericIndexingOptions, + numPlainTextBytes: uint64(len(value)), + } +} + +func NewBooleanField(name string, arrayPositions []uint64, b bool) *BooleanField { + return NewBooleanFieldWithIndexingOptions(name, arrayPositions, b, DefaultNumericIndexingOptions) +} + +func NewBooleanFieldWithIndexingOptions(name string, arrayPositions []uint64, b bool, options IndexingOptions) *BooleanField { + numPlainTextBytes := 5 + v := []byte("F") + if b { + numPlainTextBytes = 4 + v = []byte("T") + } + return &BooleanField{ + name: name, + arrayPositions: arrayPositions, + value: v, + options: options, + numPlainTextBytes: uint64(numPlainTextBytes), + } +} diff --git a/vendor/github.com/blevesearch/bleve/document/field_composite.go b/vendor/github.com/blevesearch/bleve/document/field_composite.go new file mode 100644 index 0000000..a828588 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field_composite.go @@ -0,0 +1,124 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "reflect" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeCompositeField int + +func init() { + var cf CompositeField + reflectStaticSizeCompositeField = int(reflect.TypeOf(cf).Size()) +} + +const DefaultCompositeIndexingOptions = IndexField + +type CompositeField struct { + name string + includedFields map[string]bool + excludedFields map[string]bool + defaultInclude bool + options IndexingOptions + totalLength int + compositeFrequencies analysis.TokenFrequencies +} + +func NewCompositeField(name string, defaultInclude bool, include []string, exclude []string) *CompositeField { + return NewCompositeFieldWithIndexingOptions(name, defaultInclude, include, exclude, DefaultCompositeIndexingOptions) +} + +func NewCompositeFieldWithIndexingOptions(name string, defaultInclude bool, include []string, exclude []string, options IndexingOptions) *CompositeField { + rv := &CompositeField{ + name: name, + options: options, + defaultInclude: defaultInclude, + includedFields: make(map[string]bool, len(include)), + excludedFields: make(map[string]bool, len(exclude)), + compositeFrequencies: make(analysis.TokenFrequencies), + } + + for _, i := range include { + rv.includedFields[i] = true + } + for _, e := range exclude { + rv.excludedFields[e] = true + } + + return rv +} + +func (c *CompositeField) Size() int { + sizeInBytes := reflectStaticSizeCompositeField + size.SizeOfPtr + + len(c.name) + + for k, _ := range c.includedFields { + sizeInBytes += size.SizeOfString + len(k) + size.SizeOfBool + } + + for k, _ := range c.excludedFields { + sizeInBytes += size.SizeOfString + len(k) + size.SizeOfBool + } + + return sizeInBytes +} + +func (c *CompositeField) Name() string { + return c.name +} + +func (c *CompositeField) ArrayPositions() []uint64 { + return []uint64{} +} + +func (c *CompositeField) Options() IndexingOptions { + return c.options +} + +func (c *CompositeField) Analyze() (int, analysis.TokenFrequencies) { + return c.totalLength, c.compositeFrequencies +} + +func (c *CompositeField) Value() []byte { + return []byte{} +} + +func (c *CompositeField) NumPlainTextBytes() uint64 { + return 0 +} + +func (c *CompositeField) includesField(field string) bool { + shouldInclude := c.defaultInclude + _, fieldShouldBeIncluded := c.includedFields[field] + if fieldShouldBeIncluded { + shouldInclude = true + } + _, fieldShouldBeExcluded := c.excludedFields[field] + if fieldShouldBeExcluded { + shouldInclude = false + } + return shouldInclude +} + +func (c *CompositeField) Compose(field string, length int, freq analysis.TokenFrequencies) { + if c.includesField(field) { + c.totalLength += length + c.compositeFrequencies.MergeAll(field, freq) + } +} diff --git a/vendor/github.com/blevesearch/bleve/document/field_datetime.go b/vendor/github.com/blevesearch/bleve/document/field_datetime.go new file mode 100644 index 0000000..583b44c --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field_datetime.go @@ -0,0 +1,159 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "fmt" + "math" + "reflect" + "time" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/numeric" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeDateTimeField int + +func init() { + var f DateTimeField + reflectStaticSizeDateTimeField = int(reflect.TypeOf(f).Size()) +} + +const DefaultDateTimeIndexingOptions = StoreField | IndexField | DocValues +const DefaultDateTimePrecisionStep uint = 4 + +var MinTimeRepresentable = time.Unix(0, math.MinInt64) +var MaxTimeRepresentable = time.Unix(0, math.MaxInt64) + +type DateTimeField struct { + name string + arrayPositions []uint64 + options IndexingOptions + value numeric.PrefixCoded + numPlainTextBytes uint64 +} + +func (n *DateTimeField) Size() int { + return reflectStaticSizeDateTimeField + size.SizeOfPtr + + len(n.name) + + len(n.arrayPositions)*size.SizeOfUint64 +} + +func (n *DateTimeField) Name() string { + return n.name +} + +func (n *DateTimeField) ArrayPositions() []uint64 { + return n.arrayPositions +} + +func (n *DateTimeField) Options() IndexingOptions { + return n.options +} + +func (n *DateTimeField) Analyze() (int, analysis.TokenFrequencies) { + tokens := make(analysis.TokenStream, 0) + tokens = append(tokens, &analysis.Token{ + Start: 0, + End: len(n.value), + Term: n.value, + Position: 1, + Type: analysis.DateTime, + }) + + original, err := n.value.Int64() + if err == nil { + + shift := DefaultDateTimePrecisionStep + for shift < 64 { + shiftEncoded, err := numeric.NewPrefixCodedInt64(original, shift) + if err != nil { + break + } + token := analysis.Token{ + Start: 0, + End: len(shiftEncoded), + Term: shiftEncoded, + Position: 1, + Type: analysis.DateTime, + } + tokens = append(tokens, &token) + shift += DefaultDateTimePrecisionStep + } + } + + fieldLength := len(tokens) + tokenFreqs := analysis.TokenFrequency(tokens, n.arrayPositions, n.options.IncludeTermVectors()) + return fieldLength, tokenFreqs +} + +func (n *DateTimeField) Value() []byte { + return n.value +} + +func (n *DateTimeField) DateTime() (time.Time, error) { + i64, err := n.value.Int64() + if err != nil { + return time.Time{}, err + } + return time.Unix(0, i64).UTC(), nil +} + +func (n *DateTimeField) GoString() string { + return fmt.Sprintf("&document.DateField{Name:%s, Options: %s, Value: %s}", n.name, n.options, n.value) +} + +func (n *DateTimeField) NumPlainTextBytes() uint64 { + return n.numPlainTextBytes +} + +func NewDateTimeFieldFromBytes(name string, arrayPositions []uint64, value []byte) *DateTimeField { + return &DateTimeField{ + name: name, + arrayPositions: arrayPositions, + value: value, + options: DefaultDateTimeIndexingOptions, + numPlainTextBytes: uint64(len(value)), + } +} + +func NewDateTimeField(name string, arrayPositions []uint64, dt time.Time) (*DateTimeField, error) { + return NewDateTimeFieldWithIndexingOptions(name, arrayPositions, dt, DefaultDateTimeIndexingOptions) +} + +func NewDateTimeFieldWithIndexingOptions(name string, arrayPositions []uint64, dt time.Time, options IndexingOptions) (*DateTimeField, error) { + if canRepresent(dt) { + dtInt64 := dt.UnixNano() + prefixCoded := numeric.MustNewPrefixCodedInt64(dtInt64, 0) + return &DateTimeField{ + name: name, + arrayPositions: arrayPositions, + value: prefixCoded, + options: options, + // not correct, just a place holder until we revisit how fields are + // represented and can fix this better + numPlainTextBytes: uint64(8), + }, nil + } + return nil, fmt.Errorf("cannot represent %s in this type", dt) +} + +func canRepresent(dt time.Time) bool { + if dt.Before(MinTimeRepresentable) || dt.After(MaxTimeRepresentable) { + return false + } + return true +} diff --git a/vendor/github.com/blevesearch/bleve/document/field_geopoint.go b/vendor/github.com/blevesearch/bleve/document/field_geopoint.go new file mode 100644 index 0000000..91fe23f --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field_geopoint.go @@ -0,0 +1,152 @@ +// Copyright (c) 2017 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "fmt" + "reflect" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/geo" + "github.com/blevesearch/bleve/numeric" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeGeoPointField int + +func init() { + var f GeoPointField + reflectStaticSizeGeoPointField = int(reflect.TypeOf(f).Size()) +} + +var GeoPrecisionStep uint = 9 + +type GeoPointField struct { + name string + arrayPositions []uint64 + options IndexingOptions + value numeric.PrefixCoded + numPlainTextBytes uint64 +} + +func (n *GeoPointField) Size() int { + return reflectStaticSizeGeoPointField + size.SizeOfPtr + + len(n.name) + + len(n.arrayPositions)*size.SizeOfUint64 +} + +func (n *GeoPointField) Name() string { + return n.name +} + +func (n *GeoPointField) ArrayPositions() []uint64 { + return n.arrayPositions +} + +func (n *GeoPointField) Options() IndexingOptions { + return n.options +} + +func (n *GeoPointField) Analyze() (int, analysis.TokenFrequencies) { + tokens := make(analysis.TokenStream, 0) + tokens = append(tokens, &analysis.Token{ + Start: 0, + End: len(n.value), + Term: n.value, + Position: 1, + Type: analysis.Numeric, + }) + + original, err := n.value.Int64() + if err == nil { + + shift := GeoPrecisionStep + for shift < 64 { + shiftEncoded, err := numeric.NewPrefixCodedInt64(original, shift) + if err != nil { + break + } + token := analysis.Token{ + Start: 0, + End: len(shiftEncoded), + Term: shiftEncoded, + Position: 1, + Type: analysis.Numeric, + } + tokens = append(tokens, &token) + shift += GeoPrecisionStep + } + } + + fieldLength := len(tokens) + tokenFreqs := analysis.TokenFrequency(tokens, n.arrayPositions, n.options.IncludeTermVectors()) + return fieldLength, tokenFreqs +} + +func (n *GeoPointField) Value() []byte { + return n.value +} + +func (n *GeoPointField) Lon() (float64, error) { + i64, err := n.value.Int64() + if err != nil { + return 0.0, err + } + return geo.MortonUnhashLon(uint64(i64)), nil +} + +func (n *GeoPointField) Lat() (float64, error) { + i64, err := n.value.Int64() + if err != nil { + return 0.0, err + } + return geo.MortonUnhashLat(uint64(i64)), nil +} + +func (n *GeoPointField) GoString() string { + return fmt.Sprintf("&document.GeoPointField{Name:%s, Options: %s, Value: %s}", n.name, n.options, n.value) +} + +func (n *GeoPointField) NumPlainTextBytes() uint64 { + return n.numPlainTextBytes +} + +func NewGeoPointFieldFromBytes(name string, arrayPositions []uint64, value []byte) *GeoPointField { + return &GeoPointField{ + name: name, + arrayPositions: arrayPositions, + value: value, + options: DefaultNumericIndexingOptions, + numPlainTextBytes: uint64(len(value)), + } +} + +func NewGeoPointField(name string, arrayPositions []uint64, lon, lat float64) *GeoPointField { + return NewGeoPointFieldWithIndexingOptions(name, arrayPositions, lon, lat, DefaultNumericIndexingOptions) +} + +func NewGeoPointFieldWithIndexingOptions(name string, arrayPositions []uint64, lon, lat float64, options IndexingOptions) *GeoPointField { + mhash := geo.MortonHash(lon, lat) + prefixCoded := numeric.MustNewPrefixCodedInt64(int64(mhash), 0) + return &GeoPointField{ + name: name, + arrayPositions: arrayPositions, + value: prefixCoded, + options: options, + // not correct, just a place holder until we revisit how fields are + // represented and can fix this better + numPlainTextBytes: uint64(8), + } +} diff --git a/vendor/github.com/blevesearch/bleve/document/field_numeric.go b/vendor/github.com/blevesearch/bleve/document/field_numeric.go new file mode 100644 index 0000000..46c685e --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field_numeric.go @@ -0,0 +1,145 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "fmt" + "reflect" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/numeric" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeNumericField int + +func init() { + var f NumericField + reflectStaticSizeNumericField = int(reflect.TypeOf(f).Size()) +} + +const DefaultNumericIndexingOptions = StoreField | IndexField | DocValues + +const DefaultPrecisionStep uint = 4 + +type NumericField struct { + name string + arrayPositions []uint64 + options IndexingOptions + value numeric.PrefixCoded + numPlainTextBytes uint64 +} + +func (n *NumericField) Size() int { + return reflectStaticSizeNumericField + size.SizeOfPtr + + len(n.name) + + len(n.arrayPositions)*size.SizeOfPtr +} + +func (n *NumericField) Name() string { + return n.name +} + +func (n *NumericField) ArrayPositions() []uint64 { + return n.arrayPositions +} + +func (n *NumericField) Options() IndexingOptions { + return n.options +} + +func (n *NumericField) Analyze() (int, analysis.TokenFrequencies) { + tokens := make(analysis.TokenStream, 0) + tokens = append(tokens, &analysis.Token{ + Start: 0, + End: len(n.value), + Term: n.value, + Position: 1, + Type: analysis.Numeric, + }) + + original, err := n.value.Int64() + if err == nil { + + shift := DefaultPrecisionStep + for shift < 64 { + shiftEncoded, err := numeric.NewPrefixCodedInt64(original, shift) + if err != nil { + break + } + token := analysis.Token{ + Start: 0, + End: len(shiftEncoded), + Term: shiftEncoded, + Position: 1, + Type: analysis.Numeric, + } + tokens = append(tokens, &token) + shift += DefaultPrecisionStep + } + } + + fieldLength := len(tokens) + tokenFreqs := analysis.TokenFrequency(tokens, n.arrayPositions, n.options.IncludeTermVectors()) + return fieldLength, tokenFreqs +} + +func (n *NumericField) Value() []byte { + return n.value +} + +func (n *NumericField) Number() (float64, error) { + i64, err := n.value.Int64() + if err != nil { + return 0.0, err + } + return numeric.Int64ToFloat64(i64), nil +} + +func (n *NumericField) GoString() string { + return fmt.Sprintf("&document.NumericField{Name:%s, Options: %s, Value: %s}", n.name, n.options, n.value) +} + +func (n *NumericField) NumPlainTextBytes() uint64 { + return n.numPlainTextBytes +} + +func NewNumericFieldFromBytes(name string, arrayPositions []uint64, value []byte) *NumericField { + return &NumericField{ + name: name, + arrayPositions: arrayPositions, + value: value, + options: DefaultNumericIndexingOptions, + numPlainTextBytes: uint64(len(value)), + } +} + +func NewNumericField(name string, arrayPositions []uint64, number float64) *NumericField { + return NewNumericFieldWithIndexingOptions(name, arrayPositions, number, DefaultNumericIndexingOptions) +} + +func NewNumericFieldWithIndexingOptions(name string, arrayPositions []uint64, number float64, options IndexingOptions) *NumericField { + numberInt64 := numeric.Float64ToInt64(number) + prefixCoded := numeric.MustNewPrefixCodedInt64(numberInt64, 0) + return &NumericField{ + name: name, + arrayPositions: arrayPositions, + value: prefixCoded, + options: options, + // not correct, just a place holder until we revisit how fields are + // represented and can fix this better + numPlainTextBytes: uint64(8), + } +} diff --git a/vendor/github.com/blevesearch/bleve/document/field_text.go b/vendor/github.com/blevesearch/bleve/document/field_text.go new file mode 100644 index 0000000..6bd74c7 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/field_text.go @@ -0,0 +1,139 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +import ( + "fmt" + "reflect" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeTextField int + +func init() { + var f TextField + reflectStaticSizeTextField = int(reflect.TypeOf(f).Size()) +} + +const DefaultTextIndexingOptions = IndexField | DocValues + +type TextField struct { + name string + arrayPositions []uint64 + options IndexingOptions + analyzer *analysis.Analyzer + value []byte + numPlainTextBytes uint64 +} + +func (t *TextField) Size() int { + return reflectStaticSizeTextField + size.SizeOfPtr + + len(t.name) + + len(t.arrayPositions)*size.SizeOfUint64 + + len(t.value) +} + +func (t *TextField) Name() string { + return t.name +} + +func (t *TextField) ArrayPositions() []uint64 { + return t.arrayPositions +} + +func (t *TextField) Options() IndexingOptions { + return t.options +} + +func (t *TextField) Analyze() (int, analysis.TokenFrequencies) { + var tokens analysis.TokenStream + if t.analyzer != nil { + bytesToAnalyze := t.Value() + if t.options.IsStored() { + // need to copy + bytesCopied := make([]byte, len(bytesToAnalyze)) + copy(bytesCopied, bytesToAnalyze) + bytesToAnalyze = bytesCopied + } + tokens = t.analyzer.Analyze(bytesToAnalyze) + } else { + tokens = analysis.TokenStream{ + &analysis.Token{ + Start: 0, + End: len(t.value), + Term: t.value, + Position: 1, + Type: analysis.AlphaNumeric, + }, + } + } + fieldLength := len(tokens) // number of tokens in this doc field + tokenFreqs := analysis.TokenFrequency(tokens, t.arrayPositions, t.options.IncludeTermVectors()) + return fieldLength, tokenFreqs +} + +func (t *TextField) Analyzer() *analysis.Analyzer { + return t.analyzer +} + +func (t *TextField) Value() []byte { + return t.value +} + +func (t *TextField) GoString() string { + return fmt.Sprintf("&document.TextField{Name:%s, Options: %s, Analyzer: %v, Value: %s, ArrayPositions: %v}", t.name, t.options, t.analyzer, t.value, t.arrayPositions) +} + +func (t *TextField) NumPlainTextBytes() uint64 { + return t.numPlainTextBytes +} + +func NewTextField(name string, arrayPositions []uint64, value []byte) *TextField { + return NewTextFieldWithIndexingOptions(name, arrayPositions, value, DefaultTextIndexingOptions) +} + +func NewTextFieldWithIndexingOptions(name string, arrayPositions []uint64, value []byte, options IndexingOptions) *TextField { + return &TextField{ + name: name, + arrayPositions: arrayPositions, + options: options, + value: value, + numPlainTextBytes: uint64(len(value)), + } +} + +func NewTextFieldWithAnalyzer(name string, arrayPositions []uint64, value []byte, analyzer *analysis.Analyzer) *TextField { + return &TextField{ + name: name, + arrayPositions: arrayPositions, + options: DefaultTextIndexingOptions, + analyzer: analyzer, + value: value, + numPlainTextBytes: uint64(len(value)), + } +} + +func NewTextFieldCustom(name string, arrayPositions []uint64, value []byte, options IndexingOptions, analyzer *analysis.Analyzer) *TextField { + return &TextField{ + name: name, + arrayPositions: arrayPositions, + options: options, + analyzer: analyzer, + value: value, + numPlainTextBytes: uint64(len(value)), + } +} diff --git a/vendor/github.com/blevesearch/bleve/document/indexing_options.go b/vendor/github.com/blevesearch/bleve/document/indexing_options.go new file mode 100644 index 0000000..44498a8 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/document/indexing_options.go @@ -0,0 +1,66 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package document + +type IndexingOptions int + +const ( + IndexField IndexingOptions = 1 << iota + StoreField + IncludeTermVectors + DocValues +) + +func (o IndexingOptions) IsIndexed() bool { + return o&IndexField != 0 +} + +func (o IndexingOptions) IsStored() bool { + return o&StoreField != 0 +} + +func (o IndexingOptions) IncludeTermVectors() bool { + return o&IncludeTermVectors != 0 +} + +func (o IndexingOptions) IncludeDocValues() bool { + return o&DocValues != 0 +} + +func (o IndexingOptions) String() string { + rv := "" + if o.IsIndexed() { + rv += "INDEXED" + } + if o.IsStored() { + if rv != "" { + rv += ", " + } + rv += "STORE" + } + if o.IncludeTermVectors() { + if rv != "" { + rv += ", " + } + rv += "TV" + } + if o.IncludeDocValues() { + if rv != "" { + rv += ", " + } + rv += "DV" + } + return rv +} diff --git a/vendor/github.com/blevesearch/bleve/geo/README.md b/vendor/github.com/blevesearch/bleve/geo/README.md new file mode 100644 index 0000000..43bcd98 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/geo/README.md @@ -0,0 +1,9 @@ +# geo support in bleve + +First, all of this geo code is a Go adaptation of the [Lucene 5.3.2 sandbox geo support](https://lucene.apache.org/core/5_3_2/sandbox/org/apache/lucene/util/package-summary.html). + +## Notes + +- All of the APIs will use float64 for lon/lat values. +- When describing a point in function arguments or return values, we always use the order lon, lat. +- High level APIs will use TopLeft and BottomRight to describe bounding boxes. This may not map cleanly to min/max lon/lat when crossing the dateline. The lower level APIs will use min/max lon/lat and require the higher-level code to split boxes accordingly. diff --git a/vendor/github.com/blevesearch/bleve/geo/geo.go b/vendor/github.com/blevesearch/bleve/geo/geo.go new file mode 100644 index 0000000..583451e --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/geo/geo.go @@ -0,0 +1,208 @@ +// Copyright (c) 2017 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package geo + +import ( + "fmt" + "math" + + "github.com/blevesearch/bleve/numeric" +) + +// GeoBits is the number of bits used for a single geo point +// Currently this is 32bits for lon and 32bits for lat +var GeoBits uint = 32 + +var minLon = -180.0 +var minLat = -90.0 +var maxLon = 180.0 +var maxLat = 90.0 +var minLonRad = minLon * degreesToRadian +var minLatRad = minLat * degreesToRadian +var maxLonRad = maxLon * degreesToRadian +var maxLatRad = maxLat * degreesToRadian +var geoTolerance = 1E-6 +var lonScale = float64((uint64(0x1)<> 1)) +} + +func unscaleLon(lon uint64) float64 { + return (float64(lon) / lonScale) + minLon +} + +func unscaleLat(lat uint64) float64 { + return (float64(lat) / latScale) + minLat +} + +// compareGeo will compare two float values and see if they are the same +// taking into consideration a known geo tolerance. +func compareGeo(a, b float64) float64 { + compare := a - b + if math.Abs(compare) <= geoTolerance { + return 0 + } + return compare +} + +// RectIntersects checks whether rectangles a and b intersect +func RectIntersects(aMinX, aMinY, aMaxX, aMaxY, bMinX, bMinY, bMaxX, bMaxY float64) bool { + return !(aMaxX < bMinX || aMinX > bMaxX || aMaxY < bMinY || aMinY > bMaxY) +} + +// RectWithin checks whether box a is within box b +func RectWithin(aMinX, aMinY, aMaxX, aMaxY, bMinX, bMinY, bMaxX, bMaxY float64) bool { + rv := !(aMinX < bMinX || aMinY < bMinY || aMaxX > bMaxX || aMaxY > bMaxY) + return rv +} + +// BoundingBoxContains checks whether the lon/lat point is within the box +func BoundingBoxContains(lon, lat, minLon, minLat, maxLon, maxLat float64) bool { + return compareGeo(lon, minLon) >= 0 && compareGeo(lon, maxLon) <= 0 && + compareGeo(lat, minLat) >= 0 && compareGeo(lat, maxLat) <= 0 +} + +const degreesToRadian = math.Pi / 180 +const radiansToDegrees = 180 / math.Pi + +// DegreesToRadians converts an angle in degrees to radians +func DegreesToRadians(d float64) float64 { + return d * degreesToRadian +} + +// RadiansToDegrees converts an angle in radians to degress +func RadiansToDegrees(r float64) float64 { + return r * radiansToDegrees +} + +var earthMeanRadiusMeters = 6371008.7714 + +func RectFromPointDistance(lon, lat, dist float64) (float64, float64, float64, float64, error) { + err := checkLongitude(lon) + if err != nil { + return 0, 0, 0, 0, err + } + err = checkLatitude(lat) + if err != nil { + return 0, 0, 0, 0, err + } + radLon := DegreesToRadians(lon) + radLat := DegreesToRadians(lat) + radDistance := (dist + 7e-2) / earthMeanRadiusMeters + + minLatL := radLat - radDistance + maxLatL := radLat + radDistance + + var minLonL, maxLonL float64 + if minLatL > minLatRad && maxLatL < maxLatRad { + deltaLon := asin(sin(radDistance) / cos(radLat)) + minLonL = radLon - deltaLon + if minLonL < minLonRad { + minLonL += 2 * math.Pi + } + maxLonL = radLon + deltaLon + if maxLonL > maxLonRad { + maxLonL -= 2 * math.Pi + } + } else { + // pole is inside distance + minLatL = math.Max(minLatL, minLatRad) + maxLatL = math.Min(maxLatL, maxLatRad) + minLonL = minLonRad + maxLonL = maxLonRad + } + + return RadiansToDegrees(minLonL), + RadiansToDegrees(maxLatL), + RadiansToDegrees(maxLonL), + RadiansToDegrees(minLatL), + nil +} + +func checkLatitude(latitude float64) error { + if math.IsNaN(latitude) || latitude < minLat || latitude > maxLat { + return fmt.Errorf("invalid latitude %f; must be between %f and %f", latitude, minLat, maxLat) + } + return nil +} + +func checkLongitude(longitude float64) error { + if math.IsNaN(longitude) || longitude < minLon || longitude > maxLon { + return fmt.Errorf("invalid longitude %f; must be between %f and %f", longitude, minLon, maxLon) + } + return nil +} + +func BoundingRectangleForPolygon(polygon []Point) ( + float64, float64, float64, float64, error) { + err := checkLongitude(polygon[0].Lon) + if err != nil { + return 0, 0, 0, 0, err + } + err = checkLatitude(polygon[0].Lat) + if err != nil { + return 0, 0, 0, 0, err + } + maxY, minY := polygon[0].Lat, polygon[0].Lat + maxX, minX := polygon[0].Lon, polygon[0].Lon + for i := 1; i < len(polygon); i++ { + err := checkLongitude(polygon[i].Lon) + if err != nil { + return 0, 0, 0, 0, err + } + err = checkLatitude(polygon[i].Lat) + if err != nil { + return 0, 0, 0, 0, err + } + + maxY = math.Max(maxY, polygon[i].Lat) + minY = math.Min(minY, polygon[i].Lat) + + maxX = math.Max(maxX, polygon[i].Lon) + minX = math.Min(minX, polygon[i].Lon) + } + + return minX, maxY, maxX, minY, nil +} diff --git a/vendor/github.com/blevesearch/bleve/geo/geo_dist.go b/vendor/github.com/blevesearch/bleve/geo/geo_dist.go new file mode 100644 index 0000000..d3ae0ed --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/geo/geo_dist.go @@ -0,0 +1,98 @@ +// Copyright (c) 2017 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package geo + +import ( + "fmt" + "math" + "strconv" + "strings" +) + +type distanceUnit struct { + conv float64 + suffixes []string +} + +var inch = distanceUnit{0.0254, []string{"in", "inch"}} +var yard = distanceUnit{0.9144, []string{"yd", "yards"}} +var feet = distanceUnit{0.3048, []string{"ft", "feet"}} +var kilom = distanceUnit{1000, []string{"km", "kilometers"}} +var nauticalm = distanceUnit{1852.0, []string{"nm", "nauticalmiles"}} +var millim = distanceUnit{0.001, []string{"mm", "millimeters"}} +var centim = distanceUnit{0.01, []string{"cm", "centimeters"}} +var miles = distanceUnit{1609.344, []string{"mi", "miles"}} +var meters = distanceUnit{1, []string{"m", "meters"}} + +var distanceUnits = []*distanceUnit{ + &inch, &yard, &feet, &kilom, &nauticalm, &millim, ¢im, &miles, &meters, +} + +// ParseDistance attempts to parse a distance string and return distance in +// meters. Example formats supported: +// "5in" "5inch" "7yd" "7yards" "9ft" "9feet" "11km" "11kilometers" +// "3nm" "3nauticalmiles" "13mm" "13millimeters" "15cm" "15centimeters" +// "17mi" "17miles" "19m" "19meters" +// If the unit cannot be determined, the entire string is parsed and the +// unit of meters is assumed. +// If the number portion cannot be parsed, 0 and the parse error are returned. +func ParseDistance(d string) (float64, error) { + for _, unit := range distanceUnits { + for _, unitSuffix := range unit.suffixes { + if strings.HasSuffix(d, unitSuffix) { + parsedNum, err := strconv.ParseFloat(d[0:len(d)-len(unitSuffix)], 64) + if err != nil { + return 0, err + } + return parsedNum * unit.conv, nil + } + } + } + // no unit matched, try assuming meters? + parsedNum, err := strconv.ParseFloat(d, 64) + if err != nil { + return 0, err + } + return parsedNum, nil +} + +// ParseDistanceUnit attempts to parse a distance unit and return the +// multiplier for converting this to meters. If the unit cannot be parsed +// then 0 and the error message is returned. +func ParseDistanceUnit(u string) (float64, error) { + for _, unit := range distanceUnits { + for _, unitSuffix := range unit.suffixes { + if u == unitSuffix { + return unit.conv, nil + } + } + } + return 0, fmt.Errorf("unknown distance unit: %s", u) +} + +// Haversin computes the distance between two points. +// This implemenation uses the sloppy math implemenations which trade off +// accuracy for performance. The distance returned is in kilometers. +func Haversin(lon1, lat1, lon2, lat2 float64) float64 { + x1 := lat1 * degreesToRadian + x2 := lat2 * degreesToRadian + h1 := 1 - cos(x1-x2) + h2 := 1 - cos((lon1-lon2)*degreesToRadian) + h := (h1 + cos(x1)*cos(x2)*h2) / 2 + avgLat := (x1 + x2) / 2 + diameter := earthDiameter(avgLat) + + return diameter * asin(math.Min(1, math.Sqrt(h))) +} diff --git a/vendor/github.com/blevesearch/bleve/geo/geohash.go b/vendor/github.com/blevesearch/bleve/geo/geohash.go new file mode 100644 index 0000000..d3d4dfa --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/geo/geohash.go @@ -0,0 +1,111 @@ +// Copyright (c) 2019 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// This implementation is inspired from the geohash-js +// ref: https://github.com/davetroy/geohash-js + +package geo + +// encoding encapsulates an encoding defined by a given base32 alphabet. +type encoding struct { + enc string + dec [256]byte +} + +// newEncoding constructs a new encoding defined by the given alphabet, +// which must be a 32-byte string. +func newEncoding(encoder string) *encoding { + e := new(encoding) + e.enc = encoder + for i := 0; i < len(e.dec); i++ { + e.dec[i] = 0xff + } + for i := 0; i < len(encoder); i++ { + e.dec[encoder[i]] = byte(i) + } + return e +} + +// base32encoding with the Geohash alphabet. +var base32encoding = newEncoding("0123456789bcdefghjkmnpqrstuvwxyz") + +var masks = []uint64{16, 8, 4, 2, 1} + +// DecodeGeoHash decodes the string geohash faster with +// higher precision. This api is in experimental phase. +func DecodeGeoHash(geoHash string) (float64, float64) { + even := true + lat := []float64{-90.0, 90.0} + lon := []float64{-180.0, 180.0} + + for i := 0; i < len(geoHash); i++ { + cd := uint64(base32encoding.dec[geoHash[i]]) + for j := 0; j < 5; j++ { + if even { + if cd&masks[j] > 0 { + lon[0] = (lon[0] + lon[1]) / 2 + } else { + lon[1] = (lon[0] + lon[1]) / 2 + } + } else { + if cd&masks[j] > 0 { + lat[0] = (lat[0] + lat[1]) / 2 + } else { + lat[1] = (lat[0] + lat[1]) / 2 + } + } + even = !even + } + } + + return (lat[0] + lat[1]) / 2, (lon[0] + lon[1]) / 2 +} + +func EncodeGeoHash(lat, lon float64) string { + even := true + lats := []float64{-90.0, 90.0} + lons := []float64{-180.0, 180.0} + precision := 12 + var ch, bit uint64 + var geoHash string + + for len(geoHash) < precision { + if even { + mid := (lons[0] + lons[1]) / 2 + if lon > mid { + ch |= masks[bit] + lons[0] = mid + } else { + lons[1] = mid + } + } else { + mid := (lats[0] + lats[1]) / 2 + if lat > mid { + ch |= masks[bit] + lats[0] = mid + } else { + lats[1] = mid + } + } + even = !even + if bit < 4 { + bit++ + } else { + geoHash += string(base32encoding.enc[ch]) + ch = 0 + bit = 0 + } + } + + return geoHash +} diff --git a/vendor/github.com/blevesearch/bleve/geo/parse.go b/vendor/github.com/blevesearch/bleve/geo/parse.go new file mode 100644 index 0000000..5d833d9 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/geo/parse.go @@ -0,0 +1,179 @@ +// Copyright (c) 2017 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package geo + +import ( + "reflect" + "strconv" + "strings" +) + +// ExtractGeoPoint takes an arbitrary interface{} and tries it's best to +// interpret it is as geo point. Supported formats: +// Container: +// slice length 2 (GeoJSON) +// first element lon, second element lat +// string (coordinates separated by comma, or a geohash) +// first element lat, second element lon +// map[string]interface{} +// exact keys lat and lon or lng +// struct +// w/exported fields case-insensitive match on lat and lon or lng +// struct +// satisfying Later and Loner or Lnger interfaces +// +// in all cases values must be some sort of numeric-like thing: int/uint/float +func ExtractGeoPoint(thing interface{}) (lon, lat float64, success bool) { + var foundLon, foundLat bool + + thingVal := reflect.ValueOf(thing) + if !thingVal.IsValid() { + return lon, lat, false + } + + thingTyp := thingVal.Type() + + // is it a slice + if thingVal.Kind() == reflect.Slice { + // must be length 2 + if thingVal.Len() == 2 { + first := thingVal.Index(0) + if first.CanInterface() { + firstVal := first.Interface() + lon, foundLon = extractNumericVal(firstVal) + } + second := thingVal.Index(1) + if second.CanInterface() { + secondVal := second.Interface() + lat, foundLat = extractNumericVal(secondVal) + } + } + } + + // is it a string + if thingVal.Kind() == reflect.String { + geoStr := thingVal.Interface().(string) + if strings.Contains(geoStr, ",") { + // geo point with coordinates split by comma + points := strings.Split(geoStr, ",") + for i, point := range points { + // trim any leading or trailing white spaces + points[i] = strings.TrimSpace(point) + } + if len(points) == 2 { + var err error + lat, err = strconv.ParseFloat(points[0], 64) + if err == nil { + foundLat = true + } + lon, err = strconv.ParseFloat(points[1], 64) + if err == nil { + foundLon = true + } + } + } else { + // geohash + lat, lon = DecodeGeoHash(geoStr) + foundLat = true + foundLon = true + } + } + + // is it a map + if l, ok := thing.(map[string]interface{}); ok { + if lval, ok := l["lon"]; ok { + lon, foundLon = extractNumericVal(lval) + } else if lval, ok := l["lng"]; ok { + lon, foundLon = extractNumericVal(lval) + } + if lval, ok := l["lat"]; ok { + lat, foundLat = extractNumericVal(lval) + } + } + + // now try reflection on struct fields + if thingVal.Kind() == reflect.Struct { + for i := 0; i < thingVal.NumField(); i++ { + fieldName := thingTyp.Field(i).Name + if strings.HasPrefix(strings.ToLower(fieldName), "lon") { + if thingVal.Field(i).CanInterface() { + fieldVal := thingVal.Field(i).Interface() + lon, foundLon = extractNumericVal(fieldVal) + } + } + if strings.HasPrefix(strings.ToLower(fieldName), "lng") { + if thingVal.Field(i).CanInterface() { + fieldVal := thingVal.Field(i).Interface() + lon, foundLon = extractNumericVal(fieldVal) + } + } + if strings.HasPrefix(strings.ToLower(fieldName), "lat") { + if thingVal.Field(i).CanInterface() { + fieldVal := thingVal.Field(i).Interface() + lat, foundLat = extractNumericVal(fieldVal) + } + } + } + } + + // last hope, some interfaces + // lon + if l, ok := thing.(loner); ok { + lon = l.Lon() + foundLon = true + } else if l, ok := thing.(lnger); ok { + lon = l.Lng() + foundLon = true + } + // lat + if l, ok := thing.(later); ok { + lat = l.Lat() + foundLat = true + } + + return lon, lat, foundLon && foundLat +} + +// extract numeric value (if possible) and returns a float64 +func extractNumericVal(v interface{}) (float64, bool) { + val := reflect.ValueOf(v) + if !val.IsValid() { + return 0, false + } + typ := val.Type() + switch typ.Kind() { + case reflect.Float32, reflect.Float64: + return val.Float(), true + case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64: + return float64(val.Int()), true + case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64: + return float64(val.Uint()), true + } + + return 0, false +} + +// various support interfaces which can be used to find lat/lon +type loner interface { + Lon() float64 +} + +type later interface { + Lat() float64 +} + +type lnger interface { + Lng() float64 +} diff --git a/vendor/github.com/blevesearch/bleve/geo/sloppy.go b/vendor/github.com/blevesearch/bleve/geo/sloppy.go new file mode 100644 index 0000000..0ce646d --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/geo/sloppy.go @@ -0,0 +1,212 @@ +// Copyright (c) 2017 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package geo + +import ( + "math" +) + +var earthDiameterPerLatitude []float64 +var sinTab []float64 +var cosTab []float64 +var asinTab []float64 +var asinDer1DivF1Tab []float64 +var asinDer2DivF2Tab []float64 +var asinDer3DivF3Tab []float64 +var asinDer4DivF4Tab []float64 + +const radiusTabsSize = (1 << 10) + 1 +const radiusDelta = (math.Pi / 2) / (radiusTabsSize - 1) +const radiusIndexer = 1 / radiusDelta +const sinCosTabsSize = (1 << 11) + 1 +const asinTabsSize = (1 << 13) + 1 +const oneDivF2 = 1 / 2.0 +const oneDivF3 = 1 / 6.0 +const oneDivF4 = 1 / 24.0 + +// 1.57079632673412561417e+00 first 33 bits of pi/2 +var pio2Hi = math.Float64frombits(0x3FF921FB54400000) + +// 6.07710050650619224932e-11 pi/2 - PIO2_HI +var pio2Lo = math.Float64frombits(0x3DD0B4611A626331) + +var asinPio2Hi = math.Float64frombits(0x3FF921FB54442D18) // 1.57079632679489655800e+00 +var asinPio2Lo = math.Float64frombits(0x3C91A62633145C07) // 6.12323399573676603587e-17 +var asinPs0 = math.Float64frombits(0x3fc5555555555555) // 1.66666666666666657415e-01 +var asinPs1 = math.Float64frombits(0xbfd4d61203eb6f7d) // -3.25565818622400915405e-01 +var asinPs2 = math.Float64frombits(0x3fc9c1550e884455) // 2.01212532134862925881e-01 +var asinPs3 = math.Float64frombits(0xbfa48228b5688f3b) // -4.00555345006794114027e-02 +var asinPs4 = math.Float64frombits(0x3f49efe07501b288) // 7.91534994289814532176e-04 +var asinPs5 = math.Float64frombits(0x3f023de10dfdf709) // 3.47933107596021167570e-05 +var asinQs1 = math.Float64frombits(0xc0033a271c8a2d4b) // -2.40339491173441421878e+00 +var asinQs2 = math.Float64frombits(0x40002ae59c598ac8) // 2.02094576023350569471e+00 +var asinQs3 = math.Float64frombits(0xbfe6066c1b8d0159) // -6.88283971605453293030e-01 +var asinQs4 = math.Float64frombits(0x3fb3b8c5b12e9282) // 7.70381505559019352791e-02 + +var twoPiHi = 4 * pio2Hi +var twoPiLo = 4 * pio2Lo +var sinCosDeltaHi = twoPiHi/sinCosTabsSize - 1 +var sinCosDeltaLo = twoPiLo/sinCosTabsSize - 1 +var sinCosIndexer = 1 / (sinCosDeltaHi + sinCosDeltaLo) +var sinCosMaxValueForIntModulo = ((math.MaxInt64 >> 9) / sinCosIndexer) * 0.99 +var asinMaxValueForTabs = math.Sin(73.0 * degreesToRadian) + +var asinDelta = asinMaxValueForTabs / (asinTabsSize - 1) +var asinIndexer = 1 / asinDelta + +func init() { + // initializes the tables used for the sloppy math functions + + // sin and cos + sinTab = make([]float64, sinCosTabsSize) + cosTab = make([]float64, sinCosTabsSize) + sinCosPiIndex := (sinCosTabsSize - 1) / 2 + sinCosPiMul2Index := 2 * sinCosPiIndex + sinCosPiMul05Index := sinCosPiIndex / 2 + sinCosPiMul15Index := 3 * sinCosPiIndex / 2 + for i := 0; i < sinCosTabsSize; i++ { + // angle: in [0,2*PI]. + angle := float64(i)*sinCosDeltaHi + float64(i)*sinCosDeltaLo + sinAngle := math.Sin(angle) + cosAngle := math.Cos(angle) + // For indexes corresponding to null cosine or sine, we make sure the value is zero + // and not an epsilon. This allows for a much better accuracy for results close to zero. + if i == sinCosPiIndex { + sinAngle = 0.0 + } else if i == sinCosPiMul2Index { + sinAngle = 0.0 + } else if i == sinCosPiMul05Index { + sinAngle = 0.0 + } else if i == sinCosPiMul15Index { + sinAngle = 0.0 + } + sinTab[i] = sinAngle + cosTab[i] = cosAngle + } + + // asin + asinTab = make([]float64, asinTabsSize) + asinDer1DivF1Tab = make([]float64, asinTabsSize) + asinDer2DivF2Tab = make([]float64, asinTabsSize) + asinDer3DivF3Tab = make([]float64, asinTabsSize) + asinDer4DivF4Tab = make([]float64, asinTabsSize) + for i := 0; i < asinTabsSize; i++ { + // x: in [0,ASIN_MAX_VALUE_FOR_TABS]. + x := float64(i) * asinDelta + asinTab[i] = math.Asin(x) + oneMinusXSqInv := 1.0 / (1 - x*x) + oneMinusXSqInv05 := math.Sqrt(oneMinusXSqInv) + oneMinusXSqInv15 := oneMinusXSqInv05 * oneMinusXSqInv + oneMinusXSqInv25 := oneMinusXSqInv15 * oneMinusXSqInv + oneMinusXSqInv35 := oneMinusXSqInv25 * oneMinusXSqInv + asinDer1DivF1Tab[i] = oneMinusXSqInv05 + asinDer2DivF2Tab[i] = (x * oneMinusXSqInv15) * oneDivF2 + asinDer3DivF3Tab[i] = ((1 + 2*x*x) * oneMinusXSqInv25) * oneDivF3 + asinDer4DivF4Tab[i] = ((5 + 2*x*(2+x*(5-2*x))) * oneMinusXSqInv35) * oneDivF4 + } + + // earth radius + a := 6378137.0 + b := 6356752.31420 + a2 := a * a + b2 := b * b + earthDiameterPerLatitude = make([]float64, radiusTabsSize) + earthDiameterPerLatitude[0] = 2.0 * a / 1000 + earthDiameterPerLatitude[radiusTabsSize-1] = 2.0 * b / 1000 + for i := 1; i < radiusTabsSize-1; i++ { + lat := math.Pi * float64(i) / (2*radiusTabsSize - 1) + one := math.Pow(a2*math.Cos(lat), 2) + two := math.Pow(b2*math.Sin(lat), 2) + three := math.Pow(float64(a)*math.Cos(lat), 2) + four := math.Pow(b*math.Sin(lat), 2) + radius := math.Sqrt((one + two) / (three + four)) + earthDiameterPerLatitude[i] = 2 * radius / 1000 + } +} + +// earthDiameter returns an estimation of the earth's diameter at the specified +// latitude in kilometers +func earthDiameter(lat float64) float64 { + index := math.Mod(math.Abs(lat)*radiusIndexer+0.5, float64(len(earthDiameterPerLatitude))) + if math.IsNaN(index) { + return 0 + } + return earthDiameterPerLatitude[int(index)] +} + +var pio2 = math.Pi / 2 + +func sin(a float64) float64 { + return cos(a - pio2) +} + +// cos is a sloppy math (faster) implementation of math.Cos +func cos(a float64) float64 { + if a < 0.0 { + a = -a + } + if a > sinCosMaxValueForIntModulo { + return math.Cos(a) + } + // index: possibly outside tables range. + index := int(a*sinCosIndexer + 0.5) + delta := (a - float64(index)*sinCosDeltaHi) - float64(index)*sinCosDeltaLo + // Making sure index is within tables range. + // Last value of each table is the same than first, so we ignore it (tabs size minus one) for modulo. + index &= (sinCosTabsSize - 2) // index % (SIN_COS_TABS_SIZE-1) + indexCos := cosTab[index] + indexSin := sinTab[index] + return indexCos + delta*(-indexSin+delta*(-indexCos*oneDivF2+delta*(indexSin*oneDivF3+delta*indexCos*oneDivF4))) +} + +// asin is a sloppy math (faster) implementation of math.Asin +func asin(a float64) float64 { + var negateResult bool + if a < 0 { + a = -a + negateResult = true + } + if a <= asinMaxValueForTabs { + index := int(a*asinIndexer + 0.5) + delta := a - float64(index)*asinDelta + result := asinTab[index] + delta*(asinDer1DivF1Tab[index]+delta*(asinDer2DivF2Tab[index]+delta*(asinDer3DivF3Tab[index]+delta*asinDer4DivF4Tab[index]))) + if negateResult { + return -result + } + return result + } + // value > ASIN_MAX_VALUE_FOR_TABS, or value is NaN + // This part is derived from fdlibm. + if a < 1 { + t := (1.0 - a) * 0.5 + p := t * (asinPs0 + t*(asinPs1+t*(asinPs2+t*(asinPs3+t*(asinPs4+t+asinPs5))))) + q := 1.0 + t*(asinQs1+t*(asinQs2+t*(asinQs3+t*asinQs4))) + s := math.Sqrt(t) + z := s + s*(p/q) + result := asinPio2Hi - ((z + z) - asinPio2Lo) + if negateResult { + return -result + } + return result + } + // value >= 1.0, or value is NaN + if a == 1.0 { + if negateResult { + return -math.Pi / 2 + } + return math.Pi / 2 + } + return math.NaN() +} diff --git a/vendor/github.com/blevesearch/bleve/index/analysis.go b/vendor/github.com/blevesearch/bleve/index/analysis.go new file mode 100644 index 0000000..82883af --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/analysis.go @@ -0,0 +1,110 @@ +// Copyright (c) 2015 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package index + +import ( + "reflect" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/document" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeAnalysisResult int + +func init() { + var ar AnalysisResult + reflectStaticSizeAnalysisResult = int(reflect.TypeOf(ar).Size()) +} + +type IndexRow interface { + KeySize() int + KeyTo([]byte) (int, error) + Key() []byte + + ValueSize() int + ValueTo([]byte) (int, error) + Value() []byte +} + +type AnalysisResult struct { + DocID string + Rows []IndexRow + + // scorch + Document *document.Document + Analyzed []analysis.TokenFrequencies + Length []int +} + +func (a *AnalysisResult) Size() int { + rv := reflectStaticSizeAnalysisResult + for _, analyzedI := range a.Analyzed { + rv += analyzedI.Size() + } + rv += len(a.Length) * size.SizeOfInt + return rv +} + +type AnalysisWork struct { + i Index + d *document.Document + rc chan *AnalysisResult +} + +func NewAnalysisWork(i Index, d *document.Document, rc chan *AnalysisResult) *AnalysisWork { + return &AnalysisWork{ + i: i, + d: d, + rc: rc, + } +} + +type AnalysisQueue struct { + queue chan *AnalysisWork + done chan struct{} +} + +func (q *AnalysisQueue) Queue(work *AnalysisWork) { + q.queue <- work +} + +func (q *AnalysisQueue) Close() { + close(q.done) +} + +func NewAnalysisQueue(numWorkers int) *AnalysisQueue { + rv := AnalysisQueue{ + queue: make(chan *AnalysisWork), + done: make(chan struct{}), + } + for i := 0; i < numWorkers; i++ { + go AnalysisWorker(rv) + } + return &rv +} + +func AnalysisWorker(q AnalysisQueue) { + // read work off the queue + for { + select { + case <-q.done: + return + case w := <-q.queue: + r := w.i.Analyze(w.d) + w.rc <- r + } + } +} diff --git a/vendor/github.com/blevesearch/bleve/index/field_cache.go b/vendor/github.com/blevesearch/bleve/index/field_cache.go new file mode 100644 index 0000000..9354081 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/field_cache.go @@ -0,0 +1,88 @@ +// Copyright (c) 2015 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package index + +import ( + "sync" +) + +type FieldCache struct { + fieldIndexes map[string]uint16 + indexFields []string + lastFieldIndex int + mutex sync.RWMutex +} + +func NewFieldCache() *FieldCache { + return &FieldCache{ + fieldIndexes: make(map[string]uint16), + lastFieldIndex: -1, + } +} + +func (f *FieldCache) AddExisting(field string, index uint16) { + f.mutex.Lock() + f.addLOCKED(field, index) + f.mutex.Unlock() +} + +func (f *FieldCache) addLOCKED(field string, index uint16) uint16 { + f.fieldIndexes[field] = index + if len(f.indexFields) < int(index)+1 { + prevIndexFields := f.indexFields + f.indexFields = make([]string, int(index)+16) + copy(f.indexFields, prevIndexFields) + } + f.indexFields[int(index)] = field + if int(index) > f.lastFieldIndex { + f.lastFieldIndex = int(index) + } + return index +} + +// FieldNamed returns the index of the field, and whether or not it existed +// before this call. if createIfMissing is true, and new field index is assigned +// but the second return value will still be false +func (f *FieldCache) FieldNamed(field string, createIfMissing bool) (uint16, bool) { + f.mutex.RLock() + if index, ok := f.fieldIndexes[field]; ok { + f.mutex.RUnlock() + return index, true + } else if !createIfMissing { + f.mutex.RUnlock() + return 0, false + } + // trade read lock for write lock + f.mutex.RUnlock() + f.mutex.Lock() + // need to check again with write lock + if index, ok := f.fieldIndexes[field]; ok { + f.mutex.Unlock() + return index, true + } + // assign next field id + index := f.addLOCKED(field, uint16(f.lastFieldIndex+1)) + f.mutex.Unlock() + return index, false +} + +func (f *FieldCache) FieldIndexed(index uint16) (field string) { + f.mutex.RLock() + if int(index) < len(f.indexFields) { + field = f.indexFields[int(index)] + } + f.mutex.RUnlock() + return field +} diff --git a/vendor/github.com/blevesearch/bleve/index/index.go b/vendor/github.com/blevesearch/bleve/index/index.go new file mode 100644 index 0000000..3e866f3 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/index.go @@ -0,0 +1,369 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package index + +import ( + "bytes" + "encoding/json" + "fmt" + "reflect" + + "github.com/blevesearch/bleve/document" + "github.com/blevesearch/bleve/index/store" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeTermFieldDoc int +var reflectStaticSizeTermFieldVector int + +func init() { + var tfd TermFieldDoc + reflectStaticSizeTermFieldDoc = int(reflect.TypeOf(tfd).Size()) + var tfv TermFieldVector + reflectStaticSizeTermFieldVector = int(reflect.TypeOf(tfv).Size()) +} + +var ErrorUnknownStorageType = fmt.Errorf("unknown storage type") + +type Index interface { + Open() error + Close() error + + Update(doc *document.Document) error + Delete(id string) error + Batch(batch *Batch) error + + SetInternal(key, val []byte) error + DeleteInternal(key []byte) error + + // Reader returns a low-level accessor on the index data. Close it to + // release associated resources. + Reader() (IndexReader, error) + + Stats() json.Marshaler + StatsMap() map[string]interface{} + + Analyze(d *document.Document) *AnalysisResult + + Advanced() (store.KVStore, error) +} + +type DocumentFieldTermVisitor func(field string, term []byte) + +type IndexReader interface { + TermFieldReader(term []byte, field string, includeFreq, includeNorm, includeTermVectors bool) (TermFieldReader, error) + + // DocIDReader returns an iterator over all doc ids + // The caller must close returned instance to release associated resources. + DocIDReaderAll() (DocIDReader, error) + + DocIDReaderOnly(ids []string) (DocIDReader, error) + + FieldDict(field string) (FieldDict, error) + + // FieldDictRange is currently defined to include the start and end terms + FieldDictRange(field string, startTerm []byte, endTerm []byte) (FieldDict, error) + FieldDictPrefix(field string, termPrefix []byte) (FieldDict, error) + + Document(id string) (*document.Document, error) + DocumentVisitFieldTerms(id IndexInternalID, fields []string, visitor DocumentFieldTermVisitor) error + + DocValueReader(fields []string) (DocValueReader, error) + + Fields() ([]string, error) + + GetInternal(key []byte) ([]byte, error) + + DocCount() (uint64, error) + + ExternalID(id IndexInternalID) (string, error) + InternalID(id string) (IndexInternalID, error) + + DumpAll() chan interface{} + DumpDoc(id string) chan interface{} + DumpFields() chan interface{} + + Close() error +} + +// The Regexp interface defines the subset of the regexp.Regexp API +// methods that are used by bleve indexes, allowing callers to pass in +// alternate implementations. +type Regexp interface { + FindStringIndex(s string) (loc []int) + + LiteralPrefix() (prefix string, complete bool) + + String() string +} + +type IndexReaderRegexp interface { + FieldDictRegexp(field string, regex string) (FieldDict, error) +} + +type IndexReaderFuzzy interface { + FieldDictFuzzy(field string, term string, fuzziness int, prefix string) (FieldDict, error) +} + +type IndexReaderOnly interface { + FieldDictOnly(field string, onlyTerms [][]byte, includeCount bool) (FieldDict, error) +} + +type IndexReaderContains interface { + FieldDictContains(field string) (FieldDictContains, error) +} + +// FieldTerms contains the terms used by a document, keyed by field +type FieldTerms map[string][]string + +// FieldsNotYetCached returns a list of fields not yet cached out of a larger list of fields +func (f FieldTerms) FieldsNotYetCached(fields []string) []string { + rv := make([]string, 0, len(fields)) + for _, field := range fields { + if _, ok := f[field]; !ok { + rv = append(rv, field) + } + } + return rv +} + +// Merge will combine two FieldTerms +// it assumes that the terms lists are complete (thus do not need to be merged) +// field terms from the other list always replace the ones in the receiver +func (f FieldTerms) Merge(other FieldTerms) { + for field, terms := range other { + f[field] = terms + } +} + +type TermFieldVector struct { + Field string + ArrayPositions []uint64 + Pos uint64 + Start uint64 + End uint64 +} + +func (tfv *TermFieldVector) Size() int { + return reflectStaticSizeTermFieldVector + size.SizeOfPtr + + len(tfv.Field) + len(tfv.ArrayPositions)*size.SizeOfUint64 +} + +// IndexInternalID is an opaque document identifier interal to the index impl +type IndexInternalID []byte + +func (id IndexInternalID) Equals(other IndexInternalID) bool { + return id.Compare(other) == 0 +} + +func (id IndexInternalID) Compare(other IndexInternalID) int { + return bytes.Compare(id, other) +} + +type TermFieldDoc struct { + Term string + ID IndexInternalID + Freq uint64 + Norm float64 + Vectors []*TermFieldVector +} + +func (tfd *TermFieldDoc) Size() int { + sizeInBytes := reflectStaticSizeTermFieldDoc + size.SizeOfPtr + + len(tfd.Term) + len(tfd.ID) + + for _, entry := range tfd.Vectors { + sizeInBytes += entry.Size() + } + + return sizeInBytes +} + +// Reset allows an already allocated TermFieldDoc to be reused +func (tfd *TermFieldDoc) Reset() *TermFieldDoc { + // remember the []byte used for the ID + id := tfd.ID + vectors := tfd.Vectors + // idiom to copy over from empty TermFieldDoc (0 allocations) + *tfd = TermFieldDoc{} + // reuse the []byte already allocated (and reset len to 0) + tfd.ID = id[:0] + tfd.Vectors = vectors[:0] + return tfd +} + +// TermFieldReader is the interface exposing the enumeration of documents +// containing a given term in a given field. Documents are returned in byte +// lexicographic order over their identifiers. +type TermFieldReader interface { + // Next returns the next document containing the term in this field, or nil + // when it reaches the end of the enumeration. The preAlloced TermFieldDoc + // is optional, and when non-nil, will be used instead of allocating memory. + Next(preAlloced *TermFieldDoc) (*TermFieldDoc, error) + + // Advance resets the enumeration at specified document or its immediate + // follower. + Advance(ID IndexInternalID, preAlloced *TermFieldDoc) (*TermFieldDoc, error) + + // Count returns the number of documents contains the term in this field. + Count() uint64 + Close() error + + Size() int +} + +type DictEntry struct { + Term string + Count uint64 +} + +type FieldDict interface { + Next() (*DictEntry, error) + Close() error +} + +type FieldDictContains interface { + Contains(key []byte) (bool, error) +} + +// DocIDReader is the interface exposing enumeration of documents identifiers. +// Close the reader to release associated resources. +type DocIDReader interface { + // Next returns the next document internal identifier in the natural + // index order, nil when the end of the sequence is reached. + Next() (IndexInternalID, error) + + // Advance resets the iteration to the first internal identifier greater than + // or equal to ID. If ID is smaller than the start of the range, the iteration + // will start there instead. If ID is greater than or equal to the end of + // the range, Next() call will return io.EOF. + Advance(ID IndexInternalID) (IndexInternalID, error) + + Size() int + + Close() error +} + +type BatchCallback func(error) + +type Batch struct { + IndexOps map[string]*document.Document + InternalOps map[string][]byte + persistedCallback BatchCallback +} + +func NewBatch() *Batch { + return &Batch{ + IndexOps: make(map[string]*document.Document), + InternalOps: make(map[string][]byte), + } +} + +func (b *Batch) Update(doc *document.Document) { + b.IndexOps[doc.ID] = doc +} + +func (b *Batch) Delete(id string) { + b.IndexOps[id] = nil +} + +func (b *Batch) SetInternal(key, val []byte) { + b.InternalOps[string(key)] = val +} + +func (b *Batch) DeleteInternal(key []byte) { + b.InternalOps[string(key)] = nil +} + +func (b *Batch) SetPersistedCallback(f BatchCallback) { + b.persistedCallback = f +} + +func (b *Batch) PersistedCallback() BatchCallback { + return b.persistedCallback +} + +func (b *Batch) String() string { + rv := fmt.Sprintf("Batch (%d ops, %d internal ops)\n", len(b.IndexOps), len(b.InternalOps)) + for k, v := range b.IndexOps { + if v != nil { + rv += fmt.Sprintf("\tINDEX - '%s'\n", k) + } else { + rv += fmt.Sprintf("\tDELETE - '%s'\n", k) + } + } + for k, v := range b.InternalOps { + if v != nil { + rv += fmt.Sprintf("\tSET INTERNAL - '%s'\n", k) + } else { + rv += fmt.Sprintf("\tDELETE INTERNAL - '%s'\n", k) + } + } + return rv +} + +func (b *Batch) Reset() { + b.IndexOps = make(map[string]*document.Document) + b.InternalOps = make(map[string][]byte) + b.persistedCallback = nil +} + +func (b *Batch) Merge(o *Batch) { + for k, v := range o.IndexOps { + b.IndexOps[k] = v + } + for k, v := range o.InternalOps { + b.InternalOps[k] = v + } +} + +func (b *Batch) TotalDocSize() int { + var s int + for k, v := range b.IndexOps { + if v != nil { + s += v.Size() + size.SizeOfString + } + s += len(k) + } + return s +} + +// Optimizable represents an optional interface that implementable by +// optimizable resources (e.g., TermFieldReaders, Searchers). These +// optimizable resources are provided the same OptimizableContext +// instance, so that they can coordinate via dynamic interface +// casting. +type Optimizable interface { + Optimize(kind string, octx OptimizableContext) (OptimizableContext, error) +} + +// Represents a result of optimization -- see the Finish() method. +type Optimized interface{} + +type OptimizableContext interface { + // Once all the optimzable resources have been provided the same + // OptimizableContext instance, the optimization preparations are + // finished or completed via the Finish() method. + // + // Depending on the optimization being performed, the Finish() + // method might return a non-nil Optimized instance. For example, + // the Optimized instance might represent an optimized + // TermFieldReader instance. + Finish() (Optimized, error) +} + +type DocValueReader interface { + VisitDocValues(id IndexInternalID, visitor DocumentFieldTermVisitor) error +} diff --git a/vendor/github.com/blevesearch/bleve/index/store/batch.go b/vendor/github.com/blevesearch/bleve/index/store/batch.go new file mode 100644 index 0000000..7110526 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/store/batch.go @@ -0,0 +1,62 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package store + +type op struct { + K []byte + V []byte +} + +type EmulatedBatch struct { + Ops []*op + Merger *EmulatedMerge +} + +func NewEmulatedBatch(mo MergeOperator) *EmulatedBatch { + return &EmulatedBatch{ + Ops: make([]*op, 0, 1000), + Merger: NewEmulatedMerge(mo), + } +} + +func (b *EmulatedBatch) Set(key, val []byte) { + ck := make([]byte, len(key)) + copy(ck, key) + cv := make([]byte, len(val)) + copy(cv, val) + b.Ops = append(b.Ops, &op{ck, cv}) +} + +func (b *EmulatedBatch) Delete(key []byte) { + ck := make([]byte, len(key)) + copy(ck, key) + b.Ops = append(b.Ops, &op{ck, nil}) +} + +func (b *EmulatedBatch) Merge(key, val []byte) { + ck := make([]byte, len(key)) + copy(ck, key) + cv := make([]byte, len(val)) + copy(cv, val) + b.Merger.Merge(key, val) +} + +func (b *EmulatedBatch) Reset() { + b.Ops = b.Ops[:0] +} + +func (b *EmulatedBatch) Close() error { + return nil +} diff --git a/vendor/github.com/blevesearch/bleve/index/store/kvstore.go b/vendor/github.com/blevesearch/bleve/index/store/kvstore.go new file mode 100644 index 0000000..34698c7 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/store/kvstore.go @@ -0,0 +1,174 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package store + +import "encoding/json" + +// KVStore is an abstraction for working with KV stores. Note that +// in order to be used with the bleve.registry, it must also implement +// a constructor function of the registry.KVStoreConstructor type. +type KVStore interface { + + // Writer returns a KVWriter which can be used to + // make changes to the KVStore. If a writer cannot + // be obtained a non-nil error is returned. + Writer() (KVWriter, error) + + // Reader returns a KVReader which can be used to + // read data from the KVStore. If a reader cannot + // be obtained a non-nil error is returned. + Reader() (KVReader, error) + + // Close closes the KVStore + Close() error +} + +// KVReader is an abstraction of an **ISOLATED** reader +// In this context isolated is defined to mean that +// writes/deletes made after the KVReader is opened +// are not observed. +// Because there is usually a cost associated with +// keeping isolated readers active, users should +// close them as soon as they are no longer needed. +type KVReader interface { + + // Get returns the value associated with the key + // If the key does not exist, nil is returned. + // The caller owns the bytes returned. + Get(key []byte) ([]byte, error) + + // MultiGet retrieves multiple values in one call. + MultiGet(keys [][]byte) ([][]byte, error) + + // PrefixIterator returns a KVIterator that will + // visit all K/V pairs with the provided prefix + PrefixIterator(prefix []byte) KVIterator + + // RangeIterator returns a KVIterator that will + // visit all K/V pairs >= start AND < end + RangeIterator(start, end []byte) KVIterator + + // Close closes the iterator + Close() error +} + +// KVIterator is an abstraction around key iteration +type KVIterator interface { + + // Seek will advance the iterator to the specified key + Seek(key []byte) + + // Next will advance the iterator to the next key + Next() + + // Key returns the key pointed to by the iterator + // The bytes returned are **ONLY** valid until the next call to Seek/Next/Close + // Continued use after that requires that they be copied. + Key() []byte + + // Value returns the value pointed to by the iterator + // The bytes returned are **ONLY** valid until the next call to Seek/Next/Close + // Continued use after that requires that they be copied. + Value() []byte + + // Valid returns whether or not the iterator is in a valid state + Valid() bool + + // Current returns Key(),Value(),Valid() in a single operation + Current() ([]byte, []byte, bool) + + // Close closes the iterator + Close() error +} + +// KVWriter is an abstraction for mutating the KVStore +// KVWriter does **NOT** enforce restrictions of a single writer +// if the underlying KVStore allows concurrent writes, the +// KVWriter interface should also do so, it is up to the caller +// to do this in a way that is safe and makes sense +type KVWriter interface { + + // NewBatch returns a KVBatch for performing batch operations on this kvstore + NewBatch() KVBatch + + // NewBatchEx returns a KVBatch and an associated byte array + // that's pre-sized based on the KVBatchOptions. The caller can + // use the returned byte array for keys and values associated with + // the batch. Once the batch is either executed or closed, the + // associated byte array should no longer be accessed by the + // caller. + NewBatchEx(KVBatchOptions) ([]byte, KVBatch, error) + + // ExecuteBatch will execute the KVBatch, the provided KVBatch **MUST** have + // been created by the same KVStore (though not necessarily the same KVWriter) + // Batch execution is atomic, either all the operations or none will be performed + ExecuteBatch(batch KVBatch) error + + // Close closes the writer + Close() error +} + +// KVBatchOptions provides the KVWriter.NewBatchEx() method with batch +// preparation and preallocation information. +type KVBatchOptions struct { + // TotalBytes is the sum of key and value bytes needed by the + // caller for the entire batch. It affects the size of the + // returned byte array of KVWrite.NewBatchEx(). + TotalBytes int + + // NumSets is the number of Set() calls the caller will invoke on + // the KVBatch. + NumSets int + + // NumDeletes is the number of Delete() calls the caller will invoke + // on the KVBatch. + NumDeletes int + + // NumMerges is the number of Merge() calls the caller will invoke + // on the KVBatch. + NumMerges int +} + +// KVBatch is an abstraction for making multiple KV mutations at once +type KVBatch interface { + + // Set updates the key with the specified value + // both key and value []byte may be reused as soon as this call returns + Set(key, val []byte) + + // Delete removes the specified key + // the key []byte may be reused as soon as this call returns + Delete(key []byte) + + // Merge merges old value with the new value at the specified key + // as prescribed by the KVStores merge operator + // both key and value []byte may be reused as soon as this call returns + Merge(key, val []byte) + + // Reset frees resources for this batch and allows reuse + Reset() + + // Close frees resources + Close() error +} + +// KVStoreStats is an optional interface that KVStores can implement +// if they're able to report any useful stats +type KVStoreStats interface { + // Stats returns a JSON serializable object representing stats for this KVStore + Stats() json.Marshaler + + StatsMap() map[string]interface{} +} diff --git a/vendor/github.com/blevesearch/bleve/index/store/merge.go b/vendor/github.com/blevesearch/bleve/index/store/merge.go new file mode 100644 index 0000000..ca2561b --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/store/merge.go @@ -0,0 +1,64 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package store + +// At the moment this happens to be the same interface as described by +// RocksDB, but this may not always be the case. + +type MergeOperator interface { + + // FullMerge the full sequence of operands on top of the existingValue + // if no value currently exists, existingValue is nil + // return the merged value, and success/failure + FullMerge(key, existingValue []byte, operands [][]byte) ([]byte, bool) + + // Partially merge these two operands. + // If partial merge cannot be done, return nil,false, which will defer + // all processing until the FullMerge is done. + PartialMerge(key, leftOperand, rightOperand []byte) ([]byte, bool) + + // Name returns an identifier for the operator + Name() string +} + +type EmulatedMerge struct { + Merges map[string][][]byte + mo MergeOperator +} + +func NewEmulatedMerge(mo MergeOperator) *EmulatedMerge { + return &EmulatedMerge{ + Merges: make(map[string][][]byte), + mo: mo, + } +} + +func (m *EmulatedMerge) Merge(key, val []byte) { + ops, ok := m.Merges[string(key)] + if ok && len(ops) > 0 { + last := ops[len(ops)-1] + mergedVal, partialMergeOk := m.mo.PartialMerge(key, last, val) + if partialMergeOk { + // replace last entry with the result of the merge + ops[len(ops)-1] = mergedVal + } else { + // could not partial merge, append this to the end + ops = append(ops, val) + } + } else { + ops = [][]byte{val} + } + m.Merges[string(key)] = ops +} diff --git a/vendor/github.com/blevesearch/bleve/index/store/multiget.go b/vendor/github.com/blevesearch/bleve/index/store/multiget.go new file mode 100644 index 0000000..635bcd4 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/index/store/multiget.go @@ -0,0 +1,33 @@ +// Copyright (c) 2016 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package store + +// MultiGet is a helper function to retrieve mutiple keys from a +// KVReader, and might be used by KVStore implementations that don't +// have a native multi-get facility. +func MultiGet(kvreader KVReader, keys [][]byte) ([][]byte, error) { + vals := make([][]byte, 0, len(keys)) + + for i, key := range keys { + val, err := kvreader.Get(key) + if err != nil { + return nil, err + } + + vals[i] = val + } + + return vals, nil +} diff --git a/vendor/github.com/blevesearch/bleve/numeric/bin.go b/vendor/github.com/blevesearch/bleve/numeric/bin.go new file mode 100644 index 0000000..368952a --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/numeric/bin.go @@ -0,0 +1,43 @@ +package numeric + +var interleaveMagic = []uint64{ + 0x5555555555555555, + 0x3333333333333333, + 0x0F0F0F0F0F0F0F0F, + 0x00FF00FF00FF00FF, + 0x0000FFFF0000FFFF, + 0x00000000FFFFFFFF, + 0xAAAAAAAAAAAAAAAA, +} + +var interleaveShift = []uint{1, 2, 4, 8, 16} + +// Interleave the first 32 bits of each uint64 +// apdated from org.apache.lucene.util.BitUtil +// which was adapted from: +// http://graphics.stanford.edu/~seander/bithacks.html#InterleaveBMN +func Interleave(v1, v2 uint64) uint64 { + v1 = (v1 | (v1 << interleaveShift[4])) & interleaveMagic[4] + v1 = (v1 | (v1 << interleaveShift[3])) & interleaveMagic[3] + v1 = (v1 | (v1 << interleaveShift[2])) & interleaveMagic[2] + v1 = (v1 | (v1 << interleaveShift[1])) & interleaveMagic[1] + v1 = (v1 | (v1 << interleaveShift[0])) & interleaveMagic[0] + v2 = (v2 | (v2 << interleaveShift[4])) & interleaveMagic[4] + v2 = (v2 | (v2 << interleaveShift[3])) & interleaveMagic[3] + v2 = (v2 | (v2 << interleaveShift[2])) & interleaveMagic[2] + v2 = (v2 | (v2 << interleaveShift[1])) & interleaveMagic[1] + v2 = (v2 | (v2 << interleaveShift[0])) & interleaveMagic[0] + return (v2 << 1) | v1 +} + +// Deinterleave the 32-bit value starting at position 0 +// to get the other 32-bit value, shift it by 1 first +func Deinterleave(b uint64) uint64 { + b &= interleaveMagic[0] + b = (b ^ (b >> interleaveShift[0])) & interleaveMagic[1] + b = (b ^ (b >> interleaveShift[1])) & interleaveMagic[2] + b = (b ^ (b >> interleaveShift[2])) & interleaveMagic[3] + b = (b ^ (b >> interleaveShift[3])) & interleaveMagic[4] + b = (b ^ (b >> interleaveShift[4])) & interleaveMagic[5] + return b +} diff --git a/vendor/github.com/blevesearch/bleve/numeric/float.go b/vendor/github.com/blevesearch/bleve/numeric/float.go new file mode 100644 index 0000000..2bb14d7 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/numeric/float.go @@ -0,0 +1,34 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package numeric + +import ( + "math" +) + +func Float64ToInt64(f float64) int64 { + fasint := int64(math.Float64bits(f)) + if fasint < 0 { + fasint = fasint ^ 0x7fffffffffffffff + } + return fasint +} + +func Int64ToFloat64(i int64) float64 { + if i < 0 { + i ^= 0x7fffffffffffffff + } + return math.Float64frombits(uint64(i)) +} diff --git a/vendor/github.com/blevesearch/bleve/numeric/prefix_coded.go b/vendor/github.com/blevesearch/bleve/numeric/prefix_coded.go new file mode 100644 index 0000000..29bd0fc --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/numeric/prefix_coded.go @@ -0,0 +1,111 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package numeric + +import "fmt" + +const ShiftStartInt64 byte = 0x20 + +// PrefixCoded is a byte array encoding of +// 64-bit numeric values shifted by 0-63 bits +type PrefixCoded []byte + +func NewPrefixCodedInt64(in int64, shift uint) (PrefixCoded, error) { + rv, _, err := NewPrefixCodedInt64Prealloc(in, shift, nil) + return rv, err +} + +func NewPrefixCodedInt64Prealloc(in int64, shift uint, prealloc []byte) ( + rv PrefixCoded, preallocRest []byte, err error) { + if shift > 63 { + return nil, prealloc, fmt.Errorf("cannot shift %d, must be between 0 and 63", shift) + } + + nChars := ((63 - shift) / 7) + 1 + + size := int(nChars + 1) + if len(prealloc) >= size { + rv = PrefixCoded(prealloc[0:size]) + preallocRest = prealloc[size:] + } else { + rv = make(PrefixCoded, size) + } + + rv[0] = ShiftStartInt64 + byte(shift) + + sortableBits := int64(uint64(in) ^ 0x8000000000000000) + sortableBits = int64(uint64(sortableBits) >> shift) + for nChars > 0 { + // Store 7 bits per byte for compatibility + // with UTF-8 encoding of terms + rv[nChars] = byte(sortableBits & 0x7f) + nChars-- + sortableBits = int64(uint64(sortableBits) >> 7) + } + + return rv, preallocRest, nil +} + +func MustNewPrefixCodedInt64(in int64, shift uint) PrefixCoded { + rv, err := NewPrefixCodedInt64(in, shift) + if err != nil { + panic(err) + } + return rv +} + +// Shift returns the number of bits shifted +// returns 0 if in uninitialized state +func (p PrefixCoded) Shift() (uint, error) { + if len(p) > 0 { + shift := p[0] - ShiftStartInt64 + if shift < 0 || shift < 63 { + return uint(shift), nil + } + } + return 0, fmt.Errorf("invalid prefix coded value") +} + +func (p PrefixCoded) Int64() (int64, error) { + shift, err := p.Shift() + if err != nil { + return 0, err + } + var sortableBits int64 + for _, inbyte := range p[1:] { + sortableBits <<= 7 + sortableBits |= int64(inbyte) + } + return int64(uint64((sortableBits << shift)) ^ 0x8000000000000000), nil +} + +func ValidPrefixCodedTerm(p string) (bool, int) { + return ValidPrefixCodedTermBytes([]byte(p)) +} + +func ValidPrefixCodedTermBytes(p []byte) (bool, int) { + if len(p) > 0 { + if p[0] < ShiftStartInt64 || p[0] > ShiftStartInt64+63 { + return false, 0 + } + shift := p[0] - ShiftStartInt64 + nChars := ((63 - int(shift)) / 7) + 1 + if len(p) != nChars+1 { + return false, 0 + } + return true, int(shift) + } + return false, 0 +} diff --git a/vendor/github.com/blevesearch/bleve/registry/analyzer.go b/vendor/github.com/blevesearch/bleve/registry/analyzer.go new file mode 100644 index 0000000..340e349 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/analyzer.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" +) + +func RegisterAnalyzer(name string, constructor AnalyzerConstructor) { + _, exists := analyzers[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate analyzer named '%s'", name)) + } + analyzers[name] = constructor +} + +type AnalyzerConstructor func(config map[string]interface{}, cache *Cache) (*analysis.Analyzer, error) +type AnalyzerRegistry map[string]AnalyzerConstructor + +type AnalyzerCache struct { + *ConcurrentCache +} + +func NewAnalyzerCache() *AnalyzerCache { + return &AnalyzerCache{ + NewConcurrentCache(), + } +} + +func AnalyzerBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := analyzers[name] + if !registered { + return nil, fmt.Errorf("no analyzer with name or type '%s' registered", name) + } + analyzer, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building analyzer: %v", err) + } + return analyzer, nil +} + +func (c *AnalyzerCache) AnalyzerNamed(name string, cache *Cache) (*analysis.Analyzer, error) { + item, err := c.ItemNamed(name, cache, AnalyzerBuild) + if err != nil { + return nil, err + } + return item.(*analysis.Analyzer), nil +} + +func (c *AnalyzerCache) DefineAnalyzer(name string, typ string, config map[string]interface{}, cache *Cache) (*analysis.Analyzer, error) { + item, err := c.DefineItem(name, typ, config, cache, AnalyzerBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("analyzer named '%s' already defined", name) + } + return nil, err + } + return item.(*analysis.Analyzer), nil +} + +func AnalyzerTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range analyzers { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/cache.go b/vendor/github.com/blevesearch/bleve/registry/cache.go new file mode 100644 index 0000000..b0ce852 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/cache.go @@ -0,0 +1,87 @@ +// Copyright (c) 2016 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + "sync" +) + +var ErrAlreadyDefined = fmt.Errorf("item already defined") + +type CacheBuild func(name string, config map[string]interface{}, cache *Cache) (interface{}, error) + +type ConcurrentCache struct { + mutex sync.RWMutex + data map[string]interface{} +} + +func NewConcurrentCache() *ConcurrentCache { + return &ConcurrentCache{ + data: make(map[string]interface{}), + } +} + +func (c *ConcurrentCache) ItemNamed(name string, cache *Cache, build CacheBuild) (interface{}, error) { + c.mutex.RLock() + item, cached := c.data[name] + if cached { + c.mutex.RUnlock() + return item, nil + } + // give up read lock + c.mutex.RUnlock() + // try to build it + newItem, err := build(name, nil, cache) + if err != nil { + return nil, err + } + // acquire write lock + c.mutex.Lock() + defer c.mutex.Unlock() + // check again because it could have been created while trading locks + item, cached = c.data[name] + if cached { + return item, nil + } + c.data[name] = newItem + return newItem, nil +} + +func (c *ConcurrentCache) DefineItem(name string, typ string, config map[string]interface{}, cache *Cache, build CacheBuild) (interface{}, error) { + c.mutex.RLock() + _, cached := c.data[name] + if cached { + c.mutex.RUnlock() + return nil, ErrAlreadyDefined + } + // give up read lock so others lookups can proceed + c.mutex.RUnlock() + // really not there, try to build it + newItem, err := build(typ, config, cache) + if err != nil { + return nil, err + } + // now we've built it, acquire lock + c.mutex.Lock() + defer c.mutex.Unlock() + // check again because it could have been created while trading locks + _, cached = c.data[name] + if cached { + return nil, ErrAlreadyDefined + } + c.data[name] = newItem + return newItem, nil +} diff --git a/vendor/github.com/blevesearch/bleve/registry/char_filter.go b/vendor/github.com/blevesearch/bleve/registry/char_filter.go new file mode 100644 index 0000000..4696713 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/char_filter.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" +) + +func RegisterCharFilter(name string, constructor CharFilterConstructor) { + _, exists := charFilters[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate char filter named '%s'", name)) + } + charFilters[name] = constructor +} + +type CharFilterConstructor func(config map[string]interface{}, cache *Cache) (analysis.CharFilter, error) +type CharFilterRegistry map[string]CharFilterConstructor + +type CharFilterCache struct { + *ConcurrentCache +} + +func NewCharFilterCache() *CharFilterCache { + return &CharFilterCache{ + NewConcurrentCache(), + } +} + +func CharFilterBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := charFilters[name] + if !registered { + return nil, fmt.Errorf("no char filter with name or type '%s' registered", name) + } + charFilter, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building char filter: %v", err) + } + return charFilter, nil +} + +func (c *CharFilterCache) CharFilterNamed(name string, cache *Cache) (analysis.CharFilter, error) { + item, err := c.ItemNamed(name, cache, CharFilterBuild) + if err != nil { + return nil, err + } + return item.(analysis.CharFilter), nil +} + +func (c *CharFilterCache) DefineCharFilter(name string, typ string, config map[string]interface{}, cache *Cache) (analysis.CharFilter, error) { + item, err := c.DefineItem(name, typ, config, cache, CharFilterBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("char filter named '%s' already defined", name) + } + return nil, err + } + return item.(analysis.CharFilter), nil +} + +func CharFilterTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range charFilters { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/datetime_parser.go b/vendor/github.com/blevesearch/bleve/registry/datetime_parser.go new file mode 100644 index 0000000..2cd46e5 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/datetime_parser.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" +) + +func RegisterDateTimeParser(name string, constructor DateTimeParserConstructor) { + _, exists := dateTimeParsers[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate date time parser named '%s'", name)) + } + dateTimeParsers[name] = constructor +} + +type DateTimeParserConstructor func(config map[string]interface{}, cache *Cache) (analysis.DateTimeParser, error) +type DateTimeParserRegistry map[string]DateTimeParserConstructor + +type DateTimeParserCache struct { + *ConcurrentCache +} + +func NewDateTimeParserCache() *DateTimeParserCache { + return &DateTimeParserCache{ + NewConcurrentCache(), + } +} + +func DateTimeParserBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := dateTimeParsers[name] + if !registered { + return nil, fmt.Errorf("no date time parser with name or type '%s' registered", name) + } + dateTimeParser, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building date time parser: %v", err) + } + return dateTimeParser, nil +} + +func (c *DateTimeParserCache) DateTimeParserNamed(name string, cache *Cache) (analysis.DateTimeParser, error) { + item, err := c.ItemNamed(name, cache, DateTimeParserBuild) + if err != nil { + return nil, err + } + return item.(analysis.DateTimeParser), nil +} + +func (c *DateTimeParserCache) DefineDateTimeParser(name string, typ string, config map[string]interface{}, cache *Cache) (analysis.DateTimeParser, error) { + item, err := c.DefineItem(name, typ, config, cache, DateTimeParserBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("date time parser named '%s' already defined", name) + } + return nil, err + } + return item.(analysis.DateTimeParser), nil +} + +func DateTimeParserTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range dateTimeParsers { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/fragment_formatter.go b/vendor/github.com/blevesearch/bleve/registry/fragment_formatter.go new file mode 100644 index 0000000..d0121d9 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/fragment_formatter.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/search/highlight" +) + +func RegisterFragmentFormatter(name string, constructor FragmentFormatterConstructor) { + _, exists := fragmentFormatters[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate fragment formatter named '%s'", name)) + } + fragmentFormatters[name] = constructor +} + +type FragmentFormatterConstructor func(config map[string]interface{}, cache *Cache) (highlight.FragmentFormatter, error) +type FragmentFormatterRegistry map[string]FragmentFormatterConstructor + +type FragmentFormatterCache struct { + *ConcurrentCache +} + +func NewFragmentFormatterCache() *FragmentFormatterCache { + return &FragmentFormatterCache{ + NewConcurrentCache(), + } +} + +func FragmentFormatterBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := fragmentFormatters[name] + if !registered { + return nil, fmt.Errorf("no fragment formatter with name or type '%s' registered", name) + } + fragmentFormatter, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building fragment formatter: %v", err) + } + return fragmentFormatter, nil +} + +func (c *FragmentFormatterCache) FragmentFormatterNamed(name string, cache *Cache) (highlight.FragmentFormatter, error) { + item, err := c.ItemNamed(name, cache, FragmentFormatterBuild) + if err != nil { + return nil, err + } + return item.(highlight.FragmentFormatter), nil +} + +func (c *FragmentFormatterCache) DefineFragmentFormatter(name string, typ string, config map[string]interface{}, cache *Cache) (highlight.FragmentFormatter, error) { + item, err := c.DefineItem(name, typ, config, cache, FragmentFormatterBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("fragment formatter named '%s' already defined", name) + } + return nil, err + } + return item.(highlight.FragmentFormatter), nil +} + +func FragmentFormatterTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range fragmentFormatters { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/fragmenter.go b/vendor/github.com/blevesearch/bleve/registry/fragmenter.go new file mode 100644 index 0000000..18ab2ac --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/fragmenter.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/search/highlight" +) + +func RegisterFragmenter(name string, constructor FragmenterConstructor) { + _, exists := fragmenters[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate fragmenter named '%s'", name)) + } + fragmenters[name] = constructor +} + +type FragmenterConstructor func(config map[string]interface{}, cache *Cache) (highlight.Fragmenter, error) +type FragmenterRegistry map[string]FragmenterConstructor + +type FragmenterCache struct { + *ConcurrentCache +} + +func NewFragmenterCache() *FragmenterCache { + return &FragmenterCache{ + NewConcurrentCache(), + } +} + +func FragmenterBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := fragmenters[name] + if !registered { + return nil, fmt.Errorf("no fragmenter with name or type '%s' registered", name) + } + fragmenter, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building fragmenter: %v", err) + } + return fragmenter, nil +} + +func (c *FragmenterCache) FragmenterNamed(name string, cache *Cache) (highlight.Fragmenter, error) { + item, err := c.ItemNamed(name, cache, FragmenterBuild) + if err != nil { + return nil, err + } + return item.(highlight.Fragmenter), nil +} + +func (c *FragmenterCache) DefineFragmenter(name string, typ string, config map[string]interface{}, cache *Cache) (highlight.Fragmenter, error) { + item, err := c.DefineItem(name, typ, config, cache, FragmenterBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("fragmenter named '%s' already defined", name) + } + return nil, err + } + return item.(highlight.Fragmenter), nil +} + +func FragmenterTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range fragmenters { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/highlighter.go b/vendor/github.com/blevesearch/bleve/registry/highlighter.go new file mode 100644 index 0000000..b84219c --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/highlighter.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/search/highlight" +) + +func RegisterHighlighter(name string, constructor HighlighterConstructor) { + _, exists := highlighters[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate highlighter named '%s'", name)) + } + highlighters[name] = constructor +} + +type HighlighterConstructor func(config map[string]interface{}, cache *Cache) (highlight.Highlighter, error) +type HighlighterRegistry map[string]HighlighterConstructor + +type HighlighterCache struct { + *ConcurrentCache +} + +func NewHighlighterCache() *HighlighterCache { + return &HighlighterCache{ + NewConcurrentCache(), + } +} + +func HighlighterBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := highlighters[name] + if !registered { + return nil, fmt.Errorf("no highlighter with name or type '%s' registered", name) + } + highlighter, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building highlighter: %v", err) + } + return highlighter, nil +} + +func (c *HighlighterCache) HighlighterNamed(name string, cache *Cache) (highlight.Highlighter, error) { + item, err := c.ItemNamed(name, cache, HighlighterBuild) + if err != nil { + return nil, err + } + return item.(highlight.Highlighter), nil +} + +func (c *HighlighterCache) DefineHighlighter(name string, typ string, config map[string]interface{}, cache *Cache) (highlight.Highlighter, error) { + item, err := c.DefineItem(name, typ, config, cache, HighlighterBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("highlighter named '%s' already defined", name) + } + return nil, err + } + return item.(highlight.Highlighter), nil +} + +func HighlighterTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range highlighters { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/index_type.go b/vendor/github.com/blevesearch/bleve/registry/index_type.go new file mode 100644 index 0000000..4da07c8 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/index_type.go @@ -0,0 +1,45 @@ +// Copyright (c) 2015 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/index" +) + +func RegisterIndexType(name string, constructor IndexTypeConstructor) { + _, exists := indexTypes[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate index encoding named '%s'", name)) + } + indexTypes[name] = constructor +} + +type IndexTypeConstructor func(storeName string, storeConfig map[string]interface{}, analysisQueue *index.AnalysisQueue) (index.Index, error) +type IndexTypeRegistry map[string]IndexTypeConstructor + +func IndexTypeConstructorByName(name string) IndexTypeConstructor { + return indexTypes[name] +} + +func IndexTypesAndInstances() ([]string, []string) { + var types []string + var instances []string + for name := range stores { + types = append(types, name) + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/registry.go b/vendor/github.com/blevesearch/bleve/registry/registry.go new file mode 100644 index 0000000..a0ea69c --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/registry.go @@ -0,0 +1,184 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/search/highlight" +) + +var stores = make(KVStoreRegistry, 0) +var indexTypes = make(IndexTypeRegistry, 0) + +// highlight +var fragmentFormatters = make(FragmentFormatterRegistry, 0) +var fragmenters = make(FragmenterRegistry, 0) +var highlighters = make(HighlighterRegistry, 0) + +// analysis +var charFilters = make(CharFilterRegistry, 0) +var tokenizers = make(TokenizerRegistry, 0) +var tokenMaps = make(TokenMapRegistry, 0) +var tokenFilters = make(TokenFilterRegistry, 0) +var analyzers = make(AnalyzerRegistry, 0) +var dateTimeParsers = make(DateTimeParserRegistry, 0) + +type Cache struct { + CharFilters *CharFilterCache + Tokenizers *TokenizerCache + TokenMaps *TokenMapCache + TokenFilters *TokenFilterCache + Analyzers *AnalyzerCache + DateTimeParsers *DateTimeParserCache + FragmentFormatters *FragmentFormatterCache + Fragmenters *FragmenterCache + Highlighters *HighlighterCache +} + +func NewCache() *Cache { + return &Cache{ + CharFilters: NewCharFilterCache(), + Tokenizers: NewTokenizerCache(), + TokenMaps: NewTokenMapCache(), + TokenFilters: NewTokenFilterCache(), + Analyzers: NewAnalyzerCache(), + DateTimeParsers: NewDateTimeParserCache(), + FragmentFormatters: NewFragmentFormatterCache(), + Fragmenters: NewFragmenterCache(), + Highlighters: NewHighlighterCache(), + } +} + +func typeFromConfig(config map[string]interface{}) (string, error) { + prop, ok := config["type"] + if !ok { + return "", fmt.Errorf("'type' property is not defined") + } + typ, ok := prop.(string) + if !ok { + return "", fmt.Errorf("'type' property must be a string, not %T", prop) + } + return typ, nil +} + +func (c *Cache) CharFilterNamed(name string) (analysis.CharFilter, error) { + return c.CharFilters.CharFilterNamed(name, c) +} + +func (c *Cache) DefineCharFilter(name string, config map[string]interface{}) (analysis.CharFilter, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.CharFilters.DefineCharFilter(name, typ, config, c) +} + +func (c *Cache) TokenizerNamed(name string) (analysis.Tokenizer, error) { + return c.Tokenizers.TokenizerNamed(name, c) +} + +func (c *Cache) DefineTokenizer(name string, config map[string]interface{}) (analysis.Tokenizer, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, fmt.Errorf("cannot resolve '%s' tokenizer type: %s", name, err) + } + return c.Tokenizers.DefineTokenizer(name, typ, config, c) +} + +func (c *Cache) TokenMapNamed(name string) (analysis.TokenMap, error) { + return c.TokenMaps.TokenMapNamed(name, c) +} + +func (c *Cache) DefineTokenMap(name string, config map[string]interface{}) (analysis.TokenMap, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.TokenMaps.DefineTokenMap(name, typ, config, c) +} + +func (c *Cache) TokenFilterNamed(name string) (analysis.TokenFilter, error) { + return c.TokenFilters.TokenFilterNamed(name, c) +} + +func (c *Cache) DefineTokenFilter(name string, config map[string]interface{}) (analysis.TokenFilter, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.TokenFilters.DefineTokenFilter(name, typ, config, c) +} + +func (c *Cache) AnalyzerNamed(name string) (*analysis.Analyzer, error) { + return c.Analyzers.AnalyzerNamed(name, c) +} + +func (c *Cache) DefineAnalyzer(name string, config map[string]interface{}) (*analysis.Analyzer, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.Analyzers.DefineAnalyzer(name, typ, config, c) +} + +func (c *Cache) DateTimeParserNamed(name string) (analysis.DateTimeParser, error) { + return c.DateTimeParsers.DateTimeParserNamed(name, c) +} + +func (c *Cache) DefineDateTimeParser(name string, config map[string]interface{}) (analysis.DateTimeParser, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.DateTimeParsers.DefineDateTimeParser(name, typ, config, c) +} + +func (c *Cache) FragmentFormatterNamed(name string) (highlight.FragmentFormatter, error) { + return c.FragmentFormatters.FragmentFormatterNamed(name, c) +} + +func (c *Cache) DefineFragmentFormatter(name string, config map[string]interface{}) (highlight.FragmentFormatter, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.FragmentFormatters.DefineFragmentFormatter(name, typ, config, c) +} + +func (c *Cache) FragmenterNamed(name string) (highlight.Fragmenter, error) { + return c.Fragmenters.FragmenterNamed(name, c) +} + +func (c *Cache) DefineFragmenter(name string, config map[string]interface{}) (highlight.Fragmenter, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.Fragmenters.DefineFragmenter(name, typ, config, c) +} + +func (c *Cache) HighlighterNamed(name string) (highlight.Highlighter, error) { + return c.Highlighters.HighlighterNamed(name, c) +} + +func (c *Cache) DefineHighlighter(name string, config map[string]interface{}) (highlight.Highlighter, error) { + typ, err := typeFromConfig(config) + if err != nil { + return nil, err + } + return c.Highlighters.DefineHighlighter(name, typ, config, c) +} diff --git a/vendor/github.com/blevesearch/bleve/registry/store.go b/vendor/github.com/blevesearch/bleve/registry/store.go new file mode 100644 index 0000000..8318776 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/store.go @@ -0,0 +1,51 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/index/store" +) + +func RegisterKVStore(name string, constructor KVStoreConstructor) { + _, exists := stores[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate store named '%s'", name)) + } + stores[name] = constructor +} + +// KVStoreConstructor is used to build a KVStore of a specific type when +// specificied by the index configuration. In addition to meeting the +// store.KVStore interface, KVStores must also support this constructor. +// Note that currently the values of config must +// be able to be marshaled and unmarshaled using the encoding/json library (used +// when reading/writing the index metadata file). +type KVStoreConstructor func(mo store.MergeOperator, config map[string]interface{}) (store.KVStore, error) +type KVStoreRegistry map[string]KVStoreConstructor + +func KVStoreConstructorByName(name string) KVStoreConstructor { + return stores[name] +} + +func KVStoreTypesAndInstances() ([]string, []string) { + var types []string + var instances []string + for name := range stores { + types = append(types, name) + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/token_filter.go b/vendor/github.com/blevesearch/bleve/registry/token_filter.go new file mode 100644 index 0000000..e202e15 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/token_filter.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" +) + +func RegisterTokenFilter(name string, constructor TokenFilterConstructor) { + _, exists := tokenFilters[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate token filter named '%s'", name)) + } + tokenFilters[name] = constructor +} + +type TokenFilterConstructor func(config map[string]interface{}, cache *Cache) (analysis.TokenFilter, error) +type TokenFilterRegistry map[string]TokenFilterConstructor + +type TokenFilterCache struct { + *ConcurrentCache +} + +func NewTokenFilterCache() *TokenFilterCache { + return &TokenFilterCache{ + NewConcurrentCache(), + } +} + +func TokenFilterBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := tokenFilters[name] + if !registered { + return nil, fmt.Errorf("no token filter with name or type '%s' registered", name) + } + tokenFilter, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building token filter: %v", err) + } + return tokenFilter, nil +} + +func (c *TokenFilterCache) TokenFilterNamed(name string, cache *Cache) (analysis.TokenFilter, error) { + item, err := c.ItemNamed(name, cache, TokenFilterBuild) + if err != nil { + return nil, err + } + return item.(analysis.TokenFilter), nil +} + +func (c *TokenFilterCache) DefineTokenFilter(name string, typ string, config map[string]interface{}, cache *Cache) (analysis.TokenFilter, error) { + item, err := c.DefineItem(name, typ, config, cache, TokenFilterBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("token filter named '%s' already defined", name) + } + return nil, err + } + return item.(analysis.TokenFilter), nil +} + +func TokenFilterTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range tokenFilters { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/token_maps.go b/vendor/github.com/blevesearch/bleve/registry/token_maps.go new file mode 100644 index 0000000..66ca08f --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/token_maps.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" +) + +func RegisterTokenMap(name string, constructor TokenMapConstructor) { + _, exists := tokenMaps[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate token map named '%s'", name)) + } + tokenMaps[name] = constructor +} + +type TokenMapConstructor func(config map[string]interface{}, cache *Cache) (analysis.TokenMap, error) +type TokenMapRegistry map[string]TokenMapConstructor + +type TokenMapCache struct { + *ConcurrentCache +} + +func NewTokenMapCache() *TokenMapCache { + return &TokenMapCache{ + NewConcurrentCache(), + } +} + +func TokenMapBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := tokenMaps[name] + if !registered { + return nil, fmt.Errorf("no token map with name or type '%s' registered", name) + } + tokenMap, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building token map: %v", err) + } + return tokenMap, nil +} + +func (c *TokenMapCache) TokenMapNamed(name string, cache *Cache) (analysis.TokenMap, error) { + item, err := c.ItemNamed(name, cache, TokenMapBuild) + if err != nil { + return nil, err + } + return item.(analysis.TokenMap), nil +} + +func (c *TokenMapCache) DefineTokenMap(name string, typ string, config map[string]interface{}, cache *Cache) (analysis.TokenMap, error) { + item, err := c.DefineItem(name, typ, config, cache, TokenMapBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("token map named '%s' already defined", name) + } + return nil, err + } + return item.(analysis.TokenMap), nil +} + +func TokenMapTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range tokenMaps { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/registry/tokenizer.go b/vendor/github.com/blevesearch/bleve/registry/tokenizer.go new file mode 100644 index 0000000..cb9af64 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/registry/tokenizer.go @@ -0,0 +1,89 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package registry + +import ( + "fmt" + + "github.com/blevesearch/bleve/analysis" +) + +func RegisterTokenizer(name string, constructor TokenizerConstructor) { + _, exists := tokenizers[name] + if exists { + panic(fmt.Errorf("attempted to register duplicate tokenizer named '%s'", name)) + } + tokenizers[name] = constructor +} + +type TokenizerConstructor func(config map[string]interface{}, cache *Cache) (analysis.Tokenizer, error) +type TokenizerRegistry map[string]TokenizerConstructor + +type TokenizerCache struct { + *ConcurrentCache +} + +func NewTokenizerCache() *TokenizerCache { + return &TokenizerCache{ + NewConcurrentCache(), + } +} + +func TokenizerBuild(name string, config map[string]interface{}, cache *Cache) (interface{}, error) { + cons, registered := tokenizers[name] + if !registered { + return nil, fmt.Errorf("no tokenizer with name or type '%s' registered", name) + } + tokenizer, err := cons(config, cache) + if err != nil { + return nil, fmt.Errorf("error building tokenizer: %v", err) + } + return tokenizer, nil +} + +func (c *TokenizerCache) TokenizerNamed(name string, cache *Cache) (analysis.Tokenizer, error) { + item, err := c.ItemNamed(name, cache, TokenizerBuild) + if err != nil { + return nil, err + } + return item.(analysis.Tokenizer), nil +} + +func (c *TokenizerCache) DefineTokenizer(name string, typ string, config map[string]interface{}, cache *Cache) (analysis.Tokenizer, error) { + item, err := c.DefineItem(name, typ, config, cache, TokenizerBuild) + if err != nil { + if err == ErrAlreadyDefined { + return nil, fmt.Errorf("tokenizer named '%s' already defined", name) + } + return nil, err + } + return item.(analysis.Tokenizer), nil +} + +func TokenizerTypesAndInstances() ([]string, []string) { + emptyConfig := map[string]interface{}{} + emptyCache := NewCache() + var types []string + var instances []string + for name, cons := range tokenizers { + _, err := cons(emptyConfig, emptyCache) + if err == nil { + instances = append(instances, name) + } else { + types = append(types, name) + } + } + return types, instances +} diff --git a/vendor/github.com/blevesearch/bleve/search/collector.go b/vendor/github.com/blevesearch/bleve/search/collector.go new file mode 100644 index 0000000..df3ff9c --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/collector.go @@ -0,0 +1,52 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "context" + "time" + + "github.com/blevesearch/bleve/index" +) + +type Collector interface { + Collect(ctx context.Context, searcher Searcher, reader index.IndexReader) error + Results() DocumentMatchCollection + Total() uint64 + MaxScore() float64 + Took() time.Duration + SetFacetsBuilder(facetsBuilder *FacetsBuilder) + FacetResults() FacetResults +} + +// DocumentMatchHandler is the type of document match callback +// bleve will invoke during the search. +// Eventually, bleve will indicate the completion of an ongoing search, +// by passing a nil value for the document match callback. +// The application should take a copy of the hit/documentMatch +// if it wish to own it or need prolonged access to it. +type DocumentMatchHandler func(hit *DocumentMatch) error + +type MakeDocumentMatchHandlerKeyType string + +var MakeDocumentMatchHandlerKey = MakeDocumentMatchHandlerKeyType( + "MakeDocumentMatchHandlerKey") + +// MakeDocumentMatchHandler is an optional DocumentMatchHandler +// builder function which the applications can pass to bleve. +// These builder methods gives a DocumentMatchHandler function +// to bleve, which it will invoke on every document matches. +type MakeDocumentMatchHandler func(ctx *SearchContext) ( + callback DocumentMatchHandler, loadID bool, err error) diff --git a/vendor/github.com/blevesearch/bleve/search/explanation.go b/vendor/github.com/blevesearch/bleve/search/explanation.go new file mode 100644 index 0000000..3b81737 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/explanation.go @@ -0,0 +1,55 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "encoding/json" + "fmt" + "reflect" + + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeExplanation int + +func init() { + var e Explanation + reflectStaticSizeExplanation = int(reflect.TypeOf(e).Size()) +} + +type Explanation struct { + Value float64 `json:"value"` + Message string `json:"message"` + Children []*Explanation `json:"children,omitempty"` +} + +func (expl *Explanation) String() string { + js, err := json.MarshalIndent(expl, "", " ") + if err != nil { + return fmt.Sprintf("error serializing explanation to json: %v", err) + } + return string(js) +} + +func (expl *Explanation) Size() int { + sizeInBytes := reflectStaticSizeExplanation + size.SizeOfPtr + + len(expl.Message) + + for _, entry := range expl.Children { + sizeInBytes += entry.Size() + } + + return sizeInBytes +} diff --git a/vendor/github.com/blevesearch/bleve/search/facets_builder.go b/vendor/github.com/blevesearch/bleve/search/facets_builder.go new file mode 100644 index 0000000..7fc0bed --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/facets_builder.go @@ -0,0 +1,341 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "reflect" + "sort" + + "github.com/blevesearch/bleve/index" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeFacetsBuilder int +var reflectStaticSizeFacetResult int +var reflectStaticSizeTermFacet int +var reflectStaticSizeNumericRangeFacet int +var reflectStaticSizeDateRangeFacet int + +func init() { + var fb FacetsBuilder + reflectStaticSizeFacetsBuilder = int(reflect.TypeOf(fb).Size()) + var fr FacetResult + reflectStaticSizeFacetResult = int(reflect.TypeOf(fr).Size()) + var tf TermFacet + reflectStaticSizeTermFacet = int(reflect.TypeOf(tf).Size()) + var nrf NumericRangeFacet + reflectStaticSizeNumericRangeFacet = int(reflect.TypeOf(nrf).Size()) + var drf DateRangeFacet + reflectStaticSizeDateRangeFacet = int(reflect.TypeOf(drf).Size()) +} + +type FacetBuilder interface { + StartDoc() + UpdateVisitor(field string, term []byte) + EndDoc() + + Result() *FacetResult + Field() string + + Size() int +} + +type FacetsBuilder struct { + indexReader index.IndexReader + facetNames []string + facets []FacetBuilder + fields []string +} + +func NewFacetsBuilder(indexReader index.IndexReader) *FacetsBuilder { + return &FacetsBuilder{ + indexReader: indexReader, + } +} + +func (fb *FacetsBuilder) Size() int { + sizeInBytes := reflectStaticSizeFacetsBuilder + size.SizeOfPtr + + for k, v := range fb.facets { + sizeInBytes += size.SizeOfString + v.Size() + len(fb.facetNames[k]) + } + + for _, entry := range fb.fields { + sizeInBytes += size.SizeOfString + len(entry) + } + + return sizeInBytes +} + +func (fb *FacetsBuilder) Add(name string, facetBuilder FacetBuilder) { + fb.facetNames = append(fb.facetNames, name) + fb.facets = append(fb.facets, facetBuilder) + fb.fields = append(fb.fields, facetBuilder.Field()) +} + +func (fb *FacetsBuilder) RequiredFields() []string { + return fb.fields +} + +func (fb *FacetsBuilder) StartDoc() { + for _, facetBuilder := range fb.facets { + facetBuilder.StartDoc() + } +} + +func (fb *FacetsBuilder) EndDoc() { + for _, facetBuilder := range fb.facets { + facetBuilder.EndDoc() + } +} + +func (fb *FacetsBuilder) UpdateVisitor(field string, term []byte) { + for _, facetBuilder := range fb.facets { + facetBuilder.UpdateVisitor(field, term) + } +} + +type TermFacet struct { + Term string `json:"term"` + Count int `json:"count"` +} + +type TermFacets []*TermFacet + +func (tf TermFacets) Add(termFacet *TermFacet) TermFacets { + for _, existingTerm := range tf { + if termFacet.Term == existingTerm.Term { + existingTerm.Count += termFacet.Count + return tf + } + } + // if we got here it wasn't already in the existing terms + tf = append(tf, termFacet) + return tf +} + +func (tf TermFacets) Len() int { return len(tf) } +func (tf TermFacets) Swap(i, j int) { tf[i], tf[j] = tf[j], tf[i] } +func (tf TermFacets) Less(i, j int) bool { + if tf[i].Count == tf[j].Count { + return tf[i].Term < tf[j].Term + } + return tf[i].Count > tf[j].Count +} + +type NumericRangeFacet struct { + Name string `json:"name"` + Min *float64 `json:"min,omitempty"` + Max *float64 `json:"max,omitempty"` + Count int `json:"count"` +} + +func (nrf *NumericRangeFacet) Same(other *NumericRangeFacet) bool { + if nrf.Min == nil && other.Min != nil { + return false + } + if nrf.Min != nil && other.Min == nil { + return false + } + if nrf.Min != nil && other.Min != nil && *nrf.Min != *other.Min { + return false + } + if nrf.Max == nil && other.Max != nil { + return false + } + if nrf.Max != nil && other.Max == nil { + return false + } + if nrf.Max != nil && other.Max != nil && *nrf.Max != *other.Max { + return false + } + + return true +} + +type NumericRangeFacets []*NumericRangeFacet + +func (nrf NumericRangeFacets) Add(numericRangeFacet *NumericRangeFacet) NumericRangeFacets { + for _, existingNr := range nrf { + if numericRangeFacet.Same(existingNr) { + existingNr.Count += numericRangeFacet.Count + return nrf + } + } + // if we got here it wasn't already in the existing terms + nrf = append(nrf, numericRangeFacet) + return nrf +} + +func (nrf NumericRangeFacets) Len() int { return len(nrf) } +func (nrf NumericRangeFacets) Swap(i, j int) { nrf[i], nrf[j] = nrf[j], nrf[i] } +func (nrf NumericRangeFacets) Less(i, j int) bool { + if nrf[i].Count == nrf[j].Count { + return nrf[i].Name < nrf[j].Name + } + return nrf[i].Count > nrf[j].Count +} + +type DateRangeFacet struct { + Name string `json:"name"` + Start *string `json:"start,omitempty"` + End *string `json:"end,omitempty"` + Count int `json:"count"` +} + +func (drf *DateRangeFacet) Same(other *DateRangeFacet) bool { + if drf.Start == nil && other.Start != nil { + return false + } + if drf.Start != nil && other.Start == nil { + return false + } + if drf.Start != nil && other.Start != nil && *drf.Start != *other.Start { + return false + } + if drf.End == nil && other.End != nil { + return false + } + if drf.End != nil && other.End == nil { + return false + } + if drf.End != nil && other.End != nil && *drf.End != *other.End { + return false + } + + return true +} + +type DateRangeFacets []*DateRangeFacet + +func (drf DateRangeFacets) Add(dateRangeFacet *DateRangeFacet) DateRangeFacets { + for _, existingDr := range drf { + if dateRangeFacet.Same(existingDr) { + existingDr.Count += dateRangeFacet.Count + return drf + } + } + // if we got here it wasn't already in the existing terms + drf = append(drf, dateRangeFacet) + return drf +} + +func (drf DateRangeFacets) Len() int { return len(drf) } +func (drf DateRangeFacets) Swap(i, j int) { drf[i], drf[j] = drf[j], drf[i] } +func (drf DateRangeFacets) Less(i, j int) bool { + if drf[i].Count == drf[j].Count { + return drf[i].Name < drf[j].Name + } + return drf[i].Count > drf[j].Count +} + +type FacetResult struct { + Field string `json:"field"` + Total int `json:"total"` + Missing int `json:"missing"` + Other int `json:"other"` + Terms TermFacets `json:"terms,omitempty"` + NumericRanges NumericRangeFacets `json:"numeric_ranges,omitempty"` + DateRanges DateRangeFacets `json:"date_ranges,omitempty"` +} + +func (fr *FacetResult) Size() int { + return reflectStaticSizeFacetResult + size.SizeOfPtr + + len(fr.Field) + + len(fr.Terms)*(reflectStaticSizeTermFacet+size.SizeOfPtr) + + len(fr.NumericRanges)*(reflectStaticSizeNumericRangeFacet+size.SizeOfPtr) + + len(fr.DateRanges)*(reflectStaticSizeDateRangeFacet+size.SizeOfPtr) +} + +func (fr *FacetResult) Merge(other *FacetResult) { + fr.Total += other.Total + fr.Missing += other.Missing + fr.Other += other.Other + if fr.Terms != nil && other.Terms != nil { + for _, term := range other.Terms { + fr.Terms = fr.Terms.Add(term) + } + } + if fr.NumericRanges != nil && other.NumericRanges != nil { + for _, nr := range other.NumericRanges { + fr.NumericRanges = fr.NumericRanges.Add(nr) + } + } + if fr.DateRanges != nil && other.DateRanges != nil { + for _, dr := range other.DateRanges { + fr.DateRanges = fr.DateRanges.Add(dr) + } + } +} + +func (fr *FacetResult) Fixup(size int) { + if fr.Terms != nil { + sort.Sort(fr.Terms) + if len(fr.Terms) > size { + moveToOther := fr.Terms[size:] + for _, mto := range moveToOther { + fr.Other += mto.Count + } + fr.Terms = fr.Terms[0:size] + } + } else if fr.NumericRanges != nil { + sort.Sort(fr.NumericRanges) + if len(fr.NumericRanges) > size { + moveToOther := fr.NumericRanges[size:] + for _, mto := range moveToOther { + fr.Other += mto.Count + } + fr.NumericRanges = fr.NumericRanges[0:size] + } + } else if fr.DateRanges != nil { + sort.Sort(fr.DateRanges) + if len(fr.DateRanges) > size { + moveToOther := fr.DateRanges[size:] + for _, mto := range moveToOther { + fr.Other += mto.Count + } + fr.DateRanges = fr.DateRanges[0:size] + } + } +} + +type FacetResults map[string]*FacetResult + +func (fr FacetResults) Merge(other FacetResults) { + for name, oFacetResult := range other { + facetResult, ok := fr[name] + if ok { + facetResult.Merge(oFacetResult) + } else { + fr[name] = oFacetResult + } + } +} + +func (fr FacetResults) Fixup(name string, size int) { + facetResult, ok := fr[name] + if ok { + facetResult.Fixup(size) + } +} + +func (fb *FacetsBuilder) Results() FacetResults { + fr := make(FacetResults) + for i, facetBuilder := range fb.facets { + facetResult := facetBuilder.Result() + fr[fb.facetNames[i]] = facetResult + } + return fr +} diff --git a/vendor/github.com/blevesearch/bleve/search/highlight/highlighter.go b/vendor/github.com/blevesearch/bleve/search/highlight/highlighter.go new file mode 100644 index 0000000..8077985 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/highlight/highlighter.go @@ -0,0 +1,64 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package highlight + +import ( + "github.com/blevesearch/bleve/document" + "github.com/blevesearch/bleve/search" +) + +type Fragment struct { + Orig []byte + ArrayPositions []uint64 + Start int + End int + Score float64 + Index int // used by heap +} + +func (f *Fragment) Overlaps(other *Fragment) bool { + if other.Start >= f.Start && other.Start < f.End { + return true + } else if f.Start >= other.Start && f.Start < other.End { + return true + } + return false +} + +type Fragmenter interface { + Fragment([]byte, TermLocations) []*Fragment +} + +type FragmentFormatter interface { + Format(f *Fragment, orderedTermLocations TermLocations) string +} + +type FragmentScorer interface { + Score(f *Fragment) float64 +} + +type Highlighter interface { + Fragmenter() Fragmenter + SetFragmenter(Fragmenter) + + FragmentFormatter() FragmentFormatter + SetFragmentFormatter(FragmentFormatter) + + Separator() string + SetSeparator(string) + + BestFragmentInField(*search.DocumentMatch, *document.Document, string) string + BestFragmentsInField(*search.DocumentMatch, *document.Document, string, int) []string +} diff --git a/vendor/github.com/blevesearch/bleve/search/highlight/term_locations.go b/vendor/github.com/blevesearch/bleve/search/highlight/term_locations.go new file mode 100644 index 0000000..6d2cb13 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/highlight/term_locations.go @@ -0,0 +1,105 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package highlight + +import ( + "reflect" + "sort" + + "github.com/blevesearch/bleve/search" +) + +type TermLocation struct { + Term string + ArrayPositions search.ArrayPositions + Pos int + Start int + End int +} + +func (tl *TermLocation) Overlaps(other *TermLocation) bool { + if reflect.DeepEqual(tl.ArrayPositions, other.ArrayPositions) { + if other.Start >= tl.Start && other.Start < tl.End { + return true + } else if tl.Start >= other.Start && tl.Start < other.End { + return true + } + } + return false +} + +type TermLocations []*TermLocation + +func (t TermLocations) Len() int { return len(t) } +func (t TermLocations) Swap(i, j int) { t[i], t[j] = t[j], t[i] } +func (t TermLocations) Less(i, j int) bool { + + shortestArrayPositions := len(t[i].ArrayPositions) + if len(t[j].ArrayPositions) < shortestArrayPositions { + shortestArrayPositions = len(t[j].ArrayPositions) + } + + // compare all the common array positions + for api := 0; api < shortestArrayPositions; api++ { + if t[i].ArrayPositions[api] < t[j].ArrayPositions[api] { + return true + } + if t[i].ArrayPositions[api] > t[j].ArrayPositions[api] { + return false + } + } + // all the common array positions are the same + if len(t[i].ArrayPositions) < len(t[j].ArrayPositions) { + return true // j array positions, longer so greater + } else if len(t[i].ArrayPositions) > len(t[j].ArrayPositions) { + return false // j array positions, shorter so less + } + + // array positions the same, compare starts + return t[i].Start < t[j].Start +} + +func (t TermLocations) MergeOverlapping() { + var lastTl *TermLocation + for i, tl := range t { + if lastTl == nil && tl != nil { + lastTl = tl + } else if lastTl != nil && tl != nil { + if lastTl.Overlaps(tl) { + // ok merge this with previous + lastTl.End = tl.End + t[i] = nil + } + } + } +} + +func OrderTermLocations(tlm search.TermLocationMap) TermLocations { + rv := make(TermLocations, 0) + for term, locations := range tlm { + for _, location := range locations { + tl := TermLocation{ + Term: term, + ArrayPositions: location.ArrayPositions, + Pos: int(location.Pos), + Start: int(location.Start), + End: int(location.End), + } + rv = append(rv, &tl) + } + } + sort.Sort(rv) + return rv +} diff --git a/vendor/github.com/blevesearch/bleve/search/levenshtein.go b/vendor/github.com/blevesearch/bleve/search/levenshtein.go new file mode 100644 index 0000000..687608d --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/levenshtein.go @@ -0,0 +1,114 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "math" +) + +func LevenshteinDistance(a, b string) int { + la := len(a) + lb := len(b) + d := make([]int, la+1) + var lastdiag, olddiag, temp int + + for i := 1; i <= la; i++ { + d[i] = i + } + for i := 1; i <= lb; i++ { + d[0] = i + lastdiag = i - 1 + for j := 1; j <= la; j++ { + olddiag = d[j] + min := d[j] + 1 + if (d[j-1] + 1) < min { + min = d[j-1] + 1 + } + if a[j-1] == b[i-1] { + temp = 0 + } else { + temp = 1 + } + if (lastdiag + temp) < min { + min = lastdiag + temp + } + d[j] = min + lastdiag = olddiag + } + } + return d[la] +} + +// LevenshteinDistanceMax same as LevenshteinDistance but +// attempts to bail early once we know the distance +// will be greater than max +// in which case the first return val will be the max +// and the second will be true, indicating max was exceeded +func LevenshteinDistanceMax(a, b string, max int) (int, bool) { + v, wasMax, _ := LevenshteinDistanceMaxReuseSlice(a, b, max, nil) + return v, wasMax +} + +func LevenshteinDistanceMaxReuseSlice(a, b string, max int, d []int) (int, bool, []int) { + la := len(a) + lb := len(b) + + ld := int(math.Abs(float64(la - lb))) + if ld > max { + return max, true, d + } + + if cap(d) < la+1 { + d = make([]int, la+1) + } + d = d[:la+1] + + var lastdiag, olddiag, temp int + + for i := 1; i <= la; i++ { + d[i] = i + } + for i := 1; i <= lb; i++ { + d[0] = i + lastdiag = i - 1 + rowmin := max + 1 + for j := 1; j <= la; j++ { + olddiag = d[j] + min := d[j] + 1 + if (d[j-1] + 1) < min { + min = d[j-1] + 1 + } + if a[j-1] == b[i-1] { + temp = 0 + } else { + temp = 1 + } + if (lastdiag + temp) < min { + min = lastdiag + temp + } + if min < rowmin { + rowmin = min + } + d[j] = min + + lastdiag = olddiag + } + // after each row if rowmin isn't less than max stop + if rowmin > max { + return max, true, d + } + } + return d[la], false, d +} diff --git a/vendor/github.com/blevesearch/bleve/search/pool.go b/vendor/github.com/blevesearch/bleve/search/pool.go new file mode 100644 index 0000000..ba8be8f --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/pool.go @@ -0,0 +1,91 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "reflect" +) + +var reflectStaticSizeDocumentMatchPool int + +func init() { + var dmp DocumentMatchPool + reflectStaticSizeDocumentMatchPool = int(reflect.TypeOf(dmp).Size()) +} + +// DocumentMatchPoolTooSmall is a callback function that can be executed +// when the DocumentMatchPool does not have sufficient capacity +// By default we just perform just-in-time allocation, but you could log +// a message, or panic, etc. +type DocumentMatchPoolTooSmall func(p *DocumentMatchPool) *DocumentMatch + +// DocumentMatchPool manages use/re-use of DocumentMatch instances +// it pre-allocates space from a single large block with the expected +// number of instances. It is not thread-safe as currently all +// aspects of search take place in a single goroutine. +type DocumentMatchPool struct { + avail DocumentMatchCollection + TooSmall DocumentMatchPoolTooSmall +} + +func defaultDocumentMatchPoolTooSmall(p *DocumentMatchPool) *DocumentMatch { + return &DocumentMatch{} +} + +// NewDocumentMatchPool will build a DocumentMatchPool with memory +// pre-allocated to accommodate the requested number of DocumentMatch +// instances +func NewDocumentMatchPool(size, sortsize int) *DocumentMatchPool { + avail := make(DocumentMatchCollection, size) + // pre-allocate the expected number of instances + startBlock := make([]DocumentMatch, size) + startSorts := make([]string, size*sortsize) + // make these initial instances available + i, j := 0, 0 + for i < size { + avail[i] = &startBlock[i] + avail[i].Sort = startSorts[j:j] + i += 1 + j += sortsize + } + return &DocumentMatchPool{ + avail: avail, + TooSmall: defaultDocumentMatchPoolTooSmall, + } +} + +// Get returns an available DocumentMatch from the pool +// if the pool was not allocated with sufficient size, an allocation will +// occur to satisfy this request. As a side-effect this will grow the size +// of the pool. +func (p *DocumentMatchPool) Get() *DocumentMatch { + var rv *DocumentMatch + if len(p.avail) > 0 { + rv, p.avail = p.avail[len(p.avail)-1], p.avail[:len(p.avail)-1] + } else { + rv = p.TooSmall(p) + } + return rv +} + +// Put returns a DocumentMatch to the pool +func (p *DocumentMatchPool) Put(d *DocumentMatch) { + if d == nil { + return + } + // reset DocumentMatch before returning it to available pool + d.Reset() + p.avail = append(p.avail, d) +} diff --git a/vendor/github.com/blevesearch/bleve/search/search.go b/vendor/github.com/blevesearch/bleve/search/search.go new file mode 100644 index 0000000..8ed23de --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/search.go @@ -0,0 +1,378 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "fmt" + "reflect" + "sort" + + "github.com/blevesearch/bleve/index" + "github.com/blevesearch/bleve/size" +) + +var reflectStaticSizeDocumentMatch int +var reflectStaticSizeSearchContext int +var reflectStaticSizeLocation int + +func init() { + var dm DocumentMatch + reflectStaticSizeDocumentMatch = int(reflect.TypeOf(dm).Size()) + var sc SearchContext + reflectStaticSizeSearchContext = int(reflect.TypeOf(sc).Size()) + var l Location + reflectStaticSizeLocation = int(reflect.TypeOf(l).Size()) +} + +type ArrayPositions []uint64 + +func (ap ArrayPositions) Equals(other ArrayPositions) bool { + if len(ap) != len(other) { + return false + } + for i := range ap { + if ap[i] != other[i] { + return false + } + } + return true +} + +func (ap ArrayPositions) Compare(other ArrayPositions) int { + for i, p := range ap { + if i >= len(other) { + return 1 + } + if p < other[i] { + return -1 + } + if p > other[i] { + return 1 + } + } + if len(ap) < len(other) { + return -1 + } + return 0 +} + +type Location struct { + // Pos is the position of the term within the field, starting at 1 + Pos uint64 `json:"pos"` + + // Start and End are the byte offsets of the term in the field + Start uint64 `json:"start"` + End uint64 `json:"end"` + + // ArrayPositions contains the positions of the term within any elements. + ArrayPositions ArrayPositions `json:"array_positions"` +} + +func (l *Location) Size() int { + return reflectStaticSizeLocation + size.SizeOfPtr + + len(l.ArrayPositions)*size.SizeOfUint64 +} + +type Locations []*Location + +func (p Locations) Len() int { return len(p) } +func (p Locations) Swap(i, j int) { p[i], p[j] = p[j], p[i] } + +func (p Locations) Less(i, j int) bool { + c := p[i].ArrayPositions.Compare(p[j].ArrayPositions) + if c < 0 { + return true + } + if c > 0 { + return false + } + return p[i].Pos < p[j].Pos +} + +func (p Locations) Dedupe() Locations { // destructive! + if len(p) <= 1 { + return p + } + + sort.Sort(p) + + slow := 0 + + for _, pfast := range p { + pslow := p[slow] + if pslow.Pos == pfast.Pos && + pslow.Start == pfast.Start && + pslow.End == pfast.End && + pslow.ArrayPositions.Equals(pfast.ArrayPositions) { + continue // duplicate, so only move fast ahead + } + + slow++ + + p[slow] = pfast + } + + return p[:slow+1] +} + +type TermLocationMap map[string]Locations + +func (t TermLocationMap) AddLocation(term string, location *Location) { + t[term] = append(t[term], location) +} + +type FieldTermLocationMap map[string]TermLocationMap + +type FieldTermLocation struct { + Field string + Term string + Location Location +} + +type FieldFragmentMap map[string][]string + +type DocumentMatch struct { + Index string `json:"index,omitempty"` + ID string `json:"id"` + IndexInternalID index.IndexInternalID `json:"-"` + Score float64 `json:"score"` + Expl *Explanation `json:"explanation,omitempty"` + Locations FieldTermLocationMap `json:"locations,omitempty"` + Fragments FieldFragmentMap `json:"fragments,omitempty"` + Sort []string `json:"sort,omitempty"` + + // Fields contains the values for document fields listed in + // SearchRequest.Fields. Text fields are returned as strings, numeric + // fields as float64s and date fields as time.RFC3339 formatted strings. + Fields map[string]interface{} `json:"fields,omitempty"` + + // used to maintain natural index order + HitNumber uint64 `json:"-"` + + // used to temporarily hold field term location information during + // search processing in an efficient, recycle-friendly manner, to + // be later incorporated into the Locations map when search + // results are completed + FieldTermLocations []FieldTermLocation `json:"-"` +} + +func (dm *DocumentMatch) AddFieldValue(name string, value interface{}) { + if dm.Fields == nil { + dm.Fields = make(map[string]interface{}) + } + existingVal, ok := dm.Fields[name] + if !ok { + dm.Fields[name] = value + return + } + + valSlice, ok := existingVal.([]interface{}) + if ok { + // already a slice, append to it + valSlice = append(valSlice, value) + } else { + // create a slice + valSlice = []interface{}{existingVal, value} + } + dm.Fields[name] = valSlice +} + +// Reset allows an already allocated DocumentMatch to be reused +func (dm *DocumentMatch) Reset() *DocumentMatch { + // remember the []byte used for the IndexInternalID + indexInternalID := dm.IndexInternalID + // remember the []interface{} used for sort + sort := dm.Sort + // remember the FieldTermLocations backing array + ftls := dm.FieldTermLocations + for i := range ftls { // recycle the ArrayPositions of each location + ftls[i].Location.ArrayPositions = ftls[i].Location.ArrayPositions[:0] + } + // idiom to copy over from empty DocumentMatch (0 allocations) + *dm = DocumentMatch{} + // reuse the []byte already allocated (and reset len to 0) + dm.IndexInternalID = indexInternalID[:0] + // reuse the []interface{} already allocated (and reset len to 0) + dm.Sort = sort[:0] + // reuse the FieldTermLocations already allocated (and reset len to 0) + dm.FieldTermLocations = ftls[:0] + return dm +} + +func (dm *DocumentMatch) Size() int { + sizeInBytes := reflectStaticSizeDocumentMatch + size.SizeOfPtr + + len(dm.Index) + + len(dm.ID) + + len(dm.IndexInternalID) + + if dm.Expl != nil { + sizeInBytes += dm.Expl.Size() + } + + for k, v := range dm.Locations { + sizeInBytes += size.SizeOfString + len(k) + for k1, v1 := range v { + sizeInBytes += size.SizeOfString + len(k1) + + size.SizeOfSlice + for _, entry := range v1 { + sizeInBytes += entry.Size() + } + } + } + + for k, v := range dm.Fragments { + sizeInBytes += size.SizeOfString + len(k) + + size.SizeOfSlice + + for _, entry := range v { + sizeInBytes += size.SizeOfString + len(entry) + } + } + + for _, entry := range dm.Sort { + sizeInBytes += size.SizeOfString + len(entry) + } + + for k, _ := range dm.Fields { + sizeInBytes += size.SizeOfString + len(k) + + size.SizeOfPtr + } + + return sizeInBytes +} + +// Complete performs final preparation & transformation of the +// DocumentMatch at the end of search processing, also allowing the +// caller to provide an optional preallocated locations slice +func (dm *DocumentMatch) Complete(prealloc []Location) []Location { + // transform the FieldTermLocations slice into the Locations map + nlocs := len(dm.FieldTermLocations) + if nlocs > 0 { + if cap(prealloc) < nlocs { + prealloc = make([]Location, nlocs) + } + prealloc = prealloc[:nlocs] + + var lastField string + var tlm TermLocationMap + var needsDedupe bool + + for i, ftl := range dm.FieldTermLocations { + if lastField != ftl.Field { + lastField = ftl.Field + + if dm.Locations == nil { + dm.Locations = make(FieldTermLocationMap) + } + + tlm = dm.Locations[ftl.Field] + if tlm == nil { + tlm = make(TermLocationMap) + dm.Locations[ftl.Field] = tlm + } + } + + loc := &prealloc[i] + *loc = ftl.Location + + if len(loc.ArrayPositions) > 0 { // copy + loc.ArrayPositions = append(ArrayPositions(nil), loc.ArrayPositions...) + } + + locs := tlm[ftl.Term] + + // if the loc is before or at the last location, then there + // might be duplicates that need to be deduplicated + if !needsDedupe && len(locs) > 0 { + last := locs[len(locs)-1] + cmp := loc.ArrayPositions.Compare(last.ArrayPositions) + if cmp < 0 || (cmp == 0 && loc.Pos <= last.Pos) { + needsDedupe = true + } + } + + tlm[ftl.Term] = append(locs, loc) + + dm.FieldTermLocations[i] = FieldTermLocation{ // recycle + Location: Location{ + ArrayPositions: ftl.Location.ArrayPositions[:0], + }, + } + } + + if needsDedupe { + for _, tlm := range dm.Locations { + for term, locs := range tlm { + tlm[term] = locs.Dedupe() + } + } + } + } + + dm.FieldTermLocations = dm.FieldTermLocations[:0] // recycle + + return prealloc +} + +func (dm *DocumentMatch) String() string { + return fmt.Sprintf("[%s-%f]", string(dm.IndexInternalID), dm.Score) +} + +type DocumentMatchCollection []*DocumentMatch + +func (c DocumentMatchCollection) Len() int { return len(c) } +func (c DocumentMatchCollection) Swap(i, j int) { c[i], c[j] = c[j], c[i] } +func (c DocumentMatchCollection) Less(i, j int) bool { return c[i].Score > c[j].Score } + +type Searcher interface { + Next(ctx *SearchContext) (*DocumentMatch, error) + Advance(ctx *SearchContext, ID index.IndexInternalID) (*DocumentMatch, error) + Close() error + Weight() float64 + SetQueryNorm(float64) + Count() uint64 + Min() int + Size() int + + DocumentMatchPoolSize() int +} + +type SearcherOptions struct { + Explain bool + IncludeTermVectors bool + Score string +} + +// SearchContext represents the context around a single search +type SearchContext struct { + DocumentMatchPool *DocumentMatchPool + Collector Collector + IndexReader index.IndexReader +} + +func (sc *SearchContext) Size() int { + sizeInBytes := reflectStaticSizeSearchContext + size.SizeOfPtr + + reflectStaticSizeDocumentMatchPool + size.SizeOfPtr + + if sc.DocumentMatchPool != nil { + for _, entry := range sc.DocumentMatchPool.avail { + if entry != nil { + sizeInBytes += entry.Size() + } + } + } + + return sizeInBytes +} diff --git a/vendor/github.com/blevesearch/bleve/search/sort.go b/vendor/github.com/blevesearch/bleve/search/sort.go new file mode 100644 index 0000000..6e4ed80 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/sort.go @@ -0,0 +1,741 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +import ( + "bytes" + "encoding/json" + "fmt" + "math" + "sort" + "strings" + + "github.com/blevesearch/bleve/geo" + "github.com/blevesearch/bleve/numeric" +) + +var HighTerm = strings.Repeat(string([]byte{0xff}), 10) +var LowTerm = string([]byte{0x00}) + +type SearchSort interface { + UpdateVisitor(field string, term []byte) + Value(a *DocumentMatch) string + Descending() bool + + RequiresDocID() bool + RequiresScoring() bool + RequiresFields() []string + + Reverse() + + Copy() SearchSort +} + +func ParseSearchSortObj(input map[string]interface{}) (SearchSort, error) { + descending, ok := input["desc"].(bool) + by, ok := input["by"].(string) + if !ok { + return nil, fmt.Errorf("search sort must specify by") + } + switch by { + case "id": + return &SortDocID{ + Desc: descending, + }, nil + case "score": + return &SortScore{ + Desc: descending, + }, nil + case "geo_distance": + field, ok := input["field"].(string) + if !ok { + return nil, fmt.Errorf("search sort mode geo_distance must specify field") + } + lon, lat, foundLocation := geo.ExtractGeoPoint(input["location"]) + if !foundLocation { + return nil, fmt.Errorf("unable to parse geo_distance location") + } + rvd := &SortGeoDistance{ + Field: field, + Desc: descending, + Lon: lon, + Lat: lat, + unitMult: 1.0, + } + if distUnit, ok := input["unit"].(string); ok { + var err error + rvd.unitMult, err = geo.ParseDistanceUnit(distUnit) + if err != nil { + return nil, err + } + rvd.Unit = distUnit + } + return rvd, nil + case "field": + field, ok := input["field"].(string) + if !ok { + return nil, fmt.Errorf("search sort mode field must specify field") + } + rv := &SortField{ + Field: field, + Desc: descending, + } + typ, ok := input["type"].(string) + if ok { + switch typ { + case "auto": + rv.Type = SortFieldAuto + case "string": + rv.Type = SortFieldAsString + case "number": + rv.Type = SortFieldAsNumber + case "date": + rv.Type = SortFieldAsDate + default: + return nil, fmt.Errorf("unknown sort field type: %s", typ) + } + } + mode, ok := input["mode"].(string) + if ok { + switch mode { + case "default": + rv.Mode = SortFieldDefault + case "min": + rv.Mode = SortFieldMin + case "max": + rv.Mode = SortFieldMax + default: + return nil, fmt.Errorf("unknown sort field mode: %s", mode) + } + } + missing, ok := input["missing"].(string) + if ok { + switch missing { + case "first": + rv.Missing = SortFieldMissingFirst + case "last": + rv.Missing = SortFieldMissingLast + default: + return nil, fmt.Errorf("unknown sort field missing: %s", missing) + } + } + return rv, nil + } + + return nil, fmt.Errorf("unknown search sort by: %s", by) +} + +func ParseSearchSortString(input string) SearchSort { + descending := false + if strings.HasPrefix(input, "-") { + descending = true + input = input[1:] + } else if strings.HasPrefix(input, "+") { + input = input[1:] + } + if input == "_id" { + return &SortDocID{ + Desc: descending, + } + } else if input == "_score" { + return &SortScore{ + Desc: descending, + } + } + return &SortField{ + Field: input, + Desc: descending, + } +} + +func ParseSearchSortJSON(input json.RawMessage) (SearchSort, error) { + // first try to parse it as string + var sortString string + err := json.Unmarshal(input, &sortString) + if err != nil { + var sortObj map[string]interface{} + err = json.Unmarshal(input, &sortObj) + if err != nil { + return nil, err + } + return ParseSearchSortObj(sortObj) + } + return ParseSearchSortString(sortString), nil +} + +func ParseSortOrderStrings(in []string) SortOrder { + rv := make(SortOrder, 0, len(in)) + for _, i := range in { + ss := ParseSearchSortString(i) + rv = append(rv, ss) + } + return rv +} + +func ParseSortOrderJSON(in []json.RawMessage) (SortOrder, error) { + rv := make(SortOrder, 0, len(in)) + for _, i := range in { + ss, err := ParseSearchSortJSON(i) + if err != nil { + return nil, err + } + rv = append(rv, ss) + } + return rv, nil +} + +type SortOrder []SearchSort + +func (so SortOrder) Value(doc *DocumentMatch) { + for _, soi := range so { + doc.Sort = append(doc.Sort, soi.Value(doc)) + } +} + +func (so SortOrder) UpdateVisitor(field string, term []byte) { + for _, soi := range so { + soi.UpdateVisitor(field, term) + } +} + +func (so SortOrder) Copy() SortOrder { + rv := make(SortOrder, len(so)) + for i, soi := range so { + rv[i] = soi.Copy() + } + return rv +} + +// Compare will compare two document matches using the specified sort order +// if both are numbers, we avoid converting back to term +func (so SortOrder) Compare(cachedScoring, cachedDesc []bool, i, j *DocumentMatch) int { + // compare the documents on all search sorts until a differences is found + for x := range so { + c := 0 + if cachedScoring[x] { + if i.Score < j.Score { + c = -1 + } else if i.Score > j.Score { + c = 1 + } + } else { + iVal := i.Sort[x] + jVal := j.Sort[x] + c = strings.Compare(iVal, jVal) + } + + if c == 0 { + continue + } + if cachedDesc[x] { + c = -c + } + return c + } + // if they are the same at this point, impose order based on index natural sort order + if i.HitNumber == j.HitNumber { + return 0 + } else if i.HitNumber > j.HitNumber { + return 1 + } + return -1 +} + +func (so SortOrder) RequiresScore() bool { + for _, soi := range so { + if soi.RequiresScoring() { + return true + } + } + return false +} + +func (so SortOrder) RequiresDocID() bool { + for _, soi := range so { + if soi.RequiresDocID() { + return true + } + } + return false +} + +func (so SortOrder) RequiredFields() []string { + var rv []string + for _, soi := range so { + rv = append(rv, soi.RequiresFields()...) + } + return rv +} + +func (so SortOrder) CacheIsScore() []bool { + rv := make([]bool, 0, len(so)) + for _, soi := range so { + rv = append(rv, soi.RequiresScoring()) + } + return rv +} + +func (so SortOrder) CacheDescending() []bool { + rv := make([]bool, 0, len(so)) + for _, soi := range so { + rv = append(rv, soi.Descending()) + } + return rv +} + +func (so SortOrder) Reverse() { + for _, soi := range so { + soi.Reverse() + } +} + +// SortFieldType lets you control some internal sort behavior +// normally leaving this to the zero-value of SortFieldAuto is fine +type SortFieldType int + +const ( + // SortFieldAuto applies heuristics attempt to automatically sort correctly + SortFieldAuto SortFieldType = iota + // SortFieldAsString forces sort as string (no prefix coded terms removed) + SortFieldAsString + // SortFieldAsNumber forces sort as string (prefix coded terms with shift > 0 removed) + SortFieldAsNumber + // SortFieldAsDate forces sort as string (prefix coded terms with shift > 0 removed) + SortFieldAsDate +) + +// SortFieldMode describes the behavior if the field has multiple values +type SortFieldMode int + +const ( + // SortFieldDefault uses the first (or only) value, this is the default zero-value + SortFieldDefault SortFieldMode = iota // FIXME name is confusing + // SortFieldMin uses the minimum value + SortFieldMin + // SortFieldMax uses the maximum value + SortFieldMax +) + +// SortFieldMissing controls where documents missing a field value should be sorted +type SortFieldMissing int + +const ( + // SortFieldMissingLast sorts documents missing a field at the end + SortFieldMissingLast SortFieldMissing = iota + + // SortFieldMissingFirst sorts documents missing a field at the beginning + SortFieldMissingFirst +) + +// SortField will sort results by the value of a stored field +// Field is the name of the field +// Descending reverse the sort order (default false) +// Type allows forcing of string/number/date behavior (default auto) +// Mode controls behavior for multi-values fields (default first) +// Missing controls behavior of missing values (default last) +type SortField struct { + Field string + Desc bool + Type SortFieldType + Mode SortFieldMode + Missing SortFieldMissing + values [][]byte + tmp [][]byte +} + +// UpdateVisitor notifies this sort field that in this document +// this field has the specified term +func (s *SortField) UpdateVisitor(field string, term []byte) { + if field == s.Field { + s.values = append(s.values, term) + } +} + +// Value returns the sort value of the DocumentMatch +// it also resets the state of this SortField for +// processing the next document +func (s *SortField) Value(i *DocumentMatch) string { + iTerms := s.filterTermsByType(s.values) + iTerm := s.filterTermsByMode(iTerms) + s.values = s.values[:0] + return iTerm +} + +// Descending determines the order of the sort +func (s *SortField) Descending() bool { + return s.Desc +} + +func (s *SortField) filterTermsByMode(terms [][]byte) string { + if len(terms) == 1 || (len(terms) > 1 && s.Mode == SortFieldDefault) { + return string(terms[0]) + } else if len(terms) > 1 { + switch s.Mode { + case SortFieldMin: + sort.Sort(BytesSlice(terms)) + return string(terms[0]) + case SortFieldMax: + sort.Sort(BytesSlice(terms)) + return string(terms[len(terms)-1]) + } + } + + // handle missing terms + if s.Missing == SortFieldMissingLast { + if s.Desc { + return LowTerm + } + return HighTerm + } + if s.Desc { + return HighTerm + } + return LowTerm +} + +// filterTermsByType attempts to make one pass on the terms +// if we are in auto-mode AND all the terms look like prefix-coded numbers +// return only the terms which had shift of 0 +// if we are in explicit number or date mode, return only valid +// prefix coded numbers with shift of 0 +func (s *SortField) filterTermsByType(terms [][]byte) [][]byte { + stype := s.Type + if stype == SortFieldAuto { + allTermsPrefixCoded := true + termsWithShiftZero := s.tmp[:0] + for _, term := range terms { + valid, shift := numeric.ValidPrefixCodedTermBytes(term) + if valid && shift == 0 { + termsWithShiftZero = append(termsWithShiftZero, term) + } else if !valid { + allTermsPrefixCoded = false + } + } + if allTermsPrefixCoded { + terms = termsWithShiftZero + s.tmp = termsWithShiftZero[:0] + } + } else if stype == SortFieldAsNumber || stype == SortFieldAsDate { + termsWithShiftZero := s.tmp[:0] + for _, term := range terms { + valid, shift := numeric.ValidPrefixCodedTermBytes(term) + if valid && shift == 0 { + termsWithShiftZero = append(termsWithShiftZero, term) + } + } + terms = termsWithShiftZero + s.tmp = termsWithShiftZero[:0] + } + return terms +} + +// RequiresDocID says this SearchSort does not require the DocID be loaded +func (s *SortField) RequiresDocID() bool { return false } + +// RequiresScoring says this SearchStore does not require scoring +func (s *SortField) RequiresScoring() bool { return false } + +// RequiresFields says this SearchStore requires the specified stored field +func (s *SortField) RequiresFields() []string { return []string{s.Field} } + +func (s *SortField) MarshalJSON() ([]byte, error) { + // see if simple format can be used + if s.Missing == SortFieldMissingLast && + s.Mode == SortFieldDefault && + s.Type == SortFieldAuto { + if s.Desc { + return json.Marshal("-" + s.Field) + } + return json.Marshal(s.Field) + } + sfm := map[string]interface{}{ + "by": "field", + "field": s.Field, + } + if s.Desc { + sfm["desc"] = true + } + if s.Missing > SortFieldMissingLast { + switch s.Missing { + case SortFieldMissingFirst: + sfm["missing"] = "first" + } + } + if s.Mode > SortFieldDefault { + switch s.Mode { + case SortFieldMin: + sfm["mode"] = "min" + case SortFieldMax: + sfm["mode"] = "max" + } + } + if s.Type > SortFieldAuto { + switch s.Type { + case SortFieldAsString: + sfm["type"] = "string" + case SortFieldAsNumber: + sfm["type"] = "number" + case SortFieldAsDate: + sfm["type"] = "date" + } + } + + return json.Marshal(sfm) +} + +func (s *SortField) Copy() SearchSort { + rv := *s + return &rv +} + +func (s *SortField) Reverse() { + s.Desc = !s.Desc + if s.Missing == SortFieldMissingFirst { + s.Missing = SortFieldMissingLast + } else { + s.Missing = SortFieldMissingFirst + } +} + +// SortDocID will sort results by the document identifier +type SortDocID struct { + Desc bool +} + +// UpdateVisitor is a no-op for SortDocID as it's value +// is not dependent on any field terms +func (s *SortDocID) UpdateVisitor(field string, term []byte) { +} + +// Value returns the sort value of the DocumentMatch +func (s *SortDocID) Value(i *DocumentMatch) string { + return i.ID +} + +// Descending determines the order of the sort +func (s *SortDocID) Descending() bool { + return s.Desc +} + +// RequiresDocID says this SearchSort does require the DocID be loaded +func (s *SortDocID) RequiresDocID() bool { return true } + +// RequiresScoring says this SearchStore does not require scoring +func (s *SortDocID) RequiresScoring() bool { return false } + +// RequiresFields says this SearchStore does not require any stored fields +func (s *SortDocID) RequiresFields() []string { return nil } + +func (s *SortDocID) MarshalJSON() ([]byte, error) { + if s.Desc { + return json.Marshal("-_id") + } + return json.Marshal("_id") +} + +func (s *SortDocID) Copy() SearchSort { + rv := *s + return &rv +} + +func (s *SortDocID) Reverse() { + s.Desc = !s.Desc +} + +// SortScore will sort results by the document match score +type SortScore struct { + Desc bool +} + +// UpdateVisitor is a no-op for SortScore as it's value +// is not dependent on any field terms +func (s *SortScore) UpdateVisitor(field string, term []byte) { +} + +// Value returns the sort value of the DocumentMatch +func (s *SortScore) Value(i *DocumentMatch) string { + return "_score" +} + +// Descending determines the order of the sort +func (s *SortScore) Descending() bool { + return s.Desc +} + +// RequiresDocID says this SearchSort does not require the DocID be loaded +func (s *SortScore) RequiresDocID() bool { return false } + +// RequiresScoring says this SearchStore does require scoring +func (s *SortScore) RequiresScoring() bool { return true } + +// RequiresFields says this SearchStore does not require any store fields +func (s *SortScore) RequiresFields() []string { return nil } + +func (s *SortScore) MarshalJSON() ([]byte, error) { + if s.Desc { + return json.Marshal("-_score") + } + return json.Marshal("_score") +} + +func (s *SortScore) Copy() SearchSort { + rv := *s + return &rv +} + +func (s *SortScore) Reverse() { + s.Desc = !s.Desc +} + +var maxDistance = string(numeric.MustNewPrefixCodedInt64(math.MaxInt64, 0)) + +// NewSortGeoDistance creates SearchSort instance for sorting documents by +// their distance from the specified point. +func NewSortGeoDistance(field, unit string, lon, lat float64, desc bool) ( + *SortGeoDistance, error) { + rv := &SortGeoDistance{ + Field: field, + Desc: desc, + Unit: unit, + Lon: lon, + Lat: lat, + } + var err error + rv.unitMult, err = geo.ParseDistanceUnit(unit) + if err != nil { + return nil, err + } + return rv, nil +} + +// SortGeoDistance will sort results by the distance of an +// indexed geo point, from the provided location. +// Field is the name of the field +// Descending reverse the sort order (default false) +type SortGeoDistance struct { + Field string + Desc bool + Unit string + values []string + Lon float64 + Lat float64 + unitMult float64 +} + +// UpdateVisitor notifies this sort field that in this document +// this field has the specified term +func (s *SortGeoDistance) UpdateVisitor(field string, term []byte) { + if field == s.Field { + s.values = append(s.values, string(term)) + } +} + +// Value returns the sort value of the DocumentMatch +// it also resets the state of this SortField for +// processing the next document +func (s *SortGeoDistance) Value(i *DocumentMatch) string { + iTerms := s.filterTermsByType(s.values) + iTerm := s.filterTermsByMode(iTerms) + s.values = s.values[:0] + + if iTerm == "" { + return maxDistance + } + + i64, err := numeric.PrefixCoded(iTerm).Int64() + if err != nil { + return maxDistance + } + docLon := geo.MortonUnhashLon(uint64(i64)) + docLat := geo.MortonUnhashLat(uint64(i64)) + + dist := geo.Haversin(s.Lon, s.Lat, docLon, docLat) + // dist is returned in km, so convert to m + dist *= 1000 + if s.unitMult != 0 { + dist /= s.unitMult + } + distInt64 := numeric.Float64ToInt64(dist) + return string(numeric.MustNewPrefixCodedInt64(distInt64, 0)) +} + +// Descending determines the order of the sort +func (s *SortGeoDistance) Descending() bool { + return s.Desc +} + +func (s *SortGeoDistance) filterTermsByMode(terms []string) string { + if len(terms) >= 1 { + return terms[0] + } + + return "" +} + +// filterTermsByType attempts to make one pass on the terms +// return only valid prefix coded numbers with shift of 0 +func (s *SortGeoDistance) filterTermsByType(terms []string) []string { + var termsWithShiftZero []string + for _, term := range terms { + valid, shift := numeric.ValidPrefixCodedTerm(term) + if valid && shift == 0 { + termsWithShiftZero = append(termsWithShiftZero, term) + } + } + return termsWithShiftZero +} + +// RequiresDocID says this SearchSort does not require the DocID be loaded +func (s *SortGeoDistance) RequiresDocID() bool { return false } + +// RequiresScoring says this SearchStore does not require scoring +func (s *SortGeoDistance) RequiresScoring() bool { return false } + +// RequiresFields says this SearchStore requires the specified stored field +func (s *SortGeoDistance) RequiresFields() []string { return []string{s.Field} } + +func (s *SortGeoDistance) MarshalJSON() ([]byte, error) { + sfm := map[string]interface{}{ + "by": "geo_distance", + "field": s.Field, + "location": map[string]interface{}{ + "lon": s.Lon, + "lat": s.Lat, + }, + } + if s.Unit != "" { + sfm["unit"] = s.Unit + } + if s.Desc { + sfm["desc"] = true + } + + return json.Marshal(sfm) +} + +func (s *SortGeoDistance) Copy() SearchSort { + rv := *s + return &rv +} + +func (s *SortGeoDistance) Reverse() { + s.Desc = !s.Desc +} + +type BytesSlice [][]byte + +func (p BytesSlice) Len() int { return len(p) } +func (p BytesSlice) Less(i, j int) bool { return bytes.Compare(p[i], p[j]) < 0 } +func (p BytesSlice) Swap(i, j int) { p[i], p[j] = p[j], p[i] } diff --git a/vendor/github.com/blevesearch/bleve/search/util.go b/vendor/github.com/blevesearch/bleve/search/util.go new file mode 100644 index 0000000..19dd5d6 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/search/util.go @@ -0,0 +1,69 @@ +// Copyright (c) 2014 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package search + +func MergeLocations(locations []FieldTermLocationMap) FieldTermLocationMap { + rv := locations[0] + + for i := 1; i < len(locations); i++ { + nextLocations := locations[i] + for field, termLocationMap := range nextLocations { + rvTermLocationMap, rvHasField := rv[field] + if rvHasField { + rv[field] = MergeTermLocationMaps(rvTermLocationMap, termLocationMap) + } else { + rv[field] = termLocationMap + } + } + } + + return rv +} + +func MergeTermLocationMaps(rv, other TermLocationMap) TermLocationMap { + for term, locationMap := range other { + // for a given term/document there cannot be different locations + // if they came back from different clauses, overwrite is ok + rv[term] = locationMap + } + return rv +} + +func MergeFieldTermLocations(dest []FieldTermLocation, matches []*DocumentMatch) []FieldTermLocation { + n := len(dest) + for _, dm := range matches { + n += len(dm.FieldTermLocations) + } + if cap(dest) < n { + dest = append(make([]FieldTermLocation, 0, n), dest...) + } + + for _, dm := range matches { + for _, ftl := range dm.FieldTermLocations { + dest = append(dest, FieldTermLocation{ + Field: ftl.Field, + Term: ftl.Term, + Location: Location{ + Pos: ftl.Location.Pos, + Start: ftl.Location.Start, + End: ftl.Location.End, + ArrayPositions: append(ArrayPositions(nil), ftl.Location.ArrayPositions...), + }, + }) + } + } + + return dest +} diff --git a/vendor/github.com/blevesearch/bleve/size/sizes.go b/vendor/github.com/blevesearch/bleve/size/sizes.go new file mode 100644 index 0000000..0990bf8 --- /dev/null +++ b/vendor/github.com/blevesearch/bleve/size/sizes.go @@ -0,0 +1,59 @@ +// Copyright (c) 2018 Couchbase, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package size + +import ( + "reflect" +) + +func init() { + var b bool + SizeOfBool = int(reflect.TypeOf(b).Size()) + var f32 float32 + SizeOfFloat32 = int(reflect.TypeOf(f32).Size()) + var f64 float64 + SizeOfFloat64 = int(reflect.TypeOf(f64).Size()) + var i int + SizeOfInt = int(reflect.TypeOf(i).Size()) + var m map[int]int + SizeOfMap = int(reflect.TypeOf(m).Size()) + var ptr *int + SizeOfPtr = int(reflect.TypeOf(ptr).Size()) + var slice []int + SizeOfSlice = int(reflect.TypeOf(slice).Size()) + var str string + SizeOfString = int(reflect.TypeOf(str).Size()) + var u8 uint8 + SizeOfUint8 = int(reflect.TypeOf(u8).Size()) + var u16 uint16 + SizeOfUint16 = int(reflect.TypeOf(u16).Size()) + var u32 uint32 + SizeOfUint32 = int(reflect.TypeOf(u32).Size()) + var u64 uint64 + SizeOfUint64 = int(reflect.TypeOf(u64).Size()) +} + +var SizeOfBool int +var SizeOfFloat32 int +var SizeOfFloat64 int +var SizeOfInt int +var SizeOfMap int +var SizeOfPtr int +var SizeOfSlice int +var SizeOfString int +var SizeOfUint8 int +var SizeOfUint16 int +var SizeOfUint32 int +var SizeOfUint64 int diff --git a/vendor/github.com/blevesearch/go-porterstemmer/.gitignore b/vendor/github.com/blevesearch/go-porterstemmer/.gitignore new file mode 100644 index 0000000..d1ffcc5 --- /dev/null +++ b/vendor/github.com/blevesearch/go-porterstemmer/.gitignore @@ -0,0 +1,8 @@ +#* +*.sublime-* +*~ +.#* +.project +.settings +.DS_Store +/testdata diff --git a/vendor/github.com/blevesearch/go-porterstemmer/.travis.yml b/vendor/github.com/blevesearch/go-porterstemmer/.travis.yml new file mode 100644 index 0000000..d032f23 --- /dev/null +++ b/vendor/github.com/blevesearch/go-porterstemmer/.travis.yml @@ -0,0 +1,16 @@ +language: go + +go: + - 1.4 + +script: + - go get golang.org/x/tools/cmd/vet + - go get golang.org/x/tools/cmd/cover + - go get github.com/mattn/goveralls + - go test -v -covermode=count -coverprofile=profile.out + - go vet + - goveralls -service drone.io -coverprofile=profile.out -repotoken $COVERALLS + +notifications: + email: + - marty.schoch@gmail.com diff --git a/vendor/github.com/blevesearch/go-porterstemmer/LICENSE b/vendor/github.com/blevesearch/go-porterstemmer/LICENSE new file mode 100644 index 0000000..8d2999c --- /dev/null +++ b/vendor/github.com/blevesearch/go-porterstemmer/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2013 Charles Iliya Krempeaux :: http://changelog.ca/ + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/github.com/blevesearch/go-porterstemmer/README.md b/vendor/github.com/blevesearch/go-porterstemmer/README.md new file mode 100644 index 0000000..d96911a --- /dev/null +++ b/vendor/github.com/blevesearch/go-porterstemmer/README.md @@ -0,0 +1,118 @@ +# This fork... + +I'm maintaining this fork because the original author was not replying to issues or pull requests. For now I plan on maintaining this fork as necessary. + +## Status + +[![Build Status](https://travis-ci.org/blevesearch/go-porterstemmer.svg?branch=master)](https://travis-ci.org/blevesearch/go-porterstemmer) + +[![Coverage Status](https://coveralls.io/repos/blevesearch/go-porterstemmer/badge.png?branch=HEAD)](https://coveralls.io/r/blevesearch/go-porterstemmer?branch=HEAD) + +# Go Porter Stemmer + +A native Go clean room implementation of the Porter Stemming Algorithm. + +This algorithm is of interest to people doing Machine Learning or +Natural Language Processing (NLP). + +This is NOT a port. This is a native Go implementation from the human-readable +description of the algorithm. + +I've tried to make it (more) efficient by NOT internally using string's, but +instead internally using []rune's and using the same (array) buffer used by +the []rune slice (and sub-slices) at all steps of the algorithm. + +For Porter Stemmer algorithm, see: + +http://tartarus.org/martin/PorterStemmer/def.txt (URL #1) + +http://tartarus.org/martin/PorterStemmer/ (URL #2) + +# Departures + +Also, since when I initially implemented it, it failed the tests at... + +http://tartarus.org/martin/PorterStemmer/voc.txt (URL #3) + +http://tartarus.org/martin/PorterStemmer/output.txt (URL #4) + +... after reading the human-readble text over and over again to try to figure out +what the error I made was (and doing all sorts of things to debug it) I came to the +conclusion that the some of these tests were wrong according to the human-readable +description of the algorithm. + +This led me to wonder if maybe other people's code that was passing these tests had +rules that were not in the human-readable description. Which led me to look at the source +code here... + +http://tartarus.org/martin/PorterStemmer/c.txt (URL #5) + +... When I looked there I noticed that there are some items marked as a "DEPARTURE", +which differ from the original algorithm. (There are 2 of these.) + +I implemented these departures, and the tests at URL #3 and URL #4 all passed. + +## Usage + +To use this Golang library, use with something like: + + package main + + import ( + "fmt" + "github.com/reiver/go-porterstemmer" + ) + + func main() { + + word := "Waxes" + + stem := porterstemmer.StemString(word) + + fmt.Printf("The word [%s] has the stem [%s].\n", word, stem) + } + +Alternatively, if you want to be a bit more efficient, use []rune slices instead, with code like: + + package main + + import ( + "fmt" + "github.com/reiver/go-porterstemmer" + ) + + func main() { + + word := []rune("Waxes") + + stem := porterstemmer.Stem(word) + + fmt.Printf("The word [%s] has the stem [%s].\n", string(word), string(stem)) + } + +Although NOTE that the above code may modify original slice (named "word" in the example) as a side +effect, for efficiency reasons. And that the slice named "stem" in the example above may be a +sub-slice of the slice named "word". + +Also alternatively, if you already know that your word is already lowercase (and you don't need +this library to lowercase your word for you) you can instead use code like: + + package main + + import ( + "fmt" + "github.com/reiver/go-porterstemmer" + ) + + func main() { + + word := []rune("waxes") + + stem := porterstemmer.StemWithoutLowerCasing(word) + + fmt.Printf("The word [%s] has the stem [%s].\n", string(word), string(stem)) + } + +Again NOTE (like with the previous example) that the above code may modify original slice (named +"word" in the example) as a side effect, for efficiency reasons. And that the slice named "stem" +in the example above may be a sub-slice of the slice named "word". diff --git a/vendor/github.com/blevesearch/go-porterstemmer/porterstemmer.go b/vendor/github.com/blevesearch/go-porterstemmer/porterstemmer.go new file mode 100644 index 0000000..d1f77e6 --- /dev/null +++ b/vendor/github.com/blevesearch/go-porterstemmer/porterstemmer.go @@ -0,0 +1,839 @@ +package porterstemmer + +import ( + // "log" + "unicode" +) + +func isConsonant(s []rune, i int) bool { + + //DEBUG + //log.Printf("isConsonant: [%+v]", string(s[i])) + + result := true + + switch s[i] { + case 'a', 'e', 'i', 'o', 'u': + result = false + case 'y': + if 0 == i { + result = true + } else { + result = !isConsonant(s, i-1) + } + default: + result = true + } + + return result +} + +func measure(s []rune) uint { + + // Initialize. + lenS := len(s) + result := uint(0) + i := 0 + + // Short Circuit. + if 0 == lenS { + /////////// RETURN + return result + } + + // Ignore (potential) consonant sequence at the beginning of word. + for isConsonant(s, i) { + + //DEBUG + //log.Printf("[measure([%s])] Eat Consonant [%d] -> [%s]", string(s), i, string(s[i])) + + i++ + if i >= lenS { + /////////////// RETURN + return result + } + } + + // For each pair of a vowel sequence followed by a consonant sequence, increment result. +Outer: + for i < lenS { + + for !isConsonant(s, i) { + + //DEBUG + //log.Printf("[measure([%s])] VOWEL [%d] -> [%s]", string(s), i, string(s[i])) + + i++ + if i >= lenS { + /////////// BREAK + break Outer + } + } + for isConsonant(s, i) { + + //DEBUG + //log.Printf("[measure([%s])] CONSONANT [%d] -> [%s]", string(s), i, string(s[i])) + + i++ + if i >= lenS { + result++ + /////////// BREAK + break Outer + } + } + result++ + } + + // Return + return result +} + +func hasSuffix(s, suffix []rune) bool { + + lenSMinusOne := len(s) - 1 + lenSuffixMinusOne := len(suffix) - 1 + + if lenSMinusOne <= lenSuffixMinusOne { + return false + } else if s[lenSMinusOne] != suffix[lenSuffixMinusOne] { // I suspect checking this first should speed this function up in practice. + /////// RETURN + return false + } else { + + for i := 0; i < lenSuffixMinusOne; i++ { + + if suffix[i] != s[lenSMinusOne-lenSuffixMinusOne+i] { + /////////////// RETURN + return false + } + + } + + } + + return true +} + +func containsVowel(s []rune) bool { + + lenS := len(s) + + for i := 0; i < lenS; i++ { + + if !isConsonant(s, i) { + /////////// RETURN + return true + } + + } + + return false +} + +func hasRepeatDoubleConsonantSuffix(s []rune) bool { + + // Initialize. + lenS := len(s) + + result := false + + // Do it! + if 2 > lenS { + result = false + } else if s[lenS-1] == s[lenS-2] && isConsonant(s, lenS-1) { // Will using isConsonant() cause a problem with "YY"? + result = true + } else { + result = false + } + + // Return, + return result +} + +func hasConsonantVowelConsonantSuffix(s []rune) bool { + + // Initialize. + lenS := len(s) + + result := false + + // Do it! + if 3 > lenS { + result = false + } else if isConsonant(s, lenS-3) && !isConsonant(s, lenS-2) && isConsonant(s, lenS-1) { + result = true + } else { + result = false + } + + // Return + return result +} + +func step1a(s []rune) []rune { + + // Initialize. + var result []rune = s + + lenS := len(s) + + // Do it! + if suffix := []rune("sses"); hasSuffix(s, suffix) { + + lenTrim := 2 + + subSlice := s[:lenS-lenTrim] + + result = subSlice + } else if suffix := []rune("ies"); hasSuffix(s, suffix) { + lenTrim := 2 + + subSlice := s[:lenS-lenTrim] + + result = subSlice + } else if suffix := []rune("ss"); hasSuffix(s, suffix) { + + result = s + } else if suffix := []rune("s"); hasSuffix(s, suffix) { + + lenSuffix := 1 + + subSlice := s[:lenS-lenSuffix] + + result = subSlice + } + + // Return. + return result +} + +func step1b(s []rune) []rune { + + // Initialize. + var result []rune = s + + lenS := len(s) + + // Do it! + if suffix := []rune("eed"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 0 < m { + lenTrim := 1 + + result = s[:lenS-lenTrim] + } + } else if suffix := []rune("ed"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + if containsVowel(subSlice) { + + if suffix2 := []rune("at"); hasSuffix(subSlice, suffix2) { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + } else if suffix2 := []rune("bl"); hasSuffix(subSlice, suffix2) { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + } else if suffix2 := []rune("iz"); hasSuffix(subSlice, suffix2) { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + } else if c := subSlice[len(subSlice)-1]; 'l' != c && 's' != c && 'z' != c && hasRepeatDoubleConsonantSuffix(subSlice) { + lenTrim := 1 + + lenSubSlice := len(subSlice) + + result = subSlice[:lenSubSlice-lenTrim] + } else if c := subSlice[len(subSlice)-1]; 1 == measure(subSlice) && hasConsonantVowelConsonantSuffix(subSlice) && 'w' != c && 'x' != c && 'y' != c { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + + result[len(result)-1] = 'e' + } else { + result = subSlice + } + + } + } else if suffix := []rune("ing"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + if containsVowel(subSlice) { + + if suffix2 := []rune("at"); hasSuffix(subSlice, suffix2) { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + + result[len(result)-1] = 'e' + } else if suffix2 := []rune("bl"); hasSuffix(subSlice, suffix2) { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + + result[len(result)-1] = 'e' + } else if suffix2 := []rune("iz"); hasSuffix(subSlice, suffix2) { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + + result[len(result)-1] = 'e' + } else if c := subSlice[len(subSlice)-1]; 'l' != c && 's' != c && 'z' != c && hasRepeatDoubleConsonantSuffix(subSlice) { + lenTrim := 1 + + lenSubSlice := len(subSlice) + + result = subSlice[:lenSubSlice-lenTrim] + } else if c := subSlice[len(subSlice)-1]; 1 == measure(subSlice) && hasConsonantVowelConsonantSuffix(subSlice) && 'w' != c && 'x' != c && 'y' != c { + lenTrim := -1 + + result = s[:lenS-lenSuffix-lenTrim] + + result[len(result)-1] = 'e' + } else { + result = subSlice + } + + } + } + + // Return. + return result +} + +func step1c(s []rune) []rune { + + // Initialize. + lenS := len(s) + + result := s + + // Do it! + if 2 > lenS { + /////////// RETURN + return result + } + + if 'y' == s[lenS-1] && containsVowel(s[:lenS-1]) { + + result[lenS-1] = 'i' + + } else if 'Y' == s[lenS-1] && containsVowel(s[:lenS-1]) { + + result[lenS-1] = 'I' + + } + + // Return. + return result +} + +func step2(s []rune) []rune { + + // Initialize. + lenS := len(s) + + result := s + + // Do it! + if suffix := []rune("ational"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-5] = 'e' + result = result[:lenS-4] + } + } else if suffix := []rune("tional"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = result[:lenS-2] + } + } else if suffix := []rune("enci"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-1] = 'e' + } + } else if suffix := []rune("anci"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-1] = 'e' + } + } else if suffix := []rune("izer"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-1] + } + } else if suffix := []rune("bli"); hasSuffix(s, suffix) { // --DEPARTURE-- + // } else if suffix := []rune("abli") ; hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-1] = 'e' + } + } else if suffix := []rune("alli"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-2] + } + } else if suffix := []rune("entli"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-2] + } + } else if suffix := []rune("eli"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-2] + } + } else if suffix := []rune("ousli"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-2] + } + } else if suffix := []rune("ization"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-5] = 'e' + + result = s[:lenS-4] + } + } else if suffix := []rune("ation"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-3] = 'e' + + result = s[:lenS-2] + } + } else if suffix := []rune("ator"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-2] = 'e' + + result = s[:lenS-1] + } + } else if suffix := []rune("alism"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-3] + } + } else if suffix := []rune("iveness"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-4] + } + } else if suffix := []rune("fulness"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-4] + } + } else if suffix := []rune("ousness"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-4] + } + } else if suffix := []rune("aliti"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result = s[:lenS-3] + } + } else if suffix := []rune("iviti"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-3] = 'e' + + result = result[:lenS-2] + } + } else if suffix := []rune("biliti"); hasSuffix(s, suffix) { + if 0 < measure(s[:lenS-len(suffix)]) { + result[lenS-5] = 'l' + result[lenS-4] = 'e' + + result = result[:lenS-3] + } + } else if suffix := []rune("logi"); hasSuffix(s, suffix) { // --DEPARTURE-- + if 0 < measure(s[:lenS-len(suffix)]) { + lenTrim := 1 + + result = s[:lenS-lenTrim] + } + } + + // Return. + return result +} + +func step3(s []rune) []rune { + + // Initialize. + lenS := len(s) + result := s + + // Do it! + if suffix := []rune("icate"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + if 0 < measure(s[:lenS-lenSuffix]) { + result = result[:lenS-3] + } + } else if suffix := []rune("ative"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 0 < m { + result = subSlice + } + } else if suffix := []rune("alize"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + if 0 < measure(s[:lenS-lenSuffix]) { + result = result[:lenS-3] + } + } else if suffix := []rune("iciti"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + if 0 < measure(s[:lenS-lenSuffix]) { + result = result[:lenS-3] + } + } else if suffix := []rune("ical"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + if 0 < measure(s[:lenS-lenSuffix]) { + result = result[:lenS-2] + } + } else if suffix := []rune("ful"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 0 < m { + result = subSlice + } + } else if suffix := []rune("ness"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 0 < m { + result = subSlice + } + } + + // Return. + return result +} + +func step4(s []rune) []rune { + + // Initialize. + lenS := len(s) + result := s + + // Do it! + if suffix := []rune("al"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = result[:lenS-lenSuffix] + } + } else if suffix := []rune("ance"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = result[:lenS-lenSuffix] + } + } else if suffix := []rune("ence"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = result[:lenS-lenSuffix] + } + } else if suffix := []rune("er"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ic"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("able"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ible"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ant"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ement"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ment"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ent"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ion"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + c := subSlice[len(subSlice)-1] + + if 1 < m && ('s' == c || 't' == c) { + result = subSlice + } + } else if suffix := []rune("ou"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ism"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ate"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("iti"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ous"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ive"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } else if suffix := []rune("ize"); hasSuffix(s, suffix) { + lenSuffix := len(suffix) + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } + + // Return. + return result +} + +func step5a(s []rune) []rune { + + // Initialize. + lenS := len(s) + result := s + + // Do it! + if 'e' == s[lenS-1] { + lenSuffix := 1 + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } else if 1 == m { + if c := subSlice[len(subSlice)-1]; !(hasConsonantVowelConsonantSuffix(subSlice) && 'w' != c && 'x' != c && 'y' != c) { + result = subSlice + } + } + } + + // Return. + return result +} + +func step5b(s []rune) []rune { + + // Initialize. + lenS := len(s) + result := s + + // Do it! + if 2 < lenS && 'l' == s[lenS-2] && 'l' == s[lenS-1] { + + lenSuffix := 1 + + subSlice := s[:lenS-lenSuffix] + + m := measure(subSlice) + + if 1 < m { + result = subSlice + } + } + + // Return. + return result +} + +func StemString(s string) string { + + // Convert string to []rune + runeArr := []rune(s) + + // Stem. + runeArr = Stem(runeArr) + + // Convert []rune to string + str := string(runeArr) + + // Return. + return str +} + +func Stem(s []rune) []rune { + + // Initialize. + lenS := len(s) + + // Short circuit. + if 0 == lenS { + /////////// RETURN + return s + } + + // Make all runes lowercase. + for i := 0; i < lenS; i++ { + s[i] = unicode.ToLower(s[i]) + } + + // Stem + result := StemWithoutLowerCasing(s) + + // Return. + return result +} + +func StemWithoutLowerCasing(s []rune) []rune { + + // Initialize. + lenS := len(s) + + // Words that are of length 2 or less is already stemmed. + // Don't do anything. + if 2 >= lenS { + /////////// RETURN + return s + } + + // Stem + s = step1a(s) + s = step1b(s) + s = step1c(s) + s = step2(s) + s = step3(s) + s = step4(s) + s = step5a(s) + s = step5b(s) + + // Return. + return s +} diff --git a/vendor/github.com/lytics/multibayes/.travis.yml b/vendor/github.com/lytics/multibayes/.travis.yml new file mode 100644 index 0000000..a3a4294 --- /dev/null +++ b/vendor/github.com/lytics/multibayes/.travis.yml @@ -0,0 +1,2 @@ +language: go +script: go test -race -cpu 1,2,4 -v ./... \ No newline at end of file diff --git a/vendor/github.com/lytics/multibayes/README.md b/vendor/github.com/lytics/multibayes/README.md new file mode 100644 index 0000000..cde5840 --- /dev/null +++ b/vendor/github.com/lytics/multibayes/README.md @@ -0,0 +1,63 @@ +Multibayes +========== + +[![Build Status](https://travis-ci.org/lytics/multibayes.svg?branch=master)](https://travis-ci.org/lytics/multibayes) [![GoDoc](https://godoc.org/github.com/lytics/multibayes?status.svg)](https://godoc.org/github.com/lytics/multibayes) + +Multiclass naive Bayesian document classification. + +Often in document classification, a document may have more than one relevant classification -- a question on [stackoverflow](http://stackoverflow.com) might have tags "go", "map", and "interface". + +While multinomial Bayesian classification offers a one-of-many classification, multibayes offers tools for many-of-many classification. The multibayes library strives to offer efficient storage and calculation of multiple Bayesian posterior classification probabilities. + +## Usage + +A new classifier is created with the `NewClassifier` function, and can be trained by adding documents and classes by calling the `Add` method: + +```go +classifier.Add("A new document", []string{"class1", "class2"}) +``` + +Posterior probabilities for a new document are calculated by calling the `Posterior` method: + +```go +classifier.Posterior("Another new document") +``` + +A posterior class probability is returned for each class observed in the training set, which the user can use to determine class assignment. A user can then assign classifications according to his or her own heuristics -- for example, by using all classes that yield a posterior probability greater than 0.8 + + +## Example + +```go +documents := []struct { + Text string + Classes []string +}{ + { + Text: "My dog has fleas.", + Classes: []string{"vet"}, + }, + { + Text: "My cat has ebola.", + Classes: []string{"vet", "cdc"}, + }, + { + Text: "Aaron has ebola.", + Classes: []string{"cdc"}, + }, +} + +classifier := NewClassifier() +classifier.MinClassSize = 0 + +// train the classifier +for _, document := range documents { + classifier.Add(document.Text, document.Classes) +} + +// predict new classes +probs := classifier.Posterior("Aaron's dog has fleas.") +fmt.Printf("Posterior Probabilities: %+v\n", probs) + +// Posterior Probabilities: map[vet:0.8571 cdc:0.2727] +``` diff --git a/vendor/github.com/lytics/multibayes/doc.go b/vendor/github.com/lytics/multibayes/doc.go new file mode 100644 index 0000000..46e2da7 --- /dev/null +++ b/vendor/github.com/lytics/multibayes/doc.go @@ -0,0 +1,9 @@ +// Multiclass naive Bayesian document classification. +// +// While multinomial Bayesian classification offers +// one-of-many classification, multibayes offers tools +// for many-of-many classification. The multibayes +// library strives to offer efficient storage and +// calculation of multiple Bayesian posterior classification +// probabilities. +package multibayes diff --git a/vendor/github.com/lytics/multibayes/encoding.go b/vendor/github.com/lytics/multibayes/encoding.go new file mode 100644 index 0000000..99fec8b --- /dev/null +++ b/vendor/github.com/lytics/multibayes/encoding.go @@ -0,0 +1,66 @@ +package multibayes + +import ( + "encoding/json" + "io/ioutil" +) + +type jsonableClassifier struct { + Matrix *sparseMatrix `json:"matrix"` +} + +func (c *Classifier) MarshalJSON() ([]byte, error) { + return json.Marshal(&jsonableClassifier{c.Matrix}) +} + +func (c *Classifier) UnmarshalJSON(buf []byte) error { + j := jsonableClassifier{} + + err := json.Unmarshal(buf, &j) + if err != nil { + return nil + } + + *c = *NewClassifier() + c.Matrix = j.Matrix + + return nil +} + +// Initialize a new classifier from a JSON byte slice. +func NewClassifierFromJSON(buf []byte) (*Classifier, error) { + classifier := &Classifier{} + + err := classifier.UnmarshalJSON(buf) + if err != nil { + return nil, err + } + + return classifier, nil +} + +func LoadClassifierFromFile(filename string) (*Classifier, error) { + buf, err := ioutil.ReadFile(filename) + if err != nil { + return nil, err + } + + return NewClassifierFromJSON(buf) +} + +func (s *sparseColumn) MarshalJSON() ([]byte, error) { + return json.Marshal(s.Data) +} + +func (s *sparseColumn) UnmarshalJSON(buf []byte) error { + var data []int + + err := json.Unmarshal(buf, &data) + if err != nil { + return err + } + + s.Data = data + + return nil +} diff --git a/vendor/github.com/lytics/multibayes/sparse.go b/vendor/github.com/lytics/multibayes/sparse.go new file mode 100644 index 0000000..a0f7b77 --- /dev/null +++ b/vendor/github.com/lytics/multibayes/sparse.go @@ -0,0 +1,73 @@ +package multibayes + +type sparseMatrix struct { + Tokens map[string]*sparseColumn `json:"tokens"` // []map[tokenindex]occurence + Classes map[string]*sparseColumn `json:"classes"` // map[classname]classindex + N int `json:"n"` // number of rows currently in the matrix +} + +type sparseColumn struct { + Data []int `json:"data"` +} + +func newSparseColumn() *sparseColumn { + return &sparseColumn{ + Data: make([]int, 0, 1000), + } +} + +func (s *sparseColumn) Add(index int) { + s.Data = append(s.Data, index) +} + +// return the number of rows that contain the column +func (s *sparseColumn) Count() int { + return len(s.Data) +} + +// sparse to dense +func (s *sparseColumn) Expand(n int) []float64 { + expanded := make([]float64, n) + for _, index := range s.Data { + expanded[index] = 1.0 + } + return expanded +} + +func newSparseMatrix() *sparseMatrix { + return &sparseMatrix{ + Tokens: make(map[string]*sparseColumn), + Classes: make(map[string]*sparseColumn), + N: 0, + } +} + +func (s *sparseMatrix) Add(ngrams []ngram, classes []string) { + if len(ngrams) == 0 || len(classes) == 0 { + return + } + for _, class := range classes { + if _, ok := s.Classes[class]; !ok { + s.Classes[class] = newSparseColumn() + } + + s.Classes[class].Add(s.N) + } + + // add ngrams uniquely + added := make(map[string]int) + for _, ngram := range ngrams { + gramString := ngram.String() + if _, ok := s.Tokens[gramString]; !ok { + s.Tokens[gramString] = newSparseColumn() + } + + // only add the document index once for the ngram + if _, ok := added[gramString]; !ok { + added[gramString] = 1 + s.Tokens[gramString].Add(s.N) + } + } + // increment the row counter + s.N++ +} diff --git a/vendor/github.com/lytics/multibayes/stopbytes.go b/vendor/github.com/lytics/multibayes/stopbytes.go new file mode 100644 index 0000000..9ec1425 --- /dev/null +++ b/vendor/github.com/lytics/multibayes/stopbytes.go @@ -0,0 +1,181 @@ +package multibayes + +var ( + stopbytes = [][]byte{ + []byte(`i`), + []byte(`me`), + []byte(`my`), + []byte(`myself`), + []byte(`we`), + []byte(`our`), + []byte(`ours`), + []byte(`ourselves`), + []byte(`you`), + []byte(`your`), + []byte(`yours`), + []byte(`yourself`), + []byte(`yourselves`), + []byte(`he`), + []byte(`him`), + []byte(`his`), + []byte(`himself`), + []byte(`she`), + []byte(`her`), + []byte(`hers`), + []byte(`herself`), + []byte(`it`), + []byte(`its`), + []byte(`itself`), + []byte(`they`), + []byte(`them`), + []byte(`their`), + []byte(`theirs`), + []byte(`themselves`), + []byte(`what`), + []byte(`which`), + []byte(`who`), + []byte(`whom`), + []byte(`this`), + []byte(`that`), + []byte(`these`), + []byte(`those`), + []byte(`am`), + []byte(`is`), + []byte(`are`), + []byte(`was`), + []byte(`were`), + []byte(`be`), + []byte(`been`), + []byte(`being`), + []byte(`have`), + []byte(`has`), + []byte(`had`), + []byte(`having`), + []byte(`do`), + []byte(`does`), + []byte(`did`), + []byte(`doing`), + []byte(`would`), + []byte(`should`), + []byte(`could`), + []byte(`ought`), + []byte(`i'm`), + []byte(`you're`), + []byte(`he's`), + []byte(`she's`), + []byte(`it's`), + []byte(`we're`), + []byte(`they're`), + []byte(`i've`), + []byte(`you've`), + []byte(`we've`), + []byte(`they've`), + []byte(`i'd`), + []byte(`you'd`), + []byte(`he'd`), + []byte(`she'd`), + []byte(`we'd`), + []byte(`they'd`), + []byte(`i'll`), + []byte(`you'll`), + []byte(`he'll`), + []byte(`she'll`), + []byte(`we'll`), + []byte(`they'll`), + []byte(`isn't`), + []byte(`aren't`), + []byte(`wasn't`), + []byte(`weren't`), + []byte(`hasn't`), + []byte(`haven't`), + []byte(`hadn't`), + []byte(`doesn't`), + []byte(`don't`), + []byte(`didn't`), + []byte(`won't`), + []byte(`wouldn't`), + []byte(`shan't`), + []byte(`shouldn't`), + []byte(`can't`), + []byte(`cannot`), + []byte(`couldn't`), + []byte(`mustn't`), + []byte(`let's`), + []byte(`that's`), + []byte(`who's`), + []byte(`what's`), + []byte(`here's`), + []byte(`there's`), + []byte(`when's`), + []byte(`where's`), + []byte(`why's`), + []byte(`how's`), + []byte(`a`), + []byte(`an`), + []byte(`the`), + []byte(`and`), + []byte(`but`), + []byte(`if`), + []byte(`or`), + []byte(`because`), + []byte(`as`), + []byte(`until`), + []byte(`while`), + []byte(`of`), + []byte(`at`), + []byte(`by`), + []byte(`for`), + []byte(`with`), + []byte(`about`), + []byte(`against`), + []byte(`between`), + []byte(`into`), + []byte(`through`), + []byte(`during`), + []byte(`before`), + []byte(`after`), + []byte(`above`), + []byte(`below`), + []byte(`to`), + []byte(`from`), + []byte(`up`), + []byte(`down`), + []byte(`in`), + []byte(`out`), + []byte(`on`), + []byte(`off`), + []byte(`over`), + []byte(`under`), + []byte(`again`), + []byte(`further`), + []byte(`then`), + []byte(`once`), + []byte(`here`), + []byte(`there`), + []byte(`when`), + []byte(`where`), + []byte(`why`), + []byte(`how`), + []byte(`all`), + []byte(`any`), + []byte(`both`), + []byte(`each`), + []byte(`few`), + []byte(`more`), + []byte(`most`), + []byte(`other`), + []byte(`some`), + []byte(`such`), + []byte(`no`), + []byte(`nor`), + []byte(`not`), + []byte(`only`), + []byte(`own`), + []byte(`same`), + []byte(`so`), + []byte(`than`), + []byte(`too`), + []byte(`very`), + []byte(`-`), + } +) diff --git a/vendor/github.com/lytics/multibayes/testutil.go b/vendor/github.com/lytics/multibayes/testutil.go new file mode 100644 index 0000000..b191e4c --- /dev/null +++ b/vendor/github.com/lytics/multibayes/testutil.go @@ -0,0 +1,33 @@ +package multibayes + +type document struct { + Text string + Classes []string +} + +func getTestData() []document { + + documents := []document{ + { + Text: "My dog has fleas.", + Classes: []string{"vet"}, + }, + { + Text: "My cat has ebola.", + Classes: []string{"vet", "cdc"}, + }, + { + Text: "Aaron has ebola.", + Classes: []string{"cdc"}, + }, + } + + return documents +} + +func (c *Classifier) trainWithTestData() { + testdata := getTestData() + for _, document := range testdata { + c.Add(document.Text, document.Classes) + } +} diff --git a/vendor/github.com/lytics/multibayes/tokenize.go b/vendor/github.com/lytics/multibayes/tokenize.go new file mode 100644 index 0000000..970c7b3 --- /dev/null +++ b/vendor/github.com/lytics/multibayes/tokenize.go @@ -0,0 +1,166 @@ +package multibayes + +import ( + "bytes" + "encoding/base64" + "regexp" + "strings" + + "github.com/blevesearch/bleve/analysis" + regexp_tokenizer "github.com/blevesearch/bleve/analysis/tokenizer/regexp" + "github.com/blevesearch/go-porterstemmer" +) + +const ( + tokenSeparator = "_" +) + +type ngram struct { + Tokens [][]byte +} + +// encodes in base64 for safe comparison +func (ng *ngram) String() string { + encoded := make([]string, len(ng.Tokens)) + + for i, token := range ng.Tokens { + encoded[i] = string(token) + //encoded[i] = base64.StdEncoding.EncodeToString(token) // safer? + } + + return strings.Join(encoded, tokenSeparator) +} + +func decodeNGram(s string) (*ngram, error) { + encodedTokens := strings.Split(s, tokenSeparator) + + tokens := make([][]byte, len(encodedTokens)) + + var err error + for i, encodedToken := range encodedTokens { + tokens[i], err = base64.StdEncoding.DecodeString(encodedToken) + if err != nil { + return nil, err + } + } + return &ngram{tokens}, nil +} + +type tokenizerConf struct { + regexp *regexp.Regexp + NGramSize int64 +} + +type tokenizer struct { + regexp_tokenizer.RegexpTokenizer + Conf *tokenizerConf +} + +func validateConf(tc *tokenizerConf) { + tc.regexp = regexp.MustCompile(`[0-9A-z_'\-]+|\%|\$`) + + // TODO: We force NGramSize = 1 so as to create disjoint ngrams, + // which is necessary for the naive assumption of conditional + // independence among tokens. It would be great to allow ngrams + // to be greater than 1 and select only disjoint ngrams from the + // tokenizer. + tc.NGramSize = 1 +} + +func newTokenizer(tc *tokenizerConf) (*tokenizer, error) { + validateConf(tc) + + return &tokenizer{*regexp_tokenizer.NewRegexpTokenizer(tc.regexp), tc}, nil +} + +// Tokenize and Gramify +func (t *tokenizer) Parse(doc string) []ngram { + // maybe use token types for datetimes or something instead of + // the actual byte slice + alltokens := t.Tokenize([]byte(strings.ToLower(doc))) + filtered := make(map[int][]byte) + for i, token := range alltokens { + exclude := false + for _, stop := range stopbytes { + if bytes.Equal(token.Term, stop) { + exclude = true + break + } + } + + if exclude { + continue + } + + tokenString := porterstemmer.StemString(string(token.Term)) + //tokenBytes := porterstemmer.Stem(token.Term) // takes runes, not bytes + + if token.Type == analysis.Numeric { + tokenString = "NUMBER" + } else if token.Type == analysis.DateTime { + tokenString = "DATE" + } + + filtered[i] = []byte(tokenString) + } + + // only consider sequential terms as candidates for ngrams + // terms separated by stopwords are ineligible + allNGrams := make([]ngram, 0, 100) + currentTokens := make([][]byte, 0, 100) + + lastObserved := -1 + for i, token := range filtered { + if (i - 1) != lastObserved { + + ngrams := t.tokensToNGrams(currentTokens) + allNGrams = append(allNGrams, ngrams...) + + currentTokens = make([][]byte, 0, 100) + } + + currentTokens = append(currentTokens, token) + lastObserved = i + } + + // bring in the last one + if len(currentTokens) > 0 { + ngrams := t.tokensToNGrams(currentTokens) + allNGrams = append(allNGrams, ngrams...) + } + + return allNGrams +} + +func (t *tokenizer) tokensToNGrams(tokens [][]byte) []ngram { + nTokens := int64(len(tokens)) + + nNGrams := int64(0) + for i := int64(1); i <= t.Conf.NGramSize; i++ { + chosen := choose(nTokens, i) + nNGrams += chosen + } + + ngrams := make([]ngram, 0, nNGrams) + for ngramSize := int64(1); ngramSize <= t.Conf.NGramSize; ngramSize++ { + nNGramsOfSize := choose(nTokens, ngramSize) + + for i := int64(0); i < nNGramsOfSize; i++ { + ngrams = append(ngrams, ngram{tokens[i:(i + ngramSize)]}) + } + } + + return ngrams +} + +// not a binomial coefficient -- combinations must be sequential +func choose(n, k int64) int64 { + return max(n-k+int64(1), 0) +} + +func max(x, y int64) int64 { + if x > y { + return x + } + return y +} diff --git a/vendor/modules.txt b/vendor/modules.txt new file mode 100644 index 0000000..0d6695e --- /dev/null +++ b/vendor/modules.txt @@ -0,0 +1,16 @@ +# github.com/blevesearch/bleve v0.8.1 +github.com/blevesearch/bleve/analysis +github.com/blevesearch/bleve/analysis/tokenizer/regexp +github.com/blevesearch/bleve/document +github.com/blevesearch/bleve/geo +github.com/blevesearch/bleve/index +github.com/blevesearch/bleve/index/store +github.com/blevesearch/bleve/numeric +github.com/blevesearch/bleve/registry +github.com/blevesearch/bleve/search +github.com/blevesearch/bleve/search/highlight +github.com/blevesearch/bleve/size +# github.com/blevesearch/go-porterstemmer v1.0.2 +github.com/blevesearch/go-porterstemmer +# github.com/lytics/multibayes v0.0.0-20161108162840-3457a5582021 +github.com/lytics/multibayes diff --git a/whitelist.txt b/whitelist.txt new file mode 100644 index 0000000..fc05c00 --- /dev/null +++ b/whitelist.txt @@ -0,0 +1,4 @@ +guns +cors +/favicon.ico +favicon diff --git a/zgc.go b/zgc.go new file mode 100644 index 0000000..ddd18a3 --- /dev/null +++ b/zgc.go @@ -0,0 +1,26 @@ +package main + +import ( + "log" + "runtime" + "time" +) + +func init() { + + log.Println("Garbage Collector Thread Starting") + + go memoryCleanerThread() + +} + +func memoryCleanerThread() { + + for { + time.Sleep(10 * time.Minute) + log.Println("Time to clean memory...") + runtime.GC() + log.Println("Garbage Collection done.") + } + +}