From 99bb2a61186e3949c42512bed3e73d53b68e8456 Mon Sep 17 00:00:00 2001 From: Andrea Spacca Date: Sun, 1 Jul 2018 13:51:13 +0200 Subject: [PATCH] QR code, html5 player --- server/handlers.go | 14 + .../transfer.sh-web/bindata_gen.go | 2996 +++++++++------- vendor/github.com/skip2/go-qrcode/.gitignore | 4 + vendor/github.com/skip2/go-qrcode/.travis.yml | 8 + vendor/github.com/skip2/go-qrcode/LICENSE | 19 + vendor/github.com/skip2/go-qrcode/README.md | 80 + .../skip2/go-qrcode/bitset/bitset.go | 273 ++ .../skip2/go-qrcode/bitset/bitset_test.go | 321 ++ vendor/github.com/skip2/go-qrcode/encoder.go | 455 +++ .../skip2/go-qrcode/encoder_test.go | 328 ++ .../skip2/go-qrcode/example_test.go | 31 + vendor/github.com/skip2/go-qrcode/qrcode.go | 554 +++ .../github.com/skip2/go-qrcode/qrcode/main.go | 85 + .../skip2/go-qrcode/qrcode_decode_test.go | 232 ++ .../github.com/skip2/go-qrcode/qrcode_test.go | 173 + .../skip2/go-qrcode/reedsolomon/gf2_8.go | 387 +++ .../skip2/go-qrcode/reedsolomon/gf2_8_test.go | 83 + .../skip2/go-qrcode/reedsolomon/gf_poly.go | 216 ++ .../go-qrcode/reedsolomon/gf_poly_test.go | 182 + .../go-qrcode/reedsolomon/reed_solomon.go | 73 + .../reedsolomon/reed_solomon_test.go | 89 + .../skip2/go-qrcode/regular_symbol.go | 309 ++ .../skip2/go-qrcode/regular_symbol_test.go | 31 + vendor/github.com/skip2/go-qrcode/symbol.go | 309 ++ .../github.com/skip2/go-qrcode/symbol_test.go | 334 ++ vendor/github.com/skip2/go-qrcode/version.go | 3050 +++++++++++++++++ .../skip2/go-qrcode/version_test.go | 158 + 27 files changed, 9469 insertions(+), 1325 deletions(-) create mode 100644 vendor/github.com/skip2/go-qrcode/.gitignore create mode 100644 vendor/github.com/skip2/go-qrcode/.travis.yml create mode 100644 vendor/github.com/skip2/go-qrcode/LICENSE create mode 100644 vendor/github.com/skip2/go-qrcode/README.md create mode 100644 vendor/github.com/skip2/go-qrcode/bitset/bitset.go create mode 100644 vendor/github.com/skip2/go-qrcode/bitset/bitset_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/encoder.go create mode 100644 vendor/github.com/skip2/go-qrcode/encoder_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/example_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/qrcode.go create mode 100644 vendor/github.com/skip2/go-qrcode/qrcode/main.go create mode 100644 vendor/github.com/skip2/go-qrcode/qrcode_decode_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/qrcode_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8.go create mode 100644 vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly.go create mode 100644 vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon.go create mode 100644 vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/regular_symbol.go create mode 100644 vendor/github.com/skip2/go-qrcode/regular_symbol_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/symbol.go create mode 100644 vendor/github.com/skip2/go-qrcode/symbol_test.go create mode 100644 vendor/github.com/skip2/go-qrcode/version.go create mode 100644 vendor/github.com/skip2/go-qrcode/version_test.go diff --git a/server/handlers.go b/server/handlers.go index e49f001..61791cf 100644 --- a/server/handlers.go +++ b/server/handlers.go @@ -58,6 +58,9 @@ import ( web "github.com/dutchcoders/transfer.sh-web" "github.com/gorilla/mux" "github.com/russross/blackfriday" + + qrcode "github.com/skip2/go-qrcode" + "encoding/base64" ) var ( @@ -147,6 +150,15 @@ func (s *Server) previewHandler(w http.ResponseWriter, r *http.Request) { return } + var png []byte + png, err = qrcode.Encode(resolveUrl(r, getURL(r).ResolveReference(r.URL), true), qrcode.High, 150) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + qrCode := base64.StdEncoding.EncodeToString(png) + data := struct { ContentType string Content html_template.HTML @@ -155,6 +167,7 @@ func (s *Server) previewHandler(w http.ResponseWriter, r *http.Request) { ContentLength uint64 GAKey string UserVoiceKey string + QRCode string }{ contentType, content, @@ -163,6 +176,7 @@ func (s *Server) previewHandler(w http.ResponseWriter, r *http.Request) { contentLength, s.gaKey, s.userVoiceKey, + qrCode, } if err := htmlTemplates.ExecuteTemplate(w, templatePath, data); err != nil { diff --git a/vendor/github.com/dutchcoders/transfer.sh-web/bindata_gen.go b/vendor/github.com/dutchcoders/transfer.sh-web/bindata_gen.go index 0bbb079..2cbbcaa 100644 --- a/vendor/github.com/dutchcoders/transfer.sh-web/bindata_gen.go +++ b/vendor/github.com/dutchcoders/transfer.sh-web/bindata_gen.go @@ -44,6 +44,7 @@ // dist/index.html // dist/index.txt // dist/robots.txt +// dist/scripts/ckin.js // dist/scripts/main.js // dist/scripts/vendor/modernizr.js // dist/styles/main.css @@ -190,7 +191,7 @@ func bindataDist404html() (*asset, error) { size: 4464, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -231,78 +232,79 @@ func bindataDist404txt() (*asset, error) { } var _bindataDistDownloadaudiohtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x93\xd3\x38\x12\xff\x9e\xbf\xa2\x31\x1f\x92\xb9\x8d\xed\xbc" + - "\xc6\x1e\x66\x62\x5f\xed\x02\x0b\x1c\x8f\xa3\x6e\x97\xdb\xbd\xa2\x28\x4a\xb6\xda\xb6\x18\x5b\x32\x92\x9c\x10\x86" + - "\xf9\xdf\xaf\x24\xe7\xe1\xbc\x28\xf6\x6e\x3e\x4c\xac\x7e\xfc\xba\xdd\xdd\x92\xba\x3d\x7f\x40\x45\xaa\x57\x35\x42" + - "\xa1\xab\x32\xee\xcd\x1f\xb8\xee\x7b\x96\x41\xa9\xe1\xc5\x53\x08\x3f\xc4\x60\xff\xe6\x86\x0b\x69\x49\x94\x8a\x1c" + - "\x2e\xdc\x4f\x0a\x4a\xed\x32\x7c\xd4\xfe\x5c\xb5\x3f\xa1\x13\xc3\xfc\xc1\x7b\xe4\x94\x65\x1f\x5c\x77\x87\xd6\x85" + - "\xfa\x01\xb4\xef\xc0\x5c\xfd\x08\xcc\x39\xfd\x5c\xaf\x21\x0c\x21\xee\x1d\xeb\x3b\xad\xec\x9e\x72\x6f\x5e\x20\xa1" + - "\x71\xcf\x5a\xac\x50\x13\x48\x0b\x22\x15\xea\xc8\x69\x74\xe6\x5e\x39\x5d\x56\xa1\x75\xed\xe2\xe7\x86\x2d\x22\xe7" + - "\x4f\xf7\xdd\xcf\xee\x63\x51\xd5\x44\xb3\xa4\x44\x07\x52\xc1\x35\x72\x1d\x39\x2f\x9e\x46\x48\x73\xdc\x68\x6a\xa6" + - "\x4b\x8c\xb5\x24\x5c\x65\x28\x3d\x55\x80\x0b\x4f\x89\x5a\x01\xe1\x14\x32\xa2\x34\x64\xac\x44\x50\x05\x91\x8c\xe7" + - "\x90\x49\x51\x81\x2e\x10\x52\x51\x55\x84\x53\xb7\x64\x1c\xbd\xb9\xdf\xc2\x74\x9c\xe1\xa4\xc2\xc8\xa1\xa8\x52\xc9" + - "\x6a\xcd\x04\xef\xb8\xf0\x97\xf1\x9d\x63\xe4\x05\xc3\x65\x2d\xa4\xee\xc0\x2e\x19\xd5\x45\x44\x71\xc1\x52\x74\xed" + - "\x62\x08\x8c\x33\xcd\x48\xe9\xaa\x94\x94\x18\x8d\xbd\xd1\x06\xea\x81\xeb\xc2\xdb\x92\xa4\x08\x19\x59\xb0\x54\x70" + - "\x8f\xa5\xc2\x3a\x45\xea\xba\x44\x57\x8b\x26\x2d\x5c\xcb\xa8\x79\x0e\x8c\x5b\xaf\xa4\x10\x1a\x28\x93\x98\x6a\x21" + - "\x57\x60\x52\x64\xd1\x4a\xc6\x6f\x41\x62\x19\x39\x4a\xaf\x4a\x54\x05\xa2\x76\xa0\x90\x98\x45\x8e\xdf\x92\xfc\x8a" + - "\x30\xee\xa5\x4a\x39\x5d\x1d\x2b\xd2\xf7\xfd\x4c\x70\xad\xbc\x5c\x88\xbc\x44\x52\x33\xe5\xa5\xa2\xf2\x53\xa5\xfe" + - "\x9e\x91\x8a\x95\xab\xe8\x37\xd1\xc8\x14\x7f\xfa\x8d\x70\xf5\xd3\x5b\x29\xae\xc7\xa3\xd1\x70\x32\x1a\x0d\xa7\xa3" + - "\x51\xdf\x1a\xee\xef\x0c\xf7\xc1\xec\xa9\xa8\xaf\xf1\x8b\x36\x18\xfd\xff\xc5\xe0\x13\x29\x18\x6d\xed\xbd\x16\x5c" + - "\xfc\xb0\x91\x36\xdf\xa0\x64\x6a\xde\xdc\x2e\x94\xbf\x40\x4e\x85\xf4\x2b\x41\x51\x72\xf6\x55\x7a\xa6\xda\xe7\x6b" + - "\x76\xdc\x9b\xfb\x6d\x95\xf7\x7a\xf3\x44\xd0\x15\x00\xa3\x91\x43\xc5\x92\x97\x82\x50\x27\xee\xf5\xb6\x9b\x6e\xa3" + - "\xb1\xdd\x86\xb0\x20\x12\x72\xf2\x12\x57\x10\x81\x73\x77\xe7\x3d\xfb\xf9\x25\xae\xee\xef\x9d\x9b\x8e\x0c\xcb\x60" + - "\xd0\xca\x3c\x88\xc0\x71\x2e\xe0\xae\xc3\x04\x18\x64\x0d\x4f\x4d\x89\x0e\xd8\x10\xd4\x10\xc4\x10\xf2\x21\xc8\x21" + - "\x90\x21\x54\x87\xc2\x00\xec\x7d\xff\x99\x0d\xdb\xcf\x9c\x94\x2b\xcd\x52\xf5\xcf\xe4\x13\xa6\xba\xff\x01\x22\x90" + - "\x37\x47\xd2\xd2\xd0\xed\xcf\xb7\x6f\xb0\x35\x75\x8c\x0b\x30\x30\x52\xde\xe7\xb5\xb8\xf7\xd9\x28\xbc\xff\x70\xe1" + - "\xd5\x8d\x2a\x06\x44\xe6\x4d\x85\x5c\xab\x8b\x03\xbd\xfb\x61\x2b\x5e\x42\x04\x63\xf8\x1b\x70\x5c\xc2\x13\xa2\x71" + - "\x70\x71\xe8\x0b\x81\x08\x94\x97\x4a\x24\x1a\x9f\x96\x68\xd0\x06\xe2\x62\x78\xe4\x47\x65\xe5\x72\xd4\x6b\x21\xf5" + - "\xcb\xea\x77\x92\xbf\x21\x15\x0e\xc4\xc5\xfb\xd1\x87\x23\x5c\x8f\xa8\x15\x4f\x8d\xfd\x63\x96\x92\x86\x91\x1f\x32" + - "\x2a\xaf\x26\x12\xb9\x7e\x23\x28\x7a\x8c\x2b\x94\xfa\x17\xcc\x84\xc4\x81\x8d\xfa\x9e\xf4\xfd\xc5\x60\xc9\x38\x15" + - "\xcb\x21\x50\x91\xda\x28\x0c\xa1\xdf\xd6\x42\x7f\x08\x7d\xdf\x5f\x2e\x97\xeb\x5a\x76\xc9\x26\x2b\xb6\xa2\x77\xab" + - "\x4f\xca\x88\xe6\xa4\x7f\x10\x96\x9c\x0c\xfa\x6d\x48\xfa\xc3\xb6\x92\x86\xd0\xef\x9c\x87\xa7\xe4\x15\x72\x6a\xd0" + - "\x6a\x92\xa3\x39\x88\xf6\x65\xee\x77\xf5\xba\x2d\xf1\x1d\x89\xb2\x85\xad\x6f\x4e\x16\x2c\x27\xf6\x64\x8c\xf7\x0c" + - "\x58\x89\xf5\xc5\xb0\x94\xa4\xae\x51\x1e\x48\x58\x29\xb2\x39\x5e\x4e\x30\xad\x40\x31\xee\x1e\xeb\x73\xbf\x18\x9f" + - "\x40\xf1\xc9\x09\x62\xb3\xbd\x98\x0a\x46\x29\x72\xf7\x8b\x3a\x67\xa4\x64\x71\xd7\x93\x42\x54\x78\x12\xb3\x35\x56" + - "\xb2\x1f\x81\x79\xa8\x48\x55\x97\xa8\x9c\xb8\x7d\x80\x46\x21\xa4\x44\xa1\xfa\xff\xa1\xcd\x65\x41\x52\xed\xc4\xeb" + - "\x07\x68\xfe\x2a\xe8\xdc\x6f\xca\x83\x84\xf9\x94\x2d\xe2\xde\x89\x65\x6f\x7d\x26\xa2\xdd\xf3\x36\xed\x26\x42\x9d" + - "\x60\x9e\x4f\xf6\x69\x97\x12\xe9\x9f\x4b\xf7\x64\x83\x63\xaa\xd2\xb5\x17\xb2\x13\xdf\xdd\x79\xbf\xb2\x12\xcd\x9d" + - "\x79\x7f\x3f\xf7\x8b\xc9\x39\xed\x59\x6c\xce\xf3\x6b\x98\x27\x46\xe7\x71\x7b\xa7\xfe\xbe\xaa\xad\x5a\x12\xcf\xfd" + - "\x62\x76\x5e\x55\xb1\xaf\x87\xaa\xaf\x90\xe7\xba\x80\x6f\x90\x09\x59\x11\x0d\xce\xc3\xe1\xc3\x87\x0f\x3d\xa7\x85" + - "\x83\x64\xa5\x4d\x3a\x0d\xe8\x69\xd4\x4d\xca\xee\xee\xbc\x77\xb2\xbc\xbf\x77\x36\x6f\x97\x68\xee\xa6\x9a\x40\xa2" + - "\xb9\x13\xc3\xe6\x96\x98\xfb\x2c\xb6\xd5\xdc\x86\xa8\x8d\x53\xef\xec\xbe\x92\x62\x09\x84\xb3\x8a\x68\x34\x5d\x08" + - "\xc5\x17\xfc\x89\x58\x1e\xee\x44\xe8\xee\x57\xd3\x99\xb8\x1a\x65\xc5\x38\x29\xb7\xde\x40\x22\xbe\x40\x2a\x4a\xb7" + - "\xa2\xee\x15\x6c\x9e\x44\x96\x29\xd4\xee\xc4\xae\xbf\x28\x77\x3c\x39\xb7\x7f\x3a\x3e\x6d\xb0\x5d\x2d\x6a\xe7\x5c" + - "\x58\xf6\x4b\xed\xa4\xa3\x47\x3e\x6e\x08\x50\x4b\x7b\x5a\xb9\xac\x22\x39\x9e\xf1\xa8\x0d\x7e\x43\x99\xb0\x8d\x95" + - "\x14\xa5\x3a\x2f\x68\x85\x95\x6d\x4d\xda\x1b\x7f\x97\x2d\xdb\x1d\x38\x87\xa5\xf4\x3d\xa3\xbe\xb5\x7a\x6e\x2b\x9e" + - "\x7c\xef\x13\xe4\x53\xa4\xa3\x4d\x33\xb7\x32\xed\xe6\xf4\xd7\xbb\x73\xb3\xce\x84\xd0\x28\x7f\x64\x87\xee\x49\xd8" + - "\xce\x28\x72\xce\xe5\x79\x53\xce\x09\xd3\xa9\x60\xfc\x7a\x1c\xcc\x56\xc9\xbf\x5e\xbf\x4a\xf2\x31\x2d\x8a\x3f\xfe" + - "\x60\xef\x6e\xff\xd4\xec\x8d\x0c\x3f\xbd\x2b\x5e\xbf\xa4\xff\xf8\xfc\xdc\x81\x92\x24\xa6\xa3\xfc\xa5\x55\xf9\xe9" + - "\x89\xe0\xed\x75\xb1\xb1\xb5\x14\x92\xba\xc6\xa5\x6b\x48\x24\x92\x5b\xd7\x10\x6e\xbe\x17\x62\x56\xe5\x90\x08\x49" + - "\x51\x46\xce\xc8\x69\x53\x06\xbe\x2d\x07\xe5\xaf\x5d\x33\xed\xee\xd6\x44\x45\x64\xce\xf8\x35\x8c\x80\x34\x5a\xdc" + - "\x9c\x03\x3f\x7d\x8d\xf8\xbb\x28\x9f\x4f\xc5\x77\x92\x64\xbc\x6d\xfb\xc8\xb5\x87\xaf\x44\x2e\x5c\x21\x09\xcf\xb1" + - "\xf5\x92\x94\x3a\x72\x7e\x15\x0d\xa7\x48\x4d\x8b\xfe\x5c\x94\x25\xe1\xf4\x30\x3f\x75\xfc\x9a\x50\x84\x25\xd3\x05" + - "\xcc\xd9\x26\x99\xa6\xb7\x77\x0b\x24\x52\x9b\x5e\x94\x99\x33\x69\x97\x27\x33\x4b\x5d\xfb\x7e\x52\x8a\xdc\xa3\x8d" + - "\x4e\x8b\xd4\xf4\xae\xca\x63\xc2\x77\xc0\x9e\xad\x91\xf3\xc4\xd0\xe1\xb1\x65\x38\x71\x77\x75\x14\x8f\xb9\x5f\x1f" + - "\x5d\x10\xeb\xf2\xdb\xd4\xdb\x7a\xdd\x75\x40\x5d\xfb\x7e\xce\x74\xd1\x24\xb6\x97\xe9\xf8\xe1\x77\x6e\x76\xdf\x89" + - "\xdb\x50\xb5\x29\xab\x85\x62\xa6\x4c\xae\x81\x24\x4a\x94\x8d\xc6\x1b\xd0\xa2\xbe\x86\xd1\x0d\x48\x96\x17\xda\x3e" + - "\xb5\x55\x60\x1e\xd7\x65\xb0\xb1\x97\x92\x4a\x78\xad\xd1\x46\xa1\x5c\x0f\x57\xd6\xfe\xf4\x0a\xb3\xab\x71\x76\x45" + - "\x52\x12\xcc\x92\xe4\x11\x09\x66\xb3\xd9\x15\x1d\xd1\x70\x94\x8d\xa7\xa3\x2b\xcc\x2e\xa7\xb3\x31\x49\xfc\xe0\x2a" + - "\x9c\x85\xb3\x70\x14\x4e\xa7\x64\x92\x4d\xb2\x70\x3a\x9d\x4e\x30\x18\x07\x34\x18\x87\x24\xc8\x02\x0c\xc6\x61\x18" + - "\x1a\xda\x34\xc8\x02\x3a\xc9\x82\x30\x78\x14\xce\x82\xab\xf0\x32\x98\x4c\xb2\x70\x12\x3c\x0a\x26\xc1\xc4\x48\x86" + - "\xd3\x49\x16\x04\x81\xa1\x25\x01\x0d\x2e\x2f\x5b\x6e\x68\x6c\x5c\x66\xc1\x2c\x18\x5b\xce\x24\x48\xc3\x4b\xc3\x9d" + - "\x8e\xa7\x93\xe9\x78\x1a\x98\xff\x13\x0c\x47\x01\x06\xe1\xb6\x50\xe4\x2d\x54\x08\x82\xc3\x33\xa6\x9f\x37\x89\x03" + - "\x94\x68\xe2\xa6\x84\x0b\xce\x52\x33\x25\x76\x23\xa1\xa6\x1e\xa9\xc8\x57\xc1\xc9\xb2\xed\x25\xdb\xa8\xf8\x92\x25" + - "\x89\xe0\xca\xcf\x84\xbc\xad\xf0\xa3\x8d\xe9\x47\x4a\xe4\x6d\x52\x36\xf8\x71\x3c\x19\x07\x93\xb1\x2d\xcf\xd8\x96" + - "\xc1\xf9\xe1\x65\x70\x66\x18\x30\x23\x8d\x89\xfd\xbf\x05\x4b\x71\x37\xd9\xbc\xeb\x90\x4e\x0c\x38\x7b\x1a\x27\xe7" + - "\x1c\x8b\xbb\x80\x68\xdb\x44\x1f\x8c\x02\x9b\x8e\xfa\xa0\xe1\x6d\x16\x9e\xfd\x46\x13\x41\x3b\xec\x7d\x22\x0b\xb2" + - "\x96\x3c\x12\xdc\xcc\x01\x5a\x36\x78\xc4\x6c\x27\x01\xd3\xad\x33\x9a\xa3\xf6\x8c\xc7\x0b\xe3\xb1\x8d\xee\xd1\x1b" + - "\x9a\x8e\xfd\xe6\xe8\x05\x54\xd7\xff\x93\x23\xca\xf6\x35\x8e\x26\x15\x75\x76\xe6\x68\x16\x43\xd8\x1b\xac\x76\x3d" + - "\xfc\xfd\xc5\xe0\xe2\xbb\x0d\xfd\xe1\x47\xab\x5e\xf7\xe4\xd9\x76\x2d\x52\x2c\x15\x16\xa4\xae\x57\x4e\xfc\x1f\xd1" + - "\x00\x91\xa6\xaf\x65\x3c\x07\xc2\x61\xae\xb4\x14\x3c\x8f\x45\xa3\xa9\x69\x49\xe6\xfe\x9a\x00\xad\x9e\xf4\xe0\x6d" + - "\x89\x44\xe1\xf1\x01\xb5\xc3\xb5\x51\x74\xe2\xa6\xce\xa5\x39\xed\x56\xa2\x91\x1b\x75\xdb\x18\x69\x01\xac\xaa\xa5" + - "\x58\xac\x79\xf8\xa5\x46\xc9\x90\xa7\xe8\xed\x1f\x4f\x7b\x1f\xa0\xd6\xc4\xf5\xef\x51\x35\x1f\x0c\xfa\xf6\x1b\xc7" + - "\xfe\x70\xbf\x8b\x86\x99\xef\x7d\x33\xe0\xc7\xe6\xa1\xfd\xe4\xf7\xdf\x00\x00\x00\xff\xff\x3b\x00\x94\xe4\x03\x14" + - "\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xdd\x73\xdb\x36\x12\x7f\xd7\x5f\xb1\xa1\x1f\x24\x5f\x45\x52\x5f" + + "\xa6\x14\x5b\xe4\x4d\x9b\xa4\x1f\xd7\xa6\xd7\x6b\x9b\x6b\x6f\x32\x99\x0c\x48\x2c\x49\xc4\x24\xc0\x00\xa0\x14\xc5" + + "\xd1\xff\x7e\x03\x50\x94\x69\x7d\x78\xdc\x3b\x3f\x58\x04\x76\xf7\xb7\xcb\xdd\xc5\x62\x97\xcb\x67\x54\x24\x7a\x53" + + "\x21\xe4\xba\x2c\xa2\xde\xf2\x99\xeb\xbe\x65\x29\x14\x1a\x7e\x78\x05\xf3\x77\x11\xd8\xbf\xa5\xa1\x42\x52\x10\xa5" + + "\x42\x87\x0b\xf7\x83\x82\x42\xbb\x0c\x9f\x37\x3f\x8b\xe6\x67\xee\x44\xb0\x7c\xf6\x16\x39\x65\xe9\x3b\xd7\xbd\x47" + + "\xeb\x42\x3d\x01\xed\x11\x98\xc5\x53\x60\xce\xc9\x67\x7a\x07\x61\x36\xa2\xde\xb1\xbc\xd3\xf0\x3e\x10\xee\x2d\x73" + + "\x24\x34\xea\x59\x8d\x25\x6a\x02\x49\x4e\xa4\x42\x1d\x3a\xb5\x4e\xdd\x85\xd3\x25\xe5\x5a\x57\x2e\x7e\xac\xd9\x2a" + + "\x74\xfe\x74\xdf\x7c\xed\xbe\x10\x65\x45\x34\x8b\x0b\x74\x20\x11\x5c\x23\xd7\xa1\xf3\xc3\xab\x10\x69\x86\xad\xa4" + + "\x66\xba\xc0\x48\x4b\xc2\x55\x8a\xd2\x53\x39\xb8\xf0\x8a\xa8\x0d\x10\x4e\x21\x25\x4a\x43\xca\x0a\x04\x95\x13\xc9" + + "\x78\x06\xa9\x14\x25\xe8\x1c\x21\x11\x65\x49\x38\x75\x0b\xc6\xd1\x5b\xfa\x0d\x4c\xc7\x18\x4e\x4a\x0c\x1d\x8a\x2a" + + "\x91\xac\xd2\x4c\xf0\x8e\x09\x7f\x19\xdf\x39\x46\x5e\x31\x5c\x57\x42\xea\x0e\xec\x9a\x51\x9d\x87\x14\x57\x2c\x41" + + "\xd7\x2e\x86\xc0\x38\xd3\x8c\x14\xae\x4a\x48\x81\xe1\xd8\x1b\xb5\x50\xcf\x5c\x17\x7e\x29\x48\x82\x90\x92\x15\x4b" + + "\x04\xf7\x58\x22\xac\x51\xa4\xaa\x0a\x74\xb5\xa8\x93\xdc\xb5\x84\x8a\x67\xc0\xb8\xb5\x4a\x0a\xa1\x81\x32\x89\x89" + + "\x16\x72\x03\x26\x44\x16\xad\x60\xfc\x16\x24\x16\xa1\xa3\xf4\xa6\x40\x95\x23\x6a\x07\x72\x89\x69\xe8\xf8\xcd\x96" + + "\x5f\x12\xc6\xbd\x44\x29\xa7\x2b\x63\x59\xfa\xbe\x9f\x0a\xae\x95\x97\x09\x91\x15\x48\x2a\xa6\xbc\x44\x94\x7e\xa2" + + "\xd4\xdf\x53\x52\xb2\x62\x13\xfe\x26\x6a\x99\xe0\x57\xbf\x11\xae\xbe\xfa\x45\x8a\xeb\xf1\x68\x34\x9c\x8c\x46\xc3" + + "\xe9\x68\xd4\xb7\x8a\xfb\xf7\x8a\xfb\x60\xce\x54\xd8\xd7\xf8\x49\x1b\x8c\xfe\xff\xa2\xf0\xa5\x14\x8c\x36\xfa\x5e" + + "\x0b\x2e\x9e\xac\xa4\x89\x37\x28\x99\x98\x37\xb7\x0b\xe5\xaf\x90\x53\x21\xfd\x52\x50\x94\x9c\x7d\x96\x9e\xc9\xf6" + + "\xe5\x8e\x1c\xf5\x96\x7e\x93\xe5\xbd\xde\x32\x16\x74\x03\xc0\x68\xe8\x50\xb1\xe6\x85\x20\xd4\x89\x7a\xbd\xfd\xa1" + + "\x6b\x25\xf6\xc7\x10\x56\x44\x42\x46\x7e\xc4\x0d\x84\xe0\xdc\xdd\x79\xdf\x7d\xfd\x23\x6e\xb6\x5b\xe7\xa6\xc3\xc3" + + "\x52\x18\x34\x3c\xcf\x42\x70\x9c\x4b\xb8\xeb\x10\x01\x06\x69\xcd\x13\x93\xa2\x03\x36\x04\x35\x04\x31\x84\x6c\x08" + + "\x72\x08\x64\x08\xe5\x21\x33\x00\x7b\xdb\xff\xce\xba\xed\x6b\x4e\x8a\x8d\x66\x89\xfa\x67\xfc\x01\x13\xdd\x7f\x07" + + "\x21\xc8\x9b\x23\x6e\x69\xf6\xed\xcf\x97\x2f\xb0\x57\x75\x8c\x0b\x30\x30\x5c\xde\xc7\x1d\xbb\xf7\xd1\x08\xbc\x7d" + + "\x77\xe9\x55\xb5\xca\x07\x44\x66\x75\x89\x5c\xab\xcb\x03\xb9\xed\xb0\x61\x2f\x20\x84\x31\xfc\x0d\x38\xae\xe1\x25" + + "\xd1\x38\xb8\x3c\xb4\x85\x40\x08\xca\x4b\x24\x12\x8d\xaf\x0a\x34\x68\x03\x71\x39\x3c\xb2\xa3\xb4\x7c\x19\xea\x1d" + + "\x93\xfa\x66\xf3\x3b\xc9\x7e\x26\x25\x0e\xc4\xe5\xdb\xd1\xbb\x23\x5c\x8f\xa8\x0d\x4f\x8c\xfe\x63\x92\x92\x86\x90" + + "\x1d\x12\x4a\xaf\x22\x12\xb9\xfe\x59\x50\xf4\x18\x57\x28\xf5\x37\x98\x0a\x89\x03\xeb\xf5\x07\xdc\xdb\xcb\xc1\x9a" + + "\x71\x2a\xd6\x43\xa0\x22\xb1\x5e\x18\x42\xbf\xc9\x85\xfe\x10\xfa\xbe\xbf\x5e\xaf\x77\xb9\xec\x92\x36\x2a\x36\xa3" + + "\xef\x57\x1f\x94\x61\xcd\x48\xff\xc0\x2d\x19\x19\xf4\x1b\x97\xf4\x87\x4d\x26\x0d\xa1\xdf\xa9\x87\xa7\xf8\x15\x72" + + "\x6a\xd0\x2a\x92\xa1\x29\x44\x0f\x79\xb6\xf7\xf9\xba\x4f\xf1\xfb\x2d\xca\x56\x36\xbf\x39\x59\xb1\x8c\xd8\xca\x18" + + "\x3d\x50\x60\x39\x76\x17\xc3\x5a\x92\xaa\x42\x79\xc0\x61\xb9\x48\x5b\x5e\x4e\x10\x2d\x43\x3e\xee\x96\xf5\xa5\x9f" + + "\x8f\x4f\xa0\xf8\xe4\xc4\x66\xbd\xbf\x98\x72\x46\x29\x72\xf7\x93\x3a\xa7\xa4\x60\x51\xd7\x92\x5c\x94\x78\x12\xb3" + + "\x51\x56\xb0\xa7\xc0\x5c\x28\x52\x56\x05\x2a\x27\x6a\x1e\xa0\x56\x08\x09\x51\xa8\xfe\x7f\x68\x73\x59\x90\x44\x3b" + + "\xd1\xee\x01\xea\xbf\x0a\xba\xf4\xeb\xe2\x20\x60\x3e\x65\xab\xa8\x77\x62\xd9\xdb\xd5\x44\xb4\x67\xde\x86\xdd\x78" + + "\xa8\xe3\xcc\xf3\xc1\x3e\x6d\x52\x2c\xfd\x73\xe1\x9e\xb4\x38\x26\x2b\x5d\x7b\x21\x3b\xd1\xdd\x9d\xf7\x2d\x2b\xd0" + + "\xdc\x99\xdb\xed\xd2\xcf\x27\xe7\xa4\x67\x91\xa9\xe7\xd7\xb0\x8c\x8d\xcc\x8b\xe6\x4e\xfd\x7d\x53\x59\xb1\x38\x5a" + + "\xfa\xf9\xec\xbc\xa8\x62\x9f\x0f\x45\x7f\x42\x9e\xe9\x1c\xbe\x40\x2a\x64\x49\x34\x38\x17\xc3\x8b\x8b\x0b\xcf\x69" + + "\xe0\x20\xde\x68\x13\x4e\x03\x7a\x1a\xb5\x0d\xd9\xdd\x9d\xf7\x46\x16\xdb\xad\xd3\xbe\x5d\xac\xb9\x9b\x68\x02\xb1" + + "\xe6\x4e\x04\xed\x2d\xb1\xf4\x59\x64\xb3\xb9\x71\xd1\x23\x7e\xea\x38\xfc\xa3\x4c\x04\xc5\x33\xa9\xbd\x17\x60\x65" + + "\xd6\x5c\x67\x94\x68\x72\xcd\x4a\x92\xa1\x5f\xf1\xec\x26\x26\x0a\x83\xd9\xf0\xee\xce\xfb\xd7\xaf\x2f\x04\xc5\xed" + + "\xd6\x39\xa7\xb3\xc9\x88\xde\xd9\x63\x2e\xc5\x1a\x08\x67\x25\xd1\x68\x9a\x22\x8a\x3f\xf0\x97\x62\x7d\x58\x18\xa0" + + "\x5b\x3e\x4c\xa3\xe4\x6a\x94\x25\xe3\xa4\xd8\x3b\x07\x62\xf1\x09\x12\x51\xb8\x25\x75\x17\xd0\x3e\x89\x34\x55\xa8" + + "\xdd\x89\x5d\x7f\x52\xee\x78\x72\xee\x38\x77\x6c\x6a\xb1\x5d\x2d\x2a\xe7\x5c\x94\x1e\x66\xfe\x49\x43\x8f\x6c\x6c" + + "\x37\xa0\x92\xb6\x78\xba\xd6\xa5\x8f\x44\x61\x49\x6a\xca\x04\x18\xf7\xbb\x89\x28\x84\x0c\x9d\x8b\x34\x48\x17\xe9" + + "\xc2\x69\x02\x73\x9f\x23\xb6\x27\x71\x0e\x13\xd8\xf4\x1a\x16\xe3\xd1\xf0\x3c\x61\xfb\xd4\xd6\x51\xa6\xb5\xd1\x6e" + + "\x9e\x77\x67\xbf\x5d\xa7\x42\x68\x94\x4f\x39\xff\x0f\x38\x6c\xdf\x15\x3a\xe7\xc2\xd6\x1e\x96\x98\xe9\x44\x30\x7e" + + "\x3d\x0e\x66\x9b\xf8\xd7\xd7\x3f\xc5\xd9\x98\xe6\xf9\x1f\x7f\xb0\x37\xb7\x7f\x6a\xf6\xb3\x9c\x7f\x78\x93\xbf\xfe" + + "\x91\xfe\xe3\xe3\xf7\x0e\x14\x24\x36\xfd\xea\x37\x8d\xc8\x57\x2f\x05\x6f\x2e\xa3\x56\xd7\x5a\x48\xea\x1a\x93\xae" + + "\x21\x96\x48\x6e\x5d\xb3\x71\xf3\x58\x98\xcc\x41\x89\x85\xa4\x28\x43\x67\xb4\x0b\x0d\xf8\x36\xba\xca\xdf\x99\x66" + + "\x9a\xe9\xbd\x8a\x92\xc8\x8c\xf1\x6b\x18\x01\xa9\xb5\xb8\x39\x07\x7e\xfa\x92\xea\x78\xf9\x7c\x2c\x1e\x89\xd2\xfe" + + "\x58\xb7\x16\xfe\x24\x32\xe1\x0a\x49\x78\x86\x8d\x95\xa4\xd0\xa1\xf3\xad\xa8\x39\x45\x6a\x06\x80\xef\x45\x51\x10" + + "\x4e\x0f\xe3\x53\x45\xaf\x09\x45\x58\x33\x9d\xc3\x92\xb5\xc1\x34\x93\x83\x9b\x23\x91\xda\x64\x1f\x33\x15\xef\x3e" + + "\x4e\x66\x52\xbb\xf6\xfd\xb8\x10\x99\x47\x6b\x9d\xe4\xa6\x0e\x49\xe5\x31\xe1\x3b\x60\x2b\x77\xe8\xbc\x34\xfb\xf0" + + "\xc2\x12\x9c\xa8\xbb\x3a\xf2\xc7\xd2\xaf\x8e\xae\x9f\x5d\xfa\xb5\xf9\xb6\x5b\x77\x0d\x50\xd7\xbe\x9f\x31\x9d\xd7" + + "\xb1\xed\x94\x3a\x76\xf8\x9d\xbe\xc1\x77\xa2\xc6\x55\x4d\xc8\x2a\xa1\x98\x49\x93\x6b\x20\xb1\x12\x45\xad\xf1\x06" + + "\xb4\xa8\xae\x61\x74\x03\x92\x65\xb9\xb6\x4f\x4d\x16\x98\xc7\x5d\x1a\xb4\xfa\x12\x52\x0a\xaf\x51\x5a\x2b\x94\xbb" + + "\xd1\xcd\xea\x9f\x2e\x30\x5d\x8c\xd3\x05\x49\x48\x30\x8b\xe3\xe7\x24\x98\xcd\x66\x0b\x3a\xa2\xf3\x51\x3a\x9e\x8e" + + "\x16\x98\x5e\x4d\x67\x63\x12\xfb\xc1\x62\x3e\x9b\xcf\xe6\xa3\xf9\x74\x4a\x26\xe9\x24\x9d\x4f\xa7\xd3\x09\x06\xe3" + + "\x80\x06\xe3\x39\x09\xd2\x00\x83\xf1\x7c\x3e\x37\x7b\xd3\x20\x0d\xe8\x24\x0d\xe6\xc1\xf3\xf9\x2c\x58\xcc\xaf\x82" + + "\xc9\x24\x9d\x4f\x82\xe7\xc1\x24\x98\x18\xce\xf9\x74\x92\x06\x41\x60\xf6\xe2\x80\x06\x57\x57\x0d\x75\x6e\x74\x5c" + + "\xa5\xc1\x2c\x18\x5b\xca\x24\x48\xe6\x57\x86\x3a\x1d\x4f\x27\xd3\xf1\x34\x30\xff\x27\x38\x1f\x05\x18\xcc\xf7\x89" + + "\x22\x6f\xa1\x44\x10\x1c\xbe\x63\xfa\xfb\x3a\x76\x76\x15\x8b\x70\xc1\x59\x62\x66\xd0\xae\x27\xd4\xd4\x23\x25\xf9" + + "\x2c\x38\x59\x37\x9d\x6a\xe3\x15\x5f\xb2\x38\x16\x5c\xf9\xa9\x90\xb7\x25\xbe\xb7\x3e\x7d\x4f\x89\xbc\x8d\x8b\x1a" + + "\xdf\x8f\x27\xe3\x60\x32\xb6\xe9\x19\xd9\x34\x38\x3f\x1a\x0d\xce\x8c\x1a\x66\x60\x32\xbe\xff\xb7\x60\x09\xde\xcf" + + "\x4d\x6f\x3a\x5b\x27\xc6\xa7\x07\x12\x27\xa7\x28\x8b\xbb\x82\x70\xdf\xa2\x1f\x0c\x1a\x6d\xbf\x7e\xd0\x4e\xd7\x2b" + + "\xcf\x7e\x01\x0a\xa1\x19\x25\x3f\x90\x15\xd9\x71\x1e\x31\xb6\x53\x86\x96\x35\x1e\x11\x9b\x39\xc3\xcc\x02\x8c\x66" + + "\xa8\x3d\x63\xf1\xca\x58\x6c\xbd\x7b\xf4\x86\x66\x1e\xb8\x39\x7a\x01\xd5\xb5\xff\xe4\x00\xb4\x7f\x8d\xa3\x39\x48" + + "\x9d\x9d\x68\xea\xd5\x10\x1e\x8c\x6d\xf7\x13\xc2\xf6\x72\x70\xf9\xe8\xb8\x70\xf8\x49\xac\xd7\xad\x3c\xfb\x9e\x48" + + "\x8a\xb5\xc2\x9c\x54\xd5\xc6\x89\xfe\x23\x6a\x20\xd2\x74\xcd\x8c\x67\x40\x38\x2c\x95\x96\x82\x67\x91\xa8\x35\x35" + + "\x1d\xc6\xd2\xdf\x6d\x40\x23\x27\x3d\xf8\xa5\x40\xa2\xf0\xb8\x40\xdd\xe3\x5a\x2f\x3a\x51\x5d\x65\xd2\x54\xbb\x8d" + + "\xa8\x65\x2b\x6e\xdb\x2e\x2d\x80\x95\x95\x14\xab\x1d\x0d\x3f\x55\x28\x19\xf2\x04\xbd\x87\xe5\xe9\xc1\xe7\xad\xdd" + + "\xe6\xee\xf7\x28\x9b\x0f\x3e\x23\xd8\x2f\x28\x0f\x3f\x1d\xdc\x7b\xa3\x2d\x71\x27\x25\x93\xdb\x23\xc9\xde\xd2\x8f" + + "\x05\xdd\xd8\x87\xe6\xf3\xe3\x7f\x03\x00\x00\xff\xff\x4b\xc8\x70\x91\x8f\x14\x00\x00") func bindataDistDownloadaudiohtmlBytes() ([]byte, error) { return bindataRead( @@ -321,10 +323,10 @@ func bindataDistDownloadaudiohtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.audio.html", - size: 5123, + size: 5263, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -333,66 +335,67 @@ func bindataDistDownloadaudiohtml() (*asset, error) { } var _bindataDistDownloadcodehtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\x6d\x8f\xdb\xb8\x11\xfe\xee\x5f\x31\xab\x14\xb5\x9c\xe8\x65\x37" + - "\x2d\x70\xe9\xad\xa4\x22\xb7\x49\xaf\xc1\x21\xd7\x00\x69\x8a\x16\x8b\xfd\x40\x8b\x63\x89\x59\x8a\x54\x48\x4a\x5e" + - "\x77\xcf\xff\xbd\x20\xf5\x62\xc9\x76\x72\x8b\xb6\xb8\x7c\x88\xf9\x32\xf3\xcc\x90\x9c\x99\x67\xb4\xc9\x05\x95\xb9" + - "\xd9\xd5\x08\xa5\xa9\x78\xb6\x48\x2e\xc2\xf0\x96\x6d\x80\x1b\x78\xf7\x16\xbe\xbb\xcb\xc0\xfd\x4b\xec\x2e\xe4\x9c" + - "\x68\x9d\x7a\x42\x86\x9f\x35\x70\x13\x32\xfc\x53\xf7\xf3\xaa\xfb\xf9\xce\xcb\x20\xb9\xb8\x45\x41\xd9\xe6\x2e\x0c" + - "\x0f\x68\x53\xa8\x27\xa0\x7d\x03\xe6\xd5\x53\x60\xbe\xa6\x5f\x98\x1e\xc2\x2e\x64\x8b\x53\x7d\xaf\x93\x9d\x29\x2f" + - "\x92\x12\x09\xcd\x16\xce\x62\x85\x86\x40\x5e\x12\xa5\xd1\xa4\x5e\x63\x36\xe1\x2b\x6f\xba\x55\x1a\x53\x87\xf8\xa5" + - "\x61\x6d\xea\xfd\x33\xfc\xf4\x3a\xbc\x91\x55\x4d\x0c\x5b\x73\xf4\x20\x97\xc2\xa0\x30\xa9\xf7\xee\x6d\x8a\xb4\xc0" + - "\x41\xd3\x30\xc3\x31\x7b\x7c\x8c\xfe\xc2\x38\x0a\x52\xe1\x7e\x0f\x21\x18\x45\x84\xde\xa0\x8a\x74\x99\xc4\x9d\xc8" + - "\xc4\x90\x15\x4b\x3d\x8a\x3a\x57\xac\x36\x4c\x8a\x09\xfc\x5b\xa2\x77\x40\x04\x85\x0d\xd1\x06\x36\x8c\x23\xe8\x92" + - "\x28\x26\x0a\xd8\x28\x59\x81\x29\x11\x72\x59\x55\x44\xd0\x90\x33\x81\x91\x77\x8a\xdc\x32\xdc\xd6\x52\x99\x09\xec" + - "\x96\x51\x53\xa6\x14\x5b\x96\x63\xe8\x26\x01\x30\xc1\x0c\x23\x3c\xd4\x39\xe1\x98\x5e\x45\x97\x03\xd4\x45\x18\xc2" + - "\x07\x4e\x72\x84\x0d\x69\x59\x2e\x45\xc4\x72\xe9\x9c\x22\x75\xcd\x31\x34\xb2\xc9\xcb\xd0\x6d\xd4\xa2\x00\x26\x9c" + - "\x57\x4a\x4a\x03\x94\x29\xcc\x8d\x54\x3b\xb0\xd7\xef\xd0\x38\x13\xf7\xa0\x90\xa7\x9e\x36\x3b\x8e\xba\x44\x34\x1e" + - "\x94\x0a\x37\xc3\x4a\x5c\x11\x26\xa2\x5c\xdb\x27\x9c\xe8\x38\x91\xa5\x7d\x15\xfd\x7d\x1c\x6f\xa4\x30\x3a\x2a\xa4" + - "\x2c\x38\x92\x9a\xe9\x28\x97\x55\x9c\x6b\xfd\xe7\x0d\xa9\x18\xdf\xa5\x1f\x65\xa3\x72\x7c\xf1\x91\x08\xfd\xe2\x83" + - "\x92\xdf\x5f\x5d\x5e\x06\x2f\x2f\x2f\x83\x3f\x5c\x5e\x2e\x9d\xf9\xe5\xc1\xfc\x12\x6c\xd6\xa4\x4b\x83\x0f\xc6\x62" + - "\x2c\xb3\xff\xd5\xec\x8d\xa4\xe8\xcc\xfe\xf1\xbf\x37\xf7\x04\x6b\x6f\x94\x64\xb4\x3b\xe3\x7b\x29\xe4\x93\x2d\x75" + - "\x91\x06\x5a\xe5\xa9\xd7\x8d\x75\xdc\xa2\xa0\x52\xc5\x95\xa4\xa8\x04\xfb\xb7\x8a\x6c\x0a\x25\x71\xb7\x9d\x2d\x92" + - "\xb8\x4b\x9d\x45\xb2\x96\x74\x07\xc0\x68\xea\x51\xb9\x15\x5c\x12\xea\xcd\x60\xbb\x09\x40\x4b\x14\x14\xe4\x27\xdc" + - "\x41\x0a\xde\xe3\x63\xf4\xe3\xeb\x9f\x70\xb7\xdf\x7b\xd7\xfd\x3e\xdb\x80\xdf\xed\x5f\xa4\xe0\x79\x2b\x78\x5c\x0c" + - "\xd5\xc0\xdf\x34\x22\xb7\x99\x00\x3e\x0b\x40\x07\x20\x03\x28\x02\x50\x01\x90\x00\xaa\xa9\x24\x00\xbb\x5d\xfe\xe8" + - "\x2e\xe8\xb5\x20\x7c\x67\x58\xae\xff\xb6\xfe\x8c\xb9\x59\xde\x41\x0a\xea\x7a\x26\xa9\xec\x9a\xfb\xf9\xe5\x17\x38" + - "\xd8\x98\x03\x02\xf8\x56\x24\xfa\xd2\xcb\x46\x5f\xac\xf4\xed\xdd\x2a\xaa\x1b\x5d\xfa\x44\x15\x4d\x85\xc2\xe8\xd5" + - "\x44\x67\x1f\x74\xa2\x1c\x52\xb8\x82\xe7\x20\x70\x0b\x6f\x88\x41\x7f\x35\x75\x80\x40\x0a\x3a\xca\x15\x12\x83\x6f" + - "\x39\x5a\x14\x5f\xae\x82\x99\xed\xca\xc9\x14\x68\x7a\x01\xfd\xc3\xee\xef\xa4\xf8\x99\x54\xe8\xcb\xd5\xed\xe5\xdd" + - "\x0c\x2f\x22\x7a\x27\x72\x6b\x73\xbe\xac\x95\x5d\x2c\xa6\x8b\x55\x54\x13\x85\xc2\xfc\x2c\x29\x46\x4c\x68\x54\xe6" + - "\x07\xdc\x48\x85\xbe\xbb\xd2\x51\x72\xbf\xf2\xb7\x4c\x50\xb9\x0d\x80\xca\xdc\x9d\x34\x80\x65\xf7\xb2\xcb\x00\x96" + - "\x71\xbc\xdd\x6e\xfb\x90\x0c\xc9\x70\xe5\x2e\x30\x0f\xb3\xcf\xda\x8a\x16\x64\x39\x39\x7e\x41\xfc\x65\x77\xf4\x65" + - "\xd0\xc5\x45\x00\xcb\x49\x61\x3c\x96\xd5\x28\xa8\x45\xa9\x49\x81\xb6\x82\x1d\xf6\xf7\x5d\xb4\x8d\xa1\xd9\x4d\x29" + - "\x6b\x5d\x50\x0a\xd2\xb2\x82\xb8\x32\x9a\x8d\x80\x6e\xb7\x67\x87\xad\x22\x75\x8d\x6a\xb2\xdb\x11\xd0\x55\x36\x2b" + - "\xd3\xe5\xd5\x91\x40\x33\xf2\x4b\xc9\x28\x45\x11\x3e\xe8\x23\x0c\xe8\xb2\x38\x4b\x48\x5f\xcf\x9e\x69\x52\xd5\x1c" + - "\xb5\x97\x75\x03\x68\x34\x42\x4e\x34\xea\x24\x26\x67\x74\x63\xce\x7e\x0d\xd1\x96\x70\x92\x1b\x2f\xeb\x07\xd0\x3c" + - "\x15\x2b\x89\x1b\x3e\xb9\x91\x98\xb2\xb6\xcf\xdb\x6e\xb8\x48\x34\x76\x09\x61\xaf\xb1\x94\xd5\x48\x6a\xdf\xbc\xbc" + - "\xa4\x7c\x39\xb7\x33\x23\xbf\x24\x9e\x6e\x8f\xc7\x78\x7c\x8c\x3e\x29\xbe\xdf\xdb\x0a\x43\xce\x3f\x93\x92\x5b\x20" + - "\x82\x55\xc4\xa0\x65\x3f\x8a\xef\xc4\x1b\xb9\x15\xc7\xcf\x36\x3c\xbb\x65\xc3\xd0\xa0\xaa\x98\x20\xdc\x1b\x40\x60" + - "\x2d\x1f\x20\x97\x3c\xac\x68\xf8\x0a\x86\x91\xdc\x6c\x34\x9a\xf0\xa5\x9b\x3f\xe8\xf0\xea\xe5\xb9\x87\x9c\xf8\x32" + - "\xe0\x86\x46\xd6\x03\x29\xcd\xaf\x76\xbc\xcc\xb3\xce\x9d\xf8\x35\x2e\x9c\x2a\xcd\x14\x73\x49\xd1\xde\xd1\x79\xf8" + - "\xfe\xdd\x16\x8b\x73\xab\xe7\xe6\xc9\x0c\xe7\x10\x54\x5e\x6f\xac\xde\xd9\x26\xe2\x3e\x5c\x1b\x31\xba\xba\x36\x22" + - "\xcc\x0d\x01\xbb\x96\x59\x11\xb0\x22\xf6\xd9\xe0\xf7\x62\xad\xeb\xeb\xee\xff\x6f\xbc\xf1\x59\x24\x18\xc8\x23\x89" + - "\x59\x06\xa7\x51\x30\x77\x68\x08\xbb\x01\xea\x74\xe7\x28\x2c\xea\xec\x83\x42\xad\xe1\xc6\x28\x0e\x31\xdc\xbc\x7f" + - "\x03\x2f\xe0\x06\x8c\x84\xf1\x08\x76\xb2\x93\x8d\x82\x9c\xb3\x7a\x2d\x89\xa2\x51\x12\xd7\x47\x38\x4c\xd4\x8d\x01" + - "\x85\x84\x4a\xc1\x77\xa9\x37\x8c\xbc\x8e\x59\x3d\xcb\xac\x1e\xb4\x84\x37\x38\x3d\x71\x7c\x36\xd1\x66\x87\x93\x2d" + - "\x2a\x4e\x76\xe3\x91\x86\x79\x76\x9a\x99\xa3\xee\x39\xde\x3e\x78\x3f\x27\xec\x45\x12\xf7\xf9\x9c\xf5\x11\x32\xe3" + - "\xe7\x91\x62\x27\xec\x67\x19\xbb\xd1\xa8\xfe\x21\x59\x8e\x07\xe2\xfe\x34\x59\x3a\xe2\xef\x99\xf4\x09\x8d\x3b\xbc" + - "\x16\xd2\x91\x49\x8e\xb8\x6f\xa0\x95\x49\xe5\x6f\xda\xc8\x7d\xc1\xa4\xd0\x35\x2d\x9f\x49\x4b\x7a\xa9\x99\xd0\x40" + - "\x7c\x46\x35\x38\xdb\xe8\xa8\xcf\xd2\x14\xa3\x05\x9a\xc8\x7a\xd8\x5a\x0f\x1d\x45\x9d\x9c\xc6\x52\xd5\xf5\xcc\x61" + - "\x3d\xf5\xf7\x2c\x0f\x8f\x6e\xcf\xe8\x58\x7f\x95\x60\x9b\x36\x00\x7d\xc4\x5e\xfb\x95\xbf\x3a\x4b\x63\xc7\xdf\x6c" + - "\x8b\x21\xa0\xc7\x2c\x52\x72\xab\xb1\x24\x75\xbd\xf3\xb2\x7f\xc9\x06\x88\xb2\xbc\x62\xbf\x08\x88\x80\x44\x1b\x25" + - "\x45\x91\xc9\xc6\x50\x5b\x39\x93\xb8\x5f\x80\x4e\x4f\x45\xf0\x81\x23\xd1\x78\xc8\xd3\xbe\xd7\x9c\xe0\xba\xab\xf2" + - "\xb2\xa6\x2e\x14\xa1\xd8\x25\x49\xaf\xee\xf2\xde\x48\x60\x55\xad\x64\xdb\xef\xe1\x43\x8d\x8a\xa1\xc8\xf1\x90\x41" + - "\xf3\xef\xae\x93\xf0\xfb\xff\xb4\x87\xfe\xda\xb5\x86\x2c\x00\x1e\x00\x06\xa0\xe6\x9d\xdc\x3a\x3a\xdb\x19\x42\x0a" + - "\x7c\xda\x1a\xad\x6f\xb9\x6b\x08\x7d\x37\x48\x67\x05\xe0\x4c\x96\x8c\x5e\x58\x71\xd7\x25\xf6\x83\x5f\xed\x12\xed" + - "\xb3\x1f\x1b\x76\x2d\xe3\x8b\xa1\x5f\x9c\xee\xda\x24\x90\x47\x19\xc3\x66\xfa\xca\x49\x9c\x8d\x51\x76\xdc\x2b\xe2" + - "\x24\x33\x9e\xd4\xc0\xcd\x0c\x7d\x35\xb6\xdd\xa5\x1f\x9a\xc7\x6f\xf7\x8e\xb6\x21\xfc\xed\x3a\x42\xf8\x5a\xc5\x74" + - "\x9f\x97\xf3\x62\x39\xc8\xcf\x03\x75\x31\xc4\xa9\x2d\x45\x36\x4c\x9f\xc1\x7b\xa2\xee\x2d\x73\xc1\xf3\xad\x54\xf7" + - "\xfa\x79\xe4\x5d\x1f\xc4\x72\x29\x5a\x54\x06\xed\xbb\xd8\x17\xfd\x58\xca\xad\x15\x8e\xc6\x8d\xe1\x7b\xc0\x4a\xbb" + - "\xbf\x58\xa4\x07\xa5\xa8\x22\xf7\xf8\x57\x53\x71\xdf\x9a\xeb\x05\x7f\xe7\x2f\x9f\x55\x34\xac\x55\x7f\xe2\xc8\xb2" + - "\x9d\xa0\xbe\x55\x5e\xf5\xa6\x27\xe7\x5e\x24\xb1\xfd\x3c\x73\xd5\xbf\xfb\x23\xd0\x7f\x02\x00\x00\xff\xff\x7e\x48" + - "\x04\x6a\x15\x12\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x58\xdd\x73\xdb\xb8\x11\x7f\xd7\x5f\xb1\x61\x3a\x95\x94\xf0\xc3\x4e" + + "\x6f\x7a\x69\x4c\xb2\x93\x73\xd2\x6b\xe6\x26\xd7\xb4\x69\x3a\xed\x78\xfc\x00\x11\x2b\x12\x31\x08\x30\x00\x48\x59" + + "\xd5\xe9\x7f\xef\x00\xfc\x10\x29\xc9\x89\xa7\xed\x5c\x1e\x22\x00\xfb\x0d\xec\xee\x6f\xe9\xf8\x09\x95\x99\xd9\x56" + + "\x08\x85\x29\x79\x3a\x8b\x9f\x04\xc1\x0d\x5b\x03\x37\xf0\xee\x2d\x7c\x7f\x9b\x82\xfb\x17\x5b\x2a\x64\x9c\x68\x9d" + + "\x78\x42\x06\x9f\x35\x70\x13\x30\xfc\x43\xfb\xf3\xb2\xfd\xf9\xde\x4b\x21\x7e\x72\x83\x82\xb2\xf5\x6d\x10\x1c\xb4" + + "\x8d\x55\x3d\x42\xdb\x57\xd4\xbc\x7c\x8c\x9a\x87\xe4\x73\xd3\xa9\xb0\x07\xe9\xec\x54\xde\x6b\x79\x27\xc2\xb3\xb8" + + "\x40\x42\xd3\x99\xb3\x58\xa2\x21\x90\x15\x44\x69\x34\x89\x57\x9b\x75\xf0\xd2\x1b\x93\x0a\x63\xaa\x00\xbf\xd4\xac" + + "\x49\xbc\x7f\x06\x9f\x5e\x07\xd7\xb2\xac\x88\x61\x2b\x8e\x1e\x64\x52\x18\x14\x26\xf1\xde\xbd\x4d\x90\xe6\xd8\x4b" + + "\x1a\x66\x38\xa6\xbb\x5d\xf8\x27\xc6\x51\x90\x12\xf7\x7b\x08\xc0\x28\x22\xf4\x1a\x55\xa8\x8b\x38\x6a\x59\x46\x86" + + "\x2c\x5b\xe2\x51\xd4\x99\x62\x95\x61\x52\x8c\xd4\xbf\x25\x7a\x0b\x44\x50\x58\x13\x6d\x60\xcd\x38\x82\x2e\x88\x62" + + "\x22\x87\xb5\x92\x25\x98\x02\x21\x93\x65\x49\x04\x0d\x38\x13\x18\x7a\xa7\x9a\x1b\x86\x9b\x4a\x2a\x33\x52\xbb\x61" + + "\xd4\x14\x09\xc5\x86\x65\x18\xb8\x8d\x0f\x4c\x30\xc3\x08\x0f\x74\x46\x38\x26\x97\xe1\x45\xaf\xea\x49\x10\xc0\x07" + + "\x4e\x32\x84\x35\x69\x58\x26\x45\xc8\x32\xe9\x9c\x22\x55\xc5\x31\x30\xb2\xce\x8a\xc0\x11\x2a\x91\x03\x13\xce\x2b" + + "\x25\xa5\x01\xca\x14\x66\x46\xaa\x2d\xd8\xeb\x77\xda\x38\x13\x77\xa0\x90\x27\x9e\x36\x5b\x8e\xba\x40\x34\x1e\x14" + + "\x0a\xd7\xfd\x49\x54\x12\x26\xc2\x4c\xdb\x27\x1c\xc9\x38\x96\xb9\x7d\x15\xfd\x2a\x8a\xd6\x52\x18\x1d\xe6\x52\xe6" + + "\x1c\x49\xc5\x74\x98\xc9\x32\xca\xb4\xfe\xe3\x9a\x94\x8c\x6f\x93\x8f\xb2\x56\x19\x3e\xff\x48\x84\x7e\xfe\x41\xc9" + + "\x57\x97\x17\x17\xfe\x8b\x8b\x0b\xff\x77\x17\x17\x73\x67\x7e\x7e\x30\x3f\x07\x5b\x35\xc9\xdc\xe0\xbd\xb1\x3a\xe6" + + "\xe9\xff\x6a\xf6\x5a\x52\x74\x66\xbf\xfb\xef\xcd\x3d\xc2\xda\x1b\x25\x19\x6d\x63\x7c\x2f\x85\x7c\xb4\xa5\x36\xd3" + + "\x40\xab\x2c\xf1\xda\xb5\x8e\x1a\x14\x54\xaa\xa8\x94\x14\x95\x60\xff\x56\xa1\x2d\xa1\x38\x6a\xc9\xe9\x2c\x8e\xda" + + "\xd2\x99\xc5\x2b\x49\xb7\x00\x8c\x26\x1e\x95\x1b\xc1\x25\xa1\xde\x44\x6d\xbb\x01\x68\x88\x82\x9c\xfc\x84\x5b\x48" + + "\xc0\xdb\xed\xc2\x1f\x5f\xff\x84\xdb\xfd\xde\xbb\xea\xe8\x6c\x0d\x8b\x96\xfe\x24\x01\xcf\x5b\xc2\x6e\xd6\x77\x83" + + "\xc5\xba\x16\x99\xad\x04\x58\x30\x1f\xb4\x0f\xd2\x87\xdc\x07\xe5\x03\xf1\xa1\x1c\x73\x02\xb0\x9b\xf9\x8f\xee\x82" + + "\x5e\x0b\xc2\xb7\x86\x65\xfa\x2f\xab\xcf\x98\x99\xf9\x2d\x24\xa0\xae\x26\x9c\xca\x9e\xb9\x9f\x5f\x7e\x81\x83\x8d" + + "\xa9\x42\x80\x85\x65\x09\xbf\x74\xbc\xe1\x17\xcb\x7d\x73\xbb\x0c\xab\x5a\x17\x0b\xa2\xf2\xba\x44\x61\xf4\x72\x24" + + "\xb3\xf7\x5b\x56\x0e\x09\x5c\xc2\x33\x10\xb8\x81\x37\xc4\xe0\x62\x39\x76\x80\x40\x02\x3a\xcc\x14\x12\x83\x6f\x39" + + "\x5a\x2d\x0b\xb9\xf4\x27\xb6\x4b\xc7\x93\xa3\xe9\x18\xf4\x0f\xdb\xbf\x93\xfc\x67\x52\xe2\x42\x2e\x6f\x2e\x6e\x27" + + "\xfa\x42\xa2\xb7\x22\xb3\x36\xa7\xc7\x5a\xd9\xc3\x7c\x7c\x58\x86\x15\x51\x28\xcc\xcf\x92\x62\xc8\x84\x46\x65\x7e" + + "\xc0\xb5\x54\xb8\x70\x57\x3a\x70\xee\x97\x8b\x0d\x13\x54\x6e\x7c\xa0\x32\x73\x91\xfa\x30\x6f\x5f\x76\xee\xc3\x3c" + + "\x8a\x36\x9b\x4d\x97\x92\x01\xe9\xaf\xdc\x25\xe6\x61\xf7\x59\x5b\xd6\x9c\xcc\x47\xe1\xe7\x64\x31\x6f\x43\x9f\xfb" + + "\x6d\x5e\xf8\x30\x1f\x35\xc6\x63\x5e\x8d\x82\x5a\x2d\x15\xc9\xd1\x76\xb0\x03\x7d\xdf\x66\xdb\x90\x9a\xed\x96\xb2" + + "\xc6\x25\xa5\x20\x0d\xcb\x89\x6b\xa3\xe9\xa0\xd0\x51\x3b\x74\xd8\x28\x52\x55\xa8\x46\xd4\x16\x80\x2e\xd3\x49\x9b" + + "\x2e\x2e\x8f\x18\xea\x01\x5f\x0a\x46\x29\x8a\xe0\x5e\x1f\xe9\x80\xb6\x8a\xd3\x98\x74\xfd\xec\xa9\x26\x65\xc5\x51" + + "\x7b\x69\xbb\x80\x5a\x23\x64\x44\xa3\x8e\x23\x72\x46\x36\xe2\xec\x5b\x1a\x6d\x0b\x27\x99\xf1\xd2\x6e\x01\xf5\x63" + + "\x75\xc5\x51\xcd\x47\x37\x12\x51\xd6\x74\x75\xdb\x2e\x67\xb1\xc6\xb6\x20\xec\x35\x16\xb2\x1c\x40\xed\xab\x97\x17" + + "\x17\x2f\xa6\x76\x26\xe0\x17\x47\x63\xf2\x10\xc6\x6e\x17\x7e\x52\x7c\xbf\xb7\x1d\x86\x9c\x7f\xa6\x2f\x2a\x93\x14" + + "\x8f\x5f\x89\x95\x39\xe8\x4c\x25\x1e\x25\x86\xbc\x62\x25\xc9\x31\xaa\x44\x7e\xb5\x22\x1a\x7f\xff\x9d\xbf\xdb\x85" + + "\x7f\xfd\x9b\x6d\xbe\xfb\xbd\x17\x9d\x0d\xf6\xd8\x8c\x92\x1b\x20\x82\x95\xc4\xa0\x05\x59\x8a\xef\xc4\x1b\xb9\x11" + + "\xc7\x76\xfb\xec\xb2\xa0\x1b\x18\x54\x25\x13\x84\x7b\xbd\x12\x58\xc9\x7b\xc8\x24\x0f\x4a\x1a\xbc\x84\x7e\x25\xd7" + + "\x6b\x8d\x26\x78\xe1\xf6\xf7\x3a\xb8\x7c\x71\x2e\x5f\x46\xbe\xf4\x7a\x03\x23\xab\x1e\xfb\xa6\x2f\x38\x09\xe3\xc4" + + "\xb9\x13\xbf\x86\x83\x53\xa1\x89\x60\x7b\xd3\x0f\xa9\xef\xd2\x63\x36\x3b\x77\x7a\x6e\x1f\x4f\x6f\x7b\xc8\x5d\xaf" + + "\x33\x56\x6d\xed\xac\x72\x17\xac\x8c\x18\x5c\x5d\x19\x11\x64\x86\x80\x3d\x4b\x2d\x0b\x58\x16\x9b\x1d\xf0\x5b\xb1" + + "\xd2\xd5\x55\xfb\xff\x57\x52\xe9\xac\x26\xe8\x31\x2a\x8e\x58\x0a\xa7\xc9\x36\x75\xa8\xcf\xee\x5e\xd5\x29\xe5\x28" + + "\x2d\xaa\xf4\x83\x42\xad\xe1\xda\x28\x0e\x11\x5c\xbf\x7f\x03\xcf\xe1\x1a\x8c\x84\x21\x04\xbb\xd9\xca\x5a\x41\xc6" + + "\x59\xb5\x92\x44\xd1\x30\x8e\xaa\xe3\xb4\x16\x55\x6d\x40\x21\xa1\x52\xf0\x6d\xe2\xf5\x2b\xaf\x05\x70\xcf\x02\xb8" + + "\x07\x0d\xe1\x35\x8e\x23\xfe\x46\x8a\xdb\xe0\x64\x83\x8a\x93\xed\x10\x52\xbf\x4f\x4f\x1b\xc0\x20\x7b\x6e\x3c\x38" + + "\x78\x3f\x9d\x0b\x66\x71\xd4\xb5\x8d\xb4\xcb\x90\xc9\x18\x30\x20\xf9\x08\x64\xed\x60\x50\x6b\x54\xff\x90\x2c\xc3" + + "\xc3\x7c\xf0\x69\x74\x74\x34\x26\x4c\xb8\x4f\xa6\x05\xa7\xaf\x81\x64\x00\xac\x23\x88\xed\xd1\x6b\x04\x30\x75\x13" + + "\xba\x0f\xa5\x04\xda\xd9\xe8\x33\x69\x48\xc7\x35\x61\xea\xf1\xd5\xa8\x1a\x27\x84\x16\x61\x2d\x1a\x32\x9a\xa3\x09" + + "\xad\x87\x8d\xf5\xd0\x21\xe1\x49\x34\x16\x11\xaf\x26\x0e\xeb\xb1\xbf\x67\xe1\x7e\x70\x7b\x82\xfa\xfa\x41\x1c\xaf" + + "\x1b\x1f\xf4\x11\x48\xee\x97\x8b\xe5\x59\xb4\x3c\xfe\x34\x9c\xf5\x09\x3d\x54\x91\x92\x1b\x8d\x05\xa9\xaa\xad\x97" + + "\xfe\x4b\xd6\x40\x94\x85\x2f\xfb\xe1\x41\x04\xc4\xda\x28\x29\xf2\x54\xd6\x86\xda\xce\x19\x47\xdd\x01\xb4\x72\x2a" + + "\x84\x0f\x1c\x89\xc6\x43\x9d\x76\x23\xed\x48\xaf\xbb\x2a\x2f\xad\xab\x5c\x11\x8a\x6d\x91\x74\xe2\xae\xee\x8d\x04" + + "\x56\x56\x4a\x36\x1d\x0d\xef\x2b\x54\x0c\x45\x86\x87\x0a\x9a\x7e\xde\x9d\xa4\xdf\xff\x67\x0a\x5d\xac\xdc\x04\xca" + + "\x7c\xe0\x3e\xa0\x0f\x6a\x3a\x30\xae\xc2\xb3\x03\x28\x24\xc0\xc7\x13\xd8\xea\x86\xbb\xb9\x73\xe1\x16\xc9\xa4\x01" + + "\x9c\xa9\x92\xc1\x0b\xcb\xee\x86\xd1\x6e\xf1\xcd\x61\xd4\x3e\xfb\xb1\x61\x37\x99\x3e\xef\xc7\xd2\x31\xd5\x16\x81" + + "\x3c\xaa\x18\x36\x91\x57\x8e\xe3\x6c\x8e\xb2\xe3\x91\x14\x47\x95\xf1\xa8\x39\x71\x62\xe8\xc1\xdc\x76\x97\x7e\x98" + + "\x51\xbf\x3e\xa2\xda\xb9\xf3\xd7\x1b\x3c\xe1\xa1\x8e\xe9\xbe\x62\xa7\xcd\xb2\xe7\x9f\x26\xea\xac\xcf\x53\xdb\x8a" + + "\x6c\x9a\x3e\x85\xf7\x44\xdd\x59\xe4\x82\x67\x1b\xa9\xee\xf4\xb3\xd0\xbb\x3a\xb0\x65\x52\x34\xa8\x0c\xda\x77\xb1" + + "\x2f\xfa\xb1\x90\x1b\xcb\x1c\x0e\x84\xfe\xb3\xc3\x72\xbb\x3f\x8c\x24\x07\xa1\xb0\x24\x77\xf8\x67\x53\xf2\x85\x35" + + "\xd7\x31\xfe\x66\x31\x7f\x5a\xd2\xa0\x52\x5d\xc4\xa1\x45\x3b\x41\x17\x56\x78\xd9\x99\x1e\xc5\x3d\x8b\x23\xfb\x15" + + "\xe8\xba\x7f\xfb\xb7\xa6\xff\x04\x00\x00\xff\xff\xa4\xf9\xfe\x56\x7c\x12\x00\x00") func bindataDistDownloadcodehtmlBytes() ([]byte, error) { return bindataRead( @@ -411,10 +414,10 @@ func bindataDistDownloadcodehtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.code.html", - size: 4629, + size: 4732, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -423,73 +426,75 @@ func bindataDistDownloadcodehtml() (*asset, error) { } var _bindataDistDownloadhtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x93\x9b\x38\x12\xff\xee\xbf\xa2\x43\x3e\xd8\x73\x6b\xc0\xaf" + - "\x81\xc9\x0c\x70\xb5\x79\x6c\xb2\x97\xc7\xa5\x6e\x37\xb7\x7b\x95\x4a\xa5\x04\x6a\x40\x19\x90\x88\x24\xec\x38\x93" + - "\xf9\xdf\xaf\x24\xfc\x60\x6c\x4f\x2a\x7b\x37\x1f\x06\xa4\xee\xfe\x75\xd3\x6a\xb5\x7e\x72\xf4\x80\x8a\x4c\xaf\x1b" + - "\x84\x52\xd7\x55\x32\x88\x1e\xb8\xee\x7b\x96\x43\xa5\xe1\xd7\x67\x10\x7e\x48\xc0\xfe\x45\x46\x0a\x59\x45\x94\x8a" + - "\x1d\x2e\xdc\x4f\x0a\x2a\xed\x32\x7c\xd4\x3d\x2e\xba\x47\xe8\x24\x10\x3d\x78\x8f\x9c\xb2\xfc\x83\xeb\xee\xd1\xfa" + - "\x50\x3f\x80\xf6\x1d\x98\x8b\x1f\x81\xb9\xcf\xbe\xd0\x1b\x08\x33\x91\x0c\x8e\xed\x9d\x4e\xf7\x8e\xf1\x20\x2a\x91" + - "\xd0\x64\x60\x3d\xd6\xa8\x09\x64\x25\x91\x0a\x75\xec\xb4\x3a\x77\x2f\x9c\xbe\xa8\xd4\xba\x71\xf1\x73\xcb\x96\xb1" + - "\xf3\xa7\xfb\xee\x67\xf7\x89\xa8\x1b\xa2\x59\x5a\xa1\x03\x99\xe0\x1a\xb9\x8e\x9d\x5f\x9f\xc5\x48\x0b\xdc\x5a\x6a" + - "\xa6\x2b\x4c\xb4\x24\x5c\xe5\x28\x3d\x55\x82\x0b\xcf\x88\x5a\x03\xe1\x14\x72\xa2\x34\xe4\xac\x42\x50\x25\x91\x8c" + - "\x17\x90\x4b\x51\x83\x2e\x11\x32\x51\xd7\x84\x53\xb7\x62\x1c\xbd\xc8\xef\x60\x7a\xc1\x70\x52\x63\xec\x50\x54\x99" + - "\x64\x8d\x66\x82\xf7\x42\xf8\xcb\xf8\xce\x31\xf2\x92\xe1\xaa\x11\x52\xf7\x60\x57\x8c\xea\x32\xa6\xb8\x64\x19\xba" + - "\x76\x30\x06\xc6\x99\x66\xa4\x72\x55\x46\x2a\x8c\xa7\xde\x64\x0b\xf5\xc0\x75\xe1\x6d\x45\x32\x84\x9c\x2c\x59\x26" + - "\xb8\xc7\x32\x61\x83\x22\x4d\x53\xa1\xab\x45\x9b\x95\xae\x15\x34\xbc\x00\xc6\x6d\x54\x52\x08\x0d\x94\x49\xcc\xb4" + - "\x90\x6b\x30\x4b\x64\xd1\x2a\xc6\xaf\x41\x62\x15\x3b\x4a\xaf\x2b\x54\x25\xa2\x76\xa0\x94\x98\xc7\x8e\xdf\x4d\xf9" + - "\x35\x61\xdc\xcb\x94\x72\xfa\x36\x56\x65\xe8\xfb\xb9\xe0\x5a\x79\x85\x10\x45\x85\xa4\x61\xca\xcb\x44\xed\x67\x4a" + - "\xfd\x3d\x27\x35\xab\xd6\xf1\x6f\xa2\x95\x19\xfe\xf4\x1b\xe1\xea\xa7\xb7\x52\x5c\x4e\x27\x93\xf1\x6c\x32\x19\xcf" + - "\x27\x93\xa1\x75\x3c\xdc\x3b\x1e\x82\xd9\x53\xf1\x50\xe3\x17\x6d\x30\x86\xff\x8b\xc3\xa7\x52\x30\xda\xf9\x7b\x2d" + - "\xb8\xf8\x61\x27\xdd\x7a\x83\x92\x99\xf9\x72\x3b\x50\xfe\x12\x39\x15\xd2\xaf\x05\x45\xc9\xd9\x57\xe9\x99\x6a\x8f" + - "\x36\xe2\x64\x10\xf9\x5d\x95\x0f\x06\x51\x2a\xe8\x1a\x80\xd1\xd8\xa1\x62\xc5\x2b\x41\xa8\x93\x0c\x06\xbb\x4d\xb7" + - "\xb5\xd8\x6d\x43\x58\x12\x09\x05\x79\x89\x6b\x88\xc1\xb9\xb9\xf1\x9e\xff\xfc\x12\xd7\xb7\xb7\xce\x55\x4f\x87\xe5" + - "\x30\xea\x74\x1e\xc4\xe0\x38\x67\x70\xd3\x13\x02\x8c\xf2\x96\x67\xa6\x44\x47\x6c\x0c\x6a\x0c\x62\x0c\xc5\x18\xe4" + - "\x18\xc8\x18\xea\x43\x65\x00\xf6\x7e\xf8\xdc\xa6\xed\x67\x4e\xaa\xb5\x66\x99\xfa\x67\xfa\x09\x33\x3d\xfc\x00\x31" + - "\xc8\xab\x23\x6d\x69\xe6\xed\xe3\xdb\x37\xd8\xb9\x3a\xc6\x05\x18\x19\x2d\xef\xf3\x46\xdd\xfb\x6c\x0c\xde\x7f\x38" + - "\xf3\x9a\x56\x95\x23\x22\x8b\xb6\x46\xae\xd5\xd9\x81\xdd\xed\xb8\x53\xaf\x20\x86\x29\xfc\x0d\x38\xae\xe0\x29\xd1" + - "\x38\x3a\x3b\x8c\x85\x40\x0c\xca\xcb\x24\x12\x8d\xcf\x2a\x34\x68\x23\x71\x36\x3e\x8a\xa3\xb6\x7a\x05\xea\x8d\x92" + - "\x7a\xbc\xfe\x9d\x14\x6f\x48\x8d\x23\x71\xf6\x7e\xf2\xe1\x08\xd7\x23\x6a\xcd\x33\xe3\xff\x58\xa4\xa4\x11\x14\x87" + - "\x82\xda\x6b\x88\x44\xae\xdf\x08\x8a\x1e\xe3\x0a\xa5\x7e\x8c\xb9\x90\x38\xb2\x59\xbf\xa3\x7d\x7b\x36\x5a\x31\x4e" + - "\xc5\x6a\x0c\x54\x64\x36\x0b\x63\x18\x76\xb5\x30\x1c\xc3\xd0\xf7\x57\xab\xd5\xa6\x96\x5d\xb2\x5d\x15\x5b\xd1\xfb" + - "\xd1\x27\x65\x54\x0b\x32\x3c\x48\x4b\x41\x46\xc3\x2e\x25\xc3\x71\x57\x49\x63\x18\xf6\xfa\xe1\x29\x7d\x85\x9c\x1a" + - "\xb4\x86\x14\x68\x1a\xd1\x5d\x9d\xdb\x7d\xbd\xee\x4a\x7c\x3f\x45\xd9\xd2\xd6\x37\x27\x4b\x56\x10\xdb\x19\x93\x3b" + - "\x0e\xac\xc6\xe6\x60\x58\x49\xd2\x34\x28\x0f\x34\xac\x16\xd9\xb6\x97\x13\x42\xab\x50\x4e\xfb\x6d\x3d\xf2\xcb\xe9" + - "\x09\x14\x9f\x9c\x98\x6c\x77\x07\x53\xc9\x28\x45\xee\x7e\x51\xf7\x39\xa9\x58\xd2\x8f\xa4\x14\x35\x9e\xc4\xec\x9c" + - "\x55\xec\x47\x60\x1e\x2a\x52\x37\x15\x2a\x27\xe9\x5e\xa0\x55\x08\x19\x51\xa8\xfe\x7f\x68\x73\x58\x90\x4c\x3b\xc9" + - "\xe6\x05\xda\xbf\x0a\x1a\xf9\x6d\x75\xb0\x60\x3e\x65\xcb\x64\x70\x30\x34\xe3\x41\xa4\xd0\x6e\x77\xbb\xe2\x26\x39" + - "\xdb\xe6\x7f\xef\x1a\x1f\xf8\x8b\x52\xe9\x1f\xc6\x10\x95\xb3\xad\xad\x29\x40\xd7\x9e\xbd\x4e\x72\x73\xe3\xfd\xc2" + - "\x2a\x34\xc7\xe3\xed\x6d\xe4\x97\xb3\x63\xbb\x45\x62\x9a\xf6\x25\x44\xa9\xd1\x7e\xd2\x1d\x9c\xbf\xaf\x1b\x6b\x90" + - "\x26\x91\x5f\x2e\x4e\x19\x29\xf6\xf5\xd0\xe8\x15\xf2\x42\x97\xf0\x0d\x72\x21\x6b\xa2\xc1\x79\x38\x7e\xf8\xf0\xa1" + - "\xe7\x74\x40\x90\xae\xb5\x59\x2d\x03\x77\x88\xb7\x5d\x8b\x9b\x1b\xef\x9d\xac\x6e\x6f\x9d\xed\xb7\xa4\x9a\xbb\x99" + - "\x26\x90\x6a\xee\x24\xb0\x6d\xff\x91\xcf\x12\x5b\xa6\x5d\x2a\xba\x7c\x0c\x7a\x79\x8e\xfc\x4d\x8e\x7b\xf9\x8b\x72" + - "\x21\x34\xca\xe4\xee\xae\xfb\xee\x9e\xb2\x1a\xf6\x78\x8b\x9d\xfb\x8a\x7d\x1b\x7a\xca\x74\x26\x18\xbf\x9c\x06\x8b" + - "\x75\xfa\xaf\xd7\xaf\xd2\x62\x4a\xcb\xf2\x8f\x3f\xd8\xbb\xeb\x3f\x35\x7b\x23\xc3\x4f\xef\xca\xd7\x2f\xe9\x3f\x3e" + - "\xbf\x70\xa0\x22\xa9\xa1\x05\x8f\x3b\x93\x9f\x9e\x0a\xde\xed\xf9\xad\xaf\x95\x90\xd4\x35\x21\x5d\x42\x2a\x91\x5c" + - "\xbb\x66\xe2\xea\x9e\x08\x6c\x14\xac\x2e\x20\x15\x92\xa2\x8c\x9d\x89\xd3\x9d\xb4\xe0\xb3\x9a\x14\xa8\xfc\x4d\x68" + - "\x86\xb3\xec\x5c\xd4\x44\x16\x8c\x5f\xc2\x04\x48\xab\xc5\xd5\x7d\xe0\xa7\x7b\xc1\xbe\x98\xf7\x73\x27\x6a\xf2\x3e" + - "\x89\x8d\xb6\x23\x03\x9b\x08\x5f\x89\x42\xb8\x42\x12\x5e\x60\x17\x25\xa9\x74\xec\xfc\x22\x5a\x4e\x91\x1a\x9e\xf5" + - "\x42\x54\x15\xe1\xf4\x70\x7d\x9a\xe4\x35\xa1\x08\x2b\xa6\x4b\x88\xd8\x76\x31\x0d\x41\x73\x4b\x24\x52\x1b\x42\xc1" + - "\x4c\xe5\xed\xd7\xc9\x10\xe2\x4b\xdf\x4f\x2b\x51\x78\xb4\xd5\x59\x99\x19\x02\xa2\x3c\x26\x7c\x07\xec\xae\x89\x9d" + - "\xa7\x66\x1e\x9e\x58\x81\x93\xf4\x47\x47\xf9\x88\xfc\xe6\xe4\x2e\x87\xc8\xdf\xd6\xdb\x66\xdc\x0f\x40\x5d\xfa\x7e" + - "\xc1\x74\xd9\xa6\xf6\x40\xea\xc5\xe1\xf7\xda\xb3\xef\x24\x5d\xaa\xba\x25\x6b\x84\x62\xa6\x4c\x2e\x81\xa4\x4a\x54" + - "\xad\xc6\x2b\xd0\xa2\xb9\x84\xc9\x15\x48\x56\x94\xda\xbe\x75\x55\x60\x5e\x37\x65\xb0\xf5\x97\x91\x5a\x78\x9d\xd3" + - "\x56\xa1\xdc\x30\x64\xeb\x7f\x7e\x81\xf9\xc5\x34\xbf\x20\x19\x09\x16\x69\xfa\x88\x04\x8b\xc5\xe2\x82\x4e\x68\x38" + - "\xc9\xa7\xf3\xc9\x05\xe6\xe7\xf3\xc5\x94\xa4\x7e\x70\x11\x2e\xc2\x45\x38\x09\xe7\x73\x32\xcb\x67\x79\x38\x9f\xcf" + - "\x67\x18\x4c\x03\x1a\x4c\x43\x12\xe4\x01\x06\xd3\x30\x0c\xcd\xdc\x3c\xc8\x03\x3a\xcb\x83\x30\x78\x14\x2e\x82\x8b" + - "\xf0\x3c\x98\xcd\xf2\x70\x16\x3c\x0a\x66\xc1\xcc\x68\x86\xf3\x59\x1e\x04\x81\x99\x4b\x03\x1a\x9c\x9f\x77\xd2\xd0" + - "\xf8\x38\xcf\x83\x45\x30\xb5\x92\x59\x90\x85\xe7\x46\x3a\x9f\xce\x67\xf3\xe9\x3c\x30\xff\x67\x18\x4e\x02\x0c\xc2" + - "\x5d\xa1\xc8\x6b\xa8\x11\x04\x87\xe7\x4c\xbf\x68\x53\x07\x28\xd1\xc4\xcd\x08\x17\x9c\x65\x86\xea\xf7\x33\xa1\xe6" + - "\x1e\xa9\xc9\x57\xc1\xc9\xaa\x23\x04\x5d\x56\x7c\xc9\xd2\x54\x70\xe5\xe7\x42\x5e\xd7\xf8\xd1\xe6\xf4\x23\x25\xf2" + - "\x3a\xad\x5a\xfc\x38\x9d\x4d\x83\xd9\xd4\x96\x67\x62\xcb\xe0\x7e\x06\x3a\xba\x87\xd1\x19\x5e\x6a\x72\xff\x6f\xc1" + - "\x32\xdc\xd3\xd3\x77\xbd\xa9\x13\x2c\xf5\x8e\xc5\x49\xb2\x6a\x71\x97\x10\xef\x98\xd0\x01\x9f\xdb\xd2\xa2\x03\xd6" + - "\xd2\x2e\x3d\x7b\xd1\x8e\xa1\x63\xec\x9f\xc8\x92\x6c\x34\x8f\x14\xb7\x64\x4e\xcb\x16\x8f\x84\x1d\x9d\x33\x94\x8b" + - "\xd1\x02\xb5\x67\x22\x5e\x9a\x88\x6d\x76\x8f\xbe\xd0\xd0\xae\xab\xa3\x0f\x50\xfd\xf8\x4f\xf2\xcc\xdd\x67\x1c\xd1" + - "\x4d\x75\x2f\x71\x6c\x97\x63\xb8\xc3\x8e\xf7\x44\xec\xf6\x6c\x74\xf6\x5d\x56\x76\xf8\xcb\xc3\xa0\xdf\x79\x76\x27" + - "\x94\x14\x2b\x85\x25\x69\x9a\xb5\x93\xfc\x47\xb4\x40\xa4\x21\x27\xe6\xde\x4a\x38\x44\x4a\x4b\xc1\x8b\x44\xb4\x9a" + - "\x12\x8d\x34\xf2\x37\x13\xd0\xd9\x49\x0f\xde\x56\x48\x14\x1e\x37\xa8\x3d\xae\xcd\xa2\x93\xb4\x4d\x21\x4d\xb7\x5b" + - "\x8b\x56\x6e\xcd\xed\x21\xa8\x05\xb0\xba\x91\x62\xb9\x91\xe1\x97\x06\x25\x43\x9e\x99\x4b\x78\xbf\x3d\xdd\xf9\x15" + - "\x61\x33\xb9\x79\xee\xc6\xa7\x2f\x6b\xf6\x9e\x7a\xf7\x82\xb6\xcb\x45\x67\x6a\x2e\x6a\xbe\xb9\xa9\x25\xe6\xa5\xfb" + - "\xed\xe6\xbf\x01\x00\x00\xff\xff\x9e\xbd\x38\x83\xcc\x11\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x6d\x93\x9b\x38\x12\xfe\xee\x5f\xd1\x21\x1f\xec\xb9\x35\xe0\xb7" + + "\x81\xc9\x0c\x70\xb5\x79\xd9\x64\x2f\x2f\x97\xdb\xdd\xdc\xee\x55\x2a\x95\x12\xa8\x01\x65\x40\x22\x92\xb0\xe3\x4c" + + "\xfc\xdf\xaf\x24\x6c\x0f\x63\x7b\xb6\xb2\x77\xf3\x61\x00\x75\xf7\xd3\x4d\x77\xd3\x7a\xe4\xe8\x01\x15\x99\x5e\x37" + + "\x08\xa5\xae\xab\x64\x10\x3d\x70\xdd\xf7\x2c\x87\x4a\xc3\xcf\xcf\x20\xfc\x90\x80\xfd\x8b\x8c\x14\xb2\x8a\x28\x15" + + "\x3b\x5c\xb8\x9f\x14\x54\xda\x65\xf8\xa8\xbb\x5c\x74\x97\xd0\x49\x20\x7a\xf0\x1e\x39\x65\xf9\x07\xd7\xbd\x45\xeb" + + "\x43\x7d\x07\xda\x9f\xc0\x5c\x7c\x0f\xcc\x7d\xf6\x85\xde\x42\x98\x85\x64\x70\x6c\xef\x74\xba\x77\x8c\x07\x51\x89" + + "\x84\x26\x03\xeb\xb1\x46\x4d\x20\x2b\x89\x54\xa8\x63\xa7\xd5\xb9\x7b\xe1\xf4\x45\xa5\xd6\x8d\x8b\x9f\x5b\xb6\x8c" + + "\x9d\x3f\xdc\x77\x3f\xba\x4f\x44\xdd\x10\xcd\xd2\x0a\x1d\xc8\x04\xd7\xc8\x75\xec\xfc\xfc\x2c\x46\x5a\xe0\xce\x52" + + "\x33\x5d\x61\xa2\x25\xe1\x2a\x47\xe9\xa9\x12\x5c\x78\x46\xd4\x1a\x08\xa7\x90\x13\xa5\x21\x67\x15\x82\x2a\x89\x64" + + "\xbc\x80\x5c\x8a\x1a\x74\x89\x90\x89\xba\x26\x9c\xba\x15\xe3\xe8\x45\x7e\x07\xd3\x0b\x86\x93\x1a\x63\x87\xa2\xca" + + "\x24\x6b\x34\x13\xbc\x17\xc2\x5f\xc6\x77\x8e\x91\x97\x0c\x57\x8d\x90\xba\x07\xbb\x62\x54\x97\x31\xc5\x25\xcb\xd0" + + "\xb5\x0f\x63\x60\x9c\x69\x46\x2a\x57\x65\xa4\xc2\x78\xea\x4d\x76\x50\x0f\x5c\x17\xde\x56\x24\x43\xc8\xc9\x92\x65" + + "\x82\x7b\x2c\x13\x36\x28\xd2\x34\x15\xba\x5a\xb4\x59\xe9\x5a\x41\xc3\x0b\x60\xdc\x46\x25\x85\xd0\x40\x99\xc4\x4c" + + "\x0b\xb9\x06\x53\x22\x8b\x56\x31\x7e\x0d\x12\xab\xd8\x51\x7a\x5d\xa1\x2a\x11\xb5\x03\xa5\xc4\x3c\x76\xfc\x6e\xc9" + + "\xaf\x09\xe3\x5e\xa6\x94\xd3\xb7\xb1\x2a\x43\xdf\xcf\x05\xd7\xca\x2b\x84\x28\x2a\x24\x0d\x53\x5e\x26\x6a\x3f\x53" + + "\xea\xef\x39\xa9\x59\xb5\x8e\x7f\x15\xad\xcc\xf0\x87\x5f\x09\x57\x3f\xbc\x95\xe2\x72\x3a\x99\x8c\x67\x93\xc9\x78" + + "\x3e\x99\x0c\xad\xe3\xe1\xad\xe3\x21\x98\x6f\x2a\x1e\x6a\xfc\xa2\x0d\xc6\xf0\x7f\x71\xf8\x54\x0a\x46\x3b\x7f\xaf" + + "\x05\x17\xdf\xed\xa4\xab\x37\x28\x99\x99\x37\xb7\x0f\xca\x5f\x22\xa7\x42\xfa\xb5\xa0\x28\x39\xfb\x2a\x3d\xd3\xed" + + "\xd1\x56\x9c\x0c\x22\xbf\xeb\xf2\xc1\x20\x4a\x05\x5d\x03\x30\x1a\x3b\x54\xac\x78\x25\x08\x75\x92\xc1\x60\xff\xd1" + + "\xed\x2c\xf6\x9f\x21\x2c\x89\x84\x82\xbc\xc4\x35\xc4\xe0\xdc\xdc\x78\xcf\x7f\x7c\x89\xeb\xcd\xc6\xb9\xea\xe9\xb0" + + "\x1c\x46\x9d\xce\x83\x18\x1c\xe7\x0c\x6e\x7a\x42\x80\x51\xde\xf2\xcc\xb4\xe8\x88\x8d\x41\x8d\x41\x8c\xa1\x18\x83" + + "\x1c\x03\x19\x43\x7d\xa8\x0c\xc0\xde\x0f\x9f\xdb\xb4\xfd\xc8\x49\xb5\xd6\x2c\x53\xff\x4c\x3f\x61\xa6\x87\x1f\x20" + + "\x06\x79\x75\xa4\x2d\xcd\xba\xbd\x7c\xfb\x06\x7b\x57\xc7\xb8\x00\x23\xa3\xe5\x7d\xde\xaa\x7b\x9f\x8d\xc1\xfb\x0f" + + "\x67\x5e\xd3\xaa\x72\x44\x64\xd1\xd6\xc8\xb5\x3a\x3b\xb0\xdb\x8c\x3b\xf5\x0a\x62\x98\xc2\xdf\x80\xe3\x0a\x9e\x12" + + "\x8d\xa3\xb3\xc3\x58\x08\xc4\xa0\xbc\x4c\x22\xd1\xf8\xac\x42\x83\x36\x12\x67\xe3\xa3\x38\x6a\xab\x57\xa0\xde\x2a" + + "\xa9\xc7\xeb\xdf\x48\xf1\x86\xd4\x38\x12\x67\xef\x27\x1f\x8e\x70\x3d\xa2\xd6\x3c\x33\xfe\x8f\x45\x4a\x1a\x41\x71" + + "\x28\xa8\xbd\x86\x48\xe4\xfa\x8d\xa0\xe8\x31\xae\x50\xea\xc7\x98\x0b\x89\x23\x9b\xf5\x3b\xda\x9b\xb3\xd1\x8a\x71" + + "\x2a\x56\x63\xa0\x22\xb3\x59\x18\xc3\xb0\xeb\x85\xe1\x18\x86\xbe\xbf\x5a\xad\xb6\xbd\xec\x92\x5d\x55\x6c\x47\xdf" + + "\x3e\x7d\x52\x46\xb5\x20\xc3\x83\xb4\x14\x64\x34\xec\x52\x32\x1c\x77\x9d\x34\x86\x61\x6f\x1e\x9e\xd2\x57\xc8\xa9" + + "\x41\x6b\x48\x81\x66\x10\xdd\xd5\xd9\xdc\xf6\xeb\xbe\xc5\x6f\x97\x28\x5b\xda\xfe\xe6\x64\xc9\x0a\x62\x27\x63\x72" + + "\xc7\x81\xd5\xd8\x6e\x0c\x2b\x49\x9a\x06\xe5\x81\x86\xd5\x22\xbb\xf1\x72\x42\x68\x15\xca\x69\x7f\xac\x47\x7e\x39" + + "\x3d\x81\xe2\x93\x13\x8b\xed\x7e\x63\x2a\x19\xa5\xc8\xdd\x2f\xea\x3e\x27\x15\x4b\xfa\x91\x94\xa2\xc6\x93\x98\x9d" + + "\xb3\x8a\x7d\x0f\xcc\x43\x45\xea\xa6\x42\xe5\x24\xdd\x0d\xb4\x0a\x21\x23\x0a\xd5\xff\x0f\x6d\x36\x0b\x92\x69\x27" + + "\xd9\xde\x40\xfb\x57\x41\x23\xbf\xad\x0e\x0a\xe6\x53\xb6\x4c\x06\x07\x8f\xe6\x79\x10\x29\xb4\x9f\xbb\xad\xb8\x49" + + "\xce\x6e\xf8\xdf\x5b\xe3\x03\x7f\x51\x2a\xfd\xc3\x18\xa2\x72\xb6\xb3\x35\x0d\xe8\xda\xbd\xd7\x49\x6e\x6e\xbc\x9f" + + "\x58\x85\x66\x7b\xdc\x6c\x22\xbf\x9c\x1d\xdb\x2d\x12\x33\xb4\x2f\x21\x4a\x8d\xf6\x93\x6e\xe3\xfc\x6d\xdd\x58\x83" + + "\x34\x89\xfc\x72\x71\xca\x48\xb1\xaf\x87\x46\xaf\x90\x17\xba\x84\x6f\x90\x0b\x59\x13\x0d\xce\xc3\xf1\xc3\x87\x0f" + + "\x3d\xa7\x03\x82\x74\xad\x4d\xb5\x0c\xdc\x21\xde\xae\x16\x37\x37\xde\x3b\x59\x6d\x36\xce\xee\x5d\x52\xcd\xdd\x4c" + + "\x13\x48\x35\x77\x12\xd8\x8d\xff\xc8\x67\x89\x6d\xd3\x2e\x15\x27\xf3\xd1\x4b\xe6\x67\x99\x09\x8a\xf7\x74\x2b\x40" + + "\xc4\xea\xa2\xdb\x9b\x28\xd1\xe4\x92\xd5\xa4\x40\xbf\xe1\xc5\x55\x4a\x14\x06\x8b\xf1\xcd\x8d\xf7\xaf\x5f\x9e\x08" + + "\x8a\x9b\x8d\x73\xec\xe7\xb6\xb0\xbb\xfb\xc8\xdf\x16\xb8\x57\xbc\x28\x17\x42\xa3\x4c\x06\xa7\xe2\x3b\xfd\x41\x5b" + + "\x0d\xbb\xb7\xc6\xce\x7d\x5f\xda\x2e\x6f\x29\xd3\x99\x60\xfc\x72\x1a\x2c\xd6\xe9\x2f\xaf\x5f\xa5\xc5\x94\x96\xe5" + + "\xef\xbf\xb3\x77\xd7\x7f\x68\xf6\x46\x86\x9f\xde\x95\xaf\x5f\xd2\x7f\x7c\x7e\xe1\x40\x45\x52\xc3\x49\x1e\x77\x26" + + "\x3f\x3c\x15\xbc\x1b\x38\x3b\x5f\x2b\x21\xa9\x6b\x42\xba\x84\x54\x22\xb9\x76\xcd\xc2\xd5\xbd\xd9\xdb\xe6\x2f\x15" + + "\x92\xa2\x8c\x9d\x89\xd3\xa5\x12\x7c\x9b\x47\xe5\x6f\x43\x33\x84\x69\xef\xa2\x26\xb2\x60\xfc\x12\x26\x40\x5a\x2d" + + "\xae\xee\x03\x3f\x3d\x88\x7a\x09\xdf\xaf\x9d\x68\x80\xfb\x24\xb7\xd5\xde\x45\xf8\x4a\x14\xc2\x15\x92\xf0\x02\xbb" + + "\x28\x49\xa5\x63\xe7\x27\xd1\x72\x8a\xd4\x90\xbc\x17\xa2\xaa\x08\xa7\x87\xf5\x69\x92\xd7\x84\x22\xac\x98\x2e\x21" + + "\x62\xbb\x62\x1a\x76\xe8\x96\x48\xa4\x36\x6c\x86\x99\xb6\xbf\xad\x93\x61\xe3\x97\xbe\x9f\x56\xa2\xf0\x68\xab\xb3" + + "\xd2\x34\xa6\x54\x1e\x13\xbe\x03\xf6\x93\x8d\x9d\xa7\x66\x1d\x9e\x58\x81\x93\xf4\x9f\x8e\xf2\x11\xf9\xcd\xc9\x11" + + "\x03\x91\xbf\xeb\xb7\xed\x73\x3f\x00\x75\xe9\xfb\x05\xd3\x65\x9b\xda\xdd\xb0\x17\x87\xdf\xdb\x1b\x7c\x27\xe9\x52" + + "\xd5\x95\xac\x11\x8a\x99\x36\xb9\x04\x92\x2a\x51\xb5\x1a\xaf\x40\x8b\xe6\x12\x26\x57\x20\x59\x51\x6a\x7b\xd7\x75" + + "\x81\xb9\xdd\xb6\xc1\xce\x5f\x46\x6a\xe1\x75\x4e\x5b\x85\x72\x4b\xcf\xad\xff\xf9\x05\xe6\x17\xd3\xfc\x82\x64\x24" + + "\x58\xa4\xe9\x23\x12\x2c\x16\x8b\x0b\x3a\xa1\xe1\x24\x9f\xce\x27\x17\x98\x9f\xcf\x17\x53\x92\xfa\xc1\x45\xb8\x08" + + "\x17\xe1\x24\x9c\xcf\xc9\x2c\x9f\xe5\xe1\x7c\x3e\x9f\x61\x30\x0d\x68\x30\x0d\x49\x90\x07\x18\x4c\xc3\x30\x34\x6b" + + "\xf3\x20\x0f\xe8\x2c\x0f\xc2\xe0\x51\xb8\x08\x2e\xc2\xf3\x60\x36\xcb\xc3\x59\xf0\x28\x98\x05\x33\xa3\x19\xce\x67" + + "\x79\x10\x04\x66\x2d\x0d\x68\x70\x7e\xde\x49\x43\xe3\xe3\x3c\x0f\x16\xc1\xd4\x4a\x66\x41\x16\x9e\x1b\xe9\x7c\x3a" + + "\x9f\xcd\xa7\xf3\xc0\xfc\x9f\x61\x38\x09\x30\x08\xf7\x8d\x22\xaf\xa1\x46\x10\x1c\x9e\x33\xfd\xa2\x4d\x1d\x30\x73" + + "\xc4\xcd\x08\x17\x9c\x65\xe6\x9c\xd1\xcf\x84\x9a\x7b\xa4\x26\x5f\x05\x27\xab\x8e\x8d\x74\x59\xf1\x25\x4b\x53\xc1" + + "\x95\x9f\x0b\x79\x5d\xe3\x47\x9b\xd3\x8f\x94\xc8\xeb\xb4\x6a\xf1\xe3\x74\x36\x0d\x66\x53\xdb\x9e\x89\x6d\x83\xfb" + + "\xe9\xef\xe8\x1e\x3a\x69\x48\xb1\xc9\xfd\xbf\x05\xcb\xf0\x96\x1b\xbf\xeb\x2d\x9d\xa0\xc8\x77\x2c\x4e\x32\x65\x8b" + + "\xbb\x84\x78\x4f\xc3\x0e\xc8\xe4\x8e\x93\x1d\x50\xa6\x76\xe9\xd9\x53\x7e\x0c\xdd\x71\xe1\x13\x59\x92\xad\xe6\x91" + + "\xe2\x8e\x49\x6a\xd9\xe2\x91\xb0\xe3\x92\x86\xef\x31\x5a\xa0\xf6\x4c\xc4\x4b\x13\xb1\xcd\xee\xd1\x1b\x1a\xce\x77" + + "\x75\xf4\x02\xaa\x1f\xff\x49\x92\xbb\x7f\x8d\x23\xae\xab\xee\x65\xad\xed\x72\x0c\x77\xa8\xf9\x2d\x0b\xdc\x9c\x8d" + + "\xce\xfe\x94\x12\x1e\xfe\xec\x31\xe8\x4f\x9e\xfd\xf6\x28\xc5\x4a\x61\x49\x9a\x66\xed\x24\xff\x11\x2d\x10\x69\x98" + + "\x91\x39\x34\x13\x0e\x91\xd2\x52\xf0\x22\x11\xad\xa6\x44\x23\x8d\xfc\xed\x02\x74\x76\xd2\x83\xb7\x15\x12\x85\xc7" + + "\x03\xea\x16\xd7\x66\xd1\x49\xda\xa6\x90\x66\xda\xad\x45\x2b\x77\xe6\x76\x07\xd6\x02\x58\xdd\x48\xb1\xdc\xca\xf0" + + "\x4b\x83\x92\x21\xcf\xd0\xbb\x3b\x9e\xee\xfc\x84\xb1\x5d\xdc\x5e\xf7\xcf\xa7\x4f\x8a\xf6\x90\x7c\xf7\x74\xb8\xcf" + + "\x45\x67\x6a\x4e\x89\xbe\x39\x26\x26\xe6\xa6\xfb\xe1\xe8\xbf\x01\x00\x00\xff\xff\x15\x1f\x3f\x80\x49\x12\x00\x00" + + "") func bindataDistDownloadhtmlBytes() ([]byte, error) { return bindataRead( @@ -508,10 +513,10 @@ func bindataDistDownloadhtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.html", - size: 4556, + size: 4681, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -520,76 +525,78 @@ func bindataDistDownloadhtml() (*asset, error) { } var _bindataDistDownloadimagehtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x73\x9b\x48\x12\xff\xae\xbf\xa2\x43\x3e\x48\xbe\x08\xd0\xcb" + - "\xc8\xb1\x05\x57\x79\x6d\x92\xcb\xe3\x52\xb7\x9b\xdb\xbd\x4a\xa5\x52\x03\xd3\xc0\xc4\x30\x43\x66\x06\x29\x8a\xe3" + - "\xff\xfd\x6a\x06\x21\xa3\x57\x36\x7b\xe7\x0f\x16\xf4\xe3\xd7\x4d\x77\x4f\xd3\xcd\xe2\x1e\x15\x89\x5e\x57\x08\xb9" + - "\x2e\x8b\xa8\xb7\xb8\xe7\xba\x1f\x58\x0a\x85\x86\x97\xcf\x60\xfe\x31\x02\xfb\xb7\x30\x5c\x48\x0a\xa2\x54\xe8\x70" + - "\xe1\x7e\x56\x50\x68\x97\xe1\xc3\xe6\xe7\xa2\xf9\x99\x3b\x11\x2c\xee\x7d\x40\x4e\x59\xfa\xd1\x75\xef\xd0\xba\x50" + - "\x3f\x81\xf6\x03\x98\x8b\x9f\x81\x39\xa5\x9f\xe9\x0d\x84\x21\x44\xbd\x43\x7d\xa7\x91\xdd\x51\xee\x2d\x72\x24\x34" + - "\xea\x59\x8b\x25\x6a\x02\x49\x4e\xa4\x42\x1d\x3a\xb5\x4e\xdd\x0b\xa7\xcb\xca\xb5\xae\x5c\xfc\x52\xb3\x65\xe8\xfc" + - "\xe1\xbe\x7f\xe4\x3e\x11\x65\x45\x34\x8b\x0b\x74\x20\x11\x5c\x23\xd7\xa1\xf3\xf2\x59\x88\x34\xc3\x56\x53\x33\x5d" + - "\x60\xa4\x25\xe1\x2a\x45\xe9\xa9\x1c\x5c\x78\x46\xd4\x1a\x08\xa7\x90\x12\xa5\x21\x65\x05\x82\xca\x89\x64\x3c\x83" + - "\x54\x8a\x12\x74\x8e\x90\x88\xb2\x24\x9c\xba\x05\xe3\xe8\x2d\xfc\x06\xa6\xe3\x0c\x27\x25\x86\x0e\x45\x95\x48\x56" + - "\x69\x26\x78\xc7\x85\xbf\x8c\xef\x1c\x22\x2f\x19\xae\x2a\x21\x75\x07\x76\xc5\xa8\xce\x43\x8a\x4b\x96\xa0\x6b\x6f" + - "\x86\xc0\x38\xd3\x8c\x14\xae\x4a\x48\x81\xe1\xd8\x1b\xb5\x50\xf7\x5c\x17\xde\x15\x24\x41\x48\xc9\x92\x25\x82\x7b" + - "\x2c\x11\xd6\x29\x52\x55\x05\xba\x5a\xd4\x49\xee\x5a\x46\xc5\x33\x60\xdc\x7a\x25\x85\xd0\x40\x99\xc4\x44\x0b\xb9" + - "\x06\x93\x22\x8b\x56\x30\x7e\x0d\x12\x8b\xd0\x51\x7a\x5d\xa0\xca\x11\xb5\x03\xb9\xc4\x34\x74\xfc\x86\xe4\x97\x84" + - "\x71\x2f\x51\xca\xe9\xea\x58\x91\xbe\xef\xa7\x82\x6b\xe5\x65\x42\x64\x05\x92\x8a\x29\x2f\x11\xa5\x9f\x28\xf5\xf7" + - "\x94\x94\xac\x58\x87\xbf\x8a\x5a\x26\xf8\xe0\x57\xc2\xd5\x83\x77\x52\x5c\x8e\x47\xa3\xe1\x64\x34\x1a\x4e\x47\xa3" + - "\xbe\x35\xdc\xbf\x33\xdc\x07\x73\xa6\xc2\xbe\xc6\xaf\xda\x60\xf4\xff\x17\x83\x4f\xa5\x60\xb4\xb1\xf7\x46\x70\xf1" + - "\xd3\x46\x9a\x7c\x83\x92\x89\x79\x72\x7b\xa3\xfc\x25\x72\x2a\xa4\x5f\x0a\x8a\x92\xb3\x6f\xd2\x33\xd5\xbe\xd8\xb0" + - "\xa3\xde\xc2\x6f\xaa\xbc\xd7\x5b\xc4\x82\xae\x01\x18\x0d\x1d\x2a\x56\xbc\x10\x84\x3a\x51\xaf\xb7\x3d\x74\xad\xc6" + - "\xf6\x18\xc2\x92\x48\xc8\xc8\x2b\x5c\x43\x08\xce\xcd\x8d\xf7\xfc\xd1\x2b\x5c\xdf\xde\x3a\x57\x1d\x19\x96\xc2\xa0" + - "\x91\xb9\x17\x82\xe3\x9c\xc1\x4d\x87\x09\x30\x48\x6b\x9e\x98\x12\x1d\xb0\x21\xa8\x21\x88\x21\x64\x43\x90\x43\x20" + - "\x43\x28\xf7\x85\x01\xd8\x87\xfe\x73\x1b\xb6\x47\x9c\x14\x6b\xcd\x12\xf5\xcf\xf8\x33\x26\xba\xff\x11\x42\x90\x57" + - "\x07\xd2\xd2\xd0\xed\xcf\xf7\xef\xb0\x35\x75\x88\x0b\x30\x30\x52\xde\x97\x8d\xb8\xf7\xc5\x28\x7c\xf8\x78\xe6\x55" + - "\xb5\xca\x07\x44\x66\x75\x89\x5c\xab\xb3\x3d\xbd\xdb\x61\x23\x5e\x40\x08\x63\xf8\x1b\x70\x5c\xc1\x53\xa2\x71\x70" + - "\xb6\xef\x0b\x81\x10\x94\x97\x48\x24\x1a\x9f\x15\x68\xd0\x06\xe2\x6c\x78\xe0\x47\x69\xe5\x32\xd4\x1b\x21\xf5\x78" + - "\xfd\x1b\xc9\xde\x92\x12\x07\xe2\xec\xc3\xe8\xe3\x01\xae\x47\xd4\x9a\x27\xc6\xfe\x21\x4b\x49\xc3\xc8\xf6\x19\xa5" + - "\x57\x11\x89\x5c\xbf\x15\x14\x3d\xc6\x15\x4a\xfd\x18\x53\x21\x71\x60\xa3\xbe\x23\x7d\x7b\x36\x58\x31\x4e\xc5\x6a" + - "\x08\x54\x24\x36\x0a\x43\xe8\x37\xb5\xd0\x1f\x42\xdf\xf7\x57\xab\xd5\xa6\x96\x5d\xd2\x66\xc5\x56\xf4\xdd\xdd\x67" + - "\x65\x44\x33\xd2\xdf\x0b\x4b\x46\x06\xfd\x26\x24\xfd\x61\x53\x49\x43\xe8\x77\xfa\xe1\x31\x79\x85\x9c\x1a\xb4\x8a" + - "\x64\x68\x1a\xd1\xae\xcc\xed\x5d\xbd\x6e\x4b\xfc\x8e\x44\xd9\xd2\xd6\x37\x27\x4b\x96\x11\xdb\x19\xa3\x1d\x03\x56" + - "\x62\xf3\x62\x58\x49\x52\x55\x28\xf7\x24\xac\x14\x69\xdb\xcb\x11\xa6\x15\xc8\xc7\xdd\xb6\xbe\xf0\xf3\xf1\x11\x14" + - "\x9f\x1c\x21\xd6\xdb\x17\x53\xce\x28\x45\xee\x7e\x55\xa7\x8c\x14\x2c\xea\x7a\x92\x8b\x12\x8f\x62\x36\xc6\x0a\xf6" + - "\x33\x30\xf7\x15\x29\xab\x02\x95\x13\x35\x17\x50\x2b\x84\x84\x28\x54\xff\x3f\xb4\x79\x59\x90\x44\x3b\xd1\xe6\x02" + - "\xea\xbf\x0a\xba\xf0\xeb\x62\x2f\x61\x3e\x65\xcb\xa8\xb7\x77\xbb\x69\x87\x68\x8f\xbb\xcd\xb8\x09\x4e\x27\x8e\xc7" + - "\xf3\xbc\x8b\x1c\x4b\x7f\xcf\x56\x3e\x69\x75\x4c\xf1\xb9\xf6\xbd\xeb\x44\x37\x37\xde\x2f\xac\x40\xf3\x6a\xbc\xbd" + - "\x5d\xf8\xf9\x64\x5f\x6b\x16\x99\x76\x7d\x09\x8b\xd8\xc8\x3e\x69\x5e\x99\xbf\xad\x2b\x2b\x1e\x47\x0b\x3f\x9f\x1d" + - "\xaa\x28\xf6\x6d\x5f\xe5\x35\xf2\x4c\xe7\xf0\x1d\x52\x21\x4b\xa2\xc1\xb9\x3f\xbc\x7f\xff\xbe\xe7\x34\x30\x10\xaf" + - "\xb5\xc9\x92\x01\xdb\x45\x6b\x33\x70\x73\xe3\xbd\x97\xc5\xed\xad\xd3\x3e\x45\xac\xb9\x9b\x68\x02\xb1\xe6\x4e\x04" + - "\x6d\xd3\x5f\xf8\x2c\xb2\xc5\xd9\x84\xa0\x89\x43\xef\xe4\x31\x91\x62\x05\x84\xb3\x92\x68\x34\x43\x05\xc5\x97\xfc" + - "\xa9\x58\xed\x1f\x2c\xe8\x1e\x3f\x33\x68\xb8\x1a\x65\xc9\x38\x29\xb6\xde\x40\x2c\xbe\x42\x22\x0a\xb7\xa4\xee\x05" + - "\xb4\x57\x22\x4d\x15\x6a\x77\x62\xef\xbf\x2a\x77\x3c\x39\x75\x1c\x3a\x3e\xb5\xd8\xae\x16\xd5\x7e\x5e\x4f\x54\xce" + - "\x51\x47\x0f\x7c\x6c\x09\x50\x49\xdb\x7c\x5c\x56\x92\x0c\x4f\x78\x64\xa1\x58\x99\x35\x2f\xe4\xbb\xe8\x03\x29\x74" + - "\xe8\x9c\x7a\x8c\xe3\x6e\x1d\x21\x1f\x23\x1d\xd6\xec\x56\xa6\x73\xe5\x6f\x4e\x46\x7b\x50\x52\x21\x34\xca\x3f\x3b" + - "\x1d\x07\x11\xb2\x03\xc9\xe9\x07\x69\xcb\x2e\x66\x3a\x11\x8c\x5f\x8e\x83\xd9\x3a\xfe\xd7\x9b\xd7\x71\x36\xa6\x79" + - "\xfe\xfb\xef\xec\xfd\xf5\x1f\x9a\xbd\x95\xf3\xcf\xef\xf3\x37\xaf\xe8\x3f\xbe\xbc\x70\xa0\x20\xb1\x19\xe4\x1e\x37" + - "\x2a\x0f\x9e\x0a\xde\x74\xe9\xd6\xd6\x4a\x48\xea\x1a\x97\x2e\x21\x96\x48\xae\x5d\x43\xb8\xfa\xb3\xf8\xc7\x42\x52" + - "\x94\xa1\x33\x72\x9a\x54\x80\x6f\xd3\xa6\xfc\x8d\x6b\x66\xca\xdc\x9a\x28\x89\xcc\x18\xbf\x84\x11\x90\x5a\x8b\xab" + - "\x53\xe0\xc7\xbb\x77\xa7\xfd\x9c\xce\xc9\x0f\xb2\xb5\xad\x96\xd6\xc3\xd7\x22\x13\xae\x90\x84\x67\xd8\x78\x69\x6b" + - "\xe7\x17\x51\x73\x8a\xd4\x4c\xc6\x2f\x44\x51\x10\x4e\xf7\xf3\x53\x45\x6f\x08\x45\x58\x31\x9d\xc3\x82\xb5\xc9\x34" + - "\x23\xb5\x9b\x23\x91\xda\x8c\x80\xcc\xf4\x8c\xbb\x3c\x99\x15\xe6\xd2\xf7\xe3\x42\x64\x1e\xad\x75\x92\x27\x66\x64" + - "\x54\x1e\x13\xbe\x03\xb6\xd7\x85\xce\x53\x43\x87\x27\x96\xe1\x44\xdd\xbb\x83\x78\x2c\xfc\xea\x44\x5f\xf6\xdb\x7a" + - "\xdb\xdc\x77\x1d\x50\x97\xbe\x9f\x31\x9d\xd7\xb1\x1d\x21\x3a\x7e\xf8\x9d\x17\xaa\xef\x44\x4d\xa8\x9a\x94\x55\x42" + - "\x31\x53\x26\x97\x40\x62\x25\x8a\x5a\xe3\x15\x68\x51\x5d\xc2\xe8\x0a\x24\xcb\x72\x6d\xaf\x9a\x2a\x30\x97\x9b\x32" + - "\x68\xed\x25\xa4\x14\x5e\x63\xb4\x56\x28\x37\x3b\x8d\xb5\x3f\xbd\xc0\xf4\x62\x9c\x5e\x90\x84\x04\xb3\x38\x7e\x48" + - "\x82\xd9\x6c\x76\x41\x47\x74\x3e\x4a\xc7\xd3\xd1\x05\xa6\xe7\xd3\xd9\x98\xc4\x7e\x70\x31\x9f\xcd\x67\xf3\xd1\x7c" + - "\x3a\x25\x93\x74\x92\xce\xa7\xd3\xe9\x04\x83\x71\x40\x83\xf1\x9c\x04\x69\x80\xc1\x78\x3e\x9f\x1b\xda\x34\x48\x03" + - "\x3a\x49\x83\x79\xf0\x70\x3e\x0b\x2e\xe6\xe7\xc1\x64\x92\xce\x27\xc1\xc3\x60\x12\x4c\x8c\xe4\x7c\x3a\x49\x83\x20" + - "\x30\xb4\x38\xa0\xc1\xf9\x79\xc3\x9d\x1b\x1b\xe7\x69\x30\x0b\xc6\x96\x33\x09\x92\xf9\xb9\xe1\x4e\xc7\xd3\xc9\x74" + - "\x3c\x0d\xcc\xff\x09\xce\x47\x01\x06\xf3\x6d\xa1\xc8\x6b\x28\x11\x04\x87\xe7\x4c\xbf\xa8\x63\x07\x28\xd1\xc4\x4d" + - "\x08\x17\x9c\x25\x66\x39\xeb\x46\x42\x4d\x3d\x52\x92\x6f\x82\x93\x55\x33\xc2\x35\x51\xf1\x25\x8b\x63\xc1\x95\x9f" + - "\x0a\x79\x5d\xe2\x27\x1b\xd3\x4f\x94\xc8\xeb\xb8\xa8\xf1\xd3\x78\x32\x0e\x26\x63\x5b\x9e\x91\x2d\x83\xd3\x3b\xc3" + - "\xe0\xc4\x0c\x6e\x36\x09\x13\xfb\x7f\x0b\x96\xe0\xdd\x42\xf1\xbe\x43\x3a\xb2\x57\xec\x68\x1c\x5d\x2f\x2c\xee\x12" + - "\xc2\xed\xec\xba\x37\x81\xb7\x83\xec\xde\x9c\x59\x2f\x3d\xfb\x69\x24\x84\x66\xc7\xfa\x4c\x96\x64\x23\x79\x20\xd8" + - "\x8e\xdf\x5a\xd6\x78\xc0\x6c\x06\x70\x33\x24\x33\x9a\xa1\xf6\x8c\xc7\x4b\xe3\xb1\x8d\xee\xc1\x13\x9a\x41\xf9\xea" + - "\xe0\x01\x54\xd7\xff\xa3\x9b\xc1\xf6\x31\x0e\x16\x04\x75\x72\xd4\xaf\x97\x43\xd8\xd9\x67\xee\x46\xe7\xdb\xb3\xc1" + - "\xd9\x0f\xe7\xe8\xfd\x6f\x45\xbd\x6e\xe7\xd9\x4e\x17\x52\xac\x14\xe6\xa4\xaa\xd6\x4e\xf4\x1f\x51\x03\x91\x66\x9c" + - "\x64\x3c\x03\xc2\x61\xa1\xb4\x14\x3c\x8b\x44\xad\xa9\x19\x1d\x16\xfe\x86\x00\x8d\x9e\xf4\xe0\x5d\x81\x44\xe1\x61" + - "\x83\xba\xc3\xb5\x51\x74\xa2\xba\xca\xa4\xe9\x76\x6b\x51\xcb\x56\xdd\x0e\x30\x5a\x00\x2b\x2b\x29\x96\x1b\x1e\x7e" + - "\xad\x50\x32\xe4\x09\x7a\xbb\xed\x69\xe7\xbb\xcf\x86\xb8\xf9\x3d\xa8\xe6\xbd\xfd\xda\x7e\x5a\xd8\xdd\xa9\xef\xa2" + - "\x61\xd6\x6a\xdf\xec\xd5\x91\xb9\x68\xbe\xb4\xfd\x37\x00\x00\xff\xff\x3c\x87\x8d\x59\x7a\x13\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x59\x93\xdb\x38\x0e\x7e\xef\x5f\x81\x28\x0f\x76\xef\x58\x92\xaf" + + "\x96\x9d\x6e\x4b\x5b\xb9\x26\xc9\xe6\xd8\xec\xcc\x64\x67\xb6\x52\xa9\x14\x25\x42\x12\xd3\x12\xa9\x90\x94\x1d\xa7" + + "\xe3\xff\xbe\x45\xca\x87\x7c\x65\x32\xbb\xfd\xd0\x96\x08\xe0\x03\x08\x80\x20\xa0\xd9\x3d\x2a\x12\xbd\xac\x10\x72" + + "\x5d\x16\xd1\xc5\xec\x9e\xeb\xbe\x67\x29\x14\x1a\x5e\x3c\x85\xc9\x87\x08\xec\xdf\xcc\x50\x21\x29\x88\x52\xa1\xc3" + + "\x85\xfb\x49\x41\xa1\x5d\x86\x0f\x9a\x9f\x69\xf3\x33\x71\x22\x98\xdd\x7b\x8f\x9c\xb2\xf4\x83\xeb\xee\xd0\xda\x50" + + "\x3f\x80\xf6\x1d\x98\xe9\x8f\xc0\x9c\x93\xcf\xf4\x1a\xc2\x2c\x44\x17\xc7\xf2\x4e\xc3\xbb\x27\x7c\x31\xcb\x91\xd0" + + "\xe8\xc2\x6a\x2c\x51\x13\x48\x72\x22\x15\xea\xd0\xa9\x75\xea\x4e\x9d\x36\x29\xd7\xba\x72\xf1\x73\xcd\xe6\xa1\xf3" + + "\x87\xfb\xee\xa1\xfb\x58\x94\x15\xd1\x2c\x2e\xd0\x81\x44\x70\x8d\x5c\x87\xce\x8b\xa7\x21\xd2\x0c\x37\x92\x9a\xe9" + + "\x02\x23\x2d\x09\x57\x29\x4a\x4f\xe5\xe0\xc2\x53\xa2\x96\x40\x38\x85\x94\x28\x0d\x29\x2b\x10\x54\x4e\x24\xe3\x19" + + "\xa4\x52\x94\xa0\x73\x84\x44\x94\x25\xe1\xd4\x2d\x18\x47\x6f\xe6\x37\x30\x2d\x63\x38\x29\x31\x74\x28\xaa\x44\xb2" + + "\x4a\x33\xc1\x5b\x26\xfc\x65\x7c\xe7\x18\x79\xce\x70\x51\x09\xa9\x5b\xb0\x0b\x46\x75\x1e\x52\x9c\xb3\x04\x5d\xfb" + + "\xd2\x03\xc6\x99\x66\xa4\x70\x55\x42\x0a\x0c\x07\x5e\x7f\x03\x75\xcf\x75\xe1\x6d\x41\x12\x84\x94\xcc\x59\x22\xb8" + + "\xc7\x12\x61\x8d\x22\x55\x55\xa0\xab\x45\x9d\xe4\xae\x25\x54\x3c\x03\xc6\xad\x55\x52\x08\x0d\x94\x49\x4c\xb4\x90" + + "\x4b\x30\x21\xb2\x68\x05\xe3\xb7\x20\xb1\x08\x1d\xa5\x97\x05\xaa\x1c\x51\x3b\x90\x4b\x4c\x43\xc7\x6f\x96\xfc\x92" + + "\x30\xee\x25\x4a\x39\x6d\x19\xcb\xd2\xf1\xfd\x54\x70\xad\xbc\x4c\x88\xac\x40\x52\x31\xe5\x25\xa2\xf4\x13\xa5\xfe" + + "\x9e\x92\x92\x15\xcb\xf0\x57\x51\xcb\x04\x7f\xfa\x95\x70\xf5\xd3\x5b\x29\xae\x07\xfd\x7e\x6f\xd8\xef\xf7\x46\xfd" + + "\x7e\xc7\x2a\xee\xec\x14\x77\xc0\x9c\xa9\xb0\xa3\xf1\x8b\x36\x18\x9d\xff\x45\xe1\x13\x29\x18\x6d\xf4\xbd\x16\x5c" + + "\xfc\xb0\x92\x26\xde\xa0\x64\x62\x76\x6e\x5f\x94\x3f\x47\x4e\x85\xf4\x4b\x41\x51\x72\xf6\x55\x7a\x26\xdb\x67\x6b" + + "\x72\x74\x31\xf3\x9b\x2c\xbf\xb8\x98\xc5\x82\x2e\x01\x18\x0d\x1d\x2a\x16\xbc\x10\x84\x3a\xd1\xc5\xc5\xf6\xd0\x6d" + + "\x24\xb6\xc7\x10\xe6\x44\x42\x46\x5e\xe2\x12\x42\x70\xee\xee\xbc\x67\x0f\x5f\xe2\x72\xb5\x72\x6e\x5a\x3c\x2c\x85" + + "\x6e\xc3\x73\x2f\x04\xc7\xb9\x84\xbb\x16\x11\xa0\x9b\xd6\x3c\x31\x29\xda\x65\x3d\x50\x3d\x10\x3d\xc8\x7a\x20\x7b" + + "\x40\x7a\x50\x1e\x32\x03\xb0\xf7\x9d\x67\xd6\x6d\x0f\x39\x29\x96\x9a\x25\xea\x9f\xf1\x27\x4c\x74\xe7\x03\x84\x20" + + "\x6f\x8e\xb8\xa5\x59\xb7\x3f\xdf\xbe\xc1\x56\xd5\x31\x2e\x40\xd7\x70\x79\x9f\xd7\xec\xde\x67\x23\xf0\xfe\xc3\xa5" + + "\x57\xd5\x2a\xef\x12\x99\xd5\x25\x72\xad\x2e\x0f\xe4\x56\xbd\x86\xbd\x80\x10\x06\xf0\x37\xe0\xb8\x80\x27\x44\x63" + + "\xf7\xf2\xd0\x16\x02\x21\x28\x2f\x91\x48\x34\x3e\x2d\xd0\xa0\x75\xc5\x65\xef\xc8\x8e\xd2\xf2\x65\xa8\xd7\x4c\xea" + + "\xd1\xf2\x37\x92\xbd\x21\x25\x76\xc5\xe5\xfb\xfe\x87\x23\x5c\x8f\xa8\x25\x4f\x8c\xfe\x63\x92\x92\x86\x90\x1d\x12" + + "\x4a\xaf\x22\x12\xb9\x7e\x23\x28\x7a\x8c\x2b\x94\xfa\x11\xa6\x42\x62\xd7\x7a\x7d\x8f\x7b\x75\xd9\x5d\x30\x4e\xc5" + + "\xa2\x07\x54\x24\xd6\x0b\x3d\xe8\x34\xb9\xd0\xe9\x41\xc7\xf7\x17\x8b\xc5\x3a\x97\x5d\xb2\x89\x8a\xcd\xe8\xdd\xdb" + + "\x27\x65\x58\x33\xd2\x39\x70\x4b\x46\xba\x9d\xc6\x25\x9d\x5e\x93\x49\x3d\xe8\xb4\xea\xe1\x29\x7e\x85\x9c\x1a\xb4" + + "\x8a\x64\x68\x0a\xd1\x3e\xcf\x6a\x97\xaf\xdb\x14\xdf\x2d\x51\x36\xb7\xf9\xcd\xc9\x9c\x65\xc4\x56\xc6\x68\x4f\x81" + + "\xe5\x58\x5f\x0c\x0b\x49\xaa\x0a\xe5\x01\x87\xe5\x22\x9b\xf2\x72\x82\x68\x19\xf2\x41\xbb\xac\xcf\xfc\x7c\x70\x02" + + "\xc5\x27\x27\x16\xeb\xed\xc5\x94\x33\x4a\x91\xbb\x5f\xd4\x39\x25\x05\x8b\xda\x96\xe4\xa2\xc4\x93\x98\x8d\xb2\x82" + + "\xfd\x08\xcc\x7d\x45\xca\xaa\x40\xe5\x44\xcd\x03\xd4\x0a\x21\x21\x0a\xd5\xff\x0f\x6d\x2e\x0b\x92\x68\x27\x5a\x3f" + + "\x40\xfd\x57\x41\x67\x7e\x5d\x1c\x04\xcc\xa7\x6c\x1e\x5d\x1c\xbc\xae\xcb\x21\xda\xe3\x6e\x23\x6e\x9c\xd3\xf2\xe3" + + "\xe9\x38\xef\x23\xc7\xd2\x3f\xd0\x95\x0f\x37\x32\x26\xf9\x5c\x7b\xef\x3a\xd1\xdd\x9d\xf7\x33\x2b\xd0\x5c\x8d\xab" + + "\xd5\xcc\xcf\x87\x87\x52\xe3\xc8\x94\xeb\x6b\x98\xc5\x86\xf7\x71\x73\x65\xfe\xb6\xac\x2c\x7b\x1c\xcd\xfc\x7c\x7c" + + "\x2c\xa2\xd8\xd7\x43\x91\x57\xc8\x33\x9d\xc3\x37\x48\x85\x2c\x89\x06\xe7\x7e\xef\xfe\xfd\xfb\x9e\xd3\xc0\x40\xbc" + + "\xd4\x26\x4a\x06\x6c\x1f\x6d\x13\x81\xbb\x3b\xef\x9d\x2c\x56\x2b\x67\xb3\x8b\x58\x73\x37\xd1\x04\x62\xcd\x9d\x08" + + "\x36\x45\x7f\xe6\xb3\xc8\x26\x67\xe3\x82\x13\x7e\x68\x39\xef\xb3\x4c\x04\xc5\x73\x19\xca\xca\xac\xb9\x8d\x28\xd1" + + "\xe4\x9a\x95\x24\x43\xbf\xe2\xd9\x4d\x4c\x14\x06\xe3\xde\xdd\x9d\xf7\xaf\x5f\x1e\x0b\x8a\xab\x95\x73\xa8\x63\x1d" + + "\xc8\xb3\x8a\xa5\x58\x00\xe1\xac\x24\x1a\x4d\x2f\x43\xf1\x05\x7f\x22\x16\x87\xe7\x19\xda\xa7\xde\xf4\x37\xae\x46" + + "\x59\x32\x4e\x8a\xad\x13\x20\x16\x5f\x20\x11\x85\x5b\x52\x77\x0a\x9b\x27\x91\xa6\x0a\xb5\x3b\xb4\xef\x5f\x94\x3b" + + "\x18\x9e\xdb\x63\xcb\xa6\x0d\xb6\xab\x45\x75\x98\x4e\x07\x1b\x3b\x0b\x65\x0c\x3d\xb2\x71\xb3\x00\x95\xb4\x35\xcf" + + "\xb5\xae\x3c\x63\xd1\xbe\xe7\x77\x41\x07\x52\xe8\xd0\x39\xb7\x8d\xd3\x66\x9d\x58\x3e\xb5\x74\x32\x45\xd6\x4d\xc9" + + "\xee\xc9\x5f\x1f\xc8\xcd\xf9\x4c\x85\xd0\x28\xff\xec\x50\x1e\x79\xc8\xf6\x41\xe7\x37\xb2\xc9\xf6\x98\xe9\x44\x30" + + "\x7e\x3d\x08\xc6\xcb\xf8\x97\xd7\xaf\xe2\x6c\x40\xf3\xfc\xf7\xdf\xd9\xbb\xdb\x3f\x34\x7b\x23\x27\x9f\xde\xe5\xaf" + + "\x5f\xd2\x7f\x7c\x7e\xee\x40\x41\x62\xd3\x3f\x3e\x6a\x44\x7e\x7a\x22\x78\x73\x39\x6c\x74\x2d\x84\xa4\xae\x31\xe9" + + "\x1a\x62\x89\xe4\xd6\x35\x0b\x37\x7f\xe6\xff\x58\x48\x8a\x32\x74\xfa\x4e\x13\x0a\xf0\x6d\xd8\x94\xbf\x36\xcd\x34" + + "\xb7\x5b\x15\x25\x91\x19\xe3\xd7\xd0\x07\x52\x6b\x71\x73\x0e\xfc\xf4\xa5\xd1\xaa\x7a\xe7\x63\xf2\x9d\x68\x6d\xb3" + + "\x65\x63\xe1\x2b\x91\x09\x57\x48\xc2\x33\x6c\xac\xb4\xb9\xf3\xb3\xa8\x39\x45\x6a\x1a\xf2\xe7\xa2\x28\x08\xa7\x87" + + "\xf1\xa9\xa2\xd7\x84\x22\x2c\x98\xce\x61\xc6\x36\xc1\x34\x9d\xbc\x9b\x23\x91\xda\x74\x9e\xcc\x94\xaa\x5d\x9c\xcc" + + "\xe4\x74\xed\xfb\x71\x21\x32\x8f\xd6\x3a\xc9\x4d\x41\x91\xca\x63\xc2\x77\xc0\x96\xd8\xd0\x79\x62\xd6\xe1\xb1\x25" + + "\x38\x51\xfb\xed\xc8\x1f\x33\xbf\x3a\x73\x1d\xf8\x9b\x7c\x5b\xbf\xb7\x0d\x50\xd7\xbe\x9f\x31\x9d\xd7\xb1\xed\x5c" + + "\x5a\x76\xf8\xad\x7b\xdc\x77\xa2\xc6\x55\x4d\xc8\x2a\xa1\x98\x49\x93\x6b\x20\xb1\x12\x45\xad\xf1\x06\xb4\xa8\xae" + + "\xa1\x7f\x03\x92\x65\xb9\xb6\x4f\x4d\x16\x98\xc7\x75\x1a\x6c\xf4\x25\xa4\x14\x5e\xa3\xb4\x56\x28\xd7\xa3\x94\xd5" + + "\x3f\x9a\x62\x3a\x1d\xa4\x53\x92\x90\x60\x1c\xc7\x0f\x48\x30\x1e\x8f\xa7\xb4\x4f\x27\xfd\x74\x30\xea\x4f\x31\xbd" + + "\x1a\x8d\x07\x24\xf6\x83\xe9\x64\x3c\x19\x4f\xfa\x93\xd1\x88\x0c\xd3\x61\x3a\x19\x8d\x46\x43\x0c\x06\x01\x0d\x06" + + "\x13\x12\xa4\x01\x06\x83\xc9\x64\x62\xd6\x46\x41\x1a\xd0\x61\x1a\x4c\x82\x07\x93\x71\x30\x9d\x5c\x05\xc3\x61\x3a" + + "\x19\x06\x0f\x82\x61\x30\x34\x9c\x93\xd1\x30\x0d\x82\xc0\xac\xc5\x01\x0d\xae\xae\x1a\xea\xc4\xe8\xb8\x4a\x83\x71" + + "\x30\xb0\x94\x61\x90\x4c\xae\x0c\x75\x34\x18\x0d\x47\x83\x51\x60\xfe\x0f\x71\xd2\x0f\x30\x98\x6c\x13\x45\xde\x42" + + "\x89\x20\x38\x3c\x63\xfa\x79\x1d\x3b\x60\x6e\x00\x37\x21\x5c\x70\x96\x98\x99\xb0\xed\x09\x35\xf2\x48\x49\xbe\x0a" + + "\x4e\x16\x4d\xe7\xd8\x78\xc5\x97\x2c\x8e\x05\x57\x7e\x2a\xe4\x6d\x89\x1f\xad\x4f\x3f\x52\x22\x6f\xe3\xa2\xc6\x8f" + + "\x83\xe1\x20\x18\x0e\x6c\x7a\x46\x36\x0d\xce\x8f\x2a\xdd\x33\xad\xbf\x19\x60\x8c\xef\xff\x2d\x58\x82\xbb\x39\xe6" + + "\x5d\x6b\xe9\xc4\x38\xb3\x27\x71\x72\xaa\xb1\xb8\x73\x08\xb7\x2d\xf3\x41\xe3\xbf\xe9\x9f\x0f\xda\xdb\x7a\xee\xd9" + + "\x2f\x32\x21\x34\xa3\xdd\x27\x32\x27\x6b\xce\x23\xc6\x4d\xd7\xaf\x65\x8d\x47\xc4\xa6\xef\x37\xbd\x39\xa3\x19\x6a" + + "\xcf\x58\x3c\x37\x16\x5b\xef\x1e\xed\xd0\xf4\xe7\x37\x47\x1b\x50\x6d\xfb\x4f\x0e\x24\xdb\x6d\x1c\xcd\x25\xea\xec" + + "\x84\x51\xcf\x7b\xb0\x37\x46\xed\x3a\xf6\xd5\x65\xf7\xf2\xbb\xed\xfb\xe1\x27\xaa\x8b\x76\xe5\xd9\x36\x35\x52\x2c" + + "\x14\xe6\xa4\xaa\x96\x4e\xf4\x1f\x51\x03\x91\xa6\x8b\x65\x3c\x03\xc2\x61\xa6\xb4\x14\x3c\x8b\x44\xad\xa9\x69\x1d" + + "\x66\xfe\x7a\x01\x1a\x39\xe9\xc1\xdb\x02\x89\xc2\xe3\x02\xb5\xc3\xb5\x5e\x74\xa2\xba\xca\xa4\xa9\x76\x4b\x51\xcb" + + "\x8d\xb8\xed\x9b\xb4\x00\x56\x56\x52\xcc\xd7\x34\xfc\x52\xa1\x64\xc8\x13\xf4\xf6\xcb\xd3\xde\xe7\xa6\xf5\xe2\xfa" + + "\xf7\x28\x9b\x0f\xc6\x7a\xfb\x45\x63\x7f\x94\xdf\x79\xc3\x4c\xf3\xbe\x19\xe7\x23\xf3\xd0\x7c\xe0\xfb\x6f\x00\x00" + + "\x00\xff\xff\xf3\xb2\x05\x06\xf1\x13\x00\x00") func bindataDistDownloadimagehtmlBytes() ([]byte, error) { return bindataRead( @@ -608,10 +615,10 @@ func bindataDistDownloadimagehtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.image.html", - size: 4986, + size: 5105, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -620,76 +627,78 @@ func bindataDistDownloadimagehtml() (*asset, error) { } var _bindataDistDownloadmarkdownhtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x93\x9b\x38\x12\xff\xee\xbf\xa2\x43\x3e\xd8\x73\x6b\xc0\xaf" + - "\x81\xc9\x0c\x70\xb5\x79\x6c\x92\xcb\xe3\x52\xb7\x9b\xdb\xbd\x4a\xa5\x52\x02\x35\xa0\x0c\x48\x44\x12\x76\x9c\xc9" + - "\xfc\xef\x57\x12\xb6\xc7\x0f\x66\x2b\x7b\x37\x1f\xc6\xa8\xdf\x74\xb7\x5a\x3f\x11\x3d\xa0\x22\xd3\xeb\x06\xa1\xd4" + - "\x75\x95\x0c\xa2\x07\xae\xfb\x81\xe5\x50\x69\x78\xf9\x0c\xc2\x8f\x09\xd8\xbf\xc8\x70\x21\xab\x88\x52\xb1\xc3\x85" + - "\xfb\x59\x41\xa5\x5d\x86\x8f\xba\x9f\x8b\xee\x27\x74\x12\x88\x1e\x7c\x40\x4e\x59\xfe\xd1\x75\xef\xac\xed\x9b\xfa" + - "\x01\x6b\x7f\x62\xe6\xe2\x47\xcc\xdc\xa7\x5f\xe8\x8d\x09\x43\x48\x06\xa7\xfa\x4e\x27\x7b\xa0\x3c\x88\x4a\x24\x34" + - "\x19\x58\x8f\x35\x6a\x02\x59\x49\xa4\x42\x1d\x3b\xad\xce\xdd\x0b\x67\x9f\x55\x6a\xdd\xb8\xf8\xa5\x65\xcb\xd8\xf9" + - "\xc3\x7d\xff\xb3\xfb\x44\xd4\x0d\xd1\x2c\xad\xd0\x81\x4c\x70\x8d\x5c\xc7\xce\xcb\x67\x31\xd2\x02\xb7\x9a\x9a\xe9" + - "\x0a\x13\x2d\x09\x57\x39\x4a\x4f\x95\xe0\xc2\x33\xa2\xd6\x40\x38\x85\x9c\x28\x0d\x39\xab\x10\x54\x49\x24\xe3\x05" + - "\xe4\x52\xd4\xa0\x4b\x84\x4c\xd4\x35\xe1\xd4\xad\x18\x47\x2f\xf2\x3b\x33\x7b\xc1\x70\x52\x63\xec\x50\x54\x99\x64" + - "\x8d\x66\x82\xef\x85\xf0\x97\xed\x3b\xa7\x96\x97\x0c\x57\x8d\x90\x7a\xcf\xec\x8a\x51\x5d\xc6\x14\x97\x2c\x43\xd7" + - "\x2e\xc6\xc0\x38\xd3\x8c\x54\xae\xca\x48\x85\xf1\xd4\x9b\x6c\x4d\x3d\x70\x5d\x78\x57\x91\x0c\x21\x27\x4b\x96\x09" + - "\xee\xb1\x4c\xd8\xa0\x48\xd3\x54\xe8\x6a\xd1\x66\xa5\x6b\x19\x0d\x2f\x80\x71\x1b\x95\x14\x42\x03\x65\x12\x33\x2d" + - "\xe4\x1a\x4c\x89\xac\xb5\x8a\xf1\x6b\x90\x58\xc5\x8e\xd2\xeb\x0a\x55\x89\xa8\x1d\x28\x25\xe6\xb1\xe3\x77\x24\xbf" + - "\x26\x8c\x7b\x99\x52\xce\xbe\x8e\x15\x19\xfa\x7e\x2e\xb8\x56\x5e\x21\x44\x51\x21\x69\x98\xf2\x32\x51\xfb\x99\x52" + - "\x7f\xcf\x49\xcd\xaa\x75\xfc\xab\x68\x65\x86\x3f\xfd\x4a\xb8\xfa\xe9\x9d\x14\x97\xd3\xc9\x64\x3c\x9b\x4c\xc6\xf3" + - "\xc9\x64\x68\x1d\x0f\xef\x1c\x0f\xc1\xec\xa9\x78\xa8\xf1\xab\x36\x36\x86\xff\x8b\xc3\xa7\x52\x30\xda\xf9\x7b\x23" + - "\xb8\xf8\x61\x27\x5d\xbd\x41\xc9\xcc\xbc\xb9\x5d\x28\x7f\x89\x9c\x0a\xe9\xd7\x82\xa2\xe4\xec\x9b\xf4\x4c\xb7\x47" + - "\x1b\x76\x32\x88\xfc\xae\xcb\x07\x83\x28\x15\x74\x0d\xc0\x68\xec\x50\xb1\xe2\x95\x20\xd4\x49\x06\x83\xdd\xa6\xdb" + - "\x6a\xec\xb6\x21\x2c\x89\x84\x82\xbc\xc2\x35\xc4\xe0\xdc\xdc\x78\xcf\x7f\x7e\x85\xeb\xdb\x5b\xe7\x6a\x4f\x86\xe5" + - "\x30\xea\x64\x1e\xc4\xe0\x38\x67\x70\xb3\xc7\x04\x18\xe5\x2d\xcf\x4c\x8b\x8e\xd8\x18\xd4\x18\xc4\x18\x8a\x31\xc8" + - "\x31\x90\x31\xd4\xc7\xc2\x00\xec\xc3\xf0\xb9\x4d\xdb\xcf\x9c\x54\x6b\xcd\x32\xf5\xcf\xf4\x33\x66\x7a\xf8\x11\x62" + - "\x90\x57\x27\xd2\xd2\xd0\xed\xcf\xf7\xef\xb0\x73\x75\x6a\x17\x60\x64\xa4\xbc\x2f\x1b\x71\xef\x8b\x51\xf8\xf0\xf1" + - "\xcc\x6b\x5a\x55\x8e\x88\x2c\xda\x1a\xb9\x56\x67\x47\x7a\xb7\xe3\x4e\xbc\x82\x18\xa6\xf0\x37\xe0\xb8\x82\xa7\x44" + - "\xe3\xe8\xec\x38\x16\x02\x31\x28\x2f\x93\x48\x34\x3e\xab\xd0\x58\x1b\x89\xb3\xf1\x49\x1c\xb5\x95\x2b\x50\x6f\x84" + - "\xd4\xe3\xf5\x6f\xa4\x78\x4b\x6a\x1c\x89\xb3\x0f\x93\x8f\x27\x76\x3d\xa2\xd6\x3c\x33\xfe\x4f\x59\x4a\x1a\x46\x71" + - "\xcc\xa8\xbd\x86\x48\xe4\xfa\xad\xa0\xe8\x31\xae\x50\xea\xc7\x98\x0b\x89\x23\x9b\xf5\x03\xe9\xdb\xb3\xd1\x8a\x71" + - "\x2a\x56\x63\xa0\x22\xb3\x59\x18\xc3\xb0\xeb\x85\xe1\x18\x86\xbe\xbf\x5a\xad\x36\xbd\xec\x92\x6d\x55\x6c\x47\xdf" + - "\xad\x3e\x2b\x23\x5a\x90\xe1\x51\x5a\x0a\x32\x1a\x76\x29\x19\x8e\xbb\x4e\x1a\xc3\x70\x6f\x1e\xf6\xc9\x2b\xe4\xd4" + - "\x58\x6b\x48\x81\x66\x10\x1d\xca\xdc\xde\xf5\xeb\xae\xc5\xef\x48\x94\x2d\x6d\x7f\x73\xb2\x64\x05\xb1\x93\x31\x39" + - "\x70\x60\x25\x36\x07\xc3\x4a\x92\xa6\x41\x79\x24\x61\xa5\xc8\x76\xbc\xf4\x30\xad\x40\x39\xdd\x1f\xeb\x91\x5f\x4e" + - "\x7b\xac\xf8\xa4\x87\xd8\xee\x0e\xa6\x92\x51\x8a\xdc\xfd\xaa\xee\x73\x52\xb1\x64\x3f\x92\x52\xd4\xd8\x6b\xb3\x73" + - "\x56\xb1\x1f\x31\xf3\x50\x91\xba\xa9\x50\x39\x49\xf7\x00\xad\x42\xc8\x88\x42\xf5\xff\x9b\x36\x87\x05\xc9\xb4\x93" + - "\x6c\x1e\xa0\xfd\xab\x46\x23\xbf\xad\x8e\x0a\xe6\x53\xb6\x4c\x06\x47\xcb\x41\xa4\xd0\x6e\x75\x5b\x6d\x93\x98\xed" + - "\xe0\xef\xad\xef\xa9\x9f\x54\xfa\x3d\xde\xcb\xd9\x56\xd7\x34\x9f\x6b\xcf\x5d\x27\xb9\xb9\xf1\x7e\x61\x15\x9a\xa3" + - "\xf1\xf6\x36\xf2\xcb\x59\x9f\xe6\x22\x31\x23\xfb\x12\xa2\xd4\xc8\x3f\xe9\x8e\xcd\xdf\xd6\x8d\x55\x49\x93\xc8\x2f" + - "\x17\xfd\x6a\x8a\x7d\x3b\x56\x7b\x8d\xbc\xd0\x25\x7c\x87\x5c\xc8\x9a\x68\x70\x1e\x8e\x1f\x3e\x7c\xe8\x39\x9d\x29" + - "\x48\xd7\xda\x54\xcb\x18\xbc\xbf\x73\x6f\x6e\xbc\xf7\xb2\xba\xbd\x75\xb6\x6f\x94\x6a\xee\x66\x9a\x40\xaa\xb9\x93" + - "\xc0\xf6\x00\x88\x7c\x96\xd8\x46\xed\x52\xd2\xe5\xe5\x68\x43\x6d\x0c\x48\xb1\x02\xc2\x59\x4d\x34\x1a\x70\x41\xf1" + - "\x25\x7f\x2a\x56\xbd\x1b\xcc\x14\xc5\x80\x0d\x57\xa3\xac\x19\x27\xd5\x2e\x0a\x48\xc5\x57\xc8\x44\xe5\xd6\xd4\xbd" + - "\x80\xed\x93\xc8\x73\x85\xda\x9d\xd9\xf5\x57\xe5\x4e\x67\x7d\x9b\x72\x2f\x96\xad\x5d\x57\x8b\xa6\x4f\xf4\xb0\x69" + - "\x4e\x62\x3b\x09\x6b\x47\xb8\xa7\x59\xb7\x8a\x35\x75\x1b\x69\xa7\x92\xb3\x57\x2f\x53\x97\x7e\x87\xa7\xe4\xfe\x7e" + - "\x86\x5d\x4f\x0e\x22\x7f\xd3\xda\xdb\x3a\x44\xb9\x10\x1a\x65\xd2\x5b\x94\xfe\x19\x66\x25\x2c\x9c\x88\x9d\xfb\x5e" + - "\x69\xdb\x28\x29\xd3\x99\x60\xfc\x72\x1a\x2c\xd6\xe9\xbf\xde\xbc\x4e\x8b\x29\x2d\xcb\xdf\x7f\x67\xef\xaf\xff\xd0" + - "\xec\xad\x0c\x3f\xbf\x2f\xdf\xbc\xa2\xff\xf8\xf2\xc2\x81\x8a\xa4\x06\x86\x3d\xee\x54\x7e\x7a\x2a\x78\x37\x63\xb7" + - "\xbe\x56\x42\x52\xd7\x84\x74\x09\xa9\x44\x72\xed\x1a\xc2\xd5\x3d\x11\xd8\x28\x58\x5d\x40\x2a\x24\x45\x19\x3b\x13" + - "\xa7\x43\x36\xe0\xb3\x9a\x14\xa8\xfc\x4d\x68\x06\x23\xee\x5c\xd4\x44\x16\x8c\x5f\xc2\x04\x48\xab\xc5\xd5\x7d\xc6" + - "\xfb\x67\xef\x66\x78\x1c\xd0\x7a\x27\x41\x3f\xc7\x46\xdb\x81\xaf\x4d\x84\xaf\x45\x21\x5c\x21\x09\x2f\xb0\x8b\x92" + - "\x54\x3a\x76\x7e\x11\x2d\xa7\x48\x0d\xae\x7d\x21\xaa\x8a\x70\x7a\x5c\x9f\x26\x79\x43\x28\xc2\x8a\xe9\x12\x22\xb6" + - "\x2d\xa6\x01\xc4\x6e\x89\x44\x6a\x03\xe0\x98\xd9\xe9\x77\x75\x32\x17\x90\x4b\xdf\x4f\x2b\x51\x78\xb4\xd5\x59\x99" + - "\x19\xc0\xa7\x3c\x26\x7c\x07\xec\xa4\x8a\x9d\xa7\x86\x0e\x4f\x2c\xc3\x49\xf6\x57\x27\xf9\x88\xfc\xe6\x74\xaa\x76" + - "\xcf\xdb\x7e\xdb\xac\xf7\x03\x50\x97\xbe\x5f\x30\x5d\xb6\xa9\x05\x00\x7b\x71\xf8\x7b\xc7\xa1\xef\x24\x5d\xaa\xba" + - "\x92\x35\x42\x31\xd3\x26\x97\x40\x52\x25\xaa\x56\xe3\x15\x68\xd1\x5c\xc2\xe4\x0a\x24\x2b\x4a\x6d\x9f\xba\x2e\x30" + - "\x8f\x9b\x36\xd8\xfa\xcb\x48\x2d\xbc\xce\x69\xab\x50\x6e\x6e\x24\xd6\xff\xfc\x02\xf3\x8b\x69\x7e\x41\x32\x12\x2c" + - "\xd2\xf4\x11\x09\x16\x8b\xc5\x05\x9d\xd0\x70\x92\x4f\xe7\x93\x0b\xcc\xcf\xe7\x8b\x29\x49\xfd\xe0\x22\x5c\x84\x8b" + - "\x70\x12\xce\xe7\x64\x96\xcf\xf2\x70\x3e\x9f\xcf\x30\x98\x06\x34\x98\x86\x24\xc8\x03\x0c\xa6\x61\x18\x1a\xda\x3c" + - "\xc8\x03\x3a\xcb\x83\x30\x78\x14\x2e\x82\x8b\xf0\x3c\x98\xcd\xf2\x70\x16\x3c\x0a\x66\xc1\xcc\x48\x86\xf3\x59\x1e" + - "\x04\x81\xa1\xa5\x01\x0d\xce\xcf\x3b\x6e\x68\x7c\x9c\xe7\xc1\x22\x98\x5a\xce\x2c\xc8\xc2\x73\xc3\x9d\x4f\xe7\xb3" + - "\xf9\x74\x1e\x98\xff\x33\x0c\x27\x01\x06\xe1\xae\x51\xe4\x35\xd4\x08\x82\xc3\x73\xa6\x5f\xb4\xa9\x03\x94\x68\xe2" + - "\x66\x84\x0b\xce\x32\x73\xb5\xda\xcf\x84\x9a\x7b\xa4\x26\xdf\x04\x27\xab\x0e\x80\x75\x59\xf1\x25\x4b\x53\xc1\x95" + - "\x9f\x0b\x79\x5d\xe3\x27\x9b\xd3\x4f\x94\xc8\xeb\xb4\x6a\xf1\xd3\x74\x36\x0d\x66\x53\xdb\x9e\x89\x6d\x83\xfb\x11" + - "\xff\xe8\x1e\x04\x6d\xee\x01\x26\xf7\xff\x16\x2c\xc3\xbb\xeb\xc0\xfb\x3d\x52\xcf\xad\xe0\x40\xa3\xf7\x72\x60\xed" + - "\x2e\x21\xde\x21\xcf\x23\xfc\xbc\x85\xa1\x47\x28\xb1\x5d\x7a\xf6\xc3\x46\x0c\xdd\x0d\xe9\x33\x59\x92\x8d\xe4\x89" + - "\xe0\x16\x3c\x6b\xd9\xe2\x09\xb3\x83\xcf\x06\xe2\x32\x5a\xa0\xf6\x4c\xc4\x4b\x13\xb1\xcd\xee\xc9\x1b\x1a\x98\x7b" + - "\x75\xf2\x02\x6a\x3f\xfe\x5e\x5c\xbf\x7b\x8d\x13\x78\xaf\xee\x05\xea\xed\x72\x0c\x07\xb7\x91\x3b\xe0\x7b\x7b\x36" + - "\x3a\xfb\x53\x14\x7c\xfc\xa5\x67\xb0\x3f\x79\x76\x78\x40\x8a\x95\xc2\x92\x34\xcd\xda\x49\xfe\x23\x5a\x20\xd2\x80" + - "\x41\xc6\x0b\x20\x1c\x22\xa5\xa5\xe0\x45\x22\x5a\x4d\xcd\x81\x1f\xf9\x1b\x02\x74\x7a\xd2\x83\x77\x15\x12\x85\xa7" + - "\x03\xea\xce\xae\xcd\xa2\x93\xb4\x4d\x21\xcd\xb4\x5b\x8b\x56\x6e\xd5\x2d\xe4\xd0\x02\x58\xdd\x48\xb1\xdc\xf0\xf0" + - "\x6b\x83\x92\x21\xcf\xd0\x3b\x1c\x4f\x07\x5f\x6d\x36\xc4\xcd\xef\x49\x37\x1f\xdd\x8e\xed\x87\x81\xc3\x1b\xf1\x5d" + - "\x36\xcc\x69\x6b\x2e\xc5\xf6\xd8\xed\x3e\x93\xfd\x37\x00\x00\xff\xff\xb4\x59\xe2\xb0\x37\x13\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x93\x9b\x38\x12\xff\xee\xbf\xa2\x43\x3e\xd8\x73\x31\xe0\xd7" + + "\xe0\xc9\x8c\xe1\x2a\xaf\x4d\x72\x79\x5c\x6e\x77\x73\xbb\x57\xa9\x54\x4a\xa0\x06\x94\x01\x89\x48\xc2\x8e\x33\xf1" + + "\xff\x7e\x25\x61\x7b\x18\x1b\xef\x65\x6f\xe7\xc3\x18\xf5\x9b\xd6\x4f\xad\x6e\x16\xf7\xa8\x48\xf4\xba\x42\xc8\x75" + + "\x59\x44\xbd\xc5\x3d\xd7\xfd\xc0\x52\x28\x34\xbc\x7c\x06\xf3\x8f\x11\xd8\xbf\x85\xe1\x42\x52\x10\xa5\x42\x87\x0b" + + "\xf7\xb3\x82\x42\xbb\x0c\x1f\x36\x3f\x17\xcd\xcf\xdc\x89\x60\x71\xef\x03\x72\xca\xd2\x8f\xae\x7b\x6b\xad\x6d\xea" + + "\x07\xac\xfd\x81\x99\x8b\x1f\x31\x73\x4a\x3f\xd3\x5b\x13\x86\x10\xf5\x8e\xf5\x9d\x46\xf6\x8e\x72\x6f\x91\x23\xa1" + + "\x51\xcf\x7a\x2c\x51\x13\x48\x72\x22\x15\xea\xd0\xa9\x75\xea\x5e\x38\x6d\x56\xae\x75\xe5\xe2\x97\x9a\x2d\x43\xe7" + + "\x77\xf7\xfd\x23\xf7\x89\x28\x2b\xa2\x59\x5c\xa0\x03\x89\xe0\x1a\xb9\x0e\x9d\x97\xcf\x42\xa4\x19\xee\x34\x35\xd3" + + "\x05\x46\x5a\x12\xae\x52\x94\x9e\xca\xc1\x85\x67\x44\xad\x81\x70\x0a\x29\x51\x1a\x52\x56\x20\xa8\x9c\x48\xc6\x33" + + "\x48\xa5\x28\x41\xe7\x08\x89\x28\x4b\xc2\xa9\x5b\x30\x8e\xde\xc2\x6f\xcc\xb4\x82\xe1\xa4\xc4\xd0\xa1\xa8\x12\xc9" + + "\x2a\xcd\x04\x6f\x85\xf0\xa7\xed\x3b\xc7\x96\x97\x0c\x57\x95\x90\xba\x65\x76\xc5\xa8\xce\x43\x8a\x4b\x96\xa0\x6b" + + "\x17\x43\x60\x9c\x69\x46\x0a\x57\x25\xa4\xc0\x70\xec\x8d\x76\xa6\xee\xb9\x2e\xbc\x2b\x48\x82\x90\x92\x25\x4b\x04" + + "\xf7\x58\x22\x6c\x50\xa4\xaa\x0a\x74\xb5\xa8\x93\xdc\xb5\x8c\x8a\x67\xc0\xb8\x8d\x4a\x0a\xa1\x81\x32\x89\x89\x16" + + "\x72\x0d\x66\x8b\xac\xb5\x82\xf1\x6b\x90\x58\x84\x8e\xd2\xeb\x02\x55\x8e\xa8\x1d\xc8\x25\xa6\xa1\xe3\x37\x24\xbf" + + "\x24\x8c\x7b\x89\x52\x4e\x5b\xc7\x8a\xf4\x7d\x3f\x15\x5c\x2b\x2f\x13\x22\x2b\x90\x54\x4c\x79\x89\x28\xfd\x44\xa9" + + "\xbf\xa7\xa4\x64\xc5\x3a\xfc\x45\xd4\x32\xc1\x07\xbf\x10\xae\x1e\xbc\x93\xe2\x72\x3c\x1a\x0d\x27\xa3\xd1\x70\x3a" + + "\x1a\xf5\xad\xe3\xfe\xad\xe3\x3e\x98\x33\x15\xf6\x35\x7e\xd5\xc6\x46\xff\xff\x71\xf8\x54\x0a\x46\x1b\x7f\x6f\x04" + + "\x17\x3f\xec\xa4\xd9\x6f\x50\x32\x31\x6f\x6e\x17\xca\x5f\x22\xa7\x42\xfa\xa5\xa0\x28\x39\xfb\x26\x3d\x83\xf6\xc5" + + "\x96\x1d\xf5\x16\x7e\x83\xf2\x5e\x6f\x11\x0b\xba\x06\x60\x34\x74\xa8\x58\xf1\x42\x10\xea\x44\xbd\xde\xfe\xd0\xed" + + "\x34\xf6\xc7\x10\x96\x44\x42\x46\x5e\xe1\x1a\x42\x70\x6e\x6e\xbc\xe7\x8f\x5e\xe1\x7a\xb3\x71\xae\x5a\x32\x2c\x85" + + "\x41\x23\x73\x2f\x04\xc7\x39\x83\x9b\x16\x13\x60\x90\xd6\x3c\x31\x10\x1d\xb0\x21\xa8\x21\x88\x21\x64\x43\x90\x43" + + "\x20\x43\x28\x0f\x85\x01\xd8\x87\xfe\x73\x9b\xb6\x47\x9c\x14\x6b\xcd\x12\xf5\xcf\xf8\x33\x26\xba\xff\x11\x42\x90" + + "\x57\x47\xd2\xd2\xd0\xed\xcf\xf7\xef\xb0\x77\x75\x6c\x17\x60\x60\xa4\xbc\x2f\x5b\x71\xef\x8b\x51\xf8\xf0\xf1\xcc" + + "\xab\x6a\x95\x0f\x88\xcc\xea\x12\xb9\x56\x67\x07\x7a\x9b\x61\x23\x5e\x40\x08\x63\xf8\x1b\x70\x5c\xc1\x53\xa2\x71" + + "\x70\x76\x18\x0b\x81\x10\x94\x97\x48\x24\x1a\x9f\x15\x68\xac\x0d\xc4\xd9\xf0\x28\x8e\xd2\xca\x65\xa8\xb7\x42\xea" + + "\xf1\xfa\x57\x92\xbd\x25\x25\x0e\xc4\xd9\x87\xd1\xc7\x23\xbb\x1e\x51\x6b\x9e\x18\xff\xc7\x2c\x25\x0d\x23\x3b\x64" + + "\x94\x5e\x45\x24\x72\xfd\x56\x50\xf4\x18\x57\x28\xf5\x63\x4c\x85\xc4\x81\xcd\xfa\x1d\xe9\xcd\xd9\x60\xc5\x38\x15" + + "\xab\x21\x50\x91\xd8\x2c\x0c\xa1\xdf\x60\xa1\x3f\x84\xbe\xef\xaf\x56\xab\x2d\x96\x5d\xb2\xdb\x15\x8b\xe8\xdb\xd5" + + "\x67\x65\x44\x33\xd2\x3f\x48\x4b\x46\x06\xfd\x26\x25\xfd\x61\x83\xa4\x21\xf4\x5b\xf5\xb0\x4b\x5e\x21\xa7\xc6\x5a" + + "\x45\x32\x34\x85\xe8\xae\xcc\xe6\x16\xaf\x7b\x88\xdf\x92\x28\x5b\x5a\x7c\x73\xb2\x64\x19\xb1\x95\x31\xba\xe3\xc0" + + "\x4a\x6c\x2f\x86\x95\x24\x55\x85\xf2\x40\xc2\x4a\x91\x5d\x79\xe9\x60\x5a\x81\x7c\xdc\x2e\xeb\x0b\x3f\x1f\x77\x58" + + "\xf1\x49\x07\xb1\xde\x5f\x4c\x39\xa3\x14\xb9\xfb\x55\x9d\x72\x52\xb0\xa8\x1d\x49\x2e\x4a\xec\xb4\xd9\x38\x2b\xd8" + + "\x8f\x98\xb9\xaf\x48\x59\x15\xa8\x9c\xa8\x79\x80\x5a\x21\x24\x44\xa1\xfa\xeb\xa6\xcd\x65\x41\x12\xed\x44\xdb\x07" + + "\xa8\xff\xac\xd1\x85\x5f\x17\x07\x1b\xe6\x53\xb6\x8c\x7a\x07\xcb\xde\x42\xa1\x3d\xea\x76\xb7\x4d\x62\x76\x85\xbf" + + "\x73\x7f\x8f\xfd\xc4\xd2\xef\xf0\x9e\x4f\x76\xba\x06\x7c\xae\xbd\x77\x9d\xe8\xe6\xc6\xfb\x89\x15\x68\xae\xc6\xcd" + + "\x66\xe1\xe7\x93\x2e\xcd\x59\x64\x4a\xf6\x25\x2c\x62\x23\xff\xa4\xb9\x36\x7f\x5d\x57\x56\x25\x8e\x16\x7e\x3e\xeb" + + "\x56\x53\xec\xdb\xa1\xda\x6b\xe4\x99\xce\xe1\x3b\xa4\x42\x96\x44\x83\x73\x7f\x78\xff\xfe\x7d\xcf\x69\x4c\x41\xbc" + + "\xd6\x66\xb7\x8c\xc1\xd3\xc8\xbd\xb9\xf1\xde\xcb\x62\xb3\x71\x76\x6f\x14\x6b\xee\x26\x9a\x40\xac\xb9\x13\xc1\xee" + + "\x02\x58\xf8\x2c\xb2\x40\x6d\x52\x72\x22\x2f\xad\xa4\x7e\x91\x89\xa0\x78\x02\xb1\x56\x98\x95\x59\x73\x43\x51\xa2" + + "\xc9\x25\x2b\x49\x86\x7e\xc5\xb3\xab\x98\x28\x0c\x66\xc3\x9b\x1b\xef\x5f\x3f\x3f\x11\x14\x37\x1b\xa7\xcb\xd7\x76" + + "\x83\x7b\x5d\xce\xa5\x58\x01\xe1\xac\x24\x1a\x4d\x7f\x43\xf1\x25\x7f\x2a\x56\x9d\x67\xdc\xe0\xc2\xf4\x3b\xae\x46" + + "\x59\x32\x4e\x8a\x7d\x22\x20\x16\x5f\x21\x11\x85\x5b\x52\xf7\x02\x76\x4f\x22\x4d\x15\x6a\x77\x62\xd7\x5f\x95\x3b" + + "\x9e\x74\xd5\x85\x56\x2c\x3b\xbb\xae\x16\x55\x97\xe8\x5d\xdc\x1e\xc5\x76\x14\xd6\x9e\x70\xe2\xbc\xec\x14\x4b\xea" + + "\x56\xd2\x16\x46\xa7\x05\x19\x03\x8d\x6e\x87\xc7\xe4\xee\x23\x05\xfb\x63\xd1\x5b\xf8\xdb\xd3\xb5\xdb\x87\x45\x2a" + + "\x84\x46\x19\x75\x6e\x4a\x77\x19\xb5\x12\xb6\xa3\x09\x9d\x53\xaf\xb4\xc3\x6a\xcc\x74\x22\x18\xbf\x1c\x07\xb3\x75" + + "\xfc\xf3\x9b\xd7\x71\x36\xa6\x79\xfe\xdb\x6f\xec\xfd\xf5\xef\x9a\xbd\x95\xf3\xcf\xef\xf3\x37\xaf\xe8\x3f\xbe\xbc" + + "\x70\xa0\x20\xb1\xe9\x04\x1f\x37\x2a\x0f\x9e\x0a\xde\x94\xf9\x9d\xaf\x95\x90\xd4\x35\x21\x5d\x42\x2c\x91\x5c\xbb" + + "\x86\x70\xf5\xbf\xf0\x1a\x0b\x49\x51\x86\xce\xc8\x69\xa0\x0b\xbe\xc5\xad\xf2\xb7\xa1\x99\x36\x75\xef\xa2\x24\x32" + + "\x63\xfc\x12\x46\x40\x6a\x2d\xae\x4e\x19\xef\x2e\xff\x5b\x78\xdf\xa1\x75\x1e\xba\x6e\xce\xed\xe9\xda\x45\xf8\x5a" + + "\x64\xc2\x15\x92\xf0\x0c\x9b\x28\x49\xa1\x43\xe7\x27\x51\x73\x8a\xd4\xb4\xd6\x2f\x44\x51\x10\x4e\x0f\xf7\xa7\x8a" + + "\xde\x10\x8a\xb0\x62\x3a\x87\x05\xdb\x6d\xa6\xe9\xc9\xdd\x1c\x89\xd4\xa6\x87\x64\xa6\xd8\xdc\xee\x93\x99\x81\x2e" + + "\x7d\x3f\x2e\x44\xe6\xd1\x5a\x27\xb9\x29\x05\x52\x79\x4c\xf8\x0e\xd8\x62\x19\x3a\x4f\x0d\x1d\x9e\x58\x86\x13\xb5" + + "\x57\x47\xf9\x58\xf8\xd5\x71\x61\x6f\x9e\x77\x78\xdb\xae\xdb\x01\xa8\x4b\xdf\xcf\x98\xce\xeb\xd8\xf6\x20\xad\x38" + + "\xfc\xd6\x8d\xec\x3b\x51\x93\xaa\x66\xcb\x2a\xa1\x98\x81\xc9\x25\x90\x58\x89\xa2\xd6\x78\x05\x5a\x54\x97\x30\xba" + + "\x02\xc9\xb2\x5c\xdb\xa7\x06\x05\xe6\x71\x0b\x83\x9d\xbf\x84\x94\xc2\x6b\x9c\xd6\x0a\xe5\x76\x28\xb2\xfe\xa7\x17" + + "\x98\x5e\x8c\xd3\x0b\x92\x90\x60\x16\xc7\x0f\x49\x30\x9b\xcd\x2e\xe8\x88\xce\x47\xe9\x78\x3a\xba\xc0\xf4\x7c\x3a" + + "\x1b\x93\xd8\x0f\x2e\xe6\xb3\xf9\x6c\x3e\x9a\x4f\xa7\x64\x92\x4e\xd2\xf9\x74\x3a\x9d\x60\x30\x0e\x68\x30\x9e\x93" + + "\x20\x0d\x30\x18\xcf\xe7\x73\x43\x9b\x06\x69\x40\x27\x69\x30\x0f\x1e\xce\x67\xc1\xc5\xfc\x3c\x98\x4c\xd2\xf9\x24" + + "\x78\x18\x4c\x82\x89\x91\x9c\x4f\x27\x69\x10\x04\x86\x16\x07\x34\x38\x3f\x6f\xb8\x73\xe3\xe3\x3c\x0d\x66\xc1\xd8" + + "\x72\x26\x41\x32\x3f\x37\xdc\xe9\x78\x3a\x99\x8e\xa7\x81\xf9\x3f\xc1\xf9\x28\xc0\x60\xbe\x07\x8a\xbc\x86\x12\x41" + + "\x70\x78\xce\xf4\x8b\x3a\x76\xc0\xd4\x6d\x37\x21\x5c\x70\x96\x98\xe9\xae\x9d\x09\x35\xf5\x48\x49\xbe\x09\x4e\x56" + + "\x4d\x0f\xd8\x64\xc5\x97\x2c\x8e\x05\x57\x7e\x2a\xe4\x75\x89\x9f\x6c\x4e\x3f\x51\x22\xaf\xe3\xa2\xc6\x4f\xe3\xc9" + + "\x38\x98\x8c\x2d\x3c\x23\x0b\x83\xd3\x43\xc7\xe0\x44\x13\x6f\x46\x11\x93\xfb\x7f\x0b\x96\xe0\xed\x44\xf2\xbe\x45" + + "\xea\x18\x4c\xee\x68\x74\xce\x27\xd6\xee\x12\xc2\x7d\xf3\x7b\xd0\xc2\xef\x3a\xe1\x83\x46\xb5\x5e\x7a\xf6\xdb\x4a" + + "\x08\xcd\x90\xf6\x99\x2c\xc9\x56\xf2\x48\x70\xd7\xbf\x6b\x59\xe3\x11\xb3\xe9\xe0\x4d\x97\xcd\x68\x86\xda\x33\x11" + + "\x2f\x4d\xc4\x36\xbb\x47\x6f\x68\x3a\xed\xab\xa3\x17\x50\xed\xf8\x3b\x47\x8b\xfd\x6b\x1c\x4d\x18\xea\xe4\xac\x50" + + "\x2f\x87\x70\x67\x20\xba\xed\xbd\x37\x67\x83\xb3\x3f\x6c\xc4\x0f\x3f\x36\xf5\xda\x95\x67\xdf\x92\x48\xb1\x52\x98" + + "\x93\xaa\x5a\x3b\xd1\x7f\x44\x0d\x44\x9a\x7e\x94\xf1\x0c\x08\x87\x85\xd2\x52\xf0\x2c\x12\xb5\xa6\xe6\xc2\x5f\xf8" + + "\x5b\x02\x34\x7a\xd2\x83\x77\x05\x12\x85\xc7\x05\xea\xd6\xae\xcd\xa2\x13\xd5\x55\x26\x4d\xb5\x5b\x8b\x5a\xee\xd4" + + "\x6d\xd7\xa3\x05\xb0\xb2\x92\x62\xb9\xe5\xe1\xd7\x0a\x25\x43\x9e\xa0\x77\xb7\x3c\xdd\xf9\x70\xb4\x25\x6e\x7f\x8f" + + "\xd0\x7c\x30\xa0\xdb\x6f\x13\x77\x87\xf2\xdb\x6c\x98\xdb\xd6\xcc\xe5\xf6\xda\x6d\xbe\xd4\xfd\x37\x00\x00\xff\xff" + + "\x1d\xf1\xd8\x22\xba\x13\x00\x00") func bindataDistDownloadmarkdownhtmlBytes() ([]byte, error) { return bindataRead( @@ -708,10 +717,10 @@ func bindataDistDownloadmarkdownhtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.markdown.html", - size: 4919, + size: 5050, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -720,73 +729,74 @@ func bindataDistDownloadmarkdownhtml() (*asset, error) { } var _bindataDistDownloadsandboxhtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x73\x9b\x48\x12\xff\xae\xbf\xa2\x43\x3e\x48\xbe\x08\xd0\xcb" + - "\xe0\xd8\xc0\x55\x5e\x9b\xec\xe5\x71\xa9\xdb\xcd\xed\x5e\xa5\x52\xa9\x81\x69\x60\x6c\x98\x21\x33\x83\x14\xc5\xf1" + - "\xff\x7e\x35\x83\x24\x63\x49\x4e\x65\xef\xfc\xc1\x40\x3f\x7e\xdd\xf4\xf4\x4c\xff\x50\xf4\x80\x8a\x4c\xaf\x1b\x84" + - "\x52\xd7\x55\x32\x88\x1e\xb8\xee\x47\x96\x43\xa5\xe1\xd7\x17\x10\x7e\x4a\xc0\xfe\x45\x46\x0b\x59\x45\x94\x8a\x1d" + - "\x2e\xdc\x4b\x05\x95\x76\x19\x3e\xee\x2e\x67\xdd\x25\x74\x12\x88\x1e\x7c\x44\x4e\x59\xfe\xc9\x75\x6f\xd1\xfa\x50" + - "\x3f\x81\xf6\x03\x98\xb3\x9f\x81\xb9\xcf\xbf\xd0\x1b\x08\x23\x48\x06\x87\xfe\x4e\x67\x7b\xc7\x79\x10\x95\x48\x68" + - "\x32\xb0\x11\x6b\xd4\x04\xb2\x92\x48\x85\x3a\x76\x5a\x9d\xbb\x67\x4e\x5f\x55\x6a\xdd\xb8\xf8\xa5\x65\xcb\xd8\xf9" + - "\xd3\xfd\xf0\xc4\x7d\x26\xea\x86\x68\x96\x56\xe8\x40\x26\xb8\x46\xae\x63\xe7\xd7\x17\x31\xd2\x02\xb7\x9e\x9a\xe9" + - "\x0a\x13\x2d\x09\x57\x39\x4a\x4f\x95\xe0\xc2\x0b\xa2\xd6\x40\x38\x85\x9c\x28\x0d\x39\xab\x10\x54\x49\x24\xe3\x05" + - "\xe4\x52\xd4\xa0\x4b\x84\x4c\xd4\x35\xe1\xd4\xad\x18\x47\x2f\xf2\x3b\x98\x5e\x32\x9c\xd4\x18\x3b\x14\x55\x26\x59" + - "\xa3\x99\xe0\xbd\x14\xfe\x32\xbe\x73\x88\xbc\x64\xb8\x6a\x84\xd4\x3d\xd8\x15\xa3\xba\x8c\x29\x2e\x59\x86\xae\x7d" + - "\x18\x03\xe3\x4c\x33\x52\xb9\x2a\x23\x15\xc6\x53\x6f\xb2\x85\x7a\xe0\xba\xf0\xbe\x22\x19\x42\x4e\x96\x2c\x13\xdc" + - "\x63\x99\xb0\x49\x91\xa6\xa9\xd0\xd5\xa2\xcd\x4a\xd7\x2a\x1a\x5e\x00\xe3\x36\x2b\x29\x84\x06\xca\x24\x66\x5a\xc8" + - "\x35\x98\x25\xb2\x68\x15\xe3\x57\x20\xb1\x8a\x1d\xa5\xd7\x15\xaa\x12\x51\x3b\x50\x4a\xcc\x63\xc7\xef\x44\x7e\x4d" + - "\x18\xf7\x32\xa5\x9c\xbe\x8f\x35\x19\xfa\x7e\x2e\xb8\x56\x5e\x21\x44\x51\x21\x69\x98\xf2\x32\x51\xfb\x99\x52\x7f" + - "\xcf\x49\xcd\xaa\x75\xfc\x9b\x68\x65\x86\x8f\x7e\x23\x5c\x3d\x7a\x2f\xc5\xf9\x74\x32\x19\xcf\x26\x93\xf1\x7c\x32" + - "\x19\xda\xc0\xc3\xdb\xc0\x43\x30\x7b\x2a\x1e\x6a\xfc\xaa\x0d\xc6\xf0\x7f\x09\xf8\x5c\x0a\x46\xbb\x78\x6f\x05\x17" + - "\x3f\x1d\xa4\x5b\x6f\x50\x32\x33\x6f\x6e\x1f\x94\xbf\x44\x4e\x85\xf4\x6b\x41\x51\x72\xf6\x4d\x7a\xa6\xdb\xa3\x8d" + - "\x3a\x19\x44\x7e\xd7\xe5\x83\x41\x94\x0a\xba\x06\x60\x34\x76\xa8\x58\xf1\x4a\x10\xea\x24\x83\xc1\x6e\xd3\x6d\x3d" + - "\x76\xdb\x10\x96\x44\x42\x41\x5e\xe3\x1a\x62\x70\xae\xaf\xbd\x97\x4f\x5e\xe3\xfa\xe6\xc6\xb9\xe8\xd9\xb0\x1c\x46" + - "\x9d\xcd\x83\x18\x1c\xe7\x04\xae\x7b\x4a\x80\x51\xde\xf2\xcc\xb4\xe8\x88\x8d\x41\x8d\x41\x8c\xa1\x18\x83\x1c\x03" + - "\x19\x43\xbd\x6f\x0c\xc0\x3e\x0e\x5f\xda\xb2\x3d\xe1\xa4\x5a\x6b\x96\xa9\x7f\xa6\x97\x98\xe9\xe1\x27\x88\x41\x5e" + - "\x1c\x58\x4b\x23\xb7\x97\xef\xdf\x61\x17\xea\x10\x17\x60\x64\xac\xbc\x2f\x1b\x73\xef\x8b\x71\xf8\xf8\xe9\xc4\x6b" + - "\x5a\x55\x8e\x88\x2c\xda\x1a\xb9\x56\x27\x7b\x7e\x37\xe3\xce\xbc\x82\x18\xa6\xf0\x37\xe0\xb8\x82\xe7\x44\xe3\xe8" + - "\x64\x3f\x17\x02\x31\x28\x2f\x93\x48\x34\xbe\xa8\xd0\xa0\x8d\xc4\xc9\xf8\x20\x8f\xda\xda\x15\xa8\x37\x46\xea\xe9" + - "\xfa\x77\x52\xbc\x23\x35\x8e\xc4\xc9\xc7\xc9\xa7\x03\x5c\x8f\xa8\x35\xcf\x4c\xfc\x43\x95\x92\x46\x51\xec\x2b\x6a" + - "\xaf\x21\x12\xb9\x7e\x27\x28\x7a\x8c\x2b\x94\xfa\x29\xe6\x42\xe2\xc8\x56\xfd\x8e\xf5\xcd\xc9\x68\xc5\x38\x15\xab" + - "\x31\x50\x91\xd9\x2a\x8c\x61\xd8\xf5\xc2\x70\x0c\x43\xdf\x5f\xad\x56\x9b\x5e\x76\xc9\x76\x55\x6c\x47\xdf\x3e\x5d" + - "\x2a\x63\x5a\x90\xe1\x5e\x59\x0a\x32\x1a\x76\x25\x19\x8e\xbb\x4e\x1a\xc3\xb0\x77\x1e\x1e\xb3\x57\xc8\xa9\x41\x6b" + - "\x48\x81\xe6\x20\xba\x6b\x73\x73\xdb\xaf\xbb\x16\xbf\x15\x51\xb6\xb4\xfd\xcd\xc9\x92\x15\xc4\x9e\x8c\xc9\x9d\x00" + - "\xd6\x62\x33\x18\x56\x92\x34\x0d\xca\x3d\x0b\x6b\x45\xb6\xc7\xcb\x11\xa5\x35\x28\xa7\xfd\x63\x3d\xf2\xcb\xe9\x11" + - "\x14\x9f\x1c\x11\xb6\xbb\xc1\x54\x32\x4a\x91\xbb\x5f\xd5\x7d\x41\x2a\x96\xf4\x33\x29\x45\x8d\x47\x31\xbb\x60\x15" + - "\xfb\x19\x98\x87\x8a\xd4\x4d\x85\xca\x49\xba\x1b\x68\x15\x42\x46\x14\xaa\xff\x1f\xda\x0c\x0b\x92\x69\x27\xd9\xdc" + - "\x40\xfb\x57\x41\x23\xbf\xad\xf6\x16\xcc\xa7\x6c\x99\x0c\xf6\x1e\x07\x91\x42\xbb\xd5\xed\x6a\x9b\xc2\x6c\x0f\xfe" + - "\xa3\xeb\x7b\x18\x27\x95\xfe\x91\xe8\xe5\x6c\xeb\x6b\x9a\xcf\xb5\x73\xd7\x49\xae\xaf\xbd\x5f\x58\x85\x66\x34\xde" + - "\xdc\x44\x7e\x39\x3b\xe6\xb9\x48\xcc\x91\x7d\x0e\x51\x6a\xec\x9f\x75\x63\xf3\xf7\x75\x63\x5d\xd2\x24\xf2\xcb\xc5" + - "\x71\x37\xc5\xbe\xed\xbb\xbd\x41\x5e\xe8\x12\xbe\x43\x2e\x64\x4d\x34\x38\x0f\xc7\x0f\x1f\x3e\xf4\x9c\x0e\x0a\xd2" + - "\xb5\x36\xab\x65\x00\xef\xef\xdc\xeb\x6b\xef\x83\xac\x6e\x6e\x9c\xed\x1b\xa5\x9a\xbb\x99\x26\x90\x6a\xee\x24\xb0" + - "\x1d\x00\x91\xcf\x12\xdb\xa8\x5d\x49\xba\xba\x74\xb0\x9b\xfb\xc8\xdf\x94\x7a\x27\xcf\x85\xd0\x28\x93\xbb\xbb\xee" + - "\x87\x7b\xca\x5a\xd8\xf1\x16\x3b\xf7\x35\xfb\x36\xf1\x94\xe9\x4c\x30\x7e\x3e\x0d\x16\xeb\xf4\x5f\x6f\xdf\xa4\xc5" + - "\x94\x96\xe5\x1f\x7f\xb0\x0f\x57\x7f\x6a\xf6\x4e\x86\x97\x1f\xca\xb7\xaf\xe9\x3f\xbe\xbc\x72\xa0\x22\xa9\xa1\x05" + - "\x4f\x3b\x97\x47\xcf\x05\xef\xf6\xfc\x36\xd6\x4a\x48\xea\x9a\x94\xce\x21\x95\x48\xae\x5c\x23\xb8\xb8\x27\x03\x9b" + - "\x05\xab\x0b\x48\x85\xa4\x28\x63\x67\xe2\x74\x93\x16\x7c\x56\x93\x02\x95\xbf\x49\xcd\x70\x96\x5d\x88\x9a\xc8\x82" + - "\xf1\x73\x98\x00\x69\xb5\xb8\xb8\x0f\xfc\xf8\x59\xb0\x69\xe6\x3b\xb2\xa3\x9d\x79\x5c\x63\xb3\xed\xc8\xc0\x26\xc3" + - "\x37\xa2\x10\xae\x90\x84\x17\xd8\x65\x49\x2a\x1d\x3b\xbf\x88\x96\x53\xa4\x86\x67\xbd\x12\x55\x45\x38\xdd\x5f\x9f" + - "\x26\x79\x4b\x28\xc2\x8a\xe9\x12\x22\xb6\x5d\x4c\x43\xd0\xdc\x12\x89\xd4\x86\x50\x30\xd3\x79\xb7\xeb\x64\x08\xf1" + - "\xb9\xef\xa7\x95\x28\x3c\xda\xea\xac\xcc\x0c\x01\x51\x1e\x13\xbe\x03\x76\xe7\xc4\xce\x73\x23\x87\x67\x56\xe1\x24" + - "\xfd\xa7\x83\x7a\x44\x7e\x73\xb8\xcb\xbb\xfb\x6d\xbf\x6d\x9e\xfb\x09\xa8\x73\xdf\x2f\x98\x2e\xdb\xd4\x0e\xa4\x5e" + - "\x1e\x7e\xef\x78\xf6\x9d\xa4\x2b\x55\xb7\x64\x8d\x50\xcc\xb4\xc9\x39\x90\x54\x89\xaa\xd5\x78\x01\x5a\x34\xe7\x30" + - "\xb9\x00\xc9\x8a\x52\xdb\xbb\xae\x0b\xcc\xed\xa6\x0d\xb6\xf1\x32\x52\x0b\xaf\x0b\xda\x2a\x94\x1b\x86\x6c\xe3\xcf" + - "\xcf\x30\x3f\x9b\xe6\x67\x24\x23\xc1\x22\x4d\x1f\x93\x60\xb1\x58\x9c\xd1\x09\x0d\x27\xf9\x74\x3e\x39\xc3\xfc\x74" + - "\xbe\x98\x92\xd4\x0f\xce\xc2\x45\xb8\x08\x27\xe1\x7c\x4e\x66\xf9\x2c\x0f\xe7\xf3\xf9\x0c\x83\x69\x40\x83\x69\x48" + - "\x82\x3c\xc0\x60\x1a\x86\xa1\x91\xcd\x83\x3c\xa0\xb3\x3c\x08\x83\xc7\xe1\x22\x38\x0b\x4f\x83\xd9\x2c\x0f\x67\xc1" + - "\xe3\x60\x16\xcc\x8c\x65\x38\x9f\xe5\x41\x10\x18\x59\x1a\xd0\xe0\xf4\xb4\xd3\x86\x26\xc6\x69\x1e\x2c\x82\xa9\xd5" + - "\xcc\x82\x2c\x3c\x35\xda\xf9\x74\x3e\x9b\x4f\xe7\x81\xf9\x3f\xc3\x70\x12\x60\x10\xee\x1a\x45\x5e\x41\x8d\x20\x38" + - "\xbc\x64\xfa\x55\x9b\x3a\x40\x89\x26\x6e\x46\xb8\xe0\x2c\x33\x54\xbf\x5f\x09\x35\xf7\x48\x4d\xbe\x09\x4e\x56\x1d" + - "\x21\xe8\xaa\xe2\x4b\x96\xa6\x82\x2b\x3f\x17\xf2\xaa\xc6\xcf\xb6\xa6\x9f\x29\x91\x57\x69\xd5\xe2\xe7\xe9\x6c\x1a" + - "\xcc\xa6\xb6\x3d\x13\xdb\x06\xf7\x33\xd0\xd1\x3d\x8c\xce\xf0\x52\x53\xfb\x7f\x0b\x96\xe1\x2d\x3d\xfd\xd0\x13\x1d" + - "\x61\xa9\x77\x3c\x8e\x92\x55\x8b\xbb\x84\x78\xc7\x84\xf6\xf8\xdc\x96\x16\xed\xb1\x96\x76\xe9\xd9\x0f\xed\x18\x3a" + - "\xc6\x7e\x49\x96\x64\x63\x79\x60\xb8\x25\x73\x5a\xb6\x78\xa0\xec\xe8\x9c\xa1\x5c\x8c\x16\xa8\x3d\x93\xf1\xd2\x64" + - "\x6c\xab\x7b\xf0\x86\x86\x76\x5d\x1c\xbc\x80\xea\xe7\x7f\x94\x67\xee\x5e\xe3\x80\x6e\xaa\x7b\x89\x63\xbb\x1c\xc3" + - "\x1d\x76\x7c\x4b\xc4\x6e\x4e\x46\x27\x3f\x64\x65\xfb\xbf\x3c\x0c\xfa\x27\xcf\x6e\x3e\x49\xb1\x52\x58\x92\xa6\x59" + - "\x3b\xc9\x7f\x44\x0b\x44\x1a\x72\x62\xbe\x5b\x09\x87\x48\x69\x29\x78\x91\x88\x56\x53\xa2\x91\x46\xfe\x46\x00\x9d" + - "\x9f\xf4\xe0\x7d\x85\x44\xe1\xe1\x01\x75\x8b\x6b\xab\xe8\x24\x6d\x53\x48\x73\xda\xad\x45\x2b\xb7\xee\x76\x04\x6a" + - "\x01\xac\x6e\xa4\x58\x6e\x74\xf8\xb5\x41\xc9\x90\x67\xe6\x23\xbc\x7f\x3c\xdd\xf9\x15\x61\x23\xdc\x5c\x0f\xba\x79" + - "\xef\x6b\xcd\x7e\xa8\xde\xfd\x42\xbb\xad\x86\x99\xb6\xe6\x23\xcd\x8e\xdd\xee\x67\x9b\xff\x06\x00\x00\xff\xff\xdf" + - "\xa7\x2b\x0c\xc7\x11\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x5b\x77\x9b\x48\xf2\x7f\xd7\xa7\xa8\x90\x07\xc9\xff\x08\xd0\xcd" + + "\xe0\xd8\xc0\xff\xe4\x36\xc9\x6c\x2e\x9b\x9d\x99\xec\xcc\x9e\x9c\x9c\x9c\x86\x2e\xa0\x63\xe8\xc6\xdd\x8d\x14\xc5" + + "\xd1\x77\xdf\xd3\x8d\x6e\x96\xe4\xd9\xcc\xae\x1f\x0c\xd4\x9d\xaa\xa2\xea\xd7\x8a\x1e\x50\x91\xe9\x65\x83\x50\xea" + + "\xba\x4a\x7a\xd1\x03\xd7\xfd\xc8\x72\xa8\x34\xfc\xfc\x02\xc2\x4f\x09\xd8\xbf\xc8\x70\x21\xab\x88\x52\xb1\xc3\x85" + + "\xfb\x45\x41\xa5\x5d\x86\x8f\xbb\xcb\x45\x77\x09\x9d\x04\xa2\x07\x1f\x91\x53\x96\x7f\x72\xdd\x9d\xb5\x7d\x53\x3f" + + "\x60\xed\x4f\xcc\x5c\xfc\x88\x99\xfb\xf4\x0b\xbd\x36\x61\x08\x49\xef\x58\xdf\xe9\x64\xef\x28\xf7\xa2\x12\x09\x4d" + + "\x7a\xd6\x63\x8d\x9a\x40\x56\x12\xa9\x50\xc7\x4e\xab\x73\xf7\xc2\xd9\x67\x95\x5a\x37\x2e\xde\xb4\x6c\x1e\x3b\x7f" + + "\xb8\x1f\x9e\xb8\xcf\x44\xdd\x10\xcd\xd2\x0a\x1d\xc8\x04\xd7\xc8\x75\xec\xfc\xfc\x22\x46\x5a\xe0\x46\x53\x33\x5d" + + "\x61\xa2\x25\xe1\x2a\x47\xe9\xa9\x12\x5c\x78\x41\xd4\x12\x08\xa7\x90\x13\xa5\x21\x67\x15\x82\x2a\x89\x64\xbc\x80" + + "\x5c\x8a\x1a\x74\x89\x90\x89\xba\x26\x9c\xba\x15\xe3\xe8\x45\x7e\x67\x66\x2f\x18\x4e\x6a\x8c\x1d\x8a\x2a\x93\xac" + + "\xd1\x4c\xf0\xbd\x10\xfe\xb2\x7d\xe7\xd8\xf2\x9c\xe1\xa2\x11\x52\xef\x99\x5d\x30\xaa\xcb\x98\xe2\x9c\x65\xe8\xda" + + "\x87\x21\x30\xce\x34\x23\x95\xab\x32\x52\x61\x3c\xf6\x46\x1b\x53\x0f\x5c\x17\xde\x57\x24\x43\xc8\xc9\x9c\x65\x82" + + "\x7b\x2c\x13\x36\x28\xd2\x34\x15\xba\x5a\xb4\x59\xe9\x5a\x46\xc3\x0b\x60\xdc\x46\x25\x85\xd0\x40\x99\xc4\x4c\x0b" + + "\xb9\x04\x53\x22\x6b\xad\x62\xfc\x1a\x24\x56\xb1\xa3\xf4\xb2\x42\x55\x22\x6a\x07\x4a\x89\x79\xec\xf8\x1d\xc9\xaf" + + "\x09\xe3\x5e\xa6\x94\xb3\xaf\x63\x45\xfa\xbe\x9f\x0b\xae\x95\x57\x08\x51\x54\x48\x1a\xa6\xbc\x4c\xd4\x7e\xa6\xd4" + + "\xff\xe7\xa4\x66\xd5\x32\xfe\x55\xb4\x32\xc3\x47\xbf\x12\xae\x1e\xbd\x97\xe2\x72\x3c\x1a\x0d\x27\xa3\xd1\x70\x3a" + + "\x1a\xf5\xad\xe3\xfe\xce\x71\x1f\xcc\x37\x15\xf7\x35\x7e\xd5\xc6\x46\xff\xbf\x71\xf8\x5c\x0a\x46\x3b\x7f\x6f\x05" + + "\x17\x3f\xec\xa4\xab\x37\x28\x99\x99\x37\xb7\x0f\xca\x9f\x23\xa7\x42\xfa\xb5\xa0\x28\x39\xfb\x26\x3d\xd3\xed\xd1" + + "\x9a\x9d\xf4\x22\xbf\xeb\xf2\x5e\x2f\x4a\x05\x5d\x02\x30\x1a\x3b\x54\x2c\x78\x25\x08\x75\x92\x5e\x6f\xfb\xd1\x6d" + + "\x34\xb6\x9f\x21\xcc\x89\x84\x82\xbc\xc6\x25\xc4\xe0\xdc\xde\x7a\x2f\x9f\xbc\xc6\xe5\x6a\xe5\x5c\xed\xc9\xb0\x1c" + + "\x06\x9d\xcc\x83\x18\x1c\xe7\x0c\x6e\xf7\x98\x00\x83\xbc\xe5\x99\x69\xd1\x01\x1b\x82\x1a\x82\x18\x42\x31\x04\x39" + + "\x04\x32\x84\xfa\x50\x18\x80\x7d\xec\xbf\xb4\x69\x7b\xc2\x49\xb5\xd4\x2c\x53\x7f\x4f\xbf\x60\xa6\xfb\x9f\x20\x06" + + "\x79\x75\x24\x2d\x0d\xdd\x5e\xbe\x7f\x87\xad\xab\x63\xbb\x00\x03\x23\xe5\xdd\xac\xc5\xbd\x1b\xa3\xf0\xf1\xd3\x99" + + "\xd7\xb4\xaa\x1c\x10\x59\xb4\x35\x72\xad\xce\x0e\xf4\x56\xc3\x4e\xbc\x82\x18\xc6\xf0\x7f\xc0\x71\x01\xcf\x89\xc6" + + "\xc1\xd9\x61\x2c\x04\x62\x50\x5e\x26\x91\x68\x7c\x51\xa1\xb1\x36\x10\x67\xc3\xa3\x38\x6a\x2b\x57\xa0\x5e\x0b\xa9" + + "\xa7\xcb\xdf\x48\xf1\x8e\xd4\x38\x10\x67\x1f\x47\x9f\x8e\xec\x7a\x44\x2d\x79\x66\xfc\x1f\xb3\x94\x34\x8c\xe2\x90" + + "\x51\x7b\x0d\x91\xc8\xf5\x3b\x41\xd1\x63\x5c\xa1\xd4\x4f\x31\x17\x12\x07\x36\xeb\x77\xa4\x57\x67\x83\x05\xe3\x54" + + "\x2c\x86\x40\x45\x66\xb3\x30\x84\x7e\xd7\x0b\xfd\x21\xf4\x7d\x7f\xb1\x58\xac\x7b\xd9\x25\x9b\xaa\xd8\x8e\xde\x3d" + + "\x7d\x51\x46\xb4\x20\xfd\x83\xb4\x14\x64\xd0\xef\x52\xd2\x1f\x76\x9d\x34\x84\xfe\xde\x3c\x3c\x25\xaf\x90\x53\x63" + + "\xad\x21\x05\x9a\x41\x74\x57\x66\xb5\xeb\xd7\x6d\x8b\xef\x48\x94\xcd\x6d\x7f\x73\x32\x67\x05\xb1\x93\x31\xb9\xe3" + + "\xc0\x4a\xac\x17\xc3\x42\x92\xa6\x41\x79\x20\x61\xa5\xc8\x66\xbc\x9c\x60\x5a\x81\x72\xbc\x3f\xd6\x23\xbf\x1c\x9f" + + "\xb0\xe2\x93\x13\xc4\x76\xbb\x98\x4a\x46\x29\x72\xf7\xab\xba\xcf\x49\xc5\x92\xfd\x48\x4a\x51\xe3\x49\x9b\x9d\xb3" + + "\x8a\xfd\x88\x99\x87\x8a\xd4\x4d\x85\xca\x49\xba\x1b\x68\x15\x42\x46\x14\xaa\xff\xdd\xb4\x59\x16\x24\xd3\x4e\xb2" + + "\xbe\x81\xf6\xaf\x1a\x8d\xfc\xb6\x3a\x28\x98\x4f\xd9\x3c\xe9\x1d\x3c\xf6\x22\x85\xf6\x53\xb7\xd5\x36\x89\xd9\x0c" + + "\xfe\x93\xf5\x3d\xf6\x93\x4a\xff\x84\xf7\x72\xb2\xd1\x35\xcd\xe7\xda\xbd\xeb\x24\xb7\xb7\xde\x4f\xac\x42\xb3\x1a" + + "\x57\xab\xc8\x2f\x27\xa7\x34\x67\x89\x19\xd9\x97\x10\xa5\x46\xfe\x59\xb7\x36\x7f\x5b\x36\x56\x25\x4d\x22\xbf\x9c" + + "\x9d\x56\x53\xec\xdb\xa1\xda\x1b\xe4\x85\x2e\xe1\x3b\xe4\x42\xd6\x44\x83\xf3\x70\xf8\xf0\xe1\x43\xcf\xe9\x4c\x41" + + "\xba\xd4\xa6\x5a\xc6\xe0\xfd\x9d\x7b\x7b\xeb\x7d\x90\xd5\x6a\xe5\x6c\xde\x28\xd5\xdc\xcd\x34\x81\x54\x73\x27\x81" + + "\xcd\x02\x88\x7c\x96\xd8\x46\xed\x52\x72\x4f\x5e\xf6\x92\x7a\x23\x33\x41\xf1\x9e\x8e\xb5\xc2\xac\x2e\xba\x0d\x45" + + "\x89\x26\x97\xac\x26\x05\xfa\x0d\x2f\xae\x52\xa2\x30\x98\x0d\x6f\x6f\xbd\x7f\xfc\xf2\x4c\x50\x5c\xad\x9c\x53\xbe" + + "\xd6\x05\xee\xed\xca\xd4\x8b\xfc\x75\xb5\xb7\xf4\x5c\x08\x8d\x32\xe9\x9d\x8a\xf0\xf4\x67\x6d\x25\xec\x86\x8d\x9d" + + "\xfb\xbe\xb7\x4d\xee\x52\xa6\x33\xc1\xf8\xe5\x38\x98\x2d\xd3\x5f\xde\xbe\x49\x8b\x31\x2d\xcb\xdf\x7f\x67\x1f\xae" + + "\xff\xd0\xec\x9d\x0c\xbf\x7c\x28\xdf\xbe\xa6\x7f\xbb\x79\xe5\x40\x45\x52\x83\x4c\x9e\x76\x2a\x8f\x9e\x0b\xde\x8d" + + "\x9d\x8d\xaf\x85\x90\xd4\x35\x21\x5d\x42\x2a\x91\x5c\xbb\x86\x70\xf5\x9f\xf2\x97\x0a\x49\x51\xc6\xce\xc8\xe9\x52" + + "\x09\xbe\xcd\xa3\xf2\xd7\xa1\x19\xd8\xb4\x75\x51\x13\x59\x30\x7e\x09\x23\x20\xad\x16\x57\xf7\x19\x3f\x3d\x8e\xd6" + + "\xe9\xbe\x43\x3b\xd9\x04\xa7\x39\xbb\x6a\x6f\x22\x7c\x23\x0a\xe1\x0a\x49\x78\x81\x5d\x94\xa4\xd2\xb1\xf3\x93\x68" + + "\x39\x45\x6a\xa0\xde\x2b\x51\x55\x84\xd3\xc3\xfa\x34\xc9\x5b\x42\x11\x16\x4c\x97\x10\xb1\x4d\x31\x0d\x46\x74\x4b" + + "\x24\x52\x1b\x4c\xc3\x4c\xf3\xef\xea\x64\x30\xf9\xa5\xef\xa7\x95\x28\x3c\xda\xea\xac\x34\xad\x29\x95\xc7\x84\xef" + + "\x80\xfd\x78\x63\xe7\xb9\xa1\xc3\x33\xcb\x70\x92\xfd\xa7\xa3\x7c\x44\x7e\x73\x3c\x68\xba\xfb\x4d\xbf\xad\x9f\xf7" + + "\x03\x50\x97\xbe\x5f\x30\x5d\xb6\xa9\xdd\x89\x7b\x71\xf8\x7b\x1b\xc2\x77\x92\x2e\x55\x5d\xc9\x1a\xa1\x98\x69\x93" + + "\x4b\x20\xa9\x12\x55\xab\xf1\x0a\xb4\x68\x2e\x61\x74\x05\x92\x15\xa5\xb6\x77\x5d\x17\x98\xdb\x75\x1b\x6c\xfc\x65" + + "\xa4\x16\x5e\xe7\xb4\x55\x28\xd7\x20\xdd\xfa\x9f\x5e\x60\x7e\x31\xce\x2f\x48\x46\x82\x59\x9a\x3e\x26\xc1\x6c\x36" + + "\xbb\xa0\x23\x1a\x8e\xf2\xf1\x74\x74\x81\xf9\xf9\x74\x36\x26\xa9\x1f\x5c\x84\xb3\x70\x16\x8e\xc2\xe9\x94\x4c\xf2" + + "\x49\x1e\x4e\xa7\xd3\x09\x06\xe3\x80\x06\xe3\x90\x04\x79\x80\xc1\x38\x0c\x43\x43\x9b\x06\x79\x40\x27\x79\x10\x06" + + "\x8f\xc3\x59\x70\x11\x9e\x07\x93\x49\x1e\x4e\x82\xc7\xc1\x24\x98\x18\xc9\x70\x3a\xc9\x83\x20\x30\xb4\x34\xa0\xc1" + + "\xf9\x79\xc7\x0d\x8d\x8f\xf3\x3c\x98\x05\x63\xcb\x99\x04\x59\x78\x6e\xb8\xd3\xf1\x74\x32\x1d\x4f\x03\xf3\x7f\x82" + + "\xe1\x28\xc0\x20\xdc\x36\x8a\xbc\x86\x1a\x41\x70\x78\xc9\xf4\xab\x36\x75\xc0\xcc\x11\x37\x23\x5c\x70\x96\x99\xd3" + + "\xc6\x7e\x26\xd4\xd4\x23\x35\xf9\x26\x38\x59\x74\x98\xa4\xcb\x8a\x2f\x59\x9a\x0a\xae\xfc\x5c\xc8\xeb\x1a\x3f\xdb" + + "\x9c\x7e\xa6\x44\x5e\xa7\x55\x8b\x9f\xc7\x93\x71\x30\x19\xdb\xf6\x4c\x6c\x1b\xdc\x0f\x82\x07\xf7\x80\x4a\x03\x8d" + + "\x4d\xee\xff\x29\x58\x86\x3b\x84\xfc\x61\x8f\x74\x02\x28\xdf\xd1\x38\x89\x97\xad\xdd\x39\xc4\x5b\x30\x76\x00\x29" + + "\x37\xc8\xec\x00\x38\xb5\x73\xcf\x9e\xf5\x63\xe8\x0e\x0d\x5f\xc8\x9c\xac\x25\x8f\x04\x37\x78\x52\xcb\x16\x8f\x98" + + "\x1d\xa2\x34\xa8\x8f\xd1\x02\xb5\x67\x22\x9e\x9b\x88\x6d\x76\x8f\xde\xd0\x20\xbf\xab\xa3\x17\x50\xfb\xf1\x9f\x84" + + "\xba\xdb\xd7\x38\x42\xbc\xea\x5e\xec\xda\xce\x87\x70\x07\xa0\xef\xb0\xe0\xea\x6c\x70\xf6\xa7\xc0\xf0\xf0\xc7\x8f" + + "\xde\xfe\xe4\xd9\xae\x48\x29\x16\x0a\x4b\xd2\x34\x4b\x27\xf9\x97\x68\x81\x48\x83\x8f\xcc\xd1\x99\x70\x88\x94\x96" + + "\x82\x17\x89\x68\x35\x25\x1a\x69\xe4\xaf\x09\xd0\xe9\x49\x0f\xde\x57\x48\x14\x1e\x0f\xa8\x9d\x5d\x9b\x45\x27\x69" + + "\x9b\x42\x9a\x69\xb7\x14\xad\xdc\xa8\xdb\x2d\xac\x05\xb0\xba\x91\x62\xbe\xe6\xe1\xd7\x06\x25\x43\x9e\xa1\x77\x77" + + "\x3c\xdd\xf9\x21\x63\x4d\x5c\x5f\x8f\xba\xf9\xe0\xc0\x68\xcf\xca\x77\x0f\x89\xbb\x6c\x98\x6d\x6b\xce\x89\x76\xed" + + "\x76\xbf\x1c\xfd\x3b\x00\x00\xff\xff\x03\x18\x0e\xe5\x4a\x12\x00\x00") func bindataDistDownloadsandboxhtmlBytes() ([]byte, error) { return bindataRead( @@ -805,10 +815,10 @@ func bindataDistDownloadsandboxhtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.sandbox.html", - size: 4551, + size: 4682, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -817,78 +827,79 @@ func bindataDistDownloadsandboxhtml() (*asset, error) { } var _bindataDistDownloadvideohtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x93\xd3\x38\x12\xff\x9e\xbf\xa2\x31\x1f\x92\xb9\x8d\xed\xbc" + - "\xc6\x1e\x66\x62\x5f\xed\x02\x0b\x1c\x8f\xa3\x6e\x97\xdb\xbd\xa2\x28\x4a\xb6\xda\xb6\x18\x5b\x32\x92\x9c\x10\x86" + - "\xf9\xdf\xaf\x24\xe7\xe1\xbc\x28\xf6\x6e\x3e\x4c\xac\x7e\xfc\xba\xdd\xdd\x92\xba\x3d\x7f\x40\x45\xaa\x57\x35\x42" + - "\xa1\xab\x32\xee\xcd\x1f\xb8\xee\x7b\x96\x41\xa9\xe1\xc5\x53\x08\x3f\xc4\x60\xff\xe6\x86\x0b\x69\x49\x94\x8a\x1c" + - "\x2e\xdc\x4f\x0a\x4a\xed\x32\x7c\xd4\xfe\x5c\xb5\x3f\xa1\x13\xc3\xfc\xc1\x7b\xe4\x94\x65\x1f\x5c\x77\x87\xd6\x85" + - "\xfa\x01\xb4\xef\xc0\x5c\xfd\x08\xcc\x39\xfd\x5c\xaf\x21\x0c\x21\xee\x1d\xeb\x3b\xad\xec\x9e\x72\x6f\x5e\x20\xa1" + - "\x71\xcf\x5a\xac\x50\x13\x48\x0b\x22\x15\xea\xc8\x69\x74\xe6\x5e\x39\x5d\x56\xa1\x75\xed\xe2\xe7\x86\x2d\x22\xe7" + - "\x4f\xf7\xdd\xcf\xee\x63\x51\xd5\x44\xb3\xa4\x44\x07\x52\xc1\x35\x72\x1d\x39\x2f\x9e\x46\x48\x73\xdc\x68\x6a\xa6" + - "\x4b\x8c\xb5\x24\x5c\x65\x28\x3d\x55\x80\x0b\x4f\x89\x5a\x01\xe1\x14\x32\xa2\x34\x64\xac\x44\x50\x05\x91\x8c\xe7" + - "\x90\x49\x51\x81\x2e\x10\x52\x51\x55\x84\x53\xb7\x64\x1c\xbd\xb9\xdf\xc2\x74\x9c\xe1\xa4\xc2\xc8\xa1\xa8\x52\xc9" + - "\x6a\xcd\x04\xef\xb8\xf0\x97\xf1\x9d\x63\xe4\x05\xc3\x65\x2d\xa4\xee\xc0\x2e\x19\xd5\x45\x44\x71\xc1\x52\x74\xed" + - "\x62\x08\x8c\x33\xcd\x48\xe9\xaa\x94\x94\x18\x8d\xbd\xd1\x06\xea\x81\xeb\xc2\xdb\x92\xa4\x08\x19\x59\xb0\x54\x70" + - "\x8f\xa5\xc2\x3a\x45\xea\xba\x44\x57\x8b\x26\x2d\x5c\xcb\xa8\x79\x0e\x8c\x5b\xaf\xa4\x10\x1a\x28\x93\x98\x6a\x21" + - "\x57\x60\x52\x64\xd1\x4a\xc6\x6f\x41\x62\x19\x39\x4a\xaf\x4a\x54\x05\xa2\x76\xa0\x90\x98\x45\x8e\xdf\x92\xfc\x8a" + - "\x30\xee\xa5\x4a\x39\x5d\x1d\x2b\xd2\xf7\xfd\x4c\x70\xad\xbc\x5c\x88\xbc\x44\x52\x33\xe5\xa5\xa2\xf2\x53\xa5\xfe" + - "\x9e\x91\x8a\x95\xab\xe8\x37\xd1\xc8\x14\x7f\xfa\x8d\x70\xf5\xd3\x5b\x29\xae\xc7\xa3\xd1\x70\x32\x1a\x0d\xa7\xa3" + - "\x51\xdf\x1a\xee\xef\x0c\xf7\xc1\xec\xa9\xa8\xaf\xf1\x8b\x36\x18\xfd\xff\xc5\xe0\x13\x29\x18\x6d\xed\xbd\x16\x5c" + - "\xfc\xb0\x91\x36\xdf\xa0\x64\x6a\xde\xdc\x2e\x94\xbf\x40\x4e\x85\xf4\x2b\x41\x51\x72\xf6\x55\x7a\xa6\xda\xe7\x6b" + - "\x76\xdc\x9b\xfb\x6d\x95\xf7\x7a\xf3\x44\xd0\x15\x00\xa3\x91\x43\xc5\x92\x97\x82\x50\x27\xee\xf5\xb6\x9b\x6e\xa3" + - "\xb1\xdd\x86\xb0\x20\x12\x72\xf2\x12\x57\x10\x81\x73\x77\xe7\x3d\xfb\xf9\x25\xae\xee\xef\x9d\x9b\x8e\x0c\xcb\x60" + - "\xd0\xca\x3c\x88\xc0\x71\x2e\xe0\xae\xc3\x04\x18\x64\x0d\x4f\x4d\x89\x0e\xd8\x10\xd4\x10\xc4\x10\xf2\x21\xc8\x21" + - "\x90\x21\x54\x87\xc2\x00\xec\x7d\xff\x99\x0d\xdb\xcf\x9c\x94\x2b\xcd\x52\xf5\xcf\xe4\x13\xa6\xba\xff\x01\x22\x90" + - "\x37\x47\xd2\xd2\xd0\xed\xcf\xb7\x6f\xb0\x35\x75\x8c\x0b\x30\x30\x52\xde\xe7\xb5\xb8\xf7\xd9\x28\xbc\xff\x70\xe1" + - "\xd5\x8d\x2a\x06\x44\xe6\x4d\x85\x5c\xab\x8b\x03\xbd\xfb\x61\x2b\x5e\x42\x04\x63\xf8\x1b\x70\x5c\xc2\x13\xa2\x71" + - "\x70\x71\xe8\x0b\x81\x08\x94\x97\x4a\x24\x1a\x9f\x96\x68\xd0\x06\xe2\x62\x78\xe4\x47\x65\xe5\x72\xd4\x6b\x21\xf5" + - "\xcb\xea\x77\x92\xbf\x21\x15\x0e\xc4\xc5\xfb\xd1\x87\x23\x5c\x8f\xa8\x15\x4f\x8d\xfd\x63\x96\x92\x86\x91\x1f\x32" + - "\x2a\xaf\x26\x12\xb9\x7e\x23\x28\x7a\x8c\x2b\x94\xfa\x17\xcc\x84\xc4\x81\x8d\xfa\x9e\xf4\xfd\xc5\x60\xc9\x38\x15" + - "\xcb\x21\x50\x91\xda\x28\x0c\xa1\xdf\xd6\x42\x7f\x08\x7d\xdf\x5f\x2e\x97\xeb\x5a\x76\xc9\x26\x2b\xb6\xa2\x77\xab" + - "\x4f\xca\x88\xe6\xa4\x7f\x10\x96\x9c\x0c\xfa\x6d\x48\xfa\xc3\xb6\x92\x86\xd0\xef\x9c\x87\xa7\xe4\x15\x72\x6a\xd0" + - "\x6a\x92\xa3\x39\x88\xf6\x65\xee\x77\xf5\xba\x2d\xf1\x1d\x89\xb2\x85\xad\x6f\x4e\x16\x2c\x27\xf6\x64\x8c\xf7\x0c" + - "\x58\x89\xf5\xc5\xb0\x94\xa4\xae\x51\x1e\x48\x58\x29\xb2\x39\x5e\x4e\x30\xad\x40\x31\xee\x1e\xeb\x73\xbf\x18\x9f" + - "\x40\xf1\xc9\x09\x62\xb3\xbd\x98\x0a\x46\x29\x72\xf7\x8b\x3a\x67\xa4\x64\x71\xd7\x93\x42\x54\x78\x12\xb3\x35\x56" + - "\xb2\x1f\x81\x79\xa8\x48\x55\x97\xa8\x9c\xb8\x7d\x80\x46\x21\xa4\x44\xa1\xfa\xff\xa1\xcd\x65\x41\x52\xed\xc4\xeb" + - "\x07\x68\xfe\x2a\xe8\xdc\x6f\xca\x83\x84\xf9\x94\x2d\xe2\xde\x89\x65\x6f\x7d\x26\xa2\xdd\xf3\x36\xed\x26\x42\x9d" + - "\x60\x9e\x4f\xf6\x69\x97\x12\xe9\x9f\x4b\xf7\x64\x83\x63\xaa\xd2\xb5\x17\xb2\x13\xdf\xdd\x79\xbf\xb2\x12\xcd\x9d" + - "\x79\x7f\x3f\xf7\x8b\xc9\x39\xed\x59\x6c\xce\xf3\x6b\x98\x27\x46\xe7\x71\x7b\xa7\xfe\xbe\xaa\xad\x5a\x12\xcf\xfd" + - "\x62\x76\x5e\x55\xb1\xaf\x87\xaa\xaf\x90\xe7\xba\x80\x6f\x90\x09\x59\x11\x0d\xce\xc3\xe1\xc3\x87\x0f\x3d\xa7\x85" + - "\x83\x64\xa5\x4d\x3a\x0d\xe8\x69\xd4\x4d\xca\xee\xee\xbc\x77\xb2\xbc\xbf\x77\x36\x6f\x97\x68\xee\xa6\x9a\x40\xa2" + - "\xb9\x13\xc3\xe6\x96\x98\xfb\x2c\xb6\xd5\xdc\x86\xa8\x8d\x53\xef\xec\xbe\x92\x62\x09\x84\xb3\x8a\x68\x34\x5d\x08" + - "\xc5\x17\xfc\x89\x58\x1e\xee\x44\xe8\xee\x57\xd3\x99\xb8\x1a\x65\xc5\x38\x29\xb7\xde\x40\x22\xbe\x40\x2a\x4a\xb7" + - "\xa2\xee\x15\x6c\x9e\x44\x96\x29\xd4\xee\xc4\xae\xbf\x28\x77\x3c\x39\xb7\x7f\x3a\x3e\x6d\xb0\x5d\x2d\x6a\xe7\x5c" + - "\x58\xf6\x4b\xed\xa4\xa3\x47\x3e\x6e\x08\x50\x4b\x7b\x5a\xb9\xac\x22\x39\x9e\xf1\xc8\x42\x2d\x18\x45\x01\xb6\xb3" + - "\x92\xa2\x54\xe7\x25\xad\xb4\xb2\xbd\x49\x7b\xe5\xef\xd2\x65\xdb\x03\xe7\xb0\x96\xbe\x67\xd5\xb7\x66\xcf\xed\xc5" + - "\x93\x2f\x7e\x82\x7c\x8a\x74\xb4\x6b\xe6\x56\xa6\xdd\x9d\xfe\x7a\x7b\x6e\xd6\x99\x10\x1a\xe5\x8f\x6c\xd1\x3d\x09" + - "\xdb\x1a\x45\xce\xb9\x44\x6f\xea\x39\x61\x3a\x15\x8c\x5f\x8f\x83\xd9\x2a\xf9\xd7\xeb\x57\x49\x3e\xa6\x45\xf1\xc7" + - "\x1f\xec\xdd\xed\x9f\x9a\xbd\x91\xe1\xa7\x77\xc5\xeb\x97\xf4\x1f\x9f\x9f\x3b\x50\x92\xc4\xb4\x94\xbf\xb4\x2a\x3f" + - "\x3d\x11\xbc\xbd\x2f\x36\xb6\x96\x42\x52\xd7\xb8\x74\x0d\x89\x44\x72\xeb\x1a\xc2\xcd\xf7\x42\xcc\xaa\x1c\x12\x21" + - "\x29\xca\xc8\x19\x39\x6d\xca\xc0\xb7\xf5\xa0\xfc\xb5\x6b\xa6\xdf\xdd\x9a\xa8\x88\xcc\x19\xbf\x86\x11\x90\x46\x8b" + - "\x9b\x73\xe0\xa7\xef\x11\x7f\x17\xe5\xf3\xa9\xf8\x4e\x92\x8c\xb7\x6d\x23\xb9\xf6\xf0\x95\xc8\x85\x2b\x24\xe1\x39" + - "\xb6\x5e\x92\x52\x47\xce\xaf\xa2\xe1\x14\xa9\xe9\xd1\x9f\x8b\xb2\x24\x9c\x1e\xe6\xa7\x8e\x5f\x13\x8a\xb0\x64\xba" + - "\x80\x39\xdb\x24\xd3\x34\xf7\x6e\x81\x44\x6a\xd3\x8c\x32\x73\x28\xed\xf2\x64\x86\xa9\x6b\xdf\x4f\x4a\x91\x7b\xb4" + - "\xd1\x69\x91\x9a\xe6\x55\x79\x4c\xf8\x0e\xd8\xc3\x35\x72\x9e\x18\x3a\x3c\xb6\x0c\x27\xee\xae\x8e\xe2\x31\xf7\xeb" + - "\xa3\x1b\x62\x5d\x7e\x9b\x7a\x5b\xaf\xbb\x0e\xa8\x6b\xdf\xcf\x99\x2e\x9a\xc4\x36\x33\x1d\x3f\xfc\xce\xd5\xee\x3b" + - "\x71\x1b\xaa\x36\x65\xb5\x50\xcc\x94\xc9\x35\x90\x44\x89\xb2\xd1\x78\x03\x5a\xd4\xd7\x30\xba\x01\xc9\xf2\x42\xdb" + - "\xa7\xb6\x0a\xcc\xe3\xba\x0c\x36\xf6\x52\x52\x09\xaf\x35\xda\x28\x94\xeb\xe9\xca\xda\x9f\x5e\x61\x76\x35\xce\xae" + - "\x48\x4a\x82\x59\x92\x3c\x22\xc1\x6c\x36\xbb\xa2\x23\x1a\x8e\xb2\xf1\x74\x74\x85\xd9\xe5\x74\x36\x26\x89\x1f\x5c" + - "\x85\xb3\x70\x16\x8e\xc2\xe9\x94\x4c\xb2\x49\x16\x4e\xa7\xd3\x09\x06\xe3\x80\x06\xe3\x90\x04\x59\x80\xc1\x38\x0c" + - "\x43\x43\x9b\x06\x59\x40\x27\x59\x10\x06\x8f\xc2\x59\x70\x15\x5e\x06\x93\x49\x16\x4e\x82\x47\xc1\x24\x98\x18\xc9" + - "\x70\x3a\xc9\x82\x20\x30\xb4\x24\xa0\xc1\xe5\x65\xcb\x0d\x8d\x8d\xcb\x2c\x98\x05\x63\xcb\x99\x04\x69\x78\x69\xb8" + - "\xd3\xf1\x74\x32\x1d\x4f\x03\xf3\x7f\x82\xe1\x28\xc0\x20\xdc\x16\x8a\xbc\x85\x0a\x41\x70\x78\xc6\xf4\xf3\x26\x71" + - "\x80\x12\x4d\xdc\x94\x70\xc1\x59\x6a\xc6\xc4\x6e\x24\xd4\xd4\x23\x15\xf9\x2a\x38\x59\xb6\xcd\x64\x1b\x15\x5f\xb2" + - "\x24\x11\x5c\xf9\x99\x90\xb7\x15\x7e\xb4\x31\xfd\x48\x89\xbc\x4d\xca\x06\x3f\x8e\x27\xe3\x60\x32\xb6\xe5\x19\xdb" + - "\x32\x38\x3f\xbd\x0c\xce\x4c\x03\x66\xa6\x31\xb1\xff\xb7\x60\x29\xee\x46\x9b\x77\x1d\xd2\x89\x09\x67\x4f\xe3\xe4" + - "\xa0\x63\x71\x17\x10\x6d\xbb\xe8\x83\x59\x60\xd3\x52\x1f\x74\xbc\xcd\xc2\xb3\x1f\x69\x22\x68\xa7\xbd\x4f\x64\x41" + - "\xd6\x92\x47\x82\x9b\x41\x40\xcb\x06\x8f\x98\xed\x28\x60\xda\x75\x46\x73\xd4\x9e\xf1\x78\x61\x3c\xb6\xd1\x3d\x7a" + - "\x43\xd3\xb2\xdf\x1c\xbd\x80\xea\xfa\x7f\x72\x46\xd9\xbe\xc6\xd1\xa8\xa2\xce\x0e\x1d\xcd\x62\x08\x7b\x93\xd5\xae" + - "\x89\xbf\xbf\x18\x5c\x7c\xb7\xa3\x3f\xfc\x6a\xd5\xeb\x9e\x3c\xdb\xb6\x45\x8a\xa5\xc2\x82\xd4\xf5\xca\x89\xff\x23" + - "\x1a\x20\xd2\x34\xb6\x8c\xe7\x40\x38\xcc\x95\x96\x82\xe7\xb1\x68\x34\x35\x3d\xc9\xdc\x5f\x13\xa0\xd5\x93\x1e\xbc" + - "\x2d\x91\x28\x3c\x3e\xa0\x76\xb8\x36\x8a\x4e\xdc\xd4\xb9\x34\xa7\xdd\x4a\x34\x72\xa3\x6e\x3b\x23\x2d\x80\x55\xb5" + - "\x14\x8b\x35\x0f\xbf\xd4\x28\x19\xf2\x14\xbd\xfd\xe3\x69\xef\x0b\xd4\x9a\xb8\xfe\x3d\xaa\xe6\x83\x49\xdf\x7e\xe4" + - "\xd8\x9f\xee\x77\xd1\x30\x03\xbe\x6f\x26\xfc\xd8\x3c\xb4\xdf\xfc\xfe\x1b\x00\x00\xff\xff\x12\xe3\x1a\x6b\x04\x14" + - "\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\xeb\x73\xdb\x38\x0e\xff\xee\xbf\x02\x55\x3e\xd8\xb9\xb5\x24\xbf" + + "\x22\xbb\x89\xa5\x9b\xdd\xb6\xfb\xb8\x3e\xae\xb7\xbb\xbd\xdd\x9b\x4e\xa7\x43\x89\x90\xc4\x46\x22\x55\x92\xb2\xeb" + + "\xa6\xfe\xdf\x6f\x48\xd9\x8e\xfc\xca\x64\xef\xf2\x21\x16\x09\xe0\x07\x08\x00\x41\x40\xf3\x27\x54\x24\x7a\x55\x21" + + "\xe4\xba\x2c\xa2\xce\xfc\x89\xeb\xbe\x67\x29\x14\x1a\x7e\x79\x01\xd3\x0f\x11\xd8\xbf\xb9\xa1\x42\x52\x10\xa5\x42" + + "\x87\x0b\xf7\x93\x82\x42\xbb\x0c\x9f\x36\x3f\xb3\xe6\x67\xea\x44\x30\x7f\xf2\x1e\x39\x65\xe9\x07\xd7\xbd\x47\x6b" + + "\x43\x3d\x02\xed\x01\x98\xd9\x63\x60\xce\xc9\x67\x7a\x03\x61\x36\xa2\xce\xb1\xbc\xd3\xf0\xee\x09\x77\xe6\x39\x12" + + "\x1a\x75\xac\xc6\x12\x35\x81\x24\x27\x52\xa1\x0e\x9d\x5a\xa7\xee\xcc\x69\x93\x72\xad\x2b\x17\x3f\xd7\x6c\x11\x3a" + + "\x7f\xba\xef\xbe\x77\x9f\x89\xb2\x22\x9a\xc5\x05\x3a\x90\x08\xae\x91\xeb\xd0\xf9\xe5\x45\x88\x34\xc3\xad\xa4\x66" + + "\xba\xc0\x48\x4b\xc2\x55\x8a\xd2\x53\x39\xb8\xf0\x82\xa8\x15\x10\x4e\x21\x25\x4a\x43\xca\x0a\x04\x95\x13\xc9\x78" + + "\x06\xa9\x14\x25\xe8\x1c\x21\x11\x65\x49\x38\x75\x0b\xc6\xd1\x9b\xfb\x0d\x4c\xcb\x18\x4e\x4a\x0c\x1d\x8a\x2a\x91" + + "\xac\xd2\x4c\xf0\x96\x09\x7f\x19\xdf\x39\x46\x5e\x30\x5c\x56\x42\xea\x16\xec\x92\x51\x9d\x87\x14\x17\x2c\x41\xd7" + + "\x2e\xfa\xc0\x38\xd3\x8c\x14\xae\x4a\x48\x81\xe1\xd0\x1b\x6c\xa1\x9e\xb8\x2e\xbc\x2d\x48\x82\x90\x92\x05\x4b\x04" + + "\xf7\x58\x22\xac\x51\xa4\xaa\x0a\x74\xb5\xa8\x93\xdc\xb5\x84\x8a\x67\xc0\xb8\xb5\x4a\x0a\xa1\x81\x32\x89\x89\x16" + + "\x72\x05\x26\x44\x16\xad\x60\xfc\x16\x24\x16\xa1\xa3\xf4\xaa\x40\x95\x23\x6a\x07\x72\x89\x69\xe8\xf8\xcd\x96\x5f" + + "\x12\xc6\xbd\x44\x29\xa7\x2d\x63\x59\xba\xbe\x9f\x0a\xae\x95\x97\x09\x91\x15\x48\x2a\xa6\xbc\x44\x94\x7e\xa2\xd4" + + "\xdf\x53\x52\xb2\x62\x15\xfe\x26\x6a\x99\xe0\x77\xbf\x11\xae\xbe\x7b\x2b\xc5\xf5\x70\x30\xe8\x8f\x06\x83\xfe\x78" + + "\x30\xe8\x5a\xc5\xdd\x7b\xc5\x5d\x30\x67\x2a\xec\x6a\xfc\xa2\x0d\x46\xf7\x7f\x51\xf8\x5c\x0a\x46\x1b\x7d\xaf\x05" + + "\x17\x8f\x56\xd2\xc4\x1b\x94\x4c\xcc\x9b\xdb\x85\xf2\x17\xc8\xa9\x90\x7e\x29\x28\x4a\xce\xbe\x4a\xcf\x64\xfb\x7c" + + "\x43\x8e\x3a\x73\xbf\xc9\xf2\x4e\x67\x1e\x0b\xba\x02\x60\x34\x74\xa8\x58\xf2\x42\x10\xea\x44\x9d\xce\xee\xd0\x6d" + + "\x25\x76\xc7\x10\x16\x44\x42\x46\x5e\xe2\x0a\x42\x70\xee\xee\xbc\x9f\xbe\x7f\x89\xab\xf5\xda\xb9\x69\xf1\xb0\x14" + + "\x7a\x0d\xcf\x93\x10\x1c\xe7\x12\xee\x5a\x44\x80\x5e\x5a\xf3\xc4\xa4\x68\x8f\xf5\x41\xf5\x41\xf4\x21\xeb\x83\xec" + + "\x03\xe9\x43\x79\xc8\x0c\xc0\xde\x77\x7f\xb2\x6e\xfb\x9e\x93\x62\xa5\x59\xa2\xfe\x19\x7f\xc2\x44\x77\x3f\x40\x08" + + "\xf2\xe6\x88\x5b\x9a\x7d\xfb\xf3\xed\x1b\xec\x54\x1d\xe3\x02\xf4\x0c\x97\xf7\x79\xc3\xee\x7d\x36\x02\xef\x3f\x5c" + + "\x7a\x55\xad\xf2\x1e\x91\x59\x5d\x22\xd7\xea\xf2\x40\x6e\xdd\x6f\xd8\x0b\x08\x61\x08\x7f\x03\x8e\x4b\x78\x4e\x34" + + "\xf6\x2e\x0f\x6d\x21\x10\x82\xf2\x12\x89\x44\xe3\x8b\x02\x0d\x5a\x4f\x5c\xf6\x8f\xec\x28\x2d\x5f\x86\x7a\xc3\xa4" + + "\x7e\x58\xfd\x4e\xb2\x37\xa4\xc4\x9e\xb8\x7c\x3f\xf8\x70\x84\xeb\x11\xb5\xe2\x89\xd1\x7f\x4c\x52\xd2\x10\xb2\x43" + + "\x42\xe9\x55\x44\x22\xd7\x6f\x04\x45\x8f\x71\x85\x52\xff\x80\xa9\x90\xd8\xb3\x5e\xdf\xe3\x5e\x5f\xf6\x96\x8c\x53" + + "\xb1\xec\x03\x15\x89\xf5\x42\x1f\xba\x4d\x2e\x74\xfb\xd0\xf5\xfd\xe5\x72\xb9\xc9\x65\x97\x6c\xa3\x62\x33\xfa\x7e" + + "\xf5\x49\x19\xd6\x8c\x74\x0f\xdc\x92\x91\x5e\xb7\x71\x49\xb7\xdf\x64\x52\x1f\xba\xad\x7a\x78\x8a\x5f\x21\xa7\x06" + + "\xad\x22\x19\x9a\x42\xb4\xcf\xb3\xbe\xcf\xd7\x5d\x8a\xdf\x6f\x51\xb6\xb0\xf9\xcd\xc9\x82\x65\xc4\x56\xc6\x68\x4f" + + "\x81\xe5\xd8\x5c\x0c\x4b\x49\xaa\x0a\xe5\x01\x87\xe5\x22\xdb\xf2\x72\x82\x68\x19\xf2\x61\xbb\xac\xcf\xfd\x7c\x78" + + "\x02\xc5\x27\x27\x36\xeb\xdd\xc5\x94\x33\x4a\x91\xbb\x5f\xd4\x39\x25\x05\x8b\xda\x96\xe4\xa2\xc4\x93\x98\x8d\xb2" + + "\x82\x3d\x06\xe6\x42\x91\xb2\x2a\x50\x39\x51\xf3\x00\xb5\x42\x48\x88\x42\xf5\xff\x43\x9b\xcb\x82\x24\xda\x89\x36" + + "\x0f\x50\xff\x55\xd0\xb9\x5f\x17\x07\x01\xf3\x29\x5b\x44\x9d\x83\xe5\xa6\x1c\xa2\x3d\xee\x36\xe2\xc6\x39\x2d\x3f" + + "\x9e\x8f\xf3\x69\x6b\x62\xe9\x9f\x8b\xf4\x68\x8b\x63\x12\xd2\xb5\x77\xb1\x13\xdd\xdd\x79\x3f\xb2\x02\xcd\x75\xb9" + + "\x5e\xcf\xfd\x7c\x74\x4e\x7a\x12\x99\x52\x7e\x0d\xf3\xd8\xc8\x3c\x6b\xae\xd3\xdf\x57\x95\x15\x8b\xa3\xb9\x9f\x4f" + + "\xce\x8b\x2a\xf6\xf5\x50\xf4\x15\xf2\x4c\xe7\xf0\x0d\x52\x21\x4b\xa2\xc1\xb9\xe8\x5f\x5c\x5c\x78\x4e\x03\x07\xf1" + + "\x4a\x9b\x48\x1a\xd0\xd3\xa8\xdb\x68\xdd\xdd\x79\xef\x64\xb1\x5e\x3b\xdb\xb7\x8b\x35\x77\x13\x4d\x20\xd6\xdc\x89" + + "\x60\x7b\x41\xcc\x7d\x16\xd9\x44\x6e\x5c\xf4\x80\x9f\x5a\x0e\xff\x2c\x13\x41\xf1\x4c\x56\xef\x04\x58\x99\x35\x37" + + "\x19\x25\x9a\x5c\xb3\x92\x64\xe8\x57\x3c\xbb\x89\x89\xc2\x60\xd2\xbf\xbb\xf3\xfe\xf5\xeb\x33\x41\x71\xbd\x76\xce" + + "\xe9\xdc\x24\xc3\xd9\x13\x2e\xc5\x12\x08\x67\x25\xd1\x68\xfa\x21\x8a\xbf\xf0\xe7\x62\x79\x58\x13\xa0\x5d\x39\x4c" + + "\x8f\xe4\x6a\x94\x25\xe3\xa4\xd8\x39\x07\x62\xf1\x05\x12\x51\xb8\x25\x75\x67\xb0\x7d\x12\x69\xaa\x50\xbb\x23\xbb" + + "\xfe\xa2\xdc\xe1\xe8\xdc\x49\x6e\xd9\xb4\xc5\x76\xb5\xa8\x9c\x73\x51\xda\x4f\xfa\x93\x86\x1e\xd9\xb8\xdd\x80\x4a" + + "\xda\xba\xe9\x5a\x97\x3e\x10\x85\xf9\x82\x51\x14\x60\xdc\xef\x26\xa2\x10\x32\x74\x2e\xd2\x20\x9d\xa5\x33\xa7\x09" + + "\xcc\x7d\x8e\xd8\x76\xc4\x39\x4c\x60\xd3\x66\x58\x8c\x07\xc3\xf3\x88\xed\x53\x5b\x47\x99\xb6\x77\xf4\xfd\xcd\xd9" + + "\xdf\xae\x53\x21\x34\xca\xc7\x9c\xff\x3d\x0e\xdb\x72\x85\xce\xb9\xb0\x6d\x0f\x4b\xcc\x74\x22\x18\xbf\x1e\x06\x93" + + "\x55\xfc\xeb\xeb\x57\x71\x36\xa4\x79\xfe\xc7\x1f\xec\xdd\xed\x9f\x9a\xbd\x91\xd3\x4f\xef\xf2\xd7\x2f\xe9\x3f\x3e" + + "\xff\xec\x40\x41\x62\xd3\xaa\xfe\xd0\x88\x7c\xf7\x5c\xf0\xe6\x1e\xda\xea\x5a\x0a\x49\x5d\x63\xd2\x35\xc4\x12\xc9" + + "\xad\x6b\x36\x6e\x1e\x0a\x93\x39\x28\xb1\x90\x14\x65\xe8\x0c\x36\xa1\x01\xdf\x46\x57\xf9\x1b\xd3\x4c\x1f\xbd\x53" + + "\x51\x12\x99\x31\x7e\x0d\x03\x20\xb5\x16\x37\xe7\xc0\x4f\xdf\x4f\x2d\x2f\x9f\x8f\xc5\x03\x51\xda\x1d\xeb\xad\x85" + + "\xaf\x44\x26\x5c\x21\x09\xcf\xb0\xb1\x92\x14\x3a\x74\x7e\x14\x35\xa7\x48\x4d\xef\xff\xb3\x28\x0a\xc2\xe9\x61\x7c" + + "\xaa\xe8\x35\xa1\x08\x4b\xa6\x73\x98\xb3\x6d\x30\xcd\xd0\xe0\xe6\x48\xa4\x36\xd9\xc7\x4c\xc5\xbb\x8f\x93\x19\xd2" + + "\xae\x7d\x3f\x2e\x44\xe6\xd1\x5a\x27\xb9\xa9\x43\x52\x79\x4c\xf8\x0e\xd8\xca\x1d\x3a\xcf\xcd\x3e\x3c\xb3\x04\x27" + + "\x6a\xaf\x8e\xfc\x31\xf7\xab\x33\x37\x8f\xbf\xcd\xb7\xcd\xba\x6d\x80\xba\xf6\xfd\x8c\xe9\xbc\x8e\x6d\x93\xd4\xb2" + + "\xc3\x6f\xb5\x0c\xbe\x13\x35\xae\x6a\x42\x56\x09\xc5\x4c\x9a\x5c\x03\x89\x95\x28\x6a\x8d\x37\xa0\x45\x75\x0d\x83" + + "\x1b\x90\x2c\xcb\xb5\x7d\x6a\xb2\xc0\x3c\x6e\xd2\x60\xab\x2f\x21\xa5\xf0\x1a\xa5\xb5\x42\xb9\x99\xda\xac\xfe\xf1" + + "\x0c\xd3\xd9\x30\x9d\x91\x84\x04\x93\x38\x7e\x4a\x82\xc9\x64\x32\xa3\x03\x3a\x1d\xa4\xc3\xf1\x60\x86\xe9\xd5\x78" + + "\x32\x24\xb1\x1f\xcc\xa6\x93\xe9\x64\x3a\x98\x8e\xc7\x64\x94\x8e\xd2\xe9\x78\x3c\x1e\x61\x30\x0c\x68\x30\x9c\x92" + + "\x20\x0d\x30\x18\x4e\xa7\x53\xb3\x37\x0e\xd2\x80\x8e\xd2\x60\x1a\x3c\x9d\x4e\x82\xd9\xf4\x2a\x18\x8d\xd2\xe9\x28" + + "\x78\x1a\x8c\x82\x91\xe1\x9c\x8e\x47\x69\x10\x04\x66\x2f\x0e\x68\x70\x75\xd5\x50\xa7\x46\xc7\x55\x1a\x4c\x82\xa1" + + "\xa5\x8c\x82\x64\x7a\x65\xa8\xe3\xe1\x78\x34\x1e\x8e\x03\xf3\x7f\x84\xd3\x41\x80\xc1\x74\x97\x28\xf2\x16\x4a\x04" + + "\xc1\xe1\x27\xa6\x7f\xae\x63\x67\x53\xb1\x08\x17\x9c\x25\x66\xfc\x6c\x7b\x42\x8d\x3d\x52\x92\xaf\x82\x93\x65\xd3" + + "\xa4\x36\x5e\xf1\x25\x8b\x63\xc1\x95\x9f\x0a\x79\x5b\xe2\x47\xeb\xd3\x8f\x94\xc8\xdb\xb8\xa8\xf1\xe3\x70\x34\x0c" + + "\x46\x43\x9b\x9e\x91\x4d\x83\xf3\x53\x51\xef\xcc\x94\x61\x66\x25\xe3\xfb\x7f\x0b\x96\xe0\xfd\xc8\xf4\xae\xb5\x75" + + "\x62\x72\xda\x93\x38\x39\x40\x59\xdc\x05\x84\xbb\xee\xfc\x60\xc6\xd8\xb6\xea\x07\x9d\x74\xbd\xf0\xec\xc7\x9f\x10" + + "\x9a\x29\xf2\x13\x59\x90\x0d\xe7\x11\xe3\x76\xc0\xd0\xb2\xc6\x23\x62\x33\x62\x98\x31\x80\xd1\x0c\xb5\x67\x2c\x5e" + + "\x18\x8b\xad\x77\x8f\xde\xd0\x8c\x02\x37\x47\x2f\xa0\xda\xf6\x9f\x9c\x7d\x76\xaf\x71\x34\x02\xa9\xb3\xc3\x4c\xbd" + + "\xe8\xc3\xde\xc4\x76\x3f\x1c\xac\x2f\x7b\x97\x0f\x4e\x0a\x87\x5f\xc3\x3a\xed\xca\xb3\xeb\x89\xa4\x58\x2a\xcc\x49" + + "\x55\xad\x9c\xe8\x3f\xa2\x06\x22\x4d\xc3\xcc\x78\x06\x84\xc3\x5c\x69\x29\x78\x16\x89\x5a\x53\xd3\x61\xcc\xfd\xcd" + + "\x06\x34\x72\xd2\x83\xb7\x05\x12\x85\xc7\x05\xea\x1e\xd7\x7a\xd1\x89\xea\x2a\x93\xa6\xda\xad\x44\x2d\xb7\xe2\xb6" + + "\xed\xd2\x02\x58\x59\x49\xb1\xd8\xd0\xf0\x4b\x85\x92\x21\x4f\xd0\xdb\x2f\x4f\x7b\x5f\xb6\x36\x9b\x9b\xdf\xa3\x6c" + + "\x3e\xf8\x82\x60\x3f\x9e\xec\x7f\x35\xb8\xf7\xc6\xb6\xc4\x9d\x94\x4c\x6e\x8f\x24\x3b\x73\x3f\x16\x74\x65\x1f\x9a" + + "\x2f\x8f\xff\x0d\x00\x00\xff\xff\xe6\x9c\x1e\x7b\x8a\x14\x00\x00") func bindataDistDownloadvideohtmlBytes() ([]byte, error) { return bindataRead( @@ -907,10 +918,10 @@ func bindataDistDownloadvideohtml() (*asset, error) { info := bindataFileInfo{ name: "dist/download.video.html", - size: 5124, + size: 5258, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -13454,7 +13465,7 @@ func bindataDistImagesLogoorangepng() (*asset, error) { size: 9074, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447116, 0), } a := &asset{bytes: bytes, info: info} @@ -13705,7 +13716,7 @@ func bindataDistImagesBitcoinpng() (*asset, error) { size: 6157, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447115, 0), } a := &asset{bytes: bytes, info: info} @@ -14419,7 +14430,7 @@ func bindataDistImagesReviewsDavejpg() (*asset, error) { size: 19244, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447115, 0), } a := &asset{bytes: bytes, info: info} @@ -15265,7 +15276,7 @@ func bindataDistImagesReviewsJacobjpg() (*asset, error) { size: 23068, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447115, 0), } a := &asset{bytes: bytes, info: info} @@ -16000,7 +16011,7 @@ func bindataDistImagesReviewsKareemjpg() (*asset, error) { size: 19806, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447115, 0), } a := &asset{bytes: bytes, info: info} @@ -16658,7 +16669,7 @@ func bindataDistImagesReviewsLarsjpg() (*asset, error) { size: 17702, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447115, 0), } a := &asset{bytes: bytes, info: info} @@ -17758,7 +17769,7 @@ func bindataDistImagesReviewsPgjpeg() (*asset, error) { size: 30023, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076318, 0), + modTime: time.Unix(1530447115, 0), } a := &asset{bytes: bytes, info: info} @@ -18297,7 +18308,7 @@ func bindataDistIncludesDownloadbottomhtml() (*asset, error) { size: 78, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18337,7 +18348,7 @@ func bindataDistIncludesDownloadbtnhtml() (*asset, error) { size: 455, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18346,13 +18357,15 @@ func bindataDistIncludesDownloadbtnhtml() (*asset, error) { } var _bindataDistIncludesDownloadtophtml = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcd\x6a\xc4\x20\x10\x80\xef\x7d\x8a\x41\xaf\xdd\x08\xcb\x9e\x8a" + - "\xf1\x52\xe8\xa9\xc7\xf6\x01\xc6\x64\x12\x05\xa3\x41\x07\x4a\x6a\x7d\xf7\xd2\xda\xdf\x9d\xdb\xc0\x37\x1f\xf3\xc1" + - "\xd7\x68\x9b\x95\xb9\xf9\xd9\xdc\x19\xa6\x80\xa5\x8c\x62\xc7\x95\x4e\xec\x39\x90\x30\xb5\x0e\x0f\x3e\x50\xc4\x8d" + - "\x5a\xd3\xca\x9d\xff\x5e\x5c\x0c\x1f\x3b\xdd\x81\xb6\x1f\xdc\x7d\x8a\x4c\x91\x9f\x8e\xfd\x13\xb5\x46\x2b\x77\xf9" + - "\x8f\x17\xff\x7a\x8d\x3f\x52\x5c\xd9\xc1\x1b\x2c\x29\x6f\xc8\x20\xe4\xad\x94\x72\x10\x5d\x01\xf6\x60\x2a\x5d\xf4" + - "\x6b\x42\x70\x99\x96\x51\xd4\x3a\x3c\xe7\xd0\x9a\xf8\xfe\xdc\x72\x3c\x4d\x8c\x60\x39\x0a\x03\x73\x7a\x89\x21\xe1" + - "\xac\x95\x37\xa0\x15\x9a\x9e\xdc\xbb\xdf\x03\x00\x00\xff\xff\xe4\x68\x40\x9f\x06\x01\x00\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcd\x4e\xeb\x30\x10\x85\xf7\x7d\x8a\x91\xb3\x6d\x63\xa9\xaa\xee" + + "\xa2\xd7\xf1\xa6\x12\x2b\x36\x20\x78\x80\x71\x3c\x4d\x2c\x25\x76\xb0\x47\x45\xc1\xf8\xdd\x11\x84\xfe\xd0\xd9\x8d" + + "\xe6\x3b\x9f\xe6\xc0\xef\x28\x13\xa5\x5e\x5d\xb6\x7e\x0b\xed\x80\x29\x35\x62\xc2\x8e\x36\xec\x78\x20\xa1\x73\xae" + + "\x1f\xdc\x40\x1e\x47\x2a\x45\xc9\x7e\x7b\x9b\xd8\x69\x9e\x27\xda\x83\x32\xdf\xdc\x21\x78\x26\xcf\x2f\xf3\xf4\x83" + + "\x1a\xad\x64\xbf\xfb\x8b\x27\xf7\x71\x8f\x3f\x92\xef\xb8\x87\x4f\x38\x86\x38\x22\x83\xa8\xd6\x55\x55\xd5\x62\x51" + + "\x80\x99\x99\xd2\x22\xba\x9a\x10\xfa\x48\xc7\x46\xe4\x5c\xbf\xc6\xa1\x14\x71\xfe\xdc\xb0\xdf\xb4\x8c\x60\xd8\x0b" + + "\x0d\x36\xbc\xfb\x21\xa0\x55\xd2\x69\x50\x12\xf5\x52\xf9\xae\xb7\x75\xa7\x73\xfc\x2d\xb6\xc1\x92\xb8\x1e\x2f\x90" + + "\x1b\x3b\x48\xb1\x6d\x84\x45\xc6\xbd\x1b\xb1\x23\x39\xf9\xee\xbf\xc1\x44\xff\x76\xeb\x9c\xeb\xa7\xe7\x43\xb0\x54" + + "\x8a\xb8\x75\x4b\xeb\x4e\x7a\xf5\x15\x00\x00\xff\xff\xbc\x36\x48\x07\x71\x01\x00\x00") func bindataDistIncludesDownloadtophtmlBytes() ([]byte, error) { return bindataRead( @@ -18371,10 +18384,10 @@ func bindataDistIncludesDownloadtophtml() (*asset, error) { info := bindataFileInfo{ name: "dist/includes/download-top.html", - size: 262, + size: 369, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18438,7 +18451,7 @@ func bindataDistIncludesFooterhtml() (*asset, error) { size: 1695, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18481,7 +18494,7 @@ func bindataDistIncludesGahtml() (*asset, error) { size: 634, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18526,7 +18539,7 @@ func bindataDistIncludesHeadhtml() (*asset, error) { size: 749, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18559,7 +18572,7 @@ func bindataDistIncludesJshtml() (*asset, error) { size: 52, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18596,7 +18609,7 @@ func bindataDistIncludesNavigationhtml() (*asset, error) { size: 436, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18810,7 +18823,7 @@ func bindataDistIndexhtml() (*asset, error) { size: 24948, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -18906,6 +18919,123 @@ func bindataDistRobotstxt() (*asset, error) { return a, nil } +var _bindataDistScriptsCkinjs = []byte( + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\xfb\x6e\xe3\x36\xd6\x7f\x15\x87\xf8\x3e\x87\xac\x19\x4d\xdc\xc1" + + "\xce\xce\x5a\xc3\x09\xa6\x69\x06\x0d\x30\x97\x62\x92\xb6\x0b\x04\xd9\x01\x25\x1e\xd9\x4c\x64\x52\x95\xa8\x5c\x1a" + + "\xfb\xdd\x17\x24\x25\x4b\xb2\x64\x77\x5a\xec\x62\x17\xd8\xf9\x4f\x3a\xd7\xdf\xe1\xe5\x5c\x98\x94\x2a\x36\x52\xab" + + "\x51\x94\xeb\xfb\x02\xf2\x0b\x25\x93\x04\x93\xa7\x3b\x9e\x8f\x38\x8d\x68\x4c\x05\xc3\x8a\xdf\xc9\x39\x37\x3a\x0f" + + "\x78\x96\xfd\x0c\x79\x21\xb5\xa2\x0d\xb1\x2c\x20\x7f\x33\x07\x65\x08\x05\xd6\x91\xfd\xc0\x97\x40\x13\x86\xd0\x24" + + "\xe3\x79\x01\x6f\x53\xcd\xcd\xa0\x35\x42\xe7\xcc\x89\x9c\xab\x61\x01\x3a\x3d\x26\x61\x0e\xa6\xcc\xd5\xd1\xf4\x80" + + "\xb1\x21\x99\x40\x2a\x01\x0f\x1f\x13\x8c\x7e\x91\x4a\xe8\xfb\x62\xf4\xe1\x12\x91\xf1\xf8\x0b\x14\xf2\xbb\xd9\x74" + + "\x8a\xc8\x09\x06\x86\xce\xcf\x90\xc5\x3c\x9d\x86\x88\xcc\x9c\x2e\x8e\x98\x68\x64\xdf\x5f\x9c\x9f\x21\xd2\x96\x15" + + "\x41\x51\x46\x85\xc9\xa5\x9a\xe3\x68\xf2\x17\x32\xa8\x76\xba\xc8\xf5\x12\x6a\xc5\xea\xaf\xa7\xfc\xd7\x61\xe5\x0b" + + "\x9e\xf0\x5c\xd6\xca\xd5\xdf\x80\x32\x1d\xd0\xad\x82\x45\x84\x8c\xc7\x78\x5b\xe5\x25\x19\x76\xf8\x56\xe6\x90\xe8" + + "\x87\xda\x63\xfd\xdb\x73\xf9\x92\x90\x19\xe6\x4c\x04\x29\x2f\xcc\x79\xad\x3d\x42\x64\x32\x25\xaf\x9c\xc9\x0e\xe3" + + "\x99\x47\x01\x1d\x2b\x9c\x46\xa4\x67\x78\x4a\x28\x04\x46\xbf\xd3\xf7\x90\x9f\xf2\x02\x30\x61\xcc\x12\x7e\xca\xb2" + + "\x9a\xe0\x0c\xf5\xce\x1b\xa9\x17\x21\x66\x49\x13\x4f\x58\x87\x9f\xb4\xbc\x1c\xd3\x78\x58\x7a\xb4\x5b\xba\x75\x4e" + + "\x11\x9a\x24\xf6\x5c\x52\x59\x7c\xe0\x1f\xf0\xdc\xab\xfc\x8b\x0e\x3b\xa1\x57\x40\xe7\xd7\xeb\xcd\x05\x2d\x16\xfa" + + "\xfe\x54\x2b\x93\xeb\xb4\xc0\x9c\x3c\xf1\xa0\x00\xf3\xc6\x98\x5c\x46\xa5\x01\x8c\xe2\x8a\x87\x68\xf3\x49\x1a\x75" + + "\xa3\xe7\xf3\x14\x7e\x4c\xf9\x23\x76\xf7\xda\x5f\x71\xc1\x78\x90\xf1\xb2\x00\x71\x82\xb2\x94\x3f\xa2\x19\x72\xbf" + + "\x28\xe4\x57\xe2\x1a\x13\x1a\x8f\xc7\x78\x23\x12\x05\x71\xca\x8b\xe2\x9d\x2c\x4c\x90\xc3\x52\xdf\x01\x46\xb2\x38" + + "\xb2\x8a\x52\xcd\x11\x99\xb5\x05\xb8\x10\x5d\x6e\x0b\x4c\x99\x09\x6e\xe0\xbb\xd2\x18\xad\xdc\xf6\x3b\x30\x71\x03" + + "\x46\xc6\x5a\x59\xac\x33\xf7\x61\x69\x61\x14\x24\x3a\x3f\xe3\xf1\x02\xd7\x66\xec\x2a\xf8\x94\x30\xe2\x81\x54\x0a" + + "\xf2\x1f\x2e\xdf\xbf\x63\xf1\xba\xe5\xa9\xb8\x95\x19\x26\x4f\x4b\x10\x92\x07\x71\x99\xe7\xa0\xcc\xa5\x5c\xc2\x84" + + "\xb5\x36\xc9\x2c\x64\x11\x08\x6e\x78\x01\x26\xb0\x1a\xbd\x75\xfb\x59\xa7\xe5\x12\xba\x50\xef\x1c\x8d\x0a\x66\x31" + + "\x7a\x81\xf7\x20\x64\xb9\x0c\xa7\x8c\xc5\x27\x38\x66\xc7\x5d\x66\x69\x80\xcc\x82\x17\x2f\x2a\xee\xb4\xc3\xfd\x41" + + "\xce\x17\x64\x16\x3c\x7f\x5e\x71\x83\x17\x2f\x06\x4c\x93\x99\x65\x3d\x7f\xde\x61\xbd\xd3\xf7\x84\xd6\x78\x58\x4c" + + "\xa3\xd6\x62\x88\x26\x92\x05\x57\x22\x85\x4f\x5c\xcd\xe1\x27\xb7\xfe\xf5\xba\x5c\xb9\xf8\x15\x5f\xc2\x35\x73\x9f" + + "\x77\x3c\x2d\x61\x5b\xf1\xc7\x5c\xcf\x73\x28\x8a\xed\xe3\xd3\x5a\xd4\x67\x3c\x10\x65\xce\xad\xd2\x37\xd3\xe3\xe3" + + "\x30\x0a\x0a\xf3\x98\x42\x90\xa4\xf0\xf0\x1d\x2f\x64\xc1\xc4\x04\xfd\x3f\xa2\xb1\x07\x78\x09\x0f\x86\x25\x3a\x5f" + + "\x72\xa7\x8d\x3b\xb6\xc8\x04\x3d\x43\x93\x0e\xb7\xb6\xdd\xde\xde\x38\x2f\x23\x5c\x15\x2a\x8f\x09\x18\x0f\x74\x92" + + "\x14\x60\xfe\xfe\x2c\xae\xbe\x7e\x91\xc2\x2c\xbe\x89\x36\x16\xc2\xa8\xed\x8a\x01\x15\xc3\x88\xa2\xbd\x88\xa2\x21" + + "\x44\x6d\xc4\x1e\x50\xc4\x14\xdc\x8f\xbe\xb7\x0b\xae\xca\x34\xad\xcb\xd8\x28\xb2\x17\xf8\x02\x62\xad\x84\xbd\xd0" + + "\x34\x0a\x8c\x3e\xbf\xf8\x78\xe1\xb3\x0d\xa9\x32\x0f\x9e\x4e\xe9\xcb\x96\xfd\xfb\x9c\x67\xf6\x66\x40\x5e\xd4\x65" + + "\x9a\x09\x1d\x97\x4b\x50\x26\xf8\xb5\x84\xfc\xf1\x02\x52\x88\x8d\xce\xdf\xa4\x29\x46\x77\x52\x80\x46\x24\xe4\x83" + + "\xb7\xc7\xc3\xdb\xa8\xc7\x39\x70\x03\x67\x29\xd8\x3f\x8c\x84\xbc\x43\x24\xec\xdd\xe9\xf8\x56\xaa\xcf\x9f\x33\x87" + + "\x01\xd9\x83\x97\x71\xbb\x44\x1f\xb4\x80\x40\xaa\x02\x72\xf3\x1d\x24\x3a\x07\x1c\x51\x17\x15\xcf\x32\x50\xe2\x74" + + "\x21\x53\x81\x39\x59\x93\x70\xcb\x6b\x1f\x34\x2f\x85\xd4\xce\xf5\xbf\x0b\x74\x8f\x5f\xb9\xfc\xe3\xd1\x34\x3b\x13" + + "\x95\x32\x15\xed\x0c\xed\x81\x5e\x5d\x37\x1b\x9e\x95\xc5\x02\x1f\xbe\x8a\x5c\xe2\x1b\x39\x08\x0c\x1d\x4e\xf8\xe4" + + "\xf0\xf3\x67\x4f\x3c\x3a\x8a\xe4\xbc\x4a\x3a\x68\x64\xa4\x49\x81\xa1\x4b\xf7\x3b\xb2\xdb\x8e\x5e\x1f\x4e\xea\xe4" + + "\x38\x41\xaf\x9e\x79\xad\xd7\x2e\xa4\xca\xba\x90\x77\x5b\xa6\xeb\x7a\x30\xf2\xab\xb0\x29\x0f\xaf\x0f\x5b\x6a\x7b" + + "\x40\xed\xc0\x63\x53\x12\xdf\x05\x88\x76\x80\x64\x55\xf2\x40\xaf\x0f\x87\x19\x9f\x3f\x27\x32\x4d\x41\xa0\xd7\xaf" + + "\x9e\x09\x79\xe7\xc4\xb2\xbe\x50\x94\x03\xbf\x85\xdc\x4a\x65\xbb\x4d\x19\xb9\x84\xc6\x10\xf2\x1f\x16\xd1\xbe\x18" + + "\x7d\xfa\xdc\xc4\xe8\x53\x6b\x1d\x5d\x3b\x07\x6f\x45\xb9\xcf\x66\x52\xa6\x69\x11\xe7\x00\x6a\x63\xf7\x6d\x99\xa6" + + "\xa3\x0b\x4f\xab\x8c\x9f\x3d\x64\x5c\x89\xc1\xdd\xac\xb1\x5b\xc2\x8d\x96\x0a\xa3\x76\x4d\xe7\xc6\xf0\x78\x71\x71" + + "\x2b\x5b\xa5\x10\x95\x4a\x40\x22\x15\x08\x74\xc0\xcc\x63\x06\x3a\x19\xf1\xf1\x18\xa1\x03\xc6\x4f\xf8\x0c\x09\x48" + + "\x78\x99\x1a\xd4\x6d\x2c\x2e\x2d\x38\x5f\xde\x76\x9b\x89\xbc\x99\xe8\x64\xe8\x8c\xb9\xf0\x6c\x44\xd1\xa4\x06\x3d" + + "\x3b\x98\xb6\xb0\x0a\xf1\xf1\x0e\xf2\xaa\xff\x20\x4f\x32\xc1\x53\xc6\x22\xc2\x87\x6f\xaa\xf6\xb2\x88\x84\x90\x16" + + "\x60\xa5\xbf\x3d\x60\x11\xf1\xe0\xc2\xfd\x4a\x47\x47\xdf\x22\xb2\xee\xb8\x3e\xd5\xa9\xce\x37\x8e\xf7\x05\xd7\xd4" + + "\xf7\x7e\x5e\xf2\xdb\x83\x08\x15\xdb\x6c\x8c\x82\xde\x49\x26\xa1\xa8\xea\x5f\xc4\xe3\xdb\x79\xae\x4b\x25\x58\x44" + + "\xe3\xfd\x7d\x8c\xd7\x88\x2d\x5e\x16\xad\xdb\x61\xf8\x4b\x68\xcf\x8f\x3f\x3e\x3e\x9c\x4d\x1e\x6c\xce\x5a\x95\x0b" + + "\x57\xab\x0d\x6f\xa9\x7f\x6b\xf4\xfa\xec\x7b\x88\x6e\xa5\x79\xbb\xcf\x40\xd1\xe3\x9e\x60\x3e\xd0\x0e\xfa\x8d\x68" + + "\x9d\x7b\x42\x9b\x4c\xcd\x55\x0c\x69\x03\xe4\x64\x27\x07\x93\x59\x1b\xfb\xe9\x4e\xc5\x01\x66\x5b\xd7\x07\xb6\x5b" + + "\x7d\x98\xdf\xf1\x5e\x9c\x3d\xb4\x97\x66\x3c\xde\xc9\xc2\x76\x10\x68\x7e\xd9\xc1\xb4\xd3\x89\x35\x37\xdd\x4e\x4c" + + "\xc3\x07\xb8\xb3\x6e\x3c\xc8\xe1\xd7\x12\x8a\x96\x8b\x93\x01\x1a\x26\x33\x6e\xd7\xe1\x53\xc3\xb8\xa8\x85\x87\xc8" + + "\x4e\xde\x07\xfe\x69\xc0\xfe\x0e\x8e\xf7\x52\xf4\xe8\xe3\xf1\x20\xb9\xb7\x16\xc7\xbd\xb5\x38\xd5\xcb\xcc\xde\x97" + + "\x56\x3e\xd3\x6a\xfb\x74\xfb\xbb\x68\xdb\xa6\x03\xc6\x7e\xef\xbc\x86\xf1\x6a\x85\x87\x66\x94\x81\xc5\x8d\x7a\xf7" + + "\xb7\xcd\x1e\xde\xb6\x4e\x46\xb1\x0e\x40\x41\xfe\xbe\x4c\x8d\xac\x7b\xe2\x44\xe7\xd8\xf7\xc5\x51\x50\x64\xa9\x34" + + "\x6e\x94\xa4\xc0\x8e\xdd\x7c\x9b\x82\x9a\x9b\x45\x98\xbc\x86\x10\x26\x13\xc2\xed\xd6\x9f\xdd\x81\x32\xb5\x31\x2c" + + "\xae\xe0\x9a\xc6\xf4\x60\x4a\xd6\x07\x9b\xf4\x40\x9e\x1a\xc7\x36\x57\xb8\x1e\x1d\x7c\xcc\x8c\xaf\x7d\x9b\x31\x90" + + "\x4c\x6c\xdb\xf9\x09\xe6\x67\x0f\x19\x46\xf8\x1f\xab\x11\x41\x13\x3e\x41\x78\xb4\xfa\x3f\x82\xc8\x9a\xc6\x2d\x9d" + + "\x6d\xf8\xc7\xa1\x78\xc5\x6b\xbc\x62\x32\x21\x51\x10\xf3\x34\xc5\x31\xb5\x73\x21\x59\x87\xdc\xe6\x3b\xa3\x6d\xf2" + + "\x64\x4f\x5c\x88\x59\x0b\x6d\x8c\x79\x3e\x77\x3b\x55\xd0\x36\x2c\x87\xdb\x36\x1f\x5c\x2a\xdb\x20\xad\x56\xb8\x1d" + + "\x8a\xdf\x38\x3b\xc2\x4f\x18\x1a\xa1\x09\x27\x6b\x6a\xf9\x64\x4d\xfd\x46\x7e\xb1\x8f\x9e\x41\x36\x4c\x0e\x72\xc8" + + "\x52\x1e\x03\x8e\x6c\xff\x6d\x4b\x6b\xed\xd0\xe7\xda\xd9\xc0\xa2\x6e\x07\x71\xe2\x63\xa8\x8e\x1a\x27\x76\xef\x66" + + "\x9e\x66\x2f\xb6\x25\x1c\xdb\xc5\xae\x34\x86\x4c\x5a\xef\x81\x81\xc2\xec\x58\x0e\xb7\x00\x0e\xe8\xac\xbd\x63\x55" + + "\xb0\x8d\xe7\x8d\xd3\x88\xac\xd7\x14\x6d\xee\x01\x92\x6a\x54\x5d\x91\x66\xd7\x56\xab\x8f\xd1\x0d\xc4\x26\xf0\x95" + + "\xf0\xc7\x5c\x67\x90\x9b\x47\xdc\x13\x6c\x1b\xa2\x4f\x73\x30\xed\x6d\x68\x9d\x34\x8e\xfd\xda\xad\x09\xbd\x77\xcf" + + "\x6f\xc1\xf7\x1f\xdf\x5f\xea\x5b\x50\x56\x75\x3c\xb6\x97\x98\xb1\x36\xad\xf1\x51\x6f\xc4\x78\x8c\xf7\x0b\x30\xde" + + "\xa7\x91\x35\x26\xb4\x87\x09\xd5\x14\xc4\xea\x12\x6f\x7b\xfa\x2d\xb3\x55\x29\x3e\x39\x98\xce\xee\xb4\x14\x78\xb7" + + "\x08\x7b\x93\xe7\xfc\xb1\x4f\xb7\xde\xdd\x44\xa3\xa3\x1b\xf6\xb4\x0e\x75\x74\x13\x54\x6f\xa9\xe7\x2a\xd1\xac\xfb" + + "\xae\x4a\x5b\x6c\x77\x30\xb7\xc4\xaf\x8e\xaf\xdb\x22\xd5\x7b\x50\x4f\x6a\x7a\x4d\x3b\x73\xa0\x03\xe0\x87\x9b\x62" + + "\xdf\x60\x15\x6c\x8d\x41\x75\xe3\xce\x0e\x5f\xc9\xba\x9f\xb3\x22\xee\xd1\xc6\x76\xd0\xf2\xf5\x21\xdd\x3c\xc1\xf4" + + "\xa5\xdc\x53\x51\x4b\xac\x79\xe8\xe8\xc9\xfa\xf6\xfa\x68\x59\x9a\x01\x8d\x1f\xe4\x7c\xb1\x4b\x63\x21\xe7\x8b\x01" + + "\x1f\xae\x15\xdf\xe9\xc5\x71\xfb\x5a\xef\xf4\xfd\x2e\x95\x54\xdf\xb7\xe5\x7d\xca\xef\x09\x83\x23\xb7\x05\xeb\x32" + + "\xd6\x13\x8d\x2b\x46\x25\x1c\x56\xdb\xb3\x67\xa4\xed\xf5\x94\xf5\xf0\x2e\x13\x5c\x95\xc0\xa6\x3d\x6d\x5a\xff\x68" + + "\xf3\x74\x65\xfd\x92\x5e\x73\x1c\xfb\xe3\x61\x6b\x52\x2d\x58\x35\xca\x61\xa7\x29\x17\x5e\x0e\x58\x33\x10\xc4\xb4" + + "\xd1\x71\x0d\x3e\x09\xc1\x56\x7c\x3f\x18\xbf\x11\x37\x3c\x06\x65\x6c\x9d\xc4\x28\x72\x63\x32\x28\x81\x28\x78\x4b" + + "\x09\xeb\x8e\xc4\xb1\xc5\xf6\x3b\xaa\x89\x57\x9d\xb7\xc0\xba\x5e\x38\x6c\x35\xf1\x73\x2f\xb3\x18\x68\xc2\xd1\x24" + + "\x9e\xa0\xd6\x84\x4b\xa8\xdc\xd3\xaa\x23\x42\x6f\xbe\xa8\x93\xa7\xb7\x7b\xc5\xdc\xbc\x49\x68\x3a\x38\x34\x04\xd5" + + "\xf0\x4c\xe8\x92\xe1\x21\x81\x2b\x1b\xe8\x51\x71\x2b\xb3\x6b\xd7\xf5\x0d\x98\xa8\xc2\x2a\x52\x29\xaa\x37\x97\x6d" + + "\x30\xd5\xf4\x4a\x08\x55\x03\x50\xdb\xbd\x4d\x88\xce\xcf\xd0\x01\x63\x5b\x99\x68\xb5\x7a\xd9\x25\x56\xb9\x67\x3c" + + "\xfe\xdb\x20\x7d\xb5\xc2\x9d\x17\xe9\x88\xd0\x45\x35\xbc\x08\x59\xd8\xc3\xce\x90\xd2\x0a\x5c\xaf\xd5\xeb\x73\x50" + + "\x9c\xca\xf8\x16\xb5\xd3\x76\xeb\x81\xda\x16\x12\xca\x5d\xe1\x1c\xd6\x76\xe9\xa9\xad\xdc\x79\x50\x76\xea\xe9\x4e" + + "\x5d\x97\xb4\xfe\xa4\xb2\xdd\x69\x2f\xde\xb1\xb0\xf5\x42\xea\x6c\xdc\xd0\x5b\x6b\x25\xed\x5f\xf8\x78\x53\x37\xe3" + + "\x3f\xba\x32\x51\xbd\x2c\x6b\x42\x97\x7f\x40\xb9\x7a\xbf\x8e\xe8\xb2\x7e\x80\xd3\xec\x60\x1a\xca\x2f\x30\xc1\xc9" + + "\x53\xf3\xca\x2a\x7d\x50\x43\x7a\x4b\x5d\x16\xae\x15\xe9\xea\x56\x91\xea\xf1\xf8\xcb\xad\x08\x7d\xaf\x50\xbf\xa4" + + "\x5b\xcc\xc7\xfb\xf4\xca\x6c\x87\xd6\x74\x4d\xa8\xfa\x82\x58\xa3\xa6\xcd\xeb\x0f\xdb\xca\x62\xee\x76\xfe\xb6\xf1" + + "\x47\x7e\x1a\x69\xae\x58\xbc\xe0\x6a\x0e\xa3\xa5\xfe\xad\x47\xeb\x11\xde\x5f\x34\x53\xcc\xa9\x23\x0d\xa2\xe9\x0c" + + "\x46\x11\x75\xef\x8e\x6b\x42\xff\x44\x49\xa9\x9f\x56\xbf\x96\x94\xaf\x25\xe5\x7f\xb1\xa4\x4c\xbf\x96\x94\xa1\x92" + + "\x32\xfd\x5a\x52\xfe\x4b\x4a\x8a\xf9\xcf\xd6\x94\xf0\x9f\x01\x00\x00\xff\xff\xc8\x47\xa8\x7f\x11\x24\x00\x00") + +func bindataDistScriptsCkinjsBytes() ([]byte, error) { + return bindataRead( + _bindataDistScriptsCkinjs, + "dist/scripts/ckin.js", + ) +} + + + +func bindataDistScriptsCkinjs() (*asset, error) { + bytes, err := bindataDistScriptsCkinjsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{ + name: "dist/scripts/ckin.js", + size: 9233, + md5checksum: "", + mode: os.FileMode(420), + modTime: time.Unix(1530447117, 0), + } + + a := &asset{bytes: bytes, info: info} + + return a, nil +} + var _bindataDistScriptsMainjs = []byte( "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\xfd\x96\xdb\x36\xf2\x28\xf8\xff\x3e\x45\x8b\xe3\xcb\x00\x16\xa4" + "\x96\x9c\xc9\xdc\x1d\xca\x68\x1d\x27\x8e\x63\x27\x4e\xec\xc4\xce\x4c\xe6\x47\x31\x39\x20\x09\x52\xd4\x07\x29\x53" + @@ -20417,248 +20547,243 @@ var _bindataDistScriptsMainjs = []byte( "\xb6\xed\xbe\x21\x5e\x4e\x57\x4f\x2f\x7e\xcb\x33\x85\x72\x4b\xf5\x1a\x61\x63\x5a\x0c\xf6\xa3\xa0\x87\x14\x0c\xa9" + "\x32\xae\x6e\x57\x3e\xfb\x2d\x95\x1f\x7d\xe5\xe6\x20\x68\xdb\x81\x9b\xcb\xaf\x61\xc7\x4f\x05\xd7\x8a\x47\xe4\x62" + "\xaa\x74\xd4\x6a\x9f\xe3\xa7\xaa\xcd\x72\x1f\x6d\xe1\x2f\x09\xe9\xb2\x31\x95\x20\x8d\x71\x04\x69\xcc\x21\x48\x63" + - "\x00\x41\x94\xd9\x03\x08\x41\xbb\x77\x0c\xb6\x9c\x16\xfd\xf4\xc3\xb7\x85\x13\x64\x60\xc6\xf4\xff\xd1\xf6\xfc\xdd" + - "\x6d\xdb\x48\xfe\x7f\x9f\x82\x46\x5c\x19\x30\x61\x4a\x76\xd3\xee\xad\x24\x88\x9b\x1f\xce\x6e\x5e\xda\x6c\xaf\x49" + - "\xf7\xfa\x8e\xa4\x53\x90\x84\x28\xda\x14\xa9\x88\x74\x1c\xd7\xa4\x3f\xfb\x3d\x0c\xf8\x5b\x54\xec\x66\xbb\x6d\x9e" + - "\x45\x82\xc0\x00\x18\x0c\x66\x06\xc0\x60\x66\xc5\x3f\x09\x8d\xc7\xb7\x5a\x20\x62\xb1\xe5\x51\x74\x5b\x7a\x8d\xf7" + - "\xb5\x55\x28\xb6\x92\x67\x85\x1e\x8f\x34\xaf\x62\x15\x69\x79\xc2\xdd\x31\x98\x87\x33\xb7\xd2\x77\x3a\xdc\xcb\xe9" + - "\x4d\x96\x3c\xc7\x3b\x69\x8c\xf7\x53\x86\x55\x36\x52\x9b\xff\x4a\x1a\x74\xd9\x44\x8a\x6d\xcb\x75\xc0\x2d\x57\x05" + - "\xd5\xf2\x9c\x1a\x9e\xe5\x35\x31\x10\xda\x54\x6f\x22\x03\x4e\x1d\xfc\x3d\x47\x57\x27\x67\xb0\x95\xd0\x3b\x17\x18" + - "\x23\xb8\xe1\xd3\x96\xaa\xbc\xa3\xe6\xf8\x9d\x69\xd0\xee\x69\xe5\x45\xaa\x33\x93\xaa\x63\x49\xbf\xdc\xbd\xdf\x39" + - "\x02\xa9\xcf\xa3\x71\x1b\x91\xb2\x5e\xcc\x4d\xae\x97\x27\xb1\xba\xdf\x6b\x44\x77\x69\x02\x83\x50\x2e\x39\xa8\xaf" + - "\x58\xa6\x52\x27\xf6\x51\x1e\x5d\xd2\xa0\x43\x7d\x1d\x0e\x19\x2e\x71\xf0\x9f\xa5\xa7\x9a\x7c\x3a\x62\xc0\x65\x55" + - "\xb5\xe0\xad\xab\x7c\xf4\x59\xd0\x9c\x7d\xf0\xea\xb1\xc2\x6b\xe3\xf0\xa9\xd7\xca\xd7\x5a\x98\x6a\x3c\x92\xc2\xe3" + - "\x56\x6b\xd4\xab\xf2\xc0\xbd\xab\xa2\x76\xcb\xbe\x50\xc6\x0b\x1e\x8f\xbc\xeb\x88\x67\x42\xe3\x9a\x04\x57\xc1\xd0" + - "\xb2\x44\xe3\xb1\xb2\xca\xa8\xd3\x7e\xf9\xf9\x75\x73\xf6\xd8\x72\xae\xc5\x98\xd7\xf1\x06\xd3\x75\x10\xd6\xf6\x17" + - "\x24\x55\xd0\xfa\x25\xcf\x1b\x57\x3e\xf0\xa1\x7a\x51\x0e\x9a\x80\xc5\x37\xd3\xad\x4e\x6a\x8a\x37\xb9\xea\x82\x8d" + - "\x33\x27\x80\xd8\x18\x75\x28\xff\x4f\xaa\x9a\x64\x9b\x99\x41\xbd\x88\x6e\xbb\x9f\xea\x3b\x9b\xa2\x3e\x63\x6c\x09" + - "\x3e\xcf\x24\xb9\x22\x44\xeb\x72\xe0\x03\xac\x7d\xaf\x19\xd7\x23\x58\x8d\x1f\x01\x4f\x4a\x5e\x7f\x56\xd6\x0e\xbd" + - "\x5a\x6e\xf0\x2f\xec\xb1\x73\xac\xec\xdf\x9b\x54\xe3\xd8\xb4\xc7\x92\x51\x1b\x86\x92\xcb\xca\xa2\x53\x77\xf7\x42" + - "\x6c\x37\xaf\x79\x94\x93\x45\x7c\xbc\xe6\xd1\xd0\xed\x93\x8e\x7a\xd1\xd0\xec\xac\xba\x97\x7d\x57\x54\x7e\x8e\x94" + - "\x77\x04\xb7\x43\xcd\xbc\x4b\xdb\xad\x6b\x3d\x70\x18\xda\xba\xe5\x53\xd9\x2f\x49\x18\x3e\x2b\x1d\xd2\x95\xe4\x5e" + - "\x3d\x57\xa9\x08\x1c\x08\x35\xcf\x6d\xb8\x07\x5d\xb8\x79\xee\x37\x41\x10\x96\x3b\x41\x10\x7a\x1b\x4b\xfe\x03\xbb" + - "\x5a\xcb\x6e\xf6\xe5\x03\xfb\x4e\xcd\x8d\xa1\x96\x67\x05\x9f\x7a\xca\x2a\x6a\x85\xe1\x4a\x90\x3a\xe8\xb8\x84\x17" + - "\xba\xec\x44\x9d\xa8\x83\x40\xf8\x2a\xee\xc2\xb2\x13\x77\x21\x50\x7e\x25\x8a\xba\x96\x65\xab\x96\x25\xdc\x41\x3a" + - "\x08\x86\x23\x35\xd0\xcd\x7e\xf7\xf6\x0f\xac\x0d\xf6\xbb\xc5\x3f\xe0\xb5\xb6\xba\xe3\x1d\xff\x01\xa0\xbb\xde\xf4" + - "\x6b\x60\xe2\xcf\x89\x34\x03\xbc\xe9\x2b\x42\xc6\xc8\x72\x4d\x34\x98\xfa\xba\xaf\xab\xae\xff\x0e\x07\x7d\x69\x05" + - "\x7c\xf1\x5a\x1d\xf6\x8c\x0f\x1e\xf7\x56\xc2\xe2\x8e\xd9\x7a\x86\xd5\x5c\x5b\xb7\xf0\xca\x63\x99\x96\x4b\x6d\x4e" + - "\x5b\x05\x60\x4a\x96\xc7\x28\x72\x3a\x7a\x9d\xe0\x1a\xbe\xac\x11\xca\xfb\x3c\xe3\xac\x3c\xc1\x81\xb2\xec\xae\x28" + - "\xc3\x97\xb8\x52\x67\x6e\xf5\x87\x2e\x1f\x8a\xf9\x00\x9e\x02\x9a\x18\x11\x2b\x76\x87\xd0\xf4\x6e\xb3\x15\xcb\xf0" + - "\xf3\x14\x21\x9a\x8a\x0d\x84\x6a\xdc\x82\x9f\x58\xc9\x2c\xfd\xe9\xc1\x29\x05\x0b\xc1\x0f\x70\x13\xbc\xc9\x21\xd3" + - "\xbb\x0e\x42\x0b\x8a\xf4\x3f\x0f\x5c\xe5\x80\x53\x82\x7d\xd2\x02\xfb\xe4\x4f\x84\x6b\xb4\xe0\x1a\x1d\xb8\xc6\x57" + - "\x75\x7f\xdc\x82\x37\xee\xc0\x1b\x7f\x15\xbc\x59\x0b\xde\xac\x03\x6f\x56\xc3\x9b\xfc\x01\x78\x66\x0b\x9e\xd9\x81" + - "\x37\x7a\x10\xde\x64\x00\xde\xa8\x05\x6f\xf4\x6f\xc3\x6b\xe2\x52\x95\xd3\x44\x4a\x24\xcf\x38\xff\xf5\xa7\x9f\xcf" + - "\xdf\xbd\x7b\xfd\xcf\xb7\x1f\x7e\x7a\xf6\xfe\xfd\xf9\xcf\x6f\xd9\xd8\xbe\xc3\x2d\x13\xd5\x6f\x3e\x38\x26\xc1\xd6" + - "\x85\x5d\x38\x3a\xc1\x76\x91\xc3\xce\x9b\x67\xfc\xeb\xd9\xcf\xaf\x9f\x3d\xff\xe1\xbc\x29\x77\x81\xad\x8b\xe3\xa9" + - "\xcc\x85\xed\x63\x92\x4f\xb1\xed\xeb\x04\xee\xa4\xb5\x72\xbf\x7d\xf6\x63\xab\x48\xb7\x1e\x99\x51\x7c\xde\xf0\xb8" + - "\x6f\x9c\xac\x6c\x0b\x04\xa8\xa3\x2b\x8b\x1b\x72\xc2\xc9\x8e\x3a\x34\x64\x81\x01\xb8\x30\xd1\x5b\xf9\x83\xa6\xe8" + - "\x97\x18\x12\x10\xbd\x64\xdc\xf8\xc4\xb7\x21\x77\x23\x91\xd2\x2b\x66\x39\x95\x83\xa1\x99\x60\x97\xd6\xd2\x81\x45" + - "\xa8\x94\xa4\x81\xc8\xb0\x30\xd4\x82\xdb\x37\x3e\xf1\xa8\xda\x8f\xba\x2a\x7d\xfc\x59\x48\xb5\x0b\xe9\xa1\x83\x7d" + - "\x1a\x50\xe0\xa1\x51\xe2\x8b\xe6\x69\x34\x0a\x8c\x7a\x08\xf2\x5c\xce\x1e\x61\xac\xf9\xe7\xd2\xa4\xb1\x84\x4f\xa6" + - "\x3e\x38\x31\x1f\x8d\x4a\xd8\x2d\x0b\xca\xca\x35\x86\x19\x18\x6a\xe0\xf5\x2b\x65\x81\xd1\x02\xac\x9c\xcd\x55\x78" + - "\x82\x3e\xb3\x76\x2c\x1f\x5a\xe2\x49\x21\x0d\x14\xae\x10\x1c\x9b\xc0\xb6\x8b\xd4\xa5\x86\x28\x06\x74\x95\x4b\x7a" + - "\x45\x23\xba\x66\x07\xae\x15\x56\x46\x2a\x34\x66\x67\xe0\xed\x05\x1c\xaf\x23\x34\xe5\x56\xe8\xe0\x40\x09\xee\x2b" + - "\x36\xa1\x11\x73\x5b\x08\x9b\x45\x8b\xab\xd9\x95\xae\x93\xa5\x89\x2f\x19\xe4\x85\xcf\xd6\x95\x63\x9d\x3a\x9d\x3d" + - "\xd0\x25\x21\xb4\x01\x3d\x1a\xe1\xb8\x97\x7f\xb2\x93\x9f\x90\xe9\x7a\x08\x6e\x1b\x90\x39\x00\x87\x50\xe8\x11\xa0" + - "\xdb\x8a\xe9\xa5\x43\xc8\xb4\x95\xa2\xb6\x06\x54\x32\xbe\x64\xf2\x8b\x82\xdb\x6f\x5f\xf5\x65\xe2\x10\x42\x57\xa3" + - "\x11\x5e\xe9\x4c\x52\x8c\xb9\xd2\x59\xac\x63\x2f\xcf\x2f\x4d\xc4\xd4\x52\xec\x72\x8a\xaf\xf2\x5c\xe6\x28\x31\xd6" + - "\xfd\xde\xeb\x3b\x00\x40\x14\x11\xba\xd2\xd9\x65\x4d\x10\xab\x66\xa4\x4b\xaa\x1e\x18\x6b\x35\xd2\x70\x9d\x7d\xf5" + - "\xc8\x91\x0e\x69\x6b\xac\x57\xb5\x13\xbe\x07\xc7\x54\xa2\x7e\xf5\xc5\x21\xad\x06\x68\xd5\x1b\x20\xa8\x46\xa1\xbb" + - "\x35\x56\xdd\x7c\x13\xa7\x32\xce\x51\x63\x21\x87\x62\x55\x0d\x45\x30\x1a\xe1\x00\xd0\xdd\x41\x5c\xc8\x96\x3b\x50" + - "\x76\xda\x54\x81\x99\x38\x34\xd0\x59\x48\x03\xe6\x9b\x41\x77\x3c\xa6\x81\x42\x7f\xa0\xb3\xcb\x0a\xfb\x81\xc4\xfe" + - "\x90\xef\x94\x5a\x5f\xe9\x68\x08\x4c\x45\xa8\xea\xa6\x09\x42\xbd\x82\x06\xbb\x6c\xad\xe5\xcd\xb1\x34\xb8\xda\x66" + - "\x69\xb9\xd3\xaf\x34\xbe\xca\xd0\xac\x4a\x82\x73\xa8\xce\x16\x8b\x5f\x6f\xb1\x48\x95\xa6\x31\x87\x10\x60\xc5\xb4" + - "\x03\x6a\xb6\x5c\x88\x99\xd0\x75\xe2\xea\xbb\x66\x4b\x4d\x6e\x4b\x38\x66\xe7\x6d\x5a\xd1\x20\xee\x24\x53\x4e\x66" + - "\xff\x55\x21\x42\xf6\xb1\xe7\xb3\xbb\xdc\xfe\xa5\xae\x24\x53\xd6\xd3\xd7\xc0\xdb\xd2\xae\xf0\x01\x1d\xaa\x2f\x59" + - "\x80\x81\x0d\x0a\x10\x7a\xc9\x2c\x87\x5e\x95\x66\x7b\xcb\xbe\xdb\x25\xb9\xd6\x62\x4b\xe5\x75\x49\x10\x5a\x1a\x01" + - "\xba\xe4\xee\x52\x91\x62\xdb\x36\xf2\x8a\x90\xd2\xe5\x55\xb8\xc4\x43\xdf\xa9\xab\x8e\x85\x08\xa1\x57\xac\x7c\xd6" + - "\x5d\x49\x6e\x25\xa7\x3c\x58\x59\xae\x75\xea\x38\x5d\xfb\xc7\x5f\xe2\xab\x38\xb9\x89\xb5\x7f\x96\x22\x0b\x9c\xf8" + - "\x58\xa7\x8e\x7e\x84\xe4\x82\x04\xde\x26\xf2\x4d\x19\x3f\x1e\xb8\xd6\xb7\x3b\x10\xbc\x28\x49\x85\xaf\x9d\xd7\xd8" + - "\xeb\x16\xe3\xcc\xb5\xce\x6a\xcf\xb8\xb4\x65\x17\x13\xb1\x09\x5d\x37\x36\x73\xeb\x45\x34\x8b\x74\x1d\x10\xe3\x33" + - "\x6e\x45\x95\xc7\xb4\xa0\x46\x8e\xdf\xad\xfb\x75\xe9\xe0\xe1\x5f\xa5\x18\x05\x13\x4e\x2b\xda\xd7\x7a\x5f\x72\x04" + - "\x05\x32\x24\x0f\x40\x7a\x5b\x7a\x34\xf2\xf7\x20\x43\x56\xc3\xee\xe0\xea\x98\xcc\x42\x4b\x29\x3b\x3d\x38\xf0\xad" + - "\x6f\x1d\x5a\x0b\xd6\xa9\x6f\x3d\x75\x46\x23\x20\xbe\xd7\x71\x86\xe5\x2b\x3d\x9d\x90\x42\xdd\xd2\xa9\xd6\xb3\x9d" + - "\xc6\xb4\x30\xf9\x63\x98\xa6\x61\x1c\xd4\xed\xc2\x29\xe9\xb6\xa3\xa4\x85\x76\x14\x0b\xf9\x91\x56\x3a\xc8\x54\x8e" + - "\x26\xad\xf5\x8c\x29\x2f\xea\x9d\xdf\xcb\x7a\x0e\x57\x04\x55\x5b\x57\xca\xd5\xd7\x65\xb9\x7e\xf3\x5b\x4b\x8a\x40" + - "\x0c\x38\xb6\xad\x6c\x9e\xe5\x72\x85\xfa\xec\x4e\xe6\x9c\x4e\xe8\x27\x1e\x4d\x2d\xa7\xd2\xf4\xea\xa7\x4a\x07\x9f" + - "\x5a\x4e\xd1\x31\xf0\x6d\x96\x39\x16\x77\x3a\x1e\x52\xaa\xc4\x7a\x97\xb8\x5e\x48\xf9\xd4\x63\xc8\x52\xcb\xc9\xda" + - "\x4f\x9d\x83\x18\x63\x8f\x0b\x4d\xe9\x11\x62\x7a\xe0\xe4\xe5\xdf\x01\x02\x86\xb1\xa6\xfc\x91\xa0\xe4\x6f\x63\x83" + - "\xec\x8d\x46\x55\x7c\x40\x88\x29\x59\xd5\x03\x2e\x07\xff\x58\x4b\xd5\x89\x86\xcb\x26\x70\x17\xbe\x9c\x34\xbc\x0c" + - "\xf6\xd0\x54\x08\xfe\x06\xab\x3a\xe1\x45\xe9\x8c\x1d\x6d\xa2\xf2\x38\x68\xb9\x0e\x71\xc8\xac\xad\x55\xc2\x86\xb2" + - "\x6c\x01\xfb\x96\xd4\xfb\x17\x75\xbb\x55\x33\xbf\xaa\xe1\x72\x0e\x79\x64\x59\x26\x53\x97\xb4\xdc\xc7\x3c\xd0\x6a" + - "\xf7\x71\x0d\x3e\x2b\x1b\x5c\xbe\x9e\xd2\x2f\xf4\x9c\x34\x21\x30\xfc\x82\xf2\x1d\x11\xe8\x52\x9f\x94\xae\xf0\xd5" + - "\x1a\xdd\x25\x95\x9c\xf1\xeb\x92\xf2\x0b\xc7\x82\x14\xd4\x2b\x08\xd5\xdb\x53\x03\x5d\xa7\x02\x0c\x04\xbd\x0c\xcd" + - "\xea\xc5\xbd\x5b\x1f\x3b\xfa\x89\x77\xbd\x16\x71\x66\x78\x5b\xc1\x33\x71\x1e\x09\xb0\xbb\x41\x6e\x92\x64\x69\xb6" + - "\xe5\x1b\x44\xa8\xcb\xee\xfe\x57\xb8\x57\x61\xf6\x7e\xcb\xe3\x34\x94\x10\xa6\xe8\xa6\x97\x72\x1e\xfb\x88\xfe\x98" + - "\xfc\xde\xce\x93\xd5\xcf\x42\x7e\xfd\x67\xfb\x5b\xd2\x29\xaa\x25\xbd\xbc\xd9\x5e\x30\x2d\xdf\xe8\xb5\xb3\xd1\x96" + - "\xff\x9f\x34\xbb\x8d\x44\xb3\x5b\x75\x27\x62\x7f\xea\x5a\x9e\x53\x14\xdc\x58\xc6\x86\x58\xc3\x36\x74\xa7\xf2\x8e" + - "\xd7\x3c\x75\xa2\x09\x7e\x6d\xc0\x50\x83\x2b\x37\x5e\x46\x12\x0b\xcc\x8d\xf4\x7a\xb3\x49\xb6\x99\xd1\x34\x09\xdc" + - "\x1f\xb6\xc4\xb9\xc7\x0e\x26\xa5\x1b\xc5\x8e\x98\xf7\xf2\x9c\x63\x9f\x18\xd9\x36\x0c\x02\xb1\xdd\x0b\x8b\xd4\x6b" + - "\xd0\x54\x64\xef\xc3\xb5\x48\xae\x33\x2c\x68\x7d\xf1\x81\xe3\x16\xd0\x21\x20\xcc\xc5\xa4\x20\x05\xbe\xfc\x1f\xe5" + - "\x4d\x7c\x3f\x39\x28\xdd\xaa\x1b\x6b\x14\x18\xdb\xa1\x50\x64\xc0\x38\x2e\x2d\xeb\x8c\x64\x23\xf3\xa4\x4c\x52\x68" + - "\x26\x62\x1f\xdf\x15\xd4\x35\x5e\x9e\xbf\x7a\xf6\xcb\x0f\xef\xdf\xd1\x32\x52\x68\xab\x19\x61\x1c\xb4\xce\xf7\xcb" + - "\xe2\x92\xa7\x2b\xcf\xe5\xaa\x1e\xf5\xca\x14\x8e\x7b\x99\x48\xb7\x66\x23\x4b\x82\x20\x12\xa5\xf2\xa7\x5e\x30\x29" + - "\x66\x4d\x23\xd8\x9d\x4a\x9d\x1e\x4c\x8a\x2a\x90\x07\x70\x02\x3f\x5c\x8b\x18\xf6\xbf\x76\x4e\xdd\x3b\xdd\x35\x56" + - "\x3c\x7d\x11\xf1\x34\xc5\xe8\x26\xf4\xb3\x55\xfb\xd6\x5e\x99\x32\x45\x2b\x11\x06\xab\x0c\x75\x6b\x48\x57\xc9\x4d" + - "\x1b\x78\x7d\xcf\xa8\x83\x8f\xea\xfe\xe2\x40\x7d\x61\x8c\x48\x13\xf5\xeb\xfc\x13\xcc\x41\x09\xd5\x70\x53\xc3\x4b" + - "\xa2\x88\x6f\xd2\xf2\xc0\xa5\x0b\xa2\x22\x27\x97\xd0\x03\xd7\x08\xd3\x97\xa5\x39\xd4\x56\x48\x18\xc2\xc7\xa4\xe3" + - "\xb5\xec\xb0\x1a\x80\xf6\x1b\x78\xec\xc4\x68\xa1\x19\x1b\x1e\x8b\x48\x5b\x68\x86\x6c\x8f\xac\xac\xe5\x35\xad\xb2" + - "\xa0\xf4\x40\xc2\x62\xb4\xd3\x30\x88\x0e\xdb\xe9\x70\x39\x07\x67\x5e\x9d\x13\xa3\x55\x08\xc1\x6b\xfc\x3c\x1f\x02" + - "\x44\x55\xc8\x0c\x35\x7b\x94\x38\xaf\x06\xaf\x72\x4c\x56\x77\x5d\x99\x4c\x96\x08\x6c\x9a\x62\x70\xdf\xef\x26\x4a" + - "\x15\x9e\x58\xc2\xc1\x93\x41\x2a\x55\x21\xe1\x97\xed\xf1\x7b\xb8\x22\x80\xd9\xaa\x4a\x22\x4c\x56\x81\xf8\x75\x96" + - "\xa0\xc1\x7a\x26\x74\x78\xe8\x60\x9c\xe3\xee\x40\x83\x4e\x72\x30\x34\xbd\x2b\x95\x64\xd9\x18\xbe\x2b\x6e\x13\xc0" + - "\xe5\x81\xb5\x88\xc0\x18\xcf\x42\xa9\xb7\x4d\xa2\x08\x51\xe1\x94\xb1\x1c\x4e\x10\xe9\xa3\xf0\x8b\x4c\x0d\x42\x2d" + - "\x7c\xae\x4e\x27\x08\x19\xe4\x9d\xf8\xdb\xef\x26\xd0\xf1\x0e\x60\x6b\xe2\x58\x81\x43\x8a\xa2\x3b\x4d\xe4\xd8\x3f" + - "\x66\x9a\xfc\xa1\x59\x22\x81\xfe\xc9\xb3\x64\x2f\xcd\x59\x5e\xbf\xa3\x9e\x83\x09\x91\xeb\x9b\x64\xb9\x4c\x45\xf6" + - "\x0f\xe0\x0e\xbd\x81\x1e\x26\xc8\xbd\xf4\xdb\x49\x97\x5d\xde\x4f\xb4\xfe\x0e\xd1\x3e\x92\xe4\x56\xa1\xef\x8b\x1e" + - "\xcd\x3d\x8a\xce\xdb\x24\x5a\x07\x58\xd8\x25\x20\xe5\x23\x68\x07\x55\x93\x07\xe4\x68\x45\x72\xfe\x83\x24\x37\xf5" + - "\x5b\xf4\xdf\xa7\x33\x25\x07\xfa\xb8\xb1\xbe\x44\x56\xa6\x62\x4c\x53\x98\x8c\xc8\xc1\xe5\x15\x23\x8f\x81\xd6\x50" + - "\xf5\x7a\xd6\x79\xdb\x6b\xe0\x2b\xb8\xb7\xc2\x3d\x59\xe3\x97\x52\x8e\x50\xc1\xfc\x21\x16\x0a\x27\x94\xc3\xc2\x55" + - "\x65\x27\x74\xe7\xc4\x4a\xb2\x67\x32\x13\x79\x3e\x04\x91\x2a\x95\xd1\x2d\x0f\x96\x86\x1c\x20\x7a\xa3\x91\x00\x12" + - "\x2e\x88\x54\x3e\x5b\x7d\x33\x5e\x24\x71\x9a\x6d\xaf\xbd\x2c\xd9\x32\xb7\xf7\xed\x8b\xdb\x3d\x5d\x14\x79\xb5\xda" + - "\x52\x69\x9a\x92\x04\x30\xf2\xa2\xd0\xbb\x6a\xd3\x1f\x74\xe0\x84\x6f\x42\x44\x91\x05\xcf\xe5\x28\x56\x19\x1c\x44" + - "\x77\xf4\x34\xda\xc5\x2a\xcf\xb2\x2d\x46\xaa\x30\xdf\x06\x22\x43\x04\x4e\xe4\xd5\x34\x2f\x27\x3d\x56\x11\x10\xaa" + - "\xdc\x10\xf6\x93\x10\x29\xe7\x5a\x07\xe2\xd8\x64\x4f\xac\x0b\x3b\x75\xf4\x43\xa2\xbc\xc5\x2d\x99\xd4\xb0\x69\xc0" + - "\x96\x83\x83\xb7\x62\x81\x89\x54\x8b\xd1\xb4\x1e\xb0\xb0\xdb\x28\x25\x6e\x11\xa1\x97\x2c\x1c\x8d\x38\x0e\xc9\x2c" + - "\x18\x8d\x82\xee\xa4\xcd\x73\x7c\x39\x1a\x5d\x2a\xa1\x7c\x34\x8c\x0a\xab\x05\x8e\xa1\x23\x3d\xd4\x8f\x90\x73\x44" + - "\x8c\x38\xc9\xa4\x8e\xb9\x3b\x5d\x7d\x29\x72\xad\xe5\x0e\xd1\x57\x39\xd1\x14\xb5\x66\x3f\x72\x3a\x25\x09\x5d\x36" + - "\x02\x7c\xd5\x56\x2e\x61\x8e\xbc\x5b\x25\x37\x7e\x72\x13\xb3\xbb\x62\x56\x3d\x1b\x5e\x12\x7f\x12\xdb\x4e\x44\x8f" + - "\x66\xab\x4b\x8e\xdb\x44\x71\xd6\x35\xbf\x02\x3f\xde\x4d\x36\xbf\x15\xbc\x4a\xd2\x2f\x2c\x51\xa9\xdb\x7a\xf6\x5a" + - "\xcf\x3e\xf3\x9b\x71\xbb\x1f\x07\x14\xdd\xbf\x57\x76\x71\x2d\x93\x67\x08\xb0\x74\xff\x72\x27\x7d\x6b\xc7\xf2\x8b" + - "\x1d\xef\x7e\x69\xa5\x23\x3b\xb6\x63\xa4\xfb\xba\x7a\xa0\x3e\x3b\xc7\x7e\xaf\xc0\x85\xa5\xd9\x99\xa3\x1f\x8e\x83" + - "\x35\x50\x8b\xcf\x02\x95\x67\xa9\x7e\x42\xf5\xf3\x62\xa7\xe0\xfd\x4b\x59\xd3\xe1\x61\xbf\x05\xf7\xef\xa1\xcd\x55" + - "\x34\x44\x41\x97\x1d\x6e\xa3\x78\x93\xd7\x69\x80\x03\x21\x90\x6d\x0b\x1b\x3a\xb1\x9d\x29\xb4\xe8\xd8\x8e\x4d\xf5" + - "\x30\x37\xb1\xfd\x4e\x37\xc9\xc2\xec\x7d\xc0\xe6\x14\xdb\xf1\x31\xb1\x10\x76\xb0\xa1\x9b\xc4\x42\xc4\x51\x9f\x88" + - "\x89\xcd\xa9\x1d\xeb\xb9\xfd\x7f\x44\xf6\xac\xbd\x54\xa8\x0e\x50\xaa\xc5\x2b\xeb\x39\x88\xa1\x70\xe7\xf4\x56\xce" + - "\x99\xa5\xb9\xd4\x83\x29\x0e\x46\x23\xb8\x15\xca\x82\xa6\xd9\x08\xa2\x62\x7d\xbc\x4e\xb2\x99\xa4\x33\x84\x48\xd1" + - "\xb8\x4b\x2a\x68\xd0\x0b\x3e\xd9\x0e\xa7\x59\x0e\x9d\x1c\xa4\xc6\x4f\x41\x2b\xc3\x05\x9e\xe3\x4d\xee\x87\x9f\xf2" + - "\x95\x75\x7a\xf2\xbd\x93\x37\x51\x83\xf3\xcd\x56\xe4\x19\x77\x23\x91\xfb\x51\x9e\x44\xf9\x75\x94\xab\x48\xc1\x79" + - "\x9c\x94\x0f\xcb\x64\xbb\xce\x97\xa1\x88\xfc\x54\x64\xb9\x0a\x0b\x9c\xaf\x79\xb6\xca\xc3\x38\xcd\x7d\x11\x11\xdb" + - "\xb5\x2e\xec\xad\x73\x6c\xda\xf1\xdc\x1e\xdb\x67\x8b\x0a\x9f\xcc\x8e\x75\x02\x08\x5b\x29\x9f\xef\xff\xf1\x36\x35" + - "\x6d\x31\x8e\x07\xda\x62\xc7\x83\xad\xc1\x76\x5c\x51\x0d\x9e\xe3\xd5\x96\xd8\x2e\xb6\x2e\xe6\x0b\x87\x1c\x9b\xf6" + - "\xd8\x5c\x90\x16\x90\xbb\x33\x5a\xc8\x3e\x0d\x01\x69\xc0\xcc\x0f\xf0\xc9\x49\xd9\x92\x93\x13\x3b\x3d\x26\xfa\xe2" + - "\x51\x40\x24\x99\xd9\x31\xc1\x75\x7b\xcc\xe9\x1c\x5b\xe6\x37\x0e\xa9\x70\x7c\xf6\xb8\xe6\x48\x30\xd5\xdc\x2d\xe8" + - "\x90\xd3\x68\x9f\xd5\x37\x8b\xbb\x73\x3e\xde\xc7\x0d\x2e\xec\x78\x5c\xce\xea\x4e\xfe\x3a\x70\x5b\xc9\x23\xee\xdf" + - "\x20\x1d\x7b\x6a\x9f\xc7\x27\x27\xa7\x44\x47\x6f\x80\x40\x0b\x1a\xf6\x08\x79\x53\x99\x3e\xb9\x2c\xc5\x68\xbe\xda" + - "\x6a\xe3\xc5\x3e\x3a\x56\x38\x39\x2b\x24\x72\x4c\xfb\x58\xfe\x25\x77\xdf\xd2\x42\xa1\x03\x58\x8e\xdb\xa7\xb3\x6e" + - "\x99\x93\xaf\x28\xf3\x61\x6f\x99\x8f\xca\x13\xf3\x56\xfd\xdc\xa8\x9f\x40\xfd\x7c\x86\xf0\x5c\x97\x83\x1e\xf4\x59" + - "\xa6\xf2\x5c\xa9\x9f\xdf\xd5\x4f\xac\x7e\x22\xf5\xf3\x4c\xfd\xdc\xaa\x9f\x4f\xa5\xcf\xe7\xa6\x91\x9a\xa6\xab\x51" + - "\xd2\xe6\xae\xc4\x99\x1a\xe6\xab\x81\x23\xa3\x31\x9e\x5b\xfc\xe4\x77\x7b\x7c\x70\xe8\x60\x64\x5d\x20\xe7\x18\xe5" + - "\x47\xd6\xc5\x91\x73\x7c\x94\x5b\x17\x47\x48\x92\xf9\x22\x07\x8a\x35\x1a\x6a\x25\xe3\x20\x1c\x1a\x06\x97\xee\x56" + - "\xd1\x26\x60\x83\xcc\xed\xb1\xe9\x25\xbe\x58\x60\x93\x19\x70\xef\xe6\xf0\xf4\xb7\x96\x1d\x23\x7b\x85\x5d\x8a\x6c" + - "\xfb\xb7\xe3\x0f\x08\xf4\xad\xa1\xcb\x6b\x5a\x6f\x6e\x59\x58\x4e\x0d\xcb\xba\xb0\x1d\xe7\xd8\x76\x72\xeb\xc2\xb6" + - "\x6c\xc7\x21\xc7\xc4\x76\xe4\x00\xc1\xc4\xb1\x34\xc9\xaa\x25\xe3\x3f\x36\x89\xed\x10\x5c\xfe\x3f\x0e\xe8\x7a\x67" + - "\xb6\x7e\x09\xa2\x8d\xcb\x29\x46\xe6\x26\x00\xab\x84\x05\xc6\xd6\x11\x72\x88\xaa\xe0\xfb\x4a\x38\xd8\x64\x5f\x15" + - "\x25\x50\xbd\xdd\x9a\xb2\x3d\x05\x5d\xb3\x5d\x39\x42\x57\x34\xa4\x97\xe4\xae\xba\x75\x7b\x39\x1a\xe1\x4b\x86\x90" + - "\x9a\x24\x57\xcc\xa7\x11\x13\xb2\x64\x4f\xc8\xc4\x2c\xa0\x09\xbb\x04\x43\x54\xc4\x58\x4c\xca\x87\xf5\x68\x84\xd7" + - "\xac\x77\x75\xaf\x45\x46\x66\x49\x45\x52\xe8\xc4\x10\x43\x6f\x5d\x6f\x96\x73\x6b\xed\x90\x18\x7e\xea\x34\xd7\x5a" + - "\x3b\xa3\x11\x4e\xe0\xa1\xe5\x1c\x05\x5f\x55\xde\x32\xc7\x36\xb6\xd3\x63\x9b\x1c\x8e\xd7\x64\x71\x72\x5a\x19\xdf" + - "\x69\x57\xb3\x98\x21\x54\xc4\xec\x15\x8e\x29\x92\x63\x0f\x5d\xda\xb0\xa3\x39\xd7\xc0\x4f\x3b\x3a\xd2\x63\xfd\x08" + - "\x1d\x55\x9e\xeb\xd1\x01\x4b\xa0\xae\x64\x8f\x9c\xa4\x09\x7b\x85\x13\x05\x8c\x6e\x74\x76\xa4\x65\x61\x16\x09\x09" + - "\x28\x81\xe3\x18\x99\x88\x16\x48\x8f\x74\x34\x1f\xf3\x05\x2a\x68\xfc\x30\xad\x1d\xd4\x04\xf4\x18\xc2\x4a\xfa\xa3" + - "\xde\x14\xb7\x53\xb3\x43\x48\x1d\xb5\xe3\x4b\x94\x94\x90\x82\x26\x5f\x22\x8e\xc7\x92\x42\x92\xe7\x38\x91\xd4\x43" + - "\x15\x51\xdc\xfd\xdb\x54\xc1\x14\x55\xb4\xc6\xf4\x0b\xe4\x51\x44\x2c\xda\x37\x74\x43\x74\x10\xae\x03\x2d\xdd\x7a" + - "\x15\x21\x68\x3c\x02\xa5\x3e\x6a\x11\x85\xf6\xf5\xd4\x00\xc4\x20\xc5\x4b\x41\x37\x0f\x52\xc1\x85\x54\x1e\x2b\x05" + - "\x91\xe9\xd5\x93\xde\xd1\xfe\xda\xbe\x81\x41\x7a\x9d\x2e\x90\x7e\x89\x5d\x22\xc9\x4d\xbe\x90\x62\x47\xef\x69\x81" + - "\x3d\x79\x2c\xd8\xb3\x36\xd8\xb3\x41\xb0\xf6\x93\xbb\x53\xfa\x7d\x51\xa9\x06\xa0\xbe\x2a\xe0\x4f\x86\xe0\x37\xf7" + - "\xc0\x6b\xef\x25\xed\x0a\x41\xc9\x87\x4a\x3d\x55\x69\x99\x00\xec\xfa\x63\x57\x84\xeb\x0c\xdd\x4f\xaa\x3d\xf4\xf1" + - "\x05\x6e\x54\x17\xeb\x58\x3f\x71\x72\xdb\xd7\x2d\xc3\x51\xad\xd1\x95\x16\xa3\x9b\xf8\x7e\x92\x2b\xe5\x45\x6a\x31" + - "\xef\x08\x36\x0f\x6a\x25\x7c\xa8\x18\x68\x91\xb5\xb6\x62\xee\x13\x48\x9d\x8e\x81\xd1\x40\xc5\x94\x00\xe8\x38\x90" + - "\x1c\xc9\x44\xd7\x11\x9a\xa2\x24\x42\xb3\x9e\x1e\x53\x5d\x08\x95\xba\x0a\xa8\xd3\x6a\x3b\x51\xb4\x4e\x98\x82\xb6" + - "\xd2\x6e\xa7\x7a\xe9\x42\x3d\x60\x68\x8e\xf4\x25\x20\x2d\x90\x18\x53\x2f\x52\xe5\x21\x53\x2c\x85\xb0\x84\x98\x5f" + - "\xd8\xb1\x49\xfe\x73\x18\xa2\x5f\xc2\x4b\x75\x7e\xb6\x64\x2e\x0d\x98\x47\x57\xcc\xff\x32\x76\x68\xb7\xaf\x3b\xd8" + - "\xa1\x21\x13\xb8\x71\xea\x1a\xb2\xa5\x2e\x91\xb0\x52\xfd\xd6\x43\x85\x86\x55\x85\x86\x1e\xc9\xde\x4f\x00\x73\xc5" + - "\x6c\xd0\x96\x59\x85\x7d\xe6\xfd\xea\x25\xb6\xa1\xea\x92\xea\x76\x34\x70\x62\xe2\x8b\x92\x97\x0e\x21\x17\x57\xc8" + - "\xb5\xe3\xbb\x53\x7a\x56\x10\x02\x4a\xf4\x31\x20\xfb\x6c\x70\x38\xc8\xee\xd4\x91\xec\xb8\xc2\xa5\xa0\x41\xa3\x46" + - "\x07\x79\xbe\x6c\xc4\xa0\x42\x18\xe0\x74\xc9\x42\xfc\x12\x2f\x09\x99\xe2\x25\xfb\xa8\x1e\xbb\x37\x96\xed\xf8\xb0" + - "\xda\x5e\xb9\x84\xaf\x68\x1e\x85\x0b\xa0\xa2\xf9\x38\x0a\x15\x0a\x77\x30\x58\x6a\xdd\x27\x27\x94\xab\xe5\xf1\x76" + - "\x90\xb1\x0d\x22\x4b\xad\x34\xf2\x0b\x22\xf5\x20\x49\x54\x9a\x73\xf7\xb4\xc8\xed\x8c\x18\x92\x63\x10\x9d\xc8\xd5" + - "\x70\x45\xaa\xd6\x85\x66\x67\x76\xec\xe4\xd8\x64\xf7\x13\x20\xb6\x7d\xd3\x4e\x34\xb1\x8d\x7d\x76\x8d\x5f\x62\x9f" + - "\x90\xe1\xbd\x02\x60\x4c\x0f\x2d\x28\xe6\x9b\xad\x58\xcc\x41\xa1\x2c\xf7\x1e\xe6\x63\x78\x9b\x8f\xe5\x17\x44\x53" + - "\xec\x13\x5d\x0c\x60\x07\xe8\x8b\x0e\x1a\xe0\x77\x51\x71\x01\x4b\xfb\x58\x57\xb7\xc4\xa5\xb4\xec\xaf\x62\x78\x77" + - "\x15\x33\x1c\x19\xab\x0b\x53\x2a\x94\x52\x55\xf8\x4d\x27\xb8\x5c\xbb\x59\x17\xbf\x39\xc4\x3e\xc3\xe6\xc1\x6f\x0f" + - "\x90\x95\x5f\xfb\xdb\x6a\x13\xc9\x45\xa9\x4d\x54\xcd\xec\x7c\xac\x57\x27\xe5\xa7\x6b\xbc\x24\xd4\xd5\x51\x85\x3a" + - "\xa0\x24\xf5\x2c\xb9\xf8\xf5\x83\x5d\x80\x2b\x8b\x23\xbe\xde\xcc\x50\x0f\xb7\x73\xf8\x12\x65\x3b\x1f\x16\xf0\x21" + - "\x28\x3f\xbc\xc2\x5c\x4a\xe3\xbb\xc2\x72\x6c\x1b\xd1\x83\x53\x52\xd0\x4f\x8f\xd0\xf5\x8f\xed\xe3\xfc\xc3\x07\x52" + - "\xf2\xbd\x6a\xdd\xfb\xce\x3a\xfe\xe0\x1c\x13\xfb\x54\xd6\x31\x4f\xb3\x6d\x12\x07\x8b\xc3\xb3\xf9\xb8\x7c\xec\xb7" + - "\x05\x4b\x28\x3b\x40\xaa\xf2\x62\x0d\x65\xc5\x5a\x0a\x35\x7a\xf3\x70\xab\x2a\xbe\xa2\x96\xf1\xa6\xa1\xdb\x31\x96" + - "\x7f\xc8\xb1\x1d\x1f\x13\x7d\x67\x3c\xab\xad\xa9\x9a\x39\xf4\x77\xa9\x5a\xc0\x60\xb3\xec\x7e\x82\x54\x1c\xf2\xdd" + - "\x09\x3e\x50\xb4\xd9\x61\xf3\x58\x88\xbd\x5e\x1e\x7c\x91\xc3\x56\x87\x5c\x7a\x69\x5a\x1f\x82\xd4\xcf\x61\x56\x95" + - "\xdc\x70\x6e\xc3\x4c\xfa\xa3\x5d\xd0\xb4\x07\xda\x5d\x10\x2a\xb5\x89\x66\x6b\x07\xe4\x82\xa7\xa6\x70\x2b\x55\xa9" + - "\x15\x9f\xf7\x6f\x71\xb5\x18\x45\x4f\x28\x54\x8c\xa2\x36\x85\x70\xeb\xe8\xf0\xb5\xc4\x92\x5c\xa4\xd9\x27\x15\xb5" + - "\xc6\x43\xc1\xb4\xbb\x7d\xb9\x38\x60\xae\xb5\x74\x66\x41\xcd\xc3\xef\xdf\x80\x55\xfa\x1b\x29\x1a\xd9\xc4\xf4\x15" + - "\x33\x08\xc8\xb4\xc9\x62\xbf\x1b\xcb\x6f\xe0\x12\xe2\x12\x07\xa4\x2b\x35\x3b\x33\x76\xbe\x59\x28\x9b\x51\x34\x1f" + - "\x6f\x16\x88\xd6\xe0\x48\x21\x9a\x10\xb6\xb5\x97\xaa\x56\xeb\x64\xda\xcc\xb7\x96\xce\x6e\xcb\x64\xe5\xb3\xca\x7c" + - "\xdb\xb3\x94\x0b\x4b\xe3\xf0\xd4\x99\xad\xd8\xaa\xbf\xf5\x7b\x78\xa8\x36\x58\xad\xa5\xc3\x00\x5c\x33\x66\x6f\x6c" + - "\x5f\x7f\x33\xa6\xed\x40\x8b\xea\xb4\x54\x09\xfb\x82\x0e\x86\x28\xef\x32\x0c\x6c\x1e\x3c\x31\xad\xcf\xbf\xc2\xaa" + - "\xc9\x9a\x9c\xfc\x95\x9f\x2c\x9f\x9d\xbc\x72\xf4\xdc\xbe\xd1\xc9\x8c\xec\x67\x28\x52\xbb\x81\x4d\x0a\xd3\x3e\x3c" + - "\x70\xc8\x38\x08\x2b\x06\x53\xd0\xdf\x1f\xac\xd8\xb6\xb1\x6d\x4b\xe8\x7f\xef\x13\x88\x8d\xad\xdf\x24\x07\x92\xab" + - "\x70\x4c\x16\x4f\xf4\x13\x03\xc0\xd3\xbf\x93\x82\x3e\x7b\x10\xf0\x1c\xe3\x55\x96\x6d\x52\x33\x5f\x66\x9b\xdc\x0f" + - "\xbd\x8c\x4c\x61\xcb\xc4\x4e\x1d\x9d\x2c\x64\x33\x9b\xd5\xeb\xe1\x29\x5a\x1c\x9e\xca\x75\xe6\xd1\x6e\xf7\xa6\x6b" + - "\x1e\x46\x59\x32\x25\x26\xb6\x4e\x0c\xfb\xc6\xd1\xed\xbf\x59\x27\xca\xf9\xa9\xa3\x63\xdb\x68\x5e\xc8\xb1\x6d\x48" + - "\x64\x54\x35\x0c\xae\x0b\x9e\xe3\x17\xd8\x25\x30\x71\x9e\x77\xba\xd1\x32\x6d\x6a\xac\x86\x27\xa7\x67\xdf\x3e\xfd" + - "\xee\xfb\xbf\xfc\xf7\x5f\x9f\x3d\x7f\xf1\xf2\xfc\x15\x82\xab\xb0\xde\x8a\x6f\x5f\x24\xbe\x80\xdb\xaa\xcd\x35\xd3" + - "\x2a\xd0\xea\x62\xf1\x94\xe8\xf5\xeb\xe9\x77\x23\x4f\xd9\x23\x78\xcc\x1a\x70\xe4\x31\x82\xf0\xfb\x1d\x90\x3a\x9a" + - "\xa1\x82\x0e\xe6\xfd\x8c\x74\xd9\xbe\x7d\x39\x34\x5e\x38\xcd\xe6\x13\x2a\x71\x87\x74\xde\xc5\xab\xd1\xd1\x42\xd4" + - "\xea\xf6\x6f\x88\x31\x4e\x38\xf3\x2c\x70\x02\xba\x8c\x92\x64\x8b\xcf\x8e\xe1\x65\xcb\x63\x3f\x59\x63\x42\x1c\xcc" + - "\x49\x13\x82\x7b\x8a\x0e\x58\x8d\xab\x4e\xc6\x19\x67\xee\xc2\xf8\xab\xe9\x59\x67\x60\x4b\xe8\x2e\x8c\xa7\xdf\x99" + - "\x9e\x75\x5a\x5a\x16\x4e\x9c\x96\x93\x57\x0e\x2a\x48\x7b\x37\x83\xeb\x47\x68\x01\xd1\x91\x60\xf7\xa1\xdb\x78\xb4" + - "\x30\xf4\xe9\x38\xa0\x32\x0b\x29\xe8\x8b\x07\x89\xf1\xfe\x1c\xa6\xfc\x79\x4f\xf5\xaa\xb8\x74\x6d\xd2\x5a\x87\xfe" + - "\x2b\xfd\xef\x19\xcb\x6d\xb2\x7e\x51\x0e\x0c\xf6\x80\x66\x5e\x3e\x62\x01\x6c\x67\xb9\xd4\xfe\x4e\xe9\xd3\x82\x34" + - "\x9c\x7e\x50\x05\x2d\xe8\xf9\xc3\x93\x34\x93\xb2\x38\x03\x26\xa0\x69\x20\x95\x7a\xdf\xe1\xa0\xe7\xd9\xfd\xf3\x9d" + - "\x5a\x9e\xc3\x7a\xf6\xfe\xd9\x80\xd2\xd9\x38\x95\x90\x8a\xe7\xd3\x93\x8a\x8d\x7e\xf3\xb4\xc3\xde\x7d\xb9\xf4\x47" + - "\x8d\x81\x61\xbf\x86\x67\xfb\x5a\x75\xff\xbc\xea\xe1\xab\x3d\x8e\xd4\x10\xb6\x90\xee\xb6\xa4\xab\x25\x99\x8d\x54" + - "\xfd\x60\xb1\x64\x1f\x9e\x22\xa2\x23\x87\xa0\x99\x07\x0e\x7e\x90\x6d\xdb\x36\xd2\xfd\xca\x34\xae\xe5\x78\xd8\xa7" + - "\x28\x18\xde\xfc\x16\xc0\xb0\xfe\x3e\x18\xfa\xd1\x1d\x9c\xc8\xe8\xfe\x1c\x64\xed\x39\x2a\x0a\x7a\xd8\x3a\x74\x86" + - "\xbb\xeb\xed\x43\xf9\x43\x8c\xb8\x25\x49\xf6\x98\x3d\x71\xa6\x71\x92\x61\x78\x63\x4f\x1c\x82\x88\x01\xe7\xd3\xb8" + - "\x6b\xab\x12\x25\x1e\x07\x53\x85\x2a\xc6\x60\x5b\x54\x8f\x41\xef\x66\x8d\x7b\xe1\xe1\x0c\xa3\x51\x0d\xa5\xbe\x0d" + - "\xae\xca\xd4\x5e\x1b\x4a\xd3\xb4\x43\x65\x69\xb2\xe2\xe9\xaa\xbc\xe7\x5f\x99\x69\x9b\x7c\x7a\x88\x91\x05\x65\x51" + - "\x13\xa4\xa7\x8c\x25\x2c\x15\x76\x07\x2e\x36\x77\x2e\x29\x6b\x87\x18\xad\xb2\x75\x44\xdd\xc4\xbf\x45\xc4\xe0\x71" + - "\xb8\xe6\x99\xc0\x77\xca\x4e\xe8\x7d\xb2\x99\xf2\xd2\x88\x05\x13\x23\x4b\x36\x05\x3d\x15\xdf\x12\x7a\x70\x5a\x14" + - "\xa4\x7d\x77\xb6\xc5\x6b\xb9\x24\xfa\x43\x8c\x0c\x77\x9b\xdc\xf4\x6c\xaf\xae\x37\x51\xc2\x7d\x30\x1f\x29\x4d\x55" + - "\x0e\xf1\xd1\x3c\x0a\x35\x30\xd0\x64\xc8\x8b\x04\xdf\x4e\xdd\x24\x5b\xcd\xd0\x78\x71\x44\x66\xbe\xc1\x37\x1b\x11" + - "\xfb\x58\xe6\xf3\xc3\x4f\x0b\xf9\x47\xf3\x24\x34\x56\x42\x3b\xd9\x6c\x93\x60\x2b\xd2\x14\x2d\xe6\xe9\x86\xc7\x8b" + - "\xf9\x58\xfd\xb4\x72\xba\x7c\x8b\xaa\x3a\xc0\x66\x6f\x3a\xf9\x66\x86\x16\x4f\xbe\xe2\xbf\xf9\x18\x9a\xa1\xfe\x6e" + - "\x16\xbf\x54\x3d\x32\x0c\x43\x3b\xd2\x39\x5c\x55\xd3\x41\xa9\x51\x79\x10\x21\x92\xe4\x48\xd9\x91\xf7\x09\x96\xb8" + - "\xf9\x78\x2d\xae\x05\x38\x57\xa9\xe9\xfe\xd7\x1f\x7f\xf8\x47\x96\x6d\x7e\x16\x1f\xaf\x45\x9a\xcd\x84\xa1\xba\x27" + - "\xb1\x07\x46\x4d\x3f\x84\x69\x26\x62\xb1\x85\x70\xaf\xaa\xc3\x03\xc7\x0f\x35\xe7\xe3\x86\x2c\x2d\xfc\x31\x37\xb2" + - "\x24\xe3\xd1\xf1\xe9\x64\x42\x66\xb2\xee\x3e\xda\xa0\x79\x04\xcc\x15\xb1\x6c\xeb\x4e\x0e\xcd\x90\xf8\x2b\xb3\x79" + - "\x8d\x25\xa4\x5c\x51\x7d\x83\x86\x8b\xc8\x21\xd0\xb4\xaa\x10\x5c\xa7\xc2\x15\x0e\xb0\x2a\x57\xc8\x55\x10\x15\x46" + - "\x12\xc3\x34\x4c\x33\x9e\x09\x6f\xc5\xe3\xa0\xb5\x0b\xb2\x84\x39\xf6\x94\x81\x6f\x2e\xee\xdf\xbe\x93\x99\x80\xbc" + - "\x9e\xdc\x08\x77\x1f\x6d\xd1\xb3\xc9\x04\xfc\x77\x67\x3c\xbb\x4e\x4d\x40\xbf\x24\x73\x2c\x05\x92\x32\x02\x61\xe8" + - "\x83\x1b\xf1\xf8\x0a\xd5\x02\x4a\xd6\x90\x6e\x92\x38\x15\xef\xc5\xe7\x4c\x49\xab\x5e\x9a\x12\x5d\x64\xda\x00\x44" + - "\x8a\xe4\xe0\x72\x84\x86\x91\x5e\xd5\xa9\x23\xa2\xf9\xd7\xe0\x81\x55\xb5\x4b\x4b\x96\xda\x32\x8c\x84\x86\x5a\x34" + - "\x02\x65\xeb\xad\x35\xaf\x76\x9e\x26\xc8\x2c\x58\x9c\x9c\x8e\x46\x5e\xe5\x76\x3a\xa0\xa7\xe0\x83\x41\xea\xc8\xbf" + - "\xfc\xfc\x1a\x77\x1b\x56\x73\x14\x64\xc7\x48\x32\x14\x52\x39\x81\x80\xb1\xf1\x93\x9b\x18\x46\xe7\xf7\x70\x23\x51" + - "\xd6\x98\xb8\x50\x09\x0b\x61\xc9\xb3\x95\x82\x4b\x25\x7f\x26\x46\x99\xb1\xf6\xae\xd3\x70\x39\x59\x8c\x74\x02\xa8" + - "\x76\x6a\xc8\xf8\xf6\x71\x35\x64\x7c\x6b\x04\xbf\xff\xa1\x4a\x78\x14\x9d\x48\x14\xa6\x9d\x61\x07\xd3\x2c\x52\x14" + - "\xd4\xab\x2f\x8a\x08\x23\xd9\x88\x18\xa3\x9f\x7e\x79\x8f\x28\xc4\xa7\x00\x8c\xd3\x83\x89\xfc\x96\x8a\xac\x9c\x63" + - "\xff\x10\xdc\x97\xf3\xe9\xd7\x0f\xaf\x5e\xff\x70\xfe\xf6\xd9\x8f\xe7\x88\xf2\xf2\x2e\xab\xcc\x17\xfb\x52\xa3\x51" + - "\xf3\x0a\x16\x4c\x58\x2e\xee\xca\xa7\xd9\x21\xbe\x09\x63\x3f\xb9\x21\x86\x0b\x96\xb2\xae\x58\x26\x5b\x71\x0d\x78" + - "\x40\x74\xd7\x04\x6a\x72\xc0\x9a\x58\xc3\xef\x57\x62\x2b\x34\xbe\x15\x5a\x9a\x85\x51\xa4\x21\xbd\xfa\xa6\x23\xa0" + - "\x93\x54\x73\x45\x43\x3d\xc2\x37\x50\x79\xc1\xaf\x20\x1d\x09\xa6\xea\xf6\xb7\x3c\x10\x71\x26\xb6\x5d\x96\xc0\x77" + - "\xac\x9c\x8a\x76\x89\xe4\xd3\xc3\x05\x24\xe6\x9f\x64\x62\xbb\x0e\x63\x1e\x75\x10\x2f\x21\x04\x60\x43\x34\x34\x1b" + - "\xeb\xaf\x9d\x1a\x23\xc1\x3f\x89\x6e\x95\x3d\xf8\x1d\x73\xc3\xa1\x2a\x86\x33\xb4\x6a\x49\x36\x9a\x4c\x96\x0f\x03" + - "\xc6\x61\xcc\x35\x92\x6d\x18\xc8\xda\x80\xab\x1a\x8a\x1d\x40\x0c\x87\x34\xcf\xfb\x5f\x7d\x9e\x71\xb0\x33\x5c\x8a" + - "\xad\xca\x33\x3b\x54\x96\x7c\x1e\x6d\xdf\x27\x25\x77\x1c\xb4\x49\xea\x1a\x69\x96\x6c\x7e\xda\x26\x1b\x1e\x70\x45" + - "\x00\x74\xd7\xd8\x0c\x06\x11\xf1\x46\x44\xd6\xd6\x6f\x68\x68\x05\x70\x88\x11\xc4\x09\xb6\xe0\xea\x88\x6c\x86\x53" + - "\x6b\x23\x20\x8c\x01\xdc\x40\x16\x00\x0b\x2c\xb5\x8b\x8a\xb2\x0f\xa0\x25\x40\xaf\x7a\x9d\xf1\xda\x77\x25\x9f\x47" + - "\x89\x3b\x1a\xa9\xfe\x15\x84\x2a\xaa\x37\x3a\x93\xb5\x71\xfb\x58\x71\x02\x44\x80\x81\x1d\xec\x18\xd7\xd7\x77\x4b" + - "\x02\x91\x95\x17\x4b\x9e\xdf\xbe\xf6\x31\xf2\x92\xcd\xed\x49\x14\xc6\x57\x27\x6e\x16\xc3\x05\x93\x47\x64\xbd\xd9" + - "\x4a\x91\xb2\x85\x5d\x97\xbd\xd9\x25\x9d\x47\xfc\x56\x6d\xa1\xca\x35\xec\x74\x3c\xbe\xde\x46\x68\xc6\x07\x84\x6b" + - "\x7f\x14\x1a\xb5\x7a\xb0\xed\xe9\xf3\x5b\xa0\xc5\xb7\xe0\x15\x4f\x48\x39\x80\xc8\x8c\x5b\x13\x67\x46\xe4\xdf\xf2" + - "\xde\xc2\xdb\xc4\xaf\xbc\x25\xbf\x58\x85\x91\x8f\x39\x78\xcc\xac\x01\x4a\xfd\xcb\xf0\x2a\x40\x52\x41\xe7\x1e\xb8" + - "\x53\xa2\x52\xa3\x0d\x23\x7f\x2b\x62\xeb\xd4\x51\x41\xe3\x99\xdf\x4b\x5d\x26\xde\x75\x0a\x84\xd6\x4e\x4d\x45\x24" + - "\x3c\x49\x6c\x20\x67\xbd\x47\xf5\x75\x4f\x83\x18\x42\x0a\x4a\xb7\x86\x5d\x88\x57\xe2\x56\x52\x40\x97\x8a\x87\x1c" + - "\x96\x54\x81\x0e\x1a\x7f\xe9\x65\x7b\xc3\x24\x7e\x97\xf1\x6d\x66\x4e\xe0\xe2\x4e\x27\x6d\x34\x6a\xa5\x9c\xc7\x3e" + - "\x03\x37\x05\xd1\x75\x15\xc4\x61\x8a\xae\xe3\xd2\x3d\x56\xe3\x1b\xba\xee\x52\x5d\xd2\xc4\xbc\x46\xd9\xee\xd7\xf2" + - "\xd2\xd3\xcf\x72\xd6\x48\xa5\x57\x7c\xce\xea\x7a\xaa\x5b\xd6\x45\xb3\xd4\x7a\x34\x4d\xf8\x40\x13\xfe\x17\x68\xc2" + - "\x07\x9a\x68\xdd\xf0\xe9\xae\x34\x30\x37\xd6\x22\xe3\x6f\xc4\x6d\x9e\x73\xc3\xcb\xb6\xd1\x1b\x71\x4b\x46\xa3\xef" + - "\xff\x02\xee\x8e\xae\xc4\xed\x0b\xf0\xa5\xe0\xe1\xd6\x28\x9d\x39\x84\xec\x1f\xd4\x7a\xdd\xff\xb5\xb0\x19\x63\x07" + - "\xa7\xd5\xea\x6f\xdf\xb5\x31\xa9\xe6\x48\x04\xb4\xab\x56\x58\x29\xd5\xdf\x5e\x41\xa9\xd2\x48\xe4\x60\x29\x26\x35" + - "\x39\xcf\xb5\x1b\x9e\x82\x3f\x34\x2f\xd9\x84\xc2\xa7\xda\x9a\x5f\x09\x2d\xbd\xde\x0a\xf0\x6e\x2f\xe2\x2c\x94\x8f" + - "\xe2\x73\xa6\x85\xa9\xa6\x86\x52\xca\xcc\x66\x01\xa1\x30\x0c\x5e\x21\xdb\x09\xbe\xd4\x1c\xa4\x66\x0c\xe4\x5d\x60" + - "\xf9\x6f\xf6\xff\x01\x00\x00\xff\xff\x8b\x9f\x39\x60\x10\x32\x02\x00") + "\x00\x41\x94\xd9\x03\x08\x41\xbb\x77\x0c\xb6\x9c\x16\xfd\xf4\xc3\xb7\x85\x13\x64\x60\xc6\xf4\xff\xd1\xf6\xf5\xdd" + + "\x6d\xdb\x48\xbf\xff\xdf\x4f\x41\x23\xae\x0c\x98\x30\x25\xbb\xd9\x3e\x77\x25\x41\x7c\x92\xd4\xdd\x27\x27\xbb\xdd" + + "\xbd\x4d\xba\x77\xcf\x25\xe9\x14\x24\x21\x8a\x36\x45\xaa\x12\x1d\xc7\x35\xe9\xcf\x7e\x0f\x06\x7c\x01\x29\x2a\x76" + + "\xb3\xdd\x36\xc7\xe2\x0b\x38\x00\x06\x83\xc1\x00\x18\xfc\x66\xc5\x3f\x09\x83\xa7\xf7\x46\x24\x52\xb1\xe5\x49\x72" + + "\x5f\xa1\xc6\x87\xc6\x2a\x16\x5b\xa9\xb3\xe2\x80\x27\x46\x50\xab\x8a\x5d\xb5\xc3\xdd\x71\x98\x87\x3d\xb7\x0a\x3b" + + "\x1d\xce\xe5\xf4\x3a\x4b\x51\xe0\xbd\x67\x8c\xf7\x9f\x0c\x9b\x6c\xa4\x71\xff\x95\x32\xe8\xb3\x89\x1c\xb6\x1d\xdf" + + "\x03\x58\xae\x9a\xaa\x13\x78\x0d\x3d\x27\x68\x63\x20\xe8\x52\x6f\x23\x0b\x76\x1d\xc2\x03\x5b\x57\x67\x17\xb0\x94" + + "\xd0\xdb\x17\x18\x23\x38\xe1\xa3\x8f\xaa\xbc\x63\xe6\x84\x9d\x6e\xa0\xd7\xb4\x46\x91\xea\xf4\xa4\x7a\x5b\x32\xac" + + "\x56\xef\xf7\xb6\x40\x9a\xfd\x68\xac\x33\x52\xe6\x8b\xb9\xcd\xcd\x6a\x27\xd6\x0c\x7b\x85\xe8\x4e\x4d\xa0\x11\xaa" + + "\x29\x07\x0d\x95\xca\x54\xe6\xc4\x21\xc9\xa3\x4b\x1a\x75\xa4\xaf\xa3\x21\xe3\x25\x8e\xfe\xb3\xf2\xd4\x88\x4f\x67" + + "\x18\xf0\x59\x9d\x2d\xa0\x75\x55\x97\x21\x8b\xda\xbd\x0f\x5e\x5f\xd6\x7c\x6d\x01\x9f\x7a\xa5\x7c\x6b\xc4\x3b\x83" + + "\x27\x72\xf0\xb8\x37\x5a\xf3\xaa\xda\x70\xef\x9a\xa8\xdd\x6f\xdf\x28\xe7\x85\x80\x27\xc1\x6d\xc2\x73\x61\x70\x43" + + "\x92\xab\x69\x18\x79\x66\xf0\x54\x79\x65\x34\xcf\x7e\xfe\xe9\x6d\xbb\xf7\xa8\x81\x6b\x31\x16\x74\xd0\x60\xba\x00" + + "\x61\x3a\x5e\x90\x34\x41\x9b\x9b\xa2\x68\xa1\x7c\xe0\x45\x7d\xa3\x00\x9a\x40\xc5\xb7\xdd\xad\x79\xd4\x7e\xde\xa6" + + "\x6a\x3e\x6c\xc1\x9c\x80\x62\xeb\xd4\xa1\xf0\x9f\x54\x36\xd9\x36\xb7\xa3\x66\x12\xad\xc3\x4f\xf5\xc1\xa6\x68\xc8" + + "\x18\x5b\x02\xe6\x99\x14\x57\x84\x68\xf3\x1d\x60\x80\xe9\xe7\x9a\x71\xd3\x82\x75\xfb\x11\x40\x52\x0a\xfa\xbd\xb2" + + "\x01\xf4\xd2\x60\xf0\xaf\xdc\xb1\x77\xaa\xfc\xdf\xdb\xa7\xd6\xa9\xed\x8e\xa5\xa2\xb6\x2c\x35\x2e\x2b\x8f\x4e\xd3" + + "\x3f\x48\x51\x2f\x5e\x7b\x29\x3b\x8b\xf8\xf5\x96\x27\x43\xa7\x4f\x3a\xe6\x45\x2b\xb3\xb3\xfa\x5c\xf6\x43\x59\xe3" + + "\x1c\x29\x74\x04\xbf\x23\xcd\xbc\x2b\xdb\xda\xb1\x1e\xd8\x0c\xd5\x4e\xf9\xd4\xfe\x4b\x92\x46\xc8\x2a\x40\xba\x4a" + + "\xdc\xeb\xeb\xfa\x29\x02\x00\xa1\xf6\x5a\xa7\x7b\xd4\xa5\x5b\x14\x61\x1b\x04\x61\xb9\x17\x04\xa1\xb7\xb0\x14\x3e" + + "\xb1\xaa\xb5\xec\x26\x5f\x3e\xb1\xee\xd4\x9e\x18\xd2\x90\x15\x42\x1a\x28\xaf\xa8\x15\x86\x23\x41\x6a\xa3\xe3\x1a" + + "\x6e\xe8\xb2\x13\x75\xa2\x09\x02\x11\xaa\xb8\x0b\xcb\x4e\xdc\x85\x48\xe1\x4a\x94\x4d\x2e\x4b\x2d\x97\x25\x9c\x41" + + "\x3a\x8a\x86\x23\x35\xd0\xcd\x61\x78\xfb\x27\xe6\x06\x87\x61\xf1\x8f\x78\x63\xad\xee\xa1\xe3\x3f\x41\x74\x1f\x4d" + + "\xbf\x21\x26\xfe\x98\x48\x33\xa0\x9b\xbe\x22\x64\x8c\xfc\xae\x8d\x06\xd3\x1c\xf7\xf5\xd5\xf1\xdf\xe1\xa0\x2f\x5a" + + "\xc0\x97\x40\xab\x70\x60\x7d\x0c\x78\xb0\x12\x0e\xf7\x6c\xed\x1a\x66\x73\xba\x6d\x11\x54\xdb\x32\x1a\xa4\x36\xa7" + + "\xda\x07\xd0\x25\xab\x6d\x14\xd9\x1d\x83\x4e\x70\x8d\x50\xe6\x08\xdf\x87\x3c\xe7\xac\xda\xc1\x81\x6f\xd9\x43\x59" + + "\x85\x2f\xf1\xa5\xcd\xac\xd5\x87\x2e\x9f\x8a\xf9\x00\x48\x01\x6d\x8c\x88\x15\x7b\x40\x68\xfa\xb0\xd9\x8a\x65\xfc" + + "\x79\x8a\x10\xdd\x89\x0d\x84\x6a\xdc\x02\x4e\xac\x54\x96\xe1\xf4\xe8\x9c\x82\x87\xe0\x47\x38\x09\xde\xa6\x90\xcf" + + "\xbb\x00\xa1\x25\x45\xe6\x1f\x47\xae\x06\xe0\x94\x64\x5f\x68\x64\x5f\xfc\x81\x74\x2d\x8d\xae\xd5\xa1\x6b\x7d\x55" + + "\xf5\xc7\x1a\xbd\x71\x87\xde\xf8\xab\xe8\xcd\x34\x7a\xb3\x0e\xbd\x59\x43\x6f\xf2\x3b\xe8\xd9\x1a\x3d\xbb\x43\x6f" + + "\xf4\x24\xbd\xc9\x00\xbd\x91\x46\x6f\xf4\x6f\xd3\x6b\xe3\x52\x55\xdd\x44\x8e\x48\x81\x75\xf9\xaf\x7f\xfc\x74\xf9" + + "\xfe\xfd\xdb\xbf\xff\xf8\xf1\x1f\xaf\x3e\x7c\xb8\xfc\xe9\x47\x36\x76\x1f\xb0\xe6\xa2\xfa\xcd\x47\xcf\x26\xd8\xb9" + + "\x72\x4b\xcf\x24\xd8\x2d\x0b\x58\x79\x0b\xac\x7f\xbe\xfa\xe9\xed\xab\xd7\x7f\xbd\x6c\xbf\xbb\xc2\xce\xd5\xe9\x54" + + "\xa6\xc2\xee\x29\x29\xa6\xd8\x0d\x4d\x02\x67\xd2\xb4\xd4\x3f\xbe\xfa\x9b\xf6\x49\x37\x1f\x99\x50\x7c\xde\xf0\xb4" + + "\xef\x9c\xac\x7c\x0b\x04\x98\xa3\x2b\x87\x5b\xb2\xc3\xc9\x8a\x7a\x34\x66\x91\x05\xbc\xb0\xd1\x8f\xf2\x07\x4d\xd1" + + "\xcf\x29\x3c\x40\xf4\x9a\x71\xeb\x13\xdf\xc6\xdc\x4f\xc4\x8e\xde\x30\xc7\xab\x01\x86\x66\x82\x5d\x3b\x4b\x0f\x26" + + "\xa1\x72\x24\x8d\x44\x8e\x85\xa5\x26\xdc\xa1\xf5\x89\x27\xf5\x7a\xd4\x4d\x85\xf1\xe7\x20\x55\x2e\x64\xc6\x1e\x0e" + + "\x69\x44\x41\x87\x26\x59\x28\xda\xab\xd1\x28\xb2\x9a\x26\x28\x0a\xd9\x7b\x84\xb5\xe6\x9f\x2b\x97\xc6\x8a\x3e\x99" + + "\x86\x00\x62\x3e\x1a\x55\xb4\x35\x0f\xca\x1a\x1a\xc3\x8e\x2c\xd5\xf0\xe6\x8d\xf2\xc0\xd0\x08\x2b\xb0\xb9\x9a\x4f" + + "\x50\x67\xa6\xc7\xf2\xa1\x15\x9f\x14\xd3\xc0\xe0\x8a\x01\xd8\x04\x96\x5d\xa4\x2d\x35\x24\x31\x60\xab\x5c\xd3\x1b" + + "\x9a\xd0\x35\x3b\xf2\x9d\xb8\x76\x52\xa1\x29\xbb\x00\xb4\x17\x00\x5e\x47\x68\xca\x9d\xd8\xc3\x91\x1a\xb8\x6f\xd8" + + "\x84\x26\xcc\xd7\x18\x36\x4b\x16\x37\xb3\x1b\xd3\x24\x4b\x1b\x5f\x33\x48\x0b\xaf\x9d\x1b\xcf\x39\xf7\x3a\x6b\xa0" + + "\x4b\x42\x68\x4b\x7a\x34\xc2\x69\x2f\xfd\x64\x2f\x3d\x21\xd3\xf5\x10\x5d\x9d\x90\x3d\x40\x87\x50\xa8\x11\xb0\xdb" + + "\x49\xe9\xb5\x47\xc8\x54\x7b\xa2\x96\x06\xd4\x63\x7c\xcd\xe4\x1b\x45\xb7\x5f\xbe\xfa\xcd\xc4\x23\x84\xae\x46\x23" + + "\xbc\x32\x99\x94\x18\x7b\x65\xb2\xd4\xc4\x41\x51\x5c\xdb\x88\xa9\xa9\xd8\xf5\x14\xdf\x14\x85\x4c\x51\x71\xac\xfb" + + "\xbe\x57\x77\x20\x80\x28\x22\x74\x65\xb2\xeb\x46\x20\x56\x6d\x4b\x57\x52\x3d\xd0\xd6\xaa\xa5\xe1\x38\xfb\xea\x99" + + "\x2d\x1d\x53\xad\xad\x57\x0d\x08\xdf\x93\x6d\x2a\x59\xbf\xfa\x62\x93\xd6\x0d\xb4\xea\x35\x10\x64\xa3\xd8\xad\xb5" + + "\x55\x37\xdd\xc4\xab\x9d\x73\x54\x5b\xc8\xa6\x58\xd5\x4d\x11\x8d\x46\x38\x02\x76\x77\x18\x17\xb3\xe5\x1e\x95\xbd" + + "\x32\xd5\x64\x26\x1e\x8d\x4c\x16\xd3\x88\x85\x76\xd4\x6d\x8f\x69\xa4\xd8\x1f\x99\xec\xba\xe6\x7e\x24\xb9\x3f\x84" + + "\x9d\xd2\xd8\x2b\x1d\x0b\x81\xa9\x08\x55\xdd\x67\x82\xd0\xa0\xa4\xd1\xbe\x5a\xd3\xd0\x1c\x2b\x87\xab\x6d\xbe\xab" + + "\x56\xfa\x95\xc5\x57\x3b\x9a\xd5\x8f\x60\x1f\xaa\xb3\xc4\x12\x36\x4b\x2c\xd2\xa4\x69\xdd\x21\x04\x78\x31\xed\x91" + + "\x9a\x2d\x17\x62\x26\x4c\x93\xf8\xe6\xbe\xdb\x52\x9b\xda\x11\x9e\xdd\xb9\x9b\xd6\x32\x88\x3b\x8f\x29\x27\xb3\xff" + + "\x55\x33\x42\xd6\xb1\x87\xd9\x5d\x2d\xff\x52\x5f\x8a\x29\xeb\xd9\x6b\x80\xb6\xb4\x3f\xf8\x80\x0d\xd5\x1f\x59\x40" + + "\x81\x0d\x0e\x20\xf4\x9a\x39\x1e\xbd\xa9\xdc\xf6\x96\x7d\xd8\x25\x39\xd7\x62\x4b\x85\xba\x24\x08\xad\x9c\x00\x7d" + + "\xf2\x70\xad\x44\x51\xf7\x8d\xbc\x21\xa4\x82\xbc\x8a\x97\x78\xe8\x3d\xf5\xd5\xb6\x10\x21\xf4\x86\x55\xd7\xa6\x2f" + + "\xc5\xad\xd2\x94\x47\x2b\xc7\x77\xce\x3d\xaf\xeb\xff\xf8\x73\x7a\x93\x66\x77\xa9\xf1\xf7\x6a\xc8\x02\x10\x1f\xe7" + + "\xdc\x33\x4f\x90\x9c\x90\xc0\xdd\x44\xde\x29\xe7\xc7\x23\xdf\xf9\x76\x8f\x42\x90\x64\x3b\x11\x1a\x97\x0d\xf7\xba" + + "\x9f\x71\xe6\x3b\x17\x0d\x32\x2e\xd5\xfc\x62\x12\x36\xa1\xeb\xd6\x67\x6e\xbd\x48\x66\x89\x69\x02\x63\x42\xc6\x9d" + + "\xa4\x46\x4c\x8b\x1a\xe6\x84\xdd\xbc\xdf\x56\x00\x0f\xff\xac\x86\x51\x70\xe1\x74\x92\x43\xa5\x0f\xa5\x46\x50\x24" + + "\x63\xf2\x04\xa5\x1f\x2b\x44\xa3\xf0\x00\x33\x64\x36\xec\x01\x8e\x8e\xc9\x24\xb4\x1a\x65\xa7\x47\x47\xa1\xf3\xad" + + "\x47\x9b\x81\x75\x1a\x3a\x2f\xbd\xd1\x08\x84\xef\x6d\x9a\x63\x79\x4b\xcf\x27\xa4\x54\xa7\x74\xea\xf9\x6c\xa7\x30" + + "\x1a\x27\xff\x16\xef\x76\x71\x1a\x35\xe5\xc2\x3b\xd2\x2d\x47\x25\x0b\x7a\x14\x0b\xf9\x92\xd6\x36\xc8\x54\xb6\x26" + + "\x6d\xec\x8c\x29\x2f\x9b\x95\xdf\xeb\xa6\x0f\xd7\x02\xd5\x78\x57\xca\xd9\xd7\x75\x35\x7f\x0b\xb5\x29\x45\x24\x06" + + "\x80\x6d\x6b\x9f\x67\x39\x5d\xa1\x21\x7b\x90\x29\xa7\x13\xfa\x89\x27\x53\xc7\xab\x2d\xbd\xe6\xaa\xb6\xc1\xa7\x8e" + + "\x57\x76\x1c\x7c\xdb\x69\x8e\xc3\xbd\x0e\x42\x4a\xfd\xb0\x59\x25\x6e\x26\x52\x21\x0d\x18\x72\xd4\x74\xb2\xc1\xa9" + + "\xf3\x10\x63\xec\x79\xa1\x29\x03\x42\xec\x00\x40\x5e\xfe\x1d\x22\xe0\x18\x6b\xcb\x1f\x49\x4a\xfe\xb6\x3e\xc8\xc1" + + "\x68\x54\xc7\x07\x84\x98\x92\x75\x3e\x00\x39\xf8\xfb\x4a\xaa\x76\x34\x7c\x36\x81\xb3\xf0\x55\xa7\xe1\x55\xb0\x87" + + "\x36\x43\xc0\x1b\xac\xf3\x84\x1b\x65\x33\x76\xac\x89\x1a\x71\xd0\xf1\x3d\xe2\x91\x99\x6e\x55\xc2\x82\xb2\x2c\x01" + + "\xfb\x96\x34\xeb\x17\x4d\xb9\x55\x31\xbf\xaa\xe0\xb2\x0f\x05\x64\x59\x3d\xa6\x3e\xd1\xe0\x63\x9e\x28\xb5\xff\xbc" + + "\x02\x5f\x54\x05\xae\x6e\xcf\xe9\x17\x6a\x4e\xda\x10\x18\x61\x49\xf9\xde\x10\xe8\xd3\x90\x54\x50\xf8\x6a\x8e\xee" + + "\x93\x7a\x9c\x09\x9b\x2f\xe5\x1b\x8e\x05\x29\x69\x50\x12\x6a\xea\x5d\x03\xdd\xee\x04\x38\x08\x06\x39\x9a\x35\x93" + + "\x7b\xbf\xd9\x76\x0c\xb3\xe0\x76\x2d\xd2\xdc\x0a\xb6\x82\xe7\xe2\x32\x11\xe0\x77\x83\xfc\x2c\xcb\x77\xf9\x96\x6f" + + "\x10\xa1\x3e\x7b\xf8\xbf\xc2\xbf\x89\xf3\x0f\x5b\x9e\xee\x62\x49\x61\x8a\xee\x7a\x4f\x2e\xd3\x10\xd1\xbf\x65\xbf" + + "\xe9\x69\xf2\xe6\x5a\xc8\xb7\x7f\xd7\xdf\x65\x9d\x4f\x8d\xac\x97\x36\x3f\x48\x46\xc3\x46\x6f\xc0\x46\x35\xfc\x9f" + + "\x5d\x7e\x9f\x88\x76\xb5\xea\x41\xa4\xe1\xd4\x77\x02\xaf\x2c\xb9\xb5\x4c\x2d\xb1\x86\x65\xe8\x4e\xe6\x1d\xd4\x3c" + + "\xb5\xa3\x09\xb8\x36\xe0\xa8\xc1\x15\x8c\x97\x95\xa5\x02\x73\x6b\x77\xbb\xd9\x64\xdb\xdc\x6a\x8b\x04\xf0\x87\xda" + + "\x70\x1e\xb0\xa3\x49\x05\xa3\xd8\x19\xe6\x83\xa2\xe0\x38\x24\x56\xbe\x8d\xa3\x48\x6c\x0f\xd2\x22\xcd\x1c\x74\x27" + + "\xf2\x0f\xf1\x5a\x64\xb7\x39\x16\xb4\x39\xf8\xc0\xb1\x46\x74\x88\x08\xf3\x31\x29\x49\x89\xaf\xff\x8f\x42\x13\x3f" + + "\x2c\x0e\xca\xb6\xea\xc6\x1a\x05\xc5\x76\x2c\x94\x18\x30\x8e\x2b\xcf\x3a\x2b\xdb\xc8\x34\x3b\x26\x25\x34\x17\x69" + + "\x88\x1f\x4a\xea\x5b\xdf\x5f\xfe\xf0\xea\xe7\xbf\x7e\x78\x4f\xab\x48\xa1\x5a\x31\xe2\x34\xd2\xf6\xf7\xab\xcf\xa5" + + "\x4e\x57\xc8\xe5\x2a\x1f\x75\xcb\x14\x8f\x7b\x89\x48\x37\x67\x2b\xcf\xa2\x28\x11\x95\xf1\xa7\x6e\x30\x29\x67\x6d" + + "\x21\xd8\x83\x7a\x3a\x3d\x9a\x94\x75\x20\x0f\xd0\x04\x61\xbc\x16\x29\xac\x7f\xed\xed\xba\x77\xaa\x6b\xad\xf8\xee" + + "\x4d\xc2\x77\x3b\x8c\xee\xe2\x30\x5f\xe9\xa7\xf6\xaa\x27\x53\xb4\x12\x71\xb4\xca\x51\x37\x87\xdd\x2a\xbb\xd3\x89" + + "\x37\xe7\x8c\x3a\xfc\xa8\xcf\x2f\x0e\xe4\x17\xa7\x88\xb4\x51\xbf\x2e\x3f\x41\x1f\x94\x54\x2d\x7f\x67\x05\x59\x92" + + "\xf0\xcd\xae\xda\x70\xe9\x92\xa8\xc5\xc9\x27\xf4\xc8\xb7\xe2\xdd\xf7\x95\x3b\xd4\x56\x48\x1a\x22\xc4\xa4\x83\x5a" + + "\x76\x5c\x37\x80\x7e\x07\x88\x9d\x18\x2d\x0c\x6b\xc3\x53\x91\x18\x0b\xc3\x92\xe5\x91\x99\x69\xa8\x69\xb5\x07\x65" + + "\x00\x23\x2c\x46\x7b\x05\x83\xe8\xb0\x9d\x0a\x57\x7d\x70\x16\x34\x29\x31\x5a\xc5\x10\xbc\x26\x2c\x8a\x21\x42\x54" + + "\x85\xcc\x50\xbd\x47\x0d\xe7\x75\xe3\xd5\xc0\x64\x4d\xd5\x95\xcb\x64\xc5\xc0\xb6\x28\x16\x0f\xc3\xee\x43\x69\xc2" + + "\x13\x47\x78\x78\x32\x28\xa5\x2a\x24\xfc\x52\x6f\xbf\xa7\x33\x02\x9a\x5a\x56\x92\x61\x32\x0b\xc4\x6f\xf3\x0c\x0d" + + "\xe6\x33\xa1\xc3\x4d\x07\xed\x9c\x76\x1b\x1a\x6c\x92\xa3\xa1\xee\x5d\x9b\x24\xcb\xd6\xf1\x5d\x69\x9b\x08\x0e\x0f" + + "\xac\x45\x02\xce\x78\x0e\xda\x05\xdb\x2c\x49\x10\x15\x5e\x15\xcb\xe1\x0c\x91\x3e\x0b\xbf\xa8\xd4\x20\xd4\xc2\xe7" + + "\x7a\x77\x82\x90\x41\xdd\x89\xbf\xfd\xd3\x04\x2a\xde\x21\xec\x4c\x3c\x27\xf2\x48\x59\x76\xbb\x89\x6c\xfb\xe7\x74" + + "\x93\xdf\xd5\x4b\x24\xd1\x3f\xb8\x97\x1c\x94\x39\x27\xe8\x57\x34\xf0\x30\x21\x72\x7e\x93\x2d\x97\x3b\x91\xff\x0f" + + "\x68\x87\x5e\x43\x0f\x0b\xe4\x41\xf9\xed\x3c\x97\x55\x3e\x2c\xb4\xe1\x9e\xd0\x3e\x53\xe4\x56\x71\x18\x8a\x9e\xcc" + + "\x3d\x4b\xce\x75\x11\x6d\x02\x2c\xec\x0b\x90\xc2\x08\xda\x63\xd5\xe4\x89\x71\xb4\x16\xb9\xf0\x49\x91\x9b\x86\x9a" + + "\xfc\xf7\xe5\x4c\x8d\x03\x7d\xde\x38\x5f\x12\x2b\x5b\x29\xa6\x29\x74\x46\xe4\xe1\xea\x88\x51\xc0\xc0\x6a\xa8\x6b" + + "\x3d\xeb\xdc\x1d\x74\xf0\x15\x3c\x58\xe1\xde\x58\x13\x56\xa3\x1c\xa1\x82\x85\x43\x2a\x14\x76\x28\x87\x07\x57\x95" + + "\x9c\xd0\xbd\x1d\x2b\xa9\x9e\xc9\x4c\x14\xc5\x10\x45\xaa\x4c\x46\xbf\xda\x58\x1a\x02\x40\x0c\x46\x23\x01\x22\x5c" + + "\x12\x69\x7c\x6a\x75\xb3\xde\x64\xe9\x2e\xdf\xde\x06\x79\xb6\x65\x7e\xef\xdd\x17\x97\x7b\xba\x2c\x0a\x1a\xb3\xa5" + + "\xb6\x34\xa5\x08\x60\x14\x24\x71\x70\xa3\xcb\x1f\x54\xe0\x8c\x6f\x62\x44\x91\x03\xd7\x55\x2b\xd6\x09\x3c\x44\xf7" + + "\xec\x34\xda\xe5\x2a\xcf\xf3\x2d\x46\xea\x63\xbe\x8d\x44\x8e\x08\xec\xc8\xab\x6e\x5e\x75\x7a\xac\x22\x20\xd4\xa9" + + "\x21\xec\x27\x21\x72\x9c\xd3\x36\xc4\xb1\xcd\x5e\x38\x57\xee\xce\x33\x8f\x89\x42\x8b\x5b\x32\x69\x61\xd3\x88\x2d" + + "\x07\x1b\x6f\xc5\x22\x1b\xa9\x12\xa3\x69\xd3\x60\x71\xb7\x50\x6a\xb8\x45\x84\x5e\xb3\x78\x34\xe2\x38\x26\xb3\x68" + + "\x34\x8a\xba\x9d\xb6\x28\xf0\xf5\x68\x74\xad\x06\xe5\x93\x61\x56\x38\x1a\x39\x86\x4e\xcc\xd8\x3c\x41\xde\x09\xb1" + + "\xd2\x2c\x97\x36\xe6\x7e\x77\x0d\xe5\x90\xeb\x2c\xf7\x84\xbe\x4e\x89\xa6\x48\xeb\xfd\xc8\xeb\x7c\x49\xe8\xb2\x1d" + + "\xc0\x57\xba\x71\x09\x7d\xe4\xfd\x2a\xbb\x0b\xb3\xbb\x94\x3d\x94\xb3\xfa\xda\x0a\xb2\xf4\x93\xd8\x76\x22\x7a\xb4" + + "\x4b\x5d\xb2\xdd\x26\x4a\xb3\xae\xf9\x0d\xe0\x78\xb7\xc9\x42\x2d\x78\x95\x94\x5f\x98\xa2\x52\x5f\xbb\x0e\xb4\xeb" + + "\x90\x85\x6d\xbb\x3d\x8e\x23\x8a\x1e\x3f\x28\xbf\x38\xcd\xe5\x19\x02\x2c\x3d\x7e\xbf\xf7\x7c\xeb\xa6\xf2\x8d\x9b" + + "\xee\xbf\xd1\x9e\x23\x37\x75\x53\x64\x86\xa6\xba\xa0\x21\xbb\xc4\x61\xef\x83\x2b\xc7\x70\x73\xcf\x3c\x1e\x47\x6b" + + "\x90\x96\x90\x45\x2a\xcd\x52\xfd\xc4\xea\xe7\xcd\xde\x87\x8f\xdf\xcb\x9c\x8e\x8f\xfb\x25\x78\xfc\x00\x65\xae\xa3" + + "\x21\x0a\xba\xec\x68\x1b\xa5\x9b\x82\x4e\x01\x3c\x08\x81\xec\x3a\xd8\x32\x89\xeb\x4d\xa1\x44\xa7\x6e\x6a\xab\x8b" + + "\xb9\x8d\xdd\xf7\xa6\x4d\x16\x76\xef\x05\xb6\xa7\xd8\x4d\x4f\x89\x83\xb0\x87\x2d\xd3\x26\x0e\x22\x9e\x7a\x45\x6c" + + "\x6c\x4f\xdd\xd4\x2c\xdc\xff\x47\x64\xcd\xf4\xa9\x42\xbd\x81\x52\x4f\x5e\x59\x0f\x20\x86\xc2\x99\xd3\x7b\xd9\x67" + + "\x96\xf6\xd2\x8c\xa6\x38\x1a\x8d\xe0\x54\x28\x8b\xda\x62\x23\x88\x8a\xf5\xeb\x6d\x96\xcf\xa4\x9c\x21\x44\xca\x16" + + "\x2e\xa9\xa4\x51\x2f\xf8\xa4\x1e\x4e\xb3\x6a\x3a\xd9\x48\x2d\x4e\x81\x96\xe0\x0a\xcf\xf1\xa6\x08\xe3\x4f\xc5\xca" + + "\x39\x3f\xfb\xce\x2b\xda\xa8\xc1\xc5\x66\x2b\x8a\x9c\xfb\x89\x28\xc2\xa4\xc8\x92\xe2\x36\x29\x54\xa4\xe0\x22\xcd" + + "\xaa\x8b\x65\xb6\x5d\x17\xcb\x58\x24\xe1\x4e\xe4\x85\x0a\x0b\x5c\xac\x79\xbe\x2a\xe2\x74\x57\x84\x22\x21\xae\xef" + + "\x5c\xb9\x5b\xef\xd4\x76\xd3\xb9\x3b\x76\x2f\x16\x35\x3f\x99\x9b\x9a\x04\x18\xb6\x52\x98\xef\xff\xf1\x32\xb5\x65" + + "\xb1\x4e\x07\xca\xe2\xa6\x83\xa5\xc1\x6e\x5a\x4b\x0d\x9e\xe3\xd5\x96\xb8\x3e\x76\xae\xe6\x0b\x8f\x9c\xda\xee\xd8" + + "\x5e\x10\x8d\xc8\xc3\x05\x2d\x65\x9d\x86\x88\xb4\x64\xe6\x47\xf8\xec\xac\x2a\xc9\xd9\x99\xbb\x3b\x25\xe6\xe2\x59" + + "\x44\xa4\x98\xb9\x29\xc1\x4d\x79\xec\xe9\x1c\x3b\xf6\x37\x1e\xa9\x79\x7c\xf1\xbc\xe2\x48\x32\x75\xdf\x2d\xe9\x10" + + "\x68\x74\xc8\x9a\x93\xc5\xdd\x3e\x9f\x1e\xd2\x06\x57\x6e\x3a\xae\x7a\x75\x27\x7d\x13\xb8\xad\xd2\x11\x8f\xef\x90" + + "\x89\x03\xb5\xce\x13\x92\xb3\x73\x62\xa2\x77\x20\xa0\x25\x8d\x7b\x82\xbc\xa9\x5d\x9f\x7c\xb6\xc3\x68\xbe\xda\x1a" + + "\xe3\xc5\x21\x39\x56\x3c\xb9\x28\x25\x73\x6c\xf7\x54\xfe\x25\x0f\xdf\xd2\x52\xb1\x03\x54\x8e\xdf\x97\xb3\xee\x37" + + "\x67\x5f\xf1\xcd\xc7\x83\xdf\xfc\xaa\x90\x98\xb7\xea\xe7\x4e\xfd\x44\xea\xe7\x33\x84\xe7\xba\x1e\x44\xd0\x67\xb9" + + "\x4a\x73\xa3\x7e\x7e\x53\x3f\xa9\xfa\x49\xd4\xcf\x2b\xf5\x73\xaf\x7e\x3e\x55\x98\xcf\x6d\x21\x0d\xc3\x54\xad\x64" + + "\xcc\x7d\xc9\x33\xd5\xcc\x37\x03\x5b\x46\x63\x3c\x77\xf8\xd9\x6f\xee\xf8\xe8\xd8\xc3\xc8\xb9\x42\xde\x29\x2a\x4e" + + "\x9c\xab\x13\xef\xf4\xa4\x70\xae\x4e\x90\x14\xf3\x45\x01\x12\x6b\xb5\xd2\x4a\xc6\x51\x3c\xd4\x0c\x3e\xdd\xcf\x42" + + "\x17\x60\x8b\xcc\xdd\xb1\x1d\x64\xa1\x58\x60\x9b\x59\x70\xee\xe6\xf8\xfc\x17\xcd\x8f\x91\xfd\x80\x7d\x8a\x5c\xf7" + + "\x97\xd3\x8f\x08\xec\xad\xa1\xc3\x6b\x46\xaf\x6f\x39\x58\x76\x0d\xc7\xb9\x72\x3d\xef\xd4\xf5\x0a\xe7\xca\x75\x5c" + + "\xcf\x23\xa7\xc4\xf5\x64\x03\x41\xc7\x71\x0c\xa9\xaa\xa5\xe2\x3f\xb5\x89\xeb\x11\x5c\xfd\x3f\x8e\xe8\x7a\xaf\xb7" + + "\x7e\x89\xa2\x8b\xab\x2e\x46\xe6\x36\x10\xab\x07\x0b\x8c\x9d\x13\xe4\x11\x95\xc1\x77\xf5\xe0\xe0\x92\x43\x59\x54" + + "\x44\x4d\xbd\x34\x55\x79\x4a\xba\x66\xfb\xe3\x08\x5d\xd1\x98\x5e\x93\x87\xfa\xd4\xed\xf5\x68\x84\xaf\x19\x42\xaa" + + "\x93\xdc\xb0\x90\x26\x4c\xc8\x2f\x7b\x83\x4c\xca\x22\x9a\xb1\x6b\x70\x44\x45\x8c\xa5\xa4\xba\x58\x8f\x46\x78\xcd" + + "\x7a\x47\xf7\x34\x31\xb2\x2b\x29\x92\x83\x4e\x0a\x31\xf4\xd6\xcd\x62\x39\x77\xd6\x1e\x49\xe1\xa7\x79\xe6\x3b\x6b" + + "\x6f\x34\xc2\x19\x5c\x68\xe0\x28\xf8\xa6\x46\xcb\x1c\xbb\xd8\xdd\x9d\xba\xe4\x78\xbc\x26\x8b\xb3\xf3\xda\xf9\xce" + + "\xb8\x99\xa5\x0c\xa1\x32\x65\x3f\xe0\x94\x22\xd9\xf6\x50\xa5\x0d\x3b\x99\x73\x03\x70\xda\xd1\x89\x99\x9a\x27\xe8" + + "\xa4\x46\xae\x47\x47\x2c\x83\xbc\xb2\x03\xe3\x24\xcd\xd8\x0f\x38\x53\xc4\xe8\xc6\x64\x27\x46\x1e\xe7\x89\x90\x84" + + "\x32\xd8\x8e\x91\x0f\xd1\x02\x99\x89\x89\xe6\x63\xbe\x40\x25\x4d\x9f\x96\xb5\xa3\x46\x80\x9e\x23\x58\x59\xbf\xd5" + + "\xdb\xcf\xdd\x9d\xdd\x11\xa4\x8e\xd9\xf1\x25\x49\xca\x48\x49\xb3\x2f\x09\xc7\x73\x45\x21\x2b\x0a\x9c\x49\xe9\xa1" + + "\x4a\x28\x1e\xfe\x6d\xa9\x60\x4a\x2a\xb4\x36\xfd\x82\x78\x94\x09\x4b\x0e\x35\xdd\x90\x1c\xc4\xeb\xc8\xd8\x6d\x83" + + "\x5a\x10\x0c\x9e\x80\x51\x9f\x68\x42\x61\x7c\xbd\x34\x80\x30\xc8\xe1\xa5\xa4\x9b\x27\xa5\xe0\x4a\x1a\x8f\xb5\x81" + + "\xc8\xcc\xfa\xca\xec\x58\x7f\x3a\x36\x30\x8c\x5e\xe7\x0b\x64\x5e\x63\x9f\x48\x71\x93\x37\xa4\xdc\xb3\x7b\x34\xb2" + + "\x67\xcf\x25\x7b\xa1\x93\xbd\x18\x24\xeb\xbe\x78\x38\xa7\xdf\x95\xb5\x69\x00\xe6\xab\x22\xfe\x62\x88\x7e\x7b\x0e" + + "\xbc\x41\x2f\xd1\x33\x04\x23\x1f\x32\x0d\x54\xa6\xd5\x03\x50\xd7\xbf\x76\x87\x70\x93\xa1\xc7\x49\xbd\x86\x3e\xbe" + + "\xc2\xad\xe9\xe2\x9c\x9a\x67\x5e\xe1\x86\xa6\x63\x79\xaa\x34\xa6\xb2\x62\x4c\x1b\x3f\x4e\x0a\x65\xbc\x48\x2b\xe6" + + "\x3d\xc1\xf6\x51\x63\x84\x0f\x7d\x06\x56\x64\x63\xad\xd8\x87\x06\xa4\x4e\xc5\xc0\x69\xa0\x56\x4a\x40\x74\x1c\x49" + + "\x8d\x64\xa3\xdb\x04\x4d\x51\x96\xa0\x59\xcf\x8e\xa9\x0f\x84\x4a\x5b\x05\xcc\x69\xb5\x9c\x28\xb4\x1d\xa6\x48\x37" + + "\xda\xdd\x9d\x59\x41\xa8\x47\x0c\xcd\x91\xb9\x04\xa6\x45\x92\x63\xea\x46\x9a\x3c\x64\x8a\xe5\x20\x2c\x29\x16\x57" + + "\x6e\x6a\x93\xff\x1c\x87\xe8\x97\xf8\x52\xef\x9f\x2d\x99\x4f\x23\x16\xd0\x15\x0b\xbf\xcc\x1d\xda\xad\xeb\x1e\x77" + + "\x68\xcc\x04\x6e\x41\x5d\x63\xb6\x34\x25\x13\x56\xaa\xde\x66\xac\xd8\xb0\xaa\xd9\xd0\x13\xd9\xc7\x09\x70\xae\x9c" + + "\x0d\xfa\x32\xab\xb0\xcf\xbc\x9f\xbd\xe4\x36\x64\x5d\x49\xdd\x9e\x05\x4e\x6c\x7c\x55\xe9\xd2\x21\xe6\xe2\x9a\xb9" + + "\x6e\xfa\x70\x4e\x2f\x4a\x42\xc0\x88\x3e\x05\x66\x5f\x0c\x36\x07\xd9\xef\x3a\x52\x1d\xd7\xbc\x14\x34\x6a\xcd\xe8" + + "\xa8\x28\x96\xed\x30\xa8\x18\x06\x3c\x5d\xb2\x18\x7f\x8f\x97\x84\x4c\xf1\x92\xfd\xaa\x2e\xbb\x27\x96\xdd\xf4\xb8" + + "\x5e\x5e\xb9\x86\xb7\x68\x9e\xc4\x0b\x90\xa2\xf9\x38\x89\x15\x0b\xf7\x38\x58\x59\xdd\x67\x67\x94\xab\xe9\xf1\x76" + + "\x50\xb1\x0d\x32\x4b\xcd\x34\x8a\x2b\x22\xed\x20\x29\x54\x86\xf7\xf0\xb2\x2c\xdc\x9c\x58\x52\x63\x10\x93\xc8\xd9" + + "\x70\x2d\xaa\xce\x95\xe1\xe6\x6e\xea\x15\xd8\x66\x8f\x13\x10\xb6\x43\xdd\x4e\xb4\xb1\x8d\x43\x76\x8b\xbf\xc7\x21" + + "\x21\xc3\x6b\x05\xa0\x98\x9e\x9a\x50\xcc\x37\x5b\xb1\x98\x83\x41\x59\xad\x3d\xcc\xc7\x70\x37\x1f\xcb\x37\x88\xee" + + "\x70\x48\x4c\x31\xc0\x1d\x90\x2f\x3a\xe8\x80\xdf\x65\xc5\x15\x4c\xed\x53\x53\x9d\x12\x97\xa3\x65\x7f\x16\xc3\xbb" + + "\xb3\x98\xe1\xc8\x58\x5d\x9a\xd2\xa0\x94\xa6\xc2\x2f\x26\xc1\xd5\xdc\xcd\xb9\xfa\xc5\x23\xee\x05\xb6\x8f\x7e\x79" + + "\x42\xac\xc2\x06\x6f\x4b\x17\x92\xab\xca\x9a\xa8\x8b\xd9\x79\xd9\xcc\x4e\xaa\x57\xb7\x78\x49\xa8\x6f\xa2\x9a\x75" + + "\x20\x49\xea\x5a\x6a\xf1\xdb\x27\xab\x00\x47\x16\x47\x7c\xbd\x99\xa1\x1e\x6f\xe7\xf0\x26\xc9\xf7\x5e\x2c\xe0\x45" + + "\x54\xbd\xf8\x01\x73\x39\x1a\x3f\x94\x8e\xe7\xba\x88\x1e\x9d\x93\x92\x7e\x7a\x86\xad\x7f\xea\x9e\x16\x1f\x3f\x92" + + "\x4a\xef\xd5\xf3\xde\xf7\xce\xe9\x47\xef\x94\xb8\xe7\x32\x8f\xf9\x2e\xdf\x66\x69\xb4\x38\xbe\x98\x8f\xab\xcb\x7e" + + "\x59\xb0\xa4\xb2\x47\xa4\xfe\x5e\xac\xe1\x5b\xb1\x96\x83\x1a\xbd\x7b\xba\x54\xb5\x5e\x51\xd3\x78\xdb\x32\xdd\x14" + + "\xcb\x3f\xe4\xd4\x4d\x4f\x89\xb9\xd7\x9e\xf5\xd2\x54\xa3\x1c\xfa\xab\x54\x1a\x31\x58\x2c\x7b\x9c\x20\x15\x87\x7c" + + "\xbf\x83\x0f\x7c\xda\xae\xb0\x05\x2c\xc6\x41\x2f\x0d\xbe\x2a\x60\xa9\x43\x4e\xbd\x0c\xa3\x4f\x41\xda\xe7\xd0\xab" + + "\x2a\x6d\x38\x77\xa1\x27\xfd\xde\x2a\x18\xc6\x13\xe5\x2e\x09\x95\xd6\x44\xbb\xb4\x03\xe3\x42\xa0\xba\xb0\xf6\x54" + + "\x99\x15\x9f\x0f\x2f\x71\x69\x8a\xa2\x37\x28\xd4\x8a\xa2\x71\x85\xf0\x9b\xe8\xf0\xcd\x88\x25\xb5\x48\xbb\x4e\x2a" + + "\x1a\x8b\x87\x82\x6b\xb7\x7e\xb8\x38\x62\xbe\xb3\xf4\x66\x51\xa3\xc3\x1f\xdf\x81\x57\xfa\x3b\x39\x34\xb2\x89\x1d" + + "\x2a\x65\x10\x91\x69\x9b\xc4\x7d\x3f\x96\xef\x00\x12\xe2\x1a\x47\xa4\x3b\x6a\x76\x7a\xec\x7c\xb3\x50\x3e\xa3\x68" + + "\x3e\xde\x2c\x10\x6d\xc8\x91\x52\xb4\x21\x6c\x1b\x94\x2a\xad\x74\xf2\xd9\x2c\x74\x96\xde\x7e\xc9\x64\xe6\xb3\xda" + + "\x7d\x3b\x70\x14\x84\xa5\x75\x7c\xee\xcd\x56\x6c\xd5\x5f\xfa\x3d\x3e\x56\x0b\xac\xce\xd2\x63\x40\xae\x6d\xb3\x77" + + "\x6e\x68\xbe\x1b\x53\x3d\xd0\xa2\xda\x2d\x55\x83\x7d\x49\x07\x43\x94\x77\x15\x06\xb6\x8f\x5e\xd8\xce\xe7\x7f\xc1" + + "\xac\xc9\x99\x9c\xfd\x99\x9f\x2d\x5f\x9d\xfd\xe0\x99\x85\x7b\x67\x92\x19\x39\xac\x50\xa4\x75\x03\x8b\x14\xb6\x7b" + + "\x7c\xe4\x91\x71\x14\xd7\x0a\xa6\xa4\xbf\x3d\x99\xb1\xeb\x62\xd7\x95\xd4\xff\xd2\x17\x10\x17\x3b\xbf\x48\x0d\x24" + + "\x67\xe1\x98\x2c\x5e\x98\x67\x16\x90\xa7\x7f\x21\x25\x7d\xf5\x24\xe1\x39\xc6\xab\x3c\xdf\xec\xec\x62\x99\x6f\x8a" + + "\x30\x0e\x72\x32\x85\x25\x13\x77\xe7\x99\x64\x21\x8b\xd9\xce\x5e\x8f\xcf\xd1\xe2\xf8\x5c\xce\x33\x4f\xf6\xab\x37" + + "\x5d\xf3\x38\xc9\xb3\x29\xb1\xb1\x73\x66\xb9\x77\x9e\xe9\xfe\xb7\x73\xa6\xc0\x4f\x3d\x13\xbb\x56\x7b\x43\x4e\x5d" + + "\x4b\x32\xa3\xce\x61\x70\x5e\xf0\x1a\xbf\xc1\x3e\x81\x8e\xf3\xba\x53\x0d\xcd\xb5\xa9\xf5\x1a\x9e\x9c\x5f\x7c\xfb" + + "\xf2\x4f\xdf\xfd\xd7\xff\xfe\xf3\xab\xd7\x6f\xbe\xbf\xfc\x01\xc1\x51\xd8\x60\xc5\xb7\x6f\xb2\x50\xc0\x69\xd5\xf6" + + "\x98\x69\x1d\x68\x75\xb1\x78\x49\xcc\xe6\xf6\xfc\x4f\xa3\x40\xf9\x23\x04\xcc\x19\x00\xf2\x18\x41\xf8\xfd\x0e\x49" + + "\x13\xcd\x50\x49\x07\xd3\x7e\x46\xa6\x2c\xdf\xa1\x14\x06\x2f\xbd\x76\xf1\x09\x55\xbc\x43\x26\xef\xf2\xd5\xea\x58" + + "\x21\x6a\x76\xfb\xdf\x88\x31\x4e\x38\x0b\x1c\x00\x01\x5d\x26\x59\xb6\xc5\x17\xa7\x70\xb3\xe5\x69\x98\xad\x31\x21" + + "\x1e\xe6\xa4\x0d\xc1\x3d\x45\x47\xac\xe1\x55\x27\xe1\x8c\x33\x7f\x61\xfd\xd9\x0e\x9c\x0b\xf0\x25\xf4\x17\xd6\xcb" + + "\x3f\xd9\x81\x73\x5e\x79\x16\x4e\x3c\x0d\xe4\x95\x83\x09\xa2\xaf\x66\x70\xf3\x04\x2d\x20\x3a\x12\xac\x3e\x74\x0b" + + "\x8f\x16\x96\x39\x1d\x47\x54\x26\x21\x25\x7d\xf3\xa4\x30\x3e\x5e\x42\x97\xbf\xec\x99\x5e\xb5\x96\x6e\x5c\x5a\x9b" + + "\xd0\x7f\x15\xfe\x9e\xb5\xdc\x66\xeb\x37\x55\xc3\xe0\x00\x64\xe6\xfb\x67\x4c\x80\xdd\xbc\x90\xd6\xdf\x39\x7d\x59" + + "\x92\x56\xd3\x0f\x9a\xa0\x25\xbd\x7c\xba\x93\xe6\x72\x2c\xce\x41\x09\x18\x06\x8c\x4a\xbd\xf7\xb0\xd1\xf3\xea\xf1" + + "\xf5\x5e\x2e\xaf\x61\x3e\xfb\xf8\x6a\xc0\xe8\x6c\x41\x25\xa4\xe1\xf9\xf2\xac\x56\xa3\xdf\xbc\xec\xa8\xf7\x50\x4e" + + "\xfd\x51\xeb\x60\xd8\xcf\xe1\xd5\xa1\x52\x3d\xbe\xae\x6b\xf8\xc3\x01\x20\x35\x84\x1d\x64\xfa\xda\xe8\xea\x48\x65" + + "\x23\x4d\x3f\x98\x2c\xb9\xc7\xe7\x88\x98\xc8\x23\x68\x16\x00\xc0\x0f\x72\x5d\xd7\x45\x66\x58\xbb\xc6\x69\xc0\xc3" + + "\x21\x45\xd1\xf0\xe2\xb7\x00\x85\xf5\x97\xc1\xd0\x8f\xfe\x60\x47\x46\x8f\x97\x30\xd6\x5e\xa2\xb2\xa4\xc7\xda\xa6" + + "\x33\x9c\x5d\xd7\x37\xe5\xf5\xf3\xa0\x9a\xfe\xe0\xb2\x21\x8f\x31\xb2\xfc\x6d\x76\xd7\xf3\x27\xba\xdd\x24\x19\x0f" + + "\xc1\x25\xa2\x72\xbf\x38\xc6\x27\xf3\x24\x36\xc0\xe9\x90\xa1\x20\x11\x7c\x3b\xf5\xb3\x7c\x35\x43\xe3\xc5\x09\x99" + + "\x85\x16\xdf\x6c\x44\x1a\x62\x99\x2e\x8c\x3f\x2d\xe4\x1f\x23\x90\xd4\x58\x45\xed\x6c\xb3\xcd\xa2\xad\xd8\xed\xd0" + + "\x62\xbe\xdb\xf0\x74\x31\x1f\xab\x1f\x2d\xa5\xcf\xb7\xa8\xce\x03\xfc\xd0\xa6\x93\x6f\x66\x68\xf1\xe2\x2b\xfe\x9b" + + "\x8f\xa1\x18\xea\xef\x66\xf1\x73\x5d\x23\xcb\xb2\x8c\x13\x93\xc3\xf1\x2b\x13\x06\x6a\x95\x06\x11\x22\xd9\x48\xaa" + + "\x8a\x7c\xc8\xb0\xe4\xcd\xaf\xb7\xe2\x56\x00\x60\x48\xd3\x96\xff\xfa\xdb\x5f\xff\x27\xcf\x37\x3f\x89\x5f\x6f\xc5" + + "\x2e\x9f\x09\x4b\x55\x4f\x72\x0f\x1c\x75\xfe\x1a\xef\x72\x91\x8a\x2d\x84\x30\x55\x15\x1e\x58\x52\x6f\x7a\x33\xb7" + + "\xe4\xd7\x22\x1c\x73\x2b\xcf\x72\x9e\x9c\x9e\x4f\x26\x64\x26\xf3\xee\xb3\x0d\x8a\x47\xc0\x05\x0f\xcb\xb2\xee\xa5" + + "\x30\x2c\xc9\xbf\x2a\x59\xd0\x7a\xf7\xc9\x59\xc2\x37\x68\xf8\x13\xd9\x04\x86\x51\x7f\x04\x47\x84\x70\xcd\x03\xac" + + "\xbe\x2b\xa5\x65\x4f\x85\x95\xa5\x20\x5a\xbb\x9c\xe7\x22\x58\xf1\x34\xd2\x66\xf6\x4b\x50\xce\x2f\x19\xe0\x4d\xf1" + + "\xf0\xfe\xbd\x4c\x04\xe2\xf5\xe2\x4e\xf8\x87\x64\x8b\x5e\x4c\x26\x80\x49\x9d\xf3\xfc\x76\x67\x03\xfb\x57\xf9\x3a" + + "\xc1\x52\xc9\x2a\xc7\x06\x86\x3e\xfa\x09\x4f\x6f\x50\xa3\x74\x65\x0e\xbb\x4d\x96\xee\xc4\x07\xf1\x39\x57\x1a\xb8" + + "\xf7\x4c\xa9\x63\x32\x6d\x09\x22\x25\x72\xe0\xf0\x6f\x60\x64\xd6\x79\x9a\x88\x18\xe1\x2d\xa0\x8a\xaa\x72\x19\xd9" + + "\xd2\x58\xc6\x89\x30\x90\x26\x23\xf0\x6d\xb3\x5c\x14\x34\x80\x60\x82\xcc\xa2\xc5\xd9\xf9\x68\x14\xd4\x50\xca\x11" + + "\x3d\x07\x5c\x01\x69\xf7\xfd\xfc\xd3\x5b\xdc\x2d\x58\xd3\xdd\x91\x9b\x22\xa9\x75\x48\x0d\x6c\x00\x6d\x13\x66\x77" + + "\x29\xb4\xce\x6f\xf1\x46\xb2\xac\x75\xdb\xa0\x92\x16\xc2\x52\x0f\x29\xa3\x8d\x4a\x9d\x43\xac\x2a\x61\x83\x18\x83" + + "\x93\x2c\xe0\xe0\x64\x24\x3f\x23\x9d\xa0\xa0\x9d\x1c\x72\xbe\x7d\x5e\x0e\x39\xdf\x5a\xd1\x6f\xbf\x2b\x13\x9e\x24" + + "\x67\x92\x85\xbb\x4e\xb3\x83\xbb\x11\x29\x4b\x1a\x34\x87\x1f\x84\x95\x6d\x44\x8a\xd1\x3f\x7e\xfe\x80\x28\xc4\x5c" + + "\x00\x8e\xd3\xa3\x89\x7c\xb7\x93\x12\xc8\x95\x49\xe2\x33\x30\xee\xb1\x9c\x88\x54\x57\xb3\x63\x7c\x17\xa7\x61\x76" + + "\x47\x2c\x1f\xbc\x3a\x7d\xb1\xcc\xb6\xe2\x16\xea\x87\xe8\xbe\xbb\xce\xe4\x88\xb5\x71\x71\x3f\xac\xc4\x56\x18\x7c" + + "\x2b\x8c\x5d\x1e\x27\x89\x81\xcc\xfa\x9d\x89\xa0\xfd\x77\x86\x2f\x5a\xa9\x10\xa1\x85\xaa\xc3\x68\x25\xe9\x68\x5b" + + "\x95\x77\xb8\xe5\x91\x48\x73\xb1\xed\x76\x75\xbe\xe7\x91\x53\xea\x5f\x64\x9f\x9e\xfe\x40\x72\xf4\x45\x2e\xb6\xeb" + + "\x38\xe5\x49\x87\xa1\x92\x42\x04\xfe\x2e\x43\xbd\xac\x79\xdb\xc9\x31\x11\xfc\x93\xe8\x66\xd9\xa3\xdf\x71\x8d\x1b" + + "\xca\x62\x38\x81\x96\x4b\xb6\x31\xe4\x63\x79\x31\xe0\xc8\xc4\x7c\x2b\xdb\xc6\x91\xcc\x0d\xb4\xa5\xa5\xba\x39\xc4" + + "\x1b\xd8\x15\x45\xff\x6d\xc8\x73\x0e\x3e\x71\x4b\xb1\x55\x69\x66\xc7\xca\xeb\x2c\xa0\xfa\xd9\x47\xf2\xc0\xc1\xf2" + + "\xa1\xbe\xb5\xcb\xb3\xcd\x3f\xb6\xd9\x86\x47\x5c\x09\x00\xdd\x77\x8c\x82\x46\x44\xbc\x1d\xfa\x1a\x4f\x2d\x34\x64" + + "\xad\x1e\x63\x04\x31\x6d\x1d\x38\xe6\x20\x8b\xe1\x21\x62\x41\x7a\x4c\xe8\xd1\xb9\x22\x37\x90\x04\xc8\x82\xaa\xec" + + "\xb2\xa2\xaa\x03\x38\x06\x41\xad\x7a\x95\x09\xf4\x73\x7d\xaf\x93\xcc\x1f\x8d\x54\xfd\x4a\x42\x95\xd4\x5b\x9d\x4e" + + "\xd8\x42\x14\xd6\x3d\x1c\x11\x50\x4c\x47\x7b\x8e\xe0\xcd\x39\x88\x48\xe4\xd5\x21\x88\xd7\xf7\x6f\x43\x8c\x82\x6c" + + "\x73\x7f\x96\xc4\xe9\xcd\x99\x9f\xa7\x70\x18\xe2\x19\x49\xef\xb6\x72\xa8\xd8\xc2\x0a\xc1\xc1\xe4\x52\xce\x13\x7e" + + "\xaf\x96\xfb\xe4\x7c\x6b\x3a\x1e\xdf\x6e\x13\x34\xe3\x03\x83\x66\xbf\x15\x5a\x13\x70\xb0\xec\xbb\xd7\xf7\x20\x8b" + + "\x3f\x02\x82\x9b\x90\xfa\x1d\x91\x19\x77\x26\xde\x8c\xc8\xbf\x95\x8f\xfd\x8f\x59\x58\x23\xfb\xbe\x59\xc5\x49\x88" + + "\x39\xa0\x3b\x36\x04\xfd\x2c\xbc\xb7\x82\x9a\x90\x34\x26\x79\x00\xd0\x3f\x54\x5a\x5f\x71\x12\x6e\x45\xea\x9c\x7b" + + "\x2a\xc0\x39\x0b\x7b\x4f\x97\x59\x70\xbb\x03\x41\xd3\x9f\xee\x44\x22\x54\xd8\x7c\x39\x7e\x06\xcf\xaa\xeb\x81\x02" + + "\x31\x84\x14\x95\x6e\x0e\xfb\x14\x6f\xc4\xbd\x94\x80\xae\x14\x0f\x81\x6b\xd4\xa0\xfc\x2d\xb6\x77\x55\xde\x38\x4b" + + "\xdf\xe7\x7c\x9b\xdb\x13\x38\x64\xd2\x79\x36\x1a\x69\x4f\x2e\xd3\x90\xc1\x91\xfa\xe4\xb6\x0e\x38\x30\x45\xb7\x69" + + "\x05\xe5\xd4\xe2\x18\x37\x55\x6a\xbe\xb4\x31\x6f\x58\xb6\xff\xb6\x3a\xa0\xf3\x93\xec\x35\x98\x58\xb9\xf8\x9c\x37" + + "\xf9\xd4\x27\x82\xcb\x76\x5a\xf0\x6c\x99\x08\x41\x26\xc2\x2f\xc8\x44\x08\x32\xa1\x9d\x46\xe9\x7a\x70\x63\x6e\xad" + + "\x45\xce\xdf\x89\xfb\xa2\xe0\x56\x90\x6f\x93\x77\xe2\x9e\x8c\x46\xdf\xfd\x17\x40\xf3\xdc\x88\xfb\x37\x70\xee\x3f" + + "\xc0\x5a\x2b\x5d\x78\x84\x1c\x6e\xd4\x66\x8e\xfa\xb5\xb4\x19\x63\x47\xe7\xf5\x4c\xe5\xd0\x11\x27\x69\xbe\x48\x06" + + "\xe8\x59\x2b\xae\x54\x66\x6d\xef\x43\x69\xaa\x48\xe6\x60\x39\x4c\x1a\xb2\x9f\x1b\x77\x7c\x07\xd8\x5d\x41\xb6\x89" + + "\x45\x48\x8d\x35\xbf\x11\xc6\xee\x76\x2b\x00\x89\x5d\xa4\x79\x2c\x2f\xc5\xe7\xdc\x88\x77\x86\x6a\x4a\x39\x66\xb6" + + "\x13\x03\xc5\x61\x40\x30\xd4\x1f\x84\xd2\x22\x90\x16\x2f\x88\x77\x89\xe5\xbf\xd9\xff\x0f\x00\x00\xff\xff\x78\x40" + + "\x78\x4e\xbc\x30\x02\x00") func bindataDistScriptsMainjsBytes() ([]byte, error) { return bindataRead( @@ -20677,10 +20802,10 @@ func bindataDistScriptsMainjs() (*asset, error) { info := bindataFileInfo{ name: "dist/scripts/main.js", - size: 143888, + size: 143548, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -20871,7 +20996,7 @@ func bindataDistScriptsVendorModernizrjs() (*asset, error) { size: 10987, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076320, 0), + modTime: time.Unix(1530447117, 0), } a := &asset{bytes: bytes, info: info} @@ -20880,567 +21005,786 @@ func bindataDistScriptsVendorModernizrjs() (*asset, error) { } var _bindataDistStylesMaincss = []byte( - "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x0d\x57\xdb\xba\x96\xe8\x5f\xc9\xd0\xd5\x35\xed\x6d\x92\x3a\x9f" + - "\x90\x64\xdd\xf3\x4e\x28\x94\xc2\x29\x50\xa0\x14\xc2\x99\x33\x6b\x39\xb6\x12\x0b\xfc\x55\xdb\x21\x40\x26\xff\xfd" + - "\x2d\xc9\x96\x2c\xd9\x92\x6c\x87\xf4\xde\x3b\xef\xdd\xe9\xba\x73\x8c\xf6\xd6\xde\x5b\x5b\xfb\x4b\xb2\xa5\xfc\x6e" + - "\x58\x7a\x10\x82\xa8\xb6\x73\xfd\xfd\x73\x63\x6f\x67\xf4\xf1\x6f\xff\x51\x73\xbd\xc0\xd1\x6d\xf8\x02\x9a\x46\x18" + - "\xd6\x1e\xdb\xcd\x56\xb3\x53\xfb\x9f\xda\xe9\xf1\xf7\xda\x57\x68\x00\x37\x04\xb5\xff\xa9\xcd\x61\xd4\x84\xde\x47" + - "\x8a\x5b\xfb\xdb\x47\x3d\x88\xa0\x61\x83\xba\x1e\x42\x13\xd4\x4d\x10\xe9\xd0\x0e\xeb\x33\x38\x37\x74\x3f\x82\x9e" + - "\x8b\x1e\x17\x01\xa8\xcf\x3c\x2f\x02\x41\xdd\x02\xba\x89\xfe\x33\x0f\xbc\x85\x5f\x77\x74\xe8\xd6\x5d\xfd\xb1\x1e" + - "\x02\x03\x23\x87\x0b\xc7\xd1\x83\xe7\x95\x09\x43\xdf\xd6\x9f\x87\x53\xdb\x33\x1e\xd6\xfa\xc2\x84\x5e\xdd\xd0\xdd" + - "\x47\x3d\xac\x3f\x42\x13\x78\x14\x01\xba\x36\x74\x41\x83\xc1\x1b\xba\x5e\xf4\xee\x4f\xc3\x73\xa3\xc0\xb3\xc3\xbf" + - "\xde\x53\x54\xd7\x73\xc1\xc8\x02\x70\x6e\x45\x43\x6d\xfd\xa7\x05\x4d\x13\xb8\x7f\xd5\x23\xe0\xf8\xb6\x1e\x01\x0e" + - "\x6f\x6d\x45\x8e\xbd\x9a\x79\x6e\xd4\x98\xe9\x0e\xb4\x9f\x87\xa1\xee\x86\x8d\x10\x04\x70\x36\x6a\x38\x61\x23\x02" + - "\x4f\x51\x23\x84\x2f\xa0\xa1\x9b\xf7\x8b\x30\x1a\xb6\x34\xed\xed\xa8\xb1\x04\xd3\x07\x18\x89\xa1\x6b\x7d\x35\xd5" + - "\x8d\x07\x34\x72\xd7\x1c\x6a\x35\x6d\xad\x0f\x75\x23\x82\x8f\xa0\xae\x0f\x2d\xef\x11\x04\x2b\x6f\x11\xa1\xe1\x0c" + - "\xb5\xb5\xd5\x5a\x39\x7a\x30\x87\xee\xb0\xd9\xdf\x05\x4e\x4d\x5b\x4f\xeb\x61\x14\x78\xee\x3c\x96\x6a\x19\x8f\x63" + - "\x57\xd3\xd6\xe6\xcc\x8d\xdb\xc2\xe8\xd9\x06\x43\x18\xe9\x36\x34\xd6\x56\xb0\x6a\x38\xde\x4b\x63\xea\x3d\x21\x49" + - "\xa0\x3b\x1f\x22\x9d\x00\x37\x42\x4d\x23\x49\x33\x55\x8f\xa3\x07\x0f\xac\xb8\x6f\x66\x33\x6d\x64\x78\xb6\x17\x0c" + - "\xdf\x68\x9a\xb6\x36\x3c\x13\xd4\x1f\xa6\x66\xdd\x0f\x40\x3d\xd4\x1d\x9f\x53\x96\xe3\xb9\x5e\xe8\xeb\x06\xa8\xc7" + - "\x1a\x8b\xc5\x83\x2f\x60\xd8\x02\xce\xda\x0f\xc0\x6a\x69\xc1\x08\x34\x30\xce\xd0\x0f\x40\x63\x19\xe8\xfe\xfa\xe7" + - "\xea\xe7\xc2\x8b\x40\x38\xdc\xf9\xaf\xb6\xd6\xfa\xb4\x53\xc3\xff\x3d\x48\xfe\xbb\x97\xfc\x77\xb0\xb3\x0e\x17\xd3" + - "\x7a\xb8\x48\x78\x62\xba\xbb\xbd\xb7\x23\x6c\x09\x64\x04\x23\xdf\x0b\x21\xb2\xa9\x61\x00\x6c\x1d\x69\x79\xf4\x08" + - "\x90\xad\xea\x76\x43\xb7\xe1\xdc\x1d\x4e\xf5\x10\xa0\x2e\x6b\x44\x29\xf2\xfc\x61\xa3\xd9\x03\x0e\xa2\xbd\x9a\x7a" + - "\x51\xe4\x39\xc3\x46\xb3\x8d\x5a\xa0\x33\x5f\x4d\xbd\xc0\x04\xc1\x50\x5b\x87\x8f\x73\x6c\x61\xc3\xc0\xf3\xa2\xf7" + - "\x2b\x34\x6d\x33\xdb\x5b\x0e\x63\x73\x5a\xc7\xd6\x4e\xe6\x4e\x5b\x4f\x17\x51\xe4\xb9\x75\xe8\xfa\x8b\xa8\x1e\x02" + - "\x1b\x18\x51\x1d\x59\x87\x1e\x00\x3d\x87\x15\xc3\x57\xd8\x7a\xa2\x40\x77\xc3\x99\x17\x38\xb1\x3d\x26\x18\xc8\x2c" + - "\x6b\x98\xd8\x9f\xd1\xb3\x0f\xfe\x1e\x37\xff\x55\x67\x9a\x02\x10\x82\x88\x6b\x09\x17\x53\x07\x46\x7f\xad\x88\x75" + - "\xea\xbe\x0f\xf4\x40\x77\x0d\x30\x8c\xfb\x8f\x8c\x45\x10\x7a\xc1\xd0\xf7\xa0\x1b\x81\x20\x61\xf6\xa7\x09\x43\x7d" + - "\x6a\x03\xf3\x2f\x96\x2d\x6d\x5c\x25\x9d\x4c\x30\xd3\x17\x76\xb4\x66\x18\x1a\x16\x30\x1e\xa6\xde\x13\x2f\x97\x6e" + - "\x42\xef\xaf\x15\x63\x78\xb1\x4e\xb1\xdd\xf9\xba\x69\xa2\x26\x8d\x25\x13\x02\x3d\x30\x2c\xa1\xdc\x48\x45\x33\x08" + - "\x6c\x53\x80\x3f\x1c\x92\x0e\x71\x43\xc3\x40\x5d\xec\x06\x3b\x15\xea\x0e\x26\x30\xbc\x40\x47\xc6\x23\xe2\xcd\xcc" + - "\xc7\x70\x88\x7d\x6c\xe6\x19\x8b\xb0\x01\x5d\x17\x04\x31\xf9\x7c\x3b\x35\x20\x66\xa8\xd4\x0e\xa8\x11\xe9\x8b\xc8" + - "\xcb\x9a\x69\xe4\xf9\xeb\x08\xa9\x3c\x21\xd1\x30\x3c\xdb\xd6\xfd\x10\x0c\xc9\xc3\x28\x01\x20\x6f\x8a\x29\xff\xee" + - "\x00\x13\xea\x35\x3f\x80\x6e\xb4\xfa\x5b\x6c\x50\xa1\xa5\x9b\xde\x12\x4b\xff\x1f\xd0\xf1\xbd\x20\xd2\xdd\x88\x71" + - "\x69\xa6\x91\x0f\x53\x2c\x00\x4d\x9e\x88\xce\x5a\xaf\xeb\xc3\x47\x18\xc2\x08\x98\x31\xbb\x54\x87\xc3\x85\x6b\x82" + - "\x00\x7b\x9a\xfe\xa7\x15\x80\xd9\x5f\x43\x7d\x16\x81\x60\x95\x04\x9e\xe1\x4e\xed\xdd\x4e\x4d\x8f\xa2\xe0\x1d\x82" + - "\xbe\xaf\xed\xbc\xdf\x59\xeb\xd3\x69\xf0\x67\x04\x23\x1b\xc8\xb1\x31\x38\x41\xc7\x84\xff\xfb\xef\x3b\xf7\xfa\xa3" + - "\x1e\x1a\x01\xf4\xa3\xe1\x4e\xd2\xb3\x4e\x81\x6f\x76\x72\xc4\x76\xd6\x38\x75\xe0\xb8\x83\x62\x19\x99\xa7\x96\xff" + - "\x54\x0b\x3d\x1b\x9a\xb5\x37\x83\xc1\x60\xe4\xeb\x73\xd0\x98\x06\x40\x7f\x68\x40\x17\x65\xba\xa1\xfe\xe8\x41\x73" + - "\x1d\xa1\x7c\x46\x33\x07\x9e\xa6\x46\x9c\xe2\x1a\x38\xc3\xa1\xd8\x51\x8f\x82\x95\xac\x3f\x0a\x2d\x8e\xfe\xd4\x58" + - "\x42\x33\xb2\x70\x96\x60\x74\xfa\x3b\xea\x45\x82\x44\xdb\x70\x6a\xcd\x9e\xe1\xac\xad\x76\xdd\xea\xd4\xfd\x95\x17" + - "\xf8\x96\xee\x86\xc3\xce\x68\x09\x4d\x6f\x19\x0e\x3b\x31\x88\xe5\x85\x07\x9b\xb0\x4a\x82\x0b\x1f\xd3\x67\x0c\xbb" + - "\xa6\xab\x3f\x4e\xf5\x80\xcf\x83\x4d\x3c\xa6\x5a\x64\xd6\xc9\x93\xc5\x90\x68\x24\xe6\x93\x21\x34\x8d\xdc\xdf\x9a" + - "\x86\x1e\x80\xa8\xde\x34\x03\xcf\x5f\xf8\xbf\x31\x6d\xc4\x8e\x23\xcf\x6f\x88\xcc\x6f\xdd\xb4\xf5\x29\xb0\x05\x33" + - "\x81\x12\x4f\x53\xed\x0b\x2c\x99\x78\x3a\x62\x4c\x60\xa6\x63\x60\x9a\x2c\x01\x17\xd3\x34\x19\x2a\xeb\xbf\xd5\x13" + - "\x33\x1a\x4e\xc1\xcc\x0b\x00\x0d\x09\xe2\x48\x96\x4d\xba\x0c\x48\xd8\xca\x54\x1a\x38\x91\xf5\xdb\xcd\x1e\x53\x48" + - "\xe8\x7e\xc3\x82\x73\xcb\x46\x49\x2d\xd1\x16\xce\x0c\xbe\x1e\x00\x37\x5a\x4f\x3d\xf3\x99\xcb\xbc\x3b\x57\xde\x22" + - "\x30\x40\xed\x4a\x77\xc3\xda\xb7\xc0\xdb\xa9\xef\x7c\x01\xf6\x23\x40\x11\xa5\x76\x06\x16\x60\xa7\x4e\xff\xae\x8f" + - "\x03\xa8\xdb\x75\xa6\xb2\x61\xf2\x74\xd7\x7f\xe2\x12\x6a\xab\xd9\x6d\xef\xf5\x76\x5b\xdd\x0e\x89\x19\x9d\x29\xfa" + - "\x37\x12\x5a\x83\x3a\xef\xb1\x02\x43\xd7\x02\x01\x8c\x18\xd6\xa4\x85\xe5\x9e\xb4\xad\xf5\x21\x8e\xa9\xb4\x60\x4a" + - "\x38\xb6\x7a\xe8\xdf\x48\x11\x78\xe2\x7e\xb4\xc0\x22\xfa\x8d\x23\x74\x00\xdd\x79\x2c\x7c\x0d\x45\xe0\x5a\xcf\x7f" + - "\x1a\x25\x98\x0d\x6f\x36\x0b\x41\x34\x6c\xb4\xfd\x27\xec\xad\x99\xe8\xec\x40\xd3\xb4\xc1\xba\x09\x9d\x79\x23\x00" + - "\xa1\xef\xb9\x21\x7c\x04\x7c\xfd\x3a\xe2\x3d\x9c\x14\x59\x88\x55\xd2\x11\x69\x0f\x98\xc4\xa8\x51\xa6\x5c\x84\xc3" + - "\xbe\xff\x14\x83\x23\x6b\xe1\x4c\x5d\x1d\xda\x2b\x92\x3b\x14\x93\x23\x9c\x8e\x91\xd0\xca\x47\x3c\x3f\x44\x94\xda" + - "\x1d\xb2\xb1\xb8\x7c\xd2\x6d\xbb\xd6\x6c\x87\x35\xa0\x87\xa0\x01\xdd\x86\xb7\x88\x46\x05\x60\x51\x71\x5e\xa8\x04" + - "\x03\x06\x46\xea\xd8\x89\x4c\x3d\xed\x2d\xaa\x64\xe3\x18\x88\x22\xc6\xb0\xad\xf9\x4f\xa3\xe4\xef\xa4\x4c\xc3\x4d" + - "\x34\xbf\xa6\xd1\x85\x1d\x2e\x00\x60\xdd\x0c\x83\x86\xe7\xda\xcf\x2b\x5a\x1a\xea\xd3\xd0\xb3\x17\x11\x18\x25\x82" + - "\xf9\xb4\x02\x6e\x51\x2e\xc3\x06\x7a\xa6\x59\x7b\x94\xa9\xf8\x46\x86\x0d\xfd\x61\x00\x8c\xe8\x9d\x56\xc7\xff\xde" + - "\x53\x59\xd6\x4d\xab\x55\x6f\x5a\xed\x7a\xd3\xea\xd4\x9b\x56\xb7\xde\xb4\x7a\xf5\xa6\xd5\xaf\x5b\xad\x7a\x1c\xc6" + - "\xad\x6e\xdd\xea\xd5\xad\xfe\xb6\x7d\x38\x59\x1e\xb4\x34\x2d\x63\x27\xad\xc4\x7b\x89\x43\x35\xad\x56\xad\x19\x3a" + - "\xba\x6d\xd7\xd1\x23\x79\x6a\xa7\x8d\x6d\xda\xd8\x49\x1b\x3b\xb4\xb1\x9b\x36\x76\x69\x63\x2f\x6d\xec\xd1\xc6\x7e" + - "\xda\xd8\x4f\x1a\x53\xe6\x94\x77\xca\x9a\x72\x4e\x19\x53\xbe\x29\x5b\xca\x35\x65\x4a\x79\xa6\x2c\x09\x47\x6e\xf1" + - "\xd4\xcd\x6a\x87\x44\xb6\xc1\x60\xb0\x26\x53\x54\x60\x7b\x2d\xcd\x7f\x5a\x6f\x3a\x0c\x36\xec\xf7\xde\xae\xa9\x31" + - "\x30\x2c\x5b\x32\x96\xaf\x52\x00\x59\x32\x61\x03\xb5\x5a\x4c\x63\x07\x47\x1d\x34\xf2\x36\xdb\xaa\xe1\xd6\x0e\xd2" + - "\x47\xda\xda\xee\xe2\xd6\x6e\xdd\xea\x32\xad\xad\x3d\xdc\xda\xab\x5b\xbd\x15\x9f\x4f\xd6\xd8\xf4\xfb\x6c\x2b\x8a" + - "\xaa\x3e\x5d\x07\xd5\xb4\x1a\x1e\x5c\xd3\x46\x55\x95\xc0\xc9\x99\x9e\x7d\xf2\x67\x32\x99\xed\x9c\xa9\x77\x49\x19" + - "\xfc\xce\x81\x6e\x12\x7a\x76\xfb\x7b\xfe\xd3\xfb\x55\xcc\x80\x19\x49\xcb\x7f\x5a\xaf\x13\x55\x65\xf5\xb4\xd7\x7b" + - "\xbb\x36\x60\x04\xd8\x45\x76\xbc\x03\xb2\x6e\xe2\x8c\xe3\x2c\x50\xd5\xcb\xd8\x4e\xdc\xec\x07\x10\xef\x65\x24\x80" + - "\x6e\x7b\x6f\x6a\xe8\x3c\x8c\xcf\x62\x1d\x6d\xb7\xa5\x93\xde\x4b\x3d\x70\xa1\x3b\x27\xb0\x3d\xbd\x6f\x76\xa6\x3c" + - "\x8c\xef\xdd\xef\xf7\x5a\x6d\x23\xc1\x30\x75\x77\x9e\x82\xf4\x41\xb7\xdb\x6d\x73\x20\xbe\xef\x5e\xb7\xd3\xeb\x74" + - "\x13\x84\x70\x61\x18\x20\x0c\xa9\x54\xc6\x6e\xbf\x63\xf2\x30\xbe\x77\x7b\xda\xeb\x52\xce\xd0\x9d\x79\xb4\x6b\x6b" + - "\x57\xdb\x9b\x31\x80\x4c\xbf\x6e\xaf\xdd\x27\xe3\xb5\xc1\x2c\x59\xf9\xc6\x89\x15\xfd\x9d\x80\x02\x34\xa1\x2c\x0c" + - "\x37\x24\x40\x03\xa0\x25\x2b\x0b\x8d\x5b\xd6\x4d\x5c\x07\xc7\xc5\x38\x49\x9c\xc4\x98\x06\x69\x74\xef\x6a\xfe\x53" + - "\x4d\xab\x31\x39\x84\xfa\x19\x9f\x3d\x3c\xbb\xbe\xb0\x59\xd7\xd4\x44\x7e\xe9\xd9\x35\xcf\xae\x7b\x76\x6d\x81\xd0" + - "\x6b\xb8\x53\x2d\xed\x97\xa0\x6a\xeb\xa6\x0d\x43\xa4\x13\x64\xb2\xf5\xf8\x8f\x85\x8b\x6d\xcb\xa4\xc2\x22\x15\x0c" + - "\x91\x55\x87\xa9\xd9\xa1\x92\x9c\xe9\xfa\x9b\x0d\x85\x5b\x61\x23\x8e\x46\x2f\x4d\x60\xb1\x32\x51\x4b\x96\xce\x70" + - "\x06\x83\x30\x6a\x18\x16\xb4\xb3\x22\xac\x4d\xe5\xc0\x91\xee\xd6\xa6\x59\x37\xa3\x95\xb8\x28\x59\x9b\x51\x7e\xd7" + - "\x8a\x3a\x78\xc2\x43\xee\xac\xa6\xdd\xb0\xbc\x00\xbe\x78\x6e\xa4\xdb\x35\x44\xcb\xf6\xf4\x08\x5b\x08\x49\xdc\x7d" + - "\x34\x7d\x86\x0d\xf4\x20\x6e\xce\x1a\x4b\x2e\x6b\x63\x04\xda\x08\x6c\x1b\xfa\x21\x0c\x47\xec\xb6\x94\xeb\xe1\x4d" + - "\xa9\x2c\x7b\x5e\xee\xd6\x1e\x0e\x58\x59\x9c\x64\xc9\x90\x6f\x4f\xd6\x10\xe9\x62\x76\x67\xc4\xad\x1e\x65\xa4\x56" + - "\xf1\xe0\xa6\x5e\x64\xad\xe3\xc5\xb1\xa9\x47\x7a\xc3\x0b\xe0\x1c\xba\xba\xdd\x88\x97\xca\x75\x66\xd9\x4c\xf6\x67" + - "\x2c\x60\xfb\x02\xcb\x36\xbd\x28\x02\xf1\xea\x76\xdd\x84\x2e\x8c\xa0\x6e\xc3\xd0\x61\xe2\xde\x40\x7b\x3b\xca\x6c" + - "\x45\x2d\x7c\x1f\x04\x86\x1e\x02\x66\xd5\x4c\x8b\x52\x64\xff\x35\x26\x45\xe2\x78\xce\xfa\x15\xb1\x45\xd6\xab\x52" + - "\x3a\x35\x76\x3b\xaf\xb5\xdb\xec\x65\x02\x7c\x27\x17\xe0\xdb\x3d\xae\xfb\xd0\xd6\xa9\xfd\x66\xdd\x8d\xc1\x4b\xa2" + - "\x3c\xd3\x12\x07\x7c\xbe\x64\x57\x2f\x7d\x90\xd2\x72\x24\x93\xb9\xcd\x51\xce\xce\xf9\x7f\xfe\x57\x5b\x6b\x75\x6b" + - "\xff\xa5\x69\x63\xed\x3f\x19\x32\x4d\x7f\x61\xdb\x49\xb0\xe3\xbd\xb5\xc5\x3a\x70\x12\x15\x48\x9d\x4c\xdc\x99\x51" + - "\x2a\xa7\x6f\x4d\xcc\x21\xaf\x06\x16\xe8\x4b\xda\x63\x4d\xe5\x22\xb1\x8a\x43\x5e\x2b\x39\x82\x39\x05\x49\xb4\x42" + - "\x28\xc6\xbe\xa5\x22\xc8\x6f\xf2\xfc\x27\x56\x75\x0d\xab\x9d\x25\x9d\x23\x94\xf3\xce\x9d\xb5\x6e\x9a\x01\x4a\x86" + - "\xd2\x62\x84\x29\x07\x24\x46\xb3\x6e\x22\x7a\x3a\x74\x01\x5d\xc8\x04\x74\xed\x33\x62\x83\x09\x6e\xe0\xe6\xb9\x93" + - "\x0f\xdd\x1d\x1c\xbb\x29\x49\x12\x69\xd2\x86\xe2\x10\x93\xe9\xcc\xc6\x16\x79\x14\x4e\x07\x91\xb4\x0f\x50\xe4\x13" + - "\x74\x18\x0c\xda\xc2\x0e\x2d\xad\x25\xe9\xd1\x6a\x6b\x9a\xb8\x4b\x3b\xee\xd2\x0c\xbc\x25\x17\x76\x1b\x58\x31\x9c" + - "\x36\x1b\xb1\x62\x02\x6f\x49\x54\x82\x1e\x8b\x95\x41\x3b\xb0\x6a\x68\x1a\x9e\xdd\xb0\xe7\x8d\x56\x9d\x3e\x69\xe9" + - "\x23\xd3\xda\xa6\x8f\xe9\x53\x87\x3e\x75\xe9\x53\x8f\x3e\xf5\xe9\xd3\x2e\x7d\xda\xa3\x4f\x83\xf8\xc9\x31\x09\x6b" + - "\xf4\xa4\xa5\x8f\x4c\x6b\x9b\x3e\xa6\x4f\x1d\xfa\xd4\xa5\x4f\x3d\xfa\xd4\xa7\x4f\xbb\xf4\x69\x8f\x3e\x25\xac\x43" + - "\x87\xb0\x46\x4f\x5a\xfa\xc8\xb4\xb6\xe9\x63\xfa\xd4\xa1\x4f\x5d\xfa\xd4\xa3\x4f\x7d\xfa\xb4\x4b\x9f\xf6\xe8\x53" + - "\xc2\xfa\x29\x24\xac\xd1\x93\x96\x3e\x32\xad\x6d\xfa\x98\x3e\x75\xe8\x53\x97\x3e\xf5\xe8\x53\x9f\x3e\xed\xd2\xa7" + - "\x3d\xfa\x34\x58\xe5\x5f\x14\x21\xcb\x64\xf6\x01\xca\x7a\xe4\x3f\x6b\x00\x69\x39\x94\x4a\xd1\x5e\xa5\x7b\x2d\x69" + - "\x6b\x2b\x69\x1d\xb4\x9a\xfd\xf8\xff\x76\x19\xa8\x96\x40\xf7\x3a\xcd\x4e\xf2\x7f\x29\x74\x40\xdc\xbe\x97\xb6\xed" + - "\x25\x6d\xfd\xbe\x80\xdc\x6e\x02\xec\xed\x09\xa8\xf5\x09\x90\x91\xae\x97\xb4\x75\x45\xc2\x75\x13\x60\x47\x24\x5b" + - "\x27\x01\xb6\x19\xd9\xa8\x02\x44\xb2\x11\x3d\x88\x44\xc3\xc9\xa4\xd5\x5e\x05\x64\x07\x25\x0b\x6a\x25\x20\xa1\x12" + - "\x63\x14\x2d\x41\x11\x6a\x12\xa3\x0c\x12\x0c\x56\x9d\x18\xb0\x97\x00\x84\x3a\xc5\x18\xbb\x09\x86\x50\xb1\x18\xa3" + - "\x4f\x30\xb2\xb2\xf7\x12\x80\x50\xc5\x18\xa3\x9b\x60\x08\xf5\x8c\x31\x3a\x09\x46\x3b\x2b\x39\x55\x99\x54\x72\xa2" + - "\x39\xa9\xe0\x44\x6f\x1a\xd3\x1c\x5a\x68\x36\xe2\x62\x9b\x9f\x0c\x04\x69\xc5\x10\xc9\x5c\x20\x0c\x2d\xc6\x90\x4c" + - "\x45\x68\x35\x06\x31\x02\x3f\x13\xa1\xd5\xd8\x8b\xdb\x25\x13\x11\x5a\x8d\xdd\x18\x41\x32\x0f\xa1\xd5\xe8\x27\x08" + - "\x59\xa9\x7b\x71\xbb\x64\x16\x42\xab\xd1\x8d\x11\x24\x93\x10\x5a\x8d\x4e\x8c\xd0\xce\xca\x4c\x14\x25\x95\x39\xd1" + - "\x97\x54\xe4\x44\x5b\xe9\x04\xc4\xfb\xdf\x68\x0a\xb8\x65\x0f\x3b\x13\x04\xa5\xc5\xa1\x08\xa7\x84\xa0\x6a\x1c\xaa" + - "\x70\x6e\x12\xd4\x01\x87\xc9\x4e\x52\x82\xb0\xc7\x21\x08\x67\x2b\xc1\xdc\xe5\x30\x85\xd3\x96\x60\xf6\x79\xcc\xfc" + - "\x58\x7b\x1c\x82\x70\x22\x13\xcc\x2e\x87\x29\x9c\xd1\x04\xb3\xc3\x61\xb6\xf3\x23\xcd\x4c\x81\x62\xa4\xfc\x4c\x28" + - "\x06\xaa\x95\x5e\x84\xff\xd3\x4a\x83\x5c\x7a\xc3\x5c\x72\xe9\x0d\x8b\x21\x4d\x6f\x58\x5e\x69\x7a\xc3\x6c\x32\xe9" + - "\x0d\x09\x21\x4d\x6f\x48\x56\x69\x7a\x43\x43\xca\xa6\x37\x34\x60\x69\x7a\x43\x7a\x91\xa6\x37\xa4\xbe\x6c\x7a\x43" + - "\xca\x95\xa6\x37\x34\x54\x59\x7a\x0b\x1d\x69\x7a\xa3\x20\x79\x7a\xa3\x28\xf2\xf4\x46\x50\x72\xe9\x8d\x00\xe4\xe9" + - "\x8d\x60\xc8\xd3\x1b\xc1\xc8\xa5\x37\x02\x90\xa7\x37\x82\x21\x4f\x6f\x04\x23\x97\xde\x08\x40\x9e\xde\xa8\x5e\x64" + - "\xe9\x8d\x20\x64\xd2\x1b\x6e\x16\xa6\x37\x0a\x91\xa6\x37\x8a\x21\x4d\x6f\x04\x23\x9b\xde\x48\xbb\x34\xbd\x11\x04" + - "\x69\x7a\x23\x08\xd9\xf4\x46\xda\xa5\xe9\x8d\x20\x48\xd3\x1b\x41\xc8\xa6\x37\xd2\x2e\x4d\x6f\x54\x1d\x92\xf4\x46" + - "\xe0\x7c\x7a\x0b\x9d\xc2\xf4\xc6\xa0\x14\xa5\x37\x06\xb5\x28\xbd\xa5\xa8\x92\xf4\x96\x22\x14\xa5\xb7\x14\xb3\x28" + - "\xbd\xa5\x98\x92\xf4\x96\x22\x14\xa5\xb7\x14\xb3\x28\xbd\xa5\x98\x92\xf4\x96\x22\x14\xa5\x37\x46\xbf\xea\xf4\x96" + - "\x22\x66\xd3\x9b\x72\xb7\xe2\x9f\xb4\xea\xce\xe5\x37\xcc\x25\x97\xdf\xb0\x18\xd2\xfc\x86\xe5\x95\xe6\x37\xcc\x26" + - "\x93\xdf\x90\x10\xd2\xfc\x86\x64\x95\xe6\x37\x34\xa4\x6c\x7e\x43\x03\x96\xe6\x37\xa4\x17\x69\x7e\x43\xea\xcb\xe6" + - "\x37\xa4\x5c\x69\x7e\x43\x43\x95\xe5\x37\xc7\x94\xe6\x37\x0a\x92\xe7\x37\x8a\x22\xcf\x6f\x04\x25\x97\xdf\x08\x40" + - "\x9e\xdf\x08\x86\x3c\xbf\x11\x8c\x5c\x7e\x23\x00\x79\x7e\x23\x18\xf2\xfc\x46\x30\x72\xf9\x8d\x00\xe4\xf9\x8d\xea" + - "\x45\x96\xdf\x08\x42\x26\xbf\xe1\x66\x61\x7e\xa3\x10\x69\x7e\xa3\x18\xd2\xfc\x46\x30\xb2\xf9\x8d\xb4\x4b\xf3\x1b" + - "\x41\x90\xe6\x37\x82\x90\xcd\x6f\xa4\x5d\x9a\xdf\x08\x82\x34\xbf\x11\x84\x6c\x7e\x23\xed\xd2\xfc\x46\xd5\x21\xc9" + - "\x6f\x04\xce\xe7\x37\xc7\x2c\xcc\x6f\x0c\x4a\x51\x7e\x63\x50\x8b\xf2\x5b\x8a\x2a\xc9\x6f\x29\x42\x51\x7e\x4b\x31" + - "\x8b\xf2\x5b\x8a\x29\xc9\x6f\x29\x42\x51\x7e\x4b\x31\x8b\xf2\x5b\x8a\x29\xc9\x6f\x29\x42\x51\x7e\x63\xf4\xab\xce" + - "\x6f\x29\x62\x89\xfc\xc6\xec\xad\xff\x93\x76\xb4\x73\x09\x0e\x73\xc9\x25\x38\x2c\x86\x34\xc1\x61\x79\xa5\x09\x0e" + - "\xb3\xc9\x24\x38\x24\x84\x34\xc1\x21\x59\xa5\x09\x0e\x0d\x29\x9b\xe0\xd0\x80\xa5\x09\x0e\xe9\x45\x9a\xe0\x90\xfa" + - "\xb2\x09\x0e\x29\x57\x9a\xe0\xd0\x50\x65\x09\xce\x9e\x4b\x13\x1c\x05\xc9\x13\x1c\x45\x91\x27\x38\x82\x92\x4b\x70" + - "\x04\x20\x4f\x70\x04\x43\x9e\xe0\x08\x46\x2e\xc1\x11\x80\x3c\xc1\x11\x0c\x79\x82\x23\x18\xb9\x04\x47\x00\xf2\x04" + - "\x47\xf5\x22\x4b\x70\x04\x21\x93\xe0\x70\xb3\x30\xc1\x51\x88\x34\xc1\x51\x0c\x69\x82\x23\x18\xd9\x04\x47\xda\xa5" + - "\x09\x8e\x20\x48\x13\x1c\x41\xc8\x26\x38\xd2\x2e\x4d\x70\x04\x41\x9a\xe0\x08\x42\x36\xc1\x91\x76\x69\x82\xa3\xea" + - "\x90\x24\x38\x02\xe7\x13\x9c\x3d\x2f\x4c\x70\x0c\x4a\x51\x82\x63\x50\x8b\x12\x5c\x8a\x2a\x49\x70\x29\x42\x51\x82" + - "\x4b\x31\x8b\x12\x5c\x8a\x29\x49\x70\x29\x42\x51\x82\x4b\x31\x8b\x12\x5c\x8a\x29\x49\x70\x29\x42\x51\x82\x63\xf4" + - "\xab\x4e\x70\x29\x62\x2e\xc1\xc5\x5f\xff\x67\xbe\x25\xce\x7d\xf3\xcc\x7e\x22\x1f\x59\x82\xcf\xca\x30\x15\x86\x82" + - "\xe0\x83\xa6\x18\xe9\xb7\x68\xea\x99\xcf\xbf\x45\xc1\x6f\xf4\xf8\x00\xd3\x64\xd1\xa6\x99\xe7\x45\x19\x2c\xda\x94" + - "\x62\x59\x40\x37\x33\x58\xb4\xc9\xa2\x1f\xd2\xec\xc9\xbf\xee\xce\x9f\x0d\x92\x7c\xef\x6c\x9a\xe6\x5a\xc0\x22\x7b" + - "\x04\x0e\x8f\x37\xf3\x75\x50\x5b\x48\x25\x39\xce\xf9\x81\x50\x63\x3f\x17\x63\xc6\xa3\x46\xa3\x9a\x30\x3c\x1b\x9f" + - "\x8f\x29\x24\xa7\xc6\xe3\x35\xcb\xc3\x64\x24\x8b\x51\x2d\xe6\x84\xca\x50\xe3\x0c\xe1\x03\xfe\xff\x2c\x5c\xa8\xad" + - "\x1a\x39\xa5\x22\x3c\x1b\x91\x9c\x42\x31\x3c\xd7\x04\x6e\x08\x4c\x81\x8d\x09\x81\x96\x00\x98\xb3\x3b\x21\x50\xd4" + - "\x33\x67\x8b\x42\x60\x6a\x95\x3d\xea\x13\xf4\xfc\x4c\xf6\x3c\x8d\x68\x20\x02\x98\x95\x87\xe5\x87\x21\x80\x09\xfa" + - "\xe5\x07\x21\x80\x49\x0e\xf9\x64\x47\x53\x91\x5a\xe2\x2e\x49\x1c\x6a\xa7\xda\x09\xa3\x00\xfa\xcc\x80\x87\x6e\x64" + - "\xc5\xa6\xf5\xce\x33\xcd\xf7\x0c\xf5\x42\x4c\xe1\x59\xab\x01\xfa\x47\x98\xe1\x0f\x6a\x53\x02\xc9\x9f\x94\x83\x18" + - "\x2c\x24\xdb\x43\xff\xe2\xf8\x5a\x33\x3c\xfb\x4f\xc3\xd6\xc3\xf0\x6f\x7f\x47\xf1\xf8\xaf\xf4\x1b\x89\x30\xd2\x23" + - "\x68\x8c\xe2\x92\x1e\x9f\xa8\xe6\x0f\xbf\x19\x9e\xbd\x70\xdc\x35\x39\x35\xc6\x51\xa9\x93\x13\x64\x3c\x6d\x39\x2d" + - "\x60\xdb\x7c\x18\x6e\xc6\xe7\xa5\x73\xb1\x98\xb6\x5b\xb9\x18\x9d\x80\xf8\xa8\x2c\xa0\xc3\xb7\xe7\x03\x7b\x96\x0e" + - "\xb6\x07\x01\x1d\xbe\x3d\x1f\xfa\x13\x90\x7c\x06\x04\x33\x97\xf4\x51\xce\x6e\x06\xc7\x12\x5b\x00\x8f\x26\x10\x02" + - "\xec\xa1\x7f\x19\xad\x27\x5f\x7d\xe7\xd5\x4e\x01\x02\xbd\x27\xb0\x8c\x82\x05\xa4\x32\x00\x81\xea\xb3\xa4\x62\x1d" + - "\x0b\x48\x65\x00\x02\xed\x93\x8f\xdb\xf3\x23\x37\x67\x33\xcd\xdc\x13\xaa\x9f\xfb\xea\x5d\xa6\xff\x0c\x92\x74\x02" + - "\xf8\x4f\xe8\x05\x72\x68\x60\x60\xf4\x33\x33\x10\x7f\xb4\x9f\x9f\x00\xd2\x2e\xd0\x7f\x0c\xca\x68\x39\x4f\x87\x6f" + - "\x17\x28\x3f\x43\x27\x56\x71\x9e\x0e\xdf\x2e\xd0\x7c\x72\x24\x41\x60\xf7\x6d\x13\x98\x40\xa8\x78\xf6\xac\x82\x4c" + - "\xef\x3c\x8e\x54\xed\xdc\xb1\x07\x81\xdd\x4f\x0d\xc3\x30\x32\x5a\x4f\xce\x59\xe4\xd5\x4e\x01\x02\xbd\x27\xb0\x8c" + - "\x82\x05\xa4\x32\x00\x81\xea\xb3\xa4\x62\x1d\x0b\x48\x65\x00\x02\xed\x93\xe3\x24\x02\xf5\x1b\xb3\x3d\xd0\x11\xaa" + - "\x9f\x3b\x67\x22\xd3\x7f\x06\x49\x3a\x01\xfc\xa1\x15\x81\x1c\xfa\xac\x6d\x18\xe9\x0e\x16\x2d\xf1\x77\xfb\xbb\x78" + - "\x03\x2b\x26\xcb\x1c\xb2\x94\xd6\xef\xf8\x7b\x69\xf2\x71\x7f\xe3\x99\x7c\xf3\x4f\x5b\x9e\x86\xa1\x11\x78\xb6\x8d" + - "\x6f\xf2\xa0\xad\xf1\xa7\xbc\xa8\x49\x5f\x44\x9e\x05\xf1\x17\x7e\x31\xe2\x54\x0f\x24\x47\x28\xc9\x81\xc9\x94\x0a" + - "\xee\x80\x06\x1a\x79\x0b\xc3\x5a\xe7\xc4\xfe\xad\x49\xd6\x30\x99\x13\x21\x12\x44\x51\x51\xa5\x42\xb2\x14\x48\xf9" + - "\x32\x4b\x85\xa4\xa2\x94\x2f\x95\x54\x48\xd6\x4a\x74\xb0\x42\xd2\x8f\x16\x5d\xe9\xa5\x1b\x85\xa8\xac\x92\xd8\x62" + - "\x5e\x2a\x9c\xb0\x2e\xad\xda\x33\x55\xe7\xc6\x3d\x2b\xf3\x4c\x15\xbf\x71\x4f\x8e\xe7\x8a\x3f\x2c\x50\x4d\xd3\xe9" + - "\x89\x8b\x8a\x8a\xae\xd6\x91\xd1\xf3\x86\x1d\xab\x72\x64\xb4\xbc\x61\x47\x96\xe3\x8a\x3b\xac\x51\x45\xc9\x0c\x11" + - "\x95\xab\x15\x74\x94\x3b\x72\x5e\x57\xd5\x39\x8a\x3a\x66\x16\x49\x43\x6d\xbd\xc6\xd7\xb5\x84\x80\x9e\x6d\xa1\xc7" + - "\xc8\xe8\x61\x96\xa1\xb6\xb6\xc1\x1c\xb8\x66\xe6\x2c\x0e\x13\xe7\xb3\x7d\x25\xa7\x43\xdb\xad\xcc\x16\x0a\xb9\x53" + - "\x80\x1c\x4c\xec\x74\x72\x07\xc6\x05\xa7\xfe\x7a\xe8\xdf\x3a\xbe\x8d\x42\x72\xa6\x9d\x15\x22\x7b\x62\x69\x57\x53" + - "\x5e\x67\xb3\xa5\xfb\x23\x4a\xde\xbb\x43\x8e\x3b\xe2\xd3\x8e\xfc\x49\xaa\xe4\x30\x2b\xd3\x67\x06\x6d\xf0\x57\xe6" + - "\x12\xae\xf8\x12\x87\x3f\x9d\x85\x1d\x41\xdf\x06\x7f\x25\xb7\x3a\xfc\x89\x14\xfe\xd7\x8a\x3d\xce\x1f\x03\x6a\x9e" + - "\x1f\xe1\xbd\x9b\x55\xfe\x6a\x07\xf6\xba\x2a\xb6\x89\xbf\x13\x42\x38\xb4\xe4\x02\x88\xac\xb0\xf9\xe6\x78\xdc\x99" + - "\x7b\x1f\x92\x53\x6f\x91\x05\xdd\xd1\x2b\xef\x82\x48\x39\xb9\x0b\x67\x0a\x02\xe6\x1a\x21\x7c\xe3\x4f\x23\xf4\x91" + - "\x69\xe4\x2e\x1d\xca\x61\x7b\x8b\x88\xc7\xe6\x94\xe9\x2d\x22\x7f\x11\x65\x3c\x82\x9c\x3f\x88\x3c\x7f\xb8\xcb\x9f" + - "\x8b\x2e\xbe\xb7\xa3\xd7\xeb\x65\xf7\x11\xc9\x2d\x16\x33\x2f\x70\x1a\xc9\xd5\x69\x72\x27\x4c\x28\x77\xba\xcc\xbd" + - "\x08\x7d\xff\xa9\xd6\x6a\x6f\x4d\x14\xd9\x35\x16\x69\x2b\x74\xf4\x79\x7c\x20\x56\x50\x99\x19\x86\xa1\xb8\xdc\x82" + - "\xb9\xc5\x08\xba\x21\x88\x6a\x5a\x0d\xf5\x45\xff\x0b\xe6\x53\x3d\xb9\xc7\xa1\xa9\xed\xf6\xde\x8f\xaa\xe0\x0a\x2e" + - "\xcf\x48\xaf\xa9\xf1\x02\xf6\x8a\x8c\x5a\xb3\xd5\x0b\xeb\x29\xf1\x1c\x6c\xb4\x0d\x22\xfc\x84\x26\xae\xc0\x52\x1b" + - "\xbe\xe9\xf7\xf5\x19\x18\x50\x5f\xd0\x36\x51\x52\x5d\xab\x69\xb5\x3d\x02\x68\x69\xed\x7a\x6b\xb7\x57\x6f\x77\x3a" + - "\xf5\x66\xbf\x92\x06\x95\x84\x32\x83\xc1\x71\xd2\xb7\x75\x03\x58\x9e\x6d\xa6\x87\xca\xf1\x79\x56\x0e\x53\x85\x3a" + - "\xf2\x7c\xdd\x80\xd1\xf3\xb0\x95\x23\x1f\x36\xb0\xd3\x96\xe5\x41\x5d\xbf\x6c\x1f\xe6\x7a\x35\xbe\x3d\x00\xba\xe9" + - "\xb9\xf6\xf3\x5f\x75\x92\x32\x53\xd4\x1a\xef\xa2\xc9\x11\x5f\xd7\x8b\x1a\xba\x6d\x7b\x4b\x60\x0a\x1c\x07\x00\x40" + - "\xaf\x1a\xe3\xbb\x73\x77\xb0\x60\x48\x1c\xb0\xf3\xab\xa9\x75\x93\x04\xe0\x7a\x13\x07\xd6\xec\x0d\x37\xe9\x89\x29" + - "\xf6\x92\x0c\xc5\x0d\x16\xfc\xa9\x2a\xdc\x49\x12\x94\x08\xe7\x1a\x4e\xc4\x09\xff\x9a\x28\x2b\x67\xd8\x68\xa3\xec" + - "\x6d\x1f\x99\x7b\xee\x52\xd2\xc2\x24\x4a\xc1\xc9\x21\x79\x09\x56\x2c\x4f\x2e\xf3\x24\x00\x41\xdf\x24\x23\x33\xa7" + - "\xd8\xb9\xa3\x8d\xf1\xdb\x27\xc2\xe0\x43\x56\xf3\x1f\x92\x09\x60\x54\xdc\xe0\x66\x88\xde\x2a\xc0\xf2\x2f\x71\x4b" + - "\x80\xe0\x76\x13\x4d\x12\x9d\xcb\xea\x35\x61\xfe\x41\x2d\xdb\x07\x5e\x52\xd1\x4d\x03\xc9\x4b\x5d\xc1\x30\x59\x37" + - "\x22\x20\xb6\x8d\x25\x9d\x6b\x67\x1a\x44\xbe\x46\x35\xaf\x02\x92\x21\x89\x70\x30\x13\x39\x44\xd1\x55\x68\x6a\x6a" + - "\xbc\xc4\xec\x44\x3d\x99\x71\xe6\x3a\xe4\x6f\x74\x64\xc2\xc9\xba\x19\x07\xb4\xd0\x21\xc1\xa2\xc3\xf8\x2e\x3e\x77" + - "\xde\xca\x5c\xcc\xd2\xce\x65\xfd\x5e\x26\x17\x77\xfc\xa7\xa4\x46\x14\x53\x67\x7b\xe3\x9b\x67\x68\xf4\xca\xa2\x27" + - "\xb7\x47\xe1\x56\x7b\x4e\x5a\xbb\x7d\x46\x44\x7c\x2b\x41\x7a\x5b\x0c\xbd\xa2\x26\x23\x23\x5d\x10\xb0\xb7\x6f\x71" + - "\x42\x66\xe8\xb3\xdd\x51\x43\x56\xc8\x14\x3d\x16\xd2\xd2\x43\x72\x6f\x0b\x63\x58\xe2\x66\xea\x25\x3c\x34\x8e\xda" + - "\x8d\x24\x0c\x72\x30\x0b\xd8\x7e\xec\xd3\x19\x40\x6c\x81\x82\x36\xe2\x6d\x99\xfb\x65\x38\x44\x2e\x59\xf0\x75\x43" + - "\x8c\xff\xab\x4b\x2a\x85\x3c\x92\x6a\xa6\xd7\x6a\x1b\x1b\xd7\x30\xa8\x88\x7d\x63\x68\x7a\xab\x3f\xad\x5c\xb6\x30" + - "\x7d\x33\x52\xc7\xf6\x80\x33\x6b\x43\x37\x4d\xcf\xe5\x75\x3e\x12\x2a\x56\xbe\x4f\x8b\x68\x83\x20\xf0\x82\xac\x19" + - "\x65\x1a\x39\x23\x22\xb0\xbc\x09\x25\x90\xac\x01\x25\xcd\x8c\xf9\xb0\x2d\x19\xe3\x21\xf7\x0b\x31\x68\x0a\xd3\x89" + - "\xb1\xff\x31\xa6\x23\x90\x46\x68\x38\xf1\x05\x48\xaf\x34\x1c\xb0\xd7\xdd\xeb\x6c\x68\x38\xb8\x2f\x27\xb3\xd4\x6c" + - "\x12\xfd\x09\x95\x2a\x7f\xbb\x82\x28\x27\xaf\x9e\xb2\x86\x93\x6b\xe6\x4c\x27\x85\xe6\x8d\x87\xc2\xb2\xe6\x43\x01" + - "\x8c\x01\xf1\x6d\x19\x13\x22\xb7\x4c\x71\x88\x0a\x23\x8a\xf1\xff\x31\x46\x24\x94\x47\x68\x46\xf1\x4d\x58\xaf\x33" + - "\xa3\xfe\xee\xb4\xd5\xdf\xdb\xcc\x8c\xe2\xbe\x19\xa9\xa5\x86\x94\xe8\x50\xa8\x58\xf9\xfb\x51\x56\x09\x8d\xf8\x73" + - "\x80\xfc\xbb\x8c\xd4\x1e\x72\x57\x61\xd2\xe2\xae\x27\x5e\x17\x24\xec\x76\xa7\xe8\x9f\xe2\x40\x2a\x96\x23\x29\xae" + - "\xd9\xc5\x4b\x89\x8d\x3a\x49\x59\xbb\x16\xd0\xcc\x6e\x86\x70\xf7\xcd\x73\xf8\x49\xb1\xc0\xf5\x8a\x25\x66\xd6\x57" + - "\x84\x76\xea\x80\x5c\x33\xbf\xb4\x12\x8d\x40\x74\xff\x96\x96\xb9\x1b\x48\xc2\x4b\xb2\x7c\xc9\x0b\x20\x5d\xab\xe0" + - "\xdd\x96\xcc\x07\x79\x71\x7f\xe6\xc6\xaa\xec\xd8\x44\x20\x1a\x60\xf2\x18\x7c\x90\xc9\xc1\x93\x78\x22\x6e\x57\xad" + - "\x20\x72\xba\x4a\xf6\xce\xaa\x0d\x20\x59\x7a\x31\xab\x5d\x31\x89\xfc\x62\xba\xe0\xda\x1a\x05\x05\x72\x9d\x8d\x0a" + - "\xa5\xf8\x9a\x9b\x42\x06\xdc\xf5\x37\x62\xec\x8c\xd7\x67\x35\x59\xe0\xab\xd2\x69\xce\x5f\x28\xb5\x6e\xce\x74\x13" + - "\xac\xc8\xe6\x8c\x26\xda\x5a\x4b\x80\x78\xa3\xab\x86\xa6\x5d\x0f\x46\x6a\x70\x4c\xb5\x09\xdd\x15\xb3\xeb\x43\x2e" + - "\x8e\xce\x5c\x7b\x4d\x9a\x11\x36\xbf\x0f\x4e\x40\xd0\x9d\x0b\xae\x8e\xa1\x3f\x3f\x90\xbd\x70\x4e\x30\x82\x18\xb7" + - "\xd6\xec\xf4\xe2\xeb\x73\x47\x0a\xd8\xfa\x77\x42\xe0\x01\x3c\xcf\x02\xdd\x01\x61\xcd\x0f\xbc\x79\x00\xc2\xb0\x31" + - "\xd5\x83\xe4\x5b\xb2\x70\x35\x0b\x3c\x87\x7d\xbb\x4e\x45\x8c\x2f\x3a\x5c\x47\x9e\x10\xaa\xd5\xb4\xf5\xfa\xf7\x5f" + - "\x48\xbb\x49\x28\x66\x7f\x32\x61\x24\xd8\x37\xe2\x2e\xf6\xcd\x65\xa2\xbd\xde\xb4\x37\x9d\x56\xdf\xe0\x6d\x67\x72" + - "\x67\x4b\x5a\x0b\xe4\x31\x53\xf9\x91\x46\xf2\x37\x10\x6a\xf4\xe2\x60\x4d\x7b\xab\x5a\x0e\xb7\x99\x1c\x37\x9b\xcd" + - "\x46\xb9\x8b\x2b\x05\x03\x8e\xaf\x0e\x55\x0d\xaf\xd1\xc2\xef\x75\x38\x99\xc5\xa5\x8e\x04\x53\x60\x9e\x78\x60\xb5" + - "\x66\x3f\x6f\x9c\x3c\x84\x51\x4d\xf2\x41\x63\x8d\x57\x56\x6e\xd7\x9e\x30\x8b\xdd\xb2\x31\x47\x53\x08\xdc\xe8\x5d" + - "\xb7\x67\x82\x79\x1d\x8b\xd6\xee\xf5\xea\xe4\x7f\x48\xc0\x5a\xbb\xf7\xb6\xce\x7c\xd6\x9d\xfb\xbb\xa7\xbd\x95\xf4" + - "\x94\x43\x76\x33\x34\x32\x7f\xbf\xcf\xbf\x6f\xf8\xdf\x24\x31\xb6\x3f\xec\x99\x5d\xbc\x71\x46\xe6\x24\xf9\x04\x30" + - "\x33\x49\xf4\x87\x2e\x5c\xe8\xc4\xb7\xa7\x8b\x42\x40\xad\x4d\x82\x69\x0d\xba\x33\xe8\xc2\x08\x8c\x2a\xf7\xe0\x7d" + - "\xa9\x21\xff\x24\xaf\x67\x4c\xf7\x7a\x46\x91\x7d\x89\x08\xfc\xdb\xce\x7e\xad\xc4\x99\x29\xc4\x97\xfe\x0a\xe6\x6f" + - "\x6a\x68\x66\x61\x7c\xc8\xf5\xfe\xf7\xe4\xfd\x43\x27\x4f\xf1\x69\xa0\xa6\x9b\xdd\xe2\xf9\x13\x10\xf8\xf7\x14\xfe" + - "\x43\xa7\x50\xfa\x6d\xad\x39\xe8\x75\xba\xb3\xc2\x19\xcc\xf7\xff\xf7\x04\xfe\xea\x09\xc4\xcb\xad\x19\x7c\xa2\x17" + - "\xb8\x92\xbf\x4b\xdc\xdf\xca\x75\xe5\xef\x2d\xc5\x35\xa4\x6a\xeb\x25\xbd\x69\x36\x77\x19\xed\x9a\xbd\x82\x38\x2e" + - "\x71\xf1\x33\xfb\xa3\x3a\x18\x03\xd1\x60\x6a\x60\x16\x6e\x41\x93\x5f\x4b\xb1\xc0\xd0\xf2\x96\xbc\x54\x2c\x14\xba" + - "\x8f\x30\x84\x53\x1b\xac\xf0\x7f\xa1\x8d\x96\x68\xc9\xef\xaa\xc5\x97\xbd\x63\xe2\xa8\xb8\x1e\x6a\x1f\xb5\x9a\x3e" + - "\xca\x9d\xf6\x1b\x65\x7f\xea\x4a\x79\x36\x90\xfd\xa1\x0e\xcc\x46\x22\xf8\x28\x27\x0f\x2b\xb6\x3e\x9b\xc1\xa7\x74" + - "\x29\x38\x83\x4f\xc0\x5c\xff\xde\x70\xc2\xc6\x23\x04\x4b\x84\x96\xec\x03\x99\xe0\x11\x1a\x20\x5e\x1a\xaf\x9b\xc9" + - "\x58\x1b\xf6\xbc\x4e\x9f\x1d\x33\x7d\x0e\x9d\xf4\xf9\x29\xac\x47\x26\xdb\x83\xf9\xcb\x31\xd9\xbf\x42\x87\xfd\x0b" + - "\xf5\xb3\xb8\x7e\x16\xd7\xcf\xe2\xfa\x59\x5c\xbf\x80\xeb\x17\x70\xfd\x02\xae\x5f\xc0\xf4\x93\x4d\xbd\xfc\xb3\x6e" + - "\x41\xdf\xac\x65\x60\xb3\x17\x21\xc6\xfe\x20\x16\x20\xf9\x70\xd1\x5b\xb2\x84\x64\xaa\xc9\xf5\x33\x80\x6d\xb3\xbf" + - "\x02\x25\xdb\xdb\xa8\xe9\xae\xc9\x8e\x6a\x30\x68\x65\x46\xc5\xa8\xaa\xf4\x00\x45\x7d\x04\x63\x95\xa2\xa9\x86\x2d" + - "\x9d\x72\x39\xb5\x62\x65\xc4\xb7\x28\x65\x95\xd1\x6a\x0d\x06\x32\x6d\x38\x66\x75\x6d\x38\x66\x29\x6d\x64\xd1\x4a" + - "\x69\x83\x77\x07\x15\xb5\x62\x6d\xd0\x3b\x37\x04\xe4\xec\x79\xf5\x71\x33\x7d\x54\xe3\xce\xa2\x95\x1a\x37\x1f\x14" + - "\x54\xd4\xa4\xe3\x96\xba\x74\xe8\x54\xf7\x6e\x71\x9f\xdc\xb0\x15\x68\xf2\x61\x73\x9d\xf8\xe8\xf7\xeb\x23\x41\x69" + - "\xf7\x57\xf9\x7c\x79\x47\xe7\xbd\xfb\xd7\xb9\x34\xa3\xba\xd2\x2e\x2d\xee\xa3\x9a\xe3\xf2\x2e\xcd\x75\x92\xcc\xf1" + - "\x36\x5c\x9a\x21\x57\xda\xa5\xc5\x7d\x54\xe3\x2e\xef\xd2\x5c\x27\xc9\xb8\xb7\xe0\xd2\x8e\x59\xdd\xa5\xc5\x7d\x72" + - "\xc3\x56\xa0\xc9\x87\xed\xc8\x32\xba\x8a\xda\xb6\x5c\xda\x31\xab\x7b\xb7\xb8\x8f\x4a\x19\xe5\x7d\xde\x91\xb9\xbf" + - "\x8a\xda\xd6\x22\x41\x69\xf7\x57\xf9\x7c\x79\x47\xe7\xbd\x7b\x1b\x2e\xed\x98\xd5\x5d\x5a\xdc\x47\x35\x9d\xe5\x5d" + - "\xda\x31\xa5\xa5\xfb\x36\x5d\xda\x9e\x57\x77\x69\x71\x9f\xdc\xb0\x15\x68\xf2\x61\x73\x9d\xf8\xf5\xcb\xaf\x77\x69" + - "\x86\x47\x69\x97\x16\xf7\x51\x29\xa3\xbc\x4b\x73\x9d\x24\xca\xf8\x75\x2e\xcd\x30\x29\xed\xdd\xe2\x3e\x2a\x6d\x94" + - "\xf7\x79\xae\x93\x44\x1b\xdb\x88\x04\xa5\xdd\x5f\xe5\xf3\xe5\x1d\x9d\xf7\xee\x42\x97\x4e\x36\x2b\x8a\xbd\x35\x8f" + - "\x47\x85\x94\x80\xf2\x32\x52\x44\x24\xa2\xac\x57\x46\x42\x79\xcc\x61\xa8\xc9\x48\xd7\x85\xd2\x65\xb6\x13\x2a\xfb" + - "\x37\xa5\x48\x9e\xe2\x8d\x12\x61\xb3\x25\x6e\x0e\x44\xcd\x15\x04\x2c\xf0\xb9\x1c\xf1\x78\x63\x47\xd8\x2c\x90\x30" + - "\xde\x96\x11\x34\x57\x90\x90\xfa\x41\x8e\x4c\xbc\xe5\x24\x6c\x16\xc8\x12\x6f\x18\x09\x9a\xa5\xb2\x08\x14\xaa\x34" + - "\x69\x51\x9c\x95\x80\xa4\x26\xcd\x4d\x75\x51\x0c\x2d\x34\xe9\xd0\x11\x1a\x37\xdf\x6c\x89\x9b\x03\x51\xf3\xb6\x4d" + - "\x9f\x33\xf8\xcc\xd8\xeb\x42\xf5\x6d\xcb\xa4\xd3\x51\x71\x26\xcd\x37\x0b\x54\xc3\x99\x34\xdb\xfc\x0a\x93\x4e\xc9" + - "\x70\x26\xcd\x37\x0b\x64\xe1\x4c\x9a\x6d\x2e\x34\xe9\xc2\xc4\x99\xc7\xcb\x9a\x74\x71\x82\x14\x29\xb2\x28\x11\x16" + - "\x9a\xb4\x63\x0a\x4d\xda\x11\x47\x6e\xbe\x39\x10\x35\x6f\xdb\xa4\x1d\x53\x68\xdc\x8e\xd8\xcc\xf9\x66\x81\x80\xbf" + - "\xc0\xf4\x39\x83\xcf\xcc\x4e\x5d\x38\xc1\xd5\x4d\x3a\x1d\x00\x67\xd2\x7c\xb3\x40\x0b\x9c\x49\xb3\xcd\x85\x26\x5d" + - "\x58\x1e\xe5\xf1\xb2\x26\x5d\x5c\x1c\x89\x84\x2f\x2a\x8d\x0a\x4d\xda\x9e\x0b\x4d\x9a\x6f\xb6\xc4\xcd\x81\xa8\x79" + - "\xdb\x26\x9d\xd2\xe6\x4c\x9a\x6f\x16\x08\xc8\x99\x34\xdb\xbc\x75\x93\x4e\x89\x73\xc6\xcd\x37\x0b\x24\xe4\x0c\x9e" + - "\x6d\x7e\x85\xe9\x73\x06\x9f\xb1\x94\xba\xd0\xd8\x72\x26\x4d\xaa\x6e\x3f\x80\x6e\xc4\xbe\x3b\x4b\x1a\xac\x6c\x43" + - "\xc0\x37\x14\xbc\xf0\x8a\x71\x24\x5d\xd4\x6b\x0b\x1e\x37\xb7\xbc\x10\x80\xe5\x2b\x0c\xf1\x60\xd4\xce\x44\xb4\x47" + - "\x35\xc3\xff\x6d\x65\xfe\x0e\xb8\xbf\xa5\x0a\xc7\xf7\x67\xd2\x2f\x19\x75\xe3\x61\xa6\x1b\xa0\x81\xc5\xe2\x5e\xf8" + - "\x0a\xbe\x77\x9d\x7a\x0b\xd7\x00\x2b\xed\x6d\xbd\xa5\x69\x6f\xeb\x6d\xed\x6d\xbd\xa7\xbd\xad\xef\x69\x6f\x57\xdc" + - "\xe7\x8b\xf8\xa7\x8a\xf1\x93\xad\x47\x60\xf2\x4e\x7b\xbf\xee\x16\xe1\x34\x3a\xc8\xb0\xd6\xfd\x42\xbc\x56\x0f\xe1" + - "\xad\x7f\xc7\x87\xca\xcb\xc9\x86\x30\x95\x82\x49\x11\x58\xa9\xe4\x48\x54\x24\xaf\xa4\x40\x9e\x5a\x1c\x09\x98\x15" + - "\x46\x86\x42\x44\x29\x25\x87\x4a\x88\x22\x09\x94\xec\x9b\x09\xd3\xdc\x37\x8d\x0d\x57\x77\xc0\x30\x86\xc6\x37\xad" + - "\x48\x40\x9e\x04\x20\x6c\x95\xdb\xea\xb1\xbb\xd2\xde\xca\x3e\x63\xc7\xd2\x87\x86\x6e\x83\x77\x5a\xb3\xf3\x7e\xdd" + - "\x63\x50\x5b\x52\xd4\x56\x53\xeb\xbd\x5f\xef\x0a\xed\x94\x10\x1b\xbc\x5f\x23\x65\x4b\x31\x5a\x52\x03\xce\x09\xcc" + - "\x5b\x9d\x5c\x5a\x11\x1e\x23\xaa\x98\x0c\x95\x53\xd8\x5b\x62\xd2\x39\x11\xbd\x52\x02\xe6\xb1\x18\xf1\x44\x24\xa8" + - "\x70\x82\x9e\x22\x13\xcf\xca\x55\x42\x28\xb9\x44\x72\x71\x44\xb2\x34\xa9\x04\x4a\x8b\x3f\x76\x15\x36\x8f\x80\x12" + - "\xab\x3f\x76\xc5\x76\x7f\xac\x88\xd2\xc7\xee\x81\xb7\x2c\xb4\x7e\xd6\x77\xdb\x9a\x46\xbd\x5b\xe5\x06\x4c\x9f\x38" + - "\x1c\x14\xc6\xff\x46\x0b\xe3\x49\x5c\x82\x8f\x3d\x52\xbf\x10\x0c\x47\x1e\x91\x25\x63\x91\x76\x60\x06\xa2\x08\xf3" + - "\xcc\x28\x54\x29\x45\xe2\x35\x82\x01\xc8\xa2\xb8\x44\x7c\x09\x3a\x23\xbc\x34\x2d\x30\xa2\xcb\x93\x8f\xc8\xa7\xf2" + - "\x52\x57\x11\xb9\x40\xde\x42\x61\xa5\x92\x36\x39\xf9\x0a\xbc\x0e\xe1\x28\x3d\x2f\x46\x90\x7a\x1f\x06\x2b\x60\x2a" + - "\x2f\xfc\x0a\x66\x51\x69\x2f\xbc\xdd\xc0\x0b\x6f\xcb\x79\xe1\x6d\x59\x2f\xbc\x55\x7a\xa1\x60\x38\x12\x57\x90\x8f" + - "\x45\xda\xa1\xd8\x0b\x6f\x4b\x79\xe1\xad\xc2\x0b\x05\x03\x10\x3a\x84\x5c\x7c\x09\x7a\x91\x17\xde\x96\xf0\xc2\x5b" + - "\x99\x17\xe6\xa5\xae\x22\x72\x81\xbc\x85\xc2\x4a\x25\x6d\x72\xf2\x15\x78\x21\xc2\x51\x7a\x61\x8c\x20\xf5\x42\x0c" + - "\x56\xc0\x54\x5e\x78\x89\xbf\xa8\x2d\xef\x86\x1b\x78\x61\xa3\xa4\x1b\x6e\xc3\x0b\x45\xc3\x91\xfa\x42\x55\x2f\x6c" + - "\x94\x71\xc3\x57\x7a\xa1\x68\x00\x12\x8f\xa8\xe6\x85\x8d\x62\x37\xdc\xdc\x0b\x05\x52\x57\x10\xb9\x48\xde\x22\x61" + - "\x8b\xbd\x30\x96\xaf\xc0\x0d\x31\x92\xd2\x0f\x13\x0c\xa9\x23\xc6\x70\x15\x50\xe5\x8a\xd7\x7e\x85\xa2\x74\x83\x9a" + - "\xb4\x9c\x1f\x4e\x4a\xfa\xa1\xba\x26\xcd\x8d\x45\x5a\x16\x56\x2d\x48\x4b\x38\xe1\xa4\x8c\x13\xaa\x0a\xd2\x9c\xf4" + - "\x92\xca\xb0\x5a\x35\x5a\xe8\x81\x93\x62\x0f\x94\x56\xa3\x59\x91\x2b\xc8\x5b\x24\x6c\x91\xa4\xc5\xa5\xe8\xb5\x5f" + - "\xe4\x7b\xd7\xbe\xd2\xf1\x10\x58\xea\x75\xd7\xbe\xcc\xe5\xae\x7d\xb9\xbf\x9d\x2f\x70\xc0\x52\x6c\x44\xb4\x7b\xca" + - "\x9d\x8c\x5e\xf9\x7d\x91\x56\xa2\xa9\x92\xdb\x2d\x12\xaf\x22\x12\x4b\xb6\x24\xb0\xb8\x92\xdd\x8c\xbc\xac\xe2\x5d" + - "\x11\x81\xa0\xd2\x6d\x16\xa1\xef\x10\x19\x85\x3b\x13\x58\x42\xe1\x86\x46\x5e\x3e\xd1\xa6\x88\x40\x3a\xc9\x0e\x4b" + - "\xde\x43\x12\xc1\x24\x52\x95\x11\xa9\x8c\x3c\x62\x61\x9a\xa9\x08\x4a\x37\x38\x5f\xa8\xd2\x0f\x86\x4a\x9c\x00\xc1" + - "\x64\x00\xa5\x0b\x90\x45\x6c\x51\xa0\x6f\x57\x48\x33\xed\x34\x34\x54\x4c\x66\x72\xc3\xa7\x72\xaa\xa2\x79\xbb\x6c" + - "\x0a\x11\x4b\x58\x98\xa2\x64\x16\x4f\x85\x93\x87\xec\x76\xb9\x0c\x21\x16\xac\x20\xfb\x08\x8d\x9d\xc8\x54\x4e\xa0" + - "\x0a\xd2\xa8\x45\x69\xf2\x02\x14\x99\x7b\xc1\xfe\x03\xc5\x90\x9b\xbd\x7c\x07\x22\x01\x2a\xcd\x9f\xac\x1e\x8b\xd6" + - "\x1b\xa5\xcd\x1f\x95\xb8\xd5\xac\x9f\x59\x9b\xca\xcd\x9f\xca\xa9\x5a\x51\x94\x33\x7f\x99\x84\xc5\x9b\x15\x32\xf3" + - "\xa7\xc2\xc9\xd7\x0c\x65\xcc\x5f\x26\x58\xd1\x26\x84\xd0\xfc\x89\x4c\xe5\x04\x2a\x2f\x4d\x81\x28\x4d\x5e\x80\x22" + - "\xf3\x2f\x58\xf8\x53\x0c\xb9\xf9\xcb\x97\xfe\x09\x50\x69\xfe\x74\xd9\xb6\x45\xfb\xaf\x1c\xfe\x6f\x4b\x84\xff\x54" + - "\xd0\x6d\x38\x40\xb5\xf8\x7f\x5b\x18\xff\x53\xe9\x5e\xeb\x01\x55\x12\xc0\xad\x3a\x01\x50\xa1\x5e\xe1\x02\xa5\x33" + - "\xc0\xad\x28\x03\x94\x58\x74\x13\x2c\xb5\x13\xa8\x97\xdd\x14\x41\x09\x55\xfa\x41\xbc\x78\xda\x62\x0d\x54\xbd\x04" + - "\x2a\x91\x04\x12\x29\xb7\x51\x01\x55\x2c\x80\x0a\x53\x40\x22\xda\x6b\xeb\x9f\x4a\xe5\x8f\x3a\x01\xc4\x12\xbd\xa2" + - "\xfa\x29\x5f\xfc\x88\xc2\x7f\xd1\x8a\x17\xa3\xa8\xad\x5e\xb1\xe6\x8d\xa1\x72\x90\xc8\xd8\x67\xba\x99\x7d\x11\xcc" + - "\x8f\xae\x95\x37\xbd\x72\x7d\xbc\xaa\x3d\xaa\xa1\x37\x13\x24\x89\x3e\x63\xa8\x50\x95\x04\x94\xd3\x62\x02\x10\xb6" + - "\xca\x75\x57\xfd\xb5\x71\xce\x82\x0a\xc2\x86\x68\x47\x4d\xca\xbb\xd2\xf2\x46\x15\x0c\xf2\xfb\x60\x72\x9e\x61\x35" + - "\x96\x12\xf4\xcc\x1e\x96\x8c\x5d\x05\x56\xf2\x3d\x28\x86\xb8\xd2\x82\xa4\x4b\x11\x16\x2c\xb1\x24\xd1\x22\x24\x85" + - "\xa8\x2d\x6a\x1f\xce\x37\xf9\x16\x61\x7b\x66\x95\x17\xa0\x38\x0f\x6c\xc5\xb6\xf2\x8c\x8b\x22\x7d\x96\x6d\xb9\x2d" + - "\x52\x05\xc7\x4a\xec\xca\xd8\x18\xe2\x50\x68\x66\xfb\x70\x5e\x60\x69\x18\x43\x61\x6c\x08\xae\x02\xca\x4d\xae\xfa" + - "\x5b\xf7\x6a\xd6\x26\x7e\x3d\x27\xe5\x5d\xa9\x46\x57\xd5\xf4\x32\x43\xab\xf4\x56\xbb\xb4\x8d\xe5\x5e\x84\xc9\x98" + - "\x55\xe0\x24\x65\xd3\x64\x88\x2b\x6d\x4b\xba\x9c\x64\xc1\x12\xab\x12\x2d\x24\x53\x88\xda\x9e\xaa\x84\xb0\xdb\x4d" + - "\x42\x58\x91\x51\x95\x0e\x61\x0a\xee\x1b\x59\x56\xc9\x10\xa6\x60\x5b\xd5\xbc\xca\x84\x30\x39\xbb\x32\x36\x56\x18" + - "\xc2\x12\xa4\x02\x4b\x53\x85\x30\x02\x57\x01\xe5\x26\x57\xfd\x93\x85\xed\x59\x5b\xc5\xef\x0b\xb6\x62\x68\x95\x3e" + - "\x09\x78\xad\x8d\x95\x7f\x93\xbf\x81\x79\x29\x77\x04\x18\x14\x85\x69\xc9\xf6\x02\x58\xa8\x1c\x54\x60\x54\xd5\x02" + - "\xd9\x76\xe3\x98\x44\x80\xc2\x4d\xa9\xed\x98\x57\xe9\x40\xb6\x8d\x38\x26\xe6\x58\x85\x5d\x29\x43\x2b\x0c\x64\x04" + - "\xab\xc8\xdc\x54\xa1\x8c\x22\x28\xa1\x72\xbb\xab\xf8\xd1\xc7\xf6\x4a\xff\x2a\x5f\x68\x6c\xa5\xe4\x2f\xff\x51\xc5" + - "\x6b\x4b\xfd\x92\xdf\x42\x6c\x50\xe2\xcb\xb7\x75\x08\x5c\x61\x4b\xc2\x0d\x1d\x0a\x92\xb4\xab\x2c\xa7\xda\xd2\x71" + - "\xbb\x2b\x47\x11\xf7\xc2\x17\xa8\x5b\xb0\xa1\xd2\x8b\xc6\x6d\xac\x19\x05\xec\xaa\xf0\x2a\xb6\xa6\xc2\x10\x85\x51" + - "\x94\x36\xa5\x0a\x4e\x31\x54\x0e\x92\x19\x57\xf2\xb1\x44\xba\x09\xc7\x6f\x83\x8a\x6d\xa2\x44\xa7\xec\x84\x16\x77" + - "\xa9\x88\xdf\x24\x58\x0a\xa5\xca\xbe\xb2\xa0\x30\xa1\x32\x05\x5f\x58\x24\xcd\x0a\x25\x66\xb7\xb4\x8a\xbd\xad\xda" + - "\x57\x13\xc2\xf7\x05\x72\xde\x2a\x77\xab\xf0\x31\x84\xe0\x45\x80\x9c\xa7\xdc\xdd\x4a\x7f\xe5\x90\xdd\xe3\x97\x32" + - "\x2b\xc9\x49\xc5\xa6\xc9\x12\x57\x1b\x91\x72\xc3\x50\xfe\xe5\x02\x0b\x95\x83\x0a\x8c\x2a\x13\x96\xb6\x6d\x57\x92" + - "\x37\x51\x4a\x01\xb6\x64\x5c\xc2\xf7\x4c\x4a\xc6\x5b\xb0\xb0\xfc\x7b\x24\x15\xc7\xd7\x99\x99\x96\x37\xb4\x82\x2c" + - "\x90\x62\x15\x99\x9b\x3c\x17\x30\x08\x4a\xa8\xc2\xee\xb2\x9b\x5b\xc5\x2b\x9d\x8a\x1f\xc1\xa8\x6c\x4e\xc0\x5c\xb5" + - "\xd0\xa9\xf2\x71\x8b\xdc\xde\x04\x4c\xe5\xcb\x9c\xf2\x9f\xad\x48\x6c\x2d\xcf\xad\x24\x2b\x25\x9f\x26\x4b\x5d\x6d" + - "\x64\xca\xed\x43\xf9\xb7\x28\x2c\x54\x0e\x2a\x30\xac\x2a\x01\x6d\x13\xdb\x52\x47\x34\xb1\x04\xdb\x32\x30\x55\x48" + - "\x13\x73\xde\x86\x95\x49\x63\x9a\x90\xe5\x2b\x4d\x4d\xcb\x1b\x5b\x71\x50\x2b\xda\x47\x64\x51\x54\x56\x27\x0f\x6a" + - "\x05\x5b\x89\xec\x57\x32\xbf\xc6\xf2\xd4\x41\x4d\xc4\x7c\x2b\x46\xa7\x0a\x6a\x22\xa6\xaf\xb6\x37\x69\x50\x13\x70" + - "\x7b\x8d\xa9\x65\x82\x5a\xe1\x7e\xa2\xf2\xfb\x22\x1e\x41\x66\x61\xd2\x2d\x45\xd5\x97\x45\x2c\xfc\x97\x86\xb6\xa2" + - "\xc8\x26\x91\x60\x4b\x56\xa6\x8a\x6c\x12\xce\x5b\x30\x35\x69\x64\x13\xb3\x7c\x9d\xbd\x69\x02\x8b\x2b\x0e\x6d\x85" + - "\x3b\x8b\x1c\x8e\xd2\xf4\xe4\xd1\xad\x68\x73\x91\x7e\x05\xf5\x6b\x96\x09\x05\x15\x5b\x8e\xf5\x56\x16\x08\xca\x7a" + - "\x2d\xc7\xf2\xd5\x4b\x03\x79\xb5\x96\xe5\xf5\x9a\x45\x41\xb6\x56\x53\xef\x32\xca\x3f\x1d\x63\xa0\x32\x93\x12\x6f" + - "\x34\x2a\x3f\x1a\xc3\xc0\x5f\xba\xe0\x2c\xac\xcf\x44\xfc\xb7\x65\x4e\xaa\x18\x26\xe2\xbb\x0d\x9b\x92\x46\x30\x01" + - "\xc3\x57\x1a\x96\x96\x35\xad\xe2\xe0\xa5\xde\x73\x4c\x11\xe4\x36\x26\x8f\x59\xf2\x6d\x47\x5b\x0f\x2d\x7a\x17\x13" + - "\x77\xf2\x6a\xdd\xee\xbd\xad\xef\xf6\xd4\x1b\x90\x55\xbb\x7b\xaf\xe8\xbc\x71\xcf\x66\x8c\x2f\x53\x3f\x02\x8a\xf5" + - "\x1e\x43\xf2\x0a\xc7\xed\xa2\x46\xb1\x8a\xa1\xe4\x3b\x67\x1f\x04\xa1\x0f\xf0\x6f\x6f\xbe\xeb\x62\x8b\xa9\x05\x5e" + - "\x94\x58\xda\x28\x2f\x6e\x04\x1d\xe8\xce\x1b\xb3\x85\x6b\xe0\x1f\x96\x02\x7a\x08\x1a\xde\x22\x92\x5c\x66\x26\x20" + - "\x4f\x8d\xf4\xee\x5d\xab\xc7\x31\x6c\xed\x6a\x26\x98\x57\xe2\xda\xdb\x02\xd7\x01\xe6\x5a\x23\xa7\x02\xcb\xb2\x87" + - "\xae\xe4\x3c\xb5\x42\xa5\x9d\x3e\xcb\x0b\x1f\x35\xac\xc0\x4e\x72\x2e\x5b\xc0\x6f\x83\xb1\x08\xfc\x0a\x8a\xbe\x3a" + - "\x2f\x30\x18\xde\x84\xd5\xd6\x52\x48\xb8\x84\xa9\x94\xe4\xd7\x7b\x2d\xbf\x9c\x91\x94\x60\x4c\x2c\xa4\xb4\x02\x85" + - "\xe6\x51\x8e\x91\xe8\xc0\xbb\xd2\x30\xca\x91\xcd\x85\x4b\x98\xff\xdc\xbf\xc0\x22\xbc\xd2\xf6\x50\x40\xb4\x84\x35" + - "\x94\xe2\xd5\x7b\x1d\xaf\x9c\x25\x14\x32\x25\x76\x50\x52\x69\x42\x2b\x28\xc3\x24\x7f\x79\x80\xd2\x02\xca\x90\xe4" + - "\x33\x1e\xcc\x9c\xac\x50\xcf\x7c\xc9\x69\x7f\xe5\x9c\x97\x9c\xf0\x6d\xcd\x76\xb9\xa9\xde\x78\x9e\x4b\x4e\x72\xb9" + - "\x19\x2e\x31\xbd\x4d\x3c\xa9\xb9\x9c\xd2\x08\xa3\x67\x1b\x0c\xfd\x00\x84\x20\x78\x04\x8d\x8e\x99\xa9\xa4\x45\x08" + - "\x9e\x12\xac\xec\x9a\xf0\x17\xdd\xbc\x9a\xdc\x0d\xcb\xfc\xee\xa5\xb4\x86\x82\xc9\xda\xa8\x24\x19\x61\xb5\x05\xf1" + - "\x0a\xaa\x24\x05\x41\x55\x06\xfd\x51\xb9\xce\x82\x9e\xb2\xca\xed\xd8\xbd\xad\x58\xbc\xdd\xbe\x8b\xed\x76\x94\x56" + - "\xa0\xa5\xeb\x33\x42\xa1\xd1\xc2\x24\x24\xb7\x7a\x2a\x3a\x26\xfd\xca\x57\x2b\xa4\x23\x2f\xb2\xe8\x50\x12\xa3\x8c" + - "\x92\x49\x55\xa6\x89\xd2\xdd\x39\x35\x94\xee\xc5\xe9\xa0\x74\x2f\x81\x02\xb2\xd9\x97\x0c\xbf\x54\x2e\x91\x0d\xbe" + - "\x64\x67\x6e\xe8\x25\xfb\x70\x03\x2f\xd9\x27\x3f\x6c\xe1\x98\x37\x1f\x70\xe5\xd1\x56\x1e\xea\x66\xe3\x6c\x92\xd1" + - "\x6d\x2d\x00\x1e\xbb\xb7\xdb\x88\x81\x98\xcc\xeb\xc2\x20\x22\xb1\x71\x24\x3c\x76\x6f\xe5\xc1\x70\x52\x79\x25\xfb" + - "\xda\x60\x38\xd9\x34\x18\x4e\x36\x0d\x86\x93\xb2\xc1\x70\x52\x6d\x89\xf6\xaa\x60\x38\xd9\x28\x18\x4e\x36\x0a\x86" + - "\x42\x05\xe4\x83\xe1\xa4\xca\x6a\xe4\x15\xc1\x70\xb2\x41\x30\x9c\x6c\x10\x0c\x45\xc3\x16\x8e\x79\xf3\x01\x57\x1e" + - "\x6d\xe5\xa1\x6e\x36\xce\x26\x19\xdd\x16\x83\xe1\x64\x3b\xc1\x70\xf2\xfa\x60\x38\x79\x4d\x30\x9c\xc8\x82\xe1\xf9" + - "\x22\xaa\x5e\x1a\x66\x35\x5f\xbd\x50\xcb\xd9\x95\x30\x38\x51\xe1\x36\xae\x7f\x2a\x96\x4f\x22\xb1\xb2\x21\x83\x0a" + - "\xb5\x61\x6d\x52\xa9\xb0\x11\x08\x24\x96\x66\x73\x51\x36\x94\xa3\x49\xb9\x2b\xfc\x07\xc1\xab\xae\xcd\x24\x3e\x14" + - "\x93\xaa\xe0\x8b\x42\x37\x8a\xa9\x94\x75\x45\x19\x81\x52\xbd\x15\x1e\x57\xbd\xfe\x78\xad\xc7\x09\x22\xb9\xcc\xe3" + - "\x2a\xd6\x03\xaf\xf2\x38\xb1\x58\x02\x8f\xab\x94\xa5\x5f\xe1\x71\x42\x81\xc4\xd2\x6c\x2e\xca\x86\x72\x34\x29\xf7" + - "\xad\xe5\x37\x44\x6d\x1b\x09\x2e\xa6\xf3\xba\x0c\x87\x69\xbc\xc6\x2f\x85\x39\xce\x82\xee\x1c\x88\xdd\x2d\xd6\x34" + - "\xfb\x92\x2a\xdd\x61\xf2\x02\x38\x87\xee\x30\xf2\xfc\x9a\x8d\xbf\x5c\x2c\xfb\x16\x04\x6f\x17\xb6\xb5\xb7\x75\xf1" + - "\x4f\xee\x24\x3c\xf7\xf8\xd7\x54\xdb\xe2\x2b\x5e\x94\x24\x3c\xfb\xbf\x86\xa7\xf8\x0d\x16\xc7\xb3\xc6\xbd\x7c\x1e" + - "\x29\xbe\x03\x78\xa5\x2c\xc5\xd7\x0e\xef\x62\x27\x53\x45\xc1\xd4\x60\xf8\x18\xc6\x58\x0b\xbf\x8f\x99\x13\xb9\xd4" + - "\x7b\x11\xde\x4e\x84\xac\xf6\x98\x17\x54\x5b\x61\x27\x58\xa9\x65\x6c\x63\x6b\xac\x04\x6f\xad\x4a\x9a\xc4\xd6\x44" + - "\x28\xb8\xc0\x59\x64\x09\x9e\xd0\x0e\x3c\xb1\x15\x78\x2a\x31\x4b\xbc\x19\xe1\x2d\x40\xc0\x64\x8f\xbe\x92\xda\x02" + - "\xa3\xdc\x42\x35\x33\xf3\x5b\x61\x92\x7b\x47\x55\x72\xce\xb7\xc2\x5c\x79\xf1\xb5\x60\xb6\x05\x53\x2d\x9a\x67\xb9" + - "\x64\xd5\x66\x58\x36\xbd\xaf\xa5\xdf\x15\xd1\xee\x6f\x87\xf6\x9e\x9c\xb6\x74\x32\x5f\xcb\x53\x7e\x2b\x78\x7e\x0e" + - "\x9b\xf1\xcc\x49\x0a\x1c\x0c\x14\x96\x2c\x09\x24\x57\x86\xc4\xed\xa2\x46\x51\x69\x61\xc3\xb9\x15\x5d\xf9\x00\x98" + - "\xc7\x45\xd7\x20\xdf\xbe\x43\xc3\x7a\x5f\x0b\x1f\xc0\x12\xff\x3a\x41\xa6\xb6\x2b\xf8\x7d\x3e\xfc\x99\x3c\xed\xde" + - "\xc9\x16\x95\x85\x3f\x8e\xc1\xb0\x6e\xf5\xca\xad\x24\x84\xbd\x0b\x77\x14\x73\x2a\x91\x7e\xff\x5b\x42\x1f\xaa\x63" + - "\x11\x05\xca\x90\x7f\xa2\x5c\xa8\x89\x12\x5d\x0b\xf6\x15\x73\x4a\x90\xfe\x62\x46\xa1\x0a\xe4\x27\x34\x0a\x14\x20" + - "\xfb\x52\xba\x70\xf8\x85\x1d\x55\xbb\x8b\xd9\x91\x6f\x38\xec\xcd\xc6\xbc\xd9\x80\xab\x8e\xb6\xc9\x8d\x51\x12\x79" + - "\x58\x1c\x61\x00\xe2\x11\x72\x71\x88\x03\x2b\xbb\x96\xfe\xce\xad\xec\x77\x4e\xe5\xbe\x80\x29\xf3\xcd\x84\x32\x62" + - "\x4a\x7f\x40\xa1\xd4\x2c\x14\xc7\x2c\xb5\x91\x29\xe2\x96\xf8\x77\x12\x2a\x48\xb5\x61\xc4\x93\xc6\x10\xd1\x8f\x22" + - "\x54\x10\x67\xa3\xd8\x23\xf6\xe9\xdc\xaf\x20\x94\x17\x63\x13\x19\x9a\x3c\xe7\x42\x57\x93\x1d\xcd\xcf\x60\x28\x9c" + - "\x4d\x70\x4c\x3f\xd3\xb9\xec\x6a\xb4\xe4\x3a\xa5\x54\x71\x5b\xe2\x23\x1c\x81\xab\xf9\x0b\x3b\x94\xec\x7b\xd0\x1f" + - "\xaf\x10\x7f\xfa\x9a\xfd\x81\x0a\x05\x81\x9c\x1f\xa5\x5c\x1d\xf1\xef\x8c\x08\xbe\xa2\xcc\xf1\x93\x74\xcd\x78\x48" + - "\xca\x4a\xf8\x73\x21\xb9\x4f\xf4\x72\x6c\x0a\x7f\xff\x94\x72\x90\x90\x97\xd3\x16\x11\x6e\xc6\xe4\x24\x66\x8c\x81" + - "\x42\xf3\x4d\x20\x39\xb3\x8d\xdb\x45\x8d\x22\x73\x08\x3c\xdb\x2e\xfe\xd5\x5e\x36\xdd\xc6\xde\x99\xd4\xfc\x8d\x56" + - "\x9b\x79\x3b\x57\xf6\x34\x5a\xba\x9d\x19\x47\x85\xbc\xbd\x08\xc5\x92\xd7\x7d\xe5\x64\x92\x87\x6e\x91\x40\x5e\x91" + - "\x38\xf2\x9f\x1d\x2c\x23\x8c\x2c\x6c\x0b\x44\x51\xcb\xf1\x0a\x21\xca\x4a\xd0\x4c\xf8\x4a\x6c\x34\x86\x0a\x8d\x94" + - "\x80\x72\x56\x9a\x00\x84\xad\x32\x3b\xcd\x5e\xd4\x52\xd5\xca\xaa\x1c\x81\xe4\xf4\x47\xd4\x27\x34\xd3\xbc\x54\x15" + - "\xec\xac\xf4\xb1\x48\x99\x3c\x59\x2b\xcd\x4b\x53\xda\xd0\x4a\x1e\x95\x94\x48\x52\x20\xc6\x66\x32\x54\x10\xa0\x49" + - "\xd8\x2a\x8c\x54\x56\x09\x50\x98\xd0\x4c\x05\xd9\x3f\x69\x16\x1b\x2a\x92\x4b\xb2\xf0\x27\x5b\x1f\x06\x70\x23\x10" + - "\xd4\xe2\xff\x08\x0c\x91\xf8\x6d\x5b\xcb\x56\x3f\xe2\xcc\x5b\x91\xae\xa6\x5c\xab\x73\x23\x10\xee\xba\x66\xd8\x08" + - "\xb7\x73\xa5\xb2\x6f\x4c\x31\x2b\xb5\x27\x93\x59\xb0\x6b\x98\xa1\x2f\xd8\x8a\x94\xca\xbb\x11\x35\x4d\xb6\x12\x66" + - "\x05\x2d\xa0\x5b\x5a\xc4\xaa\x74\x78\xe1\x9a\x54\x24\xa9\xe7\xc4\x70\x89\xeb\x10\xa0\xc0\x77\x12\x90\xa4\x5d\xe5" + - "\x3d\x07\xde\xd2\x95\xfe\x8c\x12\x19\xa6\x0d\x66\x51\x6d\xea\x45\x91\xe7\x28\x7c\x28\xf7\xbe\x54\xed\x42\xa5\x88" + - "\x96\x73\x20\x6e\x10\x42\xb3\xe7\x98\x89\xdd\x48\x22\xfe\x86\xe4\xca\xf8\x10\x27\xb6\xc0\xfa\x39\x2e\x22\x4f\x92" + - "\x88\xbc\x01\xa9\x42\x37\x62\x65\x55\x52\x2f\x2b\x65\x35\x22\x12\x4f\xa2\x52\x15\x78\x14\xc1\x53\x7a\x56\x8a\x24" + - "\xf5\x30\x8a\x52\x00\x2f\xf2\x38\xf9\x2f\x37\x11\x6d\x04\x08\xa3\xd0\x3d\x2a\xba\x5c\x39\xa2\xe5\x7d\x4e\xf2\xbb" + - "\x4e\x62\x76\x42\x37\xa9\xe2\x74\x25\xc8\x95\xf5\x3a\xe1\x4f\x3e\x89\xf9\x08\x9c\xa5\xbc\xdb\x15\x92\x2a\xe5\x77" + - "\xf9\xdf\x82\x12\xd2\x2f\x29\x67\x45\x22\x0a\xcf\x53\xde\xdf\x92\x43\x2c\xf4\x3d\xd9\x4d\x2e\x79\x9c\x22\x04\x95" + - "\xfb\x5d\xfb\xdb\x49\x77\xff\xbc\x6c\xc7\x8c\x60\xc3\xe4\xf4\x8f\x4f\x75\x8c\xcc\x1b\x64\xa7\x7f\x60\x9e\x4b\x05" + - "\xad\x96\xa0\x7e\x61\x92\x4b\x44\x2a\xf0\xb3\x18\x4b\xe9\x64\x04\x45\xea\x61\x09\x82\x12\xaa\xf6\xad\x6d\x25\xb6" + - "\xaa\xc5\xe4\x36\x33\x1b\x3b\x8a\x4d\x13\x51\xa5\x6a\x72\x4b\x89\x8d\x95\x7b\x93\x5c\x54\xa1\x9c\x7c\x7d\x5e\x63" + - "\x84\xad\x98\x90\xca\xd6\x93\x1b\xa5\x35\x22\x56\xa1\xb3\x15\xa7\x34\x8a\xa3\x70\x37\x65\x3a\x4b\xc0\x72\x87\x93" + - "\xbd\xc2\x7b\xcd\x26\xc5\x56\xb6\x3d\xf2\xcb\x67\x89\xb3\x09\xdf\xf5\x6d\xbc\x55\xf1\xca\x6d\x0f\xa1\xd4\x79\x47" + - "\x13\xbc\x0e\xdc\x70\xbb\xe2\x15\xdb\x1e\x22\x59\x25\x82\xbe\x6a\xd3\x62\xa3\x6d\x0f\x81\x70\xcd\x54\x24\xa5\x6b" + - "\xc9\x37\x0e\x29\x54\xe2\x4e\xc2\xcd\xc3\x04\xa0\x74\xa1\xed\xed\x80\x54\x70\xa4\xcd\x4a\x4c\xb9\x17\x6d\x63\x07" + - "\xa4\xac\x2f\x6d\x50\x5f\xca\x1c\xe9\xb5\x3b\x20\xe5\xdc\xa9\x72\x79\x29\xf4\xa5\xcd\x77\x40\x4a\x78\x54\xb5\xda" + - "\x92\x71\xa7\x72\x3b\x20\x0c\xa2\xda\xbd\x0a\xf7\x40\x58\x9c\x22\x84\x42\xb7\xdb\x56\xb5\x58\xc1\xf1\x36\x2d\x3f" + - "\xd5\xae\xf7\xfa\x82\xb1\xac\xf3\x6d\x54\x7b\xaa\xdc\xef\x75\x35\x63\x39\x07\xdc\xa0\xf4\x94\xba\xe0\xa6\x65\x63" + - "\x09\x27\xac\x5a\x77\x66\xdc\xb0\x44\xe5\xc8\x62\x16\x3b\xa2\xba\x7e\xe4\x90\x0a\x31\x94\xbe\xb8\xad\x3d\x91\x6d" + - "\x27\xc0\x2a\x6e\xf8\xfa\x5d\x91\xed\xe5\xbf\xf2\x1e\xf8\xba\x7d\x91\xed\xa4\xbf\x92\xce\xb7\xe9\xce\x88\x40\x48" + - "\xb5\x88\xd5\x3c\xaf\xcc\xee\x08\x45\x53\xfb\x5c\xc1\xfe\x48\x8a\xa1\x06\x17\xb8\xda\xbf\x6c\xd2\xab\xe4\x6c\xff" + - "\x52\x19\xaf\x82\xbb\xfd\x4b\xa4\xbb\xb2\x0e\xf7\x4f\xcb\x75\x6a\x87\x2b\x97\xe8\x8a\xf7\x48\x58\x24\x95\xcf\xa9" + - "\x53\x9c\x62\x9b\x24\xb4\xf4\x07\x40\xee\x77\x2d\xf8\xd4\xf9\xfd\xba\xa5\xbd\xad\x77\xe2\x7b\x60\xeb\xbb\xda\xdb" + - "\xfa\xa0\xf0\x48\x48\x0b\xdf\xce\xdb\xd6\xde\xd6\xbb\xf1\x19\xa3\x7a\xe1\x41\x90\x96\xf8\xa6\xe4\x8c\xa4\xf2\x0f" + - "\x9b\x24\x62\xaa\xbe\xd8\x13\xca\xa8\xf8\xfe\x49\x70\xa1\x72\x46\x3c\xd5\x2d\xf0\x02\xe1\xe4\xdf\xef\x09\x45\x93" + - "\x7e\x0e\x95\xbd\x75\x99\x97\xaa\x8a\x48\x55\xe4\x51\x09\xd3\x8c\x45\x90\xb8\x02\x06\x0a\xed\x3f\x81\xe4\x8c\x3e" + - "\x6e\x17\x35\x0a\xcd\x7b\x09\xdd\xf9\x0a\xdf\x5d\x5c\x68\x83\xec\x59\xb0\x78\xdf\x06\x0d\x54\x7e\x6e\x38\x3e\xab" + - "\xa1\x3e\xcf\x4c\x2e\x98\x51\x1e\xb4\x8e\xe9\x28\xcf\x28\x37\x7a\xaa\xfb\x95\x48\x4c\x13\x7f\x18\x18\xeb\xa0\x2d" + - "\x3d\xec\xca\x8e\x43\x5c\xab\xb1\x83\x10\x62\x30\x23\x10\x53\xe8\x49\xaf\x46\xca\xca\xee\x89\x25\x17\xa4\x08\x56" + - "\x6e\x51\xcd\xc6\x4a\x2d\x80\x33\x32\x8b\x7a\xf7\x24\x77\x1a\x65\xe4\x15\x09\xab\x92\x54\x29\xa6\x42\x46\xa5\x80" + - "\x32\xe9\x9a\xb1\x4c\x25\x2c\x5d\x71\xa4\x59\xb0\xc5\x2a\x00\x2b\xbb\x4a\x7c\x1f\x09\x27\xf6\xfd\x18\x92\xf7\x7d" + - "\xdc\x2e\x6a\x14\xf9\x7e\xa4\x9b\x7a\xc1\xe1\x82\x56\x1c\x17\xa4\x28\x5a\x73\x90\x7e\xb8\xdc\xc1\x4a\x2d\x4e\x7f" + - "\xe9\x87\xf6\xa4\x6b\x87\x4c\xbf\x22\x01\xe6\x7b\x25\x0c\x0b\xce\x37\xd0\x6f\x56\x05\x9e\x4f\x35\x20\x39\xad\x40" + - "\x87\x2f\x82\x97\x19\xbb\xec\x90\x84\x62\xe0\x45\x5d\xb8\x51\x8b\xe5\xe6\x87\xec\x89\x06\x2c\x3c\x37\x41\x87\x9b" + - "\x87\x96\x19\xac\xf8\xa0\x86\x62\xa8\xea\x0e\xdc\x40\x45\xf2\x72\xc3\xcc\x8f\x51\x31\xc0\x0d\x46\x57\x6d\x68\x65" + - "\xc7\xa5\x1e\x54\x13\x0f\x45\x12\x1d\x10\x4c\x18\x1c\x62\x40\x2e\x36\xe0\x66\x41\x9b\x28\x32\x2c\xe1\x7c\x6e\xcb" + - "\x0e\x1e\xe1\xa3\x5e\x83\x64\x0c\x72\x8c\xc6\x1e\x46\x91\x44\x0f\x8c\xb2\x4b\x34\x2d\x27\xd2\x57\x94\x10\x31\x4a" + - "\x1c\xe6\x25\xa7\xa0\x62\x22\x5d\x45\x89\x91\x9c\x45\x35\xe5\xb7\x3a\x26\x44\xda\x8a\x22\x24\x46\x69\xd1\x79\x95" + - "\x05\xbe\xf4\x6c\x5d\x3e\x16\x31\x3a\xcf\x78\x75\x56\xe1\x22\x30\xab\x6d\x11\x9c\x51\xb5\xb0\x7b\x5f\x56\xe2\xe4" + - "\x94\x2c\xec\xde\x95\xd5\x3f\x39\xf5\x0a\xbb\xb7\x65\xe5\x91\x58\xb1\x22\x1c\x61\x7d\xc4\xe8\xd4\x53\x69\x34\x0f" + - "\x64\xf5\x99\x87\x32\xda\x14\x74\xed\x8b\xcb\xae\x9c\x26\x05\x5d\xbb\xe2\x8a\x2c\xa7\x45\x41\xd7\xb6\xb8\x5c\x13" + - "\x6b\x30\x8f\x91\xaf\xd7\x52\xe5\xc9\x35\xa7\x50\x9b\x5c\x67\x0a\x85\xc9\xb5\xa5\x50\x95\x5c\x4f\x0a\x25\x15\x68" + - "\x48\xa2\x9e\x66\xa2\x14\x49\x4c\x8e\xa1\xc2\xa8\x4c\x40\xb9\xb8\x9c\x00\x24\xe8\xff\x7b\xce\xaa\x2e\xbd\xe9\x54" + - "\x96\x33\xd8\xd5\xf4\xdb\xf7\xeb\x56\xaf\xf0\xa2\x8c\x1e\x73\x20\xae\xa7\x48\x13\x4c\xa7\x36\x73\xd2\x28\xc9\xc8" + - "\x85\x7c\x5a\x2c\x9f\x8e\x22\x4d\x70\xeb\xf6\xb4\x4f\x6c\x4f\xbb\x85\x7c\x58\x36\x2d\x55\xd5\x9a\xd1\x54\x3e\x4b" + - "\xa4\x5a\x56\x1d\x6e\x8f\x55\xac\xb8\x7b\x43\xa2\x5f\x69\x0f\x89\x72\x15\x7b\x46\x12\xcd\x2a\x36\x8d\x84\x6a\x95" + - "\x73\x90\xe9\x54\xa9\x97\x6c\x82\x48\xd5\x29\x3f\x9a\x1f\x2b\x53\x7a\x8b\x87\x44\x95\xd2\x1f\x2f\x14\x2a\x52\xba" + - "\xbf\x25\x51\xa3\x74\x83\x4b\xa8\x44\x19\x75\x99\x0a\x15\xba\xe0\x32\x04\xd5\x9e\x52\x75\x95\xf4\x56\x41\x69\x95" + - "\x34\x56\x41\x5d\x95\x74\x25\x57\x54\x33\x51\x8f\x2c\x57\x60\xa8\x38\x57\x24\xa0\x7c\xae\x88\x01\xc2\xd6\xf5\xd4" + - "\x33\x9f\x57\x8e\xfe\xd4\x58\x42\x33\xb2\x86\xf1\x0f\xbf\x8d\x1c\x3d\x98\x43\x77\xa8\xd5\xf4\x45\xe4\xad\x9b\xd3" + - "\xc0\x5b\x86\xc0\xd2\x7d\x1f\xe1\x62\x50\xb3\x0d\x9c\x9a\x86\x2f\x6d\x9c\x07\xde\xc2\x35\x87\x5e\xa0\xbb\x73\x30" + - "\x32\x3c\xdb\x0b\x86\x6f\x66\xb3\xd9\xc8\xd7\x4d\x13\xba\xf3\x04\x77\xfd\xc6\xd5\x1f\xe1\x1c\x8b\x90\x50\x69\x44" + - "\x9e\x3f\xec\x68\xfe\x13\x0b\xab\x2d\xec\x95\x0d\xc3\x28\xf9\xa9\x0f\xd7\x73\xc1\x28\x15\xb0\x4b\xe5\xb3\x3c\x07" + - "\xa4\x32\xb2\x04\x6c\xb8\x32\x61\xe8\xdb\xfa\xf3\x10\xba\x36\x74\x41\x63\x6a\x7b\xc6\x03\x95\x47\xab\xb5\x7a\x19" + - "\x9e\x56\x6b\x15\x81\xa7\xa8\xa1\xdb\x70\x4e\x3e\x33\x1b\xcd\x3c\x37\x6a\xcc\x74\x07\xda\xcf\xc3\x9d\x83\xc0\x83" + - "\x66\xed\x4a\x77\xc3\xda\xa9\xe7\x7a\x3b\x75\xc7\x73\xbd\xd0\xd7\x0d\x90\x68\xab\x11\xbf\xd3\x18\x22\xda\x44\x0b" + - "\x9d\x7e\xaf\xd3\xd3\x63\x42\x21\x7c\x01\xc3\x0e\x62\xfc\xbb\x03\x4c\xa8\xd7\xde\x39\xd0\x4d\x46\xb5\xdb\xdf\xf3" + - "\x9f\xde\xaf\x32\x5a\x98\xd9\x9e\x1e\xc5\x2f\x4c\xc8\x8c\x74\x3a\xfe\x13\xaf\x4a\x24\x7a\x8c\x68\x83\x59\xb4\xe6" + - "\x40\x7a\x3c\x28\x13\x18\x5e\x80\x5b\x62\x6d\xa6\xe2\x70\xb2\x4e\xd1\xbf\x75\xd3\xd7\xe7\xa0\x11\xc1\xc8\x06\x32" + - "\x95\x94\x18\x09\x4b\x25\xed\xd3\x43\x53\xbd\x6e\x4e\x23\xb7\x61\x44\x3a\x9f\xc8\x20\x96\x4f\xb7\xed\x5a\xb3\x13" + - "\x8e\x04\x4d\x64\xf6\x5a\x9a\xff\x54\x43\x94\x46\x53\x2f\x30\x41\x30\x6c\xfb\x4f\xb5\xd0\xb3\xa1\x59\x7b\x03\x06" + - "\x7d\xd0\xdb\x65\xa4\x6c\x6b\xe9\x00\x13\x60\xdc\xab\x11\xe8\x26\x5c\x84\x98\xda\x48\x68\x2d\x22\xd5\x51\xd9\x87" + - "\x96\xf7\x08\x02\xb1\x7a\x13\x06\xbc\x09\x70\x7f\xad\x9b\xcb\x40\xf7\x7d\x10\xac\x38\x47\x63\xcc\xbc\xd5\xc2\x76" + - "\x9e\x8c\xb9\x81\xa6\x16\x6b\x9c\xb6\x60\xab\x88\x27\x81\x10\x1b\xea\xb3\x08\x04\x75\xfa\xe7\x14\xcc\xbc\x00\xac" + - "\x0c\xcf\x8d\x80\x1b\x0d\x77\x6a\x3b\x74\xa0\x91\x8e\x7c\x9f\xef\xb8\x32\x6c\xa0\x07\xc3\xa9\x17\x59\x8a\x79\x25" + - "\x82\x27\xad\x03\x3c\xa3\x79\xf4\xc1\xa0\x2d\x40\x6f\x69\x2d\x09\x7e\xab\x8d\x6f\x78\xcb\x75\x68\xc7\x1d\xa0\x33" + - "\x67\x82\x14\x0a\xa1\x99\x10\x95\xb7\xf4\x85\x6b\x82\x00\x4d\x67\x46\xf5\xca\xa9\x8b\x51\xa1\x6b\x81\x00\x46\xeb" + - "\xe1\x30\x04\x36\xc0\x35\xec\x8a\x09\x74\x89\x21\xad\x87\x43\x1c\x86\x95\x38\x6f\x50\x94\xca\xfb\x51\xdc\x5e\x13" + - "\x7b\x09\x0e\x88\xf2\x18\x81\x29\x12\x67\xc0\x1e\xa5\x22\xd6\xed\xd1\x70\x8e\xa3\x2d\xfe\xcd\xd8\x4c\xc4\x6a\x63" + - "\x1d\x27\x54\x90\x81\x63\x16\x89\x82\x11\x87\x9a\x56\x6b\xe3\x88\xb9\x04\xd3\x7a\x33\x02\x81\x03\x5d\xdd\x5e\x2d" + - "\xbd\xc0\x6c\xa0\x09\x1b\x4e\x03\xa0\x3f\x34\xd0\xdf\x6c\x70\x69\xa7\xf6\x3a\x44\xfd\x6b\x5a\x4d\xab\x61\x87\x2b" + - "\x1b\x59\x19\xc5\xe1\x7b\x04\x99\xe4\x22\x0f\x1e\x35\xb4\xde\x10\x44\x10\xdc\x8e\xc7\x50\x6b\x1a\x9e\x99\xe8\x2a" + - "\x1d\x0f\xdb\xba\xe2\x62\x86\x62\x36\x78\x8d\xe4\x46\xdb\xa6\xa3\xa5\xf1\x76\x1d\x8b\x80\x78\x31\xbc\xd1\x9f\xab" + - "\x92\x6a\x61\xc7\x90\xf8\x4b\x6e\x14\xd4\x8f\x2c\x18\x81\x06\xee\x36\xf4\x03\xd0\x40\x1e\x81\xfb\xaf\x38\xa3\x60" + - "\x22\x0b\x6a\xd0\xe8\x5f\x89\x89\xe0\x78\xcb\x78\x1f\x09\x24\x71\xa8\x64\x0d\x3f\x89\x77\x1b\x4e\x0f\x09\x9e\x31" + - "\xdb\x38\xca\x91\x50\xdd\xa3\x21\x9f\x80\x91\x4d\x30\xd0\x44\x2f\x24\xbd\x50\x1f\xf1\x9f\x18\xab\x8b\xe7\xa1\x9b" + - "\xd2\x4a\x6d\x2a\xe9\xff\x73\x01\x16\xd4\xfc\xb5\x51\xb6\x16\xa1\x55\x44\x8c\xae\xaf\x18\x02\x4d\x33\xd0\xe7\x73" + - "\x60\x72\xa1\xa0\xab\xf5\xdb\x7d\x9d\xb9\x1d\x3e\xb5\x17\x3e\x17\x21\x83\x41\xc2\xe2\x81\xa6\x04\xb4\x9a\xf6\xd1" + - "\x40\x31\xab\x46\x94\x8b\x80\xd3\x18\xda\x08\x80\x0f\xf4\x68\xe8\x7a\xc9\x53\x4a\x3d\x23\x1a\x69\x46\x13\x4c\x18" + - "\x47\x9e\x2f\xd5\x31\x82\x65\x14\xcc\x4a\xb5\x08\xec\x77\xcd\xe6\x47\xe8\xe8\x73\x10\x7e\x64\x89\x37\xc3\xc7\xf9" + - "\xfb\x5a\x2a\x35\x15\x6d\x64\x81\x38\x6b\xa1\x78\xd3\x5c\xf8\xb6\xa7\x9b\x0d\x3f\xf0\xe6\x01\x08\x43\x26\xbe\xef" + - "\x69\x6f\x39\x6b\xec\x0a\xd0\x6b\xcd\xa9\x1e\x30\x11\xc8\xf5\x02\x47\xb7\x47\x88\xe1\xcc\xf6\x96\x43\x0b\x9a\x26" + - "\x70\xf3\xdd\x42\x5f\x77\xd9\xc2\x6a\xdd\xd4\x6d\xbb\x31\x83\x36\x08\x69\xd1\x18\x67\x7a\xda\x5e\x6b\x86\x96\xb7" + - "\x5c\x71\x26\xbf\x7e\x13\x59\xba\xfb\xd0\x78\xf6\x16\x8c\x92\x47\xf9\x82\x89\x58\x4b\x17\x87\x51\xce\x53\xf6\x7a" + - "\xd3\xde\x74\xca\x50\x42\xae\x6b\x37\x1c\xb3\xd1\x15\x65\x0c\x01\x5a\x4d\x5f\x65\x4a\x1d\x61\x56\xc3\x45\x4d\xa2" + - "\xfb\x36\x53\xf1\x61\x93\x4f\xc9\xc2\xd5\x23\x08\x22\x68\xe8\x76\xc2\xd9\x81\xa6\x69\x03\x8e\xb3\xe9\xb9\x7a\x04" + - "\x6a\x7c\x3e\xc6\xb9\x9b\x45\xb3\x3a\xac\x52\x18\x11\x7b\x3c\x1e\x75\x55\x51\xc9\xb4\x7e\x33\x03\x7a\xb4\x08\x40" + - "\xc8\x79\xd3\xac\x3f\xdb\x9b\xed\x29\x34\x8d\x2b\x27\x54\x23\x93\xee\x48\x9c\x5c\x06\xe4\x85\xe2\x54\xd4\x6a\xb6" + - "\x99\xce\x3e\xa3\xe2\xd6\x1e\x92\x9f\x82\x20\x19\x65\x3c\x93\x6c\x7c\x89\x35\x12\xea\x8e\x8f\x0c\x8b\x88\xb6\x8b" + - "\xd3\x42\x5e\x76\x8a\x59\xb3\xba\xf9\xa5\x11\x81\x51\x6d\x91\xb5\x40\x6c\x52\xc6\x22\x08\xbd\x60\xe8\x7b\x30\x47" + - "\x2a\x93\x3e\x19\x52\xf9\x8c\x85\x88\xe1\xe5\x00\x33\x8a\x0e\x2a\x15\xa0\x4b\x6d\x27\x91\xc7\xd2\x03\xd1\xda\x20" + - "\x6f\xdb\xa2\xc5\x60\xac\x83\x84\x4a\x0d\x66\x57\x07\x49\xfb\xc2\xce\xea\x41\x15\x87\xe3\x3e\x36\x4c\xcb\xe9\xb6" + - "\xac\xac\x27\xc8\x7a\xce\x6d\xb3\xa5\xfe\x9b\x39\x8c\xac\xc5\x54\x30\x50\xb6\xf8\x42\x43\x89\xbc\xa0\x40\x1d\x89" + - "\xd1\x0a\x3a\xd6\x72\xa5\x6d\x76\xf9\x8d\x73\x57\x8c\x9b\x75\xf7\xf5\xcc\xf3\x22\x50\xc4\x3c\x49\x1a\x84\x39\x31" + - "\x9b\x34\x06\xc4\x54\x6a\x3e\x55\x1f\x69\x81\x99\x32\x28\x69\x4e\x75\x87\x87\x45\xb1\x93\x91\x24\xd6\xd2\xcd\x17" + - "\x9a\xb1\xfd\xa0\x05\x89\x6e\x44\x0a\xc5\xb6\x88\x82\x12\x54\xce\x4c\x5a\x7d\x66\x4d\x97\xc4\x50\x79\x7d\x26\xa5" + - "\xb0\x4e\xa9\x5b\x6d\x2e\x3e\xf4\xf2\x82\x77\xb1\xe0\x01\x78\x84\x60\x29\x0c\x47\x54\xf2\x4e\x22\x79\x82\x5b\x6b" + - "\x46\x4b\x18\x45\x20\x40\x19\x08\x65\x13\x66\xad\x9e\x29\xa2\x12\xb5\x0d\xd2\x95\x2d\xb7\x46\x25\x4e\x9f\xb8\x69" + - "\x6c\x1a\xd8\x08\x70\xf7\x9f\x0b\x2f\x02\x94\x59\xb4\x04\x20\x12\x6f\x82\x64\x16\xff\x5c\x6e\x60\xf8\xc4\xab\x6c" + - "\xa6\x80\xd7\x6a\xad\x3e\xe2\xdd\x27\x59\x26\x9e\xb9\x78\x77\x22\x59\x89\x6b\x52\x59\x12\xe3\x60\x97\x6c\x74\xce" + - "\xd2\xbd\x9d\x3d\xbc\x06\x94\xd2\xc8\xe9\x92\x4d\xd8\x4c\x7d\x25\x97\x82\x0b\xe6\xbb\x24\xd8\x2d\x89\xc1\x6a\x79" + - "\x75\x64\x43\xa8\x94\x34\x71\x8a\x64\xf1\x98\xa3\x2c\xcc\xcc\xde\x22\x42\x1c\xb3\x8a\x03\x20\x6a\x3c\xd9\x9c\xb4" + - "\xed\x76\x76\xb2\x7a\xd9\xa9\x4f\x7a\xe9\x99\x5e\x25\x15\x4d\x7a\xd7\x8b\x24\x41\x7a\x5b\xaf\x7f\x4f\xd6\x2a\x06" + - "\xbf\x6a\x89\x37\x36\x41\x10\x5a\xa3\x30\x30\x48\x91\x88\x30\xc2\x8f\x29\xac\x09\xbc\xe8\x7d\x11\xc2\xff\x79\x03" + - "\xc1\x0c\x3e\xbd\xaf\xcd\x50\x69\x17\xbd\xdb\x01\xce\x14\x98\x26\x30\x1b\x9e\x0f\xdc\xe8\xd9\x07\x3b\xef\xeb\xb2" + - "\xfe\x4b\x6f\x36\x4b\x7b\xa2\xbf\x14\xc8\x51\xc4\xe0\x46\xc1\x02\x14\x10\x0f\x1f\xe7\x6f\xd2\x3f\xd3\xae\xe1\xe3" + - "\x7c\xe7\x7d\x6e\xe2\x63\xcd\x25\x79\x0b\x15\xa9\xeb\x3f\x4d\x3d\xd2\x1b\xd0\xf0\xdc\xbf\xc8\x26\x8d\x58\x87\xcc" + - "\xef\xde\x90\x5d\x1c\x3d\x8a\x82\x77\xb4\xff\xfb\x3c\x75\xa6\x4f\x46\x92\x2c\xe4\x51\x0f\xa0\xee\x46\xf9\x7e\xd8" + - "\x54\xd3\x2d\x6a\xde\xbb\x46\xa1\x0f\xf4\x87\x7c\x61\x99\xde\xd5\x18\x8b\xe4\x78\x5e\x64\xa1\xc0\xa1\xbb\x11\xd4" + - "\x6d\xa8\x87\x20\xf9\x1d\x68\x2f\x7c\xca\xe2\xcc\x03\xfd\x19\x7f\xcb\xb2\xfe\xd3\xb0\xf5\x30\xfc\xdb\xdf\x77\x6a" + - "\x68\x7c\x8d\x1d\xa2\xa1\x7a\x0c\xf8\xef\xbf\xe3\xe6\xf2\x7a\xfb\x7f\x4d\x3f\x4d\x3c\x7e\x52\xbe\xe5\xf6\xf8\xf4" + - "\x9d\x04\x03\x57\x39\x39\xf0\x94\x80\x0d\xe4\xe4\x39\xf0\x9c\x80\x23\x7d\x9e\x03\x1a\x04\x98\x2c\xa9\x0c\xdb\x5b" + - "\x98\x39\x2c\x87\x60\x39\x3a\xcc\x8b\x77\x4f\xa0\x73\x7d\x31\xcf\x8b\xf7\x40\xc0\x42\xe9\x2c\x02\x45\xe6\x3f\xd5" + - "\xc3\x7c\x7f\x48\x30\x2c\xa0\x07\x51\x0e\x0c\x28\x79\xe8\xe6\xc9\x9b\x04\x8a\x82\xda\xd4\xf3\xf2\x18\x36\x55\x4f" + - "\x1c\xf9\x73\x08\x2e\xcb\x00\x98\xd0\xcd\x61\x78\x54\x01\xbe\xbd\x08\x73\x60\x7f\x67\xdd\xf4\xe3\xd2\x81\xee\xe0" + - "\x64\x76\x62\x70\x0d\x65\x45\x8e\xbd\x62\x2a\x73\xbc\x27\xe3\x7b\xc9\x86\x4a\x00\x6c\x3d\x82\x8f\x60\xfd\xc6\xf4" + - "\x96\x2e\x9a\xac\x2c\x91\x76\x5c\xd0\x10\x70\x2d\xa9\x23\x13\xa8\x36\xc2\xfb\xcd\x1a\xbb\xe1\x43\x89\xeb\xd3\xd0" + - "\xb3\x17\x11\x18\xbd\x34\xa0\x6b\x82\xa7\x61\xa3\x95\xca\x8c\x77\x03\x56\x69\x65\xce\x03\xf2\x45\x40\xa6\x04\x62" + - "\xb7\x00\xe2\x5a\x84\xdd\xf2\x5d\x37\xd1\xea\xde\xd6\x9f\x57\x54\x98\x19\x7c\x02\x26\x95\xa4\x85\xd2\x2c\xde\xbd" + - "\x4a\xe4\x8f\x37\xc9\xb5\x11\x1d\x57\x5a\xb9\x25\x6b\xcd\x60\x3e\xd5\xdf\x69\x75\xf4\xaf\xd9\x7a\x3f\x62\x7e\x7a" + - "\x2c\xde\x40\x18\x65\x6e\x2a\x8d\xd9\x26\x8d\xb5\x66\x3b\xd9\x54\x6c\xea\xf8\x87\xdc\x6a\x54\xc2\xfc\x6f\x98\x31" + - "\x07\x63\x9a\x86\xe7\x3f\x63\x1b\xa1\x93\x4c\x86\xd0\xd6\xb4\x74\xcb\x14\x38\xa3\xcc\x48\x63\x65\xf4\xf0\xf6\x37" + - "\x51\x4d\x2f\x56\x15\xad\x7c\x3b\xf8\xef\xdc\x48\xc9\x92\x8c\x2f\x2d\x51\x55\x21\x79\x73\xa9\xbd\xe5\x7e\xe9\x05" + - "\x37\xa8\x94\x30\x32\x6c\xe8\x0f\x03\x60\x44\xef\x5a\xa8\x50\x4c\xff\xf7\x9e\xd5\x22\xaa\xb0\x07\xf1\xff\xa1\x8a" + - "\x06\x4d\x54\xfa\x77\xaa\xc8\xbc\x8a\x30\x79\x6c\x34\xcc\x9d\xb3\x9e\x8f\xb5\x81\xc9\xf4\x90\x89\xe4\xfa\xf1\x55" + - "\x94\xc6\xef\x7e\x08\xd0\xa1\xeb\x2f\xa2\x55\x5e\x7d\x49\xa1\xcf\xbd\x2c\xa3\x75\x2f\x5b\x55\xa3\x59\x23\xab\x01" + - "\xe0\xd0\xb5\x1c\xeb\x4c\xf9\x39\x60\xb7\x69\x5d\x0f\xc9\x92\xdd\xca\x8a\xb3\x0e\x6d\x04\xb6\x0d\xfd\x10\x86\xa2" + - "\x21\x34\x41\x10\x08\x97\xa4\x89\xf0\x87\xbb\xdd\xbd\xce\x7e\xc6\xf7\xe8\xcb\xda\x1e\x70\xd6\x6f\x1c\xb3\x91\xb8" + - "\xae\x30\xfe\x3c\x42\x13\x78\x99\x7a\x1e\xbf\xba\x59\x91\xb7\xb4\x6f\x47\x74\x19\x48\xdf\xd5\xe0\x3d\x06\x8c\x1b" + - "\xf7\x67\x5c\x1b\x37\x0c\x87\x24\x45\xe2\x8a\xb5\x81\xc2\x62\xe0\xd9\x61\x03\xb8\x86\xed\x85\x8b\x80\x09\x2d\x84" + - "\x7c\x8f\x8a\x23\xed\xed\xeb\x2e\xb0\xd3\x8b\x8a\x99\x54\x4d\x34\x40\x33\xb3\x0d\x9e\x18\x30\xb3\x28\xc4\x6b\x42" + - "\x86\xa5\xc0\xbf\xc8\xde\x6c\x6e\x4b\x17\x2f\xa5\x5a\xc5\x72\x46\xd0\x01\xa8\x62\x58\x91\xa0\xce\xbe\x3f\xd1\xd2" + - "\x35\x56\x39\x2a\x75\x35\xda\xa3\x67\x2f\x1c\xd0\x08\x6d\x68\x82\x80\xe3\xc8\x0f\xa0\xc7\xc5\x16\xfc\xfe\xa2\x1c" + - "\xff\x2c\x42\xcc\x09\xe3\xe9\xd0\x05\x41\x15\xf9\x8a\x68\xad\xa8\x1f\xe6\x85\x97\x06\xc2\xcc\xbe\x99\x84\x47\x64" + - "\x2d\x9c\x69\xfa\x35\x86\xef\x03\x3d\xd0\x5d\x23\xd9\x83\x62\x76\x02\x02\x60\x16\xd9\xa1\xad\x3f\x37\xa6\x8b\x28" + - "\xf2\xdc\x55\x86\x79\xe9\x8e\xc9\xcb\xcb\x86\x13\x36\x66\xd0\x46\x35\xc8\x8e\x6e\xfb\x96\xfe\xee\x3c\x36\xef\xbf" + - "\xef\x6a\xef\x77\x46\x09\x28\x07\xa1\x91\xb3\xb9\x5b\xc0\x72\xb6\xb0\xed\xd0\x08\x00\x70\x89\xc4\xc5\x2a\x48\xf4" + - "\x8b\x53\x84\xaf\x07\x00\xad\x5a\xb8\x61\xb2\xb8\xb8\x20\xc0\xcb\x3f\x54\xcd\x0d\xf1\x9f\x1f\x7d\x77\x3e\x42\x85" + - "\x5d\xbf\x5b\x87\x3f\xf6\xcf\x2f\x97\xda\x1f\x47\x73\x6f\x3c\x1e\x8f\xcf\xae\xae\xad\xc3\xeb\x39\x7a\xdc\x1b\x8f" + - "\xc7\xfb\xe3\x4f\xe3\xc9\x78\x3c\x3e\xf8\xdc\xfe\xd4\x79\x41\xad\x47\xb7\x97\x9f\x6f\xbe\x5c\x7e\x9f\xb6\xef\x34" + - "\xb3\xfd\xf9\xf9\xee\x62\x7f\xff\xee\x68\x00\xef\xae\xf6\x4f\xa6\x37\x9f\xdd\xbb\x1f\x27\xf6\xe4\xe6\xb2\x67\x18" + - "\xb6\xfd\x0d\x75\x78\xbe\xf4\x7f\x7c\xb6\xb4\x9b\xc3\xd6\xe9\xb9\x73\xf6\x38\xbd\xea\x59\x31\x7e\xaf\x3b\xbd\x1d" + - "\xc7\xff\x77\xb0\xfc\x08\xbe\xec\x5b\x93\x76\x64\x9b\x9f\xf6\xe1\xdd\x8d\xe9\x4f\xef\x35\xb8\xbb\xbb\xf8\x78\x0c" + - "\xf7\xfd\xbb\x03\x0d\xfe\x78\xf9\x71\x76\x7a\xd8\x5a\x5e\xb4\x7f\x78\xfa\xb5\xd5\x37\x9c\x1f\xdf\xc1\x43\xef\x7a" + - "\xd2\xf1\x83\xc9\x8b\xfd\x70\x7c\xbf\xf7\xe1\xf8\xe0\xa9\x7b\xee\x5a\x91\x71\xd4\xb2\xcd\xa3\xc3\x39\x38\x6a\x85" + - "\x53\xf7\xb4\x0f\x0e\x34\x38\xb9\xb9\x7c\x9c\x38\xd7\x7d\xf4\xf7\xf4\xe6\x87\x36\xb9\xda\x83\xc7\x5f\xe6\x7d\x70" + - "\xd4\x5a\x9a\x47\xe1\xe0\xf8\xe1\xf3\xc3\xb4\x7d\x62\x1f\x7f\xb6\xce\xae\x3f\xed\x1f\x4c\x3b\x27\xf6\xf1\xc1\xf5" + - "\xe2\xf4\xb9\x75\x7f\x7a\x70\xf8\x74\x7c\x30\x69\x7f\xbd\x3f\xd4\xce\xbe\x4f\xda\xa7\x57\xcb\xf9\xe9\xfd\xf8\xe9" + - "\x14\xee\x2d\xd1\xff\xce\xa0\xf6\x74\x76\xe0\xb5\xce\xee\xbd\xe7\xb3\xe7\xf1\xfc\xf8\x53\xf2\xbf\xfb\xee\xfc\xdb" + - "\x97\x93\x87\xbb\x7b\xff\xea\xf2\x70\x42\xe5\x31\x9c\x4b\xe7\xdb\xd5\x89\x67\x7e\xb9\x5c\x9e\xc3\xbd\x47\xb3\x63" + - "\x76\xbe\xba\xc6\xcb\x57\x67\xf0\x7c\xf7\xbc\xf7\x74\xfe\xfd\xa1\xf7\xf5\x65\xfc\xfc\xf5\xe5\xf8\xf9\xeb\xed\xc9" + - "\xc3\x1d\x6c\xbd\x80\x9b\x9e\x36\xb9\x9d\x47\x53\xf7\xf4\x9e\xa1\x7b\x78\x77\x7b\x76\x6f\x38\xf6\xd2\x3c\xb2\x1f" + - "\xa7\x70\xff\xf9\xee\x68\xd2\x9f\xdc\x9c\x3c\x9a\xb7\x17\x83\x63\x78\x9c\xea\xe0\xa8\xb5\x64\x79\x4e\xdd\xd3\x45" + - "\xa2\x93\xc5\xa4\x3d\x88\xbe\x76\x2c\xcb\xf8\xb4\xf7\xf4\xf5\x7e\xfc\x78\x0c\xf7\xbb\xd3\x9b\xa7\x85\xf1\xe2\x77" + - "\xa7\xb7\xfb\x67\xdf\xbf\x6b\x50\xff\x72\xa9\x19\x07\xde\xe3\xd7\x76\xef\xe5\xab\x13\xeb\xea\x2b\x9e\xcf\x41\x77" + - "\x72\x3b\x7e\x3c\xbd\xea\x2e\xbf\xb6\x5b\xd1\xd7\xe7\x94\xa7\xd1\xb9\xbc\xba\xbb\x99\x0c\x8e\x1d\x4b\x33\xbf\x8c" + - "\xfb\x5f\x9f\x07\x0b\xe3\x99\xce\xff\xfd\xb4\xad\x3d\x82\xa3\xcf\xcb\xaf\x2f\x87\x8b\xd3\x4f\x83\x97\x1f\x5f\xec" + - "\xe5\xdd\xd5\xe0\xea\xee\xf6\xec\xd1\xbc\x3d\xb9\x47\xb6\x74\x07\x4f\xe1\xf1\x17\x2b\x32\x0e\xfc\x03\xc3\xf9\x61" + - "\x99\x47\x83\xe7\x1f\x47\x83\xc7\xe9\x81\x06\x2f\x62\xf9\xe7\xd7\x47\xd6\xa3\x79\x34\x78\xd1\x8f\x06\xcb\xe3\xc3" + - "\xb3\xef\x67\x70\xec\x7d\xbf\xf9\x7c\xaf\xdf\xf4\xb4\x69\xe7\xcc\xfb\xe3\x0a\xcb\xb4\xfc\x7e\xad\xf5\xaf\x6e\x7a" + - "\x2f\xe6\xd1\xe7\xc5\xa4\xfd\xe3\xe4\xf2\x40\x83\xa8\xfd\xab\x63\xfb\x77\x07\x5e\xfb\x4c\xbb\x68\x9d\xde\x8f\x3b" + - "\xa7\x07\x46\xef\xec\x7e\xf2\x74\x7a\x7d\xfd\x7c\x71\x7f\xf1\x72\x79\xff\xd0\x3b\xbd\x37\x5a\xa7\xdf\xaf\x7b\x17" + - "\xf7\x0f\xda\x19\x43\xef\xf2\x68\x70\x6f\xde\xb4\xec\xa9\x7b\xc9\xd0\xbb\xe4\xe9\x7d\x2f\xa4\x87\x6d\x37\xd6\x35" + - "\x9a\xd3\x13\xdf\x74\x7e\x3c\x5c\xba\x27\x8f\xd3\xab\xfd\x17\xf3\xf3\x89\x7d\x77\xef\xfb\x53\xf7\x4c\x9b\xdc\xf4" + - "\xee\xef\xae\xed\xc3\x6f\x57\x27\xc8\x7f\x16\xfa\x8d\xfd\x70\xfe\x70\xf1\x7c\xf1\x70\xd8\xbe\xb8\xbe\x3b\x3a\x7b" + - "\x79\x78\xb9\xb8\x3f\x7c\xba\xfc\x7e\xf2\xe9\xec\xe0\xec\xe8\xfc\xfb\xc3\xf3\xd9\xcb\xf5\xd3\xd9\x77\xfb\xd3\xf9" + - "\xf7\x8b\xd6\x31\xa4\xf4\x1e\xa6\xed\xb3\xd6\xf4\xe6\xc7\xc2\x3c\x4c\xe9\xdd\x1d\x31\xf4\xee\xc7\xcb\x62\x7a\xc8" + - "\xef\x96\x8f\xc8\xa6\xcf\x1f\x2e\x6d\xa3\x7d\xf6\xac\xdf\xee\x6b\xfa\xcd\x60\xf1\x0d\x8e\xf7\xbe\x76\xa8\xfd\x63" + - "\x3c\x70\x80\x6d\x2a\xba\xbb\xbd\xb4\x10\xfc\x5b\xc7\x5a\x4e\x6e\xce\x82\xbb\xdb\x8b\xf9\xdd\x4d\xef\xe1\xdb\xd5" + - "\xc9\x33\xf2\xe5\xd6\xcb\xee\x42\x47\xb1\xe1\x87\x75\x72\x79\xf8\xf9\x1a\x9c\x05\xa1\x7d\xff\x79\x31\xbe\x3f\xbc" + - "\xb8\x9c\x76\xc6\x9f\xee\xf6\x9f\x21\x6c\xfb\x87\x9f\x9c\xf9\xf3\xd5\xe7\xe3\x23\x0f\x5e\x1f\x85\x87\x7f\x40\xfd" + - "\x62\x0c\x9d\xe5\xf7\xef\xde\xa7\xf9\xfc\x6a\x72\x75\x76\xed\x9d\x7c\xb9\x9a\xcd\x3f\x9f\x2c\xad\xd3\x68\xe0\x7d" + - "\xd9\xb7\xef\xf7\x8e\xf4\xf6\xd5\xf8\xe7\xb7\xc1\x1f\x17\x3f\x76\xbf\x7d\x9b\x74\x9f\x5b\x1f\x06\xdf\x0e\x26\x87" + - "\x77\x5d\x7d\xae\x7f\x09\xee\xbb\x5f\x97\x76\xef\xeb\x97\xdb\xcf\x0f\x8f\xe1\xf9\xed\x1f\x7a\x14\xb5\xee\xef\x9f" + - "\x1f\x5e\x82\x9f\xed\x1b\x70\xf3\xe1\x64\xda\xdf\xb7\xfc\xde\xfe\xf3\xd5\xf9\xe3\xc5\xc5\xd7\x85\xfe\xc7\xe1\xb7" + - "\xc9\x72\xe2\x9e\x5f\x7c\xbd\x7a\xf0\xbf\x2f\xf7\x67\xd3\xeb\x9f\x17\xba\x33\xb0\x0e\x7e\x44\x10\x9c\x3f\xeb\xde" + - "\xf9\xd1\xd3\xc1\xf7\x71\x74\x16\xfc\x18\x5c\x7f\xfe\xf9\xfd\xd0\xf8\x78\x7d\x74\x7d\x01\x6e\x6f\x9c\xd9\xd5\xdd" + - "\x7e\x7f\xff\xe7\xed\xa9\xd1\xd1\x8f\x3f\xdb\x9f\x6d\x7b\xd2\xb5\xbe\x75\x07\x67\x6d\xab\xdf\xf7\xdb\x93\x93\x5b" + - "\xfb\xb9\xf3\xe5\x64\xd0\x1e\xef\x43\xeb\xe9\xee\xc7\xe5\xb7\xd3\xfe\xfe\xcf\xc7\x1f\xf0\xca\xfe\x7c\xb6\xfc\x09" + - "\xf7\x97\x3f\x7a\x9f\xc6\x5f\xce\x0d\x6b\xff\xc0\xfd\xe3\xe2\x63\xef\x63\x08\xbb\x1f\xe1\xf9\xb5\xdb\x9b\xdc\x6a" + - "\x1f\x80\xa1\xdd\xb6\x9c\x87\xfd\x5b\xfb\xfe\x4b\xcb\xb5\x2d\xd7\xf8\x3e\xb3\x3a\x37\xc7\x9f\xdb\x87\xe6\xe5\xc7" + - "\xf9\x49\x7f\x77\xf7\xfc\x8f\x9f\xcb\x99\x79\xfe\xf3\x8b\x73\xd2\x3d\x0b\xcd\xd6\xee\xb7\xe5\x75\xef\xf0\xe3\xf3" + - "\xcd\xfc\x04\x82\xc9\xc7\x7d\xf8\xd8\x3f\xf5\xae\x7f\xdc\x3f\x9e\x83\x7e\xeb\xfe\x83\x71\xb4\x58\x2c\xfd\xf0\xeb" + - "\xe3\xc1\xb9\xdd\xfb\xe3\x1e\x7c\x7e\x38\x58\x84\x97\x11\xbc\x3a\xfb\xe3\xae\xff\xd9\xbc\xfd\x6e\x5b\xb7\x37\xc7" + - "\xb3\xa7\xef\x37\xc6\xac\xb7\x37\xb9\xd4\xbe\x76\xc6\x2f\xc1\xe5\xf2\xf0\x68\x7c\xe2\x9d\xcf\x3f\x9d\xce\xac\xbe" + - "\x05\x71\xdc\x3f\xb4\x3f\x7f\x7f\xb8\x5a\x5c\x38\x9f\x3e\xbd\x67\x93\x56\xf2\xf6\xc0\x7f\xaa\xf5\xbb\x7c\x69\x41" + - "\xd7\x69\xc9\x0d\x75\x7b\x3c\x38\xf7\x92\x5e\x9d\x7d\x9d\x45\x04\xfe\xd5\xf2\xee\xfe\x98\xc9\xbb\xe3\xef\xb3\x19" + - "\xb8\xf9\x77\xde\xfd\x77\xde\xfd\xff\x21\xef\x9e\x6d\x39\xef\x9e\xfd\xea\xbc\x7b\x3f\xe9\x5c\x1e\x5c\x3f\x9f\x1e" + - "\x18\xcf\x67\x2f\x0f\xed\xb3\xd7\xe6\xdd\x94\xde\x4b\x31\xbd\x5f\x93\x77\x8f\x7c\xed\xe8\x12\x47\x1e\x33\xc9\xbb" + - "\x3e\x34\x8f\xc3\xc5\xe4\x74\xbc\xbf\xf4\x3e\x77\xf7\xad\x4f\x8f\xfb\x1f\x8e\x1f\x6e\x8f\x7f\x4e\x8c\xe3\xfb\xdd" + - "\xf1\xb7\x43\x78\xbc\x3f\x19\x77\xef\xe7\xda\xf9\xe5\xe1\xfc\x6b\x78\xe2\x5e\x8c\xe7\x17\xc1\xf2\x04\x9e\x41\x38" + - "\x3b\xba\xee\x80\xcf\xc7\x70\x77\x7e\x30\xff\xf6\x74\x74\xb8\x3f\x71\x27\xf3\xd6\x7c\x1f\x1e\xfc\x84\x2f\x17\xb7" + - "\x3d\xf8\x74\x7e\xf8\xfc\xe9\xf9\x00\x7c\xda\xbb\x3a\xbb\x38\x5b\x9e\x3c\x9d\x44\xe3\xfd\xc5\xf2\xcb\xe4\x21\x3c" + - "\x5a\x7a\xe3\xcb\xfe\xcf\x4e\x74\xf1\x79\xf9\xc7\xd3\x91\x3d\x76\x4f\xa3\x43\xff\x68\x72\xf1\x61\xfc\xa1\x75\x76" + - "\x79\x7e\xfc\x41\x3f\x00\xe6\x91\x09\x8f\xc7\xed\x70\x7c\x73\x72\xa3\x1f\x58\xc6\xfe\xd1\xf1\x8f\xeb\x79\x6b\xbc" + - "\xff\xf3\xa5\xeb\x59\x87\xb7\xe3\xd3\xdb\x8b\xe9\xf3\xf8\xc3\x81\x71\xa9\x5f\x7c\x59\x7e\xb9\x3b\xdd\x7f\x3a\xbe" + - "\xbf\x39\x18\x07\x87\x86\x13\xcc\x3f\x8c\x6f\x0f\x27\x87\xe7\x7b\x87\x4f\x93\xe3\xfb\xeb\xfb\xcb\xa3\x8b\xc5\xf9" + - "\xed\xe1\xb5\x31\x9f\x5b\x5f\x7f\x9c\xeb\xd6\xbe\x37\xbe\x68\x1d\xdd\x7c\x1f\x7f\x6f\xc3\xf1\xfc\x74\xff\xe4\xf8" + - "\xa0\xbb\xff\xf4\xed\xdc\xda\xff\x79\x7c\xf0\x70\xb2\x74\x0f\xcf\x8c\x03\xe3\xe2\xe1\xe2\xdb\xde\xf8\x66\x1f\x2e" + - "\xc6\xe7\xfb\xf0\x78\xa6\x7d\xe9\xcd\x06\x5f\x1e\xbe\x6b\x67\xe6\xe9\xf8\xf3\xec\xf8\xa8\x7b\xd0\x9d\xcf\xe7\xb3" + - "\x79\x74\xf6\xed\xf4\x7e\x7e\x70\x79\xd0\x59\xce\xbf\x39\x1f\x3f\x7e\xfc\x78\x70\x72\x35\xbe\xbe\x38\x3b\x3a\xb8" + - "\x9c\xb7\x26\x67\xfc\x73\xf7\xc6\x1a\x5f\xbb\x5f\x02\xfd\x78\x60\x47\xa7\xc6\x73\xdb\x39\xbd\x3b\x38\xd0\x6e\xe6" + - "\xe3\xf1\xc1\xf8\x60\x62\x3f\x4f\x0f\x2e\xfe\xb8\x35\xc7\xff\x12\xb9\x34\xb7\x92\x25\x4b\xe8\xe2\xbc\x9a\x15\xa4" + - "\xd1\x6d\x17\x6e\x7f\x30\xa9\xfb\x35\x8c\x3a\x85\x8c\x8c\x45\x80\x52\x3d\xde\x6f\x69\x24\x1b\x59\x05\x7b\x2a\x18" + - "\x35\x00\x8e\x0e\x5d\xe8\xce\x49\xa7\x55\xe6\x83\x9f\xcc\x5b\xb1\xf5\xff\x0d\x00\x00\xff\xff\xf2\xb2\xc4\x0d\x5c" + - "\x79\x01\x00") + "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\x77\x93\xe3\xba\xb1\x38\x0c\xff\xff\x7c\x0a\xfd\xf6\xd4\xd6\x3d" + + "\xeb\x51\x20\x29\x51\x61\xa6\xec\xd7\xca\x61\x14\x46\x39\xf8\x9e\xe7\x16\x45\x42\x22\x25\xa6\x21\xa9\x38\x3f\x7d" + + "\xf7\xb7\x18\xc5\x00\x90\xd4\xcc\x1c\xfb\xfa\x29\x7b\x7d\x76\x29\x74\xa3\xd1\x68\x74\x02\x08\x80\x7f\xa7\x59\x4a" + + "\x51\x81\x96\xf8\x31\x9d\x34\x52\xc5\x1f\x2f\x99\xbf\xfc\x9f\x84\x28\x29\x02\xc5\x73\x57\x90\xa6\x55\x35\x71\x24" + + "\xd2\x78\x3a\x9b\xf8\xbf\x89\x5e\x7b\x92\xe8\x72\x34\x10\x55\x90\xf8\xbf\x89\x2d\xa7\xa5\x39\x29\xe3\xe0\x26\xfe" + + "\x92\xa1\x14\x8d\xa3\x79\x90\xa4\x54\x8e\x01\x49\x06\x68\x14\xc7\xab\xc9\x0d\xb7\xa5\x29\x59\xe3\x24\x51\x7f\x3c" + + "\x28\x20\xb9\x91\x24\x0d\x28\x49\x16\x50\x8c\xfe\xcf\x56\x91\x0e\x72\x52\xa0\x38\x31\x29\x52\xc7\xa4\x0a\x68\x03" + + "\x59\x3d\x08\x02\xa5\x5c\x3e\x18\x4e\x95\x79\xea\xf2\xbc\xe6\x25\x7a\x7f\xa3\x0e\x0c\x27\x25\x69\x4a\x3c\x52\x6a" + + "\xf2\xc8\x31\x40\x72\x10\x38\x91\xe7\x44\x90\x72\xe1\x3d\x8b\x92\xf6\xfb\x3f\x68\x49\xd4\x14\x89\x57\xff\xf8\xe5" + + "\xa0\x8a\x92\x08\x5e\x58\xc0\x6d\x59\xed\x19\xbb\xfd\x83\xe5\x18\x06\x88\x7f\x24\x35\x20\xc8\x3c\xa5\x01\x0f\xde" + + "\x8d\xd5\x04\xfe\x63\x23\x89\x5a\x6a\x43\x09\x1c\x7f\x79\x56\x29\x51\x4d\xa9\x40\xe1\x36\x2f\x29\x41\x4d\x69\xe0" + + "\xac\xa5\x54\xee\x0a\x52\x14\xb3\x3b\xa8\xda\x33\x8e\x61\x3f\x5f\x52\x27\xb0\xde\x73\x1a\x1c\x7a\xa3\x3e\xd6\x14" + + "\xbd\xd7\x7b\x2e\x32\xcf\x58\x02\xbb\x51\xcf\x14\xad\x71\x47\x90\xa4\x9e\x59\xe9\x08\x94\x0f\xe9\xa0\xe9\xdd\x79" + + "\xc6\x6e\x2c\xfe\x21\x50\xca\x96\x13\x9f\xd3\xf9\x02\x10\x12\xd8\x6d\x9d\x54\x35\x45\x12\xb7\x26\x57\x27\xb3\x1f" + + "\x05\x0c\xbb\x31\x1b\xd1\x2c\x53\xb5\x0b\x0f\x9e\x39\x8d\xe2\x39\xfa\xc6\x2a\x1f\x29\x41\xba\xa6\xd6\xd2\x59\xe7" + + "\x84\x13\xb7\xcf\xba\x4c\x80\xa8\xe9\x45\x2f\x88\x62\x47\x3c\x02\xa5\xec\xdd\xec\xfe\xb6\xd9\x60\x2f\xb4\xc4\x4b" + + "\xca\xf3\x6f\x18\x86\xdd\x68\x89\x01\xc9\xfd\x9a\x49\xca\x0a\x48\xaa\x94\x20\x7b\x84\x25\x48\xa2\xa4\xca\x14\x0d" + + "\x92\xa6\xc4\x4c\xf6\xb8\x2b\x78\xc6\x81\x70\x93\x15\xf0\x71\x62\x39\x0d\xa4\x0c\x9c\x67\x59\x01\xa9\x93\x42\xc9" + + "\xb7\xf7\x8f\xf7\x83\xa4\x01\xf5\xf9\xc7\x7f\x13\x18\x5e\xfd\x91\x30\xfe\xad\x59\xff\x16\xad\x7f\x4b\x3f\x6e\xea" + + "\x61\x9d\x54\x0f\x56\x9b\x06\xdd\x02\xf9\xf3\xc5\xd0\x04\xbb\x07\x2f\xb2\xa4\x72\xba\x4e\x3d\x2b\x80\xa7\x74\x29" + + "\xbf\x1c\x81\xae\xab\x14\x9f\xa2\x78\x6e\x2b\x3e\xaf\x29\x15\xe8\x55\x6e\x3a\x25\x4d\x92\x9f\x53\x69\x12\x08\x3a" + + "\xed\x8f\xb5\xa4\x69\x92\xf0\x9c\x4a\x13\x7a\x09\x27\x6c\x3f\xd6\x92\xc2\x00\xe5\x19\xbb\xa9\xc7\xad\xa1\x61\xcf" + + "\x8a\x24\x69\xbf\x3e\xf4\x61\xdb\xf0\xd2\xe9\xd9\x54\xa7\x9b\xa9\xed\xf6\xd8\x61\xb7\xf5\x41\xd3\x24\x31\xc9\x89" + + "\xf2\x41\x4b\xaa\x80\x07\xb4\x96\xd4\xb5\x83\x52\x00\x15\xc0\x32\xe1\x1f\x86\xf6\x68\x0a\x25\xaa\x1b\x49\x11\x4c" + + "\x7d\xb4\x30\x74\xb5\x4c\x18\xc4\xfe\xa1\x5d\x64\xf0\x57\xb3\xf8\x8f\xa4\xab\x48\x01\x2a\xd0\x3c\x25\xea\x61\x2d" + + "\x70\xda\x1f\x1f\xb6\x76\x52\xb2\x0c\x28\x85\x12\x69\xf0\x6c\xd6\x7f\xa1\x0f\x8a\x2a\x29\xcf\xb2\xc4\x89\x1a\x50" + + "\xac\xc6\xfe\xc1\x70\x2a\xb5\xe6\x01\xf3\x87\xbb\x59\xa7\xf0\xc3\xaa\xc4\x80\x0d\x75\xe0\xb5\x9b\xab\x41\x9a\x05" + + "\xf4\x7e\x2d\x9d\xbd\x7c\x51\x0c\x27\xfd\xf1\xe1\x52\x3c\x53\xa6\x86\xde\xc9\x14\xc3\xe8\x45\x98\x9b\x8c\x0a\x28" + + "\x85\x66\xa1\x7c\xeb\x22\xda\x70\x80\x67\x20\xf8\xcf\xcf\x76\x05\xb3\x20\x45\xeb\x55\xf8\x94\x7b\x28\xc2\x2b\x30" + + "\x80\x96\x14\x4a\x57\x1e\x58\xdb\xae\xf1\x78\x7e\x36\x6c\x6c\x23\xd1\x07\x35\xc5\x89\x22\x50\x4c\xf2\xc1\x72\x47" + + "\x81\x5c\x5d\x75\xf4\xc0\x51\x22\xea\xa0\x49\x7e\x35\xd5\x24\xf9\xa6\xe9\x22\xb7\x48\xa4\x68\x89\xe7\x29\x59\x05" + + "\xcf\xf6\xc3\x8b\x05\xd0\xad\xc9\xa4\xfc\x77\x01\x30\x1c\x95\x90\x15\x4e\xd4\x3e\xfe\x62\x2a\x94\xca\x52\x8c\x74" + + "\x32\xb8\xff\x3f\x9c\x20\x4b\x8a\x46\x89\x9a\xcb\xa4\x5d\x85\x5e\x37\xe5\x06\xe8\x83\x07\xa3\x73\xa3\x92\xd4\xf3" + + "\x91\x53\x39\x0d\x30\x66\x73\x77\x19\x3e\x1f\x44\x06\x28\x86\xa5\x51\xff\x60\x15\xb0\xf9\xe3\x99\xda\x68\x40\xf9" + + "\xb0\x1c\xcf\xf3\x8f\xc4\xef\x3f\x12\x94\xa6\x29\xbf\xeb\xd0\x5f\x89\x1f\xbf\x7e\xdc\xa8\xf5\x5a\xf9\x87\xc6\x69" + + "\x3c\x40\x63\x1b\x60\x0b\xdd\x20\xfc\xff\xfe\xf5\xc7\x8e\x3a\x52\x2a\xad\x70\xb2\xf6\xfc\xc3\xaa\x99\x74\x80\xbf" + + "\xfd\x08\x10\xfb\x71\x33\x42\x87\xe1\x77\x74\x5f\x66\x8f\x13\x2e\x9f\x13\xaa\xc4\x73\x4c\xe2\xb7\x52\xa9\xf4\x22" + + "\x53\x5b\x90\x5a\x2b\x80\xda\xa7\x38\x51\x8f\x74\xcf\xd4\x51\xe2\x98\x9b\xa6\xc7\x33\x27\x72\x18\xc3\x94\x32\x43" + + "\x5c\xca\x88\x70\xba\xef\x48\x6a\xca\x07\xaa\xbe\xee\x5a\x04\xea\x9c\x3a\x71\x8c\xc6\x1a\x51\xc2\x25\xd3\xbf\xeb" + + "\xb5\x6c\x27\x41\xd0\x42\x22\x4d\xd2\xc2\x8d\x25\x92\x6c\x36\x29\x7f\x48\x8a\xcc\x52\xa2\xfa\x9c\x7d\x39\x71\x8c" + + "\x74\x52\x9f\xb3\x26\xc8\xdd\x96\xd1\x59\xab\x29\xcb\xb9\x78\x7d\xfa\xc6\xd5\x5c\x5a\xa4\x8e\x6b\x4a\xf1\xc6\xc1" + + "\xb4\xd1\xa7\x84\xc6\x24\xed\x27\xd6\x45\x22\x65\xa9\x8f\x8f\xd0\x5a\x13\xff\x96\xa6\x29\x05\x68\xc9\x34\xa3\x48" + + "\xf2\x41\xfe\x9b\xab\xcc\xd6\x63\x4d\x92\x53\x30\xf5\xbb\xa5\x79\x6a\x0d\x78\xc8\x48\xe8\x81\x27\x1d\x6e\x0b\x6e" + + "\x32\xe6\x70\x98\x98\x80\xb9\xf7\xc1\x55\xc4\x42\x5a\x61\x18\xc6\x45\xe5\xf6\x97\xa4\xa5\x46\xcf\x6b\xb0\x91\x14" + + "\xe0\xb8\x04\xb8\x27\xf3\x07\x5d\x17\x08\x5a\xea\xca\x34\x8c\x40\x96\x27\xd2\xa4\x2b\x91\xa0\xe4\x14\xcb\x6d\x59" + + "\x5e\x0f\x6a\x96\xb4\x8c\xc8\x20\x53\x0a\x10\xb5\xdb\x5a\x62\x2e\xae\xca\x78\x4e\x3e\x7b\xc2\x20\x9e\xce\x11\x45" + + "\xb2\x80\xe7\xb2\xb6\xa5\x67\xd7\xfa\x9f\x17\xe8\x18\x86\x47\x2b\x77\x80\xe7\x44\x16\x28\x9c\xe6\x0a\xec\x76\x89" + + "\xbb\x75\xab\xec\x46\x3d\x1b\x9e\xd0\x49\x73\xac\x16\x71\x52\xff\xf3\x12\xe2\x2e\xcc\x7a\x4e\x5a\x64\x4b\xc5\xf4" + + "\xab\x0a\x27\x6e\x4d\xe6\x13\xba\xdf\x4c\x90\xf2\xf9\xc5\xc2\x4c\x49\x9b\x8d\x0a\xb4\xe7\x14\x21\x9f\x0d\x1b\xf3" + + "\xf9\x54\x81\x63\x18\x1e\xdc\xd2\x9c\xb0\x4d\x29\x40\x95\x25\x51\xe5\x8e\xc0\x9b\x75\xbe\x78\xed\xd2\x4e\x8d\xf4" + + "\xa6\xac\x8a\xba\xf4\x00\x63\xab\xa2\x1e\xdf\x0e\xea\x73\x5e\x3e\x9b\x60\x8d\x3d\x08\x6b\x91\xe2\xf8\x0f\xdb\xe3" + + "\x87\x0c\x0e\x74\x38\x5e\xa0\xba\xf9\xe2\x6d\x4f\x27\xea\x68\x8b\xae\x19\x66\xd2\x43\xf1\x7c\x22\x4d\xa8\x09\x40" + + "\xa9\x20\xc5\x89\x29\xe9\xa0\xbd\x44\x80\x61\x29\x75\xa4\x10\x68\x4e\xa1\xef\xe6\x68\xf1\x44\x62\x3f\xf5\xfc\xd3" + + "\xf4\x5c\xba\x9d\x3f\x13\x98\x7c\x7e\xb1\x7e\x5b\xc9\x95\x51\xe4\x44\xc5\xbb\x4f\x70\x77\x17\x00\x70\x4b\xab\x4a" + + "\x4a\x12\xf9\xcb\x87\x93\xd0\x51\x6b\x55\xe2\x0f\x1a\x78\xb1\x18\x93\x9d\xbc\x15\x77\x5a\x79\x4e\xe9\xcf\x4e\xac" + + "\x7d\xf1\xe5\x69\x2f\x34\xcf\xc9\xcf\x0a\xa0\xb5\xdf\xb1\xa4\xf1\xe7\x97\xc3\xcb\x2d\xcd\xe2\xc9\x34\x4b\x24\xd3" + + "\x6c\x36\x99\x66\x73\xc9\x34\x4b\x26\xd3\x6c\x3e\xc9\xe2\x49\xd3\xf9\xb2\xb9\x24\x4b\x26\xd9\xbc\xc7\x24\x7e\x8c" + + "\xa5\x83\x42\x83\xc4\x98\x12\xd5\xc4\x9b\x22\xfd\x48\xfe\x68\x01\xfe\x08\x74\xbd\x4b\xf4\xc1\x01\xfc\x48\x3a\xbf" + + "\x93\x65\x85\xa3\xf8\xa4\x6b\x4e\xe1\x4e\xea\x71\x0c\xf3\xe9\x09\x6e\x59\xaf\x6d\x50\x69\x16\x4f\xa4\x55\x81\xe2" + + "\xf9\xa4\xfe\x68\x3f\x11\xf7\x42\xc2\x29\xcc\xde\x0b\xb3\x4e\x61\xee\x5e\x98\x73\x0a\xc9\x7b\x21\xe9\x14\xe6\xef" + + "\x85\x79\xab\xf0\xde\xb8\xd3\xf6\xbd\x69\xa7\xe5\x7b\xc3\x4e\xbb\xf7\x66\x9d\x56\xef\x8d\x3a\x6d\xde\x9b\xb4\x5b" + + "\xf4\x4c\x79\x72\x7e\xe9\xd8\x9e\xad\x54\x2a\xdd\xec\x21\x8a\xd0\x3d\x1c\x93\xcf\xb7\xcf\x76\xc3\xed\xac\xc9\x9f" + + "\x37\x47\x19\x5c\x4d\xe2\xa8\x26\xbf\x24\x00\x7b\xa2\x63\x28\x28\x8b\xbb\x0a\xb3\x86\xd7\xd1\x7b\x4e\xb8\x4b\x31" + + "\xa3\x34\xab\xcb\xe3\x5e\x4a\xe4\x8c\xd2\x5c\x92\xcd\xb9\x23\x47\xd1\x28\x25\x93\x2c\xe9\x8b\x27\x37\x43\xf5\xf3" + + "\xee\x52\xdd\xab\xca\xce\xec\x25\x81\x25\x8c\xce\xa5\x79\x3d\x17\x82\x18\xb9\xab\x66\xde\xfe\x69\x0d\x26\x11\x50" + + "\xf5\x9c\x9d\xbc\xfe\x2e\x70\xa2\xe5\x7a\x0a\xf9\xa2\x7c\xfe\xf5\x61\x36\xe0\xea\x09\x2e\x9f\x6f\x37\x4b\x54\x7e" + + "\x39\x15\xc9\x9f\x37\x9a\xd3\x80\x7b\x6a\x6c\xae\x5b\xdc\xd2\x46\xc4\x11\x0e\x7a\xae\xea\xd2\x1d\xb3\x58\x56\x38" + + "\x63\x05\xc2\x02\xe4\x88\xe2\x9a\xa6\xbc\x30\x6f\x14\xcb\x62\x05\x9c\xb2\x6b\x9f\x28\x45\xe4\xc4\xad\x0d\x2b\x52" + + "\x79\x26\xbb\xf6\xc2\xbc\xb5\xf3\x79\x12\x27\x68\x0b\x83\xa1\xc4\xed\x1d\x44\x95\x72\xb9\x1c\xe1\x01\x79\xeb\x16" + + "\x73\x59\x32\x9b\xb3\x10\xd4\x03\x4d\x03\x55\x75\xb8\xa2\x0b\xf9\x2c\xe3\x85\x79\x6b\x13\x6b\x32\xe7\xb4\xcc\x89" + + "\x1b\xc9\xa9\x8a\x17\xb0\xe2\xc6\x05\xf0\xd5\xcb\x91\x44\xde\xee\x2f\x0f\x36\xd6\x7c\xd5\x0c\xac\xfa\x6f\x0b\xa4" + + "\xe8\x03\xea\x86\x19\x05\x16\x90\x06\xfa\x44\xd3\x0d\x35\x4b\x6e\x69\x23\x7b\x35\x53\x68\x3b\x70\xda\xca\x54\xba" + + "\x7b\xf7\x1c\x26\x9f\x13\x58\xc2\x15\x43\x1c\x3b\xf3\x46\x0f\x89\x4f\x1e\x78\xb7\x69\x62\x30\xbb\x94\xf8\x84\xc4" + + "\x27\x25\x3e\x71\xd0\xd1\x13\x46\xa5\xc4\xbd\x9e\x85\x8a\xdd\xd2\x3c\xa7\xea\x32\xd1\x55\x36\x69\xfe\x38\x88\x86" + + "\x6e\x31\x0e\xb3\xba\x08\x9e\x75\xad\x56\xef\x6a\xa7\x27\xd2\xae\xaa\x7f\xe3\x39\xe8\x02\xd6\x8b\x87\x06\x79\x0f" + + "\x60\xa6\x30\xf5\x12\x3f\x9d\xe7\x0d\xa7\xa8\x5a\x8a\x66\x39\xde\xcf\xc2\x8d\x09\xed\xb8\x2e\xbb\x1b\xc3\x24\x19" + + "\xed\x03\x9e\x94\xdc\x18\x2d\xb8\xd6\xe4\x18\xb8\xd5\x06\xda\x58\x19\x3e\xc5\x4a\x0a\x77\x95\x44\x8d\xe2\x13\x3a" + + "\x2d\x5e\xa2\x34\x43\x43\xec\xc0\x9d\xd7\x87\x8f\xe6\x01\xa5\x98\xc5\x7e\x65\x09\x44\x6d\x03\xc1\x29\x04\x3c\xcf" + + "\xc9\x2a\xa7\xbe\xb8\x17\x93\x44\xc9\x58\x4a\xf2\x37\xef\xe5\x1b\x2f\x1a\x0e\xcb\x8f\x63\x25\xfa\xc1\x72\x2b\xf3" + + "\xbf\x4f\x41\x7f\xbc\x78\xe6\x7c\x28\x52\x1f\x66\xe7\xd6\x92\xc6\xde\xcc\x29\x2d\x43\x69\x54\x4a\x52\xb8\x2d\x27" + + "\x52\x7c\xca\x9c\xe0\x26\x5d\x93\x5d\x7b\x55\x85\x05\xbc\x0c\xd1\x6c\x46\xd2\x34\x60\xce\x49\x6f\x69\x4e\xe4\x34" + + "\x8e\xe2\x39\x55\x70\xf9\xbd\x12\xf6\xf3\xc5\xb7\x80\x74\x90\x65\xa0\xd0\x94\x0a\x5c\x73\x5d\x27\x29\xd5\xf5\x3f" + + "\xe1\x0a\x91\x86\x3f\x77\xdb\x95\xad\x8b\x6e\xab\xba\xd3\x49\xb8\x17\xe1\xf0\x42\x9a\xf4\x39\xf8\x6c\xc0\xc1\x13" + + "\xa4\xa7\xfa\x33\x4f\x39\xfa\xeb\x37\x37\x17\x9e\xe5\xe5\x5d\x25\xa6\xc3\xf7\xa6\xec\xe1\x53\x1f\x5d\x68\x01\x92" + + "\xd6\xd8\x06\x28\xfb\xc7\xfc\xbf\xfe\x9b\xc0\xf0\x5c\xe2\xbf\x31\xac\x8c\xfd\x97\x8b\x4c\x5a\x3e\xf0\xbc\xe5\xec" + + "\xbc\xd6\x8a\xbb\x0d\xd8\xf2\x0a\x76\x9e\x6c\x9b\xb3\x4b\xa8\x1e\x79\x63\xf0\x16\x82\x62\x70\x03\x65\x44\xb9\x29" + + "\xa9\x80\x27\x0e\x6b\x21\x28\x95\x00\xc1\x80\x80\x10\x52\xb1\x29\x9a\xb6\x15\x46\xd0\xbb\x34\xf3\x5f\x86\xa8\x13" + + "\x86\xd8\xdd\xa4\x03\x84\x02\xd6\xf9\xe3\x46\x31\x8c\xa2\x07\x43\x64\x32\xe2\x4a\x07\x10\x4a\x73\x4b\xeb\xf4\x28" + + "\x4e\x04\xce\x44\x46\x71\xe6\x3e\x2f\x6e\x67\x62\x14\x78\xc6\x39\x1b\x74\xdd\x59\xc3\x77\x3b\x24\x6d\x4f\x73\x2f" + + "\x88\x76\x31\xbe\xca\x6e\xdf\x82\xf6\xc2\xf7\x4e\x58\xe5\x25\xdd\xf3\x41\x2a\x94\x4a\x04\xb4\x02\x8e\xe1\x88\x1a" + + "\x38\x81\x61\xf0\x2a\x84\x59\x25\xad\x48\x27\x8f\xdb\x4d\x19\x82\xf1\x48\x33\x65\x0a\x46\x91\x4e\xb6\x48\xf4\xc7" + + "\x68\x61\x38\x15\xdc\x62\x48\xd3\x12\x9f\xe2\xb7\x29\x3c\xe9\x3c\x61\xf7\x47\x57\x29\xe1\x3c\xde\x9f\xb2\xce\x53" + + "\xce\x79\x22\x9d\xa7\xbc\xf3\x54\x70\x9e\x8a\xce\x53\xc9\x7c\x12\x18\xbb\x69\xfd\x09\xbb\x3f\xba\x4a\x09\xe7\xf1" + + "\xfe\x94\x75\x9e\x72\xce\x13\xe9\x3c\xe5\x9d\xa7\x82\xf3\x54\x74\x9e\xac\xa6\x55\xc1\x6e\x5a\x7f\xc2\xee\x8f\xae" + + "\x52\xc2\x79\xbc\x3f\x65\x9d\xa7\x9c\xf3\x44\x3a\x4f\x79\xe7\xa9\xe0\x3c\x15\x9d\x27\xab\xe9\xb3\x6a\x37\xad\x3f" + + "\x61\xf7\x47\x57\x29\xe1\x3c\xde\x9f\xb2\xce\x53\xce\x79\x22\x9d\xa7\xbc\xf3\x54\x70\x9e\x8a\xce\x53\xe9\x23\xf8" + + "\x7a\x47\xd7\x4c\xd7\x3a\x40\x5c\x8b\xfc\x57\x75\xe0\x9e\x0e\xdd\xb9\x20\x3e\xee\x6b\x2d\xf7\x52\xdc\x2a\x2d\xe1" + + "\xe9\xbc\xf9\xbf\x82\x0b\x8a\x59\xd0\x62\x36\x9d\xb5\xfe\x77\x87\x96\x6c\xb3\x27\xef\x65\x45\xab\x2c\x9f\x87\x90" + + "\x2b\x58\x40\xb2\x08\xa1\x96\xb7\x81\x2e\xee\x48\xab\x2c\x07\x63\x2e\x67\x01\xb3\x30\xde\xb2\x16\x90\x70\xf1\xe6" + + "\x08\x00\xc6\x9b\x2d\x07\x18\x6b\x46\x30\xc1\x89\x0f\xc5\x5e\x41\xf1\x83\x70\x0b\x04\x15\xa2\x89\x82\x59\x28\x50" + + "\x49\x1a\x28\x25\x0b\xc3\x2d\x4e\x03\x50\xb4\x00\x50\x99\x1a\x18\x05\x0b\x03\x2a\x58\x03\x23\x6f\x63\xf8\x79\x27" + + "\x2d\x00\x54\xc4\x06\x46\xce\xc2\x80\xca\xd9\xc0\xc8\x5a\x18\x84\x9f\x73\x47\x64\x48\xce\x6d\xc9\x21\x19\xb7\xe5" + + "\x86\xb9\x8a\x55\x56\x1f\x0d\x33\xd9\xf6\x0e\x86\x0e\xc1\x4d\x08\x62\x2c\x74\x0c\xcc\xc4\x40\x0c\x85\xca\xa6\x4a" + + "\x26\x82\x77\x24\x54\x36\x55\x34\xcb\x11\x03\xa1\xb2\xa9\x82\x89\x80\x18\x07\x95\x4d\xe5\x2d\x04\x3f\xd7\xa4\x59" + + "\x8e\x18\x05\x95\x4d\xe5\x4c\x04\xc4\x20\xa8\x6c\x2a\x6b\x22\x10\x7e\x9e\x6d\x41\x21\x79\xb6\xe4\x85\x64\xd9\x92" + + "\xd6\x7d\x00\xcc\xf5\x6f\x7d\x08\x3c\xd3\x1e\xf7\x48\xd8\x28\xb8\x07\x05\x3a\x24\x36\x2a\xe6\x41\x85\x8e\x8d\x85" + + "\x5a\xf2\x60\xba\x07\xc9\x42\x28\x7a\x10\xa0\xa3\x65\x61\x16\x3c\x98\xd0\x61\xb3\x30\xf3\x5e\xcc\x60\x5f\x49\x0f" + + "\x02\x74\x20\x2d\xcc\x9c\x07\x13\x3a\xa2\x16\x66\xd6\x83\x49\x04\x7b\xea\x1b\x82\x90\x9e\x7a\x47\x22\xa4\xa3\x58" + + "\xec\x49\xf8\xbf\x2c\x35\x08\x84\x37\xa3\x95\x40\x78\x33\xd8\x40\x86\x37\x83\x5f\x64\x78\x33\x9a\xf1\x85\x37\x9d" + + "\x09\x64\x78\xd3\x79\x45\x86\x37\xbd\x4b\xfe\xf0\xa6\x77\x18\x19\xde\x74\xb9\x20\xc3\x9b\x2e\x3e\x7f\x78\xd3\x85" + + "\x8b\x0c\x6f\x7a\x57\x51\xe1\x4d\x15\x90\xe1\xcd\x01\xa1\xc3\x9b\x83\x82\x0e\x6f\x36\x4a\x20\xbc\xd9\x00\x74\x78" + + "\xb3\x31\xd0\xe1\xcd\xc6\x08\x84\x37\x1b\x80\x0e\x6f\x36\x06\x3a\xbc\xd9\x18\x81\xf0\x66\x03\xd0\xe1\xcd\x91\x0b" + + "\x2a\xbc\xd9\x08\xbe\xf0\x66\x14\x43\xc3\x9b\x03\x41\x86\x37\x07\x03\x19\xde\x6c\x0c\x7f\x78\xb3\xcb\x91\xe1\xcd" + + "\x46\x40\x86\x37\x1b\xc1\x1f\xde\xec\x72\x64\x78\xb3\x11\x90\xe1\xcd\x46\xf0\x87\x37\xbb\x1c\x19\xde\x1c\x71\x20" + + "\xc2\x9b\x0d\xf7\x86\x37\x55\x88\x0c\x6f\x2e\x94\xa8\xf0\xe6\x42\x8d\x0a\x6f\x77\x54\x44\x78\xbb\x23\x44\x85\xb7" + + "\x3b\x66\x54\x78\xbb\x63\x22\xc2\xdb\x1d\x21\x2a\xbc\xdd\x31\xa3\xc2\xdb\x1d\x13\x11\xde\xee\x08\x51\xe1\xcd\x25" + + "\xdf\xf0\xf0\x76\x47\xf4\x87\xb7\xd0\xd5\x8a\x7f\xd1\xac\x3b\x10\xdf\x8c\x56\x02\xf1\xcd\x60\x03\x19\xdf\x0c\x7e" + + "\x91\xf1\xcd\x68\xc6\x17\xdf\x74\x26\x90\xf1\x4d\xe7\x15\x19\xdf\xf4\x2e\xf9\xe3\x9b\xde\x61\x64\x7c\xd3\xe5\x82" + + "\x8c\x6f\xba\xf8\xfc\xf1\x4d\x17\x2e\x32\xbe\xe9\x5d\x45\xc5\x37\x81\x41\xc6\x37\x07\x84\x8e\x6f\x0e\x0a\x3a\xbe" + + "\xd9\x28\x81\xf8\x66\x03\xd0\xf1\xcd\xc6\x40\xc7\x37\x1b\x23\x10\xdf\x6c\x00\x3a\xbe\xd9\x18\xe8\xf8\x66\x63\x04" + + "\xe2\x9b\x0d\x40\xc7\x37\x47\x2e\xa8\xf8\x66\x23\xf8\xe2\x9b\x51\x0c\x8d\x6f\x0e\x04\x19\xdf\x1c\x0c\x64\x7c\xb3" + + "\x31\xfc\xf1\xcd\x2e\x47\xc6\x37\x1b\x01\x19\xdf\x6c\x04\x7f\x7c\xb3\xcb\x91\xf1\xcd\x46\x40\xc6\x37\x1b\xc1\x1f" + + "\xdf\xec\x72\x64\x7c\x73\xc4\x81\x88\x6f\x36\xdc\x1b\xdf\x04\x26\x32\xbe\xb9\x50\xa2\xe2\x9b\x0b\x35\x2a\xbe\xdd" + + "\x51\x11\xf1\xed\x8e\x10\x15\xdf\xee\x98\x51\xf1\xed\x8e\x89\x88\x6f\x77\x84\xa8\xf8\x76\xc7\x8c\x8a\x6f\x77\x4c" + + "\x44\x7c\xbb\x23\x44\xc5\x37\x97\x7c\xc3\xe3\xdb\x1d\x31\x46\x7c\x73\xad\xad\xff\x8b\x56\xb4\x03\x01\xce\x68\x25" + + "\x10\xe0\x0c\x36\x90\x01\xce\xe0\x17\x19\xe0\x8c\x66\x7c\x01\x4e\x67\x02\x19\xe0\x74\x5e\x91\x01\x4e\xef\x92\x3f" + + "\xc0\xe9\x1d\x46\x06\x38\x5d\x2e\xc8\x00\xa7\x8b\xcf\x1f\xe0\x74\xe1\x22\x03\x9c\xde\x55\x54\x80\xe3\xb7\xc8\x00" + + "\xe7\x80\xd0\x01\xce\x41\x41\x07\x38\x1b\x25\x10\xe0\x6c\x00\x3a\xc0\xd9\x18\xe8\x00\x67\x63\x04\x02\x9c\x0d\x40" + + "\x07\x38\x1b\x03\x1d\xe0\x6c\x8c\x40\x80\xb3\x01\xe8\x00\xe7\xc8\x05\x15\xe0\x6c\x04\x5f\x80\x33\x8a\xa1\x01\xce" + + "\x81\x20\x03\x9c\x83\x81\x0c\x70\x36\x86\x3f\xc0\xd9\xe5\xc8\x00\x67\x23\x20\x03\x9c\x8d\xe0\x0f\x70\x76\x39\x32" + + "\xc0\xd9\x08\xc8\x00\x67\x23\xf8\x03\x9c\x5d\x8e\x0c\x70\x8e\x38\x10\x01\xce\x86\x7b\x03\x1c\xbf\x8d\x0c\x70\x2e" + + "\x94\xa8\x00\xe7\x42\x8d\x0a\x70\x77\x54\x44\x80\xbb\x23\x44\x05\xb8\x3b\x66\x54\x80\xbb\x63\x22\x02\xdc\x1d\x21" + + "\x2a\xc0\xdd\x31\xa3\x02\xdc\x1d\x13\x11\xe0\xee\x08\x51\x01\xce\x25\xdf\xf0\x00\x77\x47\x0c\x04\x38\x73\xcf\xbe" + + "\x6f\x2f\x71\x60\xcf\xb3\x7b\x63\xbb\xc6\x42\xb6\x95\x19\x54\x5c\x14\x20\x1b\x9a\x4c\xa4\xbf\x69\x6b\x89\xb9\xfc" + + "\x4d\x53\xfe\xe6\x6c\xfa\x77\x15\xb1\x4e\xd1\x46\x92\x34\x1f\x96\x53\x74\xc7\x62\x01\xc5\xf8\xb0\x9c\x22\xd6\xd9" + + "\x48\x53\x44\xef\xee\x0e\x9e\xe8\x41\xec\x77\x66\x18\xe6\x06\x69\xc2\x7f\x70\xcd\xe8\xaf\x6f\x77\x10\x01\xa5\x62" + + "\x1d\xc2\x7c\xb2\xa9\xb9\xb7\x8b\xb9\xfa\x13\x8e\xe6\x48\x82\x96\x78\xe3\x54\x4b\x24\xb9\x70\x3c\xaf\x64\xbd\x30" + + "\x14\xc9\x68\x54\xd6\x75\xae\xe4\x19\xf3\x28\xc2\x93\xf1\xb7\x1b\x0e\x95\x56\xc2\x3e\x5b\x02\x3d\x1b\x61\x9d\x1d" + + "\xa1\x25\x91\x01\xa2\x0a\x18\x88\x8e\x41\x81\x2c\x04\x18\xd0\x3b\x28\x10\x56\x33\xa0\x8b\x50\xe0\x5d\x2b\x49\xc7" + + "\x26\x9c\x53\x2f\xfe\x53\x30\xb0\x8e\x40\x60\x6c\x10\x16\xec\x06\x04\x06\xa9\x17\xec\x04\x04\x86\x38\x9a\xe3\xef" + + "\xcd\x83\xd4\x2c\x73\xb1\xfc\x10\x71\x97\x8e\xaa\x29\x9c\xec\xea\xf0\xb3\xa8\xb1\xa6\x6a\xfd\x2e\x31\xcc\x2f\x17" + + "\xf5\x48\x4c\xe8\x09\xa9\x92\xfe\xc7\x6e\xcc\xd8\x50\x7b\x27\x60\xfd\x74\x5a\x80\x83\xa1\x64\x49\xfd\x8f\xe9\x5f" + + "\x13\xb4\xc4\xff\x83\xe6\x29\x55\xfd\xcb\x5f\x75\x7f\xfc\xc7\x7d\x8f\x84\xaa\x51\x1a\x47\xbf\x98\x29\xbd\x71\x0e" + + "\xda\x7b\x64\x8d\x96\xf8\x83\x20\xde\xec\xb3\x5e\x1e\x2a\x49\xfb\xdc\x97\x97\x36\x9a\x16\xe0\x79\xaf\x1b\x4e\x9b" + + "\xa7\x9c\x03\xbe\xd8\x29\x67\x03\x3e\xda\x02\x79\xbd\x32\x84\x8e\xb7\x3c\xe8\xd8\xfd\x74\x0c\x7d\x80\xd0\xf1\x96" + + "\x07\x5d\xbf\x05\x42\x8f\x00\x64\xe4\xac\x3a\xa1\xa3\xeb\xc3\x61\xe1\x1a\xe0\x45\x83\x30\x01\x8a\xfa\x1f\x9f\xd4" + + "\xad\x5d\xdf\x41\xb1\x3b\x00\x88\xdc\x2d\x98\x4f\xc0\x10\x52\x3e\x00\x44\xf4\x7e\x52\xa6\x8c\x21\xa4\x7c\x00\x88" + + "\xf4\xed\xcd\xed\xc1\x9e\x33\x9b\x0d\xc6\x14\xa1\xe2\xf7\xec\x7a\x47\xc9\xdf\x87\x84\x1c\x00\xef\x16\x7a\x08\x1f" + + "\x18\x28\xd1\x79\xdf\x08\x98\x9b\xf6\x83\x03\x60\x97\x43\xe4\x6f\x82\x7c\x52\x0e\xd2\xf1\x96\x43\x84\xef\xa3\x63" + + "\x8a\x38\x48\xc7\x5b\x0e\x91\xbc\x75\x24\x01\xa2\xf7\x04\x03\x18\x00\x15\xbc\xfb\xac\x02\x4a\xee\x5e\x1c\xa4\xd8" + + "\x3d\xc7\x1e\x20\x7a\xbf\xa6\x69\x9a\xf6\x49\xdd\x3a\x67\x11\x14\xbb\x03\x80\xc8\xdd\x82\xf9\x04\x0c\x21\xe5\x03" + + "\x40\x44\xef\x27\x65\xca\x18\x42\xca\x07\x80\x48\xdf\x3e\x4e\x02\x11\x3f\xbd\x29\x82\x2c\x54\xfc\x9e\x73\x26\x28" + + "\xf9\xfb\x90\x90\x03\xe0\x3d\xb4\x02\xe1\x83\xda\x10\x34\x7d\x5f\xc1\x72\x52\xfc\x42\xbe\x60\x2c\x60\x99\x64\x5d" + + "\x87\x2c\x91\xf9\xbb\xb1\x5f\xda\xde\xdc\x9f\xba\xd8\x7b\xfe\x9d\x92\xf3\xb3\x4a\x2b\x12\xcf\x1b\xf7\x6f\x38\xa5" + + "\xe6\x56\x5e\xbd\x88\x3a\x68\x12\xcb\x19\x3b\xfc\x4c\xc4\x35\xa5\x20\x8e\x50\xda\x07\x26\xef\x54\x8c\x0a\x7a\x47" + + "\x35\xe9\x40\xb3\xb7\x00\xdb\x7f\x4b\xdb\x73\x18\xdf\x89\x10\x04\x22\x2c\xa9\x0a\x43\x62\x43\x90\x82\x69\x56\x18" + + "\x52\x18\xa5\x60\xaa\x14\x86\xc4\x7e\xc0\x0e\x56\x20\xea\x39\x49\xd7\xfd\xaa\x8c\x48\x54\xb7\x90\xdc\xc9\x3c\x92" + + "\x39\x68\x5e\xfa\x68\xcd\xbb\x38\x3f\x5d\xf3\xe1\x36\xef\x82\xff\x74\x4d\x4f\x9b\x1f\xde\xc3\x02\x8f\x49\xfa\x7e" + + "\xe2\xe2\x41\x41\x3f\x56\xd1\x25\xe7\x4f\x56\x7c\xb4\x45\x97\x94\x3f\x59\xd1\xdd\xe2\x87\xe7\xb0\xc6\x23\x42\x76" + + "\x11\x09\x33\xb5\x88\x8a\x68\x43\x0e\xca\xea\xf1\x16\x61\x15\x7d\x93\xa4\x67\xec\x76\x33\x2e\x59\x51\x81\x73\xb6" + + "\xc5\x39\x46\xe6\x1c\x66\x79\xc6\x6e\x3c\xd8\x02\x91\xf1\x9d\xc5\x71\xf9\x79\x7f\x5d\xc4\xe9\x50\x02\xf7\x2d\xa1" + + "\xd8\x77\x0a\xd8\x07\x13\xb3\xd9\xc0\x81\x71\xc8\xa9\x3f\x52\xff\x73\x33\xef\x90\x40\x9c\x69\x77\x33\xe1\x3f\xb1" + + "\x54\xc0\x42\x2f\xa1\xf9\xa6\x5b\x1f\x62\xde\x96\x63\x1f\x77\x34\x4e\x3b\x7a\x4f\x52\x59\x87\x59\x5d\x75\x36\x1c" + + "\x0f\xfe\xf0\x5d\x9d\x65\x5e\xe2\xf0\x0f\xe1\xc0\x6b\x9c\xcc\x83\x3f\xac\x5b\x1d\xfe\xa1\x0b\xfc\x8f\x0f\xf7\x71" + + "\x7e\x13\x90\x90\x64\xcd\x58\xbb\xf9\x08\x5e\xed\xe0\xbe\x64\xca\x5d\xe4\xbd\x13\x02\xda\x35\xeb\x02\x08\x3f\xb3" + + "\xc1\x62\xb3\xdf\xbe\x7b\x1f\xac\x53\x6f\x1a\xcb\x89\x2f\x5f\xbc\x0b\xe2\xde\x92\x78\x10\xd6\x40\x71\x5d\xfe\x63" + + "\xdc\xd3\x93\x52\x65\x5d\x35\x02\x57\x05\x05\xb0\xa5\x83\xe6\xc5\xf6\x08\x53\x3a\x68\xf2\x41\xf3\x59\x84\x7d\xfe" + + "\x40\x93\xe4\xe7\x82\xf7\x5c\x74\xf4\xbd\x1d\x24\x49\xfa\xd7\x11\xed\x5b\x2c\x36\x92\x22\xa4\xac\x0b\xcf\xd0\x46" + + "\x68\x51\xce\xe6\x5c\xf7\x22\xe4\xe5\x73\x02\x27\xbe\x8d\x15\xd4\x35\x16\xf7\x52\x4e\xa0\xb6\xe6\x81\x58\x48\x66" + + "\x46\xd3\x74\xc8\xe5\x16\xae\xbb\x87\x38\x51\x05\x5a\x02\x4b\xe8\x75\xf5\xff\x94\xed\x9a\xb2\xee\x71\x48\x63\x05" + + "\xf2\xd7\xcb\x23\xb8\x90\xcb\x33\xee\x97\xcb\x48\x8a\xfb\x8a\x8c\x44\x1a\x27\xd5\xe4\x9d\x78\x00\xf6\xf2\x1d\x44" + + "\xbc\x03\x6a\x99\x82\x9b\xda\xf3\x6f\xf9\x3c\xb5\x01\x25\xc7\x16\xb0\xcf\x08\x29\x89\x25\xb0\x44\xd1\x06\xe0\x18" + + "\x91\xc4\x0b\x64\x92\xc8\x66\x93\xe9\xfc\x43\x12\x0c\x25\xe4\xeb\x8c\xe1\x27\x65\x9e\xa2\x01\x2b\xf1\xcc\xfd\x50" + + "\xb9\x71\x9e\xd5\x83\x19\x86\xfa\x22\xc9\x14\xcd\x69\x97\x67\x3c\x40\x5e\x4d\x19\x46\x1b\xb7\x0d\xc7\xf4\xe3\xd6" + + "\x71\x5d\x8a\xe6\x2d\x57\x00\xc5\x48\x22\x7f\xf9\x23\x69\x87\xcc\x3b\x6a\xc2\x6b\xa2\xd6\x11\x5f\x51\xd2\x52\x14" + + "\xcf\x4b\x27\xc0\x40\x0c\x07\x00\xe0\x5c\x10\xe6\xad\xee\xb9\x83\xc5\x80\x98\x0e\x3b\x38\x9b\xba\xa5\x6d\x07\x9c" + + "\x4c\x1b\x8e\xd5\x7f\xc3\xcd\xfd\xc4\x94\xfb\x92\x8c\x90\x1b\x2c\xbc\xa7\xaa\x8c\x4a\x08\xa7\x64\xb7\x9c\x30\x02" + + "\xb1\xd5\x7e\x02\x16\x95\x7d\xcd\x60\x2f\xfe\xdb\x3e\x7c\xb7\xd3\xdd\x49\x43\x83\xa8\x03\xb6\x0e\xc9\x23\xb0\x4c" + + "\x7e\x02\x91\xc7\x02\x40\xea\x5a\x11\xd9\x75\x8a\xdd\x73\xb4\xd1\x7c\xfb\x64\x37\xf0\xe4\x97\xfc\x93\x35\x00\x2e" + + "\x11\xa7\x3c\x23\xe4\xdc\x2a\xe0\x6e\x3f\xc6\x2d\x01\x90\xdb\x4d\x30\x84\x77\x8e\x2b\x57\xab\xf1\xa7\x70\xde\x9e" + + "\xbc\x9c\xc2\x6e\x1a\xb0\x5e\xea\x42\xba\xe9\x36\x23\x1b\xe4\x2e\x73\x93\x0e\x94\xbb\x0a\x60\xb6\xe6\x48\x3e\x0c" + + "\x68\x77\x09\x86\x63\x34\x82\x86\x84\x54\x85\xaa\x5a\x38\x9e\xa5\x76\xb0\x9a\xae\x7e\x06\x2a\x04\xef\x61\x74\xb9" + + "\x93\x5b\xda\x74\x68\xaa\x60\x3b\x8b\xac\xcb\x76\x8d\x73\xe7\xb8\xef\x62\x16\x22\x10\xf5\x49\x5f\x2c\xce\xca\x67" + + "\x2b\x47\x84\x53\x77\xd7\x36\x6e\x9e\x71\xbc\x97\x1f\xdd\xba\x3d\xca\x28\xe5\xb7\x76\x69\x2e\xef\x62\xd1\xb8\x95" + + "\xe0\x7e\x5b\x8c\x73\x45\x8d\x8f\x47\x67\x42\xe0\xbe\x7d\xcb\xc3\xa4\x8f\xbe\xbb\xba\x5e\xe0\x67\xf2\x8e\x6e\x32" + + "\xc9\x52\xaa\x7d\x6f\x8b\x4b\xb1\xe0\xc5\x8e\x95\x78\xa1\xa6\xd7\x4e\x59\x6e\xd0\x03\x63\x01\x2f\x9b\x36\xed\x03" + + "\x98\x1a\x08\x29\xb3\xad\xcd\x77\xbf\x8c\x07\xd1\x13\x2c\xbc\x79\x83\x89\xff\x67\xa7\x54\x21\xfc\x20\xb2\x19\x12" + + "\x27\xe8\x4f\xe7\x30\x7a\x12\xfb\x1b\x8d\x51\x78\x7e\xfd\x70\xda\xe2\xaa\xeb\xe3\xda\xd4\x07\x23\xb2\xa6\x28\x86" + + "\x91\x44\xaf\xcc\x5f\xa0\x82\x45\xaf\xd3\xea\xb4\x81\xa2\x48\x8a\x5f\x8d\x7c\x85\x1e\x25\xb2\x61\x41\x15\xb2\x20" + + "\x7e\x05\xb2\x8a\x5d\xea\xe3\x2e\xf1\x29\x8f\x7d\xbf\x90\x0b\x2d\x44\x75\x4c\xec\x7f\x8e\xea\x40\xb8\x81\x2a\x8e" + + "\x79\x01\xd2\x17\x15\x07\x14\x73\xc5\xec\x27\x15\xc7\xa8\xeb\xe1\x19\xa9\x36\x96\xfc\xa0\x42\x45\xbf\x5d\xd1\x29" + + "\x5b\xaf\x9e\xfc\x8a\x13\x28\xf6\xa8\xce\x1d\x1a\x54\x1e\x07\xe6\x57\x1f\x07\xe0\x52\x20\x6f\x99\x4f\x85\xec\x5b" + + "\xa6\x3c\x88\x21\x4a\x64\xe2\xff\x73\x94\x08\xca\x0f\x54\x8d\xcc\x9b\xb0\xbe\xa6\x46\xf9\xc2\x1a\xcf\x17\x3f\xa7" + + "\x46\x66\x5d\x1f\xd7\x48\x45\xb2\x64\x08\x15\x2c\xfa\xfd\xa8\x5b\x08\x29\x73\x3b\x40\xf0\x5d\xc6\x5d\x1f\x02\x57" + + "\x61\x3a\xc9\x1d\x09\x9f\x17\x58\xcd\x15\xd6\xfa\x9f\x90\x03\xa9\x06\x1f\x56\x72\xed\x9e\xbc\xc4\x58\xa8\x43\xa4" + + "\xb5\x37\x08\x4d\xff\x62\x88\xe7\x96\x78\x0f\xbe\x95\x2c\x78\x6a\x99\x1c\xbb\xe6\x57\x36\xed\xbb\x01\x7a\x8a\xbd" + + "\x53\x2b\x58\x0f\x60\xf7\x6f\x61\xbe\xbb\x81\x10\x6d\x21\xa6\x2f\x41\x06\x90\x73\x15\x63\xb5\xc5\xb7\x21\xcf\xac" + + "\xef\xba\xb1\xca\xdf\x37\x18\xc8\x71\x30\x41\x0c\xaf\x93\x09\xc0\x2d\x7f\x02\x2f\x0f\x9b\x41\x04\x64\x65\xad\x9d" + + "\x3d\xd6\x01\x6b\xea\xe5\x9a\xed\xc2\x49\x04\x27\xd3\x11\xd7\xd6\x84\x50\xb0\xaf\xb3\x09\x43\x89\xbe\xe6\x26\xb2" + + "\x01\xcf\xf5\x37\x70\x6c\x9f\xd5\xfb\x25\x19\x61\xab\xc8\x61\x0e\x5e\x28\x75\x4b\x6f\x28\x06\x7c\xd8\x8b\x33\x18" + + "\x6c\x69\xcd\x02\x1a\x0b\x5d\x09\x7d\xd8\x29\xe5\x25\x1c\x6c\x52\x4d\x73\xe2\x87\x6b\xd5\xc7\xbe\xee\xd9\x77\x59" + + "\xb5\x5d\xac\x63\x7b\xd7\xc1\x6d\x10\x27\x6e\x21\x57\xc7\x38\x1f\x0d\xf0\x5f\x38\x07\xe9\x81\x89\x9b\x48\x67\x49" + + "\xf3\xfa\xdc\x97\x10\xd8\xed\xef\x36\x81\x3d\xb8\x6c\x14\x4a\x00\x6a\x42\x56\xa4\xad\x02\x54\x35\xb5\xa6\x14\x6b" + + "\x2f\x99\xfa\xb1\x51\x24\xc1\xfd\x76\xdd\x61\xd1\xbc\xe8\xf0\xa6\x49\x50\x28\x96\xc0\x6e\xb7\xbf\xff\x89\xb4\xd3" + + "\x36\x45\xff\x87\x0e\x5e\x20\xeb\x46\x9e\x8b\x7d\x03\x91\xa8\x48\xae\xc9\xf5\xfa\xf1\x05\x5e\xc2\x17\x3b\x71\x64" + + "\x2e\x10\xc4\xbc\xf3\xaf\x4b\x24\x78\x03\x21\xe6\x5c\x1c\x8c\x61\x3f\xc3\xa6\xc3\x84\x2b\xc6\x6d\x36\x9b\x97\xc0" + + "\xc5\x95\x90\x0e\x9b\x57\x87\x86\x75\x2f\x85\x1b\xef\x75\x3c\x3c\xc3\x53\x1d\x04\x26\x44\x3d\x8d\x8e\x25\xd2\xf9" + + "\xa0\x72\x7a\x21\x2e\xd1\x58\x1b\x1a\x13\x5e\x61\x05\x56\xed\xed\xc6\x4c\xb3\x4c\x6d\xf5\x21\x04\xa2\xf6\x7b\x8e" + + "\x64\xc0\x36\x69\xb0\x46\x90\x64\xd2\xfe\x4f\x67\x30\x41\x90\x3f\x93\xae\x6d\xdd\x81\xdf\x24\xf6\x13\x51\x13\x0d" + + "\x29\xf8\x68\xf8\x7e\xff\x0a\xbe\x6f\xf8\x77\xe2\xd8\xd0\x3f\xc3\x32\x73\xc6\xc2\x99\x3d\x26\xd6\x16\x40\xdf\x20" + + "\x39\x9f\xa7\x10\x39\xc1\xbc\x3d\x1d\xe6\x02\x12\x84\xed\x4c\x13\x9c\xb8\xe1\x44\x4e\x03\x2f\x0f\xd7\xf0\xda\x52" + + "\x0a\xbd\x25\x8f\xa4\xd7\x45\x92\x8e\xd2\x2f\x18\x81\xff\xe8\xd9\x9f\xcb\xb1\x6f\x08\x8d\x4b\x7f\x21\xe3\xb7\xa6" + + "\x31\x26\xd2\x3f\x04\x6a\xff\x67\xf0\xfe\xa9\x83\x17\xb2\x35\x10\xa3\x98\x5c\xf4\xf8\x41\x08\xfc\x67\x08\xff\xa9" + + "\x43\x88\xdc\x5b\xcb\x94\xc8\x6c\x6e\x13\x39\x82\xc1\xfa\xff\x19\xc0\x3f\x7b\x00\x8d\xe9\xd6\x86\x3b\x3b\x17\xb8" + + "\xda\xbf\x63\xdc\xdf\xea\xa9\xea\xbd\xb7\xd4\xc8\x21\xc3\x96\x5e\xee\x37\xcd\x06\x2e\xa3\xbd\xb9\xaf\x20\x36\x53" + + "\x5c\xe3\xd9\xfd\x29\x1c\x03\x43\xa7\xe1\xca\x81\xdd\x70\x96\x63\xbc\x73\x29\x37\x50\x65\xa5\x93\x97\x2b\x37\x94" + + "\x13\x8f\x9c\xca\xad\x79\xf0\x61\xfc\xcb\xf1\xfa\x14\xcd\xfa\x1a\x9a\x79\xd9\xbb\x41\x5c\x4f\xae\x9f\xb1\x0c\x96" + + "\xa0\x5e\x02\xa7\xfd\x5e\xfc\x1f\xa8\x0a\x3d\x1b\xe8\xfe\x50\x87\xd1\x0c\x82\xf1\x97\x00\x3f\x6e\xb6\xa9\xcd\x86" + + "\x3b\xdf\xa7\x82\x1b\xee\x0c\x98\xdb\xdf\x53\x82\x9a\x3a\x72\xe0\xa4\xa3\x59\xeb\x40\x0c\x38\x72\x34\x30\xa7\xc6" + + "\xb7\xb4\xd5\xd7\x14\xbf\x4d\x3a\xcf\x02\x73\x7f\x56\x85\xfb\xf3\x59\x4d\x6a\x8c\xbb\x86\xeb\x97\xc0\xb8\x7f\xa9" + + "\x82\xfb\x97\x5e\x8f\xf5\xd4\x63\x3d\xf5\x58\x4f\x3d\xd6\x53\x4f\xf1\xd4\x53\x3c\xf5\x14\x4f\x3d\xc5\x55\x0f\x35" + + "\xf4\xe8\x6d\xdd\x90\xba\x7e\xcd\x30\xd4\x1e\x86\x68\xda\x03\x9c\x01\x6b\xe3\xa2\x74\x72\x13\x42\x89\x26\x50\x8f" + + "\x06\x3c\xef\xfe\x76\x13\x6a\x6d\x23\x41\x89\x8c\xbb\x57\xa5\x12\xee\xeb\x95\x4b\x54\xb1\x3b\x08\xab\x03\xe9\x2b" + + "\x12\x2d\xac\xdb\xc8\x21\x47\x53\x8b\x16\x86\x79\x8b\x92\x5f\x18\x38\x5e\x2a\xa1\xa4\x21\x30\x8f\x4b\x43\x60\x62" + + "\x49\xc3\x8f\x16\x4b\x1a\x5e\x73\x08\xa3\x16\x2d\x0d\xe7\xce\x0d\x08\x39\x7e\xfb\x78\xbf\x5d\x75\xc2\xfa\xed\x47" + + "\x8b\xd5\x6f\xaf\x53\x08\xa3\x86\xec\x37\xd2\xa4\x55\xe1\x71\xeb\x86\xd7\x09\x74\x3b\x04\x0d\xdd\x6d\x4f\x25\xaf" + + "\xf7\xfb\xf3\x3d\x41\x6c\xf3\x0f\xb3\xf9\xf8\x86\xee\xb5\xee\x3f\xcf\xa4\x5d\xa2\x8b\x6d\xd2\xf0\x3a\x61\x63\x1c" + + "\xdf\xa4\x3d\x95\x10\x63\xfc\x1d\x26\xed\x22\x17\xdb\xa4\xe1\x75\xc2\xfa\x1d\xdf\xa4\x3d\x95\x10\xfd\xfe\x06\x93" + + "\x16\x98\xc7\x4d\x1a\x5e\x27\xd0\xed\x10\x34\x74\xb7\x05\x54\x44\x0f\xa3\xf6\x5d\x26\x2d\x30\x8f\x5b\x37\xbc\x4e" + + "\x98\x30\xe2\xdb\xbc\x80\x32\xff\x30\x6a\xdf\xe6\x09\x62\x9b\x7f\x98\xcd\xc7\x37\x74\xaf\x75\x7f\x87\x49\x0b\xcc" + + "\xe3\x26\x0d\xaf\x13\x36\x9c\xf1\x4d\x5a\x60\x90\xa9\xfb\x77\x9a\x34\xbf\x7d\xdc\xa4\xe1\x75\x02\xdd\x0e\x41\x43" + + "\x77\xdb\x53\xc9\x3b\x7f\xf9\xf3\x4d\xda\xd5\x46\x6c\x93\x86\xd7\x09\x13\x46\x7c\x93\xf6\x54\x42\x08\xe3\xcf\x33" + + "\x69\x57\x23\xb1\xad\x1b\x5e\x27\x4c\x1a\xf1\x6d\xde\x53\x09\x21\x8d\xef\xf0\x04\xb1\xcd\x3f\xcc\xe6\xe3\x1b\xba" + + "\xd7\xba\x23\x4d\xda\x5a\xac\x88\xb6\xd6\x20\x9e\xc3\x24\x02\x14\xe4\xd1\x41\xd4\x59\x44\xd5\xf2\x71\x88\xf6\x39" + + "\x2e\x6a\x28\xd2\x49\x28\x77\xbe\xe5\x84\x87\xed\xdb\xa1\x68\x3f\x99\x0b\x25\xd0\x62\x16\x5e\xac\xc0\x8a\x1f\x60" + + "\x30\xc2\xe6\x02\xc4\xcd\x85\x1d\x68\x31\x84\x43\x73\x59\x06\x52\xfc\x00\x87\x8e\x1d\x04\xc8\x98\x4b\x4e\xd0\x62" + + "\x08\x2f\xe6\x82\x11\xa4\x18\xc9\x0b\x44\xa0\xa1\x2a\x0d\xf3\xb3\x08\x10\x52\xa5\x3d\x43\x1d\xe5\x43\x23\x55\x5a" + + "\x15\xa0\xca\xed\x2d\x66\xe1\xc5\x0a\xac\xf8\xbb\x55\xdf\xa3\xf0\xbe\xbe\x27\xa1\xe2\xfb\x2e\x95\xbe\xf7\xca\xa3" + + "\xd2\xde\x62\x88\x68\x3c\x2a\xed\x2e\xfe\x82\x4a\xdf\xc9\x78\x54\xda\x5b\x0c\xe1\xc5\xa3\xd2\xee\xe2\x48\x95\x8e" + + "\x0c\x9c\x41\x3c\xbf\x4a\x47\x07\x48\x98\x20\xa3\x02\x61\xa4\x4a\x0b\x0c\x54\xa5\x05\xb8\xe7\xf6\x16\x2b\xb0\xe2" + + "\xef\x56\x69\x81\x81\x2a\xb7\x00\x57\x73\x6f\x31\x84\xc1\x3f\x41\xf5\x3d\x0a\xef\x1b\x9d\x24\x74\x80\x1f\x57\xe9" + + "\x7b\x07\x3c\x2a\xed\x2d\x86\x48\xc1\xa3\xd2\xee\xe2\x48\x95\x8e\x4c\x8f\x82\x78\x7e\x95\x8e\x4e\x8e\x60\xcc\x47" + + "\xa5\x46\x91\x2a\xcd\x6f\xa1\x2a\xed\x2d\x66\xe1\xc5\x0a\xac\xf8\xbb\x55\xfa\x4e\xdb\xa3\xd2\xde\x62\x08\x83\x1e" + + "\x95\x76\x17\x7f\xbb\x4a\xdf\x89\x7b\x94\xdb\x5b\x0c\xe1\xd0\xa3\xf0\xee\xe2\x2f\xa8\xbe\x47\xe1\x7d\x9a\x92\x84" + + "\x2a\x5b\x40\xa5\xed\xac\x5b\x56\x38\x51\x73\xbf\x3b\xb3\x0a\x58\x7f\x81\xe2\x2d\x88\x78\xe1\x65\xe2\x20\xaa\x84" + + "\xcf\x2d\xbc\xb8\x81\xe9\x05\x04\x8c\x9e\x61\xc0\x3b\x13\x6e\x4c\xb6\xf4\x1c\xc9\x78\x7f\xb3\xbe\xdf\x8a\xe7\x37" + + "\x52\xe0\xc6\xfd\x99\xce\x4e\x46\x8a\xde\x6f\x28\x1a\xa4\x0c\xb6\x3c\x2f\x7c\x21\xfb\x5d\xd7\xd2\x41\xa4\xc1\x07" + + "\xf6\x33\x89\x63\xd8\xcf\x24\x81\xfd\x4c\x92\xd8\xcf\x64\x11\xfb\xf9\xe1\xd9\xbe\x68\x7c\xaa\xd8\x78\xe2\x29\x0d" + + "\x2c\x7f\xc7\x7e\xdd\x72\x51\x38\xa9\xac\xae\x58\xb7\x7c\x24\x1e\x4e\xea\x78\xb7\xbf\x1b\x87\xca\xe3\xf1\xa6\x63" + + "\x86\x32\x86\x44\x70\x73\x85\x46\x72\x58\x92\x62\x32\x24\x85\xb3\x83\x00\xbb\x99\x41\xa1\xd8\xac\xc4\xe2\x23\x8c" + + "\x89\x28\x0e\x42\x9b\x4f\x5b\x8d\x06\xf6\x34\xa6\x44\x4a\x00\xcf\x26\xd4\xbc\x69\x05\x01\x92\x10\x00\x68\x29\x5a" + + "\x57\xdb\xe2\x07\xf6\x13\xb5\x8d\xdd\xe0\x5e\xa5\x29\x1e\xfc\x8e\xa5\xb3\xbf\x6e\xa4\x0b\x15\x47\xa2\xe2\x69\x8c" + + "\xfc\x75\x2b\x40\xf5\xd4\x26\x56\xfa\x75\xd3\x85\x8d\xc4\xc0\x91\x0a\x1c\x60\xd8\xab\x75\x68\x6e\x61\x78\x2e\x56" + + "\xe1\x64\x1c\x3e\xa1\xb5\x11\x2a\x1d\x60\x51\x8a\xc5\x60\x10\xcb\xc5\x1e\x8c\x84\xc3\x1c\xa4\x26\x4c\xc5\xfd\x7c" + + "\xc5\x60\x0a\xcd\x11\x9a\x1d\x18\x2f\x69\x87\x83\x50\x8d\x6f\x8b\x21\x3a\xaf\x03\x11\x5a\xdf\x16\xe1\x7a\xdf\x0e" + + "\xf1\xd2\x6d\xb1\x26\x9d\x22\xb5\xdf\x6d\xbb\x04\x86\x39\xd6\x1d\x66\x06\xae\x3a\xa6\x3b\x88\xf4\xff\x29\xdc\xc0" + + "\x43\x98\x84\xd7\xf7\x20\xed\x02\xd2\x1d\xb4\x47\x46\xf4\x05\x59\xc1\xd5\x91\x10\x37\xef\xea\x45\x58\x48\x41\x58" + + "\x0d\xa4\x03\x28\x2f\x8e\x60\x1f\x81\xee\x62\x1e\x19\x16\x5c\xac\xa3\x83\x0f\xcc\xa6\x82\x5c\x3f\xc2\x72\x04\xbf" + + "\x91\xcc\x22\x39\x4d\x7b\xf8\x8b\xb0\x3a\x1d\x27\xd4\xf2\x4c\x04\xa4\xf5\x19\xe0\x10\x58\x98\x15\x76\xc1\x46\x8b" + + "\x6d\x85\x8b\x4f\x58\xe1\x22\x9e\x15\x2e\xe2\x5a\xe1\x22\xd4\x0a\x21\xdd\x41\x98\x02\xba\x2f\xc8\x0a\xd1\x56\xb8" + + "\x88\x65\x85\x8b\x10\x2b\x84\x74\x00\x6a\x10\x68\xf6\x11\xe8\x51\x56\xb8\x88\x61\x85\x0b\x94\x15\x06\xb9\x7e\x84" + + "\xe5\x08\x7e\x23\x99\x45\x72\x9a\xf6\xf0\x17\x61\x85\x3a\x4e\xa8\x15\x9a\x08\x48\x2b\x34\xc0\x21\xb0\x30\x2b\x1c" + + "\x19\x3b\x6a\xe3\x9b\xe1\x27\xac\x30\x15\xd3\x0c\xbf\xc3\x0a\x61\xdd\x41\xda\xc2\xa3\x56\x98\x8a\x63\x86\x5f\xb4" + + "\x42\x58\x07\x10\x16\xf1\x98\x15\xa6\xa2\xcd\xf0\xf3\x56\x08\xe1\xfa\x01\x96\xa3\xf8\x8d\x62\x36\xda\x0a\x4d\xfe" + + "\x22\xcc\xd0\x40\x0a\xb5\x43\x0b\x03\x69\x88\x26\x3c\x0c\x18\x66\x8a\x53\xf9\x81\xa4\xf4\x13\x39\x69\x3c\x3b\x5c" + + "\xc6\xb4\xc3\xf0\x9c\x34\xd0\x17\x64\x5a\xf8\x68\x42\x1a\xc3\x08\x97\x71\x8c\x30\x2c\x21\x0d\x70\x8f\xc8\x0c\x1f" + + "\xcb\x46\x23\x2d\x70\x19\x6d\x81\xc8\x6c\xd4\xcf\xf2\x03\xfc\x46\x31\x1b\xc5\x69\x74\x2a\x3a\x95\xa3\x6c\x6f\x2a" + + "\x87\x1a\x9e\x0e\x46\x5a\xdd\x54\x46\x99\xdc\x54\x46\xdb\xdb\xe0\x60\x38\xac\x90\x85\x08\x82\x0c\x5d\xc9\x20\xe3" + + "\xaf\x8b\xe0\x96\xa4\x62\x2e\xb7\x20\xac\xca\xe6\x18\xb1\x24\x61\xb0\x8b\x58\xcd\x08\xf2\x0a\x5f\x15\x81\x30\x8a" + + "\x5c\x66\x81\xda\x8e\xcd\x23\x74\x65\xc2\xe0\x10\xba\xa0\x11\xe4\x0f\xb6\x28\x02\xe1\x0e\xb1\xc2\x12\xb4\x10\x8b" + + "\x31\x04\x57\x71\x58\x8a\xc3\x0f\x9c\x99\xf4\x9d\x85\x50\x33\x18\x1c\xc2\xc2\x8f\x01\x45\x18\x81\x0e\x43\x01\x42" + + "\x4d\xc0\x9e\xc4\x46\x39\x7a\xe2\x81\x30\x43\xdc\x5d\xc3\x83\xc1\x0c\xad\xf8\x0e\x9f\x61\xde\x9c\x88\x1b\x42\xe0" + + "\x1c\x46\x86\x28\x94\xc6\x3b\xcc\xa1\x5d\x36\x11\x2f\x42\xc0\x19\x8b\x88\x3e\x50\x65\xb7\x79\x8a\xc7\xd0\x03\xdc" + + "\x84\xb3\x92\xf6\x32\x10\xa5\xee\x11\xeb\x0f\x0e\x06\x5a\xed\xd1\x2b\x10\x16\x30\x54\xfd\xed\xd9\x63\xd4\x7c\x23" + + "\xb6\xfa\xeb\x29\xee\x63\xda\xef\x9a\x9b\xa2\xd5\xdf\xe1\x33\x6c\x46\x11\x4f\xfd\x51\x1c\x46\x2f\x56\xa0\xd4\xdf" + + "\x61\x0e\x3d\x67\x88\xa3\xfe\x28\xc6\xa2\x16\x21\xa0\xea\x6f\xf3\x14\x8f\xa1\xf8\xdc\x44\xb0\x92\xf6\x32\x10\xa5" + + "\xfe\x11\x13\x7f\x07\x03\xad\xfe\xe8\xa9\xbf\x05\x0c\x55\x7f\x67\xda\xf6\x8d\xfa\xff\xb0\xfb\x5f\xc4\x70\xff\x77" + + "\x46\xbf\xc3\x00\x1e\xf3\xff\x8b\x48\xff\x7f\xe7\xee\xab\x16\xf0\x48\x00\x58\x84\x07\x00\x87\xa9\x2f\x98\x40\xec" + + "\x08\xb0\x80\x45\x80\x18\x93\x6e\x1b\x2b\xdc\x08\xc2\xa7\xdd\x0e\x42\x28\x34\xd4\x0e\xcc\xc9\xd3\x37\xe6\x40\x8f" + + "\xa7\x40\x31\x82\x80\xc5\xe5\x77\x64\x40\x0f\x26\x40\x91\x21\xc0\x62\xed\xab\xf9\xcf\x43\xe9\x4f\x78\x00\x30\x39" + + "\xfa\x42\xf6\x13\x3f\xf9\x81\xb9\xff\xa8\x19\xaf\x81\x12\xae\xf5\x21\x73\x5e\x13\x8a\x06\xc1\x94\x7d\x43\x31\xfe" + + "\x17\xc1\xde\xde\xe1\x41\xd5\x8b\x57\x47\x7a\xb4\xc6\x63\xe8\x69\x0b\x09\x21\x4f\x13\x0a\x15\xa5\x0d\x0a\x48\xd1" + + "\x02\x40\x4b\xd1\xb2\x7b\xfc\xb5\x71\x40\x83\x22\xdc\x06\x6c\x45\x0d\xd9\xf6\x43\xd3\x9b\x30\x67\x10\x5c\x07\x43" + + "\xb7\xa9\x3e\xd6\x24\x02\xdd\xb7\x86\x85\x6a\xee\x81\xa6\xd0\x6b\x50\x2e\xe2\xa1\x1a\x84\x9c\x8a\xb8\xc1\x08\x4d" + + "\x82\x4d\x42\xee\x90\x70\x8d\xaa\x70\xdb\xcf\xec\x45\xf8\x3e\xb5\x0a\x32\x10\x1d\x07\xbe\x45\xb7\x82\x0d\x47\x79" + + "\x7a\x7f\xb3\xf1\x96\x48\x43\x5a\x7c\xa8\xb9\x38\x3a\xa6\xb7\x10\xa9\x66\x15\x6e\x1b\xa1\x69\x06\x46\x88\xb2\xe9" + + "\xf0\x30\x20\x5a\xe5\x1e\x7f\xeb\xfe\x98\xb6\xc1\x5f\xcf\x21\xdb\x7e\x28\x47\x0f\xcb\xe9\x51\x8a\xf6\xd0\x5b\xed" + + "\xd8\x3a\x16\x78\x11\x86\x6a\xec\x81\x96\x90\xcd\xa4\x5d\xc4\x43\x75\x0b\x39\x9d\x74\x83\x11\x5a\x05\x9b\x48\xde" + + "\x21\xe1\xfa\xf4\x88\x0b\x5b\x7c\xc6\x85\x45\x29\x55\x6c\x17\x16\xd2\xfa\xa7\x34\x2b\xa6\x0b\x0b\x69\xf6\x51\xf5" + + "\x8a\xe3\xc2\xd0\xcd\xc5\xd1\xb1\x48\x17\x66\x21\x45\x68\x5a\x98\x0b\xb3\xe1\x61\x40\xb4\xca\x3d\xbe\x65\xe1\xfb" + + "\xb4\xed\xc1\xfd\x05\xdf\xa2\x68\x0f\x6d\x09\xf8\xaa\x8e\xc5\x7f\x93\xff\x09\xf5\x0a\x5d\x11\x70\xa1\x84\xa8\x16" + + "\x6a\x2d\xc0\x0d\x45\x83\x22\x94\xea\x31\x47\xf6\xbd\x7e\x0c\xc1\x40\xe4\xa2\xd4\xf7\xa8\x57\x6c\x47\xf6\x1d\x7e" + + "\x0c\xde\xe2\x23\xcd\xc5\x52\xb4\x48\x47\x66\x63\x45\xa9\x5b\x98\x2b\x73\x10\x42\xa1\x68\xbd\x7b\x70\xd3\xc7\xf7" + + "\xa5\xfe\x8f\xec\xd0\xf8\x96\x94\x3f\xfe\xa6\x8a\xaf\xa6\xfa\x31\xf7\x42\x7c\x22\xc5\x47\x2f\xeb\xd8\xf0\x10\x5d" + + "\x82\x2e\xe8\x38\x20\x44\x79\x98\xe6\x3c\x36\x75\xfc\xde\x99\x23\xac\xf5\xc8\x17\xa8\xdf\xa0\x43\xb1\x27\x8d\xdf" + + "\x31\x67\x84\x34\xf7\x48\x5b\xd1\xda\x14\xe9\xa2\x0c\x94\x50\x9d\x0a\x73\x4e\x26\x14\x0d\x42\x29\x97\xb5\x59\xe2" + + "\xbe\x08\xe7\x5d\x06\x85\xeb\x44\x8c\x4a\xfe\x01\x8d\xae\xf2\x20\x7e\xda\xc6\x0a\x11\x2a\x6a\x97\x85\x03\x83\x0a" + + "\x13\xb2\xc3\xc2\x2a\x0e\x11\xa2\x7f\x49\x2b\xda\xda\x1e\xdb\x35\x01\x7d\x5f\x80\x6e\x3b\xcc\xdc\x1e\xd8\x0c\x01" + + "\x79\x11\x80\x6e\x13\x6d\x6e\xb1\x77\x39\xf8\xd7\xf8\x91\x8d\xc5\x6c\x29\xac\x99\xb4\x9b\x78\xb8\x12\x85\x2e\x18" + + "\xa2\x77\x2e\xb8\xa1\x68\x50\x84\x52\xf9\xdc\xd2\x77\xeb\x15\xe2\x4d\x54\x28\x03\xdf\xa4\x5c\xd0\xf7\x4c\xa1\x0d" + + "\x7f\x83\x86\x05\xdf\x23\x85\xb5\xf8\x35\x35\xc3\x82\x8a\x16\x11\x05\xee\x58\x51\xea\x86\x8e\x05\x2e\x84\x50\x68" + + "\x88\xde\xf9\x17\xb7\xa2\x67\x3a\x0f\x6e\x82\x09\xd3\x39\x48\xe3\x61\x13\x9d\x47\x36\xb7\xa0\xf5\x0d\xd2\x28\x7a" + + "\x9a\x13\x7f\xdb\x0a\x42\xd7\x82\xad\xc5\x6c\x2a\xb4\x9d\xb4\x9b\x7a\xb8\x92\x85\x2e\x1f\xa2\xf7\xa2\xb8\xa1\x68" + + "\x50\x84\x62\x3d\xe2\xd0\x3e\xa3\x5b\xe1\x1e\x0d\xce\xc1\x77\x29\x58\x98\x4b\x83\xb7\xfc\x1d\x5a\x86\xf4\x69\xd0" + + "\x26\xbf\xa8\x6a\x58\x50\xd9\xa2\x9d\x5a\xd4\x3a\xa2\x1b\x25\x4c\xeb\xd0\x4e\x2d\x62\x29\xd1\xbd\x4b\xe6\xcf\xd1" + + "\xbc\x70\xa7\x06\x6b\xfc\x5b\x94\x2e\xcc\xa9\xc1\x1a\xfd\xb2\xbe\x21\x9d\x1a\xa4\xb5\xaf\xa8\x9a\xcf\xa9\x45\xae" + + "\x27\x86\xee\x2f\xf2\x22\xa0\x34\x0c\xb9\xa4\x18\xb6\xb3\xc8\x0d\xff\x53\x5d\x5b\x94\x67\x43\x70\xf0\x4d\x5a\x16" + + "\xe6\xd9\x10\x2d\x7f\x83\xaa\x21\x3d\x1b\xbc\xc9\xaf\xe9\x1b\x06\xd1\xb8\x68\xd7\x16\xb9\xb2\xe8\xc1\x09\x55\x3d" + + "\xb4\x77\x8b\x5a\x5c\x74\x76\x41\xfd\x39\xd3\x84\x88\x8c\x2d\xd0\xf4\xb7\x4c\x10\x42\xf3\xb5\x40\x93\x5f\x9e\x1a" + + "\xa0\xb3\x35\x7f\x5b\x5f\x99\x14\xf8\x73\xb5\xf0\x55\x46\xf4\xd6\x31\x17\x14\xa5\x52\xf0\x85\xc6\xd0\x4d\x63\x06" + + "\xf0\x4f\x9d\x70\x46\xe6\x67\xb0\xf6\xbf\x4b\x9d\xc2\x7c\x18\xac\xdd\xef\xd0\x29\xa4\x07\x83\x34\xf8\x45\xc5\xc2" + + "\xfc\xaa\x15\xed\xbc\xc2\xd7\x1c\xef\x08\x68\x1d\x43\xfb\x2c\xf4\xb2\x23\x4f\xa9\xac\x73\x17\x93\xe7\xe4\xd5\x8d" + + "\x20\x7f\x26\x0b\x64\xf8\x02\xe4\xa3\xd5\xa5\x2f\x54\xfe\x74\xcd\xb4\x89\x8f\x12\xbf\x0e\x84\xcb\xdd\x84\x04\x05" + + "\x6e\x94\xc3\x0a\xe1\x22\xe6\x10\xfb\x9c\x65\xa0\xa8\x32\x30\xbe\xbd\xf9\x7b\xce\xd0\x98\x84\x22\x69\x96\xa6\xbd" + + "\x04\xd9\xd5\x38\x81\x13\xb7\xa9\xcd\x41\xa4\x8d\x0f\x4b\x01\x4a\x05\x29\xe9\xa0\x21\x2e\x33\x83\x90\x77\x94\x74" + + "\xf5\x3b\x4e\x7a\x1a\xc4\x0b\x18\x03\xb6\x0f\xb5\x4a\x7e\x43\xab\x25\xa3\xd5\x84\x7d\x2a\x30\x6e\xf3\x9c\x88\x38" + + "\x4f\x1d\x22\xd2\x6c\xde\xdd\x96\x71\xd4\xf0\x81\xe6\x10\xe7\xb2\x21\xed\x7d\xa2\x2f\x10\xbb\xe2\x60\xbb\xce\x23" + + "\x14\xc6\xab\xc2\xe1\xda\x12\x49\x38\x86\xaa\xc4\x6c\x8f\xfc\x6a\x7b\x01\x25\x89\xd1\xb0\xad\x21\xb1\x05\x08\x55" + + "\x8f\x78\x0d\xc1\x0e\xbc\x87\x2a\x46\x3c\xb2\x01\x77\xc9\x05\xb7\xfb\x47\x68\x84\x14\x5b\x1f\x22\x88\xc6\xd0\x86" + + "\x58\x6d\x91\x5f\x6b\x2b\xa0\x09\x91\x8d\xda\x7a\x10\x53\x68\x50\x2d\x88\xd3\x48\xf0\xf2\x80\x50\x0d\x88\x43\xd2" + + "\x1b\xf1\x38\xdf\xc9\x8a\xf0\x91\x8f\x39\xec\x5f\x1c\xf3\x98\x03\xfe\x5d\xa3\x1d\x6f\xa8\x3f\x3d\xce\x31\x07\x39" + + "\xde\x08\xc7\x18\xde\xb4\x31\xa8\x81\x98\x92\x52\xb5\x0b\x0f\x9e\x65\x05\xa8\x40\x39\x82\x54\x96\xf1\x65\xd2\x30" + + "\x04\x29\x14\x1c\x5a\xd5\x6a\x1f\x76\xf3\xaa\x75\x37\xac\xeb\xbb\x97\xc8\x1c\x8a\xb3\xe6\x46\x31\xc9\x40\xb3\x2d" + + "\xce\x98\x41\xc5\xa4\x00\xc9\xca\x38\xf9\x25\x5e\x65\x48\x4d\x54\xe6\xd6\x16\x17\x0f\x26\x6f\x8b\xdf\x4d\xbd\x7d" + + "\xb9\x67\xa0\xb1\xf3\x33\x9b\x42\x0a\x37\x48\x20\x6e\xf5\x0c\xa9\x68\xd5\x8b\x9f\xad\xd8\x15\xbd\x2c\xc3\x0e\x25" + + "\xb9\x84\x11\x33\xa8\xa2\x24\x11\xbb\xba\x47\x0c\xb1\x6b\x79\x64\x10\xbb\x16\x44\x00\xfe\xe8\x6b\x77\x3f\x56\x2c" + + "\x41\x75\x3e\x66\x65\x4f\xd7\x63\xd6\xf1\x74\x3c\x66\x9d\x60\xb7\xa1\x7d\xfe\x7c\x87\x1f\xee\xed\xc3\x5d\xfd\x5c" + + "\x3f\xd3\x76\xef\xbe\xcd\x01\xb6\xc5\xc5\x77\xf8\x40\x83\xcc\xd7\xdc\xa0\x4e\xe2\xd3\x9e\xb0\x2d\x2e\xd0\xce\x70" + + "\xf9\xf0\x4c\xf6\xab\xce\x70\xf9\x59\x67\xb8\xfc\xac\x33\x5c\xc6\x75\x86\xcb\xc7\xa6\x68\x5f\x72\x86\xcb\x4f\x39" + + "\xc3\xe5\xa7\x9c\x21\x54\x00\x41\x67\xb8\x7c\x64\x36\xf2\x05\x67\xb8\xfc\x84\x33\x5c\x7e\xc2\x19\xc2\xba\x0d\xed" + + "\xf3\xe7\x3b\xfc\x70\x6f\x1f\xee\xea\xe7\xfa\x99\xb6\x7b\xf7\x8d\xce\x70\xf9\x3d\xce\x70\xf9\x75\x67\xb8\xfc\x8a" + + "\x33\x5c\xa2\x9c\xe1\xe0\xa0\x3d\x9e\x1a\xfa\x25\xff\x78\xa2\x16\xd0\x2b\xa8\x73\x72\x98\xfb\x74\xfe\xf3\x60\xfa" + + "\x04\x63\xcb\xef\x32\x1c\xa6\x3e\x99\x9b\x3c\x94\xd8\x40\x18\x82\x73\xf3\x79\x56\x3e\xc9\x47\xda\x69\x3d\xc4\x7e" + + "\x74\xf8\xa3\x73\x33\x84\x0d\x99\xa4\x1e\xb0\x45\xa8\x19\x99\x54\xe2\x9a\x22\x8a\x40\xac\xda\x21\x16\xf7\x78\xfe" + + "\xf1\x55\x8b\x83\x78\x72\x94\xc5\x3d\x98\x0f\x7c\xc9\xe2\xe0\x6c\x41\x2c\xee\xa1\x28\xfd\x05\x8b\x83\x32\x04\xe7" + + "\xe6\xf3\xac\x7c\x92\x8f\xb4\xd3\xfa\xb7\xc5\x37\x9d\xda\x77\x04\x38\x93\xce\xd7\x22\x9c\x41\xe3\x2b\x76\x09\x8d" + + "\x71\x2c\x27\x6e\x01\xdc\xdc\x4c\x49\xbb\x5f\x52\xdd\x57\x98\x24\x85\xdb\x72\xe2\xb3\x26\xc9\x09\xde\xd8\xb9\x18" + + "\xf7\x2d\x88\xb1\x5c\x48\x60\x3f\x93\xf0\x4f\xee\x58\x6d\x16\xbd\xaf\xa9\xbe\xab\x5d\xf8\xa4\xc4\x6a\x33\xff\xe7" + + "\xb4\x09\x7f\x83\xe5\x69\x33\xe1\x79\xf9\xfc\x12\xb2\x0f\xe0\x8b\xbc\x44\x5f\x3b\x5c\x30\x8c\x2c\xcc\x0b\xde\x15" + + "\xc6\xeb\xc3\x5c\xda\xe2\x5d\xc7\x0c\xb0\x1c\xeb\xbd\x88\x57\x4f\xa0\x4d\x15\x5d\x2f\xa8\xbe\xa5\x39\xc8\x4c\xcd" + + "\xa7\x1b\xdf\xd6\x14\xe4\xad\x55\x4c\x95\xf8\x36\x16\x22\x2e\x70\x86\x69\x82\x04\xd5\x03\x09\xae\x05\x52\x18\x9b" + + "\x31\xde\x8c\x78\x35\x00\xd2\x48\xd1\x79\x25\xf5\x0d\x0d\x05\x26\xaa\xbe\x91\xff\x96\x46\x02\xef\xa8\x62\x8e\xf9" + + "\xb7\x34\x1e\x7a\xf1\x35\x64\xb4\x21\x43\x0d\x1b\x67\x34\x67\x8f\x8d\x30\x6a\x78\xbf\x4a\x3f\x07\xa3\x9d\xff\x1e" + + "\xda\x45\x34\x6d\xe4\x60\x7e\xb5\x4d\xf4\xad\xe0\xc1\x31\x4c\x9b\x23\x87\x48\x70\x0c\x20\x34\x65\xb1\x20\x81\x34" + + "\xc4\x2c\x87\x15\xc2\x52\x0b\x9e\xdb\xb2\xda\x58\x06\x80\x69\x47\x5d\x83\xbc\xf8\x5d\xef\xd6\xaf\x84\xba\x07\x27" + + "\xe3\xeb\x04\xbe\xdc\x2e\xe2\xfb\x7c\xc6\x36\x79\xa7\x7a\xd6\x9f\x54\x46\x7e\x1c\xc3\xd5\x34\x4e\xc6\x9b\x49\x40" + + "\x6b\x47\xae\x28\x06\x44\x82\xdc\xff\x1b\x43\x1e\x61\xc7\x22\x22\x84\x81\xde\xa2\x1c\x29\x89\x18\x55\x23\xd6\x15" + + "\x03\x42\x40\x7e\x31\x23\x52\x04\xe8\x13\x1a\x11\x02\x40\xed\x94\x8e\xec\x7e\x64\xc5\xb0\xd5\x45\x7f\xcf\x3f\xd9" + + "\xed\xcf\xf5\xf9\x73\x1d\x7e\xb4\xb7\x69\x4f\x1f\x11\x9e\xc7\x8d\x03\x75\x40\x5e\x84\x80\x1f\xf2\x80\x43\xab\xc6" + + "\xde\xe7\x16\x77\x9f\x53\xbc\x1d\x30\x71\xf6\x4c\x84\x7a\x4c\xe4\x07\x14\x62\x8d\x42\xb4\xcf\x0a\x57\xb2\x10\xbf" + + "\x05\xff\x4e\xc2\x03\x5c\x7d\xd2\xe3\x21\x7d\x08\xec\xa3\x08\x0f\xb0\xf3\x29\xdf\x03\xb7\xe9\xc0\x57\x10\xe2\xb3" + + "\xf1\x19\x1e\xd2\xde\x96\x23\x4d\x0d\x75\x34\xdf\x87\x11\x62\x6c\x90\x63\xfa\xbe\xca\x71\x67\xa3\x31\xe7\x29\xb1" + + "\x92\xdb\x18\x9b\x70\x20\xa6\x26\x1f\x78\x15\xb1\xee\xe1\x7c\xbc\x02\xbe\xf5\xd5\xff\x81\x8a\x10\x02\x01\x3b\xba" + + "\xb7\x2a\xc0\xbf\x33\x02\xd9\x45\x19\x68\x0f\x51\xd5\x67\x21\xf7\xa6\xa0\x9f\x0b\x09\x6c\xd1\x0b\x34\x13\xf9\xfd" + + "\x53\xa7\x05\x04\x79\x34\x6d\x18\xe1\xb4\x49\x0e\xa1\xc6\x06\x10\xaa\xbe\x16\x24\xa0\xb6\x66\x39\xac\x10\xa6\x0e" + + "\x8a\xc4\xf3\xd1\x5f\xed\x75\x87\x5b\xd3\x3a\xad\x9c\x3f\x85\x13\xae\xb7\x73\x71\x4f\xa3\xdd\x97\x33\x4d\xaf\x10" + + "\xd4\x17\x28\x5b\xe8\xbc\x2f\x1e\x4f\x68\xd7\x0d\x63\x48\x8a\x62\x07\xfd\xd9\xc1\x38\xcc\xa0\xdc\x36\x84\x95\x70" + + "\x3e\xbe\xc0\x44\x5c\x0e\xd2\x56\xbb\x08\x1d\x35\xa1\x50\x25\xb5\x41\x01\x2d\xb5\x00\xd0\x52\x94\x9e\xfa\x2f\x6a" + + "\x79\x54\xcb\x1e\x39\x02\xe9\x91\x9f\x2d\x3e\xa8\x9a\x06\xb9\x7a\x40\xcf\x62\x1f\x8b\x44\xf1\xe3\xd7\xd2\x20\x37" + + "\xb1\x15\x2d\xe6\x51\x49\x04\x27\x11\x6c\x7c\x8e\x87\x07\x18\x48\xdb\xcd\x86\x28\x29\x2a\x13\x70\x60\x50\x35\x85" + + "\x44\x7f\xab\x18\xae\xa8\x3a\x5f\x88\x89\xbf\xbd\xf4\x41\x03\x51\x03\x4a\xc2\xfc\x07\xa2\x88\xb6\xdd\x12\x98\x3f" + + "\xfb\x81\x47\xde\x07\xe9\x62\xa1\x73\x75\x4f\x0f\xa0\xab\xae\xbe\x66\xa0\xcb\xb9\x48\xde\x3f\x4d\xd1\xcf\xb5\x84" + + "\xe2\x19\xb2\x6a\xe8\xa3\x0f\x59\x8a\x44\xf2\xfb\x29\x6a\x18\x6a\x26\xec\x66\x34\x82\x6e\x6c\x16\x1f\xa5\xe3\x65" + + "\x2e\xed\xb0\x84\xb4\x1c\x13\x8e\x30\x1d\x1b\x08\xb1\x1d\x0b\x84\x28\x0f\xb3\x9e\x9a\x74\x12\x91\x9f\x51\xb2\xbb" + + "\xc9\x83\x8d\x96\x58\x4b\x9a\x26\x09\x21\x36\x14\x78\x5f\x1a\x6e\x42\xb1\x88\xc6\x33\x20\x4f\x27\xa0\x6a\xef\x69" + + "\x0c\x6e\x46\x08\xf6\x3f\x49\x2e\x8e\x0d\x79\xd8\x86\x68\xbf\xa7\x15\x98\x25\x21\x58\xfe\x04\xa9\x48\x33\x72\xf3" + + "\x1a\x4a\x3d\x2e\x97\x8f\x11\x41\x58\x92\xc3\x55\x84\x45\xd9\x78\xa1\x96\x75\x47\x42\x5a\x98\x83\x12\x01\x8f\xb2" + + "\x38\xf4\x97\x9b\x6c\x69\x28\x3a\x46\xa4\x79\x3c\x68\x72\xf1\x88\xc6\xb7\x39\xc4\x77\x9d\xe0\xcd\x41\xcd\xe4\x11" + + "\xa3\x8b\x41\x2e\xae\xd5\x41\x3f\xf9\x04\x6f\x07\x62\x2c\xf1\xcd\x2e\x92\x54\x2c\xbb\x0b\x7e\x0b\x0a\x4a\x3f\x26" + + "\x9f\x0f\x12\x09\xb1\xbc\xd0\xfb\x5b\x02\x88\x91\xb6\x87\xba\xc9\x25\x88\x13\x85\x10\x66\x7e\x53\xf9\x7b\xc2\xdd" + + "\xbf\x2e\xda\xb9\x7a\xf0\xc9\xe0\xf4\xcf\x0f\x75\x2e\x9e\x3f\x11\x9d\xfe\x89\x71\xee\xce\xe8\x63\x01\xea\x4f\x0c" + + "\x72\x16\x4b\x11\x76\x66\x62\x85\x1a\x99\x8d\x82\xb4\x30\x0b\x21\x14\x1a\x6e\x5b\xdf\x15\xd8\x1e\x4d\x26\xbf\x33" + + "\xb2\xb9\x7b\xf1\xd9\x40\xf4\x50\x36\xf9\x4d\x81\xcd\xcd\xf7\x67\x62\xd1\x03\xe9\xe4\xd7\xe3\x9a\x8b\xd9\x07\x03" + + "\x52\xdc\x7c\xf2\x53\x61\xcd\x66\x2b\xd2\xd8\xa2\x43\x9a\x83\x13\x62\x6e\xa1\xe1\xcc\x02\xa3\x0d\x0e\xf5\x0a\xef" + + "\x2b\x8b\x14\xdf\xb2\xec\x11\x9c\x3e\x23\x8c\x0d\xfa\xae\xef\xd3\x4b\x15\x5f\x5c\xf6\x80\x72\x1d\x34\x34\xc8\xeb" + + "\xc0\x4f\x2e\x57\x7c\x61\xd9\x03\xc6\x2b\x82\xd1\x2f\x2d\x5a\x7c\x6a\xd9\x03\xc2\x5c\xfa\xce\x52\xa8\x69\xa1\x17" + + "\x0e\x1d\x28\xc2\x9c\xa0\x8b\x87\x16\x20\xd4\x84\xbe\x6f\x05\xe4\x01\x43\xfa\x5c\x8a\x89\xb6\xa2\xef\x58\x01\x89" + + "\x6b\x4b\x9f\xc8\x2f\x51\x86\xf4\xd5\x15\x90\x78\xe6\xf4\x70\x7a\x09\xb5\xa5\xcf\xaf\x80\xc4\xb0\xa8\xc7\x72\x4b" + + "\x97\x39\xc5\x5b\x01\x71\x21\x86\x9b\x57\xe4\x1a\x88\x1b\x27\x0a\x21\xd2\xec\xbe\x2b\x5b\x7c\xc0\xf0\x3e\x9b\x7e" + + "\x86\x9b\xde\xd7\x13\xc6\xb8\xc6\xf7\xa9\xdc\x33\xcc\xfc\xbe\x96\x33\xc6\x33\xc0\x4f\xa4\x9e\x48\x13\xfc\x6c\xda" + + "\x18\xc3\x08\x1f\xcd\x3b\x7d\x66\x18\x23\x73\x74\x63\x46\x1b\x62\x78\xfe\xe8\x41\x8a\xc4\x08\xb5\xc5\xef\x5a\x13" + + "\xf9\xee\x00\xf8\x88\x19\x7e\x7d\x55\xe4\xfb\xe2\x5f\x7c\x0b\xfc\xda\xba\xc8\xf7\x84\xbf\x98\xc6\xf7\xd9\x95\x11" + + "\x08\x93\xe1\x2c\x3e\x66\x79\x71\x56\x47\x1c\xb4\x70\x9b\x8b\x58\x1f\xb9\x63\x84\x83\x23\x4c\xed\x7f\x6d\xd0\x7b" + + "\xc8\xd8\xfe\x57\x45\xbc\x07\xcc\xed\x7f\x45\xb8\x8b\x6b\x70\xff\xb2\x58\x17\x6e\x70\xf1\x02\x5d\xf4\x1a\x89\x1b" + + "\x29\xcc\xe6\xc2\x43\x5c\xc8\x32\x89\xca\x52\x7b\x60\xdf\xef\x1a\xb1\xd5\xf9\xd7\x0d\xc7\x7e\x26\xb3\xe6\x3d\xb0" + + "\xc9\x02\xf6\x33\x59\x8a\x3c\x12\x82\x1b\xb7\xf3\x12\xd8\xcf\x64\xce\x3c\x63\x94\x8c\x3c\x08\x82\xc3\x6f\x4a\xf6" + + "\x71\x8a\xde\xd8\x84\x60\x33\x6c\xc7\x1e\x94\xc7\x90\xfd\x4f\x90\x0b\x95\x7d\xec\x85\xdd\x02\x0f\x61\x0e\xbd\x7f" + + "\x0f\xca\x1a\x72\x3b\x94\xff\xd6\x65\x2f\x57\x8f\xb0\xf4\x08\x3f\x61\xcc\xa4\x4d\x16\x10\xa6\x60\x00\xa1\xfa\x6f" + + "\x41\x02\x4a\x6f\x96\xc3\x0a\xa1\xea\x7d\xe2\xc4\xed\x87\x71\x77\x71\xa4\x0e\xba\xcf\x82\x99\xeb\x36\x7a\x47\xd1" + + "\xe7\x86\xcd\xb3\x1a\xe1\xe7\x99\xed\x0b\x66\x42\x0f\x5a\x9b\x74\x42\xcf\x28\xa7\xc8\xb0\xfb\x95\x6c\x9f\x06\xdf" + + "\x18\x68\xca\x80\x40\x1e\x76\x75\xf7\x03\x9e\xab\xb9\x3b\x01\xc5\x70\xf5\x00\x4e\x81\x44\x5e\x8d\xe4\xe7\x5d\x82" + + "\x73\x0e\x09\x11\x6e\xbe\x61\x39\x9b\x9b\x6b\x08\xdc\xc5\x33\xac\x36\x89\xb8\xd3\xc8\xc7\x2f\x8c\xd9\x30\x4e\x43" + + "\xd9\x0c\xe1\x31\x94\x41\x14\x77\x69\x93\xa7\x18\x9a\x1e\x72\xa4\x19\xb2\xc4\x0a\x01\x87\x56\x45\xd8\xbe\xce\x1c" + + "\xdc\xf6\x4d\x48\xd0\xf6\x8d\x72\x58\x21\xcc\xf6\x35\x8a\xa1\x22\x0e\x17\xe0\xa6\x5f\x40\xa2\x60\xe9\xd2\x7d\xe3" + + "\x72\xd6\x10\x6a\x74\xf8\xbb\x6f\xb4\xb7\xab\x66\xed\xe1\x0f\x09\x80\xc1\x5a\x56\x83\x11\xe7\x1b\x9c\x3d\xab\x10" + + "\xcb\x77\x24\x80\x38\xad\xe0\x74\x1f\x06\x8f\xd3\x77\xd4\x21\x89\x90\x8e\x47\x55\xf1\xf4\x1a\xce\xb7\xb7\xcb\x12" + + "\xac\xc3\xd0\x73\x13\x4e\x77\x83\xd0\x38\x9d\x85\x1f\xd4\x08\xe9\x6a\x78\x05\x4f\x47\x61\xfc\x7a\xba\x19\xec\x63" + + "\x48\x07\x3f\xd1\xbb\xc7\xba\x16\xb7\x5f\xe1\x9d\x4a\x1b\x5d\x41\x78\x07\x1d\x06\x75\x0e\x26\x20\xe0\x1b\x8c\x62" + + "\x48\x19\xcc\x33\x9c\xb8\xed\x96\x47\x1d\x3c\x32\x8e\x7a\x95\xac\x3e\xa0\x31\x52\x45\x03\x05\xe1\x3d\x0c\x94\x82" + + "\x2d\x69\x34\x91\x7c\x48\x0a\x61\xa2\x98\x6e\x1e\x71\x0a\xca\x24\x92\x0b\x49\x31\xac\xb3\xa8\x0c\xfa\x56\x47\x8b" + + "\x08\x11\x92\x84\x98\x28\xb8\x33\xae\x28\xc7\x77\x3f\x5b\x17\xf4\x45\x2e\x99\xfb\xac\xda\x2f\x70\x18\xd8\x2d\x6d" + + "\x18\xdc\x25\x6a\x68\xf5\x3c\x2a\xc5\x09\x08\x19\x5a\x3d\x87\xca\x7f\x02\xe2\x85\x56\x27\x50\xe9\x11\x5c\xb0\x30" + + "\x1c\x68\x7e\xe4\x92\xa9\x14\x26\xd1\x20\xd0\x2d\xcf\x20\xd4\x25\x4d\x48\xd5\x3c\x3c\xed\x0a\x48\x12\x52\x35\x07" + + "\xcf\xc8\x02\x52\x84\x54\x25\xe0\xe9\x1a\x5c\x82\x41\x8c\x60\xbe\x76\x17\x1e\x5a\x72\x21\x62\x43\xcb\x2c\x44\x60" + + "\x68\x69\x85\x88\x0a\x2d\xa7\x10\x21\x45\x48\x08\x21\x9e\xb4\x25\x14\x84\x4f\x36\xa1\x50\xaf\x6c\x83\x02\x7e\xd9" + + "\x02\x20\xd0\xff\x7d\xce\xaa\x9e\xa4\xf5\x1a\x15\x33\xdc\xb3\xe9\x9f\xbf\x6e\x38\x19\x79\x51\x06\xe9\x3a\x10\x47" + + "\x86\x84\x09\x57\x25\xc2\x75\xd2\xc8\x8a\xc8\x91\xed\xe0\xee\x76\xb2\x21\x61\xc2\x33\x6f\xbf\xd7\x31\xf5\xa9\x10" + + "\xd9\x8e\xbb\x19\x3c\x2c\x6b\xf5\x49\x2a\x18\x25\xee\x52\x0e\x3b\xdc\x6e\x8a\x38\xe4\xee\x0d\x84\x7c\x91\x35\x10" + + "\xc2\x0d\x59\x33\x42\x48\x36\x64\xd1\x08\x2a\x56\x74\x0b\x28\x99\x86\xca\xc5\x1f\x20\xee\xe2\x44\x1f\xcd\x37\x85" + + "\x89\xbc\xc5\x03\x21\x4a\xe4\xc7\x0b\xa1\x82\x44\xae\x6f\x21\xc4\x88\x5c\xe0\x82\x0a\x11\x45\x1d\x25\xc2\x10\x59" + + "\x78\x22\x84\x23\xbd\x50\xd1\x3d\x24\xb7\x07\x84\xf6\x90\xc4\x1e\x10\xd7\x43\xb2\x42\x0b\x2a\x6d\x89\x07\x15\x2b" + + "\x0c\x28\x3c\x56\x58\xa0\x60\xac\x30\x01\xd0\xd2\xdb\x5a\x62\x2e\x1f\x02\x75\x4e\x9d\x38\x46\x63\x9f\xcd\x0f\xbf" + + "\xbd\x08\x94\xb2\xe5\xc4\x67\x2c\x41\x1d\x34\xe9\x96\x5e\x2b\xd2\x49\x05\x2c\x25\xcb\x3a\xae\x01\x4a\x13\x40\x48" + + "\x60\xc6\xa5\x8d\x5b\x45\x3a\x88\xcc\xb3\xa4\x50\xe2\x16\xbc\xd0\x12\x2f\x29\xcf\xbf\x6d\x36\x9b\x17\x99\x62\x18" + + "\x4e\xdc\x5a\xb8\xb7\xdf\x44\xea\xc8\x6d\x0d\x16\x2c\x2a\x29\x4d\x92\x9f\xb3\x98\x7c\x76\xc3\x12\x07\xfe\x83\xe7" + + "\x54\xcd\xfa\xd4\x87\x28\x89\xe0\xe5\xce\x60\xce\xe1\x8f\x95\x04\x70\xe7\xd1\x4d\x80\xe7\x3e\x18\x4e\x95\x79\xea" + + "\xf2\xcc\x89\x3c\x27\x82\xd4\x9a\x97\xe8\xbd\xc3\x0f\x96\xc0\x49\x5f\x9b\x2c\xfe\xa1\x81\xb3\x96\xa2\x78\x6e\x6b" + + "\x6f\x33\x7b\xd9\x48\xa2\x96\xda\x50\x02\xc7\x5f\x9e\x7f\xd4\x14\x89\x63\x12\x63\x4a\x54\x13\x3d\x49\x94\x7e\x24" + + "\x05\x49\x94\x54\x99\xa2\x81\x25\xad\x94\xf9\x4e\xe3\x59\xa7\x6d\x4b\x21\x9b\x27\xb3\x24\x65\x12\x52\xb9\x2b\x78" + + "\xce\xea\x0d\xff\x5d\x00\x0c\x47\x25\x7e\x17\x38\xd1\xea\x55\x21\x5f\x94\xcf\xbf\x3e\x7c\x52\xd8\xf0\x12\xa5\x99" + + "\x2f\x4c\xec\x11\xc9\x66\xe5\xb3\x57\x94\x3a\xeb\x26\x22\x0f\x36\xda\xcd\x03\xa2\xcc\x4e\x31\x80\x96\x14\xa3\xc4" + + "\x94\xe6\x9d\x1d\x0f\xaf\x6b\xfd\xcf\x2d\x2d\x53\x5b\x90\xd2\x38\x8d\x07\x28\x91\xc4\xe8\x89\x9b\xca\xbd\x0e\xa9" + + "\x0f\xf5\x2d\xbd\xd6\xc4\x14\xad\x51\xde\x40\xc6\x19\xfc\x51\x3c\x9f\x48\x67\xd5\x17\x48\x91\x3d\x7a\x38\x26\x9f" + + "\x13\x3a\xa5\x97\xb5\xa4\x30\x40\x79\x26\xe4\x73\x42\x95\x78\x8e\x49\xfc\x06\x4a\x79\x40\x16\x5c\x5c\x12\xd8\xbd" + + "\x83\x16\xd0\xac\x95\x52\x28\x86\x3b\xa8\x06\xb5\x17\xa8\xb6\xc0\x44\xe7\xf0\xfe\xcc\x4a\x47\xa0\xc0\xc5\x6b\x35" + + "\xe0\x55\x01\xcf\xaf\x5b\xfa\xa4\x50\xb2\x0c\x94\x0f\x8f\xa1\xb9\xd4\x1c\xc7\x0d\x3d\xb7\xfa\x9c\xd2\x87\xd6\x90" + + "\xb8\x53\x62\x68\x85\x39\x08\x36\xb1\x67\x6a\xa3\x01\x25\xe9\xfc\x5c\x83\x8d\xa4\x80\x0f\x5a\x12\x35\x20\x6a\xcf" + + "\x3f\x12\x3f\x9c\x8e\x6a\x94\x6e\xfb\xde\x8a\x1f\x34\x0f\x28\xe5\x79\x2d\x69\x6c\xc8\xb8\xda\x8c\x5b\xa5\x25\x63" + + "\x44\x83\xe8\xa5\x12\x01\x41\xc7\x31\x1c\x81\x8f\x13\xc6\x0d\x6f\x81\x0a\x84\x59\x81\x13\xb6\x2e\x27\xa5\xbb\x50" + + "\x9f\x8b\x0a\x6a\xfa\x41\x64\x80\xa2\x0f\xa7\x4f\xf4\xa1\x43\x67\xa2\x72\x22\x0b\x14\x4e\xbb\x3d\x3f\xab\x80\x07" + + "\x46\x0e\xfb\xe1\x72\x74\x96\x22\xdd\x9e\x9f\x0d\x37\x1c\x8a\xf3\x9b\xee\xa5\x82\x76\x64\x96\x27\xe0\x56\x62\x38" + + "\x44\xb4\x8f\x30\x28\xda\xc6\x60\x58\x54\x18\xb1\x1c\xe9\xb8\x73\xc3\xdb\x1a\xdf\x8c\xf5\x79\x2c\xc2\x90\xb1\x45" + + "\x45\x57\x70\xa3\x09\x4b\xc0\x7a\x0b\x09\x2c\x41\x18\x1e\xf3\x04\xd6\xc9\xb4\x06\x14\x81\x13\x29\xfe\xe3\x24\x29" + + "\x4c\x4a\x1f\xb0\xe7\xb5\x02\xa8\x7d\x4a\xff\xed\x76\x2e\xc4\x5d\x5f\x9f\xf5\xfa\x09\x2c\x81\x25\x0c\x83\x8b\xeb" + + "\x59\x5d\x82\x33\xee\x11\x74\x05\x17\xb4\xf3\x48\xe8\xf3\x0d\x88\x07\x31\xca\x8d\x3e\x24\xd2\xb4\xc4\x58\xb2\xba" + + "\xf7\xc7\x5d\xfa\xe1\xf1\x19\x21\xa3\xe1\x95\x48\xa0\xb7\x84\xd3\x5b\xc7\xdf\xde\x4c\x16\xf4\xb6\x5c\x6d\xeb\x3f" + + "\x3f\x62\x8a\xc5\xdd\x07\xcb\x5e\x02\xbd\x70\xec\x88\xe5\x34\x90\x32\xaa\x3d\xcb\x0a\x48\xe9\x16\x61\xd4\xff\xf0" + + "\x28\x85\xcb\xb3\xe8\x05\x98\xf3\xcb\x52\x11\xc3\xdf\xba\xac\xcf\x76\x24\xa6\xab\x74\x2b\xbe\xe5\xef\x3e\x39\x3c" + + "\xb6\xf3\x34\x9b\x35\xbd\x9c\xed\xaa\x49\xc7\xe5\xdb\x60\x5d\x27\x5c\x50\x4b\x2e\x76\x78\x71\x6c\x44\x3e\xbb\xb4" + + "\xce\x1c\x87\xdc\x9d\xd6\x5d\xa7\xac\xfa\xef\x07\x70\x70\xd4\x1f\x7b\xf1\xe7\x22\x4e\x16\x61\xa2\x53\x1f\x2e\x02" + + "\x69\x46\xa1\xb6\x5b\xc0\x78\x5c\x41\x0e\xcb\x13\x79\xca\x75\x3b\xfc\x5d\x5f\xbc\xb1\x48\x57\x18\x9d\x59\xa3\xa3" + + "\x77\x02\x58\x02\xcb\xd0\xba\xcf\x4a\xd8\xc2\xd5\x81\x6b\x13\x9a\x52\x80\x0c\x28\xed\x59\x94\xac\xa7\x3b\x75\x1f" + + "\x6b\x76\xb1\x3e\xc0\x76\xc3\x9a\x24\x23\x65\xac\xc3\x7c\x02\x76\x73\x75\x50\xf8\xdf\xd3\xe9\x0c\x27\x50\x5b\xa0" + + "\x66\xdc\xc4\xd3\xea\x71\xfb\x2b\x71\xe7\xda\x61\xed\x85\x05\x66\xd4\xd2\xfd\x4d\xfa\x20\xf3\x12\xc5\xa4\x64\x45" + + "\xda\x2a\x40\x55\x5d\xfe\xbd\x88\xfd\xf4\x68\x63\x0e\x82\x9e\x48\xaf\x29\xc5\xe5\x81\x44\x49\x11\x28\xfe\x45\x6f" + + "\x70\xc3\x4b\xa7\x67\x96\x63\x18\x20\x06\xab\xa9\x32\x25\xba\x13\xab\x5b\x9a\xe2\xf9\xd4\x86\xe3\x81\xea\x24\x8d" + + "\x66\xa4\x77\xca\x13\x69\x95\x95\x4e\x1f\x1e\x95\xbf\xfd\xa6\xb1\x94\xb8\x4f\x5d\xa4\x83\x4b\xc8\x2f\xc1\x84\xc9" + + "\xd6\x96\x9c\xe1\x46\x3d\x96\x52\x24\xd7\xe4\x7a\xed\xa2\xa4\x9b\x2e\x9f\x12\x98\x54\x0e\x16\x31\x20\x68\x09\xea" + + "\xc3\x97\xea\x40\xa3\x9a\x91\xd4\x58\xb2\x27\x5c\x19\x9f\xa1\xf2\x77\xb2\xdc\xc7\x11\x28\x1a\x47\x53\xbc\xd5\xb2" + + "\xc0\x31\x0c\x0f\x3c\x2d\x33\x92\x48\x69\x20\xe1\x8d\xc7\x46\xec\x76\xa3\xb1\x59\xb7\x50\x5c\x2c\x92\x5e\x3c\xc7" + + "\x54\x61\x29\xd3\xed\xb7\x0d\xa0\xb4\x83\x02\x54\x8f\x35\x6d\xf2\x9b\xe2\xa6\x18\x22\x69\x23\x73\xd2\x73\x64\xbb" + + "\xba\xce\x4e\x20\x02\x7a\x99\xf2\x88\x08\x4f\x13\xae\xca\xb2\x4b\xc4\x78\x51\xe7\xdf\x01\x71\x76\x2f\xcd\x91\x74" + + "\xfb\x17\x53\x22\x2a\x25\xc8\xba\x62\xd9\xac\x15\x8c\xb0\x10\xe4\xdd\xc1\x4c\xb0\xb9\xe0\xd4\xc8\x86\x39\xd2\xb2" + + "\xe7\x02\xa6\x4a\xd1\x07\x45\x95\x94\x67\x59\xe2\x02\xa4\x7c\xe1\xd3\x45\x2a\x18\xb1\x74\x62\xc6\x74\xc0\xd5\x8b" + + "\xac\x9e\x2a\x70\xa2\xa3\x3b\x16\x3f\x2c\xa5\xc0\xe6\x06\x41\xdd\x86\x4d\x06\x4d\x19\x58\x54\x12\x9c\x7f\x76\x60" + + "\x95\x1f\x78\xbf\x1c\xc2\xfc\xb0\x59\x87\xe7\xee\xe9\x34\x81\x4a\xeb\x6d\x64\x2a\x60\xb6\xfe\x54\xff\xb7\x2d\xa7" + + "\xb1\x87\x35\xa4\xa3\xee\xe4\x4b\xef\x8a\x26\x29\x11\xe2\xb0\x94\x16\x52\x31\x11\x48\x6d\xfd\xd3\x6f\x23\x76\x99" + + "\xb8\x7e\x73\xbf\x6d\x24\x49\x03\x51\x8d\x5b\x41\xc3\x6e\xdc\x56\x9b\xbb\x0f\x30\xa9\x24\x64\x47\x7c\x76\x09\xe7" + + "\x4b\x83\xac\xe2\xbb\xec\x8c\x6e\x39\xd8\x56\x4f\x2c\x6d\xc9\x05\x13\x4d\x53\x7f\xf4\x09\x09\x45\x6b\x21\x82\xc5" + + "\x6d\x01\x59\xa8\x1e\x35\xc1\xf3\xae\x39\x9d\xe5\x43\xd1\xf9\x19\x92\xc2\xed\x4e\x9d\x25\x3c\xfe\x81\x0c\x32\xae" + + "\xf7\xe5\x96\xf9\xcb\xff\xf9\x7f\x12\x89\x04\xbd\xe7\xc4\xc4\x11\x4b\x63\x69\xfc\x39\x51\x3d\xa8\x9a\x24\x24\x5a" + + "\x93\x5e\x97\x4c\xcc\x38\x06\x48\x89\x37\x9e\xba\x00\x25\x31\xde\x73\xa2\x9a\xd6\x2b\xfc\x4e\xff\x4a\x10\x18\x5e" + + "\xd0\x9f\x7b\xed\x49\xa2\xcb\xd1\x40\x54\x81\xfe\x73\xcb\x69\x4f\xac\xa6\xc9\xea\x73\x26\x63\xaa\x5b\x9a\x96\x84" + + "\x0c\x7b\x10\xaf\xd4\x5a\xba\x64\xf4\xb6\xd2\x5b\x4e\xfb\x7f\xfe\x92\xf9\xbb\x95\x1c\xd2\xde\x34\x51\xc7\x78\x51" + + "\x15\xda\x88\xc7\x0c\xa5\x51\xcf\x94\x2c\xf3\x1c\x6d\x28\x72\xc6\xc0\x3c\x49\x9b\xcd\x0b\xcd\x52\x8a\x0a\xb4\xbf" + + "\x1e\xb4\x4d\xaa\xf8\xb2\xa6\x54\x90\xcf\x25\x19\xac\xd4\x1c\x6d\xcb\x95\xb2\xfe\xbf\x4a\xa5\x5d\x2e\xab\xc6\x63" + + "\x53\x1a\x96\xcb\xc3\x72\xc8\xff\x2a\xad\x29\x3e\xab\xea\x0f\xfa\x5f\xe5\x9a\x5e\xaf\x32\x6d\xb7\x55\x1e\xec\x4b" + + "\x93\xee\xb5\x5d\x2e\x97\x1b\x75\x1d\xf4\xb6\xd5\x1f\x57\x23\x6e\x96\x1d\x2d\x09\x9c\xa5\xf5\xc2\xa5\x4e\xbc\x66" + + "\xfc\xd5\xde\x89\x58\xa9\xb8\x12\xd7\x2d\x5e\x28\x97\xcb\xd5\x99\xfe\xd7\x31\x57\x2e\x57\xea\xed\xf2\x49\x1c\x9f" + + "\x08\x96\x5f\xce\x75\x54\x7c\xaa\x57\x7d\xd5\xe9\xd5\x96\xd3\xd6\x55\x1a\x51\x4d\x96\xd7\x49\xd5\x96\x06\x53\x6b" + + "\xfd\xaf\x4e\x39\x57\xab\x5c\x1a\xd2\x7a\x31\xca\x95\xcb\xe5\xbe\x68\x80\x8a\x3a\xd5\x7a\xce\xe8\xdc\xf9\xb8\x24" + + "\x74\xd6\x08\xa3\xb3\x23\xfd\xaf\xfa\xb0\xd4\xaf\xb7\x9a\xeb\x79\x23\xa7\xf3\x57\xdb\x18\x95\x8c\xbf\xdb\xe5\xfa" + + "\xa5\xdc\x6e\x1c\x96\x73\x9c\x2f\x97\xcb\x03\xa3\x53\x63\x9d\x95\xf6\x2b\x4e\x6f\x70\xa9\x55\x39\xd2\x59\x9d\xbf" + + "\xa2\x4e\xbe\x52\x3b\x95\xcb\xe5\x15\x59\x2e\xf3\x19\x0c\x74\xce\xbb\x65\x73\xb4\x5d\x0e\x2a\x5c\xaf\x59\x3d\x2d" + + "\x89\xca\x85\xde\xf4\x3a\x4b\x50\xeb\x8e\xc7\xd7\xce\x92\xac\x70\xcb\x66\x53\x67\xba\xd8\x93\xd5\x73\xe7\xda\x2b" + + "\xed\x97\xf5\xda\x79\xfb\xf6\xaa\x2e\x2b\x72\x8d\xab\x08\xdb\xdc\xb6\x5a\xae\x2e\x0b\x95\xe9\xb6\x6c\xd2\x1b\x16" + + "\xce\x13\xae\xb2\x5d\xcd\x2b\x5b\x6a\x3e\x24\x47\xfb\x5a\xb9\xd8\x3b\x56\x7b\x18\x7d\x3a\xd7\x06\xa0\x9d\xaf\x6c" + + "\x97\x42\x85\x5f\xed\x2b\xaf\x27\xb6\x4d\x63\x38\x4b\xbf\xed\xda\x4f\x8d\x66\xa5\x45\x8f\x98\x4b\x39\x37\x5a\x6d" + + "\x87\xa3\x72\x35\xd7\xaa\x9e\xea\xe5\x72\x8b\xa3\x0b\x4c\x43\x56\xd4\xf6\xb6\x5c\x5f\xb0\xdb\xe2\x34\x8f\x2f\x04" + + "\x30\xa7\x2b\x6b\xbc\x71\x18\xbe\xe5\x4e\x85\xd5\x70\xf1\x4a\xae\xa5\x9e\x90\xbd\xd0\x7c\xa3\x36\x2e\xf7\xcb\x2d" + + "\xe1\xf0\x7a\xe4\x2a\x15\x50\x79\x1b\x16\x2f\xc2\x45\x2a\x9e\xb2\xbb\x01\x9b\x21\x15\xe2\xc0\x91\x62\x3f\x7f\x2c" + + "\xaa\xcb\x7e\x67\x9d\x9d\xf7\x18\x30\x1f\x1d\xbb\x3b\x0e\xab\xb1\xd2\xf5\x95\x39\xf7\xf2\xb2\x7a\x59\xaa\x44\xad" + + "\xc3\xed\xa6\x6b\xed\x70\x5d\xd2\x4f\xb5\x36\x37\xe9\x2d\x14\xed\x92\xdb\x17\xa5\x66\x77\xfd\x24\x62\xe7\x2a\xc8" + + "\x16\xc0\xbe\x57\x58\xe5\xf3\x3b\xbc\xb6\x9e\x5e\xb2\x7c\xfe\x4d\x6e\x89\xdd\x0d\xd3\x1d\x90\x7d\x66\x5c\x91\x86" + + "\xb9\x3e\x33\x1f\x4b\xcb\xd2\xa0\x4f\xe6\x04\x96\x79\xa7\x32\x17\xbc\x5f\x13\x47\xe2\x7b\xb6\x51\x5e\xb0\x8a\x84" + + "\xe1\x9d\x39\xab\x6c\x71\x7c\x99\x67\xd7\xc3\x12\xb6\xca\x6b\xe4\xb0\x96\x5b\xe5\xfb\xfd\xf1\x44\x5a\xe5\xfa\xa5" + + "\xf9\xab\x34\xc3\x06\xa5\x26\x50\x98\x69\x67\x30\x7a\x7b\xdf\xb3\x13\x86\xcc\x89\x1d\x7c\x59\x5b\x54\xa6\xf8\x68" + + "\xf6\x44\x16\xf2\x99\x4e\x45\x25\xd6\x6f\xcb\xb7\xbd\x52\x5b\x69\xe4\x51\xed\x28\x47\x32\x3b\xcb\xb4\x49\x81\xe6" + + "\xd9\x66\xad\x3a\x39\x6d\x9b\x95\xe1\x70\x3c\xa9\xef\xb8\x1c\x5b\xdd\x2f\xdb\xe5\x26\x93\x9b\x34\xdb\xf3\x46\x99" + + "\x9d\x61\xa3\xe1\x44\x9e\x0b\x43\x19\x3f\x1f\xf3\x6c\x39\x37\x98\x0c\xf8\xbe\x42\x5c\x1b\xe5\xfe\xba\x35\x5d\xae" + + "\xdf\x89\x81\xd6\xaf\xca\x33\x6e\xf4\xae\xee\x9f\xc0\x53\x61\x3d\x19\x96\xd9\xab\xc6\x15\x8f\x6f\x9b\xc3\xdb\x66" + + "\x43\xd3\xc5\x62\x89\x2c\x5d\xaf\xe2\x9a\xee\xf5\xde\x76\xad\x5a\xe6\xb5\x56\x6b\xd6\x97\x58\xb9\x22\x2f\x17\xd9" + + "\x62\xae\xcf\xf2\x92\xd0\x5e\xf2\x52\xae\xd3\x1e\x37\xeb\xcb\x92\xd0\x63\x89\xc6\x98\x63\x96\xdc\xfb\xbe\x3e\x95" + + "\x59\xad\xbf\xac\x8d\x97\x19\x66\xb1\x2d\x61\x44\x96\xcf\xd5\x98\x33\xff\x3e\xe5\x31\x9a\x3d\xac\x46\xac\x48\x77" + + "\x5e\x15\xb5\x3a\x6c\xb5\x4f\x74\xf3\x70\xda\x88\x6c\xaf\x7d\xad\x88\x87\x56\x6e\x7c\x11\x9e\xf0\x1a\x71\xa5\x9a" + + "\x3b\x16\x2c\x78\x76\xb9\xa9\x11\xd9\xe2\xb5\x88\x09\xaf\xcb\x9e\x70\xec\x90\x0b\x30\x98\x5c\x99\xe2\xb5\x04\x0e" + + "\xbb\x75\xef\xdc\xe9\xb3\x87\x5c\xb5\x74\x7e\xab\x67\xd6\xd5\x1e\x57\x3b\x8c\xfb\xed\xf9\x76\x3f\x19\x9e\x2a\x75" + + "\x92\x64\xbb\xe3\x72\xbd\xb0\x3a\xb1\x4a\xab\x2b\x96\x5b\xab\x41\x73\x96\xd9\x0b\x95\xe6\x84\xeb\xef\x56\xe7\x6b" + + "\xbb\x50\x68\xad\x0b\xad\xf7\xdd\x35\x5f\x9c\xec\x26\xf9\x23\xfb\x44\x76\x26\x19\xba\xda\xde\xbf\x8f\xb1\x5a\xbe" + + "\xfa\xfe\xb6\x21\x77\x8b\xdc\x70\xc7\x9c\xc9\x5d\xfe\xc8\xd7\x36\xab\x5e\x8e\x5a\x35\x98\xf5\x6c\xd1\x3e\x6b\x03" + + "\xbe\x43\xbd\x65\xe6\x92\xa6\xf5\xc4\x56\xbe\xda\x19\x66\xd7\x13\xee\x00\xb2\x6f\xca\x92\xc8\xb6\x76\x62\x95\xd5" + + "\x0e\x94\x70\x3e\x1d\x8f\xd7\xc6\xee\xbc\x7f\x53\xfa\xbb\xec\x15\xd3\x9a\xa5\x09\x99\xc7\x5b\xb5\xe5\x26\x3f\xd8" + + "\x0a\xa3\xf9\x91\x5f\x66\x3b\xc3\x96\x34\x5c\x17\x79\x6d\x46\x2c\x81\x56\x58\x6e\xe6\xb4\x56\xdf\x8d\xf0\xb2\x76" + + "\x1e\x67\xe8\xf1\x22\x3f\xcd\x51\xfc\x26\xdf\xef\xd4\x2b\xc3\xc2\xf2\x75\x5b\x3a\x29\x8b\xe1\x2b\x83\xb5\xc1\xaa" + + "\xba\x26\x0e\xe7\x02\x39\x65\x59\x7c\x2a\x3e\xf5\xaf\x4f\xa5\xee\x64\x50\x2f\xbc\xbd\x16\x0a\x05\xb1\x4f\x9e\xdf" + + "\x99\x89\x08\x26\x15\xb6\xba\x3e\xe7\x72\x79\x61\xa5\xb0\xe2\x74\xaf\x54\xaf\xc4\x92\x2d\x97\x98\x71\xef\x4c\x35" + + "\xb1\xf1\x52\x98\x14\x59\xae\xb4\x7a\x3b\xe0\xf5\x52\xee\xad\xb3\x1c\x8e\x5b\xf9\xee\x48\x60\xcf\x80\x2e\x0c\x0b" + + "\x2b\xb0\x10\xb5\xed\xf0\x30\x93\xd7\xec\x13\x95\x7b\x9f\xf7\x55\x7a\x3f\xbb\x4c\x18\x11\x7b\x2b\x48\x85\x9a\xbc" + + "\x7d\x9b\x17\x73\x4f\x87\x11\xfd\x8e\x55\xda\x93\x0d\x5f\xe1\xf6\x4d\x66\xba\x2b\xaf\x4a\xa7\x65\x65\xd6\xce\x0a" + + "\x9a\xd2\x3f\x2a\xa5\xbd\xbc\xc5\xa7\x2a\xf5\x9a\xd7\xb2\xf9\x12\x46\x49\x92\x52\xc5\xf9\x2d\xd6\x94\x7b\x2d\xa2" + + "\x55\xee\x69\xfb\xd5\x4e\x1d\x73\x64\x7b\x5b\xaa\x8f\x67\x92\x3a\x60\x0b\xcd\xe1\xa6\xbb\x7b\xed\x77\x8f\xaf\x72" + + "\xef\x75\xdf\x1d\xbf\xf6\x1b\xe5\x3d\x55\xc0\xb1\x26\xb3\x1d\x73\x45\xa9\xd6\x1b\x4b\x7d\xf6\x7d\xb7\x7f\xad\x2c" + + "\x26\x5b\x31\xab\x9e\x34\xea\x7c\xb9\x36\xf7\xd3\x6b\xfb\x4a\x81\xd2\x48\xeb\x32\xf3\xfd\x98\x5f\xe1\xaf\xb5\x45" + + "\xbe\x7e\xdd\xf2\xfc\x75\x96\xeb\xcf\x72\x63\xa9\xd6\x18\x0f\x9a\xb5\xdc\x53\xab\x0a\x86\xd3\x46\xf1\xa4\xac\xc8" + + "\x96\x5a\xbc\xb6\xd7\x64\x9d\x9a\x9d\x2f\xc5\xda\xb2\x31\x59\xf7\xaa\x9d\x37\xb1\xdb\x9e\xaf\xce\x87\xed\xaa\x4e" + + "\xf4\x79\xee\x58\xc5\xb6\x34\xfe\x5e\x1f\x4e\x47\xc5\x5d\xfd\x75\xbb\xa2\xcb\x0b\xd0\xc2\x8b\x15\xae\xba\xe5\x49" + + "\x91\x6f\xb1\x58\x55\xd9\x55\x72\xad\x35\xb9\x59\xe4\xb6\x6b\xac\x53\xa0\x4b\x6f\x87\xd6\x4c\xdd\x6c\xf7\x67\x42" + + "\xcc\x1c\x27\xcb\x4c\x67\x56\xdc\x8b\xc5\xb7\xe6\x79\x53\xd8\x50\x83\x55\xf1\x7d\x51\xec\xcc\x2a\x97\x43\x7b\x93" + + "\x3b\xb1\xfb\x92\xfa\xbe\xe0\x39\x82\x3d\xbe\x75\x66\x25\x56\x91\x31\x76\x59\xe0\x8b\x0a\x71\xce\x16\x2e\x0c\x35" + + "\x53\xd7\xb9\xf3\x71\x71\xcc\xe4\x0a\x47\xa2\xbf\xdb\x54\xf9\xa2\x40\x4a\xa3\x5a\x87\xe6\x1b\x3d\xa9\x8e\x5f\xf6" + + "\xd8\x94\xc5\x27\x20\x97\x11\x8a\x7c\x63\x01\x4a\xef\x95\x55\x0d\xab\xef\x59\xc0\xd1\x60\xbd\x38\x5e\xdb\xc4\x5b" + + "\xb7\x7a\x90\x5e\xab\x87\x7d\xf7\xc0\xbe\xb5\xc1\xeb\x89\x6a\xbd\xd5\xa5\xc3\xf9\x94\xdd\xf7\xde\xa9\xf6\x74\x51" + + "\x1b\xe2\x32\x26\x70\xf2\x53\xef\x52\x1d\x8c\xc6\xd5\x21\x25\x4d\x55\x71\x89\xcf\x56\xd9\xa2\x38\x9d\x28\x4d\x02" + + "\x9f\x1f\x67\x52\x6e\x83\x0f\xd4\x7a\xa7\xc1\x1e\xc7\x9b\x72\xe3\xd4\xdc\x4c\x8a\xb3\xd6\xa8\x07\xca\xb3\xa9\x7c" + + "\xea\x0e\xa4\xee\x75\x37\xc9\x8c\xea\xed\x5d\x76\x90\x6d\xb0\x87\xe9\xa8\xfe\x24\xd6\x47\x8d\x27\x4c\x9e\xb4\x19" + + "\xb2\x71\x39\x1f\x49\x75\x73\x6a\x5e\xb6\xb9\xc1\x93\x70\xc9\x1d\x57\x47\x4c\x5d\x09\x05\x09\x0c\xf9\xc6\x6a\x30" + + "\xe2\x2a\x4f\x5a\x13\xeb\x9d\xc0\xac\xaf\x50\x80\xd3\xf8\xc2\xe5\xcc\xbd\xb5\x5b\x93\x7d\x2e\xc3\x70\xb3\xb3\x5a" + + "\xca\x49\x24\x5f\x5f\x72\x2a\x5b\x21\xb8\xb2\xb6\xa7\xd9\xba\xa8\x96\x69\x4d\xaa\xcb\xe7\x5c\xae\x21\x15\x17\xa2" + + "\x3a\xec\x51\x65\x82\xa8\xf0\xef\x55\x02\x1b\x09\x6c\xe5\xf5\xba\x94\x76\xab\xcb\x92\x3a\x6f\x9f\x3a\xdb\x6d\x8f" + + "\xce\xb5\x5a\x4b\x42\x78\xea\x96\xea\xfb\xf9\x78\xc9\xef\x38\x65\xc0\xa9\xca\xa0\xc0\x64\x67\x92\x72\xbe\x5e\x56" + + "\xf9\x19\x9d\xe3\x3b\xef\xed\x49\xf9\x80\xaf\x89\xd3\xa0\xc2\x28\xdd\x3a\x5f\x7e\x7b\x5a\x37\x68\x02\x34\xa9\x55" + + "\x63\xb6\xde\x0b\x9d\xbd\x76\x24\x0f\x93\x7c\x87\xbf\x92\xb5\x4c\x4f\xac\x34\x24\x25\xcf\x6d\x33\x9d\x37\x71\x34" + + "\xe3\x2a\xea\x2c\xdb\xed\xbf\x36\x9b\xef\x15\xbc\xca\x76\x30\x6d\x3b\xbc\x9c\xf8\x59\xb7\xd1\x69\x1f\x86\xdb\x49" + + "\x43\xd3\x4e\x7b\xee\xf5\xcc\x5e\x86\x4c\x79\xd5\x63\x7a\x4b\x6d\x4c\x49\x65\x70\x7a\xdf\x1c\x17\xb3\xe5\x5b\x79" + + "\x5d\x9b\xe4\x33\xb8\x00\xae\x45\x72\x39\x2e\x36\xc6\xb5\xcb\x69\x98\xef\x6f\xca\x22\xd8\xe4\x1b\xfd\x7a\xb3\xc7" + + "\xf1\xa2\x2c\x5f\x8e\x22\xa9\x54\xf2\xda\xe4\xf2\x8e\xcb\x03\x1a\x8c\xe6\xa2\x4c\xcc\x3b\xf5\x55\x63\xd1\x02\x0b" + + "\x52\xba\x48\x40\xc0\xc5\xc9\x64\xcb\xbc\xd3\x39\x16\xd4\x96\x85\xf5\x00\xbc\x5e\xf3\xd9\xa3\x78\x7d\xca\x30\xa3" + + "\xf3\x93\x9a\xc5\x5b\x1a\xd1\x69\x52\xe2\x90\x54\x01\xa7\x6c\xe6\x9d\x6e\x49\xdb\x49\xd7\x69\x06\x27\x26\x62\x7d" + + "\x27\x92\xd2\xe1\x5c\x1a\x5c\xa7\x59\x7a\xdf\x5c\x57\xae\x95\x53\x7f\x70\xd9\xe7\x4b\x9d\xcb\xfe\xb5\x85\x89\x19" + + "\xac\xdb\x2b\x95\x0b\x84\x76\x38\xf5\xb2\xd7\xa1\xdc\x1e\x1d\x72\xe5\x33\x37\x91\x54\x50\x97\xb7\x6f\x03\x61\x3d" + + "\x1a\x5c\x1a\xa0\x94\x59\x10\x17\x30\x3d\x4a\x53\xb5\x7a\xa9\x1f\x77\xf4\x56\x2d\x6c\xe4\xf9\x5b\x36\x43\xbd\xf2" + + "\x8d\x3e\xf6\x94\x6f\x35\xa6\x20\x5f\x2b\xb5\x1a\xd7\xcc\xe2\xed\x54\xe1\xfb\x25\x6d\xf2\xde\xbf\xac\x76\x8d\x4e" + + "\x71\x3a\x20\x46\xd3\x09\x99\x61\x73\x55\x59\xab\xd2\x5a\xfd\x02\x38\x55\x1c\x5c\x16\xbb\x72\xb7\x2e\x17\x98\xc5" + + "\x2b\x35\x7c\xdd\xe4\x07\x85\x76\x4f\x6c\xee\xfa\xfd\x72\x75\xd4\xeb\x9e\xdf\x99\x65\x67\x51\x04\xbd\xee\x51\x10" + + "\x98\x7c\xb1\xf6\x44\x5d\x2a\xdd\xcb\xeb\xeb\x72\x75\x5a\x9e\x6b\x5a\xa6\xd9\x67\xaf\xf5\x49\xad\x83\x91\xc3\x33" + + "\x7f\xe1\xb2\x32\x97\xcd\xac\x4a\x59\x91\x59\xce\xc6\x07\x61\xbb\xc3\x66\x99\xd7\x7d\xbb\xc1\x0f\xf2\x4f\xf8\x6b" + + "\x76\xd3\x20\x9e\xb2\x5b\xec\xfd\x69\xa9\x1d\xc6\xed\x0d\xb6\x3e\x0a\xdd\xf7\x19\x56\x12\x45\x69\xdd\xce\xb3\x27" + + "\x7a\xd7\x7e\x2b\x52\x6f\xd5\x57\xea\xb2\x53\x1b\x64\xa7\xb2\xcc\x76\xa9\xd7\x32\x18\x75\xc7\x97\x65\x05\x67\x8b" + + "\xb8\x34\x39\x81\xd2\x98\x7f\xeb\xed\x17\x95\x42\x13\x13\x36\xdd\xd2\x7b\x01\xdf\x52\xef\xef\xa7\xb7\xf7\x43\xbe" + + "\x30\x1c\xbd\x8e\xf1\xa7\xc1\x7a\x72\x7e\x52\xd7\xc3\x4b\x69\x38\x23\x06\xc3\x56\x7d\x4c\x37\xf7\x4c\xa3\x02\x26" + + "\x85\x63\xe1\x9d\x53\xdf\xdf\x15\x35\xdf\x27\x09\xae\x50\xcc\x8c\x9e\xf2\x63\xec\x7d\x38\xe8\xcf\x76\x44\x9e\xda" + + "\x0e\x66\x92\x7a\xaa\x5e\x86\xf3\xf6\x8c\xac\x15\xf3\xc7\x16\x99\x5d\x9f\xfb\x53\xb0\x98\x61\xaf\x4f\x8b\x15\xd5" + + "\x3a\x66\x44\x21\xf3\xaa\xb6\xd8\xc1\xf1\xc2\x9f\xd4\xb9\xd8\x59\x64\x5a\xf5\x22\x9f\xc9\xcd\xab\x47\xf2\xfc\xc4" + + "\x93\x22\x56\xbc\xe6\xa7\xd3\xe2\x7a\xda\xa3\xb2\xbd\x8a\x3c\x16\x7a\x85\x46\x3e\x5b\x3e\x8b\x1a\x53\x2d\x81\x4a" + + "\xf5\xb5\xbe\x9a\x97\x5a\xca\x53\xb9\xd2\x7f\xd7\xce\xdb\xf2\x50\x19\xaf\x7b\x9a\xa0\xcc\x0b\xfc\xeb\xf0\x20\x8d" + + "\xb7\x15\x76\xac\x4c\xa8\xeb\x7c\x36\x25\x86\xe5\xd7\xf9\xb2\x78\xe2\xb8\x03\xfb\xde\x10\x86\xdb\x79\xa7\xb2\x95" + + "\x16\xdc\x61\xde\x16\x72\x44\xbf\xc0\xbe\xaf\xd6\x15\x75\xbb\xb8\x92\xc4\x80\x7c\x23\x0f\xe3\x23\xd5\xdf\x36\x9a" + + "\xe2\xe0\x70\x54\x47\xa7\x62\xbb\xd8\xa5\x58\xaa\x84\x9f\x7a\xc7\xda\xe1\xfc\x3e\x6f\xb0\xa0\x5f\xc8\x14\x9b\x33" + + "\x6d\xc2\x6b\xcc\xb8\x98\xad\x0d\xd5\xc5\x48\x78\xa7\xc9\x95\x46\x77\x16\xf5\x99\xc2\xcf\x08\x46\x9a\xcc\xf7\xe4" + + "\xd3\xf2\x20\x0a\x05\x9c\x69\x92\x1b\x92\x14\x32\xef\x4b\xac\xb7\x6b\x97\xb2\xc7\x63\x29\xd3\xdf\xc8\xe7\xc5\xac" + + "\xa4\x4e\x17\xca\xf9\x42\x6c\xd6\xfd\x0b\x2e\x29\x79\x92\x1e\xf0\xb5\x91\x38\x90\x5e\x1b\x00\x2c\xe8\xf5\x29\x47" + + "\xb4\x32\xeb\x7e\x6d\x42\x0e\xd5\xec\x86\xdf\xaa\x59\x7c\x3b\xaf\xe2\x7c\x0d\x17\x37\xd3\x59\x66\x51\xe8\x33\x55" + + "\x71\x3c\x65\x5a\x4b\x02\x14\xa9\xcd\x75\xf3\xaa\xbe\xaf\xc8\x15\xbf\xdb\xd4\xde\x77\xdd\x81\xb0\xcf\x4e\xc1\xba" + + "\xbf\xa8\x3c\x51\xad\xb2\xf2\xb6\xac\x8d\xd4\xa7\x4c\xab\x56\x3b\x83\x09\x59\xe3\xde\x9e\xd4\xc6\xb6\x30\x90\x47" + + "\xd4\x6c\xd8\x6b\x56\x66\xc5\xd2\x9b\x0c\x2a\xcc\x8e\x20\xd8\x6a\x1d\x9b\x1e\xd6\xd8\xf4\xfd\xd4\x55\xfa\x73\xb5" + + "\x89\xd1\x87\x0b\xc5\x6c\xbb\x8b\x09\x18\x91\xca\x7a\x90\x7b\xca\xd2\x99\x23\x8f\x93\xf4\x41\x21\xc4\xd1\xfb\xd3" + + "\x64\x51\x1d\xd6\xe8\x71\x76\x3c\x78\x52\xf3\xd4\xfe\x09\x90\x19\xd0\x1b\x3f\xe1\xcc\x29\xbb\xd6\x0e\xd9\x65\x93" + + "\xd0\x8e\x8d\x6e\x71\xc1\xb4\x57\x47\x66\xc7\xcc\xf3\x93\x41\x26\x57\x29\xb4\x19\x65\x35\x9f\xbd\x09\xb4\x26\x90" + + "\x19\xb2\x54\xde\xaa\x6f\x6d\x6d\x32\x5e\x57\xb9\x76\x45\x21\x06\xef\xed\xe6\x55\x38\x10\xd8\xb8\xf7\x5a\x1e\x17" + + "\x2e\xef\xa7\x66\x65\xba\x69\x6e\xb6\xbb\xda\x92\xef\x76\x6b\xa0\x81\x8d\x37\x74\xb7\x42\x74\xc7\xe7\xe2\x86\x9f" + + "\x3c\x61\xc5\xcc\xfe\x7a\xcd\x5f\x06\xbb\x52\x5e\xd9\x68\x39\x45\x9e\xec\x98\xb7\x21\x2d\x74\x99\x5c\xe1\xf0\xca" + + "\xad\xd7\xb5\xf7\xc2\x6a\x7c\xcd\x2c\xb4\x75\x8b\x10\xfb\x05\xbc\xd0\x67\xf2\x84\x32\x7d\xa2\x8b\x6d\x1a\x1c\x8f" + + "\xc7\x42\x1b\x2b\x9d\xca\xf9\xf9\x71\x37\xa3\xa9\xcd\xfa\xa9\xa1\xae\xfb\xcd\xa7\xd5\xb0\x88\x8d\xc4\xfc\x6a\xa5" + + "\x1e\x95\xb7\x82\x06\xde\x08\xe6\x3a\x61\xa4\xfa\xe4\xd8\x67\x77\x55\x41\x55\x8a\x8d\x76\x8d\x50\x3b\xf9\xd2\x6c" + + "\x79\x64\xa6\xf4\x79\x9f\x2b\x5f\x97\x23\xfe\x95\xa6\xea\xd9\x22\x58\xf4\x47\xfc\x66\x5e\x6a\xe1\x94\x5a\xe2\xf2" + + "\x14\xdd\x6d\xc9\xf8\x42\x3e\xf4\x2b\xe4\x6b\xa1\xd6\x3e\xee\x17\x58\xf1\x82\xaf\x96\x47\x36\xfb\xba\x99\x53\x5c" + + "\xf5\xda\x7a\xba\x6a\xca\xb8\x26\xd4\x0a\xdd\xc3\xa2\x90\x3d\x67\x84\x0e\xe0\x2b\xc5\xe5\x2e\x5b\xd2\x8a\x22\xdb" + + "\x1f\x76\x3a\x44\xb5\xac\xb1\xb2\xd4\x68\x76\xd5\xe6\x56\x1b\x0f\xaa\x1d\x49\xaa\x36\x25\xaa\x53\xee\x4d\x76\xe3" + + "\x79\x6b\xb6\xc2\x8a\xcb\x32\x85\x37\xb6\x25\xfe\xad\x4d\x4e\xf3\xb5\x81\xda\x9c\xed\x6a\x94\xda\x01\xab\xd5\xd3" + + "\xf2\xc2\x6e\xaa\xa7\xcd\xe0\x5a\x3d\xf3\x95\x72\xbe\xd4\x2b\x2d\xba\x0b\xed\x4a\x15\x5a\x19\x85\x3a\x3e\x95\x26" + + "\xbb\x77\xf2\xdc\xe7\xb0\x93\xfc\x3a\x6c\x8f\xfa\x83\x5c\x57\xb9\x5e\x0b\x17\x99\x1c\xce\x96\xbd\x7c\x87\xc9\x48" + + "\x34\x3e\x3d\x8a\x19\x61\xc8\xb2\x87\x39\x9b\xaf\xf7\x17\xd2\x98\x58\x4e\x56\xc5\xe1\x24\x47\xac\x1b\x24\x93\x21" + + "\xc9\xd2\x55\x26\x15\x6c\xba\xd9\x10\x33\x71\x44\x68\xcc\x86\xc8\xcc\xab\x03\x86\xa0\x07\x58\xef\x94\x7f\x97\xe7" + + "\x6f\xe2\xf1\x2c\xcf\x30\x51\xd1\xc8\xcd\x8a\x21\x2e\x6d\x8d\xc6\x4b\xa5\xe6\x1c\x14\x8f\x7c\x7f\xd3\xaf\xbd\x3f" + + "\x55\x5b\x99\xc2\xa5\x5c\x16\x2b\x25\x56\x2c\x4c\x72\xc3\x41\x8e\xc6\xb7\xa5\x31\x7d\x56\x57\x5b\xe1\x2a\x6a\x62" + + "\x3d\xd3\xae\x35\x45\x46\x6b\xf5\x4e\xf9\x12\xdf\x38\x49\x55\x71\xa9\xf6\x9a\xe7\x27\xa5\x22\x17\x3b\xe3\xca\x3b" + + "\xd3\xbd\x56\x94\xd2\x70\xf4\xf6\x9e\x79\x5b\xb3\xf3\xde\xbc\xa1\x0d\x57\x32\x7e\xde\x1e\x2e\x19\x96\x3a\x65\x27" + + "\xf5\x96\x90\x9d\xcc\xcb\xe2\xb9\x31\x1f\x0e\xe7\x5b\xad\xd0\x23\x07\x33\x8c\xaf\x5e\xf1\xd9\x68\x79\xa0\xe5\x39" + + "\xcf\x5d\x0a\xd7\xfc\x8a\xc9\x1d\x94\xd3\x5b\xfb\x02\x56\xc3\x77\x9e\x23\xba\xdb\x6d\x41\xbd\x76\x66\x58\xe9\xed" + + "\xa2\x96\x27\xeb\xc1\x50\x5b\xb6\x95\x0a\xb1\xbc\xae\xf7\x9d\xe5\xbe\xb9\xed\x60\x42\xae\xbc\x7b\x9b\x52\x32\x2e" + + "\x1f\x97\x07\xfc\xb5\xf4\xae\x94\x0a\x57\x6c\xc9\x67\xe5\x6c\x96\x58\x13\xdd\x65\xa5\x50\x14\xe9\x65\x9b\x1f\xed" + + "\xa9\x43\xa6\xd8\x1c\xac\xc7\xea\x80\x5f\x51\x22\x5d\xae\xd6\x49\x86\xe4\xf8\xcb\x13\x4d\x3c\x15\x58\x72\xb9\xcb" + + "\xf1\xef\xec\x4c\x58\x2c\x2a\x4f\xdc\xa2\xbb\x39\x32\xef\xe3\xed\xfb\xe6\x55\x1b\x1e\x37\xad\xda\x0c\x1b\x88\xc7" + + "\xe1\x08\x7f\x67\x4f\x39\x62\x31\xce\x1c\xf7\x47\x95\xcd\xb0\x0b\x5a\xa9\x35\xde\x30\xea\x69\xdc\xe9\xb7\x25\xa1" + + "\xbe\xa9\xe1\xa2\xaa\x2c\x9b\x83\x27\x7c\xbd\x9d\x0c\x3a\x6c\xaf\xd8\x3a\xe6\xc1\xfe\xa9\x70\x9c\x6d\xf9\xf3\x61" + + "\x3c\x3a\x49\xaf\x22\x5e\x18\x97\xb2\x85\xb5\x90\x5f\x76\xaa\x60\x3c\x6e\x62\x03\x19\x17\x9f\x0a\x5a\x3d\x5b\xd0" + + "\xe8\x55\x46\x2e\x30\xea\xe4\x98\xab\x4f\x95\xa6\x5c\x5b\xcf\x0f\xe0\x95\xdb\xaa\xdd\x16\xfb\x3e\x99\xa9\x52\x7d" + + "\xf7\xd4\x99\x62\x7b\x6a\xbc\x13\x77\x25\xed\x5a\xcc\x6c\x95\xcb\x70\x7e\xea\x94\x2a\x74\x67\x51\xa9\x66\x0a\xaa" + + "\x30\x78\x6a\x67\xda\x8d\xe9\xa8\x03\xb4\xc6\x9b\xc2\x68\xe4\x9c\x96\xba\xf9\xda\xba\xde\xa1\x2e\xdb\x76\xb1\x3a" + + "\x69\x6d\x86\x93\xdd\x26\x87\x49\x9b\xda\x53\xed\x44\xf1\x93\xf7\xb6\x31\x7f\x5f\x12\x95\xfd\xb2\x59\x2e\xe7\x0e" + + "\x95\x8b\x52\x1c\xe5\x36\xf2\xe1\x58\xeb\x5f\xd5\x5a\xb5\x72\x2a\x6c\x32\xd9\xae\x30\xa6\xc4\x51\x5d\xbd\xaa\xad" + + "\x72\xe5\xb5\x5d\x7e\xe5\xb0\x4e\x61\x5b\x2e\x3b\xeb\x13\x4d\xba\x5c\x1e\xd5\xc8\xcc\xb5\x58\x68\x9f\x7a\xbb\xf2" + + "\x45\x1e\x56\xca\x65\x6d\x7b\x6a\xe7\x2c\xfa\xdb\x65\xb3\xbc\x59\x96\x4f\xe5\xc1\x7e\x58\xce\x39\x6b\x43\xb9\x32" + + "\x55\xae\x3c\x95\x7b\xa7\x72\xae\x5c\xaf\x96\xa7\xed\xca\xba\xdc\x5c\x96\xe9\x76\xb5\x59\xee\x2c\xcb\xca\xb0\x9a" + + "\xd3\x81\x85\x72\x2d\xbb\x1d\x9e\x2a\x9d\x65\x3d\x5b\x9e\xee\x2b\xf3\x65\x83\xdb\x2e\xb7\x15\x61\xd9\xd4\xca\xeb" + + "\xf7\x0a\xbe\x6d\xd7\xb7\xec\xb2\xda\xcc\xb5\x59\xa7\x3f\x95\xe1\xaa\xca\xf2\x06\x6f\xe3\xe5\x96\xdc\x76\xaa\x15" + + "\x69\x9d\x59\xd6\x72\xb5\x72\x65\x33\x29\xaf\x87\x3a\xff\xcc\xbe\x8e\xbf\x6f\xb1\xf2\x92\xe5\x8b\x93\x7d\xa9\xdc" + + "\x96\x66\x35\x6a\x36\x16\xae\x14\x4b\x37\x8a\x85\xb7\x5e\x79\xd4\x6d\xf7\xa4\x46\x99\xc7\x56\xad\x25\x5e\x69\x31" + + "\x95\x4e\x7b\x52\x2a\x4f\x4a\xe5\x61\x69\x34\x2c\x0d\xc1\xfb\xe5\xe9\xa2\x81\x7e\xef\x5a\xbb\x6e\x7a\x4f\xc5\xe2" + + "\x09\x7b\xcd\x55\x96\x19\xba\x5f\xee\x55\xf2\x7d\x62\x3d\xa5\xde\xde\x2a\xdd\xc3\xfe\xb2\xae\x76\x8f\x3c\x00\xe5" + + "\xf2\xdb\xae\xd8\xa9\x3d\xb1\x1b\xb6\x37\x2b\xb0\xd5\xec\x21\x77\x3a\xab\x85\xc1\x20\xd7\xbf\x0e\xc7\x2b\xba\x9d" + + "\x29\x76\xb5\x93\xb8\x39\x71\x05\xb2\x9e\x61\xcb\xa3\xc2\xa9\x33\xb9\xec\x33\xe7\x25\x58\xe6\x4a\x9b\xe5\x30\xf3" + + "\x76\xd5\x7a\x4f\xbb\xf5\x64\x55\xe8\x2e\xf3\x83\x39\x53\xe9\x30\x8b\x8c\xfc\xae\xe6\xfb\xcb\x39\xf5\x74\xed\x9d" + + "\x29\x3c\x2b\xbd\x2a\xe5\xfc\x54\x02\xca\x3b\x97\xe9\x9c\x34\x79\x79\x5e\x2d\x3a\x38\x2d\x4d\x67\x02\x58\x4d\xe7" + + "\x33\x7e\xb2\x7b\xc7\x32\x5a\x8b\xa2\x77\x02\x73\x3e\x74\x4b\xd8\x60\x54\x1c\x60\xd3\x7a\x6d\xd9\xeb\x33\x1a\x37" + + "\xae\xcb\x57\x72\x31\x6c\xbe\x5f\x79\x21\x8b\xed\xaf\x53\xa6\xbc\x6c\x34\x06\xeb\xe2\xa8\xd0\x1f\xac\xf6\xd8\x3b" + + "\xc1\x9f\xca\x97\x2b\xce\x15\xa4\xb2\x82\x9f\xa5\xc5\x51\x19\x6c\xb5\x25\xbb\x3a\x17\x4f\x4b\xf2\x75\x34\x23\xf2" + + "\xa5\xce\x8a\xbc\x34\x65\xe1\xfa\x36\xd9\x0d\xd9\xe3\xb2\xb4\x03\xf9\x63\xbd\xce\xbf\x0d\x0e\x9d\xb7\xac\x30\x7f" + + "\x15\xdf\xc8\x5e\x76\xf6\xb4\x2c\x97\xcb\x95\x9c\xd8\x24\xde\x2e\x8b\x6e\xb5\x57\xa9\xd4\xb3\xcb\x6a\xbf\x36\xaf" + + "\x77\x89\xcd\x66\x5f\x90\x8a\xe3\xa2\x54\x15\xf7\xd5\x59\xab\x4a\x56\x33\xbb\x6b\x65\xc8\x4f\xdf\xf2\xed\xd6\xec" + + "\xed\xba\xbc\x80\x3d\x4f\x5e\x30\xae\x4b\x2e\xc8\x8c\x24\x2d\x8b\x95\xa9\x30\x5c\xb6\xf7\xa0\x52\xa7\xa9\xdc\x69" + + "\x3b\x9a\x5c\x6b\xb5\x56\x59\x63\x96\xb9\x2d\x95\x3d\xf4\x7a\xa5\xd6\xb1\xda\xee\x5c\xaf\xbb\x0a\x55\xca\x9d\xae" + + "\xea\x53\xb1\x2d\x1c\x57\xfd\xf2\x7b\x71\xd2\x7b\x6a\xbd\xcf\xf6\xaf\xe7\x39\xaf\x0c\xb9\xc1\x79\x77\xd8\x0d\xf7" + + "\x7d\xbe\x7e\xbd\xf4\xaf\x7c\x7e\x95\xa1\xa7\xc4\xa2\x81\xe5\x29\xad\x30\x2d\x66\x67\xc3\xcb\x9e\xef\xca\xf5\xe3" + + "\x58\x3c\x5c\xd5\xf5\x53\xab\xfc\x26\xbe\x6d\x86\xb3\x2d\x75\x90\x29\xbc\xc3\x1f\x72\xea\x5b\x57\x6d\xac\x79\x9a" + + "\xd3\xa8\x2b\xc6\xb4\xa6\xd8\xaa\x81\xbf\x53\xda\x6e\x85\x3f\x51\x93\xc5\xb2\x2a\xc8\xf9\x03\xb6\x1d\x1f\xe7\xfd" + + "\xb7\x4b\xab\xab\x35\x56\x4f\x2b\xb0\x98\xcf\xc6\x54\x7d\xff\xae\x66\x27\xc5\x71\x21\x37\xdf\xf3\xeb\xe6\xba\xdf" + + "\xef\xbf\xe7\xba\xdd\xdc\x53\x75\xfe\xaa\xad\x6a\x47\x82\xde\x2c\x8a\x7c\x91\x6a\xac\x5f\x1b\x6c\x5d\xec\x88\x9d" + + "\xa7\xf6\xb4\xdb\x90\xdf\x4f\xd2\x50\xec\xb7\xf8\x16\x35\x1b\x6a\x6f\x15\xfe\xe9\x22\x0b\xeb\xf1\x9c\x11\x2e\xd5" + + "\x3c\xfe\x3a\xce\x94\x5f\x57\xd5\xec\xf2\xa9\x5c\xfe\xeb\x5f\x7f\x25\x36\x92\x22\x50\xda\xef\x3f\x4e\xd2\x66\xf3" + + "\xe3\x97\xf9\xce\xe6\x64\xaf\xbb\x63\xd6\x3b\x1c\xeb\x5d\x89\x22\x50\xfc\xed\x1f\x34\x4f\xa9\xea\x5f\xfe\xfa\xc3" + + "\x58\xbf\x4e\xfd\xf8\x23\x69\x96\xfc\xbf\x7f\x35\x7e\xff\x11\x58\x54\x76\x7d\x73\x59\x95\x01\xb5\x77\x6f\x1d\x73" + + "\x11\x86\x37\x7d\xa4\x14\x8e\x12\x35\x1b\xc7\x58\xe9\xbf\xef\x79\x0c\xbc\x94\xbc\x7f\xe7\xc3\xa4\x2f\x48\x92\xc6" + + "\x72\xe2\xf6\x99\x12\x35\x8e\xe2\x39\x4a\x05\x8c\xb9\xe7\x51\x52\xcf\x7e\x9c\xad\x42\x5d\x8c\x73\x50\xb7\xb4\xd1" + + "\x15\x5a\x12\x64\x05\xa8\x6a\x60\xff\xd3\x7f\x6f\x70\xac\xf4\xc3\xc2\x02\x67\x99\x12\x19\x28\x4e\xd1\xc6\x31\x5f" + + "\xf7\x42\x30\x70\x07\x83\x3a\xa8\x00\x8a\x92\xb5\x51\x54\x4d\x92\xa1\x18\x94\x8d\xb1\xa6\xe8\xfd\x89\x52\xa0\xcc" + + "\x10\x98\x8d\xb5\x91\x14\x14\x12\xbe\xb1\x91\x8e\x12\x7f\x10\x40\x8a\xe5\xb6\x2c\xb4\xcd\x82\x0f\x51\x00\x0c\x77" + + "\x10\xa0\xa8\x79\x1f\x2a\x2f\x9d\xa0\x78\xa4\x9f\xe4\x41\x83\x4b\x24\xf7\xc3\xdc\x6c\xea\xd9\xe4\xd2\x02\xfc\x11" + + "\x68\x1c\x4d\x25\xfa\xe0\x00\x7e\x24\x7f\x54\x29\x9e\x5b\x2b\x5c\xa2\xab\x2b\xc6\x8f\xe4\x48\x5a\x4b\x9a\x94\x54" + + "\x29\x51\x4d\xa9\x40\xe1\x36\xdf\xa2\x29\x2f\x3c\xd0\x34\xa0\x18\xdb\x62\x8c\x0d\xaa\x18\x01\x84\xdb\x91\x63\x80" + + "\xf4\x61\xa9\xa4\xb1\x1f\xcf\xf7\x6a\xd5\xe8\xe7\xff\xfc\x8f\x6c\xbc\xe0\xf9\x08\xee\xa1\x7a\xf9\x62\xd7\xa0\x5c" + + "\x79\x1a\x4d\x53\x07\x86\x93\x3e\x9c\x5d\x0e\xd6\xf7\xd1\x3d\xbb\x25\x48\x42\x3e\xfb\x6a\x99\x3f\x36\x07\x9e\x57" + + "\x69\x05\x00\xf1\x43\x96\xac\xbd\x37\x1b\xee\x0c\x98\x17\x73\xcb\x8f\xb1\xc9\x10\x7b\x31\x77\x16\x62\x2f\x56\xc7" + + "\x30\x7b\xd7\x86\xb1\xef\xc7\xb5\x05\xe8\x9a\xe2\x44\x06\x9c\xf5\x1f\xc6\xff\x3c\xef\x1c\x8d\xdf\xde\xcd\x2d\x2e" + + "\x87\x62\xbf\x98\x4d\x09\x6a\x6a\xc3\x83\xf3\x5a\xba\xbf\xac\xd5\x7f\xdb\xec\xeb\xfd\xe4\xa9\xcb\x9d\x5d\x05\xf0" + + "\x94\xc6\x1d\x81\x0f\xc1\xd6\x37\x17\x07\x7a\xab\x14\x9f\xda\xea\xff\x02\x51\xfb\x1d\xf0\x3c\x27\xab\x20\x41\x69" + + "\xd6\xf9\xe9\xa4\xe1\x8f\x64\x4a\x01\xa2\x96\xc0\x92\xca\x76\x4d\xfd\x8e\x25\xf5\x3f\xe9\x3c\xf9\x2b\x61\x7c\x82" + + "\xc6\xd7\x4c\x2a\x45\xc0\x5a\xd2\x6b\x12\xb9\xa4\xf9\xff\x74\xf1\xd7\x2d\xcd\x80\x0d\x75\xe0\x35\x6b\x5b\xc3\x33" + + "\x66\x6d\x4f\x75\xb7\x41\xfc\x7a\x59\x4b\xe7\x94\xca\x52\x8c\x74\x7a\xb6\xb7\x8a\xf9\x51\x02\x1d\x77\xbd\x9d\xc7" + + "\xfc\x9b\x5d\x7c\x02\x37\x36\x7a\xf8\x14\xd8\x62\xcc\x6f\x9f\xff\xf5\x5f\xf7\x96\xa8\xb5\x2a\xf1\x07\x0d\x78\x95" + + "\xc2\x51\x86\xbb\x76\xf8\xdb\x72\xed\xe8\xb2\xae\x6f\x49\xa4\x09\xd5\xf5\x79\xe0\xe0\x77\xfd\x1d\x86\xfe\xe7\x7f" + + "\xcc\x5d\x77\x41\x2e\x8c\xf6\xcd\xad\x2d\x92\x6c\x3e\x38\x8a\xe7\xde\xc4\x91\x73\xde\x09\x9b\xe3\x41\x92\x49\xfb" + + "\xbf\x74\xf1\x97\x3b\x6e\x71\x1a\xc5\x73\xb4\xab\xe9\xf5\x41\xd3\xbc\xbb\x37\xb1\x84\xdd\x41\x63\xff\x97\x3b\x50" + + "\x59\xef\x9d\x31\xac\xda\x28\xd4\x5e\xa4\x83\xa6\x83\xef\xfb\xe5\x9e\xfd\xfb\x31\x5e\x6c\x1d\x4f\xc9\x14\xbd\xb7" + + "\x5f\x74\xef\x0e\xaa\xc6\x6d\x2e\x29\x7b\x00\xac\xe2\x28\xbb\x70\x6d\x10\x36\x36\x4b\xf8\xfb\x90\xe0\x3e\x9c\xe6" + + "\x38\x0d\x08\xde\xb7\xeb\x3a\x68\xab\x70\x4c\x4a\x91\x4e\x5e\x88\xf1\x23\xa5\x02\x7e\x63\x6f\x48\xf1\x53\x4e\xa5" + + "\xd6\xdc\xf6\x53\x22\x0a\xbe\xe5\x8f\x21\xb4\xa0\x1e\x84\xa9\x91\xa1\x1a\x24\xf6\xd3\x54\x16\xfd\x41\xef\x2a\xe4" + + "\x8c\xc5\xef\x29\x12\xfb\x99\xd4\xff\xfa\x95\xb0\x8f\x4e\xc3\xbe\x40\x05\xc5\xbb\x2b\x5b\x3e\xe7\x55\x77\x63\x03" + + "\x23\xa1\x9a\xad\x4a\x07\x9a\x4d\x51\xe6\xc1\x37\x81\x12\x39\xf9\xc0\x1b\xef\xe2\x5f\x90\x10\x97\xb0\x55\x9e\x63" + + "\x5c\xbb\xa5\xe5\xb3\x77\xcb\x9c\x83\xa7\xeb\x8d\x22\xf1\xf7\x2d\x6b\x48\x8d\x09\x4a\x32\x60\xca\x96\x89\x43\xb6" + + "\xdc\x3b\xca\x64\x6c\xb1\xd3\xff\x7a\xf1\xfd\xbc\x6b\x44\x0a\x79\xe4\x81\x90\xcf\x77\x4a\x10\xbd\xd3\x35\x55\x0d" + + "\xee\xe2\xb2\x6a\x41\x86\x67\xe9\xf9\x38\xbb\xaf\xdc\x6b\x6f\x96\xa1\x05\x0c\xce\xd8\x10\x9b\x5a\x03\xed\x04\x02" + + "\x8e\xd3\xb5\x0d\xd3\x11\x79\x9a\x53\x8d\x74\x50\x67\xcd\x72\x9e\xf7\x6f\x98\xb9\x34\xd2\xf2\xc4\xf1\xf5\x2f\x9d" + + "\x8d\xab\x81\xe9\xec\x2f\x18\x3b\x09\xb8\xa9\x86\x70\x17\x41\xc5\xd1\x2d\xa4\xf4\xf5\x0c\x03\x31\x00\x06\x08\x2a" + + "\x35\x63\xd7\xfd\x43\xcd\xa0\x07\x19\x62\x09\x7f\xfb\x8b\xe3\xfa\xf4\xc0\x60\xfc\xe3\xa0\x25\xd2\xce\x2e\xd3\x60" + + "\x44\x8d\x34\x21\xdb\xb1\x15\x02\xdb\x82\x3c\x46\x63\xa2\x19\x76\xe3\xcf\x0e\xac\x80\x4e\xfe\xf2\xfb\x39\xaf\xe2" + + "\xe5\x5c\x0a\x77\x67\xf9\x7f\xfe\x67\xc3\xf1\x3c\x60\x2c\xaf\xe0\xcf\xb3\x0c\x27\xeb\x74\x1d\x7b\xb1\xfe\xb9\x9b" + + "\x81\x02\x36\x40\x51\x00\x63\x67\x0d\x46\xe9\x9a\x52\x39\x35\x10\xc6\x51\x0c\x18\xdb\xfb\x81\xe2\xdd\x02\xeb\xce" + + "\x05\x2d\x11\x61\xd0\xda\x1a\x27\xb8\x4f\x24\xa8\x02\xc5\xf3\xb6\x20\x4d\x1f\x64\x58\x9a\xc0\x89\x9c\xe0\xec\x89" + + "\xfe\x5f\x94\x34\x59\x8c\xfd\xef\x49\x9a\x2c\x86\xfe\x15\x49\x93\xd3\xf4\xbf\x71\xd2\xe4\xeb\xc3\x37\x26\x4d\x3e" + + "\xca\xff\x49\x9a\xa2\x93\xa6\xc4\xfd\x2a\x82\x4f\x26\x4f\x8e\xd0\x23\x92\x27\x07\xef\x3f\xc9\xd3\x3f\x2b\x79\xb2" + + "\x44\xfe\x58\xf2\x04\xab\x96\x80\x9b\xd6\xbf\x24\x05\x0b\xe5\xee\x3b\x92\x27\x88\xd4\xac\xe4\xe9\x81\x66\xc2\x92" + + "\xa7\x00\x19\x78\xf2\x64\xa1\xfd\x3b\x25\x4f\x01\x96\xff\xd9\xc9\x13\x84\x81\x07\x92\x27\x48\xed\x98\xc9\x13\x2d" + + "\x09\x32\x45\xff\x2f\x5c\x71\xb2\x18\xfb\xdf\x93\x3c\x59\x0c\xfd\xd9\xc9\x93\xab\xa1\x7f\xe3\x54\xc9\xd7\x87\x6f" + + "\x4c\x95\x7c\x94\xff\x93\x2a\xfd\x33\x52\x25\x47\xe8\x11\xa9\x92\x83\xf7\x95\x54\xc9\x7f\x67\x07\x3c\x75\xd2\xa5" + + "\xf9\xef\x94\x3c\x19\xa7\x07\x7f\x25\x3c\x77\xbc\x60\x3f\x11\xc1\x16\x85\xfc\xf5\x34\xcb\xed\xf4\x1f\x4d\xaf\x82" + + "\xd5\x12\x70\x73\xfc\x97\xa4\x57\xa1\xdc\xc5\x4c\xaf\x62\x0e\x0f\x1c\x17\x2a\x57\x2b\x01\x7b\x80\x91\xef\x50\x14" + + "\x88\x25\xc2\x53\x35\x0b\xed\xdf\x29\x55\x0b\xb0\xfc\xcf\x4e\xd5\x20\x0c\x3c\x90\xaa\x41\x6a\xc7\x4b\xd5\x9c\xa3" + + "\x8a\x77\xf7\x58\x34\xaf\x3e\x71\xbf\xb2\x4d\x58\x49\x83\xef\xec\xb1\xf9\x8e\xfa\xf9\xd9\x7e\x09\x6e\xd0\x4a\xd9" + + "\xba\x91\x02\x22\xcd\x4b\xea\x41\x01\x9e\xa3\xec\xae\x9b\x07\x7e\x53\xc0\x91\x03\x27\xe8\x89\x6a\xc7\xff\x65\xad" + + "\xc3\x97\x16\x6e\x22\xad\x9d\x38\xe3\xc5\xb4\xac\x48\x1b\x8e\x07\xae\xeb\x86\x7c\xf7\x40\x58\xe2\x29\xdd\x2f\xe7" + + "\xf1\x5c\xb3\x63\x9f\x5b\xb6\x4e\x1a\x9b\xa7\x5b\x8d\x73\xac\x46\xf5\xf7\x83\xa4\x01\xa7\x31\xdd\xeb\x69\xf0\x7b" + + "\x9c\x7c\xf7\x17\x79\x8e\xb7\xbb\xda\x31\x2f\x0a\x72\xdd\x41\x82\x25\xf0\xbc\xde\x76\xde\x3e\x28\x6f\x86\x04\xf3" + + "\x82\x25\x3b\xd9\x40\xf2\x62\x9d\x6f\x75\xdf\x3a\x83\x1c\x4b\x24\x8d\x80\x2c\x11\x03\x85\xe6\xc2\x73\x1e\xbd\x60" + + "\x6f\x3a\x70\x6d\xc0\x09\x88\xc3\x7f\x0a\x1c\x49\xda\x3e\xd7\x6b\xdd\x7f\x13\xa0\x0c\xbd\x5c\xc0\xc9\xb6\xbc\x74" + + "\x01\xd0\x52\x67\xde\xc3\x2d\x41\xf8\x07\x8b\xf4\x0f\xbd\x55\x8b\xf2\xd5\x8a\x29\x68\xbb\x76\x32\x8a\x13\x5d\x6e" + + "\xb7\x1b\xe2\x44\xad\xe9\xa0\x81\xa2\xb2\xce\xb9\xda\x74\xda\x38\x49\xab\x66\xee\xb0\x34\x90\xb4\x5f\x51\x08\xff" + + "\xbf\xdf\x38\xb0\xe1\xce\xf7\xed\x5a\x40\x58\x03\x86\x01\x4c\x4a\x92\x81\xa8\x5d\x64\xf0\xe3\x57\x12\x55\xff\x24" + + "\x6d\x36\xfe\x8d\x5e\x48\x64\x4d\x73\xe1\x6a\xca\x01\x44\x10\x57\x8f\xdb\xdf\xee\x3f\xef\x55\xd5\xe3\x36\xde\x76" + + "\x32\x86\xd2\xa8\x14\x47\x4b\xe2\x1f\x76\xce\x01\x97\xa1\x6b\xd7\x87\x9d\xd7\x50\x9a\xa6\xfc\xee\xd4\xff\x15\xa4" + + "\xee\xaa\xe3\xe3\xc4\x0f\xf1\xee\x33\x73\x41\x21\x3b\xce\xe0\x1b\xda\xfe\x84\x6d\x68\xf7\xad\x76\x7a\xff\x52\x3f" + + "\x6c\x09\x39\x3b\xee\x8c\xe2\xf8\x72\xfb\xff\x9a\x7c\xd2\x46\xff\xed\x1b\x28\x02\x7b\xc5\xa8\x1f\x16\x86\x71\x51" + + "\x43\x00\xbc\xb6\xc1\xb4\x6e\xe4\x01\xf0\xd6\x06\x6b\xd4\x36\x00\xa4\x6d\xa0\x75\x2b\x0c\xcd\x4b\x87\xe0\x8e\x3a" + + "\xc1\xc6\x12\x28\x2e\xc8\xde\xce\x86\x6e\xa9\xc3\x36\xc8\xde\xde\x06\x43\xb9\x63\x6d\xa8\xae\xfe\x6b\x0a\xb2\x77" + + "\x90\xb3\x31\x58\x40\x29\x81\x65\x93\x1f\xc0\x21\xcf\x89\x41\xf2\x8c\x0d\xd5\x9d\xda\x5a\x92\x82\x18\xbc\x23\x1e" + + "\xd3\xf3\x07\x10\x44\x77\x03\x80\xe1\xc4\x00\x86\xe4\x08\x40\xe6\x0f\xc1\x5d\x96\xf2\x8f\x5b\x5a\x36\x53\x07\xe7" + + "\x12\x2a\xdf\x65\x52\xc6\x24\x93\xd5\x04\xfe\xc3\x75\xb9\x88\x91\x5f\x05\x37\x7a\xfd\xc6\x48\x27\x51\x1f\x2c\x3f" + + "\x11\xc2\xb8\x93\xc1\x01\x27\xac\xab\x30\x9c\x8c\xd5\x5a\x46\x72\x25\x6f\xc1\x29\xaa\xbd\xae\x93\xc2\x6f\xe9\x77" + + "\x85\x96\x18\xf3\x66\x1b\xab\x0e\xe9\x9a\x17\xe3\xee\x0b\x07\xed\xd5\xb5\xdf\x30\x0c\xbb\x77\xd6\xb8\x09\xe9\xe3" + + "\x7e\x2b\x89\x17\x10\xcc\x1e\x7c\xb9\x93\xfb\xfa\x23\x33\x89\x71\x5f\x77\x77\x4b\x07\xf6\xc2\x99\x5b\xf7\x5c\xbb" + + "\xf0\x22\xb6\xf1\x05\x26\xcc\xee\x94\x1d\xff\x05\x99\xe3\xdd\xe7\x7f\xf0\x95\x36\xf3\x42\xb5\x34\x45\xeb\x23\x95" + + "\x70\x38\x84\x2c\xa0\xdc\x3f\x0a\x96\xa6\x25\xf9\x62\x28\x97\xa3\x1d\x76\x17\x08\xec\xbe\x62\x43\x00\xe1\xc5\xd7" + + "\x53\x7b\x5d\xea\xa7\x67\x95\x0a\xb3\xae\xa8\x31\x7f\x67\xcd\x95\x86\xc0\xd2\x80\x75\x1d\x8d\x37\x27\x25\xec\x55" + + "\x96\xe0\xad\xad\xfa\xa4\xd4\x3d\x3d\xbb\xcf\xdc\xe0\x42\x78\xa1\x79\x4e\x7e\x56\x00\xad\xfd\x8e\xeb\x19\xe6\xfd" + + "\xbf\x5f\x6e\x29\x4a\xf2\x73\xaa\x64\xfe\x4f\x4f\x85\xf4\x81\xba\xff\xbe\x0b\x32\x28\x22\x83\xbc\xa1\x34\xf7\x75" + + "\x2a\xff\xa2\x14\x44\xb4\xde\xf4\x0b\xf3\xde\xfc\x04\x41\xe7\x44\xf9\xa0\x7d\x04\xc5\x67\xcd\x10\x3c\x17\x85\xde" + + "\x57\xe7\x5c\x79\x95\x3e\x6a\xf6\x34\x02\x08\xce\x3d\x36\x6e\x2b\x0c\x8e\x81\xfb\x8a\x3a\x51\x32\x16\x77\xfc\xeb" + + "\xcc\x46\xb8\x72\x0a\xcd\xbd\x9c\x9c\x0a\xeb\x42\x1a\x28\x0a\xf4\x3a\x1e\x8b\xf9\x7a\x21\x57\xcc\x56\x7c\xb6\xe7" + + "\x5c\x54\x4b\x02\xe1\xf6\x9b\xc0\xa4\x2c\xd3\x85\x3a\x2e\x73\x9b\xb0\xef\x86\x5c\xbd\xf9\x0f\x7b\xb5\xcb\x99\x27" + + "\xe6\xee\xf7\x54\x1a\x6b\xed\x06\xae\x59\xdf\x65\xda\x71\xe7\x74\xf7\xd5\x4c\x8b\x3c\xe9\xb0\x83\xac\x2d\x53\x22" + + "\xe0\x9d\x85\x1c\x1c\xb6\x07\xd7\x0e\xe9\x3c\x38\xbb\xc0\xae\x0b\x71\xdc\x7e\x90\x84\xdb\x97\x7d\x2f\x5d\xe0\x55" + + "\xa0\x31\x07\xc3\xa3\xf9\xd4\xe7\xce\x7a\xaa\x61\x6f\xbf\xf6\xdc\x1d\x79\x5f\x09\x8e\x49\x25\x19\x8e\x66\xed\x54" + + "\xb7\x16\x41\xdd\x2d\x06\xdf\x31\xb8\xae\x28\x25\x63\xf7\xc2\x8f\x60\xb6\x64\xe0\x51\x9c\x08\x94\x47\xf8\x8b\xa2" + + "\xe5\xbc\xf2\x81\x30\x8f\x74\x84\xbe\xb7\x34\x88\x36\x34\xf6\x20\xac\xef\x37\x51\xcb\x32\xa0\x14\x4a\xa4\xad\xfb" + + "\xb7\xdc\x8b\x3f\x80\x89\xd2\x43\x9e\xba\xa4\xac\x35\x0d\x5f\xe3\xb1\x2b\x5a\x17\xb7\x1a\x2b\x3e\x1c\xaf\x27\x2f" + + "\x3f\x28\x5e\x66\xa9\xdf\x07\xa6\x7a\xff\xb5\x80\xfd\xfa\xf1\x62\x81\x02\x10\xc7\x73\xa6\x0b\x11\x4d\xde\xf7\xc9" + + "\xdb\x1c\x47\x8b\xc0\x92\xaf\x6b\x4f\x79\x60\x09\xec\x8e\x6b\x24\x04\xf7\x0b\x9b\x8c\x9f\x19\x59\xdc\xda\xd7\x32" + + "\x71\xb3\xca\x60\x74\xc2\x5e\x9b\x5b\xa9\x5c\x2e\x97\xfb\xe3\x29\x5b\x9f\x6e\xed\x6b\x8c\x2a\xe5\x6a\x79\x59\x2e" + + "\x97\x6b\x0d\xa2\x9a\xbd\x1a\x37\x1a\x2d\x46\x8d\x79\x6b\x34\x59\x13\x2b\x8c\x21\x1a\x97\xd5\xb0\x52\x59\x35\x4b" + + "\xdc\x6a\x5c\xe9\xac\xe7\x0d\x71\x35\xeb\xf0\xcb\xf9\x88\xa4\x69\x9e\x7f\xd3\x2b\x5c\x46\xf2\xac\xc1\x62\xf3\x3a" + + "\xde\x1b\x08\xfd\xe3\x7a\x4c\xb2\x26\x3e\x99\x5b\x2f\xac\x93\x7d\xb5\x53\x06\xb4\x2a\xec\x92\xd0\x78\xa6\x5a\xe1" + + "\x56\x73\x46\x5e\xef\x30\xae\x50\x38\x64\xda\x5c\x45\x5e\xd5\x30\x6e\x76\x9d\xf5\x7b\x75\xfc\x34\x24\x66\x12\x35" + + "\x65\xf3\xb4\x30\x9b\x80\x3d\x39\x5d\x66\x65\x65\x79\xe5\xf7\xed\x5d\xf1\xa9\x5d\x3b\xe7\x06\x22\xab\xd1\x4d\x9c" + + "\x67\x9a\xf5\x2d\x68\xe2\xea\x5a\xec\xe5\x41\x0d\xe3\x96\xf3\xd1\x71\x29\x4c\xf3\xfa\xef\xf5\x7c\x86\x2d\xc7\x45" + + "\xae\xdd\xda\xe6\x41\x13\x3f\x31\x4d\xb5\xd4\xde\x37\xf6\x6b\xa2\xc3\xb7\x1b\x6c\x7f\x5a\xad\xd4\xd6\xd9\x0e\xdf" + + "\xae\x4d\x0f\xbd\x0b\xbe\xeb\xd5\xea\xe7\x76\x6d\x49\x74\x77\x75\xac\x3f\x59\x12\xbd\xf1\x69\xdb\xdb\x95\xcf\x3d" + + "\xae\x78\xd2\xff\xeb\x73\xd8\xb9\x5f\x93\xf0\xfe\x4e\xba\xf4\x2f\xe5\x6d\xbb\x6a\xfd\xb7\xcb\x6d\xdf\x5a\x9d\xfd" + + "\x6a\x27\x8f\x47\xf5\xa5\xc3\x0f\x2d\x8c\x84\xb7\x71\x47\x62\x5a\xa3\xd3\x80\x2b\x1e\x99\x2c\x93\xed\x8a\xf4\xb5" + + "\x2b\x94\x2e\xab\x4b\xf1\x3c\x98\xec\xc9\xee\xb5\x7c\xe9\x5e\xdb\x97\xee\xa2\xb3\x5f\x71\xf8\x15\xcc\x49\x6c\xb9" + + "\xd8\x6a\x6b\xb1\xb7\x73\xd1\xad\xaf\x16\xfd\x1d\x2d\xf0\x27\xa6\xc9\x1f\xd7\x5c\xe5\xb2\x6a\x2e\xf3\xcb\x79\xe7" + + "\xc8\x2c\x86\xa5\x36\xd7\xbe\xcb\xa0\x89\x9f\xdc\x6d\xae\xc5\xde\xc1\x92\xc9\x61\x49\x94\xb4\x6e\x96\x65\xe9\x6a" + + "\xf1\xdc\xdd\x95\x8f\x6d\xae\x92\x5b\xcf\xcf\x07\xfa\x2a\xe7\xd6\x8b\x4a\x7f\x32\xc1\x38\xaa\x35\xc2\xe8\x9a\x74" + + "\xec\x12\xe4\xb5\x2b\x98\xb2\xea\x1a\xe3\x59\xca\x2d\x17\xe5\x63\x6f\x9c\x3b\x75\x09\x5c\xeb\x5e\xee\x6d\xd2\xd9" + + "\xd1\x78\x35\x5f\x96\xda\x02\x8b\x31\xad\x72\xbe\x7b\x29\x1d\xe8\x8b\x33\xfe\xbb\x35\x81\x1d\x41\xb3\x71\xea\x5e" + + "\xeb\x87\x5e\xb5\x74\x9d\xb5\xf8\xd3\x6a\x5c\x1a\xaf\x16\xfd\x23\xb3\xe8\xec\x74\x5d\x5a\x71\x3d\xae\xdd\x62\x35" + + "\xba\x26\xd7\x68\x61\xc6\x32\xcd\xd2\x65\xd6\x2c\x1d\xd7\x35\x8c\x1b\x9a\xfc\x6f\xa7\x4d\xf6\xc8\x34\x4b\x57\xaa" + + "\x59\x3a\xb5\xeb\xfd\x49\x9f\x2b\x4b\x93\x79\x63\x47\xcd\x49\x6c\x9d\xed\x4b\xaf\x63\x83\xa7\xd3\x64\x8a\xe5\xc7" + + "\x73\xf2\xca\x34\x1b\x87\x25\x31\xeb\x8c\x6a\x18\xa7\x97\x77\x05\x5e\x5e\xd5\x24\xa2\x8f\x0d\xf1\xde\xae\x9c\xed" + + "\xd5\x68\xb2\xbf\x5b\x9e\x7b\xd3\xe9\x65\xb8\x1b\x5e\x47\xbb\x3d\xd9\xdb\xd1\x78\x6f\x32\x25\x87\xbb\x3d\xd6\x77" + + "\xd1\x1b\x35\x4b\x3b\x66\x8e\xf3\x6b\x71\xe4\xa2\x37\xf2\xd2\x9b\x44\xd2\x33\x74\xd7\x94\xb5\x3e\xa6\x1d\x99\x11" + + "\x66\xfb\x91\xd8\x39\xae\xc7\x95\x2b\xd3\xe8\xf0\xab\x9d\x2c\xaf\xc5\x3e\xb6\x9c\x93\xbb\xd5\x94\xaf\xbf\x8d\x3b" + + "\xba\xfd\x1c\xa8\x39\xbf\x1f\xec\x87\x97\xe1\xbe\x4e\x0c\xa7\xab\x66\xff\xba\xbf\x0e\x77\xf5\xf3\x68\xd2\xa9\xf6" + + "\x6b\xfd\xe6\x60\xb2\xbf\xf4\xaf\xd3\x73\x7f\xc2\x57\x07\x93\x21\xde\xe6\x1c\x7a\xfb\x35\xd1\xc7\xd7\xf3\xd9\x81" + + "\xa9\xdf\xe9\xad\x9a\x2e\x7a\xbb\xf2\x29\x9a\x9e\x6e\x77\xa7\xa3\xae\xd3\x83\xfd\x88\xa7\x89\xfe\x85\x5a\x54\x30" + + "\x6a\x5e\x3a\xbc\x71\xe5\x62\x37\xeb\xe8\xbf\x81\x07\x6a\x86\x4e\x69\xab\xc5\x88\xd5\xe1\x6f\x59\xf6\xb4\x9c\xf7" + + "\x95\xd5\x62\xb8\x5d\xcd\xc9\xfd\xdb\xb8\x73\xd1\x6d\x19\xbf\x16\x0e\x94\xee\x1b\x66\x6c\x67\x54\x6f\x4c\x41\x5f" + + "\x51\xf9\x5d\xe3\x50\xde\xd5\x87\xa3\x75\xb6\x5c\x5d\x55\x2e\x1c\x47\xc8\xf5\xaa\xb0\xbd\x8c\x1b\xed\xa6\xc4\x4d" + + "\x9b\x6a\xfd\x95\xa3\x86\x65\x4e\x38\x4d\x26\x52\x75\xbb\x1d\x2f\xc7\xfd\xa9\xd4\x69\x8d\x37\xdb\x46\xe7\xc4\xf6" + + "\xb4\x92\xd4\xaa\xf0\xbb\x62\x93\x22\xc6\xe5\xf7\xb7\xd2\xeb\x70\x56\x78\x7b\x5b\xe6\x2e\xf8\x53\xe9\xad\xb6\xac" + + "\xaf\x72\xd4\x96\x6a\x29\xbb\x5c\xf7\xc4\x93\xdd\xd6\xa2\xb1\x3f\xaa\x83\xc5\x2b\xa5\x69\xf8\x6e\x77\xd9\x5f\x95" + + "\x77\x62\x0e\xe6\x4f\x9d\x75\xbe\xc2\xca\x64\xe5\x32\x1e\x1c\x87\xc3\xee\x81\x7a\xad\xbf\x2d\x4f\x4b\x71\x30\xec" + + "\x8e\xf7\xf2\xe4\x54\xd9\xac\xa7\xef\x43\x4a\x28\xb1\xb5\x99\xc6\x81\xc1\x85\x92\x06\xcd\x73\x6d\x52\xd6\xfa\xca" + + "\xac\x34\x6d\xbc\x4f\xea\x74\x66\xda\x9c\x0e\xc1\x62\x2e\x6c\xc6\xab\x4a\xbe\xf2\xbe\xe8\xd1\x59\xaa\xdd\xe0\x1b" + + "\x3c\xbf\xcc\xb1\x6f\xb9\x52\x9f\x60\xf3\x79\x99\x58\x76\x16\xfc\x25\xdb\xea\x94\x88\x72\x85\x63\xcf\xab\xd9\xe8" + + "\xad\x97\xaf\xbc\x1f\x67\xdc\x98\x6f\xf4\x4f\xef\x5c\xe5\x34\x23\xab\xe5\xd6\x80\x66\x2b\x35\xf1\x75\x98\x21\x33" + + "\x2a\x97\xcb\x70\x83\xa9\x48\x2e\x17\xd8\x13\xa0\xb1\x05\x2e\xec\x2b\x0b\x7e\xd7\xc2\x45\x9e\x15\xe9\xc9\x86\xcd" + + "\xce\xdb\x0d\xa2\xce\x8c\x32\xdb\x4e\xbe\x50\x18\xbc\xbe\x9f\x36\xcc\xe0\xbd\x25\x74\x72\x7d\x95\xc1\x0b\x6f\xa7" + + "\x29\x59\xcf\x5c\xe6\xdb\x0e\x07\x96\x99\x0a\x77\xcc\xf7\xa4\xe9\x6c\x77\x1c\x80\x3c\xbe\x7b\xa2\x9b\x87\xc3\x49" + + "\x56\xbb\xff\x7f\x76\xee\xa5\xb7\x55\x1c\x8a\x03\xf8\x57\xe9\x76\x14\x55\x79\x91\x36\x5d\x1e\xc7\x8e\x63\x52\x4c" + + "\x4c\xa0\x40\x77\x29\x0f\x63\x48\x48\x42\xa0\x40\x46\xf3\xdd\x47\x93\x69\xef\xed\x43\xba\x59\xf4\x56\xaa\x74\xbb" + + "\x43\x32\xd8\xac\xf8\x71\xce\x91\xfe\x8f\xd8\x5c\x8f\xe6\x69\x34\xcd\x70\x75\xb0\x4a\xb5\xe4\xf3\xfb\xab\x69\xe8" + + "\xd9\xeb\xc4\x73\x59\xdc\xd8\x6e\x10\x8f\xc6\xbe\xd5\xbb\x1d\xc2\xb1\xb0\x6a\x42\x41\xdf\x9a\x72\x62\xc4\xc9\x55" + + "\xa2\x4e\xdf\x7d\xb2\x9e\xda\xd9\xb2\x12\x9b\xc9\xe4\xaf\x97\x68\x3d\x25\x27\xee\x9a\x8b\xd3\x78\xfa\xc5\xca\x8f" + + "\x3a\xed\xff\x3f\xed\x8b\xf1\xeb\xe5\x77\x01\xc5\xbf\xd6\x77\x53\x95\xd1\x57\x73\xf7\x14\x90\xf8\xec\x2e\xd8\x71" + + "\x1c\xb9\xdf\xee\x7e\xbb\xfb\x27\xb8\xcb\x7f\xb3\xbb\xfc\xb3\xdd\x4d\xfd\xa1\x85\x9d\xd6\xc0\x41\xcb\x8f\xd9\x80" + + "\x7f\xd4\xdd\x9f\xfb\x1d\xcf\xef\xf7\x39\xee\xd2\x5d\x8f\x9e\x62\x4a\xed\xf0\xc9\xdd\x9d\x0a\xd9\xa1\xf2\x0d\x40" + + "\xf5\x76\xaa\xa1\x64\xf2\x88\x3a\x2c\xf3\xd8\xde\x0f\x58\x7a\x0d\x0b\xa2\x18\xf2\x41\x4b\x65\xcf\xb4\x88\xbc\x3d" + + "\xe8\xb9\x00\x29\x8a\x5a\x57\x5c\xa9\x98\x3a\xc3\x68\xca\xd4\xb5\xc4\x72\xd1\x50\x82\xfc\xdc\x97\x7d\x89\x14\xde" + + "\xab\xa3\xf0\x46\xaa\x31\x49\x3b\x69\x71\x34\x19\x2f\xb9\xe0\xb5\xde\xe8\x25\xa0\xaa\x9e\xf9\xd9\x81\xd6\x5b\xb0" + + "\xae\xf6\xc3\x52\x4c\xeb\x79\x43\xd7\x90\x1b\x25\xd9\x51\x5f\x74\xa0\xd3\xe7\x96\xc9\x3a\x2b\x1c\x85\x34\x54\x0c" + + "\x06\x07\x70\x75\x77\x85\x93\x00\x51\x76\xe7\xc8\x3e\xa0\xfd\x51\xdb\x26\xc4\x03\xc3\x13\x0f\x2d\x74\x70\x60\xad" + + "\xc4\xac\x9e\xdd\x1b\xa8\x61\xa9\x8b\xa1\x20\xc1\xa6\x90\x1d\xf0\x88\x4f\xcc\x31\x69\x7c\x96\x3a\xa9\x45\x45\x65" + + "\x7a\xc4\x09\xa4\x4c\x6e\xef\xcc\x55\x82\xb6\x20\xfa\xd4\xb5\xc1\x1e\x28\x90\x06\xd2\x19\xd6\x50\xb3\x30\x13\xb4" + + "\x67\x38\xd3\xeb\x9c\xf0\x00\x07\x22\x13\x8b\x31\xb8\x48\x55\x60\x22\xc5\xe2\xde\x6c\x14\xdf\xcc\x32\xbb\xc7\x43" + + "\x03\xa6\x31\xa3\x1a\xd6\xa4\x94\xb1\x2c\xf9\xc2\x48\x25\xb6\xf0\xb0\x96\x8b\x4d\xb7\xdb\xed\x62\x7d\x09\x8e\xe0" + + "\x14\x5b\xb2\xef\xf3\xd7\xd7\x9a\x9b\x80\x93\xcf\x8a\x15\xbb\x59\x97\x46\xd0\x0e\x36\xc6\x3d\xc6\x3d\x57\x02\x60" + + "\xc0\xfe\xba\x7d\xc0\x62\xee\x85\xf0\x25\x2c\x7d\x57\xc9\x3e\x97\xd0\xe7\x5d\x7d\xfb\x22\x97\xda\xe0\x6c\xfb\xe3" + + "\x05\xdd\x1f\x39\x68\x78\xf6\xa0\xa0\x2a\xfe\xa3\xfe\xd4\x6f\xb9\x7c\x6a\x64\x9d\xe9\xa9\x9c\x6e\x2d\xa2\xcd\x4a" + + "\xe5\x2a\x97\xcf\x0f\xfd\xfd\x26\xec\xfc\xcd\x38\xed\x9f\x7f\x03\x00\x00\xff\xff\xdd\x81\x67\x7f\x0e\xb2\x01\x00" + + "") func bindataDistStylesMaincssBytes() ([]byte, error) { return bindataRead( @@ -21459,10 +21803,10 @@ func bindataDistStylesMaincss() (*asset, error) { info := bindataFileInfo{ name: "dist/styles/main.css", - size: 96604, + size: 111118, md5checksum: "", mode: os.FileMode(420), - modTime: time.Unix(1530076324, 0), + modTime: time.Unix(1530447120, 0), } a := &asset{bytes: bytes, info: info} @@ -21578,6 +21922,7 @@ var _bindata = map[string]func() (*asset, error){ "dist/index.html": bindataDistIndexhtml, "dist/index.txt": bindataDistIndextxt, "dist/robots.txt": bindataDistRobotstxt, + "dist/scripts/ckin.js": bindataDistScriptsCkinjs, "dist/scripts/main.js": bindataDistScriptsMainjs, "dist/scripts/vendor/modernizr.js": bindataDistScriptsVendorModernizrjs, "dist/styles/main.css": bindataDistStylesMaincss, @@ -21693,6 +22038,7 @@ var _bintree = &bintree{Func: nil, Children: map[string]*bintree{ "index.txt": {Func: bindataDistIndextxt, Children: map[string]*bintree{}}, "robots.txt": {Func: bindataDistRobotstxt, Children: map[string]*bintree{}}, "scripts": {Func: nil, Children: map[string]*bintree{ + "ckin.js": {Func: bindataDistScriptsCkinjs, Children: map[string]*bintree{}}, "main.js": {Func: bindataDistScriptsMainjs, Children: map[string]*bintree{}}, "vendor": {Func: nil, Children: map[string]*bintree{ "modernizr.js": {Func: bindataDistScriptsVendorModernizrjs, Children: map[string]*bintree{}}, diff --git a/vendor/github.com/skip2/go-qrcode/.gitignore b/vendor/github.com/skip2/go-qrcode/.gitignore new file mode 100644 index 0000000..bc1be2b --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/.gitignore @@ -0,0 +1,4 @@ +*.sw* +*.png +*.directory +qrcode/qrcode diff --git a/vendor/github.com/skip2/go-qrcode/.travis.yml b/vendor/github.com/skip2/go-qrcode/.travis.yml new file mode 100644 index 0000000..7ced8fb --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/.travis.yml @@ -0,0 +1,8 @@ +language: go + +go: + - 1.7 + +script: + - go test -v ./... + diff --git a/vendor/github.com/skip2/go-qrcode/LICENSE b/vendor/github.com/skip2/go-qrcode/LICENSE new file mode 100644 index 0000000..342c5e5 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2014 Tom Harwood + +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/skip2/go-qrcode/README.md b/vendor/github.com/skip2/go-qrcode/README.md new file mode 100644 index 0000000..8281ed3 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/README.md @@ -0,0 +1,80 @@ +# go-qrcode # + + + +Package qrcode implements a QR Code encoder. [![Build Status](https://travis-ci.org/skip2/go-qrcode.svg?branch=master)](https://travis-ci.org/skip2/go-qrcode) + +A QR Code is a matrix (two-dimensional) barcode. Arbitrary content may be encoded, with URLs being a popular choice :) + +Each QR Code contains error recovery information to aid reading damaged or obscured codes. There are four levels of error recovery: Low, medium, high and highest. QR Codes with a higher recovery level are more robust to damage, at the cost of being physically larger. + +## Install + + go get -u github.com/skip2/go-qrcode/... + +A command-line tool `qrcode` will be built into `$GOPATH/bin/`. + +## Usage + + import qrcode "github.com/skip2/go-qrcode" + +- **Create a PNG image:** + + var png []byte + png, err := qrcode.Encode("https://example.org", qrcode.Medium, 256) + +- **Create a PNG image and write to a file:** + + err := qrcode.WriteFile("https://example.org", qrcode.Medium, 256, "qr.png") + +- **Create a PNG image with custom colors and write to file:** + + err := qrcode.WriteColorFile("https://example.org", qrcode.Medium, 256, color.Black, color.White, "qr.png") + +All examples use the qrcode.Medium error Recovery Level and create a fixed +256x256px size QR Code. The last function creates a white on black instead of black +on white QR Code. + +The maximum capacity of a QR Code varies according to the content encoded and +the error recovery level. The maximum capacity is 2,953 bytes, 4,296 +alphanumeric characters, 7,089 numeric digits, or a combination of these. + +## Documentation + +[![godoc](https://godoc.org/github.com/skip2/go-qrcode?status.png)](https://godoc.org/github.com/skip2/go-qrcode) + +## Demoapp + +[http://go-qrcode.appspot.com](http://go-qrcode.appspot.com) + +## CLI + +A command-line tool `qrcode` will be built into `$GOPATH/bin/`. + +``` +qrcode -- QR Code encoder in Go +https://github.com/skip2/go-qrcode + +Flags: + -o string + out PNG file prefix, empty for stdout + -s int + image size (pixel) (default 256) + +Usage: + 1. Arguments except for flags are joined by " " and used to generate QR code. + Default output is STDOUT, pipe to imagemagick command "display" to display + on any X server. + + qrcode hello word | display + + 2. Save to file if "display" not available: + + qrcode "homepage: https://github.com/skip2/go-qrcode" > out.png +``` + +## Links + +- [http://en.wikipedia.org/wiki/QR_code](http://en.wikipedia.org/wiki/QR_code) +- [ISO/IEC 18004:2006](http://www.iso.org/iso/catalogue_detail.htm?csnumber=43655) - Main QR Code specification (approx CHF 198,00)
+- [https://github.com/qpliu/qrencode-go/](https://github.com/qpliu/qrencode-go/) - alternative Go QR encoding library based on [ZXing](https://github.com/zxing/zxing) diff --git a/vendor/github.com/skip2/go-qrcode/bitset/bitset.go b/vendor/github.com/skip2/go-qrcode/bitset/bitset.go new file mode 100644 index 0000000..fba3bf4 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/bitset/bitset.go @@ -0,0 +1,273 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +// Package bitset implements an append only bit array. +// +// To create a Bitset and append some bits: +// // Bitset Contents +// b := bitset.New() // {} +// b.AppendBools(true, true, false) // {1, 1, 0} +// b.AppendBools(true) // {1, 1, 0, 1} +// b.AppendValue(0x02, 4) // {1, 1, 0, 1, 0, 0, 1, 0} +// +// To read values: +// +// len := b.Len() // 8 +// v := b.At(0) // 1 +// v = b.At(1) // 1 +// v = b.At(2) // 0 +// v = b.At(8) // 0 +package bitset + +import ( + "bytes" + "fmt" + "log" +) + +const ( + b0 = false + b1 = true +) + +// Bitset stores an array of bits. +type Bitset struct { + // The number of bits stored. + numBits int + + // Storage for individual bits. + bits []byte +} + +// New returns an initialised Bitset with optional initial bits v. +func New(v ...bool) *Bitset { + b := &Bitset{numBits: 0, bits: make([]byte, 0)} + b.AppendBools(v...) + + return b +} + +// Clone returns a copy. +func Clone(from *Bitset) *Bitset { + return &Bitset{numBits: from.numBits, bits: from.bits[:]} +} + +// Substr returns a substring, consisting of the bits from indexes start to end. +func (b *Bitset) Substr(start int, end int) *Bitset { + if start > end || end > b.numBits { + log.Panicf("Out of range start=%d end=%d numBits=%d", start, end, b.numBits) + } + + result := New() + result.ensureCapacity(end - start) + + for i := start; i < end; i++ { + if b.At(i) { + result.bits[result.numBits/8] |= 0x80 >> uint(result.numBits%8) + } + result.numBits++ + } + + return result +} + +// NewFromBase2String constructs and returns a Bitset from a string. The string +// consists of '1', '0' or ' ' characters, e.g. "1010 0101". The '1' and '0' +// characters represent true/false bits respectively, and ' ' characters are +// ignored. +// +// The function panics if the input string contains other characters. +func NewFromBase2String(b2string string) *Bitset { + b := &Bitset{numBits: 0, bits: make([]byte, 0)} + + for _, c := range b2string { + switch c { + case '1': + b.AppendBools(true) + case '0': + b.AppendBools(false) + case ' ': + default: + log.Panicf("Invalid char %c in NewFromBase2String", c) + } + } + + return b +} + +// AppendBytes appends a list of whole bytes. +func (b *Bitset) AppendBytes(data []byte) { + for _, d := range data { + b.AppendByte(d, 8) + } +} + +// AppendByte appends the numBits least significant bits from value. +func (b *Bitset) AppendByte(value byte, numBits int) { + b.ensureCapacity(numBits) + + if numBits > 8 { + log.Panicf("numBits %d out of range 0-8", numBits) + } + + for i := numBits - 1; i >= 0; i-- { + if value&(1<> uint(b.numBits%8) + } + + b.numBits++ + } +} + +// AppendUint32 appends the numBits least significant bits from value. +func (b *Bitset) AppendUint32(value uint32, numBits int) { + b.ensureCapacity(numBits) + + if numBits > 32 { + log.Panicf("numBits %d out of range 0-32", numBits) + } + + for i := numBits - 1; i >= 0; i-- { + if value&(1<> uint(b.numBits%8) + } + + b.numBits++ + } +} + +// ensureCapacity ensures the Bitset can store an additional |numBits|. +// +// The underlying array is expanded if necessary. To prevent frequent +// reallocation, expanding the underlying array at least doubles its capacity. +func (b *Bitset) ensureCapacity(numBits int) { + numBits += b.numBits + + newNumBytes := numBits / 8 + if numBits%8 != 0 { + newNumBytes++ + } + + if len(b.bits) >= newNumBytes { + return + } + + b.bits = append(b.bits, make([]byte, newNumBytes+2*len(b.bits))...) +} + +// Append bits copied from |other|. +// +// The new length is b.Len() + other.Len(). +func (b *Bitset) Append(other *Bitset) { + b.ensureCapacity(other.numBits) + + for i := 0; i < other.numBits; i++ { + if other.At(i) { + b.bits[b.numBits/8] |= 0x80 >> uint(b.numBits%8) + } + b.numBits++ + } +} + +// AppendBools appends bits to the Bitset. +func (b *Bitset) AppendBools(bits ...bool) { + b.ensureCapacity(len(bits)) + + for _, v := range bits { + if v { + b.bits[b.numBits/8] |= 0x80 >> uint(b.numBits%8) + } + b.numBits++ + } +} + +// AppendNumBools appends num bits of value value. +func (b *Bitset) AppendNumBools(num int, value bool) { + for i := 0; i < num; i++ { + b.AppendBools(value) + } +} + +// String returns a human readable representation of the Bitset's contents. +func (b *Bitset) String() string { + var bitString string + for i := 0; i < b.numBits; i++ { + if (i % 8) == 0 { + bitString += " " + } + + if (b.bits[i/8] & (0x80 >> byte(i%8))) != 0 { + bitString += "1" + } else { + bitString += "0" + } + } + + return fmt.Sprintf("numBits=%d, bits=%s", b.numBits, bitString) +} + +// Len returns the length of the Bitset in bits. +func (b *Bitset) Len() int { + return b.numBits +} + +// Bits returns the contents of the Bitset. +func (b *Bitset) Bits() []bool { + result := make([]bool, b.numBits) + + var i int + for i = 0; i < b.numBits; i++ { + result[i] = (b.bits[i/8] & (0x80 >> byte(i%8))) != 0 + } + + return result +} + +// At returns the value of the bit at |index|. +func (b *Bitset) At(index int) bool { + if index >= b.numBits { + log.Panicf("Index %d out of range", index) + } + + return (b.bits[index/8] & (0x80 >> byte(index%8))) != 0 +} + +// Equals returns true if the Bitset equals other. +func (b *Bitset) Equals(other *Bitset) bool { + if b.numBits != other.numBits { + return false + } + + if !bytes.Equal(b.bits[0:b.numBits/8], other.bits[0:b.numBits/8]) { + return false + } + + for i := 8 * (b.numBits / 8); i < b.numBits; i++ { + a := (b.bits[i/8] & (0x80 >> byte(i%8))) + b := (other.bits[i/8] & (0x80 >> byte(i%8))) + + if a != b { + return false + } + } + + return true +} + +// ByteAt returns a byte consisting of upto 8 bits starting at index. +func (b *Bitset) ByteAt(index int) byte { + if index < 0 || index >= b.numBits { + log.Panicf("Index %d out of range", index) + } + + var result byte + + for i := index; i < index+8 && i < b.numBits; i++ { + result <<= 1 + if b.At(i) { + result |= 1 + } + } + + return result +} diff --git a/vendor/github.com/skip2/go-qrcode/bitset/bitset_test.go b/vendor/github.com/skip2/go-qrcode/bitset/bitset_test.go new file mode 100644 index 0000000..e755a15 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/bitset/bitset_test.go @@ -0,0 +1,321 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package bitset + +import ( + rand "math/rand" + "testing" +) + +func TestNewBitset(t *testing.T) { + tests := [][]bool{ + {}, + {b1}, + {b0}, + {b1, b0}, + {b1, b0, b1}, + {b0, b0, b1}, + } + + for _, v := range tests { + result := New(v...) + + if !equal(result.Bits(), v) { + t.Errorf("%s", result.String()) + t.Errorf("%v => %v, want %v", v, result.Bits(), v) + } + } +} + +func TestAppend(t *testing.T) { + randomBools := make([]bool, 128) + + rng := rand.New(rand.NewSource(1)) + + for i := 0; i < len(randomBools); i++ { + randomBools[i] = rng.Intn(2) == 1 + } + + for i := 0; i < len(randomBools)-1; i++ { + a := New(randomBools[0:i]...) + b := New(randomBools[i:]...) + + a.Append(b) + + if !equal(a.Bits(), randomBools) { + t.Errorf("got %v, want %v", a.Bits(), randomBools) + } + } +} + +func TestAppendByte(t *testing.T) { + tests := []struct { + initial *Bitset + value byte + numBits int + expected *Bitset + }{ + { + New(), + 0x01, + 1, + New(b1), + }, + { + New(b1), + 0x01, + 1, + New(b1, b1), + }, + { + New(b0), + 0x01, + 1, + New(b0, b1), + }, + { + New(b1, b0, b1, b0, b1, b0, b1), + 0xAA, // 0b10101010 + 2, + New(b1, b0, b1, b0, b1, b0, b1, b1, b0), + }, + { + New(b1, b0, b1, b0, b1, b0, b1), + 0xAA, // 0b10101010 + 8, + New(b1, b0, b1, b0, b1, b0, b1, b1, b0, b1, b0, b1, b0, b1, b0), + }, + } + + for _, test := range tests { + test.initial.AppendByte(test.value, test.numBits) + if !equal(test.initial.Bits(), test.expected.Bits()) { + t.Errorf("Got %v, expected %v", test.initial.Bits(), + test.expected.Bits()) + } + } +} + +func TestAppendUint32(t *testing.T) { + tests := []struct { + initial *Bitset + value uint32 + numBits int + expected *Bitset + }{ + { + New(), + 0xAAAAAAAF, + 4, + New(b1, b1, b1, b1), + }, + { + New(), + 0xFFFFFFFF, + 32, + New(b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, + b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1, b1), + }, + { + New(), + 0x0, + 32, + New(b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, + b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0), + }, + { + New(), + 0xAAAAAAAA, + 32, + New(b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, + b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0), + }, + { + New(), + 0xAAAAAAAA, + 31, + New(b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, + b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, b0), + }, + } + + for _, test := range tests { + test.initial.AppendUint32(test.value, test.numBits) + if !equal(test.initial.Bits(), test.expected.Bits()) { + t.Errorf("Got %v, expected %v", test.initial.Bits(), + test.expected.Bits()) + } + } +} + +func TestAppendBools(t *testing.T) { + randomBools := make([]bool, 128) + + rng := rand.New(rand.NewSource(1)) + + for i := 0; i < len(randomBools); i++ { + randomBools[i] = rng.Intn(2) == 1 + } + + for i := 0; i < len(randomBools)-1; i++ { + result := New(randomBools[0:i]...) + result.AppendBools(randomBools[i:]...) + + if !equal(result.Bits(), randomBools) { + t.Errorf("got %v, want %v", result.Bits(), randomBools) + } + } +} + +func BenchmarkShortAppend(b *testing.B) { + bitset := New() + + for i := 0; i < b.N; i++ { + bitset.AppendBools(b0, b1, b0, b1, b0, b1, b0) + } +} + +func TestLen(t *testing.T) { + randomBools := make([]bool, 128) + + rng := rand.New(rand.NewSource(1)) + + for i := 0; i < len(randomBools); i++ { + randomBools[i] = rng.Intn(2) == 1 + } + + for i := 0; i < len(randomBools)-1; i++ { + result := New(randomBools[0:i]...) + + if result.Len() != i { + t.Errorf("Len = %d, want %d", result.Len(), i) + } + } +} + +func TestAt(t *testing.T) { + test := []bool{b0, b1, b0, b1, b0, b1, b1, b0, b1} + + bitset := New(test...) + for i, v := range test { + result := bitset.At(i) + + if result != test[i] { + t.Errorf("bitset[%d] => %t, want %t", i, result, v) + } + } +} + +func equal(a []bool, b []bool) bool { + if len(a) != len(b) { + return false + } + + for i := 0; i < len(a); i++ { + if a[i] != b[i] { + return false + } + } + + return true +} + +func TestExample(t *testing.T) { + b := New() // {} + b.AppendBools(true, true, false) // {1, 1, 0} + b.AppendBools(true) // {1, 1, 0, 1} + b.AppendByte(0x02, 4) // {1, 1, 0, 1, 0, 0, 1, 0} + + expected := []bool{b1, b1, b0, b1, b0, b0, b1, b0} + + if !equal(b.Bits(), expected) { + t.Errorf("Got %v, expected %v", b.Bits(), expected) + } +} + +func TestByteAt(t *testing.T) { + data := []bool{b0, b1, b0, b1, b0, b1, b1, b0, b1} + + tests := []struct { + index int + expected byte + }{ + { + 0, + 0x56, + }, + { + 1, + 0xad, + }, + { + 2, + 0x2d, + }, + { + 5, + 0x0d, + }, + { + 8, + 0x01, + }, + } + + for _, test := range tests { + b := New() + b.AppendBools(data...) + + result := b.ByteAt(test.index) + + if result != test.expected { + t.Errorf("Got %#x, expected %#x", result, test.expected) + } + } +} + +func TestSubstr(t *testing.T) { + data := []bool{b0, b1, b0, b1, b0, b1, b1, b0} + + tests := []struct { + start int + end int + expected []bool + }{ + { + 0, + 8, + []bool{b0, b1, b0, b1, b0, b1, b1, b0}, + }, + { + 0, + 0, + []bool{}, + }, + { + 0, + 1, + []bool{b0}, + }, + { + 2, + 4, + []bool{b0, b1}, + }, + } + + for _, test := range tests { + b := New() + b.AppendBools(data...) + + result := b.Substr(test.start, test.end) + + expected := New() + expected.AppendBools(test.expected...) + + if !result.Equals(expected) { + t.Errorf("Got %s, expected %s", result.String(), expected.String()) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/encoder.go b/vendor/github.com/skip2/go-qrcode/encoder.go new file mode 100644 index 0000000..713378c --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/encoder.go @@ -0,0 +1,455 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "errors" + "log" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +// Data encoding. +// +// The main data portion of a QR Code consists of one or more segments of data. +// A segment consists of: +// +// - The segment Data Mode: numeric, alphanumeric, or byte. +// - The length of segment in bits. +// - Encoded data. +// +// For example, the string "123ZZ#!#!" may be represented as: +// +// [numeric, 3, "123"] [alphanumeric, 2, "ZZ"] [byte, 4, "#!#!"] +// +// Multiple data modes exist to minimise the size of encoded data. For example, +// 8-bit bytes require 8 bits to encode each, but base 10 numeric data can be +// encoded at a higher density of 3 numbers (e.g. 123) per 10 bits. +// +// Some data can be represented in multiple modes. Numeric data can be +// represented in all three modes, whereas alphanumeric data (e.g. 'A') can be +// represented in alphanumeric and byte mode. +// +// Starting a new segment (to use a different Data Mode) has a cost, the bits to +// state the new segment Data Mode and length. To minimise each QR Code's symbol +// size, an optimisation routine coalesces segment types where possible, to +// reduce the encoded data length. +// +// There are several other data modes available (e.g. Kanji mode) which are not +// implemented here. + +// A segment encoding mode. +type dataMode uint8 + +const ( + // Each dataMode is a subset of the subsequent dataMode: + // dataModeNone < dataModeNumeric < dataModeAlphanumeric < dataModeByte + // + // This ordering is important for determining which data modes a character can + // be encoded with. E.g. 'E' can be encoded in both dataModeAlphanumeric and + // dataModeByte. + dataModeNone dataMode = 1 << iota + dataModeNumeric + dataModeAlphanumeric + dataModeByte +) + +// dataModeString returns d as a short printable string. +func dataModeString(d dataMode) string { + switch d { + case dataModeNone: + return "none" + case dataModeNumeric: + return "numeric" + case dataModeAlphanumeric: + return "alphanumeric" + case dataModeByte: + return "byte" + } + + return "unknown" +} + +type dataEncoderType uint8 + +const ( + dataEncoderType1To9 dataEncoderType = iota + dataEncoderType10To26 + dataEncoderType27To40 +) + +// segment is a single segment of data. +type segment struct { + // Data Mode (e.g. numeric). + dataMode dataMode + + // segment data (e.g. "abc"). + data []byte +} + +// A dataEncoder encodes data for a particular QR Code version. +type dataEncoder struct { + // Minimum & maximum versions supported. + minVersion int + maxVersion int + + // Mode indicator bit sequences. + numericModeIndicator *bitset.Bitset + alphanumericModeIndicator *bitset.Bitset + byteModeIndicator *bitset.Bitset + + // Character count lengths. + numNumericCharCountBits int + numAlphanumericCharCountBits int + numByteCharCountBits int + + // The raw input data. + data []byte + + // The data classified into unoptimised segments. + actual []segment + + // The data classified into optimised segments. + optimised []segment +} + +// newDataEncoder constructs a dataEncoder. +func newDataEncoder(t dataEncoderType) *dataEncoder { + d := &dataEncoder{} + + switch t { + case dataEncoderType1To9: + d = &dataEncoder{ + minVersion: 1, + maxVersion: 9, + numericModeIndicator: bitset.New(b0, b0, b0, b1), + alphanumericModeIndicator: bitset.New(b0, b0, b1, b0), + byteModeIndicator: bitset.New(b0, b1, b0, b0), + numNumericCharCountBits: 10, + numAlphanumericCharCountBits: 9, + numByteCharCountBits: 8, + } + case dataEncoderType10To26: + d = &dataEncoder{ + minVersion: 10, + maxVersion: 26, + numericModeIndicator: bitset.New(b0, b0, b0, b1), + alphanumericModeIndicator: bitset.New(b0, b0, b1, b0), + byteModeIndicator: bitset.New(b0, b1, b0, b0), + numNumericCharCountBits: 12, + numAlphanumericCharCountBits: 11, + numByteCharCountBits: 16, + } + case dataEncoderType27To40: + d = &dataEncoder{ + minVersion: 27, + maxVersion: 40, + numericModeIndicator: bitset.New(b0, b0, b0, b1), + alphanumericModeIndicator: bitset.New(b0, b0, b1, b0), + byteModeIndicator: bitset.New(b0, b1, b0, b0), + numNumericCharCountBits: 14, + numAlphanumericCharCountBits: 13, + numByteCharCountBits: 16, + } + default: + log.Panic("Unknown dataEncoderType") + } + + return d +} + +// encode data as one or more segments and return the encoded data. +// +// The returned data does not include the terminator bit sequence. +func (d *dataEncoder) encode(data []byte) (*bitset.Bitset, error) { + d.data = data + d.actual = nil + d.optimised = nil + + if len(data) == 0 { + return nil, errors.New("no data to encode") + } + + // Classify data into unoptimised segments. + d.classifyDataModes() + + // Optimise segments. + err := d.optimiseDataModes() + if err != nil { + return nil, err + } + + // Encode data. + encoded := bitset.New() + for _, s := range d.optimised { + d.encodeDataRaw(s.data, s.dataMode, encoded) + } + + return encoded, nil +} + +// classifyDataModes classifies the raw data into unoptimised segments. +// e.g. "123ZZ#!#!" => +// [numeric, 3, "123"] [alphanumeric, 2, "ZZ"] [byte, 4, "#!#!"]. +func (d *dataEncoder) classifyDataModes() { + var start int + mode := dataModeNone + + for i, v := range d.data { + newMode := dataModeNone + switch { + case v >= 0x30 && v <= 0x39: + newMode = dataModeNumeric + case v == 0x20 || v == 0x24 || v == 0x25 || v == 0x2a || v == 0x2b || v == + 0x2d || v == 0x2e || v == 0x2f || v == 0x3a || (v >= 0x41 && v <= 0x5a): + newMode = dataModeAlphanumeric + default: + newMode = dataModeByte + } + + if newMode != mode { + if i > 0 { + d.actual = append(d.actual, segment{dataMode: mode, data: d.data[start:i]}) + + start = i + } + + mode = newMode + } + } + + d.actual = append(d.actual, segment{dataMode: mode, data: d.data[start:len(d.data)]}) +} + +// optimiseDataModes optimises the list of segments to reduce the overall output +// encoded data length. +// +// The algorithm coalesces adjacent segments. segments are only coalesced when +// the Data Modes are compatible, and when the coalesced segment has a shorter +// encoded length than separate segments. +// +// Multiple segments may be coalesced. For example a string of alternating +// alphanumeric/numeric segments ANANANANA can be optimised to just A. +func (d *dataEncoder) optimiseDataModes() error { + for i := 0; i < len(d.actual); { + mode := d.actual[i].dataMode + numChars := len(d.actual[i].data) + + j := i + 1 + for j < len(d.actual) { + nextNumChars := len(d.actual[j].data) + nextMode := d.actual[j].dataMode + + if nextMode > mode { + break + } + + coalescedLength, err := d.encodedLength(mode, numChars+nextNumChars) + + if err != nil { + return err + } + + seperateLength1, err := d.encodedLength(mode, numChars) + + if err != nil { + return err + } + + seperateLength2, err := d.encodedLength(nextMode, nextNumChars) + + if err != nil { + return err + } + + if coalescedLength < seperateLength1+seperateLength2 { + j++ + numChars += nextNumChars + } else { + break + } + } + + optimised := segment{dataMode: mode, + data: make([]byte, 0, numChars)} + + for k := i; k < j; k++ { + optimised.data = append(optimised.data, d.actual[k].data...) + } + + d.optimised = append(d.optimised, optimised) + + i = j + } + + return nil +} + +// encodeDataRaw encodes data in dataMode. The encoded data is appended to +// encoded. +func (d *dataEncoder) encodeDataRaw(data []byte, dataMode dataMode, encoded *bitset.Bitset) { + modeIndicator := d.modeIndicator(dataMode) + charCountBits := d.charCountBits(dataMode) + + // Append mode indicator. + encoded.Append(modeIndicator) + + // Append character count. + encoded.AppendUint32(uint32(len(data)), charCountBits) + + // Append data. + switch dataMode { + case dataModeNumeric: + for i := 0; i < len(data); i += 3 { + charsRemaining := len(data) - i + + var value uint32 + bitsUsed := 1 + + for j := 0; j < charsRemaining && j < 3; j++ { + value *= 10 + value += uint32(data[i+j] - 0x30) + bitsUsed += 3 + } + encoded.AppendUint32(value, bitsUsed) + } + case dataModeAlphanumeric: + for i := 0; i < len(data); i += 2 { + charsRemaining := len(data) - i + + var value uint32 + for j := 0; j < charsRemaining && j < 2; j++ { + value *= 45 + value += encodeAlphanumericCharacter(data[i+j]) + } + + bitsUsed := 6 + if charsRemaining > 1 { + bitsUsed = 11 + } + + encoded.AppendUint32(value, bitsUsed) + } + case dataModeByte: + for _, b := range data { + encoded.AppendByte(b, 8) + } + } +} + +// modeIndicator returns the segment header bits for a segment of type dataMode. +func (d *dataEncoder) modeIndicator(dataMode dataMode) *bitset.Bitset { + switch dataMode { + case dataModeNumeric: + return d.numericModeIndicator + case dataModeAlphanumeric: + return d.alphanumericModeIndicator + case dataModeByte: + return d.byteModeIndicator + default: + log.Panic("Unknown data mode") + } + + return nil +} + +// charCountBits returns the number of bits used to encode the length of a data +// segment of type dataMode. +func (d *dataEncoder) charCountBits(dataMode dataMode) int { + switch dataMode { + case dataModeNumeric: + return d.numNumericCharCountBits + case dataModeAlphanumeric: + return d.numAlphanumericCharCountBits + case dataModeByte: + return d.numByteCharCountBits + default: + log.Panic("Unknown data mode") + } + + return 0 +} + +// encodedLength returns the number of bits required to encode n symbols in +// dataMode. +// +// The number of bits required is affected by: +// - QR code type - Mode Indicator length. +// - Data mode - number of bits used to represent data length. +// - Data mode - how the data is encoded. +// - Number of symbols encoded. +// +// An error is returned if the mode is not supported, or the length requested is +// too long to be represented. +func (d *dataEncoder) encodedLength(dataMode dataMode, n int) (int, error) { + modeIndicator := d.modeIndicator(dataMode) + charCountBits := d.charCountBits(dataMode) + + if modeIndicator == nil { + return 0, errors.New("mode not supported") + } + + maxLength := (1 << uint8(charCountBits)) - 1 + + if n > maxLength { + return 0, errors.New("length too long to be represented") + } + + length := modeIndicator.Len() + charCountBits + + switch dataMode { + case dataModeNumeric: + length += 10 * (n / 3) + + if n%3 != 0 { + length += 1 + 3*(n%3) + } + case dataModeAlphanumeric: + length += 11 * (n / 2) + length += 6 * (n % 2) + case dataModeByte: + length += 8 * n + } + + return length, nil +} + +// encodeAlphanumericChar returns the QR Code encoded value of v. +// +// v must be a QR Code defined alphanumeric character: 0-9, A-Z, SP, $%*+-./ or +// :. The characters are mapped to values in the range 0-44 respectively. +func encodeAlphanumericCharacter(v byte) uint32 { + c := uint32(v) + + switch { + case c >= '0' && c <= '9': + // 0-9 encoded as 0-9. + return c - '0' + case c >= 'A' && c <= 'Z': + // A-Z encoded as 10-35. + return c - 'A' + 10 + case c == ' ': + return 36 + case c == '$': + return 37 + case c == '%': + return 38 + case c == '*': + return 39 + case c == '+': + return 40 + case c == '-': + return 41 + case c == '.': + return 42 + case c == '/': + return 43 + case c == ':': + return 44 + default: + log.Panicf("encodeAlphanumericCharacter() with non alphanumeric char %v.", v) + } + + return 0 +} diff --git a/vendor/github.com/skip2/go-qrcode/encoder_test.go b/vendor/github.com/skip2/go-qrcode/encoder_test.go new file mode 100644 index 0000000..1bf74be --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/encoder_test.go @@ -0,0 +1,328 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "fmt" + "reflect" + "testing" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +func TestClassifyDataMode(t *testing.T) { + type Test struct { + } + + tests := []struct { + data []byte + actual []segment + }{ + { + []byte{0x30}, + []segment{ + { + dataModeNumeric, + []byte{0x30}, + }, + }, + }, + { + []byte{0x30, 0x41, 0x42, 0x43, 0x20, 0x00, 0xf0, 0xf1, 0xf2, 0x31}, + []segment{ + { + dataModeNumeric, + []byte{0x30}, + }, + { + dataModeAlphanumeric, + []byte{0x41, 0x42, 0x43, 0x20}, + }, + { + dataModeByte, + []byte{0x00, 0xf0, 0xf1, 0xf2}, + }, + { + dataModeNumeric, + []byte{0x31}, + }, + }, + }, + } + + for _, test := range tests { + encoder := newDataEncoder(dataEncoderType1To9) + encoder.encode(test.data) + + if !reflect.DeepEqual(test.actual, encoder.actual) { + t.Errorf("Got %v, expected %v", encoder.actual, test.actual) + } + } +} + +func TestByteModeLengthCalculations(t *testing.T) { + tests := []struct { + dataEncoderType dataEncoderType + dataMode dataMode + numSymbols int + expectedLength int + }{} + + for i, test := range tests { + encoder := newDataEncoder(test.dataEncoderType) + var resultLength int + + resultLength, err := encoder.encodedLength(test.dataMode, test.numSymbols) + + if test.expectedLength == -1 { + if err == nil { + t.Errorf("Test %d: got length %d, expected error", i, resultLength) + } + } else if resultLength != test.expectedLength { + t.Errorf("Test %d: got length %d, expected length %d", i, resultLength, + test.expectedLength) + } + } +} + +func TestSingleModeEncodings(t *testing.T) { + tests := []struct { + dataEncoderType dataEncoderType + dataMode dataMode + data string + expected *bitset.Bitset + }{ + { + dataEncoderType1To9, + dataModeNumeric, + "01234567", + bitset.NewFromBase2String("0001 0000001000 0000001100 0101011001 1000011"), + }, + { + dataEncoderType1To9, + dataModeAlphanumeric, + "AC-42", + bitset.NewFromBase2String("0010 000000101 00111001110 11100111001 000010"), + }, + { + dataEncoderType1To9, + dataModeByte, + "123", + bitset.NewFromBase2String("0100 00000011 00110001 00110010 00110011"), + }, + { + dataEncoderType10To26, + dataModeByte, + "123", + bitset.NewFromBase2String("0100 00000000 00000011 00110001 00110010 00110011"), + }, + { + dataEncoderType27To40, + dataModeByte, + "123", + bitset.NewFromBase2String("0100 00000000 00000011 00110001 00110010 00110011"), + }, + } + + for _, test := range tests { + encoder := newDataEncoder(test.dataEncoderType) + encoded := bitset.New() + + encoder.encodeDataRaw([]byte(test.data), test.dataMode, encoded) + + if !test.expected.Equals(encoded) { + t.Errorf("For %s got %s, expected %s", test.data, encoded.String(), + test.expected.String()) + } + } +} + +type testModeSegment struct { + dataMode dataMode + numChars int +} + +func TestOptimiseEncoding(t *testing.T) { + tests := []struct { + dataEncoderType dataEncoderType + actual []testModeSegment + optimised []testModeSegment + }{ + // Coalescing multiple segments. + { + dataEncoderType1To9, + []testModeSegment{ + {dataModeAlphanumeric, 1}, // length = 4 + 9 + 6 = 19 bits + {dataModeNumeric, 1}, // length = 4 + 10 + 4 = 18 bits + {dataModeAlphanumeric, 1}, // 19 bits. + {dataModeNumeric, 1}, // 18 bits. + {dataModeAlphanumeric, 1}, // 19 bits. + // total = 93 bits. + }, + []testModeSegment{ + {dataModeAlphanumeric, 5}, // length = 4 + 9 + 22 + 6 = 41. + }, + }, + // Coalesing not necessary. + { + dataEncoderType1To9, + []testModeSegment{ + {dataModeAlphanumeric, 1}, + {dataModeNumeric, 20}, + }, + []testModeSegment{ + {dataModeAlphanumeric, 1}, + {dataModeNumeric, 20}, + }, + }, + // Switch to more general dataMode. + { + dataEncoderType1To9, + []testModeSegment{ + {dataModeAlphanumeric, 1}, + {dataModeByte, 1}, + {dataModeNumeric, 1}, + }, + []testModeSegment{ + {dataModeAlphanumeric, 1}, + {dataModeByte, 2}, + }, + }, + // https://www.google.com/123 + // BBBBBAAABBBABBBBBBABBBANNN + { + dataEncoderType1To9, + []testModeSegment{ + {dataModeByte, 5}, + {dataModeAlphanumeric, 3}, + {dataModeByte, 3}, + {dataModeAlphanumeric, 1}, + {dataModeByte, 6}, + {dataModeAlphanumeric, 1}, + {dataModeAlphanumeric, 4}, + {dataModeNumeric, 3}, + }, + []testModeSegment{ + {dataModeByte, 23}, + {dataModeNumeric, 3}, + }, + }, + // HTTPS://WWW.GOOGLE.COM/123 + // AAAAAAAAAAAAAAAAAAAAAAANNN + { + dataEncoderType1To9, + []testModeSegment{ + {dataModeAlphanumeric, 23}, + {dataModeNumeric, 3}, + }, + []testModeSegment{ + {dataModeAlphanumeric, 26}, + }, + }, + { + dataEncoderType27To40, + []testModeSegment{ + {dataModeByte, 1}, + {dataModeNumeric, 1}, + {dataModeByte, 1}, + {dataModeNumeric, 1}, + {dataModeByte, 1}, + {dataModeNumeric, 1}, + {dataModeByte, 1}, + {dataModeNumeric, 1}, + }, + []testModeSegment{ + {dataModeByte, 8}, + }, + }, + } + + for _, test := range tests { + numTotalChars := 0 + for _, v := range test.actual { + numTotalChars += v.numChars + } + + data := make([]byte, numTotalChars) + + i := 0 + for _, v := range test.actual { + for j := 0; j < v.numChars; j++ { + switch v.dataMode { + case dataModeNumeric: + data[i] = '1' + case dataModeAlphanumeric: + data[i] = 'A' + case dataModeByte: + data[i] = '#' + default: + t.Fatal("Unrecognised data mode") + } + + i++ + } + } + + encoder := newDataEncoder(test.dataEncoderType) + + _, err := encoder.encode(data) + + if err != nil { + t.Errorf("Got %s, expected valid encoding", err.Error()) + } else { + ok := true + + if len(encoder.optimised) != len(test.optimised) { + ok = false + } else { + for i, s := range test.optimised { + if encoder.optimised[i].dataMode != s.dataMode || + len(encoder.optimised[i].data) != s.numChars { + ok = false + break + } + } + } + + if !ok { + t.Errorf("got %s, expected %s", segmentsString(encoder.optimised), + testModeSegmentsString(test.optimised)) + } + } + } +} + +func testModeSegmentsString(segments []testModeSegment) string { + result := "[" + + for i, segment := range segments { + if i > 0 { + result += ", " + } + + result += fmt.Sprintf("%d*%s", segment.numChars, + dataModeString(segment.dataMode)) + } + + result += "]" + + return result +} + +func segmentsString(segments []segment) string { + result := "[" + + for i, segment := range segments { + if i > 0 { + result += ", " + } + + result += fmt.Sprintf("%d*%s", len(segment.data), + dataModeString(segment.dataMode)) + } + + result += "]" + + return result +} diff --git a/vendor/github.com/skip2/go-qrcode/example_test.go b/vendor/github.com/skip2/go-qrcode/example_test.go new file mode 100644 index 0000000..2da3382 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/example_test.go @@ -0,0 +1,31 @@ +// go-qrcode +// Copyright 2014 Tom Harwood +/* + Amendments Thu, 2017-December-14: + - test integration (go test -v) + - idiomatic go code +*/ +package qrcode + +import ( + "fmt" + "os" + "testing" +) + +func TestExampleEncode(t *testing.T) { + if png, err := Encode("https://example.org", Medium, 256); err != nil { + t.Errorf("Error: %s", err.Error()) + } else { + fmt.Printf("PNG is %d bytes long", len(png)) + } +} + +func TestExampleWriteFile(t *testing.T) { + filename := "example.png" + if err := WriteFile("https://example.org", Medium, 256, filename); err != nil { + if err = os.Remove(filename); err != nil { + t.Errorf("Error: %s", err.Error()) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/qrcode.go b/vendor/github.com/skip2/go-qrcode/qrcode.go new file mode 100644 index 0000000..ae1f12e --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/qrcode.go @@ -0,0 +1,554 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +/* +Package qrcode implements a QR Code encoder. + +A QR Code is a matrix (two-dimensional) barcode. Arbitrary content may be +encoded. + +A QR Code contains error recovery information to aid reading damaged or +obscured codes. There are four levels of error recovery: qrcode.{Low, Medium, +High, Highest}. QR Codes with a higher recovery level are more robust to damage, +at the cost of being physically larger. + +Three functions cover most use cases: + +- Create a PNG image: + + var png []byte + png, err := qrcode.Encode("https://example.org", qrcode.Medium, 256) + +- Create a PNG image and write to a file: + + err := qrcode.WriteFile("https://example.org", qrcode.Medium, 256, "qr.png") + +- Create a PNG image with custom colors and write to file: + + err := qrcode.WriteColorFile("https://example.org", qrcode.Medium, 256, color.Black, color.White, "qr.png") + +All examples use the qrcode.Medium error Recovery Level and create a fixed +256x256px size QR Code. The last function creates a white on black instead of black +on white QR Code. + +To generate a variable sized image instead, specify a negative size (in place of +the 256 above), such as -4 or -5. Larger negative numbers create larger images: +A size of -5 sets each module (QR Code "pixel") to be 5px wide/high. + +- Create a PNG image (variable size, with minimum white padding) and write to a file: + + err := qrcode.WriteFile("https://example.org", qrcode.Medium, -5, "qr.png") + +The maximum capacity of a QR Code varies according to the content encoded and +the error recovery level. The maximum capacity is 2,953 bytes, 4,296 +alphanumeric characters, 7,089 numeric digits, or a combination of these. + +This package implements a subset of QR Code 2005, as defined in ISO/IEC +18004:2006. +*/ +package qrcode + +import ( + "bytes" + "errors" + "image" + "image/color" + "image/png" + "io" + "io/ioutil" + "log" + "os" + + bitset "github.com/skip2/go-qrcode/bitset" + reedsolomon "github.com/skip2/go-qrcode/reedsolomon" +) + +// Encode a QR Code and return a raw PNG image. +// +// size is both the image width and height in pixels. If size is too small then +// a larger image is silently returned. Negative values for size cause a +// variable sized image to be returned: See the documentation for Image(). +// +// To serve over HTTP, remember to send a Content-Type: image/png header. +func Encode(content string, level RecoveryLevel, size int) ([]byte, error) { + var q *QRCode + + q, err := New(content, level) + + if err != nil { + return nil, err + } + + return q.PNG(size) +} + +// WriteFile encodes, then writes a QR Code to the given filename in PNG format. +// +// size is both the image width and height in pixels. If size is too small then +// a larger image is silently written. Negative values for size cause a variable +// sized image to be written: See the documentation for Image(). +func WriteFile(content string, level RecoveryLevel, size int, filename string) error { + var q *QRCode + + q, err := New(content, level) + + if err != nil { + return err + } + + return q.WriteFile(size, filename) +} + +// WriteColorFile encodes, then writes a QR Code to the given filename in PNG format. +// With WriteColorFile you can also specify the colors you want to use. +// +// size is both the image width and height in pixels. If size is too small then +// a larger image is silently written. Negative values for size cause a variable +// sized image to be written: See the documentation for Image(). +func WriteColorFile(content string, level RecoveryLevel, size int, background, + foreground color.Color, filename string) error { + + var q *QRCode + + q, err := New(content, level) + + q.BackgroundColor = background + q.ForegroundColor = foreground + + if err != nil { + return err + } + + return q.WriteFile(size, filename) +} + +// A QRCode represents a valid encoded QRCode. +type QRCode struct { + // Original content encoded. + Content string + + // QR Code type. + Level RecoveryLevel + VersionNumber int + + // User settable drawing options. + ForegroundColor color.Color + BackgroundColor color.Color + + encoder *dataEncoder + version qrCodeVersion + + data *bitset.Bitset + symbol *symbol + mask int +} + +// New constructs a QRCode. +// +// var q *qrcode.QRCode +// q, err := qrcode.New("my content", qrcode.Medium) +// +// An error occurs if the content is too long. +func New(content string, level RecoveryLevel) (*QRCode, error) { + encoders := []dataEncoderType{dataEncoderType1To9, dataEncoderType10To26, + dataEncoderType27To40} + + var encoder *dataEncoder + var encoded *bitset.Bitset + var chosenVersion *qrCodeVersion + var err error + + for _, t := range encoders { + encoder = newDataEncoder(t) + encoded, err = encoder.encode([]byte(content)) + + if err != nil { + continue + } + + chosenVersion = chooseQRCodeVersion(level, encoder, encoded.Len()) + + if chosenVersion != nil { + break + } + } + + if err != nil { + return nil, err + } else if chosenVersion == nil { + return nil, errors.New("content too long to encode") + } + + q := &QRCode{ + Content: content, + + Level: level, + VersionNumber: chosenVersion.version, + + ForegroundColor: color.Black, + BackgroundColor: color.White, + + encoder: encoder, + data: encoded, + version: *chosenVersion, + } + + q.encode(chosenVersion.numTerminatorBitsRequired(encoded.Len())) + + return q, nil +} + +func newWithForcedVersion(content string, version int, level RecoveryLevel) (*QRCode, error) { + var encoder *dataEncoder + + switch { + case version >= 1 && version <= 9: + encoder = newDataEncoder(dataEncoderType1To9) + case version >= 10 && version <= 26: + encoder = newDataEncoder(dataEncoderType10To26) + case version >= 27 && version <= 40: + encoder = newDataEncoder(dataEncoderType27To40) + default: + log.Fatalf("Invalid version %d (expected 1-40 inclusive)", version) + } + + var encoded *bitset.Bitset + encoded, err := encoder.encode([]byte(content)) + + if err != nil { + return nil, err + } + + chosenVersion := getQRCodeVersion(level, version) + + if chosenVersion == nil { + return nil, errors.New("cannot find QR Code version") + } + + q := &QRCode{ + Content: content, + + Level: level, + VersionNumber: chosenVersion.version, + + ForegroundColor: color.Black, + BackgroundColor: color.White, + + encoder: encoder, + data: encoded, + version: *chosenVersion, + } + + q.encode(chosenVersion.numTerminatorBitsRequired(encoded.Len())) + + return q, nil +} + +// Bitmap returns the QR Code as a 2D array of 1-bit pixels. +// +// bitmap[y][x] is true if the pixel at (x, y) is set. +// +// The bitmap includes the required "quiet zone" around the QR Code to aid +// decoding. +func (q *QRCode) Bitmap() [][]bool { + return q.symbol.bitmap() +} + +// Image returns the QR Code as an image.Image. +// +// A positive size sets a fixed image width and height (e.g. 256 yields an +// 256x256px image). +// +// Depending on the amount of data encoded, fixed size images can have different +// amounts of padding (white space around the QR Code). As an alternative, a +// variable sized image can be generated instead: +// +// A negative size causes a variable sized image to be returned. The image +// returned is the minimum size required for the QR Code. Choose a larger +// negative number to increase the scale of the image. e.g. a size of -5 causes +// each module (QR Code "pixel") to be 5px in size. +func (q *QRCode) Image(size int) image.Image { + // Minimum pixels (both width and height) required. + realSize := q.symbol.size + + // Variable size support. + if size < 0 { + size = size * -1 * realSize + } + + // Actual pixels available to draw the symbol. Automatically increase the + // image size if it's not large enough. + if size < realSize { + size = realSize + } + + // Size of each module drawn. + pixelsPerModule := size / realSize + + // Center the symbol within the image. + offset := (size - realSize*pixelsPerModule) / 2 + + rect := image.Rectangle{Min: image.Point{0, 0}, Max: image.Point{size, size}} + + // Saves a few bytes to have them in this order + p := color.Palette([]color.Color{q.BackgroundColor, q.ForegroundColor}) + img := image.NewPaletted(rect, p) + + for i := 0; i < size; i++ { + for j := 0; j < size; j++ { + img.Set(i, j, q.BackgroundColor) + } + } + + bitmap := q.symbol.bitmap() + for y, row := range bitmap { + for x, v := range row { + if v { + startX := x*pixelsPerModule + offset + startY := y*pixelsPerModule + offset + for i := startX; i < startX+pixelsPerModule; i++ { + for j := startY; j < startY+pixelsPerModule; j++ { + img.Set(i, j, q.ForegroundColor) + } + } + } + } + } + + return img +} + +// PNG returns the QR Code as a PNG image. +// +// size is both the image width and height in pixels. If size is too small then +// a larger image is silently returned. Negative values for size cause a +// variable sized image to be returned: See the documentation for Image(). +func (q *QRCode) PNG(size int) ([]byte, error) { + img := q.Image(size) + + encoder := png.Encoder{CompressionLevel: png.BestCompression} + + var b bytes.Buffer + err := encoder.Encode(&b, img) + + if err != nil { + return nil, err + } + + return b.Bytes(), nil +} + +// Write writes the QR Code as a PNG image to io.Writer. +// +// size is both the image width and height in pixels. If size is too small then +// a larger image is silently written. Negative values for size cause a +// variable sized image to be written: See the documentation for Image(). +func (q *QRCode) Write(size int, out io.Writer) error { + var png []byte + + png, err := q.PNG(size) + + if err != nil { + return err + } + _, err = out.Write(png) + return err +} + +// WriteFile writes the QR Code as a PNG image to the specified file. +// +// size is both the image width and height in pixels. If size is too small then +// a larger image is silently written. Negative values for size cause a +// variable sized image to be written: See the documentation for Image(). +func (q *QRCode) WriteFile(size int, filename string) error { + var png []byte + + png, err := q.PNG(size) + + if err != nil { + return err + } + + return ioutil.WriteFile(filename, png, os.FileMode(0644)) +} + +// encode completes the steps required to encode the QR Code. These include +// adding the terminator bits and padding, splitting the data into blocks and +// applying the error correction, and selecting the best data mask. +func (q *QRCode) encode(numTerminatorBits int) { + q.addTerminatorBits(numTerminatorBits) + q.addPadding() + + encoded := q.encodeBlocks() + + const numMasks int = 8 + penalty := 0 + + for mask := 0; mask < numMasks; mask++ { + var s *symbol + var err error + + s, err = buildRegularSymbol(q.version, mask, encoded) + + if err != nil { + log.Panic(err.Error()) + } + + numEmptyModules := s.numEmptyModules() + if numEmptyModules != 0 { + log.Panicf("bug: numEmptyModules is %d (expected 0) (version=%d)", + numEmptyModules, q.VersionNumber) + } + + p := s.penaltyScore() + + //log.Printf("mask=%d p=%3d p1=%3d p2=%3d p3=%3d p4=%d\n", mask, p, s.penalty1(), s.penalty2(), s.penalty3(), s.penalty4()) + + if q.symbol == nil || p < penalty { + q.symbol = s + q.mask = mask + penalty = p + } + } +} + +// addTerminatorBits adds final terminator bits to the encoded data. +// +// The number of terminator bits required is determined when the QR Code version +// is chosen (which itself depends on the length of the data encoded). The +// terminator bits are thus added after the QR Code version +// is chosen, rather than at the data encoding stage. +func (q *QRCode) addTerminatorBits(numTerminatorBits int) { + q.data.AppendNumBools(numTerminatorBits, false) +} + +// encodeBlocks takes the completed (terminated & padded) encoded data, splits +// the data into blocks (as specified by the QR Code version), applies error +// correction to each block, then interleaves the blocks together. +// +// The QR Code's final data sequence is returned. +func (q *QRCode) encodeBlocks() *bitset.Bitset { + // Split into blocks. + type dataBlock struct { + data *bitset.Bitset + ecStartOffset int + } + + block := make([]dataBlock, q.version.numBlocks()) + + start := 0 + end := 0 + blockID := 0 + + for _, b := range q.version.block { + for j := 0; j < b.numBlocks; j++ { + start = end + end = start + b.numDataCodewords*8 + + // Apply error correction to each block. + numErrorCodewords := b.numCodewords - b.numDataCodewords + block[blockID].data = reedsolomon.Encode(q.data.Substr(start, end), numErrorCodewords) + block[blockID].ecStartOffset = end - start + + blockID++ + } + } + + // Interleave the blocks. + + result := bitset.New() + + // Combine data blocks. + working := true + for i := 0; working; i += 8 { + working = false + + for j, b := range block { + if i >= block[j].ecStartOffset { + continue + } + + result.Append(b.data.Substr(i, i+8)) + + working = true + } + } + + // Combine error correction blocks. + working = true + for i := 0; working; i += 8 { + working = false + + for j, b := range block { + offset := i + block[j].ecStartOffset + if offset >= block[j].data.Len() { + continue + } + + result.Append(b.data.Substr(offset, offset+8)) + + working = true + } + } + + // Append remainder bits. + result.AppendNumBools(q.version.numRemainderBits, false) + + return result +} + +// max returns the maximum of a and b. +func max(a int, b int) int { + if a > b { + return a + } + + return b +} + +// addPadding pads the encoded data upto the full length required. +func (q *QRCode) addPadding() { + numDataBits := q.version.numDataBits() + + if q.data.Len() == numDataBits { + return + } + + // Pad to the nearest codeword boundary. + q.data.AppendNumBools(q.version.numBitsToPadToCodeword(q.data.Len()), false) + + // Pad codewords 0b11101100 and 0b00010001. + padding := [2]*bitset.Bitset{ + bitset.New(true, true, true, false, true, true, false, false), + bitset.New(false, false, false, true, false, false, false, true), + } + + // Insert pad codewords alternately. + i := 0 + for numDataBits-q.data.Len() >= 8 { + q.data.Append(padding[i]) + + i = 1 - i // Alternate between 0 and 1. + } + + if q.data.Len() != numDataBits { + log.Panicf("BUG: got len %d, expected %d", q.data.Len(), numDataBits) + } +} + +// ToString produces a multi-line string that forms a QR-code image. +func (q *QRCode) ToString(inverseColor bool) string { + bits := q.Bitmap() + var buf bytes.Buffer + for y := range bits { + for x := range bits[y] { + if bits[y][x] != inverseColor { + buf.WriteString(" ") + } else { + buf.WriteString("██") + } + } + buf.WriteString("\n") + } + return buf.String() +} diff --git a/vendor/github.com/skip2/go-qrcode/qrcode/main.go b/vendor/github.com/skip2/go-qrcode/qrcode/main.go new file mode 100644 index 0000000..e93286e --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/qrcode/main.go @@ -0,0 +1,85 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package main + +import ( + "flag" + "fmt" + "os" + "strings" + + qrcode "github.com/skip2/go-qrcode" +) + +func main() { + outFile := flag.String("o", "", "out PNG file prefix, empty for stdout") + size := flag.Int("s", 256, "image size (pixel)") + textArt := flag.Bool("t", false, "print as text-art on stdout") + negative := flag.Bool("i", false, "invert black and white") + flag.Usage = func() { + fmt.Fprintf(os.Stderr, `qrcode -- QR Code encoder in Go +https://github.com/skip2/go-qrcode + +Flags: +`) + flag.PrintDefaults() + fmt.Fprintf(os.Stderr, ` +Usage: + 1. Arguments except for flags are joined by " " and used to generate QR code. + Default output is STDOUT, pipe to imagemagick command "display" to display + on any X server. + + qrcode hello word | display + + 2. Save to file if "display" not available: + + qrcode "homepage: https://github.com/skip2/go-qrcode" > out.png + +`) + } + flag.Parse() + + if len(flag.Args()) == 0 { + flag.Usage() + checkError(fmt.Errorf("Error: no content given")) + } + + content := strings.Join(flag.Args(), " ") + + var err error + var q *qrcode.QRCode + q, err = qrcode.New(content, qrcode.Highest) + checkError(err) + + if *textArt { + art := q.ToString(*negative) + fmt.Println(art) + return + } + + if *negative { + q.ForegroundColor, q.BackgroundColor = q.BackgroundColor, q.ForegroundColor + } + + var png []byte + png, err = q.PNG(*size) + checkError(err) + + if *outFile == "" { + os.Stdout.Write(png) + } else { + var fh *os.File + fh, err = os.Create(*outFile + ".png") + checkError(err) + defer fh.Close() + fh.Write(png) + } +} + +func checkError(err error) { + if err != nil { + fmt.Fprintf(os.Stderr, "%s\n", err) + os.Exit(1) + } +} diff --git a/vendor/github.com/skip2/go-qrcode/qrcode_decode_test.go b/vendor/github.com/skip2/go-qrcode/qrcode_decode_test.go new file mode 100644 index 0000000..870640b --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/qrcode_decode_test.go @@ -0,0 +1,232 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "bytes" + "flag" + "fmt" + "math/rand" + "os/exec" + "strings" + "testing" +) + +// These tests use zbarimg to decode generated QR Codes to ensure they are +// readable. sudo apt-get install zbar-tools, or download from +// http://zbar.sourceforge.net. +// +// By default these tests are disabled to avoid a dependency on zbarimg if +// you're not running the tests. Use the -test-decode flag (go test +// -test-decode) to enable. + +var testDecode *bool = flag.Bool("test-decode", + false, + "Enable decode tests. Requires zbarimg installed.") + +var testDecodeFuzz *bool = flag.Bool("test-decode-fuzz", + false, + "Enable decode fuzz tests. Requires zbarimg installed.") + +func TestDecodeBasic(t *testing.T) { + if !*testDecode { + t.Skip("Decode tests not enabled") + } + + tests := []struct { + content string + numRepetitions int + level RecoveryLevel + }{ + { + "A", + 1, + Low, + }, + { + "A", + 1, + Medium, + }, + { + "A", + 1, + High, + }, + { + "A", + 1, + Highest, + }, + { + "01234567", + 1, + Medium, + }, + } + + for _, test := range tests { + content := strings.Repeat(test.content, test.numRepetitions) + + q, err := New(content, test.level) + if err != nil { + t.Error(err.Error()) + } + + err = zbarimgCheck(q) + + if err != nil { + t.Error(err.Error()) + } + } +} + +func TestDecodeAllVersionLevels(t *testing.T) { + if !*testDecode { + t.Skip("Decode tests not enabled") + } + + for version := 1; version <= 40; version++ { + for _, level := range []RecoveryLevel{Low, Medium, High, Highest} { + t.Logf("Version=%d Level=%d", + version, + level) + + q, err := newWithForcedVersion( + fmt.Sprintf("v-%d l-%d", version, level), version, level) + if err != nil { + t.Fatal(err.Error()) + return + } + + err = zbarimgCheck(q) + + if err != nil { + t.Errorf("Version=%d Level=%d, err=%s, expected success", + version, + level, + err.Error()) + continue + } + } + } +} + +func TestDecodeAllCharacters(t *testing.T) { + if !*testDecode { + t.Skip("Decode tests not enabled") + } + + var content string + + // zbarimg has trouble with null bytes, hence start from ASCII 1. + for i := 1; i < 256; i++ { + content += string(i) + } + + q, err := New(content, Low) + if err != nil { + t.Error(err.Error()) + } + + err = zbarimgCheck(q) + + if err != nil { + t.Error(err.Error()) + } +} + +func TestDecodeFuzz(t *testing.T) { + if !*testDecodeFuzz { + t.Skip("Decode fuzz tests not enabled") + } + + r := rand.New(rand.NewSource(0)) + + const iterations int = 32 + const maxLength int = 128 + + for i := 0; i < iterations; i++ { + len := r.Intn(maxLength-1) + 1 + + var content string + for j := 0; j < len; j++ { + // zbarimg seems to have trouble with special characters, test printable + // characters only for now. + content += string(32 + r.Intn(94)) + } + + for _, level := range []RecoveryLevel{Low, Medium, High, Highest} { + q, err := New(content, level) + if err != nil { + t.Error(err.Error()) + } + + err = zbarimgCheck(q) + + if err != nil { + t.Error(err.Error()) + } + } + } +} + +func zbarimgCheck(q *QRCode) error { + s, err := zbarimgDecode(q) + if err != nil { + return err + } + + if s != q.Content { + q.WriteFile(256, fmt.Sprintf("%x.png", q.Content)) + return fmt.Errorf("got '%s' (%x) expected '%s' (%x)", s, s, q.Content, q.Content) + } + + return nil +} + +func zbarimgDecode(q *QRCode) (string, error) { + var png []byte + + // 512x512px + png, err := q.PNG(512) + if err != nil { + return "", err + } + + cmd := exec.Command("zbarimg", "--quiet", "-Sdisable", + "-Sqrcode.enable", "/dev/stdin") + + var out bytes.Buffer + + cmd.Stdin = bytes.NewBuffer(png) + cmd.Stdout = &out + + err = cmd.Run() + + if err != nil { + return "", err + } + + return strings.TrimSuffix(strings.TrimPrefix(out.String(), "QR-Code:"), "\n"), nil +} + +func BenchmarkDecodeTest(b *testing.B) { + if !*testDecode { + b.Skip("Decode benchmarks not enabled") + } + + for n := 0; n < b.N; n++ { + q, err := New("content", Medium) + if err != nil { + b.Error(err.Error()) + } + + err = zbarimgCheck(q) + + if err != nil { + b.Error(err.Error()) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/qrcode_test.go b/vendor/github.com/skip2/go-qrcode/qrcode_test.go new file mode 100644 index 0000000..258f792 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/qrcode_test.go @@ -0,0 +1,173 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "strings" + "testing" +) + +func TestQRCodeMaxCapacity(t *testing.T) { + if testing.Short() { + t.Skip("Skipping TestQRCodeCapacity") + } + + tests := []struct { + string string + numRepetitions int + }{ + { + "0", + 7089, + }, + { + "A", + 4296, + }, + { + "#", + 2953, + }, + // Alternate byte/numeric data types. Optimises to 2,952 bytes. + { + "#1", + 1476, + }, + } + + for _, test := range tests { + _, err := New(strings.Repeat(test.string, test.numRepetitions), Low) + + if err != nil { + t.Errorf("%d x '%s' got %s expected success", test.numRepetitions, + test.string, err.Error()) + } + } + + for _, test := range tests { + _, err := New(strings.Repeat(test.string, test.numRepetitions+1), Low) + + if err == nil { + t.Errorf("%d x '%s' chars encodable, expected not encodable", + test.numRepetitions+1, test.string) + } + } +} + +func TestQRCodeVersionCapacity(t *testing.T) { + tests := []struct { + version int + level RecoveryLevel + maxNumeric int + maxAlphanumeric int + maxByte int + }{ + { + 1, + Low, + 41, + 25, + 17, + }, + { + 2, + Low, + 77, + 47, + 32, + }, + { + 2, + Highest, + 34, + 20, + 14, + }, + { + 40, + Low, + 7089, + 4296, + 2953, + }, + { + 40, + Highest, + 3057, + 1852, + 1273, + }, + } + + for i, test := range tests { + numericData := strings.Repeat("1", test.maxNumeric) + alphanumericData := strings.Repeat("A", test.maxAlphanumeric) + byteData := strings.Repeat("#", test.maxByte) + + var n *QRCode + var a *QRCode + var b *QRCode + var err error + + n, err = New(numericData, test.level) + if err != nil { + t.Fatal(err.Error()) + } + + a, err = New(alphanumericData, test.level) + if err != nil { + t.Fatal(err.Error()) + } + + b, err = New(byteData, test.level) + if err != nil { + t.Fatal(err.Error()) + } + + if n.VersionNumber != test.version { + t.Fatalf("Test #%d numeric has version #%d, expected #%d", i, + n.VersionNumber, test.version) + } + + if a.VersionNumber != test.version { + t.Fatalf("Test #%d alphanumeric has version #%d, expected #%d", i, + a.VersionNumber, test.version) + } + + if b.VersionNumber != test.version { + t.Fatalf("Test #%d byte has version #%d, expected #%d", i, + b.VersionNumber, test.version) + } + } +} + +func TestQRCodeISOAnnexIExample(t *testing.T) { + var q *QRCode + q, err := New("01234567", Medium) + + if err != nil { + t.Fatalf("Error producing ISO Annex I Example: %s, expected success", + err.Error()) + } + + const expectedMask int = 2 + + if q.mask != 2 { + t.Errorf("ISO Annex I example mask got %d, expected %d\n", q.mask, + expectedMask) + } +} + +func BenchmarkQRCodeURLSize(b *testing.B) { + for n := 0; n < b.N; n++ { + New("http://www.example.org", Medium) + } +} + +func BenchmarkQRCodeMaximumSize(b *testing.B) { + for n := 0; n < b.N; n++ { + // 7089 is the maximum encodable number of numeric digits. + New(strings.Repeat("0", 7089), Low) + } +} diff --git a/vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8.go b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8.go new file mode 100644 index 0000000..6a7003f --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8.go @@ -0,0 +1,387 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package reedsolomon + +// Addition, subtraction, multiplication, and division in GF(2^8). +// Operations are performed modulo x^8 + x^4 + x^3 + x^2 + 1. + +// http://en.wikipedia.org/wiki/Finite_field_arithmetic + +import "log" + +const ( + gfZero = gfElement(0) + gfOne = gfElement(1) +) + +var ( + gfExpTable = [256]gfElement{ + /* 0 - 9 */ 1, 2, 4, 8, 16, 32, 64, 128, 29, 58, + /* 10 - 19 */ 116, 232, 205, 135, 19, 38, 76, 152, 45, 90, + /* 20 - 29 */ 180, 117, 234, 201, 143, 3, 6, 12, 24, 48, + /* 30 - 39 */ 96, 192, 157, 39, 78, 156, 37, 74, 148, 53, + /* 40 - 49 */ 106, 212, 181, 119, 238, 193, 159, 35, 70, 140, + /* 50 - 59 */ 5, 10, 20, 40, 80, 160, 93, 186, 105, 210, + /* 60 - 69 */ 185, 111, 222, 161, 95, 190, 97, 194, 153, 47, + /* 70 - 79 */ 94, 188, 101, 202, 137, 15, 30, 60, 120, 240, + /* 80 - 89 */ 253, 231, 211, 187, 107, 214, 177, 127, 254, 225, + /* 90 - 99 */ 223, 163, 91, 182, 113, 226, 217, 175, 67, 134, + /* 100 - 109 */ 17, 34, 68, 136, 13, 26, 52, 104, 208, 189, + /* 110 - 119 */ 103, 206, 129, 31, 62, 124, 248, 237, 199, 147, + /* 120 - 129 */ 59, 118, 236, 197, 151, 51, 102, 204, 133, 23, + /* 130 - 139 */ 46, 92, 184, 109, 218, 169, 79, 158, 33, 66, + /* 140 - 149 */ 132, 21, 42, 84, 168, 77, 154, 41, 82, 164, + /* 150 - 159 */ 85, 170, 73, 146, 57, 114, 228, 213, 183, 115, + /* 160 - 169 */ 230, 209, 191, 99, 198, 145, 63, 126, 252, 229, + /* 170 - 179 */ 215, 179, 123, 246, 241, 255, 227, 219, 171, 75, + /* 180 - 189 */ 150, 49, 98, 196, 149, 55, 110, 220, 165, 87, + /* 190 - 199 */ 174, 65, 130, 25, 50, 100, 200, 141, 7, 14, + /* 200 - 209 */ 28, 56, 112, 224, 221, 167, 83, 166, 81, 162, + /* 210 - 219 */ 89, 178, 121, 242, 249, 239, 195, 155, 43, 86, + /* 220 - 229 */ 172, 69, 138, 9, 18, 36, 72, 144, 61, 122, + /* 230 - 239 */ 244, 245, 247, 243, 251, 235, 203, 139, 11, 22, + /* 240 - 249 */ 44, 88, 176, 125, 250, 233, 207, 131, 27, 54, + /* 250 - 255 */ 108, 216, 173, 71, 142, 1} + + gfLogTable = [256]int{ + /* 0 - 9 */ -1, 0, 1, 25, 2, 50, 26, 198, 3, 223, + /* 10 - 19 */ 51, 238, 27, 104, 199, 75, 4, 100, 224, 14, + /* 20 - 29 */ 52, 141, 239, 129, 28, 193, 105, 248, 200, 8, + /* 30 - 39 */ 76, 113, 5, 138, 101, 47, 225, 36, 15, 33, + /* 40 - 49 */ 53, 147, 142, 218, 240, 18, 130, 69, 29, 181, + /* 50 - 59 */ 194, 125, 106, 39, 249, 185, 201, 154, 9, 120, + /* 60 - 69 */ 77, 228, 114, 166, 6, 191, 139, 98, 102, 221, + /* 70 - 79 */ 48, 253, 226, 152, 37, 179, 16, 145, 34, 136, + /* 80 - 89 */ 54, 208, 148, 206, 143, 150, 219, 189, 241, 210, + /* 90 - 99 */ 19, 92, 131, 56, 70, 64, 30, 66, 182, 163, + /* 100 - 109 */ 195, 72, 126, 110, 107, 58, 40, 84, 250, 133, + /* 110 - 119 */ 186, 61, 202, 94, 155, 159, 10, 21, 121, 43, + /* 120 - 129 */ 78, 212, 229, 172, 115, 243, 167, 87, 7, 112, + /* 130 - 139 */ 192, 247, 140, 128, 99, 13, 103, 74, 222, 237, + /* 140 - 149 */ 49, 197, 254, 24, 227, 165, 153, 119, 38, 184, + /* 150 - 159 */ 180, 124, 17, 68, 146, 217, 35, 32, 137, 46, + /* 160 - 169 */ 55, 63, 209, 91, 149, 188, 207, 205, 144, 135, + /* 170 - 179 */ 151, 178, 220, 252, 190, 97, 242, 86, 211, 171, + /* 180 - 189 */ 20, 42, 93, 158, 132, 60, 57, 83, 71, 109, + /* 190 - 199 */ 65, 162, 31, 45, 67, 216, 183, 123, 164, 118, + /* 200 - 209 */ 196, 23, 73, 236, 127, 12, 111, 246, 108, 161, + /* 210 - 219 */ 59, 82, 41, 157, 85, 170, 251, 96, 134, 177, + /* 220 - 229 */ 187, 204, 62, 90, 203, 89, 95, 176, 156, 169, + /* 230 - 239 */ 160, 81, 11, 245, 22, 235, 122, 117, 44, 215, + /* 240 - 249 */ 79, 174, 213, 233, 230, 231, 173, 232, 116, 214, + /* 250 - 255 */ 244, 234, 168, 80, 88, 175} +) + +// gfElement is an element in GF(2^8). +type gfElement uint8 + +// newGFElement creates and returns a new gfElement. +func newGFElement(data byte) gfElement { + return gfElement(data) +} + +// gfAdd returns a + b. +func gfAdd(a, b gfElement) gfElement { + return a ^ b +} + +// gfSub returns a - b. +// +// Note addition is equivalent to subtraction in GF(2). +func gfSub(a, b gfElement) gfElement { + return a ^ b +} + +// gfMultiply returns a * b. +func gfMultiply(a, b gfElement) gfElement { + if a == gfZero || b == gfZero { + return gfZero + } + + return gfExpTable[(gfLogTable[a]+gfLogTable[b])%255] +} + +// gfDivide returns a / b. +// +// Divide by zero results in a panic. +func gfDivide(a, b gfElement) gfElement { + if a == gfZero { + return gfZero + } else if b == gfZero { + log.Panicln("Divide by zero") + } + + return gfMultiply(a, gfInverse(b)) +} + +// gfInverse returns the multiplicative inverse of a, a^-1. +// +// a * a^-1 = 1 +func gfInverse(a gfElement) gfElement { + if a == gfZero { + log.Panicln("No multiplicative inverse of 0") + } + + return gfExpTable[255-gfLogTable[a]] +} + +// a^i | bits | polynomial | decimal +// -------------------------------------------------------------------------- +// 0 | 000000000 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 0 +// a^0 | 000000001 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 1 +// a^1 | 000000010 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 2 +// a^2 | 000000100 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 4 +// a^3 | 000001000 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 8 +// a^4 | 000010000 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 16 +// a^5 | 000100000 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 32 +// a^6 | 001000000 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 64 +// a^7 | 010000000 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 128 +// a^8 | 000011101 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 29 +// a^9 | 000111010 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 58 +// a^10 | 001110100 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 116 +// a^11 | 011101000 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 232 +// a^12 | 011001101 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 205 +// a^13 | 010000111 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 135 +// a^14 | 000010011 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 19 +// a^15 | 000100110 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 38 +// a^16 | 001001100 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 76 +// a^17 | 010011000 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 152 +// a^18 | 000101101 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 45 +// a^19 | 001011010 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 90 +// a^20 | 010110100 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 180 +// a^21 | 001110101 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 117 +// a^22 | 011101010 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 234 +// a^23 | 011001001 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 201 +// a^24 | 010001111 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 143 +// a^25 | 000000011 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 3 +// a^26 | 000000110 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 6 +// a^27 | 000001100 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 12 +// a^28 | 000011000 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 24 +// a^29 | 000110000 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 48 +// a^30 | 001100000 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 96 +// a^31 | 011000000 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 192 +// a^32 | 010011101 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 157 +// a^33 | 000100111 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 39 +// a^34 | 001001110 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 78 +// a^35 | 010011100 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 156 +// a^36 | 000100101 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 37 +// a^37 | 001001010 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 74 +// a^38 | 010010100 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 148 +// a^39 | 000110101 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 53 +// a^40 | 001101010 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 106 +// a^41 | 011010100 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 212 +// a^42 | 010110101 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 181 +// a^43 | 001110111 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 119 +// a^44 | 011101110 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 238 +// a^45 | 011000001 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 193 +// a^46 | 010011111 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 159 +// a^47 | 000100011 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 35 +// a^48 | 001000110 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 70 +// a^49 | 010001100 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 140 +// a^50 | 000000101 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 5 +// a^51 | 000001010 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 10 +// a^52 | 000010100 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 20 +// a^53 | 000101000 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 40 +// a^54 | 001010000 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 80 +// a^55 | 010100000 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 160 +// a^56 | 001011101 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 93 +// a^57 | 010111010 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 186 +// a^58 | 001101001 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 105 +// a^59 | 011010010 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 210 +// a^60 | 010111001 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 185 +// a^61 | 001101111 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 111 +// a^62 | 011011110 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 222 +// a^63 | 010100001 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 161 +// a^64 | 001011111 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 95 +// a^65 | 010111110 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 190 +// a^66 | 001100001 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 97 +// a^67 | 011000010 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 194 +// a^68 | 010011001 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 153 +// a^69 | 000101111 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 47 +// a^70 | 001011110 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 94 +// a^71 | 010111100 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 188 +// a^72 | 001100101 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 101 +// a^73 | 011001010 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 202 +// a^74 | 010001001 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 137 +// a^75 | 000001111 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 15 +// a^76 | 000011110 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 30 +// a^77 | 000111100 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 60 +// a^78 | 001111000 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 120 +// a^79 | 011110000 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 240 +// a^80 | 011111101 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 253 +// a^81 | 011100111 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 231 +// a^82 | 011010011 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 211 +// a^83 | 010111011 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 187 +// a^84 | 001101011 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 107 +// a^85 | 011010110 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 214 +// a^86 | 010110001 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 177 +// a^87 | 001111111 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 127 +// a^88 | 011111110 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 254 +// a^89 | 011100001 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 225 +// a^90 | 011011111 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 223 +// a^91 | 010100011 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 163 +// a^92 | 001011011 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 91 +// a^93 | 010110110 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 182 +// a^94 | 001110001 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 113 +// a^95 | 011100010 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 226 +// a^96 | 011011001 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 217 +// a^97 | 010101111 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 175 +// a^98 | 001000011 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 67 +// a^99 | 010000110 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 134 +// a^100 | 000010001 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 17 +// a^101 | 000100010 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 34 +// a^102 | 001000100 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 68 +// a^103 | 010001000 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 136 +// a^104 | 000001101 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 13 +// a^105 | 000011010 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 26 +// a^106 | 000110100 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 52 +// a^107 | 001101000 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 104 +// a^108 | 011010000 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 208 +// a^109 | 010111101 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 189 +// a^110 | 001100111 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 103 +// a^111 | 011001110 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 206 +// a^112 | 010000001 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 129 +// a^113 | 000011111 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 31 +// a^114 | 000111110 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 62 +// a^115 | 001111100 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 124 +// a^116 | 011111000 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 248 +// a^117 | 011101101 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 237 +// a^118 | 011000111 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 199 +// a^119 | 010010011 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 147 +// a^120 | 000111011 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 59 +// a^121 | 001110110 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 118 +// a^122 | 011101100 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 236 +// a^123 | 011000101 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 197 +// a^124 | 010010111 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 151 +// a^125 | 000110011 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 51 +// a^126 | 001100110 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 102 +// a^127 | 011001100 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 204 +// a^128 | 010000101 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 133 +// a^129 | 000010111 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 23 +// a^130 | 000101110 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 46 +// a^131 | 001011100 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 92 +// a^132 | 010111000 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 184 +// a^133 | 001101101 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 109 +// a^134 | 011011010 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 218 +// a^135 | 010101001 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 169 +// a^136 | 001001111 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 79 +// a^137 | 010011110 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 158 +// a^138 | 000100001 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 33 +// a^139 | 001000010 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 66 +// a^140 | 010000100 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 132 +// a^141 | 000010101 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 21 +// a^142 | 000101010 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 42 +// a^143 | 001010100 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 84 +// a^144 | 010101000 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 168 +// a^145 | 001001101 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 77 +// a^146 | 010011010 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 154 +// a^147 | 000101001 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 41 +// a^148 | 001010010 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 82 +// a^149 | 010100100 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 164 +// a^150 | 001010101 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 85 +// a^151 | 010101010 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 170 +// a^152 | 001001001 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 73 +// a^153 | 010010010 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 146 +// a^154 | 000111001 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 57 +// a^155 | 001110010 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 114 +// a^156 | 011100100 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 228 +// a^157 | 011010101 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 213 +// a^158 | 010110111 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 183 +// a^159 | 001110011 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 115 +// a^160 | 011100110 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 230 +// a^161 | 011010001 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 209 +// a^162 | 010111111 | 0x^8 1x^7 0x^6 1x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 191 +// a^163 | 001100011 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 99 +// a^164 | 011000110 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 198 +// a^165 | 010010001 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 145 +// a^166 | 000111111 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 63 +// a^167 | 001111110 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 1x^2 1x^1 0x^0 | 126 +// a^168 | 011111100 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 252 +// a^169 | 011100101 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 229 +// a^170 | 011010111 | 0x^8 1x^7 1x^6 0x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 215 +// a^171 | 010110011 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 179 +// a^172 | 001111011 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 123 +// a^173 | 011110110 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 246 +// a^174 | 011110001 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 241 +// a^175 | 011111111 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 1x^2 1x^1 1x^0 | 255 +// a^176 | 011100011 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 227 +// a^177 | 011011011 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 219 +// a^178 | 010101011 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 171 +// a^179 | 001001011 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 75 +// a^180 | 010010110 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 150 +// a^181 | 000110001 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 49 +// a^182 | 001100010 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 98 +// a^183 | 011000100 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 196 +// a^184 | 010010101 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 149 +// a^185 | 000110111 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 55 +// a^186 | 001101110 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 110 +// a^187 | 011011100 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 220 +// a^188 | 010100101 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 165 +// a^189 | 001010111 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 87 +// a^190 | 010101110 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 174 +// a^191 | 001000001 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 65 +// a^192 | 010000010 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 130 +// a^193 | 000011001 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 25 +// a^194 | 000110010 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 50 +// a^195 | 001100100 | 0x^8 0x^7 1x^6 1x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 100 +// a^196 | 011001000 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 200 +// a^197 | 010001101 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 141 +// a^198 | 000000111 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 7 +// a^199 | 000001110 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 14 +// a^200 | 000011100 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 1x^2 0x^1 0x^0 | 28 +// a^201 | 000111000 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 56 +// a^202 | 001110000 | 0x^8 0x^7 1x^6 1x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 112 +// a^203 | 011100000 | 0x^8 1x^7 1x^6 1x^5 0x^4 0x^3 0x^2 0x^1 0x^0 | 224 +// a^204 | 011011101 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 221 +// a^205 | 010100111 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 167 +// a^206 | 001010011 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 83 +// a^207 | 010100110 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 1x^2 1x^1 0x^0 | 166 +// a^208 | 001010001 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 0x^2 0x^1 1x^0 | 81 +// a^209 | 010100010 | 0x^8 1x^7 0x^6 1x^5 0x^4 0x^3 0x^2 1x^1 0x^0 | 162 +// a^210 | 001011001 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 89 +// a^211 | 010110010 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 178 +// a^212 | 001111001 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 121 +// a^213 | 011110010 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 242 +// a^214 | 011111001 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 0x^2 0x^1 1x^0 | 249 +// a^215 | 011101111 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 239 +// a^216 | 011000011 | 0x^8 1x^7 1x^6 0x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 195 +// a^217 | 010011011 | 0x^8 1x^7 0x^6 0x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 155 +// a^218 | 000101011 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 43 +// a^219 | 001010110 | 0x^8 0x^7 1x^6 0x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 86 +// a^220 | 010101100 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 172 +// a^221 | 001000101 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 1x^2 0x^1 1x^0 | 69 +// a^222 | 010001010 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 0x^2 1x^1 0x^0 | 138 +// a^223 | 000001001 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 9 +// a^224 | 000010010 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 0x^2 1x^1 0x^0 | 18 +// a^225 | 000100100 | 0x^8 0x^7 0x^6 1x^5 0x^4 0x^3 1x^2 0x^1 0x^0 | 36 +// a^226 | 001001000 | 0x^8 0x^7 1x^6 0x^5 0x^4 1x^3 0x^2 0x^1 0x^0 | 72 +// a^227 | 010010000 | 0x^8 1x^7 0x^6 0x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 144 +// a^228 | 000111101 | 0x^8 0x^7 0x^6 1x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 61 +// a^229 | 001111010 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 122 +// a^230 | 011110100 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 1x^2 0x^1 0x^0 | 244 +// a^231 | 011110101 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 1x^2 0x^1 1x^0 | 245 +// a^232 | 011110111 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 1x^2 1x^1 1x^0 | 247 +// a^233 | 011110011 | 0x^8 1x^7 1x^6 1x^5 1x^4 0x^3 0x^2 1x^1 1x^0 | 243 +// a^234 | 011111011 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 251 +// a^235 | 011101011 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 235 +// a^236 | 011001011 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 203 +// a^237 | 010001011 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 139 +// a^238 | 000001011 | 0x^8 0x^7 0x^6 0x^5 0x^4 1x^3 0x^2 1x^1 1x^0 | 11 +// a^239 | 000010110 | 0x^8 0x^7 0x^6 0x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 22 +// a^240 | 000101100 | 0x^8 0x^7 0x^6 1x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 44 +// a^241 | 001011000 | 0x^8 0x^7 1x^6 0x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 88 +// a^242 | 010110000 | 0x^8 1x^7 0x^6 1x^5 1x^4 0x^3 0x^2 0x^1 0x^0 | 176 +// a^243 | 001111101 | 0x^8 0x^7 1x^6 1x^5 1x^4 1x^3 1x^2 0x^1 1x^0 | 125 +// a^244 | 011111010 | 0x^8 1x^7 1x^6 1x^5 1x^4 1x^3 0x^2 1x^1 0x^0 | 250 +// a^245 | 011101001 | 0x^8 1x^7 1x^6 1x^5 0x^4 1x^3 0x^2 0x^1 1x^0 | 233 +// a^246 | 011001111 | 0x^8 1x^7 1x^6 0x^5 0x^4 1x^3 1x^2 1x^1 1x^0 | 207 +// a^247 | 010000011 | 0x^8 1x^7 0x^6 0x^5 0x^4 0x^3 0x^2 1x^1 1x^0 | 131 +// a^248 | 000011011 | 0x^8 0x^7 0x^6 0x^5 1x^4 1x^3 0x^2 1x^1 1x^0 | 27 +// a^249 | 000110110 | 0x^8 0x^7 0x^6 1x^5 1x^4 0x^3 1x^2 1x^1 0x^0 | 54 +// a^250 | 001101100 | 0x^8 0x^7 1x^6 1x^5 0x^4 1x^3 1x^2 0x^1 0x^0 | 108 +// a^251 | 011011000 | 0x^8 1x^7 1x^6 0x^5 1x^4 1x^3 0x^2 0x^1 0x^0 | 216 +// a^252 | 010101101 | 0x^8 1x^7 0x^6 1x^5 0x^4 1x^3 1x^2 0x^1 1x^0 | 173 +// a^253 | 001000111 | 0x^8 0x^7 1x^6 0x^5 0x^4 0x^3 1x^2 1x^1 1x^0 | 71 +// a^254 | 010001110 | 0x^8 1x^7 0x^6 0x^5 0x^4 1x^3 1x^2 1x^1 0x^0 | 142 +// a^255 | 000000001 | 0x^8 0x^7 0x^6 0x^5 0x^4 0x^3 0x^2 0x^1 1x^0 | 1 diff --git a/vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8_test.go b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8_test.go new file mode 100644 index 0000000..ab53d8a --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf2_8_test.go @@ -0,0 +1,83 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package reedsolomon + +import "testing" + +func TestGFMultiplicationIdentities(t *testing.T) { + for i := 0; i < 256; i++ { + value := gfElement(i) + if gfMultiply(gfZero, value) != gfZero { + t.Errorf("0 . %d != 0", value) + } + + if gfMultiply(value, gfOne) != value { + t.Errorf("%d . 1 == %d, want %d", value, gfMultiply(value, gfOne), value) + } + } +} + +func TestGFMultiplicationAndDivision(t *testing.T) { + // a * b == result + var tests = []struct { + a gfElement + b gfElement + result gfElement + }{ + {0, 29, 0}, + {1, 1, 1}, + {1, 32, 32}, + {2, 4, 8}, + {16, 128, 232}, + {17, 17, 28}, + {27, 9, 195}, + } + + for _, test := range tests { + result := gfMultiply(test.a, test.b) + + if result != test.result { + t.Errorf("%d * %d = %d, want %d", test.a, test.b, result, test.result) + } + + if test.b != gfZero && test.result != gfZero { + b := gfDivide(test.result, test.a) + + if b != test.b { + t.Errorf("%d / %d = %d, want %d", test.result, test.a, b, test.b) + } + } + } +} + +func TestGFInverse(t *testing.T) { + for i := 1; i < 256; i++ { + a := gfElement(i) + inverse := gfInverse(a) + + result := gfMultiply(a, inverse) + + if result != gfOne { + t.Errorf("%d * %d^-1 == %d, want %d", a, inverse, result, gfOne) + } + } +} + +func TestGFDivide(t *testing.T) { + for i := 1; i < 256; i++ { + for j := 1; j < 256; j++ { + // a * b == product + a := gfElement(i) + b := gfElement(j) + product := gfMultiply(a, b) + + // product / b == a + result := gfDivide(product, b) + + if result != a { + t.Errorf("%d / %d == %d, want %d", product, b, result, a) + } + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly.go b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly.go new file mode 100644 index 0000000..962f545 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly.go @@ -0,0 +1,216 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package reedsolomon + +import ( + "fmt" + "log" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +// gfPoly is a polynomial over GF(2^8). +type gfPoly struct { + // The ith value is the coefficient of the ith degree of x. + // term[0]*(x^0) + term[1]*(x^1) + term[2]*(x^2) ... + term []gfElement +} + +// newGFPolyFromData returns |data| as a polynomial over GF(2^8). +// +// Each data byte becomes the coefficient of an x term. +// +// For an n byte input the polynomial is: +// data[n-1]*(x^n-1) + data[n-2]*(x^n-2) ... + data[0]*(x^0). +func newGFPolyFromData(data *bitset.Bitset) gfPoly { + numTotalBytes := data.Len() / 8 + if data.Len()%8 != 0 { + numTotalBytes++ + } + + result := gfPoly{term: make([]gfElement, numTotalBytes)} + + i := numTotalBytes - 1 + for j := 0; j < data.Len(); j += 8 { + result.term[i] = gfElement(data.ByteAt(j)) + i-- + } + + return result +} + +// newGFPolyMonomial returns term*(x^degree). +func newGFPolyMonomial(term gfElement, degree int) gfPoly { + if term == gfZero { + return gfPoly{} + } + + result := gfPoly{term: make([]gfElement, degree+1)} + result.term[degree] = term + + return result +} + +func (e gfPoly) data(numTerms int) []byte { + result := make([]byte, numTerms) + + i := numTerms - len(e.term) + for j := len(e.term) - 1; j >= 0; j-- { + result[i] = byte(e.term[j]) + i++ + } + + return result +} + +// numTerms returns the number of +func (e gfPoly) numTerms() int { + return len(e.term) +} + +// gfPolyMultiply returns a * b. +func gfPolyMultiply(a, b gfPoly) gfPoly { + numATerms := a.numTerms() + numBTerms := b.numTerms() + + result := gfPoly{term: make([]gfElement, numATerms+numBTerms)} + + for i := 0; i < numATerms; i++ { + for j := 0; j < numBTerms; j++ { + if a.term[i] != 0 && b.term[j] != 0 { + monomial := gfPoly{term: make([]gfElement, i+j+1)} + monomial.term[i+j] = gfMultiply(a.term[i], b.term[j]) + + result = gfPolyAdd(result, monomial) + } + } + } + + return result.normalised() +} + +// gfPolyRemainder return the remainder of numerator / denominator. +func gfPolyRemainder(numerator, denominator gfPoly) gfPoly { + if denominator.equals(gfPoly{}) { + log.Panicln("Remainder by zero") + } + + remainder := numerator + + for remainder.numTerms() >= denominator.numTerms() { + degree := remainder.numTerms() - denominator.numTerms() + coefficient := gfDivide(remainder.term[remainder.numTerms()-1], + denominator.term[denominator.numTerms()-1]) + + divisor := gfPolyMultiply(denominator, + newGFPolyMonomial(coefficient, degree)) + + remainder = gfPolyAdd(remainder, divisor) + } + + return remainder.normalised() +} + +// gfPolyAdd returns a + b. +func gfPolyAdd(a, b gfPoly) gfPoly { + numATerms := a.numTerms() + numBTerms := b.numTerms() + + numTerms := numATerms + if numBTerms > numTerms { + numTerms = numBTerms + } + + result := gfPoly{term: make([]gfElement, numTerms)} + + for i := 0; i < numTerms; i++ { + switch { + case numATerms > i && numBTerms > i: + result.term[i] = gfAdd(a.term[i], b.term[i]) + case numATerms > i: + result.term[i] = a.term[i] + default: + result.term[i] = b.term[i] + } + } + + return result.normalised() +} + +func (e gfPoly) normalised() gfPoly { + numTerms := e.numTerms() + maxNonzeroTerm := numTerms - 1 + + for i := numTerms - 1; i >= 0; i-- { + if e.term[i] != 0 { + break + } + + maxNonzeroTerm = i - 1 + } + + if maxNonzeroTerm < 0 { + return gfPoly{} + } else if maxNonzeroTerm < numTerms-1 { + e.term = e.term[0 : maxNonzeroTerm+1] + } + + return e +} + +func (e gfPoly) string(useIndexForm bool) string { + var str string + numTerms := e.numTerms() + + for i := numTerms - 1; i >= 0; i-- { + if e.term[i] > 0 { + if len(str) > 0 { + str += " + " + } + + if !useIndexForm { + str += fmt.Sprintf("%dx^%d", e.term[i], i) + } else { + str += fmt.Sprintf("a^%dx^%d", gfLogTable[e.term[i]], i) + } + } + } + + if len(str) == 0 { + str = "0" + } + + return str +} + +// equals returns true if e == other. +func (e gfPoly) equals(other gfPoly) bool { + var minecPoly *gfPoly + var maxecPoly *gfPoly + + if e.numTerms() > other.numTerms() { + minecPoly = &other + maxecPoly = &e + } else { + minecPoly = &e + maxecPoly = &other + } + + numMinTerms := minecPoly.numTerms() + numMaxTerms := maxecPoly.numTerms() + + for i := 0; i < numMinTerms; i++ { + if e.term[i] != other.term[i] { + return false + } + } + + for i := numMinTerms; i < numMaxTerms; i++ { + if maxecPoly.term[i] != 0 { + return false + } + } + + return true +} diff --git a/vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly_test.go b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly_test.go new file mode 100644 index 0000000..bcf2aab --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/reedsolomon/gf_poly_test.go @@ -0,0 +1,182 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package reedsolomon + +import ( + "testing" +) + +func TestGFPolyAdd(t *testing.T) { + // a + b == result + var tests = []struct { + a gfPoly + b gfPoly + result gfPoly + }{ + { + gfPoly{[]gfElement{0, 0, 0}}, + gfPoly{[]gfElement{0}}, + gfPoly{[]gfElement{}}, + }, + { + gfPoly{[]gfElement{1, 0}}, + gfPoly{[]gfElement{1, 0}}, + gfPoly{[]gfElement{0, 0}}, + }, + { + gfPoly{[]gfElement{0xA0, 0x80, 0xFF, 0x00}}, + gfPoly{[]gfElement{0x0A, 0x82}}, + gfPoly{[]gfElement{0xAA, 0x02, 0xFF}}, + }, + } + + for _, test := range tests { + result := gfPolyAdd(test.a, test.b) + + if !test.result.equals(result) { + t.Errorf("%s * %s != %s (got %s)\n", test.a.string(false), test.b.string(false), + test.result.string(false), result.string(false)) + } + + if len(result.term) > 0 && result.term[len(result.term)-1] == 0 { + t.Errorf("Result's maximum term coefficient is zero") + } + } +} + +func TestGFPolyequals(t *testing.T) { + // a == b if isEqual + var tests = []struct { + a gfPoly + b gfPoly + isEqual bool + }{ + { + gfPoly{[]gfElement{0}}, + gfPoly{[]gfElement{0}}, + true, + }, + { + gfPoly{[]gfElement{1}}, + gfPoly{[]gfElement{0}}, + false, + }, + { + gfPoly{[]gfElement{1, 0, 1, 0, 1}}, + gfPoly{[]gfElement{1, 0, 1, 0, 1}}, + true, + }, + { + gfPoly{[]gfElement{1, 0, 1}}, + gfPoly{[]gfElement{1, 0, 1, 0, 0}}, + true, + }, + } + + for _, test := range tests { + isEqual := test.a.equals(test.b) + + if isEqual != test.isEqual { + t.Errorf("%s and %s equality is %t (got %t)\n", test.a.string(false), test.b.string(false), + test.isEqual, isEqual) + } + } +} + +func TestGFPolyMultiply(t *testing.T) { + // a * b == result + var tests = []struct { + a gfPoly + b gfPoly + result gfPoly + }{ + { + gfPoly{[]gfElement{0, 0, 1}}, + gfPoly{[]gfElement{9}}, + gfPoly{[]gfElement{0, 0, 9}}, + }, + { + gfPoly{[]gfElement{0, 16, 1}}, + gfPoly{[]gfElement{128, 2}}, + gfPoly{[]gfElement{0, 232, 160, 2}}, + }, + { + gfPoly{[]gfElement{254, 120, 88, 44, 11, 1}}, + gfPoly{[]gfElement{16, 2, 0, 51, 44}}, + gfPoly{[]gfElement{91, 50, 25, 184, 194, 105, 45, 244, 58, 44}}, + }, + } + + for _, test := range tests { + result := gfPolyMultiply(test.a, test.b) + + if !test.result.equals(result) { + t.Errorf("%s * %s = %s (got %s)\n", + test.a.string(false), + test.b.string(false), + test.result.string(false), + result.string(false)) + } + } +} + +func TestGFPolyRemainder(t *testing.T) { + // numerator / denominator == quotient + remainder. + var tests = []struct { + numerator gfPoly + denominator gfPoly + remainder gfPoly + }{ + { + gfPoly{[]gfElement{1}}, + gfPoly{[]gfElement{1}}, + gfPoly{[]gfElement{0}}, + }, + { + gfPoly{[]gfElement{1, 0}}, + gfPoly{[]gfElement{1}}, + gfPoly{[]gfElement{0}}, + }, + { + gfPoly{[]gfElement{1}}, + gfPoly{[]gfElement{1, 0}}, + gfPoly{[]gfElement{1}}, + }, + { + gfPoly{[]gfElement{1, 0, 1}}, + gfPoly{[]gfElement{0, 1}}, + gfPoly{[]gfElement{1}}, + }, + // (x^12 + x^10) / (x^10 + x^8 + x^5 + x^4 + x^2 + x^1 + x^0) = + // (x^10 + x^8 + x^5 + x^4 + x^2 + x^1 + x^0) * x^2 + + // (x^7 + x^6 + x^4 + x^3 + x^2) (the remainder) + { + gfPoly{[]gfElement{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1}}, + gfPoly{[]gfElement{1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1}}, + gfPoly{[]gfElement{0, 0, 1, 1, 1, 0, 1, 1}}, + }, + { + gfPoly{[]gfElement{91, 50, 25, 184, 194, 105, 45, 244, 58, 44}}, + gfPoly{[]gfElement{254, 120, 88, 44, 11, 1}}, + gfPoly{[]gfElement{}}, + }, + { + gfPoly{[]gfElement{0, 0, 0, 0, 0, 0, 195, 172, 24, 64}}, + gfPoly{[]gfElement{116, 147, 63, 198, 31, 1}}, + gfPoly{[]gfElement{48, 174, 34, 13, 134}}, + }, + } + + for _, test := range tests { + remainder := gfPolyRemainder(test.numerator, test.denominator) + + if !test.remainder.equals(remainder) { + t.Errorf("%s / %s, remainder = %s (got %s)\n", + test.numerator.string(false), + test.denominator.string(false), + test.remainder.string(false), + remainder.string(false)) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon.go b/vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon.go new file mode 100644 index 0000000..561697b --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon.go @@ -0,0 +1,73 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +// Package reedsolomon provides error correction encoding for QR Code 2005. +// +// QR Code 2005 uses a Reed-Solomon error correcting code to detect and correct +// errors encountered during decoding. +// +// The generated RS codes are systematic, and consist of the input data with +// error correction bytes appended. +package reedsolomon + +import ( + "log" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +// Encode data for QR Code 2005 using the appropriate Reed-Solomon code. +// +// numECBytes is the number of error correction bytes to append, and is +// determined by the target QR Code's version and error correction level. +// +// ISO/IEC 18004 table 9 specifies the numECBytes required. e.g. a 1-L code has +// numECBytes=7. +func Encode(data *bitset.Bitset, numECBytes int) *bitset.Bitset { + // Create a polynomial representing |data|. + // + // The bytes are interpreted as the sequence of coefficients of a polynomial. + // The last byte's value becomes the x^0 coefficient, the second to last + // becomes the x^1 coefficient and so on. + ecpoly := newGFPolyFromData(data) + ecpoly = gfPolyMultiply(ecpoly, newGFPolyMonomial(gfOne, numECBytes)) + + // Pick the generator polynomial. + generator := rsGeneratorPoly(numECBytes) + + // Generate the error correction bytes. + remainder := gfPolyRemainder(ecpoly, generator) + + // Combine the data & error correcting bytes. + // The mathematically correct answer is: + // + // result := gfPolyAdd(ecpoly, remainder). + // + // The encoding used by QR Code 2005 is slightly different this result: To + // preserve the original |data| bit sequence exactly, the data and remainder + // are combined manually below. This ensures any most significant zero bits + // are preserved (and not optimised away). + result := bitset.Clone(data) + result.AppendBytes(remainder.data(numECBytes)) + + return result +} + +// rsGeneratorPoly returns the Reed-Solomon generator polynomial with |degree|. +// +// The generator polynomial is calculated as: +// (x + a^0)(x + a^1)...(x + a^degree-1) +func rsGeneratorPoly(degree int) gfPoly { + if degree < 2 { + log.Panic("degree < 2") + } + + generator := gfPoly{term: []gfElement{1}} + + for i := 0; i < degree; i++ { + nextPoly := gfPoly{term: []gfElement{gfExpTable[i], 1}} + generator = gfPolyMultiply(generator, nextPoly) + } + + return generator +} diff --git a/vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon_test.go b/vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon_test.go new file mode 100644 index 0000000..88948a2 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/reedsolomon/reed_solomon_test.go @@ -0,0 +1,89 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package reedsolomon + +import ( + "testing" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +func TestGeneratorPoly(t *testing.T) { + var tests = []struct { + degree int + generator gfPoly + }{ + // x^2 + 3x^1 + 2x^0 (the shortest generator poly) + { + 2, + gfPoly{term: []gfElement{2, 3, 1}}, + }, + // x^5 + 31x^4 + 198x^3 + 63x^2 + 147x^1 + 116x^0 + { + 5, + gfPoly{term: []gfElement{116, 147, 63, 198, 31, 1}}, + }, + // x^68 + 131x^67 + 115x^66 + 9x^65 + 39x^64 + 18x^63 + 182x^62 + 60x^61 + + // 94x^60 + 223x^59 + 230x^58 + 157x^57 + 142x^56 + 119x^55 + 85x^54 + + // 107x^53 + 34x^52 + 174x^51 + 167x^50 + 109x^49 + 20x^48 + 185x^47 + + // 112x^46 + 145x^45 + 172x^44 + 224x^43 + 170x^42 + 182x^41 + 107x^40 + + // 38x^39 + 107x^38 + 71x^37 + 246x^36 + 230x^35 + 225x^34 + 144x^33 + + // 20x^32 + 14x^31 + 175x^30 + 226x^29 + 245x^28 + 20x^27 + 219x^26 + + // 212x^25 + 51x^24 + 158x^23 + 88x^22 + 63x^21 + 36x^20 + 199x^19 + 4x^18 + + // 80x^17 + 157x^16 + 211x^15 + 239x^14 + 255x^13 + 7x^12 + 119x^11 + 11x^10 + // + 235x^9 + 12x^8 + 34x^7 + 149x^6 + 204x^5 + 8x^4 + 32x^3 + 29x^2 + 99x^1 + // + 11x^0 (the longest generator poly) + { + 68, + gfPoly{term: []gfElement{11, 99, 29, 32, 8, 204, 149, 34, 12, + 235, 11, 119, 7, 255, 239, 211, 157, 80, 4, 199, 36, 63, 88, 158, 51, 212, + 219, 20, 245, 226, 175, 14, 20, 144, 225, 230, 246, 71, 107, 38, 107, 182, + 170, 224, 172, 145, 112, 185, 20, 109, 167, 174, 34, 107, 85, 119, 142, + 157, 230, 223, 94, 60, 182, 18, 39, 9, 115, 131, 1}}, + }, + } + + for _, test := range tests { + generator := rsGeneratorPoly(test.degree) + + if !generator.equals(test.generator) { + t.Errorf("degree=%d generator=%s, want %s", test.degree, + generator.string(true), test.generator.string(true)) + } + } +} + +func TestEncode(t *testing.T) { + var tests = []struct { + numECBytes int + data string + rsCode string + }{ + { + 5, + "01000000 00011000 10101100 11000011 00000000", + "01000000 00011000 10101100 11000011 00000000 10000110 00001101 00100010 10101110 00110000", + }, + { + 10, + "00010000 00100000 00001100 01010110 01100001 10000000 11101100 00010001 11101100 00010001 11101100 00010001 11101100 00010001 11101100 00010001", + "00010000 00100000 00001100 01010110 01100001 10000000 11101100 00010001 11101100 00010001 11101100 00010001 11101100 00010001 11101100 00010001 10100101 00100100 11010100 11000001 11101101 00110110 11000111 10000111 00101100 01010101", + }, + } + + for _, test := range tests { + data := bitset.NewFromBase2String(test.data) + rsCode := bitset.NewFromBase2String(test.rsCode) + + result := Encode(data, test.numECBytes) + + if !rsCode.Equals(result) { + t.Errorf("data=%s, numECBytes=%d, encoded=%s, want %s", + data.String(), + test.numECBytes, + result.String(), + rsCode) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/regular_symbol.go b/vendor/github.com/skip2/go-qrcode/regular_symbol.go new file mode 100644 index 0000000..134be18 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/regular_symbol.go @@ -0,0 +1,309 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + bitset "github.com/skip2/go-qrcode/bitset" +) + +type regularSymbol struct { + version qrCodeVersion + mask int + + data *bitset.Bitset + + symbol *symbol + size int +} + +// Abbreviated true/false. +const ( + b0 = false + b1 = true +) + +var ( + alignmentPatternCenter = [][]int{ + {}, // Version 0 doesn't exist. + {}, // Version 1 doesn't use alignment patterns. + {6, 18}, + {6, 22}, + {6, 26}, + {6, 30}, + {6, 34}, + {6, 22, 38}, + {6, 24, 42}, + {6, 26, 46}, + {6, 28, 50}, + {6, 30, 54}, + {6, 32, 58}, + {6, 34, 62}, + {6, 26, 46, 66}, + {6, 26, 48, 70}, + {6, 26, 50, 74}, + {6, 30, 54, 78}, + {6, 30, 56, 82}, + {6, 30, 58, 86}, + {6, 34, 62, 90}, + {6, 28, 50, 72, 94}, + {6, 26, 50, 74, 98}, + {6, 30, 54, 78, 102}, + {6, 28, 54, 80, 106}, + {6, 32, 58, 84, 110}, + {6, 30, 58, 86, 114}, + {6, 34, 62, 90, 118}, + {6, 26, 50, 74, 98, 122}, + {6, 30, 54, 78, 102, 126}, + {6, 26, 52, 78, 104, 130}, + {6, 30, 56, 82, 108, 134}, + {6, 34, 60, 86, 112, 138}, + {6, 30, 58, 86, 114, 142}, + {6, 34, 62, 90, 118, 146}, + {6, 30, 54, 78, 102, 126, 150}, + {6, 24, 50, 76, 102, 128, 154}, + {6, 28, 54, 80, 106, 132, 158}, + {6, 32, 58, 84, 110, 136, 162}, + {6, 26, 54, 82, 110, 138, 166}, + {6, 30, 58, 86, 114, 142, 170}, + } + + finderPattern = [][]bool{ + {b1, b1, b1, b1, b1, b1, b1}, + {b1, b0, b0, b0, b0, b0, b1}, + {b1, b0, b1, b1, b1, b0, b1}, + {b1, b0, b1, b1, b1, b0, b1}, + {b1, b0, b1, b1, b1, b0, b1}, + {b1, b0, b0, b0, b0, b0, b1}, + {b1, b1, b1, b1, b1, b1, b1}, + } + + finderPatternSize = 7 + + finderPatternHorizontalBorder = [][]bool{ + {b0, b0, b0, b0, b0, b0, b0, b0}, + } + + finderPatternVerticalBorder = [][]bool{ + {b0}, + {b0}, + {b0}, + {b0}, + {b0}, + {b0}, + {b0}, + {b0}, + } + + alignmentPattern = [][]bool{ + {b1, b1, b1, b1, b1}, + {b1, b0, b0, b0, b1}, + {b1, b0, b1, b0, b1}, + {b1, b0, b0, b0, b1}, + {b1, b1, b1, b1, b1}, + } +) + +func buildRegularSymbol(version qrCodeVersion, mask int, + data *bitset.Bitset) (*symbol, error) { + m := ®ularSymbol{ + version: version, + mask: mask, + data: data, + + symbol: newSymbol(version.symbolSize(), version.quietZoneSize()), + size: version.symbolSize(), + } + + m.addFinderPatterns() + m.addAlignmentPatterns() + m.addTimingPatterns() + m.addFormatInfo() + m.addVersionInfo() + + ok, err := m.addData() + if !ok { + return nil, err + } + + return m.symbol, nil +} + +func (m *regularSymbol) addFinderPatterns() { + fpSize := finderPatternSize + fp := finderPattern + fpHBorder := finderPatternHorizontalBorder + fpVBorder := finderPatternVerticalBorder + + // Top left Finder Pattern. + m.symbol.set2dPattern(0, 0, fp) + m.symbol.set2dPattern(0, fpSize, fpHBorder) + m.symbol.set2dPattern(fpSize, 0, fpVBorder) + + // Top right Finder Pattern. + m.symbol.set2dPattern(m.size-fpSize, 0, fp) + m.symbol.set2dPattern(m.size-fpSize-1, fpSize, fpHBorder) + m.symbol.set2dPattern(m.size-fpSize-1, 0, fpVBorder) + + // Bottom left Finder Pattern. + m.symbol.set2dPattern(0, m.size-fpSize, fp) + m.symbol.set2dPattern(0, m.size-fpSize-1, fpHBorder) + m.symbol.set2dPattern(fpSize, m.size-fpSize-1, fpVBorder) +} + +func (m *regularSymbol) addAlignmentPatterns() { + for _, x := range alignmentPatternCenter[m.version.version] { + for _, y := range alignmentPatternCenter[m.version.version] { + if !m.symbol.empty(x, y) { + continue + } + + m.symbol.set2dPattern(x-2, y-2, alignmentPattern) + } + } +} + +func (m *regularSymbol) addTimingPatterns() { + value := true + + for i := finderPatternSize + 1; i < m.size-finderPatternSize; i++ { + m.symbol.set(i, finderPatternSize-1, value) + m.symbol.set(finderPatternSize-1, i, value) + + value = !value + } +} + +func (m *regularSymbol) addFormatInfo() { + fpSize := finderPatternSize + l := formatInfoLengthBits - 1 + + f := m.version.formatInfo(m.mask) + + // Bits 0-7, under the top right finder pattern. + for i := 0; i <= 7; i++ { + m.symbol.set(m.size-i-1, fpSize+1, f.At(l-i)) + } + + // Bits 0-5, right of the top left finder pattern. + for i := 0; i <= 5; i++ { + m.symbol.set(fpSize+1, i, f.At(l-i)) + } + + // Bits 6-8 on the corner of the top left finder pattern. + m.symbol.set(fpSize+1, fpSize, f.At(l-6)) + m.symbol.set(fpSize+1, fpSize+1, f.At(l-7)) + m.symbol.set(fpSize, fpSize+1, f.At(l-8)) + + // Bits 9-14 on the underside of the top left finder pattern. + for i := 9; i <= 14; i++ { + m.symbol.set(14-i, fpSize+1, f.At(l-i)) + } + + // Bits 8-14 on the right side of the bottom left finder pattern. + for i := 8; i <= 14; i++ { + m.symbol.set(fpSize+1, m.size-fpSize+i-8, f.At(l-i)) + } + + // Always dark symbol. + m.symbol.set(fpSize+1, m.size-fpSize-1, true) +} + +func (m *regularSymbol) addVersionInfo() { + fpSize := finderPatternSize + + v := m.version.versionInfo() + l := versionInfoLengthBits - 1 + + if v == nil { + return + } + + for i := 0; i < v.Len(); i++ { + // Above the bottom left finder pattern. + m.symbol.set(i/3, m.size-fpSize-4+i%3, v.At(l-i)) + + // Left of the top right finder pattern. + m.symbol.set(m.size-fpSize-4+i%3, i/3, v.At(l-i)) + } +} + +type direction uint8 + +const ( + up direction = iota + down +) + +func (m *regularSymbol) addData() (bool, error) { + xOffset := 1 + dir := up + + x := m.size - 2 + y := m.size - 1 + + for i := 0; i < m.data.Len(); i++ { + var mask bool + switch m.mask { + case 0: + mask = (y+x+xOffset)%2 == 0 + case 1: + mask = y%2 == 0 + case 2: + mask = (x+xOffset)%3 == 0 + case 3: + mask = (y+x+xOffset)%3 == 0 + case 4: + mask = (y/2+(x+xOffset)/3)%2 == 0 + case 5: + mask = (y*(x+xOffset))%2+(y*(x+xOffset))%3 == 0 + case 6: + mask = ((y*(x+xOffset))%2+((y*(x+xOffset))%3))%2 == 0 + case 7: + mask = ((y+x+xOffset)%2+((y*(x+xOffset))%3))%2 == 0 + } + + // != is equivalent to XOR. + m.symbol.set(x+xOffset, y, mask != m.data.At(i)) + + if i == m.data.Len()-1 { + break + } + + // Find next free bit in the symbol. + for { + if xOffset == 1 { + xOffset = 0 + } else { + xOffset = 1 + + if dir == up { + if y > 0 { + y-- + } else { + dir = down + x -= 2 + } + } else { + if y < m.size-1 { + y++ + } else { + dir = up + x -= 2 + } + } + } + + // Skip over the vertical timing pattern entirely. + if x == 5 { + x-- + } + + if m.symbol.empty(x+xOffset, y) { + break + } + } + } + + return true, nil +} diff --git a/vendor/github.com/skip2/go-qrcode/regular_symbol_test.go b/vendor/github.com/skip2/go-qrcode/regular_symbol_test.go new file mode 100644 index 0000000..9e274db --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/regular_symbol_test.go @@ -0,0 +1,31 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "fmt" + "testing" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +func TestBuildRegularSymbol(t *testing.T) { + for k := 0; k <= 7; k++ { + v := getQRCodeVersion(Low, 1) + + data := bitset.New() + for i := 0; i < 26; i++ { + data.AppendNumBools(8, false) + } + + s, err := buildRegularSymbol(*v, k, data) + + if err != nil { + fmt.Println(err.Error()) + } else { + _ = s + //fmt.Print(m.string()) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/symbol.go b/vendor/github.com/skip2/go-qrcode/symbol.go new file mode 100644 index 0000000..0cb1327 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/symbol.go @@ -0,0 +1,309 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +// symbol is a 2D array of bits representing a QR Code symbol. +// +// A symbol consists of size*size modules, with each module normally drawn as a +// black or white square. The symbol also has a border of quietZoneSize modules. +// +// A (fictional) size=2, quietZoneSize=1 QR Code looks like: +// +// +----+ +// | | +// | ab | +// | cd | +// | | +// +----+ +// +// For ease of implementation, the functions to set/get bits ignore the border, +// so (0,0)=a, (0,1)=b, (1,0)=c, and (1,1)=d. The entire symbol (including the +// border) is returned by bitmap(). +// +type symbol struct { + // Value of module at [y][x]. True is set. + module [][]bool + + // True if the module at [y][x] is used (to either true or false). + // Used to identify unused modules. + isUsed [][]bool + + // Combined width/height of the symbol and quiet zones. + // + // size = symbolSize + 2*quietZoneSize. + size int + + // Width/height of the symbol only. + symbolSize int + + // Width/height of a single quiet zone. + quietZoneSize int +} + +// newSymbol constructs a symbol of size size*size, with a border of +// quietZoneSize. +func newSymbol(size int, quietZoneSize int) *symbol { + var m symbol + + m.module = make([][]bool, size+2*quietZoneSize) + m.isUsed = make([][]bool, size+2*quietZoneSize) + + for i := range m.module { + m.module[i] = make([]bool, size+2*quietZoneSize) + m.isUsed[i] = make([]bool, size+2*quietZoneSize) + } + + m.size = size + 2*quietZoneSize + m.symbolSize = size + m.quietZoneSize = quietZoneSize + + return &m +} + +// get returns the module value at (x, y). +func (m *symbol) get(x int, y int) (v bool) { + v = m.module[y+m.quietZoneSize][x+m.quietZoneSize] + return +} + +// empty returns true if the module at (x, y) has not been set (to either true +// or false). +func (m *symbol) empty(x int, y int) bool { + return !m.isUsed[y+m.quietZoneSize][x+m.quietZoneSize] +} + +// numEmptyModules returns the number of empty modules. +// +// Initially numEmptyModules is symbolSize * symbolSize. After every module has +// been set (to either true or false), the number of empty modules is zero. +func (m *symbol) numEmptyModules() int { + var count int + for y := 0; y < m.symbolSize; y++ { + for x := 0; x < m.symbolSize; x++ { + if !m.isUsed[y+m.quietZoneSize][x+m.quietZoneSize] { + count++ + } + } + } + + return count +} + +// set sets the module at (x, y) to v. +func (m *symbol) set(x int, y int, v bool) { + m.module[y+m.quietZoneSize][x+m.quietZoneSize] = v + m.isUsed[y+m.quietZoneSize][x+m.quietZoneSize] = true +} + +// set2dPattern sets a 2D array of modules, starting at (x, y). +func (m *symbol) set2dPattern(x int, y int, v [][]bool) { + for j, row := range v { + for i, value := range row { + m.set(x+i, y+j, value) + } + } +} + +// bitmap returns the entire symbol, including the quiet zone. +func (m *symbol) bitmap() [][]bool { + module := make([][]bool, len(m.module)) + + for i := range m.module { + module[i] = m.module[i][:] + } + + return module +} + +// string returns a pictorial representation of the symbol, suitable for +// printing in a TTY. +func (m *symbol) string() string { + var result string + + for _, row := range m.module { + for _, value := range row { + switch value { + case true: + result += " " + case false: + // Unicode 'FULL BLOCK' (U+2588). + result += "██" + } + } + result += "\n" + } + + return result +} + +// Constants used to weight penalty calculations. Specified by ISO/IEC +// 18004:2006. +const ( + penaltyWeight1 = 3 + penaltyWeight2 = 3 + penaltyWeight3 = 40 + penaltyWeight4 = 10 +) + +// penaltyScore returns the penalty score of the symbol. The penalty score +// consists of the sum of the four individual penalty types. +func (m *symbol) penaltyScore() int { + return m.penalty1() + m.penalty2() + m.penalty3() + m.penalty4() +} + +// penalty1 returns the penalty score for "adjacent modules in row/column with +// same colour". +// +// The numbers of adjacent matching modules and scores are: +// 0-5: score = 0 +// 6+ : score = penaltyWeight1 + (numAdjacentModules - 5) +func (m *symbol) penalty1() int { + penalty := 0 + + for x := 0; x < m.symbolSize; x++ { + lastValue := m.get(x, 0) + count := 1 + + for y := 1; y < m.symbolSize; y++ { + v := m.get(x, y) + + if v != lastValue { + count = 1 + lastValue = v + } else { + count++ + if count == 6 { + penalty += penaltyWeight1 + 1 + } else if count > 6 { + penalty++ + } + } + } + } + + for y := 0; y < m.symbolSize; y++ { + lastValue := m.get(0, y) + count := 1 + + for x := 1; x < m.symbolSize; x++ { + v := m.get(x, y) + + if v != lastValue { + count = 1 + lastValue = v + } else { + count++ + if count == 6 { + penalty += penaltyWeight1 + 1 + } else if count > 6 { + penalty++ + } + } + } + } + + return penalty +} + +// penalty2 returns the penalty score for "block of modules in the same colour". +// +// m*n: score = penaltyWeight2 * (m-1) * (n-1). +func (m *symbol) penalty2() int { + penalty := 0 + + for y := 1; y < m.symbolSize; y++ { + for x := 1; x < m.symbolSize; x++ { + topLeft := m.get(x-1, y-1) + above := m.get(x, y-1) + left := m.get(x-1, y) + current := m.get(x, y) + + if current == left && current == above && current == topLeft { + penalty++ + } + } + } + + return penalty * penaltyWeight2 +} + +// penalty3 returns the penalty score for "1:1:3:1:1 ratio +// (dark:light:dark:light:dark) pattern in row/column, preceded or followed by +// light area 4 modules wide". +// +// Existence of the pattern scores penaltyWeight3. +func (m *symbol) penalty3() int { + penalty := 0 + + for y := 0; y < m.symbolSize; y++ { + var bitBuffer int16 = 0x00 + + for x := 0; x < m.symbolSize; x++ { + bitBuffer <<= 1 + if v := m.get(x, y); v { + bitBuffer |= 1 + } + + switch bitBuffer & 0x7ff { + // 0b000 0101 1101 or 0b10111010000 + // 0x05d or 0x5d0 + case 0x05d, 0x5d0: + penalty += penaltyWeight3 + bitBuffer = 0xFF + default: + if x == m.symbolSize-1 && (bitBuffer&0x7f) == 0x5d { + penalty += penaltyWeight3 + bitBuffer = 0xFF + } + } + } + } + + for x := 0; x < m.symbolSize; x++ { + var bitBuffer int16 = 0x00 + + for y := 0; y < m.symbolSize; y++ { + bitBuffer <<= 1 + if v := m.get(x, y); v { + bitBuffer |= 1 + } + + switch bitBuffer & 0x7ff { + // 0b000 0101 1101 or 0b10111010000 + // 0x05d or 0x5d0 + case 0x05d, 0x5d0: + penalty += penaltyWeight3 + bitBuffer = 0xFF + default: + if y == m.symbolSize-1 && (bitBuffer&0x7f) == 0x5d { + penalty += penaltyWeight3 + bitBuffer = 0xFF + } + } + } + } + + return penalty +} + +// penalty4 returns the penalty score... +func (m *symbol) penalty4() int { + numModules := m.symbolSize * m.symbolSize + numDarkModules := 0 + + for x := 0; x < m.symbolSize; x++ { + for y := 0; y < m.symbolSize; y++ { + if v := m.get(x, y); v { + numDarkModules++ + } + } + } + + numDarkModuleDeviation := numModules/2 - numDarkModules + if numDarkModuleDeviation < 0 { + numDarkModuleDeviation *= -1 + } + + return penaltyWeight4 * (numDarkModuleDeviation / (numModules / 20)) +} diff --git a/vendor/github.com/skip2/go-qrcode/symbol_test.go b/vendor/github.com/skip2/go-qrcode/symbol_test.go new file mode 100644 index 0000000..59b2b6b --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/symbol_test.go @@ -0,0 +1,334 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import "testing" + +func TestSymbolBasic(t *testing.T) { + size := 10 + quietZoneSize := 4 + + m := newSymbol(size, quietZoneSize) + + if m.size != size+quietZoneSize*2 { + t.Errorf("Symbol size is %d, expected %d", m.size, size+quietZoneSize*2) + } + + for i := 0; i < size; i++ { + for j := 0; j < size; j++ { + + v := m.get(i, j) + + if v != false { + t.Errorf("New symbol not empty") + } + + if !m.empty(i, j) { + t.Errorf("New symbol is not empty") + } + + value := i*j%2 == 0 + m.set(i, j, value) + + v = m.get(i, j) + + if v != value { + t.Errorf("Symbol ignores set bits") + } + + if m.empty(i, j) { + t.Errorf("Symbol ignores set bits") + } + } + } +} + +func TestSymbolPenalties(t *testing.T) { + tests := []struct { + pattern [][]bool + expectedPenalty1 int + expectedPenalty2 int + expectedPenalty3 int + expectedPenalty4 int + }{ + { + [][]bool{ + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + }, + 0, // No adjacent modules of same color. + 0, // No 2x2+ sized blocks. + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + }, + 0, // 5 adjacent modules of same colour, score = 0. + 0, // No 2x2+ sized blocks. + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0}, + {b1, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + }, + 4, // 6 adjacent modules of same colour, score = 3 + (6-5) + 0, // No 2x2+ sized blocks. + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0, b0}, + {b1, b0, b1, b0, b1, b0, b1}, + {b1, b0, b0, b0, b0, b0, b1}, + {b1, b0, b1, b0, b1, b0, b1}, + {b1, b0, b0, b0, b0, b0, b1}, + {b1, b0, b1, b0, b1, b0, b1}, + {b1, b0, b0, b0, b0, b0, b0}, + }, + 28, // 3+(7-5) + 3+(6-5) + 3+(6-5) + 3+(6-5) + 3+(7-5) + 3+(7-5) = 28 + 0, // No 2x2+ sized blocks. + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b1, b0, b1}, + {b0, b0, b1, b0, b1, b0}, + {b0, b1, b0, b1, b0, b1}, + {b1, b0, b1, b1, b1, b0}, + {b0, b1, b1, b1, b0, b1}, + {b1, b0, b1, b0, b1, b0}, + }, + -1, + 6, // 3*(2-1)*(2-1) + 3(2-1)*(2-1) + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b1}, + {b0, b0, b0, b0, b0, b1}, + {b0, b0, b0, b0, b0, b1}, + {b0, b0, b0, b0, b0, b1}, + {b0, b0, b0, b0, b0, b1}, + {b0, b0, b0, b0, b0, b1}, + }, + -1, + 60, // 3 * (5-1) * (6-1) + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b1}, + {b0, b0, b0, b0, b0, b1}, + {b1, b1, b0, b1, b0, b1}, + {b1, b1, b0, b1, b0, b1}, + {b1, b1, b0, b1, b0, b1}, + {b1, b1, b0, b1, b0, b1}, + }, + -1, + 21, // 3*(5-1)*(2-1) + 3*(2-1)*(4-1) = 3*4 + 3*3 + 0, // No 1:1:3:1:1 pattern. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + {b0, b0, b0, b0, b1, b0, b1, b1, b1, b0, b1, b0}, + }, + -1, + -1, + 480, // 12* 1:1:3:1:1 patterns, 12 * 40. + -1, + }, + { + [][]bool{ + {b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b1, b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b1, b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b1, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + }, + -1, + -1, + 80, // 2* 1:1:3:1:1 patterns, 2 * 40. + -1, + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + }, + -1, + -1, + -1, + 100, // 10 * (10 steps of 5% deviation from 50% black/white). + }, + { + [][]bool{ + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + }, + -1, + -1, + -1, + 100, // 10 * (10 steps of 5% deviation from 50% black/white). + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + }, + -1, + -1, + -1, + 0, // Exactly 50%/50% black/white. + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + }, + -1, + -1, + -1, + 20, // 10 * (2 steps of 5% deviation towards white). + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + }, + -1, + -1, + -1, + 30, // 10 * (3 steps of 5% deviation towards white). + }, + { + [][]bool{ + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b0}, + {b0, b0, b0, b0, b0, b0, b0, b0, b0, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + {b1, b1, b1, b1, b1, b1, b1, b1, b1, b1}, + }, + -1, + -1, + -1, + 30, // 10 * (3 steps of 5% deviation towards white). + }, + } + + for i, test := range tests { + s := newSymbol(len(test.pattern[0]), 4) + s.set2dPattern(0, 0, test.pattern) + + penalty1 := s.penalty1() + penalty2 := s.penalty2() + penalty3 := s.penalty3() + penalty4 := s.penalty4() + + ok := true + + if test.expectedPenalty1 != -1 && test.expectedPenalty1 != penalty1 { + ok = false + } + if test.expectedPenalty2 != -1 && test.expectedPenalty2 != penalty2 { + ok = false + } + if test.expectedPenalty3 != -1 && test.expectedPenalty3 != penalty3 { + ok = false + } + if test.expectedPenalty4 != -1 && test.expectedPenalty4 != penalty4 { + ok = false + } + + if !ok { + t.Fatalf("Penalty test #%d p1=%d, p2=%d, p3=%d, p4=%d (expected p1=%d, p2=%d, p3=%d, p4=%d)", i, penalty1, penalty2, penalty3, penalty4, + test.expectedPenalty1, test.expectedPenalty2, test.expectedPenalty3, + test.expectedPenalty4) + } + } +} diff --git a/vendor/github.com/skip2/go-qrcode/version.go b/vendor/github.com/skip2/go-qrcode/version.go new file mode 100644 index 0000000..738cf3d --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/version.go @@ -0,0 +1,3050 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "log" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +// Error detection/recovery capacity. +// +// There are several levels of error detection/recovery capacity. Higher levels +// of error recovery are able to correct more errors, with the trade-off of +// increased symbol size. +type RecoveryLevel int + +const ( + // Level L: 7% error recovery. + Low RecoveryLevel = iota + + // Level M: 15% error recovery. Good default choice. + Medium + + // Level Q: 25% error recovery. + High + + // Level H: 30% error recovery. + Highest +) + +// qrCodeVersion describes the data length and encoding order of a single QR +// Code version. There are 40 versions numbers x 4 recovery levels == 160 +// possible qrCodeVersion structures. +type qrCodeVersion struct { + // Version number (1-40 inclusive). + version int + + // Error recovery level. + level RecoveryLevel + + dataEncoderType dataEncoderType + + // Encoded data can be split into multiple blocks. Each block contains data + // and error recovery bytes. + // + // Larger QR Codes contain more blocks. + block []block + + // Number of bits required to pad the combined data & error correction bit + // stream up to the symbol's full capacity. + numRemainderBits int +} + +type block struct { + numBlocks int + + // Total codewords (numCodewords == numErrorCodewords+numDataCodewords). + numCodewords int + + // Number of data codewords. + numDataCodewords int +} + +var ( + versions = []qrCodeVersion{ + { + 1, + Low, + dataEncoderType1To9, + []block{ + { + 1, + 26, + 19, + }, + }, + 0, + }, + { + 1, + Medium, + dataEncoderType1To9, + []block{ + { + 1, + 26, + 16, + }, + }, + 0, + }, + { + 1, + High, + dataEncoderType1To9, + []block{ + { + 1, + 26, + 13, + }, + }, + 0, + }, + { + 1, + Highest, + dataEncoderType1To9, + []block{ + { + 1, + 26, + 9, + }, + }, + 0, + }, + { + 2, + Low, + dataEncoderType1To9, + []block{ + { + 1, + 44, + 34, + }, + }, + 7, + }, + { + 2, + Medium, + dataEncoderType1To9, + []block{ + { + 1, + 44, + 28, + }, + }, + 7, + }, + { + 2, + High, + dataEncoderType1To9, + []block{ + { + 1, + 44, + 22, + }, + }, + 7, + }, + { + 2, + Highest, + dataEncoderType1To9, + []block{ + { + 1, + 44, + 16, + }, + }, + 7, + }, + { + 3, + Low, + dataEncoderType1To9, + []block{ + { + 1, + 70, + 55, + }, + }, + 7, + }, + { + 3, + Medium, + dataEncoderType1To9, + []block{ + { + 1, + 70, + 44, + }, + }, + 7, + }, + { + 3, + High, + dataEncoderType1To9, + []block{ + { + 2, + 35, + 17, + }, + }, + 7, + }, + { + 3, + Highest, + dataEncoderType1To9, + []block{ + { + 2, + 35, + 13, + }, + }, + 7, + }, + { + 4, + Low, + dataEncoderType1To9, + []block{ + { + 1, + 100, + 80, + }, + }, + 7, + }, + { + 4, + Medium, + dataEncoderType1To9, + []block{ + { + 2, + 50, + 32, + }, + }, + 7, + }, + { + 4, + High, + dataEncoderType1To9, + []block{ + { + 2, + 50, + 24, + }, + }, + 7, + }, + { + 4, + Highest, + dataEncoderType1To9, + []block{ + { + 4, + 25, + 9, + }, + }, + 7, + }, + { + 5, + Low, + dataEncoderType1To9, + []block{ + { + 1, + 134, + 108, + }, + }, + 7, + }, + { + 5, + Medium, + dataEncoderType1To9, + []block{ + { + 2, + 67, + 43, + }, + }, + 7, + }, + { + 5, + High, + dataEncoderType1To9, + []block{ + { + 2, + 33, + 15, + }, + { + 2, + 34, + 16, + }, + }, + 7, + }, + { + 5, + Highest, + dataEncoderType1To9, + []block{ + { + 2, + 33, + 11, + }, + { + 2, + 34, + 12, + }, + }, + 7, + }, + { + 6, + Low, + dataEncoderType1To9, + []block{ + { + 2, + 86, + 68, + }, + }, + 7, + }, + { + 6, + Medium, + dataEncoderType1To9, + []block{ + { + 4, + 43, + 27, + }, + }, + 7, + }, + { + 6, + High, + dataEncoderType1To9, + []block{ + { + 4, + 43, + 19, + }, + }, + 7, + }, + { + 6, + Highest, + dataEncoderType1To9, + []block{ + { + 4, + 43, + 15, + }, + }, + 7, + }, + { + 7, + Low, + dataEncoderType1To9, + []block{ + { + 2, + 98, + 78, + }, + }, + 0, + }, + { + 7, + Medium, + dataEncoderType1To9, + []block{ + { + 4, + 49, + 31, + }, + }, + 0, + }, + { + 7, + High, + dataEncoderType1To9, + []block{ + { + 2, + 32, + 14, + }, + { + 4, + 33, + 15, + }, + }, + 0, + }, + { + 7, + Highest, + dataEncoderType1To9, + []block{ + { + 4, + 39, + 13, + }, + { + 1, + 40, + 14, + }, + }, + 0, + }, + { + 8, + Low, + dataEncoderType1To9, + []block{ + { + 2, + 121, + 97, + }, + }, + 0, + }, + { + 8, + Medium, + dataEncoderType1To9, + []block{ + { + 2, + 60, + 38, + }, + { + 2, + 61, + 39, + }, + }, + 0, + }, + { + 8, + High, + dataEncoderType1To9, + []block{ + { + 4, + 40, + 18, + }, + { + 2, + 41, + 19, + }, + }, + 0, + }, + { + 8, + Highest, + dataEncoderType1To9, + []block{ + { + 4, + 40, + 14, + }, + { + 2, + 41, + 15, + }, + }, + 0, + }, + { + 9, + Low, + dataEncoderType1To9, + []block{ + { + 2, + 146, + 116, + }, + }, + 0, + }, + { + 9, + Medium, + dataEncoderType1To9, + []block{ + { + 3, + 58, + 36, + }, + { + 2, + 59, + 37, + }, + }, + 0, + }, + { + 9, + High, + dataEncoderType1To9, + []block{ + { + 4, + 36, + 16, + }, + { + 4, + 37, + 17, + }, + }, + 0, + }, + { + 9, + Highest, + dataEncoderType1To9, + []block{ + { + 4, + 36, + 12, + }, + { + 4, + 37, + 13, + }, + }, + 0, + }, + { + 10, + Low, + dataEncoderType10To26, + []block{ + { + 2, + 86, + 68, + }, + { + 2, + 87, + 69, + }, + }, + 0, + }, + { + 10, + Medium, + dataEncoderType10To26, + []block{ + { + 4, + 69, + 43, + }, + { + 1, + 70, + 44, + }, + }, + 0, + }, + { + 10, + High, + dataEncoderType10To26, + []block{ + { + 6, + 43, + 19, + }, + { + 2, + 44, + 20, + }, + }, + 0, + }, + { + 10, + Highest, + dataEncoderType10To26, + []block{ + { + 6, + 43, + 15, + }, + { + 2, + 44, + 16, + }, + }, + 0, + }, + { + 11, + Low, + dataEncoderType10To26, + []block{ + { + 4, + 101, + 81, + }, + }, + 0, + }, + { + 11, + Medium, + dataEncoderType10To26, + []block{ + { + 1, + 80, + 50, + }, + { + 4, + 81, + 51, + }, + }, + 0, + }, + { + 11, + High, + dataEncoderType10To26, + []block{ + { + 4, + 50, + 22, + }, + { + 4, + 51, + 23, + }, + }, + 0, + }, + { + 11, + Highest, + dataEncoderType10To26, + []block{ + { + 3, + 36, + 12, + }, + { + 8, + 37, + 13, + }, + }, + 0, + }, + { + 12, + Low, + dataEncoderType10To26, + []block{ + { + 2, + 116, + 92, + }, + { + 2, + 117, + 93, + }, + }, + 0, + }, + { + 12, + Medium, + dataEncoderType10To26, + []block{ + { + 6, + 58, + 36, + }, + { + 2, + 59, + 37, + }, + }, + 0, + }, + { + 12, + High, + dataEncoderType10To26, + []block{ + { + 4, + 46, + 20, + }, + { + 6, + 47, + 21, + }, + }, + 0, + }, + { + 12, + Highest, + dataEncoderType10To26, + []block{ + { + 7, + 42, + 14, + }, + { + 4, + 43, + 15, + }, + }, + 0, + }, + { + 13, + Low, + dataEncoderType10To26, + []block{ + { + 4, + 133, + 107, + }, + }, + 0, + }, + { + 13, + Medium, + dataEncoderType10To26, + []block{ + { + 8, + 59, + 37, + }, + { + 1, + 60, + 38, + }, + }, + 0, + }, + { + 13, + High, + dataEncoderType10To26, + []block{ + { + 8, + 44, + 20, + }, + { + 4, + 45, + 21, + }, + }, + 0, + }, + { + 13, + Highest, + dataEncoderType10To26, + []block{ + { + 12, + 33, + 11, + }, + { + 4, + 34, + 12, + }, + }, + 0, + }, + { + 14, + Low, + dataEncoderType10To26, + []block{ + { + 3, + 145, + 115, + }, + { + 1, + 146, + 116, + }, + }, + 3, + }, + { + 14, + Medium, + dataEncoderType10To26, + []block{ + { + 4, + 64, + 40, + }, + { + 5, + 65, + 41, + }, + }, + 3, + }, + { + 14, + High, + dataEncoderType10To26, + []block{ + { + 11, + 36, + 16, + }, + { + 5, + 37, + 17, + }, + }, + 3, + }, + { + 14, + Highest, + dataEncoderType10To26, + []block{ + { + 11, + 36, + 12, + }, + { + 5, + 37, + 13, + }, + }, + 3, + }, + { + 15, + Low, + dataEncoderType10To26, + []block{ + { + 5, + 109, + 87, + }, + { + 1, + 110, + 88, + }, + }, + 3, + }, + { + 15, + Medium, + dataEncoderType10To26, + []block{ + { + 5, + 65, + 41, + }, + { + 5, + 66, + 42, + }, + }, + 3, + }, + { + 15, + High, + dataEncoderType10To26, + []block{ + { + 5, + 54, + 24, + }, + { + 7, + 55, + 25, + }, + }, + 3, + }, + { + 15, + Highest, + dataEncoderType10To26, + []block{ + { + 11, + 36, + 12, + }, + { + 7, + 37, + 13, + }, + }, + 3, + }, + { + 16, + Low, + dataEncoderType10To26, + []block{ + { + 5, + 122, + 98, + }, + { + 1, + 123, + 99, + }, + }, + 3, + }, + { + 16, + Medium, + dataEncoderType10To26, + []block{ + { + 7, + 73, + 45, + }, + { + 3, + 74, + 46, + }, + }, + 3, + }, + { + 16, + High, + dataEncoderType10To26, + []block{ + { + 15, + 43, + 19, + }, + { + 2, + 44, + 20, + }, + }, + 3, + }, + { + 16, + Highest, + dataEncoderType10To26, + []block{ + { + 3, + 45, + 15, + }, + { + 13, + 46, + 16, + }, + }, + 3, + }, + { + 17, + Low, + dataEncoderType10To26, + []block{ + { + 1, + 135, + 107, + }, + { + 5, + 136, + 108, + }, + }, + 3, + }, + { + 17, + Medium, + dataEncoderType10To26, + []block{ + { + 10, + 74, + 46, + }, + { + 1, + 75, + 47, + }, + }, + 3, + }, + { + 17, + High, + dataEncoderType10To26, + []block{ + { + 1, + 50, + 22, + }, + { + 15, + 51, + 23, + }, + }, + 3, + }, + { + 17, + Highest, + dataEncoderType10To26, + []block{ + { + 2, + 42, + 14, + }, + { + 17, + 43, + 15, + }, + }, + 3, + }, + { + 18, + Low, + dataEncoderType10To26, + []block{ + { + 5, + 150, + 120, + }, + { + 1, + 151, + 121, + }, + }, + 3, + }, + { + 18, + Medium, + dataEncoderType10To26, + []block{ + { + 9, + 69, + 43, + }, + { + 4, + 70, + 44, + }, + }, + 3, + }, + { + 18, + High, + dataEncoderType10To26, + []block{ + { + 17, + 50, + 22, + }, + { + 1, + 51, + 23, + }, + }, + 3, + }, + { + 18, + Highest, + dataEncoderType10To26, + []block{ + { + 2, + 42, + 14, + }, + { + 19, + 43, + 15, + }, + }, + 3, + }, + { + 19, + Low, + dataEncoderType10To26, + []block{ + { + 3, + 141, + 113, + }, + { + 4, + 142, + 114, + }, + }, + 3, + }, + { + 19, + Medium, + dataEncoderType10To26, + []block{ + { + 3, + 70, + 44, + }, + { + 11, + 71, + 45, + }, + }, + 3, + }, + { + 19, + High, + dataEncoderType10To26, + []block{ + { + 17, + 47, + 21, + }, + { + 4, + 48, + 22, + }, + }, + 3, + }, + { + 19, + Highest, + dataEncoderType10To26, + []block{ + { + 9, + 39, + 13, + }, + { + 16, + 40, + 14, + }, + }, + 3, + }, + { + 20, + Low, + dataEncoderType10To26, + []block{ + { + 3, + 135, + 107, + }, + { + 5, + 136, + 108, + }, + }, + 3, + }, + { + 20, + Medium, + dataEncoderType10To26, + []block{ + { + 3, + 67, + 41, + }, + { + 13, + 68, + 42, + }, + }, + 3, + }, + { + 20, + High, + dataEncoderType10To26, + []block{ + { + 15, + 54, + 24, + }, + { + 5, + 55, + 25, + }, + }, + 3, + }, + { + 20, + Highest, + dataEncoderType10To26, + []block{ + { + 15, + 43, + 15, + }, + { + 10, + 44, + 16, + }, + }, + 3, + }, + { + 21, + Low, + dataEncoderType10To26, + []block{ + { + 4, + 144, + 116, + }, + { + 4, + 145, + 117, + }, + }, + 4, + }, + { + 21, + Medium, + dataEncoderType10To26, + []block{ + { + 17, + 68, + 42, + }, + }, + 4, + }, + { + 21, + High, + dataEncoderType10To26, + []block{ + { + 17, + 50, + 22, + }, + { + 6, + 51, + 23, + }, + }, + 4, + }, + { + 21, + Highest, + dataEncoderType10To26, + []block{ + { + 19, + 46, + 16, + }, + { + 6, + 47, + 17, + }, + }, + 4, + }, + { + 22, + Low, + dataEncoderType10To26, + []block{ + { + 2, + 139, + 111, + }, + { + 7, + 140, + 112, + }, + }, + 4, + }, + { + 22, + Medium, + dataEncoderType10To26, + []block{ + { + 17, + 74, + 46, + }, + }, + 4, + }, + { + 22, + High, + dataEncoderType10To26, + []block{ + { + 7, + 54, + 24, + }, + { + 16, + 55, + 25, + }, + }, + 4, + }, + { + 22, + Highest, + dataEncoderType10To26, + []block{ + { + 34, + 37, + 13, + }, + }, + 4, + }, + { + 23, + Low, + dataEncoderType10To26, + []block{ + { + 4, + 151, + 121, + }, + { + 5, + 152, + 122, + }, + }, + 4, + }, + { + 23, + Medium, + dataEncoderType10To26, + []block{ + { + 4, + 75, + 47, + }, + { + 14, + 76, + 48, + }, + }, + 4, + }, + { + 23, + High, + dataEncoderType10To26, + []block{ + { + 11, + 54, + 24, + }, + { + 14, + 55, + 25, + }, + }, + 4, + }, + { + 23, + Highest, + dataEncoderType10To26, + []block{ + { + 16, + 45, + 15, + }, + { + 14, + 46, + 16, + }, + }, + 4, + }, + { + 24, + Low, + dataEncoderType10To26, + []block{ + { + 6, + 147, + 117, + }, + { + 4, + 148, + 118, + }, + }, + 4, + }, + { + 24, + Medium, + dataEncoderType10To26, + []block{ + { + 6, + 73, + 45, + }, + { + 14, + 74, + 46, + }, + }, + 4, + }, + { + 24, + High, + dataEncoderType10To26, + []block{ + { + 11, + 54, + 24, + }, + { + 16, + 55, + 25, + }, + }, + 4, + }, + { + 24, + Highest, + dataEncoderType10To26, + []block{ + { + 30, + 46, + 16, + }, + { + 2, + 47, + 17, + }, + }, + 4, + }, + { + 25, + Low, + dataEncoderType10To26, + []block{ + { + 8, + 132, + 106, + }, + { + 4, + 133, + 107, + }, + }, + 4, + }, + { + 25, + Medium, + dataEncoderType10To26, + []block{ + { + 8, + 75, + 47, + }, + { + 13, + 76, + 48, + }, + }, + 4, + }, + { + 25, + High, + dataEncoderType10To26, + []block{ + { + 7, + 54, + 24, + }, + { + 22, + 55, + 25, + }, + }, + 4, + }, + { + 25, + Highest, + dataEncoderType10To26, + []block{ + { + 22, + 45, + 15, + }, + { + 13, + 46, + 16, + }, + }, + 4, + }, + { + 26, + Low, + dataEncoderType10To26, + []block{ + { + 10, + 142, + 114, + }, + { + 2, + 143, + 115, + }, + }, + 4, + }, + { + 26, + Medium, + dataEncoderType10To26, + []block{ + { + 19, + 74, + 46, + }, + { + 4, + 75, + 47, + }, + }, + 4, + }, + { + 26, + High, + dataEncoderType10To26, + []block{ + { + 28, + 50, + 22, + }, + { + 6, + 51, + 23, + }, + }, + 4, + }, + { + 26, + Highest, + dataEncoderType10To26, + []block{ + { + 33, + 46, + 16, + }, + { + 4, + 47, + 17, + }, + }, + 4, + }, + { + 27, + Low, + dataEncoderType27To40, + []block{ + { + 8, + 152, + 122, + }, + { + 4, + 153, + 123, + }, + }, + 4, + }, + { + 27, + Medium, + dataEncoderType27To40, + []block{ + { + 22, + 73, + 45, + }, + { + 3, + 74, + 46, + }, + }, + 4, + }, + { + 27, + High, + dataEncoderType27To40, + []block{ + { + 8, + 53, + 23, + }, + { + 26, + 54, + 24, + }, + }, + 4, + }, + { + 27, + Highest, + dataEncoderType27To40, + []block{ + { + 12, + 45, + 15, + }, + { + 28, + 46, + 16, + }, + }, + 4, + }, + { + 28, + Low, + dataEncoderType27To40, + []block{ + { + 3, + 147, + 117, + }, + { + 10, + 148, + 118, + }, + }, + 3, + }, + { + 28, + Medium, + dataEncoderType27To40, + []block{ + { + 3, + 73, + 45, + }, + { + 23, + 74, + 46, + }, + }, + 3, + }, + { + 28, + High, + dataEncoderType27To40, + []block{ + { + 4, + 54, + 24, + }, + { + 31, + 55, + 25, + }, + }, + 3, + }, + { + 28, + Highest, + dataEncoderType27To40, + []block{ + { + 11, + 45, + 15, + }, + { + 31, + 46, + 16, + }, + }, + 3, + }, + { + 29, + Low, + dataEncoderType27To40, + []block{ + { + 7, + 146, + 116, + }, + { + 7, + 147, + 117, + }, + }, + 3, + }, + { + 29, + Medium, + dataEncoderType27To40, + []block{ + { + 21, + 73, + 45, + }, + { + 7, + 74, + 46, + }, + }, + 3, + }, + { + 29, + High, + dataEncoderType27To40, + []block{ + { + 1, + 53, + 23, + }, + { + 37, + 54, + 24, + }, + }, + 3, + }, + { + 29, + Highest, + dataEncoderType27To40, + []block{ + { + 19, + 45, + 15, + }, + { + 26, + 46, + 16, + }, + }, + 3, + }, + { + 30, + Low, + dataEncoderType27To40, + []block{ + { + 5, + 145, + 115, + }, + { + 10, + 146, + 116, + }, + }, + 3, + }, + { + 30, + Medium, + dataEncoderType27To40, + []block{ + { + 19, + 75, + 47, + }, + { + 10, + 76, + 48, + }, + }, + 3, + }, + { + 30, + High, + dataEncoderType27To40, + []block{ + { + 15, + 54, + 24, + }, + { + 25, + 55, + 25, + }, + }, + 3, + }, + { + 30, + Highest, + dataEncoderType27To40, + []block{ + { + 23, + 45, + 15, + }, + { + 25, + 46, + 16, + }, + }, + 3, + }, + { + 31, + Low, + dataEncoderType27To40, + []block{ + { + 13, + 145, + 115, + }, + { + 3, + 146, + 116, + }, + }, + 3, + }, + { + 31, + Medium, + dataEncoderType27To40, + []block{ + { + 2, + 74, + 46, + }, + { + 29, + 75, + 47, + }, + }, + 3, + }, + { + 31, + High, + dataEncoderType27To40, + []block{ + { + 42, + 54, + 24, + }, + { + 1, + 55, + 25, + }, + }, + 3, + }, + { + 31, + Highest, + dataEncoderType27To40, + []block{ + { + 23, + 45, + 15, + }, + { + 28, + 46, + 16, + }, + }, + 3, + }, + { + 32, + Low, + dataEncoderType27To40, + []block{ + { + 17, + 145, + 115, + }, + }, + 3, + }, + { + 32, + Medium, + dataEncoderType27To40, + []block{ + { + 10, + 74, + 46, + }, + { + 23, + 75, + 47, + }, + }, + 3, + }, + { + 32, + High, + dataEncoderType27To40, + []block{ + { + 10, + 54, + 24, + }, + { + 35, + 55, + 25, + }, + }, + 3, + }, + { + 32, + Highest, + dataEncoderType27To40, + []block{ + { + 19, + 45, + 15, + }, + { + 35, + 46, + 16, + }, + }, + 3, + }, + { + 33, + Low, + dataEncoderType27To40, + []block{ + { + 17, + 145, + 115, + }, + { + 1, + 146, + 116, + }, + }, + 3, + }, + { + 33, + Medium, + dataEncoderType27To40, + []block{ + { + 14, + 74, + 46, + }, + { + 21, + 75, + 47, + }, + }, + 3, + }, + { + 33, + High, + dataEncoderType27To40, + []block{ + { + 29, + 54, + 24, + }, + { + 19, + 55, + 25, + }, + }, + 3, + }, + { + 33, + Highest, + dataEncoderType27To40, + []block{ + { + 11, + 45, + 15, + }, + { + 46, + 46, + 16, + }, + }, + 3, + }, + { + 34, + Low, + dataEncoderType27To40, + []block{ + { + 13, + 145, + 115, + }, + { + 6, + 146, + 116, + }, + }, + 3, + }, + { + 34, + Medium, + dataEncoderType27To40, + []block{ + { + 14, + 74, + 46, + }, + { + 23, + 75, + 47, + }, + }, + 3, + }, + { + 34, + High, + dataEncoderType27To40, + []block{ + { + 44, + 54, + 24, + }, + { + 7, + 55, + 25, + }, + }, + 3, + }, + { + 34, + Highest, + dataEncoderType27To40, + []block{ + { + 59, + 46, + 16, + }, + { + 1, + 47, + 17, + }, + }, + 3, + }, + { + 35, + Low, + dataEncoderType27To40, + []block{ + { + 12, + 151, + 121, + }, + { + 7, + 152, + 122, + }, + }, + 0, + }, + { + 35, + Medium, + dataEncoderType27To40, + []block{ + { + 12, + 75, + 47, + }, + { + 26, + 76, + 48, + }, + }, + 0, + }, + { + 35, + High, + dataEncoderType27To40, + []block{ + { + 39, + 54, + 24, + }, + { + 14, + 55, + 25, + }, + }, + 0, + }, + { + 35, + Highest, + dataEncoderType27To40, + []block{ + { + 22, + 45, + 15, + }, + { + 41, + 46, + 16, + }, + }, + 0, + }, + { + 36, + Low, + dataEncoderType27To40, + []block{ + { + 6, + 151, + 121, + }, + { + 14, + 152, + 122, + }, + }, + 0, + }, + { + 36, + Medium, + dataEncoderType27To40, + []block{ + { + 6, + 75, + 47, + }, + { + 34, + 76, + 48, + }, + }, + 0, + }, + { + 36, + High, + dataEncoderType27To40, + []block{ + { + 46, + 54, + 24, + }, + { + 10, + 55, + 25, + }, + }, + 0, + }, + { + 36, + Highest, + dataEncoderType27To40, + []block{ + { + 2, + 45, + 15, + }, + { + 64, + 46, + 16, + }, + }, + 0, + }, + { + 37, + Low, + dataEncoderType27To40, + []block{ + { + 17, + 152, + 122, + }, + { + 4, + 153, + 123, + }, + }, + 0, + }, + { + 37, + Medium, + dataEncoderType27To40, + []block{ + { + 29, + 74, + 46, + }, + { + 14, + 75, + 47, + }, + }, + 0, + }, + { + 37, + High, + dataEncoderType27To40, + []block{ + { + 49, + 54, + 24, + }, + { + 10, + 55, + 25, + }, + }, + 0, + }, + { + 37, + Highest, + dataEncoderType27To40, + []block{ + { + 24, + 45, + 15, + }, + { + 46, + 46, + 16, + }, + }, + 0, + }, + { + 38, + Low, + dataEncoderType27To40, + []block{ + { + 4, + 152, + 122, + }, + { + 18, + 153, + 123, + }, + }, + 0, + }, + { + 38, + Medium, + dataEncoderType27To40, + []block{ + { + 13, + 74, + 46, + }, + { + 32, + 75, + 47, + }, + }, + 0, + }, + { + 38, + High, + dataEncoderType27To40, + []block{ + { + 48, + 54, + 24, + }, + { + 14, + 55, + 25, + }, + }, + 0, + }, + { + 38, + Highest, + dataEncoderType27To40, + []block{ + { + 42, + 45, + 15, + }, + { + 32, + 46, + 16, + }, + }, + 0, + }, + { + 39, + Low, + dataEncoderType27To40, + []block{ + { + 20, + 147, + 117, + }, + { + 4, + 148, + 118, + }, + }, + 0, + }, + { + 39, + Medium, + dataEncoderType27To40, + []block{ + { + 40, + 75, + 47, + }, + { + 7, + 76, + 48, + }, + }, + 0, + }, + { + 39, + High, + dataEncoderType27To40, + []block{ + { + 43, + 54, + 24, + }, + { + 22, + 55, + 25, + }, + }, + 0, + }, + { + 39, + Highest, + dataEncoderType27To40, + []block{ + { + 10, + 45, + 15, + }, + { + 67, + 46, + 16, + }, + }, + 0, + }, + { + 40, + Low, + dataEncoderType27To40, + []block{ + { + 19, + 148, + 118, + }, + { + 6, + 149, + 119, + }, + }, + 0, + }, + { + 40, + Medium, + dataEncoderType27To40, + []block{ + { + 18, + 75, + 47, + }, + { + 31, + 76, + 48, + }, + }, + 0, + }, + { + 40, + High, + dataEncoderType27To40, + []block{ + { + 34, + 54, + 24, + }, + { + 34, + 55, + 25, + }, + }, + 0, + }, + { + 40, + Highest, + dataEncoderType27To40, + []block{ + { + 20, + 45, + 15, + }, + { + 61, + 46, + 16, + }, + }, + 0, + }, + } +) + +var ( + // Each QR Code contains a 15-bit Format Information value. The 15 bits + // consist of 5 data bits concatenated with 10 error correction bits. + // + // The 5 data bits consist of: + // - 2 bits for the error correction level (L=01, M=00, G=11, H=10). + // - 3 bits for the data mask pattern identifier. + // + // formatBitSequence is a mapping from the 5 data bits to the completed 15-bit + // Format Information value. + // + // For example, a QR Code using error correction level L, and data mask + // pattern identifier 001: + // + // 01 | 001 = 01001 = 0x9 + // formatBitSequence[0x9].qrCode = 0x72f3 = 111001011110011 + formatBitSequence = []struct { + regular uint32 + micro uint32 + }{ + {0x5412, 0x4445}, + {0x5125, 0x4172}, + {0x5e7c, 0x4e2b}, + {0x5b4b, 0x4b1c}, + {0x45f9, 0x55ae}, + {0x40ce, 0x5099}, + {0x4f97, 0x5fc0}, + {0x4aa0, 0x5af7}, + {0x77c4, 0x6793}, + {0x72f3, 0x62a4}, + {0x7daa, 0x6dfd}, + {0x789d, 0x68ca}, + {0x662f, 0x7678}, + {0x6318, 0x734f}, + {0x6c41, 0x7c16}, + {0x6976, 0x7921}, + {0x1689, 0x06de}, + {0x13be, 0x03e9}, + {0x1ce7, 0x0cb0}, + {0x19d0, 0x0987}, + {0x0762, 0x1735}, + {0x0255, 0x1202}, + {0x0d0c, 0x1d5b}, + {0x083b, 0x186c}, + {0x355f, 0x2508}, + {0x3068, 0x203f}, + {0x3f31, 0x2f66}, + {0x3a06, 0x2a51}, + {0x24b4, 0x34e3}, + {0x2183, 0x31d4}, + {0x2eda, 0x3e8d}, + {0x2bed, 0x3bba}, + } + + // QR Codes version 7 and higher contain an 18-bit Version Information value, + // consisting of a 6 data bits and 12 error correction bits. + // + // versionBitSequence is a mapping from QR Code version to the completed + // 18-bit Version Information value. + // + // For example, a QR code of version 7: + // versionBitSequence[0x7] = 0x07c94 = 000111110010010100 + versionBitSequence = []uint32{ + 0x00000, + 0x00000, + 0x00000, + 0x00000, + 0x00000, + 0x00000, + 0x00000, + 0x07c94, + 0x085bc, + 0x09a99, + 0x0a4d3, + 0x0bbf6, + 0x0c762, + 0x0d847, + 0x0e60d, + 0x0f928, + 0x10b78, + 0x1145d, + 0x12a17, + 0x13532, + 0x149a6, + 0x15683, + 0x168c9, + 0x177ec, + 0x18ec4, + 0x191e1, + 0x1afab, + 0x1b08e, + 0x1cc1a, + 0x1d33f, + 0x1ed75, + 0x1f250, + 0x209d5, + 0x216f0, + 0x228ba, + 0x2379f, + 0x24b0b, + 0x2542e, + 0x26a64, + 0x27541, + 0x28c69, + } +) + +const ( + formatInfoLengthBits = 15 + versionInfoLengthBits = 18 +) + +// formatInfo returns the 15-bit Format Information value for a QR +// code. +func (v qrCodeVersion) formatInfo(maskPattern int) *bitset.Bitset { + formatID := 0 + + switch v.level { + case Low: + formatID = 0x08 // 0b01000 + case Medium: + formatID = 0x00 // 0b00000 + case High: + formatID = 0x18 // 0b11000 + case Highest: + formatID = 0x10 // 0b10000 + default: + log.Panicf("Invalid level %d", v.level) + } + + if maskPattern < 0 || maskPattern > 7 { + log.Panicf("Invalid maskPattern %d", maskPattern) + } + + formatID |= maskPattern & 0x7 + + result := bitset.New() + + result.AppendUint32(formatBitSequence[formatID].regular, formatInfoLengthBits) + + return result +} + +// versionInfo returns the 18-bit Version Information value for a QR Code. +// +// Version Information is applicable only to QR Codes versions 7-40 inclusive. +// nil is returned if Version Information is not required. +func (v qrCodeVersion) versionInfo() *bitset.Bitset { + if v.version < 7 { + return nil + } + + result := bitset.New() + result.AppendUint32(versionBitSequence[v.version], 18) + + return result +} + +// numDataBits returns the data capacity in bits. +func (v qrCodeVersion) numDataBits() int { + numDataBits := 0 + for _, b := range v.block { + numDataBits += 8 * b.numBlocks * b.numDataCodewords // 8 bits in a byte + } + + return numDataBits +} + +// chooseQRCodeVersion chooses the most suitable QR Code version for a stated +// data length in bits, the error recovery level required, and the data encoder +// used. +// +// The chosen QR Code version is the smallest version able to fit numDataBits +// and the optional terminator bits required by the specified encoder. +// +// On success the chosen QR Code version is returned. +func chooseQRCodeVersion(level RecoveryLevel, encoder *dataEncoder, numDataBits int) *qrCodeVersion { + var chosenVersion *qrCodeVersion + + for _, v := range versions { + if v.level != level { + continue + } else if v.version < encoder.minVersion { + continue + } else if v.version > encoder.maxVersion { + break + } + + numFreeBits := v.numDataBits() - numDataBits + + if numFreeBits >= 0 { + chosenVersion = &v + break + } + } + + return chosenVersion +} + +func (v qrCodeVersion) numTerminatorBitsRequired(numDataBits int) int { + numFreeBits := v.numDataBits() - numDataBits + + var numTerminatorBits int + + switch { + case numFreeBits >= 4: + numTerminatorBits = 4 + default: + numTerminatorBits = numFreeBits + } + + return numTerminatorBits +} + +// numBlocks returns the number of blocks. +func (v qrCodeVersion) numBlocks() int { + numBlocks := 0 + + for _, b := range v.block { + numBlocks += b.numBlocks + } + + return numBlocks +} + +// numBitsToPadToCodeword returns the number of bits required to pad data of +// length numDataBits upto the nearest codeword size. +func (v qrCodeVersion) numBitsToPadToCodeword(numDataBits int) int { + if numDataBits == v.numDataBits() { + return 0 + } + + return (8 - numDataBits%8) % 8 +} + +// symbolSize returns the size of the QR Code symbol in number of modules (which +// is both the width and height, since QR codes are square). The QR Code has +// size symbolSize() x symbolSize() pixels. This does not include the quiet +// zone. +func (v qrCodeVersion) symbolSize() int { + return 21 + (v.version-1)*4 +} + +// quietZoneSize returns the number of pixels of border space on each side of +// the QR Code. The quiet space assists with decoding. +func (v qrCodeVersion) quietZoneSize() int { + return 4 +} + +// getQRCodeVersion returns the QR Code version by version number and recovery +// level. Returns nil if the requested combination is not defined. +func getQRCodeVersion(level RecoveryLevel, version int) *qrCodeVersion { + for _, v := range versions { + if v.level == level && v.version == version { + return &v + } + } + + return nil +} diff --git a/vendor/github.com/skip2/go-qrcode/version_test.go b/vendor/github.com/skip2/go-qrcode/version_test.go new file mode 100644 index 0000000..5640226 --- /dev/null +++ b/vendor/github.com/skip2/go-qrcode/version_test.go @@ -0,0 +1,158 @@ +// go-qrcode +// Copyright 2014 Tom Harwood + +package qrcode + +import ( + "testing" + + bitset "github.com/skip2/go-qrcode/bitset" +) + +func TestFormatInfo(t *testing.T) { + tests := []struct { + level RecoveryLevel + maskPattern int + + expected uint32 + }{ + { // L=01 M=00 Q=11 H=10 + Low, + 1, + 0x72f3, + }, + { + Medium, + 2, + 0x5e7c, + }, + { + High, + 3, + 0x3a06, + }, + { + Highest, + 4, + 0x0762, + }, + { + Low, + 5, + 0x6318, + }, + { + Medium, + 6, + 0x4f97, + }, + { + High, + 7, + 0x2bed, + }, + } + + for i, test := range tests { + v := getQRCodeVersion(test.level, 1) + + result := v.formatInfo(test.maskPattern) + + expected := bitset.New() + expected.AppendUint32(test.expected, formatInfoLengthBits) + + if !expected.Equals(result) { + t.Errorf("formatInfo test #%d got %s, expected %s", i, result.String(), + expected.String()) + } + } +} + +func TestVersionInfo(t *testing.T) { + tests := []struct { + version int + expected uint32 + }{ + { + 7, + 0x007c94, + }, + { + 10, + 0x00a4d3, + }, + { + 20, + 0x0149a6, + }, + { + 30, + 0x01ed75, + }, + { + 40, + 0x028c69, + }, + } + + for i, test := range tests { + var v *qrCodeVersion + + v = getQRCodeVersion(Low, test.version) + + result := v.versionInfo() + + expected := bitset.New() + expected.AppendUint32(test.expected, versionInfoLengthBits) + + if !expected.Equals(result) { + t.Errorf("versionInfo test #%d got %s, expected %s", i, result.String(), + expected.String()) + } + } +} + +func TestNumBitsToPadToCodeoword(t *testing.T) { + tests := []struct { + level RecoveryLevel + version int + + numDataBits int + expected int + }{ + { + Low, + 1, + 0, + 0, + }, { + Low, + 1, + 1, + 7, + }, { + Low, + 1, + 7, + 1, + }, { + Low, + 1, + 8, + 0, + }, + } + + for i, test := range tests { + var v *qrCodeVersion + + v = getQRCodeVersion(test.level, test.version) + + result := v.numBitsToPadToCodeword(test.numDataBits) + + if result != test.expected { + t.Errorf("numBitsToPadToCodeword test %d (version=%d numDataBits=%d), got %d, expected %d", + i, test.version, test.numDataBits, result, test.expected) + } + } +}