Commit: fe8578fdbc110408548900c66a834b7c6b437f5e Author: Vi Grey Date: 2017-06-02 20:51 UTC Summary: Initial commit .gitignore | 2 + Makefile | 39 ++ src/u2f-demo/bindata.go | 592 ++++++++++++++++++++++++++++ src/u2f-demo/conversions.go | 44 +++ src/u2f-demo/crypto.go | 111 ++++++ src/u2f-demo/http.go | 455 ++++++++++++++++++++++ src/u2f-demo/u2f-demo.go | 63 +++ src/u2f-demo/u2frequests.go | 108 ++++++ static/css/layout.css | 262 +++++++++++++ static/fonts/Open-Sans-regular.woff | Bin 0 -> 14260 bytes static/images/close.svg | 66 ++++ static/images/failure.svg | 68 ++++ static/images/profile.svg | 94 +++++ static/images/success.svg | 69 ++++ static/images/u2f-token.svg | 123 ++++++ static/index.html | 50 +++ static/js/circle-progress.min.js | 10 + static/js/jquery-ui.min.js | 13 + static/js/jquery.min.js | 4 + static/js/scripts.js | 180 +++++++++ static/js/u2f-api.js | 748 ++++++++++++++++++++++++++++++++++++ static/layout/favicon.png | Bin 0 -> 1751 bytes static/login.html | 52 +++ static/profile.html | 64 ++++ vendor/manifest | 31 ++ vendor/src/github.com/gorilla/mux/LICENSE | 27 ++ vendor/src/github.com/gorilla/mux/README.md | 340 +++++++++++++++++ vendor/src/github.com/gorilla/mux/bench_test.go | 49 +++ vendor/src/github.com/gorilla/mux/context_gorilla.go | 26 ++ vendor/src/github.com/gorilla/mux/context_gorilla_test.go | 40 ++ vendor/src/github.com/gorilla/mux/context_native.go | 24 ++ vendor/src/github.com/gorilla/mux/context_native_test.go | 32 ++ vendor/src/github.com/gorilla/mux/doc.go | 240 ++++++++++++ vendor/src/github.com/gorilla/mux/mux.go | 542 ++++++++++++++++++++++++++ vendor/src/github.com/gorilla/mux/mux_test.go | 1655 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ vendor/src/github.com/gorilla/mux/old_test.go | 710 ++++++++++++++++++++++++++++++++++ vendor/src/github.com/gorilla/mux/regexp.go | 323 ++++++++++++++++ vendor/src/github.com/gorilla/mux/route.go | 636 ++++++++++++++++++++++++++++++ vendor/src/github.com/tstranex/u2f/LICENSE | 21 + vendor/src/github.com/tstranex/u2f/README.md | 97 +++++ vendor/src/github.com/tstranex/u2f/auth.go | 136 +++++++ vendor/src/github.com/tstranex/u2f/auth_test.go | 36 ++ vendor/src/github.com/tstranex/u2f/certs.go | 89 +++++ vendor/src/github.com/tstranex/u2f/messages.go | 87 +++++ vendor/src/github.com/tstranex/u2f/register.go | 210 ++++++++++ vendor/src/github.com/tstranex/u2f/register_test.go | 100 +++++ vendor/src/github.com/tstranex/u2f/u2f_test.go | 64 ++++ vendor/src/github.com/tstranex/u2f/u2fdemo/certs.go | 49 +++ vendor/src/github.com/tstranex/u2f/u2fdemo/main.go | 232 +++++++++++ vendor/src/github.com/tstranex/u2f/util.go | 125 ++++++ vendor/src/github.com/tstranex/u2f/util_test.go | 40 ++ vendor/src/golang.org/x/crypto/bcrypt/base64.go | 35 ++ vendor/src/golang.org/x/crypto/bcrypt/bcrypt.go | 294 ++++++++++++++ vendor/src/golang.org/x/crypto/bcrypt/bcrypt_test.go | 226 +++++++++++ vendor/src/golang.org/x/crypto/blowfish/block.go | 159 ++++++++ vendor/src/golang.org/x/crypto/blowfish/blowfish_test.go | 274 +++++++++++++ vendor/src/golang.org/x/crypto/blowfish/cipher.go | 91 +++++ vendor/src/golang.org/x/crypto/blowfish/const.go | 199 ++++++++++ 58 files changed, 10456 insertions(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5682f9e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +bin +pkg diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a386e3f --- /dev/null +++ b/Makefile @@ -0,0 +1,39 @@ +# Copyright (C) 2017, Vi Grey +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. + +PKG_NAME := u2f-demo + +all: + gb build all + +clean: + rm -rf bin + +install: + cp bin/$(PKG_NAME) /usr/local/bin/ + +uninstall: + rm -rf /usr/local/bin/$(PKG_NAME) + diff --git a/src/u2f-demo/bindata.go b/src/u2f-demo/bindata.go new file mode 100644 index 0000000..957eda0 --- /dev/null +++ b/src/u2f-demo/bindata.go @@ -0,0 +1,592 @@ +// Code generated by go-bindata. +// sources: +// static/css/layout.css +// static/fonts/Open-Sans-regular.woff +// static/images/close.svg +// static/images/failure.svg +// static/images/profile.svg +// static/images/success.svg +// static/images/u2f-token.svg +// static/index.html +// static/js/circle-progress.min.js +// static/js/jquery-ui.min.js +// static/js/jquery.min.js +// static/js/scripts.js +// static/js/u2f-api.js +// static/layout/favicon.png +// static/login.html +// static/profile.html +// DO NOT EDIT! + +package main + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "strings" + "time" +) + +func bindataRead(data []byte, name string) ([]byte, error) { + gz, err := gzip.NewReader(bytes.NewBuffer(data)) + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + + var buf bytes.Buffer + _, err = io.Copy(&buf, gz) + clErr := gz.Close() + + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + if clErr != nil { + return nil, err + } + + return buf.Bytes(), nil +} + +type asset struct { + bytes []byte + info os.FileInfo +} + +type bindataFileInfo struct { + name string + size int64 + mode os.FileMode + modTime time.Time +} + +func (fi bindataFileInfo) Name() string { + return fi.name +} +func (fi bindataFileInfo) Size() int64 { + return fi.size +} +func (fi bindataFileInfo) Mode() os.FileMode { + return fi.mode +} +func (fi bindataFileInfo) ModTime() time.Time { + return fi.modTime +} +func (fi bindataFileInfo) IsDir() bool { + return false +} +func (fi bindataFileInfo) Sys() interface{} { + return nil +} + +var _staticCssLayoutCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x7f\x6f\xe2\xb8\x16\xfd\x9f\x4f\x71\xd5\xd1\x6a\xcb\x28\xd0\x40\x69\x3b\x4b\xf5\xa4\x4d\xc1\x2d\x96\x68\xc2\x4b\x42\xbb\xd5\xd3\xd3\x5b\x93\x38\x60\x35\xc4\x91\xe3\xb4\xb0\xab\xf9\xee\x4f\x76\x12\x48\x80\xe9\xcc\xfc\xb1\x6a\x25\xe2\x5f\xd7\xf7\x1c\x9f\x7b\xec\x8b\xcf\x9d\x16\x7c\x86\x11\x4f\xb7\x82\x2d\x57\x12\xce\x47\x6d\xe8\x9b\xbd\x1b\x03\x9e\x18\x3c\x08\xba\x55\xc3\x56\x1c\x83\x1e\xce\x40\xd0\x8c\x8a\x37\x1a\x76\x5b\xf0\x59\x0d\xb9\x34\x64\x99\x14\x6c\x91\x4b\xc6\x13\x20\x49\x08\x79\x46\x81\x25\x90\xf1\x5c\x04\x54\xf7\x2c\x58\x42\xc4\x16\x22\x2e\xd6\x99\x01\xef\x4c\xae\x80\x0b\xfd\xcb\x73\xa9\xa2\xac\x79\xc8\x22\x16\x10\x15\xc3\x00\x22\x28\xa4\x54\xac\x99\x94\x34\x84\x54\xf0\x37\x16\xd2\x10\xe4\x8a\x48\x90\x2b\x0a\x11\x8f\x63\xfe\xce\x92\x25\x04\x3c\x09\x99\x5a\x94\xa9\x28\x6a\xdd\x9a\xca\x61\x99\x5a\xaf\x7b\x90\x5d\x06\x3c\xaa\xd2\x0a\x78\x48\x61\x9d\x67\x12\x04\x95\x84\x25\x3a\x30\x59\xf0\x37\x35\x54\x92\xa1\x82\x00\x40\xc2\x25\x0b\xa8\x01\x72\xc5\x32\x88\x59\x26\x55\x98\xfd\xce\x1a\x61\x33\xad\x90\x65\x41\x4c\xd8\x9a\x0a\x45\x13\xf4\x8f\x13\x61\x49\x9d\x94\x2a\x91\x54\xf0\x30\x0f\xe8\x3f\x94\x0b\x14\x28\xcb\x48\x21\x0f\xf2\x35\x4d\x24\xa9\xce\xed\x82\x0b\xe0\x72\x45\x05\xac\x89\xa4\x82\x91\x38\xdb\x73\xaf\xcf\x4c\x05\xae\xc3\xa8\x34\xe0\x4f\xb0\x07\x9e\x73\xef\x3f\x5b\x2e\x02\xec\xc1\xcc\x75\x9e\xf0\x18\x8d\xe1\xee\x05\xac\xb9\x3f\x71\x5c\xb0\xec\x31\x8c\x1c\xdb\x77\xf1\xdd\xdc\x77\x5c\x0f\xfe\xfc\xd3\xf2\x00\x7b\xbf\xfe\xaa\x86\xb4\xc8\xec\x17\x40\x7f\xcc\x5c\xe4\x79\xe0\xb8\x80\x1f\x67\x53\x8c\xc6\xf0\x6c\xb9\xae\x65\xfb\x18\x79\x06\x60\x7b\x34\x9d\x8f\xb1\xfd\x60\xc0\xdd\xdc\x07\xdb\xf1\x61\x8a\x1f\xb1\x8f\xc6\xe0\x3b\x06\xf8\x13\xa4\x02\x1d\xaf\x04\xe7\x1e\x1e\x91\x3b\x9a\x58\xb6\x6f\xdd\xe1\x29\xf6\x5f\x74\x42\xf7\xd8\xb7\xd5\x76\xf7\x2a\x41\x98\x59\xae\x8f\x47\xf3\xa9\xe5\xc2\x6c\xee\xce\x1c\x4f\x47\x53\x90\xc6\xd8\x1b\x4d\x2d\xfc\x88\xc6\x5d\xc0\x36\xd8\x0e\xa0\x27\x64\xfb\xe0\x4d\xac\xe9\xb4\x42\xe8\xb8\x4d\x80\x77\x08\xa6\xd8\xba\x9b\xea\x28\x7a\x07\xfb\x05\xc6\xd8\x45\x23\x5f\x21\xd9\x7f\x8d\xf0\x18\xd9\xbe\x35\x35\xc0\x9b\xa1\x11\x56\x1f\xe8\x0f\xf4\x38\x9b\x5a\xee\x8b\x51\x86\xf5\xd0\xbf\xe7\xc8\xf6\xb1\x35\x55\xd1\xc6\xd6\xa3\xf5\x80\x3c\x38\xff\x0e\x21\x33\xd7\x19\xcd\x5d\xf4\xa8\x72\x75\xee\xc1\x9b\xdf\x79\x3e\xf6\xe7\x3e\x82\x07\xc7\x19\x7b\x2a\x94\xe3\x82\x87\xdc\x27\x3c\x42\xde\x2d\x4c\x1d\x4f\x73\x35\xf7\x90\x01\x63\xcb\xb7\xf4\xf6\x33\xd7\xb9\xc7\xbe\x77\xab\xbe\xef\xe6\x1e\xd6\x94\x61\xdb\x47\xae\x3b\x9f\xf9\xd8\xb1\xdb\x2a\xd0\xc4\x79\x46\x4f\xc8\x85\x91\x35\xf7\xd0\x58\xd3\xeb\xd8\x1a\xb3\x3f\x41\x8e\xfb\xa2\xe2\x2a\x3e\x34\xfb\x06\x3c\x4f\x90\x3f\x41\xae\xa2\x53\xb3\x66\x29\x2e\x3c\xdf\xc5\x23\x5f\x45\xab\xcd\x74\x5c\xf0\x1d\xd7\xaf\x81\x05\x1b\x3d\x4c\xf1\x03\xb2\x47\x48\x8d\x3a\x2a\xd0\x33\xf6\x50\x1b\x2c\x17\x7b\x6a\x02\x2e\x76\x7e\xb6\x5e\x34\xc6\xb9\x86\xef\x4f\x90\x42\x56\x7c\xd6\x14\x6b\xe8\xd3\x04\x7c\x0f\xd6\xf8\x09\xab\xe4\xcb\xc9\x33\xc7\xf3\x70\x29\x17\xe7\x5e\x45\xf2\xe6\xa3\x49\xc9\xbe\x12\xff\x45\xab\xf5\x7b\xc4\x13\xd9\x89\x48\x40\xe1\xef\x16\x40\xd9\x5a\xb3\x78\x3b\x84\x33\x27\xa5\x09\x78\x24\xc9\xce\x6e\xab\xb1\x77\xaa\xaa\x79\x08\x03\xd3\xdc\xf5\x65\x72\x1b\xd3\x21\x24\x5c\xac\x49\xac\x7a\x33\x11\x0c\x21\xe6\x01\x89\xcf\x6b\x31\xda\x06\xe4\x22\x3e\x3f\xbb\x50\x8b\xb2\x0b\x35\xd0\x51\x03\x1d\x41\x97\x79\x4c\x44\xf7\x9d\x47\xd1\x59\x5b\x3b\x0a\x91\xe7\x67\x45\xf3\xb6\xf5\xb5\xd5\x5a\xf0\x70\xab\xf3\x5b\x13\xb1\x64\xc9\x10\xf6\x9b\x57\xc9\xee\xf6\x51\x23\x01\x8f\xb9\x18\xc2\x27\x93\xf6\x6f\x06\xa6\x0a\xc1\x92\x34\x97\x46\x6b\x91\x4b\xc9\x93\x63\xa8\xb5\xd5\x5f\x5b\xad\x6e\xcc\x49\x48\x85\x9e\xf6\xce\x42\xb9\x1a\xc2\xd5\x75\xba\x51\x91\x57\x25\xfe\xaa\xdd\x79\xa7\x8b\x57\x26\x3b\x24\x61\x6b\x6d\x45\x43\xc8\x52\x96\x40\xaf\x7b\xa5\x0c\x2e\xa1\x44\xf9\x56\xc4\x12\x26\xa9\x9a\xff\xa3\xf3\x2a\xa0\x97\xfd\x74\x03\x24\x97\xbc\x80\x9c\xf2\x8c\x15\xab\x05\x8d\x89\x64\x6f\x54\x27\xfc\x29\x63\xcb\x04\xea\x69\x87\x2c\x4b\x63\xb2\x55\xa7\x92\xd0\x06\xa8\x6e\x96\x07\x01\xcd\x32\x3d\xad\x82\xd3\x37\x0b\x38\x25\xda\xfe\xa0\x68\x4a\x9e\x0e\x21\x20\x71\x70\x7e\x65\xfe\x02\x1d\xe8\x99\xe9\xa6\xad\x06\x62\x1a\xc9\xe6\x48\xbf\x1c\xd9\x67\x48\x16\x19\x8f\xf3\x02\xce\x07\xe9\x44\x84\xc5\xb9\xa0\x1f\xa6\x63\xfe\x74\x3a\xe6\x4f\xa6\xf3\x7b\x75\x90\xaf\x74\x1b\x09\xb2\xa6\x59\x71\x3e\x2a\x2b\xf3\x17\xf8\x7b\x77\xd0\x52\x90\x24\x53\x12\x1d\x82\xe0\x92\x48\x7a\x6e\x86\x74\xd9\xbe\x85\xaf\x2d\x80\x9e\xf9\x9d\xb9\x97\xd7\xbb\xd9\x6a\xd3\x6f\x6d\xf6\x23\x9b\x7c\x2f\xf8\xa7\x88\xc5\xb2\x54\xc3\x9e\x85\x88\x6d\x68\xb8\xe3\x52\x6b\x6a\xc1\xa5\xe4\xeb\xb2\x51\x30\xa9\x3f\x45\x71\x16\xe6\x69\xc2\xca\xf0\xdd\x45\x4c\x82\x57\xbd\xc9\x82\x04\xaf\x4b\xc1\xf3\x24\xec\x94\xf5\x27\x96\x0b\x72\x6e\x1a\x50\xfe\x77\xbf\xb4\x0f\x96\xe6\xf4\xa3\x95\xbd\x81\x01\xd7\x03\x03\x7a\xea\xe3\x68\x75\x59\xc6\xbb\xcc\x16\x31\x0f\x5e\x8b\x19\x31\x5f\xb2\xc4\x68\x7d\x12\x74\xc9\x32\x49\x85\x51\x16\x88\xde\x8b\x8b\x90\x8a\x8e\x20\x21\xcb\xb3\x21\x94\x65\x7c\x9c\xc1\xa7\x28\x8a\x4e\x16\xa2\x56\x15\x09\x43\x96\x2c\x87\x70\x3d\x68\x08\x75\xf0\xa5\x52\x2a\xdd\xc8\x0e\x89\xd9\x32\x19\x42\x40\x13\x49\x45\xc1\xf4\xa6\x93\xad\x48\xc8\xdf\x87\x60\x82\x0a\x38\x48\x37\x70\x99\x6e\x2a\xa6\xf4\x5f\xf7\xb2\xfd\x51\xa9\x57\xa0\xa0\x9b\xf7\xa3\x0a\x99\xfa\xae\xdb\x55\xdf\x34\x9b\x7e\x55\x64\xbe\x23\x07\xba\x92\xc9\x98\x1a\xf5\x70\x55\x4f\x11\x50\xb7\xf6\x46\x99\xb1\xbf\x68\x41\xc2\xd1\x55\xb0\xe0\x71\x78\x8a\x83\x9d\x57\x17\xfe\x55\x50\xd5\x44\x10\xd2\x2c\x10\x2c\xd5\xcf\xe6\x6a\xe3\x5a\xdf\xe1\xf6\xfd\x83\xc8\x07\xe6\xd8\x4c\xa0\xb9\x53\x10\xf3\x6c\x0f\x4e\xb7\x7e\xc4\x71\x4e\xdb\x47\x59\x19\xbd\x7e\xcd\x96\xaa\x06\x4f\x49\xc0\xe4\x76\x08\x66\xf7\x5a\x5f\x45\xb9\xc8\x94\x9e\x52\xce\x0a\x19\x9c\xc8\x6b\xb8\xe2\x6f\x7b\x95\xd6\xfb\x74\x8e\xbb\x90\xbd\x62\xf5\xee\x36\x3c\xa5\xb2\xfd\x11\xeb\x2b\xef\x3f\x72\x9b\xd2\x7f\x9d\x65\xf9\x62\xcd\xe4\xd9\x7f\x0d\x3d\xc8\x0f\xae\xc2\xa3\x1c\x8f\xca\xa4\x94\xf9\x4e\xf7\x5f\xd2\xcd\x1e\x71\x2e\xd5\x05\x56\xb9\xc9\x51\x25\x69\xa3\x4a\x89\xa0\x89\xdc\x47\xd6\x21\x21\xe3\x31\x0b\xf7\xd7\x74\xe3\xb0\x7b\x5f\x3e\xd0\xda\xe1\x05\x5f\x69\xa2\x53\x99\x59\xa1\xd4\x8f\xc9\xd8\xd1\x5e\x50\x52\x35\x0b\x62\x6a\xfc\x9f\x30\x87\xfd\xbe\x0d\xbb\xf8\x41\xf2\x6b\x4f\x99\x4e\xcd\x7d\x3f\x5e\x5d\x77\xaf\x52\xa5\x97\xa5\x79\x35\xcf\xea\xb2\xc6\x5b\x49\xe5\xa0\x5e\x37\x1d\xad\xd7\x1d\x41\x2b\xba\x7b\x34\x9c\xb2\x9c\x5a\x89\xf4\x07\x4d\x4e\xd5\x12\x75\xf2\x9d\x6a\xc6\xa0\x3c\xb2\x8b\xcf\x75\x65\xea\x6a\xb9\xfd\x7c\x71\x88\x6f\x98\x70\x79\x7e\x00\xb2\xdd\x28\xca\xca\x6e\x2a\xb8\x95\xa9\xed\x64\x68\xc2\x97\x53\x1a\x6c\xbc\x12\x2b\xbd\xf5\xeb\x7a\xbb\xbc\xb9\x36\x4f\xeb\xe8\xb4\xf0\xdf\xa8\x90\x2c\x20\x71\x85\x69\xcd\xc2\x30\x2e\x0d\x39\x15\x3c\x62\xa5\x57\x9e\xf6\x0b\x4d\xf8\x6f\xe5\x55\x73\xf4\x56\xb9\xaa\x9e\x4e\x15\xec\x6a\x66\x09\xbb\x6a\x9e\x2c\x9c\x81\x79\xd3\xff\x76\xda\x27\x95\x5b\x2c\x51\x99\x17\x47\xff\x3f\xc9\xd3\x9f\xb8\x86\x7b\x37\x57\x1f\xbc\xac\x2a\x0c\xbd\xc1\x4d\xcd\x1c\xeb\xf6\xac\x9e\x2f\xc5\x0b\x70\x75\xa8\xba\x23\xce\x76\x51\x1a\x6b\x6b\x92\xfc\x2e\xcc\x86\x21\xdf\x5c\xa9\x8e\xbf\x3a\x2c\x09\xe9\x66\x08\x9d\x5e\x95\x47\xb7\xa8\xc2\x86\xf8\x7a\x75\x73\x1f\xfc\x76\xe0\xee\xdd\xfe\xc9\x58\xab\x5e\x01\x69\x27\xd0\xe6\x45\x68\xee\x4a\xe4\x5b\xd6\x1d\xac\x48\x1c\xd3\x64\x49\x4f\xbf\xe2\xff\x1f\x00\x00\xff\xff\x67\xad\x5b\xdf\xf0\x12\x00\x00") + +func staticCssLayoutCssBytes() ([]byte, error) { + return bindataRead( + _staticCssLayoutCss, + "static/css/layout.css", + ) +} + +func staticCssLayoutCss() (*asset, error) { + bytes, err := staticCssLayoutCssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/css/layout.css", size: 4848, mode: os.FileMode(420), modTime: time.Unix(1494909913, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticFontsOpenSansRegularWoff = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\xba\x65\x50\x5d\xcb\xda\x35\x3a\x71\x77\xf7\xe0\xee\xee\x0e\x49\xb0\x00\xc1\x25\x38\x04\x77\x77\x0f\x1a\xdc\xdd\x82\xbb\xb3\x70\x77\x77\x77\x77\xd7\x5b\x7b\x9f\x73\xee\xfd\xf6\xf7\xbe\x75\x7e\xdd\xd5\x63\x8c\x67\xac\xee\x9e\x3d\x9f\xee\x7a\xfe\xcc\xaa\x76\x51\x90\x92\x02\xc0\x00\x00\x00\xb8\xeb\x00\x94\xbf\xa2\xae\x2c\x00\xf6\xaf\x9e\xff\xfb\x27\x2d\x21\x29\x05\x00\x60\xea\x00\x00\x60\xff\x4d\x54\x60\x4d\xfa\x9b\x82\x32\x00\x80\xd9\x02\x00\x80\xf8\x37\xb1\x00\x78\x69\x65\x15\x31\x00\x00\xf3\x04\x00\x40\x03\x00\x00\xc7\xb5\xf1\xf5\x34\x05\x65\x66\x36\x00\x00\x5b\x04\x00\xe0\x07\x00\x00\x7a\x39\x42\x99\x43\x86\x56\xfa\xb6\x00\x00\xce\x03\x00\x40\x32\x00\x00\xa3\x95\x48\xb5\x19\xa6\xfa\x0e\x7f\xf5\x4d\x02\x00\x80\xfa\x37\xb1\x00\x72\x53\x4b\x37\x13\x00\x00\xdf\x04\x00\x0a\x0d\x00\x60\x3f\x45\xf5\xbe\xce\x34\x33\xd6\x37\x02\x00\x6a\x01\x00\x00\xb8\xfe\xe2\xc7\x26\xaa\xa0\x99\x99\xb1\x3e\x00\x50\x3b\x02\x00\x40\x0c\x00\x00\x05\x72\x23\xe4\x9b\x99\x95\xa3\x2b\x00\x50\xc7\x03\x00\x38\x2c\x00\x40\x58\xd6\x8d\x68\x84\x5a\x18\xdb\x5b\x03\x00\x6d\x3a\x00\xc0\xe3\x00\x00\xf1\xef\xbc\x93\xfc\x1d\x4b\x1b\x43\x7d\x00\x60\xaf\x03\x00\xb0\x62\x00\x00\x6b\x13\x3f\x57\x58\xb2\xd2\x77\xb5\x05\x00\x4e\x3d\x00\x00\x3e\xfd\x45\x70\x23\xb0\x62\x6b\x7d\x2b\x63\x00\xe0\xf4\x05\x00\xa0\x0c\x00\xc0\xd8\x30\x57\x99\xbf\xda\xda\x38\x38\x02\x00\x17\x03\x00\x80\x05\x03\x00\x38\x4d\x32\xb2\x39\xda\xdf\x27\x88\xf8\xef\x83\x03\xff\xfb\xdf\xea\xdf\xfa\x17\xe1\xff\x6e\x80\x2b\x18\xd1\x00\x67\xb7\x28\x18\xd0\x79\xb5\x51\xca\xcc\xb2\x5c\x27\x39\x5e\x91\xbd\xb6\xc5\x98\x3a\x24\x79\x67\xb5\x7b\x8d\x02\xc6\x36\xdc\xe2\x6f\xe5\xbe\xf8\x82\xd1\x73\x43\x2b\x52\xa5\xc3\xa8\xe4\xf3\x98\xa9\xfe\x7a\x97\x25\x72\x71\x22\x21\xaf\xab\xa8\x33\x23\x67\xa4\xb7\xff\x7c\xb7\xa8\x63\xb6\xc9\xc0\xe1\x80\x8e\x8f\x00\x09\xcd\x3c\xf3\x86\x44\x08\xfc\xb5\xb6\xa1\x9e\xc9\x52\x3f\x8f\x9f\x5f\x82\x5f\x80\x13\x76\x29\x2b\x04\x44\x9e\x40\xa0\x49\xfb\xe0\xef\xfe\xc7\x98\x80\x5f\xbf\xd2\x22\x23\x53\x12\x82\x7e\xfd\xda\x03\x83\x98\xf1\x80\x81\x0e\x32\x83\x86\x86\x46\x82\xfe\xc4\xe2\x88\xe8\x6c\x02\xc0\xbf\x7e\x8c\x50\x7d\x28\x04\xe6\x04\xe5\x25\xd1\x8a\xf9\xf9\xd9\x09\x7d\x8e\xea\x0b\x70\x22\xf8\xad\xa4\xa7\x07\x0d\x3c\x4e\xa2\xf2\xfe\xbd\xbe\x9e\x9e\x91\x1e\xb4\x01\x34\x34\x31\x34\x76\x30\x84\x88\x66\x88\xa8\x9f\x1f\xd4\xe0\x8d\xde\xa5\xd1\x1f\x43\x9e\x31\xdb\xcc\x2d\xe1\x3c\x52\x43\x96\x19\xd6\x42\x2d\x59\x17\x4c\x09\xcc\x7c\xcc\x5d\xcc\x78\xcc\x59\xcc\x32\x4c\x6d\xcc\xaf\x98\xf3\x34\x70\x6f\x1f\x28\xb3\x05\xc0\xf7\xb3\xbe\x2a\xdf\x2d\xc4\x1e\xa8\xec\xe3\x4f\x7f\xcc\xf5\xa1\xe0\xa0\xf0\xaa\xcc\x65\x02\x8f\x3f\xa2\xf1\x9e\x3f\x84\x9f\x7d\x7e\xfb\x3d\x7c\xac\x7f\x08\x7e\x38\xbc\xbf\x3f\xbf\xbc\x5e\xd4\xc2\x10\x10\x97\x79\x55\xed\x77\x0d\xc3\x8c\x10\xcb\xba\x4d\xbe\x7d\xda\xf2\x1b\x06\xbd\x89\xb8\xc4\x00\x80\x88\x34\xf7\x36\x00\x06\x40\x00\xb0\x00\x3c\x80\x04\xc0\x7c\x7c\x00\x28\xae\x60\x41\xee\x70\xda\xca\x03\xf7\x97\x82\x0e\x36\xe8\xe6\x53\x35\x90\xb9\x77\xc5\xbd\xb8\x4a\xab\xa4\x81\xbe\x04\x61\xbe\xa1\xaa\x68\x31\x74\x4a\x12\x12\x74\x9a\x38\x90\xf9\x5f\x63\xe8\x24\x7b\x23\xe9\xc2\x7c\xb7\xc3\x42\x3f\xcf\x29\xf5\x16\x98\x77\x11\x95\x2b\x9d\xe8\x5a\x3c\x35\x36\x68\x6a\x91\x30\x4d\xa8\x95\x53\xf4\xb8\xec\xaf\x43\x5e\x3f\xbf\x7a\xa3\x78\x2f\x8d\x8f\xa6\xf3\xbe\xa4\xf3\x1e\xd8\x07\x96\xee\xf0\xe4\x64\x94\x05\xef\xf0\x42\x0d\xf0\x96\x12\xcd\x49\x79\xce\x5d\x91\xcb\x85\x98\xfc\x0e\xda\x27\xd4\x18\x2b\x9d\xc4\xeb\xf6\x42\x36\xc5\x6e\x58\x0d\xd0\xb6\x33\x81\x89\x82\x40\xaa\x3c\x00\xdd\xe9\x56\x30\x7d\x6d\x2e\x6c\xe5\x87\xa4\x3e\x26\xf0\x7e\x36\xf3\xfd\xf8\x26\x7c\x21\x32\x88\xc3\x51\x59\x92\x04\x03\x83\x48\xb4\x15\x7d\x52\xf3\xc4\x66\xdf\xd9\x02\x71\x89\xaf\x1b\xc9\x7c\xe9\x43\x3d\x15\x70\x7b\x9d\xbc\x45\x5a\xca\x2a\x4c\x8a\x7c\x1a\xe4\x70\xf7\x79\x2c\x8b\xa7\x91\x7d\x21\x72\x4c\xa5\x75\x53\xdb\xf4\xca\xf8\x5b\x38\xb3\x20\x73\xbb\xb6\x48\xe4\xe6\x09\xd8\x64\x8a\x6e\xd8\x60\x64\xb6\x5a\x77\x52\xc8\x94\xda\x24\xe3\xef\x77\x30\x50\xb7\x5a\x70\x80\x69\x6f\x0d\x6c\x15\xfb\x1b\xfc\x1b\xf8\x21\x96\x50\xb8\x2a\x53\xce\x56\x55\x34\x28\x51\x44\x82\xea\xfb\xcc\xd4\x69\xc2\x17\x7a\x52\x7f\xf1\xe1\x1a\x4d\x7b\x28\x8f\x66\x8c\x83\xfe\x66\x07\x2f\x5b\xd3\x02\xed\xad\x5c\x56\x47\x97\x05\x3c\x6d\x9d\xbb\xa8\xf3\x73\x68\x1b\x92\x3c\xd1\x8b\xed\x12\xa5\xa6\x13\xc2\x56\xf4\x20\x6e\xef\x47\xdf\x69\x95\x3d\x9a\x24\x84\xfb\x0d\x42\x4d\xb6\x8b\xd6\xad\x1d\x1b\x85\x96\xba\x93\xed\x73\xca\x90\x07\x77\x1b\x1a\xa6\x25\x42\x4d\xd6\xa3\xb8\x95\xfd\x56\x45\x87\x22\x4a\x91\xb5\x6b\xe6\xef\x1d\x9c\xe6\x2d\x56\xf3\xf7\x01\x3d\x3d\x74\x49\xa6\x09\xfc\x73\xdf\x47\xfc\x6b\xa0\xdb\xbf\x0c\xb8\xca\x7d\xc9\x22\x66\x2b\xe6\x96\xbb\x18\xa6\x97\x92\xf6\x10\x49\xec\x79\x21\xa4\xde\x31\xa9\x13\x88\x7d\x88\xd1\xd9\x5d\xdf\xd4\xe6\xe1\x9c\xde\xfd\xb5\xac\xd8\x72\x0c\x22\x24\xe2\x58\xdb\x63\xa3\x72\x94\xc2\xa4\x03\x70\x67\x07\x36\xcf\xde\x5d\x78\xcc\x36\x35\x0e\x1f\xa7\xa7\xaf\x72\x6c\x73\xcc\xde\x4a\xe4\x08\xe6\xcb\xd7\x10\x8d\x73\xd0\xd0\xf4\xf5\xd1\xd0\x72\x6c\xab\xcd\xde\x52\x73\x91\x4e\xe6\x2d\x0b\x66\x1d\x05\xb3\x2e\x28\x7f\x87\xc1\x87\xfa\x5e\x5e\x87\xfd\x20\xe6\xe2\x5c\x6f\xdd\x30\x6a\xa9\x75\x99\x38\x9f\x78\x38\x5f\xae\x7f\x58\xef\x29\x24\xb9\x58\xfb\x08\x70\xf1\xc0\xa2\x3b\x66\x2d\xde\x8b\x39\x2d\x39\x45\x7f\xa0\x9a\x36\xd9\xe4\xa1\x82\x21\x41\x80\x1a\xd7\x95\x3a\x14\xd1\x8e\xaf\xd0\x8c\x57\xff\x41\x16\xb3\xed\xbf\x0d\x49\x42\x92\x97\x49\x23\x92\x17\x17\x0e\x5d\x4b\xb9\x0b\xa2\x9c\x11\x0e\x4d\xe7\x70\x99\x99\x29\x77\x9c\x5d\x3d\x5c\x4f\x3b\x8c\x49\x98\xc3\x80\x7e\xe0\x01\xf9\x0c\x4c\xed\x51\x56\x4d\xb9\x34\x95\x08\xb0\xe0\xb8\xbf\xb9\x1b\x75\xdd\xf8\xa7\x7d\x60\x5e\x07\xb0\x51\x45\x0d\x13\x7e\x9c\xcf\x2e\xee\xc7\x1a\xd0\xa0\xa4\xc7\xb3\x30\x70\x3e\xcc\x4d\xdf\xc0\x29\x6f\x9b\x3c\x63\xc5\x5f\xac\xb3\x9c\x6c\xbe\x38\x6e\xfd\x5e\x9b\x39\x9c\x38\x39\x5a\x2b\x49\x99\x5a\xe0\xd1\x6b\x80\x79\x27\x1b\x23\x54\x2f\x97\x67\xe3\x81\xb4\xdd\xba\xc5\x55\xdc\x31\xf3\x88\x2f\x0f\x88\x53\x64\x96\xee\xce\xf8\x8e\xef\x82\xde\xfe\x73\x2d\x6a\x62\xbe\xe2\x47\x33\x63\x47\xb2\x6b\x37\x81\xad\xdb\x0f\xa2\x3b\xf7\xf7\xc0\x67\xc2\x4a\xdf\x5a\xcb\x3d\x3d\xed\x9f\xcc\xe5\x90\x30\xb9\x93\x8f\x3c\x78\x6d\xbf\xe4\x2f\x8e\x25\x4e\xb9\xcb\x57\x1a\xec\xdf\x96\x27\x9c\xab\x0a\x6e\x99\xf9\xb2\x5f\x71\xb5\x3d\xaf\x09\x99\x16\xce\x8a\x32\x9b\xd8\x62\x8d\xe0\x89\x76\xbf\x4e\x85\xb8\x96\x7f\xdd\x2f\xdb\x74\xcb\xa8\x9d\xa7\xd9\x19\x5a\xd6\xad\xda\xb7\x4a\xbd\xab\xb9\xee\x6c\x80\x98\x30\x93\xc7\x19\x3c\xa2\x54\x9b\x9e\x6d\xe6\x5c\x3b\x9c\xc2\x4d\xfe\x82\x60\xf0\xa9\x49\x6b\x4c\x5b\x7d\x88\x26\xb9\x6b\x0d\x43\x20\x50\xf9\x0f\x04\xf2\xa4\x1c\x21\x67\xd4\x21\x71\x94\x7b\x0d\x3e\xd7\xcc\x63\x02\x07\x58\x98\xda\x75\x09\x16\x07\x3a\x9d\xaa\x08\xe5\xf8\x43\x11\xb3\x3e\xd7\x42\xef\x92\x5d\xba\x2a\x25\xce\x17\x2e\xb1\x51\x2d\x9b\x01\x3c\x36\x3e\x14\x8b\x8d\xfc\xb0\x22\xe6\xfd\x09\xa0\xd2\x2c\x98\x1f\xdc\x1a\xc3\x27\xb6\x37\x7f\xdf\xf2\x5b\xab\x44\x27\x89\x6d\x6b\x15\xaa\x74\x3e\x6e\xa7\xa0\x61\x2b\x7e\x79\x89\xa4\x15\x36\xf2\x3d\x01\x0b\x43\xa7\x82\xb0\xe7\xfe\x65\x76\xf6\x56\x8f\xff\xdb\x92\x36\xe5\x40\x0c\x3f\xf6\x52\x00\xf4\x20\x91\x83\x21\x1e\x06\x37\x3b\x19\xb6\x02\xba\x26\x31\x9c\x97\x04\xbd\xd2\x2f\xa5\x59\x47\xea\x28\x64\x79\x77\x66\x6a\xd4\x0d\x22\xc9\xd0\xc9\x83\xab\xac\xe8\x77\x4b\xf7\xf5\xdb\xee\x5b\x65\xd1\x9f\x4b\xc1\x48\xc6\x05\x50\xbb\x4c\x63\x85\xf4\x9f\x30\xf6\x7b\x0c\x92\x15\x70\x66\x9c\xea\xa2\xd6\xa1\x88\x10\x7b\x7d\x18\xad\x7a\x41\xd1\x5b\xd0\x38\x76\x69\xce\x84\x45\xf3\x3c\xee\x04\x7b\xf6\x41\xc8\xb7\xbb\xdb\xc8\xfc\x38\x17\x16\x18\xa4\x16\x09\x9b\x75\x1c\x7d\x05\x36\x7b\x9e\x87\x41\xb5\x3b\xac\xc7\x66\x53\x0b\x7c\x5b\x96\xf5\x60\xc1\xa8\x53\x89\x76\xbf\x7a\x49\x35\xcb\xc3\x35\x27\x53\x5f\xf5\x87\xfc\xdc\xda\x2d\xb0\x15\xd6\xf1\x84\xaf\xc4\x66\xf6\x36\xb8\x37\xb2\xeb\x77\xbf\x10\x1b\xa9\x60\x79\x73\x09\x71\xba\x4c\x2e\xe6\x5f\x97\xaa\xd0\x1f\xc5\xd9\x1c\xf1\xf2\xf7\xe2\x07\xbc\x3a\x49\x95\xf1\xc9\x08\xd8\x49\x7e\xf7\x5f\x46\x57\x5e\x25\x24\x9a\xc5\x0f\x98\xb3\x5b\x52\xb5\x64\x6e\x2f\xde\xad\x85\xc0\xba\x95\x7e\xbe\x88\x6f\x19\x52\xb6\xee\x17\xe3\x8b\x7c\xb2\x5c\x5b\xbf\x79\x0a\x37\xa4\x37\x91\x96\x78\xab\xbe\x7d\x26\x27\x35\x51\x51\x51\xe3\x5f\x38\x76\x52\xf3\x9e\xbe\x5d\x9f\x9e\xc0\x10\xc8\xd6\x59\xef\x37\xae\xc5\x76\x83\x99\x20\x60\x3d\xc7\x1c\xae\xc7\xb1\x67\x57\x76\x06\x77\x73\x31\xb0\xd3\xac\x43\x9c\xe4\x3f\x9e\xa3\x81\x41\xe2\xcb\x65\xb9\xb9\x57\xad\x25\x29\xe6\xb5\x4d\x63\xb2\x31\x5d\xe8\xa0\xe6\x14\xc3\x15\x04\xf4\x2d\x9e\x5a\xa9\x50\x9a\xb2\xd4\x88\x4e\x6c\x74\x3b\x3d\x61\x8e\x2e\xfc\xd9\x3c\x09\xaa\x5d\xe1\x98\xbe\xca\xcf\x64\xc4\x8c\x9b\x39\x7f\x73\x51\x3b\x4c\xd7\x70\xbc\x27\xf5\x22\xee\x24\xa8\x8b\x69\x57\xc7\x7f\x3d\xbb\x85\x28\x32\x3b\x8f\x2f\x8f\x91\xb2\x9f\xf1\xfc\x9c\x36\x6a\xfa\xea\x7e\x4e\x5c\x60\xd8\x78\x37\x95\x94\xe0\xab\x86\x43\x5e\xcc\x90\x4b\xae\x22\xfb\x50\x1c\xda\x4a\x32\xdc\x9f\x70\xd2\xe5\x19\xad\xec\x51\xac\xfd\x0d\x39\x70\x41\x86\x4c\x7a\xce\x81\xad\xd4\x76\x17\x57\x5e\x5b\x59\x9f\x21\x90\x02\xc9\xc3\x65\x99\x84\xf9\xec\xec\x80\x23\xa3\xf9\x61\xa1\xde\xe3\x56\xe1\xd1\x50\x6e\xa8\xa5\x5e\x11\x2a\xae\xfb\xfa\x0b\xfa\x69\x08\x68\xdc\x2d\xe3\x90\xc8\xbd\xa1\xe6\x28\xed\x87\x19\xbb\x2c\xcf\xc7\x5e\x66\xbd\x71\x8e\x4c\x80\xf0\x9f\xd4\x2e\x0e\xff\xd8\xa3\x20\xc2\x21\xc5\x89\x6c\xa9\x11\xe8\x43\x31\x03\xd9\x87\x47\x99\x7d\x78\x8d\xa4\xdc\x53\x35\x24\xc2\x81\xda\x41\x7a\xd7\xd0\x3a\xa7\x83\x67\xb2\x0b\xa5\x57\x83\xe5\x38\xff\x52\x55\x01\x64\x57\x8b\xc5\x3e\x57\xe8\xb5\x3d\xa6\x79\xdc\xcf\x62\xe3\x1f\xed\x0c\x1d\x25\xbe\xeb\x6f\x6b\x90\xba\xf4\x42\xcf\xe4\x56\x0f\xfd\x48\xc6\x69\x0a\xd6\xea\xd0\x10\x6c\xf3\x0c\x8b\xa9\x49\x0d\xaa\xce\x57\x66\x47\x21\x2a\xe4\xd4\x9e\x09\xba\x0e\x2f\xd3\xd5\xfb\x2a\x86\xc8\xe3\x2b\xee\x6d\xcd\xa7\x79\xc6\xa5\xd8\x72\x6b\x3c\x06\x87\x54\xef\x01\xd1\xdb\x79\xc2\x48\xb8\x75\x64\xee\xee\xf8\xc3\xe6\x54\xd3\x3d\x65\xca\x7d\x3f\x53\xb2\xfe\xa4\x60\x4f\x0a\xa7\x73\xda\xff\x22\xa6\x8e\x4f\x8e\xfb\x0c\xee\x2f\x89\xbf\x0a\x55\xee\x26\xf5\x55\x4f\xbd\x3b\xce\xa7\xe3\xa7\x4d\x59\x8a\xcf\x75\x52\xa2\x0d\x37\x87\xb7\x44\x82\x5b\x9a\xf0\x48\x96\x36\x07\xab\x40\x16\x0a\x57\x02\xed\xcd\xba\xd4\xce\x54\xb4\xcf\x45\xa3\x8d\x0f\x58\x2b\x99\x3b\xcc\x33\x09\xd3\x9b\xa5\xda\x21\x75\xd7\x2f\x15\xb8\xf9\x1b\xdd\x50\x53\xc5\x77\x61\xd0\x1a\xda\xc4\x5b\xc7\xd3\x9b\xbf\xa3\xd6\xc5\x41\xc7\xf0\x90\xbe\xa8\x6f\xa8\x22\x35\x81\xdd\xa2\x9d\x3c\x97\x5d\x88\x8d\xe4\x24\xb6\x9f\xf6\x34\x6a\x9f\x6f\x97\x95\x5f\xa8\x80\xc9\x67\xff\x02\xf5\x07\x44\xc3\x35\xab\x42\x6e\x46\x5c\x60\x8e\xca\x35\xf9\xf5\x89\x6f\x86\xbd\xbd\x87\x9d\x26\x3c\xa0\x1f\xc9\x91\x53\x30\xe2\xa5\x40\x34\x63\xf2\x57\x87\xe9\x90\x49\x72\xf0\x55\x42\xff\x05\x4b\xdf\x25\xff\xe3\x9f\x55\xed\x67\x51\xeb\xf3\x0d\x16\xbe\x80\x50\x7b\xe8\x8f\xc4\x23\xda\xdc\xdb\x10\x6d\xd8\xe0\x59\xa4\xef\x44\xd2\x79\xa8\x86\x07\x89\x1e\x6d\x24\x5f\x3b\xd8\x0f\xa2\x10\x34\x88\x3b\x25\x2c\x09\x88\x59\x1a\xb2\x7f\xb5\x2c\x9a\x88\x1f\xff\x6e\xda\x23\xaf\x99\x1e\xc0\x96\x25\x72\x7d\xbd\x5e\x58\x70\xcc\xc3\x51\x20\x51\x9d\x4b\x25\x7a\xca\xb7\x8e\xf8\x2c\x0f\xa7\x90\x5c\x7a\x37\x9a\xe2\x6c\x79\x31\xd8\x3c\xb3\x2f\x31\x9e\x95\x5b\xc8\xcd\x48\x8b\x71\xde\x52\x45\xa9\xee\xad\xae\x1a\x59\x54\xda\x81\x2b\x88\xab\x9a\xa1\xb2\x65\xa9\x85\x75\x91\x8b\x79\x16\x7d\x3b\xe9\x88\x13\x8a\xe0\x40\x9a\x17\xae\xbd\xd3\xaf\x8f\x78\x96\x73\x8f\x9e\x0e\x0c\x64\x64\x48\x7e\xf0\x0a\xd8\xad\x44\x0c\x42\xd9\x2c\x83\x6a\x49\x73\xf4\x26\xf2\x96\x3b\x87\xb3\xe5\x97\xe2\x0e\x2a\x8b\xa2\x3b\xcc\xf2\x39\x5f\x3e\x01\xcf\x5e\x0f\x0e\x67\x0e\x2d\x7e\xe3\x20\xb0\x52\xdf\x56\x38\x43\x14\xce\x0f\xb7\x92\xae\x62\xf1\xc1\xc0\x82\xa7\xdd\xfb\x54\x69\x19\xd3\x08\x0f\xe6\xf3\x69\x3f\x1b\x4d\xbe\xe6\xe9\xcc\x0a\x15\x6e\x7a\x14\x7f\xf1\x77\xb4\x96\x03\xea\x65\x11\x14\x69\x13\x69\x11\x62\x0a\x5f\x00\x2a\x12\xe6\x28\xa9\x2e\xde\x9f\x64\x30\x7e\x2e\x02\xe5\x35\x8e\x77\x30\xca\x0e\xde\x79\xbd\x58\x63\x1f\xc6\x1d\x20\xce\x90\xea\x42\xa8\xe6\xdc\x4f\x3d\xfe\x8a\xfe\x5b\xfa\xf5\xe8\x16\xbe\xbe\x7f\x2e\x0f\xbd\x62\xd2\xbb\xc6\xb0\x12\x7c\x48\x96\x07\x23\x05\x2d\x4d\x16\x86\x2d\xba\x4c\xba\x43\x90\xb4\x54\x94\x90\x6e\x3c\xd2\xb8\xd8\x1a\xdc\xe1\x0b\x4e\x97\x22\xad\x19\x0b\x5a\x3c\x78\x50\xff\xd4\xd4\x75\x39\xf1\x57\x11\x88\xee\xe5\x84\x4b\x26\xaf\x29\x89\x2f\x50\x8e\x65\xeb\xf6\xd9\xf7\x58\xae\xde\x57\x7b\x39\x95\x46\x9c\x2f\x51\x8c\x6b\x33\xc5\x19\x24\x20\x87\x67\x18\x21\x96\x9f\x1a\xcf\x96\x37\x9a\x37\x6b\xab\x4e\x23\xc2\x5b\xbe\x23\x22\x36\x16\xa8\xa0\xac\x80\x73\x1a\x59\x79\x9b\x84\xd2\x46\x65\x14\x10\x0e\x95\xef\x6b\x67\xd1\x2d\x69\xdd\x47\xe9\xa1\xa3\x3e\xb9\xa0\x7c\xe3\x05\xd8\x87\xd6\x03\xbd\xf8\xb0\x91\xfb\x33\xa7\xd7\x67\x9f\xdc\x83\x08\x82\x57\x3d\x5e\x8a\x77\x44\xb4\x10\xf2\xf9\x48\x51\x5e\x16\x64\x23\x8c\x18\x08\xfe\x71\xb4\xab\xdc\x1a\x96\x21\xe7\x1d\x57\x18\x67\xbe\xa3\x35\xdb\x88\xc2\x29\x01\x3e\x04\x73\x7d\x70\x86\x12\x29\xc2\x8e\x76\x33\xdf\xf7\x4d\x49\xe2\x69\xf0\x16\x09\x55\xf1\xa4\xa9\xb5\x49\xac\x16\xee\x09\x08\xc4\x8b\xce\xcb\x2b\x66\xb4\x8d\xb4\xf4\xd0\xe1\xbe\xeb\xed\x1f\xa9\x15\x97\x6f\xa3\x47\x14\xfd\x6d\x01\x46\x23\xe6\x5c\x4a\xd1\xe0\x37\x5e\x69\x4f\x36\x55\x37\x93\x7c\x24\xb1\xf4\x65\x71\x76\x25\x4f\x5b\x52\xf2\xdb\x3f\xb8\xd4\xeb\x5c\x90\x67\x93\xd7\x96\xed\xc7\xdb\xc3\x83\x83\xf9\x23\x83\x8b\x68\x15\x1a\x26\xcd\x5b\xf6\x51\x65\x3d\x2f\x5f\x82\x7c\x6b\x43\x0e\x3b\x8e\x38\xbf\x89\x0f\x74\xd7\xdf\xc2\xe6\x98\x08\x97\xf3\x97\x05\x3e\xfe\xd8\x04\x05\xc4\x40\xa1\xdd\x52\x80\x14\x6c\xa6\x46\xf0\x79\x68\xa7\xc8\x4f\xfa\x0f\x93\x0e\xed\x24\x68\x37\x5b\x75\xe7\xcb\xbb\x25\xe8\xe9\x5c\x95\x44\x91\x93\x7b\x58\x14\xb5\xa4\xf7\x6d\x27\xd1\x65\xd8\xf5\x83\xe3\xad\xae\x94\x6e\x6f\x58\x37\xc1\x0b\x56\x85\xfa\x4d\x7b\x5b\x67\x84\xfe\xfc\x29\x48\xc9\x58\xa0\x13\xfe\xda\xbd\x6b\xb0\xfd\x8b\x1e\xdd\x7b\x2b\x07\x4b\x98\x46\xe2\x35\x1b\x66\x6b\xcb\xed\x86\x44\x12\x0b\xcb\xc8\x10\xd4\x9c\x9a\xae\x61\x2d\x14\xe4\x71\x4b\xb6\x30\xb6\xc4\xc5\x16\x6b\x97\x9e\x19\xb3\xa3\xf4\xa3\xcb\xe8\xf1\x38\xc9\x20\xbc\x77\x2f\x34\xcb\x41\x2a\x22\xdb\xce\x49\x7f\x80\xce\x60\x76\x87\x9a\xb8\xb4\x33\x44\x11\xa6\x15\x99\xb2\x53\x34\x80\x48\xbb\x00\x8b\xe8\xf4\x0f\x68\x34\xe7\x31\x95\x56\x4a\x75\x86\x90\x4e\x6f\xba\xe7\x62\xc5\x6e\x7b\x8e\x1d\xe1\x82\x81\xda\x49\xaf\x4e\xe3\x1b\x29\x99\x8b\x81\x04\xd8\x63\x16\xc7\x9b\xd1\xc1\x37\xa5\x11\x97\x6a\x72\xa2\x41\xd5\xad\xed\x72\x73\x65\xa2\x5c\xdc\x49\xbc\xba\xf7\x57\x58\x13\x19\x59\x71\xea\xe5\x6b\x2a\xf9\xb1\xba\xee\x75\xab\x1b\xaa\x25\x38\x4d\x31\x05\xf6\x9b\x40\x75\xd8\x40\x3f\xd4\x85\x74\x4b\xef\xe7\xca\x24\xe6\xcc\xb7\x91\x88\xa7\x19\x67\x3e\x18\x27\x76\x88\x42\x71\xa6\x0c\xe9\xc6\xa9\xb4\x5b\x74\x57\x51\x85\x49\x3f\x6a\x10\xc5\x52\x69\x27\xc5\x7b\x70\xb2\xb8\xde\x32\x59\x21\x9a\x75\x76\x63\x53\x2a\x4b\x80\x6e\xce\x03\x3d\xfd\xa7\x8c\x5b\x96\x0e\x8d\xdb\x9b\x20\x8c\x3b\x6a\xc8\x17\x12\x92\xb4\x18\x55\x87\x03\xa7\x95\x85\x0a\x34\xda\x82\x02\xb2\x02\x1b\xbb\x8c\x02\x01\xbc\x6f\x38\x95\x45\xf7\x07\x23\xa8\x6f\xfe\xeb\xec\xef\x3e\xb4\xde\x22\x6a\x50\x93\xe0\xb0\x94\x1f\x71\xe7\xd0\xf9\x2b\x99\x19\x1a\x9f\xa6\x19\x9a\x78\x06\x6d\x7f\x94\x27\x38\xd6\xb9\xab\x23\x9c\x81\x1d\x3e\x54\xb5\x64\x5a\xe7\x20\xa1\x94\x8e\x3c\x10\x77\xc8\x18\x8c\xad\x18\x71\x26\x11\x1c\x46\xc3\xed\x37\x53\x38\xeb\xe8\xae\x6b\x62\xa3\x2c\x1e\xc9\x4c\x92\xb8\x87\xda\x4f\x36\x69\x28\x7f\x12\x30\x76\x32\x20\xfb\xe4\x16\xec\xfa\xda\x52\xa2\xad\x03\x25\xe6\xe3\x21\x26\x57\x9a\x5b\x31\xf6\xe7\x0f\x61\x7a\xe3\x79\xda\xdb\xed\xf0\x43\x08\x22\xcc\xc3\x3e\xe6\xb3\xc9\xc1\xfa\x07\x61\xcd\x89\x35\x12\xb3\xd3\x05\x88\xc2\xed\x76\xd6\xf6\x22\xe6\xa0\xf1\x82\x97\xa4\xc1\xdb\x71\x18\x26\xaf\x28\xea\x06\x71\xa0\x0e\x2b\xb9\x37\x88\x66\x57\x94\xf4\x29\x18\x4c\x30\xa1\xac\x2c\x3b\x53\x0c\xf6\x2e\xde\x69\x85\xc6\xfd\x48\xb1\xce\x4f\x9e\x67\x20\xc6\xae\xd8\x68\x1b\x93\x48\xec\x1a\x51\x83\xfa\x99\xc8\xeb\xd7\x47\x24\xd6\x81\x02\x31\x2f\x73\x29\x6b\xa4\x9b\xa4\x0f\x34\x37\x46\xc7\x04\xa6\xe7\xe1\x6d\x4a\xcf\xab\x7e\x30\xc4\x47\xa0\xb2\x52\x14\xa2\xbb\x9e\x1f\x9e\x32\x6e\x9e\x9e\xcf\xe0\x6b\xdd\xea\x6b\x1b\x7e\x37\xb4\xe3\x05\xab\x6f\xc1\x09\x62\xd7\xf8\x36\xd1\x0a\xaf\x9e\xfb\xf7\x88\x7e\xce\x0c\x89\x15\x27\x53\xbb\xf4\x72\x47\x13\x7a\x46\xd8\xf4\xbb\x1a\xf6\xbd\xdb\x86\x70\xee\xa6\xfb\x22\xe1\xa4\x99\xdb\x63\x98\x37\x1d\x7e\x02\x11\x5d\xa4\xf1\xb7\xb9\xf1\xe0\x97\xb9\xd7\x39\x7d\xd3\x84\xac\xc4\xe4\xdb\x50\xd7\xad\x5f\xdb\xe2\x2f\x4f\x41\x85\xa3\x72\x45\xf3\x9e\x3d\xa6\xec\x2d\xa7\xbf\x2b\xfc\x55\x37\x24\x6f\x43\x93\x9f\xac\x45\x89\xa0\x87\xdc\xe6\x6c\xb3\x90\x05\xa0\x6b\xf5\xc6\x45\xf9\x7e\x1b\xa5\xb0\x87\xfe\x22\xe4\x24\xa1\xee\x19\xcb\x63\x14\x28\x08\xb7\x4b\xec\xe1\x1c\x05\x44\x14\xa0\x7b\x6a\x7a\xea\x0c\x29\xcf\x1c\xe3\x57\x49\x5d\x64\x65\x46\xef\xf2\x49\xb2\x7a\xce\x7d\x78\x56\x36\xd0\xb1\xe6\xa0\x69\xc9\xbf\x23\xbc\x53\x99\xae\x8f\x9f\x76\xfa\x58\xb9\x0f\xb9\x8c\x61\xc3\x87\xd7\xa4\x61\xe0\xe9\x18\xdf\xe2\xa6\xd0\x1f\x41\x31\x5c\x25\x8e\x16\x48\xfd\x29\x8a\xcc\x2e\x1c\xd8\xad\x54\xed\x50\xaa\x75\x63\xe8\x02\xd1\xaf\x79\xa4\xc7\x3c\xe7\x49\x28\x9b\xbc\x0b\x7f\x89\xe2\x29\x29\x1a\xe8\xa4\xd0\x57\x24\x85\x86\x68\xbf\x6d\x6a\x43\x9b\xc2\xb5\x30\x8a\x2c\xfd\x88\x65\x27\xcc\x94\xa0\x36\x33\x72\x52\xf2\xee\x8e\x87\xc8\xfc\xc6\x89\x74\x8e\x3d\xad\x52\x17\x76\xf8\x68\xa0\x0c\xee\x66\xa6\xaa\x6f\xc9\x31\xc5\xee\x69\x27\x03\xbb\x12\xc9\xea\x4b\x6e\xf7\x8a\xed\x4e\x15\x0e\xf7\x49\xad\x69\x8c\x7f\x68\x2e\x42\x78\x32\xbb\x06\xd1\x9d\x43\x71\xfd\xe7\x78\x55\x89\x0b\x53\xcb\xd8\x05\xe3\xea\x7d\xc5\x9d\x0b\x1c\x9f\x99\x88\xff\x92\x55\x50\x07\x85\x84\x5d\x46\x72\x41\x69\x79\x73\x70\xc0\x3c\x0d\x15\x7f\xe2\xcb\xaf\xf0\x3c\x6c\xa4\xd1\x6c\x54\x65\x7b\x21\x6d\x2b\x9c\x76\x87\xa9\x71\xf2\xde\xa7\xc3\x55\xc9\xe6\xac\x93\x81\x39\x39\x41\xaf\x74\xe7\xc5\x5b\xc9\xa5\xa5\xb7\x5a\x6e\x1f\x96\x1a\x4f\x8c\x08\xe7\xdf\x30\x4c\x5f\xa2\x07\x4f\xcf\xea\x2b\xe7\xcb\x64\xcb\x69\x52\x0b\xbf\x8d\xca\x47\x85\xe9\xf3\x13\x8b\x4c\x7c\xed\x4b\xab\xaa\x55\x3f\x89\x11\x03\x1b\xb1\xc7\xc4\x37\x19\x86\x07\x45\x0f\xa7\xce\xd4\xd4\xb9\x6f\x94\x0f\x28\xd8\x8c\x3e\x1b\xfc\x06\x51\x95\x8f\x8e\x33\xed\xa5\x85\xf9\x6f\x87\xe5\xfa\x83\x93\x86\xad\x17\x4e\x5c\x7e\x3c\x2f\x5e\xce\xd9\x53\xea\x24\xf2\x82\x1c\xf7\x8a\x61\x50\xc6\x39\x75\x9b\xaf\x88\xe2\x8c\xd8\xae\xeb\x95\x42\x4d\x0e\x9a\x47\xed\x33\x6b\xe9\x90\x33\x8d\x47\x75\x16\x97\xe4\xd1\x53\xcd\xd8\xdb\xae\x2e\xaa\xb5\x9e\x0f\x23\x65\x40\x66\x73\xe3\x56\xcd\x59\x63\x8a\xfe\xd8\xa7\x5d\x78\xee\x2e\x6a\xe5\xce\x67\x62\xe4\xcc\xab\xf8\xc9\x17\x03\x68\xc1\x0a\x2c\x64\x73\xf2\x11\xe6\xe5\x52\xd6\xa0\xfa\x92\x5b\x3e\xa2\xe9\x72\x34\xa8\x5e\x09\xaa\xb0\x3f\x8f\x91\xbb\x3f\x6c\x84\xbc\xed\xf3\x58\xcb\x41\x62\x34\x23\x39\x5a\x74\x61\x5c\x2a\x65\x2b\xdf\xd3\x3b\x08\x56\xb7\x18\x5f\x2f\x40\x86\xa7\xad\xb6\xdb\x95\xd2\x3f\xa5\x99\x2c\x88\x33\x5b\x17\x2e\xd7\x90\x46\x88\xe5\x3f\xd7\xb2\x3f\x38\x13\xcc\xc9\x33\x31\x99\xab\xfd\x32\xe0\x8d\x5e\x2a\xc2\x0f\x8a\x7d\x62\x7e\x06\x8c\x84\xb5\xbd\x0d\xac\x99\xf9\x95\xde\xfb\x0e\x30\x64\xb8\x7c\x34\xa7\xfd\x10\x75\x0b\x02\x5d\x44\xc0\x6c\x7c\x99\xbd\x9e\x0d\x0d\xd6\x9e\x26\xef\xce\xcd\xdf\x17\x86\xbb\x63\xd7\x68\x62\x98\x08\x07\x5c\x7e\xbb\xec\xc4\xe7\x12\x19\xea\x71\xe3\x5e\x89\x99\x46\x1a\xe0\x5a\x36\x4c\x86\x18\x17\x29\xf4\xcc\x3e\x28\x79\xf4\x41\xf7\x4b\xf8\x85\x09\x9b\x5e\xef\x4c\x44\xe2\x73\xe0\xce\x5b\xd4\xb4\x1a\x97\xe1\xfa\xcd\x17\xe6\x7d\xed\xc2\xf8\x79\x3a\x84\xd7\xac\x1f\x3a\xd4\xe7\x2e\x3e\xfd\xeb\xab\x38\xad\x4c\xa3\x4e\x22\x6b\x6b\x23\x28\x2f\x7b\x19\x5e\xb5\x4c\xb7\xd7\x1b\xb7\xed\x2a\x6d\xd3\xed\x8a\x04\xe4\xf3\xe7\xee\x94\x93\x9d\xe3\xd8\x68\x6e\xe1\x16\xe6\x79\x65\x2c\x24\x2b\xff\xf6\x96\x00\x9f\x43\x7f\xbe\xbc\x36\x46\x74\xb6\x5a\x6f\x2e\xe1\x99\x37\xe8\x20\x16\x5b\x9a\x51\xee\x69\x21\xab\x38\x3c\xe8\x77\x6f\x54\x6a\x3e\xda\x8a\xc5\x99\x27\xf5\xed\x91\xca\x6f\xb5\x9b\xbb\x06\xa7\xab\x93\x75\x67\x64\x76\xc4\xb0\xe3\x62\xda\x8f\xaa\xe7\xf8\x9a\x94\x34\xcc\x0c\x56\x0b\xa5\xc9\x90\xd7\xec\x5d\xa8\x68\x5d\x06\xa9\x77\x94\xec\x05\x98\xe1\x84\x51\xb2\xd9\xa8\xd8\x42\xc2\x72\x2a\x6a\x3c\xde\x0e\xe3\xa9\xe9\x89\xc6\xc4\x84\xa5\xfa\x1b\x81\x64\xa5\x1f\x0a\xe3\x0c\x2f\xb7\x8b\x48\x37\xb4\x1c\xcc\xd1\x70\xed\x86\xd4\x3e\x6f\xe5\x4b\xbe\x9a\xcb\x7e\xda\xd4\x83\xf8\xbc\xc4\x13\xdc\xac\xd1\x3b\x56\xe7\x9f\x51\x35\x54\x55\xcf\x56\x6e\x32\xc0\x20\xd6\x8f\x8e\xe8\x03\x7d\x43\xb2\xba\x06\x16\x16\xcc\x76\x3f\x8f\x68\x96\x60\x2e\x2c\x39\x10\x4d\xb5\x5a\x5d\xe3\xc1\x68\x41\x82\x0a\x11\x11\xf1\x85\x4c\x8c\x08\xd0\x4b\x4e\xe3\xf3\xd2\x2f\x33\xf5\xcc\x9d\xb3\x07\x30\x2f\xb4\xae\xbe\xbc\x3a\x8a\x7a\xab\x7f\x91\x89\xe8\x3e\x8d\xaf\xb7\x85\x44\x03\x51\x89\xad\xe2\xe1\xc3\xba\x1c\xff\x94\x92\xfa\x59\x4c\x74\x45\x28\x80\x34\x6d\x46\x72\xf3\x95\xec\xe3\x37\xd5\x60\x42\xa1\x43\xbf\x11\x1c\x82\x04\x19\xb6\xee\x76\xd0\x54\x74\x87\x44\xd3\x2b\xd9\xb1\x86\x21\x3d\x23\x41\x75\x71\xf2\xe4\xea\x77\xd5\xa9\xa1\xfa\x1b\x6c\x4b\xcd\x1f\x5c\xcc\x56\x37\xcb\x35\xe9\xe3\xce\x6f\xf7\xe3\x90\xb8\x16\x07\x6e\x1c\x67\x87\x68\x4a\x59\x09\x2a\x4e\xbd\x6d\x29\x5e\xde\x4e\x6b\xda\xd4\x81\x98\x81\x92\x44\x91\x11\x1f\xcf\xfc\x98\x45\x2a\xcc\x4d\x71\xd7\xc2\x77\xb9\x35\x73\x5f\xf7\xb8\x82\x55\x7c\x78\x8e\x4e\xdd\x0a\x13\xf2\xb8\x25\x38\x76\xa8\xbe\xf0\x50\x4c\xfc\x12\x27\x94\x6d\x60\xe0\x16\x13\x45\x87\xb8\x21\x1e\x6f\x90\xa5\xeb\x9d\x32\x95\x7b\xea\xf0\x44\xbc\x97\x7b\xd8\x62\x9c\xb9\xba\xce\xe0\x7f\x38\x5d\xaa\xaf\x8d\x30\x3b\x72\x70\x77\x82\xfa\x3d\x31\x75\xe7\x31\x35\x52\xf7\xd4\x4a\x72\xae\x0d\xb2\x4f\x7b\xda\x05\xab\x7b\xf8\x1e\xc3\x87\x78\xcd\x86\x5d\xa4\x6d\x35\x68\xd8\x15\xce\x5b\x20\xd7\x66\x50\x3d\xdc\xce\x20\x6d\xcc\x5d\x67\x30\xfe\xf0\xe1\xb9\xfc\x5d\x57\x24\x8c\x7e\xde\x72\xa3\x82\x90\x80\x98\xe0\x0b\xcc\x08\x08\x21\xb7\xfb\x10\xe9\x99\x19\xbb\xf5\xd1\x43\x9a\xd9\x9c\x24\xbd\xd5\x67\x6b\x9a\x28\x06\x61\x75\x64\xb0\x49\x8f\x15\x1a\x22\xac\x9a\x33\xfb\x8f\x66\x5e\xe4\x54\xac\xdb\xf0\x50\x72\x8d\xd8\xd2\xbe\xe0\x09\x17\x96\xb1\xb6\x85\xbb\xfd\x4e\x51\x90\x8d\xe3\x28\x9d\x47\xad\x97\xbd\xe6\x9c\xca\xd9\x1b\xc2\x03\x3e\xbe\x75\x65\x60\xe6\x25\x55\x5d\x48\x3b\x16\x94\x8f\x17\xc4\xc2\x4e\x80\x8b\xcc\xf4\xbe\x53\x13\x4c\x2d\x7e\xe9\x85\xd6\x13\x69\x01\x39\xcc\x1f\x70\x50\x6d\x74\xd2\x1e\xdf\x0a\x52\x05\x66\xee\x59\xf8\x46\x4b\xfd\x9a\x36\x63\xa0\x76\x7a\x02\xd9\x9e\x84\x27\x5b\x85\x31\x2f\x1a\xfb\x7c\x43\xfa\xe7\x85\xa4\x57\x97\xaf\xbd\xd4\x1f\xf6\x4f\x2f\x92\x86\x28\x52\x0c\x3a\x9c\x2e\x1e\x53\xe8\x1f\x17\x0a\x9e\xd5\xa6\x9b\x15\xc6\x08\x42\xc7\x18\x1d\xfb\x98\xaa\xae\xe1\xc3\xfe\x61\x1b\x47\xfc\xde\xdd\x93\x43\xe2\xaf\x54\x9e\x3c\xe6\x4b\x85\xbf\xd3\x3b\x27\xf5\x41\x21\x8f\xf8\x52\x9e\xc1\xad\x4e\x16\x6e\x12\xc3\xc6\x5d\xe9\xa5\x14\x08\x88\x3e\xb8\xad\x1a\xb3\x6c\xc7\x3a\x8b\xb4\x65\x8e\x94\xf2\xa0\x1e\x7e\x67\xf9\xd3\x2f\x0a\x89\xf1\x90\x03\xdd\xa8\xee\x6c\x54\xf5\x20\xb2\x5a\x10\x79\x04\x65\x69\xb7\xbf\x77\x91\xcc\xe8\xd1\x8c\x09\x1b\x01\xbd\xe4\xcb\x25\x86\x58\xef\xa2\xa9\x5c\xd2\xb7\xdf\xf3\x3b\xe3\x68\x52\x79\x91\x56\x8c\x23\x67\x8f\xc1\xef\x7a\xc3\x4f\x0e\x62\xa1\x4b\x28\x5e\x1f\x7c\x78\xcb\x9e\x3c\x3e\xda\xbb\xbf\xe8\x77\x63\x39\x1d\xc8\x42\x83\x8c\x69\x18\x9e\x44\x53\x78\x79\x4f\xc0\x1a\xa6\x16\x4b\xa4\xf5\x89\x4e\xd7\x65\xdf\x0a\xc3\xfa\xb7\xb7\xa1\x3a\x20\xf1\x37\x75\xa6\x3b\x9e\xaa\xe2\x71\x06\x39\x9b\x8e\x49\x9a\xc2\x4c\x1b\xdd\xa0\x5a\x91\xf8\x79\x59\x7f\x11\x64\x50\x72\x08\x85\x4a\x1d\xaa\x5d\x9c\x5a\x3d\xc8\x2f\x04\x6b\xba\x7b\x6d\x8c\x36\x3b\x3b\xdb\xb8\xf3\xcd\xa9\x65\xdd\xab\x2c\xc3\xa5\x56\xd2\x1f\x61\xc5\x72\x5e\x0e\xbf\xd3\xee\xcb\x8e\xc2\x14\x4d\x55\x29\x7a\xc3\x20\x51\xcc\xb5\xd5\xb0\xd5\x4b\x83\x3d\xe5\x68\x8c\x9e\x3a\x7e\xce\xca\x90\xc8\xa2\x74\x03\x67\x8d\xe1\x93\xad\x8d\x0a\xc0\x5f\x6d\xcf\xd5\xa8\xba\xc7\x05\x49\x30\x13\x92\x67\x4a\x48\xe6\xe5\xcc\xbe\x4e\xae\x02\x03\x66\x9f\x2a\xa8\xcc\xbc\xec\xb5\x23\xf1\xea\x90\x54\x68\x3e\xd1\x7e\xc7\x8b\xcc\x3f\x1e\x52\x37\x6d\xbd\xdf\xb9\x50\x53\x8c\xde\xac\x4c\x8c\x46\xe6\x84\x3e\x27\xe2\xc5\x5d\x1a\x6b\x65\x95\xfc\xf0\xf7\x5c\x3d\x75\x36\x8a\x33\x6c\xf0\x3a\x33\x91\x1f\xae\x7e\x5c\x0a\x3d\x13\xb6\x67\xf0\x6e\x38\x52\x43\xff\x69\xfd\x09\x65\x54\x65\xf7\x8d\x42\xc8\x7e\x08\x7d\x46\xd1\x42\x87\xa8\x12\x55\x56\x4a\xb3\xce\x19\x47\x80\x5d\x9d\x86\xe5\x31\x3b\x73\xb2\x42\x7b\x52\x2a\x41\xfd\x8b\x93\x1f\x7f\xf1\x17\xea\x76\x9d\xd7\xa9\xe9\x78\x2d\xce\x07\x02\x82\x33\x8c\xdc\x21\x3a\x25\x45\xc4\x37\x13\x59\x4d\xb9\x5c\xc3\x2e\x0b\xe5\xbd\xaf\x6e\x44\x20\x2f\x65\xd3\xca\xd6\x21\x30\x0e\x45\x98\x58\x26\x49\x6e\x67\xe3\x80\xc2\xb9\x64\x86\x36\x96\xad\x28\xd2\x26\xf2\x52\x4c\x97\x2e\xb4\x86\x94\xf1\x4e\x03\xa4\x95\x34\x5e\x48\x55\x3c\x06\x0f\x82\x2f\xad\xfd\x1e\x21\x95\x4c\xea\x2d\x66\x57\x05\x18\x0e\xca\xfb\x14\x68\x3e\x6b\x72\x93\x73\x43\x6a\xe7\xf4\xb9\x49\x45\xf2\x54\xa5\xd4\x5b\x19\x7f\xcc\x98\xa7\xd1\x32\x00\xe2\x1b\x61\xa5\x30\x27\x2a\x74\x2a\xd7\x4b\x34\xd9\x87\xc9\x8c\x2d\x83\xa5\x90\x43\x86\xb2\x3f\x93\x19\x3a\xa4\x9f\x56\x7f\x1f\x61\x7c\x68\xe8\x4d\xe7\xfb\x36\x79\x0b\x65\x3d\x52\x94\xc1\x69\x10\xb2\xd1\x85\xcd\xa2\x3c\x2c\xf1\xbc\x90\x9c\x7f\x1c\x0a\xcc\x56\xea\x45\x2d\x8f\x95\xe7\x2d\x06\xe4\xd1\xb3\x96\x86\xc7\xb8\xdb\xfe\x21\x8a\xac\xad\xa9\xa7\x70\x0c\xa9\xdf\xc4\x46\xc6\xdf\xbd\x28\x42\xa1\x4a\x18\x8b\xac\x99\xe2\x25\x0f\x7e\x0e\x41\x34\x76\x4c\x17\x89\x06\x91\xaf\x1d\xd7\x1b\x58\x84\x07\x49\x32\x9e\x98\x35\x6b\xea\x24\x14\x27\x76\x24\x27\x67\x79\x55\x23\xab\xee\x45\x68\xee\x1c\xa5\x08\xb6\xda\x0f\xcc\xaf\x95\x2e\x08\x5c\xc5\x64\x75\x9c\x42\x47\x55\x76\x72\xe4\xd7\xc4\xab\x95\xaa\x1e\x55\xae\xb7\x3b\xdb\x7d\x3a\xa1\xab\x4a\x66\x2c\x3d\x68\x59\x94\x42\x73\xfc\xaa\x9a\xd9\x85\x02\xb1\x2f\xa6\xbe\x27\x75\x15\x13\x86\x81\x15\x10\x7e\x33\xcd\x9e\x1d\x21\x85\x84\xb0\xc7\xcf\xcd\xfd\x83\xcf\xe3\xfe\xc3\xe8\x0e\x6d\xe9\xc2\xbb\x2d\x6c\x7d\xbc\x8d\xa0\xa3\xcd\xe5\xea\xd8\x7b\x82\x80\x5d\xff\xdb\x1c\x65\xbf\x05\xdf\x20\x54\x42\x15\xd2\xcf\x79\xd2\xca\x75\xa9\x0c\xc5\x3e\xb2\x70\xc5\x82\x4e\x72\xa5\x1c\xa5\xc3\x64\x49\x3a\x47\x29\x97\x3c\x39\x33\x61\xc2\x54\x8c\x38\x76\xc3\x9f\x26\x62\xe7\xf1\xc6\x39\x39\x1a\x53\xcd\x70\x29\x23\xdb\x0e\xb9\xb5\xe2\x49\xf1\xf9\xf9\x96\x4b\x5c\xc2\x05\x81\xda\x3a\x1c\x16\x2a\x8e\xf7\x83\x31\x4b\x53\xf4\xb1\xd8\x46\x5e\xbe\x01\xe4\x97\x2f\xd7\x1a\x24\x13\x2b\x0d\x9c\x3f\xdf\xa3\x94\xa2\xfa\x08\x77\xc3\xd7\xee\x75\x28\x51\x0c\x08\x35\xd2\x18\xb6\x85\x0f\xbf\xc0\xe6\x5f\xe4\x55\x7f\x2a\x2a\xd2\x63\x11\x54\xf9\xaa\xd0\xf3\xc9\xd3\xce\xd1\x1d\xeb\x27\x05\xb7\x1c\x47\x2d\x59\x9c\x10\x8c\xc7\xeb\x26\x9c\xb4\x25\xc3\x37\xd2\xa5\xec\xbc\x3e\xe4\x14\xca\x54\xdd\xe9\xfb\x42\x9c\x88\x83\xc4\x24\x4f\xbf\x36\x84\x83\x21\x24\xa9\xcc\x95\x58\xaa\x42\xca\x13\xb4\x4f\xfb\x1a\x34\x01\x1f\x11\x6d\x0c\xb7\xf8\x76\xdf\x8d\x8b\xbf\x54\x46\x10\x62\xe0\x4f\xd9\x52\x99\x9c\x7c\x17\xd7\x1e\x3f\x8c\x8f\xbf\xdd\xce\x83\xda\xca\x91\xec\xf8\xf1\xf2\x1e\xc7\x4a\xdd\x93\x54\x7e\xfe\xa1\x7f\x9d\x6a\x0c\x76\x22\xb4\x76\x96\x92\xe6\x43\x61\x0b\x7e\x81\x96\x52\xea\x65\x7a\x1e\x18\x44\xdf\x7a\x58\xe3\x98\x01\x83\x4c\x84\xa9\x8f\xb8\xca\x43\x6f\x5e\x3f\xd0\xe4\x54\x1a\x16\x5c\xbe\x70\x8f\x27\x98\x7b\xe1\x0b\x06\x6a\xcb\xdb\x1f\x00\xa5\xf1\x2c\xf2\x5a\x9e\x3f\xba\x79\x8f\x5f\xfd\xa1\x66\x19\xe4\xbb\x64\x37\x52\x63\xbc\x83\x4d\xc3\x94\xb2\xb8\x21\x42\x84\x2e\x6f\x9d\x3a\xac\xe0\x14\x09\x16\x2d\xe5\xc4\xaf\xd7\x0c\x60\x18\x6a\xb5\xf9\x61\xc3\xac\xa0\xc0\x3c\x42\x5d\x7a\xd7\x67\xb8\xc1\xfe\xad\xac\xa3\xd9\x41\x28\x74\xc2\x3c\x95\xc9\xaa\x4f\x21\x1e\x2a\x94\x92\xb6\x0b\x8e\x1f\xca\xbf\xd0\x03\x65\x77\xf5\xcb\xa4\xc7\x9d\x6d\xcd\xbc\xf8\x53\x44\x44\xfa\x68\xd9\x60\xc4\xfb\x4c\x80\x82\xb7\xc7\xc3\x89\x02\x36\xe2\xe3\x64\xdd\x95\x40\xaf\xb6\x5e\x65\x9c\xe3\x40\x23\x92\xe3\x40\x71\xaf\xd7\x64\x91\x3d\xc9\xed\x6a\x47\xf4\xba\x40\x55\xf4\xfa\x22\xb3\xd9\x3d\x56\xd2\xc5\xe1\x4d\xf5\x35\x89\x82\x8d\xce\x93\xc3\x24\xb8\xa0\x20\x43\x45\x0e\x3f\x53\x7a\x8e\xf1\x06\x97\xc8\xec\xd2\xc4\xd1\xdc\xc4\x83\xdf\x00\xd8\x08\x9b\x49\x51\x57\x5b\x2c\xc5\xd0\x38\x69\xdf\x29\x71\x5e\xed\xef\x9f\xbd\xe2\x69\x6b\x69\x0c\x0b\x54\x0c\xfd\x61\x0f\x54\xb9\xa7\xb8\x20\xf3\xe1\xd5\x6d\x9d\xe2\x93\x1d\xd3\xdb\xd4\x2c\x10\x47\x52\xf0\x58\x69\x74\xda\x03\x58\x65\x54\x32\x1f\x23\x29\xa9\x22\xd3\x61\xcd\x5d\x75\xfb\x2f\x84\xa3\x6c\xc3\xab\xb9\x4c\xff\xcd\x81\x7b\xd8\x03\xa5\x27\xf8\x77\x48\x6a\x1c\x8f\x84\x6c\xf0\x6f\xbe\xaa\xcf\xb0\x21\x83\x1c\xce\x10\x72\x79\x58\x55\xe8\x54\x85\xd3\x59\xd9\x5a\x74\x8c\xd4\x7c\x8b\xb8\x12\x2e\x93\x67\xe4\x7a\x86\x07\x0d\x95\x0c\x54\x7e\x44\xfd\x14\x58\xd4\xb5\xdf\x3f\x23\xfa\x4b\x57\x1c\x09\x54\xb2\x09\x07\x9d\x62\x31\x32\xce\x9f\x93\xc4\xd4\xae\xfa\x62\x68\x72\x1a\x2c\x94\x60\x58\x3c\x33\x89\xf3\x3b\xce\x5f\xe2\x07\xf7\x8d\xdc\xf9\x1c\x05\x6a\xbf\xb1\x58\x9a\xef\xbe\xb0\xe7\x98\x77\xb7\xca\xed\x21\xf1\x9e\x88\xaa\x36\x14\x37\x5f\xf9\x98\x07\xb5\xe1\x0b\x3b\xce\x56\xed\xe9\x1f\xe9\xfc\xa4\xeb\x9d\x62\xf4\x7c\x56\x72\xdf\xf7\x39\x86\xd2\xd4\x1d\xba\x22\x8c\x3b\xd0\xb2\xe9\xf7\x6f\x7b\xe2\xbd\x7f\x4c\x48\x91\xcd\x4c\xf1\xe4\xf8\x29\x96\x99\x4f\xb8\x6a\x5e\x24\xeb\xd4\xd0\x45\x71\xb3\x39\x5d\xc0\xb9\x75\x42\x96\x48\x2c\x2b\x4f\x84\x93\x98\x8e\x29\x24\xa4\x31\xf8\x43\xd3\x81\x85\x9e\x8c\x39\x97\x8f\xde\xd3\x7b\xfa\x31\x34\xff\x89\xa6\x1a\x8f\xb0\x4a\x97\xc1\xce\x54\x11\xef\xed\x05\x7e\x20\x45\xb9\x57\xcb\x93\x46\x23\x72\xaa\x3a\xef\xb3\xdf\xd5\x85\x97\x64\xb3\x58\x0e\x55\xe9\x58\x41\x34\x55\x50\x69\xcf\x2b\x68\xc7\x1f\xbc\x06\x5e\x78\x2c\x2b\xbe\x03\x05\x39\x6e\x12\xef\x81\xbc\x28\xea\x1e\x0e\xd1\xfe\x21\x95\xc7\xe5\xa8\xad\x2a\x92\xde\xb9\xba\x29\x9f\xca\x9b\x4c\x0a\xe9\xbd\x0a\x09\x7c\x9b\xe8\xb8\xe3\xe5\x17\x05\xaf\xc0\x65\xe7\xd6\x75\x77\xfc\xeb\x6d\x29\x8a\xd2\x8c\x50\x32\x36\x97\x80\x5e\xa6\xcd\xef\x8f\x92\xe4\x3d\xca\xee\x80\x2a\x94\xef\x6f\xce\x9e\xb1\x07\x69\xc4\x4d\x86\x67\x65\xd5\x7e\x01\x10\x1e\x3f\x73\x9f\x1f\xf3\xdf\x40\xf6\x9d\xf8\x0f\x87\x5e\xf0\x48\xbb\xf7\x59\x27\xce\x39\x0f\xed\x39\x0e\x41\xa6\xe2\xc8\x88\x0e\x78\xce\xdd\x04\x21\x7d\xa3\x3c\xdf\x60\xd1\x0c\x0b\x02\xe4\xa4\x82\x02\x35\xc2\xd3\x62\x1c\x2f\xe6\x6b\xf6\x6c\x1a\xd3\x5e\x2c\xba\x7a\x9d\xcf\x86\x87\x3f\x05\xb4\xf3\x79\xcb\x8d\x96\x38\x4b\x4b\x5b\xe6\xd5\xdb\xa3\x29\xa3\x73\xc2\x55\xe3\x92\x6f\xc4\x3e\x27\x3e\x32\x63\x91\x7a\xde\x9a\x93\x3a\xbf\xdf\xed\x92\xa2\x35\x32\x79\x7f\x10\x1c\x89\xcb\x5d\x43\xf8\x04\x5d\xb9\x17\xa9\x8d\x7d\xfa\x56\xcd\x2c\x27\x25\xce\x44\xd2\xc7\x46\x6c\xba\xd2\x7e\x8b\xfa\xa3\x58\x58\xb2\x02\x1a\x12\x0a\xaa\x2a\x13\xd3\x56\xb3\x24\xd0\x7c\x36\x4e\xd9\xe2\xde\x5c\x4e\x37\xd2\x3d\x88\xfe\x3b\x0e\xd6\xe1\xcb\x2d\x1e\x8f\xf3\xea\xe2\x12\xc6\x01\x6e\xe9\xcf\x9d\xd9\x14\x9b\xd1\x3a\x8f\x81\xa2\xa4\xae\x6a\x3a\x8d\x90\x13\xe9\xb8\x6f\x8f\x43\x9a\xdc\x0e\x96\x67\x4c\x21\x07\xc6\x23\x3a\x5e\xf6\xc1\x86\x8a\x16\x82\x78\x42\xbc\xc3\xf5\x13\xf1\xea\x75\x75\x40\x04\x32\xb5\xd1\x01\xc3\xd4\xd4\xfe\x13\x62\x4a\x64\x4e\x0c\x86\x07\xc2\xfc\x19\xed\x86\x7a\xd3\x88\x2c\xf5\xc4\xe7\x88\x28\xf9\xd7\x4f\x9a\xc9\x5a\xee\x87\x87\xf7\x19\x30\x16\xce\x0c\xdd\x1d\xb7\x50\x08\xc9\x6b\xc1\xfa\x84\x34\x8d\xfd\x60\x00\x91\x2f\x9a\xd1\x34\xcc\x0f\xf9\x11\xe5\x1c\x82\x37\x5a\x2c\xaa\xe9\xd9\x86\x8b\xde\x4c\xaa\x28\x5f\x5a\x54\x0c\x09\x0c\xfe\x46\xaf\xbd\x49\x6b\x69\xbb\xf4\x53\x78\xfb\xdc\x1d\x7c\x58\xec\x88\xc9\x56\x9c\x7a\x96\x17\x50\xbf\x0b\x2b\x49\xf7\x55\x3b\x8f\xf7\x00\xdb\x39\x73\xe4\xc7\x68\x7f\xdc\x13\xab\x65\xba\x0a\xf5\xae\xb9\x86\x60\xb7\xf2\xfb\x76\xaf\x46\x64\x7a\x9d\x77\xc3\x13\xaa\x52\x69\xd1\x4f\xcf\x40\xd4\x80\xa5\x2e\xfe\xcf\x8c\xec\x8f\xc8\x12\x2d\xa4\x78\x2a\xb1\x9f\x82\x51\xe7\xe5\xd9\x17\x8d\x58\x8d\x46\xff\x14\x23\xc0\xb8\x3c\x3b\x2a\xaa\x8b\xae\x76\xb2\x9b\x2a\xac\x4e\x23\x66\xec\xb2\x7b\xa9\xdf\x75\xfb\x89\x83\x47\x30\x54\x4f\x31\x6b\x92\xb0\x3a\xcc\xb6\xb6\x5f\x7d\x39\x7f\x73\x30\x88\x56\x85\xa4\x96\x87\xbf\xe0\x66\xdd\x7b\xb3\x9e\xa4\xa7\x86\x7d\x31\x15\x8f\x61\x2f\xbe\xc8\xff\x2c\x15\x7d\x4a\xaa\x84\x39\x69\x8f\xde\xfd\x03\x42\x61\xaf\xe6\x07\x42\xe5\x1e\x07\xd7\xa5\x77\xf9\x65\x5c\xba\x1e\xc4\x42\x43\x37\x06\x6f\x1e\x92\xf6\x3a\x7c\xe5\xce\x6b\x13\xa5\xeb\x41\x11\x0d\xad\xe5\x4e\xb6\x31\xbf\x0c\x11\x81\x2e\x44\xb9\x0e\x81\x6a\x50\x0c\x33\x2b\x7f\xca\x11\x08\x62\x97\xe6\x87\x8d\x90\x54\x4b\xf2\x45\x4c\xe7\x3e\x2c\x4f\xb5\xaf\x53\x6f\x59\x24\xe1\x63\x14\xa1\xd1\xaa\xf1\x37\xca\x13\xc5\x2d\xa6\xf3\x6d\x26\x04\xb8\x2d\x54\x26\x27\x16\x09\xa6\xf5\x6a\x5b\x2f\xd8\xbf\x5f\xf8\xfa\x03\xa1\xd2\xea\x67\x83\x9f\x45\xb9\xed\xee\x38\x5c\xb7\x62\xd6\xdb\xef\x56\xd4\xea\x96\x8a\x1a\xe7\x6a\x96\xfd\xcf\x19\x0c\x32\x5a\x5f\x2e\xa8\x10\xd0\x3c\x34\x8e\xfa\xfa\xbe\x41\xed\x6c\xee\x04\xec\x3b\xa0\x7c\xca\x30\xc9\xfa\x64\xa7\xc4\x1d\xbe\x8b\xfd\x3b\x92\x23\x29\x31\x36\xc7\x44\x19\xcc\xca\x34\x47\x7b\x9f\x79\xb8\xb9\x43\x72\xfc\x29\x02\xbd\x78\x81\x54\xe9\x90\xd6\xae\x97\xd1\x93\x51\x00\x6b\x19\x84\xad\x3b\xa2\xb2\xd2\xf9\xa2\xb1\x15\xda\xb1\x08\x5d\x51\xdf\x1d\x33\x73\x32\x48\x9b\xad\xc2\x03\x7b\x2f\x46\x1a\x4e\x3d\x4d\x6b\x71\x55\x3d\xac\xde\x82\x64\x60\x70\x84\xad\xc9\x47\x64\x70\xd8\xe0\x9a\x4c\x87\x29\xdf\x93\xb5\x52\xd8\x85\xd9\xe2\x85\xdf\x2b\x76\xea\xa8\xd9\x7d\x15\xfa\x84\x79\x2f\xf4\x2e\xe1\xe5\xb2\xcf\x11\x5b\x97\x6f\x99\xe0\x24\x9c\xcf\x90\xe8\x32\xe9\x57\xfa\xd8\x16\x0e\xbf\xaa\xe5\xc1\xe5\x53\x96\xf5\x3e\x15\xa2\x52\x06\x63\x5f\x60\x74\x2c\xcd\x6e\x51\x7a\x90\x6c\x18\x87\xf2\x7a\x52\xf0\x85\x3b\x23\x7e\x94\xa1\xb1\xc1\x66\x5b\x2d\x9a\x51\x08\xa1\x56\x83\x9a\x82\x8a\xda\xf2\x0d\xaa\x05\x8c\x30\x4c\x2e\xaf\x47\x83\x3f\xb0\x9d\x6e\xff\x21\x3a\x3f\xe9\x5b\x8d\x52\x91\x48\x7c\xe8\x14\x59\x97\x1e\xac\x0f\x92\x40\x82\x85\x2b\x63\x5b\xe2\x48\xd5\x5f\xe7\x13\xff\x3d\x67\x6e\x3b\xc8\xd1\xee\x5d\x04\x81\x58\x01\xb6\xd1\xd1\x00\x5b\x93\x9f\x75\x1e\x39\x96\xf8\x4c\xdc\xcc\x82\x8c\x31\x5f\xed\x50\x21\x84\x9e\xce\x5a\x8c\xda\x96\x13\x44\x37\xc0\x35\x1d\x64\xe3\x1a\xe2\x21\x87\x79\xe1\xcb\xa8\x1d\xf0\xf4\xd0\x36\x8d\x44\x6f\xdb\xac\x4e\xbf\x1e\xc1\x39\xf2\x8e\x98\x24\x66\x5d\xce\xb0\xb8\xdb\x19\x8a\xc6\xac\x6c\xf5\xe6\xc6\xed\x7c\x1d\x8a\x26\x79\x18\xcf\x3d\xd5\x78\x13\xca\x5a\x8a\x2e\xef\xed\x66\x99\xf8\xb1\xff\x3b\x6d\xe7\xc0\xa8\x1f\x3a\x12\x97\xd3\xd1\x8d\xca\xeb\xfb\x7d\x4f\x74\x92\x0f\x7a\xe6\x1e\x05\x0c\x8a\x5a\xeb\xdd\xed\x8c\x02\x6d\x4a\xbb\x95\xcd\xb7\xea\x8a\x1f\x63\x7f\x34\xba\xb6\x8e\xd0\xde\xd9\x91\xbc\x15\x83\xab\xe0\x22\xc7\xf2\x82\x4a\x4a\x2a\xbf\x7e\x2b\x54\x2a\xd7\xae\x90\xca\x0c\x21\x9f\xb0\x67\xd2\x1b\x3b\xc9\x2e\x06\xe9\xc2\x94\x83\xe6\xe0\x13\xd6\xac\x82\x32\x05\xd6\xa1\x41\xcb\xf0\x72\xaf\xcd\x48\xe2\xce\xf4\x75\xe7\x50\x2d\xd4\x01\xc3\x1a\x48\xfd\x01\x37\xfb\xd0\x5f\x5d\xa0\x56\x94\x04\x3d\xf0\x25\x4b\xf0\xf8\x8b\xcb\x25\x31\x32\xac\xfc\x7b\x62\x15\x7f\x0f\x0f\xb2\x32\x1f\x6d\xc5\xd7\x4d\x38\xbb\x87\x64\x86\x6b\xb5\x8c\xf4\x54\xb9\xc8\x9f\xd9\xec\x6f\x39\xb3\xe8\xd9\x7f\x91\xd8\x0d\x3e\xaa\x63\x35\x5c\x4d\x31\xe6\x8f\x3e\x4d\xe3\xb4\xb3\x7a\x4a\xcc\x2b\x78\xbd\x0a\xa2\xdf\xa0\x08\x53\xc8\xde\xb8\x67\x3e\xcb\xbf\x6e\x0f\xd9\x02\xd1\x62\x18\x1e\x75\xf8\xa4\x4b\x2a\x73\xf2\x31\x70\x09\x8f\xa6\x6b\x54\xdb\x0d\xe7\x0b\xf6\xcd\x60\x3a\xd7\xfe\x52\x5b\x4a\x1c\xdb\x1b\x84\x9b\xaf\x57\x67\x24\xe6\x85\x8b\xdd\xc6\x86\xac\x6d\xa2\x9c\x6b\x95\xc4\x8b\xfc\xbd\xeb\x76\xe9\x34\x39\xcb\x5a\x19\x30\xdf\x6e\x16\x94\xbb\x5b\x36\x29\x81\xad\xa2\xd9\x7e\xc0\x93\x4c\x35\x2e\xc8\xb4\x24\x44\x44\x7d\xde\x18\xb2\x13\x9a\x84\x24\x50\xdf\x17\x69\x78\xd3\x21\xf1\x08\x49\xe0\xca\xb8\xc6\xd8\x4d\x42\xda\x46\x60\xd0\xd8\x8d\x71\x44\x8a\x2c\xaa\x8d\x5e\xca\x35\x3c\x77\xba\x84\x2a\x53\x1f\xc3\xee\xea\x70\x1a\x75\x5c\x11\x77\x74\x39\x76\x48\xc7\xd7\x82\x71\x61\x75\xc6\xfd\xa8\x77\x56\xfd\xd4\x17\x7d\x4b\x4a\xe3\xfd\xc8\xbb\x3e\x7e\x81\xee\xc5\x77\xad\xef\x28\x3b\xb9\x1f\x58\x38\x85\x14\xd4\x3a\x5c\xca\x3d\xf3\xf6\xe2\x72\xba\x21\x7f\x7b\x0b\xf6\x86\xbc\xfc\xe1\x49\xb2\x8b\x10\x44\xf0\xc3\xe6\x99\xc5\x23\xd4\xf4\x78\x50\x91\xde\xa4\x60\x6f\xea\xe9\xb6\xf1\x15\x5e\xb3\xe9\xe5\x9b\xa0\x12\xf5\x9c\x9c\xa4\x16\x7c\x9c\x65\x71\x80\x0a\x99\x1d\x19\xf3\x0e\x45\x8a\xae\x07\x11\x07\xe7\xb5\xd3\xe4\x32\x17\x62\xe8\x02\xbc\xe0\x53\x1d\x92\x7b\x3d\x56\xea\xa2\x86\xa7\x49\x18\xbb\x3e\xb4\x36\xd3\x7c\x37\xbf\x56\x66\x5b\xb5\x97\xc1\xe0\xfe\x0b\x62\xfb\x78\x9b\x4d\x76\xf4\x83\xaf\x9f\xfb\x45\xd7\xbc\x42\x8d\x7b\x1f\xfc\xf3\x4a\x76\xd7\x3b\xc4\x6b\xf0\x73\xdc\x41\x22\x73\x28\xde\x03\x7f\x30\xd6\x1a\x61\x1a\x4f\xc9\xcf\xc8\xbc\x44\x73\x5f\x59\xda\x7e\x85\xe6\x51\x2d\x18\x6c\x34\x61\x0b\xba\x4c\x1c\x56\x61\x13\x38\x55\xd7\x70\x65\x32\xa5\x22\x93\xd4\x28\x82\xcd\xe1\x3f\x4f\xea\x3b\x6b\x7f\x8a\xde\xa4\x28\xce\x56\xc9\xb1\x3c\x02\x94\x06\x8c\xb0\xc0\x07\x8e\x41\x79\x33\x52\xa6\x38\xef\xf5\xdc\x7e\x0c\xec\xab\x4d\xaa\xf8\x36\xe3\x93\x1b\xa2\xde\x7d\x61\x39\x34\x69\x0f\x14\xbc\x99\xfb\xba\x10\x72\x72\xee\x44\x75\xf3\xc5\x58\x61\xe8\xb5\x62\x18\x73\xb0\x09\x25\x96\xdb\xab\x43\xe8\xd0\xd4\xe3\x9a\xc6\xd8\x1e\x18\x6b\x31\x6a\x16\xc6\x29\xc6\xd3\x74\x6a\x16\x49\x62\x16\xc5\xec\xad\xfa\xc6\x88\x54\xd0\xdf\x47\xdb\x9e\x76\x8f\x22\x49\x70\x96\x10\x9c\xd5\x6b\x42\x7e\x5f\x8b\x95\xb1\x8b\x77\xdc\x79\xde\xe5\x57\xdf\xe2\xbf\x71\xef\xd8\x7b\x3c\xb8\xbc\x15\x77\x45\xe5\x79\x81\xf2\xf8\x48\x2a\x1e\x5c\x6d\x91\x91\x57\xdb\x0c\x0a\xc0\x7f\xd6\x2a\xc5\xb8\xfe\xae\xbd\x07\x0f\x44\x5d\xd1\x05\xde\xd1\xb3\x04\x7e\x0b\x77\x7a\xb7\xc7\x9e\xf4\xd7\xe0\x36\xdf\xb9\xa1\xaa\x68\xd1\x19\x7a\x19\xf5\x4f\xe9\xbc\x77\x8e\x52\x4a\xcc\x90\x3b\xd2\x4b\xf4\x4c\x06\xd2\xb4\x07\x3c\xc9\xe4\xb2\x6f\x50\x5d\xa4\x82\x7f\xe4\x32\x02\xcc\xfb\xa0\x87\x4c\x74\x7b\x7d\xaa\x51\x5f\x63\x3a\xda\x1e\xb4\xaf\x66\x10\xa0\xb1\xe5\x67\x73\xd2\x7a\x7a\x6a\x41\x8b\xb2\xc3\x60\xaf\xa1\x0a\x6d\x05\x67\xa9\x91\x7c\x9a\x7e\x67\x37\x9d\xdf\xb5\xe5\xd7\x16\x05\x87\x54\xf4\xd9\x2e\x6c\xc1\xda\x43\x56\xf9\x13\xa2\xef\xd2\xf3\x05\xa4\x10\xe6\x38\x0b\xdc\x29\x4e\xce\xa8\xf8\xb5\x6f\xa0\x5f\x41\x63\xc7\xdd\x6b\xfc\xe1\x5c\x67\x74\x2b\x9f\x22\x06\xb5\x2d\x14\x56\x85\x54\xde\x63\x62\xa1\x33\xf5\x60\x6c\x44\x2e\xea\x9e\x6e\xb0\xa7\x71\x84\xa9\xa7\x39\x22\x2c\xf8\xb8\xb7\x5d\xee\xc6\xef\xe8\x5d\x2a\x37\x5a\x54\x5a\x8c\x11\x4a\x31\xfd\x04\xd7\xe3\xef\xf5\x11\x0f\xf5\x9a\x69\xb7\x9a\x77\x73\xf5\xbd\xec\x90\xe6\xbd\xd1\xbf\x1b\x57\xd4\xb2\x4f\x53\x99\x30\x0f\xa4\xed\xc4\xed\x65\xb9\xde\x8e\xea\x96\xb0\x99\x30\xde\x98\x38\xc5\x35\x37\xd5\x44\x0b\xbc\x74\xd8\x40\xc3\xc7\x78\xd2\x2a\xee\xbf\xe4\x53\xcb\x7e\x98\xe9\xbf\xde\x46\x0b\x23\x4e\x9e\x40\x40\x3f\xb9\xa1\xc4\xa9\xf4\x15\x14\xf4\xf7\x51\x16\xf5\x3d\x22\x13\x9f\x86\x33\x23\x77\x22\xdb\x09\xc6\xac\x25\x1c\x47\x78\x4d\xe9\xd9\xfa\x50\xa5\x55\x04\x52\xae\xb8\x37\xa7\xab\xdd\xc3\x93\xf0\xd7\xb4\x26\xb5\x8b\x6b\xbf\xec\x0e\x79\x91\x0f\x04\x36\xb9\xdd\xfb\x58\x68\xbe\x50\x6c\x45\x35\x44\x3b\x4f\x6e\x06\x35\x3f\xb2\xda\x0e\x76\x6b\x57\x9b\x20\x0c\x2a\xaf\xdc\x74\x6c\x79\xd6\xdd\x3d\xfd\x20\x54\x5c\x8c\xa2\xd1\x94\xe6\xbb\x72\x42\xa5\xb9\xab\xcf\x70\x12\x92\x6f\x2a\x12\xb3\xb8\xc0\x3f\x48\x23\xce\xde\x3b\xd1\xce\xeb\x24\xee\x7b\x6c\x74\xfb\x24\x84\x72\x68\x04\x09\xe1\x01\x6b\xab\x58\x95\x56\xd6\x9f\x20\xf8\x06\xa3\xb3\x88\xf7\xd3\xcb\x20\x65\x70\xc9\xeb\x37\xb9\x25\x65\xb1\x09\xfd\x92\xcd\xa4\xbe\x22\x7e\x52\x29\xa3\x87\x68\x97\x56\x7b\xf8\x74\x2b\xb2\xa5\x4d\xfb\x52\xc3\x89\x5c\x95\x4c\xff\x8b\xd6\xc9\x79\x03\x0f\xe1\xf2\xbd\x5a\x78\x96\x10\x57\x20\xaa\x4e\x48\x54\x75\x3b\x9e\x0d\x4c\x9d\x0d\xf9\x90\x13\xdb\x9b\x83\xa2\x80\x6b\xc7\x84\xd9\x89\xc4\x07\xd9\x9c\x36\xc6\x76\x97\x40\xd1\x52\x92\x13\xf6\x26\xef\xaf\xad\x8b\xb7\x37\x68\xcd\xd4\x5b\x7d\x83\xaf\xd7\xa3\x1a\x37\x43\x79\x41\xe1\xc2\xf2\x0a\x5a\xb1\x41\xa5\x57\x43\x5f\x97\x84\xce\xf1\x32\xf1\xa3\x08\x5b\xb9\x79\xd1\xa9\xaf\xb4\xed\x30\xeb\xd2\xbf\xb3\x2b\x50\xae\x2d\x32\xa2\xd8\xbd\xa9\xc5\x0c\x34\x54\xf5\x80\xb5\xa2\xc5\x32\x4d\x6b\xcb\xc4\x7e\x6d\x69\x7b\xbf\x0e\xc1\x38\x14\xc3\x14\xcb\x1c\x63\x5f\x72\x2b\x0c\x72\xf3\x8c\xba\x4b\xb1\xdc\x7c\x65\x55\xdd\x1b\x66\x0a\x3b\x48\x21\x88\x66\x2a\xb7\x55\x2c\x2e\xf7\x32\xdd\x77\x11\xa0\x7a\xe5\x0b\x40\xdb\xc8\xe0\x39\xfa\xd9\x34\x5e\x67\xcd\xf0\xed\xc6\x41\x2c\xdb\x0f\x79\x46\xb7\x6c\x51\xbb\xce\xfa\x42\xf8\xa7\xe1\x46\x8d\x98\x18\xbc\x8c\xd3\xe4\x4e\xd6\x5d\xab\x54\xfc\x10\xa2\xe3\x3d\x7a\x47\x8e\x57\xe2\xf7\x2c\x38\x1a\x5c\xe8\x33\xb0\xc4\xdb\x53\xa2\x06\x48\xa3\x49\xc3\xe3\xe1\xcf\xc5\xaa\xed\xa9\x73\x05\x65\x0d\x41\x07\x90\xfc\x58\xc9\x75\xd5\x2d\x0c\xaf\xe2\xeb\x48\xc5\xf0\x68\x7b\x1c\x61\xb3\xb6\xaa\x4d\x20\x24\x4f\xc4\x80\xbc\xc4\x04\x0a\xcc\x7a\xcf\x08\x0b\xea\x7b\x37\x0e\xf5\xf3\x06\x01\x30\xab\x4b\x2e\xe7\x4d\x2c\x78\xa5\x8c\xea\xc4\x71\xbf\xee\x04\xbc\xdb\x14\xed\xf9\x6a\x8b\x05\xee\x11\xb7\xbd\x20\x84\x99\x21\xdb\x9b\x02\xe5\x11\xa9\xa5\x93\xe7\x5b\xbb\x57\xe5\x6e\xe6\x8e\xb0\x47\x27\x6d\xd8\xae\xe4\xc5\x86\x0e\xcb\x06\x27\x9f\xa7\xe2\x85\x88\xe8\x9f\x04\x49\x19\x0d\x11\xec\xc3\xbb\xdb\x3c\x2c\x69\x7e\x46\x5f\x10\x3e\x27\x18\x7a\x41\x29\x03\xe3\x49\xa4\x9e\x91\xc9\x32\x1b\x35\xbb\xf4\x24\xe1\xbc\x5c\x23\x32\xd0\x4b\x9d\xca\x5a\xee\x6c\xae\x23\xbc\x81\xd4\xcb\x9d\x16\x47\x6a\x88\xe3\x97\xa8\x3f\x82\x1a\xb0\x32\x3f\x77\x04\x5d\x7e\xc0\x7c\x5c\x34\xaf\x00\xff\xbe\xcb\x05\x86\x97\x3a\x4c\xde\x88\xfe\x03\x45\xe0\x0e\x40\x80\xfd\xfb\xba\xd7\x10\x27\x6b\xf8\x5f\x71\xca\xc8\x3d\xe9\xdd\xed\x1d\x15\xa6\x02\xc6\x01\x00\x00\x38\x00\xfc\x5f\xd7\xc1\x5c\xc1\x0c\xf5\x8c\xf4\x36\x0f\xdf\x5a\xc1\x3f\xb3\xbd\x96\xbe\xaa\x8d\xb5\x23\xd3\xf8\xc3\x5b\x83\x03\xf1\xd3\xd0\x3d\x7f\x8d\x5b\xc5\x42\x94\xe1\x8a\x62\x4a\x5e\x8c\xb7\x2f\xad\x2d\x37\x58\xad\xdc\xab\x7d\x5b\x69\x28\xaf\xb2\x0e\x58\xd6\xb7\x5a\xe1\xf2\x5f\x6e\x68\x70\xb9\x27\xf8\x22\x7f\x7e\xc8\x38\x4e\xd0\x1c\x9a\x07\x7c\xc2\x03\x33\xa6\xf1\x35\x76\xa6\x1c\x9d\xa5\xfc\x26\x8a\x6d\xd0\x52\x0b\xe9\x75\x6b\x85\x58\x2f\x6f\x50\x78\x1c\x88\xaa\x24\xf3\x4c\xea\xef\xe1\x55\x66\xf3\x27\x0f\x9b\x4c\x76\xaf\x87\xed\x0e\x0c\xaf\x79\x3e\x9c\xf0\x93\xe0\x67\x6a\x25\xff\x51\x0a\xf2\xbc\x7d\xaf\xcf\xc2\x0e\x99\xb3\xbf\x52\xa3\xb9\x7e\xa2\x48\x21\x37\x12\xf6\x1f\xd7\xf9\x32\x05\xd4\xf2\x51\x52\x1d\xa7\xf1\xd0\xf7\x7c\x11\x1a\xaf\x74\x78\x27\x34\x55\x01\xeb\x08\x6f\xdb\xd5\x44\x4b\x77\x2a\xdd\x2a\xdb\x89\xc1\x4f\xa6\x51\xcb\xbb\xc6\x78\x70\xcf\xce\x42\x94\x70\x9f\x3f\x8d\xdb\xf1\x5d\x81\xe1\x35\x82\x12\xc0\x43\x19\xf4\x7c\xef\xc1\xb7\xdc\x7c\x30\xd1\x57\xfd\x0d\x1b\x5f\x9b\xf4\xe8\x63\x14\xc4\x99\x74\x71\x4c\x31\x51\xdd\xd7\x1e\xb1\x75\x9d\x2e\xdb\x6b\x5b\x8f\xd0\x9c\x4f\x10\x76\x99\xa1\x15\x1f\xc0\x39\x7c\x75\x20\x13\xa4\xd7\xd6\x47\x14\xc6\x68\xa2\x63\x9d\x7a\x23\x3b\xbf\x88\xa4\xe1\x93\xf0\xe1\x4a\xe4\xd6\xd4\x28\x8f\xb9\xf9\x5d\x1c\x9b\x36\x84\x6c\x5b\x74\x29\x04\xd5\xc0\xc3\x71\x71\xc0\x7d\xc0\xd2\xfc\x5d\x70\x99\x7f\x20\xe4\x33\x11\x5b\xe6\x2e\xab\xe9\xe3\xc5\xce\x93\x55\x42\xba\xdc\x61\x8e\x75\x6e\xf5\x1b\x02\xa9\x28\x12\x28\x8d\xd3\xef\x63\x84\x38\x74\xa8\x6b\xf9\x67\x3c\xf9\x93\xbf\xcf\x93\x3f\x63\x0b\x76\x30\xfe\xc2\xbc\x0a\xe6\xb6\xbb\x0c\xc1\x9f\x89\xe7\x06\x79\xc6\xba\x4f\x05\x5f\x9c\xdd\x2b\xf5\xd2\xa9\x83\x6e\x06\x3e\x4c\x9f\xf5\xdc\x51\x71\xbc\xf0\x8d\x73\x41\xd4\xbd\xb7\x2b\xf9\x76\x24\x49\x9d\x6f\x86\xf3\x1f\xdd\xd8\x3b\xbc\xb4\xe9\x21\x87\x98\x4d\x59\xb8\x24\x7c\x1d\xd2\x1b\x69\x29\x2b\x43\x04\xbc\xbf\x72\xa6\xd6\x31\x44\x51\x44\xa7\xbd\x04\x0e\x85\x0e\xd1\xd8\x0f\x75\xb8\x65\x1d\x0f\x0c\xfe\x10\x56\x29\x4d\x2f\xe8\x15\x52\x8b\x84\x4a\x97\x21\x0f\x62\xeb\x9d\x3f\x48\x1a\xb1\x2f\xd6\x87\x76\xf3\x15\xb1\x5e\x9c\xeb\x05\xfe\x6e\x50\xbd\xf6\x31\x34\x56\x98\x15\x14\xf2\xd5\x86\x76\x1f\x3f\x8c\x92\x60\x0a\x20\x1e\x74\x43\x4a\x0f\xea\x77\xfe\xe0\xb8\xf5\xe9\xd1\x9e\x89\x73\x05\x23\x9c\xe6\x8c\xa0\x50\x43\xed\xbf\x32\x6d\x88\x7e\x62\x62\x65\x26\x6e\xd4\x4a\x25\x0a\x8b\x62\xd6\x14\x68\x17\xd8\x98\x5d\xa5\xb9\x11\xb1\x28\x2e\x30\x96\x8d\x4a\x49\xe1\x4b\xe2\x9a\xa0\x76\x3e\x3c\xa8\xfc\x40\x10\x4e\x30\x2f\x29\x35\x5f\xb7\x30\x1c\xf5\xe8\xf7\xbc\x4a\x72\xbb\xc8\x3b\x6b\x8d\xd0\xb8\xb9\x9a\xd8\x27\x9f\x31\x09\x31\xee\x72\x1c\x21\x4b\xac\x32\x68\x18\xea\xb9\xaf\x11\x30\x27\x77\x43\x8c\xde\xf9\xf2\x22\x76\x6f\x40\x72\x1f\x47\xf2\x89\x98\x82\x98\x4c\x28\xc8\x74\xd2\x30\x31\x1a\x2c\x18\x57\x3f\x82\xd6\x81\xfa\x88\xa5\xef\xf6\x67\x7a\x97\x46\x7a\x8f\x9b\x76\xb6\x3d\x5a\x92\x2d\x9e\xda\x25\xbc\x6e\x9f\x85\x2b\x91\xcd\x26\x63\xdb\x98\xb5\xcb\x25\xd3\x7a\x0f\xf5\xb3\xa3\x9c\xb7\x90\xd2\x01\x79\xb8\xba\x58\x46\xf4\xec\xd3\x60\xde\x77\xe2\x9e\x9d\x3f\x37\x31\xa0\xc5\x90\xb7\x5d\x98\x50\x98\x5f\x21\xa1\x0a\x5b\x78\xb7\xc9\x7b\x86\xbe\xa4\x52\xb8\x86\xc3\xab\x5f\xf8\x64\x59\xbd\xf0\x4d\x6d\xb1\x0f\x6c\x89\x71\xfe\x68\xf7\x52\x6a\xf7\x63\xb5\xf9\xab\x5d\xe1\xeb\x0e\x10\xb8\x22\xd8\xd4\xae\x10\xb5\x85\x3f\xd8\xf3\x66\xd5\x9b\x54\x36\x5b\x70\xa5\x22\xa7\x0d\xaf\x1d\x66\x87\x43\xf1\x33\x78\x9c\x96\x30\x2c\x7f\x4e\xac\xf2\xef\x50\x54\xee\xe1\xe3\xaa\xfa\x05\x17\xb5\x49\x43\xd4\x6f\x4b\x48\xcd\x52\x30\x61\x38\x67\x39\x5d\x36\x62\xe2\xd0\xfe\x6b\x35\x12\xb9\xe5\x8f\x5c\x3e\x57\xcc\xb2\xc4\x3f\xe6\x66\x73\xc5\x18\xf2\x44\x61\x24\x4f\x53\x6f\xe4\x8f\x79\x1a\x85\xec\xe1\x9f\x56\x95\xda\x73\x9f\x7b\xd9\x44\x3a\x86\xea\x30\x7c\x53\xae\x4b\x32\x86\xab\x8f\x7e\x8d\x54\xb0\x50\x1f\x80\xe6\x62\xed\x42\x93\x2d\xf6\x91\x7d\x4d\xb5\xbe\x30\x6a\x5d\x32\x63\x1e\x19\x5b\x34\x51\x33\xee\x6a\xff\x2d\xb9\x12\x4b\xc9\x10\x57\x89\xaa\x36\x45\xbe\xf3\xaf\x3d\x7d\xdd\x23\xe0\x33\xad\x21\xff\x88\xb2\xe7\xe6\x3b\xdc\xb6\x51\xff\x4f\x72\x86\x4b\x29\x17\x0c\xdc\x86\x04\x78\x67\x0c\xf5\xb5\x0c\xfa\x29\x9e\x41\x4d\x61\xc4\x78\x24\x10\x88\xac\xdd\xb8\xca\x74\xf5\xb5\xa3\x46\x49\xeb\x2b\x24\xb2\x8d\x54\x52\xf6\xec\xde\x79\x1f\xe7\x9e\x15\xb7\x93\x03\x80\x78\x04\x4b\x3f\xb7\x40\xc2\x90\xd7\x13\xdc\xe0\x5f\x3b\xef\xd0\x47\x3a\x59\xec\xa4\xa2\xe2\xf1\x8f\xde\xf3\x06\xf1\xe2\xec\xe1\x9f\x7e\xaa\x25\x20\x72\xac\xf6\x15\x6c\xa0\x0c\xef\xa5\x2c\x5b\xc4\xb9\xe6\xde\xc6\x9f\xaf\xf6\x93\x93\xb5\x85\x94\x3e\x62\x09\xde\xe1\xf1\xa3\xf5\x5a\x1c\x68\x33\x89\x73\x99\x1e\xb2\x91\xb6\x96\xca\x88\x9d\x3d\xfb\xbc\x16\xf5\x3f\x52\xd8\x98\xe4\x8d\xdb\x48\x89\xfc\x78\xa3\xe7\x36\x4c\x93\x2b\xe0\x93\xb9\x8b\xff\xcf\xe0\xc6\xa5\x25\xd5\x9a\xa7\x43\x33\x5e\x7d\xf3\xec\xbe\x52\xda\x08\x7a\xe2\x90\x5a\x68\xe9\x61\xcc\x15\x6b\x27\x2a\x79\x04\x6b\x81\x52\xda\x88\x2c\x36\x07\x7d\x6c\x5a\x28\x37\xc6\x09\x28\xd6\xca\x59\xfd\x58\x7e\xcf\xda\x71\xb2\x0f\x9c\x33\xe4\x4c\xd2\x2d\x7e\xd8\xd0\x95\x50\xc1\xa0\x52\xce\x98\xe4\x3e\x0e\xef\x5f\xd5\xd5\xd7\xcb\xde\x6b\x7a\xe4\x89\x3c\xb1\x03\xd5\x36\x68\x4d\xac\xf0\x84\xab\x17\x8a\xd6\xff\x48\x70\xc7\x59\x66\x08\x91\x96\xbc\x09\x2b\xaf\x24\xdc\xf7\x3e\xc3\x13\x50\xcb\x13\x72\xd3\x24\xb2\x47\xc6\xb4\xc5\x56\xb1\x89\xd5\x16\xb6\x70\xc9\xb7\xde\xa9\xe5\x9a\x66\xe3\x02\x73\xb1\x2d\xd8\x36\x41\x15\x7d\x05\x97\xc0\xfc\x58\xc8\x7c\x85\x44\x1d\x37\x44\xbc\x36\x55\xb2\x1a\x61\xd5\x40\x29\x78\xfb\x77\x6e\x57\x48\x77\x29\x0c\x25\xe2\x74\xdc\x79\xe7\x6a\x0d\x4b\x23\x35\x3d\x0d\xbb\x7f\xe5\xd5\x23\xe0\x84\x19\xbd\x65\x27\x30\x54\xf4\xbf\x57\xe6\x8e\xcd\xf7\xf9\xaa\x28\x24\x4b\x03\x7f\x72\x9e\xa1\x78\xda\xf4\x7e\xbc\xf4\x3e\xde\xf4\x01\xa8\xff\x51\xa0\xec\x57\xc8\xeb\x7d\x1e\x8f\xb8\x1f\x07\xd9\xed\xe5\xb8\xb0\x60\x34\xb0\xf3\xf5\x59\xdb\x09\x43\x9c\x94\x6b\x48\x4c\x64\xf8\xc4\x2f\xb6\x07\x92\x77\x1e\x19\x76\x51\x0e\xe9\x3b\x84\x07\x3c\x03\xbc\xe3\xff\x3f\x59\x01\x9d\x54\x26\xb9\xa4\x42\x19\x65\x5f\xda\x4e\x4c\x3d\x78\x16\xa8\x64\x70\x59\xb0\xfd\x0d\xa2\x3b\xfe\x16\x97\xb6\x85\x27\x07\xf5\x24\x57\x3c\x48\x30\xa0\xcf\xae\x15\xee\x87\x18\x1d\x26\x21\xfc\xf9\x6a\xa0\xbf\x78\xf7\x1a\x11\xfc\x39\xfe\xc2\x78\x37\xa9\xeb\xcd\xf0\x47\x23\xff\x39\xfb\xe8\x02\x83\x92\xd0\x7e\x9d\xa6\x45\xc0\xe8\x02\x13\x97\x45\x78\x83\x79\x6b\x75\x5b\x56\xb5\x4c\x2b\xd2\xc5\x55\xeb\xc2\x45\xfb\xe5\x98\xe7\xda\x76\xf6\x86\xe1\x7e\x6a\x5d\x3f\x6d\xc6\x3c\x5e\xc6\x1c\x6f\xc1\x8f\xa6\xfc\x91\x96\xdc\xd2\x96\x42\x02\x77\x3d\x9d\x10\xf7\xfc\x01\xf7\xdc\x22\xf7\xc2\x03\xf7\x9c\x24\xf7\x82\x05\xf7\xa2\x87\xe7\xec\xe8\xe7\x7c\xe6\x61\x19\x82\x8d\x5b\x1d\xe1\xd9\x6a\xe3\x79\xe7\x18\x07\x44\xf6\x32\x84\x56\xc0\x41\xb3\xbc\xbe\x25\x5b\xa6\xa5\x8c\xbe\xa5\xc4\xa2\x25\xa7\x43\xfd\x82\xa0\x3d\xa6\x71\x80\x44\xd5\x2c\x9f\x96\x6b\x0f\xcb\x22\xc8\xbe\x68\xb3\x2a\xea\xf0\x4f\x14\xde\xcb\x91\xcb\xae\x4b\xd8\x98\x5b\x9f\x5b\x82\x7a\x4e\x4c\xe1\x22\xfe\x70\x2f\x7c\x81\x2c\xe1\x3c\x1a\x91\xca\xb0\xc4\x70\xef\xe0\x05\xe6\x0a\x8d\x03\x21\x3d\xc7\x34\x26\xbf\x58\xca\x5f\x33\x1e\x27\x44\x75\xc8\x25\x50\x21\xc1\x30\xad\x08\x9f\xb5\x9b\x5c\x18\xc7\xe7\x6c\xa3\xe7\xb9\x33\x61\x5b\xb1\xfa\x64\xd6\x0f\x49\xb2\x84\x58\xf0\x09\xe3\xe5\xac\xab\xab\x07\xb4\xda\x2f\x13\x6c\x3c\x0f\x60\x60\x08\xed\x7b\x59\xa9\xd3\xab\x65\xa2\xb5\x7b\x14\x8b\x5f\xb7\x6d\xdc\xb5\x13\xd5\x9f\xfa\x36\xea\x12\x28\x55\xf7\x1d\x3e\x33\xbb\xf5\x9d\xf8\x08\x86\xec\xf3\x72\x58\xcd\x04\x73\xd5\xe5\x20\x59\x99\x89\x13\x2c\x4f\x06\x73\xd5\x51\x3f\x21\x92\x97\x8f\xb2\xb2\xaf\x6d\x52\x35\x36\x19\x4e\x98\xb4\x0f\x68\xad\x5f\x65\xa2\x78\xee\x62\x64\x3d\x75\xab\xb5\x5f\x65\x90\x10\xda\x0e\xa2\x0d\xa4\xdb\xf6\x47\xfd\xa8\xb8\xe4\x16\x7c\xd9\x69\x42\xb6\xa4\x00\xc4\x50\xc3\x9c\x79\x15\x47\xb1\xc4\xf7\x1a\x5b\x2b\x01\x2a\xcf\x1d\xd4\x6a\x99\x09\x26\xc1\xd6\xdb\xd3\x69\x3d\x3c\x86\x9d\x69\x82\xa4\xf5\xc1\xac\xab\xee\xa6\xc9\x7e\xfe\x1d\x79\xad\x92\x02\xcd\xff\x0f\xc9\x4a\xb2\xb4\x85\x98\x37\xbf\x9e\x7a\x3d\xfd\x05\x17\x03\xfe\x89\xe8\x9e\x9d\x4b\x1e\x01\xe4\xff\x37\x08\xfb\x34\xe3\x9b\x71\x4e\x0e\xaf\x0f\xaf\x9b\x67\x27\x74\x26\x74\xce\x89\x94\xfa\xa9\x42\x94\x43\x6b\xc2\x69\xfc\x9f\x0d\xa9\x8e\xad\xe4\xaf\x89\x28\x21\x0e\x22\x9d\x9f\x80\x1e\x60\xf4\xa5\xe1\xbe\x06\x85\x02\x9e\x0d\x79\x87\xe5\xbf\xa2\x0a\xf9\xe4\xbf\xc3\x16\xf9\xe0\xbf\x03\x35\x84\xa7\x97\x14\xd9\x2e\x54\x9c\x70\xfb\x7f\xb3\x44\xc7\xdf\x42\xf8\x66\x73\x90\x9d\xfe\xfc\x6f\xb6\x23\x64\xe7\x59\x2a\x96\x3c\x34\x87\x66\x70\xe7\x02\x16\xf2\x7b\x76\xa5\x8c\xfd\xcc\x93\x49\xc1\x4c\x6e\xe6\xf1\x47\xce\xc7\xa4\x4f\x93\xf0\x6a\x96\xb0\x30\x97\xd5\x52\x83\xe1\x42\xe6\x9b\xe0\xd3\x5e\x5d\xe3\xdb\x62\x25\x92\x8d\x85\xab\x96\xb8\x4d\xf0\x3a\x22\x08\xcf\x9d\xfd\xd6\xe4\x70\x6c\x32\x2d\x87\xfb\x1f\x1d\x97\xf3\x21\x0f\x82\x1a\x43\x5f\x55\x6b\x62\x13\xca\x8c\x28\xe9\xff\x61\xe9\x54\xab\xc3\x54\xca\x0c\xb0\x4a\xd5\xfb\xfe\x69\x53\xe7\xca\x4c\x38\x4b\x35\xc6\xcc\x55\x6b\xff\x69\xf5\x91\x2c\xd4\x7b\xf0\xe7\xab\x82\x39\xff\x2f\xab\x31\xa2\x39\x5f\x93\x58\x5f\x66\xcc\xf8\x4f\xcb\x37\x5f\x1d\xe5\x54\x66\x48\x74\xa2\x3e\xf0\x4f\x4b\x2c\xf7\x66\x76\x2c\xad\x2c\xfc\xc1\x53\x11\x47\x07\x9b\x8d\x1b\xac\xff\x0a\xf7\xda\x40\xc5\x1f\x0e\xfb\x98\x2c\xc0\x7a\x67\x78\x3c\x30\x1b\x5d\x4c\xa2\x2c\x5c\xe8\x2d\xfb\x96\xec\x8e\x29\xa5\xff\x0f\xa8\xea\x63\xfd\x03\x5b\x98\xf2\xff\x04\x59\x36\x2c\x8d\x02\x11\x98\xb1\x43\x0d\xef\x52\xba\xa5\x3c\x24\x26\x98\xa4\x08\xda\xb7\xff\x16\x1a\x98\xb4\x92\xca\x47\xe6\x8d\x4f\x6a\x9c\x96\x5a\x60\x69\xc0\xc3\x7c\xff\x5a\xe3\xbf\x86\xe1\x75\xa9\xbf\x9e\xbf\xdd\xeb\x14\x1a\x47\x0d\xf6\xa3\x41\x54\xe2\x6b\xfe\xa5\x92\xd8\x20\xdf\xad\xdd\x99\x59\x3a\xf3\x01\xaa\xc2\x08\xce\x60\x39\x0d\xdc\xf2\x46\x76\xb1\xd7\xb6\xde\x3d\x7f\xd8\x7a\x38\x7a\xd8\x7b\x38\x7b\xe8\xc0\x08\xce\xa8\xa2\x3b\x2e\xf9\x53\xaa\x59\x61\xde\x7c\xd5\x4f\x60\xd3\x76\x33\xce\x7f\xe1\x79\xd9\x05\x43\xe2\x79\x3d\x44\x9d\xe5\x79\xd5\x87\xf3\x43\xc0\xed\xfa\xfb\x63\xf1\xa5\xf2\x56\x51\xb7\x42\x50\x16\xbc\x70\x07\xe1\x68\xa3\x1d\x24\x0b\x22\xd0\xa5\xfd\xd6\x28\x12\xe7\x0b\x29\x15\x80\xbe\x4b\xf7\x8d\xd7\x86\xab\xd9\x32\x9a\xe8\xd4\x88\x9a\x7f\x69\x48\xde\xb9\x26\x2e\xe3\xd4\x88\xba\x75\xb1\x8f\xc9\xb9\x3a\x5c\xe7\xd4\x00\xa7\x75\xb1\xcf\xda\xb9\x36\x6d\xed\xd4\x84\xbb\x75\x69\xcc\xda\xb9\xb6\x0b\x9a\xc0\xb2\xea\xdf\xe2\xb1\x34\xa2\x7b\x5f\x93\x04\x3a\x35\x66\xf6\x58\x1a\xa1\x4a\xb3\xac\x19\xfa\x8f\x54\xf7\x61\x6b\xfd\x47\xbc\xdb\x4f\x3f\x4a\x49\x9e\xcb\x7d\x2a\x1b\x4c\x3d\xfe\x4f\x08\xf1\x57\xe4\xd1\x05\x83\xe1\x42\xfa\xbe\x53\x42\xb9\xd6\x36\x34\x14\x6d\xb6\xa3\x7f\x52\x15\x2f\x0b\x7e\xfc\xb8\xfa\xd8\xc1\xe9\x33\x0f\xed\x20\x2a\x25\x6d\x77\xf9\x45\x99\xa8\x6e\xf0\x6f\x89\xe2\xd9\x0e\x25\xff\x97\x3c\xbe\xa4\x4e\x43\x5c\x9c\x27\xc6\x00\xae\x60\x8c\x5d\x10\x75\x8b\x2c\x00\xd0\xd9\x22\xa7\x24\x25\xf7\x1e\x31\xb0\xd4\x60\xb5\xf2\x37\x6c\x26\x6a\xad\x56\x1a\x9c\x8a\x68\xe0\x5f\x84\xe3\x94\xc4\xf0\x72\x09\x95\x31\x66\x91\xcd\x7d\x9c\xa2\x5a\x94\x41\x85\xed\x33\xd9\xd8\x16\x47\x75\x9e\x9a\x04\x56\x55\x0d\xf2\x1e\x65\x1e\xee\xc4\xa0\x56\xa1\xaf\xc2\x56\xae\x52\xd0\x79\x35\x53\xdd\x87\x86\xb2\x1c\x51\xa9\x78\xa3\xc3\xfb\x9f\x1d\xc2\xdd\xe6\x3c\x2d\x78\x55\x89\x4b\x6b\xe6\xfa\xf1\x4d\xe4\xea\x9d\x35\x92\xac\x8c\x8a\x1a\xb5\x16\x31\xce\x7a\xee\x55\x5e\x5a\x31\xf8\x0b\xd2\xb1\xe5\x7d\x4c\x53\x6b\x87\x97\x8e\x08\x9d\xac\x79\x99\x7d\xc1\xae\xfd\xa2\xf4\xa8\x78\xc0\x85\x7a\x7a\xab\x70\xd2\x61\x5c\xba\x56\x06\x45\x48\xe9\x82\x35\xb3\x8b\x0f\x61\x9f\xf7\xa9\x9a\x12\x56\x89\xcf\x2d\x5d\xd2\x5e\x7a\x21\x74\xa5\x2a\x03\x17\xfa\x08\x0e\xad\x2e\x99\xde\xdf\xe7\x15\xf6\x93\x6e\x06\x1e\xb5\xde\x02\x44\xc3\xb2\x8d\xaa\x68\x78\x08\x3c\x91\x45\x71\x83\xce\xba\x85\xb6\xb6\x6d\xbd\x5c\x59\xc5\x14\xc3\xfe\xb8\xce\x52\x1c\x63\x8d\x85\x71\x49\xe1\xe4\x91\x2c\x0e\x7c\xb1\x73\x5f\x85\x7e\xe8\x14\xbf\x84\x14\x80\xa9\xec\xd4\xba\xc4\x7a\x05\x3a\xba\x84\x61\x29\xd2\x31\x49\xb1\x3e\x13\x4d\xfb\x3b\x92\x42\x0c\xe2\xd6\x24\xb6\x91\x6d\xfc\x11\xa7\x95\x93\x9f\x99\xa6\x73\xe4\xd2\x91\xe2\x9e\x16\xbc\x05\x04\xe5\x2a\xab\x4f\xcb\x58\xe8\x07\xcc\x6b\xa8\xca\x04\x4f\xc6\x82\x6b\x87\x2c\x85\x5a\xc7\x32\xab\xa3\xb5\x77\x88\x71\x04\xb0\x2a\x07\xa9\xaf\x79\x3d\x79\x37\x7a\x1f\xae\x03\x5e\x4d\x11\x0d\x89\xd5\x22\x70\xfa\x5f\xb6\x5b\xc1\xc3\xd4\xf3\xb1\x79\x25\x79\x15\xe5\x6e\x51\x1d\x7a\x95\xaa\xb5\x08\xd1\x1a\x7b\xa5\x7f\x8e\x18\xd4\xd4\x94\x31\x6b\x8d\x5c\xd9\xb7\x6b\x33\xbb\x8c\x40\x5c\x47\xb4\x91\x66\x0d\xa2\x74\x00\x9a\x91\x6e\x87\xff\xf9\x46\x5c\x03\xc4\x00\x28\x40\x10\x80\x04\xc0\x01\x54\x80\x19\xd0\x06\x00\x30\x64\xe0\x11\x80\x00\xc0\x5c\xc1\x8c\xa3\x20\xac\x21\x45\x30\x83\x3b\x96\x23\xf0\x1f\x00\x27\xf5\x95\x86\x33\xe7\x31\x84\xd3\xae\x07\x2d\x7a\xf6\x9b\xf5\x09\x23\x5f\xe4\x73\xb3\x9c\xe2\xfa\x70\xaa\xe0\x9c\xd0\xb4\xa3\xa4\xbd\x6a\x07\xbf\x29\x32\xeb\xf2\xe1\x3a\xd6\x6e\x71\xb4\x46\xf6\xcf\xb9\xa1\x2f\xcd\x9f\x7a\x58\xd1\x84\xe0\x96\x04\x0e\xe6\x88\x0e\x64\xdf\xe5\x62\x7d\x05\xfa\x4b\x86\xf9\xa9\x1e\x6d\xfb\x47\x23\x5f\xf0\x35\x73\x39\xf9\x3b\x1a\x84\x7a\x67\x64\xdd\x2a\xaa\x44\xb5\x39\x23\x34\xe6\xe0\x1c\x87\xcf\x94\x1e\x42\x02\xa9\xbb\x09\xe3\x32\x39\x88\xa9\x6e\xc9\xda\x5d\xd6\x14\x34\x92\x71\x37\x5a\xc0\xbc\xc3\x3f\x7e\xf1\xef\xd0\xc1\x9c\xd6\x8c\x53\x49\xa7\xf3\x0f\xa4\xb0\x0a\x26\x40\x71\x4d\xd1\x88\xbb\x82\x59\x76\x41\x44\x24\x82\x01\xc0\xe4\xc3\xdb\x41\xab\xe5\x5f\x15\xb7\x9f\x65\xb5\x50\xa3\x23\xde\x60\xb5\xa2\xbd\xdf\x66\xbc\xd0\x96\xba\xe4\x21\xd6\xb9\x51\x55\xf5\xe1\x26\x8e\x8a\x8e\x4e\xaa\x14\x6f\xc6\x6a\xd0\xf7\x2b\xe9\x53\x4c\x6f\xec\x67\xba\x94\x5d\xa5\xcf\xb4\x09\xb3\xd3\x9f\xe9\x33\x6e\xd9\x06\x69\xe2\x46\x6b\x06\xe9\xd2\x4e\xed\x07\x69\x93\x56\xaf\x07\xe9\xb3\x5e\xe1\x69\xfe\x54\x91\x85\xd1\x15\x36\xa1\x7f\xa5\x2b\xa8\x63\x1b\xa6\x2b\x6a\x83\xa7\x2b\xc9\xaf\xa1\x2b\x29\x29\x6c\xc1\x37\x2f\x29\x68\xe0\x3b\x2e\x29\x6a\x87\xc6\x37\xcf\xaf\xa6\x4a\x35\x2f\x6c\xc6\xd6\x34\x2f\xa8\xe7\x5a\x36\x2f\x02\x21\xf3\x1d\xe7\xd7\x32\xb5\x1c\x17\xb6\x0a\x72\xa5\xe9\x17\xd6\xaa\xba\x99\x26\x4a\xee\x6b\x59\x14\x31\x8a\x06\xba\x89\xe6\x1f\x25\xbe\x6c\x15\x05\xa9\xa6\xed\xd4\x34\xb6\x6b\x99\x26\x6d\x78\x3f\x19\xc6\x81\xac\x5b\xac\xb3\x88\xdd\x35\x73\x93\x56\xdc\x5b\xb7\x12\x1f\xba\x89\xdd\x36\x73\xde\x9e\x1f\x4d\x8a\x8b\x88\x3d\x72\x2b\xa3\x85\xd2\x4a\x3b\xbc\xa1\x71\x8d\xb2\xbb\xb8\x70\x0d\x92\x73\x82\x09\xf4\xe3\x63\xa4\x08\x76\x02\xaa\xfb\x09\x4c\xfd\xbf\x50\xf1\xe9\xe7\xd1\x52\xa5\x99\xa7\x2a\xb4\xf3\xec\xa5\x40\x20\xbb\x9f\x47\xe2\x20\xf3\x9e\x26\xef\x54\xf0\x6c\xff\x29\x35\x59\x39\x4b\xbf\x19\x87\x54\x6c\x87\x9e\x12\x95\x45\x25\xe8\x85\xba\x12\xf5\x17\x3b\x6f\xdd\xa9\xf0\xf8\xe8\x8f\x55\x4b\x8d\xeb\xd1\x4d\x4d\xfa\xa9\xb7\x79\xd8\x9d\xf2\x23\x51\xf3\x7b\x7a\xfa\x8f\xf8\xe1\x6d\x4d\xcd\x78\x14\x74\x67\x07\x36\x96\xc0\x69\x29\x81\x9f\x4f\x05\x92\x7d\x05\x50\xc5\x92\x29\x4f\x92\xdf\x44\x0d\x69\xac\xba\xe3\x13\xa1\x01\x22\x24\xd7\x2a\x00\xf8\x7f\x02\x00\x00\xff\xff\xf9\x29\x65\x75\xb4\x37\x00\x00") + +func staticFontsOpenSansRegularWoffBytes() ([]byte, error) { + return bindataRead( + _staticFontsOpenSansRegularWoff, + "static/fonts/Open-Sans-regular.woff", + ) +} + +func staticFontsOpenSansRegularWoff() (*asset, error) { + bytes, err := staticFontsOpenSansRegularWoffBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/fonts/Open-Sans-regular.woff", size: 14260, mode: os.FileMode(436), modTime: time.Unix(1494120194, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImagesCloseSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4b\x6f\xe3\xb6\x13\xbf\xfb\x53\xf0\xcf\xbd\xec\xe2\x1f\xbd\xa5\x58\xd2\x5a\x5e\xa0\x0d\x16\x58\xa0\xa7\x76\x8b\x9e\x19\x72\x24\xb3\xa1\x48\x95\xa4\xfc\xc8\xa7\x2f\xa8\xa7\x9d\x38\x40\x7d\xc9\xf0\xf7\x18\xcd\x4c\x86\xdc\x7d\x3b\xb7\x02\x1d\x41\x1b\xae\x64\x85\x23\x3f\xc4\x08\x24\x55\x8c\xcb\xa6\xc2\x7f\xfe\xfc\xee\xe5\x18\x19\x4b\x24\x23\x42\x49\xa8\xb0\x54\xf8\xdb\x7e\xb3\xfb\x9f\xe7\xa1\x5f\x35\x10\x0b\x0c\x9d\xb8\x3d\xa0\x1f\xf2\xc5\x50\xd2\x01\xfa\x7c\xb0\xb6\x2b\x83\xe0\x74\x3a\xf9\x7c\x02\x7d\xa5\x9b\xe0\x0b\xf2\xbc\xfd\x66\xb3\x33\xc7\x66\x83\x10\x3a\xb7\x42\x9a\x92\xd1\x0a\x4f\x86\xae\xd7\x62\x10\x32\x1a\x80\x80\x16\xa4\x35\x41\xe4\x47\x01\x5e\xe5\x74\x95\x53\xf7\x75\x7e\x04\xaa\xda\x56\x49\x33\x38\xa5\xf9\x74\x25\xd6\xac\x5e\xd4\xae\x9a\x53\x32\x88\xa2\xa2\x28\x82\x30\x0e\xe2\xd8\xd3\xac\xf6\xcc\x45\x5a\x72\xf6\x6e\xad\xe6\xd8\xdc\xb3\xc6\x61\x18\x06\xe6\xd8\xac\xca\xff\xa6\x2a\x8d\x62\xbc\x53\x8c\x2f\xf2\x19\xf0\x8d\xea\x35\x85\x5a\xe9\x06\x7c\x09\x36\x78\xfa\xf9\xb4\x90\x5e\xe8\x33\xcb\xae\xd2\xcc\xf3\xbc\xf9\xea\xcd\x90\x25\x69\xc1\x74\x84\x82\x09\x66\x7c\xf0\x9f\x38\xb3\x87\x0a\x17\xb9\x5f\x14\xe9\x36\x2b\xda\x76\x80\x0f\xc0\x9b\x83\x7d\x8f\x1f\x39\x9c\x7e\x51\xe7\x0a\x87\x28\x44\x0b\xb9\x46\xa3\x68\xdd\x9a\x68\x00\x38\xab\xb0\x39\x36\x69\x96\xa5\xe3\x79\xaa\xa0\x5c\x94\xa1\x5f\xc4\x7e\x84\xf4\x40\xcf\x6d\x96\x4c\x51\x57\x77\x85\xa9\x50\x06\x7c\x37\xba\xfd\x06\xa1\x1d\x83\xda\x38\xe1\x98\xd9\x9d\xd2\x2c\xcd\x31\x0a\x06\x76\xb1\x3b\x2f\x73\x15\xaf\xda\x67\x62\xc6\xbe\x11\xea\x48\x03\x54\x09\xa5\x2b\xfc\xa9\x1e\x7e\x13\xf1\xac\x34\x03\x3d\x53\x8f\xc3\xef\x86\x52\x1d\xa1\xdc\x5e\xc6\x5b\x31\xe5\x9e\x3b\x72\x59\x17\x3e\xbc\xcf\x9b\x03\x61\xea\x54\xe1\xf8\x2d\xf9\xaa\x54\xeb\x5c\x49\xf6\x96\xa1\xe7\x0a\xc7\x61\xe8\x27\x61\x16\xa7\xef\x48\x57\x4a\xfc\xe8\xa7\x71\xfa\x9e\x64\x8a\xf6\xee\xca\x78\xbd\xe4\xd6\x54\x78\xfa\x47\x5e\xdb\x7b\xad\x9d\x40\x90\x0b\xe8\x0a\x0f\x7f\xa2\x49\x64\x0e\xea\xd4\x68\x37\xb9\x9a\x88\x65\x74\x35\xb7\x5e\x4b\x74\xc3\xa5\x67\x55\x57\xe1\xf0\x3d\x2e\xa0\xb6\x77\x09\x3d\x2e\xd6\x1d\xe6\x59\x59\x3b\xf4\xff\xb6\xc0\x13\x97\x4c\x9d\xbc\x69\x55\xf3\xe4\xf1\x03\xc1\xbc\xb4\x79\xfe\x51\x8a\x73\x85\xb7\xf9\x47\x76\x37\xc5\xfc\x03\xae\x25\x67\xde\xf2\x57\x60\xae\xbc\x69\xcf\x5a\xb0\x84\x11\x4b\xd6\xed\x9a\x91\x34\xcb\xa2\x61\x53\x11\xda\x69\x56\x97\xbf\x3f\x7d\x1f\x4f\x08\xed\x28\x2d\xff\x52\xfa\x65\x3a\x22\x84\x9c\x80\x3c\xab\xde\x56\x18\xef\x17\x78\xc7\x68\x59\x2b\xdd\x12\xbb\xe7\x2d\x69\xc0\xbd\x1b\xff\x3f\xb7\x62\x17\xac\xc4\x8d\xd8\x5e\x3a\x58\x93\x8e\x69\x35\x8c\xaf\xc8\xdd\xa7\x94\xd1\x96\x3b\x53\xf0\x87\xe5\x42\xfc\x70\x1f\x99\x3a\xbb\x4a\xca\xad\x80\x15\xdc\x05\x53\xf5\x53\x6f\xc1\x55\x73\xbb\x60\xee\x7e\x38\x35\x6f\xe6\x28\xc8\x33\x88\x0a\xff\xe6\x96\x0b\x45\x6f\xa7\xdc\x68\xd5\x77\xad\x62\x30\xad\x1f\x5e\x67\x7a\xb3\x8e\x56\x13\x69\x5c\xf7\x15\x1e\x42\x41\x2c\x7c\xf6\xb2\xd8\xcf\x93\xac\x08\xd3\x07\x2f\x4f\xfc\x38\xcf\x93\xa8\xf8\x32\xcf\xbf\x23\xf6\x30\xf7\x64\xec\x45\x40\x85\xa7\xfb\x59\x46\x5f\x6b\x2e\x44\xf9\x29\x84\x78\x9b\x86\xc3\xc1\xbb\xe5\x3c\xdd\x0b\x28\xe1\x08\x52\x31\xf6\xd5\x58\xad\x5e\xa0\x94\x4a\xc2\x14\x8f\x3b\x59\xba\x1b\xbb\xcd\x93\x22\xcc\x67\x5c\x70\x09\x94\x74\xa5\xf9\xa7\x27\x1a\xae\xd1\xbf\x15\x97\xa5\x56\xbd\x9c\xf3\x79\x2d\xb7\xa0\x05\x6f\xb9\x2d\xd3\x19\x63\xc4\x1c\x88\xd6\xe4\x72\xf3\x35\x87\xaa\xba\x36\x60\xcb\x70\xc6\x96\x82\xf1\xdc\xa5\x5b\x44\xb4\xce\xa4\xd8\xfa\x69\x12\x26\x71\x86\x92\xcc\x4f\xb2\x2c\xd9\x66\x0f\x4b\x84\xbc\x39\x8c\x16\x10\x45\xa9\x1f\xa5\x71\x18\xc6\x0f\x63\xb4\x18\x1f\x16\xf5\x0a\x4d\x41\x3e\xbb\xa2\x07\x6f\x8e\xd6\xe4\x8b\x31\xbf\x97\x6b\x32\x2c\xc6\x2b\x67\xbe\x54\x75\x2f\xdb\x36\x42\xaf\x4b\xdb\x6e\x59\x34\x50\x9b\x45\xcb\x2d\xbe\x7e\xe4\x94\x94\x40\xad\xd2\x1e\xed\xf5\x91\xd8\x5e\xc3\xd5\x55\x0e\x9a\xfd\x66\xe7\xae\xd8\x7e\xf3\x6f\x00\x00\x00\xff\xff\x61\x76\xe4\x76\xf9\x08\x00\x00") + +func staticImagesCloseSvgBytes() ([]byte, error) { + return bindataRead( + _staticImagesCloseSvg, + "static/images/close.svg", + ) +} + +func staticImagesCloseSvg() (*asset, error) { + bytes, err := staticImagesCloseSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/images/close.svg", size: 2297, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImagesFailureSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5d\x8f\xab\x38\x12\x7d\xef\x5f\xe1\xe5\xbe\xcc\x68\xdb\x80\x69\xb8\x1d\x48\xe8\x91\x66\xaf\x66\x35\xd2\x3e\xcd\xce\x6a\x9f\x1d\xbb\x20\xde\x36\x36\xb2\x4d\x48\xfa\xd7\xaf\x6c\x3e\xf2\xd1\x69\x69\xf2\x02\x3e\xe7\x54\xb9\xaa\x5c\x29\xb3\xfb\xe5\xd4\x49\x74\x04\x63\x85\x56\x75\x44\xe2\x34\x42\xa0\x98\xe6\x42\xb5\x75\xf4\x9f\x3f\x7f\xc3\x9b\x08\x59\x47\x15\xa7\x52\x2b\xa8\x23\xa5\xa3\x5f\xde\x9e\x76\x7f\xc3\x18\xfd\xc3\x00\x75\xc0\xd1\x28\xdc\x01\xfd\xae\xde\x2d\xa3\x3d\xa0\x9f\x0e\xce\xf5\x55\x92\x8c\xe3\x18\x8b\x19\x8c\xb5\x69\x93\x9f\x11\xc6\x6f\x4f\x4f\x3b\x7b\x6c\x9f\x10\x42\xa7\x4e\x2a\x5b\x71\x56\x47\xb3\x41\x3f\x18\x19\x84\x9c\x25\x20\xa1\x03\xe5\x6c\x42\x62\x92\x44\x17\x39\xbb\xc8\x99\xdf\x5d\x1c\x81\xe9\xae\xd3\xca\x06\x4b\x65\xbf\x5d\x89\x0d\x6f\x56\xb5\x8f\x66\x7c\x09\x22\x52\x96\x65\x92\x66\x49\x96\x61\xc3\x1b\x6c\xcf\xca\xd1\x13\xbe\x35\xb5\xc7\xf6\x91\x69\x96\xa6\x69\x62\x8f\xed\x45\xf9\xd7\x54\x95\xd5\x5c\xf4\x9a\x8b\x55\xbe\x00\xb1\xd5\x83\x61\xd0\x68\xd3\x42\xac\xc0\x25\x3f\xfe\xfc\xb1\x92\x38\x8d\xb9\xe3\x57\x6e\x96\x7a\xde\xec\x7a\x53\x64\x45\x3b\xb0\x3d\x65\x60\x93\x05\x0f\xf6\xa3\xe0\xee\x50\x47\xa4\x8c\x37\x69\x5e\x90\xef\x01\x3c\x80\x68\x0f\x6e\x45\x5f\x5e\x03\x7a\x14\x30\xfe\xaa\x4f\x75\x94\xa2\x14\x15\x71\xf6\x52\x96\x79\x31\xbf\x14\x69\x36\x69\x2e\x0d\x43\x02\x20\x78\x1d\xd9\x63\x9b\x17\x45\x3e\xad\xe7\xcd\xab\x55\x99\xc6\x65\x16\x13\x64\x02\xbd\x64\x58\x71\xcd\x7c\xc8\x75\xd4\x50\x21\x07\x03\xb1\xaf\xdb\xdb\x13\x42\x3b\x0e\x8d\xf5\xd2\xc9\xb7\x5f\xe5\x45\xbe\x89\x50\x12\xd8\xd5\x81\xb7\xe6\x3e\xe4\x8b\x76\x4f\xed\x94\x34\x42\x3d\x6d\x81\x69\xa9\x4d\x1d\x7d\x6b\xc2\x6f\x26\xf6\xda\x70\x30\x0b\xf5\x3d\xfc\x6e\x28\xdd\x53\x26\xdc\x79\xfa\x4b\xcc\xbe\x97\x9c\xbc\xd7\x95\x4f\x1f\xf3\xf6\x40\xb9\x1e\xeb\x28\xbb\x27\x3f\xb4\xee\xea\x28\x8f\xd3\x97\x0d\x59\x4a\x7e\x45\xb3\x53\x1d\xe1\x8c\xc4\xa4\x4c\x09\x79\xf9\xc4\x9e\x3d\x1b\x93\x34\x4f\x49\x79\x4f\x72\xcd\x06\xff\xaf\xc1\x83\x12\xce\xd6\x51\xd7\x7d\x32\x1f\x8c\xf1\x02\x49\xcf\x60\xea\x28\x3c\xc8\x2c\xb2\x07\x3d\xb6\xc6\xd7\xaf\xa1\x72\x2d\x60\x23\x1c\xee\xa8\x69\x85\xc2\x4e\xf7\x75\x94\x7e\xc6\x25\x34\xee\x21\x61\xa6\xee\x7a\xc0\xec\xb5\x73\xbe\x0a\x9f\x2a\x37\x0a\xc5\xf5\x88\x97\x6e\x2d\xca\xcd\x17\x8a\xa5\x75\xf3\xfc\xfb\x17\x8a\xd3\xd7\xee\xcf\x75\x94\x17\x9f\x0e\x66\x26\x3b\x7a\x12\x9d\xf8\x00\x7e\xb1\x9f\xeb\xd9\x9f\x1e\x1d\x34\x3b\x00\x7b\x07\xb3\xd7\xd4\xac\xb5\x9b\x9b\xb4\x03\x47\x39\x75\xf4\xd2\x9a\x0b\x92\x17\x05\x09\x6d\x8e\xd0\xce\xf0\xa6\xfa\xe3\xc7\x6f\xd3\x0a\xa1\x1d\x63\xd5\x7f\xb5\x79\x9f\x97\x08\x21\x2f\xa0\x7b\x3d\xb8\x3a\x8a\xde\x56\x78\xc7\x59\xd5\x68\xd3\x51\xf7\x26\x3a\xda\x82\x9f\x38\x7f\x3f\x75\x72\x97\x5c\x88\x1b\xb1\x3b\xf7\x70\x71\x3a\xb9\x35\x30\xcd\x9f\x87\x43\x98\xb3\x4e\x78\xa3\xe4\xdf\x4e\x48\xf9\xbb\xdf\x64\xce\xec\xca\xa9\x70\x12\x2e\xe0\x2e\x99\xa3\x9f\x73\x4b\xae\x92\xdb\x25\x4b\xf6\x61\xd5\xde\xd5\x52\xd2\x3d\xc8\x3a\xfa\x97\xef\x49\x44\xee\x2b\xdd\x1a\x3d\xf4\x9d\xe6\x30\x77\x6d\x74\xa9\xe9\x4d\x17\x3b\x43\x95\xf5\xd9\xd7\x51\x78\x95\xd4\xc1\x4f\xb8\xdc\xc4\x69\xba\x21\x69\xf1\x8c\x09\x29\xe3\x3c\x2f\xc9\xe6\xe7\xa5\xfe\x3d\x75\x87\x25\x27\xeb\xce\x12\xea\x28\xcc\x85\xea\x5b\x1a\x7e\xdb\x46\x2b\x87\x03\x53\x29\x5f\x57\x39\x21\x47\x6a\x04\x55\xee\x06\x1b\x43\x5b\xde\x40\xd6\x19\x70\xec\x70\x8b\x89\x0f\xa8\x3a\xe0\x62\xe8\xb6\x52\x28\x98\xdb\xf9\x46\xd3\xd0\x4e\xc8\x73\x65\xa9\xb2\xd8\x82\x11\xcd\xcd\xae\x58\x8a\x96\xba\xc1\x80\x7d\x14\x13\xee\xb5\x15\x4e\x68\xf5\x90\x64\xb4\x7f\x6c\xa5\x86\x0e\x8c\x60\x0f\x39\x2a\x1d\x18\x45\xdd\xdd\x86\x0d\x84\x28\xb0\x05\xe7\x84\x6a\x57\xd2\xc1\xc9\x61\xa1\x38\x28\x57\xa5\xd3\x8a\x4a\xd1\xaa\xca\x3a\x6a\xdc\x04\x70\x60\xda\xd0\x39\x4c\x05\xf7\x20\xf6\x95\x79\xcc\x4c\x87\x61\xb5\x14\xfc\x13\x77\x7b\x76\x12\x9c\x03\x83\xfd\x95\x28\x54\xbb\x44\x37\x6a\xc3\xef\xb1\xe0\x67\x6d\x9f\x69\xdf\xd1\x08\x9f\x15\xf6\x8d\x57\x49\x83\xdd\x7e\xcb\x85\x01\x16\x62\x96\xce\x4c\x46\xda\x08\x50\x6e\x4a\xa4\x13\x27\xe0\x5b\xae\x3b\xa1\x7c\xd5\xfc\x55\x14\xd2\xa0\x83\xd3\xdb\x65\x85\xed\x41\x34\xae\x5a\x96\x73\x79\x14\x3b\x68\x33\xd7\x67\x3c\x08\x07\x21\xc2\xb5\xe7\xec\x81\xf6\x80\x7b\xca\xfd\xa7\x59\x95\x6e\x99\x14\x3d\x36\x43\x68\x4a\xf5\x01\x46\x6f\xb9\xb0\xbd\xa4\xe7\x4a\xa8\xe0\x55\x1f\xc1\x34\x52\x8f\xd5\x51\x58\xb1\x97\xb0\x0d\x4f\x21\x85\x3b\xaf\xd0\x7c\x8b\x55\x64\x2b\xac\x96\x53\x0a\x21\xd4\x4e\x9c\xf0\x5e\x82\xe2\x53\xee\x73\x0c\xa1\xb6\x58\x28\x07\xa6\x5f\xe4\xf6\x8f\x7f\xfe\xfa\x88\xc0\x8d\xf0\x2d\x63\x2b\x1f\x0c\x35\x5e\x15\x0e\xec\xee\x80\x26\xec\x12\xc7\x11\x98\xd3\x06\x43\xd3\x00\x73\xd3\x29\x34\x42\xca\xea\x1b\xd0\x8c\x67\x3c\x2c\xae\xe4\x61\x19\xaa\x00\x47\x50\x9a\xf3\xad\x75\x46\xbf\xcf\x7d\x33\xbd\x4f\xd7\x49\x45\xe2\x62\xf3\x9a\x97\x65\xb9\x59\x70\x1f\x19\xa3\x7d\xb5\x1f\x9c\xbb\xc6\xfe\xa7\x85\x3f\x49\x07\x66\x41\xc3\x42\x8a\x4e\xb8\x2a\x5f\x30\x4e\xed\x81\x1a\x43\xcf\x37\x7b\x79\x54\x37\x8d\x05\xdf\xf7\x33\x76\x09\x77\xaa\x93\x01\xc5\xc1\xf8\x63\x0c\xb5\x0e\xe3\xfb\x1e\x9c\x8e\xfb\x0e\x0c\x8d\x72\x87\x81\xa2\x7b\x09\x78\x4f\xd9\xbb\x1f\x92\x8a\x57\x94\xb1\xa1\x1b\xfc\xe4\x8b\x96\xb9\xe6\xaf\x1e\x44\xd2\x2c\x26\x59\x41\x8a\xe7\x75\x08\x22\x4c\xe2\xbc\x7c\x4d\x5f\x9f\xa7\xe7\x05\xd8\x3c\xe3\x2b\x88\x64\xd9\xa6\xf4\x22\x92\x65\x25\x9a\x25\xf9\x6c\xf4\xba\x1a\xe5\xab\x9b\x2f\x4c\xae\xbc\xde\x6f\x3c\x09\x9f\xf1\x6c\xb0\xe8\xee\x0d\x56\xe0\x15\x7d\xac\xe9\xf9\x6b\xc0\x8f\xf1\x82\xac\x9f\x03\xd7\x5f\x3d\x5a\xa9\xa9\xab\xd8\x60\x8e\x61\x5e\xf9\xbb\x7d\xbe\xa4\x93\xf6\xed\x69\xe7\x2f\xcf\xb7\xa7\xff\x07\x00\x00\xff\xff\x20\x17\x4c\x46\x0d\x0d\x00\x00") + +func staticImagesFailureSvgBytes() ([]byte, error) { + return bindataRead( + _staticImagesFailureSvg, + "static/images/failure.svg", + ) +} + +func staticImagesFailureSvg() (*asset, error) { + bytes, err := staticImagesFailureSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/images/failure.svg", size: 3341, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImagesProfileSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x5b\x93\xe3\xa8\x15\x7e\xef\x5f\x41\x34\x2f\x33\x15\x81\x41\x02\xdd\xda\xea\xad\xda\x9d\xda\x64\xab\xf2\xb4\xd9\x24\xcf\xb4\x84\x6c\x32\x12\x38\x80\xed\xee\xfe\xf5\x29\xd0\xcd\x76\x7b\x52\xa9\xca\x3e\x24\xd9\x51\x3f\x58\x7c\xe7\xc2\xb9\xe9\x1c\xe8\xed\x77\x2f\x43\x0f\x4e\xc2\x58\xa9\x55\x1d\x11\x84\x23\x20\x54\xa3\x5b\xa9\x76\x75\xf4\x97\x5f\x7e\x84\x45\x04\xac\xe3\xaa\xe5\xbd\x56\xa2\x8e\x94\x8e\xbe\x7b\x7a\xd8\xfe\x0e\x42\xf0\x83\x11\xdc\x89\x16\x9c\xa5\xdb\x83\x9f\xd4\x17\xdb\xf0\x83\x00\x1f\xf7\xce\x1d\xaa\xcd\xe6\x7c\x3e\x23\x39\x81\x48\x9b\xdd\xe6\x13\x80\xf0\xe9\xe1\x61\x6b\x4f\xbb\x07\x00\xc0\xcb\xd0\x2b\x5b\xb5\x4d\x1d\x4d\x02\x87\xa3\xe9\x03\x63\xdb\x6c\x44\x2f\x06\xa1\x9c\xdd\x10\x44\x36\xd1\xca\xde\xac\xec\x8d\xdf\x5d\x9e\x44\xa3\x87\x41\x2b\x1b\x24\x95\xfd\x70\xc1\x6c\xda\x6e\xe1\xf6\xd6\x9c\xd3\xc0\x44\xca\xb2\xdc\xe0\x64\x93\x24\xd0\xb4\x1d\xb4\xaf\xca\xf1\x17\x78\x2d\x6a\x4f\xbb\x7b\xa2\x09\xc6\x78\x63\x4f\xbb\x95\xf3\xdf\xe3\xaa\xac\x6e\xe5\x41\xb7\x72\x61\x9f\x01\x64\xf5\xd1\x34\xa2\xd3\x66\x27\x90\x12\x6e\xf3\xf9\x97\xcf\x0b\x11\x62\xd4\xba\xf6\x42\xcd\x1c\xcf\xab\x5d\xaf\x82\xac\xf8\x20\xec\x81\x37\xc2\x6e\x66\x3c\xc8\x9f\x65\xeb\xf6\x75\x44\x28\x45\x65\x4e\x32\x36\x0c\x01\xde\x0b\xb9\xdb\xbb\x15\xcf\x26\xfc\x24\xc5\xf9\x7b\xfd\x52\x47\x18\x60\xb0\x08\x2d\x6f\xf9\xc8\xb4\x56\x0d\x09\x80\x6c\xeb\xc8\x9e\x76\xc5\xb8\x98\xb6\xaf\x16\x36\x8c\xca\x04\x11\x60\x02\x79\xf6\xb1\x6a\x75\xe3\x8d\xae\xa3\x83\xd1\x9d\xec\x05\xf2\x91\x7b\x7a\x00\x60\xdb\x8a\xce\x7a\xd6\x51\xb1\x5f\x25\x11\xd8\x04\xd2\x22\xed\x45\x5b\x6f\xed\xca\xf8\xcc\xed\xe8\x33\x00\x07\xbe\x13\x8d\xee\xb5\xa9\xa3\x0f\x5d\x78\x26\xc2\xb3\x36\xad\x30\x33\x29\x0b\xcf\x15\x49\x1f\x78\x23\xdd\xeb\xf8\x45\x4c\xba\x67\x87\xbc\xd6\x85\x8e\xef\xd3\xed\x9e\xb7\xfa\x5c\x47\xc9\x2d\xf1\x4d\xeb\xc1\x6b\x4d\xe8\x2d\xa5\x79\xa9\x23\x92\xa4\xa8\x28\x32\x96\xbd\x23\xbe\xd6\x51\x82\x73\x54\x52\x96\x15\xb7\xc4\x56\x37\x47\xff\xb9\xc0\xa3\x92\xce\xd6\xd1\x94\xc4\x4b\xf1\xa3\x31\x9e\xa1\xe7\xaf\xc2\xd4\x51\xf8\x21\x13\x93\xdd\xeb\xf3\xce\xf8\xc8\x75\xbc\x5f\x42\xd7\x49\x07\x07\x6e\x76\x52\x41\xa7\x0f\x75\x84\xdf\xe3\xbd\xe8\xdc\x5d\x82\x19\x8b\xea\x0e\xe5\x59\x3b\xe7\xfd\x7f\x17\xb3\xb3\x54\xad\x3e\xc3\xb9\x4c\xd3\xec\x5d\x78\x26\x8e\xb9\x62\x73\xfa\x2e\x0c\x13\x87\x0f\x63\x86\xbf\xb6\x83\x4f\xe9\xd7\x24\x07\xfe\x22\x07\xf9\x26\x5a\x6f\xe0\x54\x69\x83\x70\xbc\xe5\x8e\xaf\xf5\x35\x23\x2c\x54\x29\x00\x5b\xd3\x76\xd5\xcf\x9f\x7f\x1c\x57\x00\x6c\x9b\xa6\xfa\x9b\x36\x5f\xa6\x25\x00\xc0\x33\xf0\x67\x7d\x74\x75\x14\x3d\x2d\xf0\xb6\x6d\xaa\x4e\x9b\x81\xbb\x27\x39\xf0\x9d\xf0\x2d\xe3\xf7\x2f\x43\xbf\xdd\xac\x84\x2b\x66\xf7\x7a\x10\xab\xd2\x51\xad\x11\x63\x03\xb9\xdb\x45\xdb\x66\x90\x5e\x68\xf3\x67\x27\xfb\xfe\x27\xbf\xc9\xe4\xd6\x85\x52\xe9\x7a\xb1\x82\xdb\xcd\x64\xfd\xe4\xdb\xe6\xc2\xb9\xed\x66\x76\x3d\xac\x76\x37\x41\xec\xf9\xb3\xe8\xeb\xe8\x4f\xbe\xb6\x00\xb9\x0d\xf1\xce\xe8\xe3\x61\xd0\xad\x98\xaa\x2f\x5a\x03\x7a\x55\x8d\xce\x70\x65\xbd\xf7\x75\x14\x5e\x7b\xee\xc4\x47\x48\x32\x94\xa6\x05\xcd\xca\x18\xb2\x14\xd1\x9c\x30\x52\x7e\x5a\xe2\x2f\x1a\x37\xfb\x64\xdd\x6b\x2f\xea\x68\xfa\x3c\x2b\x8c\xca\xa2\x0c\xcf\x63\x27\xfb\xbe\xfa\xd0\xe6\x5d\xdb\x75\x61\x01\x67\x26\x32\x2e\xcd\xb1\x17\x95\x38\x09\xa5\xdb\xf6\xd1\x3a\xa3\xbf\x88\x4a\x69\x25\xa6\xf7\xb1\x36\xab\x04\x25\x19\x26\x04\xa7\xc5\x8c\xf7\x52\x89\x86\x1f\x2a\xfb\x8f\x23\x37\xe2\x12\xfd\xbb\x96\xaa\x32\xfa\xa8\x66\x7d\x70\x90\x4e\x98\x5e\x0e\xd2\x55\x74\xc6\x5a\x6e\xf7\xdc\x18\xfe\x7a\xb5\x9b\x47\x75\xd7\x59\xe1\x2a\x3c\x63\x8b\xc1\xd1\xec\xae\x0f\x9f\x77\x9f\xd2\x32\x59\xc0\xdb\x5e\xbf\x10\x6e\xbb\xfd\x4a\x09\xdf\xcc\x14\xe2\x05\x7c\xad\xa3\x25\xd8\x0b\x68\x7c\x23\x42\x19\xc9\xb2\x94\x12\x01\x09\x5b\x2a\x6a\xdb\x48\xd3\xf4\xe2\xeb\x99\x28\xaf\x32\x91\xe3\xb2\x6b\xf1\x7f\x94\x09\x42\x7c\xdf\x66\xd9\x7f\x4b\x26\x0e\xdc\xed\x29\x2d\xd6\xb0\xfa\x96\x5e\x14\xa8\x48\x28\xc5\x6b\x7e\x7c\x2f\x27\x24\xf1\x91\x2d\x2f\x02\x5b\x47\x49\x86\x28\x2b\xd2\x34\x59\x63\xea\x55\x7e\x25\xa2\xe4\xff\x33\x90\xbe\xc3\x82\x82\xa0\x24\xa3\x05\xce\x62\x42\x0b\x84\xf3\x3c\xc9\x40\x03\x60\x42\x50\x59\x64\x45\x9e\xc4\x18\xc0\xb4\x44\x59\x91\xd3\xb2\x8c\x49\x8e\x72\x8c\xb3\xf4\x12\x1b\xdf\x18\x38\x01\x82\x51\x96\x17\x34\x01\x7b\x50\x52\x44\xcb\xb4\xcc\x53\x70\x02\x70\xc1\x1b\x80\xe3\x45\x35\x80\xb3\xb6\x18\xce\x3a\x16\xb5\xf9\x8a\xbd\xdd\xf9\x06\x8b\x35\x9b\xeb\xe4\xd5\x4a\x89\xc6\x69\x03\x9b\xa3\x39\x71\x77\x34\x62\x1d\x7f\x17\xc7\x20\xa5\x5b\xe1\x7b\xb5\xad\x23\x6b\x9b\xc6\x5a\xfb\x2f\x8b\x20\x1c\x5d\xaa\x0f\x38\x3c\x8f\x9d\x56\x0e\x06\x4a\xa5\xfc\xe0\xe8\x47\xe4\xc4\x8d\xe4\xca\x5d\x61\xe7\xd0\x03\xae\x20\xeb\x8c\x70\xcd\xfe\x1a\x93\x6f\xa2\x1a\x44\x2b\x8f\xc3\xa3\xcf\xfb\x34\x77\xaf\x78\x3a\x3e\xc8\xfe\xb5\xb2\x5c\x59\x68\x85\x91\xdd\xd5\xae\xb0\x97\xbb\xe0\xae\xbd\x67\x13\x3c\x68\x2b\x9d\xd4\xea\x2e\xb1\xe1\x87\xfb\x52\xea\x38\x08\x23\x9b\xbb\x34\xde\x3b\x61\x14\x77\x37\x1b\x76\x22\x58\x01\xad\x70\x4e\xaa\xdd\x42\x74\xe2\xc5\x41\xa9\x5a\xa1\x7c\x39\x86\x15\xef\xe5\x4e\x55\xd6\x71\xe3\x46\xa0\x15\x8d\x36\x7c\x32\x53\x89\x5b\x30\x7c\x11\xf7\x29\x63\x32\xac\xee\x65\xfb\x8e\x76\x9d\xbb\x5e\x38\x27\x0c\xf4\x87\x76\xa9\x76\xb3\x75\x67\x6d\xda\x5b\x2c\xe8\x59\xe6\xe3\xb8\xef\xd9\x48\xef\x15\xf4\x93\xb5\xea\x0d\x74\xcf\x8f\xad\xf4\xd5\xe8\x6d\xee\x9d\x19\x85\xb4\x91\x42\xb9\xd1\x91\x41\xbe\x88\xf6\xb1\xd5\x83\x54\x3e\x6a\xfe\xb4\x1c\xdc\xe0\x47\xa7\x1f\xe7\x15\xb4\x7b\xd9\xb9\x6a\x5e\x4e\xe1\x51\xcd\x5e\x9b\x29\x3e\xe7\xbd\x74\x22\x58\xb8\xd4\x9c\xdd\xf3\x83\x80\x07\xde\xfa\xcb\x63\x85\x1f\x9b\x5e\x1e\xc6\x16\xa4\xb4\x7a\x13\x46\x3f\xb6\xd2\x1e\x7a\xfe\x5a\x49\x15\xb4\xea\x93\x30\x5d\xaf\xcf\xd5\x49\x5a\xf9\xdc\x8b\xc7\xf0\x2b\x7b\xdf\x10\x66\x68\xed\x68\xd2\xea\x7e\x74\x21\x98\x3a\xc8\x17\xf8\xdc\x0b\xd5\x8e\xbe\x4f\x36\x84\xd8\x42\xa9\x9c\x30\x87\x99\xdd\xfe\xfc\x87\xef\xef\x11\x60\x27\x7d\xc9\xd8\xca\x1b\xc3\x8d\xe7\x0a\x09\xbb\x49\xd0\x88\xad\x76\x9c\xc6\xcf\x59\x74\x9d\x68\xdc\x98\x85\xb1\x11\x13\x5a\x60\xd1\xfc\xaf\x37\xe2\x29\x52\x46\xa8\x56\x18\x9f\xc8\x10\xed\x70\x42\xbd\x05\xc7\x84\xdf\x80\xa1\x54\x6e\x30\xa1\xf8\x73\x2f\xe0\x33\x6f\xbe\xec\x82\xcd\x15\x6f\x9a\xe3\x70\xf4\x87\xbb\x9b\xc6\x1f\xa6\x65\x41\xcb\xb8\xa0\xa8\x64\x0c\xe7\x85\x6f\xfc\x84\x21\x52\x50\x5a\x52\xdf\xf8\x93\x1c\x31\x92\x33\xc6\x62\x92\xa0\x34\x4d\x71\x5e\x2e\x60\xc6\xe2\xe9\xad\x48\x00\x8e\x47\x39\x06\x66\x46\x32\x52\x59\x96\x80\x1b\x01\x0f\xcd\xbb\x90\x18\x83\x19\x24\x31\x0c\xc2\x84\x24\x97\xd8\x22\x83\xe3\xc9\x38\x86\x53\x30\xb3\xa6\x31\x5c\xad\x80\xb7\x62\x01\x7d\x03\x03\xc0\x71\x86\x52\x86\x59\x42\x40\x03\x08\x45\x98\x62\x96\x85\xcd\x09\x22\x59\x8e\x19\x89\x73\x44\x92\x8c\x96\x17\xc8\xf4\x96\x11\xef\xde\x24\x03\xe0\xc4\x37\x52\x19\x09\xa3\xf2\x52\xc0\x43\x13\x37\x1b\x83\x38\xd2\x29\x8b\x83\x2c\x65\xf4\x0a\x9b\x85\xbc\x7b\xa3\x58\x4e\xc0\xb4\x09\x89\xe1\x6a\xc4\xad\x4c\x00\xaf\x87\xe3\x78\x2e\xa4\xb4\xcc\x7e\xa5\xf1\x38\x3f\xdf\x26\xe4\xb7\x09\xf9\x6d\x42\xfe\x96\x26\x64\x3e\xdd\x22\x59\xf2\x9b\x9d\x90\x84\xa5\xa8\x2c\x0b\xcc\xe2\x24\xa5\x88\xe5\x34\xf1\x37\x18\x58\x30\x94\xd0\x2c\x2f\x32\xdf\xdc\x09\xa3\x28\xa4\x26\x25\x69\x9c\x15\x28\x67\x69\x42\x6e\x60\xc2\x28\x38\x01\x8a\x51\xca\x18\xcd\xc1\x1f\x41\x42\xc1\x5f\x41\x5a\x14\x93\xce\x1f\x40\x42\xe3\x14\xe7\x28\x4b\x08\x2e\x40\x9e\x22\x4c\x69\x51\xa4\x71\xc2\x0a\xc4\xb2\x22\xcd\x2e\x4d\x59\xb0\x3d\x60\x39\x22\x34\x61\x39\x68\x40\x81\x51\xc9\x52\x92\xc7\x18\x90\x14\xc7\xb4\x44\x98\x25\x79\x12\x16\x24\xc5\x08\x63\x56\x64\x97\x56\xec\x41\xe2\x4d\x24\xa5\x47\xe1\x02\x87\x1b\xda\xe4\x61\x09\x60\xf0\x88\x91\xc2\x8f\x5e\x3a\xbb\x45\xca\x6c\x5c\xaf\xc3\xe7\xe2\x7f\x49\x03\x77\x46\xbe\x7c\xc4\xfe\x5a\xe9\xaf\xd8\x69\x8c\xfd\xdf\xba\xa4\x18\x31\x52\x94\x39\x9d\x0e\x1e\x69\x92\x7f\xba\x73\xb9\x2f\x8b\x5f\xf3\x8a\x77\x75\xd1\xdb\x6e\x76\x4f\x0f\xdb\x8d\x3d\xed\x9e\x1e\xfe\x19\x00\x00\xff\xff\xec\x26\x56\xd1\x97\x19\x00\x00") + +func staticImagesProfileSvgBytes() ([]byte, error) { + return bindataRead( + _staticImagesProfileSvg, + "static/images/profile.svg", + ) +} + +func staticImagesProfileSvg() (*asset, error) { + bytes, err := staticImagesProfileSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/images/profile.svg", size: 6551, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImagesSuccessSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\xaf\xe3\x26\x14\xdd\xe7\x57\x50\x66\x33\xa3\x3e\xe3\x6f\x27\xf6\x84\x8c\xd4\x8e\x46\x1a\xa9\xab\x76\xaa\xae\x09\x10\x87\x3e\x0c\x16\xe0\x7c\xcc\xaf\xaf\xf0\x67\xf2\x92\x27\x35\x9b\x70\xcf\x39\xf7\xc2\xbd\x3e\xb0\xfd\x72\x69\x24\x38\x71\x63\x85\x56\x18\xc6\x28\x82\x80\x2b\xaa\x99\x50\x35\x86\x7f\xff\xf8\x16\x6c\x20\xb0\x8e\x28\x46\xa4\x56\x1c\x43\xa5\xe1\x97\xdd\x6a\xfb\x4b\x10\x80\xdf\x0d\x27\x8e\x33\x70\x16\xee\x08\xbe\xab\x57\x4b\x49\xcb\xc1\xc7\xa3\x73\x6d\x15\x86\xe7\xf3\x19\x89\x11\x44\xda\xd4\xe1\x27\x10\x04\xbb\xd5\x6a\x6b\x4f\xf5\x0a\x00\x70\x69\xa4\xb2\x15\xa3\x18\x8e\x09\x6d\x67\x64\x2f\x64\x34\xe4\x92\x37\x5c\x39\x1b\xc6\x28\x0e\xe1\x22\xa7\x8b\x9c\xfa\xdd\xc5\x89\x53\xdd\x34\x5a\xd9\x3e\x53\xd9\x0f\x37\x62\xc3\x0e\xb3\xda\x9f\xe6\x9c\xf6\xa2\xb8\x2c\xcb\x30\x4a\xc2\x24\x09\x0c\x3b\x04\xf6\xaa\x1c\xb9\x04\xf7\xa9\xf6\x54\x3f\x4b\x4d\xa2\x28\x0a\xed\xa9\x5e\x94\xff\x4f\x55\x59\xcd\x44\xab\x99\x98\xe5\x13\x80\xac\xee\x0c\xe5\x07\x6d\x6a\x8e\x14\x77\xe1\xd7\x1f\x5f\x67\x32\x88\x10\x73\xec\xa6\xcc\x34\xcf\xbb\x5d\xef\x86\xac\x48\xc3\x6d\x4b\x28\xb7\xe1\x84\xf7\xf9\x67\xc1\xdc\x11\xc3\x02\x15\x65\x59\x96\x79\xd3\xf4\xe8\x91\x8b\xfa\xe8\x30\xcc\x51\x1a\xc5\xd9\x66\x9d\x8d\xf8\x49\xf0\xf3\x6f\xfa\x82\x61\x04\x22\x30\xe5\x80\x59\x35\x68\x16\xcf\xc4\x3d\x20\x18\x86\xf6\x54\x6f\x86\x60\xdc\xbc\x9a\x65\x11\x2a\x13\x14\x03\xd3\xd3\x53\x87\x15\xd3\xd4\x1f\x19\x43\xdb\x51\xca\xad\x45\x7e\x6e\xbb\x15\x00\x5b\xc6\x0f\xd6\x4b\x87\xc2\x3e\x4a\x20\x08\x7b\x6a\xce\xf6\xa9\xcc\x1f\x76\x11\xee\x89\x1d\x3a\x06\xa0\x25\x35\xa7\x5a\x6a\x83\xe1\x87\x43\xff\x1b\x89\xbd\x36\x8c\x9b\x89\x2a\xfa\xdf\x1d\xa5\x5b\x42\x85\xbb\x0e\xf7\x61\xac\x3d\x35\xe4\xab\xce\x7c\xf4\x9c\xb7\x47\xc2\xf4\x19\xc3\xe4\x2d\xf9\x53\xeb\x06\xc3\x14\x45\x49\x91\xc5\xeb\xb7\x2c\xbd\x60\x18\xc4\x31\x2a\x36\xe9\x26\x7e\x20\xaf\x18\xa6\x05\xca\xca\xb2\x48\x1f\x48\xa6\x69\xe7\x2f\x4c\xd0\x29\xe1\x2c\x86\xe3\x77\xbc\x4d\xef\x8c\xf1\x02\x49\xae\xdc\x60\xd8\xff\x4d\x65\xec\x51\x9f\x6b\xe3\xa7\x77\x20\x72\x1e\x5f\x8f\x76\x82\x71\x7b\x8f\xcf\x25\xa5\xa6\xaf\xcf\x04\x07\xe1\x82\x86\x98\x5a\xa8\xc0\xe9\x16\xc3\xe8\x11\x97\xfc\xe0\x9e\x12\x66\x30\xe4\x13\x66\xaf\x9d\xf3\xc3\x7b\x18\xf8\x59\x28\xa6\xcf\xc1\xe8\xf0\x4d\x5a\xbc\x23\x98\xcc\x9e\x65\xef\x29\x2e\x18\xae\xcb\xf2\x1d\xf2\x8a\x61\x96\x3f\x7c\xd0\x91\x6c\xc8\x45\x34\xe2\x27\x67\xfe\x7c\xa3\x4b\x1b\xee\x08\x23\x8e\x2c\xde\x9c\x90\xbc\x77\x38\x00\x5b\xc3\x0e\xd5\x9f\x5f\xbf\x0d\x11\x00\x5b\x4a\xab\x7f\xb4\x79\x1d\x43\x00\x80\x17\x90\xbd\xee\x1c\x86\x70\x37\xc3\x5b\x46\xab\x83\x36\x0d\x71\x3b\xd1\x90\x9a\xfb\xc7\xe6\xd7\x4b\x23\xb7\xe1\x42\xdc\x89\xdd\xb5\xe5\x4b\xd1\xa1\xac\xe1\xc3\xd3\xf3\xf4\xfd\x65\xb4\x11\x3e\x29\xfc\xcb\x09\x29\xbf\xfb\x4d\xc6\xb6\x6e\x8a\x0a\x27\xf9\x02\x6e\xc3\xf1\xf4\x63\x6f\xe1\x4d\x73\xdb\x70\x6a\xbd\x8f\xea\xb7\x46\x22\x7b\x2e\x31\xfc\xc3\x7b\x12\x3c\x78\xbb\x36\xba\x6b\x1b\xcd\xf8\xe8\x5a\xb8\x0c\xf4\xce\xc5\xce\x10\x65\x7d\xf7\x18\xf6\x4b\x49\x1c\xff\x18\xa4\x11\xca\xcb\x38\x4f\xf2\x97\x20\x5e\xe7\x28\x4b\xd7\x79\xfe\x69\x9a\x7f\x4b\xdc\x71\xea\xc9\xba\xab\xe4\x18\x1e\x84\x94\x95\xd2\x8a\x7f\xf6\xab\xc0\x74\x92\x57\xfc\xc4\x95\x66\xec\xb3\x75\x46\xbf\xf2\xea\x43\x44\xe9\x26\x8a\xc6\x70\x30\x5e\x15\xa3\x7c\xb3\xce\x27\x4c\x0a\xc5\x29\x69\xab\x7d\xe7\xdc\x2d\xf6\xaf\x16\xaa\x6a\x84\xe3\x66\x42\xfb\x40\x8a\x46\xb8\x2a\x9b\x30\x46\xec\x91\x18\x43\xae\xc3\x41\x46\x74\x7c\x74\xaa\xa9\x5f\x00\xbc\xa5\x40\x1a\xa3\x38\x4f\xd6\xe5\x4b\xbc\x5e\xa3\x22\x2a\xf2\x18\x24\x28\x8a\x8a\xa8\xc8\x5e\xc6\x05\x48\x51\x5e\xac\xb3\x32\x79\x09\x52\x54\xc4\xeb\xa2\x9c\x4b\xf8\x29\xfa\x29\x64\x79\x1c\x2d\xe0\xfc\x68\x68\xa5\x38\x75\xda\x04\xb4\x33\x27\xe2\x3a\xc3\x97\x0b\x78\xf3\x8a\x2b\xcd\xb8\xb7\x8b\xc5\x90\x52\x3a\x5d\x80\xb0\xde\xad\xb6\xde\x9b\xbb\xd5\x7f\x01\x00\x00\xff\xff\x16\xb9\x84\x0d\x67\x08\x00\x00") + +func staticImagesSuccessSvgBytes() ([]byte, error) { + return bindataRead( + _staticImagesSuccessSvg, + "static/images/success.svg", + ) +} + +func staticImagesSuccessSvg() (*asset, error) { + bytes, err := staticImagesSuccessSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/images/success.svg", size: 2151, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticImagesU2fTokenSvg = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5b\x59\x93\xe3\x38\x72\x7e\xef\x5f\x01\x73\x5e\x66\xc2\x04\x84\xfb\x50\x95\x7a\x23\xd6\x13\xeb\xd8\x08\x3f\xad\xd7\xe1\x67\x16\x09\x49\x74\xf3\x90\x49\x4a\x75\xfc\x7a\x47\x02\x20\x75\x94\x7a\x66\x8f\x8e\x18\xef\x76\xe9\xa1\x59\xc8\x0b\x99\x89\x04\xf0\x01\x64\x3f\xfe\xee\xa5\x6d\xd0\xc9\x0f\x63\xdd\x77\x9b\x8c\x11\x9a\x21\xdf\x95\x7d\x55\x77\xbb\x4d\xf6\x5f\x7f\xfe\x03\xb6\x19\x1a\xa7\xa2\xab\x8a\xa6\xef\xfc\x26\xeb\xfa\xec\x77\x9f\x3f\x3d\xfe\x0b\xc6\xe8\xdf\x06\x5f\x4c\xbe\x42\xcf\xf5\xb4\x47\x7f\xec\xbe\x8c\x65\x71\xf0\xe8\xc7\xfd\x34\x1d\xd6\xab\xd5\xf3\xf3\x33\xa9\x13\x91\xf4\xc3\x6e\xf5\x13\xc2\xf8\xf3\xa7\x4f\x8f\xe3\x69\xf7\x09\x21\xf4\xd2\x36\xdd\xb8\xae\xca\x4d\x96\x14\x0e\xc7\xa1\x09\x82\x55\xb9\xf2\x8d\x6f\x7d\x37\x8d\x2b\x46\xd8\x2a\x3b\x8b\x97\x67\xf1\x12\x7a\xaf\x4f\xbe\xec\xdb\xb6\xef\xc6\xa0\xd9\x8d\x3f\x5c\x08\x0f\xd5\x76\x91\x06\x6f\x9e\x45\x10\x62\xce\xb9\x15\xe5\x2b\xce\xf1\x50\x6d\xf1\xf8\xda\x4d\xc5\x0b\xbe\x56\x1d\x4f\xbb\x7b\xaa\x9c\x52\xba\x1a\x4f\xbb\xb3\xe4\x5f\x26\xb5\x1e\xfb\xaa\x3e\xf4\x55\xbd\x88\xcf\x04\x32\xf6\xc7\xa1\xf4\xdb\x7e\xd8\x79\xd2\xf9\x69\xf5\xf3\x9f\x7f\x5e\x98\x98\x92\x6a\xaa\x2e\xcc\xcc\xf9\xbc\xea\xf5\x2a\xc9\x5d\xd1\xfa\xf1\x50\x94\x7e\x5c\xcd\xf4\xa0\xff\x5c\x57\xd3\x7e\x93\x31\x4b\x09\xb3\xd6\xd9\x40\xdc\xfb\x7a\xb7\x9f\x36\x99\xe1\xc4\x69\x61\xac\x08\xd4\x53\xed\x9f\x7f\xdf\xbf\x6c\x32\x8a\x28\x92\x86\x68\xa3\x28\xe5\x88\x39\x22\xa8\xa2\x94\x45\xa1\x73\xc5\x44\x42\x5d\x6d\xb2\xf1\xb4\x8b\x86\xe7\xae\xd7\x8b\x18\x25\x8e\x13\x86\x86\xc0\x9e\xe3\x5b\x57\x7d\x09\x0e\x6f\xb2\x23\xdf\xe2\xa9\xff\xe2\x3b\x32\xe7\x6d\x31\xe1\x5f\x0e\xfd\x30\xe1\x6d\xdd\xf8\x28\xbb\xda\xf7\xad\x5f\x9d\xea\x15\x28\x55\xbe\xed\x57\x75\x5b\xec\xfc\xb8\x3a\x1b\x39\x74\xf7\x8d\xbc\x54\x87\x7a\x93\x71\xa6\x08\xb3\x94\xb3\xbb\x32\xaf\x37\x32\x9f\x3f\x21\xf4\x58\xf9\xed\x08\xc2\x31\x4e\x68\xf1\x0c\xad\x02\x6b\x09\x06\xbc\xab\x20\x79\x67\xc1\xa7\x62\x8c\xe9\x47\xe8\x50\xec\x7c\xd9\x37\xfd\xb0\xc9\x7e\xd8\x86\x5f\x62\x3c\xf5\x43\xe5\x87\x99\xa5\xc3\xef\x8a\xd5\x1f\x8a\xb2\x9e\x5e\xe3\xe4\x4c\xb6\x67\x9f\xc1\xea\xc2\xa7\xf7\xf9\xe3\xbe\xa8\xfa\xe7\x4d\xc6\x6f\x99\x6f\x7d\xdf\x6e\x32\x4d\x98\xd1\xda\x58\x79\xcb\x2e\x5f\x36\x19\xa3\x82\x08\x46\x85\x7d\xc7\x7c\xdd\x64\xd2\x10\xcb\xad\x62\xef\x0c\x57\x7d\x79\x84\xe9\x8b\x8f\x5d\x3d\x8d\x9b\xac\x6d\xdf\xa9\x1f\x87\x01\x04\x9a\xe2\xd5\x0f\x9b\x2c\x3c\x58\x12\x1a\xf7\xfd\xf3\x6e\x80\xf4\x6d\x8b\x66\xc9\xdf\xa2\xfa\x5c\x77\x55\xff\x8c\xe7\x82\x56\xee\x9d\x6f\x49\x62\xae\x6e\x6b\xdf\xa5\x25\x49\x40\x8d\x7f\x85\x05\xe9\xfe\x9a\xe1\xb6\x78\xa9\xdb\xfa\xcd\x57\x67\xf5\x6d\x3d\xe1\xb6\x18\x76\x75\x87\xa7\xfe\x70\x97\xde\xf8\xed\x74\x97\x31\x44\x37\xef\x70\x9e\xfa\x69\x82\x21\xa2\x97\x99\x39\xd6\x95\x1f\x37\xd9\x34\x1c\xdf\xa5\x26\xf0\xf0\xd3\x13\x4c\xde\x0b\x7e\x1a\x85\xc3\xcb\x5c\xb2\xad\x9f\x8a\xaa\x98\x8a\x73\xa1\xce\x14\x15\xca\x1d\xa1\xc7\xa1\xda\xae\xff\xf4\xf3\x1f\x62\x0b\xa1\xc7\xb2\x5c\xff\x77\x3f\x7c\x49\x4d\x84\x10\x08\x14\x4f\xfd\x71\xda\x64\xd9\xe7\x85\xfc\x58\x95\xeb\x6d\x3f\xb4\xc5\xf4\x39\x4c\x4a\x58\x06\xff\xf5\xa5\x6d\x1e\x57\x67\xc6\x95\xf0\xf4\x7a\xf0\x67\xa3\xd1\xec\xe0\xe3\xa2\x78\x77\x67\xa8\xca\xb6\x06\xa5\xd5\x7f\x4e\x75\xd3\xfc\x11\x3a\x49\x61\x5d\x18\xad\xa7\xc6\x9f\x89\x8f\xab\xe4\x7d\x8a\x6d\x75\x11\xdc\xe3\x6a\x0e\x3d\xb4\x76\x37\x19\x6d\x8a\x27\xdf\x6c\xb2\xff\x80\xfa\x44\xec\x5d\xbe\x87\xfe\x78\x68\xfb\xca\xa7\x0a\xce\xce\x09\xbd\xaa\xe8\x69\x28\xba\x11\xa2\x87\x61\x29\xba\xb1\x29\x26\xff\x23\x66\xd4\x12\xe1\x84\xd6\x39\x66\x52\x11\x2b\xb5\xe3\x3f\xcd\xf9\x3f\x14\xd3\x7e\x8e\x69\x9c\x5e\x1b\xbf\xc9\xd2\x3c\x5f\xb3\x87\x6d\xdd\x34\xeb\x1f\xa4\x33\xec\x49\x85\x06\xbe\xe6\xe1\xe1\xd8\xf8\xb5\x3f\xf9\xae\xaf\xaa\x87\x71\x1a\xfa\x2f\x7e\xdd\xf5\x9d\x4f\x7f\xc7\xc9\xb3\x16\x73\xb3\xa9\x3b\x5f\x16\x87\xf5\xd3\x71\x9a\x2e\x69\xff\xd3\xd7\xdd\x7a\xe8\x8f\xdd\x6c\x04\xb7\xf5\xe4\x87\xa6\x6e\xeb\x69\x2d\x67\x5a\x55\x8c\xfb\x62\x18\x8a\xd7\xab\x2e\x80\xda\x6f\xb7\xa3\x9f\xd6\x74\xa6\x2d\x5e\x66\x73\x68\x50\x7a\x48\x32\x49\xb4\x33\xdc\xe4\x4a\x09\xa2\x9c\xd3\x0c\x95\x08\x33\x22\x0d\x15\x2e\xa7\x08\x73\xa2\x95\x14\x39\x23\xcc\x0a\xc7\x97\x76\x7c\xa0\x06\x64\xb5\xc7\x32\xd7\x9c\x38\xce\xac\x41\x25\xa2\x79\xd4\xb7\x08\xb4\x24\x35\xb3\x74\x78\x48\x3d\x37\xf7\x88\x71\x43\x98\xa2\xc2\xa1\x12\x25\x9d\x9c\x46\x31\xee\x72\x3c\x77\xba\x10\x96\x5e\x29\x31\x4a\x52\x97\x63\x43\x8c\x70\x9c\x23\x49\x09\x63\xd6\xe9\x1c\x07\x96\xe3\xc1\x22\x33\x1a\x84\x28\xa1\x9c\x33\xc4\x09\xe3\x82\x2a\x68\x3b\xa9\x8d\x3c\x13\xd2\x1f\xe8\x84\xb0\xe4\x04\xc2\x50\x21\x0e\x1c\x4c\x08\x94\x34\x16\x49\x89\xf0\x8d\xae\x84\x54\x5c\x3b\x61\x94\x41\xf8\xc2\x51\x4e\x95\x00\xb7\x30\x25\x4c\x05\x55\x46\xa4\xe6\xc2\xa1\x14\x28\x5b\x02\xc4\xb7\x11\xbf\xa1\x16\x71\x4a\x94\x75\x56\xe6\x5c\x10\x6a\xa8\x80\x91\x52\x84\x0b\xce\x25\x98\x87\x51\x40\x8e\x48\x23\x45\x2e\x09\x97\x54\xf2\xd8\xd4\x2c\x87\x27\xd7\x1a\x61\x41\x38\x0c\x56\x54\x13\x08\x83\x20\x17\x36\x08\x08\xc9\x10\xbe\xd6\x50\x08\x83\x28\x93\x26\xc7\x82\x30\xe8\x21\x48\x70\x21\xf3\xa0\xcb\x98\x4d\x14\x98\x4b\xb3\x52\x14\xcd\x93\xae\x45\x49\x32\x09\x08\x85\x6e\x34\x34\x7a\x5b\xca\x12\x66\xf0\xe0\xcb\x49\x4a\xa7\xcf\xc4\x65\xf3\xea\xbb\xce\x97\x53\x3f\xe0\xf2\x38\x9c\x8a\xe9\x38\xf8\xf3\x1a\x7d\x81\x6e\xba\xbe\xf2\xb0\x54\x8d\x9b\x6c\x0c\xbf\x72\xfe\xa7\x84\xdf\xa2\x70\xb1\x3c\x8c\x65\xd1\xf8\x1f\x29\xe1\x5a\x2a\x2b\x84\xf8\x69\x59\xdb\x1e\xcb\x7a\x28\x9b\x65\xad\x1c\x36\x99\x22\x9a\x6b\xe6\xac\x5d\x0c\xc1\xa6\xcc\x94\x22\xd2\x31\x23\xcf\x54\xd8\xc7\xb9\x21\x56\x31\xc7\xae\x42\x8c\x26\xa5\x16\x2a\xfb\x95\xb5\x06\xf0\x8a\xdf\xfe\x1d\x6b\x0d\x25\xc6\x49\x4a\x29\xfd\x7f\xb0\xe8\x7c\x13\x68\x79\xcf\xd0\x3d\x78\x79\x4f\xee\x16\x62\x2e\x63\x7c\x67\xd5\x0f\xc0\x70\xfd\x03\x0d\xbf\x87\x6d\xdf\x4d\x38\x70\xd6\x1d\xec\xa6\x4d\xa4\x9c\x8a\xa1\x2e\xba\xe9\x8a\xf6\x1c\xe0\xcf\x15\x69\x9c\x06\x3f\x95\xfb\x6b\x5a\xfd\xe6\xd7\xad\xaf\xea\x63\xfb\x00\xe9\x4f\xb0\xe9\x4a\x66\x5b\xb4\x75\xf3\xba\x1e\x8b\x6e\xc4\xa3\x1f\xea\xed\x55\xaf\xb8\xa9\x77\x61\x12\x8c\xf7\x7c\xc2\x87\x7e\xac\xa7\xba\xef\xee\x32\xcb\xe2\x70\x5f\xab\x3b\xb6\x7e\xa8\xcb\xbb\xbc\xa2\x99\xfc\xd0\x15\xd3\x4d\x87\x5b\x1f\xbc\xc0\xa3\x9f\xa6\xba\xdb\x2d\xcc\xc9\xbf\x4c\xb8\xee\x2a\xdf\x41\x55\x84\x56\xd1\xd4\xbb\x6e\x3d\x4e\xc5\x30\x45\x42\xe5\xcb\x7e\x28\x92\x9b\x9d\xbf\x25\x86\xc2\xbc\xcf\x89\x83\x31\xf6\x4d\x5d\xbd\xe3\x5d\x8f\x5d\xe3\xa7\xc9\x0f\x18\x4e\x67\x75\xb7\x9b\xbd\x7b\xee\x87\xea\x96\x16\xec\x2c\xab\x42\xec\xf7\x79\xa8\x21\x2a\x0c\x70\x63\xdd\x0c\x78\x7a\x7a\xa8\x6a\x58\xa3\xc0\xe7\x66\x1a\xa2\x52\x3f\xd4\xbe\x9b\x62\x20\x6d\xfd\xe2\xab\x87\xaa\x6f\xeb\x0e\xb2\x06\x67\x91\x10\x46\x71\x9c\xfa\x87\xb9\x85\xc7\x7d\xbd\x9d\xd6\x73\x33\xa5\xa7\x2b\xf7\xfd\x90\xf2\xf3\xbc\xaf\x27\x1f\x3c\x5c\x6a\x6e\xdc\x17\x07\x8f\x0f\x45\x55\x81\xd3\xf4\xa1\x6c\xea\x43\x5c\x07\xba\xbe\x7b\xf3\x43\xff\x50\xd5\xe3\xa1\x29\x5e\xd7\x75\x17\xac\xf6\x27\x3f\x6c\x9b\xfe\x79\x7d\xaa\xc7\xfa\xa9\xf1\x0f\xe1\x59\x37\x30\x2f\x67\xd2\x79\x59\xa9\xc7\xbe\x89\x21\x04\x57\xdb\xfa\x05\x3f\x35\xbe\xab\x62\xec\xc9\x87\x90\x5b\x5c\x77\x93\x1f\x0e\xb3\xf8\xf8\xa7\x7f\xff\xfd\x3d\x06\xcc\xf0\xc9\x0f\xe3\x1a\x9c\x29\x06\x90\x0a\x03\x76\x33\x40\x91\x76\xf6\xe3\x14\x17\x79\xbf\xdd\xfa\x72\x8a\xa3\xf0\xcd\x56\x43\xc5\x1d\xd3\x5a\xcb\xdf\x6c\x35\x4c\x79\x1a\x7c\x57\xf9\x01\x86\x31\xe4\x3a\x2c\x77\xb7\xc4\x38\xdc\x37\xc4\x50\x28\x37\x34\xdf\x15\x4f\x8d\xc7\x4f\x45\xf9\x65\x17\x7c\x5e\x17\x65\x79\x6c\x8f\x80\x77\x97\xc5\xb0\x2d\xc6\x2f\x9b\x0c\xfc\x3c\xef\x50\x50\x3f\xb0\xf6\xdd\xd0\x03\x3a\x04\x6c\xec\xa8\x95\x39\x53\x94\x30\x6e\xb8\x49\xf0\x45\x6a\x66\x60\x7b\x17\x01\x11\xc0\x9e\xa9\xa8\xcb\x01\xfd\x18\x61\x13\x41\xb3\x1c\x9e\x42\x01\xac\x62\xc4\x18\xa9\x34\xa8\x47\xad\x3c\x58\x71\x02\x05\xc8\xa4\x41\x59\x68\xcd\x24\x3a\xeb\x0a\xad\x94\x45\x0d\xb2\x44\x72\x6d\x6d\x8e\xa5\xc7\x01\x96\xdd\xf4\x1f\xb6\x6c\xc6\x00\x74\x71\xe6\x84\x41\xa9\x5b\x20\x80\x0d\x09\xb0\xee\xbd\x03\x21\x0e\x05\x98\x27\xb8\xc0\x02\x85\xeb\x00\xee\x2e\x2c\xc4\x08\x00\x7f\x01\x8a\xb4\x2e\xe7\x44\xb1\x04\x93\x29\x61\x42\x49\x9e\x53\x42\x99\x50\x41\x4d\x58\x09\xb1\x49\x6e\xac\x48\x04\x0e\x02\x4a\x03\x90\x85\x44\x68\x27\xa5\x89\xd0\x6d\xc9\x03\x33\x21\x0f\x2e\xea\x6a\xc9\xd9\x45\x1e\xa4\x16\x5a\xa1\x3d\x32\x44\x3a\x63\x44\xca\x00\xf4\x7b\x99\x01\x41\x45\x08\x98\x59\x9e\x08\x2a\xe0\xd0\xa8\x1d\x32\x30\xf7\xfc\xb5\x0c\x84\x78\xb5\x16\xc2\xcc\x19\xd0\x89\x62\x61\x1c\x70\x72\x00\x5c\x8e\xd1\x53\x00\xb6\xe7\x2a\xa0\xcc\x8a\xab\x36\x37\x32\xa7\x4b\xee\x8c\xcc\x39\xb1\xc2\x52\xb9\x54\x91\x13\xd7\x55\xa4\x99\xcd\x43\x0c\x29\x79\x4b\x06\x94\xd1\x29\x79\xcc\xba\xaf\x56\x91\x0d\x89\x56\xee\x32\x7b\x4a\x2b\xa1\x50\x83\xae\x9d\x8f\x59\xb7\x37\x35\xc4\x21\x5c\x80\x6a\x16\x5d\xc5\x0f\x16\x52\x06\x63\xf7\x69\xec\xe6\xa9\x10\x13\x68\x84\x8d\x09\x57\x5c\x5f\x25\x30\xba\x0f\x69\x80\xa4\x58\x61\x42\x1e\xdc\xd7\x2b\x08\xbc\xe4\xdc\x38\x33\x57\x90\x08\xd3\x41\x52\xbd\x4c\x25\xf3\x8b\x53\x29\x64\x12\x5d\x4e\x43\xa5\x39\xda\xcf\x53\xe9\x97\x27\x11\xd4\xa1\x42\x57\x53\x00\xb4\x97\x49\xf4\x4b\x25\x24\xe3\xa4\x13\xea\x7a\x12\x45\xdf\x1b\x84\xe7\xb9\x4c\xff\xaa\x02\xba\x42\xce\xb0\x58\x49\x65\xdd\x37\x39\x1c\x94\x7f\xe1\xef\x03\x27\x7e\xe0\xc4\x0f\x9c\xf8\x0f\x84\x13\xa9\xe7\x46\xd2\x7f\xec\x53\xf3\x6f\x86\x13\x23\xf8\x8b\xf7\x16\x4a\xe7\x4c\x3a\x62\xb4\x0d\x77\x6a\x58\x10\xc1\x99\xe5\x39\x45\x58\x13\xaa\x38\x00\x22\x49\x99\x94\x4b\x5b\x11\xc3\x05\xd7\x88\xe6\x49\x16\x71\x62\x04\xa3\x36\x72\x8c\x44\x97\x82\x46\xa2\xb3\x49\x60\x88\x70\x0d\x26\x29\x67\x76\x69\x83\xa4\x44\x34\x9f\x7b\x47\x38\x98\xe4\x36\xb2\x44\xec\x7b\x96\x8c\xd7\x65\x34\x67\x84\x72\xe6\x00\xf3\x71\x62\x1d\x37\x2c\xa7\xe1\xc2\x8c\x4a\x93\x33\x62\xa9\x55\x6e\x69\x4b\x62\x28\x13\x88\xe6\x49\x14\x7a\x10\xc2\x68\x9d\x4b\xa2\x9d\x33\x32\xde\x84\x51\x61\xce\x84\xb3\x55\xe0\x71\xab\x59\x8e\xc1\xae\xa1\xe2\x82\x32\x8b\xd3\x7c\x56\x40\x60\x5a\x01\xa0\x8d\x9d\x06\x51\xc5\x96\xf6\xdb\xdd\x9b\x22\x79\xe7\x52\xe3\x6f\xbe\x0e\x83\xdf\xc7\x9e\xf6\xb1\xa7\x7d\xec\x69\xdf\xd7\x9e\xf6\xfd\xde\x7d\xc4\x3d\x4d\x49\x42\x85\x92\x32\x67\x9a\x12\xe7\xb8\x8e\xc7\x69\x6e\x9d\x0e\x07\x15\x4a\xe1\xec\x68\xb9\x8d\x27\x37\x2e\x39\x73\x81\x60\x64\xe0\x2b\xc1\xb8\x80\xa3\x10\x27\xd4\x48\x21\xe6\x63\x4c\xbc\x7d\xb0\x46\x85\x33\x9c\xb2\x8a\xc6\xb3\x24\xd7\xca\x01\xc5\x1a\xc1\x45\xa4\x18\xcd\x50\x83\x24\x51\xe1\xfc\x24\x89\xd5\x32\x9e\x48\x25\xd5\x0c\x0e\x73\x54\x72\x38\x7e\x59\xcd\xe3\xbb\x2a\x26\x4c\xb8\xd4\xb0\x86\x1b\xfb\xce\x09\x21\x44\x72\xe1\x2b\xbe\x08\x67\x59\xf2\x85\x86\x03\xa5\xe5\x46\xb8\xe4\x0b\x75\xf1\x60\x6f\xb9\xb2\x32\xc7\x3c\xde\xb0\x04\x7d\xeb\x4c\x8e\x19\x4d\x47\x31\x2b\x68\x3c\x96\x0a\xe3\x78\x24\x30\xa9\xf2\xd9\xc8\x09\x45\x17\x96\xc0\x18\x25\xd4\x50\xcd\xcf\x4e\x51\xc2\x1d\x55\x1a\x51\xa2\x24\x6c\xa3\xe0\x1a\x17\x21\x52\x11\x0e\xea\x21\xaa\x16\x59\xc2\xb8\x82\x9e\x89\xa6\xd4\x30\x74\x42\x21\x4c\x6a\xd2\xf9\xd1\x84\xd3\x32\x65\xe7\x51\x90\xf1\x6c\x1d\x79\x9c\x68\xe6\x6c\xb8\x2e\x51\xce\x05\x6d\xe6\x38\x1c\x7e\x71\xa4\x44\x6c\xc0\x89\x16\x96\xdf\x88\x09\xce\x62\x3a\x94\x73\xa9\x93\x59\xda\x08\x6b\x5c\x3c\x41\x1b\x3e\xfb\x64\xd5\xad\x4f\x6f\x7f\xcb\x5d\xdb\x72\xaa\xfd\x56\xaf\xbc\xfe\xce\xf3\xec\xed\x1b\xa8\x6f\xb0\xee\x50\x41\x85\x34\xc6\xdd\xae\x3b\xe3\xff\x1e\x8b\xc1\xff\x06\x2f\xbe\x19\xb7\x44\x19\xa9\x75\x9e\xde\xda\x05\x74\x4b\x73\x4a\xa4\xb0\xe9\x0e\xd3\xc6\x71\xb5\x3c\xcc\x30\xc3\x43\x99\xa6\x56\x90\x02\xe4\x07\x0c\x1e\xa6\x93\xb0\x52\xf3\x4b\x02\x88\xd2\x7c\x16\x0e\xcb\x8c\xd4\x7c\xe1\x80\xc5\x73\x63\x36\x18\xc9\xb3\xb5\xb9\x05\x32\xef\xaf\x41\x14\x93\xfc\xdb\x81\xc2\x0f\x3c\xf8\x81\x07\x3f\xf0\xe0\xf7\x85\x07\x8d\x13\x46\x3a\xf7\x6e\x5d\xfe\x5e\xf0\x20\x53\x84\x69\x17\x76\x01\x4e\x84\x71\xf1\x8e\x83\x11\xe5\xac\x16\x79\xfc\xe0\x85\x13\x4b\xb9\xcb\x19\x61\x54\xc5\x96\x00\x40\x40\x85\x96\x28\x7c\xe7\x92\xc4\x11\x23\x9c\x4a\xc9\x23\x93\x6b\x14\x44\xa9\x8a\x6d\xa1\x51\x90\xb3\x3a\xe7\xf1\x82\x3b\xb0\x6d\xf8\x0c\x88\x51\xc9\x12\xc1\x85\x4f\x8a\xc2\x15\x82\xf3\x38\x70\x41\xcb\x80\x57\x9c\x2a\x26\x23\x5b\x72\x11\x7d\x99\xdb\x01\xa9\x28\xd0\x88\xbb\x45\xf8\xfc\x49\x3b\x0b\x20\x8e\x18\xe8\x8f\x11\x6b\xa9\xb5\x39\x25\x86\x51\x63\x62\xdb\xa9\x3c\x3c\xb5\x44\xd8\x80\x76\xd4\x0a\x2f\x30\x0c\x63\xd4\x46\xb6\x12\xd0\xff\x85\xbc\xd0\xe1\xab\x25\xed\xb4\xcb\x83\x62\xe0\x1b\xe7\x02\x42\x35\x8c\x0a\x9e\x34\xe2\x87\x4e\xd6\x22\x93\xc2\x61\xda\x01\x9c\x05\x19\x9d\x27\xab\x02\x5d\xc9\xb2\xbb\x77\xfe\xec\xdb\xdc\x80\xfc\x2a\x0a\xfa\xf5\x8f\x88\xc2\x77\x44\xe7\x7f\xc7\xf1\xaf\x76\x6c\xd9\xc2\x39\x33\xb7\x35\x49\x09\xe5\x0c\x6a\x72\xfe\x34\x31\x82\x68\x4d\x39\x35\x00\x39\x18\xd1\xdc\x86\xdb\x2d\xed\xc4\xb9\xa9\x39\xe0\x58\xa6\x09\x95\x36\x61\x99\xa0\x82\x40\x52\x39\x11\x44\x2c\x3a\x8b\x03\x4a\x16\x02\xce\x1b\xe1\xfc\x31\xdb\x0f\x96\x60\x1c\x28\xd7\x5c\x9d\x9b\x9a\x5b\x91\x5e\x03\x09\xce\x84\x46\x0d\x72\xc4\x5a\x9b\xa7\xaf\xca\x82\x11\xc5\x25\xb3\xe9\x20\xc1\x88\xb4\xa1\x1c\x9c\xe6\x96\xcf\x4d\x78\x98\x60\x86\x12\x65\x58\xfc\xce\x2e\x29\x86\x0f\xed\xb4\xa4\x51\xcc\x30\x1d\xc2\x5b\xd4\xc0\x61\x1c\xfa\x8c\x6e\xa4\x38\xe7\xdc\x20\x9c\x72\x92\x07\x17\x5d\x4c\x8d\x9b\x5b\xe9\x05\x1c\x80\x38\xc3\x45\x8c\x9d\xa5\xd8\x99\xd1\x01\x7b\x39\xaa\x03\x04\x5c\xfe\xd4\xe9\x9d\x9b\xa5\xe1\x1e\x31\xce\x2f\x9e\x5e\x11\x32\xa3\x2d\x20\x44\xe1\xb4\x83\xb6\x70\x3a\xb4\x0c\xda\x23\x06\x62\xf1\x75\x35\x75\x56\x44\x64\xa7\x41\x5b\x6b\x6d\xd4\xd2\x32\xe1\xed\x6c\xc8\x45\x1a\x34\x10\x0f\xe3\xad\xb5\x61\x49\x02\x5f\x8a\xef\x43\xee\xa2\x75\x9c\xbc\xc9\x43\xc6\x01\x85\x3a\xe5\x60\x8e\x33\x63\x2c\x8f\x84\xd9\xa9\xf0\x02\x75\xa9\x0d\x66\xe2\x24\x07\x78\xe9\x68\xd0\x8d\x21\x43\x63\x8f\xf0\x52\x19\x78\x4e\x4f\x90\x08\x47\x52\xc3\xdd\x45\xcb\xc5\x2f\x27\x2f\x2a\x2f\xaa\x40\x4d\x45\x24\xec\x28\x34\xec\x2c\x7e\xf9\xbd\xdf\x07\xbe\xfc\xc0\x97\x1f\xf8\xf2\x03\x5f\xfe\xb3\xe0\xcb\xf4\xff\x3c\x56\xbb\xcf\x9f\x1e\x57\xe3\x69\xf7\xf9\xd3\xff\x05\x00\x00\xff\xff\x07\x57\x42\x8b\xe8\x37\x00\x00") + +func staticImagesU2fTokenSvgBytes() ([]byte, error) { + return bindataRead( + _staticImagesU2fTokenSvg, + "static/images/u2f-token.svg", + ) +} + +func staticImagesU2fTokenSvg() (*asset, error) { + bytes, err := staticImagesU2fTokenSvgBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/images/u2f-token.svg", size: 14312, mode: os.FileMode(420), modTime: time.Unix(1494464184, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xcd\x8e\xdb\x38\x13\xbc\xf3\x29\x3a\xba\x24\x01\xfc\xf3\x65\x2e\x1f\xb0\xb1\x07\xa0\x25\x7a\x4c\x40\x16\xb5\x24\x35\x13\xdf\x22\x4b\xf4\x98\x59\x49\xd4\x92\x94\xb3\x7e\xfb\x05\x65\xcf\xdf\x06\x8b\xe4\xb2\x27\xb5\x9a\xd5\xd5\x55\x25\x42\x8b\x77\xd3\x29\x8a\x4d\x7f\xb6\xfa\xf1\xe8\xe1\x43\xfc\x11\x6e\xfe\xf7\xe9\xff\x13\xb8\xd7\x70\x67\xd5\x19\xe1\xa6\x81\xf1\xcc\x81\x55\x4e\xd9\x93\xaa\x67\x08\x71\x55\x6b\xe7\xad\xde\x0f\x5e\x9b\x0e\xca\xae\x86\xc1\x29\xd0\x1d\x38\x33\xd8\x4a\x8d\x9d\xbd\xee\x4a\x7b\x86\x83\xb1\xad\x9b\xc0\x77\xed\x8f\x60\xec\xf8\x34\x83\x47\xad\xa9\xf5\x41\x57\x65\x20\x98\x40\x69\x15\xf4\xca\xb6\xda\x7b\x55\x43\x6f\xcd\x49\xd7\xaa\x06\x7f\x2c\x3d\xf8\xa3\x82\x83\x69\x1a\xf3\x5d\x77\x8f\x50\x99\xae\xd6\x61\xc8\xa1\x30\xd4\x2a\xff\x1b\x42\x9f\x66\xf0\x56\x92\x03\x73\x78\xd2\x52\x99\x5a\x41\x3b\x38\x0f\x56\xf9\x52\x77\x23\x61\xb9\x37\xa7\x70\x74\x75\x8e\x00\xa0\x33\x5e\x57\x6a\x02\xfe\xa8\x1d\x34\xda\xf9\xc0\xf1\xb2\x6e\xf4\xf4\x56\x4b\xad\x5d\xd5\x94\xba\x55\x76\x86\x6e\x7e\x94\xa0\xbb\xd7\x19\x3c\x49\xe8\xad\xa9\x87\x4a\xfd\x17\x2a\xe0\x62\x2e\xd0\xd4\xa6\x1a\x5a\xd5\xf9\xf2\xe9\x03\xcd\x8d\x05\xe3\x8f\xca\x42\x5b\x7a\x65\x75\xd9\xb8\x97\x9c\xc7\x8f\x13\x58\x5f\x1b\x98\x21\x24\x37\x54\x80\x60\x6b\xf9\x80\x39\x01\x2a\x20\xe7\xec\x9e\x26\x24\x81\xd5\x0e\x70\x21\x37\x8c\x03\xce\x12\x88\x59\x26\x39\x5d\x15\x92\x71\x01\x5f\xbf\x62\x01\x54\xbc\x7f\x1f\x8e\x10\xce\x76\x40\xbe\xe4\x9c\x08\x01\x8c\x03\xdd\xe6\x29\x25\x09\x3c\x60\xce\x71\x26\x29\x11\x13\xa0\x59\x9c\x16\x09\xcd\xee\x26\xb0\x2a\x24\x64\x4c\x42\x4a\xb7\x54\x92\x04\x24\x9b\x80\xdc\x10\xf4\xe3\x18\xb0\x35\x6c\x09\x8f\x37\x38\x93\x78\x45\x53\x2a\x77\xa3\x94\x35\x95\x59\xd8\xb5\x0e\xd2\x20\xc7\x5c\xd2\xb8\x48\x31\x87\xbc\xe0\x39\x13\x04\x05\x27\x09\x15\x71\x8a\xe9\x96\x24\x33\xa0\x19\x64\x0c\xc8\x3d\xc9\x24\x88\x0d\x4e\xd3\x27\x63\x8c\xbf\xf5\xb5\x22\x90\x52\xbc\x4a\x09\x1a\xb9\xb3\x1d\x24\x94\x93\x58\x06\x03\x2f\x55\x4c\x13\x92\x49\x9c\x4e\x40\xe4\x24\xa6\xa1\x20\x5f\xc8\x36\x4f\x31\xdf\x4d\xae\x9c\x82\xfc\x5e\x90\x4c\x52\x9c\xa2\x04\x6f\xf1\x1d\x11\xf0\xe1\x27\x21\xe4\x9c\xc5\x05\x27\xdb\xa0\x92\xad\x41\x14\x2b\x21\xa9\x2c\x24\x81\x3b\xc6\x12\x81\x18\x07\x41\xf8\x3d\x8d\x89\xf8\x0c\x29\x13\x63\x3e\x85\x20\x13\x48\xb0\xc4\xe3\xe2\x9c\xb3\x35\x95\xe2\x73\xa8\x57\x85\xa0\x63\x4c\x34\x93\x84\xf3\x22\x97\x94\x65\x1f\xd1\x86\x3d\x90\x7b\xc2\x21\xc6\x85\x20\xc9\x98\x27\xcb\x46\xab\x72\x43\x18\xdf\x05\xd2\x90\xc1\x18\xf7\x04\x1e\x36\x44\x6e\x08\x0f\x11\x8e\x49\xe1\x10\x81\x90\x9c\xc6\x12\xbd\x82\x31\x0e\x92\x71\xf9\xca\x23\x64\xe4\x2e\xa5\x77\x24\x8b\x49\x38\x65\x81\xe5\x81\x0a\xf2\x11\x30\xa7\x22\x00\xe8\x65\xed\x03\xde\x21\x56\x8c\x96\xe5\x86\x04\x43\x97\xf2\xd5\xb5\x9c\x8c\xdf\x0e\xe8\x1a\x70\x72\x4f\x83\xec\x2b\x38\x67\x42\xd0\xeb\xcd\x60\x6b\x24\x8a\x78\x03\x97\xb8\x67\x68\x3a\xbd\x45\x68\xf1\xae\x36\x95\x3f\xf7\x0a\x36\x72\x9b\xde\xa2\xc5\xd1\xb7\xcd\x2d\x5a\xb8\xca\xea\xde\x83\xb3\xd5\x32\x9a\x7f\x73\xf3\x6f\x7f\x0e\xca\x9e\x67\xad\xee\x66\xdf\x5c\x74\xbb\x98\x5f\x00\xff\x8a\x9c\x0e\xfa\x57\xc0\x95\xb6\x55\xa3\xa6\xbd\x35\x8f\x56\x39\xf7\x2b\x23\xc3\xcd\x61\x5a\xf6\xfa\x67\xb0\xcb\xbb\x0b\x30\xa8\xd5\x41\xd9\xd7\xe0\x46\x77\x7f\x80\x55\xcd\x32\x72\xfe\xdc\x28\x77\x54\xca\x47\x70\xb4\xea\xb0\x8c\xe6\x95\x73\xf3\xa6\x3c\x9b\xc1\xcf\x2a\xe7\xa2\x37\x70\x5d\x99\xee\x19\x78\x01\xcd\x0f\xe5\x29\xb4\x67\x7d\xf7\x18\xc0\x5e\xfb\x46\xdd\x16\x37\x6b\x20\x7f\xf5\x8d\xd1\x1e\x12\xd5\x9a\xc5\xfc\xd2\x47\x8b\x5a\x9f\x40\xd7\xcb\x68\x6f\xea\x73\x74\x8b\x00\x9e\x3b\x07\xdd\x78\x65\x23\xa8\x9a\xd2\xb9\x65\xb4\x6f\x06\x05\xa6\x1b\x31\x00\x8b\xf1\xff\x59\x56\xe1\xaf\x14\x76\x9b\x47\xdd\x45\xe3\xd8\xb5\x6c\x95\x3f\x9a\x7a\x19\xe5\x4c\xc8\xeb\xcc\x95\xfb\xca\x37\x0a\x88\x7e\x50\x06\x69\x98\x5f\xcc\x6b\x7d\x7a\x9e\xd2\x5d\x3f\x78\xe8\xca\x56\x2d\xa3\xc1\x29\x1b\xaa\x08\xfa\xa6\xac\xd4\xd1\x34\xb5\xb2\xcb\xa8\x78\x6a\x3f\x0f\xed\xed\x3f\xe6\xc3\xb5\x5a\x46\x7d\xe9\xdc\x77\x63\xeb\xe8\xca\xf7\xf2\xfe\x86\x2f\x7f\x6a\xff\x8c\xcf\x0d\xfb\x56\xfb\x08\x4e\x65\x33\xa8\x65\x94\x9a\x47\xa0\xcf\x21\xcd\x43\x4a\x63\xa8\x17\x3f\xcf\x8f\xcb\xb5\xfe\x3b\x00\x00\xff\xff\x09\x63\xbc\x40\xeb\x07\x00\x00") + +func staticIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _staticIndexHtml, + "static/index.html", + ) +} + +func staticIndexHtml() (*asset, error) { + bytes, err := staticIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/index.html", size: 2027, mode: os.FileMode(420), modTime: time.Unix(1494905102, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsCircleProgressMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x5f\x6f\xdb\x38\x12\x7f\xef\xa7\x50\xb4\x80\x97\x74\x68\xfa\xcf\x5d\x5f\xe4\xb0\x69\x2e\xd7\x3d\xf4\x70\xdd\xcd\xb5\xc5\xed\x43\xe0\x07\x46\x1a\xcb\x6c\x65\x52\x4b\x8e\x9c\xa4\x8e\xbe\xfb\x81\xa2\x24\xcb\x71\xda\x03\x0e\x8b\x04\x30\x39\x24\x87\xc3\xdf\xcc\xfc\x66\x34\x1d\x8f\x5f\x45\xe3\xe8\xcb\x1f\x15\xd8\xc7\x49\xaa\x6c\x5a\xc0\xa4\xb4\x26\xb7\xe0\x5c\x34\x89\xbe\xfc\xdb\x2f\x44\x37\x45\x95\x2b\x1d\xa1\x89\x32\x2b\xef\x23\xa9\xd5\x56\x22\x64\x91\x3f\x50\x15\xd2\x46\xfd\x91\x3b\x69\x5d\xe2\x55\xee\xdf\x16\x4a\x7f\x8d\x36\x88\x65\x32\x9d\x7e\x35\x88\xa0\x25\x1a\xcb\x73\x85\x9b\xea\x8e\x2b\x33\x7d\xf9\xd6\x69\xfd\x2a\x6a\x8c\x7a\x2b\x2b\xdc\x18\x1b\x7d\x34\x0e\x1f\x5d\x21\x77\xd1\xdf\xec\xe3\xb7\xbc\xd2\x66\x17\x5d\x1c\x14\xbe\xcd\xb7\x52\x15\x3c\x35\xdb\x37\xcd\xa9\x1d\x58\xa7\x8c\x8e\xe6\x7c\xc1\x17\x8d\xa4\x50\x29\xe8\x14\xa2\x0f\xef\x3f\x37\xf3\xd2\x82\x03\xbb\x83\x57\xd1\x78\xfa\xea\x6c\x5d\xe9\x14\x95\xd1\x44\xd1\xbd\x5a\x93\xb8\x9b\xc7\x42\xe0\x63\x09\x66\x1d\x65\xb0\x56\x1a\x46\xa3\xf0\xcb\xe5\x36\xa3\x61\x48\x6e\xe3\xf0\x86\x78\xc5\x14\x5d\x42\xe1\x20\xf2\x2a\xcc\xdd\x17\x48\xf1\xa0\x60\x6b\xb2\xaa\x80\xd1\x28\xfc\x72\x78\x28\x8d\x45\x47\xf7\x3b\x69\x23\x14\x16\xfe\xa8\x94\x05\xd2\xe9\xa2\x4b\x45\x90\xb2\xe3\xcd\x02\xeb\xa0\x9e\x04\x97\xd0\x9a\x0c\x0d\xef\xc6\x11\xfa\x19\x6e\x94\xe3\x4a\x2b\x3f\xa9\x91\x97\xd6\xa0\xf1\xa6\x88\xfd\x4e\x16\x15\x24\x33\xe6\xd4\x37\x48\xe6\xb3\x19\x73\x28\x2d\x5e\xe9\xbc\x80\x64\xf2\x41\xe2\x86\xdf\xbc\x67\xb8\x51\xe9\x57\x0d\xce\x25\xb1\xac\xd0\xc4\x6c\xad\x8a\x22\xd9\xe7\x56\x66\x0a\x34\x26\xb7\xf1\x4f\x7f\x91\x20\xef\xee\x62\x16\xff\xb4\xce\xb2\xc5\xeb\x59\xbc\xaa\x19\x6c\x4b\x7c\xfc\xc5\x6f\x8d\x6d\x7e\x27\xc9\x8c\x45\xe1\x9f\xcf\x69\xcc\x42\xcc\x28\xa3\x93\x7d\x56\xd9\x30\x9a\x2f\x66\x33\x06\xd2\x29\x9d\x27\x71\x08\x83\x9b\x36\x0a\xde\x35\xd2\xb8\x3e\x9c\xfb\xe4\x2d\xfd\x4f\x6b\xbf\x05\xef\x66\x48\xce\xe6\xac\x50\x1a\xae\x65\x99\xc4\x77\x15\x62\xcc\x94\x76\x60\xf1\x83\xc9\x20\x89\x4b\x0b\x25\xe8\x2c\x66\xa9\xd1\x0e\x6d\x95\xa2\xb1\x09\x32\x28\x12\x5d\x15\x05\x4b\xa5\xde\x49\xd7\x8e\xf1\x21\x0c\xfc\x23\x2b\x97\xcc\x98\xb4\x69\xf3\x98\x46\x5a\x48\x87\xbf\x58\xb9\x85\xce\x00\x8f\x6e\xd2\x7b\x00\xe9\x5e\x71\x78\x40\xd0\x19\xf1\xe0\x33\xa4\xac\x71\x42\xd0\x26\x9a\xb1\xc7\x7c\xba\x60\xbd\x73\x7e\x57\x59\x0e\x48\xe8\x41\xe2\xef\xeb\xe6\x3e\xd1\xba\x31\x14\x1c\xad\xca\x73\xb0\xa4\x85\x69\xe2\xb7\x43\x16\xd3\x9a\x1d\x54\x1d\xec\x69\x43\x20\x3c\xf0\xe9\x89\x0c\x66\x42\x91\xf8\x22\x0c\xdf\xc4\xf4\xb6\xc7\x48\x88\xd6\x8c\x0e\xbe\xcb\x6e\xe9\xb3\x89\x93\x58\x96\xed\x70\x45\x5a\x93\xe8\xed\x6c\x45\x97\x21\x84\x07\xfa\x97\x6a\x4d\x90\xdf\xab\x0c\x37\x87\x67\x33\xe4\x1b\x50\xf9\x06\x87\xa2\xe6\x0c\x3e\x08\xe4\x39\xe0\xb5\xd1\x08\x0f\x48\xe2\x45\x16\x53\x76\xaf\x74\x66\xee\x79\x06\x3b\x95\xc2\x8d\x7a\x80\xe2\xa3\x8f\x81\x37\xf3\x90\x33\x20\xbe\xb3\x61\x89\xdc\xe1\x63\x01\xdd\xfd\xed\xec\xf9\xdd\xe7\x71\xf9\x10\xb3\xde\xca\x93\xf5\xf1\xc1\x3a\xee\x52\x59\x00\x01\x06\xb4\x0e\x58\x37\x41\x31\x40\x7a\x90\x7a\x5d\x46\x1f\x43\x3c\x5b\x2d\xbb\xab\xe0\x19\x1a\xfd\xfc\x39\x02\x8d\xfb\xdf\x6f\x65\x0e\x24\x67\x33\x36\x63\x96\x59\xca\x80\xb7\x41\x29\xa0\xb1\x2d\xb5\x20\x11\x6e\x24\x22\x58\x4d\x90\xc5\xda\x4c\xbc\xcf\x24\xc6\x7e\xb3\xd7\xd1\x04\x2d\x01\x7e\x1c\xc0\xb4\x0e\x30\x36\xb1\x2a\xc3\xc3\x7d\x92\x33\x2d\xba\x87\x33\x7b\xc0\xc3\xfb\xf4\x4c\x52\xdc\x58\x73\x1f\xbd\xb3\xd6\x58\x12\x7f\xde\x40\xe4\x8f\x44\xca\x45\xda\x60\xe4\x4a\x48\xd5\x5a\x41\x76\xe6\x09\x6c\x4d\x62\x87\xd6\x67\x70\x4f\x82\x72\x34\x22\x52\xec\x53\x53\x18\x9b\xc8\x9a\x32\xc9\x9b\xf1\x68\x14\x22\xaa\x7b\x5a\x2b\xf6\xeb\x1d\xe3\x04\x5c\x9d\x38\x48\xfc\x0d\x73\x21\x1c\x2f\x40\xe7\xb8\xa1\x47\x1a\x9c\x87\xbc\x23\xe3\x6e\x8b\x8f\x9d\xb5\xb1\xc4\x6b\x2a\x06\x9a\x1a\xee\x7b\x7a\x9a\x31\x33\x10\xfe\x5d\x59\x68\x9c\xfa\xf4\x74\x6b\xa7\x8b\x31\x99\x07\x72\x4c\x8d\x23\x05\xa5\x2c\xc8\xce\x1b\x99\x53\xfa\x44\x76\xbc\x6f\x32\xdc\xb7\x62\x1b\xa1\x5b\xcf\xfd\x4b\x69\x90\xf6\x1f\xed\xa5\x5c\x96\x65\xf1\x48\x34\x33\x94\xa5\x62\xb6\x4c\x2f\x3a\xdb\x97\xe9\xf9\x79\xc0\x20\x13\xee\x36\x5d\xb1\x4a\xa4\xd3\xfe\x65\x93\x39\x5d\x2a\xae\xdc\x95\xb5\xf2\x91\x64\x74\x34\x22\x95\xc8\x6e\xe7\x2b\x96\x89\xcc\x27\x29\xdb\x70\x99\x65\xd7\x1e\xd5\x4f\x68\x4a\x52\xb1\x8c\xd6\x47\x88\x6d\xea\x5a\xad\x89\xe4\xca\x47\x5c\xb8\x29\x5f\xb6\xd3\x48\x69\x87\x52\xa7\xde\x87\x4d\x44\x5e\xe6\xa2\x5d\x4a\x48\x2e\x34\xdc\x07\x31\xcb\xb9\xb3\x69\xb7\x44\x59\xee\x4b\x72\x59\x00\xc2\x25\x12\x9a\xe4\xdc\xe8\xc2\xc8\x4c\x60\x5d\x33\x1f\x99\x27\x6c\xd5\x33\xfd\x65\x4f\x80\x57\x6d\xa3\x11\x22\xa4\x29\x5e\x34\xe9\x57\x43\x6c\x0f\x96\x82\xe2\x46\x9c\x0c\xab\x63\xb3\xe5\x38\x03\x84\x3a\xa4\x78\x5a\x80\xb4\x1f\x21\x45\xe2\x33\xed\x19\x43\xf9\xd1\x80\x92\xdf\xf9\x22\x77\x65\x53\xa2\x06\xc2\x30\x0f\xb7\x5f\xd9\x34\x79\xd6\x52\xcc\xce\x84\x50\x1d\x37\xf4\xf9\x15\xb2\xaf\xad\x10\x5d\x12\xe6\x80\x9f\xbb\xea\x4b\x68\x97\x8e\x87\x22\xed\x09\x4e\xee\xc0\x17\x06\x7e\x07\xb9\xd2\x37\x12\x37\x5d\x99\x68\x8b\xe2\x25\x7a\xbf\x7a\xca\x62\x30\x91\xd3\x05\xd3\x93\xc5\xb8\xad\xed\x63\xc5\x34\x4d\x4e\x36\x30\x7d\x3e\xd8\xe2\x95\xfb\xaa\xfa\x7b\xc3\x59\xb2\x9d\x5d\xcb\x32\x58\xd3\x4e\x98\x67\x57\x6b\xbe\xc2\x27\xcf\xb1\x62\x18\x4f\xfd\x52\x63\xa7\x05\x87\xc6\x02\xa1\xad\xe3\x3b\x08\x8f\x60\xfa\x53\xc0\x51\x17\x73\xcf\x26\x2f\x43\xa4\x2e\xc4\xec\x04\x9a\x19\xeb\xdf\xdd\x06\xd6\x77\x41\x3c\x86\xf1\x05\x10\xcf\x8f\x51\x3e\x01\xf1\x04\xad\xbe\x61\xfa\x0e\x5e\x5d\x44\xb5\x49\x70\xd4\x6e\x9c\xf2\x37\x78\xf6\x56\xc3\x52\x4f\x97\x9a\x3b\x9f\xf0\x67\x33\x76\x36\xf7\x84\xfa\xbc\x8b\xe8\x53\x6e\xd2\xa0\x18\x53\xa6\x79\xea\x1c\xd9\xf7\x0b\x5d\x3f\x96\xcc\x6a\xda\x66\x28\xbc\xb4\x3c\xaf\x59\xdf\x01\xed\x6b\x76\x9c\xd0\x6c\xef\x10\xca\x13\x7f\x6b\x01\xfc\x85\xf6\xce\x33\xa6\xa2\xe7\x38\x56\xcb\x61\x0d\xd3\x3f\x7e\x40\xf7\xf9\x10\xb3\x5b\xc5\xf4\x8a\xd6\x35\xa5\xbe\xf3\xdd\x2a\x07\x84\x72\x59\xdc\xcb\x47\x47\x06\x9c\xf3\x23\x65\xbe\x21\xa2\x35\xad\xd9\x30\xe4\x86\x84\x65\x01\x2b\xab\x23\x4f\xbb\xbf\x56\x5b\xb0\x2a\x0d\xc0\xf7\xad\x33\xbd\x3c\x9e\x27\x87\x16\x70\xfe\xd7\x46\x6f\xe8\x24\x4f\x75\x1e\xf8\xac\x66\xee\x64\x9b\x7a\x4e\x96\x7d\xf9\x3c\x05\x52\xbc\xc0\x7b\x2d\x55\xec\x86\x1c\x18\x5a\x4d\xdf\xde\xf0\xe3\x26\x5c\xec\x33\x58\xcb\xaa\x40\x97\x0c\xbe\x22\x1a\x4f\x37\xed\x39\x7f\xa9\x67\x17\x43\x5b\x3b\x9c\x2e\xf8\xeb\x4b\xa2\xc4\x62\xac\x18\x7f\x3d\x56\xfe\x8f\x26\x5e\x30\xf1\xa2\xf9\xa4\x17\x7a\xe5\x6b\xfd\xdc\x8e\x5e\x25\x30\xd9\xc5\x4e\xfc\xec\xbb\x31\xee\x3a\x96\x4c\xa2\x24\x3a\x34\x21\xf7\x4d\x63\x1c\x0b\x01\x0d\x13\x9f\xd9\xa3\x26\xe6\xe7\x6b\x59\x14\x4a\xe7\x51\xb7\x2f\xda\x02\x6e\x4c\x16\x19\xdd\xf4\x34\xbe\xdd\x53\xb2\x50\xdf\x20\xeb\xab\xa0\xef\x77\xd6\xc6\xde\xa9\x2c\x03\xfd\x33\x5d\xb6\x2f\xb4\x6d\xce\xf9\x3a\x1a\x37\xe8\xfe\xef\x4b\xc3\xb6\xff\xe3\x4e\x7f\x47\xa5\xc3\x37\x68\x36\xe8\xb0\x68\x6f\x4c\x17\x5f\x24\x74\xe8\x4e\x48\x9b\x57\x5b\xd0\xe8\x6e\xe7\xab\xe5\x30\xd2\x40\xa6\x9b\x61\x5a\x04\x06\xa1\x1d\x8a\xbc\x0b\x41\xe2\x7c\x42\xfc\xe8\xa4\xbf\x48\xb6\x0c\x44\x99\x15\xb2\xd3\xc1\x9c\xf0\x89\x72\x53\x48\xa5\x7f\x6b\x3e\x8d\x09\xd0\x4b\x48\xf6\xb5\x7f\x89\xa5\x36\x7c\xab\xba\xf0\x05\xbd\x0f\x1d\xda\x90\x4d\x5a\x4d\x94\x2e\x4f\xba\xca\xa2\xe9\x5b\x47\x23\x12\x06\xe2\x9f\x9f\x7e\xfb\x95\x97\xd2\x3a\x68\x25\x94\xb2\x17\x0e\x0d\xd3\x67\x30\x3b\x3e\xde\x8b\x69\x78\x42\x6b\x50\xc1\x1c\x65\x9e\x6f\x85\x64\xb6\xe9\x7f\xbc\xed\x9d\x91\x9a\x59\xcf\x3d\x75\x4d\x97\xff\x0d\x00\x00\xff\xff\x39\xf9\xd1\xe5\x5d\x11\x00\x00") + +func staticJsCircleProgressMinJsBytes() ([]byte, error) { + return bindataRead( + _staticJsCircleProgressMinJs, + "static/js/circle-progress.min.js", + ) +} + +func staticJsCircleProgressMinJs() (*asset, error) { + bytes, err := staticJsCircleProgressMinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/circle-progress.min.js", size: 4445, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsJqueryUiMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\xbd\x6b\x77\xe3\xb8\xb5\x20\xfa\x3d\xbf\xc2\x62\xd2\x6a\xc0\x82\x68\xc9\x95\xee\x93\x50\x81\x75\x3b\x55\xd5\x93\x9a\x93\x7e\x4c\x57\x65\xfa\xce\x52\x29\xbe\x34\x09\x59\x48\xd1\x80\x42\x90\x2e\x3b\x22\xcf\x6f\xbf\x0b\x1b\x00\x09\x3e\x64\xbb\x73\x92\x35\xe9\x95\xb2\x88\xf7\x63\x63\xbf\xb0\xf7\xc6\xc5\xf9\xe4\xec\x6f\xff\xab\x64\xf9\xe3\xd9\x5f\xde\x9d\xcd\xcf\xee\x97\xe1\xf2\x32\x5c\x9e\xcd\xcf\x2e\x17\xcb\xaf\xe7\x8b\xdf\xcf\x97\xbf\xfd\xd5\xf9\xd9\xbe\x28\x0e\xd1\xc5\xc5\xdf\xfe\xae\x4b\x96\x3c\x4c\xe4\xdd\xaf\xce\xcf\xde\x89\x24\x2b\x53\xa6\xa2\xb3\xcf\x3c\xbd\x65\x45\xf8\x37\x45\xce\x0e\x52\xf1\x82\x4b\x01\x1f\x69\x5c\xc4\xe6\x07\x57\xf1\x4d\xc6\xe6\x8a\x65\x2c\x69\xb2\xd9\x6e\xc7\x92\xc2\xfb\xa9\x2e\xcc\xdf\xf9\x4d\xc6\x45\x3a\x9a\x21\x4b\x91\xb0\xb1\x9c\x24\xe3\x87\xb1\xf4\x34\x97\xa3\xe9\xec\xe1\x90\xc9\x74\xb4\xa9\x5d\x7c\x22\x5d\x66\xa3\x83\xda\xf3\xdb\x7d\xc6\x6f\xf7\xa3\x53\x39\x94\xbb\xdd\x78\x7a\xa6\xe2\x62\xb4\x1f\x95\xc4\xd9\x78\xc6\x3e\xfe\x34\x9e\xc1\xff\x31\x9e\x9e\xf1\xf1\xa9\x14\x79\x2c\xd4\x8e\xe5\x90\xb7\x93\x49\x09\xfb\x63\xbf\xf2\xbb\x79\xce\x14\x2b\xe6\x77\xfc\x81\x9b\xad\x32\x5b\x3f\x5f\xce\xff\x03\x3e\x3f\xb1\xc7\xc4\x2d\x5e\x16\xdf\xb0\x4c\xc1\x4f\x95\xe4\x32\xcb\xe6\x87\x38\x67\xc2\x2c\x46\x11\xdf\xdc\x34\x2d\x97\x82\xff\xbd\x64\x73\x6e\x16\xd1\x00\x8d\xba\x88\x93\x44\xe6\xa9\x83\x89\x26\xb5\x2c\x64\x22\xef\x0e\x19\xb3\x6b\xe4\x32\x6e\xca\xa2\xe8\x95\x4d\xf6\x2c\xf9\x74\x23\x1f\xf2\x38\xe5\xb2\x9b\x23\x45\x91\xcb\xec\x36\x97\xe5\xa1\x93\x91\xc6\x05\x3b\xf0\xe4\x93\x5d\x81\x26\x99\xc7\x99\xbc\xed\x26\xe5\xf1\xed\x6d\x33\x85\x36\x55\x1e\x0e\x83\xd4\x3b\x26\xca\x6e\x82\x2c\x55\xb7\xc8\x21\x97\xb7\x39\x53\xea\x26\xee\xf6\x9c\x33\xc5\xff\x31\x68\xd0\x9c\x97\x13\xc9\x83\xde\x60\xb7\xbb\xcd\x2a\x99\x8f\x54\x3f\x70\x21\x7a\x05\x8b\xf8\x46\x75\x13\xa4\xcc\x0a\x38\x52\xbf\x3a\x3f\x7b\x2d\x0f\x8f\xb9\x86\x70\x87\x2d\xbe\x95\xa5\x48\x63\x7d\x92\xcf\x62\x91\x9e\xc9\x62\xcf\xf2\x33\x58\x6d\x7e\x53\x16\x32\x57\xab\xb3\x3f\xf3\x84\x09\xc5\xd2\xb3\xef\xde\x7d\x38\x3b\xbf\xf8\xd5\xaf\xd0\xae\x14\x70\xf8\x51\x81\x8f\x81\xfb\x08\x28\x2d\x1e\x0f\x4c\xee\xce\x52\xb6\xe3\x82\x4d\xa7\xe6\x6f\x18\xdf\xa5\x6b\xf3\x13\x6d\x02\x03\x7f\xc1\x96\x14\x38\x2a\x90\x19\x04\xae\x71\xa7\x49\xf7\xfb\x8c\xc1\x97\xcc\xd1\x7d\x9c\x9f\x31\x5a\x84\x89\x52\x28\xb8\xe7\x8a\xdf\xf0\x8c\x17\x8f\x01\x5e\x05\x5c\xec\x59\xce\x8b\x80\x52\xca\x56\xb8\xa0\x45\x68\xa0\x16\x61\x32\x5e\x23\x67\x45\x99\x8b\x60\xcf\xd3\x94\x89\x60\x42\x29\xab\x9b\x0e\x79\xa7\x43\xc2\x57\x45\x98\x31\x71\x5b\xec\xa7\xd3\x62\xb3\xd8\x4e\x28\x4d\x65\x52\xde\x31\x51\xac\xf0\x91\xef\x50\xd3\x83\xc3\x96\x01\x26\x28\x88\x6f\x94\xcc\xca\x82\xc1\x98\xaa\x2a\xc8\x59\x16\x17\xfc\xbe\xf9\xde\xf1\x07\x96\xc2\x07\x9e\x4e\x11\xa7\x87\x38\x57\xec\x9d\x28\x90\x6d\xec\x1f\xef\x44\xca\x1e\x02\x4c\x96\x0b\x4c\x26\x5c\x7d\x1f\x7f\x8f\x38\x9e\x4e\x17\x13\x4a\x39\xc6\x66\x02\x67\x7c\xe5\x4f\xb6\xb6\xa9\x8b\x76\x32\x0a\xe1\x63\xb1\xe7\x2a\xbc\x4e\xca\xfc\x9d\x50\x05\x15\x65\x96\x11\x93\xf4\x89\x3d\xbe\xbd\x67\xa2\xa0\x93\xa5\x4d\xb1\xa8\x3d\x7d\x27\x0e\x65\xa1\xe8\x66\xeb\xd2\x9b\x13\xf6\x7e\x2f\x3f\x73\x71\xdb\x56\xe1\xe2\x0d\x9c\xb3\x36\xe5\x2e\xd6\x69\xf7\xef\x52\x1a\x94\x7c\xde\x56\x9d\xa7\xfc\x3e\x68\x6a\x65\x5c\xb0\xd7\x59\xac\x54\xbf\x94\xc9\x72\x05\xe3\xc3\x81\x89\x74\xb4\xa0\xc9\x72\x05\x8b\x9c\xdf\xde\xb2\x7c\xb4\xa4\xcd\x0b\x9a\x59\xea\x01\x8f\x96\x34\x59\x41\x77\x39\x4e\x94\x34\x4b\xe5\xca\x96\xa2\x3d\xdf\xa3\x15\xfc\x02\xae\x52\x52\xe6\x7a\xeb\x46\xcb\xdb\xbc\x79\x1a\x3f\x36\xe3\x89\x1f\x7f\xb8\x3f\x31\xc7\x34\x7e\x54\xf3\x84\x65\xd9\x5c\xde\x37\x53\xcd\xd9\x2d\x97\x22\xce\x9a\x9d\x74\x09\x9b\x20\xd8\xd2\x63\x92\x49\xc5\x3e\xb0\x87\x22\x0a\xde\x48\xbd\xe6\x87\x9c\xdd\x9b\xef\x1f\x73\x76\x1f\x10\xc1\x1e\x0a\xf3\xfd\x3d\x7b\x28\x02\x62\xc7\x64\x92\x3e\x48\x18\xda\x9d\x14\xc5\xfe\xfb\xf8\x8e\xa9\x68\x13\xfc\xcf\x58\x94\x71\xfe\x18\x90\xe0\x5b\x76\x93\xdb\x9f\xdf\xc5\x79\xb2\x0f\x48\xf0\xcd\x21\xe7\x19\x7c\xeb\xd4\xff\x59\xea\x1e\x83\xff\x59\x66\xfa\xeb\x9b\xf2\xb6\x54\x45\x40\x82\xf7\xec\x50\xb0\xbb\x1b\x3d\x85\xe0\x87\xa4\x90\xe6\xd7\xf7\xf2\xde\x25\xbe\x61\x89\xf9\xb9\xf5\xba\x7e\xbf\x97\x79\x61\xfa\x37\x7d\x9b\x6e\x4d\xa7\x7e\x97\xa6\x47\xd3\xa1\xe9\xcd\xf4\x63\xfa\x30\xcd\x07\x5b\x92\xc6\x8f\x6e\x4a\xef\x35\x72\x84\x69\x48\xfb\xe3\x43\xc9\x94\xf9\xf5\x33\x4b\x85\xfb\xfd\x61\x5f\xe6\xf6\xe7\xb7\x39\x37\x3f\xde\xc7\x45\x99\xeb\x9f\x6d\x8b\x6e\xa4\xef\x61\x2c\xdf\x49\x61\x1a\x34\x8d\x99\x66\x4c\x0b\xa6\xba\x57\xf3\x3b\x2e\xa0\x1e\x54\x83\x5a\x50\x09\xea\x40\x15\xa8\x11\x6c\xc9\x67\xc6\x3e\xfd\x89\xc5\x29\xcb\xa3\xe0\xe7\x4f\x01\xd1\x50\xf2\xad\xcc\xef\xe2\x22\x0a\xee\xee\x2e\xd2\xf4\xe2\xf1\x31\x20\x3b\x9e\xab\xe2\x4d\xfc\x18\x2d\x08\x57\x3f\x7d\xf8\x73\x34\x59\x12\xb5\x97\x9f\xbf\xd3\x8b\xfa\xcd\xae\x60\xf9\xff\x61\x71\xae\x53\x1f\x59\x9c\xbf\x2f\x77\x3b\xfe\x10\x05\x41\xed\x60\x91\xed\xe2\x32\x2b\x14\x3d\xea\x4a\x3f\x88\x28\x00\xce\x23\x80\x36\xbe\x11\xfc\x2e\x0a\x34\xeb\xf5\x4e\x98\x94\x1f\x0e\x1a\x1f\xa9\xe8\x58\x13\x5b\xf3\x4d\x5c\xb0\x08\xb0\x91\x39\xc8\x06\xa8\x02\x62\x78\x02\xf3\x15\x86\xa1\x4b\x78\x77\x17\xdf\xb2\x36\x1f\x3e\x7f\x10\xd9\xa3\x1e\xe0\x9e\xa7\xec\xdd\xee\x7b\xa9\x81\x56\x03\xaa\x4e\x13\xf1\x3d\xbf\x05\xa2\xf6\x8d\x7a\xd3\x2e\xc0\x64\x49\x6e\x65\x21\x5f\x1b\x40\xd6\x9f\xc9\x3e\x16\xb7\x0c\x66\xdd\x7e\xfa\x53\xff\x49\x27\x44\x41\x32\x5f\x2e\xa2\x64\xb6\x5c\xd8\x09\x69\x2a\x09\xb5\x14\xac\x1c\x9c\xed\x7e\xe2\x5e\x7e\xfe\x99\xb1\x4f\xd0\x6e\x9c\x25\x65\x16\x17\x0c\x12\x60\x0d\xb9\x92\xbf\xfb\x7a\xb1\xd4\x09\xba\x68\x5e\xe8\x5e\x5f\x97\x85\xdc\xed\xa2\x00\x3a\xba\xe3\xa2\x5d\xa6\xbb\xf8\xa1\xfd\x48\xcb\x1c\x26\xa7\x57\x59\x9f\x9b\x1b\xb6\x93\x39\xd3\xd8\x59\x6f\x29\x14\x69\x93\xcc\xb7\x14\xef\x61\x90\xee\xeb\x75\x3b\x71\x98\xae\x4b\xd6\x48\xc1\x7c\x88\x52\x1f\xb4\x1f\x76\x76\x46\x66\x42\x76\xe9\xbe\x29\x7e\x94\x2a\x5a\x10\x55\xb0\x43\x9b\x5f\xb0\xc3\x1f\xf9\xad\xfb\xbe\x24\x71\x56\x7c\xcb\x59\x96\xea\x8d\xd3\xbf\x2d\x14\x06\x24\x91\x42\x15\x79\xcc\x05\x90\x9a\x68\xb2\x80\xb6\xff\x08\x7b\xfb\x63\x2c\x58\xa6\xd7\x4c\xf3\x8d\xef\xf9\x3f\x98\xfe\xed\xf0\x6d\x34\x59\xd6\xa4\x08\xd9\x43\xc1\x44\x8a\xba\xb0\x38\xc4\x71\xb8\x9b\x14\x32\x41\x9b\xba\x93\x05\x39\xd6\xcf\x56\xd9\x04\x4c\xcc\xff\xf2\x3e\xd8\x3e\x59\x31\x64\xc2\xd6\x4b\x0f\x6f\xf8\x3d\x15\xa8\x40\xc1\x1f\x52\x7e\x7f\xc6\x53\xfa\x65\x30\xeb\x51\xc6\x59\xf0\xe5\x59\x02\x58\xfc\xcb\x0e\x16\x3f\x2b\xf9\xdc\xf0\x6c\xed\xaf\xb9\xe6\xc4\x98\x80\x94\x3d\xcb\x0e\x9a\x34\x64\x2c\xce\x77\xfc\x41\x27\x25\x32\x17\x9a\x18\x66\xd9\x97\x57\x7f\xb8\x48\xf9\xfd\x55\x80\x71\xcb\x00\x08\xc4\xf0\x51\x73\x32\x9c\x06\xe6\xe4\x90\xb3\xb0\x4b\x39\x34\xd2\x1f\x24\x6a\xcc\x3f\x48\xd4\xa2\x8c\x48\xe3\xfc\xac\x48\xcf\xe2\xc0\x72\x51\x67\x2c\x94\x02\x05\xc0\x1d\xcb\xb2\x08\x08\x27\x0d\x23\x87\x8f\x05\x6c\x11\x0e\x73\x76\x27\xef\x0d\x61\x44\x9a\x72\xa9\x22\x2e\xd8\x7c\x0f\xb4\x0a\x93\xf9\x72\x42\x29\xac\x11\xac\x8a\x46\x77\x21\xd7\x0c\xd0\x0f\x3b\x14\x0c\x47\x1b\xe0\xe9\xf4\x54\xc3\xbd\xa2\xff\x4c\x17\x7a\xee\x2f\xec\x42\x17\x75\x5d\xd4\xd8\x5b\x08\xa0\xc1\x9c\x48\x6f\x2b\xa4\x5e\x8e\xd0\x13\x56\xae\xb9\x7a\x63\xa1\xfa\x4d\x93\x8a\xee\x42\xc3\x01\xad\xef\x0c\x2c\x35\xec\xdd\x66\xb1\x8d\x74\xe6\xa1\xd4\x7c\x28\xae\x2a\xe4\x06\x68\x4a\x28\x14\x9c\xd8\xaf\x00\x87\x3b\x2e\x52\x14\xc4\xc1\x73\x3b\xe1\x9a\x8c\xd3\xf4\xdf\xb0\x59\x9d\x56\xff\x0d\x3b\x75\xaa\x7d\x7f\x9b\xbc\x1d\x89\x11\x23\x5c\x6f\x8a\x3d\xd8\xfa\x6b\xe5\x58\x7f\x75\xc6\xc5\x19\xc7\x1a\x11\x52\xca\x37\x6a\x3b\x9d\x22\xb6\x51\x5b\xf8\x8d\x1b\xe0\x6f\x5b\xcb\xb5\xe0\x60\x93\xbd\x13\x60\xe5\x16\x3d\x1f\x96\x31\x2d\x37\x84\xf7\x71\x86\xf0\xaa\x08\xe3\xc3\x21\x7b\x84\xa1\x93\x38\xbf\x05\x99\x42\x59\x34\x72\x9d\xb3\x5d\xce\xd4\x5e\x8b\x30\x6e\x39\x3a\xd5\xa7\xd3\x0e\xdf\x8b\x02\x43\xb8\x02\x5c\xd7\x45\x58\x72\xaa\xff\xa9\x2a\x8d\xa7\xc2\x92\x87\xf7\x2c\x57\x5c\x0a\x1a\x18\x9d\x50\xb0\xd2\xa3\xda\xd3\x05\xc9\xe8\x37\x79\x1e\x3f\x86\x87\x5c\x16\x52\xcb\x6e\xa1\xca\x78\xc2\x56\x45\xa8\x91\x8c\xa6\x3e\x31\x6d\x26\xc3\x86\xf3\xe3\x66\x82\x8a\x08\x22\x61\xe9\x24\x5d\xac\xf4\x9a\x4d\x28\x12\x94\x6f\xe4\x16\xaf\xe4\x6c\x86\x8b\xfc\xf1\xa8\x68\x01\xa2\x44\x8c\x04\x09\x98\x96\x3c\x54\x80\x89\x9a\x4e\x95\x05\x4a\xbd\x91\x02\x87\x76\x4a\x7f\x8a\x45\x9a\xe9\x99\x99\xcc\x00\xd7\x49\x5c\x24\x7b\x14\xe3\x63\xcd\x10\xc7\x75\x8d\xbc\x51\x62\x52\x84\x06\x61\x7a\xe3\x25\x9c\x28\x33\x40\x41\x24\x89\x49\x4e\x8f\x35\xd9\x53\x16\xaa\x43\xc6\x0b\x14\x84\x81\x3e\x55\x2b\xd6\x4d\x59\x6e\x61\x79\x32\xba\x9f\x05\xf3\x60\xc6\xdc\x5e\xab\xaa\x42\x8a\x72\xa2\x17\xf7\x67\xe8\x4a\x77\xca\x15\xac\x20\x52\x5a\x90\x53\x0d\x95\xb0\x9b\x0b\x74\x74\x73\xac\xb7\x61\x22\x45\x12\x17\x48\x61\x8c\x81\x7e\x1d\xf2\x4d\x10\x05\xdb\x4d\x16\x16\xf2\xcf\xf2\x33\xcb\x5f\xc7\x8a\x21\xbc\x1d\x59\xee\xc9\x04\xf0\x86\x06\xd7\x0c\xd7\xa4\xd8\xec\xb7\x54\xff\x03\xfb\x2b\xe0\xe7\x86\x6d\x89\x74\xbf\xda\x26\x0a\xd2\xee\x99\x15\x39\x72\xa6\x99\x10\x18\xfe\x1a\x35\x60\xd7\xca\xb8\x83\x52\xd0\x08\xb9\x97\x3c\x3d\x5b\xe0\x48\xb0\xcf\x67\x12\x92\x3c\x32\x2c\x89\x20\x47\x0b\x63\x91\x72\xd0\x46\xae\x01\xaa\xa2\xa6\xd8\xb1\x26\x0a\x93\xeb\x64\xcf\xb3\xf4\x35\x30\x00\x65\x52\xc8\x5c\x45\x9b\x6d\x8d\x49\x4c\x75\xdb\x9c\xc4\xa1\x34\xcc\x22\x75\x3b\xea\xd5\x6f\x32\x61\x11\xe3\x64\x8f\x14\xf1\xf6\x5b\xb5\xb3\x0d\xb9\xfa\xd6\x65\x28\xbc\x46\x79\x67\x61\x3c\x0d\x43\x81\x9a\x4a\xbc\x3d\x07\x1b\xb6\x1d\x3f\x9f\x3e\x6d\x2d\x5e\x50\xb3\x68\xe4\xf2\x3e\x52\xd0\x80\x04\xab\xad\xca\x03\xcb\xf5\xf6\xb5\x5f\xdf\xe8\x06\x56\x9d\x9d\x83\x74\x5a\x90\x7e\x29\x2a\x08\xa3\xea\x49\x64\x62\xaa\xf2\x61\x55\x49\x58\x5d\xa3\x76\x77\xcd\x2a\x29\xf7\x5d\x63\x22\xdb\x89\x0d\xf6\x23\x26\x47\x93\x00\x6a\x84\x1f\x73\xa6\x45\x04\xb1\x8e\xc3\x41\x6a\x55\xb1\x88\xd5\x24\x27\xc7\xa4\xdd\xf7\x48\x12\xa1\x05\x9b\x43\x9c\xb0\x68\x4f\x4c\x25\x8d\xee\x23\x66\x3f\xbe\x2d\xb3\x0c\x12\xb2\x1a\x13\xb1\x46\x76\xcb\x45\x38\x84\x21\x1f\x0a\x1c\x52\xa2\xde\xae\xac\xdc\xe0\x91\x0a\x9b\x5e\x67\x41\x18\xcc\x54\xd8\xf6\x4c\x24\xe1\xa1\x01\x5b\x3d\xf9\x94\x65\xac\x60\x67\x63\xfd\xe1\x88\x8f\xa4\x86\x87\x52\xed\x91\x6c\x91\x51\x78\x93\xeb\xbf\x88\x11\x89\x89\xac\x49\x6f\x09\x3b\x87\xdd\x51\x1e\x4e\x14\x11\x34\x0b\x93\x38\xcb\xda\x13\x4a\x96\x98\x48\xba\xd0\xc7\xc4\x1e\xd6\x55\x7c\x25\x01\xb9\xea\x8a\x5c\x93\x2b\xa1\xf1\xad\xa2\xfa\xcf\x86\x6f\x89\xfe\x1b\xee\x63\xf5\xc3\x67\xf1\x63\x2e\x0f\x2c\x2f\x1e\x41\x89\x64\x76\x77\x42\xa9\x02\x9a\xc6\x35\x6f\xcb\xd5\x8f\x59\xcc\xc5\x0f\x37\x7f\x63\x89\xc6\x52\xeb\x7e\x92\x2e\xa7\x53\x07\x47\x52\x67\x10\x85\xa3\x91\x2c\x85\x23\xe5\x91\xca\xfe\xaa\xd0\x67\xf6\x2c\xec\x42\x41\x55\xe9\x5d\xdc\x89\xce\x41\x16\xa6\x9e\xa4\x81\x2a\x72\x2e\x6e\x5b\x15\xa4\x20\xf1\xe8\x22\xe6\x70\xce\xdc\xa8\xe4\x1a\x0e\x85\x59\xd1\xaa\x0a\xb8\x50\x45\x2c\x12\x16\x4c\x28\x15\x26\x0f\x60\xae\x77\x78\xb9\x3e\xae\x06\x29\xc3\x91\x6b\xa6\xd9\x36\x40\x75\x03\x28\xa7\x92\x4c\x96\x38\x92\xeb\x0e\x46\x92\x1b\xb1\xc5\xd3\x69\x70\x0d\xfd\x84\xc9\x3e\xce\xbf\x29\xd0\x02\xaf\x11\xa7\x3a\xcf\x1e\x67\x49\x62\x4c\xf8\x84\x52\xe9\xed\x1a\xd7\xad\xf2\xe9\x94\x87\x46\x93\xba\xce\x01\xec\xde\x17\x71\xf2\x09\xf1\x50\xc3\x38\xc6\x11\x87\x6e\xdd\xc1\x2e\x42\x96\xe7\x32\x47\x81\x90\x67\xaa\x4c\xf6\x67\x77\xac\xd8\xcb\xf4\xec\xcb\x60\x26\xb4\x34\xb2\x93\xf9\x59\x30\x63\xb3\xc0\xea\x8c\xcf\x9a\x69\x78\x75\x93\x58\x08\x59\x9c\xe9\x25\xb5\xf5\xd5\x99\x14\xb6\xde\x21\xe7\x32\x3f\x2b\xe4\x19\x17\xbc\xe0\x71\xc6\xff\x01\x02\xea\xea\x2c\x98\x05\x71\x51\xb0\xbb\x43\xc1\x52\x9d\xef\x55\x77\xdd\x6b\xe6\x39\xca\xa9\x19\x6c\x84\xe2\x86\x1a\x21\xd1\x47\x3a\x1d\xba\x2a\x1a\xb2\x1a\x03\x59\x3d\xb5\x5b\xac\xbf\x57\x6c\x8d\x98\xa5\x24\x48\x68\x32\x8a\x09\x0b\xaf\xf5\xc8\xa7\x53\xfb\x43\xaf\x61\xa7\x16\x01\xf2\x84\x04\x74\x83\x71\x8d\x31\xc9\x6b\x0d\xd3\x3f\xf7\xd8\x0e\x7c\x6c\x53\x47\x70\x04\x28\xe3\x5c\x76\x8b\x5c\x8f\x1e\xfe\x0b\xcc\xef\x80\x0c\xd1\x6b\x10\x38\x05\xca\x5b\xc3\x0e\x46\x20\x67\x5e\x05\x44\x3a\x15\x0b\xb0\xcd\xcc\xe8\x5a\x5a\xa9\x99\x18\x9a\x0e\x92\x7d\x4d\x3a\x14\x3e\xea\x9e\x43\x4e\x0b\xc4\xab\xca\x88\xb3\x9d\xbe\x4c\xa2\xe6\x99\x88\xcf\x91\xea\xf2\x76\xf5\xcb\x92\xa7\x74\x3f\x9b\xd9\x7c\x3d\xf0\xef\x1d\xb6\xa5\x1a\xdb\x42\x7a\x3b\xd5\x59\x53\xcb\xd4\xb8\xe1\x22\xe5\xe2\x56\xd1\x02\xd9\x16\x81\x6d\xd7\x93\x68\x93\x9a\x3b\xae\x36\xc9\xce\xd9\x8e\xf3\xcf\x52\x7e\x2a\x0f\x9a\xd9\xe3\x96\x79\x9e\x4e\x91\xdd\x4c\x4b\x05\xbb\xa8\xc5\xec\xa9\xa5\x8f\x52\x68\x11\xdf\x9f\x20\x39\x1a\x1e\x34\xf2\xaf\x28\x8a\xb0\x88\x73\xbd\xf1\x54\x1f\x46\xbb\x5a\xaa\xc8\xe5\x23\xc2\x75\xed\xd4\x01\xf6\xae\x40\x2f\x51\xa8\x8a\xc7\x8c\xad\x79\x28\x3f\x0b\x96\xbf\xb1\x39\x11\x6f\x0a\x55\x95\x5b\xc6\xcf\x5c\xa4\xf2\x33\x35\x72\x4d\x93\xbf\x59\x6c\xdd\x86\xfc\x6f\xce\x3e\xbb\x2d\xf2\x72\x8d\x24\xf8\x33\xd4\x76\x07\xe2\x09\x6e\xca\xcf\xb7\x93\xbf\x65\xc5\x6b\x00\x0d\xab\xb1\xd3\x02\x88\x5b\x18\x03\x33\xa8\xdb\x6e\xe8\x60\xcc\xf1\x8e\x8a\x15\xa6\xae\x13\x6e\xd1\x68\x71\x4c\xfa\x02\x0c\xb4\x1e\x10\xef\x86\xa2\x19\x0c\x9c\x00\xcd\xe6\x23\x37\x2b\x7b\x46\x6b\x32\x18\x71\xe4\x1d\x44\x83\x93\x8f\xb5\x5f\xac\x69\x2b\x2a\x42\x21\xe5\xc1\x9d\x85\xe6\x53\xb7\xec\x3e\xec\x8e\x46\xa3\x02\xdd\xca\xa9\x9f\xec\xae\x3b\x96\xf4\x24\x44\x12\x8f\x31\xe7\xf8\xc8\xb4\x98\xd7\x4a\xe3\x5c\xf3\x8a\xb8\x03\x78\xa1\xdc\xed\xd0\xc8\x51\x72\x62\xfc\x1b\x87\x9e\x7a\xf0\x8c\x7d\x20\x47\xf8\xb9\x66\xbe\x29\x8a\x1c\x05\x71\xce\xe3\xf6\x5e\x03\x77\x0f\xe4\xc9\x26\x6a\xe2\x16\xc0\xad\xd9\xe7\x1e\x52\xe9\x4a\x20\x76\x66\xb5\xc5\x57\xd1\x08\x0f\x40\x40\x5a\xa3\x6c\xc5\x77\x68\x41\x29\xed\x4b\x29\xb8\xe1\xf1\x9f\x84\x68\xac\xeb\x0f\xd8\x02\x86\xf9\x0e\xc5\x1a\x37\xa8\x8e\xd8\x07\x4c\xb4\xda\xf3\x9d\xc6\x29\x4d\x4f\xc0\x94\x09\x1a\x6b\x9e\xe3\x99\xee\x36\x6c\x0b\x1c\xda\xca\x55\x9e\x2f\x2d\x7f\x26\x36\x6a\x23\xb7\x5b\x6a\xff\x5a\xb1\xcd\x7e\xad\xe0\x0e\x51\x85\x07\x79\x40\x98\x2c\x9f\x98\xae\x21\x8f\x9a\xad\xd8\xb0\xed\x5a\x1f\x93\x48\xff\x5a\x01\x43\xc4\x6b\x96\x29\x76\xe4\x3b\xf4\xa2\x26\x7a\x03\x37\xad\xf5\x12\x57\xb1\x69\xb8\x2b\x85\xb8\xd3\xad\x50\x6c\x40\xa4\x26\x5e\x62\x07\x43\xc2\x49\x01\xad\x00\xd3\xdc\x69\x81\x7b\x4d\x20\x46\x0a\xbd\x6a\xbe\x9c\xe3\xb7\x16\x8d\xc9\xb1\x81\x3d\x58\x9a\xbf\x2a\x06\x38\xe7\xb5\xc9\x44\xac\x8b\xa4\x36\xc5\x96\x32\x12\x34\xc0\x3d\x5a\xb7\xc1\x57\x6c\x38\x31\xdb\x6e\xe4\xf3\xeb\x0d\xaf\xbe\x6a\x18\x70\x86\x05\x3d\x79\xfa\x35\x9f\xac\x99\xe5\x49\x77\xf9\x5d\xd9\x0d\xdf\x4e\xa7\x62\x3a\x15\x2d\xf7\xa3\xc9\xa0\xb0\x0c\x5d\xa3\x17\x6a\x11\x86\x20\x5c\x83\x6a\xa3\xf5\xb2\x58\xda\x2e\xc1\xd1\x9e\xb4\x48\x91\x4f\xec\x51\x45\x9c\x38\xc6\x80\x91\x38\x4d\xa3\xc9\xa2\xc6\x18\xfb\x93\x74\x0b\xd0\x25\x73\x06\x4b\xcb\xdb\x5b\x7b\xb1\x89\x3a\xa8\x65\x8c\x9a\xce\x02\xef\x7a\x14\xd0\xf9\x64\x52\x60\x52\x68\x22\x3c\x98\x44\x97\xc8\x9b\xe2\x23\x7a\xc9\xf1\x7a\x0d\x27\xd0\xaf\x67\x2e\xa3\xf4\xf4\x98\xd0\xf9\xa7\xb0\x91\x0f\xcf\x47\xff\x8e\x01\x37\xcc\xd3\x2f\xac\xba\xd0\x55\xdd\x26\x74\xe0\xc5\x33\x31\xe0\x44\x1a\xf8\x89\x49\x0e\xd0\x93\xd3\xc5\x8a\xdb\x8d\xbf\xca\x57\xf9\x6c\x86\xb5\xa0\x37\x0e\x46\x9b\x5c\x23\x11\xbd\xf8\x31\x65\x7a\xfb\xd7\x05\x2a\x42\x63\x91\x83\x62\x03\x2f\x8e\x31\x66\x0d\x29\x31\x60\xa4\xb9\x5a\x14\x87\x42\x7a\x59\xd8\x81\xd8\x53\x1d\xd2\x98\x58\xf1\x56\x7f\x62\x22\x35\xa7\xdc\x80\xae\x2e\x31\x9d\xda\x02\xbd\x74\x5c\x1b\xc9\x6e\xb3\x25\xa2\x23\x7b\xb1\xf6\x4e\xa5\x01\xd6\x0e\xdb\xe5\x56\x71\xec\xb8\x68\x2c\x5a\xb7\xbc\x89\x5e\xe2\x01\xbb\x16\x5c\x97\xa2\xc8\xe3\xe4\xd3\xeb\xce\xb4\x02\x60\xf7\xf5\xa1\x98\x4e\x39\x32\xbf\xc2\x3b\x50\x2e\x5e\x7c\x7c\x3f\xbb\xb8\xc5\x55\xb5\xd9\x92\xc9\x42\x17\x63\x0f\x45\x1e\x9b\x72\xf0\x73\x58\x50\x9f\xc1\xbf\x49\x2e\x50\x70\x16\xe8\xbd\x1f\xed\x73\x88\x39\x2c\x0b\x61\x58\x06\xfe\x0c\xbf\xa0\x88\xc0\x47\xa3\x19\x0f\xb9\x30\x1a\x47\x66\x19\x50\x22\xc0\x86\x64\x7c\xef\xd4\x16\x70\x88\xd9\x6f\x53\xde\x6d\x37\x06\x48\xf5\xce\x54\x07\xdf\x6a\x6a\xdc\x01\xf7\x0e\x0a\xd0\xf9\x5a\xc0\xac\xc9\xb5\x43\x3f\xbf\xb8\xf6\x42\xd7\xf6\xd2\x7b\x0d\x10\x85\x8f\x8a\x06\x37\x52\x66\x2c\xf6\x4c\x8b\xd4\x5a\x45\x1c\x34\xb4\x62\x28\xf4\x17\x55\x65\x34\xf6\xb4\x20\x92\x1e\x61\xc7\x22\xb1\x66\x11\x37\x48\x50\xac\x8b\x88\x11\x07\x6c\x4e\xc0\x77\xb0\x07\x78\x51\xd5\x8d\x6e\xa0\x39\x3b\x03\xf4\xd7\x60\x59\x89\x89\x6a\xc8\x45\x8f\x9d\xf1\x94\xcf\x66\xb3\x9b\xc9\x4c\x1a\x6e\x04\xb0\x3c\x27\x9c\x32\xc2\xe8\x64\x89\x89\x5a\x23\x4e\x85\x27\x52\xb5\x22\x51\x87\x1f\x8b\xd3\x14\x71\x8c\x23\xa7\x92\xf6\xcf\x8d\x25\x42\x0e\x47\x8f\xe9\x4a\x15\x89\x3d\x8c\x94\xb7\xb8\x8d\x55\x95\x1c\x30\xeb\x13\x4a\x27\x8b\xe9\x74\xe2\x2e\x5a\xf6\xb1\xea\x5f\x0f\xb5\x8c\xe3\x7a\xc8\x74\xc5\x6b\xb9\x89\xb7\x51\x8c\x5b\xbd\x46\xa3\xa3\xb4\x3a\x8a\xda\x55\x6a\xd6\x26\x9e\x4e\x51\x1e\xde\x6a\x89\x32\xf6\xff\x54\x55\x6e\xff\x16\xf0\x77\x36\xc3\xf6\x3e\xa3\x39\xc5\x7f\x45\x9b\x8f\x9f\xa3\xf9\xf6\x1c\x7f\x54\xe7\x28\x3c\xc7\xbf\xb9\xc0\x24\xa3\xfb\xcd\x72\x3b\x93\x3d\x0e\x96\x24\x74\xbf\xb9\xdc\xae\x92\xb5\x08\xa5\x40\x19\x49\x48\x8e\x23\x6e\x7e\xe7\xe6\x90\xc8\xdd\x6e\x20\x24\x6b\x19\x39\x08\xb0\x63\x21\xcf\x02\x6c\xb0\xc0\x08\x93\x3c\xd3\xb9\xb3\x91\x0c\xc2\x80\xaf\xe6\xd8\xfe\x19\x08\xc1\xdd\x3d\x87\x53\x8c\x3b\x0c\x81\x2f\x0b\x77\x13\xc6\x4a\xfb\xc2\x74\x37\xa1\x5b\x1a\x98\xfa\x2c\x7e\xec\x71\x60\x1e\x05\x73\xf0\x32\xdc\xeb\x62\xad\xd9\xad\xa8\x70\x7b\xdd\x51\x9e\x1b\x4a\xe0\x13\x01\xc5\x8a\x0f\xfc\x8e\xc9\xb2\x40\x9c\xb0\xaa\x02\xac\xd0\x0c\xab\x83\x36\xfb\x53\xe8\x4e\x40\x1f\x88\x0e\x39\x20\x47\xb8\x8b\x65\xa2\x60\xf9\xb0\x9d\xeb\x96\x6d\xd2\x04\xcb\x5a\x36\x19\x04\x79\x82\x0b\xa9\x09\x34\x98\xb1\xf8\x7e\x64\x60\x5d\xee\xe4\xc5\x6d\x02\x7c\x35\x9b\x36\x6c\xd6\xdb\xe0\xee\xf6\x8e\xcc\x17\x32\xb9\xf8\xef\x4d\xd6\xb2\x4e\x35\x81\x1f\xb2\x2c\xfe\xdb\x53\x75\x2d\xc2\x54\xad\xbc\x7f\x0a\x51\x92\xb8\x2f\x9b\x68\x01\x49\x51\xa0\xf7\x70\xf5\x06\xf2\xbb\x3e\x2b\x3c\x04\xc5\x19\x62\x4e\x9e\x19\x68\xcb\xd6\x2c\x1a\xcf\x98\x31\xdc\xbd\x76\xd3\x8d\x19\x6d\x8e\x8f\x48\x37\x8b\x2d\x91\x94\x87\x32\xe7\xb7\x5c\xc4\x19\xb4\x00\xea\x76\xa1\xb9\x7d\x89\xe1\x0f\xaf\x2a\xc4\x37\x62\x0b\x8a\xdb\x8e\x30\xd3\xd2\x0f\xab\xe4\xd0\x33\x25\x13\xd4\x51\x05\xc7\x78\x3a\x8d\xbd\xeb\x1b\xbf\xf3\x0d\xf7\x2f\x0e\x29\xa5\x93\x65\x55\xf1\x90\xab\x37\x46\x0d\xf4\x63\x0e\xf8\x84\xa5\xfa\xcc\xd6\x0e\xcd\x83\x49\x56\x6b\x7f\xb5\xe7\x29\x33\x5f\x3f\x94\x45\x50\xf7\x6e\x4a\x86\xaa\xc8\x4d\x70\x1d\xcc\x7c\x1d\x3b\x08\xe4\xf8\x38\xd4\xb0\x83\x82\xf6\x68\xcc\xd0\x23\x51\x1b\x34\x1c\x93\x9c\x8a\xb5\xd0\x83\x5d\x54\x55\x60\x8c\x88\xbc\x4a\x6b\x1e\x89\xd0\xd4\xa9\x2a\x1e\xb1\x95\xa0\xa0\x82\x25\xc3\xa2\xa6\xfd\xc6\xd6\x49\xc0\x2d\xe1\x44\xaf\xde\xdb\xbb\x43\xf1\x68\x6f\x26\x04\x30\xae\xd6\xbe\x9c\x4a\x22\x42\xc0\x5d\x9a\x1d\x85\x1f\xc8\x26\x60\x12\x4f\xa7\x85\xed\x5a\x79\x3f\xed\xdf\x4d\xbe\x5d\x6b\x80\x43\x02\x47\xf9\x84\x52\x36\x9d\x2a\x93\x96\x6f\x75\x1b\x76\x18\x44\x84\x2c\x56\x5c\xdc\x12\x89\x23\x15\xfe\xbd\x64\x25\x43\xfe\x85\xb8\x25\x92\xba\x25\x60\x93\xa5\xb9\x84\x50\x9b\xc5\x16\x13\x8e\x34\x45\xa9\xdb\x1b\x22\x32\x76\x27\xc9\xba\x3c\xd4\x06\xcc\x83\xbf\xcd\x64\x5c\x20\x30\xfe\x38\x47\x65\x58\x30\x65\xbf\xd6\xec\x62\xb9\x58\x44\x4b\x4c\x3a\xe5\x96\x9d\x72\xcb\x2d\x5e\x73\x5b\x6e\xeb\x9b\x3b\xfb\xbc\x5a\xcf\x0c\x59\x67\x91\xe5\x02\x57\x55\xc7\xa6\xb8\xe1\x60\xd9\x66\xb1\x75\xf0\xfe\x7b\x4a\x29\x0f\x85\x4c\xd9\x87\xc7\x03\x5b\x1f\x3f\xf3\xb4\xd8\x47\x70\x87\x53\xec\x11\x26\x7b\xc6\x6f\xf7\x45\xc4\x42\xf3\x43\x2f\xcd\x6e\xa7\x58\x11\x1d\x0b\x79\x88\x16\x24\x63\xbb\x22\x5a\xd4\x75\xa4\xb7\xd7\x68\x30\x11\xc7\xbf\xb4\x1d\x16\x1a\xbf\x85\x0f\xa0\x4d\x81\x36\x5d\xd2\x9f\xd9\xae\x40\xb8\xae\x23\x1e\x1e\xcc\xb1\xb1\x87\xc8\xf5\xb1\x70\x6d\x2f\x3a\x4d\xf2\xf0\x10\xdf\xb2\xff\x63\x1a\x33\x1f\xff\x6f\x5d\x47\xcd\xc0\x64\x59\xb0\xfc\xe7\xfe\xe8\x20\xf5\x4f\xbd\x21\x02\xb5\x57\x0c\x86\xe1\x18\xc3\xef\xe2\x62\x1f\xde\xc5\x0f\x24\x36\x3f\xe3\x1b\x45\x72\x7a\xa1\x7b\xab\x12\xa0\x5d\x15\x58\xeb\x5f\x90\x3d\xbd\x28\xe4\xc1\x25\xde\xc8\xa2\x90\x77\x17\x24\xa3\x17\x9b\x8f\xb3\x8f\xf3\xed\xc7\x74\x86\x3e\x86\x9b\x8f\xe9\x76\x86\xd7\x5f\xac\x2f\x48\x42\x2f\xfe\xfa\xf1\xf3\xec\x82\x94\xf4\xe2\x8b\xdf\x5c\x90\x94\x16\xe1\x4e\x84\xce\x4e\x7d\x55\x34\x3f\xe9\xd1\x2c\xd1\x4d\x6c\x26\xe2\x8b\xbc\x7c\x87\x9a\x9b\x27\xe1\xf4\x48\x62\x65\x6f\xb0\x89\x66\x52\x8c\xa5\x1b\x68\xb7\xe9\x97\x29\x57\x07\xcd\x39\xdc\x64\x32\xf9\xb4\x72\x3d\x44\xce\x20\x7e\x65\x96\xed\xab\xc5\xe1\x61\x65\x17\x0b\x7e\x6b\x6a\xb8\xcb\xe4\xe7\xc8\x18\xe5\xaf\xbe\xbc\xf2\x1b\xb5\x25\x97\x0b\x5d\xd4\xb4\x10\x97\x85\x5c\x39\x9b\x37\x67\xf9\x46\x24\x55\x21\xdc\xb8\xe4\x4c\x80\xc9\x54\x83\x8e\x51\x70\x23\xd3\xc7\x00\xb8\x12\x2d\x71\x2a\x4c\x18\x95\x76\x43\x60\xd6\x44\x19\xdb\x7b\x37\x94\x80\x04\x66\x59\x02\x4c\x78\xaf\x28\x33\x5a\x7f\xc4\xa9\x3e\xd6\x61\x92\x71\xd0\xbb\xa7\xc5\x5e\x4b\x83\x86\x3c\x22\x4c\x04\x65\x73\x5e\x93\x5b\x56\xbc\x87\x96\xde\x89\x9d\x1c\x91\x04\x59\x03\xf2\x55\xa5\x7f\xbb\xbb\x81\x75\x10\x44\xad\x00\xdf\x19\xdc\xfc\x21\xc0\xa0\xc1\xfc\xe5\x35\x1f\x03\x3d\x30\x37\x37\x3d\x91\xaa\x0a\xf4\x72\x06\x66\x52\xf6\xac\xfd\x81\x79\x94\xc8\x9e\x21\x33\x79\xe9\x57\x56\x5e\x65\xa5\x2b\x9b\xbd\x1a\xab\x6d\x8e\x83\xdd\x11\x7b\x7e\xe4\xba\x05\xc3\xb0\x0b\x85\x08\xb7\x47\x52\x3c\x5d\xac\x86\x35\xfe\x99\x17\x7b\x2e\x4e\xac\x71\x81\x58\x55\x99\x7b\x15\xbd\x70\x3e\x96\x01\xc4\x2c\xe8\x64\xa2\x7f\x4d\xa7\x80\xc9\xf4\xa8\x1d\x32\x23\x92\x4e\xd4\x74\x3a\x11\x6e\xe8\x4e\x60\xe4\xc4\x35\x12\x29\xd2\x2e\x7e\x24\xdc\x81\x97\x6b\x60\xaa\xdd\xa9\x8f\x8e\x06\xcb\x11\x40\x79\x35\x69\x11\x53\xc4\x3b\x58\x8a\x34\x58\xac\xc9\x30\x18\xcd\x2c\x1a\x1f\x45\x3a\xbc\x8b\x74\x6a\x60\x08\xbc\x03\xdf\xb9\x34\xe7\x3b\x34\x11\x55\x35\x11\xa1\xdc\xb9\x53\x9d\x8e\x1b\x91\xac\x3c\xa3\xd9\x63\x4d\x84\x21\xf3\x25\x39\x90\x1d\xb9\x25\x77\xe4\x9a\xdc\x83\x8e\x41\xee\x30\xb9\xa1\xde\x3e\x75\xb6\x04\x89\xf0\x33\x7c\x60\xf2\xd8\x2b\xd4\x9e\x0d\x74\x83\xc9\x67\x8a\x34\x39\xcf\x32\xae\xb8\x14\x55\x15\xec\x32\x7e\xe8\xc8\x59\xe4\x13\x3d\x36\x42\xfa\x35\x55\xe8\x1e\x93\x7b\xb8\xfe\xea\xe0\x75\xcd\x3d\x84\x71\x41\x03\xbd\xe8\x67\x85\x3c\x04\x98\x1c\xe8\xb5\x81\x6e\xb2\xa3\xd7\x16\x54\xc9\x2d\xbd\xb6\x5b\x44\xee\x3a\x53\xbd\x6d\x24\xe7\x4d\x70\xf7\x18\x90\x00\x0c\xf2\x7b\x77\x41\x40\xa9\x29\x12\x1b\xbd\x6c\xdb\xbe\x4c\xb8\x5a\x02\x5d\x6c\x54\xba\x9c\xe6\x86\x22\x03\xd4\xad\xb9\x63\xef\x36\x81\xc1\xeb\xc1\x16\x47\x7b\xbf\x44\x9b\xe1\x8a\x72\x1c\x35\x89\xa4\xad\x46\x74\xf9\x5e\xeb\x9b\xc5\x36\x6a\x8a\xf2\xcd\x72\x4b\x9b\xb6\x81\x1f\xd8\x2c\xbd\xfc\x82\x66\x21\x7b\x60\x89\x3d\x10\xac\xfd\x5c\x6e\x31\xf9\x64\xe6\x47\x37\xc5\x5a\x1f\xe9\x68\x41\xd8\x9a\xc1\x8f\x2d\x11\x2e\x2f\xf1\x1a\xd0\xfc\x6b\xe2\xb5\xb0\x59\x6c\xb7\xb5\xb9\xe1\xf8\xdc\xae\xc7\x67\x3d\xa8\xcf\xd0\x61\x00\x74\x0e\xec\x26\xc2\x58\xf7\xb1\xbe\x0b\xf5\xd6\xcd\xe8\xa1\x19\x64\x9b\x39\x9d\xa2\x26\xfb\xe2\x12\x93\xc0\x10\xc4\xa6\xc4\x52\x57\x2f\xe4\x61\x46\x77\x83\xda\x4b\x53\xdb\xe4\xea\xca\x25\x65\xe8\x53\x18\x17\x1a\xa6\x31\x71\xed\x96\x7a\x0a\xb6\x58\xb9\x59\x6e\x4f\x1b\x18\x28\x92\x93\xbd\x95\xa9\x41\xd1\xd0\x3d\xa0\x89\x4b\x68\x18\x82\x94\x72\x73\xcc\x82\xbb\x38\xbf\xe5\x42\x1f\xfb\x00\x93\xeb\x5e\xf2\x07\x00\xda\x07\x9a\xcd\xd2\x59\x37\xe7\x27\x58\x2b\x3c\x7b\xb4\xe0\xfc\x9a\x26\xb3\xeb\x5e\x99\x3f\x9a\x15\xd1\x85\x2c\xa4\xbf\xe9\x80\xf7\x1d\x26\xef\x60\xe2\x77\x8f\xa4\x37\xe2\xde\x78\xf1\xca\xdf\x9c\xbb\x47\xbd\x39\x6f\x60\x95\xe6\x34\xeb\x2e\x2f\x64\x4e\xa7\xa8\xc9\x1e\x6c\xce\xdd\xa3\xde\x9c\x37\x7a\x5d\xe7\x34\x19\xd4\x5e\x9a\xda\x26\x57\x57\x7e\x63\xb7\xe3\x9d\xde\x8e\x37\x66\x3b\xde\xe9\xed\x50\xf4\xd8\xae\x5e\x94\x92\x66\xcd\xa2\xeb\xba\x3d\xb8\xba\x72\x40\x02\x7d\xfe\xb7\x03\xd9\xa7\xe4\x0d\x26\xda\x7c\xde\xb0\xed\x56\x8b\x05\x83\xc4\x0d\xdf\xa2\x37\xe4\x68\x24\x44\xc3\x21\x1d\x88\xf9\x32\x2b\x14\xed\x40\xa7\x68\xb2\x32\xf8\x6d\x33\x12\xd2\xa0\xb2\x1f\x1d\x2f\xa4\xda\x34\x53\xe3\xa1\x4d\xb0\xd5\x5e\x3b\x0a\xb2\xd1\x40\x38\x83\xa9\x6b\x10\x9c\xe9\x89\x6f\xc9\xdd\x63\xa4\xd7\x8a\xc4\x45\xa4\x01\x9a\x18\xcc\x1a\xdd\x40\xcf\xd1\xbe\xc6\xb5\x96\x89\x4a\x2d\xa5\x4c\xa7\x28\xa7\x83\x5b\x39\x7a\x6b\xb6\xc7\xac\x2d\xe1\x94\xcd\x0e\xf3\x8c\x28\x7a\x0b\x0b\x0f\xab\x4c\x72\xaa\x66\xbb\x79\x42\x4a\x6a\xa7\x1e\x35\x94\xef\xde\xb0\xc3\xa6\x15\x20\x67\x50\xd1\xd2\xa7\x83\x23\x49\xbb\xba\xd1\xb5\x36\x55\xf7\xa6\xea\x9b\xb6\xea\x1b\xaf\x6a\xe6\xaa\x26\x35\xd9\xcb\x9c\xff\x43\x8a\x22\xce\xa2\xc5\x15\x5f\x9b\x9d\x8c\xd8\xd5\x62\x6d\xa1\xb1\xc5\x5d\xf7\x2c\x2f\x78\x02\x05\xf3\x35\xec\x75\xa4\x74\x39\x0b\x77\x51\x70\xc7\xd3\x34\x63\x41\xbd\xca\xae\x0e\xd3\xe9\xe1\x2a\x46\x6c\xc6\xf1\x74\x8a\xca\xb0\xed\x86\xba\xf6\x30\x49\xae\x76\xd3\xe9\xee\x2a\x46\x6a\x96\x9b\x62\xae\x0b\xea\xda\xc2\xa4\x0c\xf9\xdd\x41\xe6\x45\x2c\x0a\x2a\x51\x8c\x18\x26\x31\xe2\x18\x5f\xe9\x0f\xa5\x3f\x72\x8c\xd7\x41\xdb\x41\x10\x05\xae\x99\xc0\x6d\x90\x91\x0e\xe1\xdc\x16\xa4\xd4\x3b\xb7\x77\x0c\x43\x73\x58\xdf\x90\x23\x94\x8d\xf2\xda\xa8\xed\x3b\x40\x4a\x8f\x3b\x5e\x58\xde\xa2\xab\xb0\xb3\x57\x94\x94\x59\xda\x4b\x04\x55\x0d\xe3\xb3\x56\x1e\xcf\x11\x29\xdb\xa9\xd9\x96\x98\x2a\x8b\x58\x72\x6a\x92\xe6\x2c\x1c\x40\x72\xd8\x1e\x3f\xb2\xa7\x62\x9e\x93\x8c\xe6\x33\xaf\x20\x80\xf7\x3c\x9e\x8b\x55\x3f\xf1\x2a\x5e\xef\xaf\x16\xd3\xe9\xe2\x8a\x66\x6b\xc4\x6d\x27\xb3\xfd\x68\x6d\x62\x73\xe9\x7e\xce\x71\x64\x3e\x68\x66\xab\xef\xd7\x22\xda\x5f\x65\x6b\x31\x8b\xe7\xfd\xca\x91\xce\x5a\xac\x9b\xea\x51\xd6\x7c\x69\xc4\x65\x5b\x92\xc8\x26\xe5\xb6\x23\xbd\xc0\xf2\xf0\x4f\xad\xa5\xc6\x3e\xcd\x52\x6a\xb0\x8e\x9b\x0a\x0e\x09\xeb\x15\xd5\x87\xec\xf4\x82\x7e\x90\x87\xf1\xf5\x34\xd8\xa1\xbf\xa0\x26\x75\xb8\xa2\x1a\x53\xee\xc7\xab\x13\x93\xeb\x16\xb4\x90\x87\xe7\xd6\xd3\x22\x26\xb7\xa0\xa6\xb6\x5d\x4f\xc0\xd5\x99\x6d\x47\xaf\xa6\x4e\xc8\x4d\x1f\xb8\xae\x89\xe6\xe0\x9e\x82\x4f\x2d\x27\xb9\x55\x95\x54\xf8\x90\x38\x13\x1e\x90\x92\x9c\x0a\x0b\x96\x7b\x2a\xda\xc5\xf7\xcb\x44\x9d\xea\x24\x7b\x21\xf8\x26\x34\x9b\xef\x49\x49\xb3\x21\x00\xe6\xf3\x3d\x49\x0d\x17\x09\x1e\xdb\x96\xfe\xcd\x8d\x84\x63\xe0\xac\x25\x8f\x2e\xdb\xcf\x5d\x90\x83\x5f\xdf\x30\x37\xee\x3a\x6e\xd8\x80\xc9\x9f\x77\x0b\x2c\xc8\x8e\xce\x2f\xcf\x9d\x0a\x41\x8b\xb6\x8b\xab\xc4\x3b\x3a\xe9\xec\x30\xdb\x8d\x8d\x5e\x12\xb4\xb8\xe2\x55\x15\xa3\x04\x5f\x01\xce\x73\xe7\x01\xaa\x60\x1c\x95\x7a\xeb\xc1\x79\xe1\x05\x4b\x65\x3a\x9a\xef\x09\x52\x57\x8b\xaa\x2a\x35\x8e\xc4\x23\xad\x3e\x71\x86\x4e\xec\xb7\x86\x29\xd1\x9e\x23\xd8\x6d\x7b\x66\x46\xb7\x5b\x9f\x35\xbf\x32\x6c\xf6\xf3\x27\x6b\x74\xab\xed\xd1\xb0\x7b\xad\x09\x88\xdb\xcb\xe5\x96\x1c\x68\xea\xb6\xdb\x1e\x03\x8f\xa1\xb1\x85\xd6\x9d\x7c\xbd\x5b\x6d\x2b\x86\x1d\x75\xfb\x39\xd6\x84\x29\x31\xef\x15\x59\x90\xdb\xce\x9e\x2f\xed\x9e\x2b\x7b\xb8\xf5\x86\xdf\x8e\xce\x02\xf6\x5c\xd9\x3d\x57\x66\x77\xe0\xc8\x42\x95\x66\xcb\xf9\x4b\x16\xcc\x74\xa3\x37\x9c\xbb\x0d\xe7\x78\xd8\xa4\x3d\xe7\x23\xa4\xa8\xc7\x68\x85\xba\x18\xc0\xca\x29\xa7\x85\x6e\x69\x5e\x3c\x51\xb8\x07\x65\xa3\x5d\x15\xf2\xf0\xe2\x9e\x4e\x96\xad\x6b\xf0\x94\xe8\xd4\xf0\x1c\x51\x5b\x8f\x1e\x72\x4c\x8d\x71\xa1\x4e\x09\x8d\x6d\xe1\x8f\x8a\x95\xa9\x5c\x8f\xa4\xa1\x67\xbc\xab\x7a\x1e\x40\x9c\x30\x5c\xd7\x78\x70\x7b\x32\x70\x14\x52\x9b\x57\x5b\xab\x67\xde\x89\x86\xe7\xb7\x97\xb4\xef\x5d\xe8\x9e\xbe\x5d\x63\x41\x03\x69\xe3\x14\xa8\x22\xce\x8b\x80\x8b\x33\x67\x5f\x6a\x87\x6d\xcd\x0b\x50\x90\xf2\xfb\x00\xaf\x03\xbf\x74\x64\xbc\x1f\x53\xf9\x59\x34\xee\xa1\x27\xac\x67\x34\x46\x98\x19\x87\xc5\xde\x98\x02\xd2\xb5\xb2\xed\x0a\xf5\x46\x7d\x8e\xb0\xb5\xeb\x19\x9d\x49\xa7\x9f\xdd\x0e\x8d\x77\xa3\x57\x07\x34\x19\x09\xc4\x52\xb0\x77\x01\xf3\x80\x94\x9d\x6f\xd0\x40\x06\x24\xed\x24\xc6\x82\xdf\xc5\x05\x4b\x03\x72\xa0\xc5\xaa\xb9\x48\x68\xee\x42\x8e\x75\x4d\x4e\x5e\x9d\x5a\xd5\xbe\xb9\x0a\x2d\x37\x0c\xae\xb1\xc0\x2a\xd0\xad\x99\x31\x61\x28\xd6\xbc\xaa\x26\x2c\x4c\xd9\xce\xd8\xe7\xc1\xcf\x08\x15\x54\x85\xbb\x4c\xca\x7c\xfd\x5f\xff\x55\x44\xbe\xca\x1f\x13\x13\x29\xa4\xc0\x6b\x53\x56\x85\x77\x32\x5d\xa3\x62\x06\x3f\xf0\x17\xf0\x27\x5a\x5c\x15\xeb\x45\x54\x5c\xa9\xf0\x2e\x7e\x58\xc3\xbf\x51\x81\x7d\x0d\x7f\x33\xbc\x0c\x94\x98\x2a\xbc\xce\x6f\x6f\x62\xba\x69\xd4\xa9\x9c\xf2\xde\x05\xda\x0e\xed\xfd\x29\xb7\xf6\x4d\x54\x86\x39\xb3\x7a\x00\x4c\xf6\x34\x9f\x4e\x65\x08\xa3\x46\xb9\x96\x95\x65\x08\x57\xe1\x55\x15\xe8\x3e\x1a\xb8\xd9\xaf\x51\x4c\xd5\x26\xdb\xa2\x3d\x26\x6a\x93\x6c\xb2\x6d\x98\xc4\xc9\x9e\x6d\x69\xec\x7f\x79\xc3\x8b\xcd\x5f\x70\x7c\x60\x20\x01\x19\x35\xc3\x1a\x05\x0b\x02\xff\x19\x21\x13\xae\xe9\x31\x5c\x00\x99\x73\x21\x88\x0c\x21\x8a\x92\xb1\x9f\xc6\x44\xe1\x48\x6e\xf8\xb6\xe3\xeb\xd5\x31\x6a\xe1\x14\xf1\xd9\x12\x7f\xb1\x24\xcb\xab\xaf\xcf\xf9\xba\x98\x7d\x7d\x8e\xd8\xbc\xc0\xe7\x3c\x5a\x5e\x5d\x9e\xf3\x35\x8b\x2e\xaf\x5e\x75\x72\xd0\xe5\xc5\x2b\x60\xb7\x40\xf7\x2f\x49\x4c\x83\x9b\x38\xf9\x74\x9b\xcb\x52\xa4\xaf\x65\x26\xf3\xb3\x1b\x99\xa7\x2c\x37\x72\xbb\x9f\xa2\xe9\xae\xff\x0d\xd2\xbf\x9f\xf0\x41\x1e\xcc\x67\xe2\xfe\x2d\xef\xc4\x4f\x65\xc6\x4c\xaa\x2c\x0b\x08\xb8\x02\x1f\x05\x7b\x28\xde\xb0\x44\x9a\xeb\xac\x36\xed\xed\xdd\x61\x1f\x2b\xae\x20\x25\x20\x39\x05\x33\x8a\xf9\x6c\x8b\xe9\x47\x75\x8e\x3e\xa6\xb3\x8f\xe1\xfa\x63\x7a\x8e\x2f\xc8\x9e\x6e\x8e\x39\x8b\x2e\xf4\x72\xaf\x3f\x22\x93\x7d\x5c\x92\x57\x35\xfe\xa8\xce\xc9\x33\xdf\x68\x1d\xd9\xa4\x35\x5a\x47\x1f\xc3\x8f\xe9\x0c\xaf\x75\x06\x5e\x7f\xc4\x17\xe6\x12\xab\x63\x83\x68\x6f\xc1\x0a\xd0\xc1\x6c\x2e\xf5\x3f\xaf\xf4\x3f\xbf\xdd\x6e\xeb\x9a\x0c\x47\x32\xf3\x9b\xfd\xa2\x1d\xc1\x8b\xd3\xff\xd9\x11\x5e\x86\x5f\x7d\x75\x0e\xc3\xb4\xbf\x2e\x9b\x5f\xfd\x01\xff\x1a\x6d\xe2\xf9\x6e\x31\xff\xfd\xf6\x78\x59\xe3\xd3\x1f\x4f\xf4\xd6\xde\xd6\xe9\x1e\x97\x5f\xdb\xfb\x3f\x93\x72\x39\x48\x79\x05\x29\x23\x03\xc0\x63\xbf\x5e\xda\xef\x6c\xbc\xf3\xd9\xf8\x08\x66\x83\x61\xec\x55\x76\x62\xe3\xfe\xe5\xdb\x66\x3c\x0d\x03\xdd\x63\xf0\x02\x28\xbb\x58\x2e\x16\x00\x69\xf6\x07\x6c\xde\x16\x98\x4c\x38\x22\x3d\x47\x63\x22\x1a\xec\x20\xd8\xe7\x33\x5b\x08\x14\xf0\x80\xec\x5c\xa1\x9a\x24\xf4\xa8\xc1\x35\x3a\x1e\x72\x79\x50\xd1\x31\x67\x69\x74\xe4\xe9\x43\xb4\x20\x9a\x14\x44\xc1\xcd\x63\xc1\x82\x9a\xdc\xe6\x8c\x09\x93\xb3\xec\xe6\xdc\x64\x25\x33\x19\x97\x9d\x8c\xba\x26\x7a\x76\x4d\xcb\x7b\x57\xcc\xb5\x9c\x32\xdd\xa8\x0a\x6a\xa2\xe2\xc2\xdd\xab\x77\x7a\x38\xb0\x3c\x01\x1b\x49\x02\x61\xf0\x04\x53\xaa\xdb\x53\x53\x40\xf7\x56\xd2\xa3\xe9\x3a\x3a\x02\x49\x8a\x26\x0b\xa2\xc9\xc9\xe5\x57\x5f\xd5\xc4\x96\x8c\x8e\x3a\x65\x59\x13\xdb\x79\x74\xd4\x44\xe8\xd5\xd7\x0b\xe2\xaa\xd4\x35\x49\x69\x16\xaa\xf2\x70\x90\x79\x41\x8f\xb5\x26\xab\x28\xf8\xc3\xe1\x0a\x1c\xb4\xc9\x8e\x1a\x6d\xde\xea\x60\x7c\x68\xc2\x44\xa9\x0f\xec\xa1\xf0\x11\xe8\x1c\x30\x5f\xa4\x17\x16\x2d\x89\xfe\x2f\xfc\x0a\x07\x24\x0d\x81\x34\xb8\x8a\x3d\x84\xdb\x06\x16\x00\xda\x83\xaf\xe6\x4b\xb2\x43\x49\x8f\x76\x33\x43\x6a\x68\x70\x1d\xcc\x0a\xc2\x42\x58\xdc\x30\xce\x0e\xfb\x98\xc2\xd2\xbc\xea\x2d\x0d\xd1\xb4\x77\xa9\xb9\xaf\x2c\xdc\x79\xb7\x27\x59\x6b\x64\x41\x8e\x3d\x00\x14\x24\x26\x39\xd9\xc3\xcd\x8c\x80\xc0\x60\x1d\xfb\x49\x43\x7f\x6d\x58\x16\xff\x1f\xa3\x95\x5e\x21\x61\xbd\x01\xab\x4a\x34\x17\x57\xd8\x78\xd0\x21\x81\xe1\x0a\x30\x06\x83\x61\x7b\x7d\x03\x86\x2e\x70\x27\xac\x87\x83\x04\xd6\x6b\xee\x75\xd5\x90\xfa\xd8\x98\x42\x20\x41\x37\x76\x8c\x5b\xcd\x0d\xc5\x79\x1e\x3f\x06\x98\xb4\x56\x21\x34\x35\xe6\x94\x06\xdc\x15\x12\xb8\xaa\x64\x13\x9d\x05\x47\xb6\x0a\x14\x44\x3b\x94\xc0\xce\x98\xc5\xec\x2d\xf8\x61\xc3\x42\x9e\x3e\x6c\x29\x47\xc2\xfe\xd4\x7c\xaf\x31\x76\xc2\x51\x20\xc1\xf0\xc3\xb6\x24\x1a\x5f\x45\xb9\x3b\xcb\xd6\xc3\xed\xd3\x4d\x18\x5e\x61\x3a\x45\x65\xf3\x41\xdb\x74\x13\xf4\x00\x61\xac\x39\x6b\xbf\x3e\x73\x96\x49\x70\xaf\xac\xcb\xae\x76\x48\x8d\x8e\x99\xef\xd0\xa4\xdc\x48\xb0\x82\x2e\x24\x7c\x07\x00\x22\xe0\x6c\xe0\xcc\x52\xc5\xa6\xd8\xda\x8d\x5d\xe9\xd2\x54\x17\x46\xa5\x59\x74\x5c\xeb\x24\x7f\xee\xc5\x96\x30\x30\x94\xc5\xc4\xb4\xbd\xb8\x6a\xed\x7f\x01\x04\x74\xb2\x1d\xfe\x82\xbc\x02\xb1\x0c\x1a\x79\xb5\xa5\x4b\xa2\xc2\x5d\x2e\xef\x40\x7b\x69\x76\xd5\x24\x40\x09\xb0\xff\xb5\x0b\xca\x6a\xc2\x87\xae\x1b\x9c\x66\x9a\xa5\x54\x74\xb2\xe8\x19\x6e\xf7\xd6\xd8\xe3\xf5\xf8\x46\xda\x35\x75\x65\xf3\xe9\x14\xc5\x54\x34\xe9\x1a\x26\x0a\xb0\x8a\x29\x24\x12\x76\xe2\x60\x6f\xbd\x43\x72\xb8\xb2\x2d\xcb\x65\xa2\x4a\xe4\x1b\x0e\xcb\xb3\x56\xcd\x4f\x4a\x69\x6c\x7f\x6a\xb6\x0f\x13\x55\xeb\xff\x93\x6b\x83\xef\x07\x22\xce\x66\x4b\xd8\xe9\xe9\x80\x38\xc5\x36\xaa\x01\x99\xc2\x5a\xbd\xc3\x72\x19\x37\x9d\x9a\x00\xb7\xc8\x47\x9c\x54\x1c\xdb\x5c\x58\xbe\x19\xc6\x80\x30\x91\x34\xd9\x88\x2d\x89\x69\xe3\x7d\x03\xc0\x81\xf0\x3a\x43\x81\xc7\x7b\x06\x18\x4c\xd6\x48\x4e\xe3\xde\x92\x21\xcb\xde\x02\x0f\xed\x20\xb6\xb1\xa2\xa4\xaa\x29\x3e\xbe\x90\x8d\xa3\xb4\xd0\x2b\x45\x62\x9a\x6f\xa4\x26\x66\x4a\xff\x49\x68\xb9\x11\x9e\x1c\x62\xd6\x9a\x66\xfa\xd8\x1b\x73\xea\x78\xbd\xd7\xe0\x9a\x45\x28\xd1\x32\xc4\x74\x8a\xb2\x79\x7c\x05\xbf\x2f\x2e\xd7\xf1\x8c\xc2\xcf\x28\x9e\x67\x2e\x51\xef\xfb\xdc\x24\x63\x4c\xa0\x36\x47\xba\x16\x3e\x67\xb3\x98\x88\x16\x00\x37\x42\x33\xf9\x9a\xaa\x31\x91\x76\xae\xee\xad\x3b\x53\x8b\x97\xb4\x54\xeb\xe1\xc5\x55\x6b\x49\x6f\xf2\xdd\xba\x10\x70\x24\x87\x2b\x73\x41\x33\xc4\xb0\xc9\x76\xcb\x95\xa1\x22\xbc\x8b\x0f\x88\x93\x31\x17\x23\xb4\x9c\x2b\x7c\x2e\x36\x6c\x3b\x53\xe7\x45\x6d\x54\x59\x3f\xdd\xde\xc4\xef\x01\xd5\x0d\x9d\x01\x81\x7a\xa0\x00\xcc\x13\x75\xb3\xed\x78\x46\xdb\x6f\xe4\x3b\x76\x75\xb9\x5e\x46\x8b\xa8\xa8\x9b\x8d\x84\xeb\xe2\xcd\xab\x2d\x58\xf4\x9b\x09\x98\xf6\x51\x80\x09\x9b\x71\x2b\xbc\xcc\x02\x1c\xe8\x51\xfd\x49\x65\xa7\x47\xa5\x59\x81\xfe\xa8\x20\x0d\x3f\x39\xac\xe9\x14\x15\xd4\x0e\x0d\x13\x36\x9d\xbe\xba\x62\x90\x06\xf6\x49\x40\x3c\xd1\x72\xb1\x38\x2f\xf0\x2c\xf8\x22\xc0\xe4\xd9\xd1\xef\x55\x76\x62\xf4\xec\xa1\x3f\xf8\x8e\x77\xc4\xa9\x3d\x6d\x1c\x48\xa6\x53\x6e\x4e\xe7\x7f\xfd\x17\xba\xfc\xea\xab\x73\x85\x31\x09\x7e\x1d\xcc\x86\xbb\xdb\x6a\x05\x28\x2a\xaa\x6a\x81\xc3\x42\x9a\xbe\x91\x66\x52\x01\xca\x9c\xb8\x18\x2c\x82\x59\xa1\x37\xc5\xba\x75\x04\x00\x00\xc3\x65\x76\xf1\x36\xfb\x10\xba\xee\x1c\x68\x63\x82\xea\x03\x90\xf1\x0f\xce\x1a\xd6\xd0\xf3\x02\xd7\x89\x24\x81\x5d\x0a\x0b\xd9\xb9\xb7\xd3\x7c\x81\xd9\xa0\xcd\x62\xeb\xe8\x89\x66\x56\xdb\xdf\x97\xee\x70\xf4\x19\x05\xcd\xc5\x6e\x7d\x9b\xad\xcd\x62\x7b\x71\xf9\xd5\x57\x10\x3d\x66\x69\x7e\x4a\x68\x00\x7e\xc6\x14\xd8\xf4\xbc\x31\x4e\xb3\x26\xa0\x64\x6f\x53\xb8\x33\x0a\x25\x19\xcd\xe7\x7b\x92\xd0\x7c\xb6\x27\x25\x0d\xbf\x3a\x4f\x5a\xef\x9e\x3d\xa5\x34\x5f\x2f\x22\x05\x7f\xbf\x5e\x9c\x23\x31\x97\xf8\x22\x9b\xbd\xfa\x7a\x11\x89\x26\x51\xce\x95\x4e\x5c\x5e\x2e\x22\xfd\xa9\xe6\x42\x7f\x5e\xfe\x76\x41\x38\x60\xcb\x6c\xbd\x88\xc2\xaf\xae\x68\xb9\xce\x2e\x92\x28\xbb\x40\x97\xf3\x04\x93\x8d\x07\x8d\x0c\x7f\xa1\xd9\x49\x4e\x4a\x62\x96\x22\x5e\x2f\xa3\x78\x5b\xbb\x95\xd4\x44\xef\xdf\xb1\x96\x66\x1d\xa1\x6b\xa8\x0d\x2b\x7b\x69\x22\xf1\xbc\xd2\xc8\x5e\x0f\x5b\xad\xd5\x39\x5a\xce\x38\x8e\xd4\x8c\xcf\xd5\x39\x27\x39\xbd\x3c\x57\x73\x87\x8c\xfc\x89\x68\x18\x16\x28\x27\x31\x61\xb3\xe5\xc5\x2b\x8c\xc9\x78\xe6\xc9\x8c\xb9\xa9\x25\xb7\x75\x97\x8f\x55\x3e\xfe\x37\xb4\x01\xfc\xcb\x34\xc1\x00\xe5\x7a\x21\x49\x42\x05\xac\xd4\x4a\x03\xe1\x46\xf9\x06\xc0\xb0\x62\xfb\xe9\x74\x02\xe8\x3a\xde\x5a\x4f\xbe\x4d\xbc\xa5\x7b\x0f\xdb\x69\xda\xdb\x67\x5d\x37\x71\xc3\x5e\x19\xa7\x1d\x73\xff\xa5\x79\x4e\x85\x49\x49\x5b\xae\x30\xaf\x2a\x8f\xb3\xcb\xd7\x2a\x6a\xe3\x76\xa4\xb4\xdf\x56\x43\xbb\x25\x19\xa3\xc0\xe5\xa6\xd3\x56\x11\x19\xae\x6a\x65\xb6\x57\xc1\x75\x47\x6a\x59\x2d\x4c\xd2\x96\xe9\x52\x86\xd3\x4c\xd6\x48\x13\x8e\x04\x69\xe2\x25\xf4\x44\x53\x22\x70\x94\xa1\x14\xeb\xa5\x95\x3d\x4b\x82\xcc\xc4\x25\xa9\x2a\x94\x9d\x8a\x50\xa2\x4f\x55\xc3\x6b\xef\x69\xcb\x1c\x32\xc3\x36\x5f\x83\x24\x6c\xa4\xd3\xc8\xc8\x23\x91\xd2\xd2\xa6\x9e\xf8\x7e\x0b\x66\x24\x99\xe5\x73\x5c\xb0\x91\x52\x98\xa8\xca\xe0\xd1\x1a\xaf\x93\x08\xf9\xb1\x98\x69\x0c\x6c\xbb\xf0\x6e\x98\x13\xec\x0f\x03\xdb\xe3\x22\x34\x1e\x65\x77\x87\xe2\x11\x86\x12\x79\x4e\x1d\xd0\x86\xa4\xb9\x51\xe0\x09\x30\x68\x46\x82\x26\x33\x4f\xef\x28\xf5\x61\x39\x47\xc1\x4c\x97\x97\x9b\xe5\x76\xbd\x8c\xe6\x4b\x8c\x31\x71\xe3\xa5\x26\x6a\x86\x9e\x46\x66\x1c\xcf\x30\x60\xc0\xbd\x94\x9f\xe8\x98\x3d\xa4\x67\x40\xb5\xf3\xf1\xb8\x35\xdb\x48\x94\xfa\x93\x94\x9f\xd4\x86\x6f\xe9\x51\x75\x23\x58\xb4\xeb\x4d\x72\x1a\x04\xe0\x04\xee\xe3\xe3\x09\xcc\x17\xb5\xee\x46\xed\x7a\x54\x15\x92\x54\x0b\x2e\x18\x5b\x39\x2c\x43\xb2\xaa\x04\x26\x13\x23\x47\x4e\xa7\x4b\x88\xd7\xd2\xf0\x22\xe0\x1f\x3e\x54\xe4\x81\x25\xe5\x9a\xd9\x78\x0c\xdf\xcb\x94\x45\x6c\x85\x02\x07\xe5\xfe\x70\x74\x12\x9e\x4e\xe3\xe9\x34\x36\x32\xea\x0a\x82\xa5\xe5\x36\xac\x74\x4c\x06\x6d\xeb\x2d\x8c\xbd\xa6\x6d\x5c\xb4\x3d\x3e\xd6\x7a\xb3\x81\x8b\x42\xf9\x74\xda\x9f\x75\xbe\xce\xa3\xc0\x89\x63\x01\x86\xc2\x3d\xb2\xa4\x7b\x66\x66\x18\x7a\x69\x85\xd7\xb4\xb1\x26\x7c\x08\x55\xc1\x0e\x3a\xcf\xdf\x35\xb8\x3e\x92\xf9\x3b\xc1\x8b\xaa\x42\xba\x81\x38\x2f\x34\xdb\x05\x57\x62\x84\x83\x1f\xa5\x48\x4d\x8a\x48\xf5\x67\x53\x81\x4e\x16\x9a\xaf\xf6\x76\x34\x54\xcc\x39\xa7\x12\xdb\x56\xd8\xf2\xdb\xa6\x09\x2d\x85\x4b\x85\x8d\x4f\x89\x81\x23\xf0\x47\x6f\xda\x09\x8d\x5e\xd4\x28\x6a\x8e\xec\xe1\x10\x8b\x74\xe8\x9c\xee\xd9\x11\xee\xd0\x26\xf8\x20\x0f\x01\x09\x8c\x69\x15\x09\xac\xf9\x14\x09\xc0\x38\x6b\x3b\x10\x11\x02\xd3\x45\x30\x53\xb3\xc0\xec\xcc\x96\x16\x35\x26\xac\xae\x21\x3a\x90\xd1\x30\x40\xb0\x29\x7a\x8c\xff\x5e\xc6\x51\xf0\xeb\xc5\x62\xb7\xdb\xed\x02\x72\x93\xc5\xc9\x27\xf8\xd6\xff\x0b\x8c\x42\xc7\x7c\xea\xec\x5d\x99\xec\x15\xd7\x15\x76\x3b\x93\x72\x9b\xc7\x8f\x51\xf0\xeb\xdf\x2d\xf4\x7f\x81\x55\x0d\xe9\x0a\xbf\x83\xfa\x19\xbf\x63\xb6\x79\xfd\x79\x17\xe7\x52\x0a\x28\x6f\xda\x17\xf1\xfd\xa3\x6d\x5f\x57\x97\x19\xbf\x67\xb6\x39\x9d\x7d\x28\xf3\x43\xc6\x6c\x79\x5d\x20\x67\xa9\xed\x5c\x67\x2b\x9e\xdd\xb3\x3c\x0a\x7e\x9d\x2c\xf4\x7f\x01\x29\x58\x9c\xd9\xde\x75\xe9\xcf\x7b\x5e\x30\x28\x6f\x66\xf7\xc8\xb2\x4c\x7e\xb6\x09\xba\x01\x0f\x12\xa3\x3e\x3d\x5d\x6c\x89\x03\xca\xb6\x89\xba\x46\x07\x7c\xc2\x35\xa2\x77\x8f\xdc\x89\xa6\xe2\xc7\x47\x59\x3f\x91\x17\xde\xb2\xe2\xb5\xbc\x3b\x94\x05\x4b\xdf\x6b\x70\x47\xc6\x85\x1c\x47\x8d\x33\x13\x24\x13\xa9\x41\x44\xa3\x02\xdf\x31\x5f\x80\x89\x9b\xd8\xe8\xbf\x5b\xf0\x07\x52\x6d\x54\x2e\x35\x9f\xaf\x30\xa7\x9a\x82\x92\xa1\xcb\x0c\x78\xf9\x23\xb9\x29\xc2\x24\xbe\x63\x19\x5c\x9e\x70\xbc\xa5\x3a\x03\xaf\x58\xa6\xd8\x59\x1b\xce\x0b\x9f\xae\xcf\x5d\x15\xe7\xab\x3a\x70\xe9\x30\x76\x89\x9a\xec\x1c\x6b\xf0\x31\xb7\x11\x2d\x25\x44\xb0\x24\x6c\xa3\xb6\x26\xb0\x14\xd2\x43\xad\x2a\xd4\x1e\x6f\xfd\x69\x83\xce\xfb\x68\x1e\x83\x7a\x21\xd6\xac\x81\xc4\x4d\xcf\xb1\x73\xef\x0e\xe2\x34\x0d\x88\x0b\xd7\x48\x02\xe3\x34\x1b\x6c\x89\xa0\x47\x73\x54\xa2\x25\xf1\x6f\x38\x9a\x4f\x38\x29\xcd\x17\x58\x71\xb8\x8f\x9f\x8c\xe1\x3f\x69\xae\x39\x9a\xdf\xc6\x2c\x62\x69\xad\xfe\xa2\x25\x39\xc4\x69\xaa\x39\xf4\x65\xbd\x6a\x8c\xff\xda\x16\xdf\x9b\x7b\xbc\xc0\x6b\xb6\x9b\x64\xc6\xd4\x4d\xfb\x20\x0f\x26\x61\x68\x39\x38\x86\x0a\x0b\x7c\x44\x81\x90\x82\x19\xaa\xc2\x44\xaa\x59\x26\x8d\xcf\xbe\x29\x8a\xbc\xaa\x8c\x94\x71\x90\xca\x4f\xd6\x6b\x6a\xd5\x93\xa8\xb0\x08\x93\x14\x06\x4f\x36\x85\x34\x96\x6c\x6e\x73\xe3\x34\xfd\x63\x9c\x7c\x32\x5b\xd6\x7c\xd2\x31\x61\x07\x14\x0d\x69\xea\xb8\x5d\xab\xa0\xcb\xd9\xbd\xf1\x9d\x8a\x7a\xdf\xe1\x8e\x67\x05\xcb\x51\x61\x64\xf3\xc6\x41\xca\xde\x77\x9a\xc8\xf3\x9e\xca\x12\x88\xac\x01\xb5\x3d\x2d\x42\x75\x60\x2c\x45\x26\xb1\xe3\x07\xd7\x73\x92\xf2\x38\x22\x6b\x32\x9b\xd3\x38\x8c\x21\x0a\x0d\x38\x56\x07\xb8\xaa\x82\x00\x0c\x69\x9d\x37\xc7\x3a\xb6\x41\x6c\xcf\x03\xec\xa6\x8c\x70\x14\xaf\x32\x9a\x81\xb4\xd7\x8f\xd0\xe6\xda\x6e\x8d\xf6\x23\x4e\x80\x9a\x44\xcc\xe4\xe8\x05\x95\xb4\x63\x3b\xd0\x77\x93\x76\x0a\xc4\xed\x74\x1a\x6f\xd8\x2c\x80\x15\x08\xb6\x48\x27\x81\x21\x9e\x44\x5a\x06\x1a\x8c\xa0\xe3\x04\x28\x52\xca\x9c\x6b\x1f\x58\x3a\xc3\xef\x94\xef\x76\xd6\xdc\xd7\x10\x39\xe2\x4a\x5b\x7f\x72\x4c\xba\x6b\x42\xf2\xd1\xae\xda\x78\x44\x20\xe9\xbf\x61\x3b\x96\xe7\x2c\x45\xc6\xcb\xa1\xb5\xf6\xdd\x93\x23\x6c\x03\xc4\x02\xb3\xde\x72\x1d\x47\x9f\x30\x67\x4a\x66\xf7\x1a\xc1\xd6\x75\xdf\x8f\xd1\x81\x00\x6a\xc6\x4e\x14\x26\x10\xac\xef\x8e\x2b\x86\x0c\xbc\x7c\xde\x33\xe1\xcc\x27\x48\x66\x9d\x89\xc3\x54\x8a\xce\xe6\xcb\x36\x54\x52\xcb\xe1\x8f\xce\x28\x64\xd9\xca\x0f\xaa\x04\xfd\xfa\x70\x0e\x57\x01\xa8\x20\x5a\x46\x37\xa6\x93\xcd\x43\x33\x26\xf2\x9f\x5e\xef\xda\x9a\x4c\x7a\x86\x10\xc3\xa0\x05\x63\xe6\x17\xc4\x7a\x3e\x3a\x25\xdb\x7a\xfc\x44\x78\xfc\xb5\x6e\x38\xe2\xb5\xad\x18\xb1\x53\xb6\x24\xcd\xc9\x85\x06\x30\x19\x8d\xc2\xf0\x82\x21\xf5\x03\xfd\x5c\x2d\x5f\x30\x46\x1b\x1d\xe3\xc5\xc3\xf4\x06\x87\xc9\x68\xc0\x86\xd3\x23\x25\x71\x13\xb8\x67\x18\xc9\xa1\xaa\x9a\x80\x44\x6a\x2d\x9e\x1f\xb9\x5a\xdb\xf5\x8d\xbc\x39\x98\x4e\x4e\xcd\x21\x7a\x7e\x39\xcc\x8c\xda\xe5\x70\xd3\xf6\x66\x8a\x89\xfa\xcc\x8b\x64\xdf\x9f\x36\xe9\xef\xc7\x0b\x01\xc4\xee\x77\xc4\xda\x3e\x71\x8d\x4e\x32\x3c\xbd\xeb\xc5\x41\x68\x4e\xf3\x86\x0c\x23\x8c\x32\xdb\x3f\x26\xac\x31\x46\x61\xb5\x15\xf3\x8c\xc3\xda\xb1\x36\x61\x8b\xbf\x6d\xad\x8c\x40\xa4\xe3\x44\x99\xd7\x61\x4c\x11\x34\x70\xc7\xe5\x55\x65\xc8\x9e\xc6\xf2\x9a\x51\x37\xf5\x14\x31\x11\x28\x06\xed\xaa\x36\x1f\x58\x2b\xc2\x3d\x93\x0b\x70\x2d\x05\xb7\x6e\xde\x7a\xd6\xb2\xe6\x27\x85\x9e\xe4\x6e\xb7\x5e\x44\x83\x81\xa8\xb5\x8a\x80\x99\xf1\x86\xb3\xf6\x87\xa6\xb6\x91\xf7\xd9\x5c\x41\x81\xd8\x61\xdd\x84\x85\xee\xd8\x7d\x91\xce\xfb\x3f\x6d\xdc\x65\x36\xe2\xbf\xcc\xba\xab\xc0\xb6\xeb\xc9\x22\x1a\xc4\xae\x80\x52\x3d\xf7\x62\xb6\xed\xc6\x00\x65\x18\xaa\x5a\x35\x85\x5f\xd5\xed\xe2\x7a\xb2\x8c\x26\x8b\x68\xd2\xf1\xbe\x6d\x0d\x29\x69\xcf\xf9\x54\xd1\xbe\xdf\xa9\xa0\x17\x7f\xcd\x59\x52\x7c\x44\x68\xbe\xfe\x98\x9e\x1b\x03\x8e\xc3\x43\xa5\xbf\x66\x5f\x54\x71\x59\x48\x4c\xd6\x1f\xd5\xf9\xbf\x31\xff\x23\xfe\xcd\x05\x98\x79\x82\x0a\xa1\xc0\x55\xb5\x09\x02\xb2\x00\xa0\x6e\x1c\x34\xc1\xd5\xb6\xa3\x53\x58\x6e\x71\x55\x2d\x48\x6e\x8c\x25\x9d\x8b\xa1\xdc\x5c\x6e\xd7\x3c\xea\x6b\x1f\x88\x31\xa6\xf4\xcb\xbd\xda\xae\x55\xb7\xdc\xab\xad\x75\x09\xee\xa4\xfe\x16\xfa\xa9\x6b\x63\x9c\x67\x40\xf4\x90\x5b\x4e\x48\xf5\xbf\xdd\xb9\x4e\xc1\xfe\x71\x34\xe7\xb9\x80\xe9\x8d\xad\x1e\xe2\xd8\x98\xeb\xa5\xb8\xaa\x9a\x90\xe6\xa3\x6d\x62\x63\x79\xa8\x99\x1e\x2d\xb6\xc4\xc5\x84\xd2\xc9\xd2\x3b\x4f\x0d\xb4\x91\xa3\xea\x84\xa7\x30\xd6\x67\x2e\xb4\x30\x5d\x00\x94\x38\x51\xe5\x8a\xaf\xf8\x6c\x86\xed\x75\x0f\x03\xe1\xc2\x9a\x10\x26\x33\x08\xec\x6b\xdc\x37\x41\x21\xa0\xbf\xb7\xb8\x26\x39\x53\x85\xcc\x4f\x76\x41\x14\x5d\x80\x60\x66\x3b\x11\x57\x6a\xa5\xfc\x4e\x20\x94\x3e\xa7\x5e\x3f\x6a\x6b\x45\x77\x88\xb0\x4f\x38\xc6\x35\x51\xac\xf8\x4e\xa6\xfd\x5e\x2c\x29\xb1\xa2\x05\x35\x37\xd3\x0c\xbc\x39\x51\x60\x7d\x87\xc1\x2a\x71\x2f\x3f\x07\x51\xb0\xe7\x29\x0b\xb4\x44\x6e\xa3\x9f\xfe\x9c\xc7\x87\x43\x2f\x1a\x08\xdf\x21\xd6\x3c\xb2\x00\xed\x84\x9e\xa5\xdf\x67\x53\x23\x68\xde\xdc\x6a\xcb\xda\xcb\xa7\x31\x47\xf0\xc9\xe2\x84\x2b\xb8\xce\x08\x76\x1a\xf2\x82\xc8\xf0\x2e\xf6\x4b\xcf\xd8\xb9\x52\x37\xee\xcc\xdd\x07\x0d\x06\x43\x82\xfa\xc7\x9d\x14\x05\xbc\x92\x12\x2c\x17\x8b\x2f\x02\xd2\xaa\x8b\xa2\x8e\x06\xc8\x8a\x4d\x91\x11\x50\x9c\xd8\xb4\x68\xc4\xa6\x45\xad\xf1\xc5\xf3\xfe\xf6\x35\x91\xcd\x13\x68\x61\x9c\x14\xfc\xde\xd9\x84\xae\x8a\xfc\xf1\x28\x43\x9e\xb6\x91\xfa\xbd\xa2\x37\x32\x7d\xac\x9b\x45\xd4\x93\x40\x0a\x13\xc4\x36\x8b\xad\x3e\xaf\x1a\x61\x26\x52\x14\x31\x17\x0a\x12\x89\xc4\xf0\xb4\x83\x6c\x5e\x04\x40\xf6\x8d\x21\x83\xe9\x9a\x37\xde\x02\x55\xc4\x05\x4f\x8c\x21\x75\xef\x29\xb6\x35\x32\x4e\xdd\xc7\xc6\x11\xbd\x7d\x8a\x0d\xa2\x80\x9d\xce\xc4\x51\xeb\x7f\xc3\x49\x5b\x66\xd0\x07\x31\x8f\xb5\xb9\x8c\x7f\xcc\xb9\x79\xbb\xad\xf6\xbc\x47\x0b\xd0\x2c\x59\x57\xb4\x1b\xa7\x58\x32\x36\xff\x5b\x5f\xdc\x50\xf8\xa8\xc5\x73\x3b\x13\xe5\x2c\x3a\x1b\x23\x2a\x90\xdd\x97\x0b\x90\xc4\xa1\xa0\xc1\x78\xf8\xc9\xc9\x10\x3f\xc4\x42\x07\xa3\x76\xf1\x66\x8d\x5d\x2b\x02\x5b\x6f\x78\x8e\x43\x7d\x96\x10\x9c\x7b\xcd\xb3\x8c\x1d\x21\x73\x10\x4e\x00\xc5\xe0\xdc\x9c\x3e\x63\xfa\x2c\xb7\xc5\x72\x76\xc8\xe2\x84\xfd\xcc\x8b\x3d\x62\x2d\xa4\xf0\x21\xa4\x70\x03\x29\x7c\x08\x29\xa0\x8d\xc3\x64\x0c\x4d\xba\xf7\x0a\xdc\x9b\x18\xc4\xa8\xd2\x4f\x98\x56\x7b\xaf\x3f\x04\xa6\x89\xc0\x17\x90\x1b\x12\x4f\xd5\x58\x6a\x78\x27\x53\xa6\x39\xac\x9a\xc0\x83\xa0\xe9\x1b\x7e\xc7\x84\xea\x45\xcc\x34\x16\xa6\x36\xe8\xa9\xbb\x44\x39\x36\x41\x29\x5c\x94\x0a\x0f\x9f\xb8\x2f\xeb\x22\x52\xaf\x8c\x2a\xc6\xf7\x38\x33\x01\xc3\x59\x55\x2d\x17\x0b\x6c\xe2\x7f\x10\x41\x5b\x37\xb4\x91\xfc\x55\xb7\xe7\xa2\x39\xfa\xe7\xc2\x0e\xa2\x70\xe8\xe1\x5c\x75\x86\x53\x74\xf9\x8f\x73\xe1\x0f\xaf\xe8\x70\x2b\xe7\xaa\xae\x49\x92\xf1\xc3\x07\xf9\x47\xf9\x30\x62\x88\x77\x74\x5d\xc1\x6b\xb0\x00\xb4\x73\xfb\x01\x9e\x3d\xcd\xe8\x20\xc9\xc0\xb1\x2b\x00\xce\x20\x1a\xda\xfd\x0a\xfa\x10\xb4\xf9\x75\x4d\x4a\x01\xf1\x5e\x07\x3b\x60\x83\x54\x59\xad\x05\x5e\xb1\xab\xe5\x74\xaa\xe0\x4e\x22\x61\x4d\x54\xab\xcd\x92\x2c\xda\xe8\x3c\x36\x17\xf8\x5a\x20\xd6\x29\xb3\xd5\x6b\xa2\x09\x32\xa8\x91\x7a\xf1\xa3\x81\xfe\x95\x1e\x89\x75\x76\x6d\x2d\x91\x1d\xa9\x36\x28\xed\x28\x69\x69\x94\x26\x85\x1f\x1b\xb8\x84\xa0\x55\x03\x32\x6a\x15\x24\x5d\xaa\xb9\x3a\x41\x5c\x79\x9f\x9c\x22\xbe\x36\x3f\x75\x91\xc8\x64\xba\xa7\x2c\x19\x35\xf4\x05\x88\xee\x2d\x2b\xfe\x18\x2b\x96\x75\x8e\x95\xef\x08\xb4\x32\x62\x95\x09\x63\x73\x4c\x62\xc5\x8c\xef\x26\xa7\x8b\xd5\x4d\xce\xe2\x4f\x2b\x48\xb3\x0e\x97\x11\xa7\xe1\x57\x7e\xba\xf3\xee\xe4\x74\x69\x93\x9d\x22\x99\x9b\xab\x59\x47\xb5\xea\xa6\x9f\xa5\xeb\xc7\x38\x93\xaa\x6e\x47\xd6\xfd\x33\x52\xbd\x8e\xac\xbb\xa9\x1a\xf4\xa3\xcc\xfd\xb9\x25\x97\x96\xbc\x1d\x1f\x22\x45\x1e\x23\x5e\x3b\xb6\xe3\x47\x8d\xc7\xf6\x32\x4b\xc7\xf0\x26\x10\xb3\x3e\x49\xd1\xfc\x93\xfb\xf4\xec\x1d\x0c\x86\x6f\xfd\x9c\x6d\x45\xdf\x59\xdc\x77\xfd\xee\xe6\x3b\x77\x70\xe2\x39\x4d\x77\x0a\x58\x27\x74\xcf\xc1\xbc\x9b\x6f\x7d\xce\x6b\xec\x1f\xe4\xae\x0c\x82\x3b\x08\xa0\x27\x8e\x60\x72\xf1\x57\x64\x88\x75\xe5\x68\x13\xbe\x30\x01\x09\xec\xf3\x39\xed\xc3\xa9\x84\x03\x3b\x14\xcc\x98\x0b\xc5\x61\x42\xcb\x6a\xb6\x88\x0b\xc5\xf2\x02\x1e\x29\x44\xcc\xb2\x41\x2e\xee\xcc\xc5\x5f\x91\x79\x40\xab\xca\xcb\x9b\x47\xd7\xbc\x9d\x87\x2d\x14\x60\xbc\x0e\x4c\xa9\x39\xc4\xa9\x09\xa2\xc0\xfc\x25\xed\x3b\xb1\x91\x7b\x1f\x96\xfc\x5f\x5e\xef\x53\x0c\xe3\x3f\xbd\x0d\xe3\x6c\xe5\xa1\x05\x52\x7d\x7a\x1d\x77\x1e\xf8\xe9\x1a\xb9\x0d\xf8\x0c\x65\x50\xad\x68\xb1\xac\x00\x04\x8b\x09\x77\x4c\xc3\xe8\x01\x68\x2e\xe1\x06\x9d\x38\x8c\xc6\xf0\x0a\x74\x16\x6d\x40\x9d\x0e\x72\x63\x5a\x4e\x80\x17\xa0\xfe\x72\xe8\x06\xa9\x6b\x28\xb0\x8f\x46\x21\x5a\x9e\x97\xd3\x1b\x18\x62\x46\xea\xf8\x30\x62\xda\x37\x30\xf0\xb6\x21\xcb\x5c\xf4\xd6\x9e\xc5\xa2\x31\xb4\x80\x75\xfa\x8b\xe0\x9a\x31\x59\xc9\xcd\x62\x0b\x2e\x77\x62\xc3\xb7\x54\x7f\x9d\xab\x19\x08\xb9\x9a\xed\x1e\x38\x6a\x59\xd5\xcd\x98\x3e\x88\xa3\x41\x24\x46\x7f\x51\x52\x7f\x92\x76\x71\x50\x8e\x49\x83\xb1\xc1\x07\x88\x4d\xa7\x79\xa8\x53\x10\x26\x31\xea\xbc\x89\xa6\x97\xcf\xd3\x52\xec\xf1\x74\xba\x37\x0a\xac\xdc\x28\xaf\xbb\x3a\x8c\xe9\x54\xd3\x38\x3d\xe3\xbc\xd1\xb8\x9b\x2e\x68\xd2\xc4\x53\xef\xca\xae\x36\x8e\x9d\x5c\x1b\x52\xd1\x8c\x69\x8d\xf2\x4d\xb6\x35\x23\xc2\x91\x68\x3b\x25\x8a\x70\x1c\xa1\xbc\x2f\xe5\xb9\x29\x65\x2d\x11\xca\xf0\x53\xad\xc4\x2e\x02\xe5\x09\x6d\x21\x01\x63\xed\x2e\xf7\xe6\x7e\x6c\x41\x87\xa1\xc7\x09\xde\xf1\x40\xdd\x49\x4e\xe3\xaa\x0a\x76\x0f\x01\xd9\x53\xd5\xea\x93\x32\x3b\x23\x92\xd0\xcd\x96\x94\x23\x26\x0e\xee\xe2\x43\x79\x1d\xea\x1a\x88\x93\x0c\x57\x95\x5c\x71\xab\x1a\x80\x30\xc4\x89\xb1\x72\x53\xc6\xfc\xa2\x99\xac\xaa\x2a\x45\xe1\x0e\xaf\xdd\x5d\x3c\x9d\x72\xcb\xb2\xeb\xc2\xed\x12\xfb\x1a\xa9\x86\x23\x81\x98\xa3\x63\x1b\xda\xa8\xff\xad\x1e\xae\xaa\x26\x62\x9d\xc1\xfd\x91\x5e\x5d\xd5\x2a\xed\xf6\x38\x1a\x8d\x8b\xb2\x6f\xe0\xc6\x5c\xb6\xe0\x28\x86\x8d\xf7\x1e\xd5\x29\xb1\x3d\x3f\xb6\x09\xc3\x31\xe5\xa4\xc4\xcd\x4f\xae\x0f\xe5\x5e\x7e\x1e\x61\x10\xcf\x7a\xf6\x49\x1c\x29\xdc\x3e\x0d\x30\x1e\xca\xc8\x84\x0d\x3e\xb1\xfb\x8d\xfb\x9d\x01\x5f\xb3\xcc\xf6\x56\x06\x16\xce\xd3\xe3\x0a\xfc\x2b\xa7\x27\xd6\xc5\xb0\x89\xb2\xf8\x7f\x61\x90\xb0\xf1\x27\x07\xe9\xc6\xa8\x4b\x39\xdd\xfd\x0b\x47\x59\x55\x23\x1a\xfb\x7f\xe9\xd0\x2d\xa3\xf9\xec\xe0\x4d\x39\x4c\x2c\x3a\x3d\x65\x2c\x0a\xfa\x23\x7d\xa2\x5a\xdf\x85\x46\xfe\x66\x5a\xdc\x3e\x3c\x04\x24\xf8\x42\xff\xe8\x09\xdd\x0c\x1f\x79\xe3\x0a\xc2\xb0\xf5\x86\xf7\xa3\x2e\x72\x4c\xe0\xc2\x4f\x4b\x70\x89\x52\xaf\x33\x7e\x18\x5b\x46\x7b\xc1\x0a\x64\x5a\x0b\x1a\x70\x1d\x9e\x14\x28\x98\x19\x5f\xe9\xe0\xf0\x70\xa6\x7f\x03\x3f\xd9\x7c\x19\x36\xb6\xf9\x04\x2f\xfa\xe0\xf0\x80\x03\x1c\xd9\x70\xd3\x6d\x83\xd6\x64\xdf\x5a\xa0\xef\x7a\x81\x54\x1b\xd9\xc5\x62\x17\x41\x21\xec\xb7\xc4\x44\xd2\xf6\xcd\x79\x31\x60\x37\x63\xda\xc4\xc7\x23\x39\x95\xeb\xd8\x0f\x3a\x16\x2d\xc8\xde\x4b\x33\x11\xca\xa2\x05\xc9\x1a\xcf\x7d\xb0\x4d\x03\x0d\x6e\x66\x43\x3f\x00\x47\x90\x99\x70\x02\xfb\x26\x88\x5b\xc8\x85\xf0\xb4\xd3\x46\xc0\xb3\xa9\x96\x73\xa9\x49\x49\x55\xdb\x6c\xda\x84\x17\x6c\xdf\xcb\x75\x0c\x8b\x5b\x81\x2f\x3d\x7d\x99\x79\x4a\x5a\xb6\xc1\xfe\x1c\xa7\xc3\xda\xd7\x44\x2d\xc3\xa8\x87\x5b\xfa\xc3\x2d\x7b\xc3\x55\xa3\xc3\x55\x9d\xe1\x92\x86\x0b\x92\x6b\xbb\xc0\x51\xcb\xc3\xd6\xb8\xb9\x36\x4d\xbc\xcb\x0d\xc2\x5c\x04\x51\x0f\x5d\xa6\x3e\x93\xd3\xbb\x9d\xf1\x82\x86\x5a\xb3\x03\x10\x63\xfb\x36\x58\x19\x3f\xf4\x4c\xb0\x9c\x1d\x15\x4c\x59\x03\x2d\xc2\x43\x9b\x14\x66\x0c\x15\x8c\x61\x15\x55\x8d\x81\x15\x54\x04\x76\xcf\x36\x6c\x4c\xb5\x06\x4d\xda\xc0\x9b\x07\xa9\xce\x4d\x5d\x1b\x52\xc0\x5a\x6e\xc9\x03\x9e\x79\x1f\x56\xfd\xd4\x29\x6f\x84\x7b\x57\x08\xbe\xda\x3a\xf0\xe9\xf4\x54\x9d\x6a\x56\xe6\x77\x05\xcd\x67\x5b\xd1\x7c\xbb\x20\xa0\x5e\x3d\x1b\xe4\xc2\x94\x82\x78\x2f\x33\xff\xcb\x3a\x98\x0f\x2e\xa4\x8f\x9e\x5d\xc9\xff\x2a\xe3\x34\x20\xc1\xeb\xf2\x86\x27\x01\xd1\x9f\x79\x01\x7f\xb9\xd0\x7f\xdf\x3e\x1c\x64\x17\xc5\x70\x7c\x64\x7d\xb3\x39\x8b\x34\xc0\x92\xf7\x20\x3f\x23\x46\x8a\xd9\x25\xee\xe8\xab\x18\x39\xbe\xef\x4a\xcf\x4d\xb5\xe5\x1c\x2a\x26\x52\xa1\xe2\x1c\x7e\xfe\xf8\xee\xe2\x12\xd7\xe4\x35\xcf\x93\x27\x2a\xa8\xbf\xe7\x05\x5a\xce\x8b\xf3\x02\xd7\xe4\x6d\x16\xab\x82\x8f\x16\x5f\x18\xbf\x25\xb0\x59\x59\x17\xd1\xbc\x19\xe6\x25\xf9\xdd\x39\x2a\xe6\x4b\x8c\x4d\xb7\x8a\x0b\x84\x7e\xb7\x30\x69\xf3\xff\x08\xbf\xc2\xcd\x70\x96\x5f\xe1\x9a\x68\xc6\x6f\x14\x59\x9e\x17\xe7\xe8\xd5\x79\x31\xd7\x83\xfe\xa3\x2c\x45\xd2\x9d\xa7\xbb\x51\x60\x84\xd3\xdf\xae\x10\x62\xd4\x1b\xc2\x7c\xce\x31\x9e\x2f\xf1\xc5\x72\x79\x55\xac\x5a\x07\x84\x8b\xa6\xcc\x6f\xc9\xab\x39\x87\xf1\x7c\x7d\xf9\xd5\x79\x93\x8c\x5e\x9d\xb3\xf9\x25\xbe\xb8\xbc\x9c\x17\xa4\x59\x6d\xbd\xab\x6c\x60\xe3\x63\x4e\xe9\x26\x60\xb1\x62\xef\x04\x04\x45\x06\xd3\x1c\x2f\xf9\x87\xb2\xe8\x06\x4b\xf6\xd7\x9b\xeb\x75\x36\x0f\xa5\x76\x5a\x3a\x5d\x29\xfc\xea\xaa\x58\x73\x74\x79\x5e\xe0\x8b\xcb\x48\xb7\x30\xbf\x3c\xd7\x50\x71\x71\x69\xae\x88\x81\xc2\xee\x5a\xa6\xb1\x0d\x3e\x10\x1a\xfd\x25\x0a\x6e\x32\x2e\x34\x70\x1a\xce\x60\x8c\x3c\x1c\xcb\x43\xb4\x69\xd5\xd0\x26\x34\x5a\x13\x42\x6b\x90\x93\xca\xcf\x22\x72\x3a\x6c\x9b\xb7\x35\xe7\x6a\x63\x55\x23\x56\xb7\xbd\xf5\x63\x76\x0d\xf2\xcc\xc9\x6f\x22\xb2\x59\xed\x37\x3c\x61\x6b\xe9\x95\x16\x9a\x52\x9e\x9b\x08\x0d\x55\x15\x94\x87\xc0\xd8\xa9\x37\xd8\x2b\xa7\x47\x8d\x8e\x3a\x8f\xca\xc6\xb8\x26\x7b\x8f\x8f\x1e\x28\x5d\x90\xc0\xab\x1c\xd0\x18\xbc\xb9\xb4\x59\x6c\xb7\xd4\xff\x5e\x6e\xb7\xa4\x55\x63\x59\xf9\x08\xb5\xdd\x9a\xb2\x98\x18\x96\x56\x29\xe4\x4b\x58\x56\x83\x89\x72\x8c\x89\x29\x48\x63\x5b\xb4\xb1\x99\x19\x2d\x3e\x46\x11\x30\x11\x4d\xad\xdc\x33\xd8\x69\x62\x60\xfb\x75\xa0\x46\xd4\x10\x93\xc6\xa8\x87\xd7\x5d\xeb\xad\x06\x30\xe0\x8c\x8d\x82\x84\x7d\x72\xab\x35\xc7\x32\xab\x40\xf6\xb4\x91\x2c\x72\x92\xd1\x66\x91\x72\x92\x8c\x6c\x55\x09\x69\xc6\x19\x93\xa4\x94\x85\x05\xbf\x63\xaa\xaa\xbe\x22\x07\x7a\x79\x9e\xce\x50\x56\x55\x7b\xe3\x56\xb4\xa3\xed\x4c\x2e\x0e\xe4\x96\x36\xd3\xb8\xa3\xba\x2d\x4a\x69\x52\x55\x01\x84\x12\xd1\xbf\x6d\x50\x37\x0b\x3b\xd7\x7e\x19\x17\x58\x29\x21\xf7\x74\x41\x6e\x68\xec\x14\xb7\xee\x06\x52\x23\x92\xa7\xa0\x23\xd6\x80\x17\xc3\xc6\xde\x61\x52\x56\x15\x2a\x69\xbc\x71\xe1\x7b\xee\xd6\x81\xa7\x3e\x09\xa2\xa0\x55\xb4\x04\x5b\x84\x2f\x5e\x61\x92\x99\x40\xe5\xf2\x10\x27\xbc\x78\x8c\x96\x35\x11\x9b\xbb\x2d\x95\x24\xb6\xa1\x77\x4d\x46\x40\x16\x86\xf7\xb8\x23\xd7\xeb\xcb\xf3\x79\x19\x5d\x9e\x97\x2d\x8b\x20\xc8\x8e\xdc\x62\x00\x1d\x54\x5e\xf8\xc8\x2e\xd5\xc8\x96\x08\x7a\x74\x0d\xaf\xd2\xab\xfb\xd5\xfd\x6c\x86\x15\x3c\x64\xa6\xd3\xd0\xf5\x3a\x98\xd3\x20\x0a\x66\x34\xc0\xb3\x92\xc4\x4d\xbb\x0a\xda\xed\x75\x43\x4a\xba\x5f\x5f\x9e\x97\x51\x79\x71\xb9\x32\x6f\x4d\x35\xe3\x5f\xbc\xb0\x49\x4c\xdc\x52\x73\x1f\xdc\xac\x5a\x1d\xc5\xe4\x86\x1c\x66\xcb\x71\x58\xb4\xdc\xf1\x49\x1c\x65\x66\x2b\x1b\x88\x8c\x7b\xe0\xd6\x86\xd1\xcb\xa9\xc6\x49\x7b\xf0\x55\x20\x7b\xb0\xaf\xf7\xae\x3f\x20\x35\x83\xd4\xa6\x8a\x4e\x5b\x29\x2a\x3d\xb4\x22\xcc\xc1\x35\x3c\xec\x1a\x29\xc7\x5b\x28\xe0\x5f\x2e\x2e\x23\xe5\xf1\x2e\x7b\x5d\xc0\xf0\x2c\xca\xf0\x0f\x50\xa0\xc3\xa8\x9c\x68\xc4\xe7\x49\x4e\x34\x03\x2c\x08\x79\x0a\x5e\x25\x1e\xc1\x56\xed\x6c\x84\xc5\x56\x76\x4e\x1a\xad\x7a\x9b\xff\x2f\xc6\x29\x69\x2e\x9f\xdb\x47\x1f\xb9\x5b\xf5\x49\x33\x7c\x09\xa8\xc6\xdf\x58\x73\xc0\xf7\xee\x80\xe7\x1e\x12\xc8\xbb\x48\x20\xf3\xcb\x38\x24\x90\xb7\x20\x4b\x12\xaa\xff\x80\x07\x59\x9b\x58\xfa\x70\xbe\x7a\x9a\x68\x80\x6a\xde\x21\xb4\xaa\x12\x0d\x4e\xd8\x3f\x89\x13\x26\x0b\x7c\x71\x49\xca\xcd\x7e\x4b\xb3\x99\x22\xb1\xa3\x25\xa8\xc4\x26\x35\x99\x29\x52\x86\x76\x18\x74\xe9\x23\xfd\xf2\x5f\xbd\x41\xec\xe1\x90\x49\xbd\x39\xa3\x7b\xe4\xd9\x15\xe1\xe3\x8d\xd1\x32\x99\xdd\xba\xb1\xd8\x93\x52\x5a\x9e\xa7\xd3\xa9\x40\x9d\xa7\xcf\xf1\xf1\x60\xc4\x28\x5f\x61\x0e\xbf\x33\xb8\x59\x2f\xd0\x0d\x6e\x25\x1a\x6e\x55\x84\xd2\x04\x10\x20\x19\x49\x80\x58\x1c\x38\x4b\x98\x5a\x7b\xbe\x6c\x2d\x8b\xea\x72\x31\x8e\x5e\x91\x94\x96\x10\x13\xc2\x8c\x6d\xe7\x20\xe9\xb6\x85\xa4\x1d\xb9\xa3\x07\xab\xf8\x32\x58\xb7\x1d\x99\x99\x3c\x28\x0d\x5b\xd1\xf2\xda\x60\xd8\x84\xf1\x0c\x1d\x3a\xda\xf3\x8b\x14\x93\xfb\x61\xae\x13\x04\x2f\x4a\x4c\x6e\xe8\x66\x0b\x74\x45\xd2\xc5\xaa\xf4\xde\xe1\xde\x53\x13\x30\x58\x9e\xdf\x93\x84\xca\x39\x2a\x35\x93\x7a\x49\x62\xba\x58\xa5\x57\xf1\x2a\x9e\xcd\x70\x4e\x6d\x84\xe1\xf8\xfc\x9a\x64\x34\x9e\xa3\xd4\x14\xd2\x62\x9d\x14\x9a\x72\x0d\x04\x59\xb0\x97\xe8\x59\x87\xf4\xae\xfb\xdb\xab\x93\xb1\x3d\x31\x38\x67\xae\xbb\xd4\x48\x6e\x2e\xcf\xef\x6b\xdc\x5e\xb6\x8f\x5e\x09\x38\xd8\x79\xa2\xab\x26\x6e\x7f\x73\x5b\x62\xc4\xe4\x6b\x27\x45\xdb\x48\xb1\xf9\x0c\xdd\xae\xb3\xf3\x6b\x4d\xfb\x75\xff\x7b\xfd\x9d\x9c\xdf\xeb\x6f\x77\x1e\x6f\xd7\x8b\x68\xe9\xc9\xcc\xc7\xb6\xe6\x22\xca\xce\xaf\xbd\x9a\x8b\x28\x39\xbf\xf7\x6b\x2e\x35\xd5\x6a\xcf\x49\x55\x7d\xb5\x58\xb4\x72\xb6\x1a\x3f\x1b\xbb\x38\xf5\x1c\x15\x46\x59\xe5\x1e\xa2\x5d\xb9\x17\xb0\xba\x74\x5d\xe9\x91\x7b\x03\x77\xe3\x52\x66\x5c\xff\xe2\x23\xbd\x93\xd9\xd3\xfc\x7d\xab\xfe\xb1\xe7\x44\xb6\xf3\x10\x1a\xfd\x3a\x9e\x4e\x00\xfa\x55\xfc\x1f\xac\xaa\x96\x5f\x91\x3d\xbd\x40\x9b\xc5\xfc\xf7\xdb\x19\xfe\xe2\xc2\x98\xeb\x81\xcd\xf9\x64\xc2\x4c\x94\xdc\x6f\x79\xae\x20\x56\xe6\xba\x65\xee\x9d\x40\xe0\xcb\x0d\xce\xb0\xa5\xf4\xb9\xbc\x4b\x88\x36\x72\x1a\xdf\x2a\x4c\x0e\x54\x79\x44\x79\x37\xc2\xeb\x1f\x70\x4d\x6e\x4f\xa4\xdf\xd1\xcd\x61\x93\x68\xee\x9e\xe8\xbf\xcb\xed\x76\x4b\xae\x9d\xaa\xbe\x65\x07\xf7\x10\x12\xb9\xb1\xa8\xd9\x43\xfc\x22\x63\xfb\x70\x7e\xb7\x89\xf5\x56\x6e\x31\xd9\x19\xf9\x20\x31\xc2\x02\xb9\x3d\xf1\xb9\xdc\x6e\xe9\x02\xb4\xf2\xed\xc8\x6f\x2d\x01\x4e\xa7\xd3\xf4\xa4\xb8\xa0\xd9\x27\x53\x90\x1e\x30\x19\x7b\x47\x06\xaa\x3f\x25\x42\xec\x30\x29\x5b\xc9\xe1\xc9\xa2\xb7\x9d\xa2\xe6\x15\x9a\xa6\xc2\x6e\xb4\x99\xdb\x4e\xea\x13\x7c\x9e\x22\xd7\xe4\xb7\xe3\x90\xba\xe7\xb7\xfb\xcc\xc2\x89\xd1\xa6\x3f\x0d\xae\xc7\x9e\xaf\x63\x64\x55\x9f\x03\x17\xc8\x7a\xd5\x5a\x20\xb4\xf2\x9a\xa3\xa8\x0b\x7f\x2c\xed\x5d\x87\x72\x46\x4d\x5e\x37\xef\xee\xe2\x5b\xe6\x6c\xe2\xfa\xbd\x5b\x37\xc5\xaa\x32\x7e\x69\xbf\xff\xbd\xaf\xd1\xfb\x97\xb3\x52\xfa\x18\xbe\x4c\x38\xdb\x04\xce\xe8\x4f\x4b\xdc\x74\xd3\x7a\x2b\x19\x16\xa4\xeb\xd2\xe4\xd2\xac\xa1\x9f\x71\x72\xb4\x1f\x7f\x6c\xa4\x79\xea\x3b\x4b\x75\x9b\x81\x7b\xe8\x5e\x2b\x7f\x36\x32\xbc\xfd\xfa\xc9\x9e\xf7\xc4\x21\x9c\xb2\xb1\x92\x9a\x68\xc1\x4c\xcb\x82\x60\xf8\x04\x97\x0a\xba\x9d\x03\x65\xf6\x59\xad\xaa\xda\x38\x03\x8f\xf6\x35\x03\xb2\xb3\x02\x99\xaf\xa5\xbe\xa5\xb1\x67\x14\x61\xde\x6a\x70\x9b\xdc\xb3\xaa\xd2\x32\xdd\x35\x65\xe0\xcf\x5e\x55\x77\xe4\x5e\x0b\xa3\xb2\x73\x05\x36\xa8\x41\x16\xf8\x49\x7e\x30\xf6\xd8\xee\x04\xbc\xa2\xaf\xc9\x35\xbd\x27\xf7\x54\x02\xec\xea\xbe\xa2\xe3\x63\xe4\xde\x95\xb8\xb8\x73\xd1\x6b\x1f\x22\xfb\xea\xc4\xc5\x9d\x35\x14\x21\x85\xd4\x45\xef\x47\x8a\xde\xf7\x8a\xd6\x44\x33\x01\x0f\x10\xed\xc8\x2d\x9f\xfe\x0d\xd6\xf5\x30\xc1\xf0\x11\x9c\x92\x0b\x19\x3e\x4e\xa7\xe8\xda\x5f\x16\xff\x3a\x1b\xc5\x64\x4f\x5c\x0d\x72\xad\x79\x9c\xa7\x4b\xea\x06\xc9\x3d\xbc\x0b\x0b\x95\x1e\x5c\x37\x0f\xcf\x74\x93\x35\x35\x9e\xeb\x26\x33\xdd\x3c\xe8\x6e\x30\x41\x41\x22\x45\x61\xbd\xa2\xfb\x93\xfd\xa5\x73\xcd\x5f\x3c\xd7\xdc\x9f\xeb\xc1\x46\x42\x76\x85\x3d\x1b\x26\x74\x20\x77\x98\x5c\x43\x94\x6b\x74\xe7\x33\x85\xf3\x6b\xff\x0b\x9f\xab\xf0\x71\x66\x02\xe2\x5f\x9b\x10\xe3\xae\xb8\x89\xc9\x7c\xed\x7d\xe8\xc2\x0f\x33\x1b\x48\xff\x7e\xac\xed\xfb\x53\x6d\xdf\x8f\xb5\x7d\x7f\xa2\x6d\x6c\x95\x11\xd7\xcf\x2c\x33\xda\xd3\x7d\xfb\x28\x49\x6b\xe9\xd2\x7b\x54\x62\xdb\xbc\x30\x6c\xbd\xd2\x7a\x55\x2c\x7e\xf0\x0d\x59\xb6\x7a\x08\xd6\x87\x6f\x03\xb0\xbd\x0d\xf0\xe8\x73\x1a\xe3\xd7\xe3\x83\x13\xcb\xb5\x4c\x79\x6c\x6e\x6b\xcc\x8f\xf3\x66\xd7\xdd\x7d\x0d\xfc\x3d\x6f\x20\xd2\xb7\x57\x54\xfe\xd2\xb6\x35\x3d\xa3\x45\xe5\x2d\x67\xd3\x46\x4d\xe2\xb1\x7e\x01\x86\xfa\xbd\x02\x74\x77\xfb\xec\x56\xe8\x74\xe6\xd7\xaa\x57\x63\x20\x2f\x4f\x02\x32\xf7\x8f\xb7\x34\x81\x1e\x9e\x2a\x09\xbd\xc7\x27\x8e\xf7\x53\xdd\x78\xc7\xfb\x99\x6e\x9a\xe3\xad\xbb\x29\xfd\x27\xf7\x3a\x16\x08\x1c\x20\x53\xea\x1f\x8e\xba\xc6\xcf\xdd\x97\x75\x5a\xeb\x98\xf9\x70\x70\xf8\xc3\x9e\xba\xea\xfe\x9f\x25\xd5\x83\x3b\xa0\xb8\x91\x1f\x57\x0b\x4a\xe9\xbd\x63\x39\xa6\xd3\xbe\xaa\xef\xda\x65\x19\x8d\x62\x9f\x9a\xf9\x56\xeb\xbb\x75\x6b\xaa\x1d\xed\x1a\x11\x95\x8d\x73\x31\x7a\x29\x39\x84\x10\x1a\xe7\x22\xf4\x29\x79\xb1\x58\xd0\x70\xc1\x2c\xb4\xc1\x0b\xcd\x7b\x7f\x60\x82\x3c\x9e\xb9\x5e\x44\x1e\x6d\x17\x9a\x5d\x5e\x2c\x2c\x18\x18\x76\x7c\xb2\x20\x86\x18\x3e\x71\x76\xc1\x93\xf0\xc9\x02\x44\x92\xae\x66\x08\xb0\x14\x26\x86\x6b\x88\x9e\x64\x1f\x6a\xc2\xf0\x8a\x85\x5a\xbe\x9b\x4e\x91\x09\x00\xd4\xea\x5b\x48\xac\x81\x72\x94\x59\xb4\x56\x08\x9a\x15\xf3\x4c\x11\x62\xc2\xc7\x17\xfb\x50\xee\x76\x4f\x4b\x62\xfe\x9a\xd4\x84\x91\xa3\x1e\x53\x34\x59\x34\xc1\x31\x4f\xed\xc0\xf2\xab\x45\xed\xf3\x23\x6e\x64\x7a\x9d\x7c\x97\xc8\xd3\x43\xcb\x54\xac\x25\xf4\x17\x31\xde\x2f\x90\x13\x65\x55\xc5\x64\x4f\x2f\xcf\x51\xab\xd7\xc7\x33\x94\x1b\x7d\x7e\xe6\x4b\x7a\x7b\x92\xd0\x05\x29\xe9\x92\xa4\x43\xf1\x6b\x27\x73\x84\x64\x55\x4d\x94\x31\xe7\x72\x0a\x0a\x70\x69\x50\x43\x85\xb9\xb5\x65\x4a\xe8\x12\xaf\xf6\x57\xe5\xaa\x9c\xcd\xb0\x1a\x8a\xda\x49\x4d\x32\x4f\xc2\x49\xe8\x72\x9e\xac\x9e\x2f\xa7\x9e\x96\x6c\x52\xb2\x3f\xa5\xc1\x56\xfb\xf8\xd3\x89\x5d\x5f\x3e\x71\xa5\x65\x74\x97\x71\x47\xb1\x78\xb9\x00\x39\xdc\xae\xea\x2b\x58\xe5\x7c\xb6\x24\x99\x1f\x72\xcd\x5f\x5f\x3d\x3f\xab\xfc\x94\x9e\x82\x54\x76\x15\xa4\xa5\x5f\xc6\x29\x48\x25\x49\x4d\x80\xd5\x63\xad\x05\x6c\x2d\x4d\x8b\x5f\x7a\x61\x22\x30\x49\x37\xc9\x96\xa2\xd2\xbf\x20\x88\xb5\xd4\x6d\x12\x67\x3a\x71\xae\x13\x2f\xcf\x63\xb2\x1b\x96\xd5\xc9\xad\xd2\x33\xf5\xb7\x64\x95\x3b\x87\xb1\x26\xff\xe0\xe7\x7b\x62\xab\x5f\xeb\xb9\xd2\x29\xc9\x2e\x2e\x5f\x26\xd0\x0a\x72\xfb\xc4\xb6\x67\x70\xd8\x4f\x9f\x2a\x22\x3a\xd7\x16\xa3\x77\xad\xbf\xe4\x46\xf5\xd4\xad\xa9\x77\x47\x37\x06\x61\x8d\x76\x7c\xef\x01\xc8\xbe\x0b\x20\x89\x5f\xc6\x01\xc8\xbe\x73\x8d\x57\x55\xb2\xd1\x7a\x67\xcf\x69\xbd\x01\xb4\x9e\x94\xa1\xa4\x66\xe9\x3a\x17\x2f\x54\x7a\x32\xdd\x26\xdb\x92\x74\x93\x6d\x29\x4a\xd6\xf3\x65\xb4\xc4\xe7\xe5\x4c\x90\xd4\xa8\x49\xfc\x6a\x26\x69\x13\x6f\xf6\x70\x7b\x4b\xfd\xef\x85\x7f\x9b\x9b\x77\xae\x46\x52\xab\x99\x81\x14\x94\x41\x5f\xae\x31\xaa\x4c\xd7\xc2\xbf\x2f\x49\xff\x5b\x42\xbe\xb9\xac\x5f\x8d\x7a\x6e\x22\xef\x12\xbf\x01\x2e\x67\xd2\xd4\x07\x2c\xa7\x75\x74\xf9\x90\x5a\x5b\xa7\x50\xef\x89\xf0\x6e\x88\xa2\xe6\x49\x6d\xa3\x73\xb7\xcf\xf3\x7e\x1f\xdf\xb1\x6e\xec\x7e\xe7\xf8\x11\xe7\x2c\x36\xfb\x8c\x04\xe5\x5e\x84\x29\xb0\x7c\x15\xf1\x1d\x23\x3c\xdc\xe7\x6c\x37\x9d\xca\xe9\x34\xb8\x8b\x0f\xc6\x9a\x6c\xbc\xd5\x35\x02\xab\x32\x7e\x77\xbb\x29\x15\xbb\x8b\x0f\xf4\xcb\x5f\x07\x33\x39\x0b\xbe\xdc\x06\x9a\x39\xb3\x01\x0b\x16\x9a\x75\xea\x11\x82\x68\xb2\xc4\x11\x02\x4b\xfe\x43\x59\x54\xe6\x89\x89\xaa\x60\x0f\x85\x1e\x62\x75\x53\x16\x85\x14\x95\x71\x9c\xc6\xbf\xb1\x26\xfe\x60\xf9\x4b\x27\x3c\xb4\x2f\x3d\xa4\x24\x07\x69\x06\xfc\xc2\x92\x4c\x2a\x5d\x28\xd8\x71\x96\xa5\x8a\x15\x26\xb0\xb4\x51\x05\x4e\xf6\x4d\x1d\x8c\x71\x94\xd3\xc0\x2e\x83\x99\x6d\x55\xa9\x48\xe9\xc6\xa0\xa5\xee\x50\xa7\x53\x86\x74\x32\x36\x56\x1e\x23\x8f\x81\x8c\x3f\xed\xde\xd8\x27\xfa\xdb\x67\x63\x10\x4d\x68\x61\xe2\x7e\x30\x12\x14\xf1\x8d\xf5\x26\xb4\x96\x2a\x7e\x79\x63\x32\xbe\x93\xf9\x1d\x1d\x84\x1e\x19\x3e\xcb\xbf\xe7\xf0\x54\xad\x2e\x6e\xad\x14\x9b\x35\x91\xf9\x5d\x80\x23\x03\x64\xae\x8c\x7b\x64\x4c\xff\xfe\x89\x29\x56\x7c\xc7\x1f\xb8\xa0\xc7\xeb\x26\xe1\x4f\xb1\x48\x33\xdf\x00\xb1\x89\xdc\xe1\xcc\xc0\xdb\xa7\xfd\x07\x02\x9e\xf5\x2f\x08\x4a\x3e\xd7\x0d\xce\x73\xdd\xe2\xdc\x45\x72\x56\x01\x5e\x0d\x6d\xeb\xed\xeb\xf3\x39\xdb\xe5\x4c\xed\x91\x8d\xeb\x71\xad\x57\xe8\xdb\x27\x06\xc5\x77\xc6\x88\x12\x16\xaa\xf3\x2c\xbb\x4e\x41\x36\x1c\x8b\xfe\x6d\x61\xd2\x05\x0a\x6e\xd3\x9f\x19\x6b\x55\x6d\xb6\x2b\x17\x3e\xb4\xaa\xda\x7a\x52\xa0\x00\x4a\x87\x9d\xba\xd6\xe4\x75\xb0\x94\x10\x60\xb8\xbd\x82\x7b\x69\xff\xa4\xc0\x75\x4d\xae\x4b\xf1\x4b\x56\xa2\x33\x57\xf6\xf2\xb9\xae\x98\x73\x75\x6b\x23\x51\x03\x27\xca\x30\x59\x62\xe2\xdc\xbe\xd7\x2f\x1e\x3c\xb3\xc6\xdf\x50\xd6\x73\x64\x38\x3d\x04\xf3\xa8\xcb\xd8\xba\xc2\xa3\xb7\xc1\x32\xfc\x0f\x08\xba\xad\x4f\x87\x09\x8a\x1e\xaa\xf2\xc6\x1c\x08\x88\x92\x6d\x7c\xf7\x8d\x25\x9f\xd3\x6b\x5a\xa2\xd6\x0f\xf4\xe4\x5d\x90\x1a\x27\x90\x4e\xac\x0f\xdd\x84\xf0\x01\x94\xcf\xa9\xff\x20\x8b\x7d\x45\xdd\xa9\x49\x83\x19\x6c\x2c\xc4\x35\x50\xd3\x29\x3a\x51\xda\xc5\x95\xd3\x85\x67\x76\x80\x50\xc9\x98\xff\x9f\xa8\x65\x54\x2d\x5e\x17\x18\x3c\x70\x8c\x45\xb6\x6d\x05\xc2\x12\x6e\x02\xab\x9c\xb1\x6a\x99\xc8\x05\xbe\x6b\x94\xc1\x72\xf0\xba\x4b\x4c\x8f\xad\xd9\x6b\x04\x2b\xdb\x7e\x13\xcf\x4e\xd6\xcb\x33\x09\x5d\x0f\xd0\x9d\xf0\xf4\x29\x3d\xd7\x51\x97\x67\x12\x34\x1f\xb1\x13\x9b\x00\x9a\x0a\x66\xe3\xa6\x93\x4d\xf8\x18\xb6\x8e\xbd\xa2\x9e\xdb\xc1\xb8\x6f\x82\x7f\x8b\x27\x89\x72\x00\x3c\x0b\x0e\xe0\xb7\x6d\x82\x05\x6d\x0c\x7f\xd3\xeb\xbb\xf5\x02\x72\xa1\x41\xda\xc8\x1d\x7a\x10\x4d\x1d\x4f\x48\x63\xbf\x68\x18\x64\xb2\x20\xa2\x1d\x4b\x2f\xea\xd7\xbf\x23\xcc\x57\xc9\xc3\x4f\xec\xf1\xb5\x4c\x19\x3d\xfe\xf1\x9b\xd7\xff\xf9\xfe\xc7\x6f\x5e\xbf\x8d\x7e\x47\x5e\xff\xf0\xdd\x77\xdf\x44\xcb\xdf\xfd\x8e\xbc\x79\xfb\xe7\xb7\x1f\xde\x46\xbf\xfd\x9a\xbc\xf9\xe1\xe7\xef\xa3\xdf\x2e\xc8\xdb\xef\xdf\x44\xaf\xbe\x22\x6f\xbf\xff\xf0\xf6\xa7\x68\xf9\x8a\xbc\x7d\xff\xfa\x9b\x1f\xdf\x46\x97\xff\x41\xfe\xf4\xc3\x77\x6f\xa3\x57\x5f\x93\x3f\xbf\xfd\xf6\x43\xf4\xea\x3f\xc8\x8f\xdf\xfc\x8f\xb7\xd7\x50\xed\xd5\x6f\xcd\xc7\x5f\x7e\x8c\x5e\xbd\x22\x3f\xbe\xfd\xe9\xdd\x0f\x6f\xa2\xe5\xef\x17\xe4\xa7\x77\xff\xe3\x4f\x1f\xa2\x57\xbf\x27\xa6\xe7\x57\x97\xe4\xc3\x37\x7f\x8c\x7e\x4f\x74\xc1\xdf\x59\x42\xc4\x54\x12\x1f\xec\xfb\x4d\xfe\xe3\x1b\x0e\x5b\x5f\xa0\xcd\x24\xf8\xf5\x6f\xbe\x98\x7e\x89\xf0\xf9\x8c\x84\x17\xd1\xea\x0f\xf4\x6a\xfd\xff\x6c\x3e\x6e\xff\xfa\xff\x1d\xab\xfa\xbf\xb6\xf8\xe2\x76\xf0\x2a\x55\x0b\x4b\xcc\x39\x9c\xa3\x82\x04\x1f\x3f\xfe\x66\x19\x60\xfb\xe2\xd7\x4e\x84\x59\x7c\xc3\x32\xd5\xef\xb4\x89\xff\xe3\x07\xcb\xd2\x04\xd4\x14\x9f\x4e\xbb\xdf\x1d\xd4\xa8\xf1\xfc\xfb\x22\x4e\x3e\xa1\x6e\x21\x1c\x21\x61\xa9\xd4\xdf\xd1\xc2\xdd\xd0\x2b\x14\x40\x36\xc4\x3e\x30\xdb\x0d\x91\xc1\x78\xaa\x53\x4c\x0c\x8c\x61\x1d\x1c\x66\xb1\x2a\x90\x11\x42\x35\x7c\x34\xd8\x99\x85\x9a\x81\xe1\xe2\x56\x21\x0b\x9b\xed\x37\x26\x9c\x9a\xde\x36\x3b\x99\xd3\x2f\x83\xd9\xc8\xfa\x23\x85\x81\x93\x23\x82\x02\x68\x22\x69\x54\xbb\xbc\x0d\xce\x66\x1c\xa1\xbb\x73\x15\xd8\x45\xe2\x32\xce\x04\x3f\xc2\x48\xc7\xfc\xa3\x1a\xb7\x07\xef\x02\xc8\xf7\x0f\xd5\xa8\x8c\x08\xca\xd6\x17\x28\x2e\x0b\x59\x99\xf6\x2a\x63\x85\x80\x2f\xa2\x4e\x32\xbe\xd0\x32\x99\x7d\x9c\xc2\x2e\x8d\x3d\x03\x27\xb9\x17\xe7\xf7\x3f\x9d\x3e\x19\x60\x62\xb2\x8c\x44\xc7\xc7\xd4\x59\x44\x04\x78\xc6\x86\x2f\xef\x0f\xd2\x80\xb5\xc3\x66\xe3\x1c\x23\x6e\x1c\x09\x26\x10\xb1\x49\xba\x2d\x93\x1e\x83\xd6\x89\x6b\x59\x55\x2e\xf2\xc2\x49\x26\xb4\x88\x6f\x6e\x06\x3c\xa8\x73\x02\x1f\xf2\x9a\x36\x62\xd3\x84\x72\x3b\x22\x34\x51\x55\xc5\xaf\xe8\x02\xdb\xf7\x91\x7d\x9e\x55\x0d\xdf\x99\x2b\x05\xff\x7b\xc9\xde\xa5\xc3\xc7\x17\x16\xcf\xbc\x0b\x37\x40\x91\x3a\x91\xa7\x55\x85\xec\x2f\x78\x87\x8d\xa7\xf3\x60\x76\x36\x9b\x15\xee\x35\x38\xc3\x37\xfc\x65\xa4\xdb\xa7\x1a\xbf\xf8\xab\x69\xeb\x63\x3a\x73\x52\x84\xed\x05\xe2\x49\x18\xe4\x6c\x9a\xfe\xa6\x39\x6e\x0e\x25\x7f\xe6\xe9\x2d\x2b\x34\x9b\x12\xc6\x49\x22\xf3\x14\xd4\xba\xc3\xb0\x12\xf2\x50\x40\x9c\x87\xa3\x09\x8b\x11\x2d\x88\x15\x2e\xa3\x63\x4d\xc0\x29\x85\xa9\xe8\xa8\x67\xd5\x34\x33\xdf\xb3\x58\x73\x00\x91\x4e\x4d\x64\x2e\x58\x3e\x37\xba\x82\x91\x52\xf3\x44\x66\x59\x7c\x50\xe0\x7a\xd2\x96\x8f\xb3\xac\x5f\xde\xdd\xfa\xf8\xc5\xac\xf2\xa1\x26\xb6\x15\x2d\xd6\x68\x61\x17\xde\xdc\x8b\x82\x24\xe3\xc9\xa7\x80\x98\x9e\xa2\xe0\xea\x2c\xe3\x67\x57\x67\xd1\x8e\xe7\xaa\x98\x43\x68\x46\xa2\xbf\x85\x2c\x50\xc6\x71\xa4\x6b\x05\xd6\xf2\xc7\x84\x2e\xb0\x61\x46\x78\xe2\x2d\xc1\x9f\x6c\x6b\x7a\xf1\x13\x29\xe6\x45\xce\x63\x71\x9b\xb1\xf9\x72\xae\xda\xbe\x46\x72\x59\x50\x13\x68\x42\xaf\x1e\xc4\x2a\xbb\x61\x3b\x99\xb3\x6f\xfc\xb4\x1a\x5c\xf1\x7e\x34\x0f\x20\x75\x2f\xc6\x6d\x04\x03\x32\xb8\x1d\x77\x19\xed\x15\x79\x2f\xc5\xfa\x77\xdb\x44\x7b\xf5\x63\xbe\x8c\x7f\xe2\x89\xfe\x8c\x96\x68\xa4\x3f\x93\xe1\xf7\xd7\x49\x71\xfd\x99\x44\xd7\x1f\x7c\xd5\xe4\xda\xe8\x55\x46\x04\x2f\x78\xf1\xd0\xc0\xdb\xaa\xa1\xf9\xef\xf7\xf2\x33\x6d\xbe\xfe\xc4\x53\x8d\xe3\x2c\x66\xbe\xee\xd8\x7d\x79\x70\xac\x3f\x0d\x84\x9f\x95\x7c\xbe\x67\xd9\x81\xe5\x8e\xc9\x26\x1d\x21\xca\x10\xa2\x5c\x82\x02\xbe\x88\x6f\x32\xae\x8a\xc0\x86\x78\x76\x10\x55\x55\xcc\x46\x85\xb1\xda\x0f\x83\x5e\x5c\x22\x78\x2c\x99\x9f\xa0\x8e\x87\x91\x1d\x72\x99\x30\xa5\x7e\x8c\x05\xcb\x14\xc2\x64\x71\xe5\xca\x80\xaf\x92\xf9\x39\x33\x13\x33\x30\xe3\x08\xac\x6b\xa1\x15\x14\xc9\xf5\x2d\x2b\x5e\x9b\xf7\x2b\xe1\x31\xc9\xb8\x88\x87\x48\xe2\x68\x41\xcf\xd0\x57\x68\x9f\x1c\x74\xf7\x7e\x4a\x87\x88\xdb\x24\xc1\x1e\x0a\x4d\x47\x11\xc8\x61\x66\x77\xde\x25\x9d\xe0\x2e\x1e\xc3\xd0\xd9\xa6\x10\x4e\xc6\xca\x92\x70\x14\xfc\x41\x1d\x62\x71\x15\x0c\xb6\x87\x8d\x9f\x7d\x5d\xdb\x6c\x96\xfe\x75\x16\xcc\xdc\x5a\x60\x78\xa7\x8a\x59\x2b\x42\x7f\x91\x34\x79\xf7\x07\xef\x02\xac\x9a\x98\x3c\xe3\x3d\xb4\x2b\xda\x44\x82\x44\x9c\x34\x7d\x79\xe3\xe4\x26\xa8\xb3\x6b\xfd\x4f\x83\x02\xfe\x50\x7a\x73\x82\xa5\xd0\xe4\x90\x5c\xa7\x4c\x15\xb9\x7c\x1c\x2c\xe2\x70\x18\xcf\xb7\x47\x3a\x20\xf2\xa2\xe9\x36\x96\xab\xed\x50\x06\xa4\x6c\xd5\x39\x05\x3e\x95\x80\xb3\xd0\xeb\xb6\x9f\x7f\x16\xe7\x3c\x9e\x9b\xb8\xe4\x2c\x35\x5f\x46\xcf\xe5\xbe\x34\xb6\xce\x65\xa6\xce\x8a\xf8\xe6\x9d\xa1\xcb\x61\x97\xcc\x35\x87\xd8\x5f\x2d\x9d\xd8\x3d\x14\x06\x3a\xbb\x01\x30\x48\x10\xe0\x13\x63\x32\x1c\x94\xf9\x0d\x5c\x60\xc6\xd2\x9b\xc7\xb1\xce\x1b\x33\x82\x09\xed\xc2\xb4\x47\x00\x34\xbf\x00\x3d\x9b\x34\xe8\xb8\x26\xd7\x8a\x15\x3f\x40\xe1\xf1\xf8\x6e\x06\x78\x40\x88\x5f\xdb\xf7\x25\x1c\xde\x47\x0c\x13\x23\xf6\xe1\x08\x05\x40\xa6\xa0\x9c\x7d\x92\xa2\x19\x03\xe4\x18\x0e\x3c\xbc\x96\xbb\x5d\x17\x50\x86\x45\xdd\x5a\x2a\x56\x94\x07\x40\x12\x0a\x31\xdc\xa4\x96\x07\x2d\x2f\x11\x06\xb3\x6e\xf0\x1a\xcc\xbc\xaa\x98\xd5\xf9\xb8\x06\x3d\x54\x67\x73\xda\xe1\x2f\x30\x09\x0c\x60\xfa\xa3\xee\x6f\x21\x73\x23\xf7\x90\x89\xe6\xcc\xed\xcc\xfd\x15\x7c\x63\x55\x97\xdd\x28\x41\xfe\xa8\x47\x11\x36\xec\xaf\x53\x7b\x06\xa4\x99\xbf\x17\xf5\xd4\xbc\x30\xa6\xcf\x94\x66\x80\x99\x57\x7a\x32\x19\x2d\xdf\x01\x3b\x2d\x14\x8c\xc0\xa1\x79\x73\xe2\x64\xab\x35\xb9\xfe\xc4\x1e\xe1\x7e\xa4\x17\xa4\x6f\xc2\xc2\x38\x2b\xfe\x93\x3d\x4e\xa7\x13\x16\x26\x45\x9e\xfd\x27\x7b\x6c\xb9\xd8\x56\x86\x75\x18\xb6\x4b\x14\xec\x13\x66\x4d\x2a\xb0\xba\xc8\x3d\xb8\xad\x45\xa4\xc9\xd2\x85\x23\x62\xae\x29\x13\x2b\xe8\x8c\x87\x46\x40\xb5\x1f\x20\xcb\xca\x4e\x73\x1b\x24\x66\x4b\xfc\x85\xda\x7a\x51\x83\xce\x78\x08\x22\xb0\xfd\xfd\x97\x1f\x87\x75\xe6\xcb\x99\x1a\xd6\x32\x42\xb0\xfd\x30\x02\xb6\x59\x6b\x00\x54\xab\xd7\x43\x0c\x77\x6b\x81\xd8\xdd\xeb\x61\xd1\x6b\x59\x0b\xed\xbd\x22\x6a\xbe\xdc\xd6\x52\xc3\x61\xbb\x18\x16\x44\x1a\xc4\x43\xe6\x4b\x4c\x20\x12\x5f\x3f\x63\x61\xd3\x07\x11\xfa\xd8\xe0\xdd\x66\xa0\x8d\x40\x4e\xff\x93\x3d\xbe\xe9\x6f\x70\xb3\xe4\xa0\xb8\x6b\x37\x33\xfc\xcb\x8f\xd3\x69\xb3\xdd\x9a\x2b\x6f\x02\xf4\x7f\xb0\x83\xd5\x1d\xa1\xe1\x10\x6a\x62\xe9\xff\x4b\xf8\xa4\x01\xb7\xd1\xf0\x23\x86\x5f\xe9\x70\x33\x3a\x6d\x51\x55\x93\x11\x28\x5b\xb7\x8c\xcc\x64\x49\x3c\x32\xab\x59\x2e\x08\x52\xdc\xb6\xba\x1e\x60\x86\x11\x3e\x03\x22\xc5\x37\xd1\xee\xfc\x73\xbc\x59\x6c\xfd\x0e\x36\x8b\x2d\x5e\x8f\x8c\xc8\x3d\x4e\xe5\x52\x8d\x01\x56\x38\x3c\x7e\xf8\x65\x53\xe8\x0d\xba\x79\x21\x6a\xd1\x2c\xd9\x7c\xe9\xcf\x74\xe4\xd0\x79\x6d\x9e\xa2\x60\x03\xfe\xad\xb3\x3f\x43\xb1\xb2\x83\xdc\x99\x13\xf5\x75\xd9\x95\x9f\xd5\x53\xff\xeb\xa5\xe8\x11\x2e\xc3\x3b\xf5\x98\xaf\x27\x78\x0c\x93\x7a\xf6\xb4\x5c\xe6\x63\x3b\xf7\xfc\x0a\xf1\xc6\x38\x4a\xaf\xad\x7e\x22\x00\xe1\x2a\x1c\x13\xe4\xe6\x76\x0d\x03\xec\x42\xf9\x8c\x8d\xdb\x74\x71\x42\x14\x84\x64\x9f\xbb\x3f\x6b\xf8\xfe\xa6\x0c\x50\x23\xe4\x11\xd2\x50\x8f\xa8\xc3\x52\xba\x9e\x75\x36\x6b\xb3\x4d\xd7\x70\x39\x76\x7d\xea\x30\x3a\x6e\xd4\x6e\x01\x3c\xf2\xe6\xf1\x0f\x0e\x6d\xbb\x3d\x6b\x82\xaf\x76\x00\xd3\xdc\xa6\x70\x91\x82\x24\xc8\x10\xef\x81\x57\x77\x45\x2c\x6b\x3f\xca\x50\x5b\xce\xc3\xdb\x31\x9b\x82\x47\xd8\xce\xa7\x1a\x6a\x77\xff\xa9\x41\xd8\xcd\x1e\xdf\x9d\xa6\x6b\x32\xac\xe1\xcc\x62\xba\x24\xb7\x27\x8a\x9d\x30\xaf\x6c\x74\x5c\x84\x53\x16\x96\x0d\x43\xd7\xd1\x29\xd2\x66\x6c\x82\xaa\xf1\x42\x2b\xe6\xf3\x12\x8e\x5f\x0d\x08\x04\x0f\xf5\x72\x3c\x2e\x12\xae\xad\xdd\x14\xfa\xc3\x05\x70\xe9\x33\xce\x0d\x30\xd9\x1d\x35\xb5\x8e\x41\x87\x63\x0e\xa2\x60\x17\x67\x4a\xb7\xd3\xe1\xab\xdb\x74\x47\xb2\xa2\xf9\xb2\x37\x00\xdb\x94\x75\x5f\x8a\x82\x22\x2f\x21\x72\x87\x7f\xa4\x4e\x8b\x7e\x27\x46\x03\x8d\x0c\x07\x63\x92\x9b\xb1\x2c\x9e\x19\x8a\x19\x7b\x6d\x91\xae\x5b\x11\xa3\xe3\x1d\xa3\xc4\x43\x8e\x71\x84\xa9\xe5\x8e\xdf\x0d\x76\x3c\x03\x67\x58\xb5\x46\x8c\x8a\x26\xca\x67\x97\x5b\x6c\xf4\xc2\xde\xad\xf7\xb3\x46\xbb\xbc\xaf\x26\x5d\xb5\x8a\xdb\x09\x3c\xbf\xd6\xea\x38\x41\xf4\x9d\x53\xde\x8f\x93\xec\x5e\x07\x6d\xe7\xdd\xeb\x94\xcd\x5d\x8f\xfd\xaa\xfd\x9a\x76\x8d\x4f\x5d\xbf\xd8\x89\xfb\xa4\x6c\xee\xf2\x3a\x21\x60\x66\xbd\x1a\xf0\x94\x59\x4f\xeb\x4b\x6c\x40\x5e\xdc\xc6\x22\x37\xc2\xfd\xe2\x45\x63\xea\xac\x64\xcf\xd8\x60\xc5\xab\xca\xe5\xd8\xe3\xcf\xda\x27\x1a\x19\xe9\xf8\xa6\x79\xf2\x56\x3b\x5c\xe2\xb5\x60\xe0\xbb\x6e\x72\x21\x9a\x5e\x43\xd8\x4f\xbe\xc8\xe9\x61\x59\x86\x35\x83\xc9\x9d\xf4\xd7\xf0\x21\x10\xde\x9b\x5b\xc9\xa7\x49\x25\x23\x3c\xec\xd1\x30\x9c\x11\x27\x1d\x9e\x2e\xe2\xa4\xcb\x3d\x46\x9a\xe6\xc8\x03\x3c\xc5\xea\x8d\x60\xc4\xa4\x62\x18\xaf\x7f\xdd\x3f\x3c\xcc\x68\x6a\x88\x7f\x2a\x46\xa6\x7b\x74\x72\x48\xe0\x24\x92\xa0\x5e\x81\x3c\x6b\xa2\x85\x78\x6f\xd4\xf5\x63\x49\x6d\xd8\x96\x06\x9d\x99\x06\xb5\x4f\x22\x5f\x24\x27\x35\x15\x44\x97\xff\xe0\x27\x32\x1c\xba\xf6\xc6\xed\x73\xdb\xed\x08\xf6\x1a\x56\x41\x77\xdf\x55\x0b\xd9\xfd\x6d\x34\xfb\x9d\xdc\x9a\x74\xe6\x33\x16\xc6\xd4\x91\x6a\x47\xc9\xa5\x0f\x16\xe0\xbf\xd4\x67\xdd\xe1\x95\x63\x13\xfe\x1b\xac\x71\x68\x3e\x9d\x0a\x9f\xd3\x26\x19\xdd\xaf\x0b\x84\xa3\xd8\xcd\x2e\xa1\xd2\xfd\x2c\xe9\x51\x66\xa9\x55\x26\x4b\x22\xb3\x14\xb8\xc3\x28\x21\x82\x7d\xb6\xc9\xb6\xb6\x4e\x31\x99\x59\xbd\x1a\x8a\x26\x24\x9f\x4e\x27\xa2\xab\xb0\xb4\xd2\xad\x13\x2a\xba\x8a\xe6\x80\x30\x52\x62\x1b\xc7\x10\x09\xc7\x87\xec\xd7\x93\x65\x34\xc2\xf0\xc6\x1d\x32\x42\x73\x3b\x28\x5f\x80\x46\xe5\x98\x8e\x4d\xfe\x52\x26\x85\x08\xa3\x50\x84\x23\x28\xff\x1b\xba\x3d\xf3\x3e\x9b\x69\xec\xa4\x2e\xaf\x57\xcc\x72\xcf\x98\xe4\xee\xba\xa6\xd3\x68\xfc\x2c\xa3\xe4\x35\x7d\xa2\xf0\x8b\x66\xae\x68\xfc\x4f\xcf\x5c\x8d\x4e\xc9\x1b\x98\x7a\x62\x69\x06\x9c\x5e\xfc\x32\xfe\x0e\xd0\x5a\x3f\x38\x9f\xf7\xca\x87\x83\x5e\xa7\xd9\x70\x5a\xfd\xee\x85\xb2\x4d\x8c\x58\xe8\x8e\x42\xf7\x0e\xa0\xc5\x34\xee\x1e\x00\x87\xaa\x90\x07\x34\x59\x40\x90\xc9\x4e\x61\xca\x49\xa7\x28\xed\xe9\xcc\xec\x1d\x96\x93\x61\xad\xb9\xa4\xc6\x02\x0c\x47\x48\x39\xee\x89\x77\xf8\x54\xa7\x2c\xb2\x46\x92\xa0\x5f\x53\x4f\x72\x61\x44\x39\xf1\xfe\x9f\x62\xfb\x6a\x3d\x02\x27\x48\x37\x32\x7a\xaf\x4d\x8f\x35\x3c\xdd\x4e\xd4\xb6\xd3\x13\xa7\xfb\xb7\xc8\x5e\xf8\xac\xc6\xb6\xdf\xd1\xdc\x1e\xd3\x86\xc9\x72\x01\x8e\xb8\x23\xea\x16\xee\x73\xd0\xce\xb7\xde\x0e\x07\x3f\xb3\x28\x2f\xe6\x3e\x35\xc1\xb7\x97\x91\xa3\x41\xd0\x9d\xe7\xa9\x79\x91\x7e\x01\x51\x96\x8c\x43\xae\x7c\x98\x2b\xfe\x0f\x2e\x6e\x03\x4c\xb2\xe6\xe9\xec\xe9\x14\x4d\x58\x6b\x07\x67\xd1\x1f\xfe\x03\x73\xbf\x34\x02\x1f\x83\x23\x88\xa6\x5b\xd2\x6c\x3a\x4d\x42\x4d\xbc\xaa\x2a\x21\xa9\x6f\x6e\x11\x0f\x80\x87\x37\x41\x4a\x07\x34\xbf\x04\x07\xa6\x72\x24\xd6\x5d\x09\x91\x7a\x4a\x2d\xd4\x88\xaa\x2a\xad\xd9\x6e\x55\x25\xce\x80\x57\x52\xa9\xd3\xdb\x38\x02\x89\xef\x86\xe4\xce\x5b\xa3\x2a\x51\xb4\x70\x31\x27\xba\x2f\xef\xb0\xee\x83\x69\xcd\x95\x24\x39\x36\x66\xc4\xd2\x59\x0f\x0b\xa2\x0a\x76\xe8\x69\xc2\xb5\x18\xfd\xd9\xb7\xff\x2f\xec\xbd\xb3\x39\x59\xdd\xe6\x9b\x1b\xc8\xf1\xe6\x1b\xab\xe4\x74\xd0\x13\xc7\x47\x3e\xec\x89\x38\xf6\x71\x42\x29\xbc\xf1\x76\x58\x3b\x65\xff\xdc\xfa\xa2\x82\xe9\xec\x0c\x6c\x8a\x3f\xe3\xc8\xbf\x0a\x88\xc7\xef\x01\xd0\xa0\x1f\x35\xef\x45\xa6\x9e\xe7\x9a\x25\x30\x2f\x1d\x3a\x1d\xff\xc9\x85\x94\x44\x90\x14\x47\xc5\xa9\x95\x30\xf9\x0d\x62\x7d\x3d\xf0\xe9\x6a\xe2\x4f\x17\x0d\xc2\x04\x81\xd8\x9c\xad\xd5\x90\x36\xf4\x25\xfd\x71\x31\xbd\x47\x48\x9f\x22\x63\x5d\x5a\xfa\xac\x1a\xa1\xd5\x09\x7a\xcf\x64\x6c\x16\xdb\x36\xb4\x25\x3d\x91\xde\xe0\x5f\xc7\xce\xc4\x0d\x23\x63\xde\x34\x6f\xad\x8b\x55\xbc\x33\x6c\x8e\x7b\xc0\x83\x0e\x16\x0c\xde\x79\xd1\xcb\xd6\x79\xe8\xc3\x3e\xfa\xc2\x31\x64\x75\x5e\x7b\xa9\x2a\xe4\xd2\xf4\x2c\x9c\xbd\x78\x37\xb9\xee\xda\x54\xdc\x31\x51\x8e\x99\x53\x58\x05\x9a\xed\x34\x0a\xfe\x50\x66\x57\x3a\x35\x8b\x1f\xa3\x57\x8b\x45\x6b\x6e\x61\x4d\x0e\x54\x79\xa3\x9b\x6a\xed\x09\x92\x38\x67\x85\x35\x26\xe0\x05\xbb\x53\x51\x70\x75\x76\x1e\x10\x5d\x4a\x45\x41\x99\x05\x6d\x50\xcf\xe3\xdd\xa3\xf1\x95\x38\x03\xf3\x8b\xb8\x88\x8c\xff\x05\x7c\xd6\x24\x97\x19\x8b\x02\x33\xd2\x9b\xac\xcc\x8d\x4d\x02\x70\xd0\xe6\xa7\xc1\xc9\xd6\x2c\x61\xe4\xda\xde\xe3\x0a\xbf\x63\xa2\xec\xa8\xba\xcc\x96\xdd\xc9\x52\x31\xc3\x74\xa7\x8d\x3e\xd6\xc9\xe6\x7d\xad\xcc\x11\x06\xd4\xc1\xaf\x3a\xa5\x83\xf2\xc7\xee\xfd\xcd\x0c\xba\x57\xfe\x03\x25\x60\x23\x74\x1c\x03\x18\x94\x46\xd3\x67\xa1\xad\x3d\xd7\x2b\x19\xf4\xde\xb7\xe8\xb3\xd9\x35\x31\xf6\x24\x27\x6b\x79\xd1\xb1\xdb\x8b\x19\x70\x53\x1b\x85\x4c\xfb\x26\xa4\x35\x7e\xda\x2c\xb6\x18\xaf\x26\x83\x55\x9b\x4e\x39\x28\x91\x9e\xd2\x79\x3b\xfd\xa6\xd9\x2f\xc4\x34\x94\x72\xa5\xf1\x48\x7c\x0b\xd8\xf4\x7d\x21\x0f\x07\x96\x22\xec\x38\xdb\xee\xbe\x2c\x34\xbd\xde\xc7\xf6\x5d\x1b\x58\x4e\xdc\x61\xce\x0c\x15\xd6\xa2\xe7\xa4\xb3\x83\x20\xe0\xdb\x0b\x0b\xcd\xa1\x34\x36\xf9\x83\x76\xdc\x10\x5d\xcd\xde\x75\x07\xd9\x4c\x9a\x97\x45\x9d\x95\xc4\x92\x76\x24\xf3\xd6\x94\x70\xa4\xf1\x24\x63\x71\xee\xac\xf5\xa1\x52\xc1\xef\x34\x4b\xab\x77\x0d\x26\x0b\xae\x95\x4f\x6d\x1d\xdf\xa1\x49\xc3\x33\x72\x59\xaa\x6f\x81\x37\x1a\xd9\xd3\xe1\x34\x4d\x73\x66\xb3\xfb\x52\xe2\x8a\x1b\x19\x51\x19\xd5\xc2\x08\xcf\xee\x19\x2f\xf6\x18\xff\xbe\x8c\xd0\xbd\x7a\xec\x22\x6e\x58\x48\xb0\x67\xc3\x75\x4d\x60\xce\x19\x8b\xef\x59\xe4\x6e\x7c\xd9\x37\x60\x53\xd5\xe6\x34\xab\x11\xf4\xca\x18\x14\x30\xfa\xe6\x4a\xbb\x1f\x56\xc6\x3c\x7d\x1b\x01\xd8\xc9\x99\x06\xb2\xc6\xaf\x40\x8f\xb2\x80\xc0\xe8\x80\x73\x3a\x0f\x1f\xd8\xcb\x94\x2c\x7e\x1c\x2a\x95\x9e\xbc\x48\x7a\xf1\x01\xe3\x96\x01\xf6\xe6\x8b\x18\xd8\x4c\x8f\xe8\x4b\xec\xca\x36\x17\x39\x3d\xcd\x85\x6b\x99\x1c\x01\x2f\x8c\xdc\x60\x03\xa0\xfc\x20\x9c\xa9\xe3\x6b\x5d\x0c\x15\x78\x64\x0c\xee\x42\xba\x87\x30\xe1\x81\xf8\x53\x36\x1c\x6c\xe4\x3e\xa8\x0f\x92\x27\xac\x24\x5a\x14\x02\x3c\x43\x17\xea\x9a\xea\xde\x5b\x6d\x7d\xeb\x89\x4e\xbb\x0e\x41\x9f\x79\x66\x18\xb1\x3a\xc8\x43\x79\x08\xf0\x69\x43\x13\x28\x68\x80\x29\x65\x2a\x61\x22\x8d\x35\xaa\xee\x4d\xc4\x7f\x2f\xf9\xc4\x6c\x5a\x0d\xfd\x98\x5d\x8a\x6f\x11\xe2\xe6\xfd\x94\x55\x8a\x93\xf9\x78\xbb\x2c\xcf\x5c\x44\xac\x3c\x77\x20\x58\x3c\x4b\xb5\x0d\xb1\x06\x37\xab\xd6\x24\xe7\x94\x8d\x40\xa3\x86\x02\x99\x65\xb2\x38\x75\x9b\xdf\xb9\x5e\x76\xf6\xe8\x1d\xc4\xf5\x63\x7c\xcb\x7a\xf7\xeb\xc3\x4a\x60\x05\x00\xd5\xb4\x8c\xff\x5c\x15\xb8\x9d\x37\x30\x0d\xd3\x08\xc0\x84\x52\x4b\x74\xe6\xef\x13\x55\xdf\x7e\xff\xa6\x53\x33\x8b\xa1\xa2\xf9\xf3\x44\xbd\xfe\xac\x9e\x1a\x5e\x77\x32\x4f\x95\x04\x93\x86\xce\xe9\x7b\xaa\xb4\xb1\x9b\xe8\x50\xa5\x89\x4f\x92\xdc\x53\x70\x7d\xba\x6c\x0f\x78\x43\x36\x9f\x58\x9c\x0f\x6f\x7f\x8a\x86\xe9\xc6\x86\xc2\xf2\x3a\xad\xe9\xd0\xe9\x76\x8c\xfb\xc2\x89\x89\xb9\xe7\x9e\x62\xcd\x82\x79\x4a\x98\x96\xca\xc1\xd3\x5b\x52\x67\x0b\xda\x00\xdc\x15\xfd\xfd\xd7\xd3\xe9\x72\xf1\xd5\x55\x9b\xb6\x0e\x82\x59\x0b\x92\xf3\xdf\x7f\x8d\xa3\xf7\x20\xa4\x42\x90\x82\xd7\xfb\x38\xd7\xe9\x1e\xd0\x92\x21\x69\x36\x4a\x87\x0f\x40\xa0\x89\x80\x1b\x1c\x49\x27\x8b\x48\x50\x35\x13\xa4\xd5\xd4\xeb\x52\x9a\xaf\x7c\xa7\x09\x09\x12\x1a\x55\xc9\xe9\x74\xbe\x04\xa9\x6e\x70\x17\xef\x14\xcf\x03\xd3\x46\x8d\x5e\xfb\x68\x31\xe2\x8d\x66\xa5\xaa\x90\xa0\xcf\xcc\xe1\xf4\x98\x5a\x0d\xcd\x1a\x75\xc8\x30\xf7\x34\x52\xed\x3a\x53\x41\xfa\x4b\x40\x4f\x50\xbd\x94\x69\x79\xef\x6c\xa4\x91\x9a\x2c\xd9\x2b\x8c\xa3\x27\x4a\xc4\x1a\xe5\x0c\x19\xd8\x91\xfb\x91\xa2\xc3\xc6\xbf\x18\xbe\x3b\x2b\xdf\x92\x8f\x4d\x07\xf9\xd3\x2f\x8b\xbc\x64\x5f\x6e\xc7\xb9\xc9\xc2\xb9\x6e\x18\xae\xb5\xc0\x4f\xd8\xbc\x90\x16\x33\x5a\x6d\x4e\x97\xd5\x00\x65\xa6\xc5\xba\x64\xff\x9c\x9d\x04\xc8\x4a\x4e\x44\xf6\x2d\xc0\x1a\x04\x6e\x4c\xdc\x0c\xc3\x35\x99\x9c\x20\xb3\xd6\xd8\xd2\x59\xed\x2a\xba\x1f\x5a\x3d\xe8\xd6\x5a\x0b\x87\xa7\xe5\x9c\x31\x1d\xe2\x69\x95\xde\x0b\xee\xc6\x8d\x2a\xc0\xbe\xcc\x6a\x2d\x73\x9f\xa4\x54\x64\xb2\xc0\xab\xb8\xa3\x2e\xee\x2c\x49\xc7\x56\x37\xef\x6b\xf9\x1c\xc9\x27\x66\xe8\xd8\x59\xf0\x22\x05\x0a\xa5\x13\x37\xea\xde\x8d\x3c\x1e\xca\x77\xed\x00\x9e\x96\xf0\x74\xca\x2e\x97\xc6\xde\x83\xee\x5b\x65\xb1\xdd\x36\xb3\x20\xa7\x98\x54\xe2\xc9\x58\x3e\xf3\xf4\x34\xd5\x8f\xc3\x6b\xae\xde\xf0\x7b\x6e\x9e\xdf\x9a\x4e\xe3\x81\xc5\x33\x34\x96\x9a\x22\xfe\x04\x5a\xc1\x14\x9e\xad\x1d\xeb\x9e\xb4\xc2\x8a\x6b\x00\x83\x27\xbb\xc7\x95\x74\x6a\x05\x78\x28\x51\xfb\xca\xe1\x16\xea\xae\x75\xfb\x3f\xc9\x0c\xd8\x91\xfe\x8a\x0b\x6f\xcb\xcd\x2a\xb4\x79\xb2\x9b\xd7\xf2\x87\x84\x37\xa0\x3f\x2a\xa7\x8e\x1a\x6d\x5a\x30\x21\x3d\xfc\xf3\x62\x7b\x31\x4b\x65\xb5\x18\x01\xc8\xcd\xcd\x6a\xc4\x34\xde\xe8\x50\xf4\xbf\x30\x27\x92\x71\x55\xdc\xc8\x87\x28\x30\x70\x10\xd4\x9b\xc1\x71\xdc\x3e\x61\xe7\xcb\x77\xc8\xb3\x82\xed\x08\x47\xa7\xb8\x71\xc0\x15\x23\x5a\x39\x7b\x09\x75\x1a\x9d\x8d\xdc\x58\xb1\x26\xaf\x36\x0d\xb6\xf6\xbd\xff\x06\xd3\xda\x59\x10\xfc\x62\xeb\xda\xfa\xb4\x0c\xa9\x11\xf9\xaa\xdd\xb8\x82\x14\xd3\xa9\xd5\x02\x80\xf1\x64\xf1\x78\x68\x14\x7e\xc6\xfd\xed\x9d\x28\xe4\xff\xe6\xec\x33\x62\xdd\x8b\x48\x7d\x9e\x73\x70\x10\x54\x4f\xb8\x04\x8c\x41\xeb\x00\xc9\x3c\x29\x59\xfb\x50\xe1\x38\xbb\xe1\x8a\x0d\x04\x19\xe2\x7b\x39\x62\x77\xbd\xdc\x51\x66\xa0\xd3\xba\x84\x5f\x3e\x0b\x71\x7a\x16\xd3\x69\xe0\x84\xda\x66\x8d\xd7\x9e\x88\xea\xbc\x28\x8b\xa7\x18\x92\x4e\xf9\xda\xf4\x0e\x85\x4e\xc9\x90\x81\x7f\x7d\x55\x4c\xa7\x17\x7f\x05\xe9\xd6\xb9\xaa\x99\x9d\x76\x96\xe2\xf0\x80\xcd\x0f\x07\x26\xb8\xb8\x45\xbc\xb3\xd1\xa0\x5b\xf4\x5e\xcc\xee\x29\x83\xad\x06\xa9\x20\x47\xbd\x3e\x11\x03\x09\xab\x0b\x39\xa7\x05\x2d\x92\xdb\x33\xb9\x8f\xd5\x7b\xa8\x83\xe0\x6d\xea\xa1\x8f\x7a\x6f\x40\x1a\x1f\xf5\x03\x97\x5a\xd7\xf8\x97\xd5\xf5\xe2\x99\x9a\x7a\x9a\xf3\x76\xe1\xd9\xe0\x0d\xa2\x5e\xad\x6e\x26\x9f\xf7\x4c\x14\xa0\x88\xf7\xee\x95\x65\x95\xfc\xdc\xc6\x44\x2a\xa7\xbd\xab\x0b\xb2\xb8\x12\xeb\xd3\x8d\xc9\x99\xc0\x91\x98\xe5\x57\xb1\xdd\xae\x53\xa5\xe6\xf1\x2c\xc7\x03\xd5\x8e\xb9\x11\xaa\xaa\x53\x5a\xba\x2e\x05\x18\x51\x91\xfd\xb2\xd3\xfd\xe4\x61\xf6\x6c\x22\xb2\x32\x6f\xc1\xc6\xeb\xa2\xee\xa2\x19\xdd\x1c\x80\x94\x07\xa1\x1d\x94\x7a\x72\x5a\x86\xc0\xc1\x89\x1b\xde\x86\x36\x4c\xf4\xcb\x0f\x9d\xd3\x3f\x1d\x98\xee\xb7\x73\x04\xf5\x00\x75\xfa\xa8\x8b\xac\xf3\x6b\x95\xbb\xce\x34\xbb\xd8\xcd\xdd\x1a\xe0\xd5\xd3\xdb\x34\x4e\xe0\x02\xc3\x8c\x8c\x6a\x69\xbb\xdc\x6f\xef\x4a\xd8\xf2\x00\xcc\xdd\x43\x0e\x14\x44\x4d\xe8\x7b\xaf\x76\xc3\x0e\xb7\xac\xa6\x0b\xc2\xc4\x71\xe3\x0c\xca\xbe\xc9\xb2\xde\xfb\x72\x4f\x4f\xed\xc9\x9d\x30\xb1\xd1\xf8\xda\x5f\x84\xa8\x40\x4c\x4b\x5a\x7d\xc5\xf0\x93\x0b\x85\x57\xaa\x15\x3d\xbb\x36\xdd\x8d\x11\x24\xec\xb7\x33\x6a\x02\x3a\xc9\x46\xcd\x3d\x06\xf6\xf0\x2f\xd3\x15\x7b\x78\x55\x75\xc0\xa8\x26\xa6\xef\x2e\xcb\x50\x55\xa8\xf0\x91\xc9\x7a\x8c\x92\x45\xbd\x89\x0c\x01\xe4\x59\x28\x38\xb1\xc5\xd6\x6a\xc0\x8d\xad\xa7\x4f\x1d\xb1\xa2\x9b\x3c\xa9\xac\x6f\x44\x36\xcd\x32\x3a\xfe\x7d\xe4\x85\xaf\xc9\xc5\xe6\xaf\x1f\xe7\x1f\xcb\xcb\xc5\xf2\xb7\xf0\xef\xab\x8f\x6a\xdb\x12\x2f\xa3\x6d\x68\x81\x6d\xec\x66\xd6\x47\x6b\xbf\x84\xfa\x77\x4e\x1a\x5e\x01\x8c\x75\xef\x51\xba\x28\xc1\x69\xd5\xc1\x08\xd2\xac\xdc\x2f\x19\xce\x10\xa5\x9e\x39\x35\xec\x88\xb0\xe4\xb8\xae\xd1\x61\x01\x6e\x6a\x27\xd8\x3a\x48\x8c\xe1\xb5\x76\xd8\x60\x1a\x29\xd8\x43\x31\xc2\xab\x1a\xb5\xa1\xce\x6c\xf5\x8d\x1a\xfb\x39\x95\xc7\xc9\x2a\xba\x40\xa3\x69\xd4\x35\xb8\x82\x17\x00\xde\x69\x7c\x7f\xc2\xc7\x7e\x54\x0d\xa2\x1b\x1a\xd3\x22\x35\x70\xc4\xd5\x9f\xe3\x7f\xa2\xdd\x53\xda\xa9\x16\x3e\xf5\x44\xc6\x6d\x5b\x56\x5d\x9a\xa9\xa8\x5d\x1a\xf3\xec\x9d\x99\x34\x6d\x82\xa9\x58\xa1\xc9\x2b\xb3\x0e\xec\xac\x82\x28\xb0\xe3\x08\xb6\x23\x12\xf0\xdf\xd1\x7c\xd9\xf1\xec\xd9\x14\xb3\xe0\x74\xe1\x05\x86\x80\x1e\xaa\x6b\x6e\xd4\xf8\x49\xab\x01\x4f\x72\x0a\xca\x36\x6c\xdb\x80\x8f\x81\x13\x4e\x94\x05\x92\x1f\xe3\xdb\x11\x4b\x33\x10\x2c\x86\x6b\x6e\xf5\x72\xed\x16\xb5\xb7\xa0\x3e\xd3\xb7\xee\x8e\xad\xc3\x6c\xf5\xbd\x38\xba\xa6\xe6\xcf\x6d\x66\x5f\x89\x60\x87\xd8\x1a\x9c\x2f\xae\x78\x97\xb7\x53\x73\x51\xf7\x6e\xf5\x38\x6e\xe2\x4c\x99\x84\x17\xaf\xa3\xbf\x14\x06\x2c\x22\x0b\x06\x5b\x30\xd3\x6d\xbc\x51\xa1\xa0\xd5\x9f\xb7\x9e\x9a\xfe\xa5\xc2\x2f\x5f\xf3\xe6\xbc\xfd\x9b\x16\xfd\xe4\xc9\x7c\x76\xd1\xfb\x4b\x3e\x13\x57\x8b\x7f\xd9\xa2\x3b\x14\xf9\xfc\xf2\xb6\xab\x71\x32\xea\x87\x9d\x7f\x87\x5f\xff\x43\x27\xeb\x90\xcb\x03\x0a\x0c\x23\x6e\x03\x81\xc1\x63\xf0\x59\xe7\x11\x76\xd6\xd1\xf4\xf6\xae\x72\x5f\x70\xbb\xbd\xb2\x86\xe5\x03\x76\xd9\x47\x45\x27\xcc\x08\xec\xed\x6f\xe7\xd6\xb5\xb5\xda\x6c\x79\x72\x33\xe6\x00\xf0\x1c\xd8\xca\x77\xf4\xed\xa3\xd6\xa5\x2e\xec\xd1\xc5\xe6\xe3\xfc\xe3\xe6\xe3\xf6\x58\x23\x7c\x3e\x5b\x87\xe4\xe3\xc7\x8f\x7f\xfd\x4d\xf5\x6b\x4d\xb4\x6f\x21\x24\xd2\x14\x6e\xe8\x7f\x62\xb7\x6f\x1f\x0e\x28\xf8\x6b\x30\xe3\x24\xe0\x01\x1e\x81\xdf\xe7\x36\xb7\xd5\x74\xf9\x30\x77\xd2\x98\x52\x35\x4c\x43\xce\xef\x1a\x6b\xca\xe7\x2f\x5d\x2d\x8f\x31\x1a\xb3\xa5\x2c\xa4\xb3\x8b\x7b\x91\x9d\x11\xc4\xa2\xbc\xf2\xe3\xb9\xd8\x37\x9a\x8c\xa9\x8f\x6e\xef\x5b\x50\xd9\x4c\x96\x9e\x39\xd2\x1d\x17\x7f\x86\x0d\x8c\x96\x4f\x9a\x15\xc1\x97\x8b\x12\xab\x77\x99\x9b\xe1\xc0\xc3\x24\x35\x51\xb2\xcc\x13\x1b\xf3\x24\xd9\xc7\xe2\xd6\xfd\x06\x5e\xb3\x6f\x76\x04\x72\x0c\xfc\xca\x99\x3a\x48\xe1\x8a\x28\x16\xe7\xc9\x7e\xc4\x34\x29\x67\x7f\x2f\x99\x2a\xac\x91\x10\xd1\xf3\xd2\x32\xda\xe2\x64\xa8\x11\xe2\xd9\xfb\xb7\xfa\xc5\x13\x91\x40\x89\xa4\x81\x0b\xde\xd9\x84\x96\x86\xe5\x84\xaf\xd5\xaf\x2c\xae\xfb\xae\xcc\x0a\xfe\x67\x2e\x18\x95\x55\x35\x71\x92\xf2\x35\x57\xaf\x8d\xae\xf7\x6d\xca\x8b\xd6\x33\xa1\xcb\xf1\xdf\xc7\x59\xc9\xbe\x63\xc5\x5e\xa6\xdd\x51\xc9\xaa\x8a\xd7\xc1\x7d\xac\xc9\xb4\x1e\x44\x60\xb5\xa0\x5c\x7d\xcf\x3e\x03\x03\x3f\x59\x8c\xc6\x42\xf1\xe0\x63\x6e\x06\x3b\xae\xec\xeb\xc0\x51\x20\x77\xbb\xa0\x6f\xe6\xe0\x0c\xba\x8e\x83\x5b\x6b\xd1\xc6\x64\xec\xa2\xa2\x9c\xc5\xe9\x0f\x22\x7b\x0c\x9a\xc7\xe2\x99\x1e\xa7\xd2\xff\x70\xfd\x8f\xc1\x7f\x2b\x66\x2e\x24\x27\x4b\x9d\xba\x04\x04\x23\x3b\xfe\xd3\xee\x12\x5c\xf4\x2e\xc1\x65\x73\xf3\xcd\xda\x05\x68\xb9\x3e\x47\xb0\x02\x22\x3a\x77\xa6\xd2\xbb\xfb\x1e\x54\x74\x9c\xc5\xb0\x52\xb7\x9b\x4f\xec\x11\xbc\x6e\xda\xae\x86\x35\xfa\x3d\xb4\x75\x0c\x1f\xdb\x2f\xef\xb9\xc9\x6b\x44\xe0\x45\x8a\xd1\x6d\x88\xa1\xcb\x47\x5b\xd4\x5e\x9f\x09\xdc\x6b\xf2\xc3\x37\x7f\x1c\x69\x70\xa4\x5e\x6f\x24\xde\x4d\x32\x94\xeb\xd8\x7a\x79\x91\x63\x51\x1f\xec\x9d\xd3\x09\xc0\xb2\x15\xae\x59\x7e\x67\xc7\x6a\xe4\x15\x81\x47\x26\xd3\xbf\xa6\xe6\xed\xba\x99\x23\xef\x04\x76\x81\x6b\xb0\xd3\x39\xe4\x4c\x79\xc4\xc0\x3c\xfa\xcf\x3c\x50\x5b\x12\x6b\xcb\x35\x1c\xde\x13\x73\x02\x13\xb6\xc1\x4a\x5b\x50\xe5\x3b\x34\xb1\xbc\xb7\x18\x05\x51\xd5\x03\x51\xd1\x35\xce\x18\x85\x4e\xd5\x59\x7c\xd1\xb7\xcc\x18\x00\x66\xbf\x7c\xd3\xf8\x18\x4c\xf6\x0b\x7b\xed\xf6\xc1\x51\x41\xe4\x51\x40\x13\x63\x4f\x5d\x2b\xcd\xa7\x4d\x96\x64\x68\x13\xd9\x63\x6f\x7a\xfb\x55\x78\x8c\x4e\xef\x3e\xc0\xf2\x22\xce\xea\x5f\x93\x77\xda\x5e\x84\xb8\x49\x50\x1f\xa2\x86\x6a\xc5\x2e\xa3\x94\xc4\x22\x61\xd9\x1f\xb3\x32\x5f\x23\xff\x6a\xbc\x4d\x6f\x47\x3b\xd4\x03\x99\x91\x43\x50\x7d\x0f\x5e\x5b\x8d\x0c\x50\x2d\x7f\x46\xcd\xcd\x19\x17\xbc\x78\x0f\x04\xce\x3f\x97\x70\xe7\x5a\x66\x9d\x67\xfd\x2d\x9e\x76\x9f\x18\x43\x49\x7b\x1f\x0c\xa4\xac\x51\x92\x40\x46\xe0\xa2\xc6\x9e\x70\xc2\xf6\x61\x99\xf4\xb1\xbe\xb9\x6e\x74\x77\xa2\x5d\x94\xde\xa9\x78\x6c\xec\x61\x7b\x21\x2d\xc6\x91\x4e\xbb\x9c\xed\x31\x7d\xd2\x78\xc1\x5b\xff\x1e\xc1\x9d\xd8\x60\x19\x2f\xb0\xdc\xeb\xdd\xbb\x0c\xa2\x65\xe0\x1a\x2c\xa0\x7b\x50\xe6\xbb\x82\x74\xd8\xbc\x86\x7c\xb6\x78\xac\xa1\xa7\x4b\xe2\x1e\xe7\x88\xb3\xb7\x26\x0c\x4f\xf7\xe6\xa2\x97\x6d\xee\x31\xf0\xda\x5b\x5a\x73\x25\x49\x3a\xb3\x08\xa5\x60\xc8\x58\x5f\xea\x63\x1d\x74\x02\x43\x7b\xec\xb7\x9b\x5a\xaf\x17\xec\x39\x15\x40\x7c\x73\xcd\x2b\xb6\x97\xf9\x5d\x7a\x6f\xac\x51\x27\x4b\xe7\xdb\x3a\xb8\x2c\x61\x56\xeb\x2d\x6a\x30\x4e\x1b\x4c\xf7\x13\x7b\x7c\x6a\xb2\x8e\xb7\x31\x07\x53\x18\xf6\xc5\x78\x4e\xc3\xb0\xfa\x77\xfd\x01\xae\x2a\x5b\x8a\xa8\xe9\xd4\x32\xc2\xaa\x6f\x1c\x9c\xf1\x7b\xf6\x13\xbb\xe5\xb2\x73\xc9\xed\x3c\xd9\xed\xfb\xa1\x8e\x2f\x56\xfd\x83\xd5\xd6\xf6\x23\x0d\x81\xad\x47\x5f\x12\x6a\xdf\xba\x78\xc9\x3a\x8a\xae\xc5\xd4\xea\xbf\x03\xc5\x4f\x5a\x41\xf7\x4c\x86\x9c\xb1\xd0\x09\xed\x59\xbf\x58\x07\x97\xaa\x1a\x8f\x03\x40\x2b\x61\x19\x08\x50\x75\x6f\x37\x95\xdb\xcd\x86\x82\x77\xb1\xb0\x8f\x1e\x5d\xa9\x5e\xd7\x0e\x35\xb6\x3b\x42\x9b\xdd\x23\x06\xdb\x41\x50\x52\x0d\x89\x16\x4a\xe0\xf1\xa0\x20\x56\x8a\xe5\xd6\x45\x12\xd2\x73\x96\xb1\xfb\x18\x82\x3e\xc6\x69\x0a\xe2\x87\x82\x57\x0c\x3b\x3b\xef\x2d\xb1\x75\xc7\x18\xc3\x96\xed\x68\x5a\xe5\xb8\x8d\x1d\x62\xf4\xd0\xf3\x38\x49\x98\xb2\xcc\x40\x0f\x63\x7e\xe6\x22\x95\x9f\xc9\xd1\x38\xd2\x96\x22\x93\x71\x3a\xa0\x66\xa3\x46\xae\x3e\x4a\xc6\x27\xed\x79\x9f\x27\x48\xcf\x37\x4e\x86\x0c\x4e\xf3\x84\x71\xff\x7c\x79\x11\xe2\x4e\x19\x39\x58\x8a\xee\x85\x0e\x33\x62\x9c\x8d\xfc\x35\x42\xfc\x02\xb7\x2d\x7e\x91\xce\x78\x4e\x93\x42\x12\x34\x16\x04\xa6\xb2\x63\x56\x1f\xf6\x79\xfb\x2b\x8c\x6f\x64\x6e\x4c\xd9\xb8\x02\x84\x64\xac\xec\xdf\x89\x9f\x41\x36\x3e\xe5\xf7\xef\x0f\x62\xb3\xd8\xae\x9a\xa0\xc9\x06\xeb\x3a\x4f\x83\xb6\x44\x55\x79\x79\xbc\xaa\x3c\xab\x14\x4e\x1a\x64\xdd\x5e\x49\xc0\x55\xc4\x0f\x65\xa1\x78\x3a\x62\x5c\x37\x3e\x58\x54\x60\xa7\x17\x71\x97\xea\xcd\x8a\x3c\x1d\xf5\xa9\x59\xc7\x66\x22\x20\x2a\x30\x1b\x2f\x5e\x0f\x5e\xcb\xb2\x1f\xe0\x9a\x1f\xb9\xf8\xdd\x0d\x25\x02\xcd\x06\x6b\xf4\xb5\x6c\x3a\x65\x30\x65\xd4\xb3\x28\xef\x68\x82\x80\x93\x20\x67\x29\x8f\x33\x79\x1b\xe0\xd6\x9f\xab\xad\x37\x3c\x87\x4c\x6f\x54\x03\x22\xa7\xe3\x49\xae\x34\x2f\xde\x46\xe3\x6f\xe6\x69\x20\x0e\xaf\x51\x6f\xfe\x26\xdd\x22\x1f\xf8\xdd\x7b\x3c\x44\x19\xa7\x1b\xff\x80\x38\xfd\x0c\x23\xdc\x08\x26\xb8\xc6\xd1\xe8\x43\x13\xbd\x6e\xd6\x88\xbf\xbc\x77\x88\xb0\x6e\xa1\xb6\x03\xb2\x04\xbe\x68\x11\xc6\x7f\x8b\x1f\xd0\xb1\xcc\xb3\x88\x13\x4d\x77\x22\x06\x7f\xf4\x66\x45\xc1\xdf\x94\x14\x01\x51\x25\x60\xa2\x0e\x20\x99\x2b\x5f\x96\xe7\xb2\xf3\x28\x82\x40\x9b\xad\x79\x4d\x2d\xf2\xc7\x33\x32\x5e\x38\xea\x1e\x7b\xfe\xcc\x1d\x76\x1f\xff\x34\xdf\x4f\x5d\x90\xda\x8e\x81\x6a\xd0\x1e\xdd\x18\x39\x8a\x3d\x01\x0c\xde\x4b\x34\x51\xf2\xe0\xc4\x99\xa8\x69\xfa\xe7\x1d\x2b\x62\xfb\x13\x1e\x39\xfa\x4f\xf6\xb8\x42\x13\x56\x55\x6c\x3a\x9d\xf0\xe9\x74\xa2\x70\xd7\x09\x6a\x20\x52\x98\xe1\x23\xeb\x2f\x88\x7b\x97\xdf\xee\xf6\xd3\xaa\x98\xc6\xa2\x3a\x9e\x15\x36\xaa\x74\xb1\xb6\x11\xe9\xbb\x14\x71\x8c\x52\xda\x13\xf2\x87\x4e\x5f\x8d\x4e\x6d\xdd\xa1\xa4\xd1\x80\x50\xeb\xa1\x04\x84\xe1\x89\x17\x6e\xcd\x4e\xa3\xc0\x91\xe1\x70\x9a\x4d\x1d\x22\x1d\xab\x06\x9b\xcd\x9e\xd5\x0f\x69\x62\x66\x7c\xa1\x3d\x86\xfd\x3d\x34\xdb\x38\xed\x19\x18\x42\x47\x3d\xcd\xa8\xa8\x9b\xcb\x68\xa3\xa0\x43\x36\x48\x96\x55\xd7\x0d\xa0\x62\x06\xef\x3a\x84\xbe\xa2\xae\xe1\xc7\xc3\x43\x2e\x1f\x3c\x48\x2a\xf0\x91\x39\xe0\xf1\x2b\x38\x92\xd3\x76\xea\xa4\x33\x3b\xd3\xff\x9f\xb9\xbf\xff\x6e\xdb\xc6\x12\xc6\xf1\xdf\x9f\xbf\xc2\xc2\xee\xa3\x10\x15\x24\x4b\x69\x3b\x9d\x52\x85\xb5\x69\xd2\xee\x64\xb6\x69\xb3\x4d\x66\x3b\xad\xaa\xfa\x30\x12\x6c\x61\x42\x93\x5a\x92\x8a\xe3\x9a\xfa\xdf\xbf\x07\x17\xef\x20\x28\x2b\xe9\xcc\xf3\xfd\x9c\x33\xd3\x58\xc4\x3b\x70\x71\x71\xdf\xef\x78\xec\xfd\xd4\xf2\x08\x57\x61\xde\xbf\x74\xb9\x22\xb1\x8a\xc8\x32\xc4\x96\x0a\xf8\x52\xe7\x5b\x94\xd5\x4d\x96\xf3\xdf\xc5\x0c\x3a\x22\x6c\xdd\x5a\x59\x0f\xdf\x2b\x4b\xcf\xb4\x39\x60\x32\xf0\x81\x4e\x3d\x78\x60\x1c\xd5\x38\x11\xf3\xc2\x43\xd0\x41\x44\xeb\xfd\xf5\x35\x08\x92\x3b\x83\x96\x3b\x56\x20\x13\xde\xce\x3c\x27\x11\x5d\x7e\xf7\x80\xa7\x9e\xd1\x41\xd3\x63\x03\xb0\xf5\xa2\xbf\x18\xd7\x27\xeb\x4c\x19\xa5\x3f\xe2\x42\x23\xaf\x8a\x1b\xa8\xaa\xc3\x3c\x45\xc4\x9c\x66\xcd\x30\x49\x24\x2f\xb3\xe2\xcf\x23\x97\x40\x11\xc9\x83\x00\x1b\x69\x60\xb2\xbd\x41\x07\x81\x3d\x90\x8b\x4b\x80\x72\x33\x27\x1f\x4b\x87\x64\x95\xe1\xcc\x24\x44\x50\x7f\xc3\xa8\x0b\x96\x36\x93\x9b\x6c\x97\x30\x12\x89\xfc\x13\x3e\x44\x6c\x71\x0f\x3d\xa4\x8c\x40\xeb\x94\x1d\xbc\x94\xf1\x8c\xe8\x72\x39\x92\x78\xf4\x25\x87\xa5\xaa\xcb\x5f\xe2\x33\x94\xab\x74\x43\x0a\x86\x4e\x21\x94\x26\xec\x66\xd7\xdc\x39\xbe\xe4\xc5\x46\x2a\x63\x04\x09\xd4\x7b\x40\xd0\x83\x75\x99\x0b\x42\x68\x54\xac\xe6\xbf\x83\x7e\x05\xca\x8c\xd9\x4e\xd7\x48\x49\x4d\xa2\xcf\x4a\x29\xb0\xcd\x34\xfa\x0b\x97\xea\x54\xd1\x4b\x7c\x4a\xde\x7a\xed\x59\xb9\x07\x8a\x91\x71\xe8\xa0\x70\x9a\x9a\x70\x4f\xd8\x46\x77\xc7\xe6\x8d\x93\x1f\xc6\x46\xe4\x6a\x64\x62\xdc\x04\x21\xec\x96\xe3\x51\xe0\x10\xed\x96\x29\x84\xaa\xb7\x3c\xca\xbc\x2a\xca\x29\x4c\x34\x05\x61\x11\xcc\x81\x09\xd8\x85\x8c\x44\x32\xe9\x9a\xe9\x55\x7f\xef\x79\xec\x9c\x23\x07\xfd\xad\x28\x3c\xc6\x26\x4b\xdb\x63\xdb\x20\x98\xb0\xee\x36\x41\x5f\xe5\xdc\x0a\xc5\x92\x90\xab\xe7\x12\x58\xb1\xc3\xe2\x41\xc7\x1d\x43\x08\x7f\xa6\x47\x90\xce\xc2\x56\xf0\xf4\xd1\xc3\xe1\xf9\x6f\x1a\x3b\x68\xab\x1e\xec\x0a\x89\x5d\x8b\x01\x51\x59\x40\x93\xa9\xb8\xf8\x40\xf1\xb7\x8b\xd9\x7c\x99\xa9\x28\x59\x36\x2b\x2f\x30\x74\x87\x62\x71\x55\xc6\xb7\x01\xa7\xd3\xbf\x13\x07\x22\x67\xd3\x57\xd7\xd1\x3a\x89\xed\xce\xef\x7c\x85\x4f\x56\x5d\xc3\x4d\xa9\x95\xcb\x22\xb0\x30\xc1\x21\x7c\xa4\x9c\x5d\x3d\x68\xc0\x83\x02\x6f\x19\x0b\xb8\x4b\xba\xba\x33\x0f\xc1\x83\xc7\xb6\x76\xbf\x51\x36\x5b\x52\x89\xc4\xa8\xd6\x44\xad\xfd\xf6\x46\xdb\x8b\x78\xb1\x65\x15\x07\x15\x9e\x36\x85\x8e\x68\xea\xac\x21\x53\x6a\x8c\x39\x99\x54\xc6\x9a\x44\x25\x01\x9b\x41\xee\x65\xaa\x99\x1f\xd9\x35\x7b\x1f\x15\x56\x7f\x98\xca\xfa\x40\x24\xdf\x12\xc5\x00\x4a\x99\xdd\xe5\x75\x9c\x39\x24\x1c\xfb\x7a\xee\xc9\x75\xc5\xbc\x47\xa8\xe9\x6a\xaa\xd5\x93\xd2\xe8\x47\xa4\x79\x58\x09\x1d\xd9\x09\xa3\x6c\xbe\x61\x75\x9d\x5d\xb3\x3a\xbd\x2f\xca\x1f\x59\xbd\xcf\x9b\x3a\x45\xdf\x97\x67\x12\xc6\xcf\x2a\xf9\x69\x82\x88\xfa\x2b\xba\x6f\xa3\xa4\xb9\x98\x2d\x90\xae\x7d\x96\x55\x0c\xa5\xfa\xe7\x19\xaf\x11\x1e\xa1\xb3\xec\x5d\xc6\x73\x48\x2f\x78\xb6\xaf\xd9\xd9\x7e\x77\x96\x15\x9b\x33\x88\xf6\x90\x55\x55\x79\x7b\xf6\x96\xdd\xd5\x67\x4d\x79\x56\x64\xef\xf8\x75\xd6\xb0\x09\x3a\x1c\xe2\x54\x9f\x7e\x19\xe7\x8e\x24\xe4\x09\x5c\x13\x7b\x33\x48\x94\xa2\xd3\x6c\xbd\x43\x67\xb5\x6d\xc2\xa9\x63\x31\xb7\xf0\x79\x02\xb5\x3f\x13\xb5\x36\x93\xea\x08\xa7\xf1\x7a\x66\x1b\x3b\x92\x9d\x87\x25\xa7\xfc\x98\xe4\xd4\x44\x52\x71\x4f\x12\x2e\xd5\x35\x3d\xb7\x89\x57\x92\x65\x36\xfe\x7d\x85\xef\x1f\x93\x3f\x1d\xce\xaf\xe7\x1e\x58\xa8\x50\xaa\xd7\x55\xb9\xdf\x9d\x64\x9b\x20\x05\x83\x06\x58\x4c\x36\xd8\x14\x6d\xcb\x8a\xff\x5e\x16\x4d\x96\x23\xa2\x37\x57\x19\x09\x14\xf9\xdd\xff\x70\x95\xf0\x65\xaa\x42\xa1\xdc\xcb\xdc\x9a\xa9\x54\xcf\x2f\x05\x25\x45\xe5\xa7\x15\x39\x73\xbe\xd5\xfb\x37\x37\xbc\xf1\xbf\x41\xfc\xe0\x15\x39\x93\xf5\xc9\x59\x86\x88\xbb\x90\xef\x80\xd6\x02\x49\x88\xfb\x59\xc9\xb7\xc9\x7a\xcb\xd6\x6f\xdf\x94\xef\xab\x6c\xc3\x4b\x6f\xfc\x47\xba\xe8\x91\x3f\xde\x23\xa8\xfa\x68\x85\x94\x2d\x83\x74\x51\xd2\xe2\xd9\x7a\x07\xa1\x3b\xe5\x80\xea\x87\xd2\xe3\x1f\xfa\x63\xb1\x5c\xb2\x62\x2b\x60\x0e\x44\x49\xea\xef\x5e\x29\xa5\x1f\xbf\xb6\x2c\xf3\x37\x99\xf1\x2a\x71\x63\x57\x47\xa4\x95\x8a\x61\xc8\xf2\xfc\xa9\x80\x36\xf9\x84\x24\x48\xd5\x34\x7c\xa4\x28\x93\xa2\xae\x3a\x4c\x8d\xe8\xed\xa1\x20\x2b\x42\xf3\x84\xbe\x8c\x14\x9e\x2d\xce\xa4\x73\x42\x81\x9e\xa8\xc7\x86\xa7\xdb\xce\x8d\x3a\xd0\x3d\x5f\xed\xae\x57\x23\x3c\xd1\x7f\x26\x78\xb2\x2f\x6e\xab\x6c\x27\xa5\x91\x05\x6f\xd4\x52\xe3\xa2\x3b\xc2\x29\x64\xd9\x04\x62\xad\x3b\x23\x8b\x8c\x6b\x52\xc8\x76\x25\xc9\xe8\xbd\x0e\x12\x76\x56\xc8\x10\x56\xde\xa4\x55\xf4\xdb\x92\x32\x7f\xc1\x90\x03\xf8\xa1\x88\x05\xbe\xf9\xd1\xf1\x35\x6b\x41\x1f\x73\x57\x2f\xd6\x0e\xb6\x77\xe0\x5a\x7a\x06\xd1\x9a\xe8\xa3\xe3\x7d\x3d\xba\xf8\xea\x5c\x39\xa2\x1e\xc4\xa3\xef\xba\x16\x1a\xa1\xfc\x31\x1f\xcf\x30\x0c\x39\xa7\x80\x6f\xd6\x59\x93\x94\x13\x81\x80\x3c\x93\xbb\xc9\x55\xb1\xac\x57\xc3\x61\x92\x51\xb6\x44\x97\x68\x54\x8f\x90\x94\x75\xd7\x68\xb5\xe8\x7e\x4a\x74\x2e\x7e\x9c\xde\x9b\xdc\x56\x87\x03\xe9\xec\x6f\x74\x77\xdd\xac\xe9\x62\x5c\x4f\x7f\x5b\x51\x8d\x23\x1d\x1e\x2e\xc3\x73\x7e\x95\x20\x89\x72\x20\x9a\x70\xdb\x0e\x0a\x4d\x74\xb8\x77\xdf\xfa\x19\xdf\x97\x6d\x9b\xa8\x01\x70\x30\x8a\xcc\xb0\x59\x4d\xd4\xdc\x29\x03\x86\xab\xcc\x95\xf8\x83\xd5\xff\x23\x5e\xf3\xda\xd6\x20\x25\xc6\x04\xba\xaa\xa4\x7d\xdf\x56\xcd\x5c\x4e\x15\xf2\xd8\x02\xd1\xbf\x05\x9f\xa5\xe8\xc5\x25\xe5\xa2\x4c\xc3\xf5\x02\x73\xb7\xaf\xb7\xd0\x50\x3c\x2a\xf6\x58\x94\xe0\x2a\x82\x24\x64\xa8\x24\xf0\x61\x4d\x78\x37\x1c\x65\xa7\x7e\x77\x42\x52\x63\x27\x10\xa4\x8f\x9b\xba\x56\x90\x1e\x72\x7a\x38\x20\xf4\xe6\x08\xe2\x9a\xd7\xc3\x61\xbd\x64\x2b\xf9\x5f\x15\xe2\x63\xbf\xdb\x64\x0d\x7b\x0a\xaf\x25\x4c\x3f\x1a\x4f\xc7\xcf\x90\x76\x16\x26\x36\x73\x3e\x80\x85\x9d\xfd\x29\xe3\x78\x05\xf9\xd2\xb4\xbd\xc4\x9b\x3d\xcf\x37\xaf\xb8\x78\xbb\x15\x68\x27\x8c\xe8\x0c\x8c\xfa\xe8\x25\x89\x17\xf1\x48\x6d\xe4\x4d\xe4\xdd\xfd\x57\xc9\x91\x20\x6b\x71\x67\x88\xf8\xfa\xde\xb1\xaa\xe1\xeb\x0c\x50\x55\x40\x2a\xa9\x47\x9e\xd4\xd4\xbd\x6b\x26\x71\xa1\x9e\xe7\x92\xad\xe8\xbd\xbc\x96\x29\x42\x04\x2c\x6b\xdd\x14\x70\x68\x94\x70\x2f\x2f\x3c\x26\x79\x16\xab\xa2\xcc\x13\x55\x0c\x34\x84\x81\x84\x08\x73\xce\x1d\x96\xcd\x8a\xd4\x07\x72\xa9\xee\x5d\x77\x71\x9e\xa0\x3b\xb6\xd5\xd2\x14\xc3\xdc\x5b\xab\x6b\xd2\x0b\x72\x8a\xc7\xfb\x1d\x5a\x51\x84\x48\xbc\x14\xe4\x6a\xb2\x1c\xf6\x5c\xa0\x89\xd8\x8c\x3c\xa6\xbd\x77\x4a\x0a\xcd\x48\x71\x99\x43\xae\x7c\x7c\x8f\x5e\x37\x5a\xd5\x0f\x22\x69\x4d\xd1\xf4\xef\xdf\x09\xa0\xa1\xb6\xee\x1e\xa4\x27\x29\x5b\xc8\x90\xe4\xe9\x60\x66\x13\x0f\x2a\xc0\x80\x04\x84\x76\x54\xb5\xd4\x31\x88\x45\x05\xd4\xc4\x8b\x41\xe8\xb3\x11\x15\x0e\x0a\xae\x8e\xf7\xe3\x41\x14\xd3\x40\xd7\xe4\x08\x3f\x34\x40\xbc\xa5\x04\xd7\x83\x84\xd7\xa3\x43\xb3\x05\xf2\xd3\x29\x56\x0f\xae\x29\x1c\x32\x04\xff\x83\x84\xff\x53\x57\x6c\x12\x38\x9e\x34\x24\x5c\x25\x71\x97\x0e\x52\x84\xd6\x79\x82\xa2\xdc\xac\xa5\x76\x74\x94\x72\xe2\xda\x9a\x4a\xf3\x50\x6e\xe0\x44\xdf\x98\x62\xd5\xb6\x08\xcd\x4b\xaa\xec\x4a\x4a\xc3\x60\x5f\x13\x24\x9e\x22\x51\x85\x26\xe5\x08\x9d\xa1\x11\x5b\x16\x2b\x6c\x39\xf0\x5f\xeb\x91\x60\xb5\xcf\x80\x1e\xa9\x1f\x4e\xed\x65\x60\xd3\xd3\x82\x87\x2a\x06\xef\x91\x90\x39\xad\xbb\xd0\x1d\x4b\xce\xe5\xe9\xc0\xb5\xd8\x3f\xa4\xb3\xd9\x42\xd7\x43\x29\x62\x85\x94\x6b\x04\xc2\x23\x2b\x80\x35\x72\xa3\x07\x52\x98\xcc\x23\x5a\x22\x77\x1d\x67\xa7\xaf\xcb\x65\xdb\x7a\x2f\xb7\xde\x3b\xeb\xbf\x1e\x18\x65\x80\x4a\xf2\x8a\xbf\x47\xae\xa1\x9d\x7a\xb1\x21\x77\x40\x97\x1e\xf0\x46\x72\x38\x44\xa5\x1d\x37\xd1\x59\xac\x28\xca\x8d\x4a\x6a\x92\xaa\xeb\xe0\x56\xe0\x2d\xb3\x72\x05\xab\xb5\xa6\xf4\x18\x90\x5f\xc7\xc9\x02\x7e\x95\x14\xc3\x21\x07\x2a\xb3\x50\xc4\xdf\xf7\xd9\x0d\x73\x08\x4e\x03\xd4\xc7\x2a\x25\x33\x48\xdd\xab\xe4\x06\x48\xac\x0b\xa5\x35\x9e\x97\x86\xce\xe3\x3d\x74\x9e\xa9\x41\xc0\xf0\x56\x9b\x37\xb8\xe3\xac\x92\x12\x1f\x58\x0e\xf9\xb5\xba\x44\x4b\x22\xd7\x29\xde\x7c\x63\x09\x19\x72\x7d\x0a\xae\x10\xee\x0a\x88\xbc\xf7\x01\x91\xa5\x4a\xbe\xab\x52\xfc\xbf\xe0\xef\x79\x71\x2c\xe5\xac\xcf\xf1\x4b\x6d\x87\xa4\x4d\xd6\x65\x21\xb8\x7e\x2f\xff\x6c\xec\x31\x8a\xa6\x94\xf5\x2b\x42\x64\x8e\x2e\xee\x72\x72\x6e\x76\xde\xb0\xd0\x7a\x41\x5b\x88\xa9\xab\x8c\xdb\xd6\xc1\x64\x0a\x41\x64\x9b\xd7\x77\x3b\x47\x0d\xae\x19\x0a\x99\x36\xdb\x58\xe8\x88\x5f\xb4\x49\xf8\x52\x47\x4e\x18\xcf\x56\x6e\x99\x13\x9d\x1a\x4c\x01\x12\xf4\x7d\x79\x06\x25\x67\x57\xe5\xbe\xd8\x9c\x5d\x95\xd5\x99\xb7\xc0\x33\x4d\xca\xab\xdb\xa1\xac\xf9\x80\x81\x14\x94\x85\xd3\xb7\xc3\xdc\x99\xbc\x35\xd6\x24\xa6\xcb\xf4\x04\xbd\x8d\xe8\xa7\xfa\xb6\x3b\xd6\x27\x40\x43\x2b\x57\x16\x25\xcc\x02\x4f\xa6\xd7\x2f\xbe\x3b\xc4\xe6\x34\x1c\x26\x85\xde\x87\x4e\xa1\xb9\xf6\x8e\xd7\x86\x86\x12\xa2\xb2\xb2\x42\x07\xfa\x23\x65\x98\x14\xbd\x39\x67\x9b\x4e\x67\xb0\x75\x6c\xa3\x90\xe1\x1b\x5e\x6c\xbe\xd5\xe0\xaa\xb3\x7e\x48\xdf\xea\x0e\x5a\xd3\xba\xdc\x24\xfa\xbd\x77\xd6\x4e\x8e\x1b\x09\x67\x09\x72\x62\xaf\xc4\xba\x8a\xc6\xc0\x0d\x6e\xda\x49\xb6\x6d\x81\x79\x9c\xd8\xdf\x5e\xaa\xce\x21\x20\x2d\x63\x2e\xe8\x1e\x39\xa0\x3e\xf7\xe6\x6e\xc7\x3a\x88\xfd\x68\xf7\x1e\xe9\xe8\x2f\x38\x77\x04\x3a\xde\x37\x93\xb0\xd3\x05\x0d\x25\xc4\x97\x28\x0c\xbe\x18\x78\x0b\xc0\xab\xdb\x61\x14\xd2\x02\x89\x1a\xb1\xd9\x2e\x4f\x5b\x99\x02\xa5\x68\xb6\x07\xa9\x34\x59\x47\x5e\x41\x53\x12\x7a\xf0\x43\xde\x13\xe4\xe6\x55\xb9\x57\x4a\x6f\xe4\xc6\xe5\x61\x75\x27\x7e\xab\x96\xd7\xc5\xa6\x1d\x0c\x02\x2d\xc5\x01\xbf\xe3\xf5\x3e\xcb\xc7\x26\x19\xa1\x6f\x79\xdf\x9b\xc9\xf6\x83\x3a\x55\xca\x48\x89\x19\x8f\x07\x37\xed\xf7\xce\x9a\x1b\xb8\xeb\x34\x10\x1f\x89\xf5\xd4\x62\xc3\xe1\x39\x9c\x4c\xab\xcf\xc9\x4d\x9a\x0e\x76\xcd\x0e\x5a\x7d\x9a\x15\x8f\x9a\x33\x89\x36\x02\x84\x5a\x16\x67\x1a\x7b\xeb\x39\x51\x34\x62\x23\x04\xaa\x06\x63\xdb\x2b\xa6\xa4\x68\x24\xe8\xfc\x88\x48\x56\x41\xed\xf3\x75\xe0\x73\xe5\x60\xa4\x07\x15\x7f\x52\xc9\x0f\xcf\xd6\x8f\x62\x9a\xff\x29\x48\x91\xde\x7c\x75\xee\xbe\x66\x37\x8c\xd4\xca\xa5\x6d\x29\x7e\xd1\x47\x68\x04\x4f\xb5\xd4\x22\xbd\x02\x8a\xbf\xac\x12\x8e\x47\xe8\xd1\x0a\xe9\xa7\x8d\x1b\xb3\x3c\xf1\xa4\x1b\xbd\x46\x62\x3e\x89\xde\xd5\x40\xd6\x6d\xb2\xc6\x29\x18\x6f\x1f\x4d\x3d\xa1\x9f\x0d\xd1\x4b\x62\xfc\xe1\x65\xf4\x75\xff\x61\xc2\xa2\xbb\xe5\xca\x89\x94\xaf\x68\x82\x07\xe1\xc9\x47\xf5\x9d\x44\xb0\x1f\x7e\xad\x8d\x51\x84\x1b\xc7\x6b\x38\x44\xba\x7d\x14\x4b\x76\xc6\xf5\xef\xbe\x8c\xf9\x2e\x3a\xb0\xd2\x4f\x33\x03\x86\x4f\x6b\xff\x26\xcf\x8a\xb7\x88\x0c\xd8\x51\x7c\xed\x01\xce\x43\x21\x6f\x7d\xd2\xce\x95\xfc\xc9\xb0\x10\x7e\xe6\x81\x8f\xc1\x91\x7d\x96\xd2\xea\xc2\x14\x3d\x6f\xb3\x83\x59\xed\x7e\x04\x76\xd0\xe2\xd3\xab\x5d\xb6\xb6\x51\x79\x4f\x48\xea\x2c\x9f\x28\x95\x31\xd9\x5a\x64\x3d\xc0\xbb\xf5\x80\x55\x6f\xf0\x34\x86\x43\x27\x19\x87\x94\x79\x88\xc7\x73\x8c\x02\x2d\x42\x89\x58\xfa\x98\x20\x8e\x06\x40\xb2\xf5\xdb\x6b\xc8\x6a\x71\x86\xe6\x1d\x10\x5e\xd8\x8d\xd4\x4e\xfc\xe2\xef\x6e\xbe\x77\xb3\xaf\xb6\xe8\xcc\xc8\xfb\xa3\x44\x87\x69\xd1\x43\x98\x8f\x6b\x51\x28\x5e\xbd\xf8\x2d\x5a\x24\x7c\x44\xd9\xe2\xa1\x9b\x92\x86\x57\xa1\xe7\xf9\xb2\x77\xc7\xe9\x53\x36\x49\xfd\x31\x10\xc6\x29\x1f\xd1\x78\xbf\x91\xc7\xbc\x87\xef\x20\x1c\x13\x16\x33\x54\xfc\x40\x54\xe0\x1c\x40\x98\x37\x5f\xda\xd3\x4c\xb2\x2b\x81\x6d\xfd\x4d\x37\x00\xa3\x09\xaa\x0f\xbe\x37\xc4\x75\xf4\x12\xc5\x56\xf4\x2d\x15\xa6\x71\x82\xfb\x24\x76\x63\xee\x4d\x89\x3a\x79\x5b\xc5\x37\x08\xe7\x1e\x4c\x2b\x56\x0f\x0a\x54\xe5\xd0\x1d\x02\x66\xa1\x0d\x91\x3a\x44\x61\xbf\xc8\xa4\x97\x6d\x38\xc2\x9d\xcc\xbb\x0f\x7d\x2c\xaa\xe2\xc7\x3e\x3d\x0d\x56\xec\x0f\xed\x25\xa1\x7d\xd2\x98\xb0\xb0\xae\x63\x8e\xea\x73\x24\x75\x62\x39\x71\x76\xc0\x87\xc3\x4a\x99\x08\x78\xb3\xf3\x39\x7f\x25\x6b\x3e\x45\xfb\x2f\xab\xba\x06\x00\x1e\x5b\xaf\x7a\xea\x70\xe8\x81\x3d\x00\x88\x04\xcc\x5f\x2f\x75\xac\x02\xf4\x86\x5d\xf3\xa2\xe0\xc5\x35\x72\x05\x08\xf5\xb6\xbc\x95\x00\x3a\x98\x9e\xc0\xea\x37\xfa\x60\x7b\x39\x7c\x5e\x3f\x17\xe4\x93\xcf\xdb\xf3\x3a\x41\xc6\xf7\xfe\x21\xbe\xb5\x81\xbc\x38\x96\x5f\x8c\xf2\xeb\xee\x58\x5e\x24\xb2\xc9\xbb\x2c\x0f\x62\x70\x4d\xb6\xcd\x4d\x9e\xf4\xb0\xd8\xec\x18\x8b\x1d\xe5\x97\x5d\xdb\xe5\x89\xd9\xbf\xe1\x20\x42\xf1\x04\x3e\x1c\xba\x2e\x24\x1a\xf9\x67\xf2\xce\x6d\x3b\x98\xe9\x5c\xa9\x59\xfd\x9a\x37\x39\xa3\x41\xb4\x66\x95\x9b\x4c\x14\xfd\x31\xf6\xd2\x3a\x8a\xf6\x6c\x7e\x04\x81\x44\x8e\x23\x52\x2b\xca\xcf\xeb\xfb\x83\x5c\x66\xfb\x63\x25\x05\x0e\x0f\x1b\x82\x67\x66\x82\xd5\x03\x47\xf9\x96\xdd\xb9\x4c\xc3\xb1\xcc\xf6\x10\xa2\x5e\xe6\x72\x8a\xfa\x09\xbb\xd8\x31\xe7\xeb\xb7\x8b\xe8\xd7\x10\x66\x1d\xeb\x6e\x0e\xaf\xac\xe4\x12\x1f\xb2\x65\x11\x4b\xd1\xea\xad\x20\x31\x89\x67\xe6\xa2\xeb\xc4\xe8\xf4\xa4\x83\xa1\x91\x7c\xa3\x3b\x75\xf5\xbe\xca\xaa\xaf\xcb\x32\x6f\xf8\x4e\x12\x91\xde\xa7\xce\x74\x01\x0e\xe9\xa9\x00\x6a\x2e\x8e\x5a\x11\x54\x8a\xae\x4e\x36\x8f\x80\x37\xee\x23\x05\xad\xd2\x05\xb9\xf8\x52\xd0\xb7\x8c\x14\xb4\x5e\x74\x16\x6d\x50\x2a\x87\x80\x28\xe5\x0e\xa2\x9f\xb4\xad\x56\x2c\x41\x2c\x14\xf3\xec\x2e\xea\x98\x6e\x24\xa0\x6a\xba\x1b\x9b\x1e\x23\x2f\xfb\xe8\x2a\xa5\x86\xf2\x03\x94\x3f\xb4\x99\xb1\xeb\x26\x49\xac\x52\x06\x2e\x21\xf5\x43\xb2\x19\xab\x21\x6f\x9a\x6c\xbd\x05\x90\x29\x30\x29\x17\x51\x31\x91\x4f\xcc\x29\xcb\x16\x45\x3b\x96\x02\xd4\x3b\xc4\x4c\x1f\xaf\x92\x06\xd4\x8d\x4b\x94\xff\x11\xf2\xdb\xdd\x04\x43\x77\x9f\x44\x9a\xde\xf2\xf8\x62\x9c\x9d\x81\x61\x92\x02\x1f\xe3\xea\x1e\xb2\xfd\x72\x04\x66\xc7\xa8\xd3\xde\x9d\xf3\x9f\x8a\xe0\x26\x79\x09\x6d\xe4\x75\x3c\x90\x70\x01\x5d\x07\x13\xa0\x45\xcf\x7f\x4b\x16\x29\x2b\x36\xad\xbc\x0b\xd8\x9a\x89\xab\xcc\xbb\x28\x45\x40\x80\xa3\x55\x48\x82\x7b\x63\x74\xbb\xd7\xf8\xf2\xc8\x08\x92\x80\x45\x29\x52\x84\xbf\x3b\x86\xc7\xd7\xc6\xb4\xf0\x92\xfe\x07\xdc\x6e\x6e\xc8\x22\x7e\x71\x52\xa7\x0a\xe1\x6e\x4b\xb8\xf0\x9d\xcb\x9c\xca\x82\x39\x6b\x5b\x2e\x40\x34\x20\x04\x3c\x06\xfa\x18\xff\x2d\xb1\xb0\x54\xb7\x26\x6c\xd1\xa5\xa3\x89\x76\x9e\x3b\x95\x7d\xe9\xbf\x5a\x98\xf8\xe8\xd0\x55\xf2\x06\x43\x12\x64\xd6\xa3\x27\xd7\x25\xe7\xa3\xb8\x45\xa5\x95\x60\x7d\xcf\x88\x36\xd5\x71\x7b\xed\x25\x3b\x98\x46\x07\x1e\x99\xc1\x22\x82\x10\x17\x4d\xf5\x62\xf7\xbe\x8b\xdb\xdf\xc0\xa6\xfa\xee\x15\x86\x44\xb7\xe6\x23\x45\x20\x61\x04\x76\xe9\x53\x71\x2a\xaf\x66\x49\x72\x6d\xe8\xab\x1d\x44\x22\xa3\x05\xe4\x5b\x56\x77\xce\xd4\x66\x38\x98\x37\x1f\xc5\x4e\x35\x87\x1e\x20\xd0\x66\xd8\x5f\x67\xeb\xb7\x4f\xcb\x9b\x5d\xd6\x80\x17\x28\x68\xa9\x23\x6c\x16\x50\x66\xca\x72\xd9\x5a\xdd\x37\xec\x7d\x03\xc6\xd1\x32\x97\xe4\xae\xe2\x37\x59\x75\xa7\x03\xa8\xad\xcb\x62\xa3\x7f\x1e\xb1\x29\xee\xe0\x81\x61\x40\xf3\x8b\x51\xfa\x69\xfe\x4e\xd5\xd0\x0b\xd2\xe9\xf7\xc1\x6e\xc5\x37\x1a\x6f\x1d\x21\xe9\xda\xb6\xcb\x9c\xd4\x13\xb5\x0b\xe1\x2a\x54\xce\x05\xbd\x2b\x5d\x74\x16\xce\xc5\xeb\xad\x9b\x8e\x26\x30\xdc\xf7\x6a\x77\x3b\x8f\xa5\xb3\xd1\xc7\xd5\x1d\x36\x9a\xfc\x46\xcf\xbc\xbb\x0f\xfa\xaa\x52\x24\x5e\x07\xff\xb6\x9e\x20\xf8\x84\xb0\x73\xae\x4c\x53\xb6\x74\xd0\x1f\x71\x7d\x97\x7a\xd0\xa2\x77\x84\x4c\xe1\xd9\x68\x0d\x7f\x63\x75\xd5\xda\xbc\x00\x66\x17\xfd\xe9\x48\xf2\xcf\x94\xfa\xcb\xf4\xb1\x3a\x71\xa4\x02\x18\xa7\xcc\x6e\x9e\xc1\x54\x41\xa7\xa6\xc2\xf1\x6e\x61\x7f\x7d\x7c\xd8\x71\x18\x71\xe3\x47\x4d\xae\x0a\x75\x6b\x69\xc4\x9f\xb4\xa3\x1a\x91\x10\xeb\x45\xd4\xd4\xc6\x2b\xe8\xf9\xf7\x2f\xff\xf6\x1a\x29\x24\x04\xda\xaf\xec\x5a\x66\xa9\x8d\xd5\xa3\x9d\x7a\xae\x9e\x42\xa3\x32\xc5\x5c\xdc\xed\xc0\x77\x57\xa9\x0e\x62\x85\x0b\xe6\xf8\x8f\x39\x7e\x63\x69\xd2\x95\x13\xb9\x3a\xb6\x88\x9d\xc2\xd9\x0d\xaf\x6b\xe9\x8c\x2e\x88\x0b\xd3\x97\xe7\x36\xe3\x2b\x1f\xee\xa5\x39\xc8\x4c\x87\x40\xf0\x4a\xe3\x13\xc3\x87\x43\xe2\xec\xbe\x77\x14\x35\x6b\x68\x44\xc7\x36\x09\x3c\x5b\xdc\x75\xb8\x66\x52\x9d\x65\xe8\x1c\x33\xee\x6a\x20\x17\x28\x02\xcb\x7f\xff\xfb\x6c\x35\x1c\xda\x5f\x8f\x57\x6a\xbd\xce\x00\xee\x82\x96\x6e\x87\x44\xf6\x67\xde\x04\xb7\x9b\x15\x4e\x3f\x70\x1a\x1f\x3f\xf0\x4a\x20\x81\xf2\xcd\x3f\xd8\xba\xb1\xde\xcc\xfe\x90\xee\x2f\xe9\xff\x30\x1c\x26\xdd\x8f\x54\xfb\xf3\x74\x8b\x8c\xf9\x78\xcf\x04\xdd\xa3\xc6\xde\xf3\xe8\x79\xee\x91\x7b\xf1\xea\xee\xf8\xfa\x2d\xab\xd2\x8e\xac\xf2\x70\x90\x46\xf1\x37\x73\xd3\x48\x20\xa6\xb2\x29\x41\xb5\x7c\x7f\x93\x55\x6f\x95\xa1\x94\xb8\x42\x29\xda\x66\xf5\x33\xd3\x1f\x22\x37\xd9\xfb\x1f\xcb\xdb\x3a\xfd\x8c\x5c\x4a\xa8\xb0\x85\x7d\x5a\xdc\xcd\xee\x19\x7f\x77\x20\x35\xd3\xe2\x94\xa8\x59\x6e\xa6\xb0\x94\x92\xa5\xd6\xa4\x69\xdb\x7b\xb5\x25\x86\xa1\x88\x0d\xe6\xe7\xc6\x9f\xd7\x94\xf5\x05\x3d\x2d\x28\xda\xf0\x77\xe0\x61\xd2\xb6\x48\x30\x91\xf0\x37\x61\x13\xbe\xd1\x0c\xe7\x7e\xcf\x37\x23\x3a\x83\x6f\x14\x6d\x76\x4a\xdb\x2d\x3e\x63\x9d\x9c\xe4\xb2\x60\xb7\xcf\x0b\xc1\xaa\x08\xa2\x14\x3c\x53\x6a\xd6\x34\xbc\xb8\xae\xa9\xeb\x0a\xc1\xe5\x0a\xac\xba\xbe\xd6\x09\x6a\xca\xa2\x60\x6b\x67\xeb\x12\x46\x4a\x9c\x16\x36\x02\x51\xce\x0b\x16\x14\x1f\x88\x1e\x37\x2a\xf3\x00\x9f\x7c\xbe\xb1\x66\xa0\xc9\xf2\xb7\x27\xe3\x5f\xb2\xf1\xef\xd3\xf1\x97\x97\xbf\x8e\x57\x58\xfa\x5f\xfe\xfa\xeb\xbf\xcf\x8c\x05\xf7\x3d\xdf\xa4\xb5\x0a\x92\xc8\x88\x0e\x0d\xf0\x2c\xbb\x4b\xa7\xe6\xd7\x8b\xb2\x68\xb6\xce\xef\x9f\x59\x56\xa5\x53\xb2\xa9\xb2\x5b\x5d\x24\xfe\x56\x9f\xe5\xd4\x53\x4e\xe0\xd4\x53\xbe\x28\xb4\x3f\xb4\xf6\xa6\x51\x3b\xaa\x16\x09\x90\x36\x42\x67\x7b\x3e\xb6\x60\x7b\xf6\x80\xc7\x4c\x60\x4d\xe9\xfb\x0c\x3c\xba\xf8\xea\x5c\xba\x06\xea\x18\x41\x00\x7f\x82\x1a\x0c\xb7\x3d\xee\x81\x9e\x30\x3c\xe7\x4a\x87\x42\x41\x11\x4f\xb8\x16\xe2\xa9\xdf\xb5\x25\x9d\x61\x88\xe0\xd6\xd8\xc0\xe0\x12\x6c\xe1\xd6\x26\x35\xe1\xa2\x65\x10\xef\x30\x68\x39\x29\x8b\xc4\x24\x36\xd2\xb1\xd2\xca\xff\x62\x77\xcf\xca\xdb\xc2\x94\x42\xb4\x50\xaf\xf8\xa5\xf8\x62\xca\xf7\x3b\xaf\xf0\x6f\x3b\xc3\x03\xed\x9b\xf2\x15\xff\x9d\x41\x3a\x22\x69\xea\xc9\x08\xda\x38\x17\x9c\x43\x7c\x03\x05\xce\x1d\x8a\x5f\xfd\x76\x41\x13\x5b\x7e\x1f\xd6\xd9\x77\x33\x75\xf2\x9e\x4b\x41\xe8\x73\x13\x58\x4b\x50\x62\x58\x27\x3f\xd4\x65\xbc\xfe\xf1\xf5\x77\xc8\x1e\xc3\x70\xa8\xff\xb2\xfc\x6f\x36\x1c\x26\xce\x31\xf9\x2e\x5b\x1a\xc8\x64\xb1\x02\xb2\x47\x17\x68\x94\x8d\x90\x95\x1f\xb1\x65\x15\x91\x66\xe8\x4e\xc1\x92\xb6\xbc\xba\xb2\xe9\x98\x24\x09\xb4\x2d\x6f\xed\xfa\x1d\xd8\x10\x93\x54\x7f\xda\x59\xd6\xfe\xc2\x44\xe3\x1f\x0a\x84\x49\x62\xf3\x83\xd5\x52\xe0\xb8\x85\xbf\x65\xec\xc2\xe2\x81\x31\x8d\x64\x38\xd2\x3c\x29\xfc\x21\x65\x4d\xb5\xcf\x65\xac\xec\xf9\x4d\x76\xcd\x90\x0f\xe5\x7d\xd5\x64\x08\xe4\x85\xd8\x6f\x7e\x73\x7d\x7e\x21\x53\x19\x3b\x00\xad\xc3\x8f\xc0\x27\x9d\xb3\xaf\xae\xd6\x69\x49\xb2\xbc\x49\x0b\x02\x82\xa8\xb4\x10\x94\x4d\xa2\x35\x65\x67\xd2\x7d\x54\xfe\x10\x17\x58\x2b\xd0\x1e\xe8\x1d\x04\x03\xa5\x3f\x9b\x23\x03\x16\xb8\xff\xcc\x55\xc7\xce\x2e\xc0\x31\x48\x99\x3d\x89\x11\x4f\xf6\xd6\x4c\x2e\xed\xdf\xaf\xb6\xe5\x2d\x2f\xae\x87\x43\xbf\x42\x9e\xd5\x8d\x54\xa7\x51\x40\xd5\x0b\xbf\x78\xcb\x37\xee\xa5\xc2\xe9\xc7\x76\x3f\x50\xdd\x27\xc7\xfb\x27\x7e\xb1\x0f\x5f\x89\x54\x2e\xa7\x0f\xd7\x21\x82\x42\x85\xfb\xaf\xf0\x4a\x18\xcc\xc0\x82\x51\x43\x90\xae\x24\x28\xef\x41\x33\x91\x0f\x40\x90\x0d\x95\x16\xec\xf6\x4c\x0c\x93\x3c\x9e\x4e\xbf\x24\xb3\x19\x79\x3c\xc5\x1e\xea\x68\x24\xbe\xfa\xb6\xac\x6e\xb2\x06\xe1\x79\x36\xb9\xc9\x9a\xf5\x36\x39\x5f\x3e\x7b\xb1\x3a\xc7\x60\x17\xef\xce\xe2\xaa\xac\x12\x4e\xa7\xa4\xa6\x53\x52\xd0\xe9\x5c\x87\x57\xb8\x28\xe6\xc5\x68\x84\x9b\x65\xb1\xd2\x5f\x38\xa4\x49\x73\xbe\x90\x9a\x16\xc6\xdb\xa9\x3e\xc8\x87\x1e\x5e\xbd\x84\x79\x6b\x33\x93\x78\xf1\xe2\x1c\x2f\xd0\x8d\xa8\x22\xf0\x79\x8d\x52\xe7\xc7\xab\x6d\x59\x35\xc0\x4d\x41\x47\xb0\xcc\x9e\x7e\x9e\x3d\x13\xfd\x6c\xb2\x3b\xdd\x8b\xfe\x53\xf7\x31\x7a\x3c\x1d\x83\x7b\xe8\xb3\xec\x0e\xa4\x7c\x62\x43\x77\x7b\xad\x3e\xa9\xc5\x3e\x2b\xec\x71\x05\x5b\x05\xa3\x35\xa4\x34\x5e\x97\x07\xf0\xf1\xf5\x29\x8d\xfe\x17\xf1\x84\x27\xef\xc1\xb7\x4d\xd9\x25\x70\xf9\x24\x1f\x79\x81\x8c\x78\x09\x26\xcd\x89\xd9\x22\x45\x41\xca\xcf\xd8\x49\xb7\x20\x65\x4d\x0e\x7c\x72\xbf\xe4\x49\xde\xb0\xaa\x50\xcd\x3e\xf0\x81\x23\x6a\xc2\x90\xf7\x0e\x6d\x78\xbd\xcb\xb3\x3b\xc1\x71\x4b\xbd\x00\x88\xff\x21\x84\x60\xcf\x3e\x4a\xc8\x96\xbb\x59\x91\x2d\xc9\xc9\x9a\xec\xc9\x46\x07\x9d\x83\xa6\x82\xae\xd3\x80\xd6\x21\x46\xab\x80\x12\x25\x7e\x4b\x50\xd2\x27\x2a\x1f\x82\x42\xa5\x0d\x7b\xdf\x3c\x3a\xe3\x1b\xf1\x14\x56\x23\xf4\xe8\xac\x6e\xee\x72\x46\x1f\x99\x8c\x07\x67\xd9\x9b\xba\xcc\xf7\x0d\x9b\x9f\x35\xe5\x2e\x3d\x1b\xcf\xa6\xd3\xdd\xfb\xf9\x99\x74\x4c\x3b\x13\x7f\x3f\x3a\xb7\x4a\x16\x67\xac\xe3\x24\x0a\x69\x12\xf4\xa6\xdc\xdc\x39\xf1\x70\xc2\x0e\x70\x64\xed\x21\x65\x1d\xb6\x21\x83\x19\x26\x1b\x4b\x67\xdf\x1f\x34\xf4\x74\xaa\x02\xfb\xe6\x02\x94\x78\xc9\xb3\xc4\x36\x26\x85\x24\xcc\x39\xe5\xe2\xcd\x5e\x97\x45\xdd\x54\xfb\x75\x53\x56\x94\x52\x71\x86\x8b\xce\xbd\xd9\x10\x8e\x53\x1e\xd9\x8b\x77\x59\x6e\x41\x6d\x57\xd6\xb4\x5c\x94\x9a\xaf\x2f\xd3\x65\x39\xd9\x65\xd7\xec\xef\x44\xfe\xfb\xf3\x2a\xb5\x4a\x42\x51\xbb\x6d\x93\x2d\x35\x31\x2c\xf5\x1f\xdf\x98\x58\x95\x9c\x15\x0d\x04\x4f\x22\xf9\x43\xd5\x64\x92\x14\xb2\xee\xaf\x27\x93\xa9\x7c\xc7\xae\x9a\xb6\x35\x95\xc4\x51\x39\x25\x64\xff\x50\xfb\xd7\xe5\x2e\xde\xfc\x75\xb9\x73\xb6\x61\xb9\x3d\x7f\x2c\x40\x6a\xb4\x26\xb9\xf8\xeb\xf3\xe9\x68\xbf\x8a\x01\x13\xdc\x29\xf0\x1a\xb4\xad\x97\xd3\xd5\xe8\xf1\x74\x84\x76\xef\x11\x96\x15\xc0\x55\xcf\x96\xcf\x56\xb2\xd0\x81\x88\x49\x59\x48\xa3\x5e\x5a\x1b\xdf\xaa\x67\x30\x8e\x09\xe3\x25\x2f\x71\x40\x50\xc8\xb9\x48\x7a\x22\x4a\x6d\x45\x01\x4c\xe0\x2e\xb8\xfe\x7f\x7b\x2e\x9e\x62\xf5\x67\x62\x87\xc1\x1f\x02\x9e\x9a\xc9\x55\x4a\xc4\x28\x1a\x31\xd9\x89\xa8\xe4\x3a\x69\x14\x79\x3e\x8c\xa7\xe1\x89\xeb\x65\x91\x1b\x37\xa8\x45\xd0\xb5\xc3\xc8\xf2\x45\x52\x74\x08\xf2\x22\x42\xfd\x4e\x3a\x5a\xd6\x2e\xc3\xf3\x10\x85\x2d\x6b\x1c\xe1\x89\x54\x71\x3f\x53\xa4\x2a\x74\xb9\x22\x9c\x26\x5a\x24\xc0\x1d\x91\x00\x87\xb4\x09\x0f\x4f\x5d\x05\x93\x23\x37\x94\xd2\x62\x38\x4c\x64\x70\x4e\x2c\xad\x3b\xfc\x67\x24\x9e\x67\x4a\x9e\x65\xd9\x77\x96\xc5\x1f\x3a\x4b\xef\xb8\x1c\x33\xac\xc1\x8c\x94\xe6\xa8\xb4\xff\xa0\xd6\x1c\x75\x4c\xa4\x25\x48\xdb\xb6\x07\x3c\x11\x48\xdd\xa6\x0c\xe2\x37\xd7\xea\x96\xde\x97\xbb\x6c\xcd\x9b\xbb\x14\xcd\x26\x53\x44\xd6\xfb\xaa\x2e\xab\x14\xa1\xc3\xb1\x7d\x4e\x6a\x37\xff\x37\x9a\x44\xc4\x03\x02\x8e\x9c\x10\x40\xa1\x67\x6a\x98\x99\x9b\xe8\x14\x92\x52\x62\x31\xf1\x44\x0b\x63\xa0\xc6\xc8\x59\xb4\xec\x8e\x65\x15\xe4\x78\x2f\x77\xae\x21\xd2\x60\x66\x93\xfe\xa9\x8f\x70\x93\x6b\x2a\x63\x1f\xc6\x8a\x62\x91\xa8\x80\xf6\x5f\x08\x10\x49\x9b\x83\x22\x1b\xea\xff\xef\x82\xc9\xf4\x0f\x80\xc9\xf4\x24\x30\x99\x4e\x3e\xb7\x60\xa2\x03\xa0\xfc\x93\xa1\xc5\xb3\x89\xf9\xd7\x83\xca\xf4\x5f\x01\x2a\xd1\x1e\x97\xb1\x8f\x8a\xf4\x58\x51\x86\x55\x2a\x50\x59\x1a\x83\x30\x1d\x6e\xce\xc6\x99\x13\xac\x92\xb4\xa1\x98\xce\x8f\xf4\x7e\xc1\xe6\x6c\x34\xc2\x86\xbd\x0b\xe6\xc5\x56\x90\x41\x5e\xf5\x3a\x9d\xeb\xee\xa5\x51\x6a\x20\xc0\xc4\xf7\x4d\x75\xe7\xf1\xd4\x1d\xf8\x3e\xac\x81\x25\xe2\x02\xc8\xaa\xf2\x16\xbd\x90\x6a\x88\x33\xed\x9f\x71\x26\x1a\x81\x93\xa8\x98\xce\x99\xd3\xf4\x00\x19\x84\xc5\x40\xbd\x94\xb9\x72\x7e\x26\x25\x01\xca\xdc\xf2\x99\x40\x86\x32\xc3\xfc\x3d\x8e\x28\x6e\x86\xc3\x4e\x84\x53\xbe\xd0\x70\x5c\xcb\x1b\xe5\xca\x83\x03\x9e\x5e\xd5\xc3\x69\xbe\x40\x59\x9e\x77\xeb\xe7\x86\xb8\xd1\x51\x70\x05\x93\x98\x0b\x52\x14\x20\x23\x29\x28\x88\x98\x49\x77\x1a\x20\x06\xba\x3f\x90\x62\xc9\x57\xb4\xc6\x24\xb7\x49\x56\xf7\x15\xd0\xdb\x94\x1a\x23\xea\x8e\x70\xc0\x91\x12\x3d\xf3\xb9\x2a\x99\xe1\xce\x91\xd6\xbd\xe0\xc5\x8b\xec\x3d\xd0\xc8\x39\x41\x37\xbc\x40\x98\x6c\x7b\x8b\x33\x41\xb3\x65\x49\xee\x90\xe2\xc6\xc8\xbb\x1a\x0e\x8d\xe5\x7e\x31\xb1\x2c\xbe\xfe\x2c\xde\xd8\xc9\x0d\x87\xa3\x1c\x0e\x9d\x3e\xf4\x47\xda\xa1\xda\x73\x52\x61\xd3\xff\xf6\xa4\xfe\xe5\x64\x83\xfe\xe5\xc7\x58\xff\x5b\x2f\xca\x3f\x2f\xce\x0a\xcf\x55\x77\xd1\xcf\x54\xaa\x13\x0d\xe9\x84\x84\x61\xdf\x5e\x45\xca\x8e\xe1\x01\xc8\x3b\x52\xdc\x3c\x64\x95\x73\x52\xf6\xf1\xbd\x79\x2f\xab\x9c\xbb\xc9\x45\x54\xd8\xe1\x28\xc2\x90\xb9\x5a\x65\x2f\xe1\xbd\x52\xa5\xe0\xfe\x08\x56\x2b\x3d\x28\xc7\x8d\x34\xa3\xaf\x99\xcc\x07\xdc\x33\x3b\xa6\xf4\xf9\x3e\x24\x46\x43\xf3\x74\x7a\xe5\x56\xf9\x6d\x64\x09\xec\x63\x44\x06\x58\x22\xaf\x8f\x99\x83\xf6\x2c\x1c\x0e\x07\x5c\xc9\xbc\x1c\xfb\x19\xd1\xdb\xb7\x55\x79\xf3\x2d\x67\xf9\x46\xce\x4e\xe5\xe3\xd6\xe3\x25\xea\xba\x0b\x72\x41\x13\xbd\x7d\xc9\xff\xa9\x8f\x62\x0c\x1a\xd3\xc9\x1d\x48\x26\x9e\xf5\x8a\x96\x8a\x17\xe2\x2a\xb1\xa5\xf3\xb0\x55\x4d\x2e\xe3\x3c\x94\x36\xa7\x16\x70\x50\xc7\x05\x92\x58\xa5\x0c\x63\x41\xca\xb0\x2f\xd3\x07\x04\x91\x19\x1d\xcc\xdc\xa4\x5e\xb3\x4f\x53\x1d\x1e\x8e\x36\x09\x6a\x36\xe2\x8d\x0f\xc6\xbe\xfb\xe1\x9d\xa2\x6f\x46\x28\x2d\xca\x26\xe9\xd4\x59\xef\xab\x0a\xb2\x69\x43\x1d\x8c\x48\xa9\xd9\xb2\x02\xb4\xb5\x81\x68\x13\x5e\xf8\x67\xd9\x9d\xd9\x29\x10\xd0\x39\xfa\x2f\xe7\xf7\xcf\x2c\xab\xa0\x17\x88\x7b\x10\xee\x77\x52\x12\xa4\x39\x51\x24\xce\x32\xa9\x83\x4a\x0e\xfe\x28\x31\xe1\x4a\xc3\x5b\x4a\xe9\xdd\x42\xfd\xbb\x9c\x2a\x51\xc1\xb2\x26\x65\x57\x16\xdb\xd9\xc5\xc1\x4c\xee\xde\xe3\x2f\x1e\xa8\xe9\x6e\xf5\xa7\x9f\x06\x95\xb3\xcd\x3f\xf6\xb5\x12\x4b\xea\x8d\x60\x3a\x67\xc1\x62\x1c\x5d\x6c\xdd\xb0\xdd\xd7\xfc\x1a\x76\xa9\x46\x38\xed\xaf\xa5\xab\x10\xf4\x02\xf9\xf3\xf8\xec\x83\xe6\x31\x3a\x69\x1e\xfd\xb5\xfa\xe7\xf1\x79\x9a\x30\x9b\xa2\x81\xe9\x14\x0d\x38\x84\x17\x50\x3c\x7a\xd3\x13\x70\x1c\x6b\xea\x75\xff\xa7\x13\xbb\xbf\x2e\x9b\xf2\x75\xb9\x71\xc0\xf1\xa4\xee\xbf\x38\xb1\xfb\xd8\xee\x56\x8b\x59\x3a\x9e\x11\xf4\x0c\xf5\x0d\x15\x66\x10\x53\x49\x2d\x4e\xe9\xfc\xff\x05\x08\xfd\xf9\x0f\x2c\x7e\xfc\xc5\xb1\x85\x7b\xc3\x7c\xf9\x87\xf6\x78\x3c\x4b\xff\xf5\x7b\xfc\x2f\xbb\x1e\x9f\x4d\xff\xc0\xe2\x4f\xd9\x62\x9d\x2c\x53\x3c\x09\x32\x7e\xcf\xa7\x7f\x82\x30\x41\xea\x49\x19\x0e\xed\x2a\x8f\xea\xa6\xc4\xfb\x89\xa1\x9b\x79\x16\x77\xe7\x61\x93\xba\x29\x77\x2f\xab\x72\x97\x5d\x67\x92\x85\xc5\xfa\x81\x7d\xe9\xa7\xe2\xf4\x19\xf1\xe3\xef\xeb\x3c\xaa\x1c\x14\x9b\x5b\x10\x24\xe5\xcc\x19\x2f\x9e\x4b\xff\x39\xc8\xc1\xe3\x55\xdc\x95\x32\x9c\xc9\xd3\x6d\x56\xd5\x49\xb4\x13\x57\xf5\x85\x49\x4d\x5f\x01\xe5\x3f\xb9\xaa\xca\x1b\xd1\x4a\x6c\x53\x22\xfd\xd1\xd8\x64\xad\x3e\x2c\xcc\x0e\xa6\xf6\x23\x26\xb1\x93\x68\x5b\x74\x86\x2e\xea\xb6\x1d\xf0\xb6\x15\xe4\xca\x86\xbd\xff\xe1\x2a\xa9\xf1\xc5\x78\xe6\xb8\x62\x2b\xf9\x59\x5c\x3c\xf9\xc0\x16\xf1\xab\xa4\x56\xaa\x2a\x70\xf0\x1b\x50\x5a\x4f\xf2\xac\x6e\xfe\x27\xcb\xb1\x60\x06\x83\x5d\xd9\x65\x55\xcd\xa4\xf2\xaa\xb3\x21\xb5\xbf\x21\x44\x75\xbc\xf0\x06\x50\x32\xf7\xb0\xb1\x6c\xf4\xb4\x2c\xae\xf8\x75\x52\x63\x4c\x80\x58\x0c\xe8\x82\x80\x3e\xab\x43\xc5\x69\x48\x29\xf6\x54\x70\x60\xb3\xc6\x9a\xa1\x2d\xf0\xfd\x41\x33\xc9\x82\xc4\xf5\x60\xd8\xdb\x5a\x7e\x05\xb1\xbe\xe4\x0e\xb6\xad\x89\x00\x32\xa0\xbd\x62\x1d\x50\x83\x36\xda\x57\x93\x30\x15\x80\xf5\x7b\x71\xf2\x52\x73\xeb\xcf\x33\x26\x2a\x48\x58\xe7\x6a\x7b\x7a\x66\xd7\xb8\x43\xe9\xb5\xe6\xbd\xe7\x1f\x6e\x8c\xe2\x43\x3b\x4f\xab\xfc\x2c\x80\xa2\x73\x1c\xaa\x4c\xd1\xae\xe2\x02\x27\x83\x29\x30\xa4\x75\xd8\xcd\x83\x0a\xf3\x80\x2e\x8a\x0f\xa4\x49\x31\x8c\x63\x57\x5f\x40\x9f\x34\x24\x10\x63\x80\x71\x45\xb1\x28\x14\x3d\xc7\xc8\x92\x91\x7a\x85\xd3\xfb\x03\x29\xb5\x9d\x7b\x96\xd4\x96\xf3\x2d\x05\xb8\x2a\xb8\xa7\x11\x10\xb5\x16\x03\x2c\xd4\xd6\x3f\x08\x96\x5a\xf5\x01\xc8\x0f\xc2\xdd\x53\x84\xc2\x4a\x52\xff\xd4\xf9\x16\x92\xab\xbc\xd8\xbc\x2c\xeb\xee\x01\x2a\x3d\x0c\x05\x1b\x99\x9a\x29\x05\x14\x26\x15\xe4\x57\x4a\x18\x56\x20\x57\x47\xe2\x6e\x28\x34\x59\xb5\x14\x5d\xf1\xf7\xca\xa5\x42\x47\xe1\xa8\xeb\x04\x69\x35\x25\xc2\x64\x50\x1d\x30\xd9\xd2\xfb\x9c\x5d\x35\x69\x77\x0a\xd3\x15\x69\xca\x5d\xa4\x60\xb6\x0a\x25\x2e\x62\x71\xd2\x51\x40\x81\x90\x96\xdf\xd7\x8e\x7e\xf7\xde\x68\x48\x91\xd6\x90\x42\x9c\xf6\x5d\x9e\xdd\xa5\x4a\xe5\x0b\x23\xa2\xf1\x6c\x3a\x9d\xee\xde\xa3\xc3\x09\x77\x9e\x6c\x83\x6d\x05\x83\xde\x1f\x60\xe3\x92\x9a\x6c\x49\xd5\x37\x8b\xbe\x83\x35\x4a\xa7\x05\xe4\x9d\xe4\x6b\x94\x56\x0b\xb5\x9b\xd1\xa9\x43\xde\x7a\x02\xbb\xb8\x9d\x88\x7f\x40\x85\x06\x4b\xd9\x4e\x9a\x72\x07\x3f\x0f\x12\x87\xe6\x90\xf4\x22\xc9\xe3\x40\x2f\x30\xd5\x93\x82\xdf\x20\x4c\xd6\xf1\x1a\x9b\x7d\x95\xa9\xe3\x73\x57\x85\x7e\x1f\xc3\x8b\x82\x08\x07\x89\x06\x1e\xcd\xc2\xbd\xeb\x5c\x5c\xc9\x7b\xb2\xab\x2b\xb6\x6e\xe0\x9a\xab\x3f\xd5\xbf\xcb\x7c\xb5\xd0\x43\x40\x56\x9e\x08\xa6\xd7\x73\xd6\xd1\x07\x31\x59\xe3\x54\x35\x5a\xe6\x6d\x0b\x85\x68\x95\xe4\x8b\x35\xbc\x15\x11\xeb\x98\x7d\xbe\x81\x54\x3c\x70\x21\x93\x1a\xf4\x43\xf2\x89\xe9\xe6\x3b\x8d\xa1\x12\x5a\x63\xfc\x7f\x0e\xc6\x73\xb5\x07\xcf\x2b\xe9\x3d\x58\xd8\xd2\xcf\xc8\x0d\x65\x84\xf9\xa0\xea\xeb\xd4\xaf\x59\xc1\xaa\xac\x61\x7f\x79\xfd\xe2\xbb\x8e\xe0\x48\xc5\x8f\x11\x37\x77\x6e\xde\x66\x2d\x58\xf8\x7e\x7f\xf3\x86\x55\x3f\x5c\x49\x62\x4f\x2a\x14\xc5\x95\x21\x19\x9d\x7d\x41\x2a\xaa\x87\x55\x11\xe4\xb5\x98\xdd\x67\xbd\xcf\x32\x84\xe7\x95\x16\x0a\x4f\x87\x43\x6d\x99\x5e\x41\xd8\x72\xc8\xc3\xa8\xfa\x09\x75\x36\xae\x94\x7d\x9f\x37\x7c\xfc\xf8\x2c\xf6\xf5\xd3\xe8\xd7\xcf\x10\xb6\xd9\x87\x48\x71\x31\x13\x84\x61\xa0\xdc\x8d\x0e\x82\x46\x85\xc2\x2f\xd0\x1c\x91\xec\x93\x62\x84\x20\x21\xae\xea\x60\x99\xcc\xc4\xd3\x03\xa9\x23\xe5\x5f\xb3\xd5\x02\x65\x1b\x71\xa7\xe4\x1a\x10\x1e\x21\x18\x02\xad\xa2\x83\xb8\x7d\x59\xa1\x2d\x33\x36\x8d\x27\xf7\x06\x82\x18\x22\x7d\xd4\x4f\x78\x38\x1f\x7c\xf1\x3a\x50\xcc\xc0\xd6\xb0\x07\x8a\xd9\xe4\x8e\x65\x55\xbd\x6d\x6e\x72\xa5\x3e\x32\xbf\x49\xcd\x1a\x9d\x56\xd1\xc1\xe9\x1c\x48\x75\xa7\x55\xf0\xc3\x05\xa8\x5e\x95\x4a\x2a\xe3\x94\x9a\x68\xb6\x3f\xf1\x66\x9b\x38\x1d\x61\xe2\x4d\x85\x4a\xc1\xd8\x54\x06\x3b\x0a\x16\x18\x4f\x54\x03\xeb\x15\x7b\x23\x17\x1e\x66\x73\x1b\x78\x05\x56\x53\x14\x96\x98\x28\x72\x2e\x26\x8f\xeb\x16\xcc\x65\x72\x73\x61\x91\xd2\xff\x2c\x5f\xcf\x44\x72\x48\x92\x88\xd5\x67\xe3\x36\x4b\xa7\x70\x39\x23\x15\x74\x07\xe9\x94\x9c\x66\x52\x32\x4a\xea\xc5\x34\x6d\x12\x5d\x05\x3b\x66\x20\x09\xc6\xa7\x5a\x9c\xf4\x75\xf3\xba\xdc\x25\xd8\x4a\x3f\xe1\xc5\x19\xd3\xe8\x8d\x28\xc6\x59\x3a\x25\xba\x4a\x3d\x1c\xca\x3f\x01\x9e\xd4\x0a\xe5\x43\x89\xe1\xfb\xa2\x6f\xce\xd0\x49\x53\xee\x54\x1f\x4d\xb9\x8b\x75\x21\x9e\xba\x2a\xd2\x07\x4c\xd8\x99\x87\x4c\x75\xc6\x8b\x44\x7e\x50\xdf\x47\xc5\xc5\x76\x38\xdc\x5e\x14\x0b\x28\xcf\xde\xd4\x89\x2e\x18\x6f\x71\x3a\xc5\x7a\x0a\x4e\xf3\xa6\xdc\xc9\xaf\xa3\xf2\x22\x1f\x0e\xf3\x8b\xd2\x36\x2e\x47\x95\x6c\x75\x20\x9a\xd4\xf2\x9e\x04\xad\x92\xf3\xb0\xb7\xa6\xa8\x5d\x4b\xdf\xda\x5a\x4d\xb3\xe1\x30\x41\x32\x46\x26\x04\x09\x84\xb0\x52\x12\x9f\xd9\x24\xba\xe0\xeb\xf3\x7e\xa7\x55\xbb\xf5\x44\x36\x10\xcf\xc8\x1c\x33\xca\x96\xc5\x02\xe9\x5c\x62\xaf\xf8\x9b\x9c\x17\xd7\x28\x45\x05\x7b\xdf\xe8\x5f\x26\xe5\x30\x07\xfd\xb4\xd9\x61\xb2\x34\x3b\xd6\x94\xbb\xd5\x81\x04\xc4\x76\x9f\xf0\xda\x58\x79\x2a\x0c\x37\x1f\x64\x90\x0c\x35\x1b\xd0\x1e\xcd\xb7\x8e\x7b\x10\xc1\x7d\x89\x23\x89\x4f\x32\x8f\x66\xa9\xfd\x12\x87\x56\x29\x5c\x27\x29\x1f\x7b\x36\x7c\x73\x27\x49\xaf\x24\xc3\x07\x97\x22\x49\x3a\x24\x09\x5f\xc1\xe6\xca\x8f\x4b\xbe\xc2\x8b\x4c\x5d\x75\xc8\x5e\xc4\x23\x14\x4a\x16\x52\x28\x35\x29\x70\xaa\x9a\x2d\x51\x9d\x8b\x1d\x2c\x6f\xa5\x1e\x7c\x21\x7f\xff\x6d\x87\x52\x74\x95\x6d\xd8\x73\xfd\x59\xfc\xf8\x61\xdf\xa0\x54\x9c\x3e\x43\xab\x84\x2f\x6a\xc9\xfd\x16\x98\xf0\xb6\x2d\x4c\xe6\xc0\x08\x99\x35\xf3\x8c\xc3\x33\x82\xca\xe2\x29\xa4\xa3\x84\x0c\x1c\xfa\x69\xcf\x14\xee\xc9\x42\x39\x75\x50\xa0\x58\x6f\x84\x48\x66\xcc\xbe\x2c\x47\xe3\x58\xc1\x39\xac\x4a\xdc\x38\x2c\x4a\x90\x03\x19\x8b\xa6\x0e\x25\xae\x09\x71\x63\x95\x05\x79\x37\xb4\x61\x56\x9f\x59\xa2\x54\x0a\x60\xdc\x31\x19\x9b\x41\xf4\x45\x73\xe8\x7e\x14\x83\x08\x51\xd3\x35\x26\x93\x66\x47\xc1\x1b\xb7\xce\x72\x56\x6c\xb2\xca\xbe\x1c\xdf\xbc\x07\xd9\x41\x0e\x69\x1a\x43\xae\x3f\xfa\xf2\xdb\x5c\x1e\x56\x3c\xdc\xc7\x76\x73\x88\x3a\x06\xff\x4c\xf8\x66\x10\xd2\x12\x37\x99\x58\xf1\xbb\xe7\x9b\xe1\x70\x2a\x40\xc8\xb0\x6c\xe8\xdf\x42\x8d\x8a\xa9\x8a\x6d\x56\x57\xee\x18\x9e\xb8\x95\xbb\x06\x28\x03\xee\x64\xde\x0e\xbb\xf6\x6d\xfa\x75\xef\x0f\x92\x37\x49\x28\xc2\x50\x87\xd7\xb6\x03\x03\x06\xb8\x6d\x4f\x9f\x64\xaf\x24\xa2\x53\x16\x6a\x55\x04\x65\x6f\xa5\x9e\x3d\x64\x80\x36\xe2\xf1\xb0\x78\x61\xc3\xc2\xc5\x65\x30\x50\xc1\xfa\x13\xc1\x20\xa2\xa5\x54\x20\x11\x3e\x4a\xd0\x0b\xd7\xb7\x4c\x4b\x72\xb7\xe5\xed\x53\xa9\x04\x7b\xd2\xbc\x2c\x6b\x04\xaf\x4c\xdd\xab\xfb\x2c\xa5\x8a\x53\x6b\x1e\x8e\x1a\x1e\x7a\x0b\xa8\x9d\x05\x28\x19\xa5\xe8\x45\x8d\x2d\x08\xa7\x62\xa2\xb4\x71\xcf\xb2\xbb\x45\x52\x4c\x1c\x37\x33\xea\x96\x91\x62\x62\x9c\xca\x68\xe1\xeb\xdf\x6c\x45\xa9\x8e\x93\x55\x7f\x66\x59\xe5\xd4\x54\x3f\x55\x45\xf1\x0b\xa7\x09\x37\x1e\x05\xc4\x1f\x9a\x4f\xb4\x82\x15\x1f\x1d\x19\xea\x49\x9b\x7f\x7c\x64\x5c\xa8\xf6\xed\x3e\xcf\xc5\xaf\xc4\x60\x94\xa2\x6c\xf8\xd5\xdd\x53\xd0\xa9\x27\x36\x14\x85\x95\x90\xd7\x36\xb9\x08\x0c\x02\x7e\x74\x1f\x0c\x40\xe5\x12\xe9\xd9\x20\x0b\x11\x08\x7a\x44\x29\xfa\x19\xac\x95\x56\xb4\x5c\x22\x31\xff\x63\x55\x40\xdc\xfa\xbc\x68\x12\x93\x94\x62\xc9\x6d\xd2\x60\xc1\xbd\xab\xd4\xbf\x64\x36\x8d\x2e\xb2\x8c\x2c\xb2\xb0\x8b\x7c\xe6\x01\x97\x34\x8e\xb7\xc9\xc1\xc0\xe4\xa6\x49\x0a\x1c\x98\xb4\x5d\xee\x0b\xd9\x5c\x5c\x0f\x89\x28\xf4\xe3\x1f\xbd\x35\x99\xba\x35\xe1\x6e\xc1\x77\x47\x99\x2b\x00\xa1\x74\x60\x90\x36\x09\xca\x10\x29\xb0\x8e\x34\x17\xe8\x81\x6d\x65\x05\x1c\x81\x62\xd8\x96\xc3\xaf\xda\x98\x67\xe4\xca\xf1\x30\x61\x5d\xa7\x8c\x92\xb8\x53\x20\xfe\x10\xc4\xeb\x51\xe6\xd0\x35\xfa\xc7\x58\xca\x63\xd8\xc1\x70\x54\x4e\x10\x72\xcf\x20\x40\x52\x46\x92\x7b\x0c\xc6\xb8\x4a\x16\xcf\x17\x3c\xed\xae\x41\x6c\x95\xe2\xad\x4a\x87\x04\xe8\xb5\xa9\x28\x7d\x42\xcc\x57\x9b\xd7\x8b\xfa\x21\xbd\x38\x27\xe5\x0a\xa7\x9d\x31\xc3\xe4\xd7\x72\x5a\x39\x2f\xfc\x28\x3b\x1e\xe6\x53\xe1\x28\x22\x4e\x52\x01\xd9\x62\x27\x41\xb4\x37\xf8\x40\x9b\x5c\xd9\xb2\xc8\x64\x8c\x6c\x28\x42\x07\xd9\x78\x66\x66\x73\xfa\xcd\x3b\x5c\xf6\x29\xcb\x1b\x10\xff\x22\x3c\x2f\x03\x82\x57\x95\x2a\xb5\x88\xbe\x29\xaa\xc4\xd7\x98\xf8\xa6\x5e\x0e\x86\x77\x0e\x57\x0c\x6f\xaa\x79\x7a\x13\x10\x3a\x25\x25\x86\xb3\x86\x48\x58\x45\xf9\x13\x63\x6f\x59\xb1\x89\x26\x98\x32\x0e\x4b\x8a\x77\x58\xb2\x8b\xe9\x70\xf8\xa7\x0b\x46\x10\x5a\x1d\x08\xaf\xcb\x3f\xff\x69\x3a\x13\x3d\x74\x5b\x13\x8b\xca\x13\xe8\xe8\x35\xbf\x61\x1e\x8f\x69\x8c\x7c\x2c\x6a\x1f\x7d\x36\xd6\x3f\xef\x12\xdc\xb6\x5f\x60\x4c\x98\x44\xd6\xb2\xb9\x74\x06\x92\xf8\x7d\xaa\x7e\x41\xd3\x19\x26\xc0\xa5\x5d\xe5\x65\x59\xc9\xc4\xd7\x10\x4e\x38\x49\xd8\x98\xe3\xf3\x3f\xff\xe9\x33\xf6\x39\x3e\xff\x02\x8f\x66\x07\x62\x74\x54\x1d\xcc\xcd\xaf\xb4\x3a\xae\x6d\xe5\x1f\x1c\x4b\x33\xc6\xe7\xc5\xbb\x2c\xe7\x1b\x1b\x46\x00\xcd\xf9\x55\xc2\x69\x27\xce\x00\x5f\x20\x34\xe2\x29\x1f\x21\x44\x90\x34\x84\xd5\x16\x32\xfb\x3c\x9f\x6b\xfb\xc5\x8c\x54\x64\x4b\xa7\x24\xa7\x89\xb8\x3e\xf5\xb6\xac\x00\x65\x3c\xdd\x37\xe5\xd5\x95\x14\x6c\x1a\x86\x49\xd9\x1e\x86\xb5\xc8\x9a\x6a\x5b\x42\x03\xd8\xf9\x22\x4f\x13\xbd\xf1\xd8\x7f\xe5\xfe\xef\x6c\x3a\x1d\x99\x17\x23\x87\x27\x61\x2f\xc7\xf7\xfc\xd5\x7a\x46\xf7\xea\x90\x8d\xdf\xf0\x81\x36\x64\x27\xab\x07\xde\x75\x3d\xad\x82\x5a\xe4\x2a\x6c\xfc\x60\x3b\x72\x4d\xc7\x33\x72\x23\xfe\x73\x29\xfe\xf3\x4e\xfc\xe7\x8d\x60\x9b\xee\x68\x08\xaa\xdc\xa4\xb6\xb9\x28\x46\x20\x9d\x5c\x6f\xb3\xea\x49\x93\x14\xa3\x19\xa6\x94\x36\x8e\x51\x58\x31\x1a\x09\xe6\xff\xb6\xd3\x09\xa3\x77\x09\x50\xf6\xe8\x3f\x64\xa8\x9a\xd9\x67\x29\x1a\xc8\x3f\x1f\x4f\x53\x74\xa7\xa2\xc7\xb0\xc5\x67\x29\x92\xe1\xcf\x17\x9f\xa6\x8f\x49\x41\x55\xd1\xa2\x4e\x05\x4f\xa7\xf2\x29\xa3\xdf\x7e\xfd\x75\x73\x8f\x46\xc5\x08\x11\xc8\x10\x79\x00\x75\x3c\x9f\xd4\xfb\x37\xf2\xc8\x93\x2d\x56\xde\x87\x25\x68\x69\x07\x19\xf6\x0d\x6e\x0b\x10\x1a\x9f\x65\xcd\x99\x66\xc9\xce\xd0\x68\xab\xd7\xb2\x1d\x51\xf1\xba\x6a\xcf\x49\x03\x15\xe2\xa3\x00\x8c\x03\x79\xeb\x44\x84\x71\x9e\x7d\xb1\x91\x99\xb2\x8f\xbe\x4b\x18\x5e\x14\xa9\x6b\x13\x6d\xc3\xf6\x2c\x97\x8c\x34\xab\xd5\x01\x4f\xea\xb2\x72\x64\x8f\x4e\x95\x71\xd2\x2c\x67\x7a\x0e\x63\x66\xff\xc6\x07\x58\x93\xca\x87\x94\x91\xae\xe9\x5e\x4d\x45\x75\x07\x99\xc0\xbe\x24\x5b\xa2\xcd\x7d\xb1\xaf\x61\x15\xe4\x93\xff\x05\xd2\x96\x8a\xd5\x6e\x47\x54\x37\x22\x83\x99\x93\x1e\x72\x3c\x1b\x50\x5a\xea\xeb\x5b\x8e\x66\x73\xb9\xc3\x7f\x2b\xde\x16\xe5\x6d\x71\x56\x64\x37\x2c\xdc\xdf\x03\x79\xef\x8a\x25\x04\x8e\xd0\xe0\xb4\xc5\x03\xad\xe7\x17\xc0\x85\xb1\xee\x8d\xbd\xdf\x01\x49\x72\x96\xf3\x86\x55\x59\xde\x39\xb3\xed\x68\x74\x00\x73\xef\x82\x4e\xe7\xcc\xf7\x88\xe5\x57\xc9\x1b\x8c\x1e\x21\xbf\xef\xb6\xbd\x4b\xd0\x23\x84\x17\xef\x13\x9c\x0a\xb8\x9f\x83\x85\x86\x31\xfb\xb3\x93\x00\xc3\x3f\xb4\x41\xe9\x25\xbd\x4d\xd0\xc6\x33\x22\x41\xcf\x50\xfa\x36\x41\xcf\x10\xd9\x93\x8d\x57\x50\xa2\xf4\x9d\xa8\x5f\xfa\xf5\x6f\x50\x7a\x23\x3e\xdf\xf8\x9f\x5f\x88\xcf\x6f\x05\x15\x4b\x76\xe4\xca\x2b\xba\x43\xe9\xb5\x68\x71\xe7\xb7\xf8\x0f\x94\x56\xf6\xfd\xb8\x4d\xd0\x7f\x20\x8c\xc9\x35\xad\x7c\x8c\x46\x6e\xe4\x17\x45\xf0\x8f\xc4\x6d\xaf\xec\x73\xe2\xf6\x38\xf0\x7a\x14\x5d\x0e\x10\x1e\x4b\x04\xd2\xf0\xf5\xdb\xfa\x75\x39\xfb\xf2\x8b\x29\x3e\x9f\xb1\xcf\xfe\xd8\x48\x8f\x50\xea\x6f\xfe\x34\xb0\x98\x79\x9f\xe0\x03\x00\x86\x3a\xc8\x2d\xe4\x87\xb5\x30\x8c\xc9\xe0\xfc\xb7\x5f\xeb\x91\x0a\xb1\x98\x61\x0d\x2a\xdf\xbc\x6f\xaa\xec\x7c\x5f\xc0\x6d\xdd\x9c\x89\x43\xcc\xd6\x0d\xab\x6a\x95\x7a\x89\x17\x60\x4f\x9f\x9e\xa1\x51\x26\xee\xcf\x78\x46\x29\xbd\x5e\x5c\xd3\xbe\x17\x21\x9d\x4d\xa7\x17\x82\x39\xbf\x1e\xf5\xd6\x19\x1f\x7d\x4e\x92\xf5\x05\xbd\x5e\x4c\xd3\xf1\x6c\x3a\xc5\x98\xbc\xbb\x18\xcf\xb0\x80\xd4\x1b\x2a\x76\xe8\xdd\x7c\x0e\x77\xc0\x33\x51\xbf\xab\x9f\x17\x72\x1b\xaf\xc9\xcd\x78\x86\x49\x79\x41\x2f\xb1\xdc\xa2\x9b\xd1\x88\x5c\x8e\x69\x29\xf6\x47\xdb\xad\x6f\xb2\xbb\x9c\x5f\x6f\x9b\x57\xd9\x3b\x5e\x5c\x3f\x01\x3e\xc5\xcc\x49\xf6\x41\x2e\x31\x26\xc1\x89\x0d\x28\xbd\x6e\x5b\xff\xd0\x06\x94\xde\xa8\x6f\xf2\xdc\x06\x94\x5e\x06\x2f\xbc\xd8\x41\x93\x61\xa4\x3a\x90\x27\xaf\x7f\x78\x91\xa2\xbb\xbb\xf1\xcd\xcd\x78\xb3\x41\xe4\xe9\x0f\x3f\xfc\xd7\xf3\x6f\x52\xf4\x8c\x9c\x6d\x36\x67\x2f\xce\xee\xee\x10\x79\xfe\xea\x87\x4b\x41\x0a\xb9\xf5\x7e\xfc\xf6\xe9\xe5\x9f\x1f\x3f\x96\x15\x45\x3d\xf5\xe9\xf3\x69\x8a\x9e\x41\xe3\xf1\x8b\xb1\xfa\x38\x9b\x7e\xfa\xa7\xb0\xe2\x6c\xf6\xf8\x53\xfb\x4d\x7d\x7c\xec\xf5\x28\x3e\xbe\x7a\xe5\x36\x7c\xfd\xfc\xe9\x7f\xbd\x12\x0f\x0f\x79\xfd\xfc\xc5\x37\xaf\x5e\x3f\x79\xf1\x32\x45\xff\x81\xc8\x4f\x9f\x3e\x75\xe7\xe6\x42\x7c\x3a\x63\x5f\x7c\xf2\xa7\xa9\xf8\xdf\xe3\xcf\x3e\x49\xbe\x98\xfd\xf9\x4f\x7f\xfe\x7c\xe4\x10\x53\x9f\x7d\xf9\x78\xf2\x39\x1e\x3b\x5f\x66\x5f\x4e\xbe\xc0\x5e\x95\xc9\x97\x8f\x3f\xc7\x98\x58\x2a\xb4\x63\x87\x2e\x9e\x28\xa6\x70\x29\x42\x73\xcd\xc1\x24\x7c\xc1\x3f\x82\xfa\x28\xfd\x86\x0f\x51\x1f\x99\xac\xfe\x71\xd4\x47\x15\x36\x7e\x98\xfa\xd8\xd2\x08\xab\xa7\xaf\x7b\x2d\x88\x8c\x46\xa3\xe0\x5a\x12\x19\xcc\x21\x32\x6a\x49\x64\xe4\x34\xdc\x43\x15\x2f\x19\x8d\x98\xb8\xdd\xdb\xa4\xc1\x70\xd7\xe6\xfc\x42\x3f\x60\x73\x5c\x53\x34\x45\xa3\xda\x09\x83\xb0\x0e\xfa\x11\x84\xae\xa6\x02\x92\x06\x2f\xea\x25\x5b\xa5\x7c\xc9\x56\x07\xb2\xa7\x08\x91\x8d\x78\x2e\xf8\x55\xc2\xa0\xf3\xda\x0d\xc2\x50\xcf\x6b\xf9\xe4\x6c\xd4\x93\x63\x97\x81\xdb\x76\x2b\xb1\xde\x7e\xe4\x7e\x4e\x37\xe1\xeb\xe3\x14\xda\xd7\x67\x3f\xa2\xb9\x78\x7e\x08\x73\x04\x3d\x8f\xc3\xc7\x68\x3f\xa2\x6b\x78\x8f\x98\x61\x12\xc0\x59\x3f\x78\x9a\x64\x67\x25\x22\x2e\x1f\x60\x30\x06\x0b\x30\x3b\x73\x45\x46\xce\xf0\xd8\xb2\x1d\xe3\xde\xc6\x53\x32\x75\xea\x69\x46\x83\x7c\x1a\x3e\x8b\x72\x4a\x37\xc8\x1b\x6d\x34\x0b\x96\xf8\x42\x2f\xf1\x85\x5f\x51\xb0\x0b\xe1\xb3\xb9\x1f\xd1\x2d\xbc\x9b\x8b\x60\x4e\x69\x32\x9b\x5e\xb0\x2e\xae\x5e\xa0\x29\x4a\x11\xc2\xa3\x48\x59\xf0\xf6\xee\x47\x94\xd9\x55\x05\xcf\xe8\x7e\x44\x67\xec\xb3\x4f\x9c\x0a\xa3\xce\x33\x1a\xbc\x87\x16\x32\xc4\xaf\x4d\xf7\x49\xf4\x61\x46\x19\xda\x9d\xed\x0f\xc4\xb7\xb2\x8c\xb2\x99\x08\x91\x5a\x50\xf6\x8e\x3e\xc8\x06\xc3\x30\x4e\x70\xde\xa5\x63\xf2\xd2\x71\x73\x4b\x86\x43\x36\x1a\x91\x5a\x52\x59\xcc\x05\x79\xe3\x3d\x57\x87\x20\xcf\x70\xdb\x16\x72\x61\x7c\xe4\x7e\x4e\xeb\x5e\x90\x67\x0e\xc8\x6b\xd0\xd0\x07\xaa\x37\x9f\x8f\x28\x9a\xce\x1e\x7f\xfa\xd9\xe7\x7f\xfa\xe2\xcf\x5f\xa2\xe0\x0a\x68\x38\x71\x99\x4a\xbd\xcd\x76\x36\xe2\x57\xdd\xdd\x66\x7f\x9e\x7a\x9b\xb9\x74\x97\x89\x06\xdf\x3c\xb3\xf9\x59\x8c\x31\xdc\x92\xad\x16\xde\xaf\xd4\xc7\x84\x80\x4a\x3a\x76\x6f\x41\xf7\x40\xde\xfb\x86\xa5\x8d\x31\x2c\x0d\xbd\x73\xc2\x30\x32\xa0\x41\xd1\xd6\x78\xaa\x9b\x45\xd3\x35\x23\x75\xc4\xdf\x6e\x2c\x92\x06\xac\xff\xdc\x38\x35\x9e\x98\xa4\xc1\xf3\xa6\xba\xbb\x57\x44\x8b\xb5\x68\xe5\xa4\x26\x99\x38\x74\x65\x12\x5a\xe1\xfb\x9a\x42\x62\xe4\xfa\xd0\x04\x42\x4a\x8b\xc4\x1a\x47\x5a\xdd\x74\xe4\x93\xce\x1d\x6f\xac\xb4\xba\x09\xc5\x94\x3e\xd2\x69\x5c\x19\x68\xbd\x70\x46\x4b\xa7\xb6\x50\x0e\xa1\x8a\xd5\x20\x6e\xb9\x94\x79\x2e\x82\xce\xd3\x29\x89\x2a\x2f\x1a\xac\x52\x92\x3a\x1b\xd9\x9f\xb0\xbb\x62\x82\x4b\x5d\x2b\x8f\xc2\xa4\xd1\x8a\x4c\xd6\xb0\xea\x46\xc5\xb0\x31\x5f\xf5\x01\xdb\x8e\x11\x26\x86\xe8\x94\xf1\xda\x9d\x76\x3d\xf2\xf6\x2e\x47\xae\xbb\xb0\x09\xd0\x4d\x18\x1f\x47\xe4\xd4\x40\xbe\x91\xd2\x43\x1e\xa1\x97\xeb\x29\xd6\xcd\xa1\xac\x2e\xa2\x38\x0e\x85\x71\x0a\x8e\x6a\x7c\x7f\xd0\x96\x03\x82\x22\xf2\xf9\x54\x1d\x63\xe8\xb7\xf5\x39\x5e\x74\xba\x54\x62\x40\x4d\x92\x18\xed\x49\x49\x8b\x00\x68\x32\xf9\x45\x43\x5b\x25\x7f\x2a\x20\xdd\xd2\xf3\x64\x39\xfa\x75\xbc\x5a\x2c\xa7\xe3\x2f\x57\x23\xfc\x6b\xfd\x49\xb2\x69\x9f\xb5\xb7\xed\x4f\xed\x4d\xfb\xa2\xbd\x6b\x7f\xc6\x8b\xf3\x6b\x92\xd3\xed\x84\xbd\x67\xeb\x84\xe3\x79\x3e\xc7\xf7\x0a\xc1\xe5\xcb\xc7\xab\xb6\x15\xec\xa3\x8f\xde\x9e\xa1\xb4\x1a\x59\x2d\x45\xbe\x9c\x81\x74\xc1\xc5\x69\xb7\xaa\xea\x4f\x50\xf5\x8b\x4f\x8e\x56\xbe\xb1\x08\x30\x8b\xf4\x4b\x2a\x6b\xc9\x51\x75\xf7\xdf\xe5\x3d\x4a\x92\xe1\xf0\x49\x85\x7f\x7f\x46\x69\xf9\x4f\xe8\xfa\xe0\xec\x94\x46\xb4\x86\x8a\x00\xf9\x1f\x3e\x88\x33\x91\x52\xc6\xb6\x95\xb2\xc2\x45\x9d\x46\xbc\x94\xcb\x84\xe3\x14\x49\x81\x8e\xfb\x9d\xd7\xdf\x67\xdf\x27\x1c\x2f\xea\xb4\x00\xc7\x43\xdd\x3f\x8f\x08\x5c\x33\x9a\x0d\x87\x86\xcb\x81\x5b\x46\x05\x2d\x99\x2d\xea\x34\x83\xf8\x7c\x99\xb8\x1f\x7f\x29\xf7\x55\x9d\x4c\x31\x81\x5f\x2f\x78\xb1\x6f\x98\xfd\xfd\x0a\xc2\x10\xbb\xe5\x79\xce\x6b\xf3\xd1\x1a\x2c\x44\x58\xb6\x0c\x6e\x72\xa4\x24\x8a\x46\x16\x49\x63\xa7\x03\x02\x64\xf9\x27\xbe\x98\x3d\x5e\xb8\xbf\x47\x8f\xd3\x29\x26\x8d\x71\xbb\x54\x77\xbc\xc3\x80\x48\x82\x60\xc0\xc0\x38\x3c\x70\x17\x0c\x10\xae\x79\x19\x4e\x44\x63\xcc\xc1\x56\x73\xff\x25\xf0\x50\x75\x76\xe2\xb3\x10\xa0\xf0\xec\xb4\x57\xc2\x47\xec\x59\x70\xfd\x0b\x99\x62\xc1\x1d\x67\x38\x2c\xbd\x8f\xa2\x26\xa4\x4a\x88\xe8\x09\x1b\xdc\xf7\x2c\x90\x8e\x95\x9e\x78\x80\x6b\xf1\x2c\x76\xf4\x4e\x8d\xeb\x9a\x1b\xd1\x38\x0c\xbc\x35\xb4\xad\xe9\x1a\x6e\x87\xf7\xc0\xab\x70\x0b\x27\x48\x08\xbc\x3e\x83\xe7\xd1\x7b\x4a\xed\x5d\x61\x26\x48\xa6\xb6\xcb\x8d\xe9\xee\x5c\x35\x8d\xe7\x8b\x55\x53\xf4\x6f\x68\xc4\xbc\x00\xaf\xbf\xfe\xfa\xeb\xaf\x32\xa6\x2b\xc2\x73\xdf\xbe\x72\xb9\xc9\x9a\x6c\xbc\x95\x23\xad\x10\x06\xd9\x6a\x27\xef\xe5\xfd\xae\x62\xef\xd2\x5e\x93\x27\x57\x49\x4d\xc6\x1c\xfc\xc1\x0e\xa4\x60\xef\x9b\x13\xdb\x8c\x74\x9b\x2d\xdf\xb0\xfe\x36\x1d\x63\x0a\xd2\xf8\x26\x08\x61\x03\xeb\x1f\x59\xe3\x03\x89\xa8\x95\x7b\x82\x34\x5a\x37\xdf\x9a\x48\x06\xe3\x9a\x35\x4f\x9a\xa6\xe2\x6f\xf6\x0d\x4b\x10\x6c\x1a\xf0\xdc\x08\xf7\x57\x90\x91\x3f\x00\x76\x21\xfe\x21\x71\x94\xf7\x27\x4e\xc1\x28\xfa\x13\xa9\x57\x83\x6d\x72\xfa\xf2\x6d\x00\x3e\xb0\xab\x9f\x65\x57\x87\xb9\x76\xa8\xd0\xb9\x31\x22\x6b\x01\xaf\x38\x08\x84\xda\x57\x43\xc1\x10\xc2\x2b\x99\xbd\xd4\x35\x39\x8f\xf1\x4e\xda\x94\x8f\x38\x81\xee\xc8\x8e\x5c\x91\x6b\x72\x43\x2e\xc9\x3b\xf2\x86\xdc\x91\x5b\xf2\x96\xbc\x27\x4f\xc9\x33\xf2\x9c\xbc\x26\x2f\xc9\x0b\xf2\x8a\xfc\x85\xfc\x4e\x7e\x20\x4f\xc8\xf7\xe4\x27\xf2\x0d\xf9\x96\x7c\x47\x7e\xb4\x96\x1b\x5f\x9f\x24\xb8\xfb\x31\x40\x50\x3f\xba\x58\xee\x47\x87\x0d\xc7\xe4\x67\x9f\x13\x50\x96\x93\xe4\x1f\xfe\xe7\x7a\x5b\xde\x7e\x0d\x11\x6f\x5e\x66\x05\x24\xf3\xfe\x5f\xbf\x82\x00\xdd\xe7\x57\xdf\x97\x2f\x2b\xf6\xee\x7b\x19\x61\xf5\xbf\xfc\x1a\x45\xf6\x8e\x4b\x0f\xc3\x27\x10\x47\xdb\x10\x73\x7f\xeb\x35\xc6\x6f\x30\xf9\x9f\xee\x3c\x7c\x63\x1e\xf2\xef\x41\x0d\x17\x59\xfc\x9d\xce\x06\x94\xfe\xcd\x18\xb1\xff\x4d\x10\x1c\xff\x79\x6c\x0b\x5d\x9c\xb5\xf8\x08\x34\x67\xe9\x84\x2f\xbf\xfc\xf2\x4b\xf2\x25\xf9\x12\x63\xf2\xdf\xd1\x30\x20\x8d\x8e\x12\xf2\xd7\xde\x62\x88\x12\xf2\x0b\x75\xde\xb3\xf1\xff\x90\x86\x51\xfb\x50\xcd\xf9\x55\x32\xbd\xf8\x65\x38\x4c\x7e\x19\xd1\xd9\x63\xd2\xb0\xf1\x18\x93\xbf\x62\xc9\x6b\x9f\x02\x2b\x7f\x0d\x60\xe5\xaf\x0e\xac\x8c\xc5\xd6\x7d\x22\x76\x6d\x34\x93\x05\x06\x6e\x18\xfd\xef\xe1\xf0\xbf\x2f\xd8\xe2\xbf\x53\x36\x3f\xe9\xa9\x60\xe4\x17\x32\xc3\xf8\x82\xcd\xf1\x2f\xe3\x31\x51\xb3\xa6\xb3\x99\x9c\x34\x88\x07\xdc\x97\xfb\x17\xef\x3d\x36\xc9\xad\xf5\x41\x0b\x94\xad\x62\xf9\x72\xfa\x5f\x8b\xae\xa6\xfe\xd4\x49\x8d\xff\x9d\xd8\xb0\x56\x5d\x7e\x15\xa7\xd6\xe2\x78\x9d\x15\xb2\x07\xb9\x3f\x0d\x19\x8b\xc9\x93\x5f\xf0\x02\x7d\x95\xe9\x88\xcb\xbe\x9d\xa3\x98\x66\x10\x96\xfb\xcc\xc5\x27\xf4\x91\xa8\xa1\xbe\x01\x16\xa2\x8f\x20\xd4\xee\xa3\x33\x99\x50\xee\x11\x1a\xf1\x11\x7a\x74\xe1\x45\x75\x0e\x73\xfc\xae\x79\xb5\xce\xd9\xb8\xa9\x78\x56\x5c\xe7\x6c\x8c\x46\xc9\xcf\x0b\xc4\x50\x8a\x6e\x11\x96\xf1\x9e\xb9\x89\xf7\xfc\xd5\x79\x76\x81\xd2\xff\x15\x54\xc4\x07\x4c\xfb\xac\x13\x35\xea\x5f\x3c\x43\xcf\xa8\x5b\x20\x10\xf6\xbe\x51\x07\x5e\x44\x0e\xbc\x38\xf9\xc0\x47\x0f\x1d\xb8\x35\x30\xe9\x1c\xf8\x83\xe7\x2d\x66\x79\xfc\xbc\x0b\x08\x48\x7a\xec\xbc\x8b\x8f\xdc\xcd\x5b\x94\x22\xa6\x77\xb3\xf8\xa0\xf3\xee\x4e\xfb\xe8\x79\xff\x2b\x66\x18\xc6\x36\x56\x58\x35\x12\x17\xbd\xe9\x58\x56\x7a\x68\xfb\x3f\xd3\xaf\x49\x16\x81\x10\xf1\x14\xf7\x1f\x7a\x06\x9e\x89\xca\x42\x0a\xb6\x2a\x16\x91\x3b\xbe\x7b\x60\xd1\xeb\x6c\x98\x94\xb6\x88\x0f\xbb\x8a\x97\x15\x6f\xee\xc6\x2a\x73\xcd\x71\xd0\x10\xaf\x68\x0c\x34\x2e\xb4\xdb\x99\xde\x1a\x31\x9e\xdc\x18\xb1\x87\x26\xc9\x6e\x4e\xff\xb1\xf0\x52\x0c\xf8\xd3\x94\xf5\x76\x59\xc1\xba\xd9\x04\xc4\x18\xc9\xcf\x8b\x2d\x48\xb1\x13\x6d\x50\xf8\xbc\xf8\x51\xb2\x28\xa4\x12\x30\xff\x01\x3b\x22\x8f\xe3\xf8\x9e\x98\xc4\x3b\xc7\x77\x05\x88\xe0\x9e\x6d\xc9\xdc\xf5\xcb\xb9\xff\x2c\x4e\x6f\x0b\x1b\x03\xd9\x0f\x52\x84\xc8\xda\x0a\x1d\xbc\x8d\x04\x27\xab\x67\xd9\x1d\xc2\x20\x87\x58\x53\xc9\xf6\xaf\xf1\x62\x9a\xae\xc9\xbe\x4b\x7c\xfc\xc4\xd8\x5b\x64\xc3\xf6\x1a\xf9\xa9\x8a\x4e\x8d\xc9\x2e\x5e\xf2\x02\x5e\xfa\x2b\xbf\xd0\x09\x8e\x8d\xc9\x75\x5f\x99\x8a\x73\x4d\x6e\xfc\x0a\xd6\xe1\x5a\xce\xff\xb2\x3b\xd9\x1f\x9a\x2d\xab\x0c\x31\xf4\x2e\xa8\x00\x54\xb3\x5f\xe5\x4d\xaf\x4c\xf7\x8e\x22\x44\xde\xd2\xe9\x5c\x50\x04\x17\x6f\xe7\x6f\x47\x23\xe9\x92\xf3\x5e\x14\x34\xbe\xbb\xe6\x53\xa8\x37\x5b\x5d\x3c\x9d\x3f\x15\xf5\xf8\x55\xf2\xec\x24\x5a\x04\x68\x04\x8f\xc9\xc7\x98\x3c\xa7\xc8\x87\x0f\x44\x5e\x8b\x41\xff\x0e\x1d\xbf\x1e\xd1\x23\x10\x0f\xa9\x63\x10\x81\xc9\xcc\x74\x64\xa6\xa7\x2a\x22\xd3\x34\x15\x8d\xcf\x22\x2d\xc6\xd2\xf9\x2e\x18\x5a\xa2\xb0\x4a\x4c\x1f\xa5\x32\x52\xaf\x17\x16\x44\x8c\x32\x9e\xf5\x77\x9a\x67\x7d\x7d\x42\x5f\xa9\xea\x1a\x07\x8a\x85\xde\xfe\x6e\xf8\x66\x93\x33\xe8\x11\x1d\x44\xad\x47\x17\x08\x84\x9d\xc7\xf7\x64\xcb\xb2\x8d\x9b\x59\xc4\xf9\x10\xa4\x13\x41\xa3\xe7\x12\x53\x27\xe7\x59\x9e\xb7\x62\x96\xca\x6e\xe2\x39\x96\x7e\x12\x6f\x17\x3f\x2f\xca\xb4\x96\x17\x0f\x2a\xc1\x1a\x22\xb5\xea\xb4\x84\x5a\x8d\xe7\xaf\x6b\x98\xb6\xbf\xc0\x1c\x92\x46\x9c\x3f\x23\xff\x4d\xfe\x4a\xde\x5e\x4c\xdb\xf6\xe9\xc5\x54\x70\x4c\xe6\x32\x7f\x05\x66\xcf\x3d\x28\x47\x79\x94\x3c\xba\xf8\xaa\x11\x4b\xba\x40\x23\xf4\x55\x53\x5d\x20\xf2\x92\xee\x17\xe8\xab\x66\x1b\x6f\x77\xcb\xd8\xdb\xf1\xba\xcc\x3b\x58\x56\x14\xc8\x79\x49\x34\xdb\x6c\x25\x32\xb9\xa5\xd3\xf9\x17\x17\xb7\xf3\xdb\xd1\x08\xbf\xa0\xc9\xed\x68\x8d\xff\xef\x17\xe4\xa5\xd8\xf4\x66\x7b\x56\xaf\x4b\x81\x1d\x45\x87\x68\x94\x88\xd2\xd1\x9f\xf0\xff\xfd\xe2\x82\x7e\xbe\x40\x47\x26\xc0\x8a\xcd\x23\x89\xc0\x10\x4c\x1c\xde\x56\xf3\xde\x6e\x96\x2f\x56\xf2\x28\x76\xf0\x97\x79\x37\xc5\x9c\xe6\xea\xcc\x5f\xc2\x24\x2b\xf8\x2a\xd6\xff\x55\xf3\xa6\xdc\xdc\x5d\x20\xf2\x2a\x6e\x22\x02\x94\x8c\x60\x27\x42\x41\xd5\x70\xf8\x4b\x4c\xa2\x95\xf8\xe2\x37\x23\xb2\xf5\x3e\x93\x57\x18\x93\xbf\x50\x8b\x66\xbf\x55\x28\x56\x71\x75\x72\xd4\xf1\x7a\xf4\x85\xd8\xb4\xdf\x65\x2f\x6b\xc6\xf3\x24\xf9\xcb\xe8\x15\x3e\xff\x02\x93\x1f\xe8\xdf\x17\x2e\x46\xb9\xf8\xdd\xfb\x99\xfe\x9e\xfe\xee\x63\x9c\x1f\xc8\x93\xd3\xd1\xcb\x6c\xfc\x17\x8c\xc9\xf7\x74\x3a\xff\xe1\xe2\xfb\xf9\xf7\x1a\x8f\xc1\x9d\x01\x68\xf9\x49\x42\xcb\xe6\x03\xa1\x65\x9d\xe5\xeb\x7d\x9e\x35\x4c\x3e\x11\xc9\x13\x09\x33\x9b\x2e\xcc\x7c\x43\x6f\x16\x37\x3a\x9f\x95\xaf\x60\xb3\x56\xdd\x4f\x56\x38\x5d\x0e\xa6\x04\xa1\x15\xf9\x96\x3e\x71\x98\xb2\x01\xa5\xbf\x90\xef\xe8\xb7\xc3\xe1\xe0\x5d\xdb\x0e\xbe\x01\xee\x16\x98\xb1\x27\x6d\xfb\xd7\xe1\xf0\xc9\xc5\x5f\xc9\x4f\xb0\x9a\x8d\x4d\x02\x13\x02\x62\x1c\x02\xd5\x0b\xfa\x6d\xa7\x42\x29\x9e\x09\x25\x11\x92\x75\x9e\x58\x31\x38\xa5\xf4\x99\xfd\xd5\x03\x3c\x8d\x0d\xa2\xd7\xb6\x6f\xbc\xc6\x4f\xdc\xc6\x6f\xfa\xfa\x5d\xa0\xb3\x98\xf3\xbd\x9c\xcd\x77\x4e\x69\xc7\x41\x42\x26\x55\x0a\x22\xde\xaa\x95\x0e\x87\x83\x4b\xa0\xf6\xce\xd0\xe8\x1b\xc1\xe7\x06\x0b\xfb\xcf\xe8\x04\xdc\xa0\x7a\xb1\xed\xf8\xda\x6b\xe5\x6f\x25\x50\x33\x30\xbc\x20\x83\x91\x9a\x03\x1c\xe4\xe3\x95\x9c\x8a\xb9\xf6\xe2\x93\x15\x73\x3e\x3a\xbf\x26\x68\xf8\x6f\x9f\x7e\x39\x07\x0a\x5a\xad\x5b\x34\xf0\xe9\x25\x23\xdd\x8b\x72\x19\x56\xb6\x27\x46\x70\x01\x6b\x84\x54\xe9\x9d\xe0\xb8\x75\xa1\x15\x0d\xc8\x31\x05\x7a\xd2\xfb\x36\xfc\xb7\xf7\xd9\x74\x8e\xd2\xef\x16\x28\x64\x06\x3c\xaa\x4f\x5c\x96\x27\x8e\x5e\xd0\x64\x1e\x0a\x18\x12\xaf\x11\x7a\x70\x57\x65\xf5\x2d\xbf\xde\xe6\xea\x51\xee\x1e\xc5\x7f\xc6\x1b\x65\xeb\x86\xbf\x63\x3e\xbc\x77\xe9\x52\x85\x90\x1f\x9d\x6d\x2b\x76\x45\x1f\xfd\x5b\x64\x1d\xd9\x05\x32\x17\x9d\x3c\x31\x5a\x50\xb7\xd6\x0c\x1f\xc7\x4f\x4f\xf0\xfc\xf5\x88\xfe\xa4\xb0\x37\x3a\xfc\x32\x1a\x91\x5f\x2e\x66\x33\x10\x8f\x4c\x49\xc3\x46\x23\x4c\x00\x3f\x9d\x4b\x8c\xfe\xd5\x39\x00\xb7\x38\x88\xbf\x2f\x34\x99\x3b\x4a\x80\x34\x9b\x0e\x87\x4f\xa9\x94\x74\x8d\x67\xc7\x98\x81\xaa\xbc\x1d\x03\xa1\x61\xd2\x84\x89\xc5\x8a\xff\x93\xf7\x23\xfa\xfa\x70\x37\xa2\xef\xb5\x72\xed\x6e\x44\x73\xd2\xb8\x61\x30\x67\xe4\xce\x91\x81\x06\xcf\x78\x1a\x1a\x45\x69\x49\xa8\x14\x8e\x76\xc4\xa1\x01\xdf\x07\x5a\x91\x17\x4a\xfa\x7c\x19\x2b\x94\x2e\x5a\x1d\x8a\x76\x5b\x4a\xd1\xd1\x93\xab\x86\x55\xaa\xce\x9b\x63\xa4\x10\x5c\xb4\x47\x17\x08\xc8\x5b\x08\xf5\xd9\xb6\x83\x1b\x7c\x27\xf6\x3a\x80\x67\x37\xba\x85\x18\x03\x98\x8f\x25\xb3\x6f\x31\x02\xab\x14\x78\x4b\xb6\xb4\x1e\x0e\x6b\xff\xf2\x50\x4a\x39\xc9\x69\x31\x1c\x16\x91\x02\x39\x22\xdc\xdb\x63\x63\x46\x2f\xfa\x0b\xa7\x48\x5f\x75\xd8\x25\xb1\xb0\x35\x9d\xce\x67\x8f\x2f\xd6\xf3\xf5\x68\x84\x93\xc1\xb6\x6d\xd7\x17\xb4\x76\x2e\x3d\x1e\x0e\x93\x41\xde\xb6\xae\x02\xfb\x82\xae\xc5\x67\x98\x94\x74\x7d\x3b\x93\xa1\x93\x1e\xa1\xd1\x5a\x22\xad\x35\x84\xe5\x46\x67\x1a\xcb\xeb\xc9\x30\x97\x8a\xa9\x96\x6b\xd8\x1f\xd9\xc7\x05\xc2\x73\xe8\xf2\x5c\x56\xbd\x40\x07\x7e\x95\xbc\x6b\xdb\xe4\xcd\x88\xde\x8d\x92\x41\x39\x1c\xde\x0c\x87\x12\x1d\x2b\xcc\x82\x21\x3c\x97\x0d\x7a\x01\x96\x2d\x36\xe8\x05\x42\x44\x9c\xd8\x25\x7e\x73\xfc\xc4\x44\x0b\x5f\xc2\xe4\x9c\x56\xc0\xe5\x89\xba\x3f\x4a\x8f\xa9\x49\xbd\xcb\x79\x93\xa0\x14\x38\xbe\x3e\x5b\x5d\xb2\x8b\xd8\x47\x34\xda\xb4\x60\x0d\xaa\xff\xc9\x27\xe7\x78\xc1\xad\x83\x48\xe3\x38\x1b\xcc\x80\xf7\x4c\x4d\x0b\xdb\x60\xe3\x34\x80\x3a\xfe\x4f\x63\xd6\x08\x3c\x2b\xc3\x8b\x4d\xca\x0e\xe4\x8a\xee\x92\x3d\x38\xf7\x5d\x2b\x12\x2d\x7b\x9f\x5c\x11\xf1\x71\xb6\x6a\x5b\xf1\xee\x90\x2b\x5a\x2f\x9c\xb2\x00\x54\x71\x7a\x45\xae\xa9\x8a\xeb\x20\x08\xbc\x6b\x52\x84\x35\xae\x89\x73\x0e\x0f\x01\x2f\x6c\x7f\x14\x76\x7f\xb6\x25\x21\xe8\xce\xaf\x2f\xe8\xd5\xfc\x6a\x34\xc2\xc1\x48\x21\x44\x5e\x49\x88\xbc\x92\x9e\xff\xc7\x21\xf2\xca\x05\xc7\x79\xd0\xb1\x81\x4b\xf2\x66\x44\x9d\x32\x77\xa9\x32\xce\x8a\xda\x78\x51\x2d\x04\x9d\x57\xfb\x2b\xc1\x39\x61\xf2\x6e\x38\x14\x80\x1d\x07\xeb\xd1\x1d\x26\x00\xb3\x12\xf3\x1a\xa7\x69\xad\xfb\xed\xd1\xb0\xfb\x64\xfa\x28\x41\x3f\x4b\xcb\x06\x96\x4e\x71\x57\xf7\xae\x7d\x5b\x55\x79\xd9\x47\xb1\x47\x99\x83\x9a\x14\x18\x8f\x12\xf4\xcc\xe9\xe1\x21\xd5\xfd\x51\xe2\x5b\xa6\x7e\xea\x28\xf1\x4f\xd5\xdb\x9f\xa8\xa8\x0f\x55\xf3\x7a\x0b\xda\x56\xed\x15\xd6\x21\xa7\x03\x15\x3c\x84\xeb\x76\x97\x75\x3c\xa6\x75\x4c\x8f\x53\x1f\xd7\xe3\x14\x90\x64\xe9\x82\x2d\x78\xca\x1c\xe3\xc8\xe2\xa2\x5e\xd4\x69\x71\x20\xde\x8c\x8e\x45\x0a\x17\x5d\x96\xc5\x53\xfb\x4c\xca\xa7\x6e\x0e\x61\x41\x1f\x60\x2b\x02\x63\x8c\x10\x62\x66\xa4\x59\x29\x33\x02\x5f\x17\xf7\xd0\x7c\x0a\xaf\xb6\x49\xab\x7a\xa6\x5c\xfe\x16\xcb\x19\x99\xad\xba\x76\x36\x50\xc0\x56\x02\x6f\xf9\xdb\x16\x37\x98\x7c\xd8\xd2\x8d\x8d\x90\x36\x72\x53\x1e\xa5\x3e\x5c\xc7\xfb\xfd\xf4\xf1\xf8\x24\xfe\x91\x30\xf2\xe9\x63\x69\xbc\x2c\x41\x56\xf6\x1f\xb0\xb8\xf1\x31\xbc\x5e\x66\xd8\x18\x59\x1f\x48\xa0\x65\xe8\x50\x4f\xc6\xeb\xbd\x5f\x4d\x5a\x9e\xc4\xff\x72\x52\x8f\x92\xe9\x05\x5b\xb0\xb4\x58\x4e\x57\x9f\x14\xcb\xd9\x0a\x93\x99\xb5\xcd\x98\x5e\xb0\xe1\xd0\x66\xe4\x8b\x22\x86\xd0\x60\xd2\x35\x81\xb4\xe1\x43\x1c\xc9\x71\x29\x13\x70\xa8\x0f\xb1\x6b\x25\x03\xca\x1e\xbb\x5a\xe5\xf1\xab\x25\x6d\xbd\x48\x25\xff\xd9\xf6\x3e\xe8\xc6\x43\x0f\xbc\x84\xb7\xee\xfb\x5e\xf7\xbf\xef\x99\x13\x0a\x40\xb9\xf0\x91\xca\xfd\xa6\xac\xd8\x20\xb6\x48\xf8\x88\x0f\x87\x49\x36\xa2\xb5\x28\x9d\x45\x4b\x2b\x51\x8a\x49\x32\x28\xda\xd6\xb1\xfb\xbe\x90\x36\x84\xca\xd0\x4c\x10\x69\xa5\x57\xfe\x95\xb4\x5c\x75\xca\x33\x55\x6e\x67\x7e\x41\x33\x28\xa9\xda\xb6\xba\xa0\x41\xa1\x86\x5d\x47\x0f\xf2\xd0\x25\x0f\x7c\x64\xed\x7e\xb2\xae\xb3\xac\x00\xb2\xd3\x9c\x65\x65\xfc\x84\xfb\xd0\x4d\x97\x11\xdf\x75\x25\x2a\x56\xd7\xb2\x71\xe3\xac\xd2\x27\x96\x0f\xdd\x53\x1e\x92\xb5\x5b\x87\x94\x5e\x89\xfd\xe1\x40\x2e\x7b\x9d\x72\xc4\xad\x65\x10\x54\xd4\x0d\xa9\xe0\x3f\xbb\xbe\x25\x5a\x68\x38\xe7\x9b\x9c\xf9\x78\x5b\xc6\x31\x2c\x04\x05\x1e\xfa\x48\x8b\x7d\x3f\xed\x39\xe6\x84\xe9\xc4\xd0\xff\x7c\x2b\xaf\x50\xf7\xd6\x6f\x6e\x5e\xf4\xeb\xe4\x0e\x07\x95\xbb\xdf\xd2\x92\x34\x88\x0b\x34\x80\xc6\xca\x2d\xd5\x19\x7b\xee\x99\x08\xf1\x82\x37\x3c\xcb\xf9\xef\x0c\x32\x4a\x3a\x11\xcf\xca\x22\x41\x37\xe5\xbe\x66\x2a\xa5\x5a\x37\x34\xa9\x17\x96\x28\x08\x6a\xe9\xf4\x4b\x07\x53\x4c\xa6\x10\xbd\xf5\xa4\x90\x41\xdd\x28\x4c\x6e\x0b\x19\x8d\x49\x46\xab\xa4\x4f\xaa\x2a\xbb\xb3\xa9\xe9\x27\x75\xce\xd7\x6c\xb2\xce\xf2\xdc\xa6\xd5\x27\x33\xbd\xf5\xdd\x9b\xd8\xb6\xc8\x86\x06\x01\x67\xd6\xe1\x10\xa9\x27\x4c\xff\x94\xaa\x00\xf8\xb5\x40\x92\x40\x86\x88\x69\xc3\xe1\x89\xf9\x7e\x6c\x16\xff\x99\x9f\xd2\x77\x89\x2e\xd1\x48\x3d\xcb\x2a\x5c\xd9\xca\x50\x29\xb6\x1a\x01\xc3\xab\xe5\x74\xb5\x9a\xac\xcb\x62\x9d\x35\x09\xd7\xd0\x19\xc6\xcc\xed\x8c\xcd\x3e\x7e\x40\x7f\x34\xdf\x82\x2f\x48\xb4\x0f\x30\x4c\x18\x3e\xf8\x15\xff\xc8\xfa\xfc\xb8\xbc\x60\xe5\x55\x1f\x81\xb0\x99\x5f\xb6\xdf\xf3\x90\x2b\x55\x91\x1c\xbc\x6a\xef\x58\x55\xf3\xb2\xa0\x68\x36\x99\x3d\x9e\xcc\x7c\x20\x27\xcd\x64\xcf\x27\x9c\xd1\xc1\xe0\xfc\xa6\xe6\xec\x6c\xf9\xeb\xed\x64\x35\x3a\x97\xe6\xd5\xca\x66\xab\xac\x26\xfb\x9a\x55\x4f\xae\x59\xd1\xf8\x06\xf4\x12\x44\x2f\xe9\x60\x36\x8f\xde\xaa\xfd\xce\xcb\x18\x7d\x09\x69\xf3\x48\x33\x91\xe0\x96\xa0\x3d\x9f\x40\x3d\x44\xee\xd5\x34\x53\x33\x4d\x15\x74\x27\xbd\x5f\x67\xc5\x9a\xe5\xa9\x8c\xe0\x4d\xce\x1a\xf6\xbe\xc9\x2a\x96\x91\x33\xa9\xf7\xd5\x79\xc9\xc8\x99\x82\x5b\xb2\xe1\x32\x1f\x56\x3a\x23\x1b\x96\x67\x77\xe9\xf4\x40\x2e\x61\x9c\xe7\x05\xf7\x6c\x36\xed\x23\x27\x6d\x98\x98\x8a\xeb\xe8\xa1\x05\x1d\xf4\x55\x4e\x5a\x60\xff\x58\xa2\x32\x36\x91\x43\x3c\x2b\x6f\xc5\xe7\x03\xb6\x59\xb3\x8f\x75\xc0\x75\x07\x83\x29\x35\xd1\xfd\xb8\x4d\x66\x60\xdb\x8c\x90\x8e\xde\x0f\xa8\xe8\x1b\x69\xb1\xb8\x48\xbc\x4c\x95\x1f\xd0\x92\x70\x88\x1c\xfe\xfc\xe6\x86\x6d\x78\xd6\x30\x2f\x07\x80\xef\xad\x0f\xb3\xaf\x9b\xac\x6a\x64\xe6\x43\xb5\x9b\xcf\x64\x96\xce\x34\xcc\x7e\x67\x76\x11\xe2\xbe\x75\x16\xaf\x89\x44\xe8\xe3\x85\x98\x39\xcb\xd9\x35\x24\x9b\x82\x02\x13\x6d\x13\xda\x43\x2d\xb1\xbe\xc8\x2e\xf6\xf4\x83\x9d\x96\xfb\xdd\xf1\x76\x7f\xdb\x99\x56\x66\x59\x61\x5e\x21\xf1\xce\x5c\xea\x74\x4f\x66\x34\x79\x21\xed\xb7\x57\x72\x7f\x34\x7f\xa9\x7a\x4f\xfc\xe5\x8a\xbe\xa5\x08\x95\xcd\x2d\x4b\x49\x6a\x3a\x83\xf8\x94\xb7\x5b\xbe\xde\x92\x82\x76\x50\x1c\x74\xa1\x6e\xc4\x44\x5e\x08\xc1\xed\xc9\xc3\x36\x91\xef\x17\x4e\x24\x3c\x13\x66\x2e\xd2\x54\x3f\x43\xe9\x60\xe6\x70\xa2\x83\xc2\x9b\xfb\xd3\x6c\xd7\xec\x2b\x96\x30\x01\x63\xa0\x6e\x93\x67\x9e\x67\x77\x2f\x58\x43\x07\x5e\xbf\x70\xcf\x48\xb7\x9a\x89\xd7\x66\xbf\x0a\x1c\x55\xd1\x9e\xd0\xb9\xe1\x20\xd3\x03\xe9\x8e\x83\xfd\x2d\x55\xb7\xfd\x05\x93\x91\x7c\xc3\xf1\xf4\xf7\xa4\x7b\x56\x34\xfc\x94\x30\x0c\x21\xea\xc9\xa0\x5b\x19\x2f\x62\xf9\x33\x06\x53\x9c\x26\xee\xdd\x35\x89\x3e\x02\xa0\x8b\x5f\xc2\xe1\xd0\x4f\x34\xfb\x41\x8d\xfb\xe0\x9f\x46\xd0\x13\x77\xea\x81\xb8\x23\x7a\x07\x8e\xb5\xfc\xdb\xce\xb6\xb3\x57\xb4\xf8\xd8\x1b\x5a\x7c\xf8\x05\x25\x91\xfd\xbf\xa4\x32\xf3\x01\x4e\x07\xd3\x83\xbe\xc1\x62\xa8\x4e\x04\xc9\xe0\xf6\x2a\x37\x49\x78\xfd\x04\x93\xd4\x89\xf1\xfb\xa2\xdc\xb0\xb6\xfd\xf2\x22\x5a\x80\x87\xc3\x01\x9b\xc8\x07\x08\x7b\xd2\x09\x7b\xef\x21\x74\x8c\xba\xd3\x98\x5f\x25\xf1\x9c\x36\x82\x6b\xf3\xbf\x3b\xc9\x48\xfc\x02\x93\x9a\x24\x2c\xa8\xb7\xfc\x4a\xf4\x85\x61\x0a\xfc\xba\x28\x2b\xa6\x62\xd5\xfc\x24\x46\xa7\x83\xa9\xf4\x99\x35\x14\x73\xb7\x4e\xdf\x2a\x94\xb0\x33\x51\x0b\x11\x83\xab\x65\xfb\x57\x4a\xa1\xc4\x29\x8e\xe0\xc4\x85\x87\x04\xaa\xec\x3a\x89\x1e\xa6\x89\x3f\xf6\xcf\xbf\xd7\x31\x14\x4c\xf4\x65\x8f\x4c\xb8\x3b\xdf\x34\xdc\x18\x1c\x45\x12\x1a\x04\x83\x9c\x30\xff\x7f\x7d\xd8\xa2\xaf\x54\x6c\xdb\x06\x33\xa2\x31\x90\x40\x68\x91\x3d\x53\xa5\x2a\x0c\xe8\x07\x22\x2c\xd2\x81\x8e\x72\xe7\x44\xeb\x0f\x9e\x88\xe1\x30\x01\x43\x24\xfd\x4c\x44\x2b\x61\x41\xe1\xb1\x86\x9d\xf5\x94\xf6\x5e\x88\x99\xc0\x1c\xb3\x08\x10\x1a\x2a\xc0\x82\x5f\xcc\x89\xce\xa8\x4f\x4c\x00\xeb\xe8\x76\x41\xd2\xfb\xb1\xfa\x57\xc5\x51\x3b\x5a\xf9\x67\x55\xf9\x67\x8c\x2f\xa8\xff\xf4\xa9\x09\x59\xea\x4b\x5e\x82\x98\x7f\x4c\xe7\x1d\xd6\x8d\xe0\xa4\xdd\x16\xa6\xb7\x2a\xbb\x8e\x7d\x17\x67\x14\xfb\xae\xa8\x83\xee\xe0\x02\x0d\x63\xc9\x56\xec\xf2\xfd\x35\x2f\xe8\x7d\xb6\xd9\xf4\x25\x9b\xa5\xa2\xe2\x92\xad\x2c\x7b\x2b\x83\x31\x9d\xf1\xe2\xac\xc6\xa5\xea\xa2\x5e\x16\x2b\xea\xfe\x68\xdb\xe5\x8a\xb8\x1f\x26\xbb\x7d\xbd\x4d\x96\x9c\x88\x1f\x2b\x7c\x20\x82\x3d\xee\x93\xa4\xc2\xb0\xba\x2d\x5b\x81\xe2\x77\x38\x4c\x6a\x08\x56\x2d\x69\xd7\xe5\x74\xe5\x24\x0a\x1a\x0e\x67\x33\x70\xa2\x8f\x96\x9a\x48\xe2\x32\x64\x48\x41\xa7\xf3\xd2\x0f\x24\xd5\x98\x08\xa2\xe5\xb2\x58\x09\x26\x70\x38\x84\xbf\x66\x96\x55\x54\x5d\x13\x8e\x0f\x07\xb9\x7d\x75\x76\xc5\xbe\xce\xf7\xbe\xcc\x43\x30\xeb\x20\x38\x38\x9a\xf2\x08\xc2\x90\x9b\xa0\x8b\x6f\xf2\x3d\xc4\x59\xf6\xf8\xae\x4d\x95\x5d\x5f\x67\x6f\x72\x86\xe4\x68\x70\xaa\x11\x36\x4c\x36\x01\x00\x7d\x59\xb1\x2b\xfe\x3e\x45\xa2\xa9\xc3\x9f\xe9\x54\x13\xac\x4e\x07\x53\x22\xc5\x19\xaf\xcb\x14\xc9\x1d\x42\x24\x7b\xcf\xeb\x74\x30\x23\xeb\xb2\x28\xd8\xba\x79\x5d\xbe\x2a\x2b\x30\x60\x50\x1f\x9b\x8c\x17\x62\xe9\xf0\x53\xe5\xc0\xce\xf6\x4d\xa9\x33\x62\x3f\x81\x92\xeb\x8a\x6f\xc4\xbf\x52\x83\x08\x7f\x81\xb5\x62\x8a\xf4\x5b\x88\x08\xbf\xaa\xb2\x1b\xf6\x2d\x7f\x2f\x8a\x75\x72\xed\xc1\x8c\xa8\x44\xac\x2f\x55\xe0\xaf\x5a\x7e\x7b\xc7\xaa\xc6\xfe\xf5\x4c\x45\x3f\x4f\x3f\x9f\x4e\x09\x18\xf1\xd9\x4c\xdc\x44\x06\xc6\x17\xcb\x93\x7f\xbd\x62\x85\xe8\xea\x9d\xe8\xff\xb1\xf9\xb8\x63\x6c\x03\x3f\x8b\x6c\x27\x3a\x16\xff\x0a\x62\x21\x45\x6f\xca\x66\x8b\xe0\xf7\xeb\x32\x67\x15\x30\xa7\xa2\x62\x93\xad\xdf\x8a\x9a\xbf\x43\x3c\x59\xf1\x97\xd8\x5b\xa9\xab\x01\x7e\x4b\xff\x59\xee\xb4\x0f\xee\xba\x62\x9e\xb8\x11\xdf\xdb\x0d\xd0\x48\x5b\xa3\x0c\xb9\x43\x4e\x92\x55\xbd\x03\x3f\xb2\x3c\x6b\xf8\x3b\xa6\x43\x7b\xea\x06\xf6\x28\x75\x23\x3f\x8f\x88\x81\x19\x27\xdd\xae\x74\xe3\x34\xe1\xa3\x13\x0f\x9d\x0b\x86\x3b\x51\x79\x6b\x65\x4c\xf7\x40\x01\xa0\xba\xd9\xef\x64\xe2\x5c\x4c\x90\x3c\x60\x15\xd3\x2f\xd1\x1a\x47\xf1\x50\xf6\x8d\x14\x9b\x84\x0c\x6d\xd0\xe1\x4f\x15\x31\x03\xed\xe4\xee\x28\x97\x5c\x75\xfd\xb0\xcd\x04\xab\xd7\x2a\xff\x12\xdc\x98\x66\x84\x54\xbf\x3f\x14\x4f\xc5\xfb\x24\x08\x50\x95\x34\x38\x3d\x69\xba\x2e\xef\x9c\xb8\x09\x87\xe3\x88\xd5\x57\x3e\xaa\x93\xf2\xe4\xac\x7a\x21\xdc\xa4\x5b\x6e\xdb\x18\x27\x08\xeb\xaa\x58\xcd\x7f\x87\x75\xa9\x8d\xc6\x26\x6f\xcd\x62\x30\x53\x2b\x90\x45\x56\xfa\x2f\x97\x62\x78\x59\x59\xac\xa9\x3a\x81\x5e\x9e\x80\x3d\x95\x4a\x8b\x61\x79\x5e\x08\x3e\xfe\xad\xb8\x94\x75\xc2\x27\xe6\x7a\x52\x4a\x07\xd3\x05\x92\xbf\x51\xea\x94\x48\x86\x4a\x06\x9d\x77\x1a\x77\x69\x29\xd9\xe2\x6b\x51\x45\xe9\x5d\x0d\x75\x05\x9e\xbf\xac\xc7\xd5\x57\xf9\x82\x9a\xfd\x4b\xc0\x3c\xe8\x02\x85\xe9\xb6\x88\x8d\xb1\xaf\x45\xb4\xaf\xcb\x44\x67\x8f\x4b\x30\x76\xb3\x91\x30\x2f\x35\x09\xf6\xf2\x90\x30\x3f\x2b\x89\xc9\x0e\xc1\x4c\x9a\x08\xbc\x9c\xae\xc0\xa5\x54\x45\xe9\x0f\x97\x1c\x59\xb1\xbe\x18\xee\x37\xc5\x47\x26\x3e\x49\xe4\xd6\x90\x9b\x1a\x1c\x56\x0c\xd0\xf4\xeb\xe3\x9f\xaa\xb7\xcb\x60\x61\x52\xbb\xa1\xf7\xe7\xb5\x01\x34\xae\x61\x4a\xbc\xa8\xce\x4b\x96\x70\xdc\x43\x88\x9c\x0a\xe4\xda\x2f\x0b\x90\xe0\x5f\xe0\x93\x85\x36\x83\xab\x9c\x06\x04\xf5\xdc\x65\xd5\x66\x9d\xad\xb7\xaa\xa3\x97\x55\xb9\x2b\x2b\x18\x39\x51\x14\xcc\x66\x73\x93\x15\xd9\x35\x10\xa3\xfe\x07\xad\xf5\x80\x09\x79\x9d\xbd\xc8\x2a\x41\x58\xe8\xeb\xbe\xae\x6b\x8d\x75\xa9\x33\xaf\x4e\x76\x37\x29\x63\x83\x87\xe4\x65\x66\x7a\xd6\xb5\xdd\x82\xc4\x90\xd1\x12\x82\x22\xd5\xdd\x82\xc4\x5c\xda\xfa\x5b\xfe\x9e\x6d\x9e\x14\x6b\x56\x37\x65\xe5\x35\xb0\x19\xea\x64\x16\x94\x6e\x8e\xba\x07\xf3\xd3\x1d\x2c\x22\x91\x03\xea\xa2\x27\x6f\xd4\x0d\x75\xe4\x82\x32\x3f\x8a\xc6\x96\xf0\x3a\xcb\xcc\x41\xb5\x39\x4e\xfd\xaa\xf9\xbb\xb7\xf3\x7e\x19\x0b\x44\x5d\x29\x61\x64\x30\x0b\x3b\x10\xb4\x37\x65\x92\x06\xef\x16\xfd\xac\x8a\x7e\x26\x7c\xa2\x09\x0e\xfb\xfa\xfd\x63\x5f\x37\x72\x66\xdf\x56\xe5\x8d\x82\x38\x5b\xd1\x79\x82\x9e\x5a\x4a\xc6\x2c\xcd\x90\x60\xf0\x98\x23\xc2\xb0\x40\x7d\x33\x8d\x39\x81\xbf\x51\xc2\xd6\xe4\x03\xe1\x71\x20\x48\xb8\x72\xf7\x35\xdb\x66\xef\x78\xb9\x17\xaf\xbc\x0f\xa0\xbb\x8a\x89\x53\xd5\xdb\xda\x48\xed\x05\xe9\x70\xb6\x92\x2b\x0b\x7a\x0f\xfa\x12\xd7\xc6\x32\xd2\xa2\x9b\xc1\xd4\xc9\x70\xaf\xc6\xf0\x73\x83\x58\x00\xa5\xf7\x90\x98\x30\x80\x09\xc8\x0e\x24\x39\x15\x79\x63\x20\x3d\x90\x4c\x6e\x18\x56\x85\x44\x44\x5e\x5d\xc8\xab\xa3\xc9\xb2\x19\x91\xf0\x6b\x95\xb5\x12\xf4\x7f\xd0\x80\x56\x29\x7a\xc7\x56\xd0\x14\x90\xae\x72\x70\x6f\xd4\x04\xc4\xf6\x26\xd3\xa2\x62\xe2\x9c\x72\x18\x5d\x66\x5b\x54\x4c\x9b\x53\xd8\x94\xbb\x43\x9c\xad\xd2\xd1\x1a\xa3\xf7\x51\xe3\x74\xd5\xcb\xce\xb9\xd5\xdd\x15\x61\x72\xea\x6d\x98\xe2\x9e\xdb\x78\xb9\x2e\x0b\x41\xf8\xea\xca\xaf\xcb\xc4\x79\xf3\xc8\xc0\x5a\x9d\x41\xed\x3d\xff\x4b\x56\x6f\x13\x19\x3c\xd8\x07\x6e\xc9\x0f\x30\x52\x4b\xe8\x8e\x4b\x92\x0a\x76\x7b\xd6\x4c\x80\x8f\x70\x94\x43\x20\x46\x99\xcd\xfd\xc5\xd8\x3f\x0f\xdd\x17\x40\xf0\x5e\x75\x73\x97\x33\x99\x1a\xcb\x6b\xe9\x66\x73\x8c\xb5\x68\xca\x5d\xd0\x40\xa7\x7b\x3c\xe5\x02\x58\xd8\x9f\xc5\xb9\x63\xef\x11\x83\xc0\x79\x36\x0d\x72\x70\x79\x7d\xce\xde\xbf\xc7\x90\x28\x3f\x18\xbd\xdc\xe9\xd1\xd5\x71\x8a\x4f\x3b\x90\xe3\x68\xf2\x47\x7e\xf0\x4a\xc5\x61\x10\xc4\x65\x5c\xa2\x0e\x77\x20\xf9\x9e\xe1\x70\x50\xb7\x2d\x3a\x5e\xa5\x56\x54\xb2\xff\x1d\xc8\x38\x88\x24\x53\x7f\x6b\x6e\x7e\xb7\x9a\x96\xdd\xf9\x5f\xa5\x02\xdb\x7d\x17\x48\x8d\x17\x8d\xfb\x76\xe3\x49\x56\xf0\x1b\x63\x3e\x10\x3e\x08\xc4\xf7\xe9\xf4\xbb\xd7\xec\x1c\x18\x97\x78\x1a\x06\x17\x29\x97\x00\x82\x2a\x2b\x2d\x37\x08\xf9\xa0\xa5\x7d\x7d\x55\x43\xf4\xdd\x23\xf5\xf3\x2e\x82\x47\xdd\x45\x10\x7a\x14\xe5\xda\x73\x77\x29\x6f\x9d\x7e\x8e\xd7\x96\xfc\x52\x93\xd2\x6f\x6c\x24\x1b\xa7\x66\xf2\x1d\x53\x02\x3d\x6b\x7b\x18\x84\x81\xf0\x04\x34\xae\x3d\x82\x25\x45\x32\x1c\x65\x94\x4e\xb9\xfb\xf7\x72\xe6\xa9\x3b\x6f\x20\x85\xf5\xee\xeb\xfd\x15\xbf\xa4\xb5\x92\xe4\x43\x7a\xf7\xd8\xf0\xbd\x92\x3f\x19\x0c\x7a\xf5\x61\x7a\x9b\x80\x57\x88\xb4\xc5\x56\x45\x36\x95\xdc\x6b\xc0\xcd\x75\xc8\x73\xef\x64\x68\x6c\x3a\xa7\x0d\xec\x6d\x47\x9c\xb0\x75\x47\x0a\xe8\x5b\xcd\xd3\xc1\xdb\x1c\x61\x42\x3b\xd3\xbe\xec\xe4\xee\x3a\xb1\x7b\x97\x04\x7f\x80\x8e\x87\x90\x92\x0e\x8e\xe0\xfa\x7e\x93\x82\xd6\x8b\xc6\xfc\xd6\xb2\x30\x1f\x1e\xc8\x92\xad\x30\x4e\xd1\x3a\x2f\x0b\x10\x0b\xe8\xea\xfe\x86\x42\x71\x82\x15\x17\xf4\xa4\x69\xaa\x04\xf1\x0d\xf2\xf7\xd3\x98\xa5\xda\xfc\x5e\xca\x0a\x47\xf3\x2b\x85\x65\xf6\xb4\x00\x0b\x86\xd4\x5f\x17\xc1\xec\x1c\x39\x60\x6a\x6b\x41\x22\xee\x62\x39\x5d\x69\x84\x6a\x1b\x1c\x97\xc6\xc4\xdb\xb4\xed\x79\x02\xe4\x77\xab\x1f\x68\xac\x5c\x6c\x8b\x90\x0a\xc7\x62\x09\xfd\xac\x2c\x29\x24\x34\x87\x43\xbb\x70\x71\xfe\x5b\xb2\x48\xab\x36\x6b\xaf\xf4\x28\xfe\x46\x77\x06\x0c\x4f\x4c\xbd\xb6\xe6\x3d\x47\x9a\xfc\x02\xc0\x89\xd3\xd4\x1e\x08\x75\x2d\x7c\x20\x8b\x3b\xd3\x06\x9b\x67\x08\x43\x6c\xb4\x1a\x4c\xa3\xa4\x16\x88\x29\x72\x6d\xc4\x74\x26\xec\x11\x03\x8f\x87\xe9\x01\x13\xe9\x61\xcd\x0b\xe8\xa8\x43\xe8\x49\x4a\x42\x12\x14\xa3\x0e\x95\x89\x89\x72\xcc\x3e\xde\xdc\x41\x8d\x0e\xe1\x2e\xd3\xf3\x8e\xd9\x04\xba\x88\x76\x2e\x5e\x96\xde\xae\x05\xc5\x02\x74\xcb\x28\xa4\x94\x31\x41\x6f\xca\xa6\x29\x6f\x8e\x37\xee\x99\xd6\x16\xc4\x11\x63\x36\x91\x7d\x74\x7b\x07\x9b\xdd\x1f\xcb\x52\x42\x76\x57\x01\x72\x9e\x6c\x9b\x9b\xbc\x15\xb7\x07\x9f\x73\x05\x26\x93\x26\xbb\x06\x0b\x8f\xb6\x35\x0a\x24\x47\x60\x20\x71\xb8\x4b\xc8\xc6\x6d\x71\x3c\xf6\xd5\x72\x8b\xbc\xd3\xa1\x36\x79\x33\xf0\xad\x07\x75\x98\x6e\x75\xdf\x5c\x06\x7a\x39\x5d\x0d\x28\xe5\x10\x36\x44\x32\x6d\x0a\xf5\x05\x95\xba\x4c\xf6\x72\xba\x02\x58\x93\xa0\x42\x3b\x8d\xbc\x2c\xac\x44\x1e\x5c\x6f\x2d\x99\x18\xd6\x58\x4c\xeb\xcd\x4e\x7a\x47\x95\x7c\xd4\x54\xf2\x48\x02\xac\xe1\xb7\x1c\x25\x09\x88\x21\x77\x07\xe1\xc6\xbe\x29\xab\x0d\xab\x5e\x97\x3b\x90\x52\xc9\x80\x17\x6d\x3b\xc5\xb2\x37\xb5\xa2\x13\x7b\x11\xeb\x0b\xba\x51\x11\x6c\x7d\xb6\x2a\xf5\xd3\x75\x58\x3c\x30\xe8\x9e\x93\xe2\x1a\xfc\x25\x82\x8d\x4c\xe3\x4b\x0f\x34\x5a\x11\x1b\x4c\xe3\x9b\x17\x9c\xa3\x96\xf6\x49\x36\x14\xf8\xce\x60\xa1\xae\x4c\x46\xdc\x47\xb3\xac\x51\xc2\x16\xd3\xf4\x81\x13\x54\x6c\x22\x30\xa9\x47\x3a\x96\x11\x23\x4e\xeb\x59\xe5\x1e\x3e\xfc\x1f\x70\x0f\xb0\x52\xa5\xce\xfb\xad\xee\xac\x42\x7e\xfe\xe0\x1e\xc6\x96\x15\xbf\x73\xe7\x00\x58\xf2\xc1\x26\xaf\x9d\xfd\x20\x80\xc6\x1e\x6e\xf3\xa3\x8c\x64\xa1\x5b\x49\x24\xf3\x70\xb3\xaf\x25\x42\xd3\xed\x0e\x7a\xf1\x1d\x79\x48\x97\xfa\x0a\x6b\xd0\x7b\xc0\xbc\xa9\x7b\x0a\x5e\xda\x69\x89\x01\xbb\xe5\x5a\x50\x7b\x90\x0f\xa5\x23\xd5\xe9\x20\x2b\xe2\x78\x2e\x68\x52\xa7\xec\x43\x52\x92\x42\xd5\x37\x40\x75\xcb\x94\xcb\x42\x31\x71\xf4\x60\x0b\x74\xcb\x8b\x4d\x79\x2b\xb0\x99\x5f\x20\x37\xce\xf9\x42\x97\x4d\x22\x2b\xfb\x09\xa0\x3d\x79\x84\x1e\xd3\x91\xa2\x78\x32\x06\x25\xcd\x08\x3a\x02\xd8\x8e\xf7\x63\x04\x37\x7e\x37\x4d\xb9\xeb\xf4\x22\xa7\x33\xb2\x9f\x65\xba\x7a\xd5\x71\xdf\x73\xd9\x95\xf4\x44\x67\x37\x4a\xec\xe7\xad\x3a\xb6\xb6\x2d\x27\xe2\x51\x72\xf5\xb3\xb2\x89\x3c\xd8\xde\x91\xd5\x8b\x18\x3e\x84\x2b\xa3\xdb\x41\xfa\x4c\x4f\x3a\x97\x29\x99\xca\x7c\x70\x1f\xb9\xe0\x04\x1a\xff\xeb\x57\xe5\x2d\x44\xfc\x5d\x37\xd5\x7e\xdd\x94\x15\xa5\xd2\xf0\x3c\xb2\x38\xaf\x8d\xd5\x7d\x39\xf4\xb2\x57\x63\x38\x4c\xbc\xdf\x34\x90\xcd\xd8\x35\xc1\x1b\xef\x57\xc6\xa4\xa6\xe0\x75\x53\xc3\x0b\x78\x9e\xc8\x65\xb7\xd9\xbe\x29\x35\x79\xca\x25\x0e\x29\xdf\xb1\xea\x2a\x2f\x6f\x91\x7e\x54\xbd\x03\x49\x9c\x7c\x9e\xc7\x9f\xb2\x51\xa7\xea\x2e\xdb\x6c\x78\x71\xed\x21\x4f\x4c\x7a\x7a\xec\x3e\xb1\xbd\x1d\xba\xa8\x15\x93\x84\x59\xa7\x5c\xfd\x28\x40\x4f\x44\xdf\x34\xf8\x85\x53\xff\xe7\xb8\x67\x1e\x80\x83\x83\x99\x74\xeb\xaa\x99\xf8\x08\xfb\x43\xa1\xd5\xff\x02\x6f\x44\x74\x35\x12\x58\xcd\x72\x14\xec\xa6\xc1\xef\xbe\x05\xc9\xd7\xe1\xd4\x15\x05\x6f\xc9\x87\xde\x10\xff\x83\x7c\xc0\x14\x41\xd8\xc5\xe1\x1c\x07\x1a\x60\xef\xb6\x08\x04\x6f\x95\xbc\x1d\xa9\x6b\xa0\x10\x67\x6d\xab\x23\x77\x6a\x4a\x47\x3b\x82\xf8\x74\xee\x62\x96\x8e\x67\xc6\xe9\xf4\x43\x48\x20\x87\xa1\x88\xa0\xf6\x4f\xf8\x28\x8e\xdc\x3f\xe1\xe3\xc4\xd1\x02\x05\xf4\xdb\xc2\x7b\x12\xe4\xf0\xa2\x55\x5a\x6b\x32\xa7\x53\x84\x3f\xe1\x1e\xf5\xd9\xfb\x68\xc5\xa7\x24\x4b\x3e\x78\x4e\x30\x62\xcf\xa4\x80\x25\xfb\x84\x1f\x9c\xd8\x16\xba\xaf\x3e\xc7\x45\x9b\xae\x5f\x93\x00\xd5\x89\x47\x02\x01\x07\xa5\x52\x2a\x57\x7f\xfd\x6c\x92\x63\x69\x99\xa9\x3b\x3d\xcd\x69\x7b\x1f\x1d\xe5\x4a\x1f\x85\xea\x28\x55\x7a\x49\xcd\x03\x26\x86\x89\xf4\x71\x77\x1c\xe6\x17\x5a\xee\xdc\x29\x71\x19\xb6\x65\xd8\xdf\x72\xba\x1a\xe9\x27\x3d\x2c\x9a\x89\x22\x20\x22\xc2\x92\xc7\xfd\x8d\x3e\x55\x8d\x56\x38\x55\xfc\xa1\xfb\x36\xc5\x74\x37\x96\x67\xff\x8a\x83\x3c\x26\xd9\xc2\x0b\x33\x8a\x57\xc2\x24\xa6\xe3\x31\x0c\xf6\x57\x7c\x39\x13\x7d\xe4\x54\xfc\x11\xe9\x03\x58\xf5\xe3\xf3\xb8\xe0\xcb\xc7\x7a\x1e\x8f\x3f\x72\x1e\x17\x7c\xf9\xa9\x9e\xc7\xa7\x7d\xf3\xc0\x24\x9b\x5c\x57\x7c\x23\x5e\x64\x2a\xff\x04\x77\xad\x6d\xa8\x12\x1d\xb9\xd9\x9d\xf2\x71\xb7\x02\x3e\x37\xcd\xf1\x27\xe6\xcf\xb4\x5b\x91\xe4\x94\x2f\x8a\x9e\x39\xc3\x9e\xb5\x6d\x5f\xb1\x58\xc9\xa2\x48\x8f\xb6\x5e\x14\x63\x3b\x7c\x31\x72\xfe\x26\xa5\x5e\xe2\x34\xb2\xc4\xbf\x7b\x4b\xdc\x76\x97\xf8\x77\xb3\xc4\xa9\x5d\xe2\x34\xb2\xc4\xbf\x93\x2d\xe5\x8b\xb2\xef\x6c\x01\xb6\xda\xb6\xb7\x5c\x1c\xf9\xa2\x4c\x8f\xb7\x5f\x94\x63\x3b\x83\x72\xe4\xfc\x8d\x89\x4c\x72\x9a\x4d\xb2\xf7\xbc\x06\x20\x8a\x2c\x85\xa0\xf7\x5e\xa5\xbc\x5b\xe9\x67\xac\xe4\x09\x79\x7c\xbb\x3f\x94\x15\x18\x7d\xcc\x5b\x51\xf5\xbf\x15\x12\x89\x6d\x7b\xb6\xe9\xc3\x19\x9e\x0f\x9e\x1f\x8c\xdf\x33\x41\xb8\xa0\x07\x9d\x90\xfc\x14\x21\xfb\x29\xc6\x29\x86\x44\x8e\x49\x84\xe5\x9c\x41\x51\x23\xd9\xe3\x1f\xc5\x18\x59\xae\x4a\x14\x4b\x6b\x6c\x82\x9c\x8f\x92\x22\xe9\x6b\x6f\x0c\xe2\x7d\x2b\x37\xed\x9b\xa5\xcd\xd6\x0e\x44\x2b\xc7\x3a\xa6\xbd\xda\xa3\x88\x6a\xad\xa1\xd1\x1d\xbb\x66\xc1\xae\xca\x89\x2c\x75\x62\xed\x15\x28\xac\xcf\x7f\x4b\xc4\x5e\xb4\x60\x35\xd1\xd6\xe2\xf8\x15\xa9\x6f\x0d\xfe\x3f\x54\x9f\x6d\x8c\x11\xc2\xd6\x62\x56\x3f\x81\x91\xab\xab\x18\x53\x8b\xf3\x66\x29\x56\x77\x20\xca\x70\x38\xbd\x3f\x10\xb5\xb0\xae\xa2\xec\x5e\xd9\xa6\xba\x67\xad\x87\xf4\xad\x1b\x48\xa8\xd5\x0c\x10\x8c\xa9\x26\x05\x6a\xe1\xe4\x0f\x81\xb1\xf5\x24\xdb\x6c\xa4\x42\x5e\xd9\xf6\xa2\x8e\xd5\x2d\x22\xf7\x75\x60\x7c\xe5\x45\x99\x98\xb0\xf7\x0d\x2b\x36\xc9\xfd\x81\x70\x72\xcf\x1b\x76\x93\x1a\xc8\x3b\xe0\x79\x0d\x39\x87\x45\x47\x35\x5d\xae\x48\x93\x38\xce\x65\xe1\x50\xb8\xe3\xbb\xab\x53\xf3\x37\x60\x41\xa4\x7b\x4a\x10\x2f\xa4\x71\x3b\xc2\x73\x0e\xb6\x2d\x8e\xd5\x3b\x58\x34\x0e\x87\x89\x33\xb2\x34\xf7\xe6\x98\xf0\x49\x68\xdb\x0b\x89\xcc\xad\xe2\x16\x02\xbd\x65\x0d\x43\x84\x91\x02\x43\xea\x86\xda\x57\xda\x7f\xd8\xe2\xfb\x6e\x8c\x5c\xa9\x33\x45\x12\xac\xba\x51\x6e\xa6\x13\x5e\xff\xf0\x4e\xd0\x4f\xfa\x2f\x3a\x25\x3d\xdd\x42\x42\xb1\xbe\xf1\x2e\xeb\xa6\xac\xd8\xe6\xe9\xab\x57\xf4\xde\x82\xd6\x04\x62\x05\x6e\xcb\x7c\x13\x33\x31\x93\x06\x2b\x61\x0d\x29\xf0\xd4\xb6\x2e\x61\xa9\x94\x5a\x1e\xc4\x88\xae\xd3\x06\x69\x02\x2b\x63\x6a\x3f\x5c\x2a\xf5\x5e\x9a\xf4\xcc\x5f\x2c\xcc\x31\x1f\x61\x91\x43\xda\x84\x86\x33\xe2\x90\x1e\xde\xe5\x42\x6c\x8e\x94\xc1\xcd\x4b\x0f\x47\x78\xd7\x86\x94\x11\x89\x61\x84\x3b\x24\xa5\x6f\x11\xe4\xbf\x3c\xa4\x9c\x5c\xf2\xa2\x61\x55\xcd\xd6\x4d\xfd\x13\x87\xe8\x28\x6b\x4d\x07\x3f\xcd\xd6\x5b\x40\x57\x85\x5c\xf0\xb1\xa9\xbb\x22\xc2\xfe\x49\xf7\x48\x3a\x63\xf3\xee\xbc\x92\xe1\xd4\x45\x85\x01\xa5\xa5\x56\x47\x06\xeb\x70\x29\x69\xbb\x14\x47\x5f\x52\xba\x1a\xda\xe0\x71\x52\x8b\x9e\x61\x52\x1c\x30\x26\xc5\x22\x29\x15\xac\xb7\xad\xf9\x93\xce\x48\x3d\xb9\x54\x56\x4e\xdc\xb7\x43\x84\xb0\x32\xca\xc0\xf2\x79\xc3\x6e\xa8\xab\x21\x96\xca\xd9\xd2\x5a\x6c\x83\x23\x92\x78\x49\xf5\xd6\x8e\xc5\xbd\x95\xde\x46\x65\x08\x94\xb4\x0c\xe0\x96\x84\x1f\x68\xf7\x5c\xb8\x7d\x8a\x0f\xd6\x43\xca\x9b\xa2\xd8\x86\x32\xf4\x9c\x55\x53\xf0\x1c\x4c\x89\xf4\x57\x0c\x20\x0b\x74\x75\x5d\xa2\x2b\xac\x05\x9a\xc6\x08\xf9\x63\xeb\x39\x14\xce\x98\xc6\xe8\x9e\x71\xac\x6a\xa7\xbd\xa0\xeb\x3a\xcd\xc5\xc7\x48\x45\xe2\x1a\xca\x34\xce\x3b\xc3\xc4\xab\xab\x4d\x91\x4a\x6b\xd3\x70\xf4\x2a\x28\xa6\x32\x44\xea\x07\xd1\x97\x0b\x12\xd6\x46\xa2\x9c\x5c\x55\xe5\xcd\x0f\xfb\xa6\xe6\x1b\x46\xeb\x00\x76\x86\xc3\xa4\x0c\x3c\x0f\xb9\x55\x4d\x5b\x1c\x81\x71\xaa\x41\x13\x9a\x18\xe4\x5c\xf6\xe1\x30\x07\xb6\x94\x3d\x54\x19\x18\x21\x91\xf0\x03\x60\x27\x67\xb7\xca\x7d\x23\x70\x5e\x69\x48\xa4\x12\xbb\x00\x23\x30\x6d\x00\xc6\x9d\x91\x2e\x3b\x43\x75\x00\xfd\xd2\x40\xba\x83\xdd\x87\x43\xef\xa7\xa5\x14\xbb\x77\xcd\xdc\x53\x71\x06\x11\x73\x5d\xee\x9a\xee\xf5\x19\x21\xba\x40\x22\xce\xab\x07\x4c\x1e\x7c\x4b\x7b\xe1\x43\x3c\x1b\x0f\x12\x43\x60\xb6\xfb\x10\x05\xa4\x8d\x42\x48\x49\xad\x2d\xba\xb2\xaa\x50\x3d\x60\x09\x56\xf2\x17\x0d\xca\x30\xf1\x3f\x48\x80\xac\xcb\xea\x38\xf1\xe1\x8e\xa5\x7a\x76\xe3\xc4\x78\x3d\x9a\x1a\x0f\xaf\x59\xf9\x41\x3d\xb8\x68\x6b\x95\x13\x59\xb6\xee\x44\xad\x5b\xfd\xa4\x61\xa9\x59\xb9\x19\x54\x40\x21\xfc\xf9\x01\x6b\x57\x2d\xc4\xe2\xcd\xa4\x82\x6e\x6d\xad\x87\x37\x40\xf2\x68\xdd\xf5\xeb\xec\xe9\x9e\x50\xec\xfb\xb2\xf9\x0b\xdf\x6c\x58\xd1\xb6\x49\x4f\x89\x7d\x8d\x7c\xab\xfc\x19\x86\x98\x1a\xb1\x26\xca\xe2\xc0\x55\x0b\x0e\x87\xe8\x2f\xaf\x5f\x7c\x87\xe0\x7b\x5f\x23\x6d\x50\x31\x1c\x26\x7c\xa2\xf5\x1b\xf2\xe6\xf5\xb5\xb2\x6e\x25\x3d\x44\x54\xb0\xe1\xa4\x14\x77\x2e\xa3\x75\xef\x24\x48\x45\x7d\x85\x66\x36\xa0\xb4\x72\xe6\x9f\xe9\x69\x2e\x92\x42\x49\x18\xa4\xbc\x41\xfe\x6a\x5b\xc1\x23\x78\x93\x07\x01\x41\xe6\x89\xfd\xc7\xca\x0a\xff\xab\x62\xd2\xf1\xb1\x5b\x64\x56\x9c\x49\x4b\xea\xfc\x1a\x99\xda\xe0\x7c\xa7\xfa\x18\xc7\xc6\x8b\x75\x2c\x33\x73\xc6\xbb\x1e\x7b\x5d\x03\x68\xab\xb5\xdd\x1d\x5f\x1b\x48\x17\x32\x57\x47\xa3\xd6\xf6\xf7\xa3\x6b\xfb\x4e\xbc\xed\x76\x06\xe2\x67\x74\x75\x7f\xef\xae\x0e\x84\x99\xc7\x97\x17\xe9\x3d\x5c\x20\x4e\xfb\x8e\x4f\x6f\x6b\x93\x54\x9e\x02\x36\xba\x9e\x92\x06\xd5\xc2\x56\xc1\xb8\x69\x57\x89\x3b\xee\x1d\x31\x3a\xa4\xc0\x49\x0f\x0d\x3a\x0a\x17\xdb\x77\x9c\x7a\x93\x9d\x0e\xa4\x84\xfc\xe1\xc5\x42\xbd\x4e\xbb\xfe\xe5\x6a\xd5\x70\xff\x98\x27\x2d\x37\x3e\x6c\x67\xc1\x98\x94\xda\x7a\x39\xb4\x46\x2f\x3e\xcc\x95\x04\x8c\x84\x1f\xc4\xba\x45\xb6\x7b\xe0\xcd\xb1\x48\xbf\x9e\x88\xea\xca\xe6\x54\xc9\x15\x0a\xf8\xe6\xaa\xa4\x07\x94\xbe\x02\xc3\xc0\x85\x2a\x13\x74\x7e\xdd\xb6\x28\x05\x16\xc0\x95\xa5\x61\x94\xca\x3a\x71\x11\x84\xf1\x03\x24\x9c\x5a\x47\xbc\xb9\x62\x8a\x7c\x73\x4d\x7f\x6e\x52\xf2\x20\x25\x03\x20\x16\x92\x66\x26\x2c\x6a\x5c\x12\xf8\xfe\x01\x03\xce\xad\x9b\x0b\x87\x8b\x7b\xe8\xe7\x77\x95\xb7\x7a\x37\x89\xa4\x83\xbe\xaf\xe9\xd5\xc4\x73\x2c\x26\x82\x5d\x72\xfd\x54\x2e\xe9\xcd\xa8\x57\x99\x4b\xde\xd9\xda\x62\x62\x6f\xe8\xbb\x68\x65\xb9\x22\x70\xce\xdf\xd0\x60\x4b\xa4\xed\xec\x78\x36\xdf\x5c\xd0\xe9\x7c\x33\x1e\xe3\x6d\x50\x65\xb9\x59\x49\xe6\x23\xb0\x72\xc8\xe9\x76\xd4\xad\x29\x27\xb6\x8e\xf4\x21\x38\x10\xdf\x5f\x68\x4f\xd7\x91\x1e\xe4\x6c\xc9\x76\x7c\x7d\x71\xd9\xb6\x37\x17\xf9\xe8\xba\x6d\xd7\xe3\xeb\x8b\x37\x6d\xfb\xee\x62\x2f\x7e\x0d\x1c\x66\xb6\xdb\x81\x38\xdf\x49\x79\x5b\xb0\xea\x99\x7a\xf8\x48\xbc\x12\x5e\x44\x5a\x8b\xdf\x3b\x5e\x5c\x0b\xe0\xd1\x44\x38\x00\x6c\xc5\x72\x96\xd5\xac\xef\xbb\x94\x36\x5a\xce\x86\x11\x23\x90\x72\xa5\xa8\xf7\xa2\xcd\x73\x29\x9b\x8a\xcd\x49\x30\xdd\xfd\x93\xa2\xe0\x6d\x86\x78\x51\xb0\x4a\xbc\xde\x12\x7c\x5e\x40\x98\x83\xa4\xa0\xd7\x17\xd4\x44\xa9\x58\x8f\xdf\x08\x6a\xd0\xfd\xb4\x1f\xbf\xc3\x24\xf3\x3e\x6d\xc7\x97\x98\x54\xde\xa7\x7c\x7c\x83\x49\x01\x54\x8b\xeb\x6a\x43\xe3\x52\x5a\x63\x16\x28\x15\x10\xeb\x71\x3f\x00\x1a\xdb\x47\xa9\x13\x28\x3f\x72\x88\x7d\xd0\x4f\xe6\xf7\xa3\xd8\xec\x13\x3a\x9a\x6a\xb5\x44\xef\x05\x03\xb7\xc8\xab\x06\x93\xea\x0f\x8e\x91\xeb\x9e\x30\xd9\xd1\xa2\x6d\xcb\xb6\xcd\xda\xb6\x22\x08\x70\xcc\x83\x27\xf9\xae\x7b\x92\x6f\xba\x27\x79\xd3\x3d\xc9\xcb\x3f\x70\x92\xff\xac\xe3\x3a\x1d\x22\xfe\xf0\x49\xfe\xf3\xce\xeb\x61\x98\xc0\x64\x70\x0c\x79\x24\xf6\x94\xdb\x76\x87\x3b\x58\x43\xfc\x27\xfa\xf1\xff\x0d\x1e\xf1\x67\xf7\x30\x41\xd0\x64\xeb\xb7\xc7\x29\x02\x97\xf3\x24\x19\x24\x51\x78\xcb\xa4\x8d\x7f\x93\x94\x13\xe8\x01\x4b\xb5\x41\xe2\x3b\x55\xaa\xb8\x0e\xd6\xc2\x34\x61\x8a\x65\x94\xa1\x35\xa2\x06\x43\xe0\xa8\x1e\xad\x74\xc0\xf3\xcc\xc4\x3a\x4d\x0a\x27\x7b\x60\x92\x2d\xa7\xab\x78\x2b\xd2\x24\x59\x48\x6e\x30\x7c\xef\xb9\x4b\xab\x26\xa4\x18\x31\x7c\xb0\x1e\xe2\x6e\x81\x1e\x18\x3f\xbc\xa5\xba\xd1\x1f\xe1\xec\xf5\x22\x24\x63\x2f\x7f\xd1\xa0\xcc\xb0\xf5\x7a\xc0\x72\x22\xff\xfa\x00\xa6\x5e\x36\x88\xf0\xf4\x66\xe5\xba\x8e\x5d\xb7\x59\xab\x1f\xba\xc6\x84\xb0\xf8\xf0\xd0\x35\xd0\x94\xb9\xc1\x6b\xf2\xba\xfc\x11\x3e\xa6\x82\x0d\x96\xfe\x86\xce\x9f\x26\x2c\x0c\xaa\xf3\xf2\x16\xe9\xcf\xdf\x64\x35\x2f\xae\x53\x54\xdf\xf2\xe2\x1a\x91\xac\xde\xb1\x75\xf3\xa3\xa8\x09\x6d\xf7\x4d\xf9\x17\xbe\x91\x01\x6e\x54\x68\x9c\x7b\xe4\x05\xdf\xa8\x19\x4a\x51\x98\x34\xf5\xba\xe2\xbb\xfa\x26\xcb\xf3\xf1\x86\x67\xd7\x65\x91\xe5\xa2\xde\x21\x0c\x92\x73\xbd\x2d\xeb\x48\x4c\x9c\x3a\x45\x8c\xd4\xa4\x66\x48\x87\xc6\x19\xcc\xc8\x4d\xf6\x5e\x92\x9f\x32\x92\xcc\x4d\xf6\x1e\x68\x54\xf5\x8b\x17\xaa\x70\x36\x15\x3f\x64\xd1\x6c\xaa\xe3\xd1\x7c\x39\x25\x72\xc3\x8e\x46\xa4\x29\xf6\x37\xb1\x08\x59\x70\x67\xbe\xcd\xcb\xac\x49\x1a\xb0\xe6\x26\x97\xbc\x96\xa1\xeb\x23\xd5\x07\x32\x8b\x89\xd7\x08\x1f\xc8\xe5\x36\xab\x5f\x49\x2f\xef\x8e\x17\x35\xda\x82\x84\x42\x86\x24\xd0\xd7\xdd\x31\x02\x55\x1d\xcf\xe6\xd2\x8d\x99\x0f\x87\x52\x99\x25\x13\x85\x58\x5e\x09\xa5\xc8\x30\x8a\x88\x14\x8e\xdb\x2e\x5b\xd6\xab\x8b\xe9\x62\x30\x4d\x13\xf1\x27\x9d\x91\x82\xca\x6f\x04\x7e\x4f\x49\x81\xa3\x21\x79\x94\x79\x78\xc7\x0b\xce\x04\x9a\xf5\xe3\xea\x58\x80\xc6\x16\x53\x03\x77\x71\x7f\xe9\x81\xd6\x80\x4f\x9c\xdf\x1e\xd8\xf9\x25\x26\x3e\xa0\x0a\xf2\xe1\x6a\x68\xc8\xe5\xce\x3c\x48\x59\x9e\xdf\x49\xf0\xd7\x28\x3e\x5d\xae\x88\x12\x18\xa7\xdc\x09\x2d\x03\x40\x27\xfe\x50\x37\x60\x61\x0b\x7d\xc8\x96\x5f\x91\x84\x0e\x1c\xea\x86\x6c\xc8\x2a\x15\x0b\xff\xb7\x64\x9d\x15\xef\xb2\xba\xd5\x71\x7d\x5b\x88\xf3\xdb\xca\xa0\xbe\xad\x8c\x35\xd8\xf2\x9b\x6b\xfc\xef\xe7\xdc\x68\xff\xb5\xf3\xc0\x6d\x95\x09\x5e\x3f\xcc\xf1\x24\x3e\xef\x58\xf5\xe8\x0c\x3c\xd1\xe8\x23\x0d\x15\xe9\x99\x84\x99\xb9\x49\x7a\x25\xc1\xe6\xde\x57\xce\xf7\xb8\xba\x11\xc7\xa5\xc0\xc4\xb2\xe8\xf3\x29\xf0\x2a\x78\x1c\x60\x77\x08\x57\x03\xdb\x29\x54\x0a\x58\xec\x6f\x65\xe0\x13\xa3\xd4\x66\x56\x17\xe6\xe2\x48\xb7\xa6\xf9\xee\xea\xdc\xfd\xae\x9f\xd7\x3f\xc9\xed\xa3\x83\x29\x61\xf4\xde\xb8\x81\xf8\xa6\x09\xdf\xf4\xb9\x8a\x38\x2e\x20\x0f\xb6\xd0\x76\xc7\xae\xff\xc7\x83\x8d\x8c\x69\xaf\xf5\x69\x79\xb0\xcd\x77\x5a\x8d\x1d\xee\x6f\x18\x6e\x24\xd2\x16\x91\x69\x50\x49\x5e\x99\x57\x00\x5c\xfd\xad\xd5\x63\x73\x6c\x00\xfd\x1e\xa1\xa2\x2c\x6c\x54\xad\x63\xf7\x53\x0a\x20\x7a\x7b\xb4\x90\x2c\x08\xae\x86\xaf\x11\xf9\xbd\x2c\x6f\xd2\x19\xd9\xf0\x7a\x97\x67\x77\x29\x02\x37\x74\x64\x00\x2a\xd6\x0b\x3b\x36\x13\xeb\xb4\x56\xb3\x66\xbf\x93\x1e\xc6\xd2\xee\x42\x3f\x7c\xe2\x99\x77\x77\xda\x89\xf7\xca\x0a\xc1\xad\xf8\x2e\xf9\x36\x6c\x55\x12\x18\x4b\xf9\xa8\x45\x74\xbf\xe5\x1b\x69\xce\x73\xa9\x5e\xbd\x49\xbd\x2d\x6f\x13\xac\x23\x6e\xc3\x20\x39\xcb\x04\x39\xde\x33\x48\x2d\x6f\x01\x2f\xae\xe5\x80\x71\x5c\xdc\x33\x9a\xf8\x02\xa3\x45\xc3\x9c\x45\x42\x8e\x39\xd5\x4c\xd0\xaf\xb9\x7e\x20\x7c\x42\x91\x61\x37\x18\x30\x72\x9e\x05\xef\xbb\xff\x62\xa8\x30\xdb\xee\x17\x70\x2e\xef\x8b\xf6\xa5\x15\x7d\x07\xcf\x31\x29\xbc\xfb\x82\xf9\xf1\x8f\x50\x7b\xdb\x79\xae\xe9\xc7\x41\x90\xf5\x60\xd0\xd3\xa5\x65\xac\x83\x20\x99\x8f\x15\x27\xbc\xa8\x59\xd5\x40\xca\x3f\x19\x55\x56\xaf\xef\x94\x6b\xd7\x77\xa9\x31\xe1\xd1\x2b\x66\x62\x11\xf4\x85\xb3\x53\x29\xa6\xd5\xf5\xb0\x51\xed\x1a\x99\x73\x5a\x05\xb7\xab\x51\xea\xda\x05\xda\x1b\x14\xbb\x56\x41\x3a\x68\xe5\x97\x66\x2a\xf4\x78\xa5\xf5\x99\xa5\xcf\x6d\xf8\x19\x68\x4e\x33\xfd\x17\x64\xc6\x88\x03\x0d\xf1\xef\xb2\xe4\x4f\x16\xf7\x45\x1a\x54\x2f\x10\x61\xe1\x37\x86\x48\x1d\x7e\xab\x11\xb9\x0d\xbf\xdd\x22\x52\x77\x1a\x0b\x5a\xb6\xee\x54\xad\x6f\x11\x29\x3a\x75\x0b\x86\x48\xd1\xa9\x5b\xdc\xa2\x83\xa1\x8b\xf5\x06\xeb\xb5\x3b\xb1\xb1\xe4\xe5\xf6\xfd\x9f\xa4\xb0\x19\x82\x7a\xa2\x2c\xb7\xe1\x15\x55\x6d\x4d\x8b\xe8\xde\x50\x41\xc4\x38\xb7\xa4\x66\xa4\xbe\x25\x05\x23\xc5\xad\x4d\x0b\x66\xb0\x95\x74\x61\x27\xc8\x1f\x9a\xde\x1f\x08\xa7\xd3\xb9\x96\xa6\x5e\xf0\x39\x1f\x8d\x30\xa3\x10\xca\xe3\x26\xa9\x97\x7c\x85\x49\x41\x7d\x14\x85\x46\x8c\x94\xd4\x06\xb1\x0b\xe3\x45\x94\x04\x45\xce\xf3\x0c\x8d\x0a\xb0\x92\x10\x97\x55\x91\xfa\x99\xe2\xe8\x0e\xfe\xb4\x96\x6c\x45\x83\x1d\x15\x63\x7a\xaf\xa8\x4a\x60\x52\xe2\xb9\x06\xea\x62\xc3\xaa\x27\xef\x79\x4d\x3b\x71\x21\x24\x68\xce\x19\x65\x7e\xdc\x45\x10\x2c\xf3\x33\xae\x43\x8c\xc8\xd1\xb1\x37\x15\xbe\x8a\x9e\xcf\x22\xa8\xe4\x53\x46\xeb\x2d\xcf\x37\x15\x2b\x92\xa0\x96\x40\x92\x55\x2d\x48\x26\xf9\x7c\xa4\x61\x85\xc9\x3f\xfe\x77\xcf\xaa\x3b\x6d\x4e\x6b\xbf\x9b\x68\xaf\xc1\xf9\xc3\xd0\x9d\x61\xd4\x89\x94\x9d\x09\x90\x7b\x93\x60\x22\xad\x9c\x50\xc0\x21\xa1\xe7\x60\xe4\x18\x46\x8a\x93\xd4\xc7\x68\x69\x4d\x47\xd7\xdd\xd9\xfa\xf7\x9c\x94\xf4\xbc\xbe\x6d\x0b\xd6\x16\xb7\x6d\xcd\xda\xa2\xad\xb5\xc3\x1d\x5e\xd4\x3e\xb2\x4e\x6b\x1f\xa5\x17\x74\xa9\x1d\xb1\x10\x39\x97\x5d\x14\xb6\x35\x12\x94\x62\x7a\x5e\xb3\xb6\xbe\x75\x7b\x45\x8a\xb4\x4b\xcf\x7f\x63\xff\xee\x7c\xfe\x51\xe5\xf7\x05\x2a\x6e\x35\xf9\x47\xc9\x8b\x04\x21\x81\xed\x05\x0c\x17\xa4\x3c\x8d\x5e\x31\xf7\xde\xfd\x05\x62\x95\xf0\xd8\x0e\x24\x84\xe5\xe0\x31\x3c\xa9\x43\x2f\xd8\x4b\xcf\x7b\x1c\x74\xa5\xc9\x94\x57\x70\x64\xd2\xcd\xdd\xaf\x60\x88\x1c\xc1\xd4\x78\x34\x4e\xe5\xd2\x35\x52\xb4\xa4\xe3\xbe\x48\x9d\xa1\xf7\x49\x43\x8b\x37\xab\x44\x1e\x89\x3a\xb0\x96\xb5\x75\x7b\x8b\xcf\x39\xc6\xa4\x02\x05\x29\x2d\x87\xc3\x72\x39\x5b\x2d\xc4\x7f\x52\x24\x70\xea\x01\x93\xcc\x21\xfc\x12\x7f\xb6\x92\x5c\x0a\xf1\x52\x1f\xa1\x15\xc6\xad\xe9\x3a\x7a\x9b\x8e\x0d\x19\xf3\x50\xdc\x54\xf0\xd1\x1e\xcc\x7a\x30\x4c\xe4\x16\xe0\xe5\x74\x45\x92\x1a\x12\x72\x48\x53\xbf\xb6\x75\x95\x45\xc6\x02\x10\x6b\xeb\x4e\xed\x5d\x17\x84\xf5\x32\xa6\xcb\xc5\x03\x51\x2f\x25\x56\xf4\x9f\xeb\xcc\xc3\x63\x81\x13\xb9\x3c\x65\xb0\x2b\x75\xc0\xf4\x65\x55\xbe\xbf\xb3\x81\x32\x2e\x8b\xfd\x4d\x5f\x14\x02\x9b\xad\x32\x5a\x09\xe8\x2d\x78\x22\x3c\x57\x30\x3e\xa2\x4d\xe2\x7d\xf4\x75\xce\x6d\x3b\x25\x75\x6f\x1d\xd0\xc3\x83\xa7\xab\x63\x9d\x1a\x09\x5b\x99\x84\xc1\xed\x64\x6c\x03\x0e\x04\x61\xad\x6e\xa6\xb8\xd8\xfa\xda\xc9\x68\x40\x11\x87\xff\xdb\x7e\x5f\x7f\x6d\x6a\x70\x48\x55\xbb\x2c\xac\x9d\xd9\x3a\x3e\x9d\xf8\xaa\x6f\xe8\x2c\x4a\xd6\x66\x41\x5c\x81\xd3\x07\x14\x6b\x7c\xc6\xaf\xae\x68\xb4\xff\x71\xa4\x03\x6f\xa4\x71\xef\x0a\x5e\x1e\xdb\x59\x5d\xe9\x85\x00\xd8\xa0\xa6\x09\xa2\x09\xa4\x39\x98\x68\xa8\x56\x8e\xf0\x89\x76\xd2\x7c\x96\x6e\xf1\xc2\xfb\x95\x76\xb6\x56\xae\xea\xbc\xfb\x5d\x2e\xa6\x6d\x67\x04\x6c\xf4\x42\xaa\x44\x4e\xe3\xbd\x11\xb5\x6b\x6b\x3c\xd2\x63\x42\x27\x63\x8c\x53\x4a\x8b\x85\x69\x3a\x42\x63\xc5\x1a\xa4\xc5\x03\x48\x4b\x5f\x42\x8f\x69\xcf\xae\xb3\x86\x39\xd1\x3e\xc9\x60\xda\x13\x09\xb2\x93\xfa\x32\xba\xed\x1a\x29\x88\xb9\x91\x4c\xc7\x30\x1d\x4b\x6d\x14\xc4\xe3\xd0\xc1\x4b\xc7\xa0\x4e\x13\x9f\x74\xfa\x4b\x99\x49\x79\x59\xfa\x01\x28\x2e\xf7\xbb\x0d\x24\x7b\x62\xef\x5e\x56\xe5\x8e\x55\x0d\x07\xce\x63\xbb\x80\x8c\x98\x36\x02\x17\x59\x32\x92\x91\xca\x50\x30\xb2\xdd\xff\xf0\xaa\xd9\x67\xf9\xd7\xe5\xbe\xd8\x64\x95\x68\xca\x6c\xf6\x11\xa2\x70\xbf\x73\xbc\x6d\xeb\x94\x43\xd6\x4d\xb7\x37\xa8\x92\x40\x22\x42\x83\xb4\x2a\x06\xad\xc5\x89\x43\x89\x37\x3c\x18\xa2\x27\x3c\xb2\xe5\x9a\xa3\x63\x16\xb3\xc1\x5a\x64\x9a\x5c\xb1\xc2\x81\x7b\x65\xb5\xd9\xfb\x51\x49\x8b\xc9\xd5\x77\x84\xb4\x80\x30\x54\xdf\xdc\xec\x9a\xbb\x1f\x20\x13\x63\x52\x9b\x80\x58\x7d\x5b\x2d\x0b\x8d\x31\xac\x99\xb9\x2c\xd8\x73\x4b\xaf\xf8\x2b\x90\x71\x62\x8f\x04\x9f\x0c\x1e\x07\x29\xf8\x76\xd2\xef\x93\x2d\xc9\xfd\x47\x66\x2d\x79\x42\x0f\x40\xf4\x06\x99\xb3\x3a\xb6\x47\xa4\xa6\xdc\xec\xd3\xb9\x26\x3b\x75\x40\x28\xee\x52\xa7\x10\xed\x4d\x6f\xa6\x11\xeb\xcb\x94\xaa\xea\x55\x5a\x4c\xd3\xb5\xc1\x7a\x5a\xbf\x5b\xd2\xda\xff\x2e\xcd\x43\x32\x8d\x15\xd7\x01\xb6\x1f\x97\x1a\x1f\xae\x43\x64\x3f\x2e\x0e\x3a\x73\xab\xd4\x31\xac\x63\xa2\x56\x3c\x4a\xd6\xbe\xde\x77\xbc\xee\xa0\x4e\xa9\xc0\x6d\x5b\x95\x71\xb6\xbf\x4f\xf9\x94\x7a\x5d\x36\xe5\x2e\xd6\x63\x53\xee\x74\x87\xb9\x96\xb2\xfb\x5c\x12\xf4\x68\x14\x04\x99\x54\x37\x6f\xa5\x5c\xa4\x12\x8c\x43\xb8\x62\xb9\x6b\xea\x97\x53\x2c\xb7\x4a\x95\xc2\x0f\x43\x65\xaa\xd3\x1f\x98\x29\x1c\x87\xff\x07\xd0\xab\x8d\xf1\xdc\x27\xd3\x3b\x8e\x47\x65\xd4\x4d\x12\xb9\xba\xa1\x83\x23\xdc\x8b\xd8\x8d\xeb\x90\x90\x3b\x51\x6c\xde\xb5\x4e\x68\xe2\x9e\x30\xc4\xd2\x56\x8b\x98\x1e\x80\x0a\x70\x69\x0e\xbb\x97\x1e\xbd\xe1\x1c\xc0\xe1\x40\xbc\x2b\x1d\x8a\x6e\x1a\x7a\xef\x0b\xe5\xdc\x29\xe9\x90\x59\xee\xec\xc5\x77\x88\x4c\xde\x1f\xd8\x36\xa0\xa5\x60\x15\xd1\xae\x44\x01\xf4\x75\x2c\xac\x2e\x26\xc1\x52\xdd\xae\xec\xe3\x0d\xfd\xc0\x5f\x34\xa8\xdf\xe9\x45\xee\x4c\xa7\x1b\xf9\x19\xfa\x91\x7f\xd2\xb0\x89\xdb\x93\x43\xba\x0a\xd6\xcc\x00\x42\xe7\xb5\xea\x66\x38\xee\x91\x96\xcd\x4b\x7a\x6f\x14\xa2\x12\xfa\xb4\xf2\x32\xc9\x26\xba\x04\x2f\xec\xdf\xe9\xd4\x2a\x57\xbb\x0d\x54\x09\x34\xd0\xb5\x66\xe7\x53\x47\x03\x1b\x1b\x44\x05\x44\x59\x38\x3f\xe4\x30\xbd\x6d\x74\x91\x1a\x48\x6b\x77\xcf\xa7\x87\xe8\xe3\xdc\xc8\xb8\x72\xa5\xed\xff\x93\x90\x9a\x23\xb5\x2c\xfe\xc9\x52\x65\x6e\x29\x17\xa5\x7a\xa0\x6e\xe3\x42\x16\xf7\x34\x66\x17\xb6\x6b\xb0\x3f\xd0\x3f\xa8\x78\xc6\x2f\x9c\x69\xe9\x52\xf9\x4b\x3a\xf9\xe8\x7e\x2f\xb8\x2c\x55\x3f\x29\x57\x85\xb2\xee\x45\xa1\x4b\x55\xdb\xc2\x3c\xaf\xef\x2c\x60\xd0\xd2\x00\x0d\xd0\x18\xbd\xa1\xcc\xfb\xd9\x15\x7b\x0e\xf2\x0e\x75\x3c\x95\xd5\xcd\xd2\xd1\x1c\xc2\x36\x02\xfd\x77\x9a\xc0\xc5\x56\x31\x24\xc2\x06\x0a\xab\xeb\x36\xce\xdd\xa0\xa6\xb0\xdb\x4a\x62\x7b\xaf\x91\xba\xa9\xaa\xc8\x6c\x84\xa4\xcf\x7b\x72\x82\x1b\xff\x65\x6e\x6f\xa6\xa6\xbc\x04\xb5\xea\xd3\x14\xdd\x59\x2f\x0c\x82\x50\x5f\x3a\xb0\x13\x42\xb7\x3b\x75\xbb\xce\xdb\x28\x64\x61\x82\x6a\x88\x9f\x56\x5b\x94\xa6\x43\x1c\x72\x1d\xc5\xc8\x3c\x7c\xb0\xcb\xe2\xdd\xc5\x04\x15\x4e\x33\x1b\x7c\x13\x6c\x56\x64\x9c\x20\xbb\xb3\xc7\xbb\x95\x78\xc8\xa1\x66\x7b\xb3\xab\x3b\x60\xa8\x77\x13\xe8\x7d\x1b\xda\xa7\xb3\x03\xcc\x40\xbb\xfb\xf7\x57\xaa\x82\xc9\xa6\x1f\x03\x16\x66\xaf\x82\xf7\xe3\xab\xc6\x12\x5c\xc7\xc6\x35\xd7\xd5\xfe\x7d\xd1\x18\x9a\xec\xe8\xb8\xf6\x32\x3b\x3f\x2e\xcc\xb8\x15\x8d\x32\xa9\x6e\x6c\xa0\x0e\x9b\x48\xc2\x70\x17\xee\xfb\xd7\xc7\x42\x92\x5c\x0a\x36\x6f\xdb\x5b\x23\x63\x24\x6b\x7a\x5e\x48\xc1\x97\xf9\xa6\x61\xb8\x74\xde\x33\xbb\x6a\x69\x6b\x68\x40\xd1\x59\x12\x44\xff\x75\x5b\x68\xec\x0f\x86\x94\x6e\x0b\x83\xae\x49\x39\x1c\xe6\x16\x56\xab\xb1\x3b\x4e\xdd\x2d\x33\x3d\x66\xc3\xe1\xda\x00\xeb\x76\xec\xcd\xa2\xe8\x94\xd9\xf1\xd4\xec\xda\xb6\x31\x7c\x75\xa3\xb8\xca\x01\x34\x58\x44\x6b\x00\x8f\x39\xd0\x35\xf5\x94\xe0\xee\xa4\xf6\x1e\x01\xe8\x43\xa8\x57\x90\x00\xbf\xcc\xf7\xf5\xd7\x10\xc2\xeb\x19\xbf\x61\x45\xed\x47\x70\x6c\xf0\xfd\x55\x59\x25\xf2\x46\x4c\x09\xa7\xcb\x15\xa9\xe9\xb2\x2f\x6c\x69\xd3\x1b\xe3\xac\xe9\x0f\x16\xd6\x17\xbd\x74\x45\x0a\x33\x92\x17\x93\xad\x89\x46\x47\x6b\xe2\x11\xc6\x9a\x48\x94\xb8\xd5\xfc\xb3\x0b\x36\x67\xa3\x11\xe6\x4b\xb6\x72\xf9\x83\x7a\xc9\x56\x20\x29\x13\x05\x23\xb7\xa4\x50\x25\x73\x13\x44\x02\x5e\x6f\x08\x4e\xc4\x97\x8f\x57\x4a\x7b\x0a\x81\x86\xf8\xf2\xd3\x95\xa0\x27\x63\x54\x79\x10\x76\xf5\x64\x4e\x17\xeb\x73\x68\x88\x3c\x09\xe7\xb1\x0b\xd4\x35\x27\xf7\xa9\x36\xa1\x39\x81\x97\x5c\x32\x1d\x71\x77\xdf\xb8\xa0\x62\xc2\x5e\xf9\x9f\xdd\xd4\x18\xbd\x60\x96\x34\x58\x9f\x8f\xd9\x4e\xcb\x0e\xc6\xba\x35\xc0\x3e\xd5\xdb\xed\x87\x70\x0c\xab\xab\x4b\x32\x3d\x48\xd9\xb5\x91\xc3\xf6\x84\x36\x36\x69\xfe\x7c\x72\xd3\x2d\x53\xfe\x7d\x2c\xa4\x2f\x94\xb0\xd1\x95\xd6\x06\x27\xa4\xec\xa0\x42\xa3\xa7\x8e\xcd\xd3\xb1\x7c\x49\xee\x58\x5d\xf2\xfa\xfe\x8f\x9b\x40\x59\x03\x15\x13\x9d\xa5\x6b\xfa\xe4\xba\xd2\xc9\xfc\x1c\x81\xe1\x94\xe3\x47\x08\xe5\x4a\x8d\x39\x1a\xf1\x50\x91\x19\x38\x33\x6b\x66\xb5\xab\x67\xc1\x69\x67\x67\x75\xe4\x0f\xa2\xa4\x69\xe9\x3d\x0b\x14\xfe\xea\xaa\x3a\xdb\xd2\x7d\xa4\x46\xec\x70\x20\xb7\xb1\x00\x72\xb4\xd3\x42\xbf\xfa\xe1\x83\xa6\x71\x82\x8c\x5e\x27\x37\x86\xf9\x10\x3a\x16\xc3\x14\x1d\xff\x56\x27\x89\x8b\x37\x50\x71\x7c\x20\x30\xf0\x84\xfd\xe5\xfa\x50\x4d\xb0\x44\x7e\x38\x90\xba\x33\x90\x8f\xb5\xfa\x1e\xdf\x11\x34\x66\x7d\x51\x83\x3c\xf3\x47\x2d\xc4\x9c\xd4\xae\x60\x32\xab\xae\xc1\x23\xc7\xa6\xdd\x92\x95\x58\x20\xbd\xe4\xa4\x5e\x61\x7c\x20\xf5\xed\xbf\x60\xb0\xdb\x9e\xc1\x8a\x0f\x5c\x59\xf1\x47\x56\x56\x7c\xe0\xca\x4e\x1a\xac\x67\x65\xea\xad\x01\xc9\x4c\x60\x8b\x7b\x24\xaa\x93\x11\x69\xae\x30\xd1\x92\xce\x01\xa5\x46\xa8\xa4\xa5\xa0\x62\x18\x2b\xfe\xf4\x82\x2c\xed\x79\x24\xbe\x52\xd4\xbe\x35\xf8\x48\x58\xcc\xf8\xf5\xf4\xc8\x4c\xf0\x94\x5a\xe6\xc6\x85\xe5\x2e\x74\x9f\x18\xc7\x29\x1e\xaf\xc9\x31\xd6\x44\x4a\xea\x06\x46\xfd\xf1\xe4\x42\xca\x9f\x20\x6a\xc9\x09\xf2\x58\x2d\xdd\x2d\x28\x7f\x40\x7a\x5b\xd2\xa2\x5f\x7a\x5b\xf8\xd2\xdb\x8c\x96\x90\x23\xc7\x8a\x6e\x0b\x5f\x74\xcb\x3b\xa2\xdb\x8a\x96\xfe\x77\x4d\xb3\xdf\x6b\xc4\x65\xf9\xcf\x71\x45\xcc\x03\xed\xb0\xb2\xe3\xec\x40\x72\x97\x48\xe2\x3d\x22\xdb\xc0\x55\x67\xcc\x8f\x8b\x6c\xd7\x47\xfa\xd4\x22\x5b\xdf\x55\x29\xd6\xa3\x15\xd9\xce\x6d\x1f\x26\x69\x91\xbe\x83\x5b\xb2\x1e\x0e\xf3\x85\xeb\x12\x95\x1f\xd2\xfb\x03\x26\xf7\x1b\xed\x5e\x50\x4f\x02\x87\x03\xc2\xa4\x8b\x81\x29\x90\x2e\x07\xa4\x6e\xd8\x2e\xa4\x2d\x4c\xb4\xf3\xfe\x35\xdd\x4a\x82\xd7\x3c\xd0\xfd\x35\x65\x05\x30\x4c\xd0\xe1\xe1\x8f\xec\x12\xb1\x71\xe7\x8f\x9d\xcf\x61\x5e\x0c\x87\x16\xd6\x24\x70\x61\x97\xa4\xa8\x7d\xd9\xa9\x7e\x6b\x0e\x10\xce\xcb\xd5\xfe\xd4\xf0\x25\xaa\xfa\x39\xf4\x84\x00\x71\xef\x97\xa3\x98\xee\x3a\xce\x74\x84\x82\xa4\x12\x1c\xe6\xd1\x1b\x97\xd3\xad\xa3\x4f\xd9\x1a\x44\xb3\xa7\xb9\x17\x8b\x74\x43\xf7\x67\xba\x59\x79\x75\xd6\x2c\xf6\x93\x6b\xd6\x24\x53\x9c\x9e\x4b\xf3\x6d\xc5\x77\xee\xf1\x62\x6d\x0d\xba\x55\x95\xfd\x7c\x33\x1c\x26\x5b\x1b\x92\xc9\x24\x1a\x4a\x36\x98\x9c\xeb\xe8\x0c\xa6\x8b\xb6\xdd\x53\x4a\xf5\xe7\x85\xdb\x52\x91\x97\x92\x92\x90\x39\x00\xa6\x07\xe2\x54\x08\x74\xbe\x4e\x15\x39\xab\x67\x59\x93\xd1\x7b\x83\x5c\x13\x3d\x8a\x82\x05\x55\x5f\x1b\xcb\xdb\xe2\x8e\x3a\xde\x29\xb2\x81\xce\x4d\x1a\xd7\x63\xf1\xce\x0f\x38\x4d\x98\x5c\x3b\x97\xde\xe2\x4b\x30\x29\x22\xca\x52\x88\x48\x4b\x21\xa2\xed\x89\x56\xa1\x5f\x56\x23\xde\x4a\xbe\x6c\x56\x74\x2b\x4d\x20\x98\xc7\xc3\xa1\x51\x0d\x26\xbe\xdd\x6d\x73\xa8\xf2\xd8\x96\x31\x37\x3d\x85\x53\x41\x6a\x0b\x8c\xa1\x2b\x38\xdf\x1a\x3d\xbd\xe0\xe5\x8c\x65\x2c\x14\x69\x15\xbf\x60\xf5\x0e\xa4\xa6\x9d\x79\x90\x82\x06\xbd\x5b\xe9\x4d\x58\xa0\x65\x33\x5b\x17\x77\x6f\x0c\xe2\xde\xb8\xa1\xc6\xd3\x92\x54\x41\x45\x5b\x43\x3b\x12\xf5\x40\xc2\x86\x38\xc4\xa9\x34\x29\x00\x5d\x8a\x32\x5e\xd0\xc7\x5e\x1d\xc4\x03\x5f\x05\x9c\x6a\x37\xa4\xf2\xd1\x4b\x57\xd1\xcc\x5c\xba\x2d\xcd\x3a\xdb\x93\xd3\xcc\x3e\xe4\x6b\x9a\xf5\x2a\xa5\xc9\x3e\xc8\xaa\x42\x36\x6e\x77\x9a\x94\xd8\xd1\xc1\x74\xbe\x91\x61\x5c\x34\x84\x0e\x87\xe7\xd2\xc4\x5e\xdd\xba\x4d\x27\x35\xd2\x70\x98\xec\xe9\x16\x13\x19\x20\xf4\xab\x24\x33\x4c\xdc\x56\x86\x13\x9d\x62\x19\xa2\xc3\x4a\x61\xdd\x1f\x23\xa7\x41\x16\x3c\x6f\xaa\x83\xf0\xf3\x5e\x49\x97\xd7\xb6\x5f\x25\x6d\x72\x3b\x3e\xcf\x3c\x31\xfc\x0e\x62\xb5\x05\x5d\xd1\x6a\x12\xce\x95\x40\x24\x56\x7f\x19\xb0\x77\xb8\x6f\x34\x45\xf2\xc7\xd7\x21\xde\x54\xd9\x81\xff\xd1\x9b\xbd\xb7\x2b\x4a\x52\xfc\xc0\xec\x9b\x72\x47\xbb\x53\x24\x45\xe4\x5c\x15\x7a\x85\xd0\xb8\x1d\x5f\x1a\x59\x46\x4a\x7a\xae\x1d\x7c\x4d\xfa\x2d\x75\xe2\x91\x0e\x43\x10\x20\xc5\x70\x58\x2e\x92\xcc\x8d\xc8\x20\x60\xd3\xdc\x1f\x1d\x2e\xc6\xdb\x7c\x92\x39\x31\x19\xfc\xea\x32\x72\x8e\xb7\x5f\x69\xa7\xfb\x30\xd3\x6e\xb4\xd3\x4e\x25\xd8\x7b\x6e\x7d\xbf\xb3\x80\x70\xf3\xcf\xd1\x19\x51\x81\x5d\xea\x7f\xdc\x6a\x27\xe7\x3a\xda\x65\x0c\x36\xec\xfc\xc6\x7b\x05\x19\xce\xa7\xad\x0a\x62\xcd\x47\x2e\x70\x5c\xf8\xfb\xa3\x15\x90\x01\xfc\x84\x35\xc6\xfc\x23\xee\x08\x26\xf5\xc8\x6b\x11\x8c\x6d\xb4\x96\x61\xb7\x9d\x3a\xe3\xfa\x23\x80\x1c\x93\x5d\xdb\x26\xe1\x3d\xcd\xba\x7a\xdc\xee\x6d\x08\xb5\xc6\x24\xdc\x1e\x4f\x7f\x4b\x3a\xf3\xf7\xf5\xb2\x1d\xb7\xdf\x20\xaa\x4a\x0f\xd2\x86\x58\x2b\xc6\x19\x92\x45\xde\x34\xd6\x7d\x52\x49\xe9\x7e\xd5\xf8\x38\x83\xcc\xe3\x5a\x4a\x05\xaf\x81\x79\x96\x69\x60\x27\xc7\x42\xfe\x23\xa7\xa1\xa5\x1c\x0b\xc1\x72\xce\x1c\x53\x08\x6e\x4d\x21\x0c\x2a\x50\x18\xa0\x8c\xe0\x7c\xd7\xe1\x5b\x92\x50\x95\xbc\x10\x85\x8e\x81\x02\x67\x24\x9f\x45\x43\xf0\xe6\x07\x4c\xfa\x06\xf5\x9e\x99\x7f\xea\x90\x0f\xb3\xa3\xc6\x3f\xba\x97\x5a\x3e\xfd\xd4\xe7\x82\x3d\xb0\x3d\x3e\x10\x9b\x67\xce\x22\xee\x8c\x63\xd1\x5c\x53\xfc\x5d\xae\x87\x69\x22\x33\xc6\xe8\x30\x43\x66\x76\xd9\x16\xe6\x5b\xc7\x06\xac\x8f\xeb\x86\x84\x65\xc0\x9e\x0e\x01\xe3\xc8\xda\x8e\xee\x87\x1f\x7b\x2d\x90\x22\x64\x34\x12\xfb\xb9\x32\x94\xa3\xa7\xe5\x1d\x97\x1d\x59\xb5\xab\xd0\x1d\x97\x46\x36\xad\x88\x31\xef\xe5\xcd\xb4\xbd\xa0\x22\xda\x7c\x3a\x22\xd3\x16\x86\x87\x79\x93\x14\xa7\x9f\x19\xb1\xab\x3f\x7e\x76\x62\x1f\xee\x0f\x70\xb9\x75\x2a\x4e\x1e\xf1\x6d\x30\xce\x46\x4b\xc5\xc1\x12\xcd\x9f\xae\xd2\xce\x27\x99\x4b\x51\x11\xb6\xab\xb9\x8a\x23\x59\x92\x98\xe0\x15\xd4\x30\x32\x39\x4f\xa5\xfe\x9a\xf3\xe1\x90\x5f\xd0\xe9\x70\x08\x9a\x18\xca\x25\x67\x0f\xa9\x31\xa4\x9f\x41\x24\x7c\xb4\x8d\xef\xd0\xe7\xa1\xe7\xad\xfa\xc1\xfb\x06\x6e\xd6\x7f\xe4\xaa\x89\x71\xe6\x4c\xba\x6b\x8b\x9b\x17\xba\xbf\xc9\x34\xa9\x44\xd5\x90\x18\x43\x85\x52\x4c\x27\x8f\x3f\x0f\xdd\x44\x1d\x71\xbd\x0d\x73\x12\x68\x52\x7c\x31\xb4\xf2\xca\x35\x14\xb5\x62\x1f\x01\xbb\x19\x8d\x83\x1a\x3e\x70\x4f\x92\x8b\x97\x3b\xf4\x75\xb6\x7e\xfb\xb4\xbc\xd9\x65\x8d\x8a\x5a\xd6\x4d\x0a\x6a\x2c\xed\xa1\xdd\x70\xa8\xd7\xe4\xeb\x35\xbc\x4a\x76\xe1\x46\x21\x60\x9e\x91\xee\x9d\x3e\x69\xd7\xf5\x66\xdb\xf1\x03\x3f\xdc\xce\xbe\x31\xf7\x16\x1b\xc6\xcf\xde\xdc\x18\x94\x7d\xe0\x44\xf4\x33\xa2\xff\x52\xc4\xac\x02\xd2\xa7\x5b\x9e\x6f\xf4\x19\xa8\xa2\x13\x40\xb3\xe2\x1b\x44\xee\x7b\x36\x89\x7c\xa8\x64\x52\x0a\x55\x29\x0f\x11\x60\x57\xcc\x46\x2a\xca\xa5\x49\xc4\xb6\x6b\x5b\x5e\x43\x2e\x8c\xc5\x52\xfe\x4b\xe4\x3f\xab\x54\xfd\xcc\xe9\x16\xb2\x25\xcc\xc8\x9a\x6e\x21\xd9\xc8\x8c\xec\xa9\x9b\xfa\xa3\xf0\xb1\x25\x3e\xcf\xf1\x27\x39\xd9\x04\x75\x02\x8c\x8b\xcf\xd7\xf8\x93\x35\xd9\x51\xd5\x6a\xb4\x27\x57\x54\x17\x8e\x36\xe4\x9a\xd6\x8e\x85\xc6\xee\xc2\xfe\x22\x37\xb2\x48\x5b\x42\x5c\x5d\x38\x3f\xc9\xa5\x28\x34\x16\x16\xf6\xef\x8b\x1d\x79\x27\x8b\x74\x3b\xe7\xc7\xc5\xd5\x5c\xae\x96\x6e\xc9\xe5\x70\x98\xec\x46\x34\xc7\xe4\xdd\x70\x98\x5c\x8d\xe8\x1a\x93\x6b\xf1\x6d\x2c\xbe\xdd\x88\x6f\x63\xf1\xed\xfc\x37\xf0\xf4\x69\x19\xd6\x6e\x56\x15\x5e\x24\xae\x3c\x96\xee\x88\x27\x88\xa5\x57\x38\x3d\xff\x2d\x29\x3e\xa4\x05\xe1\x21\x1d\x2a\x5e\x9e\x0d\x74\x54\xdf\x7e\x64\x47\x8a\xe8\x95\x7c\x07\x4e\x93\x64\x7a\x41\xaf\xc6\xeb\xb6\x9d\x5e\xd0\xdd\x38\x97\x16\x6d\xfc\x61\xc5\xb0\x00\x55\x4c\xae\xc6\xeb\x8b\xa9\x19\xfe\xc1\x89\x27\x57\x74\x3d\x36\x57\xf7\x94\x56\x23\x0d\x16\xe3\x2b\x4c\x76\xe3\xdc\x19\xcd\x2e\xb6\x77\x71\x3b\x9a\x8f\x35\x51\x7e\x52\xab\x91\x82\xc8\xf1\xce\xb9\xd1\xe6\x42\xfa\x71\x74\x36\x3c\xcb\xcb\x6b\x14\x89\x9c\x63\xc3\xe3\x28\x2c\x99\x4a\xb5\x29\x44\xb6\xf9\x61\xc7\x8a\x74\x30\x25\xd2\x9d\x10\x02\x86\x78\x41\x6e\x54\xb7\x10\xde\x66\x5d\x56\x05\xab\xc6\x59\x9e\x23\x62\xcb\xc6\x0d\x6f\x72\xf6\x26\xab\x3a\x95\x0e\x04\xd2\xb4\xff\x50\x7c\x53\xaf\xb3\x1d\x13\xc3\xc0\x87\xd7\xec\x7d\x93\xa2\xa7\xe2\x4f\x44\x4c\x58\x20\x51\xbc\xe5\x1b\x15\x9e\x46\x61\x57\x69\x78\x7c\x72\xe0\x9b\xcf\xdd\xc8\x37\xe2\x47\xb9\xc9\xf2\x74\x30\xb3\x0f\xdf\xfd\xcd\x5d\x8a\xd6\x2a\x6e\x41\xd6\xd8\xbf\xcb\xab\x54\x86\xf2\x24\xeb\x32\xcf\xb9\xdc\xc2\x2b\xde\x20\xb2\x07\xd1\x7d\xbf\xee\x46\xc6\x58\xf0\x38\xef\xf9\xf4\x82\xfb\x84\xbc\xa4\x66\x64\x8e\x1d\x8e\x0f\xea\x79\xd2\xeb\xae\xb7\xe5\xad\x5c\x0c\x6c\xa6\xfc\x53\xbe\x25\x9f\x4e\xa7\xe4\x0d\xbb\x2a\x2b\x06\x1b\x26\x8b\xd6\xf6\x4f\x88\x35\x69\xfe\x7a\x65\xa3\xfa\xc8\x9f\x2a\xb2\x0f\xb9\x2a\xd7\xfb\x5a\xfe\x59\x8a\x23\x87\xbf\xdc\x78\x40\x95\x72\x98\x37\xed\xf5\x07\x13\x1b\x48\xfc\x84\x94\xc0\x6c\xf3\x83\x06\x29\x0d\x36\xe2\xec\xe4\x19\x0c\x5c\x9b\xd6\x81\x63\x47\x3b\x70\x0d\x64\x07\xce\x41\x0d\x34\xc1\x3b\x98\x3a\xdb\x12\x8e\xf4\xc1\x9d\x46\x63\xf9\x78\x7a\xbc\xa7\x75\x4d\xef\x35\x89\xe4\xea\x15\x6d\xda\x73\x55\x1a\x09\x16\x63\xeb\x28\x42\xc9\x37\xfe\xed\xd4\x32\xe5\xa1\xc9\x6f\xb7\xa6\x79\x41\x22\xf6\x17\xb6\x9a\x52\xa9\xf4\x39\x83\x49\x42\xdc\xb7\xdd\x30\x09\x19\x38\xd8\x57\x44\xcb\xac\x93\x35\x9e\x40\x35\xdf\x57\x36\x18\xef\xb5\x00\x57\xdf\x49\x3b\x83\x6c\xfd\x00\xc7\x82\x31\xd8\xe7\x39\xf5\xcc\x63\x26\x50\x34\x1c\x8a\x92\x01\xed\xf6\x66\xb2\x9f\xbb\xd5\x23\xf5\xb4\xe7\x61\x37\xb7\x4c\xf4\x3b\x08\x16\x95\x6e\x1c\xc0\x42\x79\x62\x27\xbe\x87\xb6\xf2\x20\x57\xb4\xd5\x13\x77\x2d\x96\xca\x54\xca\xed\x67\x80\xff\xa2\xae\x65\x0a\x35\xae\xcb\xa2\x01\xdd\x94\xf8\x26\x91\xb5\xf9\xe6\xcf\xe6\xb5\x42\xa2\x89\xff\xf9\x6b\xb8\x5f\x2f\xb3\xc2\xf8\xdd\x9a\x75\x69\xbc\x39\x1c\x36\x93\xab\xc2\xfb\x0d\x1d\xdc\x64\x6f\xc1\x4f\x0d\x3e\x86\xad\xcd\x35\x53\xad\xdd\xdf\xa6\xf5\x8f\x86\xf4\xb3\xa6\xc7\xe2\xbd\x30\x59\xa5\x2e\x9b\x2a\x5b\xbf\xfd\x56\xa0\x16\xf0\xdd\xe5\x05\x6f\xba\xb7\x4d\x0d\xa9\x5f\x1b\xed\xfa\xbe\x13\x20\x26\x9d\x28\xe4\xab\xd4\x93\x3e\x5e\x37\x57\xd5\x4c\x38\x2f\x48\xdd\xae\xfd\xfa\x99\xf5\xe4\x5f\x34\x09\x53\xd6\x3f\x46\xfd\x04\x3e\xdb\xac\x6d\xb5\xbd\x10\xfb\xdf\x64\xda\x13\xe1\x45\x9b\xcc\xc5\xed\x69\xe4\xb2\xf7\x05\x2c\xfc\xb9\xa2\x87\xcd\xf6\xe8\x2c\x5b\xef\x58\x95\x67\x77\x21\x64\x49\x90\xfa\x5b\xc1\xff\x77\xcf\x9e\x6f\x12\xf9\x2e\x84\x08\x09\x4f\x36\xac\x11\x9c\x2e\x26\x1e\x94\x05\xc9\xbf\x82\x1b\xd3\x7b\x01\x23\xb5\x31\x69\x0c\x9f\xee\x5e\x76\xf6\xbf\x09\x93\x37\x5e\x9a\x43\x2b\xe5\xae\x54\x93\x04\x28\x68\xd1\x4c\xe4\x9b\xe4\x23\x87\xd4\xf4\xab\xc2\x48\x04\xa8\x43\xde\x80\xae\x05\xc8\x99\xb7\xd4\xff\x73\x20\xea\xd2\xa6\xcd\xa4\x28\xcb\x1d\x61\x85\xfb\x4b\x3e\x7e\x91\xf7\xd8\x06\x64\x93\x70\x1a\xda\xa5\x20\xe7\x1d\x45\x84\x61\xc5\x8b\x26\x71\xd8\x86\x17\x93\x6d\xb4\x6e\xd6\xe6\x59\xeb\x39\xe6\x3e\xa8\x10\x80\xce\xaa\xc9\x15\xcf\x1b\x31\x87\x14\xfa\x55\xb1\x7d\x6c\x12\x0d\xf1\x11\x69\x01\x49\xdb\x02\xa5\x57\x67\x57\xec\xeb\x7c\x5f\x25\xe6\xd7\x93\xb5\xe0\x3d\xd5\x94\x12\x0f\xc6\x97\xd3\x95\x0d\x3f\xc0\x75\x9a\x52\xbd\xa7\xfe\xed\x17\xe5\x7e\x3c\x25\xbb\x47\x6b\xbd\x3b\xa0\xd9\x93\x9b\xd2\x77\x62\x6a\xcf\x0e\x44\x80\xe6\xeb\xf2\x75\x20\x4b\x91\x88\x44\x17\x29\xef\xfe\x4e\x45\x47\xd6\x36\x98\x69\x43\x36\x03\xf6\x35\x7f\x93\xf3\xe2\xba\x96\x2e\xc2\x57\x55\x59\x34\xe9\x3b\x2e\xbe\x8a\xfd\xbb\xc9\x76\x49\x67\x6e\x23\x3f\x48\xe7\x98\xcb\xb8\x97\x07\xa9\x04\xc2\xa4\xa4\x3a\x97\xb1\x32\x8e\x92\x59\xdb\xad\x85\xf8\x05\x1d\xf9\x93\xf0\x3b\xd2\x10\x13\x2f\x26\xe5\x68\x26\xf8\x63\x48\x93\x32\x1c\x0e\x78\x07\x0a\xe5\x59\x83\x73\xeb\x41\x12\x63\x51\xcc\x17\x3a\x5d\x88\x9d\x56\xf6\xa2\xee\xa6\xea\xee\xa1\xd7\xd7\xd9\x9b\x37\x0a\x61\xfb\x39\x8c\x0d\x74\x4f\x5d\xa0\x14\x24\xec\x07\x82\x96\x76\x94\x95\x06\xc0\x56\x3d\xee\x3e\x5a\xe1\xc5\xb0\xb3\x85\x9d\x1e\x98\xa0\x01\xb2\x9e\x7e\x10\xe4\xaf\x60\x37\x8f\x1d\xc4\xd8\xbc\xe8\xf0\x68\x1f\x01\x78\x51\xee\x02\x3c\xeb\xee\x17\xeb\x9c\x90\x13\x16\x2c\x7b\xcb\xbe\x95\xf5\xab\x6b\xc7\x88\xd7\xa6\xfe\xd9\xb1\x02\x61\x27\x31\xb4\xd7\x7b\xd7\x35\x30\x86\x61\xe6\x60\x83\xef\xd3\x52\x32\xd6\xc8\x52\x3c\x9d\x50\x79\x05\xe2\x6c\x83\x25\xe2\xd5\xd3\x46\x8d\x1b\xaf\xac\x77\xc8\x92\x16\x1f\xd6\x4e\x53\x2a\x80\x46\x2d\x5a\x3b\xad\x31\x84\xc4\x14\x8f\x6f\x07\xf5\x1d\xc8\xe5\x5b\xc6\x76\xb0\xcd\x1e\x72\xd7\x7f\x9f\x71\x7b\x3d\x4e\x04\x5a\x6d\x98\xad\x47\x97\xd9\x37\x99\x17\x01\x24\xac\x40\x18\x9e\x73\x9d\xeb\x32\x00\x92\x03\x03\xe5\x19\x2b\x9a\x67\x32\x80\x17\xc4\xc9\x33\x56\x92\x96\x0c\x10\xd0\xcf\x6d\x34\x51\x45\x6a\x76\x90\xa3\x1e\xd6\x09\xfa\xa4\x62\xac\xc8\x47\xfc\xbe\xc9\xde\x48\x53\xe8\xf1\x8c\x54\x65\xce\x52\xa4\xf8\xf1\x43\x48\x8d\x1a\x32\xca\x71\x38\xf7\x24\xa7\xe6\x62\x38\x5c\xbd\x43\x96\x9e\x75\x08\xd4\x33\x8d\x6f\x51\x18\xf7\xc8\x74\x75\xff\x96\xdd\x41\xcc\x23\xf7\xbc\xb4\x93\x82\x49\x24\xe9\xca\x00\x86\xc3\x01\x9b\xf0\x5a\x6d\xdf\x4b\xb9\x99\x6c\x93\x80\x4f\xd1\x5b\x76\xf7\x14\xe2\x9d\x9b\x3f\x29\x95\x67\xad\x7e\x4e\xbe\x79\xf5\xf4\xc9\xcb\x6f\xb0\x26\x01\xbb\xa7\x01\x23\xc3\x88\x09\xd3\xf7\x71\xce\xaf\x92\xde\x1e\x5f\x3f\xf9\xba\x77\x4e\x9e\x5d\xb7\xc1\x41\x9d\xcb\x02\xc2\x50\xfb\xbc\xf3\x0a\xc4\xde\x85\xfb\x31\xcf\xc4\xb7\xb9\x8e\x35\x33\xa0\xb4\x80\x74\x14\xce\x87\x10\x0e\x5d\xbb\x96\x85\x53\xaf\x7e\xb8\xe1\xc0\xb6\x34\xe1\x0b\x24\x4c\x3a\x00\x58\x74\x6f\xa0\x40\x82\xe1\x8e\x9a\x07\xa4\xd3\x41\x7d\x62\x07\x07\x41\x1e\xe8\xe0\x58\x1d\x4f\x4c\xe7\x71\x68\xfa\xde\xb2\x43\x10\x79\xd6\xa0\xc5\x8a\x67\xe3\x0d\xab\xff\x7f\xe4\xfd\x6b\x97\xdb\x38\x92\x30\x08\x7f\x7f\x7e\x45\x8a\xdd\xa3\x26\x2c\x48\x96\x6a\xa6\xdf\xf7\x1c\xaa\x98\x5a\x77\x5d\xa6\xea\x3c\x75\xdb\xb2\x6b\x7a\xfa\x51\x6b\xbc\x4c\x09\x99\x42\x37\x93\x54\x93\x94\x9d\xee\x14\xf7\xb7\xef\x41\x04\xee\x00\x25\xd9\x55\xb3\x67\xf7\xec\x17\x3b\x05\xe2\x8e\x40\x20\xee\xb1\x6d\xf8\x1d\xdb\xdd\x7d\xd8\xd8\x04\x94\x73\x66\x78\x9b\x12\xbf\x41\xe2\xb2\xc0\x47\x43\x9a\x23\x0d\xcd\x77\x09\x68\x89\x3c\x1e\x2d\x78\xaf\x97\x51\x04\x79\x26\x94\x5b\xb4\x7e\x54\xa6\x66\x73\x8e\x7b\x56\xec\x58\x23\xee\x25\xea\x01\xa6\x90\xa0\xf8\x9e\x3f\x0d\xde\x50\xdd\xf5\x73\xe4\x08\x30\x4a\xa5\x0a\x7f\x84\xb7\xa6\x95\xb1\x58\xbc\x69\x4c\x91\x2a\x24\xfe\xbe\x06\x10\xd0\x7b\x6c\x8b\xf3\x58\xc0\x86\xa0\xc4\xe8\xa6\xfb\x70\x60\xf9\x1f\xf0\xc7\x1f\x6e\x3f\x7f\x89\x7f\x09\x04\x88\x7f\xa5\xcf\x65\x71\xc7\xca\x4c\x34\x29\x44\x71\xc7\x9e\xba\x08\x62\x79\xc3\x9e\x3a\x32\xdb\x77\x8f\xa5\xc0\xc5\xdb\xba\xd2\x81\xb8\x71\xce\xdd\x9e\x6f\xff\x9e\x80\x80\xed\x3b\xe8\x70\xb4\x08\x70\xa7\x3f\xd9\xeb\x8e\x0b\x96\x14\x3b\x33\xb5\x59\x17\xce\x04\xdb\x3f\x43\xde\x47\xf7\x5e\x9c\x45\x6b\x1d\x6c\x32\xee\x65\x7b\x28\x60\xcb\x2c\xc0\x3d\x34\xec\xa3\x96\x16\xae\x40\x4f\x1c\x7e\xe9\xe8\xb1\x7e\x4f\x43\x23\xf9\x7c\xab\x7d\xf5\xe0\x48\x4b\xbc\x79\xcc\xbf\x63\x28\xf9\x0c\x5d\xb5\x6d\x31\xd0\xaa\x8b\xc0\x01\x7c\x21\x59\x87\x50\x90\x8c\x7f\xb7\xf8\xff\xcd\x97\x89\xb9\xb6\x86\xd0\x19\x7c\x80\x4d\x95\x6b\x2f\xad\x69\x61\x6f\x20\xc2\xee\xa1\xa8\x58\x4c\xe4\x73\xe6\xe6\x1e\x39\x76\xf8\x9a\x75\x36\x31\x10\x87\x53\x33\xf6\xd0\x1c\x75\x67\xe1\xe4\x5a\xe6\x8b\x9e\xb0\x32\x4a\x70\x9c\x92\x38\x5f\xe2\x79\xbb\xc9\xfb\xea\xb2\x2b\x11\x1a\xd3\x95\x5f\x58\x53\x9c\xb1\xc7\x43\xf7\x21\x12\x7c\x87\x0b\x74\x33\xe3\x2d\xe6\x8c\xe0\x04\xec\x68\xa4\x05\x81\x7c\x94\x82\x54\xec\x11\x2a\x47\xad\x3b\xb1\x79\x22\xb4\x26\xe0\x86\x27\xb0\xf3\x56\x2c\xdb\x5c\x8c\xfb\xb5\xfa\xd6\x92\x95\xbc\xa6\x2d\x15\xe0\x97\xf1\x3e\x03\x8f\x6e\x9d\x60\x5a\x60\xb3\x2c\xc1\x81\x92\x9e\xb6\x68\x18\x22\xf3\x0a\xe7\xcf\x80\x97\xda\x99\xf8\x0f\x70\x94\x76\x2b\xc1\x32\xad\x1a\x35\x58\x0a\x59\x16\xf8\x1b\x5a\xb4\xb2\xaa\x9c\x40\x0b\xd7\xa0\xa7\x3b\x56\xb2\x8e\xdd\xa8\xa1\xf4\x4f\x18\xc9\xf9\xa5\xc7\xd0\xa5\x66\x00\xa7\x62\x4b\x93\xbb\xba\x2e\x59\x51\xd9\x6a\x59\x31\xdc\x78\xac\x2b\x8a\x9f\xd4\x60\x73\x0b\x7f\xd3\x56\x63\xf0\x9a\xd8\x7a\x79\xeb\xc4\x31\xb6\x33\x4c\xd9\x09\x79\xa8\x3c\x9a\x98\x9d\x8e\xd8\x78\x36\xf5\x86\x21\xbb\x48\xda\x5a\x87\x3e\x04\x90\x43\xd2\x5c\xc3\xc4\x39\x12\x54\xfb\x32\x68\x96\x84\x99\x9c\x07\x4e\xde\x6e\x3f\xd1\xbb\x54\x0e\xf5\xbd\x21\x28\xb5\x6f\xa0\xed\x34\xaa\xb1\xa6\x96\xe6\xa6\xcf\x98\xb0\x36\xb3\x9f\x65\x89\x4f\xe8\xcd\xf0\x53\x2d\xd3\x48\x64\xb1\xd7\x3c\x71\x72\x50\x24\x8a\x63\x4a\xa8\x67\xa7\xd2\xd2\x0a\x64\x43\x66\xb7\x25\x9b\x63\xed\x33\x4c\x14\x23\xfe\xf0\xd9\x5b\x30\x33\xf9\xba\x29\x1e\x99\x9f\xba\x5d\x2b\xa7\x12\xda\x52\x96\x56\x61\x46\x4b\xb4\xe2\xf7\x9a\x24\xb4\xa3\x2c\x6d\x49\x60\x44\x51\xd1\x1a\xef\x6b\x91\xd7\x8e\xa1\xaa\xc9\xcb\xe9\x44\x33\xa4\x8d\xa9\x87\xfe\x3f\x5e\x35\x10\xa6\x2c\xed\x40\x85\x8f\x1f\x32\xb0\x3e\xba\x01\xd5\x5d\xd1\xe1\xaf\x64\x92\x16\xb7\xf9\x7c\x95\x4c\x92\x2c\x49\xc8\xa4\x98\x24\x37\xc9\x04\xd4\x7b\x93\xb4\xb1\xbf\x34\xb4\xbe\x07\x3b\x9a\x6a\x57\xbf\xef\xc5\x6e\x38\xe8\xea\xd2\x5e\x1e\xab\x4b\xbb\x09\x19\x2e\x28\x4b\x6b\xd0\x0e\x4b\x80\xd5\x42\xfb\x8b\x00\x1b\x3a\xb9\x85\xc6\x1a\xae\x9f\x9c\x6b\xdd\x11\x03\x78\x74\xb3\x03\xdd\xf6\x19\x60\x07\xec\x68\xf4\xd8\x75\x1e\x91\xf2\x58\x71\xc6\x8b\x3c\x30\x17\xaa\x56\x55\x16\x0d\xd1\xbc\xf4\xa5\xe6\x4a\x85\x71\xe6\x1e\x0d\xde\x07\x2b\x9f\x8c\xcd\x28\x18\xf5\xa3\x6d\x0a\xa2\xb5\x7a\xb6\x0d\x88\xd6\x47\x1a\xf3\x8f\x20\x4c\x90\xfe\x9d\x12\x9d\xfc\xa5\xf8\x94\xbb\x68\x45\xdf\x3a\x7b\x17\x2d\x55\xaf\x75\x1b\x7d\x53\xa0\xe0\x3e\xea\x38\xeb\x17\x6f\x24\x37\x07\xa0\x2d\x79\x1b\x65\x09\x31\x74\x41\xf7\xd2\x30\x63\xf0\x66\x4a\xcb\x0c\xab\x73\x65\x01\x4a\xa5\xbf\x99\xfd\x4d\xf9\x27\x5d\x75\xa3\xdd\x7b\x6b\xdf\xe8\xbd\xfd\x65\xff\xb1\x37\xda\x3d\x91\x73\x37\xda\x68\xdb\xed\x3b\xed\x5d\x05\x5a\x03\xa1\xac\x95\x6e\xa1\xb4\x5d\x31\x1b\xd2\x30\x84\xd0\x67\xe0\xcc\x78\x15\xc6\x16\x1c\x94\x6a\x7a\x8a\x0f\x8b\x47\x34\x58\xc6\x6a\x17\x4e\x62\x48\x3d\x06\xa5\xbc\x7a\x50\x1f\xda\x54\xb0\x2e\x20\xaa\xc0\xad\xeb\xa9\xdf\x76\x40\x29\x18\xeb\x4a\xd0\xa5\x33\x5e\xc9\x0c\x63\xe0\xb4\x4c\x96\xd3\xc5\x28\xcf\xf9\x78\xcc\x20\x54\xfb\x96\xa5\x9c\x2e\xf4\x1e\xda\xed\x07\x64\xb4\x1a\x14\xb5\x01\xac\x3c\x59\x65\x0b\xd7\x26\x5a\x6f\x80\xf2\xdb\xb5\x8c\x7b\x71\x45\x4b\xda\xc9\xc0\x42\x06\x23\xc4\x67\xa1\x68\x04\x1c\x48\xc7\x3a\x55\xb1\x5c\x56\x9d\x15\x52\x0c\x75\x1b\xbc\x4a\xad\x42\xda\x19\x5b\x7f\x2d\xb4\x1f\x18\x4b\x5f\x20\xde\xa6\x89\x51\xb5\x2c\x3b\x9f\xf7\x47\x45\xb9\xc7\xed\x69\x8d\x80\xc3\x22\xe8\xb4\xfc\x34\xe8\x05\xc5\x9d\x76\x12\x86\x76\x40\xb5\x47\xa5\x7e\xe8\xb9\x57\xc6\xc0\xcc\x33\x06\xe6\x33\xd3\x8b\xcc\xd4\x70\xc3\xab\x1b\x34\xb5\x72\xed\x49\x20\x64\x3a\x28\x22\xb0\xc6\x80\xd9\x09\x58\x0f\x77\x9b\x1c\xf2\xbb\xe9\x1c\x01\x43\x4a\x10\x7f\x33\x60\x07\x55\x36\x5b\x3d\x02\x49\x94\x9c\x2b\xf2\x4a\x25\xb8\x65\x09\xe6\xa2\x8a\x24\xa6\x30\xda\x32\x13\x65\x5a\xf5\xb3\x4c\x94\xb1\x83\x74\xcb\x77\x52\x57\x88\x96\x34\x51\x54\xaf\x80\x1f\xe6\xcf\xe3\x8c\x48\x39\x51\x04\xb5\xd5\xce\xe7\x1f\x69\xa2\x45\x32\xb1\xee\x5d\xc5\xc1\x39\x31\x4f\x22\x03\x00\x0f\x4a\x7a\x7a\x42\xad\xdc\x79\x38\x56\xda\xe6\xb5\xbb\xe5\x56\x02\x61\xad\x8b\xab\x2d\xd2\x3a\x91\x8a\xdc\x84\xd0\x51\x3b\x1e\xf3\x01\xcb\x09\x42\x0d\x06\xb6\x57\x6f\x69\xbf\x2c\xd3\x5a\x39\x99\xca\x9f\x8c\x7d\xfe\xb4\x52\x93\xb1\x4e\xde\x4c\xa6\x8a\xd8\x47\xfb\xb5\x15\x9c\xe8\x24\x24\xe2\x74\xab\xd3\x89\xe7\x79\x3e\x5a\x28\xfd\x85\x67\xc5\x41\xa8\x34\x0b\xb0\x97\x81\x62\x9e\xb8\x8c\xc7\xc4\xba\x77\x25\x44\x10\xdb\x3d\x66\x39\x0c\xd1\x43\xa2\xac\x8d\x67\x5f\x63\x39\x8b\x2b\x1b\xbf\x68\x54\x44\xcc\xa5\xa4\x2c\xa1\xe6\xe2\x1a\x1a\x43\xda\x56\x3b\x88\x29\x02\xa0\xb5\x22\x6d\xf9\x08\xcd\x8e\x1b\x24\xc7\x74\xbc\xd5\x7b\xe2\x05\xb7\x61\x5a\x51\x9c\xce\xa9\x65\xa3\x3b\xed\xc4\x63\x13\x31\x5e\xd6\xd3\x5e\xb9\x0d\x55\xf1\xb4\x23\x6a\x41\x1a\x89\xb7\x1a\x89\xef\xbd\xd8\xb0\xcf\x66\x47\x98\xb5\x23\xdc\xb5\x8d\xec\x89\x2b\xc4\x96\x34\x91\x33\x01\x15\xee\xee\x37\xc5\x50\x89\x9e\x5e\x42\x03\x42\x56\xc0\x87\x45\xec\x04\x34\x02\xbf\x17\xe5\x7f\x12\x35\x5a\xef\xa5\x45\x98\xc3\x0a\xa1\x8a\xdf\x75\x2a\x52\x2f\xaf\x91\x98\x79\xe6\xfa\x26\x2a\xd1\x47\x24\x2b\xea\x1d\xc1\x85\x32\x8c\xd3\x16\x9e\xc6\x6b\x9c\xac\xe7\x9b\x1e\xa9\x96\x6b\x17\xab\x90\xb2\x5d\x66\x64\x63\x52\xc0\x12\xd4\x00\x3b\xa9\xb2\xac\xdf\x7f\x5b\x75\xac\x29\xb6\xde\x9b\x60\xac\x32\xce\xcb\xf3\xb5\x7e\x64\x35\x9a\x67\xa3\xd1\x70\xed\xa2\x63\x07\xbe\xfd\x3b\x6b\x74\x0b\x2d\x1b\x94\xca\xfd\x58\x58\x32\x85\xae\xc1\xea\x56\x1d\xd5\x68\xbe\x1c\x50\x20\xb1\x7c\xb4\x50\x12\x9d\x41\x6a\x49\x5a\x05\xb4\x5a\xf7\xa0\x49\x5c\xd5\x24\x42\xe2\x76\xe4\x59\x05\x5b\x0e\xb6\x0d\xf2\x57\xa6\x43\x32\xf6\x18\x61\xb9\x9e\x6f\x02\x95\x94\xd1\x74\xc8\x09\x0e\x4b\x6d\x2f\x6a\x66\x65\x0f\x60\x2a\x69\x4b\x8d\x65\xf9\xb0\x1e\x56\x35\xb4\x94\x3b\x89\x51\xa2\x27\xd7\xef\x2d\x4d\xaf\x3f\x84\x39\x99\x2c\x20\x80\x90\x6b\x05\x75\x11\x1e\x5c\x2b\x8f\xeb\x88\x6c\x33\xee\x74\xb1\x94\x18\xf2\x8a\xd5\x74\x5a\x69\x59\xdf\xdf\x7b\xc0\x92\x48\x60\x49\xfc\xcd\xf1\x3c\xbe\x82\x19\xb8\xc7\xed\x9b\xe3\x49\x20\x00\x43\x69\x65\xa9\x1f\x38\x3d\x45\xed\xf5\x31\x37\xae\xd4\xa7\x6b\x53\x7d\x2c\x00\x20\xc9\x92\xe4\xa2\x21\x81\x24\xf1\x02\xdd\x4b\xd4\x77\xca\xea\x7b\x80\xc8\x04\x6a\x3a\xb1\xea\x01\xb7\x11\xbe\x09\x9e\xf0\x3d\x36\x80\x99\x83\x56\x56\xc0\x5c\x5f\x81\xa4\xd7\x12\xee\xea\x34\xc1\xd2\x7c\xc7\xd9\xab\xa6\x3e\x1c\xd0\x71\xe9\xaa\xc4\xc0\xa2\xbe\xed\xf7\xb0\xdd\xb2\x43\x97\x25\x2f\x12\xaa\x66\xc3\xc0\x64\xfd\xa1\x61\x6c\xf7\x21\x1b\x2d\x68\xbb\xad\x0f\x2c\x4b\x64\x5e\xb6\x84\x76\x75\xc9\x1a\x60\x40\x13\x2e\x70\x47\xcb\xb6\x5d\x42\x05\x06\x79\x57\x74\xca\xf2\x9e\x79\xbf\x1b\x65\x6c\x5f\x1f\xa5\x0d\xbd\x80\x0b\x95\x59\xf7\xea\xc4\xb2\x7c\x86\x13\x46\xbc\xc9\x5b\xd1\x89\x36\x4b\xe4\x6d\x7d\xec\xb4\x19\x17\x56\x0c\xb4\x15\x6d\x2c\x85\xaf\xa8\x94\xb6\x44\x47\x3d\xd7\x69\xcc\xf3\xd0\xba\x4f\x9f\x8b\xd6\xb7\xb0\x5c\x97\xad\xe7\x1b\xad\x49\x61\x2b\x96\xb9\x91\xd3\x2d\x3b\x75\x7c\x26\xff\xcc\xfd\x28\xea\x41\x15\x19\x07\xa6\x37\xe8\xf1\x4d\xfd\x7d\x51\x15\x0f\xac\x49\xf9\x0c\xce\x06\x12\x52\xea\xc3\x53\xb4\xab\x6b\x73\xad\xa1\x04\x9e\x4b\xab\x13\x57\xf8\x01\x50\xb6\x7b\xc4\x4f\x06\xb6\x20\x3d\xda\xb9\x8f\xa7\x93\xe0\xed\xcf\x54\x30\xd9\x3c\xe1\x5e\x81\xc0\x61\x28\x34\xea\xb2\xf3\x62\x6a\x8a\xd1\xd1\x98\x43\x20\x0a\x29\xad\x60\x28\xad\x18\x30\x53\x66\x67\xa6\xeb\x5c\x48\xd8\xc1\x8d\x7c\x87\x55\xd7\xe7\x18\x4c\x7e\x9f\x26\x08\x5b\xc0\x2a\x90\x41\x60\xe3\x64\xc5\x07\x81\x8d\x93\x7e\xc9\xca\x96\xdd\x88\xee\x60\x0e\xd8\x9b\xf2\xac\xfe\xf4\xc9\xb7\x24\x0a\x2a\xa4\xf7\x19\x5e\x01\x08\xea\x92\x46\xc4\x0a\xee\x0c\xb6\xc7\xa6\x31\xf1\x50\x8b\xdd\x0e\xcd\xcb\x10\xc2\x08\x0d\x2d\x39\x55\xd7\x76\xbe\x0f\x4e\xf0\xc4\x3e\x75\x58\xe9\x78\x70\x61\x64\xd3\x7f\x38\x36\x20\x9d\xab\x47\xe5\xe3\x71\xca\xd5\xaf\x6f\x3b\xf6\x78\x3a\xe9\xa8\x5f\x24\x6a\xfc\x2d\x27\x83\xe0\x60\xac\xdf\x6c\xa5\xdd\x60\x87\x5a\x26\x51\xec\x76\xdf\x88\x89\xaa\x25\x7a\xeb\xc3\x74\x68\xce\xca\x60\x69\xc7\x48\xc2\xad\xff\x87\xad\x4c\xa6\x3c\x3b\xb7\xb8\x63\x17\x59\x1b\x3c\x1f\x31\xab\x68\x2e\xcd\xc1\x83\x15\x3a\xe9\xcd\x41\xa4\xe5\x4e\xae\x3d\xbf\xda\x55\x2c\xaf\x9d\x25\x3c\x91\xd7\x91\x24\x64\x56\xd5\x8a\x33\x50\x62\x11\x4b\x59\x15\x0d\x22\x60\xdc\xe3\x74\x47\x8e\x7b\xb3\x9c\x35\x37\x1e\xdd\xf0\x16\x83\x8e\x3f\x74\xe9\xe1\x2e\x36\x00\xb6\xd9\x29\x11\x55\xec\x63\xe3\xf6\x99\x0d\x6e\xcb\x78\xfc\x2e\x6d\x4d\x92\x76\x4e\x9f\xa5\xc2\x96\x07\xf1\x74\x20\x74\x9d\xb6\x38\x51\xd4\x01\x65\x64\x05\x49\xe3\x20\x9b\x0f\x3e\x8a\x3d\xa1\xd5\x6a\xb4\xc8\x2e\x82\xd2\xe0\xb4\x5c\xeb\x06\x17\x15\x5c\x0b\x63\x48\x02\x19\x20\x6b\xbd\x4c\x94\x24\x53\xf9\x87\x8e\x31\x04\xfe\x6c\xdc\x32\x3b\x77\x9a\x5d\x10\x7c\x33\x8c\xbc\x19\x51\x80\xab\x92\x57\x77\x6d\x8f\xaf\xb3\x99\x7d\x48\xce\xc6\xdf\xf5\xe9\x1e\xd0\x82\x95\x57\xf0\x4c\x17\x7e\x92\x9a\x58\x2f\x2e\x8a\xbf\x7a\x1a\x80\x7a\x99\x35\x8f\xb3\x9d\x0c\x4f\x44\xf7\xd3\x63\x0e\xe9\x77\x88\xc9\x34\xc1\x99\xc7\x34\xb8\x9d\x1b\xa1\xf7\xa6\xbb\xcd\xd9\x78\xcc\x26\xfc\xb6\xeb\x65\x91\x1b\x46\x16\x14\x87\xf7\xa9\xb8\x57\x70\x18\xd2\x7a\x56\x66\x94\xaa\xf3\x94\xd9\x87\x73\x3a\x99\x9f\x33\x25\x3d\x21\x32\x44\xf1\x0c\xa3\x41\xc8\x00\x34\xc5\x75\x4d\xbb\xfa\x60\xb5\xec\xea\x03\x6d\xf2\x7a\xa2\x62\x19\xfc\x64\xe8\x50\x1d\x50\xb4\x88\x7e\xd5\xe1\xfe\xb9\xad\xef\xa7\x5b\xf3\x5b\xf4\x7d\xcc\xcb\x09\xb7\xa9\xdb\x54\x86\x2a\xa4\xbb\x7c\x1b\x7c\x91\xf1\x81\x64\xa2\xe7\x56\xe6\x75\xbe\xe7\x5d\x92\x19\x67\x90\x72\x3c\x3e\xde\xe6\xcd\x78\x5c\xdc\xe6\xdb\xf1\x78\x77\x9b\xef\x97\x50\xcf\x70\x06\xba\xf6\xf0\xba\x5e\x7e\x76\x0b\x1d\x35\xd3\x33\x55\xc6\xe3\x73\x6b\x7f\xf9\xd9\x2d\x8c\xbf\x8f\x76\xa1\xea\xe0\xdc\x0e\x35\xcc\x4e\xcf\xac\x4b\x2b\xcc\x2d\x47\xb7\x34\xbe\x0b\x10\x79\xa8\x92\x39\x01\xcb\xa0\x12\x06\x54\xc0\xce\xbb\xfa\xb8\xdd\xab\xae\x53\xbd\x2d\xc5\xe9\xb4\xd7\x5b\x74\x3a\x6d\x6f\x8b\xf1\x78\x7f\xbb\x13\x4f\xa3\xde\xc6\xfa\x74\x6a\xf4\x96\x9e\x4e\xe5\x6d\x3d\x1e\x37\xb7\x47\xa2\x53\x62\x2b\xe8\xec\xfb\x3e\x25\x4b\xf7\xe1\xcb\x9f\x25\x2a\x32\x0c\x17\x52\x8c\xd9\xb3\x66\xdd\xb2\xf5\xa6\xa7\x87\x86\x1d\x8a\x86\x61\x28\xaa\x76\x58\x7b\x32\x4c\xcc\x7b\xe4\x27\xd0\xfe\x45\xce\x57\x7c\x06\xb6\x5e\xe8\x21\x2d\x2e\x80\x83\x1c\x99\xc9\xab\x7d\xee\x39\x2d\x76\xbb\x3f\x15\xdb\xbf\x8b\xf5\x65\x82\x27\x68\xf3\xf9\xb2\x56\xfc\x40\xbb\x6c\x27\x13\x22\x6e\x6c\x5a\xaf\xdb\x4d\xf0\x1a\x9e\x4e\x6c\x3c\x1e\xc1\x27\xfb\x75\x81\x02\xeb\x75\x19\x9c\x19\x41\x3e\xa4\xca\xe7\xcb\x46\x8d\x59\x2d\x2b\x1c\xb3\x59\x57\x82\x0d\xf1\x3a\x23\xcf\x50\x10\x83\x9a\x7c\xbe\xdc\xd6\x55\xc7\xab\x23\xbb\xe9\x7a\xa8\x26\x75\x86\x39\x4a\xba\x47\x6e\x6f\xa8\xd1\x96\x6e\xd5\x09\xa1\x76\x8b\xf1\x58\x26\xc3\xdd\xd5\xef\x41\xd5\x52\x8c\xc7\xf0\x5d\xd3\xf0\x66\xa9\x94\xcb\xb6\x32\x95\x8f\x33\x86\x36\x3a\x08\xa6\x2d\x39\x55\x6f\x7d\x31\x4e\x35\x5e\x45\x45\x2c\x25\x7d\x4f\x07\x09\x36\x43\x94\x49\x45\x65\xfa\x71\x80\x46\x66\x2d\x70\x39\x84\x0e\xf8\xd2\x8e\xc7\xe9\x50\x76\x5a\x28\xd6\xfb\xf9\x2e\x45\x0a\xc0\xf5\x86\x32\xe4\x8b\xca\x1d\x8d\x02\xda\xa6\x3e\x58\x21\xbf\x39\x39\x9d\x5a\x95\x69\xf1\xd2\x40\x17\x89\x9d\x41\x70\xd4\x02\x71\x47\xb0\xe1\x49\x3d\x2c\x7e\xca\x99\x21\xc4\x75\x6d\x7b\x2b\xf4\x81\x7b\x1e\xcc\x73\x6f\x6f\x7f\xa9\x3a\x5e\xea\xb4\x01\x75\x25\xf8\xd2\xa6\x2e\x4b\x5b\xc4\xe4\xf8\x89\x19\x87\xe9\xfb\x86\xb5\x7b\x65\x18\xd5\x06\x34\xb9\x8b\x72\x90\xf9\x0c\x6c\xdc\xe4\xa4\x86\x3a\x15\x9c\xff\xa5\x4e\xa9\x84\xa9\x8f\xc4\x5d\xae\x78\x76\xe8\x50\xb1\x1c\x49\x71\x88\x2b\xe4\x9e\xb3\x85\x3b\x69\x91\x5f\x06\x2e\xda\xe4\xa3\x42\x76\x81\x27\xba\x4a\xe0\x9c\x93\xac\x50\x83\x59\xe5\x82\x2c\x03\xcc\xba\x6c\x7c\x2f\x7e\xc5\x1d\xa4\x55\x1e\x0a\x07\x94\x1e\xdc\x3b\xeb\x21\xec\x2b\xbd\x72\x22\x3e\xad\xe7\x38\x96\x80\x03\xa9\x7a\x42\x6b\xed\x27\x0d\x19\xd8\x6b\x08\x72\x16\x6d\x4e\x9d\x6d\xcd\xd5\x72\xf3\x3c\x6f\x08\x28\xa7\xed\x12\x60\xe5\xcc\x15\xb0\x2e\x47\x3b\x13\x3c\x30\xde\x01\xb8\x00\xb0\xf9\xeb\x66\xa3\x6e\xce\x5a\x6e\xb0\xe8\xc6\x6c\xaa\x2c\xdc\xa8\x0b\xb5\xb6\x47\x5b\x25\x6f\x65\xad\xb7\x50\xc9\xb9\x61\x6a\x6a\xb2\x4b\x35\x33\x31\x1b\x39\x31\x98\x24\xce\xec\x9d\xe0\x4d\xf5\xd4\xd0\x5c\x48\x87\x21\xf9\xb8\x9b\x79\x7f\x1f\xb9\x9a\x84\xfe\xca\x0b\xd9\x5f\x23\x98\x37\x98\x00\x7b\x54\xbf\x2d\xf1\xfc\xde\x30\x1e\xa3\x05\x8a\x85\x99\xfa\x79\x05\x5f\xe1\x48\xeb\x75\x80\x03\xd3\xc2\x77\xe8\x8f\x8a\xf1\xad\xfa\x57\x72\x22\x1f\x39\xec\xa0\x7c\xdf\x1b\xf9\x02\x2f\x17\x1d\xd5\x6c\xe0\x55\x6b\x35\xd5\xaf\x63\xfe\x3e\x6e\xcc\xc1\x85\xda\xc3\x6a\xfd\x84\x06\x07\x07\x6a\x0e\x4d\xfd\xd0\xb0\xb6\x05\xf3\xea\x33\x31\x98\x9c\xe0\x4a\x76\xa3\x68\x84\x25\xab\xc2\xf4\x5d\x51\x1e\x99\x53\xad\xc4\xb0\xe8\x5e\xbd\x6d\xfd\x78\x28\x59\xe7\x56\x6d\x40\x4f\xdf\xd3\xc7\xe2\x29\x5b\xcc\xe7\x14\x3a\xcb\xe6\x54\x66\xc2\xc1\xa0\x42\xb2\xa1\x54\x58\x3c\x42\xd8\xbf\xc1\x18\x3a\xe5\xee\x3f\x44\x1f\x2e\x3a\x7e\x67\x8a\xde\x6e\xeb\xaa\xed\x9a\x82\x57\x0c\x6b\xfa\xe1\x30\xd0\x31\x08\xbd\x5a\x9d\xdd\x43\x5f\x21\xe8\xea\x91\x57\xd2\x47\xef\x91\x57\xa1\xf5\xbf\xbf\x87\x67\xfd\x59\x95\xc6\x0f\x3a\xfe\x92\xbf\x1b\xd6\xd8\x2a\xd2\x24\xaa\xad\x55\xcd\x07\xce\x27\xf4\xd7\xb3\xd2\xe6\x02\xc6\x92\x9b\x11\x17\xeb\x47\xe0\x12\x63\xd0\x88\x7d\xba\x71\x36\xc6\xfe\x55\x3c\x59\xbf\xaa\xfa\xbd\xbf\x56\xad\xae\xec\xe5\xc9\x47\x44\xf6\x28\xbd\xca\xf3\x5c\x2a\x5a\x9d\x33\xcd\xd2\xeb\xcf\xb9\x8b\x2f\xd8\x72\xac\xf0\x9b\x9c\x9f\x8e\xa0\x05\x22\x60\x26\x47\xe1\xd5\x8e\x75\xac\x79\xe4\x55\xd1\xb1\xbc\x03\xf3\x27\xaa\x6c\x73\x46\xca\x36\x07\x3b\x99\xc7\xda\xac\x46\x0b\xcb\x68\xd2\xd1\x5b\x17\x4f\x54\xdb\xd1\x28\x28\xa4\x1d\x19\x32\x57\x34\xa9\x20\x71\x86\x4b\x65\xce\x81\x3f\x6d\xf5\xa7\xde\xa4\xab\x76\x94\x0d\x82\xd0\xa0\xf2\xf6\xb1\x78\x92\x4a\xdb\xd4\x32\x63\xd2\x8b\x60\x84\xb8\xd3\xa1\xae\x3e\xe8\x4b\x49\x12\x46\x1c\x76\xdd\xf9\xbb\x41\x67\xd0\xc1\x56\x19\x21\x52\x0d\x09\x5d\xfd\xf0\x50\x4a\x0c\xab\xcd\x1c\xda\xae\xe8\x98\x55\x7b\x34\x42\xfb\x54\xd6\x6c\x59\xd5\x15\x0f\x6c\x28\xec\x88\x7b\x7c\x8b\xf9\x5c\xa0\xb4\x17\x11\x08\x9d\xaa\xf5\x92\x97\xc1\xc9\x9a\x6f\xf0\xa2\x98\x7d\xbd\x10\x87\x08\x8f\x52\xa7\x53\xd7\x93\x15\xcc\xbc\x73\xe5\x70\xcd\x69\x38\xe3\xd3\x89\xdd\xea\xc1\xa5\x9d\x3a\x9f\x75\xf5\xd7\xfc\x89\xed\xd2\x39\x99\x24\xff\x92\xc4\x36\xee\x3c\xfa\xd1\x68\x1f\xed\x48\x58\xee\x45\xdd\x7a\x2c\x9e\x88\xdb\x9f\xdf\x83\x33\x49\xd9\x4d\x38\xfb\xe8\x15\x4a\x07\xf1\x56\x14\x2d\x49\x73\x89\x2f\xf9\x3b\x9d\x0e\x50\x97\x0c\xa3\x65\xb5\xf4\xb3\x56\x34\xb1\xad\x91\x9f\x12\xa2\xbd\xd9\xdd\x37\x28\x71\x30\xa9\x7c\x70\x6c\x24\xe0\xad\x22\x63\x7d\xb0\x10\xcd\xb0\xe8\x92\xb8\x89\x88\x58\x21\x04\x22\x56\xc5\xf2\x1d\xb5\x0d\x76\xf5\xdb\xca\x7c\xa9\x3e\x3e\xd7\x09\x21\xd1\xf3\x0d\xb4\x84\x1a\x26\x24\xf9\x62\xd1\x2b\x2d\xa4\xca\xb3\xc8\x5c\x10\xbc\x7c\x6c\xf4\xc8\x9f\xf1\xde\x64\xa3\x39\xdd\x71\x69\xb1\x3f\xa7\xc8\x60\x81\xbd\x85\x65\x47\x81\x42\x43\x8a\x03\xb3\x1d\xd2\x1c\xf8\x8b\x57\x32\x84\x61\x6b\xc2\x0f\xb6\x3a\x74\xe1\xb1\x72\xdb\xa8\xdf\xaa\xd5\xb0\x6d\x85\x1d\x12\xca\x21\x1a\xac\xd5\x2b\x3b\xa0\xa6\x78\x78\x80\x28\x71\xf8\x5b\x62\x84\xdc\x11\x06\x48\xb0\xf9\xa9\x6e\xc1\x2b\xc2\x12\x90\x19\x91\x13\x93\x5b\xcb\x18\x56\x52\xe7\x83\x9b\x42\x9d\x56\x5e\x14\x65\xdd\x90\x9a\x39\x32\xe4\x7a\xf4\xa7\xf3\xca\x36\x8c\xcb\xab\xa6\xa2\x92\xfe\xa0\xbc\x7e\x6a\xcf\xdf\x4b\xeb\xe2\x7e\xeb\xea\x43\xbf\x94\x06\x56\xc0\x06\x26\x66\xbf\xa6\xbc\x63\x8f\x09\x7d\xb6\xd3\xb1\xd1\xdf\xab\x5f\x1c\xc3\x44\x57\xa6\x7b\x4c\x50\xd0\x60\xec\x4e\x54\x23\x70\xd7\x06\xf3\x0e\xb2\xfa\xa8\xf4\x84\x9e\x09\x2e\x00\x84\x3e\x7e\xc1\x72\xaa\xbf\xf9\x6c\x5f\xb4\xfe\x89\xb2\x9d\xe0\xb4\x35\x74\x44\xeb\xa0\x3b\x8e\x0d\x44\x5e\x35\xeb\x53\x22\xe3\xc3\xdb\x20\x61\x85\x35\x3a\xb6\xec\xdb\x8a\x6b\xe3\x41\x95\x6c\xf2\xbc\x07\xb9\xd4\x96\xb9\x60\x28\xfd\xc2\x93\x73\x64\xa1\x81\x01\xdb\x56\xcd\x3f\x1a\x67\x76\x5f\x62\x57\x32\xf4\xd6\xb1\x65\xbe\x90\xcc\x73\xb0\xb0\x31\xca\x52\xfe\xa8\xdb\x7c\xcd\xa4\x5a\x00\xff\xff\xcb\xc6\x79\xfb\xf1\x3a\x78\x02\x3f\xe2\x25\x3c\x0d\xa5\xd8\xa9\xbb\xa8\xbc\x4b\xf5\x25\xf1\xfb\xf2\xd1\x60\x8b\xae\x6b\xe2\x2d\x4a\x4d\x64\x40\xe2\x44\x9d\x1b\x4c\x7a\x0a\x10\xaa\x16\x24\x40\x54\x2e\x4a\x5a\x08\xcf\x5d\x5b\x73\x0b\xcb\x49\xf4\xea\x81\x81\x39\x15\x15\xed\x65\xe6\x80\x63\xf4\xc2\xb6\xf9\xd9\xeb\x45\x96\xed\xcc\x81\xfc\x7c\x34\xa7\x6c\xf6\xc8\xba\x02\x62\xba\xb0\xd9\xb6\x6b\x4a\x0c\xef\xe2\x39\xa1\xb5\x33\x75\x19\xa9\x7f\x2d\x66\xa6\xb7\x05\xb5\x5d\x09\xbd\x36\x0e\xfc\xd3\x76\x66\xfd\x16\xf3\xb0\xbd\xd6\xec\xaa\x94\xd1\x67\xfb\x56\x99\x84\xab\x20\xa5\xb5\x8d\x8d\x95\x80\xce\xd2\x84\xc4\xb7\x89\x56\x97\x36\x4a\xd2\x85\xd5\x2a\x6d\xf3\x91\xde\x22\x08\xe9\xa3\xf7\x68\x54\xe9\x05\x0e\x22\x0d\x6f\x1b\x4d\x0b\xda\xae\xfc\x4d\xc9\xdc\xb6\xd6\x4e\x06\xcd\xbc\x46\xee\xd6\x56\xee\xd6\xb6\xb4\x9a\x99\x9f\xe6\x17\xdb\xe5\x2d\x6d\x57\xf6\xbe\xbb\xbb\x6e\x3d\x87\x66\xcf\xb3\x6b\xcf\xc9\x6a\xe3\x58\x31\x68\x9c\xf1\xa5\x2b\xc2\x36\xf6\xbd\xfa\xcd\x9c\x0f\x68\x09\x74\x1a\x30\xc4\x2f\xae\xec\x56\x49\x6d\x05\x86\x01\x47\x7f\xeb\xe7\x62\x43\x9b\x5c\xdd\xd1\xbd\xfc\xeb\x2f\x26\x40\x5f\x33\x1e\xa7\x3c\x6f\x68\x93\xd7\xb4\xce\x39\xa1\xc5\xed\x1e\x8a\x40\x7d\x4c\x0b\x51\x14\xbf\xf8\x35\x5c\xf9\x42\x5e\xf6\x66\x5a\xab\xeb\xbe\x9f\x16\x7d\x70\xa5\x07\x1e\xdb\xb3\x20\x49\x4b\x71\xbf\xb6\xf9\x73\x0f\x39\x28\xd4\xee\x8e\xf2\xdc\x35\x35\x4a\xb7\x18\xea\x9b\xe3\xab\xd8\x06\xaf\xf3\x76\xd6\x48\x87\x57\xf8\x3f\x5a\xa3\xab\x0f\x39\x87\x97\xb3\xf5\x5e\x70\xba\x9d\xe1\xcb\x9a\x73\xf9\x47\x58\x45\xd2\x64\x79\x9e\x57\x46\x6e\xbf\x2a\xf3\x91\x9c\xdb\x6d\x73\x3a\xd5\xb7\x72\x1e\xa7\x13\x0c\x77\xbb\x3f\x9d\x8a\x5b\xd5\x39\xc1\x18\xd9\x6e\x0f\xe3\x71\x5a\xe6\xb2\x07\x50\xef\xca\x1e\xc6\x63\xec\x01\xd4\xc2\xba\x07\x5a\x42\x0c\x75\x09\xea\x20\x60\x76\xae\x22\x1f\xc4\x68\xdc\xc6\x68\xe2\xa7\x05\xd6\x17\xfb\x71\xaf\x22\x77\xaf\xe2\xc2\x74\xce\xab\x87\xd3\x29\xb5\x5f\xf1\xe8\x84\x54\x37\x0e\xaa\x6c\xaf\xb8\xb2\xdc\x42\x93\x24\x4b\xad\x1e\xc6\xe3\x34\x8d\x21\x7d\x22\xa0\xca\x79\x1e\x56\x57\xed\x59\x64\x8a\x0b\x7a\x71\x61\xc1\x4e\xcf\x49\xf6\xe9\xc3\x79\x13\xc7\x53\x1a\x9a\xc0\xd9\x23\x9a\x13\x67\x7b\xcf\x61\x38\x67\x8b\xa9\x03\x6b\xf1\x47\xd5\x9b\x25\x9e\xff\x27\xc0\xe4\xb9\xdd\x3d\xbf\xb8\x4f\x5b\x1b\x3c\xb4\xa3\x45\x6f\xa8\xbd\x78\xd2\x61\x3f\xba\xa8\xcd\xfc\x20\xfd\xe2\x0c\x19\x90\x76\x9f\x44\xd2\x9c\x27\x54\xce\x12\x1d\x62\x23\x3d\x7a\x68\x11\xa5\x43\xd8\xce\xd9\x20\xb6\xb3\xa9\x10\x20\x42\x2c\xea\xec\xff\xb6\xb5\x59\x2b\x1b\xa6\xba\x22\x94\x9a\x59\xbb\x45\x06\x46\x28\xc3\x90\x32\x90\xfb\x30\xb4\x0b\x3e\x35\x0d\xa6\x82\xee\x8b\xa9\x85\x17\x02\x9c\xa2\xb2\x83\x47\x56\x1d\x13\xba\x06\xe1\xc1\x7d\xdd\x3c\xfe\xcc\x5a\xd6\x7d\xcf\x9f\x78\x15\x91\x22\x48\xeb\x1c\x95\xe1\x3b\xf9\x1c\xfb\xb8\x8d\xc9\x17\x64\x86\x03\x4b\x4f\x62\x06\x94\x71\x7d\xa6\x10\x70\xd5\x56\x70\x60\xb2\xa8\x68\x5d\x70\x6d\xdb\x45\xb2\x53\x28\x32\x05\x47\xc4\x30\x4b\x32\xa3\x81\x89\x22\xd7\x35\xbc\xa8\x1e\x4a\x36\x5d\x4c\xdb\xa4\xf7\x12\x49\x84\xc1\x24\x6e\xf0\x55\x4b\xec\x2c\x12\x60\x07\xd3\xab\x24\x07\x0b\x57\xe9\x62\x32\x39\x44\x53\x34\xe0\x72\xae\x91\x73\x9c\x0f\x63\x28\x9d\x49\x76\xad\x49\xf1\xca\x64\xd2\x8f\x8c\x4d\x12\xb9\x57\x09\x15\x1b\x07\x05\x70\xbc\xca\x23\x63\xd7\x14\xef\xd1\xcd\xdb\xc4\x3a\x6f\x8a\xf7\xdf\xb3\xea\xa8\x0b\xee\x78\xb5\xfb\x5a\xc1\xc1\x37\xe0\x95\xdc\x58\x06\xab\xd5\x8e\x35\x96\x7c\x45\x74\xff\x6d\xc7\x1e\x05\xdf\x87\xd6\xcf\x6a\x84\x21\x0f\x19\xc5\x9e\xbe\x85\x54\x6e\xca\xcb\x7f\x1f\x58\x30\x23\x40\x65\xd6\x7d\xf2\xee\xb8\xbe\x4e\x10\x5a\x55\xee\x0c\xb8\xa1\xb7\xee\x46\x62\x99\xde\xc6\xfb\xba\x91\xf8\x82\xef\x54\xd8\x33\xdf\x25\x0f\x9b\x44\xa3\xfa\x89\xcf\xd8\x68\x76\x8f\x11\xf3\x69\xe8\x85\x18\x84\xba\xc4\xf8\x08\xd4\x6a\x6d\x45\xfe\xa3\xcf\x5d\x71\x67\xe5\x72\xf0\xe9\xef\xd5\x74\x91\xcd\x29\xdf\x65\xde\xac\x65\x2c\xd9\x6d\xfd\x78\x57\xdf\xd5\x4f\x4a\xe5\xc6\x9e\x0e\x45\xb5\x83\xab\x72\x5f\x94\x2d\x53\xe5\x82\x07\xb6\xb4\x8a\x25\x6f\x3b\xf5\xa9\x7e\x5f\xb5\x89\xe9\x5e\x9c\xaa\xfc\xb2\x2f\xda\x43\x7d\x38\x1e\x92\x2c\xe9\x9a\x23\x4b\x64\x66\x93\x88\xd2\x40\xfa\x94\xf7\x64\xc6\xab\x96\x35\xdd\xab\x7b\xc1\x46\x5f\xd6\xc4\xc9\xb5\x44\x2f\xfd\xcd\x39\x4c\x00\x4d\x4c\x3d\xc4\x6c\x89\x1f\x54\xd1\x15\x3e\xbb\xc7\xed\x85\x4f\xb4\x46\x12\x38\x03\x07\x10\x7f\xdd\x78\x81\x0c\x00\xc7\xb8\x7d\xe1\x0f\x71\x15\x72\xfb\xaa\xfc\x49\x17\xa7\xed\xd9\xb9\xa8\xae\x01\xbb\x28\x7b\x06\xd9\x51\xcb\xff\xc9\xbc\x6b\xab\x00\x55\x6e\x9e\xbc\xba\xf0\x03\x5c\xe8\x5a\x67\x5a\xb3\xba\x62\xa9\x76\x99\xf4\x42\xc6\xab\x3b\x2d\xe8\x25\xa5\x41\x41\x8c\xd0\xab\x1b\x2d\x7e\x9e\x93\xca\x8a\x2d\x83\x4d\x3f\x96\x02\x9a\x25\xe4\xf0\xdd\x0e\xb0\x3b\xc2\x4d\x18\x3a\xd2\x87\x66\x1b\xc0\x45\x8f\xea\x0e\x89\xbf\xff\xdc\x14\x87\x50\xa5\x90\xea\xef\x71\xd0\x52\x2d\xfd\xd3\xc5\x37\x2f\xf1\x3d\x72\x55\xf5\x8b\x9e\xbf\x80\xf5\xa4\x4d\x50\xae\x4b\xe0\x9f\xd4\x35\x0d\x80\x91\xec\x27\x4b\xbe\x2b\xbd\xbc\xbb\xe2\x12\xc2\xd5\x95\x0f\x84\xa5\xfe\xe3\xd1\x10\xa2\x0c\x82\xa3\xbc\x46\xc2\x02\x00\x02\x4a\x4a\x88\xb4\x38\x13\x74\x8c\xf1\xa8\xb5\xe1\x59\xca\x14\x49\x2f\xdf\x27\x77\x20\xe9\xa1\x72\xa9\xfd\x12\x93\xbd\x30\xc4\x7c\x80\x77\xc7\x63\x54\x22\x3d\x8d\x72\xaf\x3c\x0d\x43\xb1\xd3\x8e\x3e\x8b\x9e\xb2\x16\x62\x0c\x63\x30\x7b\x41\xb2\xab\x15\xb4\x10\x4b\xc7\xee\x27\x97\xdd\x53\x15\x6a\xc4\x56\x51\xa2\x05\xcb\x8e\xb5\x5b\x56\xed\x8a\xaa\x4b\x40\xba\x26\x5f\xa4\x19\xfb\x47\x2a\x1b\xdb\x2f\x28\xc4\x63\x82\x93\xb2\xcd\xba\x82\x63\xb5\x9c\x8e\x11\x1b\x02\x25\x5e\xb2\xe2\xdd\x40\x75\x19\x1f\xfb\x4b\xe9\x88\xfc\x85\x78\x39\x42\x97\xcc\xd1\xa2\x8f\x35\xe6\xed\x97\xfc\x1d\xdf\xb1\x26\xda\xa2\xa7\xf2\x5a\xc6\xbc\x12\xac\xfb\xea\x63\xa2\x59\xc3\x0e\x65\xb1\x65\x7f\xe6\xdd\x3e\xbd\x12\x4b\x61\xf1\x83\x02\x31\xb6\x83\x52\x72\x06\x28\x4e\xa7\xe7\x9e\xa8\x0c\x41\x79\x88\xcc\xe2\x78\xcc\x68\x6b\x63\xc8\x45\x67\x6e\x89\xd1\x04\x8a\x0a\x82\x3b\xa7\xa3\x8e\xfa\x34\x45\x6b\xab\xdb\xc5\x22\x61\x8f\xcc\x81\x22\xaa\x11\x80\x12\x3b\x4e\x4f\x3a\x6c\x91\x39\x7a\x64\x9c\x52\xc9\x6d\xbf\x2a\x6b\x73\xea\x43\xf7\xd0\xd4\xc7\x43\x42\xac\xf0\x2b\x7a\xdb\xa6\xef\xd1\x05\x3c\x09\x29\xab\x39\x65\xc6\x1c\x51\xe5\x18\x08\x0e\x24\x32\x67\x24\x47\x50\xdf\xab\xcd\x02\x58\xf7\xaa\xe1\x45\xda\x9d\x39\x40\xab\xae\x24\xc7\x12\x4b\xf7\x6f\x9f\xc2\xa1\xa9\x0f\xd6\x47\x70\x78\x73\x33\x5f\xf8\xe1\x7e\x7d\x3d\x81\x5e\xe7\x60\xe8\x57\x6b\x6f\x67\xda\xba\x40\xb9\xd8\x50\xcf\xea\x40\x97\x9f\xdf\x8d\xf8\x16\x12\x19\x72\x25\x76\x89\x0c\x16\x31\x47\x01\x00\xe3\xe6\xdf\x90\x8a\x78\xd0\x91\x9b\x93\x14\x70\xee\xd0\xd4\x41\x82\x8d\x20\xf8\x85\x24\xc6\x6d\xe4\x11\xcf\x4e\x21\x10\xe4\x50\xf8\x2f\xf7\x11\x33\x31\xbc\x74\x7c\xdb\xfa\x3e\xb3\xd0\x40\xef\x52\x1e\x3a\xba\x17\xe9\xfd\xdc\x3c\xea\x54\x55\x3e\x1e\x77\x2f\x16\x83\x7b\xd1\x08\x06\xc9\x4e\xb9\x13\x04\x72\x08\x16\x29\xc3\x9e\x82\x75\xce\xf9\x3c\x43\x6a\x11\xb0\xe0\xb3\x35\x81\x98\xa0\x01\xae\x8b\xe6\x02\xd4\x84\xa3\x9b\xb7\xa5\x65\xdd\x1b\xf6\xd4\xa5\x5c\x5c\x4e\x41\xc3\x04\x04\x07\xf7\x89\x8c\x8e\x3d\x09\xca\x82\xeb\x91\x5d\x44\x67\xe7\xa6\x46\xa9\x7a\x92\x2c\x63\x01\x8d\x55\x38\xc6\x65\x3d\x53\x38\x65\x94\xe7\xe2\x14\x0a\x98\x6f\xc9\x81\x83\x60\x4f\x5d\x66\x6a\x80\xd2\xcb\x4c\xae\xf0\x27\xa7\xb1\x13\x55\x54\xca\x74\x87\x2f\x50\x32\x49\x6b\x3f\x9b\x5c\x62\x21\x33\x1f\x07\xac\x92\x9b\xd0\x08\x28\x4b\x04\x5a\x29\xac\xf8\x3b\x84\x56\xb9\x99\x1e\xcc\x0e\x77\x45\x9c\x04\xa8\x40\x19\xad\x91\xe2\x74\xcb\x3d\x8b\x28\xe7\x54\x4c\x4d\xf8\x38\x8c\xe3\xd0\x2c\xca\x54\x1f\x48\x11\x8e\x9b\x29\xa6\xaa\x49\x4d\xfa\x8c\x0c\x0f\x1f\xe2\x76\x8c\x0b\xac\xe7\x54\x61\x89\x88\x7c\xb4\x65\x76\x8f\xba\xe0\x55\x51\xae\xc0\x4b\x29\x44\xd3\xca\x0e\x63\x24\xad\xbb\x20\xf5\xa6\xbb\x31\x3a\xa8\x7a\x3c\x86\xba\xc0\xb2\x5e\x0b\xa9\xd4\x11\x90\xe7\xbc\x4d\xc9\xd2\xba\xde\x2b\x9e\x7b\x08\x91\xfd\x03\xaf\xb0\xa1\xd1\x88\x86\x13\xf1\x1a\x66\xe9\x60\x93\x41\xe6\xdd\xe9\x80\x56\x93\x3c\xc9\xc4\x9b\x3a\x0b\x76\x0c\x42\xc0\xe5\x09\x66\xe7\x10\xe4\xc6\xe9\x94\x40\x56\x0e\x30\x78\xe4\x6b\xeb\xcb\x2a\x11\xc4\xf3\xab\xb2\x4c\xb2\xa4\x62\x4f\x9d\xf8\x6b\x23\x76\x93\xfd\x23\x9d\x2e\x48\xc6\xd7\xdd\x24\xb1\x0b\x41\x14\xad\x13\xa6\x0d\x3c\x28\x8c\x82\xed\xb2\xf7\x98\x9c\xc3\x3c\x9f\xb2\x05\x3d\x95\xd8\x34\xc0\xc1\x6b\xfb\x6c\x24\xb6\xcc\xf0\x69\xd8\xa4\x9d\x04\x0f\xcd\x1e\x04\x74\xd5\xd2\xe0\xe5\xf1\x38\xc5\x08\xa8\xb3\x07\xab\xc5\x2a\xed\xf2\x48\x31\x48\x39\xa4\x41\x58\x59\xfe\x2c\xda\xa3\xe4\xa3\xd8\xed\xe0\x57\x6a\x3a\x56\xef\x2a\xfc\x90\xab\x74\x89\x53\x25\x39\x01\xfe\xd2\x7e\xf3\xb2\xa1\x04\x17\xee\xeb\x33\x14\xf0\xca\x63\xf1\xe8\xcd\xef\x92\x09\x08\x36\x19\x64\xad\xc1\xd5\xd4\x52\x28\x61\x49\x7f\xbc\x7c\x23\x2a\xf1\x0c\xc4\x47\xb2\x99\xea\xe8\xf4\xd4\xce\x7e\xec\x66\x8a\xdd\xf9\xa2\x3e\x56\x9d\x7a\x4f\xf1\xb5\x84\xdc\xdf\xb0\xa5\xaf\x20\x05\xb8\xbd\x99\xb9\x09\xa9\xab\xfa\x9a\xa1\x2c\x11\xcf\x00\x5e\xee\xa8\xc4\xca\x67\x1a\xed\x17\x1b\xc0\x26\x96\x02\x08\xdf\xc4\xd1\x5c\x39\xd6\xea\xec\x3b\xe8\x60\x7b\xe3\x67\xe0\xc9\xc2\x52\xcc\xf4\x93\x39\xdb\x4a\x79\x3e\x5a\x2c\xef\x1a\x56\xfc\x7d\x19\x69\xf1\xc3\x9b\xaf\x7e\xce\x9c\x03\x57\x2b\x10\xd3\xff\x1a\xa3\xda\x02\xce\x67\x64\xb0\x97\x5f\x7e\xca\xd8\xac\x28\x21\xeb\x8e\xb3\x56\x95\x53\x12\x10\x62\x0a\x28\x42\xbc\x0e\x83\x1d\x7d\xf9\xe3\x9f\x7f\xb8\xae\x2b\x81\x63\xce\x76\xf5\xfa\xa7\x57\x5f\x7c\x65\xaf\x6c\x35\xbc\xb0\xcc\x1b\x69\xb0\xd3\xef\xbe\xfa\xfa\xcd\xc7\xad\xe8\xe7\x6f\xff\xfd\x9b\x37\x1f\x37\xf3\x6f\x7e\xfc\xfe\xab\xc8\xe1\xfe\xf4\xea\xdf\xbf\x7a\xfb\xcb\x4f\x4e\x5f\x88\x7f\xcf\x75\xf6\xd5\x0f\x5f\x0e\xf5\x05\x9b\x6d\xf7\x06\xa8\xdd\x74\xa6\x9c\x8b\x0d\xa3\xa0\xe8\x46\x09\x55\x3d\xc4\x08\x0e\xa5\xb1\x34\xdc\xe4\x98\xbd\xf7\xc7\x3d\x74\x4b\xe6\x99\xa1\x78\x6f\xbb\x0a\x5d\x27\x31\x20\xbb\x24\x98\x79\x1b\xca\x80\x1c\x5d\xdf\xe0\xdb\xb1\x3c\xfb\x15\xc2\x29\xef\xd8\xd3\x6f\x22\x1d\x20\x01\x63\x19\xea\xa1\x60\x70\x50\x5c\x81\xac\xa7\x03\xbd\x93\x92\x11\x85\x31\x70\xa4\x31\xac\x5b\xdf\xc6\x17\xf8\xa6\x89\xd1\xae\x3b\xb3\x50\xe6\xb3\xb4\xdf\x9e\xc1\x4c\x36\x74\x40\xa8\x64\xec\x84\x01\xe4\xce\xcb\x9f\xce\x59\xf3\xf3\xfb\x34\x01\xd1\x31\xd0\x27\xce\xd1\xaa\x77\x11\xf8\x5e\xc1\x81\xcc\xa4\xe8\x59\x4d\xde\xd5\x5b\x5b\x56\xdd\x51\x99\xb4\xc3\x97\xa0\x21\xb9\xfa\xe4\xc4\x56\x82\xe8\xca\x4e\x30\xe1\xce\x22\x7d\x2e\xc9\x42\x13\x90\xef\xd8\xad\x42\x21\xcf\xc7\xbb\x22\x38\x44\x57\x1d\x0a\x24\x5c\x4a\xe2\x7a\x87\x05\xab\xd5\x20\x3d\x4e\x7d\x7f\x08\x8f\xdb\x81\xef\xab\x34\x9c\x80\x52\xe0\x24\x54\x67\xb3\x44\xf0\x55\xef\xf7\x40\xed\xf9\xaf\x4d\x9d\x9c\xc7\x92\x27\x0f\xe7\x4e\x96\x84\x2e\xa1\x6c\x3c\x66\x90\x65\x2e\xf5\x24\x6d\x0e\x41\x05\xe2\x71\x7a\xa3\xc2\x8e\x12\x2d\x9a\x32\xed\xac\x44\x8d\xb3\xbb\x7a\xf7\x81\x50\xa6\xa9\xd7\x57\x5d\x17\x06\x39\x0c\x0f\x4e\x2b\xac\xa8\xf5\x38\xba\x31\x72\xae\xd4\x17\x4d\x93\x49\x1a\x12\xc8\x3b\x45\x21\x13\xf2\x31\xca\xa7\xa0\x33\xa9\xad\x96\x7d\x12\x12\x81\xaf\x21\x8d\x03\xca\x6e\x2c\x5f\x0c\x7b\x8d\x3e\x5a\x91\x9a\x13\x3a\xb2\xab\x02\xff\x6a\x2e\xd7\xf9\x10\xf3\x28\x79\xd5\x22\x0c\xf0\xa6\x72\xc1\x16\xe2\x37\xe0\xfd\xa5\x89\x9d\x53\x49\xc9\x71\x8d\xf0\xd1\x0b\xf9\xec\x58\x7d\x3b\x15\x50\xc9\xe9\x69\x9e\x4c\xed\xce\xf6\x1d\x33\x52\xb2\xa8\x04\xcb\x6e\xe7\xba\x3d\x85\xfd\xda\xbb\x88\x6e\x38\x49\xe2\x4e\x73\xb2\x20\x92\x69\xfb\x02\x83\xdf\xfa\x2e\x5f\x6e\x42\x57\xe9\x76\x6a\xa2\x3f\xe8\xe4\xf3\x67\xa5\xa1\x90\x03\xc0\x96\x40\x0f\x1b\x68\xaf\x37\x4b\xe6\x99\xa8\x30\x5a\x91\xe7\x16\x63\x0f\x72\x4f\x3b\x9e\x56\x84\x32\xa2\x6d\x3e\x40\x6a\x9d\xb7\xee\x68\x71\xb2\x21\x22\xc1\x91\xcb\x32\xa6\xff\x14\x55\xcf\x4c\xfa\x14\x82\x9b\x5b\x4a\xa8\x8c\xe8\x8e\x42\x05\x42\x55\x07\x19\x97\xa0\x0a\xdf\x05\x95\x93\x24\xc6\x04\x83\x07\xbb\x72\x3a\x85\x3b\xd5\x9f\x31\x8f\x7f\x7b\xac\xce\x99\x20\xe8\x77\xc9\x75\xcb\x91\x50\xe1\x16\xba\x80\xeb\x96\xf9\x59\xdc\xf1\x2b\xea\xfd\xa3\x86\x02\x3a\xfd\x79\xbf\xf1\xed\x68\x4a\x90\x9b\x9d\xf7\xbf\x89\x84\x37\x85\x76\xb6\xe5\x4c\xc5\x1f\x8b\x8e\x81\x69\x89\x63\x36\x83\xfd\x47\x3d\x8b\xf1\xdb\x14\xa3\xc7\x9f\xad\x02\x0c\xa4\x5f\xe3\x26\xf0\x72\xed\x6d\x0f\x20\xe5\x66\x8c\x3e\xc4\x75\xc3\x59\xd5\x15\x00\x6c\xc9\xbe\x6e\xf8\x3f\xeb\xaa\x2b\xca\x84\x42\xd7\xe0\xd5\xd1\xb1\x43\xb6\xd0\x5e\xc9\xf0\xbf\x34\x85\xb1\x8d\x65\x60\x46\xc3\x9e\x42\x3d\xad\x8e\x8f\x3f\x15\x0f\xac\xcd\xfe\x38\xe8\xb8\xfc\xf6\xef\xec\xc3\xeb\x92\xef\xa4\x71\x95\x62\x1a\x8e\x2d\x0b\x4a\xe5\xbe\xfe\x78\x7f\x6f\xe4\xf6\xb8\x61\x48\x1f\x3b\x29\xe1\x3b\xb6\xed\x7e\x34\x0b\x1d\xf6\x12\x79\xbb\x2d\xca\xed\xb1\x2c\x3a\xf6\x03\x7b\xff\x7d\xf1\x94\x46\xdd\x9a\x71\xf3\x6f\xcc\x31\x28\x4b\x02\x33\xc4\x55\xde\xce\x6f\x7d\xaf\x15\x7b\x51\x8b\xff\x61\xb4\x69\xe1\x46\x39\x02\x02\x6a\x97\xe1\xd5\x32\x51\xe7\x5a\xd6\x1d\x0f\x28\xe9\x48\x07\x5d\x55\x9d\xa6\x11\x23\x9f\x30\x47\x94\x73\xef\x2c\xcd\x8e\x03\xba\x84\xd6\x39\xca\xde\x6f\x14\x75\x94\xff\x61\xfe\x87\xdb\xcf\x5f\x4a\x1b\x99\x42\x20\xcd\xfb\xba\x49\x79\x2e\x7d\x08\xdb\xf1\x58\xfd\xa5\xa9\x92\x05\xad\x54\x30\x24\x3e\x1e\xa7\x95\x0c\xc1\xc3\x89\x41\x0d\x55\xae\x4a\xe7\x10\x79\x83\xe5\xaa\xc9\x92\xcb\x28\xae\x05\xa2\xe1\x5a\xd2\xde\x32\x37\x43\x5e\xcd\x8a\xdd\x2e\xed\xd2\x62\xf6\xb7\x9a\x57\xe2\x95\x19\x72\x39\x1f\x70\x19\xc2\x7e\x22\x17\xd7\xa6\x45\x65\x00\x2c\x65\xc7\x07\x15\x72\xbb\xbd\x94\x55\xba\x45\xee\x5b\x42\x9e\x75\x10\x14\xcd\x73\xda\x03\xaa\xb4\xec\x8c\x18\x8a\xf4\x5b\x4d\x91\x9a\x63\x06\xa8\x39\x4f\x96\x2e\x19\xca\xa6\x56\xa9\xfc\x43\x10\x1b\x73\x50\xff\xe3\xd9\xac\x98\x7b\x48\xe3\xf1\x67\x60\x2b\xe0\x14\xea\x4a\xf9\x5a\xfd\x85\xe1\x86\xf4\xdf\x9b\xcc\x24\x91\x54\xc5\xc4\x1a\xc6\xf4\x28\x0f\x97\x90\xcc\x74\x8a\xc7\x01\xbf\xbe\xe7\xe6\x56\x9b\x82\x8d\xad\xb2\x52\x2e\x42\x20\xc0\xbc\x90\xaa\x12\x2a\x05\x88\x76\xfa\xc8\xab\x9b\xa0\xac\xd0\x89\x42\xb1\x6b\xe3\xcf\x90\x24\xca\x81\x2e\x49\x7a\xed\xdf\x2a\x25\x82\x9f\x14\xe0\x20\x3e\x2f\x41\xc3\xa7\xc9\x23\xc7\x14\x28\x58\xe9\x74\x52\x6e\xe6\xb2\x80\x04\x1a\x8c\x73\x2b\x4d\x26\x4c\xcb\x7d\xd3\x81\x3d\x74\xdf\x65\xa3\x16\x94\x1c\xa2\xc2\x3a\x91\x44\x58\x4a\x61\x28\x01\xdd\x57\xa0\xaa\x2b\x65\x63\x75\xc7\x00\xea\x2d\x04\xff\x80\x30\x3e\xb1\x7e\x40\xb6\x13\x7e\x3d\x43\x9f\xa8\x1b\x17\x59\xd2\x99\x25\x0f\xf8\xf1\x7d\x51\x1c\xba\x63\x13\x09\x2e\x4c\x65\x74\x26\xda\xd0\x3d\x2d\xe9\x16\x09\xc7\x63\x2c\x8f\xd4\xcd\xd1\x18\x0a\x8e\x16\xae\x67\xf4\x6b\xfe\xcf\x68\x58\xef\x68\xfa\x8c\xb0\x82\xce\xa4\xe1\xd0\x4e\x18\x8a\xc7\x45\xeb\xda\x4b\x90\xe7\xcf\x4f\xda\x2d\xef\x83\x72\xca\xeb\xb5\xd5\x67\x55\x37\x8f\xf0\x98\x7c\xdd\xd4\x8f\xdf\x8b\x3d\x48\x39\x51\x8f\x84\xbc\x8f\xe2\x31\x9d\xfa\x17\x74\xb2\xb8\x80\xf1\x90\xe2\x05\x66\xa1\xb8\x6b\xd3\x76\xba\x95\xb7\x3f\x65\x84\x2c\xd3\xea\x96\x9f\x4e\x55\x0e\x12\xa8\x54\x20\xa9\xed\xec\x6d\x59\xb4\xdd\x17\x40\x98\xa0\xa7\xf6\xe9\x64\xb5\xc9\xf3\xfc\x08\xbe\xfd\x04\xe2\x55\x71\x5a\x6b\xf7\xdc\x02\x33\x49\x35\x8a\x5f\x10\x44\x4c\xca\x68\x21\x8a\x80\xd5\xd2\xe7\xe0\x91\x24\x31\xf2\xa3\xf0\xaf\x6f\x3d\x68\xe5\x50\x07\x99\xba\xe9\x5e\xe7\xc3\x4c\xc1\x65\xe9\x92\x7f\x1e\x6f\xe3\xaf\xaf\xa4\x0b\x4a\xbe\xfd\xbb\x3c\xdf\x72\x85\xa8\x69\x0e\xae\x56\xf3\x3e\x73\x5c\x2e\xa7\x7b\xf4\x46\xae\x55\x86\xbe\x97\x9f\xd9\x5e\x98\xd3\x3d\xf8\x23\xd7\x3a\xb7\xdf\xcb\xcf\xa6\x29\x70\x2b\xdf\x56\x5d\x5a\x23\xfb\x79\x57\x37\x3b\xd6\xbc\xa9\x0f\x00\x88\x09\xa1\x8b\x39\x64\xa6\x18\xaa\xf9\x27\xc0\x90\x5e\xe5\x49\x50\x19\x63\x94\xbe\xa9\x0f\xa6\x52\xef\xc2\x4e\x44\x6c\x2b\xa3\xc9\x6a\x99\xad\xd8\x1e\x71\xa4\xb4\x8d\x51\x5c\x73\x3a\x9a\x93\x21\x6f\x5c\x6d\xb9\x35\x8f\xbb\xde\x69\xd9\xe5\xf3\x53\xd6\xe9\x9b\xd2\xa9\x9b\xc2\x87\x6f\x0a\xf3\xad\x12\x60\x96\x5d\x08\x54\x94\x83\xc5\x7f\xd4\x7f\xa4\x0b\x94\xe8\xde\x8b\xa6\x70\xea\x59\x5b\x9b\x01\x5a\x5b\x10\xf1\xb1\x09\x69\x00\xdb\xa3\xb2\x70\xb8\xc6\x00\x65\x6e\x43\xa6\x55\xec\x90\xc1\xb8\xe4\x80\x86\x0f\x83\x1e\x99\x6f\x79\xf2\x8e\x35\x1d\xdf\x16\x65\xe2\x1b\xaf\x59\xb5\x56\xa6\x96\xc3\xf9\xf4\x34\x72\x4a\xe1\x41\x53\x89\xce\x55\xe2\x3f\xab\x07\x3d\xa8\x35\x98\x27\x91\x13\x38\x5c\xc6\xbe\x15\x0c\xbd\x8c\x78\xe2\xe0\x62\xbc\x8a\x69\xb0\x53\xab\xa0\x64\x86\x57\x5a\x3c\xd5\x91\x51\x64\x6c\x5e\x31\xcc\x87\xd8\x30\xe2\x4a\x5f\x35\x0a\x60\x0c\x02\x71\x0c\x5e\x32\xda\xde\x2e\x20\xb2\xde\x82\xd0\xf9\x2d\xe6\xec\x9b\x13\x1a\xd9\x79\xb3\x09\x58\x7f\xda\x5e\xf5\x34\x28\x17\x54\xfb\xb5\x68\x5f\x54\x46\x31\xf1\xf8\xaa\xe4\x0f\x15\xf2\x30\x90\x7b\xf3\xc8\xbf\x29\x6c\x5e\x49\xc6\x62\x46\x3b\x90\x67\x99\x73\xd9\xbe\x0c\xeb\x6e\x43\x2d\xc8\xcc\x3a\xc9\xe4\xa2\x40\x4b\xd0\xb3\x2b\xd9\xe0\x9d\xe4\x94\xdc\x9b\xba\x2f\xda\xef\x8f\x65\xc7\x0f\x25\xfb\x0f\x7c\x60\x20\x64\xa7\x8c\x17\x34\xd0\x4b\x9b\x76\x84\xaa\xbf\x21\x7e\xbc\xf5\x89\x40\xc4\xcc\xb0\xe3\x21\x53\x04\x27\xf0\x8d\x0a\x9d\xe6\x16\x9a\x1c\x51\x5e\xd6\xda\xd0\xf2\xc6\xf7\xe1\x57\x17\x1a\x37\x16\x74\xe7\x14\xd1\x53\x7c\x93\x4d\xd6\x43\xb9\x5f\xca\x6f\x58\xad\x6e\x79\x6e\xdf\x2a\xa7\x2e\x5b\xcd\xb3\x05\x71\xfa\x03\xe3\xcf\xcf\xfc\x1b\xed\xb1\x21\xce\x37\x87\x75\xe1\xf9\x5c\x50\xc3\x2b\x1d\x4f\xaa\xa2\x9c\x64\x5a\x0e\x59\x01\xdf\x58\xac\xd9\x26\xe7\x84\xf2\x51\x9e\xd7\x56\xfc\x55\xb3\x35\x28\xdf\xf1\xb7\x86\x72\x5a\x88\xc3\x93\x46\xfe\xe9\xe0\x42\x57\xce\x7a\xc4\x0c\xac\x0d\x93\xd9\x06\xdc\xdc\xbd\x70\x4e\xc1\x01\xd5\x87\x81\xf3\x91\x32\x99\x58\x73\x23\x5d\xd1\x39\x08\x2d\x7c\xaf\xad\x39\x7d\x02\x6a\x30\xd4\x4d\x64\x02\xe7\x82\x98\x85\x89\x6b\xc2\x83\xcc\xa3\xd7\x7b\x28\x6a\x99\xf3\xfc\xc0\x03\x32\x37\x42\x6f\x0b\x7b\xe8\xd8\x6a\x83\xe1\xa6\x97\xfc\x3e\xf5\xe7\x77\xbb\x20\xc3\x77\x0d\x12\xd2\xc4\xe6\xca\xaf\x9e\x2b\x53\x73\x15\x83\x8f\xfc\xd1\x9d\xb1\xdf\xea\x1b\x04\x01\x62\x35\xcf\x6c\xe7\xfd\x21\xe4\x12\x72\x5a\x39\x7d\x31\x07\xf4\xc8\x12\x83\x5d\x47\x96\x4a\x2b\x37\xbf\x50\x9d\xcf\x97\x7a\x8f\xea\x65\x3d\xc9\x17\xa4\x5d\xd7\x03\xfb\x51\xad\xeb\x4d\x6c\xf5\xb5\xd1\x81\x5e\x8e\x9b\x66\x1f\x56\xae\x4d\x57\x12\xe4\x7e\xad\x84\x99\xd1\x8b\xaf\x38\x63\x7e\x06\xe0\xe4\x9e\xcc\x63\x91\xdf\x5a\xe4\x6a\x33\xc5\x50\x73\x3f\x00\x6e\xa4\xa3\x61\x14\xa5\x55\x89\xb1\x31\x40\xa9\xde\x9a\x34\xc9\x5e\x25\x12\x06\xd9\x75\xfa\x76\xe3\xc6\x41\x94\x5f\x69\xd6\x93\x58\xcf\xb0\x74\xd2\x39\x23\x17\xf5\xd3\x22\x28\xbe\x42\x93\x38\x96\x14\x44\x3f\xf8\x24\x2a\x25\x8d\xc8\x46\xcf\x5d\x10\xe7\x00\x8d\xfe\x19\x2a\xa2\xb4\x93\x7b\x42\x32\xe0\x0e\x5c\xe2\x8b\xaf\x12\xe9\x91\x23\x93\x88\xd3\x24\xb1\x4d\x57\x12\x19\xae\x33\xc6\x02\x5c\x8f\x67\x22\xb4\x6a\x30\x46\x9b\x40\x0c\xf9\xab\x07\x6a\xf3\x6a\xba\x58\xb6\xb7\x02\xc6\xa7\x53\x12\x8e\xdb\xaa\x5b\x33\x38\x6e\xdb\xb1\x43\x02\xb6\x38\x00\xf7\xf2\x2f\x1d\x3a\x2d\x3a\x8b\x21\xa9\x77\x74\x1b\x06\x47\x96\xca\x88\x8b\x8b\x8d\xf7\xd4\x7f\x92\x5d\xc1\x47\x45\x2f\x7c\x17\x0b\x21\x18\x0b\x5f\x69\x74\xac\x03\xcf\x91\xea\x2c\x12\x60\x52\xf0\x05\xb1\xd7\x44\x61\xe7\x58\xc8\x42\xa0\x44\x07\xde\x3e\x06\x38\x7f\x10\xa7\x63\xc2\x00\x1e\x45\x0a\x2a\x52\x7d\x9b\xcf\x97\xdc\x4e\x61\x90\x2f\x08\x5f\xb7\x43\x0f\xd8\xba\xdd\x18\x03\x68\x99\xb7\x64\xbd\x81\xc4\xec\x76\x45\x67\xe9\x7a\x8a\x86\x5a\xbf\xcd\xbb\xc8\x1b\x06\x9f\x60\x45\xb7\x01\x0f\x10\xab\x2e\xca\x97\x11\xbb\x09\x01\xe6\xb7\xf3\x55\x50\x96\x2d\x28\xcf\xd3\x2e\x60\x27\xc8\xbf\x30\xda\xe6\xdd\x94\xab\x95\x7d\xf6\x42\x4b\x95\x38\xb9\xc5\x24\xd5\x93\x9c\xdf\xce\x57\x2c\x9b\x32\x42\x41\x00\xf1\x75\x59\x17\x5d\xda\xea\x00\x90\x7f\x44\x12\xcb\xbd\x2e\x17\x20\xea\xb1\x78\xa2\x2c\xe0\x65\xbc\xd4\x82\x30\x77\xda\xa2\xa4\xab\xa9\x8f\xd5\x2e\x4d\xbb\x29\x23\x2f\x39\x79\xc1\x97\x5d\xde\x4e\x18\xed\x6e\xfd\x7e\xc5\x43\x34\xd5\xf1\x74\x1e\x8b\xa7\xdc\x9a\x75\xa7\x67\x8d\x63\x1f\x1a\xb6\x05\xa7\xf7\x54\x3a\x9b\xa8\xdf\x43\x1a\x73\x5d\xe1\x47\x2f\x67\xa8\x98\xab\x89\xee\x04\xde\x83\xde\x92\x39\x58\xf4\x5a\xb1\x4d\xe9\x85\x2e\x41\x24\x27\x95\xed\xa6\x4e\x44\xbc\x92\x24\x13\xc1\xcb\x32\xb4\x07\xfb\xf1\x3e\x4d\x66\x5a\xfb\x3d\x5d\x00\xf2\x9f\x67\x4a\xbe\x3f\xe5\xd3\x85\xba\xaa\xdf\xf3\xea\x12\x17\xf5\xc8\x2b\x5d\xdb\x3d\x56\xc7\xfc\xbb\x78\x32\x9a\x39\x4f\x97\xd2\x91\x67\x97\x03\x76\xa4\xc7\x76\x5e\xed\x84\x4a\x15\x41\x4f\xa8\x2f\x3b\x08\x1b\xa9\xac\xd2\x8e\x42\xe1\x52\x6c\x54\xaa\x05\xce\x79\xf8\xb6\x2a\x39\xa7\xd2\xe8\xed\x51\x18\x5d\xe6\x3e\x6a\x5e\x8d\x16\x59\x33\x93\xbf\x31\x74\xd2\x05\x02\x33\x2e\xcc\x6d\xc9\x33\xcf\x21\x16\x6c\xba\x57\xfc\x4f\x4b\xa6\x7b\xe7\x92\xbe\x4c\xf7\x8e\x50\xc0\xfd\x4a\xe8\x76\xed\xed\xd5\xde\x95\xe8\xc0\x6b\x9f\xa9\xd7\x7f\x93\xf3\x49\xf2\x2f\x09\x55\x6a\x33\x90\x63\x2d\xe8\x82\xac\xcb\x55\x22\x57\x94\x64\xc9\xb6\x6d\x93\x4d\xba\xa5\x7a\x95\x84\xee\x07\x28\xc9\x73\x83\xa7\x82\xbd\x6c\xc7\xe3\xbd\xb2\x91\x3f\x37\x1a\x8a\x5d\x61\x7a\xbd\x3d\xf0\xc2\xe9\x23\xda\x12\x01\x88\x4f\x19\x36\x7e\xfe\xc7\x91\x1d\x41\x51\xbf\x3b\x36\x28\x1a\xd3\xfd\x81\xd2\xe9\xa3\xa6\x25\xc1\xeb\x93\x26\x26\x81\xf4\xda\x99\x11\xca\x72\xde\x93\x4c\x31\x1d\x4a\x66\x50\x85\xb8\xb2\x0e\x9e\x0a\xca\xf3\x7a\x94\xe7\xd5\x0a\x21\xaa\x9d\x56\xe4\x65\x5a\x4f\x2b\x42\xb2\x79\x08\x25\x3e\x05\x3a\x08\x28\x06\x7c\x3f\x02\x58\x14\x7f\x51\x8c\xc7\x17\xc6\x75\x2e\xf6\xf9\x83\x90\xa7\x1c\x9c\x83\x62\x42\xfe\x1b\x06\x5b\xcc\xe7\xd3\xd8\x80\x66\x75\xe7\x85\x7b\x57\x0f\xa7\x00\xe5\xec\xe2\x7e\xdb\xb1\xa2\x6b\x23\x20\x6a\x33\xda\xc5\xec\x79\xd0\x61\xc2\x60\x52\x4b\x15\x73\x56\x0d\x4f\xae\x72\xb0\x18\x30\xc2\x3f\x63\x4e\xff\xcb\x4f\x67\x0d\xed\xa3\x5e\x13\x43\xfe\x02\x03\x9e\x11\x03\x0e\x09\xfc\x3e\x0d\xcd\xf0\xa5\x3d\xa3\x25\x5b\xd2\xd2\x2f\xdb\x98\x67\x1e\xa8\xb3\xcd\x3e\x0e\xea\x24\x78\xa8\x8a\xe3\xa0\x8a\x53\x94\x62\x2f\xb7\xb8\x8e\xd2\x52\x0a\x91\x5c\x92\xc2\x15\xae\x20\x84\x5e\x3e\xb0\x10\x45\x9d\x75\x8c\x08\xa5\xdd\x83\xd5\xd5\x11\x57\x71\xda\xbc\x9d\xa4\x7e\x57\x21\xa5\xfb\x12\x4a\x94\xb9\xd5\x85\xb1\xe0\xc0\x87\x46\x9b\xfe\x86\xa3\x9d\x01\x43\x7e\x9f\xb6\xea\x96\x87\xec\xc0\x72\x70\x2f\xea\x0b\x1e\x3e\xc3\x70\xec\x0f\x07\x2b\xb9\x30\xdc\xb4\xd6\x66\xf6\x5a\x8f\x58\xa1\x93\xd5\x31\x1a\xc9\xed\x7a\x4c\x71\xd5\x15\x72\xb4\x71\x98\x6d\xca\x16\x0f\x58\x25\x8e\xf2\xef\xf2\x3d\x23\x7d\x18\x45\xac\x6e\xae\x89\x3f\x1e\xb3\x7f\xac\x9b\x2e\xa1\x0d\x2b\x30\x77\x7b\x24\x42\x39\x2a\xb0\x13\x5a\x3c\x71\xc8\xd0\xb3\xad\xab\x8a\x6d\xbb\x3f\x73\x19\x80\x4b\x3c\x68\xbc\x02\x2b\x56\xf1\xf3\xd8\xb4\x75\x93\x25\xc5\xb1\xab\x13\xf9\xeb\x15\x7c\xd9\x35\xf5\xe1\xc7\xea\xab\xc7\x43\xf7\x21\x1b\xcd\xe9\x7d\xdd\x6c\xd9\x4f\x65\xb1\x65\xfb\xba\xdc\xb1\xe6\x35\xff\x27\xd0\x1e\x50\xfe\x0d\x04\x4e\x53\x45\x0f\x0d\x87\x78\xd5\x52\x25\x24\xfe\xc2\x74\xa9\x49\xdd\xf0\x07\x5e\x15\x65\x42\xc1\x1c\x37\x4b\x6e\x6f\x5e\x24\xb4\x3e\x14\x5b\xde\xc1\x7a\x0e\x66\x00\xf1\x53\x20\xc3\xa6\xc3\x24\xf5\x4d\x5d\x96\x62\x22\xf8\xd7\x6b\x56\xb5\xbc\xe3\xef\x44\xbb\xcf\x74\xe1\x81\xb1\x1d\xfe\xbc\x26\xa5\xfd\x3f\x51\x2d\xb5\x60\xff\xea\x65\xb7\xbf\x63\xf7\x75\x83\x1a\xe0\xc0\x0e\xd3\xcf\x7c\x1f\xe6\xbb\xa7\x0d\xdb\x32\xfe\x4e\x25\x4a\x04\x60\x91\xd6\x9a\xb5\xb1\xdb\x8c\x05\x7b\x3f\xec\x0a\x9d\x82\xe6\x2d\x6f\x7f\x7c\xc7\x9a\x57\xe2\x14\x7d\x6d\x50\x24\xfd\xa9\xa8\x0f\x7c\x29\xaf\x1e\x22\xca\x81\x97\x82\x20\x3b\x41\x24\xd2\x97\xb3\x8e\xb5\x82\x7d\x05\xc9\xde\xbd\x68\x93\x10\x72\x3a\xbd\xe4\x55\xc9\x2b\x76\xc2\xe0\x7e\x5b\x56\x96\x6e\x4d\x9d\xb7\x90\x44\x83\xb1\xc1\xd5\x90\xc0\xc5\x9a\x2f\x8a\xed\x9e\xe5\xcf\x7d\xd4\xbc\x53\x01\xbf\x32\x03\x72\xc5\x56\xf5\x39\x4b\x19\xec\x2e\xb4\x2b\xd5\x36\xcf\x30\xcc\x0f\xc5\xa3\x31\x32\x12\x57\x25\x07\xb3\x82\x21\x17\x23\x47\xf0\x05\xce\x3d\xd2\xc2\xc3\x76\xd2\x89\x8d\x80\x7d\x7a\xc5\x67\x23\xf1\x07\x76\x03\x11\x13\x4f\xb9\x3d\xc6\xcc\x24\x89\x96\xaa\x5c\x78\x7b\x65\xdc\xee\x26\xef\xf3\xec\xd0\xb8\xeb\x1c\xa4\xc8\xf0\x95\x6e\x8e\x33\x38\x57\x57\x3e\xe3\xa2\x72\x7c\x4a\xfd\x39\x13\x30\xcf\x98\x0b\xd4\x21\x96\x34\x84\x5b\x71\x43\xa6\x8b\x65\x77\x9b\xcf\x97\x9d\x12\xd1\xc2\xc7\x75\xb7\xc1\x89\x5a\x11\xe0\xe1\x2b\x62\x49\xb1\xf5\x93\xc4\x0b\x8d\x2d\xbe\x0f\x9b\x8d\x19\xed\x35\x5c\x3f\x88\xca\x51\x87\x11\x42\x11\x09\xf1\xea\x41\x67\xb6\x0e\x03\xb5\x24\x02\xe5\xf3\x6d\x60\x0f\xd1\x7d\x38\x30\xcb\xb0\x49\x82\x3a\xb8\xdd\x41\xa8\x9d\xa8\xe1\x91\x1f\x86\xd3\xb8\x54\xe8\x38\x9c\x75\x6c\xd5\x79\x9e\xd7\xab\xb4\xd5\x16\x57\x4e\x5e\x6e\xd9\x5a\x8d\x37\xdc\x83\xcc\xe7\xa7\x27\x46\x68\xbb\x72\x43\x5c\xe3\x79\x9f\x4e\xfc\x74\x4a\xbb\x34\xf2\x89\xb6\x2a\x7e\xcf\x8b\xe4\x5c\x9c\x73\xd1\x14\x2c\x28\x71\x28\xd0\xbe\x8c\xe6\xa4\x27\xb4\x52\x89\xc0\xad\xcc\x99\x79\xeb\xbe\xbf\xf8\xa5\xfd\xba\xa9\x1f\x71\x43\x09\x1d\xcd\x49\x36\x5a\x64\xa3\xc5\x60\xd0\x7f\xca\x69\x8b\xa7\x1e\x4a\x6e\xb4\x20\x58\x0e\xfa\x85\xc2\x66\x28\xbb\xb1\x91\x95\x4e\xbd\xe7\xe7\x3f\x40\x92\x01\xcd\xbd\xa1\xc8\x44\x54\xda\x0a\x9c\xf8\x8d\x9f\xbb\x38\x75\x3e\x7f\x8f\xa9\xa2\x75\x80\x7d\x78\xd6\x7e\x02\xc8\xc8\xad\x71\x9c\x0f\x31\xc4\x69\x6d\x9b\x9f\x8c\x00\x6b\x3d\x8b\x57\xc7\x2a\x00\x33\x15\x29\x7f\x33\xd9\xaa\x41\x8a\x62\xd7\x02\x9b\x19\xa7\x9a\x28\xe9\x4d\x1e\x79\xab\xb2\x8a\x04\xe9\x9a\xc0\xf9\xbd\x39\x06\x70\xde\x84\x7a\x8a\x97\x42\xea\x3c\x1e\x58\x87\x2b\xfe\x51\xad\xa8\x61\x65\x21\x88\x2c\x53\xe1\x67\x59\xf2\xa3\xc9\x5d\x6f\xef\x1b\xbc\x64\x2a\x68\x4f\x42\x13\x95\xaa\x5b\xbd\x45\xdb\xb6\x55\x47\x9b\x0f\xb7\x53\x5b\x29\xa9\x19\xb7\xc5\xdb\x07\x56\xb1\xa6\xe8\x98\x2a\xd6\x10\xa0\xeb\x8b\x8d\xd0\x21\xde\x83\x4f\x7f\x51\x31\xdf\x69\x31\x53\x04\x99\x31\x2e\xfe\xdb\xb1\x95\xeb\x17\x80\x2f\x61\xcc\x54\x94\x43\xed\xea\x47\x3d\xab\x67\xc1\x53\x66\x01\x58\x88\xd2\x94\xac\xe7\x1b\x67\x93\x9d\x1a\x12\xbc\xd6\xf3\x4d\x6f\xef\xe2\x7a\xbe\x51\x12\x69\xab\x3a\x04\x76\x0f\xfa\xb0\x63\x78\xca\x7b\x61\x11\x91\x29\x11\x6b\x34\x14\xa9\xf5\xd8\x7e\x61\x4a\xb1\x16\x2c\x70\x3c\x46\x4a\x75\x94\xe7\xa6\x48\xf1\xa7\xae\xdb\xa6\x4c\xa7\x29\x2f\x52\x57\x37\x6c\xf7\x05\x34\xc8\xa5\xc9\x23\x36\x07\x0b\x51\xfb\xb7\x1e\xcb\x69\xfa\xba\xfb\x50\xb2\x76\xcf\xc4\x05\x4b\x93\xcf\x5b\xf1\xf3\xf6\xc5\xf3\x8d\xa4\x9f\x6f\x92\x89\x6a\x36\x49\x6e\x46\xfc\x51\x5c\xef\xa2\xea\x96\x37\xfd\xe7\x2f\xb1\xb2\x6d\x89\x5e\x43\xa0\x1f\x49\xf7\x2a\x6e\xc4\x06\x35\xf9\x29\xd1\x29\x82\xdf\xe2\x34\x7e\xc4\xf2\x10\x36\x75\x83\x08\xbc\xab\x6f\x66\x48\x18\xfe\x9f\x2a\xe6\x60\xd0\x00\xbf\x04\x83\xff\x2f\xe9\x1a\x3f\x54\x3d\x32\xb4\xfc\xa4\x47\x23\x11\xc4\x66\x81\x93\xe5\x17\x3b\x1e\x27\xdf\xbc\xf9\xfe\xbb\x44\x7d\xf2\x5a\xcc\xba\xe2\x41\x3c\x5d\x76\xee\xa9\xfb\xb2\x7e\x6f\xdb\x59\xdb\x4d\x34\x16\x0c\x5d\xef\x65\x42\x15\xd7\xd6\x46\xd7\x3b\x34\xac\x65\xcd\xbb\x10\x71\x2b\x1b\x9f\x41\xb4\x3e\x6a\x09\x26\x1b\x77\x49\x63\x8b\xca\xa9\x04\x95\x53\x29\x2a\xc7\xd4\x58\x57\x1b\x6b\x82\x8a\xdf\x08\xe6\x08\xaf\xbc\xe5\x71\x69\xa7\x80\x15\xfb\xe2\xe6\x84\x95\xb7\x32\x47\xda\xc0\xaf\x3d\x2a\x20\xbb\xe7\x9f\xd8\xbe\x78\xc7\xeb\x63\x73\x29\x1d\x33\xbc\x88\x0a\xb1\x41\x0c\xf5\x01\x39\xd4\xde\x4b\xfb\xa3\x89\x46\x99\xf4\xc7\x31\xf5\x6f\x8a\x07\x81\x2d\x87\x8c\x80\x43\x69\xa1\xf5\x7a\xd3\x26\x1f\x2d\x96\xda\x1c\xe0\x70\x25\x52\x56\xf5\x5e\xdd\x29\x5b\xb4\x6d\x5d\x09\x82\x4f\xd5\x7c\x53\xa7\xc1\x33\x51\x16\xad\xfe\xfe\xea\xae\x55\xa6\x5d\x5e\x71\xee\x0f\xe0\x19\x61\x20\x7c\x2a\x08\xfe\xcd\xae\xc4\x2a\x76\x23\x20\x4f\x46\xb4\x95\x9d\xdc\x7d\x2a\x5f\x9e\xcf\x8b\x59\xc0\x66\xaf\xa2\xad\xf1\xf7\x9b\xfa\x90\x37\xf1\x49\xe9\x0a\x13\xdd\x27\x70\xe9\xee\x93\x1f\xcc\x35\x36\x83\x81\x9d\xfa\x88\x39\x4c\x9d\x39\xa8\xe3\x70\x07\x87\x8c\x24\x67\x76\x0a\x4c\xe9\xe5\x46\xfd\xe7\xc7\x6e\xd4\x77\xec\xbe\x3b\x3f\x4b\x51\x23\xba\x55\xff\x19\xdd\x2a\x31\xdb\x8f\xdf\xab\xeb\xa6\xe1\xed\x16\xc9\x52\xe7\xd0\x4c\x5c\x25\xb5\xbd\x29\x89\xee\x47\x93\x0f\xd5\x1f\xec\xc7\x1b\x3a\x93\x8c\x1e\x44\x85\x52\xde\x11\xd3\xcb\xd3\x89\xce\x67\x3c\x4e\x3f\x61\x46\x13\x6f\x33\xa8\x73\x2a\x5e\x0b\xb1\x7b\x1f\xb5\x19\xd0\x60\xb8\xa7\x73\xdb\x21\x5d\x49\xd4\x6e\x9c\x9b\xd0\xc7\x6d\xc7\x85\x39\xf9\x1b\x42\x68\xa3\x53\x8a\xff\x26\x6f\xcb\xaf\x41\xd0\x3a\xfc\xc7\x13\x6f\xc7\xe3\xe4\x43\xc0\x98\x8b\x0f\x0a\x6d\x6b\xaa\x76\x06\x94\x1a\xa6\x26\x72\xc6\x46\xa4\x90\x1c\x9e\x06\xfa\x7f\xfa\xa8\xfe\xbb\xfa\xe0\x75\x2f\x90\x33\xf6\xce\xa3\xe2\x10\x2e\x08\x05\x3e\x9d\x12\x90\xad\x9b\x1a\x6b\xbe\xa1\x55\x8e\x3f\xd0\x74\x14\x77\x48\x0b\x39\xdb\x3f\xf3\x6e\xff\x53\x0d\xbf\xd3\x96\xd0\x1a\x43\x4f\xcb\x28\xdc\x2e\x11\xaf\xd9\xdd\xf1\xb8\x3a\x4b\xdf\x5b\x42\xda\xf5\x02\x84\x0e\x18\x0d\x2b\xc3\x38\x5a\x1b\xe0\x18\x30\xdc\xe6\xa8\x53\x64\x8d\x24\x05\xec\xb6\xf3\x0d\xad\x04\x8d\x99\xb4\xec\x91\x4f\x77\x1f\xaa\xe2\x71\x50\x84\xe2\xf7\x63\x02\x37\xd1\x8a\x64\xa3\x39\xb1\x52\x73\xf1\x06\x43\xb6\xe5\x72\x72\xbb\xfa\x3d\x24\xcc\x38\x24\x34\x39\xe0\x5e\x24\xbe\x49\x8d\x95\xc0\x69\x14\xdb\xc3\xd7\x7c\x07\x06\x15\x04\x35\x22\x9d\x14\x44\x14\x4d\x23\xb5\x03\x6d\x18\x95\x55\xc7\x68\xf2\x28\x4b\xd4\xaa\xf4\x8e\x35\x16\xac\x6e\x6b\xce\x00\xc5\x43\xde\x45\xf2\xae\x8d\x20\xbb\x5c\x42\xcc\xa2\x6a\xeb\x33\x44\xed\x25\x3a\x65\xd0\x0d\x0a\x44\x66\xfc\x5e\x25\x42\xf3\xef\xb9\xb3\xa3\xe7\xaf\xbc\xf8\xea\xce\x5d\x5b\x84\x80\xb8\xcd\x0b\xf3\xea\xc3\x8e\x11\x6a\xd4\xe1\xbd\xa3\x45\xfe\xdc\x2f\x6b\xb8\x97\xa3\x3c\xaf\x4f\xa7\xb4\xc0\x4b\x5d\x59\x02\x0c\x29\x66\x40\x26\x77\x40\xb0\x31\xb1\xe5\x19\xfa\x89\xcc\x43\xd2\x0c\xa2\xf8\xac\xe6\x59\xac\xba\x85\x35\x09\xdc\xc0\xe4\x83\x99\x96\xc0\x05\x95\x11\xbe\xb8\x93\x8a\xc9\x64\x7e\xcb\x29\xbd\xa9\x0f\x44\x8b\xc9\xa5\x90\x13\x68\x78\x27\x8d\xa4\xd2\xe7\xa7\x05\xd5\x5e\x83\x91\x13\x43\xb7\xc1\x3f\xce\xe7\xb6\x1c\x1a\x5c\x9c\x58\xd1\xa4\x8c\xf4\xa4\x67\x65\xcb\x14\xbc\x63\x29\xe5\x8a\x7f\x01\x0b\xd5\xad\xb8\x81\xa5\x2d\x3b\x76\xf2\xed\xf1\xea\xc1\x91\x26\xff\x72\x48\x2b\xf6\xfe\xa6\x9b\x81\x8a\x2c\xc5\x70\xf3\xe2\x9a\x3f\xa3\x40\x11\x55\x29\x84\x50\xa3\x78\xf2\xb1\x0b\xae\x31\x14\x36\x02\xfb\x6a\x33\xbf\x5f\xbc\x7e\x3d\x18\x5d\xc9\x6a\x17\x67\x72\x48\x28\x5c\xc1\xf8\x2a\x5a\x0c\xce\x86\xb9\x44\x26\x90\x3f\x8b\x70\x89\xcc\xe6\x12\x8d\x5e\xca\x0e\x99\xe4\xb2\x8a\x34\xd2\x83\xab\xb2\x01\xf2\x52\xd1\x8e\x43\x43\xd5\xc7\xee\x57\x8f\x91\xcf\x89\x83\x00\xad\xbb\xad\x86\x77\x9f\x0a\x79\x27\x7e\xa8\x77\x2c\xf2\x0c\x39\xdf\xa5\x86\xe0\x8b\x3d\x2f\x77\xb1\xae\x6c\x78\xf0\xdf\x01\x3c\x31\x39\x42\xe4\x47\x74\x26\x7e\xde\x28\x47\x1a\x4a\x9f\xa5\xf6\x13\xd5\x87\x12\x8e\x8d\x76\x53\xfe\x78\x5b\xd5\x5f\x8b\x19\xbd\x56\x3a\xc2\x3e\x14\xe5\x81\xcc\x6e\xa5\x89\x32\xb7\x9c\xcc\x0a\x93\x3c\xc6\x82\x34\x92\xc5\x1a\xc0\x12\x08\x50\x5e\x5a\x6c\x6b\x37\xc2\xc1\x7b\xda\xb2\x86\x17\x25\xff\x67\xc4\xdd\x5e\x73\xd6\xd0\xa2\x7d\xd5\xfe\xed\x7f\x3f\xb2\xe6\x43\xca\xc6\x63\x36\x93\x5a\x67\xc1\x64\x41\xe4\x26\x6d\x9d\xcd\x4e\xa7\xe7\x9e\x76\x29\x8f\xa7\x1b\xe3\x39\xa8\xd4\x05\x41\x83\x02\x16\x19\x6c\x83\xc1\x7f\xfc\xee\xd8\xb1\xd3\x09\xe2\x13\x9e\x4e\x49\x42\x66\x8f\x05\xda\x00\xb1\xa7\x43\xc3\xda\x96\xd7\xd5\xe9\xf4\x32\x9d\x4d\xc8\xfa\xaf\xd3\xfc\xed\x46\xfc\xf5\x92\x2c\xb9\x20\x7b\x20\x3c\x09\x9a\x0b\x9d\x4e\x7c\xbd\xd8\x4c\x92\xf5\x26\x21\x93\x24\x4f\x26\x58\x2c\x26\x6e\x3a\x5a\x89\x3a\x19\x5f\x7f\xb6\xc1\xdc\x72\xc6\x09\x4e\x56\x96\x5d\xc2\x2f\xd1\x0b\xa1\xad\x0c\x72\x32\x4e\x48\x4f\xbb\x1a\x1c\x4d\x7e\xdb\x8d\xe3\xc1\xae\xc9\x59\x7c\xcc\xae\xf5\xe8\x06\xe9\x52\x38\x43\x71\x22\x2d\xba\x00\x05\xf6\x3c\x67\x13\x0b\xec\x2d\xa1\x97\xf4\xb8\x0d\x09\x0a\x50\x26\x54\x79\x3b\xd4\x4e\xfa\xd0\xd6\xb9\xd4\x09\x14\x79\x3d\xe9\x64\x6f\x4d\x0e\x0f\x21\xdd\xe7\xcd\xa4\x53\x35\xa5\x1d\xad\x7c\x2e\x41\xcf\x80\x89\x3f\x23\xe5\xd0\xe3\x31\x1f\x24\xd2\xdb\x49\x79\xdb\x8c\xc7\xfb\xdb\x76\x52\xd2\x5d\x3e\xc8\x2c\xb0\xc9\xf6\xb6\x1e\x8f\x8b\x5b\x36\xd9\xd2\x43\x7e\x1c\x8f\x77\xca\x39\x59\x51\x95\x01\xed\xaa\xa8\x4a\x29\x2c\xd4\x09\xd1\xc1\x98\x02\x1b\x7d\x5d\x37\x86\xea\x3b\x9d\xae\xa1\x50\xe3\xbb\x88\xf1\x5a\xee\xa5\x11\xc0\x4a\x06\xaa\xcb\x12\xdc\xb2\x64\x73\xdb\x5d\xaa\xb1\x3a\x64\xe7\x8f\xf6\xe5\x67\xb8\x03\x7c\x7a\xbe\xd6\x78\x7c\xe1\xa8\x5f\x7e\x86\x5b\x5e\x0d\x75\xa4\xaa\x05\x60\x2a\x77\x2d\xee\x18\x32\x7c\xc8\x92\xa6\xd7\x36\x15\x69\x0c\x44\x27\x71\xa0\xea\xe4\xbf\x38\x27\x42\xab\x61\x18\xb9\x3c\x8c\x11\x2f\x85\x40\xaa\x34\x62\xb8\x8d\x82\xb6\x6d\xc7\xe3\x4a\xa7\xfe\xd5\x4e\xee\x02\x75\x7c\xd9\x14\x0f\xff\x21\x6d\x38\xbf\x54\x1c\x8f\xf1\x7b\x50\x55\xbe\xd1\x36\xac\x76\x25\x0f\x0e\xc0\x2e\x04\x3c\xbb\x4e\x27\xe4\x96\xc0\x93\xf7\xb3\x6c\x91\x31\xc1\x9f\x39\x45\x84\x64\xc0\x1e\x44\xf8\xa3\x21\x14\xf2\x6b\xf6\x5d\xdf\xf9\x97\x9f\x59\x47\xc0\xaf\xe8\xf8\xf2\x4e\x2b\x1c\x03\x5d\xcb\x3d\x6f\x2f\x6f\x71\x75\xc5\x16\x3b\x16\x04\x6a\xa7\xc7\xe3\xca\xda\xec\x6a\x3c\x16\xfb\x0d\xa6\xd2\xf8\x73\xc4\xb3\xd6\xde\xef\x76\x3c\x16\x78\xfb\x78\x90\x3f\x46\x4c\x46\x64\x8c\xce\x6c\xc0\xcf\xc4\xdb\xeb\x69\x8c\x03\x14\x1f\xd4\x8c\xe7\x23\x19\xc8\xf2\x76\x6e\xb3\xce\xd6\xc8\x91\x05\x5f\x31\xb6\xe1\xb0\xfc\xc1\xc5\x97\xe8\xe8\xb8\x55\xd2\xc9\x90\x44\x32\x3a\x85\x61\x39\x2c\xfb\x8a\xee\x1a\xe3\xa0\xa8\x36\xbf\xa7\x6f\x6d\xab\xb9\xb3\xfe\x47\x46\xfd\x62\x35\x11\x7f\xb7\x5d\x73\xdc\x76\x75\x93\xe7\xf9\xeb\xae\x11\xf7\x6c\xed\xd4\xd9\x64\xce\x4f\xdc\x5e\x87\x20\x70\x28\x07\xf5\xf7\x0d\x4f\xc9\x73\x23\xdf\x7c\xf1\xd2\xf7\xda\xc9\x9a\x16\xb4\xc9\xd7\x1b\xba\x17\xff\x94\x46\x58\xa6\x86\x40\xc7\xb0\x72\x3c\x66\x04\x9d\x91\x4b\xc3\x64\x68\x9f\x48\xf1\xa5\xce\xbb\xb4\x5c\xb7\x1b\xea\xf3\x94\x98\x90\x24\xd4\x5f\x15\x2a\x49\x6c\xbd\xae\x64\x2b\xb4\x2e\xf9\xfa\x58\x96\x62\xc3\x09\x2d\xc6\xe3\x42\x3e\x69\x20\x11\xf4\x6d\x68\xc6\xe3\x3d\x2e\x6a\xdd\xcd\x78\xfb\xb5\x5a\xb9\xa9\x88\x69\xa7\x56\x5e\xc1\x6c\x5b\x94\x65\x5a\xe8\xb0\x5e\x59\xe7\x37\xa1\xe6\xa3\x95\x73\xca\xe7\xd0\x22\x9f\x2c\xa6\x21\x21\xb4\xd8\x20\xb3\x16\x9d\xa5\xf3\x12\xc8\x89\x86\x65\x38\x57\x5b\x7c\x85\x5c\xd4\xb3\xb2\xe2\xb4\x9b\x50\x8c\xeb\xed\xd1\xe5\xbd\xa6\xe6\xdd\x35\xda\x9d\xfe\xaa\x65\x8a\x8e\x36\x02\x0b\xee\x23\xb0\xb1\x5f\xb7\x1b\xc1\x00\x61\xbe\x1d\x83\xe3\xd2\x06\x9d\xa5\xa2\x66\x39\x03\x91\xf0\x6c\x5e\x18\xf5\xf5\x19\x5a\xf1\x4e\x2c\xf0\xb1\x8c\x93\x88\xce\xe3\x8a\x29\xc5\x66\x0f\x0d\x3b\x44\xad\xdf\x3a\xf4\xd9\x44\x52\x7b\xbe\x64\x3a\xb6\xe1\x92\x4f\x26\x84\xdf\xa7\x6c\xcd\x41\x60\xa2\xc4\xa6\x44\x49\x20\x96\x3a\x06\x91\xe5\xfc\xe5\x2d\x42\x27\xd6\x80\x69\xac\x37\x3e\xbf\x8b\x61\xf3\x36\xcb\xe1\x88\x64\x72\xbe\xc7\x7c\xfd\xdb\x00\x11\xc4\xfc\x53\x71\xe0\x3f\x05\x5e\xf0\xd0\x37\x74\x37\x84\x32\x54\x76\x1e\xb0\xa5\x24\xe8\x10\xbb\x8b\x48\xa7\xa5\xba\x3b\xdd\xad\x79\x0c\x77\xb4\x3a\x68\xa4\x0d\x54\xb5\xc2\x1d\x95\xc6\x38\x3e\xee\xa8\xc7\xe3\xda\xe0\x8e\x3a\x82\x3b\xd2\x63\xec\x5a\xd6\xfe\x76\xd6\xb1\xbd\xac\xaf\xde\x48\xaf\x39\xad\xcd\x16\xea\x20\x0c\x96\x04\x47\xc6\xc3\x24\x32\x02\xe7\x71\x60\xc7\x8a\xfc\xb8\xe6\x9b\xf5\x62\x43\x1b\xfc\x6b\xbe\xa1\x6d\x3e\xa7\x65\xde\xa8\x18\x9b\x25\xb8\x15\x4f\xc8\x3e\xef\xd2\x66\x2d\x2e\xe8\xde\x18\x03\x46\x0c\xf9\x68\x41\xe8\x16\xc7\xc7\xe5\xec\xa9\x12\xfa\x67\x85\x4c\xc6\x3c\x57\x21\xec\xe6\xd4\x09\x59\x66\xde\x59\xfd\x2c\x86\xd0\xaf\x28\x9a\x50\x5b\xb1\xba\x48\x82\x2b\x33\x65\xeb\xf2\x0a\xa4\x02\x97\x3c\x53\x66\xf8\xb6\xc0\xd2\x93\xc6\xd8\x02\x50\x29\xc8\x30\x04\x99\x6b\x20\x46\xec\x6b\xb8\xb4\x3c\xb9\x87\xf4\x2b\xbe\x72\xc5\x28\x4b\x46\x83\xca\x92\x81\x62\xad\x95\x89\xeb\x52\x4e\x27\x3f\xd4\x84\x66\xf0\x64\xa6\xf0\x95\x77\x73\xfd\xef\xb4\x95\x7b\x26\x6d\x72\x19\xe4\xea\x87\xc3\xcd\xbd\x58\xdf\x8a\x9f\x52\xe5\x2a\x46\xa1\x60\x31\x2a\x23\x4b\x47\x52\x0c\x5e\xf8\x7b\xd1\x7d\x57\x1f\xf2\x5a\xfc\x6b\x7c\xe4\xd5\x64\xb6\xc7\xb6\xab\x1f\xbd\xb0\x20\x58\xa8\xa8\x2a\xc3\xd5\x92\xab\x6a\x19\xcc\x46\x96\x20\x29\xb6\xce\x2b\x26\x17\xd5\x87\x56\xfb\x75\xd6\x7c\x33\x60\x3a\xee\xd6\xf1\xe4\x92\xf6\xe2\x2f\xd7\xd6\x9b\x73\x45\x5d\x3c\x94\x73\xb3\x0c\x22\xb3\x9f\xed\x4f\x9e\xe6\xa5\x0e\xd5\x31\x7b\xe6\xd0\x81\x19\x9e\x73\xbf\x41\xd2\x24\x6a\xaa\xbb\x93\x6b\x43\xf0\xa5\x27\xa7\x75\x55\x32\x16\xcd\x3b\x52\x34\xef\xe9\x04\xa1\x87\xad\x6a\xd4\xf9\x65\x32\xb2\x7b\x54\x82\x18\xd5\xbd\x30\x90\xa8\x41\x20\xb9\x59\x57\x7f\x57\xbf\x17\x5b\xd1\x4a\x7f\xd6\x34\xf9\x3c\x99\xb4\x93\xe4\x36\xa1\xcc\x79\x72\xb4\xf4\xcc\xb2\x48\xaa\x5c\x11\xbd\x4d\xfe\x50\x7e\x3a\x05\xc3\x6e\x15\xd3\x40\x5c\xc9\x7f\x35\x60\xcf\x94\x74\x60\x78\x28\x38\xb6\x15\x53\x36\x8f\x6f\x1a\xdb\xea\x91\x45\xa8\x9f\x4e\x50\x67\x32\x48\x71\x9a\x7c\xde\x35\xc1\x62\x8c\xf9\x60\x45\x48\x26\x1a\x5c\x3d\x06\xad\x48\x96\xf0\xc7\x07\xc9\x47\xaa\x44\x12\x6d\xb3\x15\x83\xd8\x93\x31\x1f\x08\x11\xdb\x21\x93\x1e\xbc\xe3\x2d\xbf\xe3\x25\x58\x11\x26\x32\xd5\x02\xa1\x55\xaf\x7c\x56\x2c\x87\x8a\x8a\x3c\xa7\x23\x7e\x3a\x29\x29\x97\xeb\x32\x04\x21\x76\xb4\x09\x87\xe8\x5f\xfe\xed\x4e\x83\x57\x95\x01\xdf\xa9\x56\x3b\xb1\x40\x45\x93\x1c\x8a\xdd\x8e\x57\x0f\x10\xb9\xf2\x74\x9a\xd3\xc5\xfc\xaa\xfa\x18\x16\x53\x37\x21\xb4\x52\x86\x14\x62\x4e\xf8\x67\x64\x4a\xf2\x8a\x5e\x33\xc2\x77\xc0\xb4\x7e\xc4\x94\x7e\x06\x6e\x57\xcf\x08\xf2\xe1\x33\xe7\xb2\x74\xa9\x7b\xe3\x74\xfa\x11\x81\x38\x99\x66\x2a\x98\x27\xc9\xf7\x4e\x18\xb4\x04\x4e\xc7\xc4\xbd\x94\x33\x3c\xd4\x94\xb9\xc3\x1b\xbf\x1f\x07\xd2\x06\xb3\x73\x2e\xd9\x6c\xbb\xe7\xe5\xae\x61\x55\xcc\xf6\x5f\x00\xf9\xee\x16\xb3\x2d\x7e\xfe\xb2\xdb\xdd\x26\xb4\xf5\xe0\x1d\x60\x71\x5b\x97\xed\xa1\xa8\x4c\x98\x01\xb7\x98\x9c\x4e\x0b\xeb\x6a\x70\x19\x89\xdb\x57\xa7\x5f\x8e\x16\x4c\x8f\x74\x87\x8e\x20\x07\xf8\x6f\x79\xed\xf3\x83\x21\xc3\x5c\xf3\x04\x17\x87\xc4\x30\xba\xa1\x39\x09\xd1\xd1\x5d\x5c\x99\x5a\xa0\x85\x0b\x1e\x02\xb4\x7a\x10\xe4\xb9\x3f\xfe\xc0\x58\x74\xe7\x0c\x2c\xaa\xf1\xea\xc8\x96\xbb\xc8\x5b\x42\x0f\x39\xb7\x54\xb6\x67\x1f\xa4\x01\xb5\x21\x0f\xd4\x86\x51\x13\xd6\x2b\x5e\x3c\xa9\x33\x04\x6e\x44\xec\xd7\x42\x1b\xaf\xf8\x47\x13\xa8\x49\x0f\xd1\xce\x94\x71\x8e\x5b\xd1\x9a\xed\x3b\xf1\x20\x5c\x37\xdd\xf8\x08\xf9\x02\xe9\x98\x67\x64\x8b\x16\xec\xdf\x04\xb5\x05\xfe\x84\xf9\x4e\x53\xd0\x43\x74\xb1\x7d\x85\x69\x91\x6f\x75\x4c\x05\x08\x4d\xd8\x88\x02\x4f\x7c\x4f\x8f\xa2\x10\x6c\xc0\x92\x0c\xfe\xff\x4b\x42\xdb\x28\xbd\x6b\x22\x60\x0d\xc3\xcd\xc1\x81\x1b\x8b\x2c\x6e\x37\x9a\x71\x96\xf4\x9f\x5f\x3e\x64\x3d\x94\xee\xf3\xb0\xbe\xa6\xd0\xd6\xc5\x86\x96\xf9\x68\x41\xd9\xfa\xb8\x99\xee\x6f\x9d\xaa\xeb\x66\xf3\xf2\xb3\xf1\x38\x2d\xf3\xd1\x9c\xd0\xea\x56\x07\x17\xc2\xca\x18\xb9\xcd\x2f\x54\xc6\x21\xaa\x13\xc9\x93\x6a\xfb\xa0\x72\x95\x1c\x0f\x49\x86\x52\x4e\x82\xc1\xff\xea\x98\x1d\x8b\xf4\x83\x55\x2e\xcc\x83\x7e\x42\x01\x4c\xae\x0f\x1b\x27\xea\x92\xdf\xe2\x37\x83\x4c\x0d\x95\x57\x0c\x90\x2f\x74\x64\xc4\x7a\xa5\x04\xa7\xc6\x92\x49\x86\xd2\x1e\xcd\x4d\xaa\x6f\xf3\xd1\xa8\xfd\xa3\xa0\x22\x5a\x5d\x6d\x07\x15\xeb\xe7\x62\x33\xe7\x0a\xc6\xfc\xb4\xdc\x0e\x5d\xdb\xa2\xc8\x23\x17\xed\x48\x5a\x1e\xda\x2f\xe4\x7f\x3b\xb2\xe8\x4d\x9e\x10\xb4\x17\x18\xd0\x1b\x2b\xf9\x60\x9b\x3b\xb2\x0e\xae\xcc\x75\x56\x9d\xfe\x5b\x3c\x8b\xe5\x87\x40\x58\xb4\x66\xd4\xbf\x9e\x1b\x41\x51\x6e\xcb\xba\x02\xa7\x57\xd5\x7e\x15\x48\xea\xa0\x4a\x1a\x9a\xb3\x28\x42\xbb\xd5\x6e\x8c\xd2\xfd\xc6\x24\x89\x4d\x95\x67\xfa\x48\x0c\xa0\x1e\xec\x95\xf9\x33\xe8\xd4\xb5\xb5\x20\xe2\x27\xd6\x45\xcb\x8e\x16\x85\x4a\x96\xf5\x53\x80\x6f\xf0\x3c\xb4\x01\x8f\x13\xd5\xdf\x1b\x08\x4d\x33\x51\xe5\x6c\xc7\xf6\x8f\x56\x93\x5a\x68\x9d\x4f\x3e\xdc\x27\xdf\x5f\x4c\x79\xdb\x05\x95\x3a\x08\xb9\x6e\x1c\xed\x82\x0a\x52\xf9\x41\x68\x3a\x6a\xbd\x89\x9e\x4e\x7c\xe6\xf9\xdf\x13\xc1\x95\x21\xf9\x1a\x74\x27\x09\x5c\xaf\x27\x5c\xcb\x50\x57\x92\x3a\x0f\xfa\xda\x6b\x09\x82\xe0\x28\xe3\x6e\x69\x0e\x04\x27\x2d\x30\x84\x49\x9e\x77\x1f\x0e\xac\xbe\xd7\x99\xf8\xda\x43\xc9\xbb\x34\xb9\x49\x9c\xe8\x9c\xc0\x28\xb0\x1c\x7d\x07\x27\x0c\x9e\xa0\xfa\x20\xfe\x5a\x6c\x4e\xa7\x79\x4f\x28\x6e\x0c\xc7\x94\x7e\xb6\x48\xc8\xa8\xf9\x72\x66\x29\x01\x6d\xbb\x3e\x42\xa5\x6e\xe9\x7c\x73\x4b\xec\x14\x28\xb9\xa7\x6c\x06\x5d\x44\x3b\x17\x87\x3a\xd8\x75\x57\x1f\x72\x66\xd4\x9e\x96\x6d\x1f\xa1\x2a\x62\xd2\xd9\xc6\x03\xd3\xda\x2b\x17\x0e\xec\x23\xec\x1d\x55\x4c\xb6\x84\x2c\x8c\xf2\x6e\x89\xdd\x1c\x47\x2f\xfb\x83\x17\x31\xd0\xfa\xa2\xdf\x72\x65\x18\xa1\xed\xb2\xf5\x15\x35\x0e\x96\x92\x78\xb8\xc6\xef\xc5\x27\x53\xbc\x36\xa1\xc8\x10\x89\x93\x54\x9e\x7f\xc4\x1d\xcc\xb6\x64\xa7\x78\x1a\x83\xb5\xd0\x95\x80\x7e\x94\xe1\xa5\x32\xf8\xf0\xec\x2e\xb5\xd7\x5a\xb2\xef\x1e\x2d\x6b\xc4\x78\x35\x57\xd2\x21\x6d\x68\xb9\xba\x1a\x20\xae\x95\xb2\xdb\x9e\xd0\x67\x74\xa4\x05\x13\x51\xcf\x4e\xd3\x3e\xa1\xb3\x49\x24\xa8\x74\xd5\x45\xdb\xd7\xeb\x7a\x11\x7b\xe8\x75\xd3\x23\xa4\xb9\xbe\xb8\x9e\x55\x67\xa2\x7c\x77\x63\xa0\xe1\x28\x5a\x1d\x97\x54\xe5\xbe\xa5\x33\xf2\x01\x66\xc5\x20\xfb\xee\x7c\x6d\x37\xc4\xce\xce\x6b\x11\x3a\xf7\xd8\xe7\x2c\x51\xb1\xcc\x0e\x30\xdc\x25\xa2\xe5\x8b\x7d\x22\x84\xf5\xbd\x35\x5b\x7d\x66\x10\xea\xd2\x38\x7d\x87\x39\x1d\xb1\x5c\x22\x41\x77\x2a\xc1\x33\x81\x95\xbf\xb3\x67\x05\x18\xf3\xaa\x66\x76\xde\x0f\x3d\xad\xc0\xa7\x31\x4c\xeb\xe3\xd7\x70\x1e\x58\x85\x39\x86\xb2\xe6\xd8\xdf\x75\xd2\x1c\x0c\xa9\x61\x39\xff\x0e\x84\x5d\x74\x75\xf0\x8a\xb4\xc8\xf3\xbc\x72\xfd\x89\x53\xe7\xb7\x8d\xd2\x3c\xea\x82\xa6\x89\xba\xc3\x41\x37\xa7\x53\x82\xce\x36\xc1\x17\xe2\x31\xbd\x30\xc8\x7a\xee\x18\x73\x2b\x40\x3f\x6b\x7b\x4e\x07\xda\x0c\x5b\x86\xd3\xe1\xf9\xae\x1c\x94\xa4\xde\xfd\xa8\xd7\xd0\xd9\x27\x2e\x78\xda\xce\x6d\x92\x37\xa8\x11\xf1\xe9\x22\x81\x17\x6d\x33\x5d\xbc\x21\xdf\x58\x20\xe1\x79\x78\x49\x24\xea\xe3\xd6\xa1\x3e\x06\x57\x23\x5f\x46\xff\x41\xdc\x10\xfa\xf2\xbf\x52\xd5\xfb\x09\x07\x3f\x49\xd3\xd8\xdf\xcb\xe8\x37\xee\x71\x63\x0a\x5f\xaf\x50\xbc\x40\x3c\x28\xb5\xd4\x2a\xb9\x12\x99\x8a\xc7\x2d\x65\x44\xba\x65\x4b\x4f\xbe\xc4\xe5\x11\x10\x84\x78\x80\x83\x75\xbb\x41\xb4\x1b\xad\xed\x48\x23\x75\xb2\xa0\xf0\x64\xb9\xff\x72\x78\xe3\x85\x8f\xc5\xb9\xe1\x9c\x44\x42\x61\x5c\x09\xb5\xba\x76\xa5\x43\xd8\xaa\xa3\x84\x41\x28\xb3\x9d\x2d\x49\xe6\xfe\x9c\x7e\xd4\xae\x44\x6b\xbb\x22\x57\x77\xa2\xd7\xdf\x06\xb9\x67\x91\x55\x20\x40\xea\x65\x48\xf8\xcc\xbc\xdf\x67\x16\x72\x36\xc1\x53\xb0\x0e\x25\xcd\xbe\xb4\x90\xc1\x8b\x80\x22\x53\xd7\xab\xce\x77\xfb\x01\x5d\x0e\x32\xc6\xea\x99\x5e\xa2\xb4\xd7\x21\xf3\xd8\x6a\x91\x4d\x17\xb4\xb2\x4a\x47\xe1\x0b\x2f\xaf\xf6\x7f\x1b\xf1\x17\x3a\xe1\x86\x8e\x30\xb4\xce\x5f\xa6\x82\x0e\x3b\x41\x0e\xee\x97\x5c\xde\x78\x8b\x02\x73\xc8\x0c\x1e\xd8\x2a\xda\x68\xfa\x45\x3b\x89\x23\xea\x17\xed\x34\x4d\xee\xf9\x13\xdb\xc5\x48\x9d\xd5\xf4\x2c\x39\x92\xd5\xab\x79\x56\x39\x84\xe8\x8b\x16\x09\x08\x1e\x5a\x38\x3a\x4f\x4d\x7c\x42\xf8\xe5\xd3\x66\x84\xc4\x8c\x33\x25\xe9\x58\xfa\xa2\x45\x9a\xcf\x75\xb2\x8f\x0b\xdd\x5d\x31\x46\xad\x03\xa1\x14\x3a\xee\x49\xf3\xff\x02\xd8\xd9\x47\x61\xa7\x89\xc0\x8e\xa1\x74\x7f\xe5\x5a\xce\x54\xf4\x96\xa0\x44\x88\x1e\x58\x18\x33\x09\x3f\x4c\xce\x40\x44\x9b\x08\x75\x03\x5c\x55\x18\xca\xc7\x70\xcd\x9f\xfb\x2d\x50\x14\xe3\x2a\xe9\x65\xf9\x80\x79\xae\x72\xae\xfe\x4b\x64\x88\xae\x3e\x84\x23\x2c\xc4\x08\x45\x38\xc2\x22\x36\x02\x30\xda\xe7\xd7\x70\x1b\xf4\xf4\xd9\xc0\x1a\x3e\xfb\xc4\x35\x84\x23\xfc\xeb\xc0\x1a\xfe\x75\x68\x0d\x84\x56\xb3\x87\x86\xef\x20\xf7\x92\x7b\x7c\x62\xdc\x89\x1d\xeb\xbe\x98\x86\x15\xc8\x4b\x6c\xbf\x5e\x6c\xc8\x0b\xfd\x27\x0d\xa7\xb0\xe2\x03\x6b\x88\x6d\xf8\x78\x3c\x50\xfb\xf3\xd8\xd2\x56\x3c\xfb\x98\xce\x57\x7c\xaa\x27\x9a\xf1\x89\xf5\xb7\xce\xa0\x6c\xc7\x58\x72\xb6\xa0\x0e\xb7\xe0\x3f\xf5\x16\xcc\xcd\x16\x18\x37\x6a\x7b\x0b\xda\x21\x48\x89\x81\xf5\x78\x3c\x54\x3d\xb2\x09\x9f\x6d\x56\x6d\xf6\x51\xdd\xaf\xda\xa9\x9e\x6b\xd6\x4e\xac\xbf\x89\x14\x03\x14\xf1\x3d\xfd\x58\x16\x63\xf2\x2b\xde\xad\xfd\x6a\x9e\x35\xae\x00\x05\x5e\xad\x7a\x60\xa5\x1f\xcf\x32\x7d\xda\xec\xe4\x1b\x66\x4f\x4f\xbe\x61\x3d\xd8\x7c\x4a\x55\x87\x17\x73\x93\xb6\xe4\x99\xaf\xb8\x2f\x82\x46\x6a\xc8\x75\x2e\xcc\x98\x52\x83\xd9\x7c\x0a\xaf\x5a\xd6\x74\x7f\x82\xc0\xa2\x51\x4f\x78\x6d\xf4\x8f\x88\x5f\xe9\xa8\x56\xba\x37\xab\xdf\x8a\x3d\x75\xaf\xf9\x5d\xc9\xab\x07\xcd\x3b\x1c\xab\xce\x28\x40\xe0\xc7\x6a\x32\xb1\x7f\x66\x0b\xa0\xd6\x2a\xa7\xce\xf2\x7f\xe0\x93\xb0\x63\x65\xf1\xc1\x56\xcf\x57\x46\x97\x05\x15\xb5\x05\xa8\x67\x30\x3f\x6a\xa5\xc2\xbd\x64\x45\xe3\xc5\xd5\xb4\x4c\xd6\xdd\xc0\xa5\x4e\xd2\x02\xa3\x46\xe9\x68\x4b\x99\x93\x6e\xad\x97\x83\x6a\xdf\x64\x5c\x83\x20\x22\xd6\x1b\xcc\xd5\x05\xd3\xb7\x7c\x27\x23\x31\xc8\x54\x1c\x33\x37\x89\x9d\xad\x0b\xba\xb3\xce\xc5\x51\xbc\x06\xdd\x5b\x79\x34\xb5\x18\x21\xae\x7e\x40\x2b\xe4\xf6\x86\xeb\xc4\xa3\xda\x8f\x38\xc5\x20\x66\x3a\x48\xb2\xfe\xb2\x6e\x37\x61\x2c\x49\xe7\xb3\x1f\x93\x0b\x4b\xf3\x44\x59\x47\xff\xb7\xb9\x30\xdb\x96\x00\x71\x37\x66\xf8\x76\xdf\xd4\x8f\x3f\x1e\xbb\x96\xef\xd8\x78\x3c\x62\xe3\x71\x85\x66\xa8\x61\xa2\x21\xad\x3c\x93\xe1\x72\x83\x74\x77\x7e\x7f\xe8\x85\x19\x8e\x22\x29\x25\xd7\x1b\x36\x72\x26\x32\xe2\xdd\x19\xeb\x78\x43\x66\x85\xbe\xb2\xd1\x0e\x4d\x80\xbc\xd3\x89\x9d\x4e\x97\xd7\x8a\x4a\xc7\x60\xa9\x44\xc5\x29\x1c\xb6\x32\x4d\xd9\xe9\x94\x5e\xb3\x99\xe2\x60\xe3\x03\x44\x5a\xfb\x17\x92\x91\xe7\x2e\x76\x34\x51\xd5\x66\xdf\x1b\x93\xcd\xb8\x42\x96\x7c\xca\xa0\x6a\x8f\x3e\x79\x4c\xa2\xbd\xb8\x62\x76\x3b\xda\xf6\xc1\x1c\x18\x77\xdd\xe7\xad\xbe\x8d\xda\xb6\xdd\x44\x74\xb9\xed\x90\x21\x8c\xe9\x18\xac\x5e\x7e\x6d\x8f\xd2\xf2\x05\xdf\x34\x2b\x94\xa1\x42\x06\xd1\xc8\x87\x6e\x54\xc3\xa0\xed\x40\x78\x43\xed\xc5\x4e\xa8\x8d\x3b\x7e\x54\xb1\x0a\x2d\xd4\xe7\x45\x17\x8c\x54\x77\xfb\xf8\x5f\x32\xe0\x60\xd0\x85\x8a\x12\x18\x45\x8b\xd8\x6a\x95\xa8\xcc\x67\x76\x69\x10\x7f\x6e\x41\x95\xab\xad\x81\x27\x13\xcd\x3b\x72\x2d\x02\x4d\xff\xc7\x86\x12\xc0\x03\x84\xb8\x15\x28\x30\xff\x59\xb4\x28\xca\x20\xf8\xcf\xd9\x90\x3a\x41\x04\x01\x53\x88\x99\x0b\xe9\x88\xc9\x07\x25\x9f\x2f\x2b\x3b\xd9\xd8\x84\x54\x00\x35\xe6\x56\xa8\x80\xf7\xe7\xd3\x99\x12\x37\x00\x83\x85\x52\x21\x2b\xf4\xd0\xba\x30\x4f\x99\xe8\xd7\x51\x07\xcc\xfe\x0c\x4e\x08\xb3\x43\x53\x77\x75\xf7\xe1\xc0\xf4\xf0\x96\x11\x02\xd5\x49\xdb\x48\x2e\x43\x45\x99\x51\xd2\x58\x8e\x61\x6d\xfa\xa0\x6c\x92\xa5\x38\x46\x86\x54\x50\x86\x0a\x4e\xdc\x78\x6e\x9f\xd1\xe9\xd4\xa5\xeb\x0d\x31\xaa\x7a\xae\xa5\x57\xd4\xe7\x76\x33\x1e\x30\xc0\x14\xc9\x4e\xab\xd5\xab\x3b\xe9\x9a\xc5\x9d\x37\xb3\x65\x95\x18\x9b\xad\xb4\x19\x26\x06\x71\x08\x43\xff\x1f\xc0\x90\x34\x89\x84\xfb\x97\xe1\xea\xa5\x79\x7f\x96\x7c\xce\xab\xc3\xb1\xbb\x8d\xe7\x01\x38\xf0\x2a\x31\xe1\xff\xc1\x48\x99\xb5\xd9\x33\xbc\xdd\x72\x88\x4c\xfc\xd8\xd6\x4d\xc5\x9a\x69\x51\x96\x09\xb5\x3e\x4e\x95\x67\xa7\xae\x71\xd7\xb8\x15\xc0\x32\xca\x7c\xee\x9a\xa4\xa7\xdb\x63\x09\x31\xb4\x81\x08\xe2\x5b\x18\x1a\x12\xba\x88\x8a\xe2\xf7\xb4\x6b\x78\x51\x3d\x94\x6c\xba\x98\xb6\x09\x3d\x1e\xa2\x5f\xaa\xa4\xa7\xbc\xda\x36\xb0\xce\x02\xa2\xfa\x3f\x16\x4f\xd8\xeb\x23\xaf\xf0\x8f\xea\xf8\x78\x07\xde\xf1\x8f\x85\x8c\x94\x2f\xd8\xe9\x6c\x31\xa7\x32\x0f\x9d\x1d\x95\x5f\x4c\x7a\x38\xb2\xfe\x70\xc0\x7a\x13\x13\x3e\x85\xe4\x38\xae\xb9\xd0\x63\xf1\x64\xf9\x90\xea\x7a\x62\xe7\xdd\x7a\xbc\x8a\xd4\x83\x4c\x91\x5e\xc4\xc7\x8e\x1d\x08\x4d\xb4\x20\x48\xa6\x44\x51\x61\x6f\xf1\x27\xfc\xad\x4c\x7b\xdf\x15\x25\xc6\xb5\x96\xfd\xef\x9a\xe2\xbd\x8e\xa7\xab\x9c\xc6\xde\x42\xce\x98\xd6\x4b\x2b\x19\x54\x43\x05\x07\x7d\x46\x84\x78\xac\xca\xba\xd8\x05\x3b\xa2\x06\x46\x54\xf4\x0a\x6c\x6d\x05\x5a\xde\xd6\x8f\x87\x92\x75\x2c\x21\x7d\x2f\x2d\x09\xbe\x80\x3d\xfd\xf1\x10\x28\x07\x6d\xd7\x6f\x0c\xab\xaf\x3d\xb6\x65\xf7\xc6\x6b\x16\xec\x82\xd7\xb8\xa9\x78\x04\xb8\x71\x1b\xcb\xa1\x4f\x87\xec\xce\x39\x5a\xff\xb6\x64\x89\x79\xf1\x2a\x41\x60\x2a\xb2\x3e\x65\x82\x14\xae\x04\xa9\xc3\x7a\x2a\x37\x25\x92\x74\xc8\xe4\xba\x84\xc4\x37\x9d\xde\x7f\x59\x13\x4b\x82\x54\x3c\x2a\x15\x49\xf2\x16\xf1\xe9\x7d\xbd\x3d\x86\x3a\x51\xd1\x8a\xd7\xc7\x36\x0f\x8f\xb1\xa7\x77\xe5\xb1\x19\xf4\x5e\x46\x34\xf8\xa7\xf2\xd8\xac\xd2\x1d\x13\x7b\xed\x97\xeb\xdc\xcb\x86\xac\x3f\xf8\xc9\x44\xd5\x6f\x35\x0f\x05\x6a\xce\x4c\xd4\x82\xc3\x8c\xd3\x3a\xbf\x73\x4f\x21\x9a\xd2\xfb\x3d\xb3\x03\x32\x01\x5f\xa7\x03\x80\xe1\x23\x01\x08\x03\xbc\xdb\x47\xee\xb6\x1a\xbf\x4a\x59\x7e\xe0\x55\x9a\xb2\xdb\x39\x68\x08\xc8\x8b\xe0\x6a\x88\xe1\x81\x91\x7c\xc3\x1f\x59\x7d\x94\x3a\x6b\x33\x0f\x51\xac\xe8\x16\xaf\x34\x1f\xe0\x63\xbd\x19\x5a\xfb\xd6\x91\x9e\x2e\xe6\xe2\x62\x85\x27\xdd\x53\x8c\x25\x25\xa0\xe1\x66\x66\x21\xc5\xbb\x63\xd7\xd5\x55\x32\xec\x99\x6d\x81\xbe\xb1\xb8\x03\x67\x53\x81\xfb\x8b\x7b\xf6\x0a\xb2\xc2\x48\x1c\xef\x52\x6f\xe0\xb1\xc2\x14\xe1\xa0\x0e\x4c\x9f\x11\xc0\x5b\xe2\x1d\xaf\x0e\x8a\x1f\x5f\xb9\xa9\xd6\x13\xe9\x29\xbe\x6c\x7f\xc5\xf4\x56\x4e\xaf\x59\x04\x55\x45\x52\x58\x71\xcb\xb3\x8b\x7a\x20\x6d\x42\x06\x07\x0b\x18\xb8\x03\x76\x6f\xbd\x21\x30\x21\x85\x15\x19\x59\x64\xc5\xdb\x86\x1d\x58\xd1\x61\xda\x5a\xcb\xf1\xe2\x8d\x4c\xb8\xb0\x2f\x5a\x2b\x29\x89\x79\xf5\x08\x2a\xb0\x18\x51\x50\x70\x3c\x44\x61\x40\xe1\x01\xac\xc4\xaa\x8e\x35\x17\x61\x45\x7b\x4c\x5f\x98\x8d\x93\x40\x68\xe5\xae\x11\x48\x27\x27\xa9\xc4\xaf\x5b\xa6\xc6\x2a\x32\x57\x84\x5c\x50\xc9\x8a\x77\xec\xdc\xc2\x05\x8a\xad\xf6\xe0\x53\xea\x83\xdd\x91\xbf\xc6\x36\x2e\xee\x29\xc2\xd7\x84\x26\xf5\xfd\x7d\x42\x66\xef\x9b\xe2\x90\x26\x9f\xb7\x87\xa2\xba\x4d\x88\x11\xd9\xa0\xb4\x2d\x4d\x3e\x2f\x6e\x3f\x7f\x59\xdc\xca\xff\x20\x1a\x85\x78\x0a\xc3\x07\x5d\x4e\xc9\x24\x41\x76\x22\x51\xeb\x89\xd9\xa4\x0e\xd2\x3d\x48\x64\xdd\xe8\xbf\xa6\x82\x0f\x63\x55\x97\x04\x3d\xd9\x1b\x09\x24\x9a\xaa\xe2\xae\xb3\xa9\x4b\xb1\x3e\x51\x53\xee\x9c\xac\x86\xbf\xe4\x35\xd4\x33\x32\xce\x32\x49\x91\x28\x2f\x97\xae\xb8\x93\xbc\xd1\x74\xa1\xca\x8a\x86\x17\x53\x69\x50\x20\x28\x03\xd9\x5f\xea\x12\x81\xfa\xb0\x92\xbe\x1f\x94\xfa\xc8\x99\x50\x8f\x50\x8c\xef\x9d\xac\x3c\xbb\xe7\x4d\x2b\xae\x75\x12\x80\xc6\x8d\x07\x61\x67\xbb\x29\x8b\x2b\x7a\x41\xcb\x7c\x1a\x1b\x5f\x2f\x5b\x50\x97\x6e\x5e\x16\xa0\x4c\x67\xc7\x03\x6d\xf7\xf5\xfb\xef\x8a\x3b\x56\x66\xa3\x45\xef\x75\x83\xe3\x5f\xec\x45\xcc\xe0\x6c\x3f\xca\x58\x05\x5d\x12\xb6\x8c\x97\xe9\xec\x8f\x2f\xbc\xb3\xd5\xe6\xb2\x12\x37\x85\x5f\x6e\xe7\x43\x9f\x86\xba\xea\xe9\xdb\xc1\x7c\x8a\xa1\xa9\xb8\xc9\xd2\x36\x94\x38\xb1\x9d\xfd\xf2\x53\xe6\x85\x53\x31\x98\x05\x30\xc5\x68\xbe\x94\x55\x21\x01\xdc\x60\xe5\xa9\x57\x5b\xa5\xdd\x1b\x6c\xc0\x41\x57\x16\x69\x74\x61\x1c\xbb\x5d\xaf\x03\x49\x52\xc4\x95\x83\x94\x96\xa2\x07\x02\x51\x81\xcc\x05\xd0\xe1\x3b\xa2\xa2\x42\xa2\x04\xdc\xb8\x65\xa0\xa8\x7d\xa1\x04\x28\xb2\x33\xf1\x92\x61\xfe\x19\xd0\x23\x88\x49\x06\x89\xbb\xba\xbc\xc3\x10\x99\x21\x95\xd3\x59\xb4\x4d\x77\x91\xa2\x51\xbb\xf0\x6f\x73\xe8\xb8\xa7\x26\xd8\x8d\x20\xb2\x58\x84\xb6\xe2\x90\xae\xea\xc0\xfd\xec\x57\x16\xbc\x48\x76\xe4\x74\x9a\x2f\x2f\xac\x5c\xc5\x5f\x42\xc3\x6f\x99\xd8\x7c\xd2\xe1\xb0\x6f\x35\x6f\xe7\xb4\x23\xde\x86\x05\x44\x28\xf2\xb4\x8c\x3e\x63\x22\x79\xde\xe3\x53\xa7\x86\x97\xec\x11\x77\x55\x1e\x93\x09\x81\x60\x54\x72\xc4\x0b\x57\x61\x66\xb1\x9d\x3a\x07\xfb\xca\x75\xa4\x20\x2b\x9e\x32\x92\xc1\x75\xbe\x2f\xeb\xba\x49\xd9\x0b\xf6\x82\xbd\xfc\x23\xfb\xb7\x29\xfc\x3f\x9f\x4f\x16\xff\xff\x17\xec\xe5\x67\xe2\x0f\x92\x2d\xfe\x3f\x95\xec\xdb\x3a\xf1\x81\x18\x6c\xf6\x5c\x4c\xf8\x42\xb9\x34\x98\xdd\x0a\xfe\xcd\xe6\x02\x8c\xa6\x8c\x72\x3b\x2d\x3b\x7f\x29\xf7\xe4\x85\xe2\x09\x72\x36\xe1\xb4\xbb\x3a\xf5\x3a\x35\x23\x15\x4f\xe3\x71\x77\x0b\x7f\xac\xe0\xdf\xcc\x9e\xc5\x78\x0c\xff\xdd\x76\x72\x3a\x1d\xe0\x0d\x3b\xdc\x71\x17\xf0\x0f\xe9\xe0\xc5\xbd\x96\x6f\x51\x97\x68\xee\x63\x8f\x45\x10\xc2\x19\xa5\x76\x84\x9c\x49\x5d\xa7\x8d\x6a\x94\xad\x89\x94\xd0\x80\x10\xf5\x74\x4a\x6c\x21\x0a\x94\xad\x94\xad\xc0\x5b\xd8\xcf\x88\xb0\xc1\x0d\xc7\xbc\xee\x36\x39\xa3\x41\x2d\xec\xe2\x1e\xfa\x4d\x39\x31\x34\x64\x9a\xaa\x24\xc3\x62\x78\x99\xdb\xb8\x03\xa5\x16\x83\x30\x66\x82\xb7\x1e\xf0\x05\xb1\xe7\xc5\x08\xa1\x09\xbc\xc0\x32\x0b\x9f\x8a\x7b\xee\x53\x01\x26\x71\x9e\xa8\x9d\xc4\x48\x9d\xd6\xf2\x5a\xf3\x49\x84\x80\x46\x91\x95\x19\x7c\xab\xf2\x18\xc9\x70\xc5\x90\xd5\xe0\x90\xe2\xbd\x0e\x06\xad\xd4\xa0\xf0\x55\xa3\x72\x93\x91\x50\x33\xe5\x06\x12\xbe\x94\xc1\x6f\x62\x72\x0d\x6c\xa8\x3d\xf1\xea\x87\x87\x92\x45\xa9\x60\x2f\x65\xa9\x0a\xa8\x93\xd0\xd1\xa8\xf3\x88\xda\x43\x53\x1f\x20\x0b\x64\x50\x43\x6d\x8f\x24\xa5\xba\x95\xaa\x95\x64\x09\xab\x30\xd5\xa3\x3d\xf3\x36\x6b\x22\x2a\x2c\x35\xe9\x9e\x50\x84\x81\xc8\xf3\x1d\x00\x4e\x37\x1e\xa3\x34\x0d\x50\xa4\x34\x1f\xfe\xf7\xb2\xbe\x83\x98\xb5\x5e\x78\x12\xfb\x32\xac\x74\xa5\x99\x8d\x58\xe8\x62\xee\x1e\x9a\xbc\x4f\x24\x9b\x74\x84\x26\x12\x98\x79\xfb\x43\xf1\x43\xda\x91\x95\xd8\x3e\xc0\x1b\x78\x13\x62\x33\xc6\x5b\x97\x24\xd9\xa7\x4d\x4e\x5e\xb1\x8e\x0e\x56\x1e\x98\x6f\x67\x22\x58\x0d\xca\xf8\x80\x9f\x78\x46\x86\x02\x1e\x57\x71\x5f\x33\xff\x2d\xa1\x76\x85\xe2\xc9\xaf\x50\x3c\xd9\x15\xaa\xfa\xbd\x52\xd4\x0c\x22\x98\x9e\xf4\x94\xb7\xff\x51\x94\x7c\x37\xf0\x5c\x4a\x42\xc4\x7e\x16\x61\x1b\x47\x8b\x4c\x2b\x62\x1d\xda\xa3\x13\x00\xf6\xce\x7b\x94\x34\x82\x5c\x6a\x18\xf1\x90\x9f\x7e\x2c\xb8\x54\xb0\x46\xe9\x1a\x71\x21\x73\x1f\xe3\x91\x08\x52\x0c\x44\x71\x67\xf2\x61\x0e\x5e\xab\x05\x19\x94\xbd\xde\x08\x96\xf2\xc6\x39\xae\x1b\xe7\x6c\x6e\xdc\x83\x90\xf3\x31\xbc\x43\xc3\x40\x35\x62\x82\x0b\xa8\xf8\x55\x3d\x08\xd5\x7f\x39\xc4\x6f\x26\x7c\x92\x57\x53\xd6\x1b\x12\xa6\x5a\xf6\x09\x20\xed\xeb\x4e\xa7\x98\xa4\xcf\x52\x0c\x1e\x80\x95\x11\x85\x5f\x0a\x56\x66\x68\x02\x5f\xa2\x60\x56\x4d\xe1\xcb\x73\x12\xdd\xf8\x24\xa6\x97\x67\x21\x98\x89\xf3\x9b\x10\x5b\x90\x68\x25\x26\x26\xfe\xbf\xbc\x86\x73\x3d\xf8\x10\xac\xd9\x16\xad\x38\x53\x51\xb6\xd2\xc6\x26\x8a\x89\xa3\xfe\xd3\x8f\xf1\xa5\x7b\x28\x15\x4b\x59\x24\xd7\xa8\x03\x37\xa8\xc4\x3a\xf2\x3f\x15\xdb\xbf\x7f\x51\x3f\x1e\x8a\x4e\x67\x7a\x89\x69\xb6\x50\x98\x28\x5f\x98\xe7\xdf\x5a\x48\x84\x8b\xd2\x8d\xbf\xe9\x1e\xc5\x5a\x02\x89\x11\x56\xc3\x27\x49\xd6\x01\xfd\xa2\xd5\x2c\x5c\xb7\x12\x40\xf5\xd4\x6a\x19\xab\xe6\x4a\xa3\xd4\xfe\xe8\x45\x3b\xfb\xd2\x15\x77\x6d\x5c\xdd\x57\x16\x1f\xb2\x7f\x9d\xcf\xad\x2c\xde\x20\xf1\x93\x49\xa7\x6d\x69\x0e\xf4\x11\xd5\xe7\x89\x2f\xd3\xaa\x78\x77\xe6\xeb\xa1\xa8\x58\xe9\xea\xfa\xd0\x5f\xc0\x54\xe9\x8a\x3b\x57\xdb\x07\xf2\xbd\x6d\x5d\x96\xc5\xa1\xe5\x77\x98\xc5\x1b\xc4\xba\x59\x02\x36\x7b\x89\x74\xe5\x02\xc3\x81\x2c\x51\xb2\x32\xba\xe7\x3b\xa5\x92\xdb\xd7\xef\xf1\xaf\x58\x72\xed\x57\x91\xb2\xef\xea\x62\x87\xbf\x4b\xf5\x17\xe4\xb5\xfe\xae\xde\x16\x65\xf8\x52\xbc\xfc\xdd\xec\xc5\xef\x5f\x2e\x23\xd6\x24\x92\x2a\x5e\x0a\xd6\x66\xdf\xb0\x7b\x85\xf7\xd2\x8e\x26\x09\xa1\x6d\x5e\xd6\xdb\x02\x6c\x7b\xc2\xaf\xcb\xae\xf9\xf0\xcc\xf3\x1d\xdb\xd6\x3b\xf6\xcb\xcf\xdf\x0a\x78\xaf\x2b\x01\x5a\x9c\xf4\x5b\x88\x36\x5f\x91\xe7\x5e\xd4\x6a\x63\xb5\x5a\xbb\x96\x0e\x3f\xb5\x2f\x5a\x15\x50\xf3\x76\x31\x1e\xf3\x3c\xcf\xdb\xbe\x4f\x49\x4c\x31\x69\x54\x08\xd4\x65\x5e\x91\x29\x6f\x8e\x1e\xc3\xe0\xc8\x25\x11\xd8\xae\x92\x67\xda\x64\xa1\x06\x04\xeb\xc8\x65\x8e\x07\x3e\xb3\xca\x4c\x56\xc4\x7a\xcb\xda\xf6\x4d\x71\xd7\x82\x80\x1f\x01\x57\x05\x65\xae\x78\xc7\x8b\x12\x55\x09\xa9\xed\xd5\xcd\x75\xc8\x46\x81\xa2\xcd\xaf\xbc\x9b\x1d\x2b\xfe\x0f\xf1\xd8\xea\xb2\xd9\xb6\xae\xb6\xc0\xec\x3d\xaa\x5b\x2f\x66\x38\xbb\xe7\x65\x27\xd8\xa3\x59\x48\xb5\x12\x1a\x41\x9d\x0c\x9b\x01\x8b\x0b\x0f\x08\x21\x90\x7f\x5f\x73\x3a\xf6\xdc\x75\xc4\x42\x28\xb3\xb5\x09\x45\xb5\xdd\xd7\xda\x8e\x48\x8a\xe4\x05\x27\x20\x97\xa9\xf6\x80\x64\xdd\x90\x4a\x0e\x2b\xb8\x56\x88\x02\xd2\x4d\x5b\x90\x64\x58\x9b\x37\xa0\x54\x75\x67\xe9\x41\x89\x7d\x5c\x0e\xa8\x0b\x10\x6c\x8f\x77\x48\x42\xa7\x0b\x9f\xba\x12\x3c\x58\x2b\x67\x05\x3b\xe6\x46\x6c\xe2\xb4\xb2\xd4\x17\x95\x23\x8c\x16\x90\xd5\xd4\x65\x0b\x09\xa4\xdb\x55\xca\x72\xee\x26\x9f\xb6\x86\x90\x4b\xb0\xcf\x24\x7a\xb4\x00\x8d\x4a\x03\x42\x08\x4d\x55\x1f\xa7\x13\x88\x26\xa4\x17\xb4\x69\x2c\x0f\x66\x9e\x8d\x16\x84\x50\x75\x76\x67\xc7\x63\xff\x00\x3e\x13\xfb\x83\xba\x5c\x90\x98\x73\x42\xe8\x88\x8f\xc7\x2c\x1f\x3c\x7f\xa8\x3c\x47\x3d\xb3\xd6\x84\x83\x81\xc6\x97\x45\x57\x84\x2f\xc6\x73\x57\xdc\x65\x16\x10\x50\xc0\xc9\x59\x08\x16\x12\xb0\xc0\x4f\xbf\x62\xe5\xd7\x75\xf3\xa6\xb8\x4b\xad\x7a\x00\x5f\x7d\x4f\xdf\x76\xc5\xdd\xff\x1c\x16\xff\xa6\xd7\x6a\xf4\xc8\x6c\x5b\xd6\x2d\x6b\xbb\x34\x29\x79\xa2\x2d\xe7\xac\xfd\xe2\x82\x0f\x1e\xcd\x2d\x73\x5b\xcc\xf2\xfd\x53\xf1\xc0\x7e\x28\xde\x89\x2d\x7c\x1e\x10\x29\xdb\x62\xe7\xd9\xcf\xdf\xfe\xfb\x37\x6f\xb2\xb0\x1c\x44\xbc\xed\x64\x82\x69\xb1\x96\x61\x85\x5f\x7e\x8a\xb4\xfa\xee\xab\xaf\xdf\x64\x90\xb2\xbd\x9d\x4e\x07\x9b\x7e\xf5\xc3\x97\x99\x5c\x91\x7b\x80\xd3\xc5\x60\x9b\x6f\x7e\xfc\xfe\xab\xac\xcd\xe7\x83\x15\x5e\xff\xf4\xea\x8b\xaf\x32\x8d\x5e\x02\x7d\x67\x28\x0a\x92\x2f\xa0\xb1\xd7\x7e\xab\xde\xc4\xb4\xd5\xb1\x78\x62\xb3\x7f\xf3\xd5\xcf\xbf\xd9\x40\x41\x54\x56\x00\x0c\x01\xf0\x66\x0e\xd2\x04\x49\x8e\xd9\x7f\xf4\x98\xad\xe6\x93\xb6\xc7\xf6\x07\xf6\xd4\x09\xe8\x6d\x69\x05\x41\xe8\xba\xa6\xfc\x9f\xec\xc3\xe9\xc4\x66\x8f\xac\x2b\xe0\xcf\x94\xdb\x78\xa4\x65\x25\xa4\x3e\x49\x68\x72\x5f\x94\xad\xce\xe6\xa7\x2e\x6b\x4b\x06\x6a\x77\xcd\x51\x57\x36\xd3\x39\x2b\x41\xaf\xa5\x95\x8e\x44\x31\xb4\x25\x32\xc7\x35\x54\x47\x6f\x00\xb8\xa4\xb1\x4b\x16\xbf\x06\x10\x3c\x12\x17\x29\x73\xc4\x88\x53\x54\xda\x75\x03\xcd\xe8\x42\xe5\x6f\xac\x8d\x0b\x7c\x9d\xbf\x78\x18\x9c\xd1\x62\x4a\x65\x36\x2b\xca\xee\xfc\xd8\x52\x0f\x23\x15\x1b\x06\x36\x22\x87\x16\x01\x95\xe9\x82\x02\x6e\x1d\xcd\x49\x76\xed\x60\xe2\x72\x7f\xe2\x70\x93\x85\x18\x09\x87\x53\xaa\x69\x78\x71\x65\x1b\xcf\x3f\x55\x9b\x61\xb4\x86\x8d\x61\xb7\x95\xc2\xd4\xf3\x5b\xc4\xf0\x02\x14\x7b\x15\x1f\xbc\x0a\xde\x8f\xe9\x62\x39\x5d\x8c\x20\x38\x78\x85\x34\x8b\x4e\xc6\xef\x47\x9d\x26\x4b\x22\x1e\x0c\x36\x59\x64\x6c\xba\xd0\x92\x6e\x90\x06\x99\x95\x79\xf2\x08\xf5\x82\xe6\x86\x80\xd0\x5b\xa0\x53\xe1\x29\x78\xef\x48\xc4\xfa\xe3\x8c\x34\x58\x05\x5d\xd9\xea\xb8\x1a\xc1\xd6\x5b\xea\xfe\x34\x90\x32\x26\x36\xf5\x27\xc5\xae\x1f\x45\x2b\x32\x42\xfd\x54\x37\x16\x25\xa5\xd4\x6d\x7a\x32\xe2\x74\x13\xb8\x06\x72\x34\x39\x23\xd6\x1d\x0f\xf0\x98\x42\x16\xc4\xc4\xe2\x34\xc2\x7a\xdf\x98\x8f\xa9\x2b\x28\x2d\x04\x25\xf5\x4f\xf6\x1a\xd0\x44\x1d\xb7\xbb\x5a\x75\x9a\xfa\x7f\xb9\x1e\x25\xbf\xff\x97\xf1\x1f\x52\xf2\x62\x42\x67\x7f\x7d\x99\x2d\x3f\xcf\x6f\x57\xff\xdb\x5f\xd7\x7f\xdd\xfc\xf5\xbf\xfe\x8f\xe7\x53\xff\x7f\x6e\x5e\x3e\xd0\xe4\xaf\x7f\xfd\xfd\x38\x21\x59\x92\x44\xd2\x51\xc4\x88\x34\x45\x9d\x75\xc5\x5d\xc9\xdb\xce\xd2\xf2\x67\xfb\xa2\x4d\x8b\xb5\x60\x41\x36\x24\x21\x4b\x66\x93\xc3\x82\xe6\xe5\x1f\x4d\xeb\x72\x8b\xcc\x8d\x52\xea\xec\x4a\xca\xd6\x23\x55\x83\xf8\x96\x72\x35\xda\x85\x16\xeb\x1b\x0b\x21\xeb\x46\x09\xda\xca\x10\xf5\x4a\x7c\xa1\x26\xa2\xd9\x18\x45\x85\xa7\x2a\x59\x5e\x80\x2e\xac\xab\xa2\x75\x61\x73\xbd\xa2\xe9\x82\x00\x76\xca\x98\x43\xd0\xfb\x74\x9f\x22\xa2\xce\x4e\x20\x22\xc6\x1b\x12\xa5\x86\xf2\xf8\x34\x8e\x2c\x68\x08\xdb\x4e\x45\xb8\x06\x4e\x2d\x1b\xb2\x9d\xaa\xd6\x7d\xb0\x11\x46\x55\x77\xce\x1a\x1d\xf1\xae\x7e\x2c\x33\xf9\xb4\x4a\xa1\x2d\x7b\x3a\x14\xd5\xce\x2e\x57\x26\x27\xd9\x54\x9b\x3a\xc0\x3b\x68\x0d\x70\x8e\x3c\x25\xb3\x3d\xdf\xb1\xd4\x1d\x5d\x5a\xab\x64\xf8\x50\xf7\x31\x7e\x68\x65\xf7\x32\x34\x75\x68\x1e\xce\x1c\x8b\xf5\xc4\xe7\x7d\xdc\xf2\x44\x92\xde\x89\xc7\x5d\xd0\xd0\xe2\x8a\x5e\x5c\xa6\x74\x7c\x8a\xaf\x12\x77\xb2\x57\x90\xac\xd0\xf9\x3c\xb4\xea\x01\x4c\x65\x5d\xd1\xf3\x72\x00\xd1\x11\x75\xc9\x59\x9d\x1b\x15\x8e\x68\x69\x5f\x4e\xe3\xed\xfd\x1d\x07\xbd\x95\x63\x96\x24\x2b\x0d\x18\xe9\xc8\xaf\xae\x84\x09\x7e\xa1\xc1\xfd\xb4\x61\x2d\x0a\x17\xe4\x6f\x20\x0b\xef\xf9\x93\x25\x6f\xd8\xb3\xc2\xe4\x14\xd1\xf8\x0f\x2c\xa8\x95\x6d\xa5\x4c\xf6\x01\xb0\xff\x43\xf1\xc8\xda\x43\xb1\x65\x34\xb9\xbd\x29\x79\x42\x1d\x82\x4b\xc6\xfe\xe5\x6d\x1c\x19\x0a\x32\x24\xb0\xe2\x24\x30\x18\x3e\x9c\xf1\x81\x0c\xa3\x09\xbb\x99\x50\x27\x40\x31\x0e\xe9\xb0\x47\x67\x26\x00\x03\xdc\x95\xc7\x26\xd5\xc8\x57\x74\xed\x62\x7f\x54\x1d\x8a\xf5\x79\xd8\x5f\x02\x92\x38\x9c\x4c\x9c\x4d\xf4\x1e\x86\x87\xd4\xba\x22\x3c\x5b\x95\x87\xdb\xa0\xa9\x62\x04\x17\x0b\x29\x8a\x17\x26\x22\xf8\x4d\x93\x02\x8d\xd6\xc9\x7a\xbe\xe9\xdd\x79\x1d\xc4\xa9\x57\x1d\xc8\x13\xae\x99\xa0\x82\xd1\xc4\xdb\x66\x07\xad\xe4\x86\xf8\x95\x0f\x91\x2f\x78\x50\xd6\xdf\x32\xc3\x51\x27\xf8\x00\x14\x17\x7d\xbb\xd3\x60\xcd\xc5\x93\xb8\xc7\x8f\x2e\x47\x5b\xe6\xfb\xb8\xb0\x62\xc9\x66\x4a\xba\x98\xb6\x64\x95\x56\x79\x0b\x52\x12\x5a\xe4\x95\x23\x29\x81\x20\x15\x4a\x3e\x0d\x47\xc8\x66\x01\x7d\x91\x56\x84\x90\x2c\x2d\x86\x46\x3b\x9d\xba\xf4\xb9\xb7\x67\x0e\x59\x2f\x76\xb4\xca\x93\xdf\x25\x93\x22\x1c\xa4\x22\xb4\xd6\xf1\x33\x53\xf1\x59\x85\xee\x17\x1b\x97\x16\xe2\x33\xfa\x15\xbf\x52\x31\xbd\x61\x47\xd7\x7c\xba\xd8\x08\x66\x44\x42\x1d\x11\x15\xad\x39\x95\x88\xf5\x0e\x75\xc9\x3b\x96\x10\x33\x8a\x8c\xed\x00\xa7\xa2\xfe\x98\x15\xbb\x5d\x5a\x13\x42\xcb\xf1\x58\x26\x1d\x31\xc7\xe9\xac\x90\x96\x84\xee\x1d\x84\xa8\x3f\x65\x85\x44\xda\x65\x71\xc7\xca\x92\xed\xee\x3e\x24\x59\xd3\xfb\xf3\x32\x1f\x69\x43\xbc\xc7\xc7\x47\x5e\x28\xd4\x8e\xc3\x1d\x36\xf1\x05\xe0\x96\x54\xd4\x92\x85\x72\x4d\xe3\xd6\xf7\xf7\x29\x37\x8f\x9c\x68\xa9\x49\x01\xf1\xcd\x7e\x61\x11\x52\x9d\xcf\x95\xf9\x8c\xe3\x13\x22\xfd\x24\x04\xfa\x1d\xd2\xb1\xc8\x23\x92\xa4\xb1\x73\xfc\x49\x5d\xd2\x9b\x63\xa9\xd2\x02\x98\xc4\x0d\x20\x3a\x8a\x5a\x15\x27\x9f\xef\xf8\xbb\xdb\xc4\xba\x13\x94\x11\xef\xd0\xa4\x42\x12\x4c\x47\xcf\xdb\x13\x38\xf6\x25\xe0\xe1\xeb\x85\xe7\x54\x4f\x37\x33\xa4\xde\x90\xac\x0c\x78\xc6\x7c\xb4\x20\xb4\xca\xe7\x4b\x0b\x0f\xad\xab\xcd\xb2\x9a\x4c\x08\x87\xab\x4b\x41\xe6\x36\x3f\x9d\x3c\x26\xac\xa2\x8c\xac\x5c\x61\x81\x51\x99\x3a\xec\xbf\x01\x05\x3e\x68\xdd\x20\xee\x29\x77\xb5\xac\x4e\x8f\x31\x8b\x8e\x73\xbd\x2d\xa3\x24\x9f\xb2\x9b\x09\xed\x2f\xa4\x72\x48\x0e\xe3\x66\x3b\x9a\x24\xd6\xca\x90\xa9\x82\x2d\x91\x67\xa5\x88\xc7\x88\xcc\xef\xb9\x5f\xb2\xf1\x58\x7a\xd4\xd8\x71\x55\xa9\xe7\xbe\xb1\x66\x9b\x3c\x41\xf7\x18\xcc\x8b\xd7\x68\x92\x0c\x20\xd9\x39\x43\x71\xfd\xcd\x7d\x30\x3f\x15\x8c\x1b\x1f\x23\x65\xc9\xaf\xb0\xfe\x33\x28\x8a\x5c\x25\x6d\xc4\xd5\xc2\xf7\x52\x52\xcd\xb9\xff\x01\x9e\x3b\xed\xcd\x93\x58\x02\xd0\x24\xe8\x44\x62\x00\xab\xb6\x2d\xcb\x31\xf5\x81\x38\x10\x9b\x6d\xad\x51\x7e\xda\xd7\xef\x58\xe3\x7d\x52\x67\x60\x91\xe6\xb1\xeb\xe2\x2a\x34\x95\x66\x72\x99\xdc\xf3\xb2\xc4\x10\x59\x90\x15\x45\x59\xf2\x52\x3e\x75\x5b\x38\x21\x11\xa7\xce\x27\xdd\xc6\x29\x6d\x31\x18\x44\x9b\x26\x19\x64\xea\x28\x59\x12\x4f\xaf\x2c\xf8\x1b\x78\xdc\x21\xad\x8b\x17\xa5\x78\xe9\x44\x5d\x6a\xc7\x63\x19\x5f\x03\x7f\xa4\x7c\x9a\x33\x67\x6a\xa3\xb9\xf6\x5b\x37\xa9\x28\x4c\xc6\x07\x1f\x1d\x06\x13\x12\xcb\x96\x44\x96\xd7\xad\x87\xfb\xc3\xdc\x11\xd8\x4a\x6e\x86\xc5\x0d\xf2\xa9\xa6\x14\xed\x0c\x22\x13\xaf\x85\x40\xcd\x7e\x14\x3e\xe9\x7d\x4c\x48\xa6\xdd\x90\x19\x58\x8c\xcc\xcf\xce\x85\x1b\xc3\x4c\x4e\xbd\x61\x92\xc4\x1a\xb1\xd7\x7f\x73\x78\x18\xec\xfb\x77\x85\x01\xb7\xc5\xc0\x54\x79\xe8\xe6\x01\x89\x9c\x5c\xba\xa7\xc8\x6b\x74\xee\x69\x05\x9b\xde\xe4\xc5\x78\xec\xe8\xf2\xe8\x3e\x6f\x56\x9d\x8a\x0b\xe9\x33\x3b\xb5\x20\x9c\xda\xb3\x5a\x89\x16\x75\x5d\xdb\xfc\xb9\x2e\x77\x6f\x8a\xbb\xac\xa5\x75\xb9\xc3\xe7\xa9\xa4\x15\x7b\x2f\xca\x70\x88\x5a\xfc\xc4\x2f\xfb\x7e\x19\x91\x7e\xd6\x31\x07\x18\x83\x62\x4f\x27\xaf\x02\x3c\x65\x65\x5d\xec\x78\xf5\x90\xa8\x40\x91\x52\x35\x7a\x3a\x15\xe3\xf1\xc8\x59\xeb\x80\x53\xf8\x2b\xed\xf3\xcf\xe8\x56\x5b\x1b\x6b\x75\x66\x03\x06\x47\x9e\x18\xa1\x76\xd5\x86\x85\x5c\x1f\x94\x3d\xed\x55\xa0\x94\xa7\x7d\x33\x2b\xee\x40\xcd\x48\x4b\x4d\xc4\xed\x4d\x38\xf4\x19\x6b\x9a\xba\x49\x13\x4c\xf5\x79\xf3\xcb\xb7\x37\xc0\xff\xdd\x7c\xcf\x5b\xc8\x69\xce\xab\x87\x9b\xfb\xa6\x78\x10\xb7\xea\x86\xef\x58\xd5\xf1\x7b\xce\x9a\x99\xa0\x72\x23\x2a\xc4\xc8\x2c\x99\xab\xe8\x4d\xc5\x12\x05\xe0\xe1\xcf\x73\xd2\xd3\xda\x56\x32\xd7\xd6\xae\x15\xd6\x7e\x71\xd2\xeb\x46\x15\x34\xb2\x9e\xde\x19\x9e\xbe\x07\x91\xd7\x70\xde\x85\x5e\x9c\xc9\xb6\x27\x78\xed\x55\x3d\x7b\x0b\x3c\x77\x41\xdd\x0f\xb4\x15\x54\xb7\xe4\xc7\x69\x9b\x4a\x3f\x37\x8c\xe1\x44\x8b\x1c\xe6\x02\xa0\x47\x9b\x9c\xcf\x14\x84\x7a\xca\xf4\x39\x6d\xdc\x5d\xd5\xc2\x16\xbe\x63\x12\xfc\x41\xb0\xd1\xd0\xe0\xb3\xcd\x35\xd6\x1e\xd5\x30\xc3\xab\xf1\x09\x1b\x51\x09\x3e\xd2\xf8\x78\xfd\x26\x7d\x36\x52\x38\x23\x3a\x17\xbf\x22\x0e\x45\x8a\x98\xd2\xa3\x7c\x92\x14\xa9\xb7\x0f\x52\xed\xec\xca\xed\xd3\x75\x6e\xca\x0a\x77\xff\x6d\x85\x70\x48\x3b\xcf\x05\xa9\x29\x91\xad\xd7\x19\xe9\xa3\xce\x53\xb4\x88\xae\x56\xe9\x99\x34\xc4\xfe\x5a\xc9\x53\x4f\xb5\xe0\x72\x98\x34\xb0\x0d\x07\x18\x59\xb6\x56\x78\x08\x2d\x49\x1d\x8f\xd3\xd6\x70\x7f\xce\x0b\x40\xa8\x20\x1f\x8c\x19\xb2\xc3\x5b\x6b\x99\xac\xf3\xc2\xa4\xcf\x1d\x3c\x14\x19\xa7\xce\xc3\x91\x71\xea\xe2\xe2\xac\x9b\x55\x75\x7d\xe8\x01\x55\x98\x69\x46\x15\x4e\xe8\x89\xa8\x9f\x10\xa3\x53\x97\xc9\x8c\x61\x4f\xc2\x86\xe7\xcc\xbf\x15\xd9\x69\x8b\x6c\x65\x91\x12\x86\x83\xcc\xe4\xf7\xf9\x1f\x92\x09\xa8\x9b\x58\xbb\x2d\x0e\x86\x0b\x67\x64\x92\xfc\x61\x03\x26\x03\xec\x8c\xf9\x65\x1c\x53\x3b\xb2\x1a\x9b\x3f\x00\xbe\x13\x42\xfa\xa6\x11\x41\x92\x27\xbf\xf0\x1b\xde\x18\xd8\x94\xdf\x7e\xd1\x32\x00\x4b\x7e\xeb\x93\xd6\x21\xd9\x63\x72\x7e\xd2\x80\x9d\x23\x2b\x75\x1f\x54\x10\x91\xcc\x2d\x88\xcc\xe7\x46\x8b\x03\xf0\xaf\xbb\x63\xfb\xe1\xc6\x81\xfc\x1b\x8f\x31\xbf\xb1\x6e\xcf\x8d\x7b\x19\x1c\xa9\xd7\x05\xe2\x93\xe7\xec\xac\x28\x81\x2c\xf9\x8a\x45\xc5\x28\x94\xab\xf5\x7c\x79\xae\x7d\xc6\x42\xf6\xce\x7c\xf5\xc8\x4b\xf9\x74\x68\x23\x36\xdf\x03\xc7\x92\xb7\xab\xd8\x61\xd8\x10\x08\x48\x95\x7d\x29\x49\x48\x4f\xd1\xdc\xfd\x92\x13\x92\xa2\x6b\x96\x5c\x59\xa9\xa0\xda\x0a\x58\x03\x9e\x8f\x16\x99\x9d\xe9\x1f\x8e\x2a\x85\x4b\x6f\x59\x52\x91\x95\x54\x12\xc5\xf4\x40\xdd\x48\xf4\x24\x43\x90\x90\xcc\x33\xa1\xb2\xf9\x41\x13\x94\x8d\x43\x1b\x2e\xdb\x04\xf1\x2c\xb4\x7a\x03\xa8\x57\xb9\x82\xeb\x17\x7a\x9f\xc2\x5a\xe7\x10\x37\xc0\xac\x96\xf0\x7c\x34\xc7\x2c\x59\xfc\x3e\xba\x68\x4f\x10\x20\xe8\x0e\x9d\x86\x29\xd8\x0f\xd6\x3c\xb0\x74\xcd\x36\x02\x4a\xd0\xc6\x2b\x5b\xb3\x4d\x3f\xbc\x94\xbe\xa7\x6e\x14\x0c\x20\x86\x22\xf3\x58\x9a\xbc\x76\xd4\xd6\x1a\x03\xba\x03\xe2\x7b\x00\x1d\xab\x78\x9a\x3e\xf1\x5c\x11\xda\xe4\x60\x16\x54\x49\x63\xa0\xa2\xa7\xfb\xdc\x65\xd5\x13\x40\x4c\x92\x15\x31\xf0\xda\xd5\x87\x74\x04\xda\x71\x1a\xf8\x9d\x84\xc4\x31\x2d\xc2\xbb\x20\x6e\x7a\x42\x68\x27\xb8\x03\xc4\x85\xd2\xdb\x1e\x7e\xf5\x32\x60\x83\x12\x8e\x0a\x3e\x82\x28\x37\xbc\xa7\x7d\x93\x77\xb3\xe2\x6f\xc5\x93\xd2\x2d\xff\xad\x78\x7a\xcd\xba\x0e\x18\xd0\x9a\x72\xaa\x3d\xfd\xa0\xe3\x04\x7d\xf7\x91\x8f\xd4\x18\x57\x10\x26\xc7\xf6\x0d\x7b\x32\x3a\x66\x2f\x43\x67\xb0\x88\xc2\x9b\xbe\x2b\xf7\x11\x9d\xee\xea\x8a\xa5\x8e\xcf\x65\x45\x9e\x5b\xd6\x29\x73\x15\x0b\x1f\x15\xb3\x7d\xf7\x08\x26\xfb\x36\x57\x20\x86\x4b\x60\x05\x74\x0f\x32\xa7\x9e\x2e\x04\x3d\x71\x5f\xf0\x32\x75\x8f\x26\xde\xed\x1e\x3e\x62\x2b\x78\x41\xed\xcd\x71\xa0\xcc\xc4\x34\xe9\xac\xb8\x46\xc7\xa6\xcc\x14\xe2\x13\xcf\x1c\xbc\x18\x52\x3f\x0d\xe6\xae\x60\xc0\x2a\x23\x5a\xb1\xca\x01\xdc\x5a\x5f\xe5\x2a\x60\x74\xbe\x93\x0b\xeb\x66\xec\xa9\x63\xd5\x2e\x7d\xfe\xdb\x3f\xfe\xf3\x9b\x9f\x33\x46\x9d\x09\xd6\x3d\x85\x18\x6b\x2a\x53\x8c\x06\xd7\xa8\x89\x19\x1b\x30\x02\xb4\xd3\xcd\xba\x22\x4d\x79\x11\x7d\xc9\x79\xf2\xbb\x64\xc2\x31\xe1\xe5\x65\x33\x73\xb4\x70\x85\xa7\x1f\x25\x42\x43\xfa\x33\x39\xd8\xf1\xc0\x9a\x57\x10\x82\xca\x44\x9f\xba\xa8\x4e\x49\xf4\x64\xb0\xd8\x9d\x41\x5d\x97\x1d\x3f\xc4\x6c\xba\xe3\x01\x99\x54\x03\xcf\x44\xdb\xd2\x95\xb5\xfb\x62\x57\xbf\x07\x93\x6b\x78\x83\x22\x7a\x40\x97\xda\xe5\x9d\x20\x48\x4e\xa7\x24\x59\x5a\xd2\xdf\xe2\x36\x21\xb3\x8e\x3d\xc1\xd9\x00\x80\x93\x1e\x4d\xb2\x47\x73\x88\x5a\xd5\x66\xc9\x1a\xda\x6e\xb2\xaa\xee\xd2\xb5\x42\xd0\x1b\x92\x98\x10\x59\xcf\x8f\x1f\x32\xc8\x6f\x72\xd3\xd5\x87\xc9\xe2\x8f\x09\x2d\x3a\x59\xa0\x0c\xc7\x05\x6b\x8d\xfe\xae\xc9\x7d\xc9\x0f\xf7\xbc\xbb\x11\xff\x27\x3d\x9a\x7d\x8f\xe6\xb4\x6b\x8a\xed\xdf\xb3\xd1\x82\x02\x97\x82\x66\xdd\xf5\x81\x55\xca\xac\xbb\xd8\xed\xbe\x64\xed\xb6\xe1\x77\x6c\xf7\xa7\x0f\xd1\x24\xa2\xa9\x43\x02\xec\x54\xed\xbb\x0f\xb8\x70\x22\x45\x9c\x2f\xff\xda\x4e\x5e\x92\xa5\xcc\xb7\xce\x09\xb5\x69\x0b\xdc\xf9\x29\xdf\x01\xe5\x30\xd0\x1d\x85\x28\x2b\x8f\x69\x3b\xfb\x5b\xcd\x2b\xcc\x45\x85\x4a\x7f\x20\x34\xa2\xd3\xd4\x81\xc9\xa2\x83\x11\xfa\x91\xd3\x17\x8f\x8a\x7e\xe4\x04\x72\x40\x33\x24\x70\x52\x15\xf5\xb6\x2c\xad\xe8\x42\xac\xcd\xa7\x7e\xdc\x41\x23\x2b\xa1\xed\x6a\x70\x26\x82\x79\x8e\x90\x4a\xce\x64\xcf\x44\xcf\xaa\xab\xf4\x19\x94\xb9\xf5\x3b\xd6\x64\x89\x38\x5f\x19\x17\x89\x57\xf2\xa7\xa6\x0a\x71\x9e\x6d\xfe\xdc\x2b\xe2\x0b\x12\xc5\xe9\xdf\x82\x0c\xfd\x99\x3d\xf0\x1a\x13\x3a\xdb\x8a\x0c\xa9\x7e\x2c\xeb\x07\xc5\x82\x81\x0a\x2b\x4b\xc4\x1d\x6b\x24\xb7\x0b\xe5\x0d\x2b\xd9\xbb\xa2\xea\xc4\xb7\xdd\x0e\x63\xd4\x26\xbd\x95\x1f\x16\x86\xf2\x13\x8a\xc4\xf1\x81\x99\x90\x11\xfd\x4b\x6d\x37\x12\xc0\xd3\x62\x2b\xf0\x0e\x8a\x5b\xa5\xf1\xa0\xbc\x4f\x6f\xc4\x1d\x6b\x73\x88\x3d\x17\x37\xd8\xf2\x93\xe5\x5a\xd8\x0a\xbe\x19\x72\x14\x5f\x7f\x29\xd7\x77\xf6\xd2\x13\xec\xb7\xb3\xb7\x18\x3b\xf3\x0b\x6c\x69\x52\x02\x63\x8c\xde\xcb\xae\xa3\xeb\x6e\x95\xbc\x35\xce\x9b\x6f\xa5\xf7\xe6\x06\x3d\xd9\x7c\x9a\xcf\x36\x51\x58\x9e\x9f\x9f\xfd\xdc\xcd\x40\x83\x91\x26\x77\xe5\xb1\x49\xc8\xb2\x9a\x21\x67\x9a\x57\xae\x48\x33\x77\x72\x16\x32\x94\x76\xa4\x15\xb5\xc4\xc3\xfe\x6e\x87\x65\x86\xa9\x0a\xdf\x21\xed\x97\x2b\xf0\x22\x68\x36\xc4\xc3\x03\xfe\xbd\xbe\xd4\xc1\x41\xc1\x26\xa9\x38\x6f\x53\x85\x4e\x13\xb2\x8a\x60\x02\x44\xd3\x94\xb9\x58\xdb\xe5\xc8\x64\xa1\x36\x96\x07\xd9\x70\xe5\xef\x74\x6c\x6d\x67\x79\xac\xe5\xe0\x74\xc0\x58\xc2\x9e\x50\x0c\x61\xaa\xa9\x0e\x6d\x35\x02\x36\x20\xf4\x38\x0f\x20\x70\x51\xca\x56\x4c\x9e\xae\x13\x2a\xca\x68\xe8\x23\x07\xb1\x34\x7a\xc3\x51\x1b\x47\xae\x20\x1a\x71\xb6\x54\xa0\xc9\xa1\xdd\xf7\xaa\x0a\x8a\x2f\xa8\x8a\x98\x4b\x10\xd4\x6c\x3c\x4e\x34\x4a\x83\xbb\x37\xeb\x3e\x1c\x24\xf9\x8d\xa9\x2d\x07\x54\x2b\xb0\x62\xdc\xfb\xa1\x11\xa4\xcf\x82\x7b\x03\xa8\xda\xa3\xdc\x13\xea\x4b\xdb\x1f\x09\xf9\x0c\xad\x61\x83\x85\xa7\xad\x65\x52\x00\x81\x54\x60\x96\x6b\xd8\x5a\xbe\xdb\x98\x14\xfb\xd0\x1d\xb4\xcb\xbc\x5e\x7a\xaf\x5b\x41\x65\x12\x2b\x6c\xd0\x03\x6f\x3b\xd6\x7c\x21\xe6\x21\xe5\x49\x6d\xca\xa8\xa6\xa3\x5c\xac\xd3\x52\x86\xbe\x76\x76\x69\x3c\x6e\x81\xef\xb8\x02\x55\x25\x7f\x45\xeb\x1c\xc0\xe7\xc3\x01\xa9\x87\xe5\x80\xf0\xa8\x3d\x9d\xda\x59\x55\xef\xd8\x9b\x0f\x07\x26\xfe\xfe\xdb\x3f\x8e\xac\xf9\x20\x65\xb6\x62\xdb\x53\x46\x3b\x90\x12\xf3\xbc\x95\x8e\x92\x02\xa5\x18\xe4\x44\x9e\xab\x98\x99\xf8\xb9\x43\x04\xf5\xb7\x98\x41\x5e\x6b\xdd\xa3\x1a\x8a\x83\x8b\x33\x98\x16\x04\x5f\x2c\x03\x55\xef\xf2\x20\x4b\x60\x89\xd4\x3b\xf2\x5c\xce\xea\xfb\xbc\xa3\x05\x60\x9a\x4c\xe5\xdd\x3f\x9d\x0a\x93\x08\xaf\x94\xe2\x6e\x95\xc8\x3c\x37\x24\x7e\xef\x8a\xaa\x4d\xd6\x1e\x7e\x0f\x91\xd7\xef\x55\x42\x0b\x90\xf3\xa5\x9a\xb1\xbe\xa9\x15\x06\xb7\x99\x5a\xb9\x05\xda\x72\x02\xe9\x4b\xe3\x3a\xc0\x5d\x74\x88\x9b\x14\xbb\x4a\x2b\x1e\xc0\x5a\xc6\x63\x28\x51\xe7\x6f\x7e\x2b\x07\x17\xc4\x5d\x91\xeb\xd9\x99\x57\xdb\x22\xd1\x52\xae\x59\x45\x81\x2a\x04\xe3\x78\xcd\x22\xbc\x17\xdf\xd6\x63\x4a\x91\xf9\xde\x26\x4b\xa0\xd9\x15\x3d\x13\x42\xf7\xce\xd2\xaa\xe2\x91\x25\x2a\x84\xc4\x5a\xfc\xda\x24\x24\x52\xc3\x6b\x26\x96\xa2\x1a\xf1\x9d\xdf\x04\x6d\x9f\x3c\x22\xc7\x2c\xc6\xb3\x5f\x07\xca\x7c\x3c\x66\xe3\xf1\xcb\xff\x82\xe3\x91\x99\xce\xf0\x74\x88\x32\x19\x57\xaa\x74\x45\x2c\x51\xa4\xf4\xc4\xa8\x59\xd5\x13\x2a\xf0\x3d\xc9\x2c\x48\x34\x80\x57\xdf\x67\x7c\x08\xf8\xc4\x81\xc8\x1d\x95\x24\x0f\x2a\x75\x9c\xda\xa2\x2c\x3e\xeb\xa0\x5a\xa4\x08\x5d\x38\xc6\xe3\x54\x7a\x16\xc3\x4f\xb6\x7b\xbd\xaf\xdf\xe7\x2d\xeb\xbe\xad\x3a\xd6\xbc\x2b\x4a\x57\x1c\xc0\x1d\xe5\xf9\x78\x9c\x56\xa9\xb8\x7d\xd2\xe1\x45\xb7\x69\x04\x6a\xeb\x66\xf7\x4f\x33\x2e\x8b\xb4\xa8\xcc\x64\x83\x86\xc7\x84\xd1\x67\x09\x14\x59\xd1\xcb\xe4\x12\x11\x3c\x1a\xa5\x08\x9f\x31\xd2\xa8\xfd\xb2\xf2\xfb\x74\xd0\xd3\xe2\xab\xd7\x5f\xbc\xfa\xe9\x2b\x4d\x4e\xca\xe7\x85\x89\x77\xc8\x7d\x50\xb8\x56\x0e\xe0\x9b\xd2\x02\x35\xd5\xf7\x4b\x6e\x69\x20\x0c\xd5\x05\x8f\x0b\x02\x5a\x1e\x89\x40\x25\xca\xdf\xc8\x9b\xe9\xe0\x11\x75\x41\x21\x12\xab\x83\x04\x46\x0a\x09\x9c\x4e\xa9\x8c\x90\x03\x71\x06\xf3\x04\x26\x94\x60\x7d\xc9\x41\x78\xb5\xa1\xb4\x3e\x76\xa6\x6e\x67\x99\x9e\x70\xf0\xe0\x41\x66\x73\x48\xef\x82\x9a\xf3\x95\xf7\xcc\xba\xa4\x09\x75\x70\x62\xa5\xa9\xbd\x7a\x95\x72\x0b\xf5\xd4\xb0\x83\xa0\x6c\x4e\x5d\x08\xf1\x41\x8e\xd0\xea\x0c\x25\x36\xaa\xfc\xf7\xdc\x2d\x38\xd3\xd8\xb5\x52\xb2\x51\x20\x18\x0e\xee\xf9\x4e\x6a\x36\xb9\x94\x18\xea\x20\xc2\x70\xff\xf8\x79\x45\x66\x78\xc2\x48\xdb\x60\x22\x81\x01\x26\x14\xdf\x47\xdb\x28\xce\x09\x26\xa9\x4e\xf0\x06\xc0\x3b\x21\xb4\x1a\x00\x3b\xa7\x03\x99\xd2\x20\xb0\x50\xd2\x88\x29\xd1\x88\x29\xb1\xe0\x0d\x86\xb4\x09\x38\x9b\x43\x91\x44\x12\x75\x2f\x5f\x97\x72\x43\xa2\x3a\xa7\xc0\x67\xf0\x07\xa1\x5a\x4c\xaa\xc8\x2c\xb6\x01\x33\x46\x09\x0d\x26\x9c\xa9\x09\xad\x0b\xc0\x6a\xa3\x03\xde\x9b\xf3\x39\x9d\x52\xab\xf1\xc2\x8e\xa4\x74\x69\x97\x0d\x25\xa1\x3a\x8e\x09\xe9\x3c\x93\x40\x65\x40\x29\x25\x52\x20\x32\xb0\xea\xa8\x17\x04\x7c\x3e\x79\xdc\xca\xd6\x11\xef\xd9\x81\x93\x92\xd8\x3b\x18\x5a\xe5\xd9\x12\xb1\x4b\x9e\xea\xdc\x7b\xd4\xde\xea\x9f\x8c\x78\x82\x85\x75\x65\x91\xba\x8c\x9a\xcd\x96\x7a\xcc\x48\xfc\xb3\x08\x85\x67\x2f\x50\xea\xfd\xf5\x00\x6c\xa3\x84\x57\xce\xcd\xf0\x2c\xdc\x74\x0c\x7f\x3b\x7e\xad\xee\xa3\xb3\x36\x72\xd3\x53\xbd\x9e\xe8\xec\xb4\x82\x5f\x50\x18\xf7\x4d\x5d\x75\xf4\x66\xc7\x8b\xb2\x7e\xb0\x26\x69\x74\xc4\x2c\x48\x1a\x27\xa5\x1b\x03\x8a\xd0\xdf\x80\x7b\xa7\xb5\x61\xd3\x87\x39\xf9\x3a\xe0\xe0\x69\x27\x85\xbe\x66\xbb\xea\x33\x58\x32\xad\x7d\xb9\xa7\x5b\x70\xa6\xb1\xe8\x78\xe0\x1e\xf9\x3c\xae\x45\xfe\xa9\x59\x5d\x29\x92\x56\xd0\x8c\x02\x63\xf9\x44\x3c\x6b\x61\xb0\x2c\x81\x0b\xa0\x40\x28\xb8\xb3\x6e\xbc\xc0\xa8\xd8\xda\xb9\x79\x9a\x30\xb2\x3a\x17\xf3\x52\xa4\xbb\x2b\xcc\x8a\xd5\x26\xb4\x33\x52\x6e\x2c\xef\xc9\xf2\xff\x0a\x00\x00\xff\xff\x03\x7d\xde\xd6\xe4\xde\x03\x00") + +func staticJsJqueryUiMinJsBytes() ([]byte, error) { + return bindataRead( + _staticJsJqueryUiMinJs, + "static/js/jquery-ui.min.js", + ) +} + +func staticJsJqueryUiMinJs() (*asset, error) { + bytes, err := staticJsJqueryUiMinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/jquery-ui.min.js", size: 253668, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsJqueryMinJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x7d\x93\x9b\x38\xd6\x28\xfe\xff\xfd\x14\x6d\x36\x0f\x83\xda\x32\x6d\x67\x66\xf6\x3e\x83\x5b\xa1\x32\xc9\x64\x27\xbb\xf3\xb6\x93\xcc\xcb\x2e\x26\x5b\x02\x04\xa6\x8d\xc1\x0d\x38\xdd\x19\xc3\x7e\xf6\x5f\xe9\x48\x02\x81\x71\x66\xf6\x3e\xbf\x5b\x75\x2b\x95\x36\xa0\x77\xe9\xe8\xbc\xe9\x9c\xa3\x9b\xeb\xd9\xd5\xdd\xdf\x8f\xac\xfc\x70\xf5\xfe\x53\x7b\x65\x2f\xaf\x9a\x2b\x2b\x44\xea\xdb\xab\xe2\x98\x47\xb4\x4e\x8b\xfc\xaa\xb9\xba\xbb\xe7\xdf\xec\xa2\x4c\x6e\xb2\x34\x64\x79\xc5\xae\xae\x6f\xfe\xd7\x2c\x3e\xe6\x21\xcf\x61\x51\x1c\xa0\x93\x71\xac\xd8\x55\x55\x97\x69\x58\x1b\x6b\xa3\x08\xee\x58\x58\x1b\x84\xd4\x1f\x0e\xac\x88\xaf\xf6\x45\x74\xcc\x98\x69\x5e\x48\xb0\xd9\xe3\xa1\x28\xeb\xca\x1d\xbe\x12\x6a\x47\x45\x78\xdc\xb3\xbc\x76\x03\x8b\xe2\xd9\x12\x39\x7d\xab\xe8\x94\xc6\xd6\xac\xcf\x82\xea\x6d\x59\x3c\x5c\xe5\xec\xe1\xea\xab\xb2\x2c\x4a\xcb\x90\x83\x29\xd9\xfd\x31\x2d\x59\x75\x45\xaf\x1e\xd2\x3c\x2a\x1e\xae\x1e\xd2\x7a\x7b\x45\xaf\x54\x49\x03\xad\x4b\x56\x1f\xcb\xfc\x2a\xb0\x28\x6a\x1d\xf8\x6b\x19\xc7\x3c\x62\x71\x9a\xb3\xc8\x98\xa9\xee\x8a\xf2\xae\xf8\x71\xea\x6d\x5a\xe1\x8f\x4c\xc3\x7b\x5a\x5e\x85\xc4\xf3\x71\xa4\x8d\x04\x33\xf2\x3d\x4c\x82\x9d\xb0\xfa\x87\xb2\xa8\x0b\x5e\xf7\xf7\x31\x8e\x49\x68\x57\x7c\x82\x71\x42\x42\x3b\x2c\xf2\x90\xd6\x78\x4b\x42\xfb\x70\xac\xb6\x38\x25\xa1\x9d\xe6\x11\x7b\xfc\x3e\xc6\x77\xe4\xd4\xe2\x1d\xb9\xb3\xeb\xe2\x4d\x5d\xa6\x79\x82\x33\x72\x67\x6f\x69\xf5\xfd\x43\xfe\x43\x59\x1c\x58\x59\x7f\xc0\x7b\x92\xf5\xe9\x39\xd9\xdb\x21\xcd\x32\x4b\x34\x8d\x70\x41\x4e\xed\x5a\x75\xfd\xea\x20\x3a\x1f\x90\xa0\x69\x22\xd9\xed\xc0\x0e\x4b\x46\x6b\xf6\x55\xc6\x78\xb7\x2d\xa3\x0a\xcb\xf4\xc0\xe7\x2a\xb4\x6b\xf6\x58\x13\x8a\x03\x7b\xcb\x68\x64\xd3\xc3\x81\xe5\xd1\x8b\x6d\x9a\x45\x56\x88\xec\x03\x2d\x59\x5e\x7f\x57\x44\xcc\x2e\xd9\xbe\x78\xcf\x54\x4a\xcb\x2b\xbe\x27\x06\xc0\x9b\x81\x4b\x32\x9c\x3a\xb9\x04\x7c\xfd\x4a\x3b\xce\xed\x34\x4f\x6b\x48\x69\x71\x45\x6e\xde\x79\x9b\x6a\x73\x7c\xf5\xd5\xab\x57\x9b\xc7\xe7\x4b\x7f\xde\x8c\xde\x9f\xdc\x24\xb8\x26\x37\xef\x16\xfb\x6a\x71\x83\x8f\xe4\x66\x61\x79\x74\xf1\x9b\x8f\x6e\x12\xfc\x7e\xba\xa5\xc0\xae\x8b\x9f\x0e\x07\x56\xbe\xa0\x15\xb3\x50\xbb\xe6\xcd\x92\xd2\x3e\xa8\x45\x21\x27\x01\xfa\xce\x3d\x0e\x8b\xbc\xaa\xcb\x63\x58\x17\xa5\x53\xe2\x8c\xe5\x49\xbd\x75\x96\xb8\x2e\x9e\x97\x25\xfd\xd0\x43\x65\x57\x79\x2c\xe6\x9b\x83\x08\x6a\x71\xc2\xea\x01\xe4\xaa\xb1\x1e\xb3\x6c\x46\xa8\x4b\x6f\x97\x2e\xcf\xe9\xd1\x39\xff\xb1\x45\xfd\xbe\x23\xbe\xf9\xce\xb0\x32\x0e\x0f\x6f\x6a\x1a\xee\x06\x55\xf2\xc9\x0d\x48\x69\xef\x59\x99\x30\xc8\x6a\x6b\x9d\xb6\x10\xa6\x3d\x94\xdb\x87\x92\xbd\x17\xa0\x40\x00\x88\x83\x16\x33\x1a\x6e\xa7\xfa\x58\xda\x3c\x05\x2a\xc4\x14\xb5\x78\x4f\x0f\x53\xd9\xa0\xc1\xae\x67\x56\x69\xef\xe9\xc1\x1a\x6e\x90\x00\x87\x5d\x76\x2a\x46\x14\xe0\x90\x2f\x30\xe2\x6b\xcc\x41\x7f\x62\x22\x47\x15\xc7\x1c\xdc\xb2\x0f\xb2\x3f\x65\x02\x7b\xaa\xe2\x15\xc4\x69\x59\xd5\x97\x2a\x60\xf7\xd6\x12\xb5\x38\xa3\x1f\xcd\xb2\x58\xa1\x16\xb3\xfb\x89\x79\xd5\x96\x05\x87\x64\x4e\xe7\x16\x5f\xb3\xc0\x59\x76\x93\x3a\xea\x67\xf8\x8c\x2c\x4d\x33\xbc\x0d\x5c\x0f\x56\x31\xf4\x7d\xc7\xf3\x79\xf5\x79\x74\x71\x94\xdd\xaa\x34\xcd\xf9\x02\x8a\x85\x77\xb6\xb8\x2a\xca\xda\x09\x6d\xfe\x83\xab\x03\x4c\x5b\x68\x8b\x87\x16\x97\x36\x7b\xac\x59\x1e\x11\xd8\x43\xf2\x59\x6b\x8f\x0f\x87\x62\x3e\xef\x11\x66\x38\xc6\x09\xe9\x26\xd1\x5b\xfa\x4d\x73\x6a\xf1\x96\xac\x70\xda\x7f\x56\xc3\xbe\x23\xb3\xd5\x3a\xe6\x78\x35\x28\x8a\x8c\xd1\xbc\xc7\xe2\x89\x69\x5a\x77\x24\x19\x54\xb6\x95\x95\xcd\xe7\x08\x9f\xa1\xfd\xa4\x69\x4a\x3b\xad\x5e\xa9\x7e\x25\xa8\x69\xac\x84\x9c\x5a\x84\xb7\x84\x90\xd4\x34\xad\x44\x40\xe6\x76\xb1\x40\xeb\xed\x6d\xba\xe6\x15\xa5\xb1\x25\xb6\x8c\x45\x07\x2d\x21\xc4\xfb\x15\x5c\xa5\xf9\x15\x45\x21\x49\xbc\x00\x70\x2e\xff\x49\x66\x84\x44\xbc\x7b\xa6\xc9\x7f\x78\xab\x3f\x64\x34\xcd\xc5\x3c\x5b\x11\x6f\x98\x11\xfe\x19\x76\xb2\x15\x21\x84\x5c\x8b\xb9\x16\x23\xb3\x15\xc7\xc9\xa6\xd9\x27\x86\xc8\x0d\xf9\x2a\x3a\xdd\x77\xbd\x2e\x48\x3d\xb5\x98\x37\x4f\xd4\x3a\x58\x77\x38\xc6\x11\x42\xce\xfb\x22\x8d\xae\x96\xb2\x37\x90\x25\x42\x1d\xf0\x24\xfd\xc2\x59\x27\xf6\x78\xa0\x79\x54\x38\x92\x7e\x19\x73\xeb\x7e\xfe\x2d\xad\xb7\x76\xc9\x3f\xef\x2d\x84\xec\x92\x1d\x32\x1a\x32\xeb\x66\xf3\xf2\x26\xc1\x86\x81\x70\x5a\xfd\xc8\x68\xf4\xc1\x99\x2d\x31\xe3\xd4\x6f\x00\xc3\x63\xca\xc8\xf7\x71\x5e\x14\x07\x1d\x10\x5b\xdc\xaf\xc7\xc4\x06\x37\xd4\x27\x83\x10\x52\xda\x7c\x1d\xa1\x1a\x39\x35\x0e\xfc\x55\x13\x85\xd3\xea\x17\x41\x22\x2f\x23\x3d\xd3\xa4\x84\x10\x6a\x0b\x5a\xca\x2b\xfa\xee\xb8\x67\x65\x1a\x4e\x62\x35\xd9\x9e\x9c\x2f\xcb\xc8\x8f\xfb\x80\x95\xbc\x2f\x41\xd3\x18\x15\x50\x39\x78\x43\xa6\x39\x4b\xab\xef\xe8\x77\x16\x5d\x1c\x68\x59\xb1\x57\x59\x41\x6b\x8b\x22\xe8\xab\xb6\x5c\xe7\xcd\xe0\x50\x56\x3f\xb3\x66\xb4\x69\x0c\x4f\x40\xed\x95\xc8\xef\x1b\x33\x42\x76\x02\x6d\x51\x84\x4c\xd3\x9a\x59\x01\xe1\x9d\xe2\x20\x14\x92\x4c\x61\x34\x43\xdb\xb5\x06\x32\xcd\x40\xdf\xc6\x58\x9f\x47\xb9\x19\x42\xd3\x94\xd4\x39\x44\x84\x90\x5c\x74\xf5\xab\xfd\xa1\xfe\x70\xa9\xab\x6b\x0d\xde\x65\x9f\x57\xaa\xf3\xcb\x16\xf3\x8a\x2f\x4d\x3d\xe1\xf4\x66\x6e\x18\xce\xd9\xa6\xe4\x63\x3e\xef\x1d\x75\xef\xbc\x6e\xd8\x7e\xd3\xa8\x62\x8e\x4a\x6f\x71\x92\x15\x01\xcd\xbe\x7a\x4f\xb3\x41\xa3\x07\x00\x90\x90\xee\x59\xc6\x29\xec\x54\x87\x68\x07\xc9\x35\x36\xf6\xd5\xc2\xe8\x41\xfb\x88\xdf\x03\x94\x46\xec\x3b\xba\xd7\x0b\x6b\x14\x9c\xda\x2a\xdd\x34\xfb\x67\xbb\x2e\xbe\x29\x1e\x14\x59\xe7\x40\x31\xfc\x72\x46\xeb\x78\x8d\xc0\xf4\xe0\x88\x2c\xd7\x69\x6c\x3d\xf0\x55\x3d\xf1\x39\x0e\x09\x95\xf8\x6f\x1d\xdd\x86\xeb\x48\x20\xa1\x40\xce\x87\x17\xf9\x38\xc2\xfc\x87\x37\x33\x5b\xa1\xa0\x64\x74\xd7\xb2\xac\x62\x57\xbc\x74\x24\x56\xe8\x77\x4b\x28\x34\x40\x5b\x5c\x97\xe9\xfe\x63\x4b\x67\x18\x8e\xc5\x97\xaf\x9f\xa8\x8a\xef\x7f\x4e\x97\x77\x6c\xc4\x8c\xf4\x03\xe3\xbb\xc4\xf3\xd7\xe3\x1d\x68\x3d\x48\x86\x90\x8f\xd7\x55\xbc\x43\x88\xfb\x0d\xd5\x01\x01\x67\x43\x28\x72\xb6\x12\x50\x31\x45\x08\x87\x2d\x4e\xf3\xf3\x36\x35\x32\x2f\x7a\x1d\xb8\x8b\x95\x93\xaa\xfd\x41\x71\xc8\xbb\xcb\x9b\x1a\x75\x95\x4f\x99\xe8\xee\x3c\x50\x54\x27\x22\x4b\xcc\xce\x17\x81\x7a\x6c\x3e\xf7\x49\xe0\x45\xdd\xa8\x54\x1e\xc2\x30\x87\xc9\x92\x1d\xce\x7a\xa5\x1a\x88\x30\xe3\x6c\x79\x4c\x96\x9c\x64\xa9\xa6\xb6\x64\x16\xae\xe3\xdb\x64\x1d\xcf\xe7\x28\x22\xb3\xc0\xa2\x5e\xec\xe3\x18\xe1\x68\x46\xc8\xd6\x34\x19\xd0\x77\xf8\xda\x61\x6e\x36\xe6\x88\x44\x4b\xb2\x15\x68\x62\x4b\x3c\xbf\x83\x2a\x00\x8b\x7e\x3c\xf1\x6d\x04\xcd\x31\xa2\x5a\xc3\x21\xc2\x62\x81\x98\x69\x6e\x45\x8b\x0c\xad\x3b\x98\x8a\x05\x4c\xfd\x6e\x01\x45\x59\x24\xbf\xe4\xf9\x78\xcb\x19\xd1\x63\x1a\x39\x2b\x7c\x28\x8b\xc7\x49\x40\xe1\x5c\x01\xef\xeb\x19\x04\x04\xa6\xc9\x37\x03\x27\xa9\x01\xa1\x98\x92\x10\xe1\x01\x09\xa7\x48\x62\xa2\xab\x88\x48\x7e\xb5\x23\xd1\xf8\x29\xc2\x8c\x9c\x73\x3d\x54\x76\x2e\x10\xfc\x0e\x8e\xa4\xd8\x63\x8d\x2b\x40\x1c\x27\x32\x9b\xf7\x9e\x50\xfd\x87\xf3\x11\xfc\x77\x3e\xc7\x8c\x63\x8b\x07\xe7\x25\xad\x99\x9d\x17\x0f\xb8\x3a\x1e\xb8\x14\xe9\x14\x2d\x9a\xc2\xba\x6f\x3e\xec\x83\x22\x03\x96\x20\xce\x3d\xf1\x66\xa7\x35\x2b\x69\x5d\x94\x3e\x09\xcf\x3e\xf1\xf1\x02\x2b\x6c\x7c\x29\xf8\x9f\xab\xef\x80\x08\x5d\x09\x19\xeb\x4a\xcd\xc4\x15\xec\x88\x2b\xde\x8f\xab\x1f\x59\xf2\xd5\xe3\x41\x52\x10\x41\x7c\x65\xc3\x06\x70\x6c\xb5\x65\x5c\x19\x68\x24\x43\xde\x79\x1d\xe9\x31\xe6\xc1\xdc\xf0\x0d\xff\x0c\x85\xa1\x5e\x78\x7b\xe8\xe9\xe4\x6c\x46\x4d\xd3\x10\xa0\x65\x70\x30\xe1\x68\xb1\xe3\x5a\xc7\x54\xb4\x9f\x94\x19\xe1\xfc\xcc\x8c\xaf\xa7\xa0\xdb\x16\xe5\x04\xce\xa0\x7c\x24\x9c\xac\x86\x4d\xb3\x94\xb4\xb6\xa3\xbc\x3d\x60\x04\xcf\x96\xa6\x19\x2c\x56\x02\x32\x41\xcc\x7b\x24\x13\xe4\x55\xb1\x9c\x78\x8b\x53\x7c\x87\x77\x38\xc3\x7b\x9c\xe3\x02\x1f\xf0\x3d\x2e\x71\x85\x6b\x7c\x24\x46\x95\xfe\xf6\x5b\xc6\x8c\xf9\xea\x9a\x33\x2c\x7c\x1a\xf1\x7b\x5d\x7e\x7e\x20\x4b\xfc\x48\x96\xf8\x03\xd9\x52\x0b\xe1\xdf\xc4\xcf\x73\xf1\xf3\xe5\xb4\xa8\xc7\x59\x0d\x0e\xc1\x19\x99\x2d\x11\x5e\xb6\xf8\x05\x39\xb5\x63\x89\xf9\x25\xc7\x09\x5f\x91\x97\xf6\xa1\x38\xe0\x57\xfc\x97\x0b\xde\x7f\x51\x0f\x5f\x93\x97\x52\x3e\x7f\x4d\x2e\xe1\xad\x25\xd6\xf6\x76\x78\x1b\xad\x43\x41\x30\xa8\x17\xfa\xc0\x9d\xc8\xfe\x28\x4e\x63\xb1\x6a\xf1\x5f\x89\x11\x6e\x59\xb8\x63\x51\x53\xb1\x8c\x85\x35\x8b\x1a\x5a\x7d\xc8\xc3\x86\x1e\xeb\x22\x2e\xc2\x63\x05\x4f\x87\x8c\x7e\x68\xc2\x22\xaf\xcb\x22\xab\x9a\x88\xc5\xac\x6c\xa2\xb4\xa2\x41\xc6\xa2\x66\x9b\x46\x11\xcb\x9b\xb4\xda\xd3\x43\x93\x15\xc5\xa1\xd9\x1f\xb3\x3a\x3d\x64\xac\x29\x0e\x2c\x6f\x4a\x46\xa3\x22\xcf\x3e\x34\x52\x19\x12\x35\x55\x58\x1c\x58\x64\xe0\xbf\x11\xc3\xdb\x6c\x1e\x9f\x2e\x37\x9b\x7a\xb3\x29\x37\x9b\x7c\xb3\x89\x7d\x03\x7f\x43\x0c\xcb\x75\x36\x9b\xcd\xc6\x6e\xbc\xcd\xe6\x61\xe1\x37\xde\xbb\xcd\x72\xb1\xd9\x3c\xd2\xa5\x8f\xe6\x06\xfe\x96\x18\x9b\x8d\x67\xcc\xff\x36\x37\xae\x2d\x63\xfe\xcd\xdc\x40\x96\xeb\xc8\x77\xef\xfa\xdd\x93\x66\xf6\x6f\xdf\x25\x48\x7e\x71\x9d\x4f\xac\xbe\xc6\x77\xfc\xf7\x13\x1f\x5d\xa3\x4f\x9a\x8d\x31\x4e\xd8\x18\x3c\x65\x63\x34\xb2\x5e\xd4\xc8\x5a\x36\x1b\xdf\xc0\xdf\x11\xc3\xe9\x1b\xdc\x6c\x2c\xcb\xfa\xcf\xab\x46\xcd\x38\xc5\x42\xde\x66\xe3\xfb\x8d\x31\xff\x76\x6e\xa0\x6b\xd4\xd8\xd7\x68\xb3\xe1\x4d\xe3\xef\x09\x87\x45\xb1\x9b\xad\xbf\xcd\x8d\xb9\x81\x8d\xc4\x40\xf8\x07\xfd\xbb\xf1\x0e\xfa\x38\x87\x8a\xdf\xc9\x4a\x7d\xa4\x5a\x41\xd7\x62\x0c\xf3\x27\xb2\xf0\xdf\x27\x0a\x5f\x63\xf1\x63\x20\xfc\xe3\x54\xb2\xe5\x3d\x9b\xff\x9b\x77\xf1\x6f\x73\x03\x75\x59\xdf\x0c\xb2\x12\x95\xf5\xdd\x66\xe3\x7f\xb2\x31\xfc\x6b\x57\x9f\x3d\x68\xfb\xad\x5e\xe2\x3b\x84\x7f\x1a\x37\xf6\xcd\xdc\x78\x62\x20\xfc\x33\x39\xbd\x7e\xe9\x0c\xd2\xfe\x24\xa7\xde\x40\xf8\xc5\x37\xcf\xdf\xbc\x19\xa6\x6e\x36\x76\x9f\xfe\xf6\xf9\x5f\x86\xa9\x22\xa9\xf1\xae\x7d\x9e\xfc\xfc\xed\xdb\x1f\x9d\x51\xbb\xdf\x22\xfc\xc3\x9b\xaf\x7e\x7a\xf9\xfd\x38\xe1\x3b\x84\x5f\x7c\xfd\xfa\x9b\x51\x67\x1c\x0b\xa0\x1a\x64\xff\x86\x4b\xf7\x4d\x5e\x6f\xf9\xff\x05\x7f\x41\x0b\x2b\xdc\xa6\x59\xd4\x14\xf1\x82\xa3\x2b\x09\x2e\x72\x7e\xd8\x7b\x96\x37\x45\x14\x35\x96\xe5\xcd\x17\x7e\x83\xac\xcd\x26\xba\x46\x79\xd3\x43\xac\x4c\x90\xef\x9b\x4d\x34\x47\x0d\xea\x26\x13\x40\xc3\x48\x0d\x84\xb9\x44\x3c\x1a\x29\xdf\x09\x7f\x9d\x1b\xe8\x89\xcc\x92\x33\x16\x55\x2f\x8a\xbc\x66\x8f\xf5\x78\x6c\xbc\x3a\xb1\xb0\x4e\xdf\x2b\x76\xdf\x24\x75\x93\x89\x11\xf5\x03\x1c\x8e\xc1\x72\x9d\xc5\x66\x13\x21\x17\xba\xae\x75\xcc\x72\x89\xf7\x6e\xe1\x37\x4f\x64\x17\x5b\xfc\x0b\xb9\xe1\xbd\x4a\xf3\xc3\xb1\x96\x98\xa6\xe1\x9d\xa1\x25\xa3\x4d\x70\xac\xeb\x22\x47\x4f\x6e\x52\xfc\x2b\xb9\x79\xb7\xdd\x44\xfc\xf1\x1f\xe4\xe6\x9d\xf7\xee\xe4\xcf\x37\xa7\x4d\x75\xbd\xf1\x72\x5a\xa7\xef\xd9\xd5\xe6\xe1\x06\xff\x53\xd4\xf6\x27\xcb\xe3\xa8\x61\x8e\x1a\x6b\xf3\x30\x47\xcd\xc6\x56\x1f\xd0\x93\x1b\xfc\x84\xdc\x78\xf3\x7f\xfb\x37\xf8\x5f\x03\xf0\x82\xcd\xe6\x6d\x36\x11\x5d\xc4\xfe\x69\x85\xff\xdc\x42\xc7\xdd\x46\x8c\x0a\x35\x36\x74\x9a\xc3\x29\xa5\x64\x92\xb5\x22\xc6\xf2\xd1\x98\x07\x8b\x3f\x7f\xfe\xf9\xa7\x7f\x56\xbc\x0e\x67\xd3\xa2\xa6\x09\xdd\xc0\x89\x6e\x97\xae\xa0\xcb\x76\x5c\x16\xfb\x17\x5b\x5a\xbe\x28\x22\x66\x45\x73\x28\x81\x9c\xc9\xc4\x67\xcf\x56\xcb\xe6\xf3\xcf\x9f\x7e\xf1\x67\xbc\x5a\x3e\xfd\xd4\x8c\x9a\xcf\xff\xfc\xe9\xd3\x25\x6a\x71\x40\xc9\x8d\xe5\x71\xf4\xf7\xb8\x8a\x37\x8f\xff\x3b\xf6\x9b\x77\x0b\x77\x13\xa1\xe6\xdd\xe2\x09\xdf\xea\x8f\xff\xbd\x5c\x6c\x8e\xaf\x5e\xbd\x7a\xc5\x87\x7f\x93\xe0\x90\x5e\xd0\x3a\xba\xc6\x66\xc9\x69\x2a\x75\x8d\xcd\x31\x8e\xe3\xc8\x70\xa8\x20\x2c\xd6\x12\x2f\x56\x68\x6e\x6c\x36\xc6\x9c\xda\xa1\xec\xd6\xf3\xda\x52\x24\x65\xb1\x42\x9d\x4e\xd7\x5a\xfd\x19\xcd\x8d\x2b\xc3\x11\xd9\x5b\x1c\x51\x9d\xc3\xda\x0b\x39\x87\xd4\xd4\x9a\x94\xbb\x14\xe5\xe0\x52\xc8\xb2\xc5\xa7\x28\x2d\x1d\xa3\x57\xdd\x1a\x38\xe7\x70\x6a\x64\x2c\x61\x79\x64\xb4\x68\x5d\x97\x1f\x4e\x7f\x91\xfc\xda\x4b\xf2\xb5\x60\xd0\xde\xdb\xb0\xbf\x78\x89\x0a\xe1\xe1\xdb\x4b\x4f\x7f\x57\x3a\x4d\x90\xd2\xde\x7e\x38\xb0\x36\xa4\x75\xb8\xb5\x62\x8a\x4e\x7f\x21\x27\xa8\xd7\x79\x29\x73\xb9\xc3\x99\x7b\x25\x9b\xa5\x58\x36\x1b\x20\xd4\x4e\x8a\x39\x54\x13\x1b\xd6\x0f\xdb\x34\x63\x9c\xf4\x4a\x49\x61\x3e\xf7\xd1\xba\x93\x12\xc2\xc5\xaa\x6d\xdb\x8e\x8b\x4a\x28\xc0\x57\x84\x99\xa8\x2b\xc6\x5b\xc9\xa2\x14\x9c\x35\xe1\xdc\x43\x60\x17\x0f\x39\x2b\x5f\xf6\x8c\x48\xe0\x06\xdd\x78\x9c\x2f\x38\xdf\x1c\x71\x00\xf4\xfc\x4e\x82\x9a\x69\xc2\xf5\x8c\x36\xcd\x6a\x46\xc8\x83\x69\x7e\x21\x7e\x56\xf0\xda\xf1\xcd\xbc\x82\x19\x33\x4d\xcb\xe2\x15\x0f\x1a\x6b\x9a\xc0\x79\x8f\x66\x84\xe4\xa6\xb9\xb7\x02\x84\x41\x57\x9f\xe3\x03\x82\x63\x90\x95\xac\xd7\xca\xc8\x3f\x6d\xf6\xc8\x42\xce\x8e\x73\xc6\x23\x26\x99\xb7\xf2\x21\xcf\x17\x84\xb7\x05\x87\x26\xd6\x1d\x09\xec\x84\xd5\x52\xb7\xff\xe5\x87\xd7\x91\x15\x23\x34\xe8\xc8\x9d\x9d\x72\xe0\x88\xbb\x8f\x42\xb2\xb8\x43\x38\x12\x02\x6e\x1a\x5b\x15\xe8\xfd\xaa\x89\xaa\x4c\xb3\xb6\x02\x7c\x87\x4c\xf3\xf7\xea\xe1\x1d\xca\xbc\xa7\xbe\x4a\x57\x30\x16\x61\xbd\x8b\xd5\x97\x1f\xde\xd2\x84\x4b\xf7\x7c\x64\x18\x7a\x08\x83\xfb\xd4\x47\xa6\x19\x0e\x73\xbe\xc8\x68\x55\x09\xad\x40\x70\x21\xe5\x77\x5b\xeb\x72\xf2\xd1\xe0\xa8\x4d\x63\x2b\xb4\xef\x2b\x6a\x9a\xb3\xe7\x1e\xe5\x1b\xcf\x37\x4d\x6b\x76\xdf\x34\xb3\x7b\xbb\x66\x15\x88\xd0\x62\x2d\x60\x4d\x2b\x12\xe0\x92\xd0\xb5\x9a\x2a\xa5\x36\x99\x11\x12\x5c\xd0\x54\xa0\x93\xb5\x13\xeb\xf2\xbc\xae\xcb\x34\x38\xd6\xcc\x32\xd2\xc8\x40\xc8\xdd\x91\x5d\x27\xef\x07\x14\x87\x14\x39\x81\x5d\x8d\x33\xe2\x1d\x39\x22\x5c\x90\xc4\xa2\x08\x6f\x49\xa1\x18\x51\xb1\x11\xb6\x8b\x05\x2a\xbc\xad\x4f\x8c\x3f\x19\xf3\x1d\x1f\xc1\xbc\xa2\x16\xff\x82\xd6\x25\x29\xec\xbb\x22\xcd\x2d\x03\x1b\x08\x57\xe4\x89\x1a\x92\x69\xde\x53\x2b\xd0\xce\x74\x50\xd3\x04\x7c\x32\x4a\xc4\x11\xc2\xd9\x2c\x56\x36\x9c\x98\xbc\x01\xf2\x52\x94\xcf\xb3\xcc\x2a\x61\xfe\xc4\x6e\x7f\x44\xa7\x36\x4e\x73\x9a\x65\x1f\x4e\x3b\x42\xc8\x91\xaf\x90\x38\x25\x1a\x8d\xb9\x6d\x5b\x59\x79\x6a\xf5\x5a\xa2\x1f\xb0\xf1\x64\xc5\xe9\x2d\x6c\xd4\x7e\xf7\x72\xde\x5f\xa8\xb6\xb9\xac\xdd\x7d\x0e\xac\x90\xef\xe7\x0e\xe9\x01\xe4\x85\x7c\xe8\xe8\x59\x64\x87\x34\xdc\xb2\x6f\x60\x8a\x4c\x33\x62\x19\xab\xd9\x55\xe0\x51\xbb\xda\xa6\x71\x6d\x21\x1f\x07\x1e\xe4\xf5\x09\x53\x7d\x09\xfa\x26\x53\xaa\xe3\x53\xef\xe8\x93\xd9\x12\xd3\x3e\xfd\x8e\xf6\x72\x59\x3e\x3e\x4b\x8b\x53\x96\x45\x15\xab\x0d\x81\x57\xa5\xe6\x6e\x46\xad\x00\xc9\x99\xea\x74\x28\xb3\x55\x37\x63\xfa\x3a\xf0\x89\xbb\x70\xd2\x06\xd8\x21\x3f\x66\x99\x86\xde\x76\x74\x88\x26\xa5\xf0\xd9\x18\x5c\x30\x0f\x87\x80\xc2\x16\x0b\x14\xd9\xb4\xae\xcb\xaf\x69\x1e\x65\xcc\x0b\x3d\xe6\xfb\x44\x1b\x7b\x36\xa8\x2d\x30\x4d\x8a\x23\x2e\x41\xae\x40\xa3\xab\x30\xa2\x78\x0f\xb4\x77\x6a\x57\xc5\xb1\x0c\xd9\xeb\x3c\x62\x8f\x8b\x40\x7f\x03\xe4\x39\x40\x40\x21\x12\xdd\x09\x49\x68\x73\x62\xf4\x26\x0d\xb2\x34\x4f\x38\x56\x0b\x35\x59\x6a\xb1\xea\x14\x40\xee\xca\x59\xac\xfa\x5e\xee\xf5\x15\xea\x4f\xa1\xba\x6e\x5f\xd8\x86\x4a\x3a\x06\x46\x09\x84\x5f\x3e\xd7\x70\x1e\x48\x08\xd5\xe6\x34\xff\x1f\xd5\x6f\x69\x0d\x34\x8d\x21\x18\x30\x78\x43\x17\xda\x2b\x2e\xb5\x27\x3b\x9c\xd1\x80\x65\x5c\xec\x07\x5a\xa5\x11\x78\x50\xec\x16\xe5\xfe\x3f\x4d\x9b\xad\x4c\xd3\x0a\xec\xb4\x7a\x39\xc8\xaf\x7f\x99\x11\x32\xa3\xa6\x69\x69\x8d\x37\xcd\x8c\x71\x40\xe6\xd4\x8a\x22\xad\xff\x07\xbd\xff\xa9\xc6\x97\x68\xcc\x11\x99\x07\x58\x4f\x0a\x71\x24\xe6\x93\xe1\x98\x50\xcb\xf3\xb1\x02\x56\x1c\x20\x9c\x90\x78\x08\xba\xc9\x62\x81\x42\x8f\x91\xd8\x4b\x7c\x8e\x9f\x39\xe4\x92\x99\x15\xf1\x1f\xfe\x8c\x50\xcb\xff\x75\x5d\xba\x1f\x6c\x62\xd3\x9c\x3a\xf3\xa7\x93\x64\xc8\x34\x69\x1b\x92\x84\xda\x52\xcd\x44\x4e\x2d\x8e\xf9\x7b\x5a\xfd\xfa\xed\x37\xe7\xda\x0f\x50\xb7\xd2\x31\x51\xa7\xa8\xd3\x6b\xc8\x16\x94\x16\x7f\x16\x98\xa6\xf1\xf5\xdb\x6f\xbf\x19\x52\x8c\x16\xef\xa1\x51\x56\xab\x4a\x26\x14\x2d\x0c\x27\x84\xba\xe7\x8d\x39\xef\x3b\xad\xa0\xe0\x24\x38\x4b\x90\x68\xfb\x33\x19\xf7\xc6\xb5\x72\x92\xe0\x82\xe4\xe3\x04\x7c\x20\xb3\xd8\xca\x11\x7e\x2f\x6a\xb2\x18\xcf\xc3\x62\x7a\xcc\xea\x9f\x53\xf6\x80\x4c\x93\x83\xfd\x61\x46\x08\x67\x68\x98\x4d\xa3\xe8\xab\xf7\x2c\xaf\xbf\x49\xab\x9a\xe5\xac\x74\xcf\x3f\x59\xc6\x31\xcf\x0a\x1a\x19\x38\xa2\x78\xb6\x42\x0e\xe3\x48\x88\x86\x5b\xc8\xc5\x2b\xd4\x5e\x2d\xa3\xc8\xfb\xec\x08\xe1\x10\x30\x16\x50\x90\x8a\xdc\x5d\xe0\x7a\x43\x45\xd5\x89\x91\x1a\x78\x46\x47\xc4\xb6\x4b\x36\x50\xcb\x6b\x9c\x5a\xf8\x8b\x75\xeb\x66\x10\x0a\xe1\xbf\x28\xf6\x02\xe1\x1b\x08\xc9\xe6\xce\x19\x1a\x2e\xc2\x4b\x30\x3e\x6f\xb5\xe3\x43\xc8\x3f\x04\x4d\xce\x2f\x71\x34\xa2\x24\x67\xc0\x2e\x74\xb1\x18\x74\x91\x22\xce\x98\x1d\xf1\x6c\x54\x21\xaf\xab\x69\xa6\xbe\x5a\xc7\x71\x37\x79\x63\xae\x15\xd9\x71\x9a\x47\xf6\xeb\x97\x23\x81\x87\x73\x3d\x13\xfb\x69\xcc\x79\x9a\xe6\xa1\x47\x99\x23\x4e\xb2\xb7\x59\x08\x5d\x2f\xf4\x1d\xcf\x6f\x5b\xcc\xdb\xcb\x6a\x56\x0e\x5b\xec\xf6\x59\xc7\x2c\xfc\x0b\xd3\xbe\xfc\xe4\x92\x9d\xb3\x5a\x9c\xb0\xb4\x2d\x72\x2c\xc9\x0f\x74\x63\xfb\x9f\xb7\x2a\x86\x78\x11\xc3\x74\x1d\x11\xd4\xfd\xfc\x9b\xe8\x60\x37\x1f\x9c\xeb\x7d\x4f\xb3\x23\x93\x5d\xc6\xb2\xab\x6f\x9f\xff\x85\x4c\x43\xae\x3b\x25\x8f\xfe\xde\x0a\x69\xc5\x2f\xf2\xe3\x0e\x70\xc6\x6e\x70\xce\xfb\x51\x75\xee\x3d\x29\xae\xe1\x88\x78\x3e\x66\x64\x89\x63\x72\xb1\x72\x38\x8d\xb8\x06\x81\x19\x9d\x14\x47\x10\xc3\xf1\x0f\xe2\xfc\x45\xa8\xe1\x2f\x29\x5b\x84\xdd\x2c\x45\x8a\x71\x8b\x5b\x35\x3f\xa0\xb3\x1a\xcf\x90\x26\x31\xfc\xc7\x30\x3c\x2c\x7e\x40\x9d\x91\xcd\x05\x79\x82\xa2\x16\x97\x7c\xe0\xf7\xfc\x8f\x90\x2a\xfa\xcd\x3d\x9e\x42\x38\x69\x1e\xed\xe7\xf3\x8d\x9c\xe7\xac\xe4\xc4\x82\x18\xb7\xf4\x2a\x8d\xc8\x27\xc6\xfc\x38\x37\x3e\x79\x76\x7b\x43\x9f\xdd\x0a\x5d\x4f\xff\x79\xb1\x29\x37\x9b\x4f\xae\xf6\x15\xcd\xb2\xe2\x21\xa4\x87\xfa\x58\x32\xf2\xc9\x27\xcf\x6e\x8b\x03\x50\x45\xa5\x86\x86\x6f\x37\xe2\xe3\xb3\xdb\x1b\xf1\xf9\x99\x81\xe9\xf9\x42\x1b\xde\xb0\xba\x77\xe4\x93\x4f\xfc\x0e\xad\x99\xe6\xbd\x58\x19\xc3\xbb\x7e\xf7\xc4\x27\xbd\x46\xf8\x93\x66\x63\x6c\x40\x57\x38\x59\xa9\xea\x49\x5f\x55\xd3\xa8\xaa\x7a\xdd\xb3\xeb\xc0\x46\x68\x84\xc2\xed\x52\x5d\x69\xf4\x6f\x22\xc6\x3f\x55\xdb\xbf\xc9\x85\x72\x8e\x54\xce\x4f\x94\xe9\x93\x26\x4b\xd2\x3f\x41\x73\xf3\xeb\x89\xa2\xf6\x9f\xec\xb9\x37\xff\xb7\x0f\x84\x66\xb4\xbc\x74\xb4\x9e\xdb\x92\xc5\xe4\x93\x4f\xae\x3a\xce\xec\x13\xf5\x34\x5c\xe0\xc9\x74\xb1\x7a\x37\xda\xf2\xad\x2f\xc8\x24\x82\x1d\x45\xeb\xb1\x60\xc9\x41\xde\xc0\x86\x38\x61\x80\xa1\xea\xd0\x17\xa0\x51\xf6\x9c\x93\x4f\x6c\xbc\xbc\xb4\x0c\x3c\x9d\x44\x53\xb0\x01\x25\x85\x2e\xb4\x3b\x3c\x30\x10\x7e\xca\xf9\xc8\xa9\x85\x61\x39\x0c\x72\xa2\xa6\x2e\x09\x1b\x8e\x9a\x0b\x03\xe1\xb3\x7d\xd3\xcd\xd8\x6c\x79\xb9\x99\xbe\x82\x3f\xda\xce\x54\x35\xd7\xd8\x79\x34\x10\x56\x25\xb1\x7d\xed\xf0\xb5\x47\x1c\x01\xec\xb9\xc4\xc7\x2a\x95\x5f\x21\x83\x8a\x14\x2a\xa9\x69\x0a\xfb\x81\x05\xbb\xb4\xfe\x76\x98\x97\x27\xec\x8b\xdf\x26\xbe\x16\x53\x39\xab\xd1\x47\x8e\x5d\x46\xd0\x17\xf2\x59\x09\x8b\x3c\x87\x8d\x07\xf9\x49\x25\x8f\x63\x31\x9c\x36\xf4\x6f\x5e\x35\xe3\xfb\x1c\x46\x56\xca\x91\xcd\x88\x81\xbf\xe3\x50\x7d\x4f\xee\xbb\x09\xd3\xb4\xbf\xf7\x52\xd1\xd0\x70\x96\xa8\x24\xe5\x54\x9e\x52\xcf\x13\xa8\xf9\x28\xec\xb0\xd8\x73\x99\x57\xb1\xb4\x3f\x14\x55\xca\xbb\x8d\x70\x4d\x82\xa6\xd1\xb2\xe5\x35\x4d\xf3\x0a\xb9\x53\x3a\xc2\x2f\x06\x42\xaa\x4b\xc7\xac\xad\xc3\x85\xd9\x60\x28\x5f\xaf\xb5\x73\xc4\xa8\x69\x66\xd6\x2c\x12\xba\xbc\xa8\xab\x88\x7f\x0d\xbb\xa6\xdd\xfe\xd1\x8a\x90\x43\x2f\x75\xdd\x34\x57\x7f\x36\x2f\xa6\x82\x35\xda\x98\x74\xa6\xb1\x15\x48\xd1\x38\x20\x03\xd5\x0c\x4f\x01\x3a\xa9\x2c\x81\xd6\x9d\x0a\x01\x7f\x49\x02\xf7\xac\x1e\xaa\x9f\x49\x66\x7c\x17\x2c\xd7\x42\xbd\x3e\xbb\xd8\xa7\xc5\x2c\xb8\x94\xd4\x51\x5d\x37\x72\xac\x88\x4c\x89\x3b\x84\x10\xeb\x5c\xb5\x89\xdc\xcb\x53\x10\x20\x67\x85\x57\x26\x9f\x75\x61\xf3\xf8\x92\x71\x21\x80\x45\xc2\xb2\x6a\xba\x10\x34\x14\xb9\x7c\x7c\x79\xd3\x8c\xfa\x41\x08\x79\x6f\x9a\xb5\xf5\x1e\x53\xe4\x2e\x56\x4e\x20\x72\x05\x97\x72\x05\xc8\x5d\x39\x3b\xf7\xb5\xb5\xc3\x14\x2d\xf8\x4f\x80\x9c\xa5\xf3\x99\x19\xf1\xd2\xab\xa9\x05\xba\x34\xb1\x61\x67\xcf\xd2\x2f\x1b\x30\x3f\xda\x6b\x42\x3c\xea\xe3\x2d\xf1\x02\x5f\x28\x84\x9b\x66\xd6\x69\x4f\x61\x44\x5d\xa7\xdd\x95\xc3\xf8\x4b\x3c\xd5\x41\x5e\x98\xe9\x9a\x57\xa9\xb5\x59\x87\x84\xae\x7b\xd5\x8a\x06\x3f\x89\x7d\xcc\x85\xf2\x2b\xe4\xb9\x82\xe9\x5c\x5b\x3d\x97\x14\xbb\xbd\xc8\x27\x84\x6c\xbd\xc8\x47\xd1\x7c\xde\xc3\x41\x46\x21\x0d\x43\x8a\x23\xb3\xbd\xe7\x5d\xde\xaa\xe7\x95\xb3\x6c\x71\x8e\x9c\xbc\xc5\x09\x55\xf8\x6e\xfa\xe8\x04\x74\xf4\xf9\x31\xcb\xc4\x9f\x00\xe9\x45\x3a\xec\x79\xb6\x18\x53\x70\xa8\x34\xe9\x14\x34\xe9\x1d\xf3\xfe\x06\x1b\xe4\x93\x27\x2b\xce\xba\xe0\x33\xbc\x6c\x9a\x07\xd0\xfe\x06\x9d\xf6\xb7\x6c\x9a\x59\x29\xb0\x4e\x20\x4c\x02\x35\x7d\x70\x80\x10\xe8\x48\xc5\x86\xea\x90\x66\x00\x1c\x6d\xd4\x34\x13\x88\x96\x83\xaa\xc2\x46\xf2\x74\xa0\xff\xd0\x61\x9a\x4e\x4b\x26\x55\x85\x0c\x9d\xda\x7e\x86\x02\x9c\x8b\xe9\xf1\xa8\xaf\x28\xd6\xb3\x25\xcc\x94\xc2\x48\x93\xb3\xfb\x3b\xb3\xa4\x4c\xf1\x13\x0a\x72\xf6\xa8\x8a\x8f\x17\x06\xd0\x67\x64\xa0\x53\x1c\x19\xb4\xf8\x38\x26\xcc\x34\x5f\x88\x59\xd2\x73\xe2\x51\x4e\xe4\x32\x38\xa9\x99\x1d\x94\x6c\xa1\xc0\xad\xb3\xb0\x8d\xdd\xd8\xd1\xd5\x01\x4d\x33\x3b\xb8\x23\x69\x2f\x40\x8e\x15\x93\x09\x29\x0b\x16\x32\xb6\xab\x03\x0b\xd3\x38\x65\x91\x1b\x0b\x31\xcb\x01\x8d\x2a\x1f\x3f\xab\x42\x7a\x60\xe4\x5c\xa2\x1c\x19\xe6\x09\x45\xbd\x28\x52\x96\x03\xc8\x3c\x37\xc9\x35\xde\x7c\xc8\x6b\xfa\x78\x05\x39\xf1\xd5\x31\x2f\x59\x58\x24\x79\xfa\x1b\x8b\xae\xd8\xe3\xa1\x64\x55\x95\x16\xb9\x73\x65\xcc\x65\x95\xc7\x3c\xbd\x3f\xb2\x37\x45\x39\xa5\x01\xd2\x04\x2b\xc0\x03\x19\x99\x85\x76\xc4\x6a\x16\xd6\x2f\x8f\x87\x2c\x0d\x69\xcd\x2a\xbc\x23\x12\xa5\xbe\xa9\x39\xeb\x02\xfa\x59\x71\x0e\xc9\x79\x18\x9e\x60\x7d\x89\x70\xa6\xc4\xae\x80\x50\x2f\xe6\x62\x17\x10\x19\x2f\xf6\x41\xed\x23\x65\xae\x18\x21\x4d\x7d\x4c\xa5\x3d\x3a\x68\xde\xf0\x0a\x29\xf8\xdc\x81\x5e\x1a\xd3\x16\x33\x92\xc0\xe4\xbf\x65\x8f\x53\x03\x08\x89\x61\x00\xae\x8c\x35\x5a\xcd\x47\x12\x8b\x33\x16\x8e\xd7\x9a\xe6\x0b\xf1\xb3\x82\x57\x21\xac\x9d\x59\x2e\x82\xb3\x0a\x9c\xbb\xe7\x75\x87\x45\xf5\x8f\x60\x4b\x4b\x09\xb5\xe1\x8c\x1d\x78\xc3\x35\x5d\xf3\x0f\xba\xd6\x39\x9c\x83\xad\x6f\x77\xf4\xf5\xa9\x68\xfa\x33\x1d\xc1\x8a\x9e\xfe\xcc\xa1\x45\xe4\xeb\xe7\x0d\x0e\x1f\xa1\x8e\xa0\x17\xe1\x5b\x1c\x09\x65\x9e\xc0\x2f\x15\x39\x69\x47\x12\xce\xe7\x4b\x2c\x38\xf4\x1f\x2a\x76\x8c\x0a\x27\xa5\x18\x10\x92\xf3\x33\xee\x77\x87\x73\x6a\x31\x17\x6b\xf9\x6f\xc9\x32\x38\x9f\x77\x4e\xc6\x33\xc3\x39\x3f\xd1\x15\x0e\x12\xb3\x65\x8b\x8d\xab\x89\xf4\x16\x1b\xf3\xee\x73\xc9\xde\xa7\xc5\xb1\x92\xa3\x1f\x94\xfd\xf7\xa5\x4c\x6d\x8b\x0f\x25\x7b\x05\x5a\x12\xe7\x04\xc6\x1d\x53\x5a\x17\x6f\xe5\x13\xfe\x67\xa8\x31\xc1\xd4\xfb\xd4\x27\x16\xff\xdb\x34\xd4\xfb\x0c\xfe\x7e\xee\x37\x8d\xbe\xa3\x44\x4e\x2e\xab\x01\x04\x3e\xe5\x10\x08\xe5\x0c\xbe\x2f\xbc\x4f\x7d\x38\xda\xc1\xfd\x71\xfa\x67\xa8\x95\x56\x23\x1f\xed\xc9\x00\xc1\x60\x23\xaf\xb7\xa2\x81\x95\xdf\xd5\xf4\x29\x72\x65\xe7\xd4\x76\xb6\xa8\xb7\xf4\x79\xbf\x3f\xf3\xc9\xdc\xe2\x3f\x2e\xef\x31\x7f\xfc\xb3\xdf\x34\x2b\xe4\x3c\xbd\xb6\x0c\xf6\x9e\xe5\xa2\xb2\x4f\xc1\x78\x3a\x8a\xd4\x1b\xe2\x65\x3f\x17\x65\xff\xb7\x3f\xa7\xde\x7f\x9f\x65\x70\xf8\x8f\x69\x8e\x5b\x6c\x95\x89\xcc\xd4\xbe\x99\xf1\xe6\x4d\x93\xcf\x8e\x02\xb4\x9f\x6d\x98\x03\x79\xa6\xc7\xeb\x70\xf9\x36\x74\x60\x40\x2e\xcf\x49\x86\x33\xee\x84\xa6\xf9\x56\x64\x0f\x39\x59\x0b\x48\x62\x85\x78\xb6\x44\xe2\xa5\xf3\x44\xb3\x0c\x64\x74\x0a\xf9\x45\x80\x16\xea\x19\xc1\xc2\x2c\x79\xbd\xcb\x7e\x0e\x03\x3e\xe2\xa7\xbe\xf2\x73\x83\x2f\xfa\x6a\x7d\x8a\x50\xcb\xc1\x59\x00\xd0\xdb\xe7\x7f\x99\x70\x05\x18\x29\xda\xa6\x8f\x6e\x84\xba\xc8\x3d\x33\x38\x9d\x0d\xf4\x50\xff\xb1\x19\x79\xdb\x4a\x8b\xa7\xf3\x6e\x7d\x90\x67\xc2\x9d\x8b\x55\xd3\x58\xc1\xc0\xe8\xc5\x7a\xd7\x59\x6d\xd1\xb9\x21\x2c\x5d\x9a\x27\xc8\xe0\x73\xfa\xc1\xa2\x78\xa2\x5f\x81\x58\x82\x09\x9c\x16\xf6\x0a\x27\xed\xa5\x69\x7e\x5f\xbb\x38\xd6\x2c\x4a\xa5\xb7\x81\x60\xa7\xb5\xa8\xc5\xa3\x8d\x3b\xb0\xe7\xee\x3e\xab\x53\x19\x22\xf9\x01\x2b\xd2\xfc\xcb\x84\xd5\x37\x73\xb9\x2c\xc8\xe7\xcd\x99\xf1\xe9\x60\x73\x8e\xd3\x0d\xf1\xc9\xe5\x9c\x69\xe8\xa8\x1c\x2e\x9b\xc1\xeb\x3b\xf9\x1a\x9a\xe6\x92\x10\xc2\x3a\x40\x0b\x91\x63\x5c\xf7\x89\x7a\xc2\xb3\xc5\xca\x31\x9e\xe8\x69\x02\x9e\x7a\x60\x14\x4d\xfd\x5b\x66\xb1\x38\xb2\x60\x1d\x18\x7d\xcf\xb1\x21\x58\xd2\xa0\x71\xa5\x8d\x28\x01\x64\x0e\x4e\xe9\x58\x07\xaa\xaa\xee\xf9\x0a\x6a\x9f\x1b\x0b\x03\x80\x77\x8c\x6c\x94\xa7\x95\x34\x2a\x21\x80\x5b\x80\xad\xeb\x81\x1e\x27\xc4\xc8\x68\x55\xeb\xdf\x17\x9f\x21\xbc\x25\x86\xb4\x5b\x83\x6e\xa8\xd9\xe5\xc4\x2e\x92\xf3\xe3\x9e\x43\xcd\x6c\xa6\x0b\x17\x1a\xbc\xf3\x9e\xa4\xa2\x1f\x03\xdb\x5b\x12\xcf\x08\x49\x5c\x43\xa3\x76\xc6\x04\x05\xb8\x1f\x4a\x29\x25\xd9\x72\x01\x6c\x7a\xb3\xe0\x8a\xcc\x52\xd3\x9c\x6d\x71\x4d\x66\x2b\x4e\xb6\xef\x81\x3a\xc7\x8a\x95\x38\xa0\xd3\xbe\x93\x2f\xf6\x64\xef\x1d\x7c\x2e\xbd\x6e\xdd\xfd\xe5\xed\x57\x3a\x7c\xe4\xfb\x31\x1b\x3c\x5b\xad\x0b\x72\x20\x46\x91\x67\x60\xaa\x4c\x4d\x73\x56\x98\xe6\x60\x38\x6d\xb7\xfd\xd3\xd8\x2a\x88\x97\xb8\xf7\x1a\xb5\x77\xee\x6d\x3e\xfd\xf0\xec\xe3\xc4\x34\x2b\xde\xbb\x7b\x9c\x91\xbd\x77\xf4\x9b\xc6\xe2\x3f\xe0\x9b\xb6\x23\x99\xb7\x97\x9c\xd7\xeb\x97\x3c\x69\xf0\x0e\x79\xee\xc8\xce\xa3\x3e\x18\x01\xe5\xe4\x8e\xe3\x40\xb0\xcc\xb9\xf3\x56\x3e\xae\x39\x47\x7c\xe7\x3d\xf5\xf1\x9e\x3f\xdd\x6b\xf6\x51\x5e\xee\x77\xd3\x31\x9f\x73\xc6\xd9\x34\xf9\xb4\x34\x8d\x55\x93\x9c\x2c\x51\xd3\x14\xf6\xa1\x38\x58\x60\xd6\x33\x9c\x09\xd3\x9c\xcf\x6b\xd3\xdc\x83\xd0\x79\xe2\xcd\x13\xef\x01\xe7\xb8\xf6\xd7\xc2\x21\x65\x60\xb0\xb3\x27\xc1\xff\x9d\xa1\x21\x5c\x0b\x9f\x96\x3f\x3e\x8e\xff\x70\xc5\xe5\x40\x61\x18\xff\x67\x43\x50\x93\x53\xfb\x08\x8b\xf9\x1a\x7a\xe0\xd4\x0b\xc2\x60\x18\x51\xd3\xd4\xff\x15\x11\x42\x96\xa6\x59\xdf\x44\xcf\xc8\xb2\x6d\x27\xe8\x6e\x7f\x96\x01\x9c\x30\x70\x6a\x15\x4c\x52\x64\x57\xac\x16\xcc\x50\xe5\xd1\x91\xb4\xa3\x71\x11\xc6\x31\x97\x47\xc8\x2c\xba\x12\x15\x08\x2e\xbf\xf3\x30\xf1\x8e\xbe\x0b\x02\x0b\x53\xe2\xdc\xca\xb5\x42\xe2\x51\x4c\xb1\x61\xe0\xc0\xc7\x7a\x5b\x23\xab\x76\x8b\x8e\xc5\x27\xfd\x78\x9d\xf6\xbe\x2a\x31\x01\xb9\xea\xc2\xa1\x7a\x44\x5e\x73\x1a\xe5\x25\xc0\xf1\x44\x3e\x99\x59\x21\xff\x81\x2f\x2d\x9a\xa2\xaa\xbc\xba\x25\x0e\x79\x2a\xe3\xac\xa1\x98\x1b\xe7\x94\x17\xb5\x93\x0e\x75\x8e\x82\x86\x7a\x3e\x96\xde\xf2\xdb\x73\x93\x9f\xfe\x48\x87\x4f\xc7\x70\x0c\x1c\xb3\x75\x66\x7b\x09\x89\x94\x96\x80\x61\xcf\xe7\x68\x94\x9e\x1b\x42\x59\x31\x49\xbc\xad\x2f\xf8\x94\x2d\x1f\x4e\xc0\x7f\x62\x34\x1c\x0c\x66\x38\xee\xc9\x31\x30\x34\x38\xe2\x22\x36\xaf\x1e\x3c\x6f\xe0\x23\xbc\xce\x42\x01\xd7\x6d\x8b\xf0\x96\x56\xe3\x31\x5e\xb4\xdb\x90\xa6\x87\x9a\xac\xde\x22\xac\x44\xf5\x0b\xb5\xd0\x31\x1f\x84\xcf\xeb\xb5\x02\x5d\xca\x01\xb3\x8d\x3c\x67\x25\x17\xb8\x9a\x06\xe4\xdc\x8e\xde\x51\x4e\xef\x78\xb3\x19\xcd\x93\x0b\x4d\xfe\x24\xd9\x47\xe0\x13\x2e\xc1\x2f\x94\x07\xe8\xc5\x67\x5d\x1c\x91\x88\x33\x83\x99\x75\x54\x5c\x81\x6d\xcf\xc1\x0d\x6c\xa8\x68\x6c\x0b\xf7\xb8\xcf\x1c\x9e\xc0\xdb\x1f\xa7\x89\xef\x9d\x7f\x05\x09\x47\xcd\x85\xc2\x76\x65\x09\x27\x86\xdd\xb8\x81\x6e\x4b\xb0\x18\x6b\x53\xc7\xe6\x4b\xa8\xd7\xa6\xb6\x08\xd7\xb4\x1c\x38\xf5\xeb\x26\xa8\x45\x48\x85\x6e\xb7\x7f\xe6\xbb\x72\x3b\x38\xbb\x15\x74\x7e\x25\xfc\x13\xd3\xa8\xc5\x65\x51\x4c\x06\x09\xa0\x84\x90\xa2\xc5\xe0\x08\x72\x29\x3d\xb7\x69\xc8\x45\x3f\xa9\xc2\x36\x4d\x6b\x06\x4d\xbe\x02\xef\x91\xa6\x7f\xb6\x38\xbb\x39\x9b\x71\xac\x00\x3a\x6b\x6a\x6f\x4b\x16\x37\xcd\xbf\xa9\x5d\xd3\x00\x2c\xb1\xc0\x47\x1d\x8e\x32\x9c\x82\x5a\xb3\x15\xc2\xea\x68\x03\xde\x97\x08\xcb\x63\xaf\x49\xee\xfc\x0f\xda\x54\x05\xbc\x17\xd4\x56\x8e\x2f\x8d\x21\xce\xa9\xb4\x24\x75\xf4\xd7\x62\xf5\x34\xcd\xba\xeb\x26\x71\xfa\x5b\x57\x01\x0c\x0a\xf7\x15\x4a\x8b\x67\xb6\x3f\xd4\x1f\x06\x55\xfe\x21\x3d\x40\x1a\x5b\xbd\x42\xe2\xf6\xcf\x53\xde\xb7\xa2\x0f\x13\xbd\x9d\x75\x14\xc2\x86\xd6\xe1\x28\x78\xcb\x68\xc4\xca\xa9\xb1\xfd\x2a\x77\x5c\x37\xa7\xa8\xc5\x30\x81\x53\x99\x7f\x99\xc8\x2c\x6c\xca\xfe\x87\xcb\xa4\x59\xa6\x29\xa0\xd1\x3e\x05\x2d\x06\x87\x86\x73\x0f\xe5\x71\x55\x97\xda\x34\x4d\x83\xd7\xd0\xd7\x6f\x9a\x96\x10\x20\xac\x80\x8c\x65\x15\x60\x86\x11\x97\x55\x54\x99\xb1\x76\x50\xc5\x81\x38\x68\x48\x4c\x4d\x92\xb7\xf4\x01\xc7\x8d\x92\x35\x25\xa8\x17\x2c\x56\x3c\x0f\xbb\x1f\xe7\xe8\x85\x20\x2f\xbc\x5d\xba\xe1\x3c\x70\x42\xc8\xf9\x9e\xe5\xe7\xb5\x69\x1e\x61\xeb\xf0\x36\x58\x87\x73\xf2\x14\xd1\xb1\x75\x02\x6d\x11\x2e\xa2\xe8\x63\xc5\x57\xbf\x53\x3c\x3b\x1b\xca\xc0\xcf\x95\x74\x7d\x5d\x2f\x16\x9c\x89\x59\xab\x6a\xa2\x41\x35\xc9\x1f\xae\x66\x3e\x8f\x6e\x83\xe9\x5a\xc0\x34\x47\x01\x78\x5e\x6f\x89\x06\xee\xf7\x9d\xc7\xfa\xa9\xa4\x51\x5a\x38\xb3\xa5\x40\x23\x41\xf1\xc8\x9f\xe3\x34\x63\xfc\xf7\x40\xab\xea\xa1\x28\x23\xfe\x9c\xee\x69\xc2\x3f\xb6\xa8\xe7\xac\x02\x9f\xec\xa9\x15\xa0\xbe\xba\xea\x18\xec\xd3\x9a\xe7\x2f\x59\xc5\xea\xf3\xfc\xb9\xc8\xaf\x4c\xfe\x4a\x6a\xa1\x53\x5b\x52\x2d\xcc\x8b\x32\xed\xa9\xfa\x1e\x0f\x58\x2a\x90\xe3\x4b\x8a\x13\x2e\xed\xd6\xc5\x8e\xe5\xe9\x6f\x8c\x4c\x32\x81\xba\x7b\x23\xf9\x4d\x29\x05\xd2\xd8\xda\x75\x76\x21\xee\xd2\xd9\x75\x7a\xd6\xf5\x96\x50\x9c\x72\xae\xe7\x8e\x37\xae\xd4\x67\x8a\x53\x41\xa7\xd0\x34\x67\x16\x23\x7f\x17\x56\xfd\x5b\x08\x36\xc0\xb7\xc8\x96\x6c\x65\x25\xcc\x5b\xfa\x4a\xd2\x6d\x9a\x2d\xc2\xa9\xd4\xc8\x12\xcf\x47\x9c\xf0\xcd\x56\xd8\x62\xe4\xc7\xae\x06\xf0\xe4\x65\xca\xcc\x19\xc7\x22\xfb\x49\x68\xb9\x43\x11\x3c\x00\x2a\xd5\x58\xb0\x2b\x30\x54\xe8\x1b\xed\x64\x6b\xb1\x12\xc9\x55\x9a\x5f\xa9\x69\x44\xbc\xc3\x3f\x7b\x89\xaf\xf5\xf9\xce\x4b\x7c\x31\x12\xfe\x64\x31\x19\x34\xe1\x77\x7a\x91\x60\x79\x04\xe3\xb0\x4b\xad\xa7\xb1\x35\x0b\xa5\xdf\x7d\x37\xc3\x5b\x99\xee\x6c\xdd\x5e\x77\x86\x9c\xdf\x2c\x8a\x53\xd4\xcd\xbd\x16\x00\xa9\xa2\x8a\x00\x08\x04\xb9\xc4\x03\x5f\x12\xc3\x58\x07\xb7\xe1\x3a\x98\xcf\x51\x34\x07\x27\x68\x71\x26\xd0\x9b\x19\x75\x35\xd5\x74\xe8\xa7\x14\xd8\x51\x5a\x62\xc6\xf9\x08\xf6\x58\x73\x2e\xbb\x69\x22\x9c\x90\xd0\x34\x75\xe5\x2b\x21\x24\xc6\x5b\xf2\xd8\x1f\x9e\x05\x82\x0e\xb9\x03\xf9\x9d\xf5\xba\xf8\xc0\x8b\x7c\x25\x0a\x06\xda\x29\x74\xd2\x69\xa3\x65\x89\x8f\xaa\x00\xb8\x2c\xb4\x05\x00\x4d\xcf\xab\x9e\xa8\xdb\x34\xa9\xac\xa5\x3b\x64\x1e\xaa\xba\x2f\x77\x0b\x8e\x21\x02\x21\xb3\x05\xba\xcc\x16\x8c\x64\xb6\x60\x24\xb3\x31\xd3\x64\xe4\x23\x6e\x13\xa2\xd1\xa6\x09\xd6\xca\x9f\xc4\xe2\x92\x6a\xcc\xb9\xfb\xa1\x94\x4a\x08\xd9\xaa\xe9\xd9\x7b\x4f\x7d\xc2\x65\x71\xd8\x9d\x5e\xec\x93\x3d\x86\x6f\xe7\x03\xd4\x6c\x98\x8f\x03\x83\xe1\x5e\x1e\x1b\x4c\x71\xa7\x1c\xa3\xe7\x86\xf5\x10\xb3\xcc\x63\xbe\xcc\x38\xc1\x3f\x38\x94\xd3\xa9\xae\xc5\xf7\xf4\x1c\x1d\x2f\x01\xa0\xba\x90\x08\x0c\x42\x22\x08\x31\xc2\x8b\x7c\x1c\x6a\x47\x0c\xbd\x9b\x38\xd5\xb5\x51\xaa\x2e\x2e\x2f\x79\x3e\xde\x92\x25\x4e\x7b\x88\xbf\x23\x22\xa0\x40\xd0\x45\xde\xb1\x62\x42\xa5\xbc\xc4\x31\x52\x68\xc5\x50\x4f\xd3\x58\x89\x3a\xff\xc1\x77\x60\x33\xc1\x5f\xb6\x48\x0f\x6d\xd3\x75\xe1\x51\xeb\x82\x26\x57\x45\xa6\x39\xe3\x52\x9d\x69\x5a\x11\x79\xa4\x56\x84\x60\xcd\x67\x4c\x7c\x63\xfc\x1b\xcf\x8f\x06\x96\xe1\x12\xd1\x8e\xa0\xd9\xc7\x39\xff\x53\x90\x44\x8d\xe5\x40\xe2\xa6\x79\x4f\xad\xa0\x69\x8c\x6b\x03\x6f\x7b\xcb\x0f\x6f\xeb\x3b\x5b\x10\x11\xef\xc9\x8c\x36\xcd\x2c\x36\xcd\xc0\x3d\x38\x0f\xd4\x3a\xe0\x3d\xa6\x50\x3d\x2e\x49\xe8\xb2\xa6\xb1\x62\x97\x3a\x45\xd3\x44\xc8\xf5\x7c\x27\x71\xee\xc1\x45\xc1\x34\x43\xeb\x1e\x97\x22\x67\x84\x4e\x77\xe4\x81\x5a\x25\xce\x11\x8e\xac\x3b\xcc\x27\x96\x27\xec\xc8\xdd\x10\x10\x76\x5c\x02\xcd\xc8\x9d\xb7\x83\x19\x2d\xbd\xdc\xdb\xf9\x5c\x08\xbd\x97\x4f\x19\x42\x6d\x77\xd8\xc5\xd9\x74\xf1\xc0\x1b\xf0\x7c\xbc\xeb\xac\x66\x86\xf5\x95\xa2\xbe\x3b\xb1\x08\xf7\xde\x8e\x57\xb4\x66\xc0\x4e\x09\x93\xc3\x3b\x9c\xa2\xf6\x77\x8a\x5b\x77\x84\xb9\xaf\xad\x18\x67\xc8\xd9\xf3\x4f\xcf\x16\x2b\xd3\xb4\x62\xef\x8e\xf7\x30\xe1\x3f\xbc\x7b\x62\xdb\x97\x30\x60\x42\x48\xe2\x96\xea\xcc\xaf\xc0\xaa\x7e\xe4\x94\x08\x33\x57\xf6\x20\xc1\x25\x4e\x91\xa3\x9c\x85\x12\x5c\x0e\x6c\xf1\x3f\x0c\x71\x30\x06\x6a\xda\xc3\x64\x42\x22\x5b\x9d\x70\x79\x70\xac\xc0\x49\x04\x07\xdd\xa4\x69\xb4\x24\x4e\x70\x71\x4a\x12\x77\xe5\x2c\xf1\xee\x92\xff\xa3\x60\x5d\xb7\x98\x8b\x33\xd9\x85\x4c\xaf\xad\x00\x0b\xc9\x58\x66\xdc\x13\x4f\xd7\x9c\xf4\xfb\x7c\x96\x70\xd8\x6d\x9a\x70\x46\xc8\x1d\xdf\x14\x56\x40\x42\xd4\x43\xda\x4e\x66\x77\x32\xf9\xd0\x87\x62\x13\xba\x03\xd6\xfa\xeb\xf4\x36\x5e\xa7\x22\x5c\x40\x38\x1c\x6b\x2a\xc7\x8a\xf6\xc4\xab\xa9\x75\xa4\xd6\x1e\xe1\x10\xf9\x1d\xbe\x0b\x3b\x16\x46\xcb\x2d\xa7\x59\x1c\xb8\xf2\xaf\x92\x96\x22\x1c\x7a\x47\x5f\xcc\x34\x23\xf3\x79\xba\x66\xb7\xf1\x9a\x89\x96\x07\xed\x32\xd5\xee\x40\x45\xf6\x48\xad\xf4\xd9\xca\x34\x45\x37\xe0\x91\x93\xcf\x4e\xa1\x9d\x2e\x56\x48\xc5\xf1\x90\xe4\xdc\xb8\x12\x67\x5a\xe9\xe2\xa9\xa8\xd2\x35\xae\x0d\xc7\x30\x5a\x2d\x94\x95\x72\xed\x0a\x71\x7a\xcb\x4c\xf3\x43\x5f\x65\x8a\x19\xc7\x08\xb7\xb1\xf8\xda\xe9\xc8\xbb\xaf\x40\xbd\x51\xbb\x57\x0c\xb2\x62\x04\xa0\x87\x3d\x80\xfd\x36\xf4\x5a\xea\xf4\x2d\x5a\x7c\x99\x67\x4b\x1c\x93\x31\x8a\xc1\x3b\x51\x26\xc3\x05\xbe\xc7\x25\x59\xe2\x8a\x18\x4b\x03\xd7\x24\x36\x4d\xcf\xc7\x47\xbe\xb3\xde\x93\x3b\xfc\xc8\x51\x0d\x98\x21\x2b\x4b\x6c\x8b\xa3\x9c\x1d\xc2\x1f\xc8\xc3\x9c\x08\xa9\xe6\xbd\xbb\x72\x06\xd1\xbc\x9a\xc6\x5e\xe1\xdf\xc8\x63\x17\x12\xa6\x28\xad\x9d\x08\xa8\x26\x0c\x93\x92\xa6\xd9\xa1\x75\x35\x23\xe4\x37\xd3\x94\xf1\xcf\x32\xf2\xe8\x55\x3e\x5a\x57\xf3\xb9\x40\x0d\xa6\x99\xa1\x53\x41\x96\x38\x69\x9a\xec\xcc\x92\x29\x6f\x1a\x6b\x6f\x65\x9c\x87\x9a\x1d\x94\xc2\xe3\x9e\x50\xaf\x98\xcf\x81\x5c\xdf\x5b\x19\x2f\x99\xe3\x2d\x42\x27\xc9\x40\x66\x48\xaa\x8f\x79\x6f\x1e\xc8\x07\xd4\x86\xa6\x69\x59\x19\x99\xdd\xf3\xd6\x4c\xb3\x5c\x2c\x70\x6c\x9a\xb5\xca\x0e\x38\xab\x9c\x93\x0a\x87\xa6\xc9\xfb\x5b\x42\x97\xba\xe6\x02\xd1\xdc\xbd\x55\xe3\x23\x9f\x5a\xd4\x1f\xe8\x97\xcf\x96\x52\x6d\x5c\x2d\x16\xa8\xf6\x2a\xbf\x69\x8e\xf0\xd7\xe2\x3f\xe4\x2b\x61\x18\x92\x22\xb4\x3e\x72\x94\x73\x44\xad\xc2\x23\x29\x3e\x22\xbc\x33\x4d\x8e\xbe\x8f\xdd\x3a\x9a\x66\xd9\x05\x11\xe2\x20\x3a\xb0\x98\xb0\xd2\xde\x22\x41\x8c\x0d\xdf\x91\xf7\x08\xd7\x6d\xef\x6e\xc0\x69\x0d\x72\x62\x95\x6f\x4b\x12\x61\xa3\x96\x66\xd3\xac\xbf\x34\xb9\x80\xb0\x42\xcf\x35\xc6\x7f\x16\xa3\x93\x38\x0d\x4c\xc0\x75\xb5\x87\x3c\x65\x5e\xb5\x58\xa0\x98\x7c\xa0\x56\xe0\x85\x3e\xc2\xb1\x77\xf4\xdd\xce\xa8\xc2\x61\xea\x69\x1d\x93\xe7\x16\xc5\xbf\x71\x5a\xc8\x29\x64\xdc\xd9\x0d\x10\xaa\x59\xb9\xa7\xbd\x45\xc1\xd0\x73\x1e\x28\x2e\xef\xaa\x16\x7a\x85\x4c\xc5\xfb\x32\x4d\x8a\x0b\xc2\x67\x33\xb1\x28\xc9\xbb\x66\x38\x15\x12\x36\x65\x0c\x8e\x00\x38\x87\xa7\x5c\x4c\x61\x0d\xef\x48\xc1\xb9\xad\x42\x3b\xf2\x45\x58\x51\xbe\x67\x4f\x4d\xd3\x78\xfd\x92\xe3\x01\x6b\x07\x87\x07\x48\x4a\xfb\x9d\x27\x89\xf0\x47\xd2\xfd\x05\x0f\x7c\x2f\x75\x08\xe9\x0e\x8e\xea\x01\x21\x81\x11\x24\xe9\x3d\x4f\xac\x9d\xc2\x6e\xba\xdc\x22\x34\xa3\x01\xe2\xdd\x45\xde\xd2\xc7\xb3\xce\x26\x8f\xad\x73\x38\xca\x1e\x68\xfc\x70\x8f\x5b\xee\x94\x60\x22\x18\x7d\x35\xcc\x36\x25\x3f\xdb\x7a\x24\x07\xe5\x27\xeb\x2e\x9d\x11\x8d\x4f\x17\x0b\xe8\x26\x1f\x6c\xea\x63\x6d\x1c\x19\xd9\x0d\xf0\x2a\x67\x58\xf7\x44\x8c\xc5\xcb\x80\x04\xc7\x64\xff\xb1\x21\x49\xf7\xdc\x3b\x45\x05\xa7\xdd\x74\xa5\x3f\xf2\x9d\xa2\xcb\x29\x5e\xf1\x21\xc6\x9d\xc5\x6d\x45\xad\x3b\x84\x67\x74\xec\x0c\xcd\x41\x05\x33\x75\x76\x24\x81\xcb\xca\x9b\x66\x6b\x51\x5c\x20\x64\xc5\x60\x7f\x85\x19\x9e\x05\x4d\xf3\x71\x5f\x61\x84\x59\x8b\x75\x2b\x23\x72\x54\xce\xa7\x06\x52\x36\x46\xd2\xdc\x17\xdc\x6f\x8e\xf8\xdc\x52\x89\xcc\x66\x19\xde\x5b\x08\x0f\x2d\x40\x2f\xf8\x39\xad\x3e\x62\x50\xfb\x11\x4f\xdc\x09\x4b\xfc\x8e\xcf\x9f\x32\xc8\xff\x93\xb0\xbe\x37\xb0\xf1\x27\xa1\xbc\xea\xf5\x86\x23\xad\x15\xcf\xcf\xe5\xe7\xa6\xd9\x51\xa1\xc3\x6a\x40\xeb\xba\x65\x69\xb2\xad\x9b\x87\x34\xaa\xb7\x06\x1e\x6b\x5f\x84\x64\x3b\xed\xab\x14\x60\xa3\x3b\x17\x1e\x4a\x43\xee\xca\x79\x2a\x9c\xd7\x7a\xfb\xb7\x33\x1b\xef\xc9\x71\x81\xa6\xee\x06\xdc\x3b\xb4\x91\x0c\x8d\xfb\x61\x33\x18\x10\x70\xd2\xf8\x9d\x41\x8b\xac\xdd\xa8\x65\xc9\xc9\x41\x9a\xe6\xef\xab\x09\xfb\x89\x50\x5e\x86\x60\x66\x75\x69\xc9\x64\xb8\xbc\x51\x9f\x7a\x1b\x7d\xd9\xad\xbf\x9e\x75\x08\x04\xac\xf5\x70\xee\xbd\xc0\x07\xa5\xb1\x3b\x9a\x6b\x07\x22\xb9\x4d\x5b\x10\x46\x9a\x05\x61\xa4\x5b\x10\x22\x9c\xd0\x16\x1c\xdb\x60\xc3\x93\x47\x88\xfc\x79\x28\xc9\x63\x6f\x08\x26\x3f\x79\x86\x63\x88\x48\xa2\x87\xb2\x53\x4c\x95\xba\xe5\x9f\x7a\x21\x8f\xda\x57\x5c\x8a\x00\xcd\x8f\xca\xbe\x0e\x02\xb5\xfd\xfa\xed\x37\x2f\x8b\x90\x3c\x8a\x47\x5c\xf6\xd6\xa0\x8f\xdd\x23\x6f\x17\x8c\x1b\x3b\x63\xda\x47\xf9\x01\x4c\x38\x3f\x5c\x88\xc5\x02\x84\xaf\xb3\xbe\x0c\xd5\x79\x0a\x05\x4d\x09\x12\xd1\x2e\x7a\xa5\xb9\xd2\x0e\x68\x5f\x24\x07\x53\x82\x2f\x53\x65\x85\xea\x50\x56\x92\x41\xda\x51\xeb\xa8\xc5\xbf\x5d\x0c\xbe\xe5\xf9\x13\xfa\xfa\xb1\x4b\x3a\x9d\x81\x56\x3b\x54\x35\x6b\xc6\x78\xcf\xd5\x54\x03\xde\x1d\xa0\x79\xfc\x25\xb9\x79\x77\x2b\x22\x4a\x7b\xef\x36\x37\x9b\xe5\x33\x07\x62\x66\xd5\x9b\x72\x93\x6f\x62\xff\x1a\x79\xc3\xf7\xcd\x8d\xfb\xcc\x72\x9d\xdb\xcd\xcd\x66\xf5\xac\x81\xc0\x3a\x2f\xc8\xcd\x3b\xdb\x7b\xe7\xfc\x69\xe3\x6d\x6c\xec\x5f\x3f\xb9\xe9\x15\x50\x2f\xb5\x0d\x31\x08\xab\x17\x74\x90\x5f\xda\x49\xc9\x0e\x03\x4b\x21\x2e\x81\x74\xfe\xc2\xca\xc0\x38\xc2\x60\x7b\x1b\xb6\x40\xad\x83\x33\xb3\xe1\x89\x7a\x86\x72\x51\x5f\xf8\x3c\x0a\x20\x74\xf0\x45\x67\xe0\xdc\x55\x29\xa4\x0f\x19\xdd\x71\x1d\x10\xfd\x4b\xb7\x7a\x1f\x6b\xb9\x0f\x0f\xc9\x25\x2e\x11\x90\x6e\xb8\x76\x2d\x6a\x55\xad\x17\xe0\x30\xf0\x96\xbe\x76\xc6\x66\x51\x62\x38\x79\x51\x5b\x60\x71\x85\x0c\x84\x85\x52\x4a\x91\x3f\x30\xa4\xe9\x85\x34\xb1\x1f\xc7\x46\xdf\x60\xd8\xe4\x7a\x91\xef\x78\xbe\x33\xcc\x62\x51\x2c\x47\x14\x4c\x8d\x68\xdc\x7b\xd4\x62\x2d\x26\xb3\x75\x02\xb3\xcd\x09\x0b\x3e\x1c\x0d\xa2\x4d\x33\x78\xd3\x57\xa3\xb7\xec\x52\xf3\x3f\x0e\xbe\xcd\xf7\x91\x9c\x7f\xed\x10\x04\x54\xe6\x64\xb9\x0e\x6e\x23\x50\x65\x02\xa8\x75\x5e\x2a\xcc\x0b\x7c\x0c\x11\xc6\x7b\xc5\x97\xd4\xee\x86\x64\xd4\x80\xe7\x23\xac\xd7\x24\xe6\xc5\xa2\x18\x2a\xd1\xdc\x2f\x9f\xad\x5c\x1d\x5f\x59\x21\x72\xc2\xce\xc2\x6f\x62\xce\x46\xed\xbc\x94\x61\xbe\x81\xdf\x9c\xad\x10\x04\x84\x9d\x3c\xfe\xfa\x68\xc1\xa5\x88\xa8\x3b\x75\x22\x37\x93\x39\xcf\x6d\xec\x4c\xf3\x79\xc7\xdc\x81\xf6\xb8\xeb\x85\x72\x82\x6e\x85\x61\xfb\x57\xf8\x95\x88\x85\xb5\xa9\xae\xad\x5b\x6f\xf3\xb0\xf9\xc5\x9f\x3f\x43\xde\xbb\x67\xfe\x75\xf3\x27\x3d\x1c\xd6\x5f\x48\x17\xd8\x7e\x12\x82\x19\x8e\x81\xf2\x0c\xd6\x15\xf4\x4c\x24\x6c\x9a\xaf\x26\x3a\x29\x30\x27\x31\x6e\x85\x7c\xbd\xf4\x4d\xd3\x78\x26\x9e\xfb\x98\x51\x7e\x1f\x05\xf2\x19\xf9\xd4\xf5\x84\x46\x00\x6c\x18\x7c\xe7\x95\x0a\x17\x84\xc1\xd1\x84\x79\x3c\xbb\x62\x93\x39\x7b\x17\xd8\x22\x08\xbe\x6b\x05\x4d\x13\x22\xb9\xd2\xc8\x39\x0b\x50\x1e\x74\x69\x20\x25\xa8\xb0\x43\x01\x09\xae\xd2\xbc\xaa\x69\x1e\xf2\x2e\x97\x2e\xdf\xa5\x4e\x80\xf5\x48\xf5\xb8\xb4\x21\x56\x33\xe7\x44\xa0\x24\x0e\x94\x71\x19\x6c\xcd\x89\x60\x48\x11\x2c\x2b\xfe\x52\xac\x11\xb4\x76\x1e\x91\x3b\x10\xf1\x56\xd9\x55\x9a\x5f\x05\x68\x80\x57\x21\x28\x3b\xf3\x91\x2b\x1f\xac\x80\xbf\x89\x51\x81\x41\x23\xc3\xf0\x45\x0f\xef\xde\x89\x59\x24\x1a\x3b\xaa\x33\xef\x29\x97\xdd\x4c\x53\x54\xbc\xf4\x49\x8c\xb5\x5d\x4c\x56\x08\xeb\x35\x68\xfe\x67\x5d\x01\x3a\x2c\x20\xf6\xa2\x33\x8a\xb1\xea\xf6\x64\xd6\x2e\x19\x8d\x3e\xb8\xf2\x17\x20\xd4\x2a\x79\x81\x2e\x12\xb0\x25\xaa\x44\xed\xfa\x2f\xda\x69\x17\x87\x41\xfc\x15\x29\xad\x48\xc0\xef\xd7\x02\x7a\x05\xdb\x5e\x35\x87\x92\xbd\xb7\x5c\xe7\xa7\xbc\x4e\xb3\x06\x1c\x90\x6f\xf0\x6b\x72\x02\x4b\xb5\x92\xe5\x70\x70\x27\x4c\x4a\x2a\xfe\x0c\x61\xc2\x66\x4b\xcc\x8b\x39\xb3\xa5\xb8\x44\xa1\xc3\x71\x5b\x5a\x4d\x85\xf3\x56\x1d\xd3\x85\x61\x7d\x23\x4f\xe3\x2e\x11\xdf\x67\xb9\xa6\xb7\xe1\x9a\x9e\xe1\x2f\x71\x8f\x81\x47\x7d\x1d\x7f\xb5\x38\xcc\x8a\x8a\xe9\x41\xff\x87\xd1\x9e\x25\x7a\x55\xc8\x36\xe6\xbc\x4c\x42\xce\x31\xad\x60\x4e\x60\x77\x76\x68\x01\x60\xab\x53\xbf\xf7\x88\xd2\x8b\xfc\x75\x68\x9a\x21\xe7\x34\xd6\x23\xe7\x29\x08\x23\xd5\x99\x0f\xac\x56\xa6\x69\x25\x6e\x22\x0c\x52\xa4\xd9\xe9\xd8\xa9\xfd\x02\x5d\x82\x10\xcc\xe8\x14\x77\xa7\xc2\x83\x33\xb0\xb3\x5b\x13\xba\x93\x8a\x01\x3e\x8e\x91\x13\x83\x55\x41\xc4\x1e\x27\xcd\x2b\xdc\x89\x50\xd0\x92\x54\x97\xe0\x16\x24\x80\x17\xa9\xf0\xce\x02\xed\x2a\x94\xc1\x31\x92\x23\x71\x05\x20\x27\xf9\xa0\xcd\x88\x2b\x17\xbc\xac\xb8\xb0\xcd\xa1\xe8\x79\x96\x59\x0a\xc7\x3a\x8b\x55\x8b\x69\x14\x4d\x87\xff\x3e\xbb\x73\x42\x1b\xd9\xe0\x22\x8c\x84\xd5\x16\xc2\x25\x14\x86\x50\xc2\x34\x8a\xbe\x1c\x5f\xa0\xa1\x57\x4a\xa3\xc8\x52\x11\xb7\x47\x57\x33\x38\xa3\x77\x05\xac\x14\xa1\x56\x0f\xcb\xfb\x57\xd1\xd5\x31\x2f\xbc\x1a\xf2\xc2\xfd\xf1\xb9\x0c\x2e\x7c\x9a\xb0\x1e\x51\x46\x1b\xe7\xfe\xa8\x81\xf4\x12\xd3\x71\xa5\x74\x54\x92\xfb\x79\x6a\x88\x1c\x31\xe8\x87\x8f\xa8\xcb\x0d\xbb\xfe\x92\xf1\xf7\xb8\x18\xc4\xf1\xce\xc7\xd6\x1f\x32\x33\x1f\xfe\xc0\x06\x17\xb5\x02\x47\x5c\xca\x3b\x36\x38\x96\x75\x3f\xcf\xb2\x8b\x43\x98\xa8\xfe\x63\xd9\x2f\xb4\xf0\xfb\x63\xd6\xdb\x81\x41\xf3\x9a\xfe\xc0\x54\x8d\x4d\xa8\x79\xd1\x4a\xbc\x4c\xae\xcb\x6f\x96\xa5\x2f\x72\xd3\x9c\x5a\xa4\x09\xd8\x70\xfd\x4a\x87\x87\x27\xcb\xeb\xf2\x38\xcf\xac\x10\xf5\xa4\xf0\x2f\x53\x7b\xaa\xaa\xf6\x8c\xe7\x63\xaa\x87\x72\x6c\xdb\x51\x84\x6a\x08\x99\x4d\xfd\x9e\x89\xd1\xce\x42\xb4\x9b\x5f\x82\x9e\x15\x34\x60\xba\x06\x16\xee\x9f\x23\x38\xf0\x0b\x11\x8e\x4c\xf3\x0c\xcd\x44\x70\xf2\xd7\x89\x11\x11\x9c\x01\x68\xa8\xfa\x19\x47\x9d\xaf\xc1\xd2\x76\xb0\xef\x19\xc2\x5f\xf7\x0a\x29\x66\x97\xec\x3d\x2b\x41\x81\x80\x47\xe8\x82\x21\xc5\xc1\xfd\x8d\xdc\x6c\xde\xcc\x6f\x92\x7e\xf3\x7e\xd3\x6f\xbb\x53\xa7\x13\x96\x3b\x54\x7a\x9c\x5a\x7f\x03\xbd\x22\x1e\xda\xd2\x06\x5e\xe8\x13\x4e\x79\x70\xd0\x96\xf6\x0b\x9a\x65\x01\x0d\x77\xd5\xc0\xc3\x8d\x92\x09\xa4\xca\x5b\x74\xfa\x3b\x40\x5a\x2c\xdd\x26\xbb\xe3\x52\x41\x99\xe0\xac\x76\xb1\xc2\x29\x19\x11\x47\x46\xa8\x5d\xe4\x21\xc3\x11\x09\xc8\x6c\xb9\x56\xe7\x9f\x6b\x9e\x1d\x9d\x42\x92\x28\x8d\xa6\x14\xcf\xe7\xf3\xed\xad\x22\x0b\x28\xf6\xb6\xea\xbc\x28\xf4\x96\x3e\x0e\x39\x3f\x25\x23\x80\x51\xbb\xaa\x8b\xc3\xf7\xf9\x2b\x9a\x55\xc2\xf2\x24\xee\x63\x8a\xcf\x56\xa8\xa5\xf6\x9e\xed\x8b\xf2\x03\x58\x74\xcc\x56\x5c\x34\x98\xad\x30\x03\x35\x66\xe8\x7a\xbe\x03\xf7\x13\xdc\x91\xd3\x00\x91\xf7\x16\xb1\xf2\x4c\x39\x18\xd4\xbd\x58\xe1\x44\x91\xb6\xde\x58\xf4\x2a\x02\xfb\x56\xb1\x10\xc1\xf8\x6a\x21\x9d\x55\x0a\x91\xab\x34\xfe\xa6\x09\x97\x63\x59\x21\x6a\x9a\x8e\x5c\x3a\x60\x84\xa9\x44\xc1\x9e\xe0\xab\x28\xe9\x21\x32\x4d\xb8\xb4\x0a\xb5\x5a\x18\x7a\x2c\x3b\x9a\x2a\x78\x6a\xb1\x88\xbc\x37\x31\x2e\x05\x2e\x5d\x10\xfc\x09\x16\x44\xa9\x4a\x42\x52\xda\xf2\x2a\x05\x3e\x2c\x1c\x22\xce\x0a\xa0\x58\xa9\x6e\x43\xbc\x42\x38\xbc\x25\x5b\xd3\xdc\x2e\x16\xad\x6a\x7b\xcc\x5e\x75\x54\xbb\xaf\x8d\xe2\x18\xb8\x8a\x58\x73\x05\x1e\x99\x3e\x0e\x56\x02\xac\x86\x64\xf5\x52\x5d\x36\x91\x93\x91\x44\x9c\x74\x80\x9f\xe6\x20\xf7\xc4\x12\xcf\xe2\x16\x67\x85\x4e\x6e\xc7\x15\x85\x4d\x13\x34\x8d\x25\xea\x53\xcd\xf3\x22\x93\xd5\xcd\x18\x58\xf9\xb1\x5f\xd2\x7a\x70\x8d\x47\x8f\x7f\x19\xc0\x62\x08\x1b\x14\x2c\xe5\xa5\xbd\xad\xab\xec\x6e\x91\x13\xfa\x3d\x80\xe1\xa0\x69\xb4\x25\xe5\x75\x4f\xf4\xf5\xce\x56\x8d\x8e\x6f\x9f\xd2\xca\x4d\xf6\x37\x6a\x3b\x24\x72\xa7\x59\x1d\x7d\xab\xaf\x59\x7f\x4e\xf9\x5d\xef\x1f\xac\x7d\xfd\x7e\xa8\xa1\xac\xcb\x0f\x27\x2a\x24\x9e\x0e\xe6\x23\x02\x56\x6d\xfb\xb4\x62\xc8\x8d\xd4\x9d\x2d\x76\x54\xe4\x0c\xa4\x33\x9a\x66\x1c\xf2\xa7\x8a\xd5\x5b\x96\xf7\x65\xa0\x21\x47\x6a\x94\x84\xc4\xc1\x89\x8f\x70\x37\x87\x18\x21\xa3\x94\xb6\xc7\x5c\x2f\x59\xcc\xca\xc1\x3c\x74\x47\xae\x9e\x67\xe4\x45\x9d\xc6\x1f\x0c\x4e\x1c\x8b\xa4\x64\x55\x65\x60\x0d\x4d\x5a\x86\xc0\x24\x10\x4e\x64\xea\xeb\x53\x1f\x7b\x46\xc9\xaa\x22\x7b\xcf\x0c\x6c\xf0\x91\x8d\x2a\xe0\x38\xf0\x6a\xba\x96\x61\xd2\x12\xab\x8a\x22\x43\xd4\x0a\xf1\x59\xb1\xc1\xa7\xe9\xff\xb4\xd2\x15\x96\xf5\xf0\x4a\x7d\x1c\x11\xe3\xc0\xf2\x08\x88\x3f\x23\xa7\xaa\xa6\xf5\x14\x60\x45\x2d\xa6\xd9\x03\xfd\x50\x4d\xde\x23\x07\xcb\xd7\xc3\x9a\x58\xc6\x33\xd8\x33\x60\x71\x8c\x49\x47\x0c\x58\x5d\x69\x08\xc0\xb9\x97\xf4\x30\xe8\x85\x90\xab\xba\x1a\x7b\x72\xa7\x96\x72\x18\xa9\x51\xa0\xb5\x10\x4f\x13\x7f\x5d\x5a\xf5\x22\xef\x33\x9f\x33\xbd\xf2\x69\x1d\x7b\x91\xb7\xf2\x7d\xeb\xac\x71\x06\xd1\xfd\xa6\x2e\x76\x5b\x8f\xa1\x55\x03\xf1\xee\x11\x24\x07\x01\x4f\xa0\xf0\xe4\x30\xa6\xe0\xde\x96\xab\x2c\x27\x8e\xbf\xc3\x15\x88\x4e\xe0\x45\xde\xd2\x9f\x1b\x7c\x43\x1b\xbe\x68\x97\x89\x7b\x6e\xba\xd6\x5b\xd4\x22\x4c\x45\x30\x55\xd4\xb7\xd6\x62\x3e\xa3\xba\x5d\x9d\xe6\xe2\xb7\xec\x37\x78\x62\x75\x06\x57\x63\xf7\x0f\x91\x7b\x2b\x2e\x39\xd3\x6e\x5b\xc3\x77\xe7\xb7\xb5\xdd\x81\xdc\x69\x05\xb7\x31\x92\xd1\x45\x22\x39\x59\x60\x5e\x44\x41\x60\xec\x3a\xa7\xdd\x83\xc9\x05\x02\x19\x5e\xe0\xed\x56\x18\xf5\x5f\x55\x2c\x8b\x17\x30\x27\x47\x38\xf8\x45\xeb\x3b\x88\x4d\xf9\x47\xaf\x83\xe2\xcb\x09\x00\x35\xbc\xfe\xe5\x0e\xb9\xcc\xbd\x53\xf8\x23\xb1\x62\x1c\xe2\x6f\x31\x43\xf2\xf1\x3b\xce\xbf\x39\x56\x3c\x9f\xe3\x8f\x67\xea\xbe\x86\x72\x1d\xf9\xf2\x20\x5e\x36\x9a\x11\xf2\x2d\xf0\x08\x12\xef\xa4\x84\x4b\xfb\xd8\x62\x4d\x13\xaa\x55\x86\xdc\x30\x2d\x9c\x6b\xdd\x11\xe6\xde\xe9\xa0\xce\xb1\xe6\x9d\xa5\x61\xb2\x1e\xc8\x6d\xf6\x18\x32\x70\x42\xf8\xba\x28\x76\x1c\xe8\xa6\x53\x2c\x8a\x77\x76\xc5\x39\xc8\xb7\x25\x0d\x19\xc2\xc1\x7c\xf5\x8c\x70\xd2\xc9\x3b\xf8\xdd\x44\x07\x43\x09\x72\x40\x39\x64\xd7\xd6\x81\xbb\xb3\x90\x63\x69\xad\x24\xac\x06\xc6\x54\x34\x6f\xe9\x8d\x90\x0b\xd9\x2c\xe1\x3e\xcd\xea\xb7\xe9\x9e\x15\xc7\xda\xda\xf1\xba\x3f\xb2\x7f\x39\xee\xf6\x96\xbe\xf7\xa9\x0f\x22\x6e\x62\x2d\x31\x1d\xae\x23\x43\x2e\x73\xbe\xc5\x74\x30\xfb\xc0\x0f\x7e\xa4\x50\x80\xdc\xc0\xf9\x16\xf2\x3d\xfd\x58\xbe\x08\xb9\x91\xf3\x1d\x42\xc3\xbd\x24\x1f\x3f\x76\x41\x66\x47\x5e\x28\x66\xc2\x9d\x2c\x3e\x67\xcc\xc3\x09\x0e\x2b\x21\x81\xf7\x94\xf3\xcc\x81\xf7\xb9\xbf\x66\x5e\xc0\xf1\x0f\x49\x78\x07\xf1\xd6\x34\xe1\x41\x47\x47\x11\xd9\xb6\x38\xf4\x3e\x5d\x50\xdf\x7b\xea\xab\x00\x61\x18\x26\xed\xa9\x6f\x73\x96\x04\x61\x51\x2a\xe0\x03\xe5\x24\x1f\xe1\xd8\x0b\xbc\xa5\xef\x4f\xdc\x70\x24\x52\x06\x48\x86\x10\x12\x4b\x35\x9e\x73\x81\x8f\x18\x14\x22\x49\xc7\x77\xb4\x08\xb3\x6e\xe6\x62\x24\xb4\xa4\xb0\x9b\x62\x1c\x23\x1c\xb7\xf8\x61\xcb\x26\x1d\x3e\xc6\x97\x39\x86\x24\xc0\x11\x51\xb7\x1a\x62\x76\x76\x65\x13\xc2\x89\x06\x75\x16\xc2\xdb\x89\x80\x27\x3d\x3a\x0b\xd1\x29\xe2\x12\xa1\xc0\xa2\xfc\x69\xdc\xe4\xb3\x95\x7b\xd6\x86\x13\xe2\xc5\x22\x68\x9a\x44\xdf\xbe\x20\xeb\xb5\x2d\x1c\x5e\xdd\x12\x2e\xe6\x71\xd6\x27\x11\xe8\x1c\xc4\x01\x95\x1b\x27\x0a\x99\xe3\x8e\xce\x42\x44\x5b\x20\xb4\x16\x1a\x5d\x32\xc9\xbc\xd0\x37\x4d\xfe\x57\xb0\x3b\xdd\xf1\x55\x22\x08\x24\xd2\x0c\x72\xbe\x87\xdc\x18\x98\xc3\xae\x95\xfe\x4e\xad\x1e\x7a\xa5\x08\xf9\x03\xb9\x79\x67\x7d\xf5\x9e\x66\xcd\xeb\xbc\x66\x65\x4e\xb3\xe6\x47\x9a\x27\xac\xf9\x91\xcf\x20\xcb\x43\xd6\x88\x00\x2f\x0d\x98\x43\xff\xf4\xe3\x6b\x04\x88\xf9\xc9\xcd\xfa\x12\xa2\x21\x43\xe9\x06\xe4\xf5\xaa\x10\x61\x5a\xe4\xa3\xfd\x40\xcb\xdc\x34\x03\xd3\xfc\x41\x1e\xc9\xd9\x39\xdd\x33\x34\xce\xa2\xae\x42\xee\x5a\xba\xea\x5a\x72\xae\x8c\x79\x60\xef\x59\x55\xd1\x84\xe1\x40\x20\x1d\xd0\x54\x94\x42\xb1\xfc\x95\xca\x49\x74\x2e\x60\x80\x75\x74\x04\x0b\xb4\x27\x68\x51\x0b\xd3\xf2\xf7\x01\x0c\x09\xdd\x30\xd4\x3a\x05\x4c\x7f\x17\xcb\x40\x91\x27\x99\x19\x7f\x78\xb2\x3f\xea\x8f\x45\x51\x27\x08\xf5\xec\x67\x77\x0f\xe6\x0a\x43\xf6\x5f\x68\x5a\x3b\x2b\xbc\x2d\xb2\x48\x24\x0c\x24\x71\x57\x56\xca\x73\xcd\xe7\x8e\x7c\xb3\x66\x4b\x3e\xfe\xb3\xec\x10\xd6\x6b\xb6\x74\x17\x0b\xad\x18\x68\xe8\xa1\x6a\xd4\x34\x56\xf7\x02\xd1\xe0\x67\x3c\xbb\x69\x0e\xf2\x3f\x5b\x36\xcd\xdf\x47\xf0\xee\x95\x3e\x68\x0f\xd5\x9c\xc3\x44\x10\x31\x1f\x3d\x37\xf1\x23\xc7\x4f\x32\xd2\xfb\x28\x70\xf2\xcb\xef\xbf\x95\x7e\x9e\xdf\x14\x34\x62\x91\x81\x7f\xe4\x94\x61\x32\xaf\x88\x99\xfc\x63\xd7\x98\x85\x5a\x23\x2c\xf6\x87\x8c\xd5\x60\x50\x12\x89\xcf\x6f\xf8\x1e\x6a\x1a\xc8\x2e\x45\x63\x3d\xc5\x34\x67\xd1\x38\x72\x9e\x1d\x15\x6f\xc2\xb2\xc8\x32\x77\x00\x1e\xb2\x1d\x4e\xc2\x27\x62\x3e\x5f\xe8\xfa\x79\x46\xd5\x6f\xb1\xe1\xde\x8c\x4e\xd0\xd4\xdd\x62\x8a\xaf\x9a\xb0\x67\x27\x24\x5c\x6b\x37\x31\x10\x4d\xd6\x47\x27\x46\x66\x4b\x38\xec\xdc\x5e\xa5\xf9\x55\x88\xde\x40\xb5\x5b\x1c\x7a\x5b\x1f\xcf\x96\x50\x75\xe7\x46\x3f\xb8\xcb\x95\x97\xc4\xff\x6b\x44\xe7\xe0\x3a\xdb\xd9\x12\x8c\xe2\xad\xc4\xb5\xfa\xd3\x79\x15\x9c\x1f\x39\xd6\x1d\x09\x70\x70\x76\x12\xd8\x49\x9b\xbd\x96\x3d\x84\x48\x91\xf2\x34\xab\xb3\xc9\x0f\xc0\x75\x19\x87\x38\x71\x23\x47\x89\x6e\xfc\xcb\x16\xab\x24\xcd\x0e\x9f\xb9\xd4\xb9\x73\x55\x3f\x90\x93\xba\x01\x84\x68\xe1\x92\x5e\xdc\xe2\xb7\x53\x3b\x72\x78\x84\x2d\xe2\x2d\xe9\xef\xb3\xb9\x76\xc0\xdd\x03\xea\x4f\x80\x08\xd2\xca\x96\x37\xd9\x0a\xbb\x0a\xfe\x34\xff\xc9\x86\xcb\xfa\x5a\xf8\x25\x2b\xfc\x93\x7e\xdb\x36\x44\x3f\x9a\xa2\x5e\x9e\x5e\xdb\x28\xc6\xca\xa9\xc5\x6f\xc5\x75\x75\x7a\x50\xc7\x61\x09\x12\x38\x52\x59\x2f\xa2\xa3\xf4\xce\xf1\x58\xcf\x87\xa5\xb9\x72\x80\xc3\x22\x8f\xd3\xe4\x58\x82\xfa\x03\x0e\xc2\x11\x0e\x5a\x5c\xb1\xfa\xd2\x4d\x8f\xe2\x18\x09\x46\xa0\x82\x16\x9f\x1b\x4f\x30\xaf\xb4\xbb\xfb\x50\xad\x00\xf9\x24\x5c\x0f\x2f\x0b\x1d\xe7\x89\xd0\xf0\x92\x4b\x36\xbe\x4b\x5c\x3b\x0e\x11\x50\x09\x31\x4e\x06\x9d\x71\x46\xb3\xc1\xe5\xb1\xc1\x87\x71\xaf\x5a\x4c\xc3\x90\x55\xd5\x25\xed\x76\xdf\x50\xd3\x04\x13\xba\xdb\xc0\x34\xbb\x2c\xa1\xdb\x9d\xc0\xf0\xbe\x3a\xe2\x40\xa6\x12\xaf\x38\x44\xb8\x3f\xd0\x74\x43\x27\x40\xe7\x0a\xb5\xc1\x81\xdd\x18\x14\x06\x9b\x11\x84\xa3\xee\x35\x10\x1a\x41\xa9\x54\x43\x6e\x40\x02\x50\x4d\x6b\x83\x45\x8e\x15\x90\xe1\xe0\xb1\x38\xaf\xbe\x8a\x5c\x2f\xf0\x9d\x60\xa0\xeb\xbd\x60\xbc\xab\x42\x85\x7b\x81\x17\xfa\x7e\x6b\xe9\xd3\xc3\x7b\xa0\xdd\xe4\x6b\x45\xe8\x77\x20\x55\x32\x86\xb2\xce\x51\x2a\x97\x69\xb6\xb4\x7a\x49\x6b\xfa\xc7\xb7\x49\x3f\x21\xf2\x8a\x47\xbd\x3f\x01\xe7\xb4\x78\xf1\x9f\xc1\xc9\xf1\x27\xfc\x8b\xfc\xfd\x55\xda\x34\x9c\x84\x41\xc3\xf5\xa6\x6d\x36\x9e\x7a\xf6\xd1\x93\x1b\xfc\x0f\x72\xe3\x3d\x5f\xfc\xd3\xd7\xf5\xe6\xff\x3c\x33\xa3\xeb\x01\x61\x6c\xcf\x03\xee\x06\xc4\x88\x68\x4d\x17\x9c\x07\x51\x26\xae\xff\xc0\xc6\xe2\x89\x69\x8c\xe3\x05\x84\x63\x6b\xbe\x08\x9d\x1b\x44\x84\x42\xc4\x0b\x89\x51\x97\x47\xa6\xee\xd6\x88\x69\x56\x31\x79\xc9\xa5\x65\x70\xe4\x0b\x29\x22\x08\xd6\x3c\x9c\x1b\xe2\x75\x1e\x3a\xbf\xaa\xa0\x57\xee\x5f\xdf\x7c\xff\x9d\x30\x4a\x00\x65\x31\xd2\x62\x2d\xfe\xa2\x81\xaf\x20\x09\x21\x19\x46\x22\x0c\x35\x7d\xd8\xd4\x7a\x75\x3e\xdb\x32\xd1\xa2\xa8\x69\x7e\xd6\xde\x5a\x1c\x0d\xcb\x0c\xf6\xdf\x2f\xb6\xd8\x9f\xaa\x0f\x72\xcb\xbc\x1c\x17\x41\xa7\x5f\x24\x0b\x20\x83\x37\xfe\xeb\x63\xb5\xfe\x3c\xae\xf5\x5f\x17\xab\xfd\x79\x50\x2d\xf0\x2d\xda\xa1\xff\x59\x23\xda\xdd\xb2\x38\x26\xf2\x0c\x18\x27\x5c\x68\x8e\x35\x33\xd5\x01\xb8\x08\xd3\x16\xed\xc0\x07\x28\xed\x2f\x80\x48\x62\x61\xc9\x15\x6b\x87\xe4\xb3\x9f\x45\x0a\x36\xe4\x24\x72\x38\xa9\x0c\x84\xc4\xd1\xc7\xd9\x9e\x4d\x40\x16\xb0\x22\xc2\x1f\x80\x69\xc6\x4b\xe0\x7d\xba\xc8\x66\x02\x2e\xc5\x19\xd5\x00\x23\x4b\x0d\xf2\xe7\x08\xe1\x7f\x0a\x37\x38\x2f\xf2\x39\xa1\xfd\x19\xe0\x62\xdc\x05\xcc\x99\xc9\x0e\x7b\xcb\xd3\xb0\x33\x5d\x8b\xc0\x92\x20\xc6\x6a\xdc\xb4\x80\x34\x21\x24\xa2\x16\x39\x6f\xc4\xf3\x99\x66\x15\xfc\x28\x34\xa4\x2b\xcc\xf4\x42\x35\x5d\x98\xea\x68\xb6\xbf\x83\x14\xf2\xfc\xf3\x62\xba\x80\xed\xdf\xed\x18\x07\x01\xd4\xca\x90\xac\xf8\x5c\xec\x13\x29\x92\xa5\x9e\x00\xa8\xe1\xc9\xfb\x79\x4b\x12\xd4\xba\x59\x10\xf0\xa6\x80\xed\xfe\xc8\x8e\x6c\x9a\x28\xf3\xf1\x75\xa6\x54\x01\x01\x0f\xc0\xf8\xd1\x40\x73\x03\x0a\x19\x38\x22\x3f\x77\x84\x09\x73\xdc\x30\x8b\x04\xc6\xee\x6e\xfb\xe7\x39\xb4\x5d\xa1\xdb\xd6\x84\x08\x39\x51\x7f\x42\x05\xd7\xbe\xb5\x38\x62\xe7\x1d\x42\x27\xb8\xac\x8d\xb7\x2d\x82\x00\x93\xd2\x86\x5c\xa2\xe1\xa8\xbb\x7f\x09\xae\x62\xea\x1c\xa2\x49\x69\xff\x0b\xb2\x71\x61\xb0\xea\x62\xf3\x68\x2a\x06\x5b\xb6\x26\xb6\xe1\xda\x48\xf3\x4e\xab\x4e\xe4\xbd\x2b\x5a\x85\xd1\x62\x01\x7e\x95\x16\xef\x08\x91\x56\xb0\x2a\x94\xaf\x5e\x16\x61\x49\x7d\x62\x38\xf9\xc3\xac\x53\xd8\x81\x13\xe6\x2c\x32\x4d\xd8\xb9\x70\x8c\x04\xba\x09\x8b\x63\x8b\xbe\xaf\xd3\x37\x90\xcb\x69\x87\x1c\x46\x1f\x9a\x50\x2c\x40\x08\x08\xb0\x9b\xea\x10\x9f\xc4\x21\xd5\x65\x5d\xfb\x58\x73\xa3\xe1\x24\x2f\xe8\x96\x38\xf4\xc5\x8d\x3f\x63\x1c\x35\xb5\x4a\xa2\x9f\x4f\xd5\x89\xf5\x84\x0d\x90\x25\xae\xbe\xe6\x13\x88\x39\x16\x39\x83\xf6\xdb\xd0\x55\x6b\xab\xd0\x5c\x77\x05\x46\xc7\x98\x39\x93\x80\x3e\x84\x8c\x6e\x6b\xad\x87\x50\x20\x77\x01\x96\x6b\x48\x85\xe9\xbc\x5a\x39\xbe\x7d\xc1\xce\xa6\x07\x8d\x7e\xdb\x4c\xc0\xe6\xc7\xb7\xde\x64\x25\x61\xc6\x68\xf9\xf7\x8f\xd6\x23\x61\x52\x40\x3c\xf6\xfc\x49\x15\x9f\xce\xd4\xad\x30\x1b\xea\x9a\x04\x91\xc0\xc9\xc0\x36\x6b\xab\xc3\xfe\x62\x11\x35\x0d\x1b\x88\xd1\x31\xf6\x62\x9f\x6f\x83\xcb\x0b\x27\x16\x02\xfc\x7c\xe4\x7e\xd4\xae\x8d\x92\xc8\x20\xf6\x12\x1f\xd3\x01\xb0\x02\x72\x08\x05\xbc\x73\x7a\x30\x9f\x63\xf9\x06\x40\xb8\xed\x85\xac\xad\xa5\x6b\xe8\x82\x4e\x3d\x04\x17\xa1\x2e\x7c\x97\x73\x54\xd1\xf5\xc6\x6e\xd0\x26\x9a\x5b\xae\xe3\xb1\xaf\x7c\x48\xd8\x44\xf3\x06\xdd\xc8\x0b\xd1\x46\xd7\xa5\xbe\x53\x17\xd1\x22\xd2\x20\xcb\x98\x3f\x99\x1b\x08\x4c\xd1\xff\xcb\xbf\xee\xae\x97\xa5\x94\x78\xc6\xdb\xe2\x60\x60\xe3\xc7\x34\xd9\xd6\x06\x36\xbe\x2c\xea\xba\xd8\x1b\xd8\xf8\x86\xc5\xb5\xe1\xe3\xe0\xc2\x8d\xa4\x94\x63\x27\x8a\x8d\xbc\xc8\x99\x70\xc1\xa8\xea\x0f\x19\xb3\xa3\xb4\x82\x3b\xa7\x1b\x63\xe2\x2b\x87\xb1\xce\xf6\x6e\x14\xfd\x19\x73\x71\xac\xab\xae\xb4\x43\xd8\xd3\x86\x2c\x69\x70\x28\x1a\x5f\xeb\xaa\x5d\xf3\x85\x13\x72\x6a\xd7\xdd\x55\xf7\x01\x4a\xbc\xd8\x57\xcd\x7b\xb1\x8f\xfb\x47\x12\x78\xb1\xbf\xe6\x48\x4e\x5d\x10\x0a\x68\x18\xe9\xa5\xb5\xdc\xbc\xa2\x5e\x90\xea\xb9\xd6\x88\x9e\x75\x82\xac\x70\x42\x9e\x2e\xf1\x96\x44\xe7\x61\x44\xaf\x22\x3b\x3c\x96\x96\x1e\x59\x41\x3b\xf5\x0f\x25\xb1\x00\xab\x87\x94\x70\x90\xb8\xe3\x9c\x67\x08\x11\x60\x2d\xc8\x20\x6e\x8e\xf7\x02\xdf\x35\x0c\xc7\x38\x3c\x1a\x08\xef\xc8\x28\xa9\x69\x78\xc2\x8c\x90\x3b\xd3\x9c\xa7\xc8\x34\xff\x25\x4c\x75\xbb\x16\x44\xf4\x8b\x9d\x69\xee\xbc\x4f\x7d\xf0\x3c\x3e\xdd\x91\xbb\xa6\xe1\xaf\x58\x9d\x7e\xef\xc8\x3c\x6d\x9a\xd5\x3a\x2a\xae\x62\x12\x37\x8d\x61\x7f\x6e\xe0\xdd\x0d\x89\x71\x29\x26\x06\xfa\xba\x9b\xdf\x29\xed\x67\x3c\x23\xc4\x8a\x79\xb7\x6f\x52\x69\xaf\x16\x9b\xe6\x62\x91\x74\x5c\x0c\xa7\x94\x3b\x32\xdf\x35\x0d\xaf\x7a\xc9\xa9\x96\xb7\xf2\xdd\xdd\xdc\xe2\xbf\xf3\x15\xba\x0e\xbd\xa7\xbe\x33\xe7\x7f\x71\xc4\x37\x8c\x7d\xcc\xd3\x9a\xdc\xe1\xc8\xae\x6a\x5a\xd6\x64\x87\x23\x9b\xe5\x11\x01\x0f\x5e\xb8\x2f\x9e\x51\x58\x74\xb5\x22\x31\xd5\x43\xda\x8e\xc1\x2b\xd2\xbc\x84\x30\x23\x8c\xea\x02\xb2\xcb\x1c\x08\x51\x1b\x14\xd1\x87\xc1\x7d\x1f\xe1\xc8\xf5\x0b\xc2\x0c\x48\xe8\x0c\x34\xe8\xc4\x1f\xbb\x58\xb1\x83\x6a\x41\x5d\x8d\x20\x2b\xc2\x9d\x81\x30\xf4\x81\xb0\xc1\xa5\x94\x32\xae\x5b\xef\xa1\xc2\x79\x45\x61\x36\xb1\xc4\x49\x1f\x1c\x22\xbe\x4d\xd6\xf1\x7c\x8e\x22\x08\xaa\x0d\x93\xf4\x21\x63\x10\xa5\x25\x1a\x6e\x3a\x1c\xb8\x56\xd7\x03\xbe\x0c\x00\xd6\x02\x6f\x45\xda\x10\x9a\x46\x78\x95\x7b\x31\x87\xb8\x51\x25\x04\x2e\x23\x33\x84\xaa\x6f\xb4\xa7\x03\x6a\x45\x48\xd5\x1b\x43\x28\x06\xe4\x88\x16\x67\x5a\x8b\xe2\x0b\x16\x0c\xaf\xd6\xb0\x50\x38\xc1\xe6\x23\xcb\x6e\x5c\xe2\x10\x87\x89\x80\xe1\x7c\x88\xa3\xfe\xf0\x94\x81\x21\xa4\x46\xa7\xab\x6d\xf1\x30\xb1\xcb\x12\x2a\x68\x12\x70\x95\xdb\x34\x9a\x3a\x55\x97\x79\x50\x8b\xeb\x22\x49\xb2\x29\x7a\x65\x04\x45\x91\x31\xaa\x1f\x6f\xba\x92\x15\xe7\x0d\x5b\xd2\x1e\x9c\x37\xa0\x9e\xc7\x44\x32\x90\xad\xb8\xa5\xf8\x55\x05\xd5\xab\x28\xdb\x76\x94\x60\x4b\x85\x60\xad\x82\x1f\x35\x10\x0e\x09\xfc\x83\x52\x4a\x6e\x86\x3e\x46\x03\x97\xa2\x39\xba\x49\xf1\x1d\x2f\xfe\xa4\xd9\xdc\x58\xae\x73\x47\xdf\xd3\x86\x85\x7b\x8a\xaa\xb0\x4c\x0f\xf5\x4d\x8a\x77\x94\x9c\x44\x24\x35\xc7\x5b\x61\x43\xdd\x0c\xb4\x3f\x66\x75\x7a\xc8\x18\xf9\x44\x3d\x7d\xf2\xcc\xc0\x46\x7f\x27\x90\x8f\xeb\x2d\xa3\x91\x28\x04\x6e\x9a\x22\x5d\x3e\xfa\x38\x2c\x32\xc7\x7b\xda\x25\xde\x86\x45\x96\x94\xc5\xf1\x20\xb2\x75\x6f\x5a\x89\xba\x1c\x14\xa8\xf9\x7e\x94\x95\xc2\xa3\x9e\x35\x72\xbc\x4f\xc7\x59\x6f\xeb\x52\x66\x2f\x9f\x4d\x94\xf9\x97\x74\x03\x74\xbc\x25\x36\x0c\x6c\x18\x7e\xbb\xde\x51\xbb\x38\xd4\xd0\x13\x22\x9e\xd3\x22\xc7\x3b\x6a\x43\x69\xfe\xa9\x8e\x8b\xa2\xe6\x0f\xaa\xc7\xf0\x4c\xc5\xf9\xc6\x0e\xce\xb5\x69\x04\x25\xb6\xf0\x1a\xf5\x28\x69\x78\xe7\xe9\x1f\xbf\x28\xd2\xbd\x70\xeb\x9f\x88\x47\x82\x9c\xe9\x9a\xc6\x17\x08\xb9\x13\x77\x0a\xa9\x1a\xbc\x91\xaa\xa7\x53\xcc\x95\x1d\x96\x84\xae\xbb\x9d\x7d\x27\x05\xad\x6f\x38\xbc\x2a\x75\x14\xb7\x0c\xb0\xac\xc4\x50\xe1\x6d\xb4\x0e\xe7\x73\x24\x36\x3c\xf5\x42\x1f\x1b\x49\x56\x04\x34\xfb\xea\x3d\xcd\x0c\x70\x03\x16\x58\x28\x18\xa7\x21\x04\xf8\x3d\xe7\xb0\xdd\x98\x7f\x72\x37\x0f\xf3\xb5\xe6\xf7\x56\x5c\x8a\x4a\xa3\x82\x68\xe1\x8c\x04\x12\x71\x2b\xfc\xff\xaa\xa4\x09\x60\x70\xa4\x22\xbe\x2c\x71\xd1\x77\x36\xbf\x2d\xd6\xb9\x70\x0f\x88\x09\xf5\x72\x1f\xc7\x22\xee\x63\x8c\x26\xb5\xff\x31\x42\x6a\x62\xf6\x38\xd6\xc2\xc3\xc4\xbe\x13\xa3\xee\x02\xe7\x9c\x0a\xdd\x50\x8c\xd0\x29\x21\x10\x65\x61\x70\x0f\xd6\xd8\xb1\x38\x4a\xdf\x73\x3c\xbb\x25\x56\x4a\x05\xe1\x8e\x51\xd3\x78\x02\x56\xd1\x79\xd4\xf9\x94\xec\xa8\xb7\xf5\x9b\x66\x47\x6d\x05\xdc\x38\xd1\x3c\x74\x53\x4e\x5c\x4b\x7b\x5b\xef\xb3\x1f\x4a\xa6\x5c\x24\xd0\x3c\xe5\x64\x76\x47\x52\x6f\xe9\x6b\xf1\x5c\x12\x92\xf4\x51\x8d\xd7\xfd\x00\x93\xc1\x1d\xed\x09\xc9\x74\x03\xe3\x44\x8f\x18\x4a\x0c\x43\x68\x00\x64\x5c\x0d\x35\xc2\xb7\xec\x11\x48\x23\x5c\xf9\x90\x8d\x4a\xf0\xc5\x50\x8c\x04\xd9\x7b\xb9\x0c\x2f\x11\x81\x11\x8f\x34\x49\x8c\x71\x04\xd6\x8d\x60\xf4\xa3\xa2\x1b\xa8\x69\xbe\x23\x1a\x5f\x19\x8f\x08\x7f\x0c\x3d\xa6\xd6\x70\xea\x63\x84\x0d\x81\x01\x0d\x38\x6f\xd9\x53\x2b\x41\x38\x44\xa7\x9d\xd6\x97\xc4\xdb\xf1\xbe\xdc\xa9\x55\x54\xa1\x0c\x0d\xd4\x39\x83\xc6\x1d\x87\x93\xb5\xb3\x33\x13\xa5\xe8\x32\x14\x06\x64\x78\x27\x5a\x74\x01\x16\x42\x72\x96\xa2\x2e\x5d\x0b\xa7\x2f\x5d\x03\xe2\x00\x77\xd1\x0c\x93\xd5\xc5\x73\xd8\xe8\xaf\xa0\x1b\xe7\x91\x17\xb1\xd5\xc0\xd1\x0c\x18\x21\x84\x0b\x11\x79\xf3\x45\x56\xe4\x8c\xef\x2f\xfe\x0b\x6b\x3a\x5b\xa2\xd1\x5b\x07\x44\x2a\x58\x27\x0e\x06\x6e\xe3\x7c\xfd\x69\xc9\xe8\xb3\xc7\xdb\x9b\xee\xd9\xc0\x85\x9d\x17\x50\xfd\x0b\x51\x8a\x80\x87\xea\x85\x9a\x07\x2e\xdd\x96\x20\x94\x07\x3e\xe5\xe3\x5b\x67\xef\x39\xf9\xdb\xb1\x0f\x37\xb8\x94\x74\x74\x5f\x1c\x2b\xd6\x1c\x8a\x34\xaf\x59\xd9\x84\xc2\x5d\x77\xcf\xf2\x63\x13\x95\x34\x69\xa2\xb2\x38\xa0\x26\xcc\xd2\x70\x77\x83\x2b\x28\xe3\xbd\xb3\xfd\x6b\xc4\x25\x31\xdb\xb2\xe7\xa8\x41\x1a\x3a\xaa\xa9\x7e\x57\x40\xf7\xf9\xa8\x7d\x5e\x0d\x42\x73\x09\x7d\x73\x27\x16\x0c\xa2\xb0\xf6\x56\x46\xed\x74\x18\x2e\x15\x91\x23\xc1\xdb\xe1\xc1\x64\xef\x6d\x7b\x26\xcc\x86\xa0\x90\x8c\x9a\x26\xc4\x4a\xeb\x8c\xfa\x73\xcb\x00\x41\xfd\x5b\xa8\x3f\xf0\xb6\x3e\x8e\x35\xce\x8a\x63\x31\x38\x07\x8d\x44\x1c\x19\x42\x98\x6b\x31\xc2\x45\xf0\xae\x2e\x47\x26\x98\xe6\xf9\x01\x56\xc8\x73\x47\x38\xea\xf2\xca\x57\xad\x2b\x9c\xa5\x86\x18\xe0\x8c\x1c\xfb\xcb\xef\x67\x9d\xf3\x31\xd5\xa3\xd8\xc7\xa6\x69\x25\x9c\x69\x9e\x3a\x7b\x2c\x2d\x64\x17\x71\x6c\x51\xb0\xb7\x99\x32\x0d\x6c\x31\xb3\x93\x63\x1a\x91\x04\x7e\x20\x16\x19\xbc\x97\xf0\x33\x9f\x83\x75\xd4\xb9\x56\x83\xbd\x67\x79\x0d\x92\xbb\xf4\x52\x60\x38\x82\x23\xd6\x56\xa6\x91\x93\x20\x60\xce\xe9\xdc\xf9\x68\x10\xce\x5f\x27\x53\x2a\x9c\x3e\xbe\x57\x5a\x45\x24\x03\xdf\x87\xf6\x16\xee\x6a\x29\x85\x45\x3c\x0e\x49\xac\xbe\x80\xe1\x8d\x72\xfb\x07\xed\xdc\x05\x6f\xaf\x03\xc5\xe2\x86\x5f\x31\xd0\x70\x34\x50\x6c\xa5\xe4\x5e\x74\xbe\x42\x4d\xa3\xbd\x41\x04\x3d\x2b\x21\xf7\xb2\x49\x71\x32\xad\xde\x06\x36\x1d\x92\x27\x9e\xe0\x47\x4a\xde\x2f\x31\x6d\x75\x99\x26\x09\x2b\xe1\xe6\x6f\x71\x4b\xb9\xab\x92\x38\x3f\x0f\x9e\xf3\x4a\x18\xd7\x0c\x7d\xe4\x2d\xb0\x1c\x57\x02\xdf\x62\x20\xfd\x64\xcd\x30\x7c\x7c\x37\x3e\x5a\xbb\x5b\x2c\xd0\x96\x54\x92\x78\x06\xde\x9d\x8f\x64\xe8\xf9\x03\xd9\x7a\x2b\x1f\x17\xc4\xda\x7a\x4f\xe5\x15\x31\x32\xa6\x88\xad\x82\x8a\x20\x9c\x43\x90\x78\xd5\x39\x88\xc6\x40\x33\x2f\xf7\x9b\xe6\xd4\xe2\x9c\x58\xcc\xcd\xec\x88\x65\x2c\xe1\x34\xed\xc3\x81\x39\x99\x1d\xa4\x79\x04\x47\x53\x4d\x93\xe3\x8b\x65\x77\xa4\x57\x3f\x43\x98\xca\x1c\x17\x65\x9a\x40\x1d\x07\x71\x70\x13\x61\xb9\xc0\x4e\x88\xf9\x12\x39\x62\xc1\xb0\x5a\x6a\x87\x61\x3d\xbc\x80\x03\x0b\x7f\x21\xf6\x80\xf4\x70\x45\x98\x23\xf4\xea\x40\x43\xe6\x14\x32\x60\x8a\x6d\xa0\x96\x13\x45\x6b\x4f\x52\x2f\xe7\xf3\x23\x9f\x38\x5b\xb4\xef\x46\xf7\xa2\x38\xe6\x35\x59\xe2\x8c\x53\x88\xe3\xc1\x34\xe5\x43\x1f\x31\xa0\xc0\x09\x9a\xf1\x7d\xdb\x34\xe7\xa6\x17\xa6\x39\x61\x8e\x91\xe3\x04\x21\x9c\xf1\x04\x3e\xcf\xfc\x57\x55\xb7\x43\x78\xa7\x00\x5c\x01\xec\xf0\x03\x11\xd3\xc1\xb1\x85\xbb\x57\x3e\x0e\xa3\xfe\xce\xe7\x78\x89\x77\xc8\x91\xdc\xc7\x0e\x94\xfe\xb0\x1c\x62\x73\xf2\x51\x72\xf1\x6f\xf2\xc0\xf8\x8f\xed\xd2\xfe\xbc\xcd\x34\x07\x7b\xd6\x34\xf5\xfd\x84\x4e\xff\x19\xd0\xa6\xb1\xf5\x3f\x82\x5b\x74\xfa\x18\xd8\x46\xbf\x03\xb6\x02\x00\xa0\xc5\x2d\xd9\xc2\x1d\x49\xa3\x6b\x68\x36\x1b\x1b\x19\x73\x05\x43\x9b\x8d\x6d\xb9\x8e\x7d\xbd\xd9\xd8\x0d\x32\xd0\xdc\xb0\xf8\xd3\x13\x64\xc0\x69\x03\xd9\x0f\xc7\x17\x2f\x16\x68\x47\xf6\x5e\xec\xe3\x19\x33\xcd\xc3\x8c\x90\x9d\xad\xa0\xbf\x69\x40\x4f\xca\x97\x16\xbe\x8b\xb5\xdf\x9a\xe6\x6c\x2b\x80\x78\x67\x77\x30\x8c\x9a\x26\x32\x4d\x91\xaf\xea\x2e\xd8\xb3\x8c\xeb\x6b\xb0\x34\x6a\x9a\x59\xff\x1d\xe0\x5a\x81\x49\x8c\x57\x1c\xbe\xfa\x32\x23\xb8\x59\x2c\x70\x26\xb5\x36\x1c\xd0\xc5\x53\x0f\x9a\x68\x9d\x98\xe6\x6c\xdf\x1f\x2a\x72\x0e\x96\x96\x51\xf1\x90\xf3\xec\xea\x59\x15\x28\x70\x87\x38\xe5\xfe\x28\x75\xab\x2a\x8b\xe2\xbc\xcf\xa1\xce\x4d\x60\x2f\xb6\x9d\x61\x47\xce\x29\x73\x8a\xd4\x92\x76\xc7\x14\xf9\x9c\x03\x07\x80\xea\x6c\x89\xd6\xe3\xa3\xf9\x14\xa0\xb2\xcb\x6d\x88\x46\xae\x04\x50\x1a\x10\x6d\x59\x22\xdc\x29\x17\x6b\xd9\x58\x9c\x3e\x82\x01\x91\x32\x8f\xe2\x3b\x01\x94\xcb\xd2\x3b\x68\x74\x7e\x81\xf0\x1d\xb1\xc4\x56\x10\x61\x11\x54\x6b\xe0\x8b\xe8\x09\x84\xef\x4b\xc5\xe2\x18\x46\xbb\x54\xa9\xbe\xe5\x12\x09\x09\xb0\x08\x62\x3d\x6e\x09\xe4\xc9\xd4\x0b\x35\x43\x51\x2f\xf4\x45\xc4\x92\x0e\xbc\x21\xc6\xbe\x38\x0b\x98\xed\xec\x43\xc9\x5e\xca\x11\x37\xcd\xe0\x55\xf3\x3d\x0e\xc4\x3a\xa1\xd3\xb6\xeb\x9f\xc4\x3c\x95\x9e\x0b\xdf\x71\x76\x5c\x89\x07\x56\x4c\xb6\x5e\xc8\xe5\x03\xd3\x9c\x05\x76\x5a\xfd\x50\x16\x07\x9a\x40\xe4\xfe\x37\x75\x71\x38\xb0\xc8\xe2\x68\xc0\x0e\x8f\x65\xc9\xf2\x5a\x76\x2c\xb6\x59\xc6\xf6\x38\xea\xeb\x49\x7a\xd2\x5e\x89\x3b\xdf\x64\x85\xaf\xf7\x7b\x16\xa5\xb4\x66\x93\x35\x07\x76\xd9\x6d\x0c\x28\xd0\xbf\x8a\x8d\x93\x0c\x36\x8e\x15\xc8\x46\xbe\x0f\xee\x48\x82\x03\x9b\xd3\x1c\x92\xc0\x0f\x66\xc4\xb2\xc6\x2b\x93\x74\x5b\xd4\x17\x4e\xa5\xa2\x78\xd3\x24\xaa\xb7\x48\x12\x6d\x39\xa4\x54\x3b\x10\xe6\xac\x20\x78\x51\x1c\xb3\x9a\x30\xe5\x15\x68\x05\xe0\x03\xcd\xf2\xfa\xa5\x60\xde\xb9\x1c\x04\xe7\x85\xda\x08\x2d\x84\xfa\x40\x7b\xf6\xa1\xa8\x6a\xb5\x62\xa6\x39\x7c\x1f\xac\x20\x56\xcd\x81\xb9\x8b\x98\xcd\xcb\x06\x05\xca\x2b\x32\x18\xe2\x01\xb0\xff\x13\xb7\x34\x70\xa8\xda\x9a\x66\xaa\xd9\x0b\x58\x06\xc8\x04\xc2\x21\x55\x88\x82\x69\xf5\x1d\xfd\xce\xa2\xb6\x08\x6e\x8f\x38\x25\x14\x8f\xb7\x2b\x69\x78\x97\xce\x88\x0c\xc6\x42\xd2\x81\x9f\x2e\xa8\xfa\x64\x58\xa3\x41\x2b\x69\x77\xc5\x34\x98\x82\x36\xcd\xb8\x59\x24\x94\x1e\x91\xb8\xfc\x64\xb9\x0e\x6f\xc5\xce\x88\x09\x68\x52\x74\xf6\x70\x6e\x5c\x19\xb8\xd3\xf0\x44\x1e\x03\x03\x06\x8f\xf9\x24\x1e\xf0\x0b\x6e\x69\x31\x11\x5e\x41\x86\x15\x48\xc1\x01\x50\xc6\x68\x11\x49\xf2\x86\xd0\xb4\xbb\x21\x14\x61\x51\x61\x17\x78\x70\x1d\x75\x28\x52\xba\xc9\x9d\x38\x64\x38\x69\xbf\x22\x51\xdb\x2d\xee\xf6\x36\x98\xce\x0e\x8d\x75\x25\x02\x69\x3b\xb1\x45\x2d\xc2\x09\x30\xd7\x1c\x5a\x46\x6b\x3b\x6d\xaa\x57\xda\x80\x71\x7b\x7b\x41\x4c\xf1\x89\xe5\xc7\x3d\x53\x56\x7a\x63\xab\x3d\xb0\x94\x1b\xfb\x29\x68\x92\x80\xb2\x2f\xe1\x7b\x23\xcd\x69\x06\xf5\x77\xf6\x02\x53\x69\x83\x03\x9f\x8f\x16\x3f\x4f\xf1\xa8\x3f\x32\x20\xbc\x38\x54\x79\xf8\xfb\x3b\xa3\x7b\x28\xd3\x5a\x3d\x4b\xbb\x45\x50\x33\xb7\x38\x4e\xa7\x83\x39\x78\x9d\x1d\xa6\xef\x52\x07\x82\xda\xdb\x92\x8c\xa1\x16\x4b\x64\xe1\x9c\xb2\x82\x46\xce\x29\x2f\xbe\x3c\x06\xd2\xfc\x51\x5e\x3e\x72\x92\xcc\xff\xc4\x2c\xcc\x08\xe1\xd2\xb0\x88\xf0\x60\x43\xf6\xc1\x54\xc4\xe2\xf2\x11\x3c\x5b\xb5\x78\xc0\xbd\x18\x90\x92\xe6\x46\x8b\x83\xec\x58\x7e\xac\x0d\x32\x68\x83\xe7\x1e\x34\xc1\x3f\x5c\x6e\xa1\x38\xd6\x46\x8b\x61\xf7\x5d\x6a\xc3\x50\x3a\x79\x83\x88\x7d\x2e\x03\x54\x0a\x63\x4a\x5e\x72\xa0\x52\x15\x04\x52\x2a\x70\x06\x3d\x81\xbc\xb2\x2b\x9d\x9e\x7a\x4a\xc4\xd5\xf4\xb3\x12\x55\x61\x83\x02\x69\x0f\x58\x5c\x94\xec\x98\x8b\xb5\xd0\x31\xe5\x90\xd8\x2b\x24\x4d\x25\xc6\xe4\xbc\xfa\x00\xec\xc0\xda\x70\xf0\xc5\x16\xad\x83\xb2\xa5\x2b\x87\xda\xb6\x15\x26\xff\x1d\x6f\x73\x66\x98\x3c\x69\x4f\xce\x1b\x9c\x32\x33\x97\x86\x69\xf6\x79\x55\x03\x63\x81\x41\x68\x20\x91\xd9\xb5\x28\xb8\x98\x75\xc1\x71\x86\xdd\x57\x71\x72\xc0\x64\x58\x64\x13\x1f\xd2\x4a\x52\xa2\x1f\x04\x5d\x62\x11\xe9\x82\x05\x76\x9f\x9a\xa6\xb7\x30\x3b\x4b\x14\x63\xe9\x27\x87\x53\x3a\xb7\xa6\xce\x51\x35\x29\xc8\xbe\x5a\x2b\xd3\xfc\x54\x5c\x5a\x02\x6f\xfa\x8d\xf2\xf2\x4b\x4f\x22\x9c\x6e\x7d\x05\x80\x0c\xd8\x08\x3a\x7c\x17\x59\x20\x5a\x28\x8b\xba\x2c\x83\x77\x79\x16\x25\xa6\x00\x07\x42\x78\x04\x81\x54\x51\x50\x91\x9e\xee\xd9\x9b\x9a\xee\x0f\x44\xcc\xa8\x7a\xe5\x4c\x6c\x5e\x3c\x58\x82\xc8\x0b\x4b\x95\x1e\x35\x70\xa9\x0a\x0d\xb1\x03\x18\x0f\x9e\x21\x60\x72\xd2\xc2\x3f\x39\x32\x19\x9f\x2f\x03\x9f\xbf\x29\x96\x4a\x7c\xff\x08\x67\x24\x32\xbc\x49\xf7\x47\x18\xbb\x33\x5b\xe1\x21\xcf\x71\xee\xc5\x7a\x0e\x2f\xeb\x4b\xc0\x51\x53\x4c\x4d\x73\x26\x93\xbb\x56\xe0\x16\xa1\x11\x67\xd3\xe2\x11\x63\xf3\x9f\x34\x7c\x3e\xae\x8f\x35\x7d\xc6\x41\x89\xb6\xa7\x66\xe9\x3f\xe9\xc4\x47\x66\xf9\xf7\x7a\x33\x55\xd4\x92\x10\x76\xde\x5b\xf0\xc5\x81\x40\x36\x34\xab\xff\xc6\x3e\x70\xea\x14\x00\x21\x81\x70\x51\x21\xdf\xeb\x59\x47\xd2\xb6\x34\x4f\x58\xf4\xb6\x38\xc2\x25\x1f\xfc\x4b\x5d\x66\xb2\x54\xc4\x6a\x9a\x66\xfc\x09\x16\xe3\x87\x2d\xad\xa0\xd0\x9e\xd5\x54\x66\x39\xd0\x84\xfd\xaa\x1e\xfe\xc1\x1f\xc0\x9a\x4d\xa6\xbe\x4f\xd9\x03\xff\x35\xc2\x2d\x2d\x0d\xd9\x5e\xf9\x82\x6f\xc7\xd9\x12\xef\x44\xa6\x1d\xfb\xa0\xbe\xc8\xeb\x92\xba\x27\xd1\xa1\x2c\x65\x79\xfd\x6b\xff\x08\xcd\x14\x71\x5c\x31\xf1\x55\x3c\xc2\x57\xa9\x85\x7e\x1d\x69\x2f\x40\x82\x78\xc7\xc2\x92\xb1\xfc\xd7\xfe\x11\x4a\x08\xa4\xa0\x8d\xbf\x2e\xa4\xf2\x58\xbc\x74\xdf\x1f\xb6\xe9\xa4\x9c\xa7\x78\xd4\xf5\x28\xee\x29\xe4\x37\xcd\x7b\xaa\xae\x85\x02\x66\xd3\x95\xfe\x94\xb6\x9a\x08\xb7\x7f\x74\xa8\xdd\xcd\x45\x57\x5e\xb7\x1d\x2f\x47\x75\xad\xcc\xc0\x5d\x39\x4f\xcd\xc0\xfd\xd4\xf9\xcc\x0c\xdc\xa7\xce\xd2\x91\x05\x05\x14\x28\x35\x2b\x07\x10\xd4\x81\x05\x28\xec\xf9\x0e\x2c\x1d\x03\x9e\x8b\xf7\xac\x34\x30\x3c\x66\x8c\xbe\x67\xea\xf3\xb1\x36\xd4\x24\xca\xec\xf2\x4d\x14\x90\x2f\xb2\x88\x4a\x02\x2a\x3f\xa2\x36\x23\x61\x88\xfa\xe4\x34\x60\x10\x02\xac\x14\x28\x4e\x20\x79\xd5\xb3\x99\x56\x51\x19\x31\x1b\xe3\x62\xb8\xa3\xa0\x13\xc7\x3a\x33\x14\x79\x69\x2c\x18\x94\x76\xe7\x59\x10\xc5\xa6\x69\xe4\x14\x92\xb8\x13\xcb\x74\x9d\xf0\xb4\xb2\x1b\xcb\x32\x01\xc2\x61\x7b\x66\xce\x38\xb8\xe5\x4b\x99\x32\xc9\xae\x3c\xd0\xce\x9a\x10\xbe\xb7\xb8\xc8\xcf\xb5\x65\x97\xb2\xe3\x15\x2f\x10\xc7\x97\xfc\x5e\xc0\xc8\xf6\x1c\x67\xf2\x2f\xdd\xa4\x28\xe6\x28\xd2\x67\x0a\x97\x16\x1d\x49\xfa\x42\xe1\x1f\xf5\xb2\xae\x1b\x75\x33\x34\x37\x6c\x63\xae\x25\x39\x7d\x12\xdc\xd5\x24\x64\x24\x1c\x75\x02\x2d\xae\x55\xd8\xcc\x33\x63\x6b\x19\x31\xe7\x2a\xcd\xaf\x28\x12\x38\x33\x8e\x2d\x86\x03\x4c\x2f\x85\xfc\x0b\x66\x42\xec\xed\x3d\xe2\x3b\xe5\x78\x00\xb1\x46\x02\x1c\x74\xe6\x85\xa1\x92\x91\x43\x72\x94\x31\xd2\x2e\x1e\x43\x0c\xac\x9b\x71\x28\x8c\xa9\xa5\xad\xc8\x23\x18\x84\xb8\x33\x5a\x32\xda\x04\x65\x13\x16\x59\xc3\xf6\x01\x8b\x9a\x6d\xd9\xa4\xfb\xa4\x01\xe6\xb3\xc9\xd2\x7c\xd7\x70\xac\xd8\x1c\x68\x49\xf7\xc8\xba\x6c\x43\x72\x2d\xc2\x52\xa2\xcd\xcd\xb3\x9b\x24\xc5\x1f\x78\x03\xe2\xe8\xb4\xb9\x05\xa3\x9c\xe6\x96\xd7\x76\x93\xe2\xdf\x28\xb9\x91\x07\x7e\x9b\xea\xda\x72\x1d\xef\x1d\xf1\x1b\xb2\xa9\xae\xd5\x39\xa0\x8d\x6e\x52\xfc\x9c\x92\x9b\x77\x75\x79\x64\x9b\x1b\xcb\xbe\x46\x37\xf8\x4b\xfe\x61\x53\x5d\xdf\xce\x2c\xd7\xd9\x78\x2f\x5e\x3e\x7f\xfb\x7c\xe3\x35\x8b\x05\x6a\xf8\x07\x7f\xe3\xf3\xe7\x67\x9b\xea\xfa\x89\xee\x38\xf2\x82\x0e\x58\xc3\x81\xe5\x82\x01\x62\x8e\x81\x06\xdc\xf7\x79\xd8\xb3\x40\x3f\xc9\x36\xea\xd2\x40\x97\x4c\x2f\x0c\xb0\x07\x31\x90\xb7\xf4\x9b\x86\x3a\x5a\x90\x95\x97\xc3\xeb\x7d\x60\xc7\x59\x02\x69\x5e\xba\x8b\x6e\x6e\xdc\x18\x73\xc9\x87\x6a\x35\x7d\xd5\x5b\xb0\x91\xe7\x52\x17\x2c\x31\x67\xe7\xbf\xe6\xaa\x3d\xed\xad\x7c\x47\xb1\xd1\x67\x2d\xe8\xb5\xbe\xa2\x13\xea\x0f\xa1\xdd\x5e\x9f\x5d\xba\x04\x42\xcd\x50\xcb\x6d\xc5\x9a\x41\x3b\xc2\x09\x11\x16\x1d\x01\x8e\x11\xbe\x23\x71\xaf\xf1\x96\x9a\x4c\xa5\x1f\xc2\x49\x7f\x9c\xb4\xee\x36\xcf\x9d\x0c\x7a\xb8\xc4\x11\xb9\xf3\x98\x3f\x36\x17\xd1\x8f\xda\x02\xcc\x30\xcf\xe3\x85\x3e\x6a\x7f\x19\x76\x6a\x4b\x7e\xd1\x3a\x95\x12\x3d\x0c\xd6\x16\xe1\x5f\x64\x1f\x21\x70\x42\x37\x15\x7f\x19\xdd\xe6\x71\xe1\x46\xc3\x3e\xb2\x78\x68\x9a\xdb\x11\x09\x0b\x14\x2c\x93\xee\x2a\x4a\x47\x16\x10\xe6\x6e\x86\x3a\xd1\x86\x77\xd0\xbc\xe9\x67\xd5\x64\x18\x8d\x5c\xb3\xfd\xfb\x5a\x33\x29\x0d\x88\x3a\xc0\xf4\x7c\x1c\x88\xad\xcd\x17\xae\xb7\x70\x59\xe2\x7d\xef\xac\x9a\x93\xfd\x62\x85\xef\x21\x9a\x31\xae\x86\x21\x55\xee\xe1\x7c\xa2\x6a\x9a\xfd\xb3\xd5\x84\xe3\xdd\xbd\x69\xce\xf4\xa3\x7d\xd3\xfc\x4d\x8e\xf8\x5e\x0b\xa0\x3e\x44\x45\x5d\xdc\x12\x6a\xb3\x7b\x8b\xa1\x75\x65\x9a\x16\xdc\x6a\x7b\xaf\x29\xe5\x18\x8e\xc1\xf2\xc4\x42\x08\xe1\xaf\x29\xdc\x00\x00\xc4\x04\x3a\xb4\x07\x6a\x57\x50\x8b\x63\xd0\xa5\x3f\xb2\xda\x98\xad\x30\xf8\xbd\xc6\x84\xe9\x5b\x74\x05\x17\xbc\xf7\xd6\x28\xba\x9f\x4f\x8c\x70\xdc\x34\x91\xd4\x8e\x6d\x65\x50\xb9\x8c\x5a\x4c\x33\xf5\x78\x09\xc0\xa2\xee\x7a\x5b\x67\xb7\xfb\x75\x36\x9f\xa3\x3b\xc2\x30\xdf\xaf\x39\xdc\xa1\x52\x0a\xa3\x03\xeb\x0e\xcf\x96\x70\x89\x4f\xca\xd1\x88\xb0\x86\xd9\xe2\x8c\x5a\x77\x7d\x8d\x08\xe1\x50\xb9\xd1\x66\x3e\xbe\xc3\x19\x12\x37\xa3\xc1\x95\x2c\x64\xeb\x6d\xfb\x98\xba\xa3\x31\x8a\x0e\x6e\xf1\x57\x14\xf1\xf5\x5c\x67\xb7\xa9\xec\xcc\x16\xaa\x92\xcb\x70\xa7\x9b\x9d\xcc\xba\xad\x78\x37\x34\x99\x1a\xd8\x56\xef\xf0\x1d\x5c\xca\x64\x57\x65\xe8\x96\xf6\xbf\xd8\x7b\x9a\xfd\x54\x66\x3c\x8f\x7a\x16\x89\xc8\x39\xf0\xfa\x7b\x73\x9c\xce\xa3\xee\x4b\x0a\x11\xfb\x77\xbd\x32\x56\x43\x29\xaf\xcf\xef\x17\xc3\x8c\x04\xee\x20\x82\xb7\x43\x71\x4c\x96\x6b\x79\xf9\x4c\x24\x4d\x36\xe3\xf9\x1c\x85\x4d\xb3\x9a\xe9\x71\xb4\x81\xe1\xc9\x18\xcd\x61\x7f\x67\xe2\x3a\xaf\x68\x70\x4d\xab\x15\x0e\x46\x18\x8d\xcd\x7b\x11\xd8\xf0\xf0\xa2\xda\xda\x0c\xea\x18\x98\xe5\x6a\xd7\x29\x51\xdd\xf1\x4e\x37\x94\x9a\x8e\x80\xa8\x26\xe8\x91\x62\xe3\xf6\xc9\xea\xd9\xed\xcd\x93\xa7\xcf\x0c\x11\x35\xf6\x8c\x47\xea\x58\x1e\x81\x73\x39\xca\xd0\xcd\x59\x00\x6f\x7d\xc4\x22\x5e\xc4\xf0\x19\x9b\xc5\x88\xd9\xd3\x03\xd4\xaf\x86\x1f\x84\x43\x92\x08\xde\x6f\x51\x24\x34\xd1\x60\x04\xb5\xe5\x3b\x2a\xe3\x28\x54\x06\xb2\x8d\xc7\x37\xc2\xfd\x85\x5a\xb1\x17\xf9\x38\xf1\x22\x5f\x04\x83\x87\xf8\xb3\x48\x18\xe8\xc6\x4d\x23\x4a\x0b\x6b\x36\xa8\xf0\x42\x45\xaf\x06\x15\xc1\xc1\x16\x50\xa2\x6d\x1f\x12\x03\x7a\xa4\x6d\xce\x44\xbb\x89\x67\x4f\xad\x04\xcf\x52\xd3\x04\x1b\x4a\x6d\x49\xb7\xc2\x9f\x24\x3f\xf3\x08\xd3\x6f\x01\x8b\xc0\x4a\x7b\xc0\xc3\x03\x30\x76\xb2\x89\x15\x82\xe1\xb4\x80\xc7\x34\xb6\xde\x82\x43\x3f\x84\x9e\x0e\xbd\x9f\x7b\xe7\x59\xf8\xa4\x48\x5c\xef\x71\xad\xbe\x30\x2f\xf2\xdd\x11\x5b\x06\x97\x76\x0d\x4f\xfc\xc0\xb2\x46\x9d\xf8\xad\xf5\x06\x24\xff\xd7\x86\xde\x2f\x9a\xaf\xb5\xa5\xbf\x2a\x16\xf1\x9c\x83\x8f\xe0\x4e\x93\x29\x30\x7d\xdd\x31\xe4\x9a\x0f\xdd\x47\x33\xa2\x89\x4b\x79\x65\x9e\xb1\x07\x21\x3d\x77\xea\xa6\xae\xb8\x3f\x42\x18\x30\x4b\xab\x67\xb8\xae\x18\x9d\x71\xb1\x2b\x79\x22\x32\x86\xdf\xd1\xb7\x2f\xc6\x9f\x9a\x46\x68\xf6\x74\xe3\x41\xda\xbb\x11\xd2\x33\xc7\x2a\xd4\x62\x61\xc2\x36\x61\xe8\xfd\x35\x1d\x09\x4b\x83\xe1\x49\xb6\x68\xd4\xfc\x6a\xe2\xdb\x17\xe3\x4f\x8a\x7f\x7b\xd1\x4d\xec\x7a\x68\x49\x47\x85\xbe\xfd\x50\xb2\xff\x27\xba\x96\xe6\x15\x2b\xeb\x2f\x41\x75\xcc\x71\xd6\x20\x18\x2c\xef\xa8\xd0\x2a\xff\xc7\xfd\x84\x96\x75\x04\x3e\xfa\x30\x6e\x58\x98\xdd\xf3\x25\x8b\xeb\xa1\x96\xfd\xff\x5a\x73\x83\x3b\x3f\x78\xd3\x67\x31\x2e\xbb\x08\xe2\x70\x73\x81\xa4\x64\x42\x65\xe6\x05\x3e\x82\x7b\x0c\xc6\x97\x85\x58\x23\x52\x46\xe1\x12\x02\x2e\x8a\x0f\x8c\x5e\x87\x12\xe3\x04\xf1\xd0\x5c\xad\xa4\x06\xc6\x34\xa9\x8c\x03\x42\x48\xe0\x52\x27\x10\xa3\xe0\x4c\xc4\xa4\x4f\x11\xf0\x30\x03\x7f\x5b\x4e\xde\xfe\xe0\x0e\x17\xa0\x22\x1d\x12\xc1\x8e\x44\xf0\xec\x9a\x77\xdd\xd0\xf7\xfa\xec\xea\x7b\x25\xb1\xf4\x96\x9f\x93\x11\x2e\xa8\x69\xce\x3e\xd0\x3e\xfc\xee\x6c\x47\xbd\xce\xfc\x99\x7e\xcc\xfc\xd9\x47\x27\x4a\xc6\xc6\xcd\x14\x41\x98\x4b\x38\x7b\x55\x32\x85\x1c\x47\x28\xc6\xb1\x1a\x5d\x18\x36\x5e\xb0\x40\x2c\x98\x6e\xb1\xca\x77\x0a\x59\x6a\xee\xfc\x6d\x20\x21\x4c\x21\x39\xb1\xc3\xe1\x4c\xec\x32\x36\x92\xac\xc3\x30\x04\xa9\xd2\xc3\xf6\x16\xf9\x1f\x81\xf4\x4e\x76\x19\x81\xf7\xba\xb7\x94\x96\x5b\xfb\x76\x79\x3e\x32\xd8\x63\xd2\x31\x51\xf6\x45\x1a\xa2\xcb\x4b\x3c\x5a\x88\xcb\xd9\xeb\xdd\xc4\xa8\xde\x16\x8e\x21\x9e\x0c\x85\xb6\xf8\x27\xf9\x68\x60\x7d\x6b\x39\x86\xc0\x17\xea\xeb\x73\xd8\xcd\x06\x6c\x6a\x43\x4d\xc0\xf3\x2c\x73\x0c\x6d\x32\x26\xd4\x6f\xa3\x58\xd1\x74\xe0\x11\x25\x2e\x0f\x82\x28\x37\x5c\x3e\xe8\x83\xff\x92\xe5\x3a\xb9\x25\xf1\x3a\xe1\x4c\x26\x5c\x85\x18\x6b\xde\xb3\x62\x43\x70\xb6\xab\xb4\x98\x97\xf8\xc8\x0b\x7c\x2b\x44\x58\x19\x1f\x46\x38\x14\x51\xdf\x07\x7b\x53\x8b\xfe\x1c\x75\x5a\x96\xbf\x52\x72\xf3\x6e\x4f\xcb\x24\xcd\x6f\xf0\xdf\xe8\xc8\xf5\x52\xba\x5b\xba\xb3\xc3\x23\x12\x3e\x97\x73\xe5\x72\xf9\x0d\x25\xe7\x8b\x39\xba\xaa\xa2\x93\x0f\x53\xf6\xa0\x5d\x4d\x13\xda\xc5\x81\xe5\xac\x04\xd5\x11\x45\xa2\xb3\x2f\x8a\xfd\xe1\x58\xb3\xe8\x0d\xb8\xe5\x05\xa8\x5d\xeb\x56\xe8\x1d\xc3\x1e\x88\xd3\xca\x14\x9d\x52\xe9\x48\x15\x56\xd5\x5b\xf6\x58\x13\x23\x28\x1e\x17\x55\xfa\x5b\x9a\x27\x4e\x50\x94\x11\x2b\x17\x41\xf1\xb8\x3e\xc8\xcb\xcf\x1c\x75\x03\xdd\x5a\x7a\x5e\x39\xe0\xbd\xb6\x16\x63\x77\xe8\xb1\x2e\xd6\xa2\x98\xb3\x3a\x3c\xae\x0f\x34\x8a\x78\x4d\xfc\xb9\x2e\x0e\xce\xea\xbf\xd6\x70\x53\x99\xf3\xf9\xf2\xbf\x0c\x9c\xea\x46\xe0\x06\x3e\x0c\x2d\xe0\xb7\x32\x78\xb5\x50\x9a\x0c\x07\x96\xa2\x75\x48\x8c\xd5\x7f\x19\xc2\x82\xb4\x38\xe0\x84\x18\x4f\x0f\xc2\x27\xdd\x16\x9d\xf9\x86\xc5\x35\x66\xc4\xf8\x4c\x7d\x86\x96\xb1\x1a\xb0\xc8\x04\x7e\xae\xc4\x80\xee\xc4\x5a\x5e\x2d\x95\xf7\x4b\x17\x15\xb6\x9c\x4d\x87\x68\x9e\xed\xe0\xc2\xf6\x73\xc3\x7c\x30\xd9\xc7\xe9\x85\x84\x75\xda\x39\xe9\xa9\x3e\x05\x34\xdc\x25\x65\x71\xcc\xa3\x17\x59\x7a\x20\x86\x8c\xae\xce\x57\x80\xcf\xd6\xd0\xf4\x7d\xba\x88\x81\x0b\xd8\xe4\x25\x48\x08\x30\x5b\xc3\x7a\xc0\xbc\x64\xaa\x2c\xde\x9e\x83\x02\x2c\xe4\x52\xae\xd9\x7f\x1f\x1e\xd7\xe2\xba\x39\x67\x09\xab\xb9\x5c\x67\x2c\xae\x9d\xc5\x17\x5f\x7c\xf1\x85\xb6\xd8\x4b\x09\x0d\x0b\x58\xf1\x83\x06\x3c\x34\x80\x90\xa1\xcc\x10\x7b\xac\x5b\xea\x54\x8b\xc6\x50\xe0\xd3\x21\x7d\x64\x99\xba\x6e\x6f\x82\xf4\x07\x16\xc2\x61\x8b\x83\xe2\xf1\x0d\x00\xea\x8f\x2c\x4b\x2f\x04\x99\xe6\x59\x59\x8b\xa1\xc6\x6f\xfb\x35\xbd\x90\x33\xe6\x38\x59\xd4\xf5\x6d\x07\x43\x17\xf2\x26\x6d\x8b\x50\x6b\x69\xb7\x35\x7c\x4b\x2f\x09\x79\x30\xaf\xdd\xd6\x25\x61\xd3\x7c\x03\x52\x53\x08\xc6\xeb\xb0\x71\x95\xe1\x06\x28\x81\xac\x00\x35\x4d\xe8\x05\x3e\x36\x38\x84\x27\x83\x03\x80\x73\xb1\x10\xcc\xb1\x35\x57\x5c\x84\xf0\xac\xb0\xc7\x63\xb6\x90\x69\xfe\x4d\x12\xd6\x04\x99\xe6\x5f\xa9\xba\x82\x0b\xdc\x01\xb6\x72\x7f\x30\xb2\xb5\xf7\x69\xfe\x0b\xbc\xc4\xfc\x85\x3e\x8a\x97\xfe\xbb\xf6\x55\x95\x23\x09\xe6\x23\x79\x90\x39\xc5\xb7\x48\x2f\xc3\xb0\x56\x2a\x46\x9a\x75\x58\xe2\x26\x73\xc3\x70\xb4\x5b\xbe\xbf\x1b\xa8\x72\x4f\x83\x70\x55\x3d\x23\x64\xc9\xab\x6c\xa4\xa2\xb1\x96\x41\xa2\x9c\xee\xc2\x0e\x12\xa0\x0b\x66\xff\x62\xef\x7e\x0f\xce\x1c\x79\x91\xb3\x06\xf4\xc3\x96\x3b\x5b\x84\x1e\xa3\x3e\xb2\xe7\xe8\x06\xff\x40\xc9\xa9\x83\x5d\xa3\x07\xde\xf7\x69\x95\x06\x69\x96\xd6\x1f\x1c\x63\x9b\x46\x11\xcb\x0d\xac\xd0\xa1\xf4\xe6\x6d\xf1\xdf\x29\x39\x65\xac\xae\x59\xf9\xe6\x40\x43\xbe\x2f\x8c\xa5\x81\xe3\x22\xaf\x7f\x11\x7b\xc8\xf8\x6c\xb9\x34\x5a\xfc\x23\x25\x9e\xf1\x0b\x0b\x76\x69\x6d\x60\xe3\xdb\xe2\x37\x03\x1b\xfb\xca\xf0\xf1\x1b\x7a\x01\x71\x48\x70\xea\x26\xeb\x2d\x95\x82\x00\xe5\xb2\xe8\x1b\xda\xfb\x49\xa8\x98\x4e\x4b\xce\x29\xfd\x74\x38\x28\x4e\x69\xae\x2e\x50\x58\x21\x1c\x92\x1f\xe9\x79\x6c\x1b\x88\x10\xfc\x23\xf5\x42\x7f\x1e\xe0\x71\xbd\xfd\x3a\xfd\x34\x04\x79\x22\xdd\xcb\x83\xfe\xf6\x2e\x17\xee\x29\xde\xd3\x47\x6b\x89\x23\xef\xa9\xbf\xb0\xc2\xa6\x59\x22\x34\xb7\x22\xf0\x65\x07\xc7\x75\x27\xe8\xab\xfc\x79\xda\x9b\x8f\x84\x84\x10\x2b\x72\x25\x52\x32\x1c\x85\xd4\x0c\xe4\x7e\xe6\x18\xe2\xfe\x4b\x08\x8f\xb1\x72\x96\x40\xf9\xe3\xdb\xcf\xd6\xf1\x9c\x3c\x45\x86\x40\x47\xca\xdf\x39\x99\x77\xe1\x04\xc2\x39\x05\x77\xe9\xd9\x12\xae\x86\x88\x5c\xab\xab\x55\x65\x5e\xf4\xb1\x07\x24\x7e\x33\x86\x85\x54\xed\xb3\xf3\x02\xb2\xab\x22\xff\xdc\xf8\x45\xdc\xd1\x29\xca\x21\x47\xef\xc8\x64\xdd\xfd\xd7\xd9\x59\xcf\x3f\x5e\xf7\xc4\xbd\xf9\xbf\x8c\x91\x13\x99\x2d\x71\x4c\xbe\x91\xda\x1b\xa3\xa7\xf5\x83\x78\x0b\x1d\x8e\x35\xf0\x6c\x85\x63\xd0\x00\x09\x7a\x0c\x07\xd9\x3f\xb2\xb0\xae\xba\x9b\x76\x00\x8f\x40\xea\x97\x9c\xa8\xa4\x79\xd2\xe7\xb2\x38\x77\x85\x70\x74\x4b\x96\xc2\xb3\x5c\xc5\x5a\x8b\x88\xc4\x9b\x31\xc2\x56\x74\xab\xa5\xca\xea\x44\xe8\x05\x5e\x58\x61\xaf\xa8\x53\x44\x47\x6b\x46\x12\xd3\xb4\x0a\xfb\x8c\x18\x58\xa8\x69\xa2\x3e\xe6\x84\x68\x9d\x40\x34\xae\x57\x59\x41\x6b\x08\xb0\xb8\xec\x2e\x85\x9c\x2b\xb8\xe3\xc8\x74\x0a\xca\xc0\xd5\x6a\xce\xc1\x55\xd3\x0f\x86\x55\x25\xa2\xd5\x9c\x0a\xbe\xc9\xeb\x0f\xce\xe9\x3c\xb4\x1e\x28\xcd\x24\x6b\x07\x63\x35\x64\xe6\x4e\xe8\x93\xc1\xc3\x8c\x95\xe1\x84\x60\x44\xd5\xc5\x70\x70\x4e\x34\x4f\xf7\x60\x18\xf1\xba\x66\x25\x3c\x80\x69\xaa\xb0\xe6\xcb\x8e\xfb\xfe\x35\x4e\xb3\xec\x7b\xd9\x0d\xfe\x9a\xb1\xc7\xbf\x94\xc5\x83\x7a\x7e\xb3\x2d\xd3\x7c\x07\x6f\x3d\x12\x9a\x2d\x71\x96\xe6\xec\xeb\xee\xad\xe8\x2b\x10\xd4\x1f\x1e\x0e\x5b\x2a\x4c\x19\x1e\xd2\xa8\x78\x80\xa7\xdf\x5e\xc3\x85\x4f\xfc\xa9\x28\xf6\x60\xe1\x17\x56\x60\xa8\x52\x39\x27\x23\xe6\x53\xcc\xa7\xaf\xaa\x60\xb6\x8d\x16\xc3\x32\x4c\x9c\x19\x8b\xc3\xdf\x4f\x47\x2a\xcc\xff\x1e\xbd\xcb\x65\xd4\x22\x7c\xe0\xed\x38\xec\x5e\x3a\x26\xb5\x81\x00\x64\xe8\x14\xf8\xc5\x5a\x83\x77\xf2\x96\x5a\x5b\xd4\x34\x5b\x11\xa8\x58\x2d\x26\xc4\xcd\xd0\x5e\xb7\x3e\xd6\x42\x11\x26\xa6\x69\x24\xac\x36\xd2\xfc\x2a\xd1\x8c\x1b\x2c\x46\x12\x19\x87\x68\xb6\xc2\x11\x42\x2e\x73\x52\x2f\xf0\x1d\x2b\xee\x5c\xdf\xb4\x58\x73\xe0\xb7\xc6\x14\xbe\x0c\x11\x32\x4d\x71\x6d\x9e\x15\x12\x19\x4a\x84\x71\x69\xc6\xc8\x01\x0c\x0c\x84\x85\xd0\xcf\xf9\x7e\xd2\x05\xa1\x83\x24\x59\x59\x38\x87\x08\xf8\xe7\x01\x42\xb6\x7d\x80\x10\x74\xce\x1c\x36\x8d\x21\xcf\xa5\xc0\x44\xa3\x8f\x5d\xd6\x33\x87\x06\x78\x83\x79\x81\x4f\x8c\x34\xdf\xb2\x32\x05\xdd\xac\x69\x1a\xd5\x68\x1a\x08\xe8\x51\x13\x19\xda\x8e\x2f\x6e\x57\x32\xec\xe8\x3d\x12\xe0\x3d\x01\x08\x97\x57\xf6\xff\xf7\xf5\x1c\x2e\xa2\xbe\x76\x4b\xdc\x77\xb5\x0b\xd1\x21\x31\x54\x84\x20\x78\x47\xb9\xa7\x99\x0c\xdf\x01\x61\x1e\xff\x4e\x21\xd3\xdf\xe1\x76\x2e\x11\x14\x23\x6c\x9a\xd0\xb5\x62\x1d\xdd\x30\x79\xa6\xbf\x6c\x9a\xb4\x7a\x95\xe6\x69\xcd\xac\x18\xb9\x71\xd3\x2c\x1d\x11\x8f\xbc\x93\xb3\x3d\x43\xb0\xd9\x06\x96\x74\xcd\x3f\x93\x87\xb5\xb1\x91\x31\xca\x51\xbb\x4a\x45\x61\x9b\x7d\x2f\xf1\xe6\x79\x14\x1d\xb0\x50\xbf\x88\xcd\x2f\xa2\x72\xc1\xde\xb9\xbf\xa8\x69\x71\x42\xfe\xf4\x83\x76\x29\x6b\x1f\x67\x50\xe5\x69\xd1\x59\xec\xd3\x41\xb0\x9c\xc8\x34\x15\x31\x8a\x4c\x53\x62\xe3\x08\xff\x51\xc2\xa4\x39\xa9\x26\x67\x5b\x4b\x06\xc1\xb1\x58\xcf\x72\x80\x4d\xab\xa2\x0c\xe0\x50\xa9\xc5\xc4\xc1\xc0\xd7\x84\x38\x51\x4a\x76\x35\xdd\x9a\x68\x49\xbe\xa3\x56\x61\x9f\x8b\x0b\x78\x02\xf9\x8b\x8e\x59\x1a\x34\x08\x3a\xd0\xd7\xd6\x2f\xc5\xe4\x7c\x73\x39\x6b\x01\x93\x7c\xea\xcb\x38\xcb\x76\x62\xc2\x3f\x5e\x49\x8b\x24\x0d\xd3\x8c\xa9\x84\xe8\x0e\x02\xb8\x10\xe0\x0c\x03\x4b\xd1\x4f\xf2\x15\xe7\xfa\x98\x0e\xfe\xe8\x9c\x43\xa0\x38\x9b\xe8\xd7\x56\x3f\x09\x84\xe3\xa0\x53\xcb\x91\xd9\xb9\x33\x70\xa8\x9c\xd7\xae\x0c\xe4\x78\xa1\xbf\x8e\x6e\x3f\x83\xe3\x22\xe6\x51\xce\xdb\x44\x3e\xaf\x3f\xf6\x22\xbf\x69\x62\x2f\x5a\x3c\x85\xdf\xa5\x16\x82\xa9\xc5\x7f\xed\xb4\x85\x0a\x21\xf4\x5d\xe3\xb8\x88\xfc\x04\x51\xbe\x07\x47\x25\x63\x0c\x74\x59\xf5\x39\x92\xe8\xf8\x48\x38\x77\x29\xef\x58\x56\x91\x61\x95\x0b\x86\x00\x61\xd6\xbb\xf4\x25\xb7\x0c\xd4\x4f\xb1\x17\x78\x89\xef\xf7\x50\xe6\x25\xbe\xa0\x14\x6a\x28\x71\x3b\x0e\xb6\x1a\xba\x7a\x7c\xa5\x10\x39\x3d\x88\xb6\x60\x5b\x75\x1e\x28\x71\x78\x7f\xe0\xaf\x03\x5e\x5a\x99\xf7\xb1\x87\xab\x5f\x69\x6f\x82\x0b\x77\xc9\x6a\xf9\xda\xd2\x7e\xfb\xc0\x58\x4e\x7e\xa5\x58\xcf\x37\x34\xd5\xfd\x95\x62\x5e\x6e\xc2\x63\x12\xc7\x2a\x72\x73\xc6\xf6\xca\xd2\xfa\x50\x16\x07\x12\x2a\x33\xa6\x2a\xcd\x13\x02\xc7\x92\xe2\xb9\x0f\x56\x21\x2c\xa9\x20\x96\x4a\x45\x02\x65\x20\x4a\xcb\x5a\x1d\x5d\x3c\x10\x65\xfd\xac\xec\x47\x59\x1e\x91\x48\x3c\x42\x88\xa8\x78\x44\xff\xc2\x9e\xfe\xb5\x38\x3c\x96\xe7\xaa\x56\x31\xca\x83\x80\x9a\xae\xbb\x1d\x8c\x51\x89\x09\x85\x29\x90\x3c\xd2\xd2\xcb\x74\xdd\xef\xd3\x5b\x5c\x1e\x27\x2e\x51\xc0\xe1\xef\x35\xa6\x4f\x80\x1d\x1d\x05\xc7\x27\xef\x8f\x2c\x2a\x02\x5e\x79\x30\x67\x9e\x36\x97\xbe\x3a\xc1\x18\x17\xbc\xa6\x78\x89\x57\xd3\x69\xf2\x58\x4e\xd4\xaa\x4e\x40\x8a\x07\x62\xa9\x59\x5d\xf4\xb3\x8f\xae\x83\x79\xff\x36\xac\xaf\xaa\xd9\x41\x6a\xbf\xf5\x4f\xbd\xe1\x87\x70\x07\x53\xf5\xab\x5b\x5b\x4d\x13\x82\x4d\xb8\x61\x17\x06\xf4\xd2\xa4\x76\xe9\x22\x50\x7f\x8b\xcf\xa0\x57\x03\x52\x3d\x0d\xeb\xf5\x91\x53\xe7\x46\x31\x22\x98\x72\x6d\xba\xa8\x02\xc0\x79\xf2\x3e\x6b\x87\x67\xca\xe8\x95\x7f\xf6\x44\xad\xbe\x0a\x80\x20\x33\x0b\x62\x22\xd3\xdc\x61\x56\x19\x23\x9a\x6f\x5e\x31\x1b\xe2\x3b\x98\x54\x04\xa6\x69\xd0\x63\x5d\x80\x2e\xd3\x0d\x9c\xe5\x19\xa1\x04\x05\xf8\x23\xcc\x6a\x57\xff\xd9\x17\x8b\x22\xe7\x62\xd7\x47\x9d\xd4\xb8\x26\x59\xda\x87\xb8\xce\x3d\xea\x9c\x1c\x05\x30\xe4\x0f\x4e\x87\x94\x06\x43\x81\xb4\x39\xdc\x97\x07\x9e\x20\x83\xc9\xb7\x2b\x88\xe9\xff\xb6\x38\x90\x89\xcf\x40\x4e\x4f\xe3\x31\x8f\x06\xc2\x37\x21\x7c\x18\x58\x81\x4c\x75\x50\x19\x90\x03\x96\x39\x71\xf1\x86\x4e\xdb\x6e\xb4\xb8\x7a\xe0\xf4\xee\x3c\xcd\xfe\x7c\x01\x7a\x8b\xb0\xa8\x2c\x7a\x0d\x8f\x3f\xbc\x46\x37\x4f\x35\x5f\x1c\x03\xca\x1a\x70\x21\xfb\x23\x39\x03\x49\xdc\x2d\x10\x39\x89\xe8\xd8\xff\xa0\xf8\x9f\x14\x3f\x91\x31\x47\x44\x3c\xb1\xa6\xda\x16\x0f\xcd\x36\x8d\x18\x7a\x72\x83\xff\x45\xc9\x4d\x1f\x32\x52\xbf\xda\x9f\x06\x16\x3a\xfd\x93\xc2\x80\x4b\x76\x7f\x64\x55\xfd\x5c\xc9\x85\xaf\x4a\x30\x71\x0c\x90\x68\xb2\x06\xbf\x21\xcd\x8c\x2c\x08\x74\xe6\x60\xfa\xca\x8d\x7f\xa8\xb8\x96\x2d\xc2\xff\xa0\x44\xba\x76\xf4\x75\x84\xc1\xf9\x9d\xc7\x27\xa9\x0b\xa6\xc2\x9a\x2f\x10\xaa\x17\x49\xc0\xc9\xd3\x45\x80\x42\x02\x14\x1c\x33\x4f\x29\x49\xe6\xa1\x4f\x98\xd7\x6b\x3b\x42\x9f\x50\xed\x1e\x5a\x8b\xd9\x52\xfe\x24\x4c\xaa\x10\x39\x35\xed\xfb\x11\x05\x53\x86\x46\x56\x12\xd8\x35\x27\x59\xac\x14\xcc\xbe\xe7\x23\x3b\x2c\xf2\x90\xd6\x83\x24\xe3\xda\xf0\x91\x8c\x9c\xc7\xc6\x91\xf3\x40\x15\xc1\xbc\xd8\x17\x88\x2b\xe4\xe4\xb5\xd7\x33\xf4\x5d\x60\xc1\xa4\x96\xb7\xb3\xc3\x93\x2c\x7b\x0a\x77\x0b\x28\x46\x9e\xbf\xe1\xbd\xb0\xfe\xce\x39\x0b\x51\x28\x51\x15\x1f\x06\x62\x6e\x00\xfc\x43\x17\xfe\x03\x1b\xf1\x23\x07\x11\x88\xee\x03\xa0\x21\x75\xbd\xc3\xa8\xbe\x10\x92\x18\x8b\x8d\x9e\xd8\xc7\x1c\x12\x23\xd3\xb4\xfa\x17\xb2\xc4\x5b\x92\x68\xf1\x76\xb1\xfe\xa2\x87\x45\xed\xcb\x34\xcd\xd6\x02\x2f\xcb\xee\xcb\x7c\x8e\xf7\xb6\xb8\x67\x4e\x07\x9f\xa9\x6f\x7d\xa1\xc5\x02\xf7\xc1\x8a\xa1\xab\x72\xee\x9b\x26\x19\x06\x00\x46\xad\x0c\xfd\x27\xef\x31\x80\x8b\xe9\x03\x0e\x42\x4f\xa8\x0a\x61\x21\x94\x46\x42\xe3\x0b\x49\x22\x24\xa5\xd8\x4f\x20\x96\x41\xf8\x18\xeb\xe0\x1a\x7c\x5f\x19\x8e\x21\x26\x50\xb8\xe7\xc1\xf3\x8c\x70\xe6\x63\x76\xaf\x39\x72\xdd\x7b\x91\x8f\xc2\x22\xaf\xd3\xfc\xc8\xd6\x07\x32\x5b\xb6\xb9\x17\xf9\xe4\xde\x34\xef\x81\xf9\xec\x39\xb1\x08\xb5\x69\x6c\xa5\x64\x22\x0e\x3e\x4e\x9b\xe6\xec\x73\x8e\xd0\x29\x1b\x07\xae\xe7\x02\xbb\x5d\xbc\x67\x65\x9c\x15\x0f\xc4\x2b\xba\x67\xdc\x3f\xfe\xaa\x3d\xff\xc3\xc7\x77\xd0\x99\x2e\x8c\xa3\x58\xed\x3b\x30\x50\xec\xa0\xa5\x17\xec\xc0\xb7\x7e\x2c\xee\xf5\xa1\x27\x77\xbc\x9c\xbb\x23\x77\x8e\x95\x50\x08\xe6\x06\x17\x8d\x9c\xc7\x6d\xbd\x9b\xae\x48\x14\x42\x08\x61\xcb\x48\x73\x8e\x63\xa1\xd6\xa6\x91\x6f\x0b\xa1\x06\x17\x2d\x09\xe2\x79\x37\x19\xd0\x55\x28\x8a\xb8\x38\x96\x42\x84\x06\xb8\xa1\x49\x03\xa3\xa2\x0b\xf1\x78\xd7\x22\x6d\xd0\x3b\xd2\xa5\xe0\x3b\xd2\x8f\x8b\xf3\x7a\x3b\x50\x74\x74\xa1\x2a\x07\x3d\x02\xfb\x4c\x35\xab\xa0\x39\xec\x56\xa1\xd3\xe5\x4f\x81\xb3\x96\xaf\x2f\xef\x2d\x7d\x7d\xbd\xf4\x94\x95\x9e\xf2\x0f\x3d\xe5\xa9\xdf\x22\x84\x53\x32\x5b\xf5\xa0\x9e\x23\x3e\xfa\x7b\x57\x75\x21\xcd\xaf\xee\x4d\xd3\x3a\x90\x7b\x5b\x7c\x41\xce\xbd\x1e\x46\x5c\xa1\x05\x7c\x52\xe7\x0e\x7c\x76\x62\xd3\xb4\x54\x01\x32\x3b\x20\x7c\x30\x4d\x6d\x75\xcf\x27\xf7\xd0\x34\x72\x21\xb1\x1e\x25\xa2\xc3\x39\x5a\xff\x34\xf8\xc7\x7c\x67\x20\x31\x88\x28\xb0\x0e\x2e\xdf\x21\xce\x12\x47\x78\x8f\x30\x64\xbf\xe7\x83\xe1\xdb\x27\x95\x0c\xe3\x01\x0e\x39\x39\xa7\xae\xbe\xc8\x5f\xb2\x1c\x18\x64\xc7\xc1\x84\x6d\x3a\x74\x23\x14\x9e\x16\x80\xa5\x75\xe5\x10\x5c\x3c\x26\xf1\x00\x04\x15\xec\xa5\xb2\x18\x09\x3b\x60\xbe\x16\x22\x91\x70\xd1\x11\xe1\x50\xde\xba\x03\xf1\x56\x63\xdc\xdd\x93\x11\xfa\x23\xc5\x51\x24\x34\x45\x42\xba\x05\x65\x11\x3a\xc5\x1c\x8b\xc2\x07\x2b\x46\x7d\xd9\xc8\xef\xbb\x19\xa3\xff\x8f\xb9\x77\x6d\x72\xdb\xd6\xd2\x85\xbf\xcf\xaf\x90\xf0\xfa\x65\x11\x16\x5a\x52\x3b\xa9\x53\x33\x94\x11\x96\xb7\xe3\xc4\xde\xdb\x8e\xbd\x63\x67\x4e\x26\x34\x27\x45\xf0\x22\x51\x2d\x89\xb2\xa4\xbe\xa5\xa9\xff\x7e\x0a\x6b\xe1\x4a\xb2\x9d\xcc\x4c\x9d\xaa\xf3\xc1\x6e\x11\x04\x41\x10\xd7\xb5\x16\xd6\x7a\x1e\xac\x6d\xdb\x86\xea\xad\x79\xca\x80\xd5\xb9\x54\x90\x1e\x02\x90\x5e\x1d\x98\xd7\xfe\xa6\x02\xbb\xd4\x12\x10\x12\xd0\x95\xc5\x01\xb1\x76\x81\xae\x07\xc6\xaa\x86\x10\x01\xd9\xe8\x4c\x7d\xa2\x67\xb9\xa6\x6a\xc3\x10\x8e\x40\x3c\x25\xfa\x8f\xac\x6d\x05\x9c\xac\x72\xe7\xc8\x66\x8d\xdd\x24\x45\x86\xc9\xda\xa8\x0e\x17\x08\x39\x3f\xb3\x29\x6d\x3b\x67\x15\xbf\xbc\x28\xa4\x72\xcc\x6a\xbe\xc6\x5d\xf7\x68\xd5\xe0\x1a\xd4\x60\x9d\x9e\x2c\xd3\xe9\xe1\x7a\x17\x5a\xab\xcd\xca\x61\x0b\x0c\x33\x96\xac\x59\xc5\x64\x87\x54\xcf\x2f\x83\xa0\x8e\xf3\x28\x5c\x79\x50\xdd\x32\x4b\x4a\xd9\xf8\x12\x78\xa1\x57\x06\x30\x1b\x31\x03\x32\xb6\x07\x4b\xb4\x1b\x06\x20\x28\x6b\xf6\x27\x27\x6d\x3c\x67\x0f\xca\x1b\xf4\x15\x48\x8b\xd1\xc3\x99\xa1\xdc\x18\xf5\x54\xd3\x33\xcb\x29\xd3\x71\x91\xea\xb4\xb6\x2e\x8f\x91\x30\x89\xef\x51\xfb\x89\x72\x66\xda\x2c\x32\xad\xaa\x1b\x2a\xca\x4d\x9b\x31\x6c\x8a\x28\x49\x99\x42\x45\x94\xd7\x2e\x23\xa8\x39\x57\x53\x2a\x79\x98\xb1\xb5\x54\xb2\x80\x16\x5d\xfd\x9c\x7a\x5f\x00\xe2\x8f\xba\x81\x1f\x60\x1a\xd8\x74\x09\x40\x2b\x14\x94\x15\x18\x16\x3a\x40\xb2\x3b\x67\x05\x17\x71\xa7\x0f\x23\x30\x7a\x94\x6e\x94\x3a\x86\x71\xf0\xf1\xdc\xb8\x56\x99\xfe\xcd\xb1\x7f\x2f\x9d\x48\x95\xb0\xdf\xc5\x97\x4c\xce\xc7\x7e\xc7\x32\x91\x52\x1a\xad\x5c\xd2\x4b\x9d\xac\x94\x40\xb9\xc1\xad\x41\xea\xc7\x5a\x54\x22\xbc\x1a\x6c\x11\xea\x4b\x78\xde\x8c\x32\xd2\xde\x9a\x65\x4c\x3f\x6e\x84\x3e\x9f\x8e\x0b\xe2\x54\x29\x38\x51\xb9\xc2\xd7\x1a\x95\x20\xf5\x66\xb8\x41\x21\x2b\x3f\xc8\xda\xdd\xdd\xab\x27\xc1\x78\x5c\x58\xb6\xc9\x6d\xb6\x0f\xaf\x58\x01\x20\x32\x3e\x09\xaa\xfa\x06\x50\xbb\x83\xc0\xbd\xd4\x80\x42\x6b\x23\xea\x6f\xcb\x43\x68\x86\x73\xcd\xf4\xd8\xcf\x76\xf5\x36\x5a\x33\x84\xea\x77\xab\x26\x17\xed\xb5\xe5\xb9\x55\xb7\xf4\xb5\xa2\xbb\x55\xa9\xf2\xb7\xfe\x2e\xcd\xed\xa6\x08\x70\x55\xaa\xfc\x6d\xd6\x1f\x95\x86\x57\xf4\x7c\x98\x1a\x05\xc5\xc6\xe2\x2c\x05\x7b\xd0\xd2\x78\xf4\x40\x9e\x92\x28\x19\x80\x64\x51\x16\x1e\x3b\x25\x42\x24\x31\x50\xa2\x78\x16\xe6\x4a\xf1\x64\xe6\xb8\x59\xce\xcd\xfc\x9c\x9e\x99\x2a\xbd\x6b\xdb\xf3\xc8\x7f\x69\xac\xa0\xfc\x51\x21\x88\x32\x6e\xe9\xf8\x17\xae\x5b\xd9\x1c\x22\x35\x3b\x7e\xec\x39\x07\x9d\xc6\xd5\x2b\xf2\x94\xfb\x97\x00\x6e\xe4\x27\x19\x96\x0c\x81\xce\xbe\x6a\x04\x46\x49\x29\x52\x7b\xdd\xe5\xfc\x88\xfd\x0d\x40\x97\x91\xd1\xc8\xbf\x01\x53\x5a\xfb\xea\x1d\xf7\x65\x59\xf4\x90\x17\x90\x5c\x39\x0b\x82\x01\xe2\x18\x77\x95\xcc\x68\xf4\xa0\xbb\x3b\xca\xdb\x76\x9c\x07\x81\xe8\xb0\x60\x02\x81\xaf\x5d\xd2\x32\xbd\x68\x62\x56\xcd\x11\xe5\x40\xa6\x04\x81\x70\x98\x56\xab\xbb\x69\x53\x55\x6d\x5b\x28\x59\x25\x2e\xcd\x9a\xc8\xe7\x91\x73\x61\x8f\xb8\x54\x55\xed\x3d\xe7\x19\xe7\x09\xb9\xed\xa2\xe2\x2d\xdb\xe0\x18\x3b\xbf\x13\x9b\x2b\x8d\x9c\x74\x6b\x7b\x54\x18\xe3\x38\x53\x82\x40\xfd\x50\xa0\x3b\xa1\xba\xe4\xa8\x6b\x95\xd3\x66\x53\xf0\xd2\x4c\x0c\x66\x7f\xfa\xf4\x2a\x2e\x77\xa8\x7c\x86\xca\x82\x9b\x4d\x61\xcd\x63\xb2\x30\xf5\xca\x0e\x5b\x86\x4a\xa7\x67\x56\x9e\x7d\xf3\x75\x95\x15\xe5\xa7\xe6\xf1\x00\x5c\xc4\x4b\x51\xb1\x37\x19\x05\x61\xdb\x9c\x3a\xb3\xb9\x46\x18\x97\x12\x99\x94\x20\x60\xa6\x96\xa1\x39\xc4\x16\x67\x96\xa9\x38\x5f\x75\xef\xb1\xe3\x3a\xde\xd5\x76\x32\x64\x9d\x81\xb6\x45\xe6\xea\x0e\xe3\x0c\x4a\x1b\x4b\xc4\xc6\x61\xfe\xc8\x63\x15\x5d\x84\xa5\xc6\x81\x46\x70\x94\xaa\xde\xd5\xc7\x15\xa1\x72\x0c\xc1\x4a\x0a\xcc\x9a\x96\x46\x15\xef\xf3\x25\x2b\xdb\xb6\x52\x7d\x84\xa0\x1b\x26\x64\x76\xa9\x4c\x9d\xd8\xb4\x2a\x13\x5b\xd2\xee\xfe\xe7\xb9\xb2\x0c\xc5\xc9\xcb\xec\x0b\x2d\xf2\xe1\xb2\x2e\xc2\xdc\xd4\x66\x90\x35\x04\xc3\x7a\x5d\xe6\x10\x11\x04\x99\x0a\x05\x3e\x0d\x72\x9d\x0c\x47\xfb\x62\x25\xc6\x72\x51\xb2\x0e\xe0\x1e\xc7\x08\xb4\x3c\x6c\x0a\x47\x08\xcb\x34\xd6\x68\xdc\xb8\x97\x80\xce\x24\xff\x87\xaa\x07\x41\x11\x2e\x21\x56\xd9\xa0\xcc\x41\x44\xe6\xb2\x9f\xf1\x77\xa3\x7d\xdb\x87\x70\xeb\x37\x61\x3e\xe5\xc5\xc5\x82\x56\xf2\x11\xb9\x36\xab\x58\x0d\x63\x37\x0d\x02\xb8\xa5\x27\x94\x94\x8c\x21\x41\x8e\x2e\xec\xd4\x9c\x32\xc1\xc7\x97\xac\xd2\x18\x7d\x25\xbb\xa4\x74\x31\x16\x41\x90\xcb\xd5\x67\x80\x46\x06\x7b\x7e\xd0\xb2\xa7\x9a\x37\x34\x24\x2d\x5f\x6b\x53\x96\xbb\x6d\x25\x05\xdb\x44\xb7\x2b\x49\x81\x99\xc2\x6f\xe6\xd4\x6f\xe7\x22\x2e\xac\x84\x04\x3a\x80\x1e\x93\xe3\x39\xeb\x70\xf1\xc8\xce\x85\xa5\x05\xdb\x15\xff\x3a\x21\x92\x52\x4d\x13\xb6\x51\x05\x36\xaa\xc0\x46\x55\xf1\x1b\xb2\x2d\x45\x6a\x46\xba\x1c\x63\x90\x60\xdb\x52\x96\x62\xda\x51\x40\x3b\xa2\x85\x6e\xbe\x10\xcf\x97\x10\xa5\x50\x24\x22\x0d\x02\xf9\xbf\xaa\xac\x77\xe1\x2c\x4e\x7a\xb8\xeb\x8f\x3a\x53\xef\xa0\x5a\x99\x5d\x18\x1a\x56\x18\x9a\x5c\xba\xc7\xd5\x9a\x96\xa8\xda\x25\x22\x5d\xa8\xbf\xee\x06\xe5\x1d\x4f\xa1\xb9\xba\x6d\x87\x88\x15\xf2\x61\x77\x3e\x9c\xde\x7a\x19\xcb\x45\x28\xa0\x25\xb1\x60\xd7\x81\xfd\xb8\xa9\x8b\xf2\xfb\xe6\x76\x17\xe5\x42\x19\x83\x28\x83\xc4\x5f\xf6\x90\x04\xf5\x57\x49\x9f\x90\xf2\x41\x26\xab\xcf\xa4\x4c\x2e\xbc\x6f\x76\xd6\xdd\x07\xcb\x38\x43\xfa\xfb\xeb\x93\x73\x03\x4a\xc2\x1b\xaa\x20\x7b\x4f\x15\x77\xfe\x73\x3f\xf7\xfe\xaa\xae\xbf\x52\xe8\x25\x1a\x3e\x0f\x47\x23\x4f\x52\x6b\x04\xee\x2e\xba\x10\xb4\x02\xe7\xdc\x98\x19\xc6\x84\x35\xf6\x2e\xc4\xf3\xdc\x8c\xbb\xc9\x84\x66\x1c\x1c\x50\xb3\x50\xb9\xa2\xe2\xb4\xcd\xcd\xb0\xba\xb8\x60\x97\x74\x91\x1b\x53\x9e\xb2\x77\x37\xfb\x10\x4c\xc8\xca\x9c\xec\x08\xaa\x3e\x40\xb3\xaa\x84\x96\x5c\xe4\x7b\xf4\x99\x46\x76\x38\x85\x34\xb2\x39\x64\x91\xaa\x20\x00\xe8\xb8\xc9\x36\xfc\xf2\x1b\x66\x73\xbb\x5f\xfa\x9b\x5c\x5b\x7e\xcb\xf8\x23\x76\xf2\xf8\x2b\xf6\xf3\x08\xac\xe3\x6f\xd4\x2b\x42\xd3\x90\xfe\xab\xa9\xae\x0b\x08\xf9\xce\x9b\xb3\x29\x02\xd3\xf4\x5e\x38\x94\x1c\xfe\x96\xc9\xf7\x81\x33\x8e\x79\xe3\x6f\x19\x65\xbf\x61\x78\x8f\x7e\x07\x88\x28\xfc\xe1\xb8\x69\x6e\xa3\xff\x35\x9f\xb3\x2a\x3b\x9e\xa2\x67\xf3\xb9\x3d\x87\xf8\x76\x3e\x57\xc2\x41\x51\x6e\xb2\xfb\x0e\xe3\xb7\xe3\x38\x53\xdd\x79\xe2\x90\x54\x14\x45\x24\x90\xe4\x07\x76\x1e\x67\x33\x72\x68\xf0\x9d\xbd\xde\x3b\x3d\xc8\xa5\x4c\x5e\x0c\xb5\x82\xfc\x26\x9d\xab\x54\x68\x72\xdd\x23\xd7\xc7\x40\xec\x99\xe8\xdf\x42\x60\x0e\x82\xcc\xa9\x5f\xc5\xc8\xc7\xf3\x47\x42\xe9\x42\xa1\x22\x58\x38\x36\x0d\x57\xff\x7e\xc7\x09\x42\x27\x02\xde\x1d\x6b\xa4\xda\x82\x10\xd9\x65\xc1\x73\x85\x02\x52\x16\xec\x2b\x75\x54\xcf\x72\x72\x22\x1a\x52\x45\xa1\xec\xb3\x66\x0a\x3f\xfe\x5d\xdf\xe7\xe6\x4d\x1a\x93\x7e\x25\x58\x2d\xb8\x42\x6a\xce\x4e\xa7\xc3\x6b\x08\x03\x5d\x78\xf2\x9d\x4c\xff\xaa\x7f\x02\x3e\xfa\xa8\x13\x00\xb3\x38\x10\xff\x05\xaa\x36\xfb\xd0\x63\x4c\x89\xbd\x7a\xf9\x26\x2b\x6b\xdf\x96\x12\xc7\x37\x48\xfb\xf4\xaf\xf8\xe7\x99\xfc\x43\x7b\xf8\xe0\xdc\x63\x3e\x31\xc0\x15\x31\x68\xcf\x7b\xed\xf8\x10\x2a\xa8\x77\x2f\x8e\x59\x0a\xe5\x5c\xb5\x21\xfa\x42\x75\xe2\xc1\xc0\x11\xc0\x41\xc4\x96\x1b\x8a\xf6\x79\x8f\x57\x22\x32\x78\xf3\x8e\xc7\x05\x6e\x3f\x3c\x47\xcf\x72\xaf\x4d\x80\x7b\xb8\xb4\x7e\x6f\xa5\xeb\xfe\x27\x95\x01\xed\xf7\x26\x28\x8d\x8b\x28\xcc\x7c\x32\x05\xc1\xf2\x09\x91\xa3\x18\x0b\x59\x9a\x42\x14\x36\x08\x14\xa1\xa9\x24\xa1\x80\x82\x2b\x24\xf7\x4c\xbf\x5e\x19\xc0\x8b\x58\x53\xfc\x42\x8c\x96\x6e\x80\x08\xa1\xc4\x1f\xba\x14\xd3\x60\xf4\x1b\xbb\x43\x33\x08\xd4\x80\x45\x0e\x47\x1f\x2a\x45\xc3\x11\xaa\x7d\x5b\x8d\xdf\x85\x7b\x84\xd8\x63\x99\x50\xe4\x97\x7a\x66\x48\x69\x0e\xd1\x00\x87\xc6\x61\xf7\x24\x51\x48\xd1\xde\x68\xe0\xff\x22\x85\xd5\x1e\xd1\xaf\x72\x4d\xe7\x25\x42\xe2\xf6\x91\x4e\x72\x18\xaa\x2b\xd1\x3d\x48\x66\xfe\x3a\x08\xaa\x41\xa7\x5b\x73\xb5\xf4\x3b\x85\xa1\x41\xc1\x00\x91\xf5\x87\x11\xb2\xec\xa9\x5a\xcf\x3e\xdf\x4e\x66\x4b\x3a\x28\xf6\xd4\x42\xf9\x1f\x9a\x9e\x5c\x40\x92\xaf\xa0\x7b\xd4\x75\x9d\x71\x6c\x2c\x1f\x52\x6a\x96\xe5\x2d\x53\x06\xff\xc3\x51\x97\xf2\x0b\x55\xa5\xc4\x4b\x20\x5f\x50\xf7\x2b\xca\x4a\x1d\xa2\xb6\x16\x78\xf0\x8c\x78\x3f\xb8\xcc\xb5\x1a\x9a\xa4\x55\x80\xb5\x4f\x66\x35\xbb\x52\x19\xb3\x56\xde\x91\x49\xfe\xda\xb4\xef\xa3\xad\x76\xd7\x26\x74\x08\xf8\xfa\xda\xd4\x01\x6d\xfd\xfa\xda\xe4\x44\x78\x24\x58\xfc\x0f\xf5\x5d\x92\xa5\x6d\x9b\xa5\xdd\x35\xaa\x57\xbf\xff\xde\x1a\x35\x7a\x64\xc9\x11\xdc\x56\x00\xf6\x50\x80\x16\xb0\x2e\x3d\x22\xf5\xd6\x93\xbf\xbe\x5e\x64\xe0\x88\xf8\x17\xd7\x06\x99\x19\x28\x31\xf7\x7a\xe6\x67\x02\x1d\xb2\x87\x9d\x5b\x3a\x2b\x09\x39\x65\x02\x3c\x7d\x89\x63\x9f\x05\xf7\xc4\x37\xbb\x93\x54\x19\xe6\x34\x5a\x0b\x0d\x74\xa3\x17\x07\xda\xb6\x57\xfd\x44\x80\xe9\x3a\x94\x55\x3c\x8f\x2e\x2e\xe5\x9c\x57\xad\x13\x3d\x90\xaa\x39\x90\x88\xac\x4e\xdb\xcd\x0f\xcd\x81\x30\x92\x6f\xb2\xe3\x91\x44\xf8\x57\x3e\x4c\x64\xd7\x79\x5b\x30\xac\xd9\x8e\x83\x88\xde\x99\x1f\xf9\xac\xcc\x0b\x7a\x35\x8e\x04\xc2\xf3\x12\xf1\xc8\xf8\x74\x89\xd0\x5a\x0c\x65\xad\xae\xeb\xc9\x40\xd9\x02\xe0\xaa\xfd\x87\xff\xea\x5b\x3a\x2a\x93\xea\x29\xc2\xc8\xa1\xcc\x8a\xf7\xbb\xcd\x3d\x61\x64\x9b\xdd\xbd\x85\x29\x22\x9b\xa9\xdc\x6c\x54\xd0\x90\xba\xfa\xa0\x1c\x26\x18\x39\x34\xb7\x1f\xf7\xd9\x4e\xa6\x37\x1b\xf5\xeb\xfa\x58\xbe\xcb\xf6\x84\x91\x4a\x8a\x96\x7f\xc3\xd0\x05\xa6\x43\x17\x5e\x15\x88\xf1\xeb\xaa\x65\x72\xb7\xd7\x83\x18\x41\x14\xbc\x8d\x13\xf4\x4c\xb5\x6e\x6c\x04\x9f\x25\x06\xfc\xcb\xc5\xdb\xda\x0a\x0f\x08\xc5\xdd\xbe\x95\xc7\x9c\xcb\x36\x04\x5d\x4f\xdb\x96\x10\x9f\x9d\x2f\x2b\x8a\x97\xf2\xde\x90\xb3\x9c\x87\x38\x6f\x7c\x2e\x1d\x33\x24\x7d\x7c\xd1\x90\xcb\x92\xe2\xcf\xd3\xaf\x08\x33\x0f\xbe\x7d\x2b\x54\x04\xb4\x42\x20\x1a\x0a\x45\xcf\xe8\x83\x70\xcc\xc3\x6d\x9b\x68\x82\x2c\x34\x53\x27\xb5\x62\xa7\x2a\xf9\x56\x84\x39\x65\x05\x97\xeb\x46\xee\xc1\x84\x8f\xc8\xa4\x9c\x90\x11\xa1\x06\x2c\x66\x23\x98\xbc\xa6\x0f\x4b\x87\x5e\x4a\x24\x4b\x59\x98\xc3\x1f\x3e\x22\x93\x0a\x1e\x84\xe8\xed\x62\xc2\xf1\x6a\xb1\x92\x4a\xdc\xa1\xde\x86\x05\x65\xe5\x98\xf3\x95\x72\xa6\xeb\xb5\x37\x5b\xd1\xf3\xd9\x03\x16\x50\x91\xac\xff\x97\x5b\xdc\x79\xcb\x9f\x34\xfa\xb8\x17\x17\xef\x29\xbb\x72\xb9\xd2\xdf\x42\xc8\xff\x4b\xdd\x84\x97\x43\x9d\xf5\xdd\xc5\x25\x2d\x78\x61\x4a\x31\x77\xd8\xff\xb4\xf3\xd0\x6e\xd0\xed\x3c\xe7\xe0\x44\x35\xc8\xe2\x31\x6a\x4a\xe1\x02\x7e\xf1\x3c\x46\x32\x69\x67\x82\x28\x53\x8a\xd7\x7f\x34\xea\x9e\x9f\x0c\x74\x7e\x6e\x3b\xdf\xa9\xa5\xd7\xf9\xb9\xe9\x7c\xc0\xe7\xa7\xe7\x47\xe8\x30\x71\x28\xc2\x40\xf4\xfb\x9b\xe7\xf4\x01\x25\x46\xf5\x2a\xd8\xce\x07\x3a\x5d\xf0\x0a\xc5\xc4\x72\xba\xca\x8e\x58\x13\x41\xe3\xd2\xfb\x2e\x29\xcc\xdb\x2f\x17\xea\x64\xde\xa2\x61\x07\x81\x69\x3f\x0d\xdc\xc6\xed\x07\x04\xc1\xbf\x5b\xfe\x7a\xf2\xfb\xef\x66\x4b\xfb\xfd\x77\x62\xc0\x93\x8f\xde\x92\xd8\x4b\x32\x1d\x2d\xda\x36\x43\xc9\x94\x90\xc8\x35\x7e\xfb\xe5\xc2\xea\x49\x11\xb9\x43\x7d\xd6\xf0\x1c\xe6\xf3\x85\xe0\x72\xd8\x65\x72\xd8\xf9\x33\xa1\x50\x33\x61\x70\xfc\xc3\xe4\x18\x9c\x03\x66\x9c\x0b\x18\xdf\x9a\xdf\x6c\x61\x18\xcd\xd4\x76\xb1\x13\x7c\xf6\xf9\x30\x5b\xb2\x06\xf6\x0d\x8f\x7c\x74\xb6\xf4\x25\xc9\x9b\x6c\xf3\xd8\x1a\xa4\x91\x46\x16\x10\x1e\xf6\xc8\x12\x51\xf0\xce\xc0\x1c\x32\xf2\xea\xa3\xaf\x45\x0f\x12\x07\xbc\x43\x8a\xd8\x1f\xa2\x7a\x10\xdf\x64\x9b\x90\xd2\x28\x63\x9a\xe4\xac\xe4\x84\x44\xfd\x03\xa9\xb8\x9c\xc8\x1b\xd6\xeb\xa4\x44\xaf\x13\x3c\xe1\x2d\x87\x50\x92\x94\x85\x53\xf6\x75\x36\x21\xe4\x4c\x29\x93\xf2\xd9\x4d\xb6\x71\x9c\xc2\x15\x0d\x4a\x37\x79\x18\xa1\x30\x05\x27\x62\x25\x66\x0a\x17\x72\xd7\x8e\xd1\x92\x11\xd0\xcd\x20\x9a\x0b\xca\x42\x55\xad\xd4\x2b\xb1\x45\x68\x71\x2b\x53\x0e\xd4\xa4\xfc\x6a\x35\x96\xfd\x6a\x84\x39\x17\x30\xaa\x6d\x25\x68\x9c\x47\x52\x9d\x53\x66\x98\xc1\xd0\x10\x3d\x04\x77\x40\x84\xad\x58\xe5\x72\xd9\x6e\xb9\x0e\xcc\x71\x86\x92\x09\xc4\x84\x33\xc1\xbf\x26\x06\xab\xca\xb8\xc8\xc7\x63\x70\xc2\x56\x4b\xb4\x42\xb1\xca\xa8\x9d\x0f\x0d\xce\x87\xf3\x59\x11\x71\xf5\xdf\xe4\x01\x8f\x71\xcd\x21\x8b\xb0\xbf\xbe\x00\x59\x71\x65\xdc\xba\x30\xb4\xe9\xe0\xb7\xbe\xe4\x15\x18\x22\x22\x20\x25\xa9\xe2\x72\x72\x19\xe9\x43\x06\x56\xf3\xf2\xf9\x3c\x5e\x45\x55\x5c\x46\xf3\x45\xfd\x7c\xb5\xa8\xd1\xb9\x21\xe7\x45\x52\xa7\x2c\xb4\x46\xac\xb6\xad\x39\xe7\x72\x44\x8e\x73\xc3\x22\x12\x04\xe1\x38\x77\x65\x55\x7d\x03\x7c\x17\x8d\x21\xc0\xcd\xc2\x88\xe6\xc4\x25\x54\xc3\xa2\x1d\xc2\x5c\xcd\x12\x66\x54\x26\xb1\x50\xc4\x1d\xc2\xa0\x04\x2e\x7b\x51\x5f\xae\x7b\x97\xd3\x3a\x15\x4c\x99\xab\x52\x47\xd4\xb8\x3e\xba\x96\x61\xbf\xe0\xa5\x54\x7f\xc3\xc2\x6a\x06\x16\xea\xc6\x0e\x51\x55\x2a\x92\x5a\xcb\x0a\xca\x35\x0b\x0e\xe3\x80\x25\x49\x01\x31\x00\x8a\xb2\xd7\x23\xfc\xe2\x92\xb2\xea\x7c\xf6\x04\x76\x65\xda\xb3\xb6\xc4\x8e\x20\xed\xcd\xd0\xb4\x6f\x7f\x80\x06\xf3\x82\x85\x8c\xcc\xac\xa1\x43\x9d\x6f\x08\x33\xdd\xac\xb0\xd2\x9e\xcf\xd6\x72\x09\xba\x91\xff\x36\x40\x39\x78\x74\x8d\xe9\xe1\xcd\xaa\xf1\x1e\x93\x66\x47\x22\x6d\x98\xa4\x6a\xe9\xde\x2b\xc5\x5f\xb1\x69\xc0\x9f\x56\x13\x5f\x00\x55\xc6\x93\xd9\xc2\x4c\x39\x85\x72\xc7\xfa\x44\x18\x72\xdc\xbb\xbc\x94\xca\x35\x1a\x58\xd3\x78\x52\xb6\x6d\x91\xb2\x3d\xdf\xe0\xb2\x2b\x98\x82\xa8\x8d\x91\xfa\x29\x12\xec\x8b\x73\xcf\x60\x35\x43\x06\xcb\x68\x64\x29\xcf\xa2\x04\x18\x9f\x56\xbc\xe6\x25\x97\x85\x33\xa9\xd3\x97\x9d\x50\x62\xf7\x7a\xbc\x57\x4a\xec\x7e\xd2\x63\x24\x94\x83\x64\x6f\x65\xba\x29\x48\x73\x41\x10\x7e\xe1\x7b\xe7\x9d\x6c\xcf\xbf\x4c\xd1\x15\x83\xb2\x2f\x8a\x74\x8d\xb2\x2b\xee\x3c\x1a\xa1\xd4\x2e\x5b\x7a\xb2\x67\x82\x0b\x97\x39\x45\x78\xdc\x08\x7b\xd6\xa7\xed\x0c\x02\xe0\x30\xaa\x8f\x9f\xb0\x6a\xbc\x8a\x9f\x45\xdf\x30\xa7\x0d\xf8\x17\xcb\xe0\xc7\x5c\xba\x27\xee\x64\x8a\x07\x79\xdb\xbe\xfc\x29\x6f\x1b\x5a\x91\x0c\x65\x13\xae\xe4\x4c\x28\x06\x0a\x00\xb1\x55\x4c\x16\x10\xd7\xaa\x97\xe6\x44\xa4\x91\x3b\x8d\x73\x06\xf6\x90\x5d\x8f\xe7\x6b\x8f\xd8\x5b\x55\xdb\x8e\x77\xba\xf5\xdb\xd6\xfc\x54\xc7\x7c\x25\xcb\x15\x15\x17\x9a\x30\xab\x20\x18\xef\xa6\x9a\x55\x46\xb9\x99\xfc\xef\x7a\x57\x34\xb7\xa1\xa6\x41\x5a\xf3\x9d\xc7\x6d\xd7\xb6\x7b\xa6\x3b\x7c\x3d\xd9\xcb\xdd\x6f\xc5\x57\xce\xe2\x46\x17\xab\x45\x27\xa5\xc1\x55\x0c\x90\x7e\x56\x0b\xb9\x86\x86\xa5\x8f\xba\xd2\xb6\x72\xa8\xa8\x7c\xb5\x8b\xd0\xd4\xb6\x9a\xd7\x09\x2b\xd6\xb6\x19\x3d\x5b\xfd\x21\x5c\xf1\x06\x15\x88\xaf\xd1\x84\xe1\x5c\xe0\xcb\xef\x2e\xe3\x75\xb4\x33\xe4\x7c\xf2\x5b\xb6\x9a\x5c\x6d\xf5\x08\xb3\x9a\xe6\x21\x5c\x69\xba\x37\x42\xd9\x36\x08\xb6\xaa\x4d\x57\x2c\xa7\x6c\xcb\xaf\x82\x60\x95\x5c\xa5\xce\x9d\x20\xf8\x14\xae\xa8\x4b\xd4\xe5\x3d\x62\x52\xf1\x68\xbd\x4f\xdd\x65\x2d\x49\x58\xf9\xbd\xec\x5d\x31\xc0\x9a\x11\x52\xd9\xd3\xfa\x00\x2b\x08\xec\x6f\xf5\xbe\x06\xcf\xfc\x74\xe7\xb7\xed\xf8\x53\x08\xc6\x27\xb4\xc6\x59\x87\x9a\x64\x0f\xcd\xe8\x8d\x02\xe0\x5d\x2c\xe5\xa7\xd5\x52\x10\x4b\xae\x52\x18\x9d\x96\xfa\xd1\xcc\x75\xbe\x67\xb2\x84\x70\xe8\x96\x1a\xf0\xa6\x88\x9a\x7a\x8c\x62\x47\x45\x70\xf1\x88\xef\x88\x59\x24\x9d\x59\xce\x72\x86\xe6\xf9\x0e\x1f\xc9\xfc\x4c\x17\x9d\xf7\x87\x05\x82\xc6\x09\xda\x83\xf8\xec\x2d\xb6\x5d\x32\x9c\x47\x41\xe2\x75\xd9\xb2\xa2\x27\x0d\xae\xa8\x12\x5f\x2b\xa2\xd1\xc7\x9c\xf1\xa4\x20\xee\x04\x94\x8f\x86\xca\xcc\x01\x5a\xd4\xee\x9b\x44\xee\x18\x23\xd8\x3e\x46\x6a\x47\x19\xe9\xcd\x64\x74\x28\x8f\xf5\x1f\xe5\x08\xc3\xbf\x46\xc0\x75\x34\x2a\xc4\x06\x7f\x00\x75\x43\xd1\xdc\xee\xf0\xd7\xf5\x1e\xff\x4a\xcd\x6d\x64\xd8\x1e\x46\x9a\xe0\x61\x64\xc9\x20\x46\x96\x00\x62\x84\xb4\x20\x23\xdc\xdd\x47\xc7\x6b\xb1\xad\x4f\xa3\xab\xf2\x1e\xca\xbd\x2a\xef\xf7\x87\xf2\x78\x94\x3f\xae\xf7\x23\x87\xf1\x99\x38\xf1\xc8\x43\x87\xf3\xbe\xdd\xde\x1e\x2c\xf4\x0c\xdd\x73\x54\x92\x61\x3b\x54\x08\x80\xb9\xa6\xdc\x51\xad\x36\xd0\xbd\x2b\xf9\x69\x5f\xe9\x5c\xfb\xad\x52\x4c\xb0\x9f\x1b\x0a\x58\x66\xc0\x98\xaa\x1a\x9b\x93\x66\xa7\x79\xb1\xea\xdd\x28\xb3\x77\x30\xee\x36\x5f\x85\x0f\x48\xc9\x65\xe8\xb3\x90\x3d\xcb\xe5\xba\x1a\x1a\x10\xfe\x31\xbe\x5a\xd6\xd5\x78\x0e\x05\x33\x2c\x45\x3e\x7d\x24\x3d\x2f\x7a\x5c\x8f\x28\x2b\x5d\xef\xbb\x11\xb9\x0a\x55\xb2\xb3\xe0\xa2\x16\x63\xa3\x20\x0a\x26\xe8\x42\x6e\xf8\x7d\x62\xd9\x0c\x47\x23\x73\xf3\xb2\xb0\x6c\xdb\x39\x9d\x5c\x02\xb2\x2d\x32\x74\xfe\xf7\x5f\x7c\x71\xb9\x28\x63\xaf\xf8\x92\x46\x61\x31\x48\x63\x65\x6b\xa3\x42\x2c\x64\x01\xa0\xc0\x80\xd8\xf5\x45\xf0\x6c\xba\x69\x72\xf4\x09\x3f\x08\xed\x90\xc1\x8e\x52\x95\x8e\xa5\xc8\x05\x96\xf9\x5f\xdf\xbd\xed\x63\x05\x82\x09\x4d\xb4\x6d\xcf\xf5\x4c\x83\x0e\x80\x24\x08\x10\x98\x39\x87\xe5\x28\x9b\x7e\xff\xfe\xdd\x07\x59\xe0\x81\x62\xc1\x3f\x1c\x9a\xed\x47\x78\x1c\xa4\xb1\xf2\xee\x34\xbb\xdb\x6e\x08\x55\xf8\x96\x05\x7d\xd0\xd4\xdc\x67\x8b\x3e\x38\xce\x1f\xe1\x45\x80\x22\x0f\xe5\xe1\xd0\x1c\x9c\x40\xaf\xc3\x14\x52\x42\xf2\x66\x77\x93\x6d\xea\x62\xf4\xeb\xbb\xb7\xd1\x88\x4c\x80\x8a\x04\x9a\xe1\x24\xbf\x36\xf9\x9c\x3e\x99\xb1\x6b\xb0\x21\xc4\x9f\x77\xb3\x25\xbb\x51\x42\x29\xce\x60\x75\x4e\xd5\xd6\xdb\x6c\x59\xb6\x87\xf2\x58\x9e\xda\xaa\xde\x94\x70\x70\x75\xfb\xd5\x13\xae\xab\xf2\x7e\x59\xee\xe8\xac\xb6\x06\xec\x3b\xd1\xf1\x66\xec\x45\xf5\xab\x89\x22\x1c\xc4\x4d\x56\xd2\x87\xbc\x6d\x4f\xfa\x20\x84\xc6\x45\x98\xc9\xde\x97\xa5\x4d\x48\x42\x26\x7d\xb6\x10\x73\x90\x53\xc6\x22\x22\x52\xd0\x4a\x09\x2b\x35\xf8\xbd\x66\x38\xcf\xdb\x56\x3f\x39\xe6\xfc\x00\xbb\xa8\xac\x44\x81\xfe\xcf\xbe\x97\x9e\xa0\xe6\x7d\x25\x14\x27\x92\x32\xc5\x12\x61\xbc\x64\x5b\x3e\x7c\xe0\x0a\x58\x99\xc3\xfe\x59\x3e\xcb\xa1\x08\x69\x24\x16\x45\xa2\x15\xcf\x94\x97\xbb\xbc\x29\xca\x5f\x7e\x7e\xf3\xb2\xd9\xee\x9b\x1d\x92\xfe\x4d\x08\x27\x93\x81\x3b\xbe\xb6\xee\xb7\x6c\x06\x60\x17\xeb\x2f\xd7\xe5\xe1\x5e\xed\xdf\x1f\x36\x59\xbd\x33\x3e\xa4\xba\xe1\x3d\x44\x11\xf4\xa2\x03\xd9\x96\x59\x03\x86\x69\x41\x27\x4a\xe8\x4e\x84\x39\x83\x68\x20\xd9\x5d\xe6\xfc\x54\x49\xbd\x01\xa1\x1d\x77\xda\x63\x79\xa8\xb3\x4d\xfd\xc7\x10\x82\xa0\x6a\xcd\x50\x59\xef\x54\x46\xfc\x0e\x0a\xa1\xda\x6e\xd2\x40\x01\xa7\x01\x50\x5e\x74\x82\x51\x3e\x0e\x68\xea\x2b\xd5\x54\xb2\xd6\x88\x2c\x76\x45\x69\x65\x9a\x3d\x53\xed\xd7\xdb\x2b\xce\xd8\x8d\x3c\x2c\x01\xd9\x5c\xb2\x8d\x95\x5d\xab\x3e\x86\x24\xd2\x1a\x3f\xa1\x41\x70\xab\x06\xb2\x67\x5e\x92\x52\xd5\x8d\xb0\x20\xbc\x78\x37\xd7\x78\xf3\x63\x43\x82\x41\xe9\x99\xfa\x1f\xe7\x8e\x28\xd7\x96\xe6\xb3\x4b\xa1\xa3\x85\x63\x36\xcb\x69\x8c\x26\xb3\x7c\xc0\x64\xf6\x20\x3f\x22\x42\xb5\x46\xf1\x54\x5a\xe0\xfd\x6b\xc1\xc8\xe7\xc3\xe7\x1d\x91\xfb\x5f\x34\x90\x35\x1f\xce\x8a\xd8\xae\x7a\x15\xbe\x17\x7c\xf6\xff\x3f\x9b\xcf\x96\xec\x0f\xc1\x67\xff\xdf\xf4\xe9\x93\x19\x7b\x21\xf8\x2c\x4c\xe2\x20\xa5\xbf\xf3\xe4\x3f\x83\xf4\xe9\x8c\xfd\x0d\xd6\x98\xe9\xd3\x98\x46\xc9\xe8\xf3\x29\x7d\x1a\x26\xff\x29\x4b\x4c\x9f\xd2\x27\xb3\xe5\x96\xbd\xd4\x87\xe7\xa2\xb9\x3e\xb5\xd9\x7e\x2f\xff\x5d\x1c\x4f\xcd\x41\x2e\x58\xd3\xc9\x05\x0c\xb9\x63\xdd\xec\x60\xdd\x92\x4b\x58\x7b\x5b\x17\xc0\xc7\xf7\x64\xc6\xbe\x57\x8f\xff\xf8\xea\x53\xfb\xfa\xd5\x8b\xef\xe9\x93\x19\x7b\x25\xd3\x3e\xcf\x3e\xcf\x66\xec\x07\xc1\x1f\xce\xec\x47\xf8\xff\xb5\xe0\xe4\xe9\x8c\xe8\x38\x67\xf2\x94\x50\xf6\x66\xc0\x7b\x2a\x23\x74\xf1\x46\xc0\x09\x2d\xff\x82\x7f\xed\x0a\xf8\x77\xf7\x08\xcf\xf7\x1c\xeb\xef\x28\xc6\x99\x59\xbe\x6b\xa1\x83\xaf\xe7\xac\xea\x3a\x2c\xf8\x26\xf9\xee\x19\x52\x4e\xf5\xd9\x09\xaf\x92\x52\x6a\x42\x64\x42\x80\x8d\x76\x9e\xc6\x61\xc1\x0b\x83\x4d\xd8\xb6\xe4\x29\x61\x18\xa6\x97\x41\x14\x6e\x92\x52\x13\x04\x91\x53\x1a\x75\xef\x81\x3a\x96\xbb\x11\x85\xff\xe8\xae\xf1\x08\x45\x93\x71\xce\x7f\x14\xb6\x21\x96\xe1\x0a\xef\xd7\x06\x59\x26\x59\xa5\xe8\xc1\x8b\x2b\x11\xe0\x4d\x25\x9e\x6b\xab\x7a\x64\xcd\x57\xca\xd3\xfd\x31\x3f\xf0\x75\xdb\x56\x6d\x5b\x26\xeb\x34\xae\xe2\x71\x58\xf3\x35\x55\xce\x47\x51\x88\xcc\xcb\x52\xbb\xb3\xf1\x1d\x6b\xca\x96\xf2\xbf\xf1\x25\x3d\x53\x56\x1b\x5b\x9a\x9b\x39\x99\xa7\xb4\x6d\xc7\x25\x04\xb1\x04\xc1\x12\x46\x80\xfd\xee\xb7\xdd\x48\x4a\x7e\x98\x66\xeb\xec\xee\x63\x79\x3a\xd5\xbb\xe5\x71\x5a\x6d\xb2\x93\x8a\x58\x33\x6c\xdb\x39\xee\x2c\xd6\x7c\x9c\xe4\x69\x10\x84\x61\x99\xe4\x69\x9c\x45\x45\xdb\x86\x05\x7f\x38\x53\x9a\xe4\x29\xdc\xb4\x6b\xab\xc3\x1f\x39\x9e\x23\x57\x8b\x83\x13\xf9\x6e\x38\x68\x9e\x67\x53\x75\x48\x7d\x04\xf0\x36\xf3\x71\x4a\x59\x26\x4f\x01\xae\x56\x7e\x6a\x6d\xec\x2d\x96\xbe\x58\x01\x04\x6e\xeb\xad\xd2\xf4\xc1\xc8\xfc\x73\x79\xdc\x37\xbb\x63\xf9\xba\xcc\x8a\xf2\x10\x12\x85\xb1\x7e\xf1\x09\xb9\x96\xe4\x78\x2c\xa8\xd9\x47\x57\x40\xb5\x0f\x0e\xef\xf2\x7f\x03\x30\xf8\x50\x9b\xde\x28\xe9\x42\x1c\xca\xec\x0a\xc2\xbe\x93\x79\x5a\xef\x46\x39\xad\xa0\x5a\xb0\xf3\x58\x26\xb0\x1c\xcd\x14\x35\x92\x42\xc9\x6f\xbb\x29\x0f\x10\x68\x06\x07\x8b\x13\x79\x23\xa5\x0f\x15\x2f\x55\x89\x4b\x08\xe7\x2f\xe9\x19\x82\xd8\x97\xf2\x0d\xc6\x98\x5a\x8d\xf1\xd3\x83\xc0\x56\xa5\xa2\x2c\x4f\xaa\xd4\x01\x4a\xed\x0e\x6f\x8b\x46\x20\x07\xfa\x95\xdb\xa8\x6a\x5e\x41\x0b\x5c\x25\x97\x29\xd2\x80\xc0\x8e\xe9\x54\x95\xae\x93\x65\xd7\x1d\xc0\xfb\x94\x65\xba\xa8\xf8\x95\xee\x0e\x7d\x2c\x0a\x88\xa1\x52\x41\x86\xb6\xff\xa1\x2e\x37\xc5\x31\xa9\x90\xbb\x62\x20\x3d\xe5\x82\x02\x9d\x07\x50\x44\xca\x2a\xfe\x00\xbb\x5a\x10\x84\x82\xbb\x09\xa0\x51\xe8\x4f\x80\x90\xe3\x8a\x39\xaf\x97\xaf\xc5\x51\x52\xc9\x2e\x31\xb2\x14\x79\x2a\x65\xa8\x3a\x08\x6a\x70\xe9\x91\xdd\xb2\xe4\xeb\xa4\x86\x6e\xa8\xd2\xb6\x5d\x27\xe4\x29\xfc\x64\xe3\x25\x75\xd8\xa8\xc0\x94\x58\xba\x5a\xe0\x2a\xb9\x4c\x15\xc6\x9e\x2d\x62\x25\x7b\xd2\x94\x02\x57\x70\x4c\xcc\xf9\x78\x1e\x2f\x81\xc9\x2a\x92\xff\x41\xf4\x10\x70\x66\xc9\x3c\xec\xca\xf4\xa4\x2c\x95\x3a\x03\x6b\x09\x39\xe5\xeb\x97\x41\x90\x25\xe4\xb4\x3a\x34\xb7\x47\x92\x52\xc1\x97\xa1\x96\xfe\xa4\x18\x8f\xd7\x4a\x36\xdf\x98\x1d\xf2\x78\xca\x4e\x65\xe4\x49\xdf\x0c\xfe\x44\xcb\x78\x13\x91\x9f\x9a\x11\x76\xe1\x11\xc2\xac\x0f\xcd\x56\x0e\xc7\x09\x19\x9d\x1a\xd9\x0a\x67\x7d\xd0\xac\xcb\x39\x5e\x83\x66\x43\x98\x6c\xfa\x48\x9c\x1d\xcc\xcb\x2c\x3f\xd5\x37\x65\x34\x67\x9b\xec\x78\x7a\xd7\x14\x75\x55\x97\x05\x44\xce\x9e\x32\x88\xa0\x75\x97\x99\xe8\xe1\xfa\xb0\x89\xd4\xbe\xc3\xc0\xfe\x41\x7e\x7c\xf5\x89\xb0\xfa\xf8\xb6\xc9\xb3\x4d\xf4\x52\x49\x19\x5f\x04\x02\xa8\xe4\xcd\x86\x32\x24\x32\x02\x06\xcc\x43\x23\xeb\x01\xe4\x2e\x72\x5d\x39\xde\xef\x72\x45\x64\x2d\x27\x35\x92\x33\x67\xfb\xfd\xa6\x46\xfd\x69\x76\x77\x71\x7b\x7b\x7b\x51\x35\x87\xed\xc5\xf5\x61\x83\x72\x69\xb1\x18\xe5\x2b\xd9\x30\x27\xfe\xcb\xa7\x1f\x2e\xfe\x95\x30\xa9\xb7\xed\x4f\x2a\x06\xf1\xb5\x40\xaa\x13\x54\x7d\xf6\x52\x10\x25\x48\x8d\x80\x29\xf2\x27\x61\x77\xf2\xda\x7b\xd3\x76\xc3\x46\x46\x5b\x62\xeb\x23\x80\x04\x3b\x19\x64\x8a\xca\xb1\xce\x6e\x32\x45\x59\x73\xd6\x75\x3f\x46\x0f\xb2\xcc\xd9\x67\x71\xb7\xdd\x7c\x16\x33\x7c\xe5\xec\xb3\x90\x7f\x67\x58\xde\xec\xb3\x90\x7f\x3f\x8b\xd9\x99\xf9\x73\x08\x1f\x26\x3a\xf1\xd7\x77\x6f\x89\xfa\x0a\x9d\xf4\xa9\xbc\x3b\xe9\x6a\xe9\xb4\xbf\x7f\x7c\xff\x13\xd6\x40\xcd\x66\xd9\x02\x50\x45\x12\xa1\x0a\x88\x0a\xe0\x08\xbe\x19\x88\x4f\xe1\x52\x96\x42\x22\xf9\x34\xaa\x8c\x2a\x59\x7e\x78\x64\xd5\xd3\x33\x73\x36\x15\xec\x79\xdd\x55\x77\xa7\x68\x3c\x3f\x9b\xb1\x71\xfd\x88\x07\xa1\x88\xdf\x8a\x10\xb6\x2e\x7f\xb7\xa2\x4c\xd0\xe8\xad\x08\xfd\x54\x60\xa9\x91\x09\x96\xa2\xe9\xef\x22\xfc\x41\x50\x48\xfc\x74\xc8\x76\xc7\x7d\x73\x38\xc9\xc4\x1f\x55\x62\x27\xba\x7a\xc8\xee\xde\x23\x62\xcc\x61\x7f\xec\xac\xae\xec\x8a\x6d\xd4\x91\x86\xa9\xd4\xf5\x3e\x7c\x80\x30\xf1\x3d\x6f\xa6\xea\xb3\xdb\xb6\x61\x5f\xec\x25\x1c\x2f\x58\x6c\xa6\xbd\x52\x82\x68\x7c\x08\xf7\x34\xd2\x67\x2a\x47\x2f\xc2\x9f\x9d\xf8\x61\xfa\x32\xdb\x6c\x44\x96\x5f\x1d\x43\xd2\xec\xf2\x72\xb4\x2d\xb7\xcd\xe1\x9e\x50\x76\xcd\x9b\xa9\x9c\xb4\xd7\xc7\x97\x4d\x51\x82\x55\xfd\x46\x2e\xfd\xb7\xf2\xbf\x3b\x4e\x30\xfa\xa0\x2c\x08\xbb\xe7\x0f\x87\x32\x2b\xee\x3f\xc2\x14\x07\x6a\x7b\x7f\xaf\x1c\xc0\xc4\x92\x5b\x05\x6e\x6a\x2b\xfa\xb0\xe2\x0f\x67\xe3\x61\xf1\x37\x81\xc1\xb7\x4b\x4a\x57\x89\xe8\x93\x71\x70\x91\x3c\x4b\xcf\x82\xaf\x92\xac\x73\xe7\xec\x69\x02\x02\x35\x01\x71\x96\xf5\x79\xb1\xd9\xf8\x55\x3a\x0e\x28\x54\x57\xca\xc9\x15\x4e\x16\x7f\xc6\x68\x8e\xde\x07\x38\x83\x0a\xdf\x73\x05\xe1\x60\xb7\xbd\xda\x0c\x24\xb5\x6d\xc6\x6e\x92\x0c\xf6\x28\x74\xbc\x69\x6e\xca\xc3\xa1\x2e\xca\x77\x4a\xd4\x18\x72\x5c\xb5\xaf\x69\x8c\x48\xc2\x33\x5d\x82\xed\xa2\xe1\x56\x06\x68\x8b\x2b\x7a\xaf\xc3\xa9\xb3\xe4\x5e\x75\xab\x1b\xa0\x27\x50\xbf\xbd\x4e\x44\xca\x93\x6b\x88\xcf\x49\x44\x9a\xfa\xdc\x31\x99\x90\x83\x7e\xc0\x9f\xb1\x6d\xef\x1c\x6e\xd9\x72\x0a\x19\x43\x41\xd9\x8b\x70\xae\x7d\x56\xce\xa0\xaa\x1f\x0d\x9c\xc2\x3d\x65\xcd\xf4\xfa\xb0\xe1\x61\x28\xda\x16\x7e\xb6\xad\x5a\xcf\xe9\x84\x38\x8e\x22\xaf\x04\x73\x16\xf1\x09\x99\xcd\x88\x7c\x16\xce\x02\xf2\xe9\xb6\x3c\xad\x9a\xa2\x6d\x73\xc5\x5e\xd7\x98\x14\xcc\xc2\x1a\x2b\xa8\xf0\xd0\x5e\x80\x0e\x40\x1f\xd7\x2f\x08\x49\x95\x8b\x46\x33\xcd\x0f\xcd\xf1\xf8\x7d\xb3\xcd\xea\x1d\x7d\x58\x0f\xab\x42\x72\x0b\x5d\xa3\x36\x04\x1f\xc3\xd4\x05\xfe\x61\x5e\x21\xfc\x4d\xe7\x7b\x26\x52\x91\x6a\x8e\xa7\x31\x42\x0f\x38\x37\xd6\x90\xae\x76\xe5\x3f\xe8\x83\x5f\x8e\x5c\xfa\xea\x4a\x7d\x15\x1c\x1b\xd9\x6d\xcd\x7a\x64\x19\x75\x41\xe7\x53\x0f\x70\x6d\x82\xc0\x4b\xd9\xa6\x87\xac\x00\x54\xfa\x6c\x43\x29\xfb\x87\x5c\xf3\x58\xc3\x72\x76\x4f\xd9\x95\x16\x1f\xef\x17\x1b\x7d\xea\x26\xdf\x88\x5b\x2a\xdb\x04\xc1\x1c\xe0\x77\x70\x17\x9f\x4c\x40\x6e\xf7\x8c\xf9\x04\x56\xb3\x53\x76\x38\xd9\xfe\xc3\x3f\x3e\x88\x3c\x6b\xc0\xb9\x4a\x31\x18\x8d\xbf\x57\x1b\x39\x66\xa5\x4c\xb5\xaf\x19\x1e\x7f\x80\x13\x87\xf7\x50\xfc\x48\x83\x00\x90\x70\x33\x75\xf6\x78\x70\x7c\xb2\x67\xab\x7f\xba\xe1\x03\xa0\x90\x6a\x3d\xfc\x63\xea\x71\x2f\x18\x99\x10\xa9\x3b\xee\x54\x0d\x51\x2c\xd6\x41\x97\x94\x99\xe6\xaf\x26\x3c\x3c\xaa\xcf\xaa\x68\x4c\x02\x12\x91\x98\xd0\x89\xea\x07\xe5\x94\x8e\x57\x00\xad\x9c\xe5\xab\x52\xf3\xf6\x56\xbc\x32\xef\x7c\x81\xdf\xbe\x1b\x2e\x8e\xfc\xce\xc9\xe4\x20\x26\x93\xd1\x64\xa7\x67\x5b\x85\x3f\xeb\x4a\x0b\x58\x00\x3c\xe1\x4a\x5c\x20\x5c\xdf\x4f\xbb\x4b\x60\x48\xde\x54\x17\x3a\xcf\xc5\xc7\x7a\x97\x97\x84\xf5\x9e\x84\x53\x9a\x53\xb6\xfc\x5a\x21\x3f\x35\xbb\xf2\xe2\x9d\x1c\xd0\xc4\xe6\xa6\x94\x39\xc3\xd8\x76\xa5\xbc\x72\xfa\x4b\x9d\xdb\xe5\x6e\x1a\x1d\x7e\x93\xa7\x9e\x31\xaf\x14\xca\x86\x1e\x78\x01\xb2\x1b\x71\x17\x0c\xd0\x92\x9a\xa9\x92\xea\x12\xff\x4e\x1a\x3f\x7a\x67\xa2\xf4\x04\x3f\x39\x26\x6c\x44\x26\xaf\xc5\x84\x2c\x46\x5f\xf8\x7c\x3a\xbf\x24\x11\x21\x34\xb2\xc5\x00\x6e\x04\x68\xcc\x5b\xb9\x20\x37\xd3\x15\x6e\x56\x74\xa0\xbe\x5b\x66\x6e\x27\x5b\xa4\x50\x6c\xa6\x48\x8a\xf4\xb1\xdc\x15\x08\x5e\x6f\x2e\xd1\xf1\x61\xcf\xee\x59\x43\x39\x36\xe2\x95\xf1\x17\xb9\x57\x2b\x36\x14\x72\xc7\x09\x5c\x11\x86\xe4\xb8\x8d\x05\xe9\x60\xf7\x08\xe4\xd1\x4c\x95\x18\x2f\x53\x00\xb8\xa3\x41\x33\x3c\x65\x25\xff\x87\x14\x8a\xd4\xaa\x01\x3b\xfc\xfd\xd4\x4a\x07\xfc\x52\xae\x14\x5f\x3a\x6b\x02\xb0\x3b\x25\xf7\xac\x49\xbd\x75\xa6\x99\x82\x58\x2e\x7b\xe0\x84\x61\x7f\xdf\xcd\xe1\x14\xf6\x31\xb4\x41\xfd\x1d\x44\x65\x27\xf4\xcc\xcc\xb3\x14\xd7\xe8\x2b\x3e\xbe\x64\xe5\xf4\x28\x55\x8e\x1b\xf6\x82\xda\xa5\x15\xf6\x49\x50\x8f\x46\x7f\x2c\x5e\x84\x17\x97\xec\x0f\x7a\x46\xe7\x4d\xb8\x92\xba\x8e\x91\xfd\x88\x83\x86\xfb\x02\xad\x34\xc6\x6c\x03\xe2\xdb\x0d\xbb\x65\x77\x3c\x5f\x5c\xb5\x6d\x78\xc5\xc7\x70\xe4\xdb\x89\x61\xac\x65\x73\xa9\x03\xe1\x25\x5f\xc9\xb5\x88\x79\x8d\x25\xbe\x9b\xc7\xdf\x46\x73\xb6\xe6\xe2\x3b\xfe\x6c\x3e\x0f\x02\xf1\xfc\x9b\xf9\xbc\x6d\xbf\x99\x7f\xcb\x39\x17\x4c\xf6\xf2\x0d\x7f\x27\xc2\x86\xdd\x03\x10\xcc\x0d\xff\x49\x5e\xdc\xb0\x7b\xb6\xa6\x6c\x1d\x87\x9d\xa9\x7e\xcb\xef\x87\x4c\x19\x6f\xb3\xe3\xc9\x4c\x6e\x42\xd9\xed\xd0\xaa\xc0\x6f\x29\x7b\xe4\x79\x39\x89\xcd\x63\x6a\x46\xf3\x5b\x4a\xd9\x33\xac\x68\xdb\x92\xd7\xaf\x5e\x7c\x2f\xd5\x69\x5c\xc6\xe3\x3b\x4e\x76\x8d\xe6\x40\x88\xd4\xf7\x60\xea\x69\xab\x2b\x12\x85\x77\xfc\x06\xa4\x95\x92\x6d\xf9\x0d\xae\x8e\x3b\x7e\x83\x83\x8d\xad\xf9\x78\x87\xeb\xed\x1d\x1b\x8b\x20\xb8\x6b\x5b\x39\x7a\x95\x92\x2a\xc0\xb7\x5d\xf0\x39\xa5\x30\xdf\x41\xe6\xe1\xc2\xfc\x04\x2a\xa2\x30\x6f\xdb\x3b\x29\x6e\xb0\x75\x7c\xf4\xd0\x82\xf6\x2c\xd9\xb2\x3b\x76\x9f\xd2\xe8\xe8\xc2\x05\xed\xe5\x40\xbd\x63\xbb\xd4\x16\x2a\x85\xaf\xf0\x5a\x4a\xcc\xaa\x33\xbd\x21\xbe\x8e\x71\x90\x2b\xc5\x37\x82\xab\x57\x58\x47\x39\xe6\xd9\x3a\xde\x46\xb2\xb8\x13\xa0\x15\x3a\x2f\x49\xa9\x2c\x29\xec\xcc\x96\x97\x6a\x36\x9a\x19\x73\x71\xa1\x77\x5d\x38\x0e\x1b\xda\x73\x1b\xf0\xaf\xd3\xf2\xf1\x3d\x88\xc4\x52\xe9\x7a\x2c\x9c\xed\xa0\x63\x82\x58\xce\x08\xe8\x68\x14\x9e\xf9\x08\xaa\xe6\xb0\x34\xac\x9f\xd1\x2e\x3d\x96\x4b\xd5\x73\x7a\x5b\x96\x27\xc2\xc8\xbe\x39\x9e\xfa\xe8\xf3\xdd\x53\x70\x2f\x7e\xbf\x63\xeb\x05\x67\x58\x70\xcb\x2a\x00\x65\x5d\xab\x55\xa8\x34\x59\xf0\x22\xd0\x16\x33\xa6\x5c\xc0\xf4\x72\x1c\x95\x68\x80\xc8\x99\x5a\xc9\xa2\xe2\xcc\xfa\xc7\x45\x41\x90\x51\x55\x7d\xcd\x67\x3c\xe4\x14\xa7\xde\xe9\xbe\x0a\x8d\x11\xe6\x75\xba\x2d\x18\x6c\xe5\x8e\xc5\xe1\xd2\xd8\x24\x2e\x99\xb6\xcd\x80\xef\x46\xe7\x24\xe9\xf6\x90\xed\x5f\x6c\x06\xdc\x9a\x5d\x11\x1d\xb6\xab\x6e\x60\x05\xa2\x55\x58\x5f\xe4\x64\x9e\xa2\x63\xb0\xc2\x76\xee\x71\x62\xd3\x69\xf9\x25\x9c\x53\x87\xc6\x4e\x67\xf3\xa3\x92\x3c\xa6\x4b\x5d\x32\x13\xc3\x47\x52\x80\xea\x85\x2a\x5e\x86\xd4\x9f\x4a\x7a\x46\x06\x50\x59\xc3\x5e\xaa\x25\x4e\x36\xbc\x87\x18\xe2\xa1\x54\x1f\xd9\x26\x6f\x76\xbb\x61\x02\xe5\xbf\x10\x5a\xe0\xc4\x95\x98\xa2\xfc\xa8\x12\xfa\xf5\x58\x02\x13\x2e\x90\x73\x61\x0c\xce\xa1\x05\x2f\x88\xf3\xa9\xea\xb7\x30\xa3\x91\x70\xc8\x1b\x29\xd6\x7e\xd0\x91\xd8\xab\xf7\xe2\x71\x17\x9c\xdc\xaf\xbe\x7c\x8b\xf0\x9d\xce\x69\x84\xaf\xba\xde\xf5\x5e\xe6\x11\x0f\x42\xb7\x86\x19\x9d\xee\x9a\x53\x48\x44\x53\xdc\x93\x3e\x9d\xae\x0d\xc1\x31\x7c\x8a\xfa\xf4\x4e\xb3\xa4\xd3\xb3\x45\x51\x53\x91\xad\xfb\x63\x79\x5d\x34\x47\x0d\x1e\xd9\xaf\xc2\xb8\x93\x11\x38\xb0\xe4\x28\x81\x19\x30\x74\x6b\xa8\x90\x71\x98\x4d\x9b\xaa\x3a\x96\x27\x20\x16\x68\x5b\x7d\x89\x04\x34\x5f\x61\xa3\x80\xd7\x78\x07\x18\x77\xab\x83\x0b\x3c\x20\x85\x06\x07\xe1\x3e\x9b\xfe\xfa\xee\xed\xeb\xd3\x69\xaf\xa4\x31\x25\x3f\x08\xfa\x70\x46\x5b\xce\x7b\xc1\x1f\xe6\x00\xa5\x70\xf9\xec\xd9\x37\xd1\xb3\xf9\xb7\x67\xf6\x41\x74\x4f\x49\xee\x56\x87\x90\x2e\xa4\x6c\x75\x38\xf2\xf1\xf8\x83\x08\x02\x72\x5b\x9f\x56\x2f\x0f\x65\x51\xee\x4e\x75\xb6\x39\x92\x7a\x37\xfa\x20\x58\x03\x0f\xf2\x0f\x02\xb2\xa9\xca\x1a\x39\x24\xec\x79\x6e\xb0\x02\x45\x41\x59\x72\xdb\xca\x82\xc7\xc2\xd3\x60\xb5\x41\xd6\x63\x05\x76\xfd\x6a\xb9\x50\xd5\xab\xab\x70\x05\x64\x90\x21\xba\xde\x31\x01\x9a\xad\x40\xb9\x4c\x5e\x1d\x4b\x70\x0f\x85\x88\xc5\xe3\xf1\xb6\x39\x14\x72\x05\xb8\x5b\x1d\xd0\x98\x68\x4f\x02\xdc\xc4\x55\xb2\x4c\xb9\x93\x90\x2c\xd3\x85\x30\xa6\x8d\x20\x58\x4d\xbb\x66\x91\xa1\xb4\xd0\x3e\x22\xdf\xe9\x7c\x61\xdb\x96\x09\xf9\xf5\x42\x75\x50\x59\x5c\x00\xf7\x67\xda\xb6\xe1\x60\x3a\x27\x7e\x8f\x2a\x7c\x52\xa8\x76\x49\x57\x7d\xc9\x7b\xc9\x80\xd5\x73\x91\x0f\xed\x05\xce\xc8\xc9\x91\x75\x87\xaf\xa6\xcd\x6e\xd3\x64\xf8\x03\xa4\x13\xf8\x05\xb2\x2a\xfc\x02\x91\x0f\xc4\x1c\xf4\x2e\x03\xc7\x42\xa6\xc4\x70\x60\xbd\x5e\x69\x09\x3d\x52\xe2\x0d\xa4\xea\xa8\x11\xa3\xe0\xaf\x94\x44\x12\x57\xe1\x9c\xa9\x9c\x34\x92\xbd\x88\xe9\x6c\xe5\x08\x3f\xf2\xc6\x7b\x91\xe8\xa4\xb4\x6d\x07\xb3\xa1\x49\x16\x68\x4e\x56\xe6\xbc\x45\xe9\xce\x70\x87\x0e\x78\x09\x39\x39\xcb\xbb\x53\xfc\x20\xea\x5d\x76\xb8\x8f\x6c\xf2\x39\x7a\x00\xe3\xad\x9f\xf1\xcc\x56\xd3\x41\x6b\x5d\x28\xc5\x17\x79\x57\xb5\x64\x1e\x52\xe6\xb6\x67\x1e\xea\xaf\xb5\x31\xd2\xa6\x8d\x63\xdb\xda\x45\x34\xd8\xde\x4e\xa7\x49\x41\x74\xe5\x08\xe1\xc0\x10\x35\xa8\x6d\xe4\x41\x50\x00\xb6\x34\xcb\xe5\xfb\xb1\xb7\x50\xc9\x58\xa1\x7e\x21\x3c\x45\x16\xcf\x58\x11\xba\x4a\xab\x1d\xb5\x22\xd4\x41\xb5\xa3\x3e\xf7\x8c\x6c\xf0\x9a\x3c\xd4\x61\x29\x9e\x51\x3a\x74\x87\x5f\xe6\xce\x00\x40\x4c\xd0\x1b\xd2\x14\x65\x0f\x8e\x87\xbe\x9e\x51\xd9\x1c\x57\x60\x16\x75\x2e\x61\x0f\x15\xd8\xc8\x3b\x77\x78\x24\xbd\xcc\xb7\x83\xe9\x77\x17\xf6\x8e\x77\x3c\xa1\xde\x36\xfb\x2c\xc2\x38\x92\xa5\xb6\x32\x23\xc5\x64\x38\x93\xf0\x0e\x12\xe0\x48\x40\x15\x33\xbc\xd5\xa3\x0c\xf5\xea\x26\xdb\x00\xe4\xcf\x60\x63\x19\x11\xcc\xdb\x73\x0d\xad\x34\x1a\x59\xb0\xe1\xc0\xdc\x32\xbe\xa4\xac\xdf\xa8\x08\xca\x22\x85\x3b\xdb\x98\x76\x31\x1e\x7c\x07\x1c\x60\x7a\x26\x44\x15\xc4\xb3\x78\x7c\x25\x96\xa2\x05\x79\x8e\xa5\x7d\x47\x28\xfa\xf3\x3c\xa8\xc3\xa6\x28\x53\x5d\xfa\x12\xaf\xd9\xf1\x90\x47\x99\x5c\x9a\xcf\x74\xda\xec\x42\x22\xa7\xc8\x48\xa9\x41\xfe\x22\x25\xb4\xab\xa0\x76\xae\x67\x59\x10\x54\xa1\xb3\xa8\xa0\x7a\xf6\xed\xfc\x5b\xd8\xc2\xf0\x52\x7e\x6a\x01\xc6\x06\x0f\x26\x47\x48\x81\xef\x6b\x23\x56\xb9\xc0\xfc\x53\xf0\x24\x65\x3f\x0b\x3e\x0b\x39\xfd\x1c\x87\x31\x0f\xda\x27\xb4\xfd\x1c\xa3\x13\xa2\x33\x1e\xa5\xaa\xb1\x8f\x48\xae\xce\x24\xf0\x94\x69\xaf\x8f\x28\xfa\x04\x2b\xff\x14\xe8\xd1\x0d\x8a\x0f\xc6\x40\x4c\xc8\xef\x68\xf4\xf2\x04\xe3\x0c\x5c\x2e\xb2\xc1\x71\x21\xdf\x01\x07\x51\x7b\xc2\xbc\x58\x93\x0e\x75\x98\x98\x42\x26\x0d\x01\xf7\xb3\xb2\xb8\xc1\x9e\x48\x63\x72\x7d\xd8\x90\xa8\x17\x6e\x26\x94\x4d\x0b\x4c\x8f\xe2\x7f\x6a\x7a\xb4\xef\x04\xd3\x60\x10\x10\xf9\x17\xc3\x97\x57\x6d\x4b\xf0\x2b\x80\x68\xd8\xf3\xe7\xd0\xc6\x79\xfd\x0d\xba\x45\x3b\xbe\x79\xfe\x4d\x1a\x77\x12\x42\x29\xc3\x7a\x29\x6c\x15\x8b\x64\x95\x72\xf9\x9f\x31\x4a\xfe\x2c\x18\x79\x72\x49\x26\xa5\xc9\xae\x9b\x0c\x9a\xca\xb1\x7d\xea\xa6\xd3\x06\x4b\x95\x1d\x3d\xff\x60\x53\xb7\xde\x01\x6a\x6a\xe1\x89\x61\xca\xfb\xa7\x37\x4b\xeb\x0c\x5a\x4e\xc8\xe8\x36\x3b\x8e\x76\xcd\x69\x24\xc7\x12\xd8\x34\x96\xc9\x3c\x3d\x33\xbf\x61\x38\x2a\xb7\x80\xe2\x5d\xa6\x4c\xfe\xe7\x31\x16\x70\xe3\x7e\x7d\x66\xc5\x00\x20\xb6\x59\x3e\xaa\x18\x1c\xa7\x2d\x02\x49\x58\xd2\x08\x8b\x03\x07\x4a\xf8\x78\xbf\xe9\xf3\x4e\x53\xca\xb1\x7c\x7d\x5c\x85\x25\x05\x12\x3c\xaf\x67\x2a\x2a\x67\xe9\x12\x14\xac\x25\xaf\x2c\xa7\x86\x5e\x70\xc0\x41\x1b\x4f\x25\x5e\x7f\x02\x50\x11\xa8\x76\x0f\xaa\x8d\x17\xd3\x7a\xbb\x47\x1d\x0b\xc6\xda\xc0\x43\xa1\x1c\x97\x52\x09\xb0\xc8\x3c\x0e\x9d\xf6\x73\x39\x2c\xbf\x7b\x3e\xc3\x3f\xee\x05\x61\xcf\x70\x21\x35\xfa\x80\x12\xb1\xcf\x10\x09\x01\x87\xb9\x50\x46\xd7\xe8\xe0\xc4\x62\x5b\x84\x4b\x35\x66\x93\x74\x31\x18\x6d\xae\x0e\x53\xc7\x97\xd4\x1e\xa0\x9a\x38\x91\xb6\x0d\x87\x5a\x23\x0e\xc5\x5f\xfd\x7e\x60\xda\xea\x9c\xf2\x88\xec\x58\x02\x42\x2b\x9c\xeb\x14\xc6\xb5\x1a\x0f\x78\x44\x7f\x7d\x2c\x29\x8d\x04\x2f\x28\xab\xf8\xdf\xf0\x4c\x13\x58\xe8\xc6\x79\x10\x24\x29\xab\xe2\xa4\xfb\x8a\x2a\xb9\x4c\x29\x30\x3b\x36\x88\xae\x2f\xd8\x12\x06\xc3\xd2\x50\xe7\x1d\xc2\x25\xb5\x6b\xf8\x61\xba\x2d\x0f\xcb\x32\x94\xc5\xb9\x7a\x98\xb6\x1e\x80\xac\xf4\x28\x64\x0d\x5b\x22\x71\xc8\x8a\x67\x2e\xda\x80\x45\x4e\xc7\x10\xb5\x42\xe3\x0a\x68\x72\xdf\x15\xa5\x4c\x2a\xec\x78\x35\x67\xf2\xba\xeb\xe4\xeb\x1f\x76\x47\x62\x00\x1e\x18\x78\x59\x38\xf9\xf0\xfe\xe3\x27\x39\x3d\x4d\x80\x83\x1c\xfb\x3d\x7b\x8a\x5c\x2e\x3b\x26\x15\x74\x9f\x50\x7e\x24\xb4\xc3\x41\x90\xd1\x87\xca\xce\x5e\xb6\x9c\xca\xdc\x61\x11\xcb\x6d\xb5\xa8\x6f\xe4\x9e\xaa\xb4\x71\x67\x64\x42\x3c\x6e\x55\xef\x8a\xb0\x40\xd5\x59\x4f\xf9\x3c\x08\x7c\x53\xd5\xb2\xa7\x1e\x7b\x08\x92\x55\xdb\x3a\xce\x49\x20\x45\x0b\x96\xa5\x40\x44\xa2\x8c\x17\xc6\x20\x66\x4f\xc5\x98\xb5\xd6\xb1\x8e\xa9\xcf\x35\x1a\x7a\xe6\x44\x66\x2d\xe8\x7d\x32\xc7\x6e\x5c\x89\xaf\xf6\xc3\x2e\x97\xd1\x01\x65\x5d\x41\x41\x16\xc3\xb6\xae\xe5\xa1\xdc\x87\x06\xa7\xd4\xb3\xa6\xa8\xf5\x02\x36\x20\xe4\x08\xd0\x4b\x80\xb5\x96\x7f\x14\x1d\x2b\x8d\x8a\xb0\xca\x68\x9c\x45\xff\xc6\xbb\xec\xac\x4e\x04\xdc\xf9\xa0\x94\x7a\x08\xef\x78\x0f\x3f\x1f\x07\x64\xb2\x0e\x15\x0e\x1b\xb2\x22\xdd\x26\x94\x6d\xb8\x5c\xb1\xd9\x96\x3f\x9c\x17\x44\xea\x02\x75\xae\xf9\x4b\x34\x57\x89\xce\xcd\xc9\xa1\xdc\x64\xa7\xfa\x46\x4e\xff\x15\xdf\xa8\x5a\x84\x88\x48\xac\x8a\x06\x1b\x2b\xab\x6d\xc2\x06\xd8\x17\xd9\x9a\x87\x96\xe1\x5b\x51\x99\x54\xf5\x1d\x20\xd4\xf1\x2b\x0a\xa7\x81\xb5\x2b\x07\x5c\x9f\x1a\x08\x0e\x65\xeb\x38\x2c\xf8\xc6\xd4\x22\x04\x06\xcb\xe9\xa9\xd9\xb3\x52\xae\x3e\x65\x75\xa2\x51\xb8\x74\xa9\x40\x2b\xda\xb6\x73\x56\xba\x49\xb5\x4c\xea\x4d\x4f\x30\x8c\x0b\x0d\xfb\x9e\x7b\x68\xc9\x2b\x4a\x35\x29\xac\x98\x02\x9a\x6c\xb8\x95\x7f\xf1\xea\x62\x25\xff\x9f\x2c\x6d\x16\x59\x11\xc8\x23\x7f\xa8\xeb\x8b\x15\xfc\x91\x9b\x38\xb9\x3e\xca\x85\xbd\xde\x8d\x44\x2c\xa6\x70\xa1\xdf\xbb\xa5\xd1\x06\x5a\x6b\x8b\xcc\x5a\x8e\xb9\xb3\xe9\x76\x2e\xfd\x1a\x5e\x83\x95\xe2\xc1\xcc\x37\x64\xb1\x83\xf9\x80\xa5\x4e\xcd\xe0\xd1\xe8\xb9\x42\x47\x2a\x1b\xa0\x1a\x37\x3a\xcd\x3a\x4e\x3e\x66\x43\x92\x1d\x55\x3d\x46\x8f\xc9\x0a\x64\x9c\x02\x58\x72\xb0\x46\xc5\x80\x6f\xec\x93\xed\xe7\xfc\xa3\x08\xa5\xcc\xc3\xcb\x69\xa1\x12\xd5\xb6\xc0\x1e\x4e\xcd\x3e\x82\x9e\x9f\xe4\xd3\x7d\xb6\x2c\xff\x03\xab\x7f\x21\xa6\x39\xbc\xe8\x53\xb3\x67\xb2\xbd\x23\x1c\x16\x2a\xd7\xaf\x9d\x5c\x6f\x81\xa6\x33\x2a\x68\x04\x05\xce\xf1\x91\xf9\xf9\xcc\x0c\x17\xbd\xb3\x9e\xd5\x95\xb1\xe9\x6a\x94\x57\x66\x82\xf6\x58\xc1\xfd\x32\xb4\x83\xb2\x19\xd9\x38\x0d\x72\x77\xca\xc5\x82\xe7\x8f\x35\x52\x14\xaa\x30\x03\xec\xa2\x0f\x68\x91\x94\xcd\xe1\xa4\xc2\x86\x67\x01\x05\x65\x3d\x70\x13\xa0\xe0\x3f\x9c\x99\x6c\x54\xd7\x0f\x1b\x4d\x4d\x49\xc8\x8f\xfc\xa3\x9f\x9a\xbd\x21\x36\xa7\x5e\xd3\xf5\xf3\xca\x66\xb3\x99\xcf\x14\xbb\x03\x27\x03\x94\x7f\x61\xbe\x15\xc9\xc8\x3e\xc9\xf5\xdb\x94\xab\x26\x04\x16\xdf\xcd\x0a\x0c\xad\x18\xdf\x78\x66\xee\xa7\xff\x97\xc2\x3d\x7a\x0d\xa7\x0d\xed\xe0\x02\xa2\x57\xb6\x81\x45\x10\xcc\xee\xde\x83\x7a\x05\x6f\xdb\x7d\x76\xf6\x11\x8e\x0d\xa3\x5e\x44\x9c\xd1\x45\x98\x61\xe0\xc3\x74\x35\x36\x1f\x89\xf1\xf3\xb2\xc8\x6d\x62\xd1\x83\x26\x2e\xbe\x42\x99\x0a\xe7\x41\x48\xdb\x0f\xdb\xc8\xa2\xbb\x00\x94\x71\x15\x57\x89\x48\xa3\x2c\x29\x52\x70\x85\x0f\xab\xb8\x32\x2c\x81\x61\x1e\x57\xee\xdc\x88\x4a\x96\xc7\x65\x54\xb9\xb3\x8a\xc2\xb3\xbc\x04\x2a\xd4\xa2\x87\x34\xd8\x85\xa9\x96\x7b\x35\x2c\xf5\x5f\xe7\x52\x06\x52\xdf\x7d\x7d\x57\x6e\x3e\xa8\xe6\x67\x7e\xbc\xa7\x1b\x06\xab\xe8\xdc\x85\x65\xa6\xcf\x29\x2a\x18\x76\x33\x48\x44\x0a\x84\xbb\x51\x7e\xa6\x4e\x37\x29\xc2\x75\x43\xf4\x0c\x23\x37\x52\xdc\x71\x7d\x58\x68\x7c\xc8\xf0\xf3\x82\x9c\x4f\x26\x99\xb6\xd5\x44\x82\x11\x12\x91\xe6\xfa\x04\xc9\xe7\x0e\x7a\x2f\xf4\x5d\xe1\xf4\x9d\xb5\x22\xf3\x6e\xbb\x49\x91\xdd\xc1\xde\x36\x82\x7e\x29\xb7\xd4\x1c\x20\x57\x91\x10\xa1\x42\x5f\x67\xcd\xec\x17\x69\xca\x7c\xd3\xd9\xdd\x61\x01\xb0\x10\x6a\x58\x2c\xfa\x72\x85\xa0\x31\x38\xf5\xdb\x2d\x16\x3f\x87\xc6\x22\x31\x1f\x9c\x46\xc2\x2c\xbb\xdd\xf5\x37\x21\xb8\x7e\x42\xb6\x7f\x03\xd9\x46\x0b\x28\x71\x58\x71\xd1\x5b\xaf\x0d\xcd\x91\x00\x35\x0a\x54\xd7\x66\xb3\x91\xcf\xb3\xca\xbb\xd2\x19\x70\x0e\xea\x0c\xfe\x95\x7d\x39\xd5\xc1\x1d\x30\xd0\x71\x3e\xcb\x8f\x5f\x51\x43\x9d\x89\x10\x19\x2b\x7a\x96\xaa\x43\x5c\x46\xda\xbb\x00\xd0\x92\x3b\x31\xc1\xa2\x76\xcd\x4e\xfe\x01\xb0\x16\x10\x33\x15\x30\xce\x72\x38\x46\xea\x3d\xd2\x79\xa0\xaa\xcc\x13\xf4\xcc\x34\x5a\xc2\x9f\xd0\x49\xa0\x1c\xaa\x68\x21\xae\x77\x8f\x3c\x65\x9e\x01\xfc\xd6\xce\xe0\x8a\x9d\xd7\x93\xa7\x4f\x89\x3a\xb4\x93\x09\x82\x65\x6d\x2b\xd3\x58\xae\xa6\x2e\x48\x47\x7f\xff\xf8\xfe\x27\xee\xfa\x1d\xeb\xb7\x59\xfd\x04\x91\x84\x83\x00\xff\x4e\xb3\x6d\xa1\x7f\x87\x04\xbd\x6b\x09\x4b\xd2\x01\xa6\xec\x83\x92\x26\x3e\x09\x9e\x4d\xd7\xff\x94\x39\xd9\x2f\xf2\xf7\x13\x3b\x3c\x77\xcd\xcb\x66\x57\x6d\xea\xfc\xc4\x87\x24\xe8\xe9\x13\xb9\x62\x83\x2c\xfa\x84\xff\x22\x90\xdb\x41\x95\x65\xee\xa8\xcb\x4f\x82\xb2\xc3\x99\x09\x40\x9d\x51\x69\xf2\xb1\x83\x4c\xa6\x8b\x7f\xf9\x3f\x01\x00\x00\xff\xff\x6b\x74\x6b\xae\x4f\x51\x01\x00") + +func staticJsJqueryMinJsBytes() ([]byte, error) { + return bindataRead( + _staticJsJqueryMinJs, + "static/js/jquery.min.js", + ) +} + +func staticJsJqueryMinJs() (*asset, error) { + bytes, err := staticJsJqueryMinJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/jquery.min.js", size: 86351, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsScriptsJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\xdf\x6f\xdb\x38\x12\x7e\xcf\x5f\x31\xdb\x16\x90\x5c\xa8\xaa\xeb\xdb\xf6\x8a\x14\x79\x50\x6c\x3a\xe6\x9d\x23\xf9\x24\x39\xd9\x3c\xdd\x2a\xd2\xc8\x26\x2a\x8b\x2e\x49\x25\xe7\x5b\xe4\x7f\x3f\x90\x92\x1d\xf9\x57\xe2\x2e\xb0\x6f\x87\x02\x8d\xcc\x1f\xdf\xcc\x7c\xf3\xcd\x90\xfc\xf8\xfe\xc3\x19\xbc\x87\x3e\x5f\xae\x04\x9b\xcd\x15\xd8\xfd\x0e\xf4\xba\x9f\xfe\xee\xc0\x0d\x83\x2b\x81\x2b\x3d\xed\x15\x05\x98\x69\x09\x02\x25\x8a\x07\xcc\xdc\x33\x78\xaf\xa7\x42\xcc\x98\x54\x82\xdd\x57\x8a\xf1\x12\x92\x32\x83\x4a\x22\xb0\x12\x24\xaf\x44\x8a\x66\xe4\x9e\x95\x89\x58\x41\xce\xc5\x42\x3a\xf0\xc8\xd4\x1c\xb8\x30\x7f\x79\xa5\x34\xca\x82\x67\x2c\x67\x69\xa2\x31\x1c\x48\x04\xc2\x12\xc5\x82\x29\x85\x19\x2c\x05\x7f\x60\x19\x66\xa0\xe6\x89\x02\x35\x47\xc8\x79\x51\xf0\x47\x56\xce\x20\xe5\x65\xc6\xf4\x26\xa9\x51\xf4\xbe\x05\xaa\xf3\xc6\xb5\x4f\xee\x8e\x77\x12\x78\xbe\x76\x2b\xe5\x19\xc2\xa2\x92\x0a\x04\xaa\x84\x95\x06\x38\xb9\xe7\x0f\x7a\xaa\x21\x43\x83\x00\x40\xc9\x15\x4b\xd1\x01\x35\x67\x12\x0a\x26\x95\x86\x79\xb6\x6c\x22\xdc\x76\x2b\x63\x32\x2d\x12\xb6\x40\xa1\x69\x82\xde\xbe\x23\xac\x6c\x93\xb2\x76\x64\x29\x78\x56\xa5\xf8\x17\xf9\x02\x75\x94\x0d\x52\xc6\xd3\x6a\x81\xa5\x4a\xd6\x79\xfb\xc8\x05\x70\x35\x47\x01\x8b\x44\xa1\x60\x49\x21\x9f\xb9\x37\x39\xd3\xc0\xed\x30\xd6\x1a\x88\x47\x34\x82\x28\x18\xc6\xb7\x5e\x48\x80\x46\x30\x09\x83\x1b\x3a\x20\x03\xb8\xbc\x03\x6f\x1a\x8f\x82\x10\x3c\x7f\x00\xfd\xc0\x8f\x43\x7a\x39\x8d\x83\x30\x82\xdf\x7f\xf7\x22\xa0\x91\x65\xe9\x29\x23\x32\xff\x0e\xc8\x6f\x93\x90\x44\x11\x04\x21\xd0\xeb\xc9\x98\x92\x01\xdc\x7a\x61\xe8\xf9\x31\x25\x91\x03\xd4\xef\x8f\xa7\x03\xea\x5f\x39\x70\x39\x8d\xc1\x0f\x62\x18\xd3\x6b\x1a\x93\x01\xc4\x81\x03\xf1\x88\x68\xa0\xfd\x9d\x10\x0c\xe1\x9a\x84\xfd\x91\xe7\xc7\xde\x25\x1d\xd3\xf8\xce\x38\x34\xa4\xb1\xaf\xcd\x0d\xb5\x83\x30\xf1\xc2\x98\xf6\xa7\x63\x2f\x84\xc9\x34\x9c\x04\x91\x41\xd3\x21\x0d\x68\xd4\x1f\x7b\xf4\x9a\x0c\x5c\xa0\x3e\xf8\x01\x90\x1b\xe2\xc7\x10\x8d\xbc\xf1\x78\x1d\x61\x10\x6e\x07\x78\x49\x60\x4c\xbd\xcb\xb1\x41\x31\x16\xfc\x3b\x18\xd0\x90\xf4\x63\x1d\xc9\xf3\x57\x9f\x0e\x88\x1f\x7b\x63\x07\xa2\x09\xe9\x53\xfd\x41\x7e\x23\xd7\x93\xb1\x17\xde\x39\x0d\x6c\x44\xfe\x35\x25\x7e\x4c\xbd\xb1\x46\x1b\x78\xd7\xde\x15\x89\xc0\x7e\x85\x90\x49\x18\xf4\xa7\x21\xb9\xd6\xbe\x06\x43\x88\xa6\x97\x51\x4c\xe3\x69\x4c\xe0\x2a\x08\x06\x91\x86\x0a\x42\x88\x48\x78\x43\xfb\x24\xfa\x06\xe3\x20\x32\x5c\x4d\x23\xe2\xc0\xc0\x8b\x3d\x63\x7e\x12\x06\x43\x1a\x47\xdf\xf4\xf7\xe5\x34\xa2\x86\x32\xea\xc7\x24\x0c\xa7\x93\x98\x06\x7e\x47\x03\x8d\x82\x5b\x72\x43\x42\xe8\x7b\xd3\x88\x0c\x0c\xbd\x81\x6f\x62\x8e\x47\x24\x08\xef\x34\xae\xe6\xc3\xb0\xef\xc0\xed\x88\xc4\x23\x12\x6a\x3a\x0d\x6b\x9e\xe6\x22\x8a\x43\xda\x8f\x35\x5a\x6b\x65\x10\x42\x1c\x84\x71\x2b\x58\xf0\xc9\xd5\x98\x5e\x11\xbf\x4f\xf4\x6c\xa0\x81\x6e\x69\x44\x3a\xe0\x85\x34\xd2\x0b\x68\x6d\xf9\xd6\xbb\x33\x31\x4e\x4d\xf8\xf1\x88\xe8\xc8\xea\xcf\x96\x62\x1d\x93\x4d\xa0\x43\xf0\x06\x37\x54\x3b\xdf\x2c\x9e\x04\x51\x44\x1b\xb9\x04\x43\x8d\x14\x4d\xfb\xa3\x86\x7d\x2d\xfe\x8f\x67\x67\xef\xec\x75\x21\x75\x5c\x81\x49\xb6\xb2\xf3\xaa\x4c\x75\x75\xd8\x1d\xf8\xe3\x0c\xe0\x9d\x6d\xbd\x15\x38\xb3\x3a\x6e\x5a\xb0\xf4\xfb\xee\x34\x40\xc1\x93\x0c\x85\xdd\xf9\x66\x7e\xbd\xb3\x2d\xb7\x1e\x01\x57\x56\x69\x8a\x52\x5a\x1d\x77\xce\x32\x3c\xb4\x22\x4f\x58\x51\x09\xdc\x5f\xa1\x4d\x32\xa9\xf4\x9a\x0c\x65\x2a\xd8\x52\xdb\xb4\x3a\xae\xc2\xff\x28\xdb\x22\xa5\x9e\x4a\xa0\x64\xe9\xf7\x32\x59\xe8\x7e\x21\x60\xc5\x2b\x01\xd3\xde\x10\x24\xa6\x95\x60\x6a\x05\xdf\x71\xe5\x5a\x9d\x0d\x66\xce\x0a\x85\xc2\xea\xb8\x79\x92\x21\x2d\xed\x4f\xdd\xae\xb1\xf8\x64\xfe\x7f\x5e\x71\x5e\x72\x65\xbb\xbc\xec\xec\x07\x8d\xeb\xa8\x59\x0e\x36\xba\x2a\x11\x33\x54\x70\x71\x71\x61\x3a\xda\x7a\xb2\x1d\xa4\xa5\x79\x5d\xf0\x07\xec\x17\x89\x94\xb6\x95\xb3\x92\xc9\x39\x66\x8d\x5f\x3b\x9e\x1d\x59\xfa\xed\xd0\x5a\x1d\x45\x50\xa9\x4d\x18\x00\x4f\xed\x60\xdc\xb4\xe0\x12\x8f\xe7\xed\x64\x17\x4f\x77\xf0\x45\xf7\x6a\xc7\x34\x6f\x7a\x99\x64\x33\x9d\xce\x02\xcb\x99\x9a\xaf\x5d\xd2\x83\x6d\x11\xe8\xdf\x87\x05\x30\x11\x28\xa5\x69\xe8\xf7\x95\x52\xbc\x04\x5e\x1e\xce\x3f\x28\x0e\x05\x9f\x01\x2b\x4f\x52\xc2\x99\xf6\x72\x4d\xd5\x46\xda\xeb\x42\x78\xe6\x2b\x95\xd2\xae\x7d\x4e\x4a\xb6\x30\x67\xd0\x39\x58\x96\x63\x86\xac\x0f\x8f\x78\xff\x9d\xa9\x0f\x9b\x39\x4b\x4f\x6e\x38\x58\x6b\xdb\xee\x9c\x9d\x22\xf6\x9f\x8a\x75\x03\xc5\x54\x1d\xf0\xb6\xdb\x4c\xa4\x05\x4e\x04\x9f\x69\x4c\xfb\xb5\x79\x4b\x60\x26\x92\xc7\x57\x71\xf6\x98\x58\x97\x41\x56\x89\x66\xe4\xd7\x6e\xd7\x69\x06\x31\x91\xac\x9c\x9d\x83\xb5\x8d\x42\xcc\xb0\x55\x0b\xb9\x5e\xfb\x90\x14\x15\x9e\x43\xd7\xed\x7d\x76\x1a\x81\xfc\x17\xcf\xe1\xf3\x97\xfa\x97\x9a\xeb\xf2\x47\x29\xcf\xe1\x6b\x3d\x82\x8b\xa5\x5a\x0d\x59\x51\x9c\x83\xf5\x36\xeb\xe9\x7f\x4d\x4e\xf2\x66\xb0\xdb\xfd\xf2\x25\xfd\xda\x0c\x6e\x3c\x8e\x54\x22\xd4\x4d\x6d\xcd\xed\x7d\x6e\x32\xf5\xb4\xab\x84\xa8\x6e\x68\x2d\x41\x1c\x6a\x60\xaf\x33\xd5\xc4\xf5\xa9\xe5\x9a\xf5\xb6\x9b\xa6\x5f\xbb\xdd\x5a\x25\x2e\x2f\xed\x86\x9e\x67\x11\x7d\xc0\x32\xb3\x1c\x38\x50\xc8\xa6\xf7\xb8\x3c\xcf\x8f\x6c\x6a\x4a\xaa\xae\xbd\x7a\xf1\x3c\x91\x7b\x45\xdc\x6e\x5f\xf5\xaa\x83\xde\xef\xe4\x3a\x4f\x0a\x89\xcd\xc4\x53\xab\x53\x35\x08\xc7\xb6\x59\x25\x2f\xd1\x72\x36\x53\x87\x8b\xc6\x2c\x3a\x0e\x3e\x67\x45\x26\xb0\xb4\xad\xd6\x59\x23\xe7\xfc\xd1\xde\xea\x98\x2f\x97\x57\x93\xd4\xbc\x2a\x8a\xd5\xa6\x7c\x30\x3b\x5c\x62\xbf\x1c\xe9\xc5\x49\x96\x1d\xeb\xef\x12\x55\xcc\x16\xc8\x2b\xb5\xdf\x83\x9f\xb3\xd2\xc2\x7a\x39\x35\x27\x1c\x03\xeb\xa3\xe0\xf4\xa3\x68\xbd\xef\xc9\x81\x5e\x77\xef\x38\xd9\xab\x83\x61\xad\x7a\x1b\x85\xe0\xa2\xcf\x33\x7c\x2e\x88\x43\x67\xfe\x9f\x2c\x08\x4c\x74\x01\xff\xbf\x20\xfe\x5c\x41\x3c\x77\xa6\xed\x82\x30\x17\x97\x75\xde\xe0\xe2\x02\x7a\x9f\x3f\xb7\xd5\x75\xca\x79\xc4\xef\x0b\x5c\xe8\x67\x5b\x89\xa9\xd2\x8f\x34\xc5\xc1\x3c\xab\x85\xdb\xd2\x12\x60\xa1\x5f\xd2\xbb\xf6\x7e\xfd\x39\x6b\x7b\x87\x5c\x52\x98\x7b\x6a\xab\x54\x4f\x30\xfa\x93\x21\xea\x82\xcd\x80\x57\x0a\x1e\x13\x66\x22\xd4\x17\xcc\x7d\x57\x8c\xee\xf6\xcd\xff\x8c\x29\x5d\x4b\x98\x6d\x1d\xdd\xc7\x2e\xb2\x1b\x2b\x3f\xd5\x81\x0e\x54\x71\x3a\xc7\xf4\x3b\xd1\xfc\xd8\x02\xe5\xb2\xe6\x46\x73\xf6\x8b\x6d\x6d\x68\xb3\xf4\x7b\xdb\x4c\xaf\xb9\x13\xa8\x2a\x51\xd6\xfa\xae\x6f\x4b\xf5\x2e\xbd\xc8\x6d\xd3\x7d\x01\xdd\x97\xf6\x6c\xf5\x83\x43\x7e\xeb\x85\xdb\x9d\x66\xdb\x44\x73\x8b\x32\xc8\x4a\x54\xb8\x15\x5c\xd5\xcb\xc3\x8d\x34\x76\xe2\xdb\x0d\x7c\xdb\xcb\x8d\x7f\xee\x92\x4b\x65\x5b\x1f\xd7\x19\x09\x51\x2e\x79\x29\xd1\x72\xe0\x1f\x51\xe0\xbb\x52\x09\x56\xce\x58\xbe\xaa\x51\x0e\xb6\xa0\x13\x42\x84\xdd\x6b\x45\x7d\x4d\x36\xa5\xfb\xca\x7d\xfd\x35\xc8\x17\x78\xdb\xd1\xc2\xf3\x65\xb4\xee\xe1\xee\x0c\x95\x0e\x72\x2b\xfc\x1f\x15\x4a\xd5\x6e\xb5\x02\x7f\xac\xfd\xaa\x7a\xb9\xbb\x01\x11\xf8\xc3\x4d\x96\x4b\x9a\x39\xa0\x3f\x77\x10\xe4\xf6\x28\x66\xff\xc4\x95\x74\xb6\x33\xe6\xc0\xdf\xba\x7f\x01\x11\xba\xcb\x1d\x88\xbe\xea\xe5\x11\x9b\x95\x27\x0b\xe5\x91\x95\x19\x7f\x74\xf9\x12\x4b\xfb\xcd\xc7\x37\xce\x9b\x7f\x4b\x2c\xf2\x37\x8d\xc9\x5a\x46\xbb\x2a\x2a\xf8\x8c\x95\x96\x03\x7f\x58\xfa\x3d\x93\x28\xdd\x95\xcf\x0f\x0a\xe9\xa9\xc5\x70\x96\xa8\xe4\xb0\xd5\xa5\xe0\x39\x2b\x70\xdb\xf8\x51\xb6\x5e\xf2\x78\x87\x8c\xfa\xf9\x65\xf6\xa5\xbc\x94\xbc\x40\xb7\xe0\x33\xbb\x4e\xc7\x43\x22\x74\xf2\xe0\x42\x07\x96\x08\x89\x46\x24\xba\x05\xa5\xf3\xa4\xd0\xef\x38\x73\x0b\x56\x8b\xc2\xee\x98\x0d\x6d\x88\x4f\x7b\x23\x1b\xa1\x98\x19\xad\x21\x63\x7d\x47\x3f\x1b\xe8\xa3\xc2\xa9\xb3\xd7\x88\xe6\xe9\xec\x7f\x01\x00\x00\xff\xff\xd1\x1f\xaa\xce\x10\x16\x00\x00") + +func staticJsScriptsJsBytes() ([]byte, error) { + return bindataRead( + _staticJsScriptsJs, + "static/js/scripts.js", + ) +} + +func staticJsScriptsJs() (*asset, error) { + bytes, err := staticJsScriptsJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/scripts.js", size: 5648, mode: os.FileMode(420), modTime: time.Unix(1496403609, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticJsU2fApiJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7c\x6d\x77\xdb\xb6\x92\xff\x7b\x7d\x8a\xa9\xff\xe7\x94\x52\xa2\x50\xb6\xef\xbd\x6f\xe4\x2a\xb9\x8e\xad\x24\xea\x75\xec\xfc\x25\xb9\xdd\x3d\x39\x3e\x3a\x10\x09\x49\x48\x28\x80\x05\x40\xab\xda\xc4\xdf\x7d\x0f\x1e\x08\x82\x0f\x72\x64\x27\xe9\x6d\x77\xb7\x2f\xea\x98\x04\x06\x33\x83\xc1\x6f\x1e\x30\x74\xaf\x77\xc6\xd2\x2d\x27\xcb\x95\x84\xe3\xc3\xa3\xbf\x3f\x3b\x3e\x3c\xfa\x07\xbc\x66\x6c\x99\x60\x18\xd1\x28\x84\xd3\x24\x01\xfd\x5e\x00\xc7\x02\xf3\x5b\x1c\x87\xad\x56\xaf\x77\x2d\x30\xb0\x05\xc8\x15\x11\x20\x58\xc6\x23\x0c\x11\x8b\x31\x10\x01\x4b\x76\x8b\x39\xc5\x31\xcc\xb7\x80\xe0\xe5\xe4\xfc\x99\x90\xdb\x04\xb7\x7a\xbd\x84\x44\x98\x0a\x0c\x72\x85\x24\x44\x88\xc2\x1c\xc3\x82\x65\x34\x06\x42\x41\xae\x30\x5c\x8c\xce\x86\x97\x93\x21\x2c\x48\x82\x81\x71\x40\xb2\xd5\xeb\xad\xa4\x4c\x45\xbf\xd7\x8b\xf1\x2d\x4e\x58\x8a\xb9\x08\x97\x9a\xc3\x30\x62\xeb\x1e\x4b\x31\x7d\x66\x38\xc8\xe9\x8b\xde\x5c\xc4\xad\x56\xef\xc9\x93\x16\x3c\x81\x7f\x2a\x62\x8a\xa5\x5b\x82\x37\x30\x5d\x61\xb8\x3e\x7e\x05\x28\x25\x61\x0b\x9e\xf4\x5a\x41\x26\x30\x08\xc9\x49\x24\x83\x93\x96\x9b\x75\x89\xd6\x58\xa4\x28\x52\x0c\x72\xcd\x9b\x37\x0b\xfe\x29\xb7\x29\x86\x4f\x57\xf3\x0f\x38\x92\x77\x9a\xce\x2d\xe2\x90\x1d\x2f\x60\xa0\xff\xff\xf9\x33\x7c\xba\x3b\x71\xd4\x5e\x8d\xce\xaf\x34\x81\x9f\xd1\x2d\x12\x11\x27\xa9\x84\xd3\x77\x23\xf8\x05\x73\x41\x18\xd5\x24\x69\xb6\x9e\x63\xee\x68\x7d\x10\x33\x94\x92\xd9\xad\x19\x51\x90\xca\x05\xc0\xbf\x4b\x4c\xd5\x2b\x20\xb1\x9e\x1f\x31\x2a\x24\x7c\x52\xa2\xd0\xa5\xe1\xa9\xd7\xd3\xc3\xcf\x56\x9c\xad\x31\xa4\x28\xfa\x88\x96\x38\x06\x94\xa6\xde\xf4\xd1\x79\xa8\x06\x5e\xd3\x88\xad\xd7\x98\x4a\xb3\xa7\x64\x01\x5b\x96\xc1\x06\xa9\x07\x0c\x62\x9c\x26\x4c\x6d\xa7\x36\x01\x0e\x84\x0a\x89\x68\x64\xb7\x32\x13\x58\x28\x1a\x4a\x4d\x76\x95\x7c\x51\xb5\x16\xa2\x31\xc4\x0c\x0b\xa0\x4c\x02\xc7\xbf\x65\x84\x63\x43\x21\x49\x08\x5d\x3a\xed\xda\x29\x8e\xb5\xb0\xa5\x74\x19\x0e\xff\x63\x3a\xbc\x9c\x8c\xae\x2e\x67\xa3\x73\x18\x40\xf0\x71\x8d\x69\xbc\x40\xe9\x72\xf9\x01\xaf\x58\x4c\xe3\x45\xb2\x5e\x2f\xd1\x32\x9e\xa3\xf5\x8a\x2e\xe2\xe0\x24\x17\xbc\x89\xe8\xb7\x96\xb7\x71\x0d\xc9\x00\x65\x72\x85\xa9\x24\x11\x92\x58\x2f\xd8\x24\x4a\xba\x98\xb3\x79\x82\x17\x1f\xa2\x65\xfc\x81\x44\x6b\xba\x58\xac\xe2\x25\x61\x74\xbd\x8c\xe2\x35\xc5\xbe\x45\xbe\xc5\x42\x28\xc5\x2a\xd3\x13\xda\x2a\xd7\x58\xe8\x47\x02\x24\xeb\x2d\x38\x5b\x6b\x86\x1c\x17\x85\x55\xe8\x7f\x61\x9a\xad\xcb\xe6\xa1\x38\xb2\x54\xa7\x9a\xe8\x00\x3e\xb5\x00\x00\x82\xeb\xe3\x57\xb3\xf1\xf0\xf5\x68\x32\x1d\x8e\x67\xe3\xe1\xff\xbf\x1e\x4e\xa6\x41\x1f\x82\xec\x78\x31\xe3\x78\x49\x84\xc4\x7c\xa6\x76\x12\x0b\x19\x74\x1b\xe7\x4c\xde\x5d\x5d\x4e\x86\x0d\x93\x44\xca\xa8\xc0\xfe\xac\xc9\xe8\xf5\x65\x75\x15\x41\x96\xb4\x69\x05\x3b\xb6\x4c\xdd\x0e\xae\x53\x7e\x3d\x9c\xce\x4e\xdf\x8d\x66\xbf\x0c\xc7\x5a\xeb\x95\x45\x96\x58\xfa\x87\xac\x69\xbd\x3a\x85\xf2\xd2\x75\x12\x96\x8b\xd6\x9d\xb7\x77\x63\xfb\x14\x84\x44\x32\x13\x1a\x2a\x45\xe3\xfe\x18\x14\x28\xf6\x67\xc8\x39\xe3\x67\x6a\x78\xb1\x3b\x57\xff\x0a\xfa\x70\x68\x99\xbc\x9a\xbe\x19\x8e\x67\xc3\xf1\xf8\x6a\x1c\xf4\xe1\xc8\x3e\x7d\x79\x7a\xee\x09\x7b\x6c\x9f\x9e\x5d\x5d\xbe\x1a\xbd\xbe\x1e\x9f\x4e\x95\x28\xd7\x97\x93\xeb\x77\xef\xae\xc6\xd3\xe1\x79\xd0\x87\xbf\xd9\x31\xe7\xc3\x5f\x46\x67\xc3\xd9\xe8\x72\x78\x31\x7a\x3d\x7a\x79\xa1\x24\xfd\xbb\x7d\x37\x1d\xbd\x1d\x5e\x5d\x2b\x8a\xff\x28\x89\x77\xaa\x4d\x51\x19\xa7\x32\x4b\xb3\xd7\x1c\x49\x75\x12\xac\x4a\x85\x43\xcd\x18\x2f\xe0\xd3\x27\xf5\x2b\x68\x53\xee\x43\xd5\x0c\xbb\xe6\x25\x4a\xd3\x51\xdc\x87\x17\xc6\x62\xed\x43\x49\xd6\x98\x65\x72\x82\x23\x46\x63\xd1\x87\x17\x46\x5f\xf6\xad\x5d\x4c\x4f\x73\x70\x0a\x77\x85\x36\xaf\x8f\x17\x63\x33\x66\x5f\xee\xcd\xbe\x3d\x82\xfd\x7c\xea\x39\x92\xa8\x0f\x6d\xb7\x97\xf0\x59\xcf\x18\xdb\x03\xe1\x2c\xc3\x3c\x9e\x90\x25\xcd\x1f\x75\x1e\x24\x95\x99\xe3\x8b\x45\x01\xeb\x05\x99\xf6\x52\x56\xb8\xfb\xe4\xc1\xb9\xad\x19\xa1\x0a\xd3\xeb\x7a\xef\xad\xa8\x6e\x63\x2a\xbc\xe8\x49\x85\xb7\x52\xd2\xfb\x0c\x20\x10\x84\xaa\xe0\x42\x1d\xd9\x5c\xb2\xb0\xcc\x8d\x39\x08\x2f\x2f\xae\x87\xd3\xab\xab\xe9\x9b\xd9\xf8\xf4\x7c\x74\xd5\x85\xe2\xc1\xc5\xd5\xaf\xb3\xe1\xe5\x70\xfc\xfa\x3f\xbb\x70\x3d\x79\xd9\x85\xcb\x57\x67\x1e\x0b\x53\x8e\xa8\x48\x19\xf7\xf7\xf8\x31\x7c\x9c\x72\x8e\xb6\x3f\x95\x28\x3e\x6f\x58\x45\x7c\x9d\xb4\x56\xf7\x16\x3f\xfa\x50\x32\xf7\x68\x85\x92\x04\x53\xa5\xee\xd2\xf3\x8f\x78\xfb\x06\xd1\x38\xa9\x3e\xb7\x67\xa6\x71\x67\x8c\x69\x55\x8d\xbf\x89\xe5\x65\x61\xf8\xcd\xcc\xee\x5a\x5e\x4d\x45\x32\xe3\xd6\xe8\xcb\xa2\x24\x04\x53\xe9\xbf\x68\xe4\xaf\x66\xc6\x75\x06\x9b\xf0\xe5\xab\x94\x5a\x61\xa4\x38\x9a\x5f\x56\x56\x23\x5a\x3c\x84\x99\x5d\xaa\x94\xce\xbc\xfa\x50\x98\xda\x1e\xdb\x5c\x05\x96\x3d\xd8\xc7\x1c\xc7\x8a\x91\x6f\xcd\xf7\x8b\x5d\x8c\x37\x43\xc7\xd8\x31\xf3\x2f\xbc\xbd\x97\xed\x25\x36\xe1\x73\xce\xfe\x17\x34\x5f\x0e\xa5\xfb\xd0\x08\xa2\xaf\xb1\xfc\x59\x9c\xa6\xc4\x86\xe4\x25\xf5\xf5\x2e\xd8\x06\x12\x95\x7e\xe4\x51\xd8\x3b\xc6\x0d\x0b\x22\x4b\x95\x80\x8e\xd9\x09\x96\x02\xb2\x14\x50\x69\xa4\x64\x2e\x56\x2c\x82\xc4\x4c\xd8\xe0\x57\xcd\x43\xb7\x88\x24\x68\x9e\x60\x58\xe3\x68\x85\x28\x11\x6b\x61\xa4\x49\x11\x47\x6b\xf8\xb4\xc8\x68\xa4\xac\xac\xdd\xf6\x08\x7f\x56\x9c\xff\xca\x51\x9a\xe2\xd8\x04\xa1\xe3\x8c\x2a\x1f\xa9\x5e\xce\x3a\x9d\x3b\x88\x50\x92\xcc\x51\xf4\xd1\xc9\xb9\xc4\xd2\xe7\x6c\x00\x8e\x70\x3e\xb4\xa3\xe3\x0c\xb2\x80\xb6\x52\x24\x5b\x40\x64\xc2\xdb\x1f\x06\x10\x64\x34\xc6\x0b\x42\x71\x1c\xc0\x8f\x3f\xda\x17\x21\x37\x6b\x76\x6c\x7c\x62\x83\x6f\x14\xc9\x0c\x25\xce\xb7\xae\x30\xc7\x45\x16\xb0\x46\x52\x62\xde\x85\x79\x26\x61\x83\x81\x62\x1c\x2b\x25\xa9\x8d\x55\x56\x99\x26\xdb\x9c\x54\x9e\x7e\xe5\xdc\xa9\x61\x3c\xa3\x21\x4c\x57\x99\xe8\x82\xc0\x34\x06\x44\x01\xaf\x53\xb9\x2d\x00\x28\xc7\x85\x9c\x0a\xa1\xc0\x78\x8c\x79\xb1\xc8\x02\x91\xc4\x0c\x74\xa6\xa3\x8c\x1d\x71\x58\x8b\xa5\x8b\xb5\x60\xa7\x9b\x0f\xab\x91\x6b\xd7\x4d\x10\x05\xd2\x8a\x3e\xbc\xbf\xd1\x2f\xee\x4e\xf4\x8f\xb2\xca\x42\xc5\xbe\xa5\xda\xae\x26\x08\x5d\xc5\x49\xb7\xd8\x9f\x8e\xe3\x49\xed\xcd\x0f\x15\x4a\x09\x12\x52\x3b\xdf\x8e\xc7\x7a\xaf\x07\xbf\x62\x40\x1c\x03\xa3\x80\x60\xb3\x22\x12\x27\xea\xc8\xc4\xc0\x38\x59\x12\xaa\x73\x33\x95\x89\x4b\x94\x7c\x84\x98\x70\x1c\x49\xab\x7b\x3b\x7f\x43\xe4\xaa\x9c\x57\x84\xee\xb5\xb5\xa7\xba\xe5\x15\xb6\x74\x62\x07\xdf\x01\x4e\x04\x2e\xb3\x56\x96\x00\x36\x48\x14\xc7\xc0\x99\x46\xc4\xb2\x24\xa6\x81\xcc\x0d\xc9\x27\x50\x62\xcb\x71\xdf\x55\xf9\x19\x90\x05\x47\x6b\x5c\x65\x75\xa4\x9f\xee\xe2\xd1\x6c\x94\xfe\xdd\xf2\xab\x34\xad\xa6\x12\x71\x4a\x63\xce\x88\x3d\x65\xb3\x76\x27\x57\xb3\x25\x7c\x5a\xa4\x7b\x8c\x37\xd0\xaf\xd1\x1b\x31\xb1\x8b\xd6\x88\x89\xdd\x14\xdc\x19\x6b\xd0\x9e\x3a\x59\x05\x90\x20\x09\x28\x49\xba\x6a\xd7\xa3\x15\x10\xf5\x9a\xaf\x51\x92\xcf\xdf\xac\x30\x35\xb9\xaf\x35\x05\x75\x38\x95\xa2\x57\xe8\x56\x9d\xde\x08\x0b\xa1\x13\x59\xba\x2d\x94\x2c\xc2\xd6\x3e\xda\xbc\x6b\x79\xc5\x8f\x73\x2c\x15\x74\x5b\x14\xe1\x19\xa5\x0a\xf7\x98\xb6\x3d\xa5\x52\x98\x23\xa1\x0c\xd2\x94\x80\xe6\x9c\x6d\x04\xe6\x81\x50\xbb\xc8\xd1\x12\x53\xeb\xdc\x53\x4e\x6e\x91\xc4\x0e\xc8\xaa\x5b\xe2\x43\x99\x51\xa8\x2e\xc9\x08\xcc\x4f\x15\x11\x18\x00\x45\xb7\x64\xa9\xf6\x27\x74\x4f\x15\xb3\x1c\xcb\x8c\xd3\x62\x64\x48\x68\x8c\x7f\xbf\x5a\xb4\x03\x43\x39\xe8\x28\xe8\x7b\x76\x04\x3f\xfe\xd8\x82\xa6\x61\x96\x8f\x7c\xdc\xc9\x5e\xc2\x93\xab\xc9\x2e\xc1\xd3\x04\xc9\x05\xe3\xeb\x5d\x72\x17\xa6\x53\x97\xd9\x0a\xf3\xfe\x80\xbc\x5b\x31\x8a\x0f\xba\x70\x40\xde\xa1\xd8\xfc\x64\xf1\xc1\x8d\x63\xbb\xd0\x46\xbe\x5e\x07\x9e\x57\xd9\x3f\x63\x94\xe2\x48\x0a\x77\xb8\x72\x57\x56\x1c\xbb\x5b\x82\xaa\xa8\x16\x99\x59\xcd\xfe\xeb\x7e\x97\x55\xf2\x58\x75\xe1\x1b\xd1\x66\xb7\x13\x53\x16\x90\x1a\x37\xd7\xcc\x62\x1d\x74\x2d\x16\x7c\x0a\x08\x8d\x92\x2c\xc6\xd3\x44\x9c\xad\x10\xa5\x38\x19\xc5\x41\x1f\x24\xcf\xb0\x41\x08\x81\xe5\xd4\x64\xa3\xed\x1a\x44\xe7\x5c\xb4\x29\xde\xc0\xbd\x02\xb7\x15\x7b\x1d\x73\x68\xba\x70\xd8\x29\x69\x7f\x6c\x36\x13\x41\xa0\x46\x05\x80\xe6\x2a\xd6\xd4\x4b\xe5\xfb\x50\xc2\x1d\x15\x5f\x7d\x51\xe9\x75\xa4\xda\x43\xe9\xf5\x49\xbb\x95\xfe\x18\xc5\x34\xc0\xe7\x57\x28\x45\x9d\x2d\x93\x6f\xec\xa5\x91\x1c\x6f\xf7\xd0\x43\x3e\xf4\xdb\x4a\xef\x00\x7f\x97\xcc\xa7\xb0\xd1\x23\xb9\x0e\x87\x2a\xa6\x6c\x22\xcc\x15\x92\x0a\xe3\x23\xb6\x4e\x91\x24\x0a\xff\xb5\xe7\xf6\x62\xbd\x92\x1e\xd4\x83\x3b\x7d\x36\x8a\x32\x14\xcf\x22\xc9\x78\xa3\xe8\x3b\xed\xd7\x57\x84\x36\x65\x2d\xaa\x72\x2b\x61\x6a\xdf\x9b\x54\xdc\xaf\x86\x2b\x3f\x24\x75\xe8\xc1\xf3\xcd\xf4\x33\x64\x2d\x44\x42\x10\x95\x45\xf4\xf1\xf3\x44\x87\xdb\x36\x86\xcf\xc3\x6e\x73\xc9\x50\x8d\x4e\x0a\x29\x8b\x14\xde\xcb\x7e\x9f\xdf\x95\x22\x34\x7f\xbc\xad\xbe\x55\xca\x4c\x4d\x23\x38\xfe\x6d\x64\xea\xee\x56\x84\xd2\x65\x80\x5a\x71\xa1\xa5\xf4\xd6\x9d\xc1\xa0\x05\x85\xb6\x74\x2e\xd4\x2d\xb2\xd1\xae\x97\x8d\xfd\x0b\x6f\x45\xb7\xc2\x45\xd7\xac\x59\x44\xe7\xe5\xb4\x06\x06\x83\x01\xb8\xf0\x1c\x3e\x7f\xae\xa4\x3d\xf0\x13\x1c\x85\x47\x5e\x8c\x7e\x1a\xa3\x54\x3a\x95\xdb\x93\x73\x14\x1e\x5a\x55\xbb\x70\xd8\xd7\x15\x0c\xe0\xfd\x8d\x09\x97\x94\x21\xb6\xd5\x7b\x02\x03\x38\x3c\x01\x02\x3f\x55\x04\x08\x95\x58\x72\x75\x02\xe4\xe9\xd3\x22\x28\xf5\xc9\xbd\x27\x37\xa5\x48\xdb\x4b\x36\xcb\xa4\xde\x93\x9b\xd0\xbe\xea\x7a\xa3\xbd\x4c\xbe\x50\xa3\xf7\xde\x4b\x52\xeb\xf4\xdc\x4b\x7f\x86\x4d\x50\xf5\x8f\x3c\x2a\x34\xf2\x9a\xe0\x30\xdf\xec\xd6\xa3\x52\x83\x72\x62\xe0\xff\x96\x8f\xa8\xd6\x37\x2b\x26\x60\x47\x79\x15\x41\x6b\x87\x39\x9f\x8a\xcb\x5e\x4f\x6d\xe1\x51\x78\x64\xb7\xb1\xc4\xf3\x83\x38\xf6\xb5\xd1\x6d\xdd\xaf\xf1\xb2\x82\xab\x0a\x37\x63\xf6\x91\xae\x41\xb6\xbb\x2f\xa2\x87\x57\x08\xf8\x06\x08\xf2\x55\x10\x52\x8c\xaf\xd4\x91\xfe\x50\xd8\xa9\xac\xdd\x0c\x3d\x55\xbc\xe1\xe5\x49\x7f\x0a\x04\xba\x0f\x66\x72\x3e\x9b\x81\xa6\x3a\x4a\x9d\x79\x2d\x38\x0c\x8c\x45\xfb\xe7\xfa\xaf\x03\x74\x35\xb1\x0e\x6f\xfe\x2c\x90\x57\xbd\x31\xdc\x1f\xf6\xaa\x42\xd5\xc5\xfc\x33\x00\x64\xb3\x7c\x75\x90\xdc\x57\x9a\xef\x0f\x99\x39\x66\xbe\x63\xca\xa6\x91\x2b\xc6\xd9\x94\x53\x1d\x56\x9e\x6c\x55\x46\x1a\x99\x1c\xa7\x04\x7d\x16\x5a\x8a\xca\xcb\x97\x82\xc1\x30\xe5\x4c\x32\xa5\xc1\x30\x65\x22\xaf\x33\xfa\x21\xa2\x25\x55\x8d\x12\xfd\xe1\x6e\x4c\x59\x84\xe1\x3a\x4b\x90\xc4\x42\x33\xfe\x66\xfa\xf6\x02\xfe\x01\x28\x8e\x87\xb7\x98\xca\x0b\xa5\x36\xaa\xaf\xe9\x25\xe6\x0b\x14\xe1\x10\x7e\x65\xfc\xa3\x00\x46\x93\x6d\x5e\x42\x54\x54\x18\xcd\x55\x80\xd5\x44\xaf\x38\xb2\x62\xec\x23\x8e\x21\x4b\x73\x20\x6a\x88\xb2\x43\x46\x2d\x93\x25\x3d\xd9\x3b\x75\x43\xf2\x52\x57\x9d\x1a\x12\x8e\x4f\xb1\xbe\xfb\xb0\x4a\xed\xdc\xc1\x4a\x1f\x45\xfe\x20\xb5\xd6\x24\x1e\x18\x8c\xca\x17\x71\x2c\x74\x73\xf2\x45\x22\x4c\xd1\x5a\xed\x85\x1b\x12\x4a\x76\xc1\x36\x98\x9f\x21\x81\xdb\x3a\xf1\x50\x98\x6e\x46\x0d\x20\xb0\x8a\x0a\x14\x90\xbb\x87\x4e\x7f\x41\x0e\x74\xde\x26\x16\xda\x41\x71\x9c\x73\xd8\x6e\xde\x7b\xeb\x02\xec\xae\x2a\xd3\x24\x94\xac\x91\x2b\xb0\x6b\x29\x6d\xd5\xdf\x0e\xb7\x02\xb5\x3f\x05\x4a\x93\x41\x3f\xb7\xcb\x3b\x5b\xc0\xbb\xab\x97\xc9\x54\x5a\xc3\x12\x1c\xea\x9b\xcb\x76\xb0\x4b\xc3\xc6\x4c\x6c\x44\xa0\x8c\xe6\x6d\x2e\x64\xad\x98\xa5\x48\x34\x27\xde\x26\xd2\x28\xd7\xfd\x0b\x7b\x7c\x48\x96\x75\x7f\xb2\xed\x9d\x1d\x77\xf0\xd5\x80\x67\x47\x27\x95\xe7\xc6\xd4\xd4\x3b\x9a\x25\xc9\x49\xeb\xce\x49\x71\x81\x32\x1a\xad\x1a\xe4\x50\x0c\x53\xf9\x10\x14\xa8\x33\xfb\x40\x14\xd0\xae\x55\x2f\x7b\xcd\x13\x6b\xcf\xf7\xd3\x1f\x5d\x4e\x87\x97\xd3\xd9\xf5\xf8\x62\xf6\xf2\x74\x32\x9c\xc1\x53\xd3\x9e\x70\x32\xc9\x25\x1f\x04\xf0\x14\x30\x8d\x58\x8c\xaf\xc7\xa3\x33\xb6\x4e\x19\xc5\x54\xb6\x7f\x9e\x5c\x5d\x86\xe6\xb8\x92\xc5\xd6\xf1\xd1\x71\x14\x30\x8d\x03\xa5\xc6\x98\x45\xd9\x5a\x69\x22\x61\x91\xb9\xdc\x1b\x14\x4c\x96\xc2\xd1\x29\x4e\x12\x01\x1b\x95\x7e\xeb\xa6\x30\xb6\x30\x15\x27\xd3\x55\x64\xef\x70\x72\x0f\x33\xb1\x48\x61\x46\x6c\xd3\x87\x69\x73\x89\xa5\x7a\xa4\x1c\xd2\xce\xc2\xdf\xc1\x4e\x42\x07\x5f\x85\xa7\xdf\x0f\xef\xee\x15\xb9\x8e\x77\xdf\x15\xeb\x72\x6c\xd2\xe1\x20\x4e\x16\x30\xd0\xfb\x68\xf0\xa5\xf7\x04\xf2\xb0\x1a\x50\xe9\x3e\x4a\x17\x5f\xf0\xef\x38\xca\x94\x42\x37\x2b\x4c\x0d\x64\x3d\xc9\xeb\xbe\x84\x7e\xd0\x55\x54\xa5\x6b\x77\xe1\xa4\xf4\xa0\x46\x6d\x08\x8d\xd9\xa6\x26\x6a\xdb\xc5\x68\x8e\xbd\xae\x66\x2a\x64\x79\xfc\x74\x9d\xc6\x48\xe2\x59\x38\x27\x34\x6e\xab\x57\x85\x26\xba\xb0\x40\x89\xc0\xfb\x42\x62\x6d\x13\x2a\x90\xb8\xde\x09\x88\x67\xb9\x1e\x08\xbd\xd5\x1e\xd4\x5c\x2c\x20\x27\xa7\x72\xae\x1c\x47\x98\xdc\xe2\x18\x5c\x97\x5a\x69\x41\xdf\xba\x76\xd9\x4f\xa5\x34\xd7\x88\x4d\xee\xe7\x95\xf5\x1b\x0f\xb0\xb4\xaa\x52\xab\x9e\x35\x5f\xbe\x0b\x35\xf4\xb2\x0f\xcc\xa2\x30\x00\x8d\x32\x29\xe2\xc2\xc5\x32\xa1\x92\x45\xeb\xae\x82\x76\xe5\xb9\xef\x03\xfb\x6a\x7c\x11\xdc\x9c\xb4\xec\x70\xd7\x96\x53\x1f\xee\x5e\x05\x37\x39\xf1\x5c\xed\x8e\x1b\x83\xfd\xc6\xe0\x4b\xd3\xc3\x15\x12\x57\x1b\xfa\x8e\xb3\x14\x73\xb9\x6d\x1b\xb7\xea\x2e\xa3\x6a\x84\x7a\x4f\xaa\x8d\xaf\xf0\xa4\x07\x85\x99\xd6\xc5\xce\xd9\xd4\x84\x6f\x6c\x71\x53\x89\xe5\x0a\xa1\xce\x97\x97\x57\xbb\x2b\x97\x3f\x5f\x22\x81\xe1\x7a\x7c\xa1\x23\x39\xa3\x22\x7d\x35\xd5\x60\x44\x45\x3f\xdd\xde\xce\xb5\xee\x4f\xd4\xd6\xdb\xad\xe8\xff\xbf\x91\xfe\x79\x62\x2a\xcc\x83\x88\xad\xf3\xee\x63\x7b\x7d\xa5\x92\x4a\x11\xa2\x12\x2b\xa7\xd7\xd3\x37\xc3\xcb\xe9\xe8\xec\x74\x3a\x0c\x1a\x82\x87\x72\x81\xfa\xdb\x45\x0e\x4d\xe5\xe9\x4e\xa9\x13\xd9\xf3\xfc\x15\x26\xdc\x8d\xf9\xde\xae\x3f\x5f\xed\x11\x0e\x5f\x48\x9e\x1f\x94\xba\x3b\xce\x4d\x39\xd3\x27\xe4\x20\x3b\x5e\xf4\x7b\x3d\xa5\xe0\x17\x07\xbe\x5b\x6f\x0b\xc9\xf5\xd8\xdc\x47\x87\x1c\xa7\x09\x8a\x70\x3b\xe3\x49\xe7\x3b\x3a\xe9\x06\xb9\x1f\xe2\x9a\xf3\xe9\x07\x25\x16\xff\x34\xfe\xb8\x41\xba\x3f\xc0\x0b\xff\xd0\xe4\x86\x9b\x7d\x95\x65\x70\x6f\x0f\xe5\x5a\x72\x28\xe0\xf5\x1c\xc7\x31\x8e\x41\x72\xb4\x4e\x59\x42\x68\xde\x28\xd0\xb5\x5f\x31\x78\x2e\xaa\xf9\x4a\xc1\x09\xee\x9d\xd6\x7d\x2e\x8e\x8a\xab\xf2\xdd\x77\x47\xbd\x1e\x9c\x71\xac\xf2\x21\x7d\x3e\xf3\x0e\x06\xed\x33\xf4\x2f\x57\xe6\xa6\x7e\x00\x81\x09\x2c\x9e\x39\x1e\xfb\xbd\x9e\x8a\x79\xab\xd7\x99\x27\xa5\xe9\x30\x28\x02\xdb\x48\x2f\x34\x4c\xb0\xfa\xad\x1d\x98\x01\x81\xdd\x14\xf5\xef\x50\xf0\x48\x45\xbd\xfe\xc2\x4f\x21\xe8\x65\xc7\x8b\x67\x11\x5b\xaf\x45\xb8\x92\xeb\x24\xf0\x27\x60\x79\x2a\x25\x27\xf3\x4c\xe2\x76\xa0\x3f\xfa\x08\xba\x10\xc4\x44\xa4\x09\xda\xf6\x29\xa3\x76\x01\xc7\xc4\x9c\xc5\x5b\x85\x9f\x98\xc6\x67\x2b\x92\xc4\x6d\x43\xa9\xe3\x7c\x9f\x2d\x4b\x28\x37\x86\x37\x39\x40\xda\xfb\xd8\x76\xa7\xf0\x79\x28\xde\xee\xc4\x9b\x92\xeb\xd3\x9e\x58\xc7\x7c\x7a\x52\x50\x64\xa3\x79\x05\x44\x99\xd3\x51\xc8\xf1\x9a\xdd\xe2\x72\x40\xe6\xc5\x61\x7a\xb2\x6b\x1c\x71\xee\xac\x44\x23\x4f\x4b\xcb\x9d\x2f\x15\x9b\x7e\x45\xb8\x90\xe6\x84\xe8\xae\x00\xb3\x4f\x1a\x7a\xf2\x8e\x8e\x03\xbd\xd8\x41\xd0\x29\xaa\x72\xba\x94\x55\x66\xb8\x16\x3e\x36\x72\x5b\x9e\x23\x24\xe2\xb2\x6d\xb4\x6d\xf7\xb0\x4e\x26\x61\x28\x0e\x1a\xda\x90\x7a\x3d\x38\xc7\x09\xb9\xc5\xa6\x3f\x2b\xf5\xfa\xdc\xac\x14\x48\x7f\xd8\x43\x24\x41\x09\xf9\x2f\x6c\x77\x42\xaf\x12\x31\xed\x54\x7f\x35\x91\xaf\x5f\xfc\x09\xd4\x84\xa0\x5b\x32\xbb\x2e\xbc\xf7\xf9\x3e\xbe\x31\x67\xdc\x15\x88\x7a\x6f\xc8\x72\xf5\xcc\xf4\xe7\xd9\xd2\x71\xd1\x7e\xb1\x40\x59\x22\xbd\x76\x05\x17\x96\xda\x4a\x1a\x10\x0a\xc2\x54\xd3\xca\x11\x84\xed\x67\x76\x87\xc9\x36\xbf\xcf\x26\xc3\x33\x18\xc0\xdf\x0e\xfd\xdb\x59\xd3\xe6\x2b\xd5\x06\xe6\x1f\x8a\x98\x4e\xc5\x86\x26\xc0\x0a\xac\x98\x80\x6a\xef\x9e\xbe\xbb\x46\x80\xc9\xaf\x5a\x4d\xac\x57\x0d\xcd\x05\x6c\x10\x91\x84\x2e\x2d\x53\xee\xd6\xd7\xac\x6d\x6e\x2c\x1e\xd5\x5f\xf8\xbc\x99\x1d\xbb\xdc\xab\xa2\x7a\xf1\xfe\xc6\x57\x57\xc4\x32\xe5\xc8\x6c\x4b\xba\xad\x61\x08\x5f\x1f\xc5\x67\x10\x75\xea\x1c\xff\x76\x66\x08\xcc\x74\x45\xde\x6f\xe4\x47\xa9\xc1\xef\x82\xaa\x52\xbb\x8d\x72\xf2\x63\x2a\x5a\xd5\x4f\xb8\xc2\x9f\xec\x77\x04\x45\xb5\xaa\xe8\xd8\xff\xdc\xd4\x56\xdb\xe9\x98\xde\xd2\xa6\xff\x3e\xef\x22\x52\xea\xee\xdf\xa9\xbd\x9c\xcd\xb7\x28\x55\x02\xfa\xd1\x9b\xf1\x0e\x02\xb4\xde\x24\x27\xf8\xd6\x06\x0c\xbe\x9d\x15\xc6\x28\x19\x64\x02\x7f\xe3\x36\xd2\x46\xf7\xa6\x06\x4e\xf2\x75\xef\xf1\x70\x79\xff\x9b\x36\xd8\x5a\x5b\x44\xf1\xa6\x96\xb6\xe6\x13\x2b\xa6\x65\xaf\x5e\x14\xa0\x1f\x16\x50\x5e\xef\x73\x6d\x37\x34\x29\x14\x63\xcb\x9d\x0a\xb5\x37\xf7\x61\x6b\xcb\xdf\x78\x2f\x43\x72\xeb\xe9\x89\x1d\x93\x2a\x19\xeb\x35\xfb\x6f\x2e\x62\xf8\xac\x63\xe0\xd7\x55\x44\xcf\x10\xc7\x8b\x2c\xe9\x9a\x86\xd9\x39\x06\x24\xb6\x34\x2a\x6c\x37\x84\xb7\x68\x3b\xc7\x45\x13\xe6\x66\x45\x12\x7c\x9f\x72\x3a\x1e\x8f\x4d\xa3\xc4\x8a\x2c\x64\xbb\x53\xd1\x7e\x51\x51\xcd\x2f\x82\x9a\xe6\xa6\x99\x58\xdd\xd3\xfa\x67\x84\x14\x05\xe8\x5a\xbd\x89\x2f\x45\x59\x7e\x15\x38\xb4\xb7\xa9\x86\xc4\x73\x3f\x1d\x69\x02\x87\xb2\x7a\xef\xcd\x42\x1c\x5b\x2e\xb1\xd6\xe1\x41\x11\x56\xfc\xa6\x6f\x0b\xf3\x61\xef\x03\x07\x2b\x26\xdf\xd6\x7d\xb8\x66\xd4\xe7\xcf\xf0\x43\xf5\xf0\xbe\xd7\xaf\x6e\x76\x44\xb3\xd7\xf4\x23\x65\x1b\xaa\xce\xf2\x9a\x08\xdd\x0b\xee\xc8\x2b\xa7\xe4\xea\x44\xb9\xe3\x37\x69\x44\x7e\x89\xa5\xa3\xa3\xb9\xf9\xdc\xb4\x69\x55\x1d\x67\xe1\x04\x4b\x7c\xdf\x88\x68\xde\xf6\xa5\x2b\x3e\x59\x0a\x6e\xca\x19\xd4\x39\x11\x29\x92\xd1\x0a\x0b\x15\x47\x23\xe5\x32\x54\x16\xe5\xb7\xed\x98\x6e\x51\xd7\x7e\x7a\x7d\xfc\x0a\x24\xfb\x88\xa9\x01\xf6\xd1\xe2\x61\xb7\xf0\x40\x04\x64\x46\x45\x5d\x20\x12\x16\x3a\x50\x12\x98\xc6\x02\x90\x22\x98\xd7\x7a\x6a\x0d\x89\x92\xc1\x82\xd0\x18\x94\x73\x57\x6f\x8a\x35\xfc\x95\x55\x70\xa2\x52\x76\x45\x5b\x53\x55\x34\xf5\xf0\xda\xb7\x3a\xa5\x34\x6b\x70\x97\x5f\x95\x36\xbc\x71\xf7\xb4\xf7\x77\x04\xe8\x0b\xbe\xe7\x77\x95\x0b\xbf\x66\x98\xbe\xcf\x83\x54\x71\xd9\xef\x15\x18\xdc\x01\x4b\xe5\xac\xd6\x52\x60\x8e\x89\x16\x72\xf0\x90\x66\xa4\xa2\xfe\x55\x27\xbb\x5f\x47\x80\x17\x38\x4e\x74\xd7\xbe\xbf\x85\x4b\x2c\xeb\xdb\x58\x36\x96\xae\xd9\x2f\xdd\xf1\x2f\x8b\x0f\x0c\x2a\xfb\xe5\xb5\x64\xbb\x8f\x39\x8a\x1a\x55\x2e\x30\x38\xb3\xef\x94\xae\xe5\xab\xfc\x7b\x67\xbf\xfc\x2a\xb8\xa9\xb4\x3b\xbc\x80\x43\xe8\xdf\x33\xfc\xc4\xbf\xce\xb7\x48\x90\xb0\x65\xfb\x60\xe8\x24\xb6\xe2\xfe\x92\xb7\x06\x1c\x74\x2b\xfc\x74\x4e\x2a\x50\xae\x74\xe1\xb5\xa5\x7c\xed\x36\x16\xe4\x1b\xee\xd2\xcc\xb7\x04\xea\x40\x36\x1c\xe4\xd0\x6c\xe9\x8e\x6d\xc9\x3f\xef\x6f\x3c\x89\xc5\x9e\x7d\x07\x69\xee\xbe\x29\x86\xfd\x8f\x44\x82\xb2\xd2\xbf\x35\x28\x34\xc6\x87\xcd\xd1\x98\xef\x72\x9f\x3e\xad\x44\xfa\x27\xce\x4a\x1a\x3c\x19\x0c\x1c\x27\x27\x8e\x54\x99\x1b\x18\xb8\xcf\x99\xea\xac\x9a\xea\x93\xf7\x6d\xd3\x0b\x77\x10\x1a\x06\xf7\x61\x67\x62\xd8\x39\xf1\x25\xb1\xce\xb9\xde\x08\xfa\xe8\xde\x4f\x43\x5e\x29\xad\x94\x34\x73\xfc\x5b\x29\x25\xae\xdb\x7b\xb5\x41\x6e\xb7\x9d\xc3\x69\xe5\x68\x28\x4a\x6e\x16\x89\x31\x95\x64\x41\xd4\x11\x4a\x4c\xd9\xc5\xfb\x86\xf0\xaf\xe8\xee\xab\x9a\xd9\xf3\xa0\xdf\xd7\xe6\x57\xed\xf6\xf9\x5e\x10\x50\xcf\x49\x1f\x0f\x03\x4e\x0d\xf5\xf3\x5f\x6f\x0b\xfc\xcb\xc4\x06\x0d\x9b\xfb\x6f\x8c\x0f\xfe\x2d\xe1\x41\xc5\x3c\xf7\xde\xd4\x52\x62\x0b\x7f\x5c\xdc\x50\x6b\xe5\xdd\x3f\x76\xf8\x6a\x51\x1f\x1d\x4e\xfc\xe1\xf0\xfa\xbf\x0f\xa0\x1a\x36\xf8\x3b\x61\xd5\xff\x85\x2c\x3b\x9a\xc8\x0b\x98\xfc\xca\x06\xf2\x3d\xc3\x98\xa6\xb8\xfd\x11\x71\x80\x22\x51\x41\x1d\x2f\x42\xc9\x04\xe6\x2a\xf8\xd0\x1f\x48\xaf\xd9\x9c\x24\x18\xd2\x15\xa3\xf6\xfa\x42\x80\x5c\x65\xc2\x7e\xab\x6f\xff\x30\x5a\xb5\x65\x4e\x48\x8c\xf4\x2a\xcc\x90\xac\xfe\x39\xa8\x2e\xc4\x8c\x06\xb2\xf0\x4e\x39\xb4\xa9\x15\x04\x59\xa7\xc9\x36\xbf\x23\x3e\xdc\x51\xac\x2d\x9f\xab\x1d\x7f\xab\xe0\x6b\x8e\x57\xc9\x1f\x36\xd5\x6f\x77\x9e\x97\xfd\x8f\x4b\xaf\xa7\x94\xbe\x31\x1f\xa4\x1b\x8d\xda\x4f\x67\x9b\x35\xab\x94\x5b\xea\x51\xe8\x5a\x2a\x31\xd3\x17\x63\x0b\xc2\xd5\x2e\xd9\x8e\x10\x0d\xb9\xe2\xa3\xed\xe8\xad\x04\x9e\xae\x12\x6e\x42\x11\x6d\x7a\xde\x9d\xbd\x73\xf2\xea\x18\x20\xa7\x07\xeb\xd7\xc4\x86\xc8\x68\x55\x9f\x55\x7c\xb8\xad\x7d\x87\xc0\x50\xb9\xa2\x9e\x05\xfd\xc6\xd7\xf5\x1e\x94\x62\x20\x78\xeb\xc3\x00\x8e\xc2\x23\xcf\xab\xcf\x39\x46\x1f\x8b\x7a\x71\x6c\x6e\xb7\x76\xcd\x3d\xac\xcf\x34\x4e\xba\x55\xf2\x76\xed\x4f\x50\x0d\x47\xfa\x3e\xa1\xbc\x0a\xec\x15\x20\xbd\xaf\x26\xbe\x21\xfc\x19\xfc\xd9\xe3\x43\x83\x1d\x7f\xd6\x6b\xd7\x37\x02\x8f\x42\xd1\x07\xe3\xe8\x97\xbf\x3d\xf8\x32\xe4\xfd\x77\x00\x00\x00\xff\xff\xdc\xf5\x8a\x81\x90\x51\x00\x00") + +func staticJsU2fApiJsBytes() ([]byte, error) { + return bindataRead( + _staticJsU2fApiJs, + "static/js/u2f-api.js", + ) +} + +func staticJsU2fApiJs() (*asset, error) { + bytes, err := staticJsU2fApiJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/js/u2f-api.js", size: 20880, mode: os.FileMode(420), modTime: time.Unix(1494464185, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticLayoutFaviconPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x00\xd7\x06\x28\xf9\x89\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x07\x62\x00\x00\x07\x62\x01\x38\x7a\x99\xdb\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x06\x54\x49\x44\x41\x54\x78\x9c\xed\x9b\x7b\x6c\x14\x45\x18\xc0\x7f\x77\x25\x80\xad\x50\x68\x6b\x34\xd8\x94\x02\x45\x2d\xc6\xa2\x46\x94\x88\x40\x7c\x44\x54\x7c\x05\x41\x8d\x26\x0a\x1a\x4c\x68\x62\x34\x31\xa2\x51\x31\x86\xa8\x31\x3e\x23\x8a\x8a\x20\xd1\x54\xfd\xc3\x14\xe3\x03\xd0\xfa\xc0\xa2\x60\xe2\xab\x88\x88\x22\x98\x34\x3c\x4a\x81\x4a\xa5\x8a\x42\x4b\xdb\xf3\x8f\x6f\x86\x9d\xdb\xee\xdc\xed\x6e\x7b\xc7\x99\xee\x2f\xd9\xec\xce\xcc\x37\x3b\x73\xdf\xce\xce\x7c\xdf\xb7\x73\x10\x11\x11\x11\x11\xd1\x7f\x89\x1d\xc3\xb6\xf3\x80\x51\x40\x89\xba\x3e\x00\x34\x02\xff\x66\xb3\x13\x31\xe0\x7b\x23\xfd\x3a\xf0\x62\xc0\x7b\x3c\x09\x5c\xa4\xae\x77\x00\x33\x52\xc8\x56\x01\x57\x03\xd3\x80\xb3\x81\x7c\x57\x79\x27\xb0\x01\x78\x43\x1d\x07\x7d\xf6\x61\x35\xa2\xc8\x50\x24\x8c\xe3\xf1\x10\xf5\x6b\x8d\xfa\xbf\x59\x64\x4e\x05\x36\xba\xda\x4a\x77\x34\x02\x17\xf8\xec\x43\x73\xc0\x7b\x1f\x3d\x06\xf8\xfe\x99\xbd\xa3\x14\x79\xfa\x26\xdd\x88\xc2\xf6\x02\x87\x81\x32\xa0\x12\xe7\xb5\x2c\x07\xea\x80\xcb\x81\x2f\x33\xd5\xb1\x6c\x29\x40\xd3\x09\x7c\x8c\x0c\xef\xcf\x81\x3f\x5d\xe5\x15\xc0\xb3\xc0\x55\x2a\x9d\x0f\xbc\x89\x28\xe6\x1f\x9f\x6d\xd4\x02\x0f\x07\xe9\x54\x36\x5e\x81\xa9\xc0\x72\x64\xd2\x4b\x47\x0c\x78\xcb\xd5\xaf\x79\x69\xea\x98\xaf\xc0\x52\x1f\x6d\x1c\x25\x1e\x44\xb8\x17\xac\x05\x6e\x43\xde\xeb\x74\x24\x80\x3b\x49\x5e\x0d\xae\xc8\x44\xa7\x20\x7b\x0a\x08\x4a\x2b\xb0\xde\x48\xfb\x19\x39\xa1\xc8\x55\x05\x80\xd8\x05\x9a\x81\x99\x6a\x24\x97\x15\x30\xda\xb8\x6e\xca\x54\x23\xb9\xaa\x80\x0a\xc4\x50\xd2\xac\xc9\x54\x43\xd9\x5e\x06\xfd\xf2\x28\x8e\x3d\xd0\x81\x2c\x85\x7e\x29\x26\x59\x79\x36\x3a\x80\x9f\x21\x3b\xcb\x60\x10\x66\xba\xfa\xf4\x9c\x8f\x3a\x61\x2c\xc1\x9d\x90\x7b\xaf\x40\x25\xf0\x9a\x91\xde\x06\x2c\xc8\x64\x83\xb9\xf4\x0a\x94\x01\x1f\x01\x43\x55\xfa\x6f\xe0\x3a\xfc\x3b\x44\x9a\x3d\x88\xe2\xd2\xb1\x0f\x72\x47\x01\x27\x22\x76\xff\x48\x95\x3e\x84\x78\x8d\x9b\x42\xdc\x6b\x25\x30\xd7\xaf\x70\x2e\xbc\x02\x27\x20\xb3\xfc\x69\x2a\x7d\x04\x98\x05\xd4\x67\xa3\xf1\x38\xd0\x65\xa4\x07\x85\xb8\xc7\x60\xe3\xba\xcb\x2a\xe5\x4d\x31\xf0\x19\x30\x4e\xa5\x3b\x81\x9b\x80\x55\x21\xfa\x11\x8a\x38\xd0\x66\xa4\x87\x84\xb8\x87\x59\xe7\x80\x55\xaa\x27\x85\x88\x67\xa8\xdd\xe4\x2e\xe0\x56\x64\x55\xc9\x1a\x71\xc4\xee\xd6\x8c\xb4\x09\xa6\xc0\xac\xd3\x6a\x95\x4a\xa6\x00\xf8\x10\x38\x47\xa5\xb5\xc7\xf7\x76\x88\xf6\x7b\x45\x9c\xe4\x89\xa6\x8a\x60\x71\xc2\x22\x64\xf6\xd6\xfc\xe4\xa3\x4e\x3e\x32\xc4\x27\xab\x74\x02\xa8\x26\xa0\x1b\xdb\x57\xc4\x81\xaf\x8d\xf4\x49\xc0\xa4\x00\xf5\x67\x90\xac\xb0\xf5\x36\x41\x45\x3e\x32\x4b\x4f\x55\x69\xed\xfa\xbe\x12\xa0\xcd\x3e\x67\x04\xd0\x8e\x63\x21\xd5\xe3\x6f\x14\x0c\x42\x2c\x3f\x5d\xaf\x89\xd4\x5e\xdb\x71\x48\x14\xc8\xb4\xc6\xee\x0d\xdb\x69\x17\xa1\x03\x22\x9a\xe5\xae\x8e\xbd\x4a\xf2\xec\xee\x66\x38\x32\x81\x99\x75\xee\x49\x21\x3f\x10\x79\xf2\xa6\xfc\xfd\x61\x3a\x6a\x21\xb4\x02\xf4\x93\x2e\x44\xc2\xe3\x15\x46\x59\x13\x32\x29\x7d\x83\x58\x4d\x71\x64\xb4\x4c\x02\x6e\x06\x86\x19\xb2\x6b\x80\x4b\xb1\x2f\x83\xd5\xc0\x62\x23\xdd\x8e\x72\x44\x02\x70\x3e\xe2\xc0\x78\xd1\x8c\xbc\xbe\x00\xcb\x08\x60\x08\x99\x8c\x02\x7e\x24\xb8\x53\xb1\x9a\x64\x65\x78\x71\x57\x88\xfb\xba\x8f\x54\x23\xb2\x4f\x62\x82\x8d\x88\x96\xef\x43\xec\xe9\x74\x6c\x05\x6e\x07\xae\x24\xd8\xfa\x9f\x53\xd8\x26\xbb\x01\xc0\x59\x88\x42\x4a\x91\xe5\xae\x1b\xd8\x8f\x28\x6a\x1d\xf0\x0b\xa2\x71\x3f\x14\x22\x56\x5f\x6f\x68\x4c\xd1\x5e\x39\x8e\x5f\xd3\x06\xb4\xf4\xb2\xad\x88\x88\x88\x88\x88\x7e\x41\x0c\x58\xe2\x91\x7f\x18\x89\xc9\x6d\x05\x7e\x00\x36\x67\xb3\x53\xd9\xc6\x8f\x15\xb6\x19\x31\x7a\x8e\xe5\x96\x9a\x8c\x10\xc3\x31\x2e\xe6\x22\xdb\x53\x40\x0c\x97\x22\xc4\x18\x9a\x05\x8c\x55\xf9\x1f\x20\x71\xfb\x23\x59\xec\x63\xc6\xd1\x4f\x79\xb2\xa5\x3c\x8e\xd8\xf2\x9d\x4a\x6e\xb1\x45\xee\x7f\x89\x39\x02\xa6\x00\x5f\xa5\x90\x5d\x00\x2c\x44\x14\x51\x09\xfc\xee\x21\x53\x02\xcc\x46\x3c\xc6\x22\xe0\x2f\x24\x48\xb2\x14\x31\xa3\xdd\x5c\x8f\x38\x61\xef\x03\xdb\x91\x51\x78\x31\x12\x67\xdc\x02\x2c\x52\x67\x10\x67\xe8\x16\x64\x83\x55\x31\x62\x1a\x2f\xc2\x19\xb5\x5e\x54\x00\x73\x80\x33\x81\xe3\x11\xa7\xe9\x53\xa0\x06\xc3\xb3\x4c\x37\x02\x34\xf9\x48\xcc\x2f\x01\x3c\xe4\x51\x7e\x2d\x62\x87\xeb\xfb\x1d\x31\xae\xff\x40\xfc\x0a\x37\x3a\xa6\x70\x07\xde\x9e\xe8\x41\x55\xaf\x04\xf8\xd6\xa3\xbc\x1d\xb8\xc4\xd2\xdf\x79\xea\x47\x9a\xb2\xfa\xfa\x57\x8c\x3d\x07\x7e\x15\x00\xf0\xae\x92\xad\x73\xe5\x4f\x56\x3f\xb8\x03\x78\x02\x09\x94\xc6\x10\x47\xea\x05\xc4\x91\x6a\x41\x3e\x80\x78\x29\xa0\x05\x89\x3b\x4c\x41\x9e\x54\x05\x12\x37\x4c\x20\xbb\xcb\xde\x43\x56\xa3\x0b\x91\xd1\x31\x0a\x58\xa1\xca\xb7\xd1\x73\x72\x9e\xa6\xda\xec\x06\x1e\xc1\x71\xd7\xc7\xab\x76\x12\x48\x3c\x62\x70\x50\x05\x3c\x86\xb3\x2a\x98\x6c\x50\xf9\xf3\x2d\xf5\xf4\x9e\x1f\xf7\xc7\x57\xad\x80\x56\x7a\x7a\x8b\xc5\xc8\x36\x99\x04\xf2\x2a\xb9\x95\x37\x04\x67\xc4\x9d\xee\x2a\x6b\x50\xf9\xcf\x78\xf4\x65\x38\xe2\xee\x27\x50\x81\x93\x20\x0a\x98\xaf\x64\x77\x19\x79\xe3\x8d\x4e\xda\x3e\xb5\x4d\xc4\x79\x9a\x26\x5a\x01\x4f\x5b\xea\xe9\xa7\x65\x9b\x78\xbf\x50\xe5\xd3\x8d\xbc\xd1\x2a\xaf\x0b\x27\x4a\xe4\x66\xa1\x92\xa9\x0b\xfa\x6d\xb0\x40\x9d\xcd\x0f\x96\xe7\xaa\xf3\x3e\x64\x23\x94\x17\xfa\xe3\xc9\x18\x4b\xf9\x16\x4b\xfe\x5e\x75\xb6\x7d\x76\xd7\xe5\x23\x8c\x3c\xfd\xa1\x65\x0f\xf6\xc0\x4e\x83\x96\x0d\xaa\x80\x52\x75\x36\x03\x0e\x7a\x8b\xea\x18\xbc\xad\x4a\x93\x02\x64\x59\xed\x76\xe5\xb7\x79\xc8\x82\xac\x38\x7e\xca\xf3\x8c\x3c\xfd\xbe\xef\xc2\xce\x4e\x75\x2e\x0a\xa2\x80\x18\x32\x49\x81\xcc\xc8\x1a\xbd\x9c\xac\x03\xee\xf6\x71\x1f\xf7\x8f\xef\x6b\xda\xd5\x79\x68\x0a\x99\x42\x75\x3e\x14\x44\x01\xd3\x71\xa2\xc6\x2b\x8d\xfc\x46\x75\x2e\x47\x66\xea\x63\xcd\x0e\x75\x2e\x43\x46\x86\x57\xa4\x5a\x2f\x81\x3b\xfc\x7e\x1e\xaf\xc4\x89\xb6\xae\x47\x26\x1f\x4d\x3d\xe2\x3c\x95\x12\xec\xab\x52\xa6\x68\x40\x1c\xb9\x7c\x24\x54\xef\xc5\x4c\x75\x5e\x9b\x4a\x01\x03\x81\x09\xc0\x53\xc0\x77\xc8\x8c\xda\x8c\x7c\xbe\x36\x69\xc5\xd9\x62\x5f\x83\xec\x0c\xf7\x62\x62\x8a\x0e\xf5\x25\x87\x70\xb6\xd9\x3c\x4f\xcf\x95\x60\x36\x70\x19\x62\xb7\xbc\x64\xbe\x02\xab\x70\x26\x95\x18\xc9\xb1\xfe\x04\x62\xae\x56\x03\xbb\x3d\x1a\x7d\x10\x38\x03\x31\x40\x36\x21\x5b\x5d\x36\x22\xcb\x62\x39\xb2\x54\x8e\x43\x8c\xa4\x4f\x02\xff\xa4\xe0\x2c\x40\xfe\xc3\x50\x85\x18\x3c\xef\x20\x2b\xc2\x79\x38\xdb\x6e\x1f\x40\x2c\x42\x5a\x3d\x8e\xed\xea\x87\xac\x50\x82\x63\x49\x4f\x1e\xe2\x34\xe9\xf0\xb5\x79\xec\x47\x76\x88\x4f\x70\xd5\xa9\x55\xed\x5d\x63\xb9\x67\x8d\x2a\xbf\xd1\x52\xbe\x44\x95\xcf\xf1\x28\x1b\x06\xbc\x8c\xec\x32\x37\xfb\xb2\x0d\xb8\x41\x0b\x65\xca\xbf\x2f\x03\x4e\x46\x56\x88\xdd\xc8\x7a\x9d\xe9\xd9\xdf\xc6\x60\xe0\x14\x64\x55\x68\xc2\xdf\x86\xed\x88\x88\x88\x88\x88\x7e\xc1\x7f\x88\x48\xec\xa4\xc1\xe1\xc4\x80\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\x01\x00\x00\xff\xff\xab\xb1\x02\xf9\xd7\x06\x00\x00") + +func staticLayoutFaviconPngBytes() ([]byte, error) { + return bindataRead( + _staticLayoutFaviconPng, + "static/layout/favicon.png", + ) +} + +func staticLayoutFaviconPng() (*asset, error) { + bytes, err := staticLayoutFaviconPngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/layout/favicon.png", size: 1751, mode: os.FileMode(420), modTime: time.Unix(1494464184, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticLoginHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x5d\x6f\xdb\x36\x14\x7d\xe7\xaf\xb8\x35\x30\xb4\x05\xfc\xb1\xe6\x65\xc0\xea\x18\xa0\x25\x3a\x26\x26\x8b\x1a\x49\x25\xf5\x5b\x15\x89\xb6\x99\x4a\xa2\x47\x52\xee\xfc\xef\x07\xca\x8e\xe3\xa0\xdd\xda\x97\x3d\x89\xb9\xf7\xdc\x73\xcf\x39\x64\xe0\xe9\x9b\xd1\x08\x45\x66\x7f\xb4\x7a\xbb\xf3\xf0\x2e\x7a\x0f\x37\xbf\x7e\xf8\x6d\x08\xf7\x1a\xee\xac\x3a\x22\x5c\xd7\xd0\xf7\x1c\x58\xe5\x94\x3d\xa8\x6a\x8c\x10\x57\x95\x76\xde\xea\xc7\xce\x6b\xd3\x42\xd1\x56\xd0\x39\x05\xba\x05\x67\x3a\x5b\xaa\xbe\xf2\xa8\xdb\xc2\x1e\x61\x63\x6c\xe3\x86\xf0\x55\xfb\x1d\x18\xdb\x7f\x4d\xe7\x51\x63\x2a\xbd\xd1\x65\x11\x08\x86\x50\x58\x05\x7b\x65\x1b\xed\xbd\xaa\x60\x6f\xcd\x41\x57\xaa\x02\xbf\x2b\x3c\xf8\x9d\x82\x8d\xa9\x6b\xf3\x55\xb7\x5b\x28\x4d\x5b\xe9\x30\xe4\x50\x18\x6a\x94\xff\x1d\xa1\x0f\x63\x78\x2d\xc9\x81\xd9\x3c\x6b\x29\x4d\xa5\xa0\xe9\x9c\x07\xab\x7c\xa1\xdb\x9e\xb0\x78\x34\x87\xd0\x3a\x3b\x47\x00\xd0\x1a\xaf\x4b\x35\x04\xbf\xd3\x0e\x6a\xed\x7c\xe0\x78\x59\xd7\x7b\x7a\xad\xa5\xd2\xae\xac\x0b\xdd\x28\x3b\x46\x37\xdf\x4a\xd0\xed\x75\x06\xcf\x12\xf6\xd6\x54\x5d\xa9\xfe\x0f\x15\x70\x32\x17\x68\x2a\x53\x76\x8d\x6a\x7d\xf1\x7c\x41\x13\x63\xc1\xf8\x9d\xb2\xd0\x14\x5e\x59\x5d\xd4\xee\x25\xe7\xfe\x72\x02\xeb\xb5\x81\x31\x42\x72\x49\x05\x08\xb6\x90\x0f\x98\x13\xa0\x02\x32\xce\xee\x69\x4c\x62\x98\xaf\x01\xe7\x72\xc9\x38\xe0\x34\x86\x88\xa5\x92\xd3\x79\x2e\x19\x17\xf0\xf9\x33\x16\x40\xc5\xdb\xb7\xa1\x85\x70\xba\x06\xf2\x29\xe3\x44\x08\x60\x1c\xe8\x2a\x4b\x28\x89\xe1\x01\x73\x8e\x53\x49\x89\x18\x02\x4d\xa3\x24\x8f\x69\x7a\x37\x84\x79\x2e\x21\x65\x12\x12\xba\xa2\x92\xc4\x20\xd9\x10\xe4\x92\xa0\x6f\xc7\x80\x2d\x60\x45\x78\xb4\xc4\xa9\xc4\x73\x9a\x50\xb9\xee\xa5\x2c\xa8\x4c\xc3\xae\x45\x90\x06\x19\xe6\x92\x46\x79\x82\x39\x64\x39\xcf\x98\x20\x28\x38\x89\xa9\x88\x12\x4c\x57\x24\x1e\x03\x4d\x21\x65\x40\xee\x49\x2a\x41\x2c\x71\x92\x3c\x1b\x63\xfc\xb5\xaf\x39\x81\x84\xe2\x79\x42\x50\xcf\x9d\xae\x21\xa6\x9c\x44\x32\x18\x78\x39\x45\x34\x26\xa9\xc4\xc9\x10\x44\x46\x22\x1a\x0e\xe4\x13\x59\x65\x09\xe6\xeb\xe1\x99\x53\x90\x3f\x73\x92\x4a\x8a\x13\x14\xe3\x15\xbe\x23\x02\xde\xfd\x20\x84\x8c\xb3\x28\xe7\x64\x15\x54\xb2\x05\x88\x7c\x2e\x24\x95\xb9\x24\x70\xc7\x58\x2c\x10\xe3\x20\x08\xbf\xa7\x11\x11\x1f\x21\x61\xa2\xcf\x27\x17\x64\x08\x31\x96\xb8\x5f\x9c\x71\xb6\xa0\x52\x7c\x0c\xe7\x79\x2e\x68\x1f\x13\x4d\x25\xe1\x3c\xcf\x24\x65\xe9\x7b\xb4\x64\x0f\xe4\x9e\x70\x88\x70\x2e\x48\xdc\xe7\xc9\xd2\xde\xaa\x5c\x12\xc6\xd7\x81\x34\x64\xd0\xc7\x3d\x84\x87\x25\x91\x4b\xc2\x43\x84\x7d\x52\x38\x44\x20\x24\xa7\x91\x44\x57\x30\xc6\x41\x32\x2e\xaf\x3c\x42\x4a\xee\x12\x7a\x47\xd2\x88\x84\x2e\x0b\x2c\x0f\x54\x90\xf7\x80\x39\x15\x01\x40\x4f\x6b\x1f\xf0\x1a\xb1\xbc\xb7\x2c\x97\x24\x18\x3a\x1d\xaf\x9e\xe5\xb0\xbf\x3b\xa0\x0b\xc0\xf1\x3d\x0d\xb2\xcf\xe0\x8c\x09\x41\xcf\x2f\x83\x2d\x90\xc8\xa3\x25\x9c\xe2\x1e\xa3\xd1\x68\x86\xd0\xf4\x4d\x65\x4a\x7f\xdc\x2b\x58\xca\x55\x32\x43\xd3\x9d\x6f\xea\x19\x9a\xba\xd2\xea\xbd\x07\x67\xcb\xdb\xc1\xe4\xc9\x4d\x9e\xfe\xea\x94\x3d\x8e\x1b\xdd\x8e\x9f\xdc\x60\x36\x9d\x9c\x00\xff\x8a\x1c\x75\xfa\x67\xc0\xa5\xb6\x65\xad\x46\x7b\x6b\xb6\x56\x39\xf7\x33\x23\xdd\xcd\x66\x54\xec\xf5\x8f\x60\xa7\xbf\x5d\x80\x41\xa5\x36\xca\x5e\x83\x6b\xdd\x7e\x01\xab\xea\xdb\x81\xf3\xc7\x5a\xb9\x9d\x52\x7e\x00\x3b\xab\x36\xb7\x83\x49\xe9\xdc\xa4\x2e\x8e\xa6\xf3\xe3\xd2\xb9\xc1\x2b\xb8\x2e\x4d\x7b\x01\x9e\x40\x93\x4d\x71\x08\xe5\xf1\xbe\xdd\x06\xb0\xd7\xbe\x56\xb3\xfc\x66\x01\xe4\xef\x7d\x6d\xb4\x87\x58\x35\x66\x3a\x39\xd5\xd1\xb4\xd2\x07\xd0\xd5\xed\xe0\xd1\x54\xc7\xc1\x0c\x01\x5c\x2a\x1b\x5d\x7b\x65\x07\x50\xd6\x85\x73\xb7\x83\xc7\xba\x53\x60\xda\x1e\x73\x85\x72\x7a\xfb\x5c\x3b\x57\xcf\xf8\x7e\xc1\xa0\xdf\x2c\x54\xd9\x59\xed\x8f\xf0\x87\x3a\x02\xee\xfc\x4e\xb5\xfe\xfc\x3b\x33\x9d\x54\xfa\x70\x19\xd7\xcd\xf6\x1c\x99\x6e\x8a\xad\x3a\xa5\xeb\xcd\x17\xd5\x8e\xdd\x61\x7b\x91\xd2\xdd\x6c\xbe\xbb\xb2\x36\x45\xa5\xec\xa5\xf5\x3d\xc2\x4d\xa1\xeb\xce\xaa\x57\x74\xe7\xda\x7f\xce\xb9\xae\x2c\xc3\x8b\xb8\x9e\x3b\xd7\x5e\xa4\xbc\xf2\x72\xa5\xab\x52\xa7\xab\xd6\x21\xbe\x2b\xd4\xe5\xf8\x72\x78\x8e\xb5\xdc\x15\x75\xad\xda\xad\x1a\xcc\x7e\x89\xce\xed\xcb\xe7\xf4\x4f\xf1\x4f\x00\x00\x00\xff\xff\x3d\xb8\xc8\x65\x29\x08\x00\x00") + +func staticLoginHtmlBytes() ([]byte, error) { + return bindataRead( + _staticLoginHtml, + "static/login.html", + ) +} + +func staticLoginHtml() (*asset, error) { + bytes, err := staticLoginHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/login.html", size: 2089, mode: os.FileMode(436), modTime: time.Unix(1494828895, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _staticProfileHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x41\x93\xda\x3a\x12\xbe\xeb\x57\x74\x7c\x49\x52\xc5\xc0\xce\x5c\xb6\x6a\x03\x54\x19\x5b\x0c\xaa\x35\x16\x2b\xc9\x33\x99\xd3\xc6\xd8\x02\x2b\xb1\x2d\x9e\x24\x93\xc7\xbf\x7f\x25\x9b\x99\x81\xca\xe4\x25\x97\x77\x42\x74\x7f\xdd\xfd\x7d\x5f\xcb\xf6\xf4\xdd\xcd\x0d\x8a\xf4\xe1\x64\xd4\xbe\x72\xf0\x21\xfa\x08\x77\xff\xba\xfd\xf7\x08\x1e\x14\xdc\x1b\x79\x42\x61\x5d\x43\x9f\xb3\x60\xa4\x95\xe6\x28\xcb\x31\x42\x4c\x96\xca\x3a\xa3\xb6\x9d\x53\xba\x85\xbc\x2d\xa1\xb3\x12\x54\x0b\x56\x77\xa6\x90\x7d\x64\xab\xda\xdc\x9c\x60\xa7\x4d\x63\x47\xf0\x5d\xb9\x0a\xb4\xe9\x7f\x75\xe7\x50\xa3\x4b\xb5\x53\x45\xee\x1b\x8c\x20\x37\x12\x0e\xd2\x34\xca\x39\x59\xc2\xc1\xe8\xa3\x2a\x65\x09\xae\xca\x1d\xb8\x4a\xc2\x4e\xd7\xb5\xfe\xae\xda\x3d\x14\xba\x2d\x95\x2f\xb2\xc8\x17\x35\xd2\xfd\x07\xa1\xdb\x31\x5c\x53\xb2\xa0\x77\xcf\x5c\x0a\x5d\x4a\x68\x3a\xeb\xc0\x48\x97\xab\xb6\x6f\x98\x6f\xf5\xd1\xa7\xce\xca\x11\x00\xb4\xda\xa9\x42\x8e\xc0\x55\xca\x42\xad\xac\xf3\x3d\x5e\xc7\xf5\x9a\xae\xb9\x94\xca\x16\x75\xae\x1a\x69\xc6\xe8\xee\x47\x0a\xaa\xbd\xf4\xe0\x99\xc2\xc1\xe8\xb2\x2b\xe4\x3f\xc1\x02\x06\x71\xbe\x4d\xa9\x8b\xae\x91\xad\xcb\x9f\x17\x34\xd1\x06\xb4\xab\xa4\x81\x26\x77\xd2\xa8\xbc\xb6\xaf\x3e\xf7\xcb\xf1\x5d\x2f\x05\x8c\x11\x12\x2b\xc2\x81\xd3\xa5\x78\x0c\x19\x06\xc2\x61\xc3\xe8\x03\x89\x71\x0c\x8b\x27\x08\x33\xb1\xa2\x0c\xc2\x34\x86\x88\xa6\x82\x91\x45\x26\x28\xe3\xf0\xe5\x4b\xc8\x81\xf0\xf7\xef\x7d\x0a\x85\xe9\x13\xe0\xcf\x1b\x86\x39\x07\xca\x80\xac\x37\x09\xc1\x31\x3c\x86\x8c\x85\xa9\x20\x98\x8f\x80\xa4\x51\x92\xc5\x24\xbd\x1f\xc1\x22\x13\x90\x52\x01\x09\x59\x13\x81\x63\x10\x74\x04\x62\x85\xd1\x8f\x65\x40\x97\xb0\xc6\x2c\x5a\x85\xa9\x08\x17\x24\x21\xe2\xa9\xa7\xb2\x24\x22\xf5\xb3\x96\x9e\x1a\x6c\x42\x26\x48\x94\x25\x21\x83\x4d\xc6\x36\x94\x63\xe4\x95\xc4\x84\x47\x49\x48\xd6\x38\x1e\x03\x49\x21\xa5\x80\x1f\x70\x2a\x80\xaf\xc2\x24\x79\x16\x46\xd9\xb5\xae\x05\x86\x84\x84\x8b\x04\xa3\xbe\x77\xfa\x04\x31\x61\x38\x12\x5e\xc0\xeb\x29\x22\x31\x4e\x45\x98\x8c\x80\x6f\x70\x44\xfc\x01\x7f\xc6\xeb\x4d\x12\xb2\xa7\xd1\xb9\x27\xc7\xff\xcb\x70\x2a\x48\x98\xa0\x38\x5c\x87\xf7\x98\xc3\x87\x5f\x98\xb0\x61\x34\xca\x18\x5e\x7b\x96\x74\x09\x3c\x5b\x70\x41\x44\x26\x30\xdc\x53\x1a\x73\x44\x19\x70\xcc\x1e\x48\x84\xf9\x27\x48\x28\xef\xfd\xc9\x38\x1e\x41\x1c\x8a\xb0\x1f\xbc\x61\x74\x49\x04\xff\xe4\xcf\x8b\x8c\x93\xde\x26\x92\x0a\xcc\x58\xb6\x11\x84\xa6\x1f\xd1\x8a\x3e\xe2\x07\xcc\x20\x0a\x33\x8e\xe3\xde\x4f\x9a\xf6\x52\xc5\x0a\x53\xf6\xe4\x9b\x7a\x0f\x7a\xbb\x47\xf0\xb8\xc2\x62\x85\x99\xb7\xb0\x77\x2a\xf4\x16\x70\xc1\x48\x24\xd0\x05\x8c\x32\x10\x94\x89\x0b\x8d\x90\xe2\xfb\x84\xdc\xe3\x34\xc2\x3e\x4b\x7d\x97\x47\xc2\xf1\x47\x08\x19\xe1\x1e\x40\x86\xb1\x8f\xe1\x13\xa2\x59\x2f\x59\xac\xb0\x17\x34\x1c\x2f\xae\xe5\xa8\xdf\x1d\x90\x25\x84\xf1\x03\xf1\xb4\xcf\xe0\x0d\xe5\x9c\x9c\x6f\x06\x5d\x22\x9e\x45\x2b\x18\xec\x1e\xa3\x9b\x9b\x39\x42\xd3\x77\xa5\x2e\xdc\xe9\x20\x61\x25\xd6\xc9\x1c\x4d\x2b\xd7\xd4\x73\x34\xb5\x85\x51\x07\x07\xd6\x14\xb3\x60\xf2\xd5\x4e\xbe\xfe\xd1\x49\x73\x1a\x37\xaa\x1d\x7f\xb5\xc1\x7c\x3a\x19\x00\x3f\x45\xde\x74\xea\x77\xc0\x85\x32\x45\x2d\x6f\x0e\x46\xef\x8d\xb4\xf6\x77\x4a\xba\xbb\xdd\x4d\x7e\x50\xbf\x82\x0d\xff\xad\x87\x41\x29\x77\xd2\x5c\x82\x6b\xd5\x7e\x03\x23\xeb\x59\x60\xdd\xa9\x96\xb6\x92\xd2\x05\x50\x19\xb9\x9b\x05\x93\xc2\xda\x49\x9d\x9f\x74\xe7\xc6\x85\xb5\xc1\x15\x5c\x15\xba\x7d\x01\x0e\xa0\xc9\x2e\x3f\xfa\xf0\xf8\xd0\xee\x3d\xd8\x29\x57\xcb\x79\x76\xb7\x04\xfc\xe7\xa1\xd6\xca\x41\x2c\x1b\x3d\x9d\x0c\x71\x34\xad\x64\x5e\x4a\x33\x47\x00\xd3\x52\x1d\x41\x95\xb3\x60\x08\xfd\xdf\xe9\x83\x97\x54\xaa\xe3\x4b\xb6\xa8\x73\x6b\x67\x41\x65\x7e\x9a\x80\xad\x76\x4e\x37\x97\x79\xd5\xec\xcf\x3e\xa8\x26\xdf\x4b\x3b\x39\x18\xbd\x53\xb5\x1c\xdb\xe3\x3e\xe8\x07\x9e\x03\x9e\xee\xe4\x99\xcf\x0b\x9b\xad\x2e\x4f\x41\xdf\xa8\xba\x9d\x1f\xd5\xde\xc8\xd3\x74\x52\xdd\xf6\x91\x6d\xe7\x9c\x6e\x7b\x98\x91\xfb\x60\xce\xe4\x5e\x59\x27\x0d\x78\xbd\xb1\x3c\xaa\x42\x4e\x27\x03\x68\xc0\x0f\x42\xfb\x77\x7f\x5e\xf8\x37\xaa\xf7\x4d\xef\x75\xe7\x02\xff\xdd\xaa\x74\x39\x0b\x36\x94\x8b\x61\xa0\x6a\x0f\x9d\xeb\xbb\x3f\x63\xfc\xd5\x9c\x05\xb6\xdb\x36\xca\x05\x70\xcc\xeb\x4e\xce\x82\x44\xef\x81\x76\x6e\xa8\x99\xf8\xe6\x57\x76\xee\x54\xed\xa4\x09\x9e\x3d\xda\xd6\x79\xf1\xad\xc7\x5e\x60\xcc\x99\xf8\x39\xfe\x96\x6b\x45\xad\xed\xd9\xb3\x73\xa7\x3e\xf2\x5a\x71\xb1\x87\x7e\xb9\x41\xbf\x75\x2e\x8b\xce\x28\x77\x82\xff\xca\x13\x0c\xfe\x98\xfe\x0b\xf4\xb2\xa0\xb7\xc7\xf9\x7b\xed\xf4\x37\xd9\x5e\x8d\xec\xee\x76\x6f\x0e\xac\xb5\xdf\xda\x4b\xea\xad\x86\xbb\x5c\xd5\x9d\xb9\x56\x70\x8e\xfd\x6d\x9d\xed\x8a\xc2\x3f\x8b\x97\x75\xe7\xd8\x2b\x95\x2b\x2d\x17\xbc\x4a\x39\x3c\x64\x4a\xb7\x17\x57\xf2\xa2\xe0\x7c\x78\xf9\x19\xde\x37\x7f\x05\x00\x00\xff\xff\x22\xba\x7a\xd8\x84\x09\x00\x00") + +func staticProfileHtmlBytes() ([]byte, error) { + return bindataRead( + _staticProfileHtml, + "static/profile.html", + ) +} + +func staticProfileHtml() (*asset, error) { + bytes, err := staticProfileHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "static/profile.html", size: 2436, mode: os.FileMode(420), modTime: time.Unix(1494885204, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +// Asset loads and returns the asset for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func Asset(name string) ([]byte, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) + } + return a.bytes, nil + } + return nil, fmt.Errorf("Asset %s not found", name) +} + +// MustAsset is like Asset but panics when Asset would return an error. +// It simplifies safe initialization of global variables. +func MustAsset(name string) []byte { + a, err := Asset(name) + if err != nil { + panic("asset: Asset(" + name + "): " + err.Error()) + } + + return a +} + +// AssetInfo loads and returns the asset info for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func AssetInfo(name string) (os.FileInfo, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) + } + return a.info, nil + } + return nil, fmt.Errorf("AssetInfo %s not found", name) +} + +// AssetNames returns the names of the assets. +func AssetNames() []string { + names := make([]string, 0, len(_bindata)) + for name := range _bindata { + names = append(names, name) + } + return names +} + +// _bindata is a table, holding each asset generator, mapped to its name. +var _bindata = map[string]func() (*asset, error){ + "static/css/layout.css": staticCssLayoutCss, + "static/fonts/Open-Sans-regular.woff": staticFontsOpenSansRegularWoff, + "static/images/close.svg": staticImagesCloseSvg, + "static/images/failure.svg": staticImagesFailureSvg, + "static/images/profile.svg": staticImagesProfileSvg, + "static/images/success.svg": staticImagesSuccessSvg, + "static/images/u2f-token.svg": staticImagesU2fTokenSvg, + "static/index.html": staticIndexHtml, + "static/js/circle-progress.min.js": staticJsCircleProgressMinJs, + "static/js/jquery-ui.min.js": staticJsJqueryUiMinJs, + "static/js/jquery.min.js": staticJsJqueryMinJs, + "static/js/scripts.js": staticJsScriptsJs, + "static/js/u2f-api.js": staticJsU2fApiJs, + "static/layout/favicon.png": staticLayoutFaviconPng, + "static/login.html": staticLoginHtml, + "static/profile.html": staticProfileHtml, +} + +// AssetDir returns the file names below a certain +// directory embedded in the file by go-bindata. +// For example if you run go-bindata on data/... and data contains the +// following hierarchy: +// data/ +// foo.txt +// img/ +// a.png +// b.png +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error +// AssetDir("") will return []string{"data"}. +func AssetDir(name string) ([]string, error) { + node := _bintree + if len(name) != 0 { + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") + for _, p := range pathList { + node = node.Children[p] + if node == nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + } + } + if node.Func != nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + rv := make([]string, 0, len(node.Children)) + for childName := range node.Children { + rv = append(rv, childName) + } + return rv, nil +} + +type bintree struct { + Func func() (*asset, error) + Children map[string]*bintree +} +var _bintree = &bintree{nil, map[string]*bintree{ + "static": &bintree{nil, map[string]*bintree{ + "css": &bintree{nil, map[string]*bintree{ + "layout.css": &bintree{staticCssLayoutCss, map[string]*bintree{}}, + }}, + "fonts": &bintree{nil, map[string]*bintree{ + "Open-Sans-regular.woff": &bintree{staticFontsOpenSansRegularWoff, map[string]*bintree{}}, + }}, + "images": &bintree{nil, map[string]*bintree{ + "close.svg": &bintree{staticImagesCloseSvg, map[string]*bintree{}}, + "failure.svg": &bintree{staticImagesFailureSvg, map[string]*bintree{}}, + "profile.svg": &bintree{staticImagesProfileSvg, map[string]*bintree{}}, + "success.svg": &bintree{staticImagesSuccessSvg, map[string]*bintree{}}, + "u2f-token.svg": &bintree{staticImagesU2fTokenSvg, map[string]*bintree{}}, + }}, + "index.html": &bintree{staticIndexHtml, map[string]*bintree{}}, + "js": &bintree{nil, map[string]*bintree{ + "circle-progress.min.js": &bintree{staticJsCircleProgressMinJs, map[string]*bintree{}}, + "jquery-ui.min.js": &bintree{staticJsJqueryUiMinJs, map[string]*bintree{}}, + "jquery.min.js": &bintree{staticJsJqueryMinJs, map[string]*bintree{}}, + "scripts.js": &bintree{staticJsScriptsJs, map[string]*bintree{}}, + "u2f-api.js": &bintree{staticJsU2fApiJs, map[string]*bintree{}}, + }}, + "layout": &bintree{nil, map[string]*bintree{ + "favicon.png": &bintree{staticLayoutFaviconPng, map[string]*bintree{}}, + }}, + "login.html": &bintree{staticLoginHtml, map[string]*bintree{}}, + "profile.html": &bintree{staticProfileHtml, map[string]*bintree{}}, + }}, +}} + +// RestoreAsset restores an asset under the given directory +func RestoreAsset(dir, name string) error { + data, err := Asset(name) + if err != nil { + return err + } + info, err := AssetInfo(name) + if err != nil { + return err + } + err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) + if err != nil { + return err + } + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + if err != nil { + return err + } + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil +} + +// RestoreAssets restores an asset under the given directory recursively +func RestoreAssets(dir, name string) error { + children, err := AssetDir(name) + // File + if err != nil { + return RestoreAsset(dir, name) + } + // Dir + for _, child := range children { + err = RestoreAssets(dir, filepath.Join(name, child)) + if err != nil { + return err + } + } + return nil +} + +func _filePath(dir, name string) string { + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) +} + diff --git a/src/u2f-demo/conversions.go b/src/u2f-demo/conversions.go new file mode 100644 index 0000000..4368738 --- /dev/null +++ b/src/u2f-demo/conversions.go @@ -0,0 +1,44 @@ +/*- + * Copyright (C) 2017, Vi Grey + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS "AS IS" AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +package main + +import ( + "regexp" +) + +/* + * regExpReplace looks inside origString for all regExpr and replaces it with + * replaceValue. regExpr is a regular expression. + */ +func regExpReplace(origString, regExpr, replaceValue string) string { + r, err := regexp.Compile(regExpr) + if err != nil { + panic("Error replacing with Regular Expression") + } + return r.ReplaceAllString(origString, replaceValue) +} diff --git a/src/u2f-demo/crypto.go b/src/u2f-demo/crypto.go new file mode 100644 index 0000000..0281741 --- /dev/null +++ b/src/u2f-demo/crypto.go @@ -0,0 +1,111 @@ +/*- + * Copyright (C) 2017, Vi Grey + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +package main + +import ( + "golang.org/x/crypto/bcrypt" + "crypto/ecdsa" + "crypto/elliptic" + "crypto/rand" + "crypto/tls" + "crypto/x509" + "crypto/x509/pkix" + "encoding/base64" + "encoding/pem" + "math/big" + "time" +) + +func crypt(pass []byte) []byte { + hash, _ := bcrypt.GenerateFromPassword(pass, 12) + return hash +} + +func bcryptCompare(pass, hash []byte) bool { + if err := bcrypt.CompareHashAndPassword(hash, pass); err != nil { + return false + } + return true +} + +func pemBlockForKey(priv *ecdsa.PrivateKey) *pem.Block { + b, err := x509.MarshalECPrivateKey(priv) + if err != nil { + panic(err) + } + return &pem.Block{Type: "EC PRIVATE KEY", Bytes: b} +} + +func generateTLSCert() tls.Certificate { + privkey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader) + if err != nil { + panic(err) + } + serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128) + serialNumber, err := rand.Int(rand.Reader, serialNumberLimit) + if err != nil { + panic("Error creating TLS Serial Number") + } + tlsDomain := serverAddress + certificateTemplate := x509.Certificate{ + SerialNumber: serialNumber, + Subject: pkix.Name{ + Organization: []string{"U2F Exploit Demo"}, + }, + NotBefore: time.Now().Add(-720 * time.Hour).UTC(), + NotAfter: time.Now().Add(876000 * time.Hour).UTC(), + KeyUsage: (x509.KeyUsageCertSign | x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature), + IsCA: true, + BasicConstraintsValid: true, + DNSNames: []string{tlsDomain}, + } + serialNumber = nil + derBytes, err := x509.CreateCertificate(rand.Reader, &certificateTemplate, + &certificateTemplate, + &privkey.PublicKey, privkey) + if err != nil { + panic("Error creating X509 Certificate") + } + cert := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: derBytes}) + key := pem.EncodeToMemory(pemBlockForKey(privkey)) + cer, err := tls.X509KeyPair(cert, key) + if err != nil { + panic("Error creating TLS Certificate") + } + return cer +} + +// Generate a random byte array of size length +func randByteArray(size int) string { + randValue := make([]byte, size) + if _, err := rand.Read(randValue); err != nil { + panic(err) + } + return base64.StdEncoding.EncodeToString(randValue) +} + diff --git a/src/u2f-demo/http.go b/src/u2f-demo/http.go new file mode 100644 index 0000000..b3a3fd1 --- /dev/null +++ b/src/u2f-demo/http.go @@ -0,0 +1,455 @@ +/*- + * Copyright (C) 2017, Vi Grey + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +package main + +import ( + "github.com/tstranex/u2f" + "github.com/gorilla/mux" + "crypto/tls" + "encoding/base64" + "encoding/json" + "fmt" + "net/http" + "strings" + "time" +) + +var ( + indexContent, _ = Asset("static/index.html") + loginContent, _ = Asset("static/login.html") + profileContent, _ = Asset("static/profile.html") + openSansWoffContent, _ = Asset("static/fonts/Open-Sans-regular.woff") + layoutCSSContent, _ = Asset("static/css/layout.css") + circleProgressJSContent, _ = Asset("static/js/circle-progress.min.js") + jqueryJSContent, _ = Asset("static/js/jquery.min.js") + jqueryUIJSContent, _ = Asset("static/js/jquery-ui.min.js") + scriptsJSContent, _ = Asset("static/js/scripts.js") + u2fApiJSContent, _ = Asset("static/js/u2f-api.js") + faviconContent, _ = Asset("static/layout/favicon.png") + closeSVGContent, _ = Asset("static/images/close.svg") + failureSVGContent, _ = Asset("static/images/failure.svg") + profileSVGContent, _ = Asset("static/images/profile.svg") + successSVGContent, _ = Asset("static/images/success.svg") + u2fTokenSVGContent, _ = Asset("static/images/u2f-token.svg") +) + +type authSession struct { + userID string + authToken string + timestamp time.Time + lastLogin time.Time +} + +func registerRequest(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text/html") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + if authToken, _ := r.Cookie("authToken"); authToken != nil { + for i, a := range authSessions { + if a.authToken == authToken.Value { + authSessions[i].timestamp = time.Now() + for _, user := range users { + if user.userID == a.userID { + if c, u2fErr := u2f.NewChallenge(appID, trustedFacets); u2fErr == nil { + req := u2f.NewWebRegisterRequest(c, user.registrations) + u2fr := u2fReq{} + u2fr.userID = user.userID + u2fr.challenge = c + u2fr.registration = true + u2fReqs = append(u2fReqs, u2fr) + json.NewEncoder(w).Encode(req) + return + } + } + } + } + } + } + http.NotFound(w, r) +} + +func registerResponse(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text/html") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + var regResp u2f.RegisterResponse + if err := json.NewDecoder(r.Body).Decode(®Resp); err != nil { + http.NotFound(w, r) + return + } + if authToken, _ := r.Cookie("authToken"); authToken != nil { + for i, a := range authSessions { + if a.authToken == authToken.Value { + authSessions[i].timestamp = time.Now() + for j, user := range users { + if user.userID == a.userID { + for _, req := range u2fReqs { + if user.userID == req.userID && req.registration { + challenge := req.challenge + if reg, err := u2f.Register(regResp, *challenge, nil); err == nil { + users[j].registrations = append(users[j].registrations, *reg) + k := u2fKeyHandle{} + k.counter = 0 + k.keyhandle = reg.KeyHandle + users[j].keyhandles = append(users[j].keyhandles, k) + break + } + } + } + w.Write([]byte("success")) + return + } + } + } + } + } + http.NotFound(w, r) +} + +func handleOpenSansWoff(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "application/font-woff") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(openSansWoffContent), "%", "%%")) +} + +func handleLayoutCSS(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text/css") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(layoutCSSContent), "%", "%%")) +} + +func handleScriptsJS(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "application/javascript") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(scriptsJSContent), "%", "%%")) +} + +func handleU2FApiJS(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "application/javascript") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(u2fApiJSContent), "%", "%%")) +} + +func handleJqueryJS(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "application/javascript") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(jqueryJSContent), "%", "%%")) +} + +func handleJqueryUIJS(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "application/javascript") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(jqueryUIJSContent), "%", "%%")) +} + +func handleCircleProgressJS(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "application/javascript") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(circleProgressJSContent), "%", "%%")) +} + +func handleFavicon(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "image/png") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(faviconContent), "%", "%%")) +} + +func handleCloseSVG(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "image/svg+xml") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(closeSVGContent), "%", "%%")) +} + +func handleFailureSVG(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "image/svg+xml") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(failureSVGContent), "%", "%%")) +} + +func handleProfileSVG(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "image/svg+xml") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(profileSVGContent), "%", "%%")) +} + +func handleSuccessSVG(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "image/svg+xml") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(successSVGContent), "%", "%%")) +} + +func handleU2FTokenSVG(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "image/svg+xml") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + fmt.Fprintf(w, regExpReplace(string(u2fTokenSVGContent), "%", "%%")) +} + +func handleProfile(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text/html") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + if authToken, _ := r.Cookie("authToken"); authToken != nil { + for i, a := range authSessions { + if a.authToken == authToken.Value { + authSessions[i].timestamp = time.Now() + for _, user := range users { + if user.userID == a.userID { + fmt.Fprintf(w, string(profileContent)) + return + } + } + } + } + } + http.Redirect(w, r, "/", http.StatusSeeOther) +} + +func handleLogout(w http.ResponseWriter, r *http.Request){ + w.Header().Add("Content-Type", "text/html") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + if authToken, _ := r.Cookie("authToken"); authToken != nil { + for i, a := range authSessions { + if a.authToken == authToken.Value { + for { + if locked { + time.Sleep(1 * time.Second) + } else { + break + } + } + locked = true + authSessions = append(authSessions[:i], authSessions[i + 1:]...) + locked = false + } + } + } + cookie := http.Cookie{Name: "authToken", MaxAge: -1} + http.SetCookie(w, &cookie) + http.Redirect(w, r, "/", http.StatusSeeOther) +} + +func handleLogin(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text/html") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + var sigResp u2f.SignResponse + var sigChallenge string + authToken, _ := r.Cookie("authToken") + username := r.PostFormValue("username") + password := r.PostFormValue("password") + signature := r.PostFormValue("signature") + for i, a := range authSessions { + if authToken != nil { + if a.authToken == authToken.Value { + authSessions[i].timestamp = time.Now() + http.Redirect(w, r, "/profile", http.StatusSeeOther) + return + } + } + } + for i, user := range users { + if len(signature) > 0 { + if err := json.Unmarshal([]byte(signature), &sigResp); err == nil { + for j, keyhandle := range user.keyhandles { + s := base64.StdEncoding.EncodeToString(keyhandle.keyhandle) + s = regExpReplace(s, "\\+", "-") + s = regExpReplace(s, "\\/", "_") + s = regExpReplace(s, "\\=", "") + if s == sigResp.KeyHandle { + for _, req := range u2fReqs { + if user.userID == req.userID { + for _, reg := range user.registrations { + fmt.Println(0) + challenge := req.challenge + if newCounter, err := reg.Authenticate(sigResp, *challenge, keyhandle.counter); err == nil { + k := u2fKeyHandle{} + k.counter = newCounter + k.keyhandle = reg.KeyHandle + users[i].keyhandles[j] = k + authTkn := randByteArray(32) + a := authSession{} + a.userID = user.userID + a.authToken = authTkn + a.timestamp = time.Now() + a.lastLogin = time.Now() + authSessions = append(authSessions, a) + cookie := http.Cookie{Name: "authToken", Value: authTkn, + Path: "/", + MaxAge: 0, HttpOnly: true} + http.SetCookie(w, &cookie) + http.Redirect(w, r, "/profile", http.StatusSeeOther) + return + } else { + panic(err) + } + } + } + } + } + } + } + http.NotFound(w, r) + return + } else if strings.ToLower(user.username) == strings.ToLower(username) { + if bcryptCompare([]byte(password), user.passwordHash) { + if len(user.registrations) > 0 { + c, err := u2f.NewChallenge(appID, trustedFacets) + req := c.SignRequest(user.registrations) + u2fr := u2fReq{} + u2fr.userID = user.userID + u2fr.challenge = c + u2fr.registration = false + u2fReqs = append(u2fReqs, u2fr) + if err != nil { + http.Redirect(w, r, "/", http.StatusInternalServerError) + return + } + if sig, err := json.Marshal(req); err == nil { + sigChallenge = string(sig) + } + } else { + authTkn := randByteArray(32) + a := authSession{} + a.userID = user.userID + a.authToken = authTkn + a.timestamp = time.Now() + authSessions = append(authSessions, a) + cookie := http.Cookie{Name: "authToken", Value: authTkn, + Path: "/", + MaxAge: 0, HttpOnly: true} + http.SetCookie(w, &cookie) + http.Redirect(w, r, "/profile", http.StatusSeeOther) + return + } + } else { + http.Redirect(w, r, "/", http.StatusSeeOther) + return + } + } else { + http.Redirect(w, r, "/", http.StatusSeeOther) + return + } + } + fmt.Fprintf(w, regExpReplace(string(loginContent), "%C", sigChallenge)) +} + +func handleIndex(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text/html") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + if authToken, _ := r.Cookie("authToken"); authToken != nil { + for i, a := range authSessions { + if a.authToken == authToken.Value { + authSessions[i].timestamp = time.Now() + for _, user := range users { + if user.userID == a.userID { + http.Redirect(w, r, "/profile", http.StatusSeeOther) + return + } + } + } + } + } + fmt.Fprintf(w, string(indexContent)) +} + +func handleFlag(w http.ResponseWriter, r *http.Request) { + w.Header().Add("Content-Type", "text") + w.Header().Add("Strict-Transport-Security", "max-age=63072000; includeSubDomains; preload") + if authToken, _ := r.Cookie("authToken"); authToken != nil { + for i, a := range authSessions { + if a.authToken == authToken.Value { + authSessions[i].timestamp = time.Now() + for _, user := range users { + if user.userID == a.userID { + w.Write([]byte("Successfully logged in as " + user.username + " with the authToken cookie value of " + authToken.Value)) + return + } + } + } + } + } + w.WriteHeader(http.StatusForbidden) + w.Write([]byte("Access Denied")) +} + +func startHTTPListen() { + router := mux.NewRouter() + router.HandleFunc("/", handleIndex) + router.HandleFunc("/flag", handleFlag) + router.HandleFunc("/login", handleLogin) + router.HandleFunc("/logout", handleLogout) + router.HandleFunc("/profile", handleProfile) + router.HandleFunc("/fonts/Open-Sans-regular.woff", handleOpenSansWoff) + router.HandleFunc("/css/layout.css", handleLayoutCSS) + router.HandleFunc("/js/u2f-api.js", handleU2FApiJS) + router.HandleFunc("/js/scripts.js", handleScriptsJS) + router.HandleFunc("/js/jquery.min.js", handleJqueryJS) + router.HandleFunc("/js/jquery-ui.min.js", handleJqueryUIJS) + router.HandleFunc("/js/circle-progress.min.js", handleCircleProgressJS) + router.HandleFunc("/layout/favicon.png", handleFavicon) + router.HandleFunc("/images/close.svg", handleCloseSVG) + router.HandleFunc("/images/failure.svg", handleFailureSVG) + router.HandleFunc("/images/profile.svg", handleProfileSVG) + router.HandleFunc("/images/success.svg", handleSuccessSVG) + router.HandleFunc("/images/u2f-token.svg", handleU2FTokenSVG) + router.HandleFunc("/registerRequest", registerRequest) + router.HandleFunc("/registerResponse", registerResponse) + cfg := &tls.Config{ + MinVersion: tls.VersionTLS12, + CurvePreferences: []tls.CurveID{tls.X25519}, + PreferServerCipherSuites: true, + ServerName: serverAddress, + } + srv := &http.Server { + Addr: listenAddress + ":" + localPort, + Handler: router, + TLSConfig: cfg, + TLSNextProto: make(map[string]func(*http.Server, *tls.Conn, http.Handler), 0), + ReadTimeout: 1 * time.Minute, + WriteTimeout: 1 * time.Minute, + } + if tlsCertPath != "" && tlsKeyPath != "" { + cfg.CipherSuites = []uint16{ + tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, + tls.TLS_RSA_WITH_AES_256_GCM_SHA384, + tls.TLS_RSA_WITH_AES_128_GCM_SHA256, + } + srv.TLSConfig = cfg + if err := srv.ListenAndServeTLS(tlsCertPath, tlsKeyPath); err != nil { + panic(err) + } + } else { + cfg.CipherSuites = []uint16{ + tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, + tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, + } + cert := generateTLSCert() + cfg.Certificates = []tls.Certificate{cert} + srv.TLSConfig = cfg + if err := srv.ListenAndServeTLS("", ""); err != nil { + panic(err) + } + } +} diff --git a/src/u2f-demo/u2f-demo.go b/src/u2f-demo/u2f-demo.go new file mode 100644 index 0000000..f5a3024 --- /dev/null +++ b/src/u2f-demo/u2f-demo.go @@ -0,0 +1,63 @@ +/*- + * Copyright (C) 2017, Vi Grey + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +package main + +const ( + listenAddress = "localhost" //Default "localhost" + localPort = "443" //Default "443" + httpPort = "443" //Default "443" + tlsCertPath = "" //Default "" + tlsKeyPath = "" //Default "" +) + +var ( + serverAddress string + appID string + users []user + u2fReqs []u2fReq + locked bool + authSessions []authSession + trustedFacets []string +) + +func main() { + serverAddress = "localhost" //Default "localhost" + if httpPort != "" && httpPort != "443" { + serverAddress += ":" + httpPort + } + appID = "https://" + serverAddress + trustedFacets = append(trustedFacets, appID) + u := user{} + u.username = "vigrey" //Default "vigrey" + u.passwordHash = crypt([]byte("lamepassword")) //Default crypt([]byte("lamepassword")) + u.userID = randByteArray(32) + users = append(users, u) + go deleteExpiredU2FReqs() + go deleteExpiredAuthSessions() + startHTTPListen() +} diff --git a/src/u2f-demo/u2frequests.go b/src/u2f-demo/u2frequests.go new file mode 100644 index 0000000..2528a78 --- /dev/null +++ b/src/u2f-demo/u2frequests.go @@ -0,0 +1,108 @@ +/*- + * Copyright (C) 2017, Vi Grey + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +package main + +import ( + "github.com/tstranex/u2f" + "time" +) + +type user struct { + userID string + username string + passwordHash []byte + registrations []u2f.Registration + keyhandles []u2fKeyHandle +} + +type u2fKeyHandle struct { + keyhandle []byte + counter uint32 +} + +type u2fReq struct { + userID string + challenge *u2f.Challenge + registration bool +} + +/* + * Checks all U2F requests for any request involving keyhandle k and returns the + * challenge and counter + */ +func checkU2FReqs(k []byte) (*u2f.Challenge, uint32) { + for _, req := range u2fReqs { + uID := req.userID + c := req.challenge + if c.Timestamp.Add(40 * time.Second).After(time.Now()) { + for _, u := range users { + if u.userID == uID { + for _, u2fkeyhandle := range u.keyhandles { + if string(u2fkeyhandle.keyhandle) == string(k) { + return c, u2fkeyhandle.counter + } + } + } + } + } + } + return nil, 0 +} + +// Deletes all expired U2F requests once every 10 seconds +func deleteExpiredU2FReqs() { + for { + for i, req := range u2fReqs { + if req.challenge.Timestamp.Add(40 * time.Second).Before(time.Now()) { + u2fReqs = append(u2fReqs[:i], u2fReqs[i + 1:]...) + } + } + time.Sleep(10 * time.Second) + } +} + +// Deletes all expired authSessions once every 1 hour +func deleteExpiredAuthSessions() { + for { + for { + if locked { + time.Sleep(1 * time.Second) + } else { + break + } + } + locked = true + for i, auth := range authSessions { + if auth.timestamp.Add(3 * time.Hour).Before(time.Now()) { + authSessions = append(authSessions[:i], authSessions[i + 1:]...) + } + } + locked = false + time.Sleep(1 * time.Hour) + } +} diff --git a/static/css/layout.css b/static/css/layout.css new file mode 100644 index 0000000..6f35097 --- /dev/null +++ b/static/css/layout.css @@ -0,0 +1,262 @@ +/*- + * Copyright (C) 2017, Vi Grey + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +@font-face { + font-family: "Open Sans"; + font-weight: 400; + font-style: normal; + src: local("Open Sans"), url("/fonts/Open-Sans-regular.woff") format("woff"); +} + +body { + margin: 0; + font-family: Open Sans; + color: #0e2740; +} +input, +button { + font-family: Open Sans; +} + +.loader { + width: 56px; + height: 56px; + -webkit-animation: spin 1.5s linear infinite; + animation: spin 1.5s linear infinite; + margin: 32px auto 0; + position: relative; +} + +#sign .loader { + display: none; +} + +.loader .success { + height: 20px; + width: 24px; + top: calc(50% - 10px); + left: calc(50% - 12px); + position: absolute; + display: none; +} + +.loader .failure { + height: 20px; + width: 20px; + top: calc(50% - 10px); + left: calc(50% - 10px); + position: absolute; + display: none; +} + +@-webkit-keyframes spin { + 0% { -webkit-transform: rotate(0deg); } + 100% { -webkit-transform: rotate(360deg); } +} + +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } +} + +#filter { + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: none; +} + +#filter.black { + background-color: rgba(0, 0, 0, 0.8); +} + +#filter.blue { + background-color: rgba(14, 64, 114, 0.8); +} + +#filter.on { + display: block; +} + +#login, +#register, +#sign { + border-radius: 6px; + background-color: #fff; + margin: 32px auto; + padding: 64px; + width: 480px; + text-align: center; + box-shadow: 0 2px 4px 3px rgba(0,0,0,0.3); + position: relative; +} + +#register .u2f, +#sign .u2f { + width: 200px; + height: auto; +} + +#login .title, +#register .title, +#sign .title { + font-size: 32px; + font-weight: bold; + width: 480px; + margin: 0 auto 64px; +} + +#register .description, +#sign .description { + font-size: 20px; + margin: 32px auto 0; + width: 480px; +} + +#register .close, +#sign .close { + height: 20px; + width: 20px; + position: absolute; + right: 12px; + top: 12px; + opacity: 0.6; + cursor: pointer; +} + +#register .close:hover, +#sign .close:hover { + opacity: 1; +} + +#body { + text-align: center; +} + +#login input[type="submit"], +#logout, +button { + cursor: pointer; + border-radius: 4px; + padding: 8px 12px; + outline: 0; + background-color: transparent; + border: 4px solid #0e2740; + font-size: 18px; + font-weight: bold; + color: #0e2740; + margin-bottom: 32px; +} + +#login input[type="submit"]:hover, +#logout:hover, +button:hover { + background-color: #0e2740; + color: #fff; +} + +#login input[type="submit"], +#logout { + margin-bottom: 0; +} + +#login input[type="submit"] { + border-width: 3px; + border-radius: 3px; + font-size: 14px; + margin-top: 32px; +} + +header { + position: relative; + height: 224px; +} + +#login { + line-height: 48px; + /*text-align: right;*/ +} + +#login input:not([type="submit"]) { + height: 32px; + width: 300px; + padding: 0 8px; + outline: 0; + margin: 0; + border: 2px solid #0e3760; + color: #0e2740; + border-radius: 4px; + vertical-align: middle; +} + +#profile { + position: absolute; + top: 96px; + left: calc(50% - 52px); + height: 96px; + width: 96px; + border: 4px solid #0e4072; + border-radius: 4px; + background-color: #0e4072; +} + +#header_top { + background-color: rgba(14, 64, 114, 0.175); + position: absolute; + height: 147px; + top: 0; + width: 100%; +} + +.hr { + position: absolute; + top: 147px; + width: 100%; + height: 2px; + background-color: #0e4072; + opacity: 0.75; + z-index: -1; +} + +.hr.bottom { + height: 1px; + top: 149px; + opacity: .25; + z-index: -1; +} + +h1 { + padding: 0; + margin: 0 0 48px; + text-align: center; +} + +#challenge { + display: none; +} diff --git a/static/fonts/Open-Sans-regular.woff b/static/fonts/Open-Sans-regular.woff new file mode 100644 index 0000000..ac2b2c6 Binary files /dev/null and b/static/fonts/Open-Sans-regular.woff differ diff --git a/static/images/close.svg b/static/images/close.svg new file mode 100644 index 0000000..3d66209 --- /dev/null +++ b/static/images/close.svg @@ -0,0 +1,66 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/static/images/failure.svg b/static/images/failure.svg new file mode 100644 index 0000000..04f0aa4 --- /dev/null +++ b/static/images/failure.svg @@ -0,0 +1,68 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/static/images/profile.svg b/static/images/profile.svg new file mode 100644 index 0000000..42bf017 --- /dev/null +++ b/static/images/profile.svg @@ -0,0 +1,94 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/static/images/success.svg b/static/images/success.svg new file mode 100644 index 0000000..661eaa7 --- /dev/null +++ b/static/images/success.svg @@ -0,0 +1,69 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/static/images/u2f-token.svg b/static/images/u2f-token.svg new file mode 100644 index 0000000..b719c24 --- /dev/null +++ b/static/images/u2f-token.svg @@ -0,0 +1,123 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..cdb9455 --- /dev/null +++ b/static/index.html @@ -0,0 +1,50 @@ + + + + + + + + + + + +U2F Exploit Demo +
+
+
+
U2F Exploit Demo Login
+ +
+ +
+ +
+
+
+ diff --git a/static/js/circle-progress.min.js b/static/js/circle-progress.min.js new file mode 100644 index 0000000..a4c4053 --- /dev/null +++ b/static/js/circle-progress.min.js @@ -0,0 +1,10 @@ +/** + * jquery-circle-progress - jQuery Plugin to draw animated circular progress bars: + * {@link http://kottenator.github.io/jquery-circle-progress/} + * + * @author Rostyslav Bryzgunov + * @version 1.2.2 + * @licence MIT + * @preserve + */ +!function(i){if("function"==typeof define&&define.amd)define(["jquery"],i);else if("object"==typeof module&&module.exports){var t=require("jquery");i(t),module.exports=t}else i(jQuery)}(function(i){function t(i){this.init(i)}t.prototype={value:0,size:100,startAngle:-Math.PI,thickness:"auto",fill:{gradient:["#3aeabb","#fdd250"]},emptyFill:"rgba(0, 0, 0, .1)",animation:{duration:1200,easing:"circleProgressEasing"},animationStartValue:0,reverse:!1,lineCap:"butt",insertMode:"prepend",constructor:t,el:null,canvas:null,ctx:null,radius:0,arcFill:null,lastFrameValue:0,init:function(t){i.extend(this,t),this.radius=this.size/2,this.initWidget(),this.initFill(),this.draw(),this.el.trigger("circle-inited")},initWidget:function(){this.canvas||(this.canvas=i("")["prepend"==this.insertMode?"prependTo":"appendTo"](this.el)[0]);var t=this.canvas;if(t.width=this.size,t.height=this.size,this.ctx=t.getContext("2d"),window.devicePixelRatio>1){var e=window.devicePixelRatio;t.style.width=t.style.height=this.size+"px",t.width=t.height=this.size*e,this.ctx.scale(e,e)}},initFill:function(){function t(){var t=i("")[0];t.width=e.size,t.height=e.size,t.getContext("2d").drawImage(g,0,0,r,r),e.arcFill=e.ctx.createPattern(t,"no-repeat"),e.drawFrame(e.lastFrameValue)}var e=this,a=this.fill,n=this.ctx,r=this.size;if(!a)throw Error("The fill is not specified!");if("string"==typeof a&&(a={color:a}),a.color&&(this.arcFill=a.color),a.gradient){var s=a.gradient;if(1==s.length)this.arcFill=s[0];else if(s.length>1){for(var l=a.gradientAngle||0,o=a.gradientDirection||[r/2*(1-Math.cos(l)),r/2*(1+Math.sin(l)),r/2*(1+Math.cos(l)),r/2*(1-Math.sin(l))],h=n.createLinearGradient.apply(n,o),c=0;c"))}function n(e){var i="button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a";return e.on("mouseout",i,function(){t(this).removeClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&t(this).removeClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&t(this).removeClass("ui-datepicker-next-hover")}).on("mouseover",i,o)}function o(){t.datepicker._isDisabledDatepicker(m.inline?m.dpDiv.parent()[0]:m.input[0])||(t(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"),t(this).addClass("ui-state-hover"),-1!==this.className.indexOf("ui-datepicker-prev")&&t(this).addClass("ui-datepicker-prev-hover"),-1!==this.className.indexOf("ui-datepicker-next")&&t(this).addClass("ui-datepicker-next-hover"))}function a(e,i){t.extend(e,i);for(var s in i)null==i[s]&&(e[s]=i[s]);return e}function r(t){return function(){var e=this.element.val();t.apply(this,arguments),this._refresh(),e!==this.element.val()&&this._trigger("change")}}t.ui=t.ui||{},t.ui.version="1.12.1";var h=0,l=Array.prototype.slice;t.cleanData=function(e){return function(i){var s,n,o;for(o=0;null!=(n=i[o]);o++)try{s=t._data(n,"events"),s&&s.remove&&t(n).triggerHandler("remove")}catch(a){}e(i)}}(t.cleanData),t.widget=function(e,i,s){var n,o,a,r={},h=e.split(".")[0];e=e.split(".")[1];var l=h+"-"+e;return s||(s=i,i=t.Widget),t.isArray(s)&&(s=t.extend.apply(null,[{}].concat(s))),t.expr[":"][l.toLowerCase()]=function(e){return!!t.data(e,l)},t[h]=t[h]||{},n=t[h][e],o=t[h][e]=function(t,e){return this._createWidget?(arguments.length&&this._createWidget(t,e),void 0):new o(t,e)},t.extend(o,n,{version:s.version,_proto:t.extend({},s),_childConstructors:[]}),a=new i,a.options=t.widget.extend({},a.options),t.each(s,function(e,s){return t.isFunction(s)?(r[e]=function(){function t(){return i.prototype[e].apply(this,arguments)}function n(t){return i.prototype[e].apply(this,t)}return function(){var e,i=this._super,o=this._superApply;return this._super=t,this._superApply=n,e=s.apply(this,arguments),this._super=i,this._superApply=o,e}}(),void 0):(r[e]=s,void 0)}),o.prototype=t.widget.extend(a,{widgetEventPrefix:n?a.widgetEventPrefix||e:e},r,{constructor:o,namespace:h,widgetName:e,widgetFullName:l}),n?(t.each(n._childConstructors,function(e,i){var s=i.prototype;t.widget(s.namespace+"."+s.widgetName,o,i._proto)}),delete n._childConstructors):i._childConstructors.push(o),t.widget.bridge(e,o),o},t.widget.extend=function(e){for(var i,s,n=l.call(arguments,1),o=0,a=n.length;a>o;o++)for(i in n[o])s=n[o][i],n[o].hasOwnProperty(i)&&void 0!==s&&(e[i]=t.isPlainObject(s)?t.isPlainObject(e[i])?t.widget.extend({},e[i],s):t.widget.extend({},s):s);return e},t.widget.bridge=function(e,i){var s=i.prototype.widgetFullName||e;t.fn[e]=function(n){var o="string"==typeof n,a=l.call(arguments,1),r=this;return o?this.length||"instance"!==n?this.each(function(){var i,o=t.data(this,s);return"instance"===n?(r=o,!1):o?t.isFunction(o[n])&&"_"!==n.charAt(0)?(i=o[n].apply(o,a),i!==o&&void 0!==i?(r=i&&i.jquery?r.pushStack(i.get()):i,!1):void 0):t.error("no such method '"+n+"' for "+e+" widget instance"):t.error("cannot call methods on "+e+" prior to initialization; "+"attempted to call method '"+n+"'")}):r=void 0:(a.length&&(n=t.widget.extend.apply(null,[n].concat(a))),this.each(function(){var e=t.data(this,s);e?(e.option(n||{}),e._init&&e._init()):t.data(this,s,new i(n,this))})),r}},t.Widget=function(){},t.Widget._childConstructors=[],t.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",defaultElement:"
",options:{classes:{},disabled:!1,create:null},_createWidget:function(e,i){i=t(i||this.defaultElement||this)[0],this.element=t(i),this.uuid=h++,this.eventNamespace="."+this.widgetName+this.uuid,this.bindings=t(),this.hoverable=t(),this.focusable=t(),this.classesElementLookup={},i!==this&&(t.data(i,this.widgetFullName,this),this._on(!0,this.element,{remove:function(t){t.target===i&&this.destroy()}}),this.document=t(i.style?i.ownerDocument:i.document||i),this.window=t(this.document[0].defaultView||this.document[0].parentWindow)),this.options=t.widget.extend({},this.options,this._getCreateOptions(),e),this._create(),this.options.disabled&&this._setOptionDisabled(this.options.disabled),this._trigger("create",null,this._getCreateEventData()),this._init()},_getCreateOptions:function(){return{}},_getCreateEventData:t.noop,_create:t.noop,_init:t.noop,destroy:function(){var e=this;this._destroy(),t.each(this.classesElementLookup,function(t,i){e._removeClass(i,t)}),this.element.off(this.eventNamespace).removeData(this.widgetFullName),this.widget().off(this.eventNamespace).removeAttr("aria-disabled"),this.bindings.off(this.eventNamespace)},_destroy:t.noop,widget:function(){return this.element},option:function(e,i){var s,n,o,a=e;if(0===arguments.length)return t.widget.extend({},this.options);if("string"==typeof e)if(a={},s=e.split("."),e=s.shift(),s.length){for(n=a[e]=t.widget.extend({},this.options[e]),o=0;s.length-1>o;o++)n[s[o]]=n[s[o]]||{},n=n[s[o]];if(e=s.pop(),1===arguments.length)return void 0===n[e]?null:n[e];n[e]=i}else{if(1===arguments.length)return void 0===this.options[e]?null:this.options[e];a[e]=i}return this._setOptions(a),this},_setOptions:function(t){var e;for(e in t)this._setOption(e,t[e]);return this},_setOption:function(t,e){return"classes"===t&&this._setOptionClasses(e),this.options[t]=e,"disabled"===t&&this._setOptionDisabled(e),this},_setOptionClasses:function(e){var i,s,n;for(i in e)n=this.classesElementLookup[i],e[i]!==this.options.classes[i]&&n&&n.length&&(s=t(n.get()),this._removeClass(n,i),s.addClass(this._classes({element:s,keys:i,classes:e,add:!0})))},_setOptionDisabled:function(t){this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,!!t),t&&(this._removeClass(this.hoverable,null,"ui-state-hover"),this._removeClass(this.focusable,null,"ui-state-focus"))},enable:function(){return this._setOptions({disabled:!1})},disable:function(){return this._setOptions({disabled:!0})},_classes:function(e){function i(i,o){var a,r;for(r=0;i.length>r;r++)a=n.classesElementLookup[i[r]]||t(),a=e.add?t(t.unique(a.get().concat(e.element.get()))):t(a.not(e.element).get()),n.classesElementLookup[i[r]]=a,s.push(i[r]),o&&e.classes[i[r]]&&s.push(e.classes[i[r]])}var s=[],n=this;return e=t.extend({element:this.element,classes:this.options.classes||{}},e),this._on(e.element,{remove:"_untrackClassesElement"}),e.keys&&i(e.keys.match(/\S+/g)||[],!0),e.extra&&i(e.extra.match(/\S+/g)||[]),s.join(" ")},_untrackClassesElement:function(e){var i=this;t.each(i.classesElementLookup,function(s,n){-1!==t.inArray(e.target,n)&&(i.classesElementLookup[s]=t(n.not(e.target).get()))})},_removeClass:function(t,e,i){return this._toggleClass(t,e,i,!1)},_addClass:function(t,e,i){return this._toggleClass(t,e,i,!0)},_toggleClass:function(t,e,i,s){s="boolean"==typeof s?s:i;var n="string"==typeof t||null===t,o={extra:n?e:i,keys:n?t:e,element:n?this.element:t,add:s};return o.element.toggleClass(this._classes(o),s),this},_on:function(e,i,s){var n,o=this;"boolean"!=typeof e&&(s=i,i=e,e=!1),s?(i=n=t(i),this.bindings=this.bindings.add(i)):(s=i,i=this.element,n=this.widget()),t.each(s,function(s,a){function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-state-disabled")?("string"==typeof a?o[a]:a).apply(o,arguments):void 0}"string"!=typeof a&&(r.guid=a.guid=a.guid||r.guid||t.guid++);var h=s.match(/^([\w:-]*)\s*(.*)$/),l=h[1]+o.eventNamespace,c=h[2];c?n.on(l,c,r):i.on(l,r)})},_off:function(e,i){i=(i||"").split(" ").join(this.eventNamespace+" ")+this.eventNamespace,e.off(i).off(i),this.bindings=t(this.bindings.not(e).get()),this.focusable=t(this.focusable.not(e).get()),this.hoverable=t(this.hoverable.not(e).get())},_delay:function(t,e){function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)}var s=this;return setTimeout(i,e||0)},_hoverable:function(e){this.hoverable=this.hoverable.add(e),this._on(e,{mouseenter:function(e){this._addClass(t(e.currentTarget),null,"ui-state-hover")},mouseleave:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-hover")}})},_focusable:function(e){this.focusable=this.focusable.add(e),this._on(e,{focusin:function(e){this._addClass(t(e.currentTarget),null,"ui-state-focus")},focusout:function(e){this._removeClass(t(e.currentTarget),null,"ui-state-focus")}})},_trigger:function(e,i,s){var n,o,a=this.options[e];if(s=s||{},i=t.Event(i),i.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase(),i.target=this.element[0],o=i.originalEvent)for(n in o)n in i||(i[n]=o[n]);return this.element.trigger(i,s),!(t.isFunction(a)&&a.apply(this.element[0],[i].concat(s))===!1||i.isDefaultPrevented())}},t.each({show:"fadeIn",hide:"fadeOut"},function(e,i){t.Widget.prototype["_"+e]=function(s,n,o){"string"==typeof n&&(n={effect:n});var a,r=n?n===!0||"number"==typeof n?i:n.effect||i:e;n=n||{},"number"==typeof n&&(n={duration:n}),a=!t.isEmptyObject(n),n.complete=o,n.delay&&s.delay(n.delay),a&&t.effects&&t.effects.effect[r]?s[e](n):r!==e&&s[r]?s[r](n.duration,n.easing,o):s.queue(function(i){t(this)[e](),o&&o.call(s[0]),i()})}}),t.widget,function(){function e(t,e,i){return[parseFloat(t[0])*(u.test(t[0])?e/100:1),parseFloat(t[1])*(u.test(t[1])?i/100:1)]}function i(e,i){return parseInt(t.css(e,i),10)||0}function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e.height(),offset:{top:0,left:0}}:t.isWindow(i)?{width:e.width(),height:e.height(),offset:{top:e.scrollTop(),left:e.scrollLeft()}}:i.preventDefault?{width:0,height:0,offset:{top:i.pageY,left:i.pageX}}:{width:e.outerWidth(),height:e.outerHeight(),offset:e.offset()}}var n,o=Math.max,a=Math.abs,r=/left|center|right/,h=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,c=/^\w+/,u=/%$/,d=t.fn.position;t.position={scrollbarWidth:function(){if(void 0!==n)return n;var e,i,s=t("
"),o=s.children()[0];return t("body").append(s),e=o.offsetWidth,s.css("overflow","scroll"),i=o.offsetWidth,e===i&&(i=s[0].clientWidth),s.remove(),n=e-i},getScrollInfo:function(e){var i=e.isWindow||e.isDocument?"":e.element.css("overflow-x"),s=e.isWindow||e.isDocument?"":e.element.css("overflow-y"),n="scroll"===i||"auto"===i&&e.widthi?"left":e>0?"right":"center",vertical:0>r?"top":s>0?"bottom":"middle"};l>p&&p>a(e+i)&&(u.horizontal="center"),c>f&&f>a(s+r)&&(u.vertical="middle"),u.important=o(a(e),a(i))>o(a(s),a(r))?"horizontal":"vertical",n.using.call(this,t,u)}),h.offset(t.extend(D,{using:r}))})},t.ui.position={fit:{left:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollLeft:s.offset.left,a=s.width,r=t.left-e.collisionPosition.marginLeft,h=n-r,l=r+e.collisionWidth-a-n;e.collisionWidth>a?h>0&&0>=l?(i=t.left+h+e.collisionWidth-a-n,t.left+=h-i):t.left=l>0&&0>=h?n:h>l?n+a-e.collisionWidth:n:h>0?t.left+=h:l>0?t.left-=l:t.left=o(t.left-r,t.left)},top:function(t,e){var i,s=e.within,n=s.isWindow?s.scrollTop:s.offset.top,a=e.within.height,r=t.top-e.collisionPosition.marginTop,h=n-r,l=r+e.collisionHeight-a-n;e.collisionHeight>a?h>0&&0>=l?(i=t.top+h+e.collisionHeight-a-n,t.top+=h-i):t.top=l>0&&0>=h?n:h>l?n+a-e.collisionHeight:n:h>0?t.top+=h:l>0?t.top-=l:t.top=o(t.top-r,t.top)}},flip:{left:function(t,e){var i,s,n=e.within,o=n.offset.left+n.scrollLeft,r=n.width,h=n.isWindow?n.scrollLeft:n.offset.left,l=t.left-e.collisionPosition.marginLeft,c=l-h,u=l+e.collisionWidth-r-h,d="left"===e.my[0]?-e.elemWidth:"right"===e.my[0]?e.elemWidth:0,p="left"===e.at[0]?e.targetWidth:"right"===e.at[0]?-e.targetWidth:0,f=-2*e.offset[0];0>c?(i=t.left+d+p+f+e.collisionWidth-r-o,(0>i||a(c)>i)&&(t.left+=d+p+f)):u>0&&(s=t.left-e.collisionPosition.marginLeft+d+p+f-h,(s>0||u>a(s))&&(t.left+=d+p+f))},top:function(t,e){var i,s,n=e.within,o=n.offset.top+n.scrollTop,r=n.height,h=n.isWindow?n.scrollTop:n.offset.top,l=t.top-e.collisionPosition.marginTop,c=l-h,u=l+e.collisionHeight-r-h,d="top"===e.my[1],p=d?-e.elemHeight:"bottom"===e.my[1]?e.elemHeight:0,f="top"===e.at[1]?e.targetHeight:"bottom"===e.at[1]?-e.targetHeight:0,g=-2*e.offset[1];0>c?(s=t.top+p+f+g+e.collisionHeight-r-o,(0>s||a(c)>s)&&(t.top+=p+f+g)):u>0&&(i=t.top-e.collisionPosition.marginTop+p+f+g-h,(i>0||u>a(i))&&(t.top+=p+f+g))}},flipfit:{left:function(){t.ui.position.flip.left.apply(this,arguments),t.ui.position.fit.left.apply(this,arguments)},top:function(){t.ui.position.flip.top.apply(this,arguments),t.ui.position.fit.top.apply(this,arguments)}}}}(),t.ui.position,t.extend(t.expr[":"],{data:t.expr.createPseudo?t.expr.createPseudo(function(e){return function(i){return!!t.data(i,e)}}):function(e,i,s){return!!t.data(e,s[3])}}),t.fn.extend({disableSelection:function(){var t="onselectstart"in document.createElement("div")?"selectstart":"mousedown";return function(){return this.on(t+".ui-disableSelection",function(t){t.preventDefault()})}}(),enableSelection:function(){return this.off(".ui-disableSelection")}});var c="ui-effects-",u="ui-effects-style",d="ui-effects-animated",p=t;t.effects={effect:{}},function(t,e){function i(t,e,i){var s=u[e.type]||{};return null==t?i||!e.def?null:e.def:(t=s.floor?~~t:parseFloat(t),isNaN(t)?e.def:s.mod?(t+s.mod)%s.mod:0>t?0:t>s.max?s.max:t)}function s(i){var s=l(),n=s._rgba=[];return i=i.toLowerCase(),f(h,function(t,o){var a,r=o.re.exec(i),h=r&&o.parse(r),l=o.space||"rgba";return h?(a=s[l](h),s[c[l].cache]=a[c[l].cache],n=s._rgba=a._rgba,!1):e}),n.length?("0,0,0,0"===n.join()&&t.extend(n,o.transparent),s):o[i]}function n(t,e,i){return i=(i+1)%1,1>6*i?t+6*(e-t)*i:1>2*i?e:2>3*i?t+6*(e-t)*(2/3-i):t}var o,a="backgroundColor borderBottomColor borderLeftColor borderRightColor borderTopColor color columnRuleColor outlineColor textDecorationColor textEmphasisColor",r=/^([\-+])=\s*(\d+\.?\d*)/,h=[{re:/rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[t[1],t[2],t[3],t[4]]}},{re:/rgba?\(\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,parse:function(t){return[2.55*t[1],2.55*t[2],2.55*t[3],t[4]]}},{re:/#([a-f0-9]{2})([a-f0-9]{2})([a-f0-9]{2})/,parse:function(t){return[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)]}},{re:/#([a-f0-9])([a-f0-9])([a-f0-9])/,parse:function(t){return[parseInt(t[1]+t[1],16),parseInt(t[2]+t[2],16),parseInt(t[3]+t[3],16)]}},{re:/hsla?\(\s*(\d+(?:\.\d+)?)\s*,\s*(\d+(?:\.\d+)?)\%\s*,\s*(\d+(?:\.\d+)?)\%\s*(?:,\s*(\d?(?:\.\d+)?)\s*)?\)/,space:"hsla",parse:function(t){return[t[1],t[2]/100,t[3]/100,t[4]]}}],l=t.Color=function(e,i,s,n){return new t.Color.fn.parse(e,i,s,n)},c={rgba:{props:{red:{idx:0,type:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degrees"},saturation:{idx:1,type:"percent"},lightness:{idx:2,type:"percent"}}}},u={"byte":{floor:!0,max:255},percent:{max:1},degrees:{mod:360,floor:!0}},d=l.support={},p=t("

")[0],f=t.each;p.style.cssText="background-color:rgba(1,1,1,.5)",d.rgba=p.style.backgroundColor.indexOf("rgba")>-1,f(c,function(t,e){e.cache="_"+t,e.props.alpha={idx:3,type:"percent",def:1}}),l.fn=t.extend(l.prototype,{parse:function(n,a,r,h){if(n===e)return this._rgba=[null,null,null,null],this;(n.jquery||n.nodeType)&&(n=t(n).css(a),a=e);var u=this,d=t.type(n),p=this._rgba=[];return a!==e&&(n=[n,a,r,h],d="array"),"string"===d?this.parse(s(n)||o._default):"array"===d?(f(c.rgba.props,function(t,e){p[e.idx]=i(n[e.idx],e)}),this):"object"===d?(n instanceof l?f(c,function(t,e){n[e.cache]&&(u[e.cache]=n[e.cache].slice())}):f(c,function(e,s){var o=s.cache;f(s.props,function(t,e){if(!u[o]&&s.to){if("alpha"===t||null==n[t])return;u[o]=s.to(u._rgba)}u[o][e.idx]=i(n[t],e,!0)}),u[o]&&0>t.inArray(null,u[o].slice(0,3))&&(u[o][3]=1,s.from&&(u._rgba=s.from(u[o])))}),this):e},is:function(t){var i=l(t),s=!0,n=this;return f(c,function(t,o){var a,r=i[o.cache];return r&&(a=n[o.cache]||o.to&&o.to(n._rgba)||[],f(o.props,function(t,i){return null!=r[i.idx]?s=r[i.idx]===a[i.idx]:e})),s}),s},_space:function(){var t=[],e=this;return f(c,function(i,s){e[s.cache]&&t.push(i)}),t.pop()},transition:function(t,e){var s=l(t),n=s._space(),o=c[n],a=0===this.alpha()?l("transparent"):this,r=a[o.cache]||o.to(a._rgba),h=r.slice();return s=s[o.cache],f(o.props,function(t,n){var o=n.idx,a=r[o],l=s[o],c=u[n.type]||{};null!==l&&(null===a?h[o]=l:(c.mod&&(l-a>c.mod/2?a+=c.mod:a-l>c.mod/2&&(a-=c.mod)),h[o]=i((l-a)*e+a,n)))}),this[n](h)},blend:function(e){if(1===this._rgba[3])return this;var i=this._rgba.slice(),s=i.pop(),n=l(e)._rgba;return l(t.map(i,function(t,e){return(1-s)*n[e]+s*t}))},toRgbaString:function(){var e="rgba(",i=t.map(this._rgba,function(t,e){return null==t?e>2?1:0:t});return 1===i[3]&&(i.pop(),e="rgb("),e+i.join()+")"},toHslaString:function(){var e="hsla(",i=t.map(this.hsla(),function(t,e){return null==t&&(t=e>2?1:0),e&&3>e&&(t=Math.round(100*t)+"%"),t});return 1===i[3]&&(i.pop(),e="hsl("),e+i.join()+")"},toHexString:function(e){var i=this._rgba.slice(),s=i.pop();return e&&i.push(~~(255*s)),"#"+t.map(i,function(t){return t=(t||0).toString(16),1===t.length?"0"+t:t}).join("")},toString:function(){return 0===this._rgba[3]?"transparent":this.toRgbaString()}}),l.fn.parse.prototype=l.fn,c.hsla.to=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e,i,s=t[0]/255,n=t[1]/255,o=t[2]/255,a=t[3],r=Math.max(s,n,o),h=Math.min(s,n,o),l=r-h,c=r+h,u=.5*c;return e=h===r?0:s===r?60*(n-o)/l+360:n===r?60*(o-s)/l+120:60*(s-n)/l+240,i=0===l?0:.5>=u?l/c:l/(2-c),[Math.round(e)%360,i,u,null==a?1:a]},c.hsla.from=function(t){if(null==t[0]||null==t[1]||null==t[2])return[null,null,null,t[3]];var e=t[0]/360,i=t[1],s=t[2],o=t[3],a=.5>=s?s*(1+i):s+i-s*i,r=2*s-a;return[Math.round(255*n(r,a,e+1/3)),Math.round(255*n(r,a,e)),Math.round(255*n(r,a,e-1/3)),o]},f(c,function(s,n){var o=n.props,a=n.cache,h=n.to,c=n.from;l.fn[s]=function(s){if(h&&!this[a]&&(this[a]=h(this._rgba)),s===e)return this[a].slice();var n,r=t.type(s),u="array"===r||"object"===r?s:arguments,d=this[a].slice();return f(o,function(t,e){var s=u["object"===r?t:e.idx];null==s&&(s=d[e.idx]),d[e.idx]=i(s,e)}),c?(n=l(c(d)),n[a]=d,n):l(d)},f(o,function(e,i){l.fn[e]||(l.fn[e]=function(n){var o,a=t.type(n),h="alpha"===e?this._hsla?"hsla":"rgba":s,l=this[h](),c=l[i.idx];return"undefined"===a?c:("function"===a&&(n=n.call(this,c),a=t.type(n)),null==n&&i.empty?this:("string"===a&&(o=r.exec(n),o&&(n=c+parseFloat(o[2])*("+"===o[1]?1:-1))),l[i.idx]=n,this[h](l)))})})}),l.hook=function(e){var i=e.split(" ");f(i,function(e,i){t.cssHooks[i]={set:function(e,n){var o,a,r="";if("transparent"!==n&&("string"!==t.type(n)||(o=s(n)))){if(n=l(o||n),!d.rgba&&1!==n._rgba[3]){for(a="backgroundColor"===i?e.parentNode:e;(""===r||"transparent"===r)&&a&&a.style;)try{r=t.css(a,"backgroundColor"),a=a.parentNode}catch(h){}n=n.blend(r&&"transparent"!==r?r:"_default")}n=n.toRgbaString()}try{e.style[i]=n}catch(h){}}},t.fx.step[i]=function(e){e.colorInit||(e.start=l(e.elem,i),e.end=l(e.end),e.colorInit=!0),t.cssHooks[i].set(e.elem,e.start.transition(e.end,e.pos))}})},l.hook(a),t.cssHooks.borderColor={expand:function(t){var e={};return f(["Top","Right","Bottom","Left"],function(i,s){e["border"+s+"Color"]=t}),e}},o=t.Color.names={aqua:"#00ffff",black:"#000000",blue:"#0000ff",fuchsia:"#ff00ff",gray:"#808080",green:"#008000",lime:"#00ff00",maroon:"#800000",navy:"#000080",olive:"#808000",purple:"#800080",red:"#ff0000",silver:"#c0c0c0",teal:"#008080",white:"#ffffff",yellow:"#ffff00",transparent:[null,null,null,0],_default:"#ffffff"}}(p),function(){function e(e){var i,s,n=e.ownerDocument.defaultView?e.ownerDocument.defaultView.getComputedStyle(e,null):e.currentStyle,o={};if(n&&n.length&&n[0]&&n[n[0]])for(s=n.length;s--;)i=n[s],"string"==typeof n[i]&&(o[t.camelCase(i)]=n[i]);else for(i in n)"string"==typeof n[i]&&(o[i]=n[i]);return o}function i(e,i){var s,o,a={};for(s in i)o=i[s],e[s]!==o&&(n[s]||(t.fx.step[s]||!isNaN(parseFloat(o)))&&(a[s]=o));return a}var s=["add","remove","toggle"],n={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};t.each(["borderLeftStyle","borderRightStyle","borderBottomStyle","borderTopStyle"],function(e,i){t.fx.step[i]=function(t){("none"!==t.end&&!t.setAttr||1===t.pos&&!t.setAttr)&&(p.style(t.elem,i,t.end),t.setAttr=!0)}}),t.fn.addBack||(t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.effects.animateClass=function(n,o,a,r){var h=t.speed(o,a,r);return this.queue(function(){var o,a=t(this),r=a.attr("class")||"",l=h.children?a.find("*").addBack():a;l=l.map(function(){var i=t(this);return{el:i,start:e(this)}}),o=function(){t.each(s,function(t,e){n[e]&&a[e+"Class"](n[e])})},o(),l=l.map(function(){return this.end=e(this.el[0]),this.diff=i(this.start,this.end),this}),a.attr("class",r),l=l.map(function(){var e=this,i=t.Deferred(),s=t.extend({},h,{queue:!1,complete:function(){i.resolve(e)}});return this.el.animate(this.diff,s),i.promise()}),t.when.apply(t,l.get()).done(function(){o(),t.each(arguments,function(){var e=this.el;t.each(this.diff,function(t){e.css(t,"")})}),h.complete.call(a[0])})})},t.fn.extend({addClass:function(e){return function(i,s,n,o){return s?t.effects.animateClass.call(this,{add:i},s,n,o):e.apply(this,arguments)}}(t.fn.addClass),removeClass:function(e){return function(i,s,n,o){return arguments.length>1?t.effects.animateClass.call(this,{remove:i},s,n,o):e.apply(this,arguments)}}(t.fn.removeClass),toggleClass:function(e){return function(i,s,n,o,a){return"boolean"==typeof s||void 0===s?n?t.effects.animateClass.call(this,s?{add:i}:{remove:i},n,o,a):e.apply(this,arguments):t.effects.animateClass.call(this,{toggle:i},s,n,o)}}(t.fn.toggleClass),switchClass:function(e,i,s,n,o){return t.effects.animateClass.call(this,{add:i,remove:e},s,n,o)}})}(),function(){function e(e,i,s,n){return t.isPlainObject(e)&&(i=e,e=e.effect),e={effect:e},null==i&&(i={}),t.isFunction(i)&&(n=i,s=null,i={}),("number"==typeof i||t.fx.speeds[i])&&(n=s,s=i,i={}),t.isFunction(s)&&(n=s,s=null),i&&t.extend(e,i),s=s||i.duration,e.duration=t.fx.off?0:"number"==typeof s?s:s in t.fx.speeds?t.fx.speeds[s]:t.fx.speeds._default,e.complete=n||i.complete,e}function i(e){return!e||"number"==typeof e||t.fx.speeds[e]?!0:"string"!=typeof e||t.effects.effect[e]?t.isFunction(e)?!0:"object"!=typeof e||e.effect?!1:!0:!0}function s(t,e){var i=e.outerWidth(),s=e.outerHeight(),n=/^rect\((-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto),?\s*(-?\d*\.?\d*px|-?\d+%|auto)\)$/,o=n.exec(t)||["",0,i,s,0];return{top:parseFloat(o[1])||0,right:"auto"===o[2]?i:parseFloat(o[2]),bottom:"auto"===o[3]?s:parseFloat(o[3]),left:parseFloat(o[4])||0}}t.expr&&t.expr.filters&&t.expr.filters.animated&&(t.expr.filters.animated=function(e){return function(i){return!!t(i).data(d)||e(i)}}(t.expr.filters.animated)),t.uiBackCompat!==!1&&t.extend(t.effects,{save:function(t,e){for(var i=0,s=e.length;s>i;i++)null!==e[i]&&t.data(c+e[i],t[0].style[e[i]])},restore:function(t,e){for(var i,s=0,n=e.length;n>s;s++)null!==e[s]&&(i=t.data(c+e[s]),t.css(e[s],i))},setMode:function(t,e){return"toggle"===e&&(e=t.is(":hidden")?"show":"hide"),e},createWrapper:function(e){if(e.parent().is(".ui-effects-wrapper"))return e.parent();var i={width:e.outerWidth(!0),height:e.outerHeight(!0),"float":e.css("float")},s=t("

").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),n={width:e.width(),height:e.height()},o=document.activeElement;try{o.id}catch(a){o=document.body}return e.wrap(s),(e[0]===o||t.contains(e[0],o))&&t(o).trigger("focus"),s=e.parent(),"static"===e.css("position")?(s.css({position:"relative"}),e.css({position:"relative"})):(t.extend(i,{position:e.css("position"),zIndex:e.css("z-index")}),t.each(["top","left","bottom","right"],function(t,s){i[s]=e.css(s),isNaN(parseInt(i[s],10))&&(i[s]="auto")}),e.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),e.css(n),s.css(i).show()},removeWrapper:function(e){var i=document.activeElement;return e.parent().is(".ui-effects-wrapper")&&(e.parent().replaceWith(e),(e[0]===i||t.contains(e[0],i))&&t(i).trigger("focus")),e}}),t.extend(t.effects,{version:"1.12.1",define:function(e,i,s){return s||(s=i,i="effect"),t.effects.effect[e]=s,t.effects.effect[e].mode=i,s},scaledDimensions:function(t,e,i){if(0===e)return{height:0,width:0,outerHeight:0,outerWidth:0};var s="horizontal"!==i?(e||100)/100:1,n="vertical"!==i?(e||100)/100:1;return{height:t.height()*n,width:t.width()*s,outerHeight:t.outerHeight()*n,outerWidth:t.outerWidth()*s}},clipToBox:function(t){return{width:t.clip.right-t.clip.left,height:t.clip.bottom-t.clip.top,left:t.clip.left,top:t.clip.top}},unshift:function(t,e,i){var s=t.queue();e>1&&s.splice.apply(s,[1,0].concat(s.splice(e,i))),t.dequeue()},saveStyle:function(t){t.data(u,t[0].style.cssText)},restoreStyle:function(t){t[0].style.cssText=t.data(u)||"",t.removeData(u)},mode:function(t,e){var i=t.is(":hidden");return"toggle"===e&&(e=i?"show":"hide"),(i?"hide"===e:"show"===e)&&(e="none"),e},getBaseline:function(t,e){var i,s;switch(t[0]){case"top":i=0;break;case"middle":i=.5;break;case"bottom":i=1;break;default:i=t[0]/e.height}switch(t[1]){case"left":s=0;break;case"center":s=.5;break;case"right":s=1;break;default:s=t[1]/e.width}return{x:s,y:i}},createPlaceholder:function(e){var i,s=e.css("position"),n=e.position();return e.css({marginTop:e.css("marginTop"),marginBottom:e.css("marginBottom"),marginLeft:e.css("marginLeft"),marginRight:e.css("marginRight")}).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()),/^(static|relative)/.test(s)&&(s="absolute",i=t("<"+e[0].nodeName+">").insertAfter(e).css({display:/^(inline|ruby)/.test(e.css("display"))?"inline-block":"block",visibility:"hidden",marginTop:e.css("marginTop"),marginBottom:e.css("marginBottom"),marginLeft:e.css("marginLeft"),marginRight:e.css("marginRight"),"float":e.css("float")}).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()).addClass("ui-effects-placeholder"),e.data(c+"placeholder",i)),e.css({position:s,left:n.left,top:n.top}),i},removePlaceholder:function(t){var e=c+"placeholder",i=t.data(e);i&&(i.remove(),t.removeData(e))},cleanUp:function(e){t.effects.restoreStyle(e),t.effects.removePlaceholder(e)},setTransition:function(e,i,s,n){return n=n||{},t.each(i,function(t,i){var o=e.cssUnit(i);o[0]>0&&(n[i]=o[0]*s+o[1])}),n}}),t.fn.extend({effect:function(){function i(e){function i(){r.removeData(d),t.effects.cleanUp(r),"hide"===s.mode&&r.hide(),a()}function a(){t.isFunction(h)&&h.call(r[0]),t.isFunction(e)&&e()}var r=t(this);s.mode=c.shift(),t.uiBackCompat===!1||o?"none"===s.mode?(r[l](),a()):n.call(r[0],s,i):(r.is(":hidden")?"hide"===l:"show"===l)?(r[l](),a()):n.call(r[0],s,a)}var s=e.apply(this,arguments),n=t.effects.effect[s.effect],o=n.mode,a=s.queue,r=a||"fx",h=s.complete,l=s.mode,c=[],u=function(e){var i=t(this),s=t.effects.mode(i,l)||o;i.data(d,!0),c.push(s),o&&("show"===s||s===o&&"hide"===s)&&i.show(),o&&"none"===s||t.effects.saveStyle(i),t.isFunction(e)&&e()};return t.fx.off||!n?l?this[l](s.duration,h):this.each(function(){h&&h.call(this)}):a===!1?this.each(u).each(i):this.queue(r,u).queue(r,i)},show:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="show",this.effect.call(this,n) +}}(t.fn.show),hide:function(t){return function(s){if(i(s))return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="hide",this.effect.call(this,n)}}(t.fn.hide),toggle:function(t){return function(s){if(i(s)||"boolean"==typeof s)return t.apply(this,arguments);var n=e.apply(this,arguments);return n.mode="toggle",this.effect.call(this,n)}}(t.fn.toggle),cssUnit:function(e){var i=this.css(e),s=[];return t.each(["em","px","%","pt"],function(t,e){i.indexOf(e)>0&&(s=[parseFloat(i),e])}),s},cssClip:function(t){return t?this.css("clip","rect("+t.top+"px "+t.right+"px "+t.bottom+"px "+t.left+"px)"):s(this.css("clip"),this)},transfer:function(e,i){var s=t(this),n=t(e.to),o="fixed"===n.css("position"),a=t("body"),r=o?a.scrollTop():0,h=o?a.scrollLeft():0,l=n.offset(),c={top:l.top-r,left:l.left-h,height:n.innerHeight(),width:n.innerWidth()},u=s.offset(),d=t("
").appendTo("body").addClass(e.className).css({top:u.top-r,left:u.left-h,height:s.innerHeight(),width:s.innerWidth(),position:o?"fixed":"absolute"}).animate(c,e.duration,e.easing,function(){d.remove(),t.isFunction(i)&&i()})}}),t.fx.step.clip=function(e){e.clipInit||(e.start=t(e.elem).cssClip(),"string"==typeof e.end&&(e.end=s(e.end,e.elem)),e.clipInit=!0),t(e.elem).cssClip({top:e.pos*(e.end.top-e.start.top)+e.start.top,right:e.pos*(e.end.right-e.start.right)+e.start.right,bottom:e.pos*(e.end.bottom-e.start.bottom)+e.start.bottom,left:e.pos*(e.end.left-e.start.left)+e.start.left})}}(),function(){var e={};t.each(["Quad","Cubic","Quart","Quint","Expo"],function(t,i){e[i]=function(e){return Math.pow(e,t+2)}}),t.extend(e,{Sine:function(t){return 1-Math.cos(t*Math.PI/2)},Circ:function(t){return 1-Math.sqrt(1-t*t)},Elastic:function(t){return 0===t||1===t?t:-Math.pow(2,8*(t-1))*Math.sin((80*(t-1)-7.5)*Math.PI/15)},Back:function(t){return t*t*(3*t-2)},Bounce:function(t){for(var e,i=4;((e=Math.pow(2,--i))-1)/11>t;);return 1/Math.pow(4,3-i)-7.5625*Math.pow((3*e-2)/22-t,2)}}),t.each(e,function(e,i){t.easing["easeIn"+e]=i,t.easing["easeOut"+e]=function(t){return 1-i(1-t)},t.easing["easeInOut"+e]=function(t){return.5>t?i(2*t)/2:1-i(-2*t+2)/2}})}();var f=t.effects;t.effects.define("blind","hide",function(e,i){var s={up:["bottom","top"],vertical:["bottom","top"],down:["top","bottom"],left:["right","left"],horizontal:["right","left"],right:["left","right"]},n=t(this),o=e.direction||"up",a=n.cssClip(),r={clip:t.extend({},a)},h=t.effects.createPlaceholder(n);r.clip[s[o][0]]=r.clip[s[o][1]],"show"===e.mode&&(n.cssClip(r.clip),h&&h.css(t.effects.clipToBox(r)),r.clip=a),h&&h.animate(t.effects.clipToBox(r),e.duration,e.easing),n.animate(r,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("bounce",function(e,i){var s,n,o,a=t(this),r=e.mode,h="hide"===r,l="show"===r,c=e.direction||"up",u=e.distance,d=e.times||5,p=2*d+(l||h?1:0),f=e.duration/p,g=e.easing,m="up"===c||"down"===c?"top":"left",_="up"===c||"left"===c,v=0,b=a.queue().length;for(t.effects.createPlaceholder(a),o=a.css(m),u||(u=a["top"===m?"outerHeight":"outerWidth"]()/3),l&&(n={opacity:1},n[m]=o,a.css("opacity",0).css(m,_?2*-u:2*u).animate(n,f,g)),h&&(u/=Math.pow(2,d-1)),n={},n[m]=o;d>v;v++)s={},s[m]=(_?"-=":"+=")+u,a.animate(s,f,g).animate(n,f,g),u=h?2*u:u/2;h&&(s={opacity:0},s[m]=(_?"-=":"+=")+u,a.animate(s,f,g)),a.queue(i),t.effects.unshift(a,b,p+1)}),t.effects.define("clip","hide",function(e,i){var s,n={},o=t(this),a=e.direction||"vertical",r="both"===a,h=r||"horizontal"===a,l=r||"vertical"===a;s=o.cssClip(),n.clip={top:l?(s.bottom-s.top)/2:s.top,right:h?(s.right-s.left)/2:s.right,bottom:l?(s.bottom-s.top)/2:s.bottom,left:h?(s.right-s.left)/2:s.left},t.effects.createPlaceholder(o),"show"===e.mode&&(o.cssClip(n.clip),n.clip=s),o.animate(n,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("drop","hide",function(e,i){var s,n=t(this),o=e.mode,a="show"===o,r=e.direction||"left",h="up"===r||"down"===r?"top":"left",l="up"===r||"left"===r?"-=":"+=",c="+="===l?"-=":"+=",u={opacity:0};t.effects.createPlaceholder(n),s=e.distance||n["top"===h?"outerHeight":"outerWidth"](!0)/2,u[h]=l+s,a&&(n.css(u),u[h]=c+s,u.opacity=1),n.animate(u,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("explode","hide",function(e,i){function s(){b.push(this),b.length===u*d&&n()}function n(){p.css({visibility:"visible"}),t(b).remove(),i()}var o,a,r,h,l,c,u=e.pieces?Math.round(Math.sqrt(e.pieces)):3,d=u,p=t(this),f=e.mode,g="show"===f,m=p.show().css("visibility","hidden").offset(),_=Math.ceil(p.outerWidth()/d),v=Math.ceil(p.outerHeight()/u),b=[];for(o=0;u>o;o++)for(h=m.top+o*v,c=o-(u-1)/2,a=0;d>a;a++)r=m.left+a*_,l=a-(d-1)/2,p.clone().appendTo("body").wrap("
").css({position:"absolute",visibility:"visible",left:-a*_,top:-o*v}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:_,height:v,left:r+(g?l*_:0),top:h+(g?c*v:0),opacity:g?0:1}).animate({left:r+(g?0:l*_),top:h+(g?0:c*v),opacity:g?1:0},e.duration||500,e.easing,s)}),t.effects.define("fade","toggle",function(e,i){var s="show"===e.mode;t(this).css("opacity",s?0:1).animate({opacity:s?1:0},{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("fold","hide",function(e,i){var s=t(this),n=e.mode,o="show"===n,a="hide"===n,r=e.size||15,h=/([0-9]+)%/.exec(r),l=!!e.horizFirst,c=l?["right","bottom"]:["bottom","right"],u=e.duration/2,d=t.effects.createPlaceholder(s),p=s.cssClip(),f={clip:t.extend({},p)},g={clip:t.extend({},p)},m=[p[c[0]],p[c[1]]],_=s.queue().length;h&&(r=parseInt(h[1],10)/100*m[a?0:1]),f.clip[c[0]]=r,g.clip[c[0]]=r,g.clip[c[1]]=0,o&&(s.cssClip(g.clip),d&&d.css(t.effects.clipToBox(g)),g.clip=p),s.queue(function(i){d&&d.animate(t.effects.clipToBox(f),u,e.easing).animate(t.effects.clipToBox(g),u,e.easing),i()}).animate(f,u,e.easing).animate(g,u,e.easing).queue(i),t.effects.unshift(s,_,4)}),t.effects.define("highlight","show",function(e,i){var s=t(this),n={backgroundColor:s.css("backgroundColor")};"hide"===e.mode&&(n.opacity=0),t.effects.saveStyle(s),s.css({backgroundImage:"none",backgroundColor:e.color||"#ffff99"}).animate(n,{queue:!1,duration:e.duration,easing:e.easing,complete:i})}),t.effects.define("size",function(e,i){var s,n,o,a=t(this),r=["fontSize"],h=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],l=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],c=e.mode,u="effect"!==c,d=e.scale||"both",p=e.origin||["middle","center"],f=a.css("position"),g=a.position(),m=t.effects.scaledDimensions(a),_=e.from||m,v=e.to||t.effects.scaledDimensions(a,0);t.effects.createPlaceholder(a),"show"===c&&(o=_,_=v,v=o),n={from:{y:_.height/m.height,x:_.width/m.width},to:{y:v.height/m.height,x:v.width/m.width}},("box"===d||"both"===d)&&(n.from.y!==n.to.y&&(_=t.effects.setTransition(a,h,n.from.y,_),v=t.effects.setTransition(a,h,n.to.y,v)),n.from.x!==n.to.x&&(_=t.effects.setTransition(a,l,n.from.x,_),v=t.effects.setTransition(a,l,n.to.x,v))),("content"===d||"both"===d)&&n.from.y!==n.to.y&&(_=t.effects.setTransition(a,r,n.from.y,_),v=t.effects.setTransition(a,r,n.to.y,v)),p&&(s=t.effects.getBaseline(p,m),_.top=(m.outerHeight-_.outerHeight)*s.y+g.top,_.left=(m.outerWidth-_.outerWidth)*s.x+g.left,v.top=(m.outerHeight-v.outerHeight)*s.y+g.top,v.left=(m.outerWidth-v.outerWidth)*s.x+g.left),a.css(_),("content"===d||"both"===d)&&(h=h.concat(["marginTop","marginBottom"]).concat(r),l=l.concat(["marginLeft","marginRight"]),a.find("*[width]").each(function(){var i=t(this),s=t.effects.scaledDimensions(i),o={height:s.height*n.from.y,width:s.width*n.from.x,outerHeight:s.outerHeight*n.from.y,outerWidth:s.outerWidth*n.from.x},a={height:s.height*n.to.y,width:s.width*n.to.x,outerHeight:s.height*n.to.y,outerWidth:s.width*n.to.x};n.from.y!==n.to.y&&(o=t.effects.setTransition(i,h,n.from.y,o),a=t.effects.setTransition(i,h,n.to.y,a)),n.from.x!==n.to.x&&(o=t.effects.setTransition(i,l,n.from.x,o),a=t.effects.setTransition(i,l,n.to.x,a)),u&&t.effects.saveStyle(i),i.css(o),i.animate(a,e.duration,e.easing,function(){u&&t.effects.restoreStyle(i)})})),a.animate(v,{queue:!1,duration:e.duration,easing:e.easing,complete:function(){var e=a.offset();0===v.opacity&&a.css("opacity",_.opacity),u||(a.css("position","static"===f?"relative":f).offset(e),t.effects.saveStyle(a)),i()}})}),t.effects.define("scale",function(e,i){var s=t(this),n=e.mode,o=parseInt(e.percent,10)||(0===parseInt(e.percent,10)?0:"effect"!==n?0:100),a=t.extend(!0,{from:t.effects.scaledDimensions(s),to:t.effects.scaledDimensions(s,o,e.direction||"both"),origin:e.origin||["middle","center"]},e);e.fade&&(a.from.opacity=1,a.to.opacity=0),t.effects.effect.size.call(this,a,i)}),t.effects.define("puff","hide",function(e,i){var s=t.extend(!0,{},e,{fade:!0,percent:parseInt(e.percent,10)||150});t.effects.effect.scale.call(this,s,i)}),t.effects.define("pulsate","show",function(e,i){var s=t(this),n=e.mode,o="show"===n,a="hide"===n,r=o||a,h=2*(e.times||5)+(r?1:0),l=e.duration/h,c=0,u=1,d=s.queue().length;for((o||!s.is(":visible"))&&(s.css("opacity",0).show(),c=1);h>u;u++)s.animate({opacity:c},l,e.easing),c=1-c;s.animate({opacity:c},l,e.easing),s.queue(i),t.effects.unshift(s,d,h+1)}),t.effects.define("shake",function(e,i){var s=1,n=t(this),o=e.direction||"left",a=e.distance||20,r=e.times||3,h=2*r+1,l=Math.round(e.duration/h),c="up"===o||"down"===o?"top":"left",u="up"===o||"left"===o,d={},p={},f={},g=n.queue().length;for(t.effects.createPlaceholder(n),d[c]=(u?"-=":"+=")+a,p[c]=(u?"+=":"-=")+2*a,f[c]=(u?"-=":"+=")+2*a,n.animate(d,l,e.easing);r>s;s++)n.animate(p,l,e.easing).animate(f,l,e.easing);n.animate(p,l,e.easing).animate(d,l/2,e.easing).queue(i),t.effects.unshift(n,g,h+1)}),t.effects.define("slide","show",function(e,i){var s,n,o=t(this),a={up:["bottom","top"],down:["top","bottom"],left:["right","left"],right:["left","right"]},r=e.mode,h=e.direction||"left",l="up"===h||"down"===h?"top":"left",c="up"===h||"left"===h,u=e.distance||o["top"===l?"outerHeight":"outerWidth"](!0),d={};t.effects.createPlaceholder(o),s=o.cssClip(),n=o.position()[l],d[l]=(c?-1:1)*u+n,d.clip=o.cssClip(),d.clip[a[h][1]]=d.clip[a[h][0]],"show"===r&&(o.cssClip(d.clip),o.css(l,d[l]),d.clip=s,d[l]=n),o.animate(d,{queue:!1,duration:e.duration,easing:e.easing,complete:i})});var f;t.uiBackCompat!==!1&&(f=t.effects.define("transfer",function(e,i){t(this).transfer(e,i)})),t.ui.focusable=function(i,s){var n,o,a,r,h,l=i.nodeName.toLowerCase();return"area"===l?(n=i.parentNode,o=n.name,i.href&&o&&"map"===n.nodeName.toLowerCase()?(a=t("img[usemap='#"+o+"']"),a.length>0&&a.is(":visible")):!1):(/^(input|select|textarea|button|object)$/.test(l)?(r=!i.disabled,r&&(h=t(i).closest("fieldset")[0],h&&(r=!h.disabled))):r="a"===l?i.href||s:s,r&&t(i).is(":visible")&&e(t(i)))},t.extend(t.expr[":"],{focusable:function(e){return t.ui.focusable(e,null!=t.attr(e,"tabindex"))}}),t.ui.focusable,t.fn.form=function(){return"string"==typeof this[0].form?this.closest("form"):t(this[0].form)},t.ui.formResetMixin={_formResetHandler:function(){var e=t(this);setTimeout(function(){var i=e.data("ui-form-reset-instances");t.each(i,function(){this.refresh()})})},_bindFormResetHandler:function(){if(this.form=this.element.form(),this.form.length){var t=this.form.data("ui-form-reset-instances")||[];t.length||this.form.on("reset.ui-form-reset",this._formResetHandler),t.push(this),this.form.data("ui-form-reset-instances",t)}},_unbindFormResetHandler:function(){if(this.form.length){var e=this.form.data("ui-form-reset-instances");e.splice(t.inArray(this,e),1),e.length?this.form.data("ui-form-reset-instances",e):this.form.removeData("ui-form-reset-instances").off("reset.ui-form-reset")}}},"1.7"===t.fn.jquery.substring(0,3)&&(t.each(["Width","Height"],function(e,i){function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"padding"+this))||0,s&&(i-=parseFloat(t.css(e,"border"+this+"Width"))||0),o&&(i-=parseFloat(t.css(e,"margin"+this))||0)}),i}var n="Width"===i?["Left","Right"]:["Top","Bottom"],o=i.toLowerCase(),a={innerWidth:t.fn.innerWidth,innerHeight:t.fn.innerHeight,outerWidth:t.fn.outerWidth,outerHeight:t.fn.outerHeight};t.fn["inner"+i]=function(e){return void 0===e?a["inner"+i].call(this):this.each(function(){t(this).css(o,s(this,e)+"px")})},t.fn["outer"+i]=function(e,n){return"number"!=typeof e?a["outer"+i].call(this,e):this.each(function(){t(this).css(o,s(this,e,!0,n)+"px")})}}),t.fn.addBack=function(t){return this.add(null==t?this.prevObject:this.prevObject.filter(t))}),t.ui.keyCode={BACKSPACE:8,COMMA:188,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,LEFT:37,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SPACE:32,TAB:9,UP:38},t.ui.escapeSelector=function(){var t=/([!"#$%&'()*+,./:;<=>?@[\]^`{|}~])/g;return function(e){return e.replace(t,"\\$1")}}(),t.fn.labels=function(){var e,i,s,n,o;return this[0].labels&&this[0].labels.length?this.pushStack(this[0].labels):(n=this.eq(0).parents("label"),s=this.attr("id"),s&&(e=this.eq(0).parents().last(),o=e.add(e.length?e.siblings():this.siblings()),i="label[for='"+t.ui.escapeSelector(s)+"']",n=n.add(o.find(i).addBack(i))),this.pushStack(n))},t.fn.scrollParent=function(e){var i=this.css("position"),s="absolute"===i,n=e?/(auto|scroll|hidden)/:/(auto|scroll)/,o=this.parents().filter(function(){var e=t(this);return s&&"static"===e.css("position")?!1:n.test(e.css("overflow")+e.css("overflow-y")+e.css("overflow-x"))}).eq(0);return"fixed"!==i&&o.length?o:t(this[0].ownerDocument||document)},t.extend(t.expr[":"],{tabbable:function(e){var i=t.attr(e,"tabindex"),s=null!=i;return(!s||i>=0)&&t.ui.focusable(e,s)}}),t.fn.extend({uniqueId:function(){var t=0;return function(){return this.each(function(){this.id||(this.id="ui-id-"+ ++t)})}}(),removeUniqueId:function(){return this.each(function(){/^ui-id-\d+$/.test(this.id)&&t(this).removeAttr("id")})}}),t.widget("ui.accordion",{version:"1.12.1",options:{active:0,animate:{},classes:{"ui-accordion-header":"ui-corner-top","ui-accordion-header-collapsed":"ui-corner-all","ui-accordion-content":"ui-corner-bottom"},collapsible:!1,event:"click",header:"> li > :first-child, > :not(li):even",heightStyle:"auto",icons:{activeHeader:"ui-icon-triangle-1-s",header:"ui-icon-triangle-1-e"},activate:null,beforeActivate:null},hideProps:{borderTopWidth:"hide",borderBottomWidth:"hide",paddingTop:"hide",paddingBottom:"hide",height:"hide"},showProps:{borderTopWidth:"show",borderBottomWidth:"show",paddingTop:"show",paddingBottom:"show",height:"show"},_create:function(){var e=this.options;this.prevShow=this.prevHide=t(),this._addClass("ui-accordion","ui-widget ui-helper-reset"),this.element.attr("role","tablist"),e.collapsible||e.active!==!1&&null!=e.active||(e.active=0),this._processPanels(),0>e.active&&(e.active+=this.headers.length),this._refresh()},_getCreateEventData:function(){return{header:this.active,panel:this.active.length?this.active.next():t()}},_createIcons:function(){var e,i,s=this.options.icons;s&&(e=t(""),this._addClass(e,"ui-accordion-header-icon","ui-icon "+s.header),e.prependTo(this.headers),i=this.active.children(".ui-accordion-header-icon"),this._removeClass(i,s.header)._addClass(i,null,s.activeHeader)._addClass(this.headers,"ui-accordion-icons"))},_destroyIcons:function(){this._removeClass(this.headers,"ui-accordion-icons"),this.headers.children(".ui-accordion-header-icon").remove()},_destroy:function(){var t;this.element.removeAttr("role"),this.headers.removeAttr("role aria-expanded aria-selected aria-controls tabIndex").removeUniqueId(),this._destroyIcons(),t=this.headers.next().css("display","").removeAttr("role aria-hidden aria-labelledby").removeUniqueId(),"content"!==this.options.heightStyle&&t.css("height","")},_setOption:function(t,e){return"active"===t?(this._activate(e),void 0):("event"===t&&(this.options.event&&this._off(this.headers,this.options.event),this._setupEvents(e)),this._super(t,e),"collapsible"!==t||e||this.options.active!==!1||this._activate(0),"icons"===t&&(this._destroyIcons(),e&&this._createIcons()),void 0)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t),this._toggleClass(this.headers.add(this.headers.next()),null,"ui-state-disabled",!!t)},_keydown:function(e){if(!e.altKey&&!e.ctrlKey){var i=t.ui.keyCode,s=this.headers.length,n=this.headers.index(e.target),o=!1;switch(e.keyCode){case i.RIGHT:case i.DOWN:o=this.headers[(n+1)%s];break;case i.LEFT:case i.UP:o=this.headers[(n-1+s)%s];break;case i.SPACE:case i.ENTER:this._eventHandler(e);break;case i.HOME:o=this.headers[0];break;case i.END:o=this.headers[s-1]}o&&(t(e.target).attr("tabIndex",-1),t(o).attr("tabIndex",0),t(o).trigger("focus"),e.preventDefault())}},_panelKeyDown:function(e){e.keyCode===t.ui.keyCode.UP&&e.ctrlKey&&t(e.currentTarget).prev().trigger("focus")},refresh:function(){var e=this.options;this._processPanels(),e.active===!1&&e.collapsible===!0||!this.headers.length?(e.active=!1,this.active=t()):e.active===!1?this._activate(0):this.active.length&&!t.contains(this.element[0],this.active[0])?this.headers.length===this.headers.find(".ui-state-disabled").length?(e.active=!1,this.active=t()):this._activate(Math.max(0,e.active-1)):e.active=this.headers.index(this.active),this._destroyIcons(),this._refresh()},_processPanels:function(){var t=this.headers,e=this.panels;this.headers=this.element.find(this.options.header),this._addClass(this.headers,"ui-accordion-header ui-accordion-header-collapsed","ui-state-default"),this.panels=this.headers.next().filter(":not(.ui-accordion-content-active)").hide(),this._addClass(this.panels,"ui-accordion-content","ui-helper-reset ui-widget-content"),e&&(this._off(t.not(this.headers)),this._off(e.not(this.panels)))},_refresh:function(){var e,i=this.options,s=i.heightStyle,n=this.element.parent();this.active=this._findActive(i.active),this._addClass(this.active,"ui-accordion-header-active","ui-state-active")._removeClass(this.active,"ui-accordion-header-collapsed"),this._addClass(this.active.next(),"ui-accordion-content-active"),this.active.next().show(),this.headers.attr("role","tab").each(function(){var e=t(this),i=e.uniqueId().attr("id"),s=e.next(),n=s.uniqueId().attr("id");e.attr("aria-controls",n),s.attr("aria-labelledby",i)}).next().attr("role","tabpanel"),this.headers.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}).next().attr({"aria-hidden":"true"}).hide(),this.active.length?this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}).next().attr({"aria-hidden":"false"}):this.headers.eq(0).attr("tabIndex",0),this._createIcons(),this._setupEvents(i.event),"fill"===s?(e=n.height(),this.element.siblings(":visible").each(function(){var i=t(this),s=i.css("position");"absolute"!==s&&"fixed"!==s&&(e-=i.outerHeight(!0))}),this.headers.each(function(){e-=t(this).outerHeight(!0)}),this.headers.next().each(function(){t(this).height(Math.max(0,e-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===s&&(e=0,this.headers.next().each(function(){var i=t(this).is(":visible");i||t(this).show(),e=Math.max(e,t(this).css("height","").height()),i||t(this).hide()}).height(e))},_activate:function(e){var i=this._findActive(e)[0];i!==this.active[0]&&(i=i||this.active[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return"number"==typeof e?this.headers.eq(e):t()},_setupEvents:function(e){var i={keydown:"_keydown"};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.headers.add(this.headers.next())),this._on(this.headers,i),this._on(this.headers.next(),{keydown:"_panelKeyDown"}),this._hoverable(this.headers),this._focusable(this.headers)},_eventHandler:function(e){var i,s,n=this.options,o=this.active,a=t(e.currentTarget),r=a[0]===o[0],h=r&&n.collapsible,l=h?t():a.next(),c=o.next(),u={oldHeader:o,oldPanel:c,newHeader:h?t():a,newPanel:l};e.preventDefault(),r&&!n.collapsible||this._trigger("beforeActivate",e,u)===!1||(n.active=h?!1:this.headers.index(a),this.active=r?t():a,this._toggle(u),this._removeClass(o,"ui-accordion-header-active","ui-state-active"),n.icons&&(i=o.children(".ui-accordion-header-icon"),this._removeClass(i,null,n.icons.activeHeader)._addClass(i,null,n.icons.header)),r||(this._removeClass(a,"ui-accordion-header-collapsed")._addClass(a,"ui-accordion-header-active","ui-state-active"),n.icons&&(s=a.children(".ui-accordion-header-icon"),this._removeClass(s,null,n.icons.header)._addClass(s,null,n.icons.activeHeader)),this._addClass(a.next(),"ui-accordion-content-active")))},_toggle:function(e){var i=e.newPanel,s=this.prevShow.length?this.prevShow:e.oldPanel;this.prevShow.add(this.prevHide).stop(!0,!0),this.prevShow=i,this.prevHide=s,this.options.animate?this._animate(i,s,e):(s.hide(),i.show(),this._toggleComplete(e)),s.attr({"aria-hidden":"true"}),s.prev().attr({"aria-selected":"false","aria-expanded":"false"}),i.length&&s.length?s.prev().attr({tabIndex:-1,"aria-expanded":"false"}):i.length&&this.headers.filter(function(){return 0===parseInt(t(this).attr("tabIndex"),10)}).attr("tabIndex",-1),i.attr("aria-hidden","false").prev().attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_animate:function(t,e,i){var s,n,o,a=this,r=0,h=t.css("box-sizing"),l=t.length&&(!e.length||t.index()",delay:300,options:{icons:{submenu:"ui-icon-caret-1-e"},items:"> *",menus:"ul",position:{my:"left top",at:"right top"},role:"menu",blur:null,focus:null,select:null},_create:function(){this.activeMenu=this.element,this.mouseHandled=!1,this.element.uniqueId().attr({role:this.options.role,tabIndex:0}),this._addClass("ui-menu","ui-widget ui-widget-content"),this._on({"mousedown .ui-menu-item":function(t){t.preventDefault()},"click .ui-menu-item":function(e){var i=t(e.target),s=t(t.ui.safeActiveElement(this.document[0]));!this.mouseHandled&&i.not(".ui-state-disabled").length&&(this.select(e),e.isPropagationStopped()||(this.mouseHandled=!0),i.has(".ui-menu").length?this.expand(e):!this.element.is(":focus")&&s.closest(".ui-menu").length&&(this.element.trigger("focus",[!0]),this.active&&1===this.active.parents(".ui-menu").length&&clearTimeout(this.timer)))},"mouseenter .ui-menu-item":function(e){if(!this.previousFilter){var i=t(e.target).closest(".ui-menu-item"),s=t(e.currentTarget);i[0]===s[0]&&(this._removeClass(s.siblings().children(".ui-state-active"),null,"ui-state-active"),this.focus(e,s))}},mouseleave:"collapseAll","mouseleave .ui-menu":"collapseAll",focus:function(t,e){var i=this.active||this.element.find(this.options.items).eq(0);e||this.focus(t,i)},blur:function(e){this._delay(function(){var i=!t.contains(this.element[0],t.ui.safeActiveElement(this.document[0]));i&&this.collapseAll(e)})},keydown:"_keydown"}),this.refresh(),this._on(this.document,{click:function(t){this._closeOnDocumentClick(t)&&this.collapseAll(t),this.mouseHandled=!1}})},_destroy:function(){var e=this.element.find(".ui-menu-item").removeAttr("role aria-disabled"),i=e.children(".ui-menu-item-wrapper").removeUniqueId().removeAttr("tabIndex role aria-haspopup");this.element.removeAttr("aria-activedescendant").find(".ui-menu").addBack().removeAttr("role aria-labelledby aria-expanded aria-hidden aria-disabled tabIndex").removeUniqueId().show(),i.children().each(function(){var e=t(this);e.data("ui-menu-submenu-caret")&&e.remove()})},_keydown:function(e){var i,s,n,o,a=!0;switch(e.keyCode){case t.ui.keyCode.PAGE_UP:this.previousPage(e);break;case t.ui.keyCode.PAGE_DOWN:this.nextPage(e);break;case t.ui.keyCode.HOME:this._move("first","first",e);break;case t.ui.keyCode.END:this._move("last","last",e);break;case t.ui.keyCode.UP:this.previous(e);break;case t.ui.keyCode.DOWN:this.next(e);break;case t.ui.keyCode.LEFT:this.collapse(e);break;case t.ui.keyCode.RIGHT:this.active&&!this.active.is(".ui-state-disabled")&&this.expand(e);break;case t.ui.keyCode.ENTER:case t.ui.keyCode.SPACE:this._activate(e);break;case t.ui.keyCode.ESCAPE:this.collapse(e);break;default:a=!1,s=this.previousFilter||"",o=!1,n=e.keyCode>=96&&105>=e.keyCode?""+(e.keyCode-96):String.fromCharCode(e.keyCode),clearTimeout(this.filterTimer),n===s?o=!0:n=s+n,i=this._filterMenuItems(n),i=o&&-1!==i.index(this.active.next())?this.active.nextAll(".ui-menu-item"):i,i.length||(n=String.fromCharCode(e.keyCode),i=this._filterMenuItems(n)),i.length?(this.focus(e,i),this.previousFilter=n,this.filterTimer=this._delay(function(){delete this.previousFilter},1e3)):delete this.previousFilter}a&&e.preventDefault()},_activate:function(t){this.active&&!this.active.is(".ui-state-disabled")&&(this.active.children("[aria-haspopup='true']").length?this.expand(t):this.select(t))},refresh:function(){var e,i,s,n,o,a=this,r=this.options.icons.submenu,h=this.element.find(this.options.menus);this._toggleClass("ui-menu-icons",null,!!this.element.find(".ui-icon").length),s=h.filter(":not(.ui-menu)").hide().attr({role:this.options.role,"aria-hidden":"true","aria-expanded":"false"}).each(function(){var e=t(this),i=e.prev(),s=t("").data("ui-menu-submenu-caret",!0);a._addClass(s,"ui-menu-icon","ui-icon "+r),i.attr("aria-haspopup","true").prepend(s),e.attr("aria-labelledby",i.attr("id"))}),this._addClass(s,"ui-menu","ui-widget ui-widget-content ui-front"),e=h.add(this.element),i=e.find(this.options.items),i.not(".ui-menu-item").each(function(){var e=t(this);a._isDivider(e)&&a._addClass(e,"ui-menu-divider","ui-widget-content")}),n=i.not(".ui-menu-item, .ui-menu-divider"),o=n.children().not(".ui-menu").uniqueId().attr({tabIndex:-1,role:this._itemRole()}),this._addClass(n,"ui-menu-item")._addClass(o,"ui-menu-item-wrapper"),i.filter(".ui-state-disabled").attr("aria-disabled","true"),this.active&&!t.contains(this.element[0],this.active[0])&&this.blur()},_itemRole:function(){return{menu:"menuitem",listbox:"option"}[this.options.role]},_setOption:function(t,e){if("icons"===t){var i=this.element.find(".ui-menu-icon");this._removeClass(i,null,this.options.icons.submenu)._addClass(i,null,e.submenu)}this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t+""),this._toggleClass(null,"ui-state-disabled",!!t)},focus:function(t,e){var i,s,n;this.blur(t,t&&"focus"===t.type),this._scrollIntoView(e),this.active=e.first(),s=this.active.children(".ui-menu-item-wrapper"),this._addClass(s,null,"ui-state-active"),this.options.role&&this.element.attr("aria-activedescendant",s.attr("id")),n=this.active.parent().closest(".ui-menu-item").children(".ui-menu-item-wrapper"),this._addClass(n,null,"ui-state-active"),t&&"keydown"===t.type?this._close():this.timer=this._delay(function(){this._close()},this.delay),i=e.children(".ui-menu"),i.length&&t&&/^mouse/.test(t.type)&&this._startOpening(i),this.activeMenu=e.parent(),this._trigger("focus",t,{item:e})},_scrollIntoView:function(e){var i,s,n,o,a,r;this._hasScroll()&&(i=parseFloat(t.css(this.activeMenu[0],"borderTopWidth"))||0,s=parseFloat(t.css(this.activeMenu[0],"paddingTop"))||0,n=e.offset().top-this.activeMenu.offset().top-i-s,o=this.activeMenu.scrollTop(),a=this.activeMenu.height(),r=e.outerHeight(),0>n?this.activeMenu.scrollTop(o+n):n+r>a&&this.activeMenu.scrollTop(o+n-a+r))},blur:function(t,e){e||clearTimeout(this.timer),this.active&&(this._removeClass(this.active.children(".ui-menu-item-wrapper"),null,"ui-state-active"),this._trigger("blur",t,{item:this.active}),this.active=null)},_startOpening:function(t){clearTimeout(this.timer),"true"===t.attr("aria-hidden")&&(this.timer=this._delay(function(){this._close(),this._open(t)},this.delay))},_open:function(e){var i=t.extend({of:this.active},this.options.position);clearTimeout(this.timer),this.element.find(".ui-menu").not(e.parents(".ui-menu")).hide().attr("aria-hidden","true"),e.show().removeAttr("aria-hidden").attr("aria-expanded","true").position(i)},collapseAll:function(e,i){clearTimeout(this.timer),this.timer=this._delay(function(){var s=i?this.element:t(e&&e.target).closest(this.element.find(".ui-menu"));s.length||(s=this.element),this._close(s),this.blur(e),this._removeClass(s.find(".ui-state-active"),null,"ui-state-active"),this.activeMenu=s},this.delay)},_close:function(t){t||(t=this.active?this.active.parent():this.element),t.find(".ui-menu").hide().attr("aria-hidden","true").attr("aria-expanded","false")},_closeOnDocumentClick:function(e){return!t(e.target).closest(".ui-menu").length},_isDivider:function(t){return!/[^\-\u2014\u2013\s]/.test(t.text())},collapse:function(t){var e=this.active&&this.active.parent().closest(".ui-menu-item",this.element);e&&e.length&&(this._close(),this.focus(t,e))},expand:function(t){var e=this.active&&this.active.children(".ui-menu ").find(this.options.items).first();e&&e.length&&(this._open(e.parent()),this._delay(function(){this.focus(t,e)}))},next:function(t){this._move("next","first",t)},previous:function(t){this._move("prev","last",t)},isFirstItem:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},isLastItem:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(t,e,i){var s;this.active&&(s="first"===t||"last"===t?this.active["first"===t?"prevAll":"nextAll"](".ui-menu-item").eq(-1):this.active[t+"All"](".ui-menu-item").eq(0)),s&&s.length&&this.active||(s=this.activeMenu.find(this.options.items)[e]()),this.focus(i,s)},nextPage:function(e){var i,s,n;return this.active?(this.isLastItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.nextAll(".ui-menu-item").each(function(){return i=t(this),0>i.offset().top-s-n}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items)[this.active?"last":"first"]())),void 0):(this.next(e),void 0)},previousPage:function(e){var i,s,n;return this.active?(this.isFirstItem()||(this._hasScroll()?(s=this.active.offset().top,n=this.element.height(),this.active.prevAll(".ui-menu-item").each(function(){return i=t(this),i.offset().top-s+n>0}),this.focus(e,i)):this.focus(e,this.activeMenu.find(this.options.items).first())),void 0):(this.next(e),void 0)},_hasScroll:function(){return this.element.outerHeight()",options:{appendTo:null,autoFocus:!1,delay:300,minLength:1,position:{my:"left top",at:"left bottom",collision:"none"},source:null,change:null,close:null,focus:null,open:null,response:null,search:null,select:null},requestIndex:0,pending:0,_create:function(){var e,i,s,n=this.element[0].nodeName.toLowerCase(),o="textarea"===n,a="input"===n; +this.isMultiLine=o||!a&&this._isContentEditable(this.element),this.valueMethod=this.element[o||a?"val":"text"],this.isNewMenu=!0,this._addClass("ui-autocomplete-input"),this.element.attr("autocomplete","off"),this._on(this.element,{keydown:function(n){if(this.element.prop("readOnly"))return e=!0,s=!0,i=!0,void 0;e=!1,s=!1,i=!1;var o=t.ui.keyCode;switch(n.keyCode){case o.PAGE_UP:e=!0,this._move("previousPage",n);break;case o.PAGE_DOWN:e=!0,this._move("nextPage",n);break;case o.UP:e=!0,this._keyEvent("previous",n);break;case o.DOWN:e=!0,this._keyEvent("next",n);break;case o.ENTER:this.menu.active&&(e=!0,n.preventDefault(),this.menu.select(n));break;case o.TAB:this.menu.active&&this.menu.select(n);break;case o.ESCAPE:this.menu.element.is(":visible")&&(this.isMultiLine||this._value(this.term),this.close(n),n.preventDefault());break;default:i=!0,this._searchTimeout(n)}},keypress:function(s){if(e)return e=!1,(!this.isMultiLine||this.menu.element.is(":visible"))&&s.preventDefault(),void 0;if(!i){var n=t.ui.keyCode;switch(s.keyCode){case n.PAGE_UP:this._move("previousPage",s);break;case n.PAGE_DOWN:this._move("nextPage",s);break;case n.UP:this._keyEvent("previous",s);break;case n.DOWN:this._keyEvent("next",s)}}},input:function(t){return s?(s=!1,t.preventDefault(),void 0):(this._searchTimeout(t),void 0)},focus:function(){this.selectedItem=null,this.previous=this._value()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(clearTimeout(this.searching),this.close(t),this._change(t),void 0)}}),this._initSource(),this.menu=t("
    ").appendTo(this._appendTo()).menu({role:null}).hide().menu("instance"),this._addClass(this.menu.element,"ui-autocomplete","ui-front"),this._on(this.menu.element,{mousedown:function(e){e.preventDefault(),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,this.element[0]!==t.ui.safeActiveElement(this.document[0])&&this.element.trigger("focus")})},menufocus:function(e,i){var s,n;return this.isNewMenu&&(this.isNewMenu=!1,e.originalEvent&&/^mouse/.test(e.originalEvent.type))?(this.menu.blur(),this.document.one("mousemove",function(){t(e.target).trigger(e.originalEvent)}),void 0):(n=i.item.data("ui-autocomplete-item"),!1!==this._trigger("focus",e,{item:n})&&e.originalEvent&&/^key/.test(e.originalEvent.type)&&this._value(n.value),s=i.item.attr("aria-label")||n.value,s&&t.trim(s).length&&(this.liveRegion.children().hide(),t("
    ").text(s).appendTo(this.liveRegion)),void 0)},menuselect:function(e,i){var s=i.item.data("ui-autocomplete-item"),n=this.previous;this.element[0]!==t.ui.safeActiveElement(this.document[0])&&(this.element.trigger("focus"),this.previous=n,this._delay(function(){this.previous=n,this.selectedItem=s})),!1!==this._trigger("select",e,{item:s})&&this._value(s.value),this.term=this._value(),this.close(e),this.selectedItem=s}}),this.liveRegion=t("
    ",{role:"status","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_destroy:function(){clearTimeout(this.searching),this.element.removeAttr("autocomplete"),this.menu.element.remove(),this.liveRegion.remove()},_setOption:function(t,e){this._super(t,e),"source"===t&&this._initSource(),"appendTo"===t&&this.menu.element.appendTo(this._appendTo()),"disabled"===t&&e&&this.xhr&&this.xhr.abort()},_isEventTargetInWidget:function(e){var i=this.menu.element[0];return e.target===this.element[0]||e.target===i||t.contains(i,e.target)},_closeOnClickOutside:function(t){this._isEventTargetInWidget(t)||this.close()},_appendTo:function(){var e=this.options.appendTo;return e&&(e=e.jquery||e.nodeType?t(e):this.document.find(e).eq(0)),e&&e[0]||(e=this.element.closest(".ui-front, dialog")),e.length||(e=this.document[0].body),e},_initSource:function(){var e,i,s=this;t.isArray(this.options.source)?(e=this.options.source,this.source=function(i,s){s(t.ui.autocomplete.filter(e,i.term))}):"string"==typeof this.options.source?(i=this.options.source,this.source=function(e,n){s.xhr&&s.xhr.abort(),s.xhr=t.ajax({url:i,data:e,dataType:"json",success:function(t){n(t)},error:function(){n([])}})}):this.source=this.options.source},_searchTimeout:function(t){clearTimeout(this.searching),this.searching=this._delay(function(){var e=this.term===this._value(),i=this.menu.element.is(":visible"),s=t.altKey||t.ctrlKey||t.metaKey||t.shiftKey;(!e||e&&!i&&!s)&&(this.selectedItem=null,this.search(null,t))},this.options.delay)},search:function(t,e){return t=null!=t?t:this._value(),this.term=this._value(),t.length").append(t("
    ").text(i.label)).appendTo(e)},_move:function(t,e){return this.menu.element.is(":visible")?this.menu.isFirstItem()&&/^previous/.test(t)||this.menu.isLastItem()&&/^next/.test(t)?(this.isMultiLine||this._value(this.term),this.menu.blur(),void 0):(this.menu[t](e),void 0):(this.search(null,e),void 0)},widget:function(){return this.menu.element},_value:function(){return this.valueMethod.apply(this.element,arguments)},_keyEvent:function(t,e){(!this.isMultiLine||this.menu.element.is(":visible"))&&(this._move(t,e),e.preventDefault())},_isContentEditable:function(t){if(!t.length)return!1;var e=t.prop("contentEditable");return"inherit"===e?this._isContentEditable(t.parent()):"true"===e}}),t.extend(t.ui.autocomplete,{escapeRegex:function(t){return t.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g,"\\$&")},filter:function(e,i){var s=RegExp(t.ui.autocomplete.escapeRegex(i),"i");return t.grep(e,function(t){return s.test(t.label||t.value||t)})}}),t.widget("ui.autocomplete",t.ui.autocomplete,{options:{messages:{noResults:"No search results.",results:function(t){return t+(t>1?" results are":" result is")+" available, use up and down arrow keys to navigate."}}},__response:function(e){var i;this._superApply(arguments),this.options.disabled||this.cancelSearch||(i=e&&e.length?this.options.messages.results(e.length):this.options.messages.noResults,this.liveRegion.children().hide(),t("
    ").text(i).appendTo(this.liveRegion))}}),t.ui.autocomplete;var g=/ui-corner-([a-z]){2,6}/g;t.widget("ui.controlgroup",{version:"1.12.1",defaultElement:"
    ",options:{direction:"horizontal",disabled:null,onlyVisible:!0,items:{button:"input[type=button], input[type=submit], input[type=reset], button, a",controlgroupLabel:".ui-controlgroup-label",checkboxradio:"input[type='checkbox'], input[type='radio']",selectmenu:"select",spinner:".ui-spinner-input"}},_create:function(){this._enhance()},_enhance:function(){this.element.attr("role","toolbar"),this.refresh()},_destroy:function(){this._callChildMethod("destroy"),this.childWidgets.removeData("ui-controlgroup-data"),this.element.removeAttr("role"),this.options.items.controlgroupLabel&&this.element.find(this.options.items.controlgroupLabel).find(".ui-controlgroup-label-contents").contents().unwrap()},_initWidgets:function(){var e=this,i=[];t.each(this.options.items,function(s,n){var o,a={};return n?"controlgroupLabel"===s?(o=e.element.find(n),o.each(function(){var e=t(this);e.children(".ui-controlgroup-label-contents").length||e.contents().wrapAll("")}),e._addClass(o,null,"ui-widget ui-widget-content ui-state-default"),i=i.concat(o.get()),void 0):(t.fn[s]&&(a=e["_"+s+"Options"]?e["_"+s+"Options"]("middle"):{classes:{}},e.element.find(n).each(function(){var n=t(this),o=n[s]("instance"),r=t.widget.extend({},a);if("button"!==s||!n.parent(".ui-spinner").length){o||(o=n[s]()[s]("instance")),o&&(r.classes=e._resolveClassesValues(r.classes,o)),n[s](r);var h=n[s]("widget");t.data(h[0],"ui-controlgroup-data",o?o:n[s]("instance")),i.push(h[0])}})),void 0):void 0}),this.childWidgets=t(t.unique(i)),this._addClass(this.childWidgets,"ui-controlgroup-item")},_callChildMethod:function(e){this.childWidgets.each(function(){var i=t(this),s=i.data("ui-controlgroup-data");s&&s[e]&&s[e]()})},_updateCornerClass:function(t,e){var i="ui-corner-top ui-corner-bottom ui-corner-left ui-corner-right ui-corner-all",s=this._buildSimpleOptions(e,"label").classes.label;this._removeClass(t,null,i),this._addClass(t,null,s)},_buildSimpleOptions:function(t,e){var i="vertical"===this.options.direction,s={classes:{}};return s.classes[e]={middle:"",first:"ui-corner-"+(i?"top":"left"),last:"ui-corner-"+(i?"bottom":"right"),only:"ui-corner-all"}[t],s},_spinnerOptions:function(t){var e=this._buildSimpleOptions(t,"ui-spinner");return e.classes["ui-spinner-up"]="",e.classes["ui-spinner-down"]="",e},_buttonOptions:function(t){return this._buildSimpleOptions(t,"ui-button")},_checkboxradioOptions:function(t){return this._buildSimpleOptions(t,"ui-checkboxradio-label")},_selectmenuOptions:function(t){var e="vertical"===this.options.direction;return{width:e?"auto":!1,classes:{middle:{"ui-selectmenu-button-open":"","ui-selectmenu-button-closed":""},first:{"ui-selectmenu-button-open":"ui-corner-"+(e?"top":"tl"),"ui-selectmenu-button-closed":"ui-corner-"+(e?"top":"left")},last:{"ui-selectmenu-button-open":e?"":"ui-corner-tr","ui-selectmenu-button-closed":"ui-corner-"+(e?"bottom":"right")},only:{"ui-selectmenu-button-open":"ui-corner-top","ui-selectmenu-button-closed":"ui-corner-all"}}[t]}},_resolveClassesValues:function(e,i){var s={};return t.each(e,function(n){var o=i.options.classes[n]||"";o=t.trim(o.replace(g,"")),s[n]=(o+" "+e[n]).replace(/\s+/g," ")}),s},_setOption:function(t,e){return"direction"===t&&this._removeClass("ui-controlgroup-"+this.options.direction),this._super(t,e),"disabled"===t?(this._callChildMethod(e?"disable":"enable"),void 0):(this.refresh(),void 0)},refresh:function(){var e,i=this;this._addClass("ui-controlgroup ui-controlgroup-"+this.options.direction),"horizontal"===this.options.direction&&this._addClass(null,"ui-helper-clearfix"),this._initWidgets(),e=this.childWidgets,this.options.onlyVisible&&(e=e.filter(":visible")),e.length&&(t.each(["first","last"],function(t,s){var n=e[s]().data("ui-controlgroup-data");if(n&&i["_"+n.widgetName+"Options"]){var o=i["_"+n.widgetName+"Options"](1===e.length?"only":s);o.classes=i._resolveClassesValues(o.classes,n),n.element[n.widgetName](o)}else i._updateCornerClass(e[s](),s)}),this._callChildMethod("refresh"))}}),t.widget("ui.checkboxradio",[t.ui.formResetMixin,{version:"1.12.1",options:{disabled:null,label:null,icon:!0,classes:{"ui-checkboxradio-label":"ui-corner-all","ui-checkboxradio-icon":"ui-corner-all"}},_getCreateOptions:function(){var e,i,s=this,n=this._super()||{};return this._readType(),i=this.element.labels(),this.label=t(i[i.length-1]),this.label.length||t.error("No label found for checkboxradio widget"),this.originalLabel="",this.label.contents().not(this.element[0]).each(function(){s.originalLabel+=3===this.nodeType?t(this).text():this.outerHTML}),this.originalLabel&&(n.label=this.originalLabel),e=this.element[0].disabled,null!=e&&(n.disabled=e),n},_create:function(){var t=this.element[0].checked;this._bindFormResetHandler(),null==this.options.disabled&&(this.options.disabled=this.element[0].disabled),this._setOption("disabled",this.options.disabled),this._addClass("ui-checkboxradio","ui-helper-hidden-accessible"),this._addClass(this.label,"ui-checkboxradio-label","ui-button ui-widget"),"radio"===this.type&&this._addClass(this.label,"ui-checkboxradio-radio-label"),this.options.label&&this.options.label!==this.originalLabel?this._updateLabel():this.originalLabel&&(this.options.label=this.originalLabel),this._enhance(),t&&(this._addClass(this.label,"ui-checkboxradio-checked","ui-state-active"),this.icon&&this._addClass(this.icon,null,"ui-state-hover")),this._on({change:"_toggleClasses",focus:function(){this._addClass(this.label,null,"ui-state-focus ui-visual-focus")},blur:function(){this._removeClass(this.label,null,"ui-state-focus ui-visual-focus")}})},_readType:function(){var e=this.element[0].nodeName.toLowerCase();this.type=this.element[0].type,"input"===e&&/radio|checkbox/.test(this.type)||t.error("Can't create checkboxradio on element.nodeName="+e+" and element.type="+this.type)},_enhance:function(){this._updateIcon(this.element[0].checked)},widget:function(){return this.label},_getRadioGroup:function(){var e,i=this.element[0].name,s="input[name='"+t.ui.escapeSelector(i)+"']";return i?(e=this.form.length?t(this.form[0].elements).filter(s):t(s).filter(function(){return 0===t(this).form().length}),e.not(this.element)):t([])},_toggleClasses:function(){var e=this.element[0].checked;this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",e),this.options.icon&&"checkbox"===this.type&&this._toggleClass(this.icon,null,"ui-icon-check ui-state-checked",e)._toggleClass(this.icon,null,"ui-icon-blank",!e),"radio"===this.type&&this._getRadioGroup().each(function(){var e=t(this).checkboxradio("instance");e&&e._removeClass(e.label,"ui-checkboxradio-checked","ui-state-active")})},_destroy:function(){this._unbindFormResetHandler(),this.icon&&(this.icon.remove(),this.iconSpace.remove())},_setOption:function(t,e){return"label"!==t||e?(this._super(t,e),"disabled"===t?(this._toggleClass(this.label,null,"ui-state-disabled",e),this.element[0].disabled=e,void 0):(this.refresh(),void 0)):void 0},_updateIcon:function(e){var i="ui-icon ui-icon-background ";this.options.icon?(this.icon||(this.icon=t(""),this.iconSpace=t(" "),this._addClass(this.iconSpace,"ui-checkboxradio-icon-space")),"checkbox"===this.type?(i+=e?"ui-icon-check ui-state-checked":"ui-icon-blank",this._removeClass(this.icon,null,e?"ui-icon-blank":"ui-icon-check")):i+="ui-icon-blank",this._addClass(this.icon,"ui-checkboxradio-icon",i),e||this._removeClass(this.icon,null,"ui-icon-check ui-state-checked"),this.icon.prependTo(this.label).after(this.iconSpace)):void 0!==this.icon&&(this.icon.remove(),this.iconSpace.remove(),delete this.icon)},_updateLabel:function(){var t=this.label.contents().not(this.element[0]);this.icon&&(t=t.not(this.icon[0])),this.iconSpace&&(t=t.not(this.iconSpace[0])),t.remove(),this.label.append(this.options.label)},refresh:function(){var t=this.element[0].checked,e=this.element[0].disabled;this._updateIcon(t),this._toggleClass(this.label,"ui-checkboxradio-checked","ui-state-active",t),null!==this.options.label&&this._updateLabel(),e!==this.options.disabled&&this._setOptions({disabled:e})}}]),t.ui.checkboxradio,t.widget("ui.button",{version:"1.12.1",defaultElement:"").addClass(this._triggerClass).html(o?t("").attr({src:o,alt:n,title:n}):n)),e[r?"before":"after"](i.trigger),i.trigger.on("click",function(){return t.datepicker._datepickerShowing&&t.datepicker._lastInput===e[0]?t.datepicker._hideDatepicker():t.datepicker._datepickerShowing&&t.datepicker._lastInput!==e[0]?(t.datepicker._hideDatepicker(),t.datepicker._showDatepicker(e[0])):t.datepicker._showDatepicker(e[0]),!1}))},_autoSize:function(t){if(this._get(t,"autoSize")&&!t.inline){var e,i,s,n,o=new Date(2009,11,20),a=this._get(t,"dateFormat");a.match(/[DM]/)&&(e=function(t){for(i=0,s=0,n=0;t.length>n;n++)t[n].length>i&&(i=t[n].length,s=n);return s},o.setMonth(e(this._get(t,a.match(/MM/)?"monthNames":"monthNamesShort"))),o.setDate(e(this._get(t,a.match(/DD/)?"dayNames":"dayNamesShort"))+20-o.getDay())),t.input.attr("size",this._formatDate(t,o).length)}},_inlineDatepicker:function(e,i){var s=t(e);s.hasClass(this.markerClassName)||(s.addClass(this.markerClassName).append(i.dpDiv),t.data(e,"datepicker",i),this._setDate(i,this._getDefaultDate(i),!0),this._updateDatepicker(i),this._updateAlternate(i),i.settings.disabled&&this._disableDatepicker(e),i.dpDiv.css("display","block"))},_dialogDatepicker:function(e,i,s,n,o){var r,h,l,c,u,d=this._dialogInst;return d||(this.uuid+=1,r="dp"+this.uuid,this._dialogInput=t(""),this._dialogInput.on("keydown",this._doKeyDown),t("body").append(this._dialogInput),d=this._dialogInst=this._newInst(this._dialogInput,!1),d.settings={},t.data(this._dialogInput[0],"datepicker",d)),a(d.settings,n||{}),i=i&&i.constructor===Date?this._formatDate(d,i):i,this._dialogInput.val(i),this._pos=o?o.length?o:[o.pageX,o.pageY]:null,this._pos||(h=document.documentElement.clientWidth,l=document.documentElement.clientHeight,c=document.documentElement.scrollLeft||document.body.scrollLeft,u=document.documentElement.scrollTop||document.body.scrollTop,this._pos=[h/2-100+c,l/2-150+u]),this._dialogInput.css("left",this._pos[0]+20+"px").css("top",this._pos[1]+"px"),d.settings.onSelect=s,this._inDialog=!0,this.dpDiv.addClass(this._dialogClass),this._showDatepicker(this._dialogInput[0]),t.blockUI&&t.blockUI(this.dpDiv),t.data(this._dialogInput[0],"datepicker",d),this},_destroyDatepicker:function(e){var i,s=t(e),n=t.data(e,"datepicker");s.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),t.removeData(e,"datepicker"),"input"===i?(n.append.remove(),n.trigger.remove(),s.removeClass(this.markerClassName).off("focus",this._showDatepicker).off("keydown",this._doKeyDown).off("keypress",this._doKeyPress).off("keyup",this._doKeyUp)):("div"===i||"span"===i)&&s.removeClass(this.markerClassName).empty(),m===n&&(m=null))},_enableDatepicker:function(e){var i,s,n=t(e),o=t.data(e,"datepicker");n.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),"input"===i?(e.disabled=!1,o.trigger.filter("button").each(function(){this.disabled=!1}).end().filter("img").css({opacity:"1.0",cursor:""})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().removeClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!1)),this._disabledInputs=t.map(this._disabledInputs,function(t){return t===e?null:t}))},_disableDatepicker:function(e){var i,s,n=t(e),o=t.data(e,"datepicker");n.hasClass(this.markerClassName)&&(i=e.nodeName.toLowerCase(),"input"===i?(e.disabled=!0,o.trigger.filter("button").each(function(){this.disabled=!0}).end().filter("img").css({opacity:"0.5",cursor:"default"})):("div"===i||"span"===i)&&(s=n.children("."+this._inlineClass),s.children().addClass("ui-state-disabled"),s.find("select.ui-datepicker-month, select.ui-datepicker-year").prop("disabled",!0)),this._disabledInputs=t.map(this._disabledInputs,function(t){return t===e?null:t}),this._disabledInputs[this._disabledInputs.length]=e)},_isDisabledDatepicker:function(t){if(!t)return!1;for(var e=0;this._disabledInputs.length>e;e++)if(this._disabledInputs[e]===t)return!0;return!1},_getInst:function(e){try{return t.data(e,"datepicker")}catch(i){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(e,i,s){var n,o,r,h,l=this._getInst(e);return 2===arguments.length&&"string"==typeof i?"defaults"===i?t.extend({},t.datepicker._defaults):l?"all"===i?t.extend({},l.settings):this._get(l,i):null:(n=i||{},"string"==typeof i&&(n={},n[i]=s),l&&(this._curInst===l&&this._hideDatepicker(),o=this._getDateDatepicker(e,!0),r=this._getMinMaxDate(l,"min"),h=this._getMinMaxDate(l,"max"),a(l.settings,n),null!==r&&void 0!==n.dateFormat&&void 0===n.minDate&&(l.settings.minDate=this._formatDate(l,r)),null!==h&&void 0!==n.dateFormat&&void 0===n.maxDate&&(l.settings.maxDate=this._formatDate(l,h)),"disabled"in n&&(n.disabled?this._disableDatepicker(e):this._enableDatepicker(e)),this._attachments(t(e),l),this._autoSize(l),this._setDate(l,o),this._updateAlternate(l),this._updateDatepicker(l)),void 0)},_changeDatepicker:function(t,e,i){this._optionDatepicker(t,e,i)},_refreshDatepicker:function(t){var e=this._getInst(t);e&&this._updateDatepicker(e)},_setDateDatepicker:function(t,e){var i=this._getInst(t);i&&(this._setDate(i,e),this._updateDatepicker(i),this._updateAlternate(i))},_getDateDatepicker:function(t,e){var i=this._getInst(t);return i&&!i.inline&&this._setDateFromField(i,e),i?this._getDate(i):null},_doKeyDown:function(e){var i,s,n,o=t.datepicker._getInst(e.target),a=!0,r=o.dpDiv.is(".ui-datepicker-rtl");if(o._keyEvent=!0,t.datepicker._datepickerShowing)switch(e.keyCode){case 9:t.datepicker._hideDatepicker(),a=!1;break;case 13:return n=t("td."+t.datepicker._dayOverClass+":not(."+t.datepicker._currentClass+")",o.dpDiv),n[0]&&t.datepicker._selectDay(e.target,o.selectedMonth,o.selectedYear,n[0]),i=t.datepicker._get(o,"onSelect"),i?(s=t.datepicker._formatDate(o),i.apply(o.input?o.input[0]:null,[s,o])):t.datepicker._hideDatepicker(),!1;case 27:t.datepicker._hideDatepicker();break;case 33:t.datepicker._adjustDate(e.target,e.ctrlKey?-t.datepicker._get(o,"stepBigMonths"):-t.datepicker._get(o,"stepMonths"),"M");break;case 34:t.datepicker._adjustDate(e.target,e.ctrlKey?+t.datepicker._get(o,"stepBigMonths"):+t.datepicker._get(o,"stepMonths"),"M");break;case 35:(e.ctrlKey||e.metaKey)&&t.datepicker._clearDate(e.target),a=e.ctrlKey||e.metaKey;break;case 36:(e.ctrlKey||e.metaKey)&&t.datepicker._gotoToday(e.target),a=e.ctrlKey||e.metaKey;break;case 37:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,r?1:-1,"D"),a=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&t.datepicker._adjustDate(e.target,e.ctrlKey?-t.datepicker._get(o,"stepBigMonths"):-t.datepicker._get(o,"stepMonths"),"M");break;case 38:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,-7,"D"),a=e.ctrlKey||e.metaKey;break;case 39:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,r?-1:1,"D"),a=e.ctrlKey||e.metaKey,e.originalEvent.altKey&&t.datepicker._adjustDate(e.target,e.ctrlKey?+t.datepicker._get(o,"stepBigMonths"):+t.datepicker._get(o,"stepMonths"),"M");break;case 40:(e.ctrlKey||e.metaKey)&&t.datepicker._adjustDate(e.target,7,"D"),a=e.ctrlKey||e.metaKey;break;default:a=!1}else 36===e.keyCode&&e.ctrlKey?t.datepicker._showDatepicker(this):a=!1;a&&(e.preventDefault(),e.stopPropagation())},_doKeyPress:function(e){var i,s,n=t.datepicker._getInst(e.target);return t.datepicker._get(n,"constrainInput")?(i=t.datepicker._possibleChars(t.datepicker._get(n,"dateFormat")),s=String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),e.ctrlKey||e.metaKey||" ">s||!i||i.indexOf(s)>-1):void 0},_doKeyUp:function(e){var i,s=t.datepicker._getInst(e.target);if(s.input.val()!==s.lastVal)try{i=t.datepicker.parseDate(t.datepicker._get(s,"dateFormat"),s.input?s.input.val():null,t.datepicker._getFormatConfig(s)),i&&(t.datepicker._setDateFromField(s),t.datepicker._updateAlternate(s),t.datepicker._updateDatepicker(s))}catch(n){}return!0},_showDatepicker:function(e){if(e=e.target||e,"input"!==e.nodeName.toLowerCase()&&(e=t("input",e.parentNode)[0]),!t.datepicker._isDisabledDatepicker(e)&&t.datepicker._lastInput!==e){var s,n,o,r,h,l,c;s=t.datepicker._getInst(e),t.datepicker._curInst&&t.datepicker._curInst!==s&&(t.datepicker._curInst.dpDiv.stop(!0,!0),s&&t.datepicker._datepickerShowing&&t.datepicker._hideDatepicker(t.datepicker._curInst.input[0])),n=t.datepicker._get(s,"beforeShow"),o=n?n.apply(e,[e,s]):{},o!==!1&&(a(s.settings,o),s.lastVal=null,t.datepicker._lastInput=e,t.datepicker._setDateFromField(s),t.datepicker._inDialog&&(e.value=""),t.datepicker._pos||(t.datepicker._pos=t.datepicker._findPos(e),t.datepicker._pos[1]+=e.offsetHeight),r=!1,t(e).parents().each(function(){return r|="fixed"===t(this).css("position"),!r}),h={left:t.datepicker._pos[0],top:t.datepicker._pos[1]},t.datepicker._pos=null,s.dpDiv.empty(),s.dpDiv.css({position:"absolute",display:"block",top:"-1000px"}),t.datepicker._updateDatepicker(s),h=t.datepicker._checkOffset(s,h,r),s.dpDiv.css({position:t.datepicker._inDialog&&t.blockUI?"static":r?"fixed":"absolute",display:"none",left:h.left+"px",top:h.top+"px"}),s.inline||(l=t.datepicker._get(s,"showAnim"),c=t.datepicker._get(s,"duration"),s.dpDiv.css("z-index",i(t(e))+1),t.datepicker._datepickerShowing=!0,t.effects&&t.effects.effect[l]?s.dpDiv.show(l,t.datepicker._get(s,"showOptions"),c):s.dpDiv[l||"show"](l?c:null),t.datepicker._shouldFocusInput(s)&&s.input.trigger("focus"),t.datepicker._curInst=s)) +}},_updateDatepicker:function(e){this.maxRows=4,m=e,e.dpDiv.empty().append(this._generateHTML(e)),this._attachHandlers(e);var i,s=this._getNumberOfMonths(e),n=s[1],a=17,r=e.dpDiv.find("."+this._dayOverClass+" a");r.length>0&&o.apply(r.get(0)),e.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""),n>1&&e.dpDiv.addClass("ui-datepicker-multi-"+n).css("width",a*n+"em"),e.dpDiv[(1!==s[0]||1!==s[1]?"add":"remove")+"Class"]("ui-datepicker-multi"),e.dpDiv[(this._get(e,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl"),e===t.datepicker._curInst&&t.datepicker._datepickerShowing&&t.datepicker._shouldFocusInput(e)&&e.input.trigger("focus"),e.yearshtml&&(i=e.yearshtml,setTimeout(function(){i===e.yearshtml&&e.yearshtml&&e.dpDiv.find("select.ui-datepicker-year:first").replaceWith(e.yearshtml),i=e.yearshtml=null},0))},_shouldFocusInput:function(t){return t.input&&t.input.is(":visible")&&!t.input.is(":disabled")&&!t.input.is(":focus")},_checkOffset:function(e,i,s){var n=e.dpDiv.outerWidth(),o=e.dpDiv.outerHeight(),a=e.input?e.input.outerWidth():0,r=e.input?e.input.outerHeight():0,h=document.documentElement.clientWidth+(s?0:t(document).scrollLeft()),l=document.documentElement.clientHeight+(s?0:t(document).scrollTop());return i.left-=this._get(e,"isRTL")?n-a:0,i.left-=s&&i.left===e.input.offset().left?t(document).scrollLeft():0,i.top-=s&&i.top===e.input.offset().top+r?t(document).scrollTop():0,i.left-=Math.min(i.left,i.left+n>h&&h>n?Math.abs(i.left+n-h):0),i.top-=Math.min(i.top,i.top+o>l&&l>o?Math.abs(o+r):0),i},_findPos:function(e){for(var i,s=this._getInst(e),n=this._get(s,"isRTL");e&&("hidden"===e.type||1!==e.nodeType||t.expr.filters.hidden(e));)e=e[n?"previousSibling":"nextSibling"];return i=t(e).offset(),[i.left,i.top]},_hideDatepicker:function(e){var i,s,n,o,a=this._curInst;!a||e&&a!==t.data(e,"datepicker")||this._datepickerShowing&&(i=this._get(a,"showAnim"),s=this._get(a,"duration"),n=function(){t.datepicker._tidyDialog(a)},t.effects&&(t.effects.effect[i]||t.effects[i])?a.dpDiv.hide(i,t.datepicker._get(a,"showOptions"),s,n):a.dpDiv["slideDown"===i?"slideUp":"fadeIn"===i?"fadeOut":"hide"](i?s:null,n),i||n(),this._datepickerShowing=!1,o=this._get(a,"onClose"),o&&o.apply(a.input?a.input[0]:null,[a.input?a.input.val():"",a]),this._lastInput=null,this._inDialog&&(this._dialogInput.css({position:"absolute",left:"0",top:"-100px"}),t.blockUI&&(t.unblockUI(),t("body").append(this.dpDiv))),this._inDialog=!1)},_tidyDialog:function(t){t.dpDiv.removeClass(this._dialogClass).off(".ui-datepicker-calendar")},_checkExternalClick:function(e){if(t.datepicker._curInst){var i=t(e.target),s=t.datepicker._getInst(i[0]);(i[0].id!==t.datepicker._mainDivId&&0===i.parents("#"+t.datepicker._mainDivId).length&&!i.hasClass(t.datepicker.markerClassName)&&!i.closest("."+t.datepicker._triggerClass).length&&t.datepicker._datepickerShowing&&(!t.datepicker._inDialog||!t.blockUI)||i.hasClass(t.datepicker.markerClassName)&&t.datepicker._curInst!==s)&&t.datepicker._hideDatepicker()}},_adjustDate:function(e,i,s){var n=t(e),o=this._getInst(n[0]);this._isDisabledDatepicker(n[0])||(this._adjustInstDate(o,i+("M"===s?this._get(o,"showCurrentAtPos"):0),s),this._updateDatepicker(o))},_gotoToday:function(e){var i,s=t(e),n=this._getInst(s[0]);this._get(n,"gotoCurrent")&&n.currentDay?(n.selectedDay=n.currentDay,n.drawMonth=n.selectedMonth=n.currentMonth,n.drawYear=n.selectedYear=n.currentYear):(i=new Date,n.selectedDay=i.getDate(),n.drawMonth=n.selectedMonth=i.getMonth(),n.drawYear=n.selectedYear=i.getFullYear()),this._notifyChange(n),this._adjustDate(s)},_selectMonthYear:function(e,i,s){var n=t(e),o=this._getInst(n[0]);o["selected"+("M"===s?"Month":"Year")]=o["draw"+("M"===s?"Month":"Year")]=parseInt(i.options[i.selectedIndex].value,10),this._notifyChange(o),this._adjustDate(n)},_selectDay:function(e,i,s,n){var o,a=t(e);t(n).hasClass(this._unselectableClass)||this._isDisabledDatepicker(a[0])||(o=this._getInst(a[0]),o.selectedDay=o.currentDay=t("a",n).html(),o.selectedMonth=o.currentMonth=i,o.selectedYear=o.currentYear=s,this._selectDate(e,this._formatDate(o,o.currentDay,o.currentMonth,o.currentYear)))},_clearDate:function(e){var i=t(e);this._selectDate(i,"")},_selectDate:function(e,i){var s,n=t(e),o=this._getInst(n[0]);i=null!=i?i:this._formatDate(o),o.input&&o.input.val(i),this._updateAlternate(o),s=this._get(o,"onSelect"),s?s.apply(o.input?o.input[0]:null,[i,o]):o.input&&o.input.trigger("change"),o.inline?this._updateDatepicker(o):(this._hideDatepicker(),this._lastInput=o.input[0],"object"!=typeof o.input[0]&&o.input.trigger("focus"),this._lastInput=null)},_updateAlternate:function(e){var i,s,n,o=this._get(e,"altField");o&&(i=this._get(e,"altFormat")||this._get(e,"dateFormat"),s=this._getDate(e),n=this.formatDate(i,s,this._getFormatConfig(e)),t(o).val(n))},noWeekends:function(t){var e=t.getDay();return[e>0&&6>e,""]},iso8601Week:function(t){var e,i=new Date(t.getTime());return i.setDate(i.getDate()+4-(i.getDay()||7)),e=i.getTime(),i.setMonth(0),i.setDate(1),Math.floor(Math.round((e-i)/864e5)/7)+1},parseDate:function(e,i,s){if(null==e||null==i)throw"Invalid arguments";if(i="object"==typeof i?""+i:i+"",""===i)return null;var n,o,a,r,h=0,l=(s?s.shortYearCutoff:null)||this._defaults.shortYearCutoff,c="string"!=typeof l?l:(new Date).getFullYear()%100+parseInt(l,10),u=(s?s.dayNamesShort:null)||this._defaults.dayNamesShort,d=(s?s.dayNames:null)||this._defaults.dayNames,p=(s?s.monthNamesShort:null)||this._defaults.monthNamesShort,f=(s?s.monthNames:null)||this._defaults.monthNames,g=-1,m=-1,_=-1,v=-1,b=!1,y=function(t){var i=e.length>n+1&&e.charAt(n+1)===t;return i&&n++,i},w=function(t){var e=y(t),s="@"===t?14:"!"===t?20:"y"===t&&e?4:"o"===t?3:2,n="y"===t?s:1,o=RegExp("^\\d{"+n+","+s+"}"),a=i.substring(h).match(o);if(!a)throw"Missing number at position "+h;return h+=a[0].length,parseInt(a[0],10)},k=function(e,s,n){var o=-1,a=t.map(y(e)?n:s,function(t,e){return[[e,t]]}).sort(function(t,e){return-(t[1].length-e[1].length)});if(t.each(a,function(t,e){var s=e[1];return i.substr(h,s.length).toLowerCase()===s.toLowerCase()?(o=e[0],h+=s.length,!1):void 0}),-1!==o)return o+1;throw"Unknown name at position "+h},x=function(){if(i.charAt(h)!==e.charAt(n))throw"Unexpected literal at position "+h;h++};for(n=0;e.length>n;n++)if(b)"'"!==e.charAt(n)||y("'")?x():b=!1;else switch(e.charAt(n)){case"d":_=w("d");break;case"D":k("D",u,d);break;case"o":v=w("o");break;case"m":m=w("m");break;case"M":m=k("M",p,f);break;case"y":g=w("y");break;case"@":r=new Date(w("@")),g=r.getFullYear(),m=r.getMonth()+1,_=r.getDate();break;case"!":r=new Date((w("!")-this._ticksTo1970)/1e4),g=r.getFullYear(),m=r.getMonth()+1,_=r.getDate();break;case"'":y("'")?x():b=!0;break;default:x()}if(i.length>h&&(a=i.substr(h),!/^\s+/.test(a)))throw"Extra/unparsed characters found in date: "+a;if(-1===g?g=(new Date).getFullYear():100>g&&(g+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c>=g?0:-100)),v>-1)for(m=1,_=v;;){if(o=this._getDaysInMonth(g,m-1),o>=_)break;m++,_-=o}if(r=this._daylightSavingAdjust(new Date(g,m-1,_)),r.getFullYear()!==g||r.getMonth()+1!==m||r.getDate()!==_)throw"Invalid date";return r},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:1e7*60*60*24*(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925)),formatDate:function(t,e,i){if(!e)return"";var s,n=(i?i.dayNamesShort:null)||this._defaults.dayNamesShort,o=(i?i.dayNames:null)||this._defaults.dayNames,a=(i?i.monthNamesShort:null)||this._defaults.monthNamesShort,r=(i?i.monthNames:null)||this._defaults.monthNames,h=function(e){var i=t.length>s+1&&t.charAt(s+1)===e;return i&&s++,i},l=function(t,e,i){var s=""+e;if(h(t))for(;i>s.length;)s="0"+s;return s},c=function(t,e,i,s){return h(t)?s[e]:i[e]},u="",d=!1;if(e)for(s=0;t.length>s;s++)if(d)"'"!==t.charAt(s)||h("'")?u+=t.charAt(s):d=!1;else switch(t.charAt(s)){case"d":u+=l("d",e.getDate(),2);break;case"D":u+=c("D",e.getDay(),n,o);break;case"o":u+=l("o",Math.round((new Date(e.getFullYear(),e.getMonth(),e.getDate()).getTime()-new Date(e.getFullYear(),0,0).getTime())/864e5),3);break;case"m":u+=l("m",e.getMonth()+1,2);break;case"M":u+=c("M",e.getMonth(),a,r);break;case"y":u+=h("y")?e.getFullYear():(10>e.getFullYear()%100?"0":"")+e.getFullYear()%100;break;case"@":u+=e.getTime();break;case"!":u+=1e4*e.getTime()+this._ticksTo1970;break;case"'":h("'")?u+="'":d=!0;break;default:u+=t.charAt(s)}return u},_possibleChars:function(t){var e,i="",s=!1,n=function(i){var s=t.length>e+1&&t.charAt(e+1)===i;return s&&e++,s};for(e=0;t.length>e;e++)if(s)"'"!==t.charAt(e)||n("'")?i+=t.charAt(e):s=!1;else switch(t.charAt(e)){case"d":case"m":case"y":case"@":i+="0123456789";break;case"D":case"M":return null;case"'":n("'")?i+="'":s=!0;break;default:i+=t.charAt(e)}return i},_get:function(t,e){return void 0!==t.settings[e]?t.settings[e]:this._defaults[e]},_setDateFromField:function(t,e){if(t.input.val()!==t.lastVal){var i=this._get(t,"dateFormat"),s=t.lastVal=t.input?t.input.val():null,n=this._getDefaultDate(t),o=n,a=this._getFormatConfig(t);try{o=this.parseDate(i,s,a)||n}catch(r){s=e?"":s}t.selectedDay=o.getDate(),t.drawMonth=t.selectedMonth=o.getMonth(),t.drawYear=t.selectedYear=o.getFullYear(),t.currentDay=s?o.getDate():0,t.currentMonth=s?o.getMonth():0,t.currentYear=s?o.getFullYear():0,this._adjustInstDate(t)}},_getDefaultDate:function(t){return this._restrictMinMax(t,this._determineDate(t,this._get(t,"defaultDate"),new Date))},_determineDate:function(e,i,s){var n=function(t){var e=new Date;return e.setDate(e.getDate()+t),e},o=function(i){try{return t.datepicker.parseDate(t.datepicker._get(e,"dateFormat"),i,t.datepicker._getFormatConfig(e))}catch(s){}for(var n=(i.toLowerCase().match(/^c/)?t.datepicker._getDate(e):null)||new Date,o=n.getFullYear(),a=n.getMonth(),r=n.getDate(),h=/([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,l=h.exec(i);l;){switch(l[2]||"d"){case"d":case"D":r+=parseInt(l[1],10);break;case"w":case"W":r+=7*parseInt(l[1],10);break;case"m":case"M":a+=parseInt(l[1],10),r=Math.min(r,t.datepicker._getDaysInMonth(o,a));break;case"y":case"Y":o+=parseInt(l[1],10),r=Math.min(r,t.datepicker._getDaysInMonth(o,a))}l=h.exec(i)}return new Date(o,a,r)},a=null==i||""===i?s:"string"==typeof i?o(i):"number"==typeof i?isNaN(i)?s:n(i):new Date(i.getTime());return a=a&&"Invalid Date"==""+a?s:a,a&&(a.setHours(0),a.setMinutes(0),a.setSeconds(0),a.setMilliseconds(0)),this._daylightSavingAdjust(a)},_daylightSavingAdjust:function(t){return t?(t.setHours(t.getHours()>12?t.getHours()+2:0),t):null},_setDate:function(t,e,i){var s=!e,n=t.selectedMonth,o=t.selectedYear,a=this._restrictMinMax(t,this._determineDate(t,e,new Date));t.selectedDay=t.currentDay=a.getDate(),t.drawMonth=t.selectedMonth=t.currentMonth=a.getMonth(),t.drawYear=t.selectedYear=t.currentYear=a.getFullYear(),n===t.selectedMonth&&o===t.selectedYear||i||this._notifyChange(t),this._adjustInstDate(t),t.input&&t.input.val(s?"":this._formatDate(t))},_getDate:function(t){var e=!t.currentYear||t.input&&""===t.input.val()?null:this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return e},_attachHandlers:function(e){var i=this._get(e,"stepMonths"),s="#"+e.id.replace(/\\\\/g,"\\");e.dpDiv.find("[data-handler]").map(function(){var e={prev:function(){t.datepicker._adjustDate(s,-i,"M")},next:function(){t.datepicker._adjustDate(s,+i,"M")},hide:function(){t.datepicker._hideDatepicker()},today:function(){t.datepicker._gotoToday(s)},selectDay:function(){return t.datepicker._selectDay(s,+this.getAttribute("data-month"),+this.getAttribute("data-year"),this),!1},selectMonth:function(){return t.datepicker._selectMonthYear(s,this,"M"),!1},selectYear:function(){return t.datepicker._selectMonthYear(s,this,"Y"),!1}};t(this).on(this.getAttribute("data-event"),e[this.getAttribute("data-handler")])})},_generateHTML:function(t){var e,i,s,n,o,a,r,h,l,c,u,d,p,f,g,m,_,v,b,y,w,k,x,C,D,I,T,P,M,S,H,z,O,A,N,W,E,F,L,R=new Date,B=this._daylightSavingAdjust(new Date(R.getFullYear(),R.getMonth(),R.getDate())),Y=this._get(t,"isRTL"),j=this._get(t,"showButtonPanel"),q=this._get(t,"hideIfNoPrevNext"),K=this._get(t,"navigationAsDateFormat"),U=this._getNumberOfMonths(t),V=this._get(t,"showCurrentAtPos"),$=this._get(t,"stepMonths"),X=1!==U[0]||1!==U[1],G=this._daylightSavingAdjust(t.currentDay?new Date(t.currentYear,t.currentMonth,t.currentDay):new Date(9999,9,9)),Q=this._getMinMaxDate(t,"min"),J=this._getMinMaxDate(t,"max"),Z=t.drawMonth-V,te=t.drawYear;if(0>Z&&(Z+=12,te--),J)for(e=this._daylightSavingAdjust(new Date(J.getFullYear(),J.getMonth()-U[0]*U[1]+1,J.getDate())),e=Q&&Q>e?Q:e;this._daylightSavingAdjust(new Date(te,Z,1))>e;)Z--,0>Z&&(Z=11,te--);for(t.drawMonth=Z,t.drawYear=te,i=this._get(t,"prevText"),i=K?this.formatDate(i,this._daylightSavingAdjust(new Date(te,Z-$,1)),this._getFormatConfig(t)):i,s=this._canAdjustMonth(t,-1,te,Z)?""+i+"":q?"":""+i+"",n=this._get(t,"nextText"),n=K?this.formatDate(n,this._daylightSavingAdjust(new Date(te,Z+$,1)),this._getFormatConfig(t)):n,o=this._canAdjustMonth(t,1,te,Z)?""+n+"":q?"":""+n+"",a=this._get(t,"currentText"),r=this._get(t,"gotoCurrent")&&t.currentDay?G:B,a=K?this.formatDate(a,r,this._getFormatConfig(t)):a,h=t.inline?"":"",l=j?"
    "+(Y?h:"")+(this._isInRange(t,r)?"":"")+(Y?"":h)+"
    ":"",c=parseInt(this._get(t,"firstDay"),10),c=isNaN(c)?0:c,u=this._get(t,"showWeek"),d=this._get(t,"dayNames"),p=this._get(t,"dayNamesMin"),f=this._get(t,"monthNames"),g=this._get(t,"monthNamesShort"),m=this._get(t,"beforeShowDay"),_=this._get(t,"showOtherMonths"),v=this._get(t,"selectOtherMonths"),b=this._getDefaultDate(t),y="",k=0;U[0]>k;k++){for(x="",this.maxRows=4,C=0;U[1]>C;C++){if(D=this._daylightSavingAdjust(new Date(te,Z,t.selectedDay)),I=" ui-corner-all",T="",X){if(T+="
    "}for(T+="
    "+(/all|left/.test(I)&&0===k?Y?o:s:"")+(/all|right/.test(I)&&0===k?Y?s:o:"")+this._generateMonthYearHeader(t,Z,te,Q,J,k>0||C>0,f,g)+"
    "+"",P=u?"":"",w=0;7>w;w++)M=(w+c)%7,P+="";for(T+=P+"",S=this._getDaysInMonth(te,Z),te===t.selectedYear&&Z===t.selectedMonth&&(t.selectedDay=Math.min(t.selectedDay,S)),H=(this._getFirstDayOfMonth(te,Z)-c+7)%7,z=Math.ceil((H+S)/7),O=X?this.maxRows>z?this.maxRows:z:z,this.maxRows=O,A=this._daylightSavingAdjust(new Date(te,Z,1-H)),N=0;O>N;N++){for(T+="",W=u?"":"",w=0;7>w;w++)E=m?m.apply(t.input?t.input[0]:null,[A]):[!0,""],F=A.getMonth()!==Z,L=F&&!v||!E[0]||Q&&Q>A||J&&A>J,W+="",A.setDate(A.getDate()+1),A=this._daylightSavingAdjust(A);T+=W+""}Z++,Z>11&&(Z=0,te++),T+="
    "+this._get(t,"weekHeader")+"=5?" class='ui-datepicker-week-end'":"")+">"+""+p[M]+"
    "+this._get(t,"calculateWeek")(A)+""+(F&&!_?" ":L?""+A.getDate()+"":""+A.getDate()+"")+"
    "+(X?"
    "+(U[0]>0&&C===U[1]-1?"
    ":""):""),x+=T}y+=x}return y+=l,t._keyEvent=!1,y},_generateMonthYearHeader:function(t,e,i,s,n,o,a,r){var h,l,c,u,d,p,f,g,m=this._get(t,"changeMonth"),_=this._get(t,"changeYear"),v=this._get(t,"showMonthAfterYear"),b="
    ",y="";if(o||!m)y+=""+a[e]+"";else{for(h=s&&s.getFullYear()===i,l=n&&n.getFullYear()===i,y+=""}if(v||(b+=y+(!o&&m&&_?"":" ")),!t.yearshtml)if(t.yearshtml="",o||!_)b+=""+i+"";else{for(u=this._get(t,"yearRange").split(":"),d=(new Date).getFullYear(),p=function(t){var e=t.match(/c[+\-].*/)?i+parseInt(t.substring(1),10):t.match(/[+\-].*/)?d+parseInt(t,10):parseInt(t,10);return isNaN(e)?d:e},f=p(u[0]),g=Math.max(f,p(u[1]||"")),f=s?Math.max(f,s.getFullYear()):f,g=n?Math.min(g,n.getFullYear()):g,t.yearshtml+="",b+=t.yearshtml,t.yearshtml=null}return b+=this._get(t,"yearSuffix"),v&&(b+=(!o&&m&&_?"":" ")+y),b+="
    "},_adjustInstDate:function(t,e,i){var s=t.selectedYear+("Y"===i?e:0),n=t.selectedMonth+("M"===i?e:0),o=Math.min(t.selectedDay,this._getDaysInMonth(s,n))+("D"===i?e:0),a=this._restrictMinMax(t,this._daylightSavingAdjust(new Date(s,n,o)));t.selectedDay=a.getDate(),t.drawMonth=t.selectedMonth=a.getMonth(),t.drawYear=t.selectedYear=a.getFullYear(),("M"===i||"Y"===i)&&this._notifyChange(t)},_restrictMinMax:function(t,e){var i=this._getMinMaxDate(t,"min"),s=this._getMinMaxDate(t,"max"),n=i&&i>e?i:e;return s&&n>s?s:n},_notifyChange:function(t){var e=this._get(t,"onChangeMonthYear");e&&e.apply(t.input?t.input[0]:null,[t.selectedYear,t.selectedMonth+1,t])},_getNumberOfMonths:function(t){var e=this._get(t,"numberOfMonths");return null==e?[1,1]:"number"==typeof e?[1,e]:e},_getMinMaxDate:function(t,e){return this._determineDate(t,this._get(t,e+"Date"),null)},_getDaysInMonth:function(t,e){return 32-this._daylightSavingAdjust(new Date(t,e,32)).getDate()},_getFirstDayOfMonth:function(t,e){return new Date(t,e,1).getDay()},_canAdjustMonth:function(t,e,i,s){var n=this._getNumberOfMonths(t),o=this._daylightSavingAdjust(new Date(i,s+(0>e?e:n[0]*n[1]),1));return 0>e&&o.setDate(this._getDaysInMonth(o.getFullYear(),o.getMonth())),this._isInRange(t,o)},_isInRange:function(t,e){var i,s,n=this._getMinMaxDate(t,"min"),o=this._getMinMaxDate(t,"max"),a=null,r=null,h=this._get(t,"yearRange");return h&&(i=h.split(":"),s=(new Date).getFullYear(),a=parseInt(i[0],10),r=parseInt(i[1],10),i[0].match(/[+\-].*/)&&(a+=s),i[1].match(/[+\-].*/)&&(r+=s)),(!n||e.getTime()>=n.getTime())&&(!o||e.getTime()<=o.getTime())&&(!a||e.getFullYear()>=a)&&(!r||r>=e.getFullYear())},_getFormatConfig:function(t){var e=this._get(t,"shortYearCutoff");return e="string"!=typeof e?e:(new Date).getFullYear()%100+parseInt(e,10),{shortYearCutoff:e,dayNamesShort:this._get(t,"dayNamesShort"),dayNames:this._get(t,"dayNames"),monthNamesShort:this._get(t,"monthNamesShort"),monthNames:this._get(t,"monthNames")}},_formatDate:function(t,e,i,s){e||(t.currentDay=t.selectedDay,t.currentMonth=t.selectedMonth,t.currentYear=t.selectedYear);var n=e?"object"==typeof e?e:this._daylightSavingAdjust(new Date(s,i,e)):this._daylightSavingAdjust(new Date(t.currentYear,t.currentMonth,t.currentDay));return this.formatDate(this._get(t,"dateFormat"),n,this._getFormatConfig(t))}}),t.fn.datepicker=function(e){if(!this.length)return this;t.datepicker.initialized||(t(document).on("mousedown",t.datepicker._checkExternalClick),t.datepicker.initialized=!0),0===t("#"+t.datepicker._mainDivId).length&&t("body").append(t.datepicker.dpDiv);var i=Array.prototype.slice.call(arguments,1);return"string"!=typeof e||"isDisabled"!==e&&"getDate"!==e&&"widget"!==e?"option"===e&&2===arguments.length&&"string"==typeof arguments[1]?t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this[0]].concat(i)):this.each(function(){"string"==typeof e?t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this].concat(i)):t.datepicker._attachDatepicker(this,e)}):t.datepicker["_"+e+"Datepicker"].apply(t.datepicker,[this[0]].concat(i))},t.datepicker=new s,t.datepicker.initialized=!1,t.datepicker.uuid=(new Date).getTime(),t.datepicker.version="1.12.1",t.datepicker,t.ui.ie=!!/msie [\w.]+/.exec(navigator.userAgent.toLowerCase());var _=!1;t(document).on("mouseup",function(){_=!1}),t.widget("ui.mouse",{version:"1.12.1",options:{cancel:"input, textarea, button, select, option",distance:1,delay:0},_mouseInit:function(){var e=this;this.element.on("mousedown."+this.widgetName,function(t){return e._mouseDown(t)}).on("click."+this.widgetName,function(i){return!0===t.data(i.target,e.widgetName+".preventClickEvent")?(t.removeData(i.target,e.widgetName+".preventClickEvent"),i.stopImmediatePropagation(),!1):void 0}),this.started=!1},_mouseDestroy:function(){this.element.off("."+this.widgetName),this._mouseMoveDelegate&&this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate)},_mouseDown:function(e){if(!_){this._mouseMoved=!1,this._mouseStarted&&this._mouseUp(e),this._mouseDownEvent=e;var i=this,s=1===e.which,n="string"==typeof this.options.cancel&&e.target.nodeName?t(e.target).closest(this.options.cancel).length:!1;return s&&!n&&this._mouseCapture(e)?(this.mouseDelayMet=!this.options.delay,this.mouseDelayMet||(this._mouseDelayTimer=setTimeout(function(){i.mouseDelayMet=!0},this.options.delay)),this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(e)!==!1,!this._mouseStarted)?(e.preventDefault(),!0):(!0===t.data(e.target,this.widgetName+".preventClickEvent")&&t.removeData(e.target,this.widgetName+".preventClickEvent"),this._mouseMoveDelegate=function(t){return i._mouseMove(t)},this._mouseUpDelegate=function(t){return i._mouseUp(t)},this.document.on("mousemove."+this.widgetName,this._mouseMoveDelegate).on("mouseup."+this.widgetName,this._mouseUpDelegate),e.preventDefault(),_=!0,!0)):!0}},_mouseMove:function(e){if(this._mouseMoved){if(t.ui.ie&&(!document.documentMode||9>document.documentMode)&&!e.button)return this._mouseUp(e);if(!e.which)if(e.originalEvent.altKey||e.originalEvent.ctrlKey||e.originalEvent.metaKey||e.originalEvent.shiftKey)this.ignoreMissingWhich=!0;else if(!this.ignoreMissingWhich)return this._mouseUp(e)}return(e.which||e.button)&&(this._mouseMoved=!0),this._mouseStarted?(this._mouseDrag(e),e.preventDefault()):(this._mouseDistanceMet(e)&&this._mouseDelayMet(e)&&(this._mouseStarted=this._mouseStart(this._mouseDownEvent,e)!==!1,this._mouseStarted?this._mouseDrag(e):this._mouseUp(e)),!this._mouseStarted)},_mouseUp:function(e){this.document.off("mousemove."+this.widgetName,this._mouseMoveDelegate).off("mouseup."+this.widgetName,this._mouseUpDelegate),this._mouseStarted&&(this._mouseStarted=!1,e.target===this._mouseDownEvent.target&&t.data(e.target,this.widgetName+".preventClickEvent",!0),this._mouseStop(e)),this._mouseDelayTimer&&(clearTimeout(this._mouseDelayTimer),delete this._mouseDelayTimer),this.ignoreMissingWhich=!1,_=!1,e.preventDefault()},_mouseDistanceMet:function(t){return Math.max(Math.abs(this._mouseDownEvent.pageX-t.pageX),Math.abs(this._mouseDownEvent.pageY-t.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return!0}}),t.ui.plugin={add:function(e,i,s){var n,o=t.ui[e].prototype;for(n in s)o.plugins[n]=o.plugins[n]||[],o.plugins[n].push([i,s[n]])},call:function(t,e,i,s){var n,o=t.plugins[e];if(o&&(s||t.element[0].parentNode&&11!==t.element[0].parentNode.nodeType))for(n=0;o.length>n;n++)t.options[o[n][0]]&&o[n][1].apply(t.element,i)}},t.ui.safeBlur=function(e){e&&"body"!==e.nodeName.toLowerCase()&&t(e).trigger("blur")},t.widget("ui.draggable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"drag",options:{addClasses:!0,appendTo:"parent",axis:!1,connectToSortable:!1,containment:!1,cursor:"auto",cursorAt:!1,grid:!1,handle:!1,helper:"original",iframeFix:!1,opacity:!1,refreshPositions:!1,revert:!1,revertDuration:500,scope:"default",scroll:!0,scrollSensitivity:20,scrollSpeed:20,snap:!1,snapMode:"both",snapTolerance:20,stack:!1,zIndex:!1,drag:null,start:null,stop:null},_create:function(){"original"===this.options.helper&&this._setPositionRelative(),this.options.addClasses&&this._addClass("ui-draggable"),this._setHandleClassName(),this._mouseInit()},_setOption:function(t,e){this._super(t,e),"handle"===t&&(this._removeHandleClassName(),this._setHandleClassName())},_destroy:function(){return(this.helper||this.element).is(".ui-draggable-dragging")?(this.destroyOnClear=!0,void 0):(this._removeHandleClassName(),this._mouseDestroy(),void 0)},_mouseCapture:function(e){var i=this.options;return this.helper||i.disabled||t(e.target).closest(".ui-resizable-handle").length>0?!1:(this.handle=this._getHandle(e),this.handle?(this._blurActiveElement(e),this._blockFrames(i.iframeFix===!0?"iframe":i.iframeFix),!0):!1)},_blockFrames:function(e){this.iframeBlocks=this.document.find(e).map(function(){var e=t(this);return t("
    ").css("position","absolute").appendTo(e.parent()).outerWidth(e.outerWidth()).outerHeight(e.outerHeight()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_blurActiveElement:function(e){var i=t.ui.safeActiveElement(this.document[0]),s=t(e.target);s.closest(i).length||t.ui.safeBlur(i)},_mouseStart:function(e){var i=this.options;return this.helper=this._createHelper(e),this._addClass(this.helper,"ui-draggable-dragging"),this._cacheHelperProportions(),t.ui.ddmanager&&(t.ui.ddmanager.current=this),this._cacheMargins(),this.cssPosition=this.helper.css("position"),this.scrollParent=this.helper.scrollParent(!0),this.offsetParent=this.helper.offsetParent(),this.hasFixedAncestor=this.helper.parents().filter(function(){return"fixed"===t(this).css("position")}).length>0,this.positionAbs=this.element.offset(),this._refreshOffsets(e),this.originalPosition=this.position=this._generatePosition(e,!1),this.originalPageX=e.pageX,this.originalPageY=e.pageY,i.cursorAt&&this._adjustOffsetFromHelper(i.cursorAt),this._setContainment(),this._trigger("start",e)===!1?(this._clear(),!1):(this._cacheHelperProportions(),t.ui.ddmanager&&!i.dropBehaviour&&t.ui.ddmanager.prepareOffsets(this,e),this._mouseDrag(e,!0),t.ui.ddmanager&&t.ui.ddmanager.dragStart(this,e),!0)},_refreshOffsets:function(t){this.offset={top:this.positionAbs.top-this.margins.top,left:this.positionAbs.left-this.margins.left,scroll:!1,parent:this._getParentOffset(),relative:this._getRelativeOffset()},this.offset.click={left:t.pageX-this.offset.left,top:t.pageY-this.offset.top}},_mouseDrag:function(e,i){if(this.hasFixedAncestor&&(this.offset.parent=this._getParentOffset()),this.position=this._generatePosition(e,!0),this.positionAbs=this._convertPositionTo("absolute"),!i){var s=this._uiHash();if(this._trigger("drag",e,s)===!1)return this._mouseUp(new t.Event("mouseup",e)),!1;this.position=s.position}return this.helper[0].style.left=this.position.left+"px",this.helper[0].style.top=this.position.top+"px",t.ui.ddmanager&&t.ui.ddmanager.drag(this,e),!1},_mouseStop:function(e){var i=this,s=!1;return t.ui.ddmanager&&!this.options.dropBehaviour&&(s=t.ui.ddmanager.drop(this,e)),this.dropped&&(s=this.dropped,this.dropped=!1),"invalid"===this.options.revert&&!s||"valid"===this.options.revert&&s||this.options.revert===!0||t.isFunction(this.options.revert)&&this.options.revert.call(this.element,s)?t(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){i._trigger("stop",e)!==!1&&i._clear()}):this._trigger("stop",e)!==!1&&this._clear(),!1},_mouseUp:function(e){return this._unblockFrames(),t.ui.ddmanager&&t.ui.ddmanager.dragStop(this,e),this.handleElement.is(e.target)&&this.element.trigger("focus"),t.ui.mouse.prototype._mouseUp.call(this,e)},cancel:function(){return this.helper.is(".ui-draggable-dragging")?this._mouseUp(new t.Event("mouseup",{target:this.element[0]})):this._clear(),this},_getHandle:function(e){return this.options.handle?!!t(e.target).closest(this.element.find(this.options.handle)).length:!0},_setHandleClassName:function(){this.handleElement=this.options.handle?this.element.find(this.options.handle):this.element,this._addClass(this.handleElement,"ui-draggable-handle")},_removeHandleClassName:function(){this._removeClass(this.handleElement,"ui-draggable-handle")},_createHelper:function(e){var i=this.options,s=t.isFunction(i.helper),n=s?t(i.helper.apply(this.element[0],[e])):"clone"===i.helper?this.element.clone().removeAttr("id"):this.element;return n.parents("body").length||n.appendTo("parent"===i.appendTo?this.element[0].parentNode:i.appendTo),s&&n[0]===this.element[0]&&this._setPositionRelative(),n[0]===this.element[0]||/(fixed|absolute)/.test(n.css("position"))||n.css("position","absolute"),n},_setPositionRelative:function(){/^(?:r|a|f)/.test(this.element.css("position"))||(this.element[0].style.position="relative")},_adjustOffsetFromHelper:function(e){"string"==typeof e&&(e=e.split(" ")),t.isArray(e)&&(e={left:+e[0],top:+e[1]||0}),"left"in e&&(this.offset.click.left=e.left+this.margins.left),"right"in e&&(this.offset.click.left=this.helperProportions.width-e.right+this.margins.left),"top"in e&&(this.offset.click.top=e.top+this.margins.top),"bottom"in e&&(this.offset.click.top=this.helperProportions.height-e.bottom+this.margins.top)},_isRootNode:function(t){return/(html|body)/i.test(t.tagName)||t===this.document[0]},_getParentOffset:function(){var e=this.offsetParent.offset(),i=this.document[0];return"absolute"===this.cssPosition&&this.scrollParent[0]!==i&&t.contains(this.scrollParent[0],this.offsetParent[0])&&(e.left+=this.scrollParent.scrollLeft(),e.top+=this.scrollParent.scrollTop()),this._isRootNode(this.offsetParent[0])&&(e={top:0,left:0}),{top:e.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:e.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if("relative"!==this.cssPosition)return{top:0,left:0};var t=this.element.position(),e=this._isRootNode(this.scrollParent[0]);return{top:t.top-(parseInt(this.helper.css("top"),10)||0)+(e?0:this.scrollParent.scrollTop()),left:t.left-(parseInt(this.helper.css("left"),10)||0)+(e?0:this.scrollParent.scrollLeft())} +},_cacheMargins:function(){this.margins={left:parseInt(this.element.css("marginLeft"),10)||0,top:parseInt(this.element.css("marginTop"),10)||0,right:parseInt(this.element.css("marginRight"),10)||0,bottom:parseInt(this.element.css("marginBottom"),10)||0}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e,i,s,n=this.options,o=this.document[0];return this.relativeContainer=null,n.containment?"window"===n.containment?(this.containment=[t(window).scrollLeft()-this.offset.relative.left-this.offset.parent.left,t(window).scrollTop()-this.offset.relative.top-this.offset.parent.top,t(window).scrollLeft()+t(window).width()-this.helperProportions.width-this.margins.left,t(window).scrollTop()+(t(window).height()||o.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):"document"===n.containment?(this.containment=[0,0,t(o).width()-this.helperProportions.width-this.margins.left,(t(o).height()||o.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top],void 0):n.containment.constructor===Array?(this.containment=n.containment,void 0):("parent"===n.containment&&(n.containment=this.helper[0].parentNode),i=t(n.containment),s=i[0],s&&(e=/(scroll|auto)/.test(i.css("overflow")),this.containment=[(parseInt(i.css("borderLeftWidth"),10)||0)+(parseInt(i.css("paddingLeft"),10)||0),(parseInt(i.css("borderTopWidth"),10)||0)+(parseInt(i.css("paddingTop"),10)||0),(e?Math.max(s.scrollWidth,s.offsetWidth):s.offsetWidth)-(parseInt(i.css("borderRightWidth"),10)||0)-(parseInt(i.css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left-this.margins.right,(e?Math.max(s.scrollHeight,s.offsetHeight):s.offsetHeight)-(parseInt(i.css("borderBottomWidth"),10)||0)-(parseInt(i.css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top-this.margins.bottom],this.relativeContainer=i),void 0):(this.containment=null,void 0)},_convertPositionTo:function(t,e){e||(e=this.position);var i="absolute"===t?1:-1,s=this._isRootNode(this.scrollParent[0]);return{top:e.top+this.offset.relative.top*i+this.offset.parent.top*i-("fixed"===this.cssPosition?-this.offset.scroll.top:s?0:this.offset.scroll.top)*i,left:e.left+this.offset.relative.left*i+this.offset.parent.left*i-("fixed"===this.cssPosition?-this.offset.scroll.left:s?0:this.offset.scroll.left)*i}},_generatePosition:function(t,e){var i,s,n,o,a=this.options,r=this._isRootNode(this.scrollParent[0]),h=t.pageX,l=t.pageY;return r&&this.offset.scroll||(this.offset.scroll={top:this.scrollParent.scrollTop(),left:this.scrollParent.scrollLeft()}),e&&(this.containment&&(this.relativeContainer?(s=this.relativeContainer.offset(),i=[this.containment[0]+s.left,this.containment[1]+s.top,this.containment[2]+s.left,this.containment[3]+s.top]):i=this.containment,t.pageX-this.offset.click.lefti[2]&&(h=i[2]+this.offset.click.left),t.pageY-this.offset.click.top>i[3]&&(l=i[3]+this.offset.click.top)),a.grid&&(n=a.grid[1]?this.originalPageY+Math.round((l-this.originalPageY)/a.grid[1])*a.grid[1]:this.originalPageY,l=i?n-this.offset.click.top>=i[1]||n-this.offset.click.top>i[3]?n:n-this.offset.click.top>=i[1]?n-a.grid[1]:n+a.grid[1]:n,o=a.grid[0]?this.originalPageX+Math.round((h-this.originalPageX)/a.grid[0])*a.grid[0]:this.originalPageX,h=i?o-this.offset.click.left>=i[0]||o-this.offset.click.left>i[2]?o:o-this.offset.click.left>=i[0]?o-a.grid[0]:o+a.grid[0]:o),"y"===a.axis&&(h=this.originalPageX),"x"===a.axis&&(l=this.originalPageY)),{top:l-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+("fixed"===this.cssPosition?-this.offset.scroll.top:r?0:this.offset.scroll.top),left:h-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+("fixed"===this.cssPosition?-this.offset.scroll.left:r?0:this.offset.scroll.left)}},_clear:function(){this._removeClass(this.helper,"ui-draggable-dragging"),this.helper[0]===this.element[0]||this.cancelHelperRemoval||this.helper.remove(),this.helper=null,this.cancelHelperRemoval=!1,this.destroyOnClear&&this.destroy()},_trigger:function(e,i,s){return s=s||this._uiHash(),t.ui.plugin.call(this,e,[i,s,this],!0),/^(drag|start|stop)/.test(e)&&(this.positionAbs=this._convertPositionTo("absolute"),s.offset=this.positionAbs),t.Widget.prototype._trigger.call(this,e,i,s)},plugins:{},_uiHash:function(){return{helper:this.helper,position:this.position,originalPosition:this.originalPosition,offset:this.positionAbs}}}),t.ui.plugin.add("draggable","connectToSortable",{start:function(e,i,s){var n=t.extend({},i,{item:s.element});s.sortables=[],t(s.options.connectToSortable).each(function(){var i=t(this).sortable("instance");i&&!i.options.disabled&&(s.sortables.push(i),i.refreshPositions(),i._trigger("activate",e,n))})},stop:function(e,i,s){var n=t.extend({},i,{item:s.element});s.cancelHelperRemoval=!1,t.each(s.sortables,function(){var t=this;t.isOver?(t.isOver=0,s.cancelHelperRemoval=!0,t.cancelHelperRemoval=!1,t._storedCSS={position:t.placeholder.css("position"),top:t.placeholder.css("top"),left:t.placeholder.css("left")},t._mouseStop(e),t.options.helper=t.options._helper):(t.cancelHelperRemoval=!0,t._trigger("deactivate",e,n))})},drag:function(e,i,s){t.each(s.sortables,function(){var n=!1,o=this;o.positionAbs=s.positionAbs,o.helperProportions=s.helperProportions,o.offset.click=s.offset.click,o._intersectsWith(o.containerCache)&&(n=!0,t.each(s.sortables,function(){return this.positionAbs=s.positionAbs,this.helperProportions=s.helperProportions,this.offset.click=s.offset.click,this!==o&&this._intersectsWith(this.containerCache)&&t.contains(o.element[0],this.element[0])&&(n=!1),n})),n?(o.isOver||(o.isOver=1,s._parent=i.helper.parent(),o.currentItem=i.helper.appendTo(o.element).data("ui-sortable-item",!0),o.options._helper=o.options.helper,o.options.helper=function(){return i.helper[0]},e.target=o.currentItem[0],o._mouseCapture(e,!0),o._mouseStart(e,!0,!0),o.offset.click.top=s.offset.click.top,o.offset.click.left=s.offset.click.left,o.offset.parent.left-=s.offset.parent.left-o.offset.parent.left,o.offset.parent.top-=s.offset.parent.top-o.offset.parent.top,s._trigger("toSortable",e),s.dropped=o.element,t.each(s.sortables,function(){this.refreshPositions()}),s.currentItem=s.element,o.fromOutside=s),o.currentItem&&(o._mouseDrag(e),i.position=o.position)):o.isOver&&(o.isOver=0,o.cancelHelperRemoval=!0,o.options._revert=o.options.revert,o.options.revert=!1,o._trigger("out",e,o._uiHash(o)),o._mouseStop(e,!0),o.options.revert=o.options._revert,o.options.helper=o.options._helper,o.placeholder&&o.placeholder.remove(),i.helper.appendTo(s._parent),s._refreshOffsets(e),i.position=s._generatePosition(e,!0),s._trigger("fromSortable",e),s.dropped=!1,t.each(s.sortables,function(){this.refreshPositions()}))})}}),t.ui.plugin.add("draggable","cursor",{start:function(e,i,s){var n=t("body"),o=s.options;n.css("cursor")&&(o._cursor=n.css("cursor")),n.css("cursor",o.cursor)},stop:function(e,i,s){var n=s.options;n._cursor&&t("body").css("cursor",n._cursor)}}),t.ui.plugin.add("draggable","opacity",{start:function(e,i,s){var n=t(i.helper),o=s.options;n.css("opacity")&&(o._opacity=n.css("opacity")),n.css("opacity",o.opacity)},stop:function(e,i,s){var n=s.options;n._opacity&&t(i.helper).css("opacity",n._opacity)}}),t.ui.plugin.add("draggable","scroll",{start:function(t,e,i){i.scrollParentNotHidden||(i.scrollParentNotHidden=i.helper.scrollParent(!1)),i.scrollParentNotHidden[0]!==i.document[0]&&"HTML"!==i.scrollParentNotHidden[0].tagName&&(i.overflowOffset=i.scrollParentNotHidden.offset())},drag:function(e,i,s){var n=s.options,o=!1,a=s.scrollParentNotHidden[0],r=s.document[0];a!==r&&"HTML"!==a.tagName?(n.axis&&"x"===n.axis||(s.overflowOffset.top+a.offsetHeight-e.pageY=0;d--)h=s.snapElements[d].left-s.margins.left,l=h+s.snapElements[d].width,c=s.snapElements[d].top-s.margins.top,u=c+s.snapElements[d].height,h-g>_||m>l+g||c-g>b||v>u+g||!t.contains(s.snapElements[d].item.ownerDocument,s.snapElements[d].item)?(s.snapElements[d].snapping&&s.options.snap.release&&s.options.snap.release.call(s.element,e,t.extend(s._uiHash(),{snapItem:s.snapElements[d].item})),s.snapElements[d].snapping=!1):("inner"!==f.snapMode&&(n=g>=Math.abs(c-b),o=g>=Math.abs(u-v),a=g>=Math.abs(h-_),r=g>=Math.abs(l-m),n&&(i.position.top=s._convertPositionTo("relative",{top:c-s.helperProportions.height,left:0}).top),o&&(i.position.top=s._convertPositionTo("relative",{top:u,left:0}).top),a&&(i.position.left=s._convertPositionTo("relative",{top:0,left:h-s.helperProportions.width}).left),r&&(i.position.left=s._convertPositionTo("relative",{top:0,left:l}).left)),p=n||o||a||r,"outer"!==f.snapMode&&(n=g>=Math.abs(c-v),o=g>=Math.abs(u-b),a=g>=Math.abs(h-m),r=g>=Math.abs(l-_),n&&(i.position.top=s._convertPositionTo("relative",{top:c,left:0}).top),o&&(i.position.top=s._convertPositionTo("relative",{top:u-s.helperProportions.height,left:0}).top),a&&(i.position.left=s._convertPositionTo("relative",{top:0,left:h}).left),r&&(i.position.left=s._convertPositionTo("relative",{top:0,left:l-s.helperProportions.width}).left)),!s.snapElements[d].snapping&&(n||o||a||r||p)&&s.options.snap.snap&&s.options.snap.snap.call(s.element,e,t.extend(s._uiHash(),{snapItem:s.snapElements[d].item})),s.snapElements[d].snapping=n||o||a||r||p)}}),t.ui.plugin.add("draggable","stack",{start:function(e,i,s){var n,o=s.options,a=t.makeArray(t(o.stack)).sort(function(e,i){return(parseInt(t(e).css("zIndex"),10)||0)-(parseInt(t(i).css("zIndex"),10)||0)});a.length&&(n=parseInt(t(a[0]).css("zIndex"),10)||0,t(a).each(function(e){t(this).css("zIndex",n+e)}),this.css("zIndex",n+a.length))}}),t.ui.plugin.add("draggable","zIndex",{start:function(e,i,s){var n=t(i.helper),o=s.options;n.css("zIndex")&&(o._zIndex=n.css("zIndex")),n.css("zIndex",o.zIndex)},stop:function(e,i,s){var n=s.options;n._zIndex&&t(i.helper).css("zIndex",n._zIndex)}}),t.ui.draggable,t.widget("ui.resizable",t.ui.mouse,{version:"1.12.1",widgetEventPrefix:"resize",options:{alsoResize:!1,animate:!1,animateDuration:"slow",animateEasing:"swing",aspectRatio:!1,autoHide:!1,classes:{"ui-resizable-se":"ui-icon ui-icon-gripsmall-diagonal-se"},containment:!1,ghost:!1,grid:!1,handles:"e,s,se",helper:!1,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:90,resize:null,start:null,stop:null},_num:function(t){return parseFloat(t)||0},_isNumber:function(t){return!isNaN(parseFloat(t))},_hasScroll:function(e,i){if("hidden"===t(e).css("overflow"))return!1;var s=i&&"left"===i?"scrollLeft":"scrollTop",n=!1;return e[s]>0?!0:(e[s]=1,n=e[s]>0,e[s]=0,n)},_create:function(){var e,i=this.options,s=this;this._addClass("ui-resizable"),t.extend(this,{_aspectRatio:!!i.aspectRatio,aspectRatio:i.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:i.helper||i.ghost||i.animate?i.helper||"ui-resizable-helper":null}),this.element[0].nodeName.match(/^(canvas|textarea|input|select|button|img)$/i)&&(this.element.wrap(t("
    ").css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")})),this.element=this.element.parent().data("ui-resizable",this.element.resizable("instance")),this.elementIsWrapper=!0,e={marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom"),marginLeft:this.originalElement.css("marginLeft")},this.element.css(e),this.originalElement.css("margin",0),this.originalResizeStyle=this.originalElement.css("resize"),this.originalElement.css("resize","none"),this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"})),this.originalElement.css(e),this._proportionallyResize()),this._setupHandles(),i.autoHide&&t(this.element).on("mouseenter",function(){i.disabled||(s._removeClass("ui-resizable-autohide"),s._handles.show())}).on("mouseleave",function(){i.disabled||s.resizing||(s._addClass("ui-resizable-autohide"),s._handles.hide())}),this._mouseInit()},_destroy:function(){this._mouseDestroy();var e,i=function(e){t(e).removeData("resizable").removeData("ui-resizable").off(".resizable").find(".ui-resizable-handle").remove()};return this.elementIsWrapper&&(i(this.element),e=this.element,this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")}).insertAfter(e),e.remove()),this.originalElement.css("resize",this.originalResizeStyle),i(this.originalElement),this},_setOption:function(t,e){switch(this._super(t,e),t){case"handles":this._removeHandles(),this._setupHandles();break;default:}},_setupHandles:function(){var e,i,s,n,o,a=this.options,r=this;if(this.handles=a.handles||(t(".ui-resizable-handle",this.element).length?{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"}:"e,s,se"),this._handles=t(),this.handles.constructor===String)for("all"===this.handles&&(this.handles="n,e,s,w,se,sw,ne,nw"),s=this.handles.split(","),this.handles={},i=0;s.length>i;i++)e=t.trim(s[i]),n="ui-resizable-"+e,o=t("
    "),this._addClass(o,"ui-resizable-handle "+n),o.css({zIndex:a.zIndex}),this.handles[e]=".ui-resizable-"+e,this.element.append(o);this._renderAxis=function(e){var i,s,n,o;e=e||this.element;for(i in this.handles)this.handles[i].constructor===String?this.handles[i]=this.element.children(this.handles[i]).first().show():(this.handles[i].jquery||this.handles[i].nodeType)&&(this.handles[i]=t(this.handles[i]),this._on(this.handles[i],{mousedown:r._mouseDown})),this.elementIsWrapper&&this.originalElement[0].nodeName.match(/^(textarea|input|select|button)$/i)&&(s=t(this.handles[i],this.element),o=/sw|ne|nw|se|n|s/.test(i)?s.outerHeight():s.outerWidth(),n=["padding",/ne|nw|n/.test(i)?"Top":/se|sw|s/.test(i)?"Bottom":/^e$/.test(i)?"Right":"Left"].join(""),e.css(n,o),this._proportionallyResize()),this._handles=this._handles.add(this.handles[i])},this._renderAxis(this.element),this._handles=this._handles.add(this.element.find(".ui-resizable-handle")),this._handles.disableSelection(),this._handles.on("mouseover",function(){r.resizing||(this.className&&(o=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)),r.axis=o&&o[1]?o[1]:"se")}),a.autoHide&&(this._handles.hide(),this._addClass("ui-resizable-autohide"))},_removeHandles:function(){this._handles.remove()},_mouseCapture:function(e){var i,s,n=!1;for(i in this.handles)s=t(this.handles[i])[0],(s===e.target||t.contains(s,e.target))&&(n=!0);return!this.options.disabled&&n},_mouseStart:function(e){var i,s,n,o=this.options,a=this.element;return this.resizing=!0,this._renderProxy(),i=this._num(this.helper.css("left")),s=this._num(this.helper.css("top")),o.containment&&(i+=t(o.containment).scrollLeft()||0,s+=t(o.containment).scrollTop()||0),this.offset=this.helper.offset(),this.position={left:i,top:s},this.size=this._helper?{width:this.helper.width(),height:this.helper.height()}:{width:a.width(),height:a.height()},this.originalSize=this._helper?{width:a.outerWidth(),height:a.outerHeight()}:{width:a.width(),height:a.height()},this.sizeDiff={width:a.outerWidth()-a.width(),height:a.outerHeight()-a.height()},this.originalPosition={left:i,top:s},this.originalMousePosition={left:e.pageX,top:e.pageY},this.aspectRatio="number"==typeof o.aspectRatio?o.aspectRatio:this.originalSize.width/this.originalSize.height||1,n=t(".ui-resizable-"+this.axis).css("cursor"),t("body").css("cursor","auto"===n?this.axis+"-resize":n),this._addClass("ui-resizable-resizing"),this._propagate("start",e),!0},_mouseDrag:function(e){var i,s,n=this.originalMousePosition,o=this.axis,a=e.pageX-n.left||0,r=e.pageY-n.top||0,h=this._change[o];return this._updatePrevProperties(),h?(i=h.apply(this,[e,a,r]),this._updateVirtualBoundaries(e.shiftKey),(this._aspectRatio||e.shiftKey)&&(i=this._updateRatio(i,e)),i=this._respectSize(i,e),this._updateCache(i),this._propagate("resize",e),s=this._applyChanges(),!this._helper&&this._proportionallyResizeElements.length&&this._proportionallyResize(),t.isEmptyObject(s)||(this._updatePrevProperties(),this._trigger("resize",e,this.ui()),this._applyChanges()),!1):!1},_mouseStop:function(e){this.resizing=!1;var i,s,n,o,a,r,h,l=this.options,c=this;return this._helper&&(i=this._proportionallyResizeElements,s=i.length&&/textarea/i.test(i[0].nodeName),n=s&&this._hasScroll(i[0],"left")?0:c.sizeDiff.height,o=s?0:c.sizeDiff.width,a={width:c.helper.width()-o,height:c.helper.height()-n},r=parseFloat(c.element.css("left"))+(c.position.left-c.originalPosition.left)||null,h=parseFloat(c.element.css("top"))+(c.position.top-c.originalPosition.top)||null,l.animate||this.element.css(t.extend(a,{top:h,left:r})),c.helper.height(c.size.height),c.helper.width(c.size.width),this._helper&&!l.animate&&this._proportionallyResize()),t("body").css("cursor","auto"),this._removeClass("ui-resizable-resizing"),this._propagate("stop",e),this._helper&&this.helper.remove(),!1},_updatePrevProperties:function(){this.prevPosition={top:this.position.top,left:this.position.left},this.prevSize={width:this.size.width,height:this.size.height}},_applyChanges:function(){var t={};return this.position.top!==this.prevPosition.top&&(t.top=this.position.top+"px"),this.position.left!==this.prevPosition.left&&(t.left=this.position.left+"px"),this.size.width!==this.prevSize.width&&(t.width=this.size.width+"px"),this.size.height!==this.prevSize.height&&(t.height=this.size.height+"px"),this.helper.css(t),t},_updateVirtualBoundaries:function(t){var e,i,s,n,o,a=this.options;o={minWidth:this._isNumber(a.minWidth)?a.minWidth:0,maxWidth:this._isNumber(a.maxWidth)?a.maxWidth:1/0,minHeight:this._isNumber(a.minHeight)?a.minHeight:0,maxHeight:this._isNumber(a.maxHeight)?a.maxHeight:1/0},(this._aspectRatio||t)&&(e=o.minHeight*this.aspectRatio,s=o.minWidth/this.aspectRatio,i=o.maxHeight*this.aspectRatio,n=o.maxWidth/this.aspectRatio,e>o.minWidth&&(o.minWidth=e),s>o.minHeight&&(o.minHeight=s),o.maxWidth>i&&(o.maxWidth=i),o.maxHeight>n&&(o.maxHeight=n)),this._vBoundaries=o},_updateCache:function(t){this.offset=this.helper.offset(),this._isNumber(t.left)&&(this.position.left=t.left),this._isNumber(t.top)&&(this.position.top=t.top),this._isNumber(t.height)&&(this.size.height=t.height),this._isNumber(t.width)&&(this.size.width=t.width)},_updateRatio:function(t){var e=this.position,i=this.size,s=this.axis;return this._isNumber(t.height)?t.width=t.height*this.aspectRatio:this._isNumber(t.width)&&(t.height=t.width/this.aspectRatio),"sw"===s&&(t.left=e.left+(i.width-t.width),t.top=null),"nw"===s&&(t.top=e.top+(i.height-t.height),t.left=e.left+(i.width-t.width)),t},_respectSize:function(t){var e=this._vBoundaries,i=this.axis,s=this._isNumber(t.width)&&e.maxWidth&&e.maxWidtht.width,a=this._isNumber(t.height)&&e.minHeight&&e.minHeight>t.height,r=this.originalPosition.left+this.originalSize.width,h=this.originalPosition.top+this.originalSize.height,l=/sw|nw|w/.test(i),c=/nw|ne|n/.test(i);return o&&(t.width=e.minWidth),a&&(t.height=e.minHeight),s&&(t.width=e.maxWidth),n&&(t.height=e.maxHeight),o&&l&&(t.left=r-e.minWidth),s&&l&&(t.left=r-e.maxWidth),a&&c&&(t.top=h-e.minHeight),n&&c&&(t.top=h-e.maxHeight),t.width||t.height||t.left||!t.top?t.width||t.height||t.top||!t.left||(t.left=null):t.top=null,t},_getPaddingPlusBorderDimensions:function(t){for(var e=0,i=[],s=[t.css("borderTopWidth"),t.css("borderRightWidth"),t.css("borderBottomWidth"),t.css("borderLeftWidth")],n=[t.css("paddingTop"),t.css("paddingRight"),t.css("paddingBottom"),t.css("paddingLeft")];4>e;e++)i[e]=parseFloat(s[e])||0,i[e]+=parseFloat(n[e])||0;return{height:i[0]+i[2],width:i[1]+i[3]}},_proportionallyResize:function(){if(this._proportionallyResizeElements.length)for(var t,e=0,i=this.helper||this.element;this._proportionallyResizeElements.length>e;e++)t=this._proportionallyResizeElements[e],this.outerDimensions||(this.outerDimensions=this._getPaddingPlusBorderDimensions(t)),t.css({height:i.height()-this.outerDimensions.height||0,width:i.width()-this.outerDimensions.width||0})},_renderProxy:function(){var e=this.element,i=this.options;this.elementOffset=e.offset(),this._helper?(this.helper=this.helper||t("
    "),this._addClass(this.helper,this._helper),this.helper.css({width:this.element.outerWidth(),height:this.element.outerHeight(),position:"absolute",left:this.elementOffset.left+"px",top:this.elementOffset.top+"px",zIndex:++i.zIndex}),this.helper.appendTo("body").disableSelection()):this.helper=this.element},_change:{e:function(t,e){return{width:this.originalSize.width+e}},w:function(t,e){var i=this.originalSize,s=this.originalPosition;return{left:s.left+e,width:i.width-e}},n:function(t,e,i){var s=this.originalSize,n=this.originalPosition;return{top:n.top+i,height:s.height-i}},s:function(t,e,i){return{height:this.originalSize.height+i}},se:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},sw:function(e,i,s){return t.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[e,i,s]))},ne:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[e,i,s]))},nw:function(e,i,s){return t.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[e,i,s]))}},_propagate:function(e,i){t.ui.plugin.call(this,e,[i,this.ui()]),"resize"!==e&&this._trigger(e,i,this.ui())},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}),t.ui.plugin.add("resizable","animate",{stop:function(e){var i=t(this).resizable("instance"),s=i.options,n=i._proportionallyResizeElements,o=n.length&&/textarea/i.test(n[0].nodeName),a=o&&i._hasScroll(n[0],"left")?0:i.sizeDiff.height,r=o?0:i.sizeDiff.width,h={width:i.size.width-r,height:i.size.height-a},l=parseFloat(i.element.css("left"))+(i.position.left-i.originalPosition.left)||null,c=parseFloat(i.element.css("top"))+(i.position.top-i.originalPosition.top)||null;i.element.animate(t.extend(h,c&&l?{top:c,left:l}:{}),{duration:s.animateDuration,easing:s.animateEasing,step:function(){var s={width:parseFloat(i.element.css("width")),height:parseFloat(i.element.css("height")),top:parseFloat(i.element.css("top")),left:parseFloat(i.element.css("left"))};n&&n.length&&t(n[0]).css({width:s.width,height:s.height}),i._updateCache(s),i._propagate("resize",e)}})}}),t.ui.plugin.add("resizable","containment",{start:function(){var e,i,s,n,o,a,r,h=t(this).resizable("instance"),l=h.options,c=h.element,u=l.containment,d=u instanceof t?u.get(0):/parent/.test(u)?c.parent().get(0):u;d&&(h.containerElement=t(d),/document/.test(u)||u===document?(h.containerOffset={left:0,top:0},h.containerPosition={left:0,top:0},h.parentData={element:t(document),left:0,top:0,width:t(document).width(),height:t(document).height()||document.body.parentNode.scrollHeight}):(e=t(d),i=[],t(["Top","Right","Left","Bottom"]).each(function(t,s){i[t]=h._num(e.css("padding"+s))}),h.containerOffset=e.offset(),h.containerPosition=e.position(),h.containerSize={height:e.innerHeight()-i[3],width:e.innerWidth()-i[1]},s=h.containerOffset,n=h.containerSize.height,o=h.containerSize.width,a=h._hasScroll(d,"left")?d.scrollWidth:o,r=h._hasScroll(d)?d.scrollHeight:n,h.parentData={element:d,left:s.left,top:s.top,width:a,height:r}))},resize:function(e){var i,s,n,o,a=t(this).resizable("instance"),r=a.options,h=a.containerOffset,l=a.position,c=a._aspectRatio||e.shiftKey,u={top:0,left:0},d=a.containerElement,p=!0;d[0]!==document&&/static/.test(d.css("position"))&&(u=h),l.left<(a._helper?h.left:0)&&(a.size.width=a.size.width+(a._helper?a.position.left-h.left:a.position.left-u.left),c&&(a.size.height=a.size.width/a.aspectRatio,p=!1),a.position.left=r.helper?h.left:0),l.top<(a._helper?h.top:0)&&(a.size.height=a.size.height+(a._helper?a.position.top-h.top:a.position.top),c&&(a.size.width=a.size.height*a.aspectRatio,p=!1),a.position.top=a._helper?h.top:0),n=a.containerElement.get(0)===a.element.parent().get(0),o=/relative|absolute/.test(a.containerElement.css("position")),n&&o?(a.offset.left=a.parentData.left+a.position.left,a.offset.top=a.parentData.top+a.position.top):(a.offset.left=a.element.offset().left,a.offset.top=a.element.offset().top),i=Math.abs(a.sizeDiff.width+(a._helper?a.offset.left-u.left:a.offset.left-h.left)),s=Math.abs(a.sizeDiff.height+(a._helper?a.offset.top-u.top:a.offset.top-h.top)),i+a.size.width>=a.parentData.width&&(a.size.width=a.parentData.width-i,c&&(a.size.height=a.size.width/a.aspectRatio,p=!1)),s+a.size.height>=a.parentData.height&&(a.size.height=a.parentData.height-s,c&&(a.size.width=a.size.height*a.aspectRatio,p=!1)),p||(a.position.left=a.prevPosition.left,a.position.top=a.prevPosition.top,a.size.width=a.prevSize.width,a.size.height=a.prevSize.height)},stop:function(){var e=t(this).resizable("instance"),i=e.options,s=e.containerOffset,n=e.containerPosition,o=e.containerElement,a=t(e.helper),r=a.offset(),h=a.outerWidth()-e.sizeDiff.width,l=a.outerHeight()-e.sizeDiff.height;e._helper&&!i.animate&&/relative/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l}),e._helper&&!i.animate&&/static/.test(o.css("position"))&&t(this).css({left:r.left-n.left-s.left,width:h,height:l})}}),t.ui.plugin.add("resizable","alsoResize",{start:function(){var e=t(this).resizable("instance"),i=e.options;t(i.alsoResize).each(function(){var e=t(this);e.data("ui-resizable-alsoresize",{width:parseFloat(e.width()),height:parseFloat(e.height()),left:parseFloat(e.css("left")),top:parseFloat(e.css("top"))})})},resize:function(e,i){var s=t(this).resizable("instance"),n=s.options,o=s.originalSize,a=s.originalPosition,r={height:s.size.height-o.height||0,width:s.size.width-o.width||0,top:s.position.top-a.top||0,left:s.position.left-a.left||0};t(n.alsoResize).each(function(){var e=t(this),s=t(this).data("ui-resizable-alsoresize"),n={},o=e.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];t.each(o,function(t,e){var i=(s[e]||0)+(r[e]||0);i&&i>=0&&(n[e]=i||null)}),e.css(n)})},stop:function(){t(this).removeData("ui-resizable-alsoresize")}}),t.ui.plugin.add("resizable","ghost",{start:function(){var e=t(this).resizable("instance"),i=e.size;e.ghost=e.originalElement.clone(),e.ghost.css({opacity:.25,display:"block",position:"relative",height:i.height,width:i.width,margin:0,left:0,top:0}),e._addClass(e.ghost,"ui-resizable-ghost"),t.uiBackCompat!==!1&&"string"==typeof e.options.ghost&&e.ghost.addClass(this.options.ghost),e.ghost.appendTo(e.helper)},resize:function(){var e=t(this).resizable("instance");e.ghost&&e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})},stop:function(){var e=t(this).resizable("instance");e.ghost&&e.helper&&e.helper.get(0).removeChild(e.ghost.get(0))}}),t.ui.plugin.add("resizable","grid",{resize:function(){var e,i=t(this).resizable("instance"),s=i.options,n=i.size,o=i.originalSize,a=i.originalPosition,r=i.axis,h="number"==typeof s.grid?[s.grid,s.grid]:s.grid,l=h[0]||1,c=h[1]||1,u=Math.round((n.width-o.width)/l)*l,d=Math.round((n.height-o.height)/c)*c,p=o.width+u,f=o.height+d,g=s.maxWidth&&p>s.maxWidth,m=s.maxHeight&&f>s.maxHeight,_=s.minWidth&&s.minWidth>p,v=s.minHeight&&s.minHeight>f;s.grid=h,_&&(p+=l),v&&(f+=c),g&&(p-=l),m&&(f-=c),/^(se|s|e)$/.test(r)?(i.size.width=p,i.size.height=f):/^(ne)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.top=a.top-d):/^(sw)$/.test(r)?(i.size.width=p,i.size.height=f,i.position.left=a.left-u):((0>=f-c||0>=p-l)&&(e=i._getPaddingPlusBorderDimensions(this)),f-c>0?(i.size.height=f,i.position.top=a.top-d):(f=c-e.height,i.size.height=f,i.position.top=a.top+o.height-f),p-l>0?(i.size.width=p,i.position.left=a.left-u):(p=l-e.width,i.size.width=p,i.position.left=a.left+o.width-p))}}),t.ui.resizable,t.widget("ui.dialog",{version:"1.12.1",options:{appendTo:"body",autoOpen:!0,buttons:[],classes:{"ui-dialog":"ui-corner-all","ui-dialog-titlebar":"ui-corner-all"},closeOnEscape:!0,closeText:"Close",draggable:!0,hide:null,height:"auto",maxHeight:null,maxWidth:null,minHeight:150,minWidth:150,modal:!1,position:{my:"center",at:"center",of:window,collision:"fit",using:function(e){var i=t(this).css(e).offset().top;0>i&&t(this).css("top",e.top-i)}},resizable:!0,show:null,title:null,width:300,beforeClose:null,close:null,drag:null,dragStart:null,dragStop:null,focus:null,open:null,resize:null,resizeStart:null,resizeStop:null},sizeRelatedOptions:{buttons:!0,height:!0,maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0,width:!0},resizableRelatedOptions:{maxHeight:!0,maxWidth:!0,minHeight:!0,minWidth:!0},_create:function(){this.originalCss={display:this.element[0].style.display,width:this.element[0].style.width,minHeight:this.element[0].style.minHeight,maxHeight:this.element[0].style.maxHeight,height:this.element[0].style.height},this.originalPosition={parent:this.element.parent(),index:this.element.parent().children().index(this.element)},this.originalTitle=this.element.attr("title"),null==this.options.title&&null!=this.originalTitle&&(this.options.title=this.originalTitle),this.options.disabled&&(this.options.disabled=!1),this._createWrapper(),this.element.show().removeAttr("title").appendTo(this.uiDialog),this._addClass("ui-dialog-content","ui-widget-content"),this._createTitlebar(),this._createButtonPane(),this.options.draggable&&t.fn.draggable&&this._makeDraggable(),this.options.resizable&&t.fn.resizable&&this._makeResizable(),this._isOpen=!1,this._trackFocus()},_init:function(){this.options.autoOpen&&this.open()},_appendTo:function(){var e=this.options.appendTo;return e&&(e.jquery||e.nodeType)?t(e):this.document.find(e||"body").eq(0)},_destroy:function(){var t,e=this.originalPosition;this._untrackInstance(),this._destroyOverlay(),this.element.removeUniqueId().css(this.originalCss).detach(),this.uiDialog.remove(),this.originalTitle&&this.element.attr("title",this.originalTitle),t=e.parent.children().eq(e.index),t.length&&t[0]!==this.element[0]?t.before(this.element):e.parent.append(this.element)},widget:function(){return this.uiDialog +},disable:t.noop,enable:t.noop,close:function(e){var i=this;this._isOpen&&this._trigger("beforeClose",e)!==!1&&(this._isOpen=!1,this._focusedElement=null,this._destroyOverlay(),this._untrackInstance(),this.opener.filter(":focusable").trigger("focus").length||t.ui.safeBlur(t.ui.safeActiveElement(this.document[0])),this._hide(this.uiDialog,this.options.hide,function(){i._trigger("close",e)}))},isOpen:function(){return this._isOpen},moveToTop:function(){this._moveToTop()},_moveToTop:function(e,i){var s=!1,n=this.uiDialog.siblings(".ui-front:visible").map(function(){return+t(this).css("z-index")}).get(),o=Math.max.apply(null,n);return o>=+this.uiDialog.css("z-index")&&(this.uiDialog.css("z-index",o+1),s=!0),s&&!i&&this._trigger("focus",e),s},open:function(){var e=this;return this._isOpen?(this._moveToTop()&&this._focusTabbable(),void 0):(this._isOpen=!0,this.opener=t(t.ui.safeActiveElement(this.document[0])),this._size(),this._position(),this._createOverlay(),this._moveToTop(null,!0),this.overlay&&this.overlay.css("z-index",this.uiDialog.css("z-index")-1),this._show(this.uiDialog,this.options.show,function(){e._focusTabbable(),e._trigger("focus")}),this._makeFocusTarget(),this._trigger("open"),void 0)},_focusTabbable:function(){var t=this._focusedElement;t||(t=this.element.find("[autofocus]")),t.length||(t=this.element.find(":tabbable")),t.length||(t=this.uiDialogButtonPane.find(":tabbable")),t.length||(t=this.uiDialogTitlebarClose.filter(":tabbable")),t.length||(t=this.uiDialog),t.eq(0).trigger("focus")},_keepFocus:function(e){function i(){var e=t.ui.safeActiveElement(this.document[0]),i=this.uiDialog[0]===e||t.contains(this.uiDialog[0],e);i||this._focusTabbable()}e.preventDefault(),i.call(this),this._delay(i)},_createWrapper:function(){this.uiDialog=t("
    ").hide().attr({tabIndex:-1,role:"dialog"}).appendTo(this._appendTo()),this._addClass(this.uiDialog,"ui-dialog","ui-widget ui-widget-content ui-front"),this._on(this.uiDialog,{keydown:function(e){if(this.options.closeOnEscape&&!e.isDefaultPrevented()&&e.keyCode&&e.keyCode===t.ui.keyCode.ESCAPE)return e.preventDefault(),this.close(e),void 0;if(e.keyCode===t.ui.keyCode.TAB&&!e.isDefaultPrevented()){var i=this.uiDialog.find(":tabbable"),s=i.filter(":first"),n=i.filter(":last");e.target!==n[0]&&e.target!==this.uiDialog[0]||e.shiftKey?e.target!==s[0]&&e.target!==this.uiDialog[0]||!e.shiftKey||(this._delay(function(){n.trigger("focus")}),e.preventDefault()):(this._delay(function(){s.trigger("focus")}),e.preventDefault())}},mousedown:function(t){this._moveToTop(t)&&this._focusTabbable()}}),this.element.find("[aria-describedby]").length||this.uiDialog.attr({"aria-describedby":this.element.uniqueId().attr("id")})},_createTitlebar:function(){var e;this.uiDialogTitlebar=t("
    "),this._addClass(this.uiDialogTitlebar,"ui-dialog-titlebar","ui-widget-header ui-helper-clearfix"),this._on(this.uiDialogTitlebar,{mousedown:function(e){t(e.target).closest(".ui-dialog-titlebar-close")||this.uiDialog.trigger("focus")}}),this.uiDialogTitlebarClose=t("").button({label:t("").text(this.options.closeText).html(),icon:"ui-icon-closethick",showLabel:!1}).appendTo(this.uiDialogTitlebar),this._addClass(this.uiDialogTitlebarClose,"ui-dialog-titlebar-close"),this._on(this.uiDialogTitlebarClose,{click:function(t){t.preventDefault(),this.close(t)}}),e=t("").uniqueId().prependTo(this.uiDialogTitlebar),this._addClass(e,"ui-dialog-title"),this._title(e),this.uiDialogTitlebar.prependTo(this.uiDialog),this.uiDialog.attr({"aria-labelledby":e.attr("id")})},_title:function(t){this.options.title?t.text(this.options.title):t.html(" ")},_createButtonPane:function(){this.uiDialogButtonPane=t("
    "),this._addClass(this.uiDialogButtonPane,"ui-dialog-buttonpane","ui-widget-content ui-helper-clearfix"),this.uiButtonSet=t("
    ").appendTo(this.uiDialogButtonPane),this._addClass(this.uiButtonSet,"ui-dialog-buttonset"),this._createButtons()},_createButtons:function(){var e=this,i=this.options.buttons;return this.uiDialogButtonPane.remove(),this.uiButtonSet.empty(),t.isEmptyObject(i)||t.isArray(i)&&!i.length?(this._removeClass(this.uiDialog,"ui-dialog-buttons"),void 0):(t.each(i,function(i,s){var n,o;s=t.isFunction(s)?{click:s,text:i}:s,s=t.extend({type:"button"},s),n=s.click,o={icon:s.icon,iconPosition:s.iconPosition,showLabel:s.showLabel,icons:s.icons,text:s.text},delete s.click,delete s.icon,delete s.iconPosition,delete s.showLabel,delete s.icons,"boolean"==typeof s.text&&delete s.text,t("",s).button(o).appendTo(e.uiButtonSet).on("click",function(){n.apply(e.element[0],arguments)})}),this._addClass(this.uiDialog,"ui-dialog-buttons"),this.uiDialogButtonPane.appendTo(this.uiDialog),void 0)},_makeDraggable:function(){function e(t){return{position:t.position,offset:t.offset}}var i=this,s=this.options;this.uiDialog.draggable({cancel:".ui-dialog-content, .ui-dialog-titlebar-close",handle:".ui-dialog-titlebar",containment:"document",start:function(s,n){i._addClass(t(this),"ui-dialog-dragging"),i._blockFrames(),i._trigger("dragStart",s,e(n))},drag:function(t,s){i._trigger("drag",t,e(s))},stop:function(n,o){var a=o.offset.left-i.document.scrollLeft(),r=o.offset.top-i.document.scrollTop();s.position={my:"left top",at:"left"+(a>=0?"+":"")+a+" "+"top"+(r>=0?"+":"")+r,of:i.window},i._removeClass(t(this),"ui-dialog-dragging"),i._unblockFrames(),i._trigger("dragStop",n,e(o))}})},_makeResizable:function(){function e(t){return{originalPosition:t.originalPosition,originalSize:t.originalSize,position:t.position,size:t.size}}var i=this,s=this.options,n=s.resizable,o=this.uiDialog.css("position"),a="string"==typeof n?n:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",containment:"document",alsoResize:this.element,maxWidth:s.maxWidth,maxHeight:s.maxHeight,minWidth:s.minWidth,minHeight:this._minHeight(),handles:a,start:function(s,n){i._addClass(t(this),"ui-dialog-resizing"),i._blockFrames(),i._trigger("resizeStart",s,e(n))},resize:function(t,s){i._trigger("resize",t,e(s))},stop:function(n,o){var a=i.uiDialog.offset(),r=a.left-i.document.scrollLeft(),h=a.top-i.document.scrollTop();s.height=i.uiDialog.height(),s.width=i.uiDialog.width(),s.position={my:"left top",at:"left"+(r>=0?"+":"")+r+" "+"top"+(h>=0?"+":"")+h,of:i.window},i._removeClass(t(this),"ui-dialog-resizing"),i._unblockFrames(),i._trigger("resizeStop",n,e(o))}}).css("position",o)},_trackFocus:function(){this._on(this.widget(),{focusin:function(e){this._makeFocusTarget(),this._focusedElement=t(e.target)}})},_makeFocusTarget:function(){this._untrackInstance(),this._trackingInstances().unshift(this)},_untrackInstance:function(){var e=this._trackingInstances(),i=t.inArray(this,e);-1!==i&&e.splice(i,1)},_trackingInstances:function(){var t=this.document.data("ui-dialog-instances");return t||(t=[],this.document.data("ui-dialog-instances",t)),t},_minHeight:function(){var t=this.options;return"auto"===t.height?t.minHeight:Math.min(t.minHeight,t.height)},_position:function(){var t=this.uiDialog.is(":visible");t||this.uiDialog.show(),this.uiDialog.position(this.options.position),t||this.uiDialog.hide()},_setOptions:function(e){var i=this,s=!1,n={};t.each(e,function(t,e){i._setOption(t,e),t in i.sizeRelatedOptions&&(s=!0),t in i.resizableRelatedOptions&&(n[t]=e)}),s&&(this._size(),this._position()),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option",n)},_setOption:function(e,i){var s,n,o=this.uiDialog;"disabled"!==e&&(this._super(e,i),"appendTo"===e&&this.uiDialog.appendTo(this._appendTo()),"buttons"===e&&this._createButtons(),"closeText"===e&&this.uiDialogTitlebarClose.button({label:t("").text(""+this.options.closeText).html()}),"draggable"===e&&(s=o.is(":data(ui-draggable)"),s&&!i&&o.draggable("destroy"),!s&&i&&this._makeDraggable()),"position"===e&&this._position(),"resizable"===e&&(n=o.is(":data(ui-resizable)"),n&&!i&&o.resizable("destroy"),n&&"string"==typeof i&&o.resizable("option","handles",i),n||i===!1||this._makeResizable()),"title"===e&&this._title(this.uiDialogTitlebar.find(".ui-dialog-title")))},_size:function(){var t,e,i,s=this.options;this.element.show().css({width:"auto",minHeight:0,maxHeight:"none",height:0}),s.minWidth>s.width&&(s.width=s.minWidth),t=this.uiDialog.css({height:"auto",width:s.width}).outerHeight(),e=Math.max(0,s.minHeight-t),i="number"==typeof s.maxHeight?Math.max(0,s.maxHeight-t):"none","auto"===s.height?this.element.css({minHeight:e,maxHeight:i,height:"auto"}):this.element.height(Math.max(0,s.height-t)),this.uiDialog.is(":data(ui-resizable)")&&this.uiDialog.resizable("option","minHeight",this._minHeight())},_blockFrames:function(){this.iframeBlocks=this.document.find("iframe").map(function(){var e=t(this);return t("
    ").css({position:"absolute",width:e.outerWidth(),height:e.outerHeight()}).appendTo(e.parent()).offset(e.offset())[0]})},_unblockFrames:function(){this.iframeBlocks&&(this.iframeBlocks.remove(),delete this.iframeBlocks)},_allowInteraction:function(e){return t(e.target).closest(".ui-dialog").length?!0:!!t(e.target).closest(".ui-datepicker").length},_createOverlay:function(){if(this.options.modal){var e=!0;this._delay(function(){e=!1}),this.document.data("ui-dialog-overlays")||this._on(this.document,{focusin:function(t){e||this._allowInteraction(t)||(t.preventDefault(),this._trackingInstances()[0]._focusTabbable())}}),this.overlay=t("
    ").appendTo(this._appendTo()),this._addClass(this.overlay,null,"ui-widget-overlay ui-front"),this._on(this.overlay,{mousedown:"_keepFocus"}),this.document.data("ui-dialog-overlays",(this.document.data("ui-dialog-overlays")||0)+1)}},_destroyOverlay:function(){if(this.options.modal&&this.overlay){var t=this.document.data("ui-dialog-overlays")-1;t?this.document.data("ui-dialog-overlays",t):(this._off(this.document,"focusin"),this.document.removeData("ui-dialog-overlays")),this.overlay.remove(),this.overlay=null}}}),t.uiBackCompat!==!1&&t.widget("ui.dialog",t.ui.dialog,{options:{dialogClass:""},_createWrapper:function(){this._super(),this.uiDialog.addClass(this.options.dialogClass)},_setOption:function(t,e){"dialogClass"===t&&this.uiDialog.removeClass(this.options.dialogClass).addClass(e),this._superApply(arguments)}}),t.ui.dialog,t.widget("ui.droppable",{version:"1.12.1",widgetEventPrefix:"drop",options:{accept:"*",addClasses:!0,greedy:!1,scope:"default",tolerance:"intersect",activate:null,deactivate:null,drop:null,out:null,over:null},_create:function(){var e,i=this.options,s=i.accept;this.isover=!1,this.isout=!0,this.accept=t.isFunction(s)?s:function(t){return t.is(s)},this.proportions=function(){return arguments.length?(e=arguments[0],void 0):e?e:e={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight}},this._addToManager(i.scope),i.addClasses&&this._addClass("ui-droppable")},_addToManager:function(e){t.ui.ddmanager.droppables[e]=t.ui.ddmanager.droppables[e]||[],t.ui.ddmanager.droppables[e].push(this)},_splice:function(t){for(var e=0;t.length>e;e++)t[e]===this&&t.splice(e,1)},_destroy:function(){var e=t.ui.ddmanager.droppables[this.options.scope];this._splice(e)},_setOption:function(e,i){if("accept"===e)this.accept=t.isFunction(i)?i:function(t){return t.is(i)};else if("scope"===e){var s=t.ui.ddmanager.droppables[this.options.scope];this._splice(s),this._addToManager(i)}this._super(e,i)},_activate:function(e){var i=t.ui.ddmanager.current;this._addActiveClass(),i&&this._trigger("activate",e,this.ui(i))},_deactivate:function(e){var i=t.ui.ddmanager.current;this._removeActiveClass(),i&&this._trigger("deactivate",e,this.ui(i))},_over:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this._addHoverClass(),this._trigger("over",e,this.ui(i)))},_out:function(e){var i=t.ui.ddmanager.current;i&&(i.currentItem||i.element)[0]!==this.element[0]&&this.accept.call(this.element[0],i.currentItem||i.element)&&(this._removeHoverClass(),this._trigger("out",e,this.ui(i)))},_drop:function(e,i){var s=i||t.ui.ddmanager.current,n=!1;return s&&(s.currentItem||s.element)[0]!==this.element[0]?(this.element.find(":data(ui-droppable)").not(".ui-draggable-dragging").each(function(){var i=t(this).droppable("instance");return i.options.greedy&&!i.options.disabled&&i.options.scope===s.options.scope&&i.accept.call(i.element[0],s.currentItem||s.element)&&v(s,t.extend(i,{offset:i.element.offset()}),i.options.tolerance,e)?(n=!0,!1):void 0}),n?!1:this.accept.call(this.element[0],s.currentItem||s.element)?(this._removeActiveClass(),this._removeHoverClass(),this._trigger("drop",e,this.ui(s)),this.element):!1):!1},ui:function(t){return{draggable:t.currentItem||t.element,helper:t.helper,position:t.position,offset:t.positionAbs}},_addHoverClass:function(){this._addClass("ui-droppable-hover")},_removeHoverClass:function(){this._removeClass("ui-droppable-hover")},_addActiveClass:function(){this._addClass("ui-droppable-active")},_removeActiveClass:function(){this._removeClass("ui-droppable-active")}});var v=t.ui.intersect=function(){function t(t,e,i){return t>=e&&e+i>t}return function(e,i,s,n){if(!i.offset)return!1;var o=(e.positionAbs||e.position.absolute).left+e.margins.left,a=(e.positionAbs||e.position.absolute).top+e.margins.top,r=o+e.helperProportions.width,h=a+e.helperProportions.height,l=i.offset.left,c=i.offset.top,u=l+i.proportions().width,d=c+i.proportions().height;switch(s){case"fit":return o>=l&&u>=r&&a>=c&&d>=h;case"intersect":return o+e.helperProportions.width/2>l&&u>r-e.helperProportions.width/2&&a+e.helperProportions.height/2>c&&d>h-e.helperProportions.height/2;case"pointer":return t(n.pageY,c,i.proportions().height)&&t(n.pageX,l,i.proportions().width);case"touch":return(a>=c&&d>=a||h>=c&&d>=h||c>a&&h>d)&&(o>=l&&u>=o||r>=l&&u>=r||l>o&&r>u);default:return!1}}}();t.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,i){var s,n,o=t.ui.ddmanager.droppables[e.options.scope]||[],a=i?i.type:null,r=(e.currentItem||e.element).find(":data(ui-droppable)").addBack();t:for(s=0;o.length>s;s++)if(!(o[s].options.disabled||e&&!o[s].accept.call(o[s].element[0],e.currentItem||e.element))){for(n=0;r.length>n;n++)if(r[n]===o[s].element[0]){o[s].proportions().height=0;continue t}o[s].visible="none"!==o[s].element.css("display"),o[s].visible&&("mousedown"===a&&o[s]._activate.call(o[s],i),o[s].offset=o[s].element.offset(),o[s].proportions({width:o[s].element[0].offsetWidth,height:o[s].element[0].offsetHeight}))}},drop:function(e,i){var s=!1;return t.each((t.ui.ddmanager.droppables[e.options.scope]||[]).slice(),function(){this.options&&(!this.options.disabled&&this.visible&&v(e,this,this.options.tolerance,i)&&(s=this._drop.call(this,i)||s),!this.options.disabled&&this.visible&&this.accept.call(this.element[0],e.currentItem||e.element)&&(this.isout=!0,this.isover=!1,this._deactivate.call(this,i)))}),s},dragStart:function(e,i){e.element.parentsUntil("body").on("scroll.droppable",function(){e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)})},drag:function(e,i){e.options.refreshPositions&&t.ui.ddmanager.prepareOffsets(e,i),t.each(t.ui.ddmanager.droppables[e.options.scope]||[],function(){if(!this.options.disabled&&!this.greedyChild&&this.visible){var s,n,o,a=v(e,this,this.options.tolerance,i),r=!a&&this.isover?"isout":a&&!this.isover?"isover":null;r&&(this.options.greedy&&(n=this.options.scope,o=this.element.parents(":data(ui-droppable)").filter(function(){return t(this).droppable("instance").options.scope===n}),o.length&&(s=t(o[0]).droppable("instance"),s.greedyChild="isover"===r)),s&&"isover"===r&&(s.isover=!1,s.isout=!0,s._out.call(s,i)),this[r]=!0,this["isout"===r?"isover":"isout"]=!1,this["isover"===r?"_over":"_out"].call(this,i),s&&"isout"===r&&(s.isout=!1,s.isover=!0,s._over.call(s,i)))}})},dragStop:function(e,i){e.element.parentsUntil("body").off("scroll.droppable"),e.options.refreshPositions||t.ui.ddmanager.prepareOffsets(e,i)}},t.uiBackCompat!==!1&&t.widget("ui.droppable",t.ui.droppable,{options:{hoverClass:!1,activeClass:!1},_addActiveClass:function(){this._super(),this.options.activeClass&&this.element.addClass(this.options.activeClass)},_removeActiveClass:function(){this._super(),this.options.activeClass&&this.element.removeClass(this.options.activeClass)},_addHoverClass:function(){this._super(),this.options.hoverClass&&this.element.addClass(this.options.hoverClass)},_removeHoverClass:function(){this._super(),this.options.hoverClass&&this.element.removeClass(this.options.hoverClass)}}),t.ui.droppable,t.widget("ui.progressbar",{version:"1.12.1",options:{classes:{"ui-progressbar":"ui-corner-all","ui-progressbar-value":"ui-corner-left","ui-progressbar-complete":"ui-corner-right"},max:100,value:0,change:null,complete:null},min:0,_create:function(){this.oldValue=this.options.value=this._constrainedValue(),this.element.attr({role:"progressbar","aria-valuemin":this.min}),this._addClass("ui-progressbar","ui-widget ui-widget-content"),this.valueDiv=t("
    ").appendTo(this.element),this._addClass(this.valueDiv,"ui-progressbar-value","ui-widget-header"),this._refreshValue()},_destroy:function(){this.element.removeAttr("role aria-valuemin aria-valuemax aria-valuenow"),this.valueDiv.remove()},value:function(t){return void 0===t?this.options.value:(this.options.value=this._constrainedValue(t),this._refreshValue(),void 0)},_constrainedValue:function(t){return void 0===t&&(t=this.options.value),this.indeterminate=t===!1,"number"!=typeof t&&(t=0),this.indeterminate?!1:Math.min(this.options.max,Math.max(this.min,t))},_setOptions:function(t){var e=t.value;delete t.value,this._super(t),this.options.value=this._constrainedValue(e),this._refreshValue()},_setOption:function(t,e){"max"===t&&(e=Math.max(this.min,e)),this._super(t,e)},_setOptionDisabled:function(t){this._super(t),this.element.attr("aria-disabled",t),this._toggleClass(null,"ui-state-disabled",!!t)},_percentage:function(){return this.indeterminate?100:100*(this.options.value-this.min)/(this.options.max-this.min)},_refreshValue:function(){var e=this.options.value,i=this._percentage();this.valueDiv.toggle(this.indeterminate||e>this.min).width(i.toFixed(0)+"%"),this._toggleClass(this.valueDiv,"ui-progressbar-complete",null,e===this.options.max)._toggleClass("ui-progressbar-indeterminate",null,this.indeterminate),this.indeterminate?(this.element.removeAttr("aria-valuenow"),this.overlayDiv||(this.overlayDiv=t("
    ").appendTo(this.valueDiv),this._addClass(this.overlayDiv,"ui-progressbar-overlay"))):(this.element.attr({"aria-valuemax":this.options.max,"aria-valuenow":e}),this.overlayDiv&&(this.overlayDiv.remove(),this.overlayDiv=null)),this.oldValue!==e&&(this.oldValue=e,this._trigger("change")),e===this.options.max&&this._trigger("complete")}}),t.widget("ui.selectable",t.ui.mouse,{version:"1.12.1",options:{appendTo:"body",autoRefresh:!0,distance:0,filter:"*",tolerance:"touch",selected:null,selecting:null,start:null,stop:null,unselected:null,unselecting:null},_create:function(){var e=this;this._addClass("ui-selectable"),this.dragged=!1,this.refresh=function(){e.elementPos=t(e.element[0]).offset(),e.selectees=t(e.options.filter,e.element[0]),e._addClass(e.selectees,"ui-selectee"),e.selectees.each(function(){var i=t(this),s=i.offset(),n={left:s.left-e.elementPos.left,top:s.top-e.elementPos.top};t.data(this,"selectable-item",{element:this,$element:i,left:n.left,top:n.top,right:n.left+i.outerWidth(),bottom:n.top+i.outerHeight(),startselected:!1,selected:i.hasClass("ui-selected"),selecting:i.hasClass("ui-selecting"),unselecting:i.hasClass("ui-unselecting")})})},this.refresh(),this._mouseInit(),this.helper=t("
    "),this._addClass(this.helper,"ui-selectable-helper")},_destroy:function(){this.selectees.removeData("selectable-item"),this._mouseDestroy()},_mouseStart:function(e){var i=this,s=this.options;this.opos=[e.pageX,e.pageY],this.elementPos=t(this.element[0]).offset(),this.options.disabled||(this.selectees=t(s.filter,this.element[0]),this._trigger("start",e),t(s.appendTo).append(this.helper),this.helper.css({left:e.pageX,top:e.pageY,width:0,height:0}),s.autoRefresh&&this.refresh(),this.selectees.filter(".ui-selected").each(function(){var s=t.data(this,"selectable-item");s.startselected=!0,e.metaKey||e.ctrlKey||(i._removeClass(s.$element,"ui-selected"),s.selected=!1,i._addClass(s.$element,"ui-unselecting"),s.unselecting=!0,i._trigger("unselecting",e,{unselecting:s.element}))}),t(e.target).parents().addBack().each(function(){var s,n=t.data(this,"selectable-item");return n?(s=!e.metaKey&&!e.ctrlKey||!n.$element.hasClass("ui-selected"),i._removeClass(n.$element,s?"ui-unselecting":"ui-selected")._addClass(n.$element,s?"ui-selecting":"ui-unselecting"),n.unselecting=!s,n.selecting=s,n.selected=s,s?i._trigger("selecting",e,{selecting:n.element}):i._trigger("unselecting",e,{unselecting:n.element}),!1):void 0}))},_mouseDrag:function(e){if(this.dragged=!0,!this.options.disabled){var i,s=this,n=this.options,o=this.opos[0],a=this.opos[1],r=e.pageX,h=e.pageY;return o>r&&(i=r,r=o,o=i),a>h&&(i=h,h=a,a=i),this.helper.css({left:o,top:a,width:r-o,height:h-a}),this.selectees.each(function(){var i=t.data(this,"selectable-item"),l=!1,c={};i&&i.element!==s.element[0]&&(c.left=i.left+s.elementPos.left,c.right=i.right+s.elementPos.left,c.top=i.top+s.elementPos.top,c.bottom=i.bottom+s.elementPos.top,"touch"===n.tolerance?l=!(c.left>r||o>c.right||c.top>h||a>c.bottom):"fit"===n.tolerance&&(l=c.left>o&&r>c.right&&c.top>a&&h>c.bottom),l?(i.selected&&(s._removeClass(i.$element,"ui-selected"),i.selected=!1),i.unselecting&&(s._removeClass(i.$element,"ui-unselecting"),i.unselecting=!1),i.selecting||(s._addClass(i.$element,"ui-selecting"),i.selecting=!0,s._trigger("selecting",e,{selecting:i.element}))):(i.selecting&&((e.metaKey||e.ctrlKey)&&i.startselected?(s._removeClass(i.$element,"ui-selecting"),i.selecting=!1,s._addClass(i.$element,"ui-selected"),i.selected=!0):(s._removeClass(i.$element,"ui-selecting"),i.selecting=!1,i.startselected&&(s._addClass(i.$element,"ui-unselecting"),i.unselecting=!0),s._trigger("unselecting",e,{unselecting:i.element}))),i.selected&&(e.metaKey||e.ctrlKey||i.startselected||(s._removeClass(i.$element,"ui-selected"),i.selected=!1,s._addClass(i.$element,"ui-unselecting"),i.unselecting=!0,s._trigger("unselecting",e,{unselecting:i.element})))))}),!1}},_mouseStop:function(e){var i=this;return this.dragged=!1,t(".ui-unselecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");i._removeClass(s.$element,"ui-unselecting"),s.unselecting=!1,s.startselected=!1,i._trigger("unselected",e,{unselected:s.element})}),t(".ui-selecting",this.element[0]).each(function(){var s=t.data(this,"selectable-item");i._removeClass(s.$element,"ui-selecting")._addClass(s.$element,"ui-selected"),s.selecting=!1,s.selected=!0,s.startselected=!0,i._trigger("selected",e,{selected:s.element})}),this._trigger("stop",e),this.helper.remove(),!1}}),t.widget("ui.selectmenu",[t.ui.formResetMixin,{version:"1.12.1",defaultElement:"",widgetEventPrefix:"spin",options:{classes:{"ui-spinner":"ui-corner-all","ui-spinner-down":"ui-corner-br","ui-spinner-up":"ui-corner-tr"},culture:null,icons:{down:"ui-icon-triangle-1-s",up:"ui-icon-triangle-1-n"},incremental:!0,max:null,min:null,numberFormat:null,page:10,step:1,change:null,spin:null,start:null,stop:null},_create:function(){this._setOption("max",this.options.max),this._setOption("min",this.options.min),this._setOption("step",this.options.step),""!==this.value()&&this._value(this.element.val(),!0),this._draw(),this._on(this._events),this._refresh(),this._on(this.window,{beforeunload:function(){this.element.removeAttr("autocomplete")}})},_getCreateOptions:function(){var e=this._super(),i=this.element;return t.each(["min","max","step"],function(t,s){var n=i.attr(s);null!=n&&n.length&&(e[s]=n)}),e},_events:{keydown:function(t){this._start(t)&&this._keydown(t)&&t.preventDefault()},keyup:"_stop",focus:function(){this.previous=this.element.val()},blur:function(t){return this.cancelBlur?(delete this.cancelBlur,void 0):(this._stop(),this._refresh(),this.previous!==this.element.val()&&this._trigger("change",t),void 0)},mousewheel:function(t,e){if(e){if(!this.spinning&&!this._start(t))return!1;this._spin((e>0?1:-1)*this.options.step,t),clearTimeout(this.mousewheelTimer),this.mousewheelTimer=this._delay(function(){this.spinning&&this._stop(t)},100),t.preventDefault()}},"mousedown .ui-spinner-button":function(e){function i(){var e=this.element[0]===t.ui.safeActiveElement(this.document[0]);e||(this.element.trigger("focus"),this.previous=s,this._delay(function(){this.previous=s}))}var s;s=this.element[0]===t.ui.safeActiveElement(this.document[0])?this.previous:this.element.val(),e.preventDefault(),i.call(this),this.cancelBlur=!0,this._delay(function(){delete this.cancelBlur,i.call(this)}),this._start(e)!==!1&&this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e)},"mouseup .ui-spinner-button":"_stop","mouseenter .ui-spinner-button":function(e){return t(e.currentTarget).hasClass("ui-state-active")?this._start(e)===!1?!1:(this._repeat(null,t(e.currentTarget).hasClass("ui-spinner-up")?1:-1,e),void 0):void 0},"mouseleave .ui-spinner-button":"_stop"},_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap("").parent().append("")},_draw:function(){this._enhance(),this._addClass(this.uiSpinner,"ui-spinner","ui-widget ui-widget-content"),this._addClass("ui-spinner-input"),this.element.attr("role","spinbutton"),this.buttons=this.uiSpinner.children("a").attr("tabIndex",-1).attr("aria-hidden",!0).button({classes:{"ui-button":""}}),this._removeClass(this.buttons,"ui-corner-all"),this._addClass(this.buttons.first(),"ui-spinner-button ui-spinner-up"),this._addClass(this.buttons.last(),"ui-spinner-button ui-spinner-down"),this.buttons.first().button({icon:this.options.icons.up,showLabel:!1}),this.buttons.last().button({icon:this.options.icons.down,showLabel:!1}),this.buttons.height()>Math.ceil(.5*this.uiSpinner.height())&&this.uiSpinner.height()>0&&this.uiSpinner.height(this.uiSpinner.height())},_keydown:function(e){var i=this.options,s=t.ui.keyCode;switch(e.keyCode){case s.UP:return this._repeat(null,1,e),!0;case s.DOWN:return this._repeat(null,-1,e),!0;case s.PAGE_UP:return this._repeat(null,i.page,e),!0;case s.PAGE_DOWN:return this._repeat(null,-i.page,e),!0}return!1},_start:function(t){return this.spinning||this._trigger("start",t)!==!1?(this.counter||(this.counter=1),this.spinning=!0,!0):!1},_repeat:function(t,e,i){t=t||500,clearTimeout(this.timer),this.timer=this._delay(function(){this._repeat(40,e,i)},t),this._spin(e*this.options.step,i)},_spin:function(t,e){var i=this.value()||0;this.counter||(this.counter=1),i=this._adjustValue(i+t*this._increment(this.counter)),this.spinning&&this._trigger("spin",e,{value:i})===!1||(this._value(i),this.counter++)},_increment:function(e){var i=this.options.incremental;return i?t.isFunction(i)?i(e):Math.floor(e*e*e/5e4-e*e/500+17*e/200+1):1},_precision:function(){var t=this._precisionOf(this.options.step);return null!==this.options.min&&(t=Math.max(t,this._precisionOf(this.options.min))),t},_precisionOf:function(t){var e=""+t,i=e.indexOf(".");return-1===i?0:e.length-i-1},_adjustValue:function(t){var e,i,s=this.options;return e=null!==s.min?s.min:0,i=t-e,i=Math.round(i/s.step)*s.step,t=e+i,t=parseFloat(t.toFixed(this._precision())),null!==s.max&&t>s.max?s.max:null!==s.min&&s.min>t?s.min:t},_stop:function(t){this.spinning&&(clearTimeout(this.timer),clearTimeout(this.mousewheelTimer),this.counter=0,this.spinning=!1,this._trigger("stop",t))},_setOption:function(t,e){var i,s,n;return"culture"===t||"numberFormat"===t?(i=this._parse(this.element.val()),this.options[t]=e,this.element.val(this._format(i)),void 0):(("max"===t||"min"===t||"step"===t)&&"string"==typeof e&&(e=this._parse(e)),"icons"===t&&(s=this.buttons.first().find(".ui-icon"),this._removeClass(s,null,this.options.icons.up),this._addClass(s,null,e.up),n=this.buttons.last().find(".ui-icon"),this._removeClass(n,null,this.options.icons.down),this._addClass(n,null,e.down)),this._super(t,e),void 0)},_setOptionDisabled:function(t){this._super(t),this._toggleClass(this.uiSpinner,null,"ui-state-disabled",!!t),this.element.prop("disabled",!!t),this.buttons.button(t?"disable":"enable")},_setOptions:r(function(t){this._super(t)}),_parse:function(t){return"string"==typeof t&&""!==t&&(t=window.Globalize&&this.options.numberFormat?Globalize.parseFloat(t,10,this.options.culture):+t),""===t||isNaN(t)?null:t},_format:function(t){return""===t?"":window.Globalize&&this.options.numberFormat?Globalize.format(t,this.options.numberFormat,this.options.culture):t},_refresh:function(){this.element.attr({"aria-valuemin":this.options.min,"aria-valuemax":this.options.max,"aria-valuenow":this._parse(this.element.val())})},isValid:function(){var t=this.value();return null===t?!1:t===this._adjustValue(t)},_value:function(t,e){var i;""!==t&&(i=this._parse(t),null!==i&&(e||(i=this._adjustValue(i)),t=this._format(i))),this.element.val(t),this._refresh()},_destroy:function(){this.element.prop("disabled",!1).removeAttr("autocomplete role aria-valuemin aria-valuemax aria-valuenow"),this.uiSpinner.replaceWith(this.element)},stepUp:r(function(t){this._stepUp(t)}),_stepUp:function(t){this._start()&&(this._spin((t||1)*this.options.step),this._stop())},stepDown:r(function(t){this._stepDown(t)}),_stepDown:function(t){this._start()&&(this._spin((t||1)*-this.options.step),this._stop())},pageUp:r(function(t){this._stepUp((t||1)*this.options.page)}),pageDown:r(function(t){this._stepDown((t||1)*this.options.page)}),value:function(t){return arguments.length?(r(this._value).call(this,t),void 0):this._parse(this.element.val())},widget:function(){return this.uiSpinner}}),t.uiBackCompat!==!1&&t.widget("ui.spinner",t.ui.spinner,{_enhance:function(){this.uiSpinner=this.element.attr("autocomplete","off").wrap(this._uiSpinnerHtml()).parent().append(this._buttonHtml())},_uiSpinnerHtml:function(){return""},_buttonHtml:function(){return""}}),t.ui.spinner,t.widget("ui.tabs",{version:"1.12.1",delay:300,options:{active:null,classes:{"ui-tabs":"ui-corner-all","ui-tabs-nav":"ui-corner-all","ui-tabs-panel":"ui-corner-bottom","ui-tabs-tab":"ui-corner-top"},collapsible:!1,event:"click",heightStyle:"content",hide:null,show:null,activate:null,beforeActivate:null,beforeLoad:null,load:null},_isLocal:function(){var t=/#.*$/;return function(e){var i,s;i=e.href.replace(t,""),s=location.href.replace(t,"");try{i=decodeURIComponent(i)}catch(n){}try{s=decodeURIComponent(s)}catch(n){}return e.hash.length>1&&i===s}}(),_create:function(){var e=this,i=this.options;this.running=!1,this._addClass("ui-tabs","ui-widget ui-widget-content"),this._toggleClass("ui-tabs-collapsible",null,i.collapsible),this._processTabs(),i.active=this._initialActive(),t.isArray(i.disabled)&&(i.disabled=t.unique(i.disabled.concat(t.map(this.tabs.filter(".ui-state-disabled"),function(t){return e.tabs.index(t)}))).sort()),this.active=this.options.active!==!1&&this.anchors.length?this._findActive(i.active):t(),this._refresh(),this.active.length&&this.load(i.active)},_initialActive:function(){var e=this.options.active,i=this.options.collapsible,s=location.hash.substring(1);return null===e&&(s&&this.tabs.each(function(i,n){return t(n).attr("aria-controls")===s?(e=i,!1):void 0}),null===e&&(e=this.tabs.index(this.tabs.filter(".ui-tabs-active"))),(null===e||-1===e)&&(e=this.tabs.length?0:!1)),e!==!1&&(e=this.tabs.index(this.tabs.eq(e)),-1===e&&(e=i?!1:0)),!i&&e===!1&&this.anchors.length&&(e=0),e},_getCreateEventData:function(){return{tab:this.active,panel:this.active.length?this._getPanelForTab(this.active):t()}},_tabKeydown:function(e){var i=t(t.ui.safeActiveElement(this.document[0])).closest("li"),s=this.tabs.index(i),n=!0;if(!this._handlePageNav(e)){switch(e.keyCode){case t.ui.keyCode.RIGHT:case t.ui.keyCode.DOWN:s++;break;case t.ui.keyCode.UP:case t.ui.keyCode.LEFT:n=!1,s--;break;case t.ui.keyCode.END:s=this.anchors.length-1;break;case t.ui.keyCode.HOME:s=0;break;case t.ui.keyCode.SPACE:return e.preventDefault(),clearTimeout(this.activating),this._activate(s),void 0;case t.ui.keyCode.ENTER:return e.preventDefault(),clearTimeout(this.activating),this._activate(s===this.options.active?!1:s),void 0;default:return}e.preventDefault(),clearTimeout(this.activating),s=this._focusNextTab(s,n),e.ctrlKey||e.metaKey||(i.attr("aria-selected","false"),this.tabs.eq(s).attr("aria-selected","true"),this.activating=this._delay(function(){this.option("active",s)},this.delay))}},_panelKeydown:function(e){this._handlePageNav(e)||e.ctrlKey&&e.keyCode===t.ui.keyCode.UP&&(e.preventDefault(),this.active.trigger("focus"))},_handlePageNav:function(e){return e.altKey&&e.keyCode===t.ui.keyCode.PAGE_UP?(this._activate(this._focusNextTab(this.options.active-1,!1)),!0):e.altKey&&e.keyCode===t.ui.keyCode.PAGE_DOWN?(this._activate(this._focusNextTab(this.options.active+1,!0)),!0):void 0},_findNextTab:function(e,i){function s(){return e>n&&(e=0),0>e&&(e=n),e}for(var n=this.tabs.length-1;-1!==t.inArray(s(),this.options.disabled);)e=i?e+1:e-1;return e},_focusNextTab:function(t,e){return t=this._findNextTab(t,e),this.tabs.eq(t).trigger("focus"),t},_setOption:function(t,e){return"active"===t?(this._activate(e),void 0):(this._super(t,e),"collapsible"===t&&(this._toggleClass("ui-tabs-collapsible",null,e),e||this.options.active!==!1||this._activate(0)),"event"===t&&this._setupEvents(e),"heightStyle"===t&&this._setupHeightStyle(e),void 0)},_sanitizeSelector:function(t){return t?t.replace(/[!"$%&'()*+,.\/:;<=>?@\[\]\^`{|}~]/g,"\\$&"):""},refresh:function(){var e=this.options,i=this.tablist.children(":has(a[href])");e.disabled=t.map(i.filter(".ui-state-disabled"),function(t){return i.index(t)}),this._processTabs(),e.active!==!1&&this.anchors.length?this.active.length&&!t.contains(this.tablist[0],this.active[0])?this.tabs.length===e.disabled.length?(e.active=!1,this.active=t()):this._activate(this._findNextTab(Math.max(0,e.active-1),!1)):e.active=this.tabs.index(this.active):(e.active=!1,this.active=t()),this._refresh()},_refresh:function(){this._setOptionDisabled(this.options.disabled),this._setupEvents(this.options.event),this._setupHeightStyle(this.options.heightStyle),this.tabs.not(this.active).attr({"aria-selected":"false","aria-expanded":"false",tabIndex:-1}),this.panels.not(this._getPanelForTab(this.active)).hide().attr({"aria-hidden":"true"}),this.active.length?(this.active.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0}),this._addClass(this.active,"ui-tabs-active","ui-state-active"),this._getPanelForTab(this.active).show().attr({"aria-hidden":"false"})):this.tabs.eq(0).attr("tabIndex",0)},_processTabs:function(){var e=this,i=this.tabs,s=this.anchors,n=this.panels;this.tablist=this._getList().attr("role","tablist"),this._addClass(this.tablist,"ui-tabs-nav","ui-helper-reset ui-helper-clearfix ui-widget-header"),this.tablist.on("mousedown"+this.eventNamespace,"> li",function(e){t(this).is(".ui-state-disabled")&&e.preventDefault()}).on("focus"+this.eventNamespace,".ui-tabs-anchor",function(){t(this).closest("li").is(".ui-state-disabled")&&this.blur()}),this.tabs=this.tablist.find("> li:has(a[href])").attr({role:"tab",tabIndex:-1}),this._addClass(this.tabs,"ui-tabs-tab","ui-state-default"),this.anchors=this.tabs.map(function(){return t("a",this)[0]}).attr({role:"presentation",tabIndex:-1}),this._addClass(this.anchors,"ui-tabs-anchor"),this.panels=t(),this.anchors.each(function(i,s){var n,o,a,r=t(s).uniqueId().attr("id"),h=t(s).closest("li"),l=h.attr("aria-controls");e._isLocal(s)?(n=s.hash,a=n.substring(1),o=e.element.find(e._sanitizeSelector(n))):(a=h.attr("aria-controls")||t({}).uniqueId()[0].id,n="#"+a,o=e.element.find(n),o.length||(o=e._createPanel(a),o.insertAfter(e.panels[i-1]||e.tablist)),o.attr("aria-live","polite")),o.length&&(e.panels=e.panels.add(o)),l&&h.data("ui-tabs-aria-controls",l),h.attr({"aria-controls":a,"aria-labelledby":r}),o.attr("aria-labelledby",r)}),this.panels.attr("role","tabpanel"),this._addClass(this.panels,"ui-tabs-panel","ui-widget-content"),i&&(this._off(i.not(this.tabs)),this._off(s.not(this.anchors)),this._off(n.not(this.panels)))},_getList:function(){return this.tablist||this.element.find("ol, ul").eq(0)},_createPanel:function(e){return t("
    ").attr("id",e).data("ui-tabs-destroy",!0)},_setOptionDisabled:function(e){var i,s,n;for(t.isArray(e)&&(e.length?e.length===this.anchors.length&&(e=!0):e=!1),n=0;s=this.tabs[n];n++)i=t(s),e===!0||-1!==t.inArray(n,e)?(i.attr("aria-disabled","true"),this._addClass(i,null,"ui-state-disabled")):(i.removeAttr("aria-disabled"),this._removeClass(i,null,"ui-state-disabled"));this.options.disabled=e,this._toggleClass(this.widget(),this.widgetFullName+"-disabled",null,e===!0)},_setupEvents:function(e){var i={};e&&t.each(e.split(" "),function(t,e){i[e]="_eventHandler"}),this._off(this.anchors.add(this.tabs).add(this.panels)),this._on(!0,this.anchors,{click:function(t){t.preventDefault()}}),this._on(this.anchors,i),this._on(this.tabs,{keydown:"_tabKeydown"}),this._on(this.panels,{keydown:"_panelKeydown"}),this._focusable(this.tabs),this._hoverable(this.tabs)},_setupHeightStyle:function(e){var i,s=this.element.parent();"fill"===e?(i=s.height(),i-=this.element.outerHeight()-this.element.height(),this.element.siblings(":visible").each(function(){var e=t(this),s=e.css("position");"absolute"!==s&&"fixed"!==s&&(i-=e.outerHeight(!0))}),this.element.children().not(this.panels).each(function(){i-=t(this).outerHeight(!0)}),this.panels.each(function(){t(this).height(Math.max(0,i-t(this).innerHeight()+t(this).height()))}).css("overflow","auto")):"auto"===e&&(i=0,this.panels.each(function(){i=Math.max(i,t(this).height("").height())}).height(i))},_eventHandler:function(e){var i=this.options,s=this.active,n=t(e.currentTarget),o=n.closest("li"),a=o[0]===s[0],r=a&&i.collapsible,h=r?t():this._getPanelForTab(o),l=s.length?this._getPanelForTab(s):t(),c={oldTab:s,oldPanel:l,newTab:r?t():o,newPanel:h};e.preventDefault(),o.hasClass("ui-state-disabled")||o.hasClass("ui-tabs-loading")||this.running||a&&!i.collapsible||this._trigger("beforeActivate",e,c)===!1||(i.active=r?!1:this.tabs.index(o),this.active=a?t():o,this.xhr&&this.xhr.abort(),l.length||h.length||t.error("jQuery UI Tabs: Mismatching fragment identifier."),h.length&&this.load(this.tabs.index(o),e),this._toggle(e,c))},_toggle:function(e,i){function s(){o.running=!1,o._trigger("activate",e,i)}function n(){o._addClass(i.newTab.closest("li"),"ui-tabs-active","ui-state-active"),a.length&&o.options.show?o._show(a,o.options.show,s):(a.show(),s())}var o=this,a=i.newPanel,r=i.oldPanel;this.running=!0,r.length&&this.options.hide?this._hide(r,this.options.hide,function(){o._removeClass(i.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),n()}):(this._removeClass(i.oldTab.closest("li"),"ui-tabs-active","ui-state-active"),r.hide(),n()),r.attr("aria-hidden","true"),i.oldTab.attr({"aria-selected":"false","aria-expanded":"false"}),a.length&&r.length?i.oldTab.attr("tabIndex",-1):a.length&&this.tabs.filter(function(){return 0===t(this).attr("tabIndex")}).attr("tabIndex",-1),a.attr("aria-hidden","false"),i.newTab.attr({"aria-selected":"true","aria-expanded":"true",tabIndex:0})},_activate:function(e){var i,s=this._findActive(e);s[0]!==this.active[0]&&(s.length||(s=this.active),i=s.find(".ui-tabs-anchor")[0],this._eventHandler({target:i,currentTarget:i,preventDefault:t.noop}))},_findActive:function(e){return e===!1?t():this.tabs.eq(e)},_getIndex:function(e){return"string"==typeof e&&(e=this.anchors.index(this.anchors.filter("[href$='"+t.ui.escapeSelector(e)+"']"))),e},_destroy:function(){this.xhr&&this.xhr.abort(),this.tablist.removeAttr("role").off(this.eventNamespace),this.anchors.removeAttr("role tabIndex").removeUniqueId(),this.tabs.add(this.panels).each(function(){t.data(this,"ui-tabs-destroy")?t(this).remove():t(this).removeAttr("role tabIndex aria-live aria-busy aria-selected aria-labelledby aria-hidden aria-expanded")}),this.tabs.each(function(){var e=t(this),i=e.data("ui-tabs-aria-controls");i?e.attr("aria-controls",i).removeData("ui-tabs-aria-controls"):e.removeAttr("aria-controls")}),this.panels.show(),"content"!==this.options.heightStyle&&this.panels.css("height","")},enable:function(e){var i=this.options.disabled;i!==!1&&(void 0===e?i=!1:(e=this._getIndex(e),i=t.isArray(i)?t.map(i,function(t){return t!==e?t:null}):t.map(this.tabs,function(t,i){return i!==e?i:null})),this._setOptionDisabled(i))},disable:function(e){var i=this.options.disabled;if(i!==!0){if(void 0===e)i=!0;else{if(e=this._getIndex(e),-1!==t.inArray(e,i))return;i=t.isArray(i)?t.merge([e],i).sort():[e]}this._setOptionDisabled(i)}},load:function(e,i){e=this._getIndex(e);var s=this,n=this.tabs.eq(e),o=n.find(".ui-tabs-anchor"),a=this._getPanelForTab(n),r={tab:n,panel:a},h=function(t,e){"abort"===e&&s.panels.stop(!1,!0),s._removeClass(n,"ui-tabs-loading"),a.removeAttr("aria-busy"),t===s.xhr&&delete s.xhr};this._isLocal(o[0])||(this.xhr=t.ajax(this._ajaxSettings(o,i,r)),this.xhr&&"canceled"!==this.xhr.statusText&&(this._addClass(n,"ui-tabs-loading"),a.attr("aria-busy","true"),this.xhr.done(function(t,e,n){setTimeout(function(){a.html(t),s._trigger("load",i,r),h(n,e)},1)}).fail(function(t,e){setTimeout(function(){h(t,e)},1)})))},_ajaxSettings:function(e,i,s){var n=this;return{url:e.attr("href").replace(/#.*$/,""),beforeSend:function(e,o){return n._trigger("beforeLoad",i,t.extend({jqXHR:e,ajaxSettings:o},s))}}},_getPanelForTab:function(e){var i=t(e).attr("aria-controls");return this.element.find(this._sanitizeSelector("#"+i))}}),t.uiBackCompat!==!1&&t.widget("ui.tabs",t.ui.tabs,{_processTabs:function(){this._superApply(arguments),this._addClass(this.tabs,"ui-tab")}}),t.ui.tabs,t.widget("ui.tooltip",{version:"1.12.1",options:{classes:{"ui-tooltip":"ui-corner-all ui-widget-shadow"},content:function(){var e=t(this).attr("title")||"";return t("").text(e).html()},hide:!0,items:"[title]:not([disabled])",position:{my:"left top+15",at:"left bottom",collision:"flipfit flip"},show:!0,track:!1,close:null,open:null},_addDescribedBy:function(e,i){var s=(e.attr("aria-describedby")||"").split(/\s+/);s.push(i),e.data("ui-tooltip-id",i).attr("aria-describedby",t.trim(s.join(" ")))},_removeDescribedBy:function(e){var i=e.data("ui-tooltip-id"),s=(e.attr("aria-describedby")||"").split(/\s+/),n=t.inArray(i,s);-1!==n&&s.splice(n,1),e.removeData("ui-tooltip-id"),s=t.trim(s.join(" ")),s?e.attr("aria-describedby",s):e.removeAttr("aria-describedby")},_create:function(){this._on({mouseover:"open",focusin:"open"}),this.tooltips={},this.parents={},this.liveRegion=t("
    ").attr({role:"log","aria-live":"assertive","aria-relevant":"additions"}).appendTo(this.document[0].body),this._addClass(this.liveRegion,null,"ui-helper-hidden-accessible"),this.disabledTitles=t([])},_setOption:function(e,i){var s=this;this._super(e,i),"content"===e&&t.each(this.tooltips,function(t,e){s._updateContent(e.element)})},_setOptionDisabled:function(t){this[t?"_disable":"_enable"]()},_disable:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur");n.target=n.currentTarget=s.element[0],e.close(n,!0)}),this.disabledTitles=this.disabledTitles.add(this.element.find(this.options.items).addBack().filter(function(){var e=t(this);return e.is("[title]")?e.data("ui-tooltip-title",e.attr("title")).removeAttr("title"):void 0}))},_enable:function(){this.disabledTitles.each(function(){var e=t(this);e.data("ui-tooltip-title")&&e.attr("title",e.data("ui-tooltip-title"))}),this.disabledTitles=t([])},open:function(e){var i=this,s=t(e?e.target:this.element).closest(this.options.items);s.length&&!s.data("ui-tooltip-id")&&(s.attr("title")&&s.data("ui-tooltip-title",s.attr("title")),s.data("ui-tooltip-open",!0),e&&"mouseover"===e.type&&s.parents().each(function(){var e,s=t(this);s.data("ui-tooltip-open")&&(e=t.Event("blur"),e.target=e.currentTarget=this,i.close(e,!0)),s.attr("title")&&(s.uniqueId(),i.parents[this.id]={element:this,title:s.attr("title")},s.attr("title",""))}),this._registerCloseHandlers(e,s),this._updateContent(s,e))},_updateContent:function(t,e){var i,s=this.options.content,n=this,o=e?e.type:null;return"string"==typeof s||s.nodeType||s.jquery?this._open(e,t,s):(i=s.call(t[0],function(i){n._delay(function(){t.data("ui-tooltip-open")&&(e&&(e.type=o),this._open(e,t,i))})}),i&&this._open(e,t,i),void 0)},_open:function(e,i,s){function n(t){l.of=t,a.is(":hidden")||a.position(l)}var o,a,r,h,l=t.extend({},this.options.position);if(s){if(o=this._find(i))return o.tooltip.find(".ui-tooltip-content").html(s),void 0;i.is("[title]")&&(e&&"mouseover"===e.type?i.attr("title",""):i.removeAttr("title")),o=this._tooltip(i),a=o.tooltip,this._addDescribedBy(i,a.attr("id")),a.find(".ui-tooltip-content").html(s),this.liveRegion.children().hide(),h=t("
    ").html(a.find(".ui-tooltip-content").html()),h.removeAttr("name").find("[name]").removeAttr("name"),h.removeAttr("id").find("[id]").removeAttr("id"),h.appendTo(this.liveRegion),this.options.track&&e&&/^mouse/.test(e.type)?(this._on(this.document,{mousemove:n}),n(e)):a.position(t.extend({of:i},this.options.position)),a.hide(),this._show(a,this.options.show),this.options.track&&this.options.show&&this.options.show.delay&&(r=this.delayedShow=setInterval(function(){a.is(":visible")&&(n(l.of),clearInterval(r))},t.fx.interval)),this._trigger("open",e,{tooltip:a})}},_registerCloseHandlers:function(e,i){var s={keyup:function(e){if(e.keyCode===t.ui.keyCode.ESCAPE){var s=t.Event(e);s.currentTarget=i[0],this.close(s,!0)}}};i[0]!==this.element[0]&&(s.remove=function(){this._removeTooltip(this._find(i).tooltip)}),e&&"mouseover"!==e.type||(s.mouseleave="close"),e&&"focusin"!==e.type||(s.focusout="close"),this._on(!0,i,s)},close:function(e){var i,s=this,n=t(e?e.currentTarget:this.element),o=this._find(n);return o?(i=o.tooltip,o.closing||(clearInterval(this.delayedShow),n.data("ui-tooltip-title")&&!n.attr("title")&&n.attr("title",n.data("ui-tooltip-title")),this._removeDescribedBy(n),o.hiding=!0,i.stop(!0),this._hide(i,this.options.hide,function(){s._removeTooltip(t(this))}),n.removeData("ui-tooltip-open"),this._off(n,"mouseleave focusout keyup"),n[0]!==this.element[0]&&this._off(n,"remove"),this._off(this.document,"mousemove"),e&&"mouseleave"===e.type&&t.each(this.parents,function(e,i){t(i.element).attr("title",i.title),delete s.parents[e]}),o.closing=!0,this._trigger("close",e,{tooltip:i}),o.hiding||(o.closing=!1)),void 0):(n.removeData("ui-tooltip-open"),void 0)},_tooltip:function(e){var i=t("
    ").attr("role","tooltip"),s=t("
    ").appendTo(i),n=i.uniqueId().attr("id");return this._addClass(s,"ui-tooltip-content"),this._addClass(i,"ui-tooltip","ui-widget ui-widget-content"),i.appendTo(this._appendTo(e)),this.tooltips[n]={element:e,tooltip:i}},_find:function(t){var e=t.data("ui-tooltip-id");return e?this.tooltips[e]:null},_removeTooltip:function(t){t.remove(),delete this.tooltips[t.attr("id")]},_appendTo:function(t){var e=t.closest(".ui-front, dialog");return e.length||(e=this.document[0].body),e},_destroy:function(){var e=this;t.each(this.tooltips,function(i,s){var n=t.Event("blur"),o=s.element;n.target=n.currentTarget=o[0],e.close(n,!0),t("#"+i).remove(),o.data("ui-tooltip-title")&&(o.attr("title")||o.attr("title",o.data("ui-tooltip-title")),o.removeData("ui-tooltip-title"))}),this.liveRegion.remove()}}),t.uiBackCompat!==!1&&t.widget("ui.tooltip",t.ui.tooltip,{options:{tooltipClass:null},_tooltip:function(){var t=this._superApply(arguments);return this.options.tooltipClass&&t.tooltip.addClass(this.options.tooltipClass),t}}),t.ui.tooltip}); \ No newline at end of file diff --git a/static/js/jquery.min.js b/static/js/jquery.min.js new file mode 100644 index 0000000..f6a6a99 --- /dev/null +++ b/static/js/jquery.min.js @@ -0,0 +1,4 @@ +/*! jQuery v3.1.0 | (c) jQuery Foundation | jquery.org/license */ +!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.1.0",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null!=a?a<0?this[a+this.length]:this[a]:f.call(this)},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"label"in b&&b.disabled===a||"form"in b&&b.disabled===a||"form"in b&&b.disabled===!1&&(b.isDisabled===a||b.isDisabled!==!a&&("label"in b||!ea(b))!==a)}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(_,aa),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=V.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(_,aa),$.test(j[0].type)&&qa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&sa(j),!a)return G.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||$.test(a)&&qa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext,B=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,C=/^.[^:#\[\.,]*$/;function D(a,b,c){if(r.isFunction(b))return r.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return r.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(C.test(b))return r.filter(b,a,c);b=r.filter(b,a)}return r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType})}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(D(this,a||[],!1))},not:function(a){return this.pushStack(D(this,a||[],!0))},is:function(a){return!!D(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var E,F=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,G=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||E,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:F.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),B.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};G.prototype=r.fn,E=r(d);var H=/^(?:parents|prev(?:Until|All))/,I={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function J(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return J(a,"nextSibling")},prev:function(a){return J(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return a.contentDocument||r.merge([],a.childNodes)}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(I[a]||r.uniqueSort(e),H.test(a)&&e.reverse()),this.pushStack(e)}});var K=/\S+/g;function L(a){var b={};return r.each(a.match(K)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?L(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function M(a){return a}function N(a){throw a}function O(a,b,c){var d;try{a&&r.isFunction(d=a.promise)?d.call(a).done(b).fail(c):a&&r.isFunction(d=a.then)?d.call(a,b,c):b.call(void 0,a)}catch(a){c.call(void 0,a)}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b=f&&(d!==N&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:M,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:M)),c[2][3].add(g(0,a,r.isFunction(d)?d:N))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(O(a,g.done(h(c)).resolve,g.reject),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)O(e[c],h(c),g.reject);return g.promise()}});var P=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&P.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var Q=r.Deferred();r.fn.ready=function(a){return Q.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,holdReady:function(a){a?r.readyWait++:r.ready(!0)},ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||Q.resolveWith(d,[r]))}}),r.ready.then=Q.then;function R(){d.removeEventListener("DOMContentLoaded",R),a.removeEventListener("load",R),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",R),a.addEventListener("load",R));var S=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)S(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0, +r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h1,null,!0)},removeData:function(a){return this.each(function(){W.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=V.get(a,b),c&&(!d||r.isArray(c)?d=V.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return V.get(a,c)||V.access(a,c,{empty:r.Callbacks("once memory").add(function(){V.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length\x20\t\r\n\f]+)/i,ja=/^$|\/(?:java|ecma)script/i,ka={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};ka.optgroup=ka.option,ka.tbody=ka.tfoot=ka.colgroup=ka.caption=ka.thead,ka.th=ka.td;function la(a,b){var c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&r.nodeName(a,b)?r.merge([a],c):c}function ma(a,b){for(var c=0,d=a.length;c-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=la(l.appendChild(f),"script"),j&&ma(g),c){k=0;while(f=g[k++])ja.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var pa=d.documentElement,qa=/^key/,ra=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,sa=/^([^.]*)(?:\.(.+)|)/;function ta(){return!0}function ua(){return!1}function va(){try{return d.activeElement}catch(a){}}function wa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)wa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=ua;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(pa,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(K)||[""],j=b.length;while(j--)h=sa.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=V.hasData(a)&&V.get(a);if(q&&(i=q.events)){b=(b||"").match(K)||[""],j=b.length;while(j--)if(h=sa.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&V.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(V.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c-1:r.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h\x20\t\r\n\f]*)[^>]*)\/>/gi,ya=/\s*$/g;function Ca(a,b){return r.nodeName(a,"table")&&r.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a:a}function Da(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ea(a){var b=Aa.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(V.hasData(a)&&(f=V.access(a),g=V.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c1&&"string"==typeof q&&!o.checkClone&&za.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(m&&(e=oa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(la(e,"script"),Da),i=h.length;l")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=la(h),f=la(a),d=0,e=f.length;d0&&ma(g,!i&&la(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(T(c)){if(b=c[V.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[V.expando]=void 0}c[W.expando]&&(c[W.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return S(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(la(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return S(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!ya.test(a)&&!ka[(ia.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c1)}});function Xa(a,b,c,d,e){return new Xa.prototype.init(a,b,c,d,e)}r.Tween=Xa,Xa.prototype={constructor:Xa,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=Xa.propHooks[this.prop];return a&&a.get?a.get(this):Xa.propHooks._default.get(this)},run:function(a){var b,c=Xa.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Xa.propHooks._default.set(this),this}},Xa.prototype.init.prototype=Xa.prototype,Xa.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},Xa.propHooks.scrollTop=Xa.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=Xa.prototype.init,r.fx.step={};var Ya,Za,$a=/^(?:toggle|show|hide)$/,_a=/queueHooks$/;function ab(){Za&&(a.requestAnimationFrame(ab),r.fx.tick())}function bb(){return a.setTimeout(function(){Ya=void 0}),Ya=r.now()}function cb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=aa[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function db(a,b,c){for(var d,e=(gb.tweeners[b]||[]).concat(gb.tweeners["*"]),f=0,g=e.length;f1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?hb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&r.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(K); +if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),hb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=ib[b]||r.find.attr;ib[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=ib[g],ib[g]=e,e=null!=c(a,b,d)?g:null,ib[g]=f),e}});var jb=/^(?:input|select|textarea|button)$/i,kb=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return S(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):jb.test(a.nodeName)||kb.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});var lb=/[\t\r\n\f]/g;function mb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,mb(this)))});if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=mb(c),d=1===c.nodeType&&(" "+e+" ").replace(lb," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=r.trim(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,mb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(K)||[];while(c=this[i++])if(e=mb(c),d=1===c.nodeType&&(" "+e+" ").replace(lb," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=r.trim(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,mb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(K)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=mb(this),b&&V.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":V.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+mb(c)+" ").replace(lb," ").indexOf(b)>-1)return!0;return!1}});var nb=/\r/g,ob=/[\x20\t\r\n\f]+/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":r.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(nb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:r.trim(r.text(a)).replace(ob," ")}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type,g=f?null:[],h=f?e+1:d.length,i=e<0?h:f?e:0;i-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(r.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var pb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!pb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,pb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(V.get(h,"events")||{})[b.type]&&V.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&T(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!T(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=V.access(d,b);e||d.addEventListener(a,c,!0),V.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=V.access(d,b)-1;e?V.access(d,b,e):(d.removeEventListener(a,c,!0),V.remove(d,b))}}});var qb=a.location,rb=r.now(),sb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var tb=/\[\]$/,ub=/\r?\n/g,vb=/^(?:submit|button|image|reset|file)$/i,wb=/^(?:input|select|textarea|keygen)/i;function xb(a,b,c,d){var e;if(r.isArray(b))r.each(b,function(b,e){c||tb.test(a)?d(a,e):xb(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)xb(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(r.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)xb(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&wb.test(this.nodeName)&&!vb.test(a)&&(this.checked||!ha.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:r.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(ub,"\r\n")}}):{name:b.name,value:c.replace(ub,"\r\n")}}).get()}});var yb=/%20/g,zb=/#.*$/,Ab=/([?&])_=[^&]*/,Bb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Cb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Db=/^(?:GET|HEAD)$/,Eb=/^\/\//,Fb={},Gb={},Hb="*/".concat("*"),Ib=d.createElement("a");Ib.href=qb.href;function Jb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(K)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Kb(a,b,c,d){var e={},f=a===Gb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Lb(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Mb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Nb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:qb.href,type:"GET",isLocal:Cb.test(qb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Hb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Lb(Lb(a,r.ajaxSettings),b):Lb(r.ajaxSettings,a)},ajaxPrefilter:Jb(Fb),ajaxTransport:Jb(Gb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Bb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||qb.href)+"").replace(Eb,qb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(K)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Ib.protocol+"//"+Ib.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Kb(Fb,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Db.test(o.type),f=o.url.replace(zb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(yb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(sb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Ab,""),n=(sb.test(f)?"&":"?")+"_="+rb++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Hb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Kb(Gb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Mb(o,y,d)),v=Nb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Ob={0:200,1223:204},Pb=r.ajaxSettings.xhr();o.cors=!!Pb&&"withCredentials"in Pb,o.ajax=Pb=!!Pb,r.ajaxTransport(function(b){var c,d;if(o.cors||Pb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Ob[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r(" + + + + + + +U2F Exploit Demo +
    +
    +
    +
    U2F Security Key Authentication
    + +
    + + +
    +
    +
    +
    +
    %C
    +
    + diff --git a/static/profile.html b/static/profile.html new file mode 100644 index 0000000..e88d997 --- /dev/null +++ b/static/profile.html @@ -0,0 +1,64 @@ + + + + + + + + + + + +U2F Exploit Demo +
    +
    +
    +
    + +
    +
    +

    vigrey

    + +
    +
    + +
    +
    +
    + +
    U2F Security Key Registration
    + +
    + + +
    +
    +
    +
    +
    + diff --git a/vendor/manifest b/vendor/manifest new file mode 100644 index 0000000..2c53f7d --- /dev/null +++ b/vendor/manifest @@ -0,0 +1,31 @@ +{ + "version": 0, + "dependencies": [ + { + "importpath": "github.com/gorilla/mux", + "repository": "https://github.com/gorilla/mux", + "revision": "4c1c3952b7d9d0a061a3fa7b36fd373ba0398ebc", + "branch": "master" + }, + { + "importpath": "github.com/tstranex/u2f", + "repository": "https://github.com/tstranex/u2f", + "revision": "c46b9c6b15141e1c75d096258e560996b68ef8cb", + "branch": "master" + }, + { + "importpath": "golang.org/x/crypto/bcrypt", + "repository": "https://go.googlesource.com/crypto", + "revision": "5a033cc77e57eca05bdb50522851d29e03569cbe", + "branch": "master", + "path": "/bcrypt" + }, + { + "importpath": "golang.org/x/crypto/blowfish", + "repository": "https://go.googlesource.com/crypto", + "revision": "5a033cc77e57eca05bdb50522851d29e03569cbe", + "branch": "master", + "path": "/blowfish" + } + ] +} diff --git a/vendor/src/github.com/gorilla/mux/LICENSE b/vendor/src/github.com/gorilla/mux/LICENSE new file mode 100644 index 0000000..0e5fb87 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) 2012 Rodrigo Moraes. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above +copyright notice, this list of conditions and the following disclaimer +in the documentation and/or other materials provided with the +distribution. + * Neither the name of Google Inc. nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/src/github.com/gorilla/mux/README.md b/vendor/src/github.com/gorilla/mux/README.md new file mode 100644 index 0000000..cdab878 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/README.md @@ -0,0 +1,340 @@ +gorilla/mux +=== +[![GoDoc](https://godoc.org/github.com/gorilla/mux?status.svg)](https://godoc.org/github.com/gorilla/mux) +[![Build Status](https://travis-ci.org/gorilla/mux.svg?branch=master)](https://travis-ci.org/gorilla/mux) +[![Sourcegraph](https://sourcegraph.com/github.com/gorilla/mux/-/badge.svg)](https://sourcegraph.com/github.com/gorilla/mux?badge) + +![Gorilla Logo](http://www.gorillatoolkit.org/static/images/gorilla-icon-64.png) + +http://www.gorillatoolkit.org/pkg/mux + +Package `gorilla/mux` implements a request router and dispatcher for matching incoming requests to +their respective handler. + +The name mux stands for "HTTP request multiplexer". Like the standard `http.ServeMux`, `mux.Router` matches incoming requests against a list of registered routes and calls a handler for the route that matches the URL or other conditions. The main features are: + +* It implements the `http.Handler` interface so it is compatible with the standard `http.ServeMux`. +* Requests can be matched based on URL host, path, path prefix, schemes, header and query values, HTTP methods or using custom matchers. +* URL hosts and paths can have variables with an optional regular expression. +* Registered URLs can be built, or "reversed", which helps maintaining references to resources. +* Routes can be used as subrouters: nested routes are only tested if the parent route matches. This is useful to define groups of routes that share common conditions like a host, a path prefix or other repeated attributes. As a bonus, this optimizes request matching. + +--- + +* [Install](#install) +* [Examples](#examples) +* [Matching Routes](#matching-routes) +* [Listing Routes](#listing-routes) +* [Static Files](#static-files) +* [Registered URLs](#registered-urls) +* [Full Example](#full-example) + +--- + +## Install + +With a [correctly configured](https://golang.org/doc/install#testing) Go toolchain: + +```sh +go get -u github.com/gorilla/mux +``` + +## Examples + +Let's start registering a couple of URL paths and handlers: + +```go +func main() { + r := mux.NewRouter() + r.HandleFunc("/", HomeHandler) + r.HandleFunc("/products", ProductsHandler) + r.HandleFunc("/articles", ArticlesHandler) + http.Handle("/", r) +} +``` + +Here we register three routes mapping URL paths to handlers. This is equivalent to how `http.HandleFunc()` works: if an incoming request URL matches one of the paths, the corresponding handler is called passing (`http.ResponseWriter`, `*http.Request`) as parameters. + +Paths can have variables. They are defined using the format `{name}` or `{name:pattern}`. If a regular expression pattern is not defined, the matched variable will be anything until the next slash. For example: + +```go +r := mux.NewRouter() +r.HandleFunc("/products/{key}", ProductHandler) +r.HandleFunc("/articles/{category}/", ArticlesCategoryHandler) +r.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler) +``` + +The names are used to create a map of route variables which can be retrieved calling `mux.Vars()`: + +```go +func ArticlesCategoryHandler(w http.ResponseWriter, r *http.Request) { + vars := mux.Vars(r) + w.WriteHeader(http.StatusOK) + fmt.Fprintf(w, "Category: %v\n", vars["category"]) +} +``` + +And this is all you need to know about the basic usage. More advanced options are explained below. + +### Matching Routes + +Routes can also be restricted to a domain or subdomain. Just define a host pattern to be matched. They can also have variables: + +```go +r := mux.NewRouter() +// Only matches if domain is "www.example.com". +r.Host("www.example.com") +// Matches a dynamic subdomain. +r.Host("{subdomain:[a-z]+}.domain.com") +``` + +There are several other matchers that can be added. To match path prefixes: + +```go +r.PathPrefix("/products/") +``` + +...or HTTP methods: + +```go +r.Methods("GET", "POST") +``` + +...or URL schemes: + +```go +r.Schemes("https") +``` + +...or header values: + +```go +r.Headers("X-Requested-With", "XMLHttpRequest") +``` + +...or query values: + +```go +r.Queries("key", "value") +``` + +...or to use a custom matcher function: + +```go +r.MatcherFunc(func(r *http.Request, rm *RouteMatch) bool { + return r.ProtoMajor == 0 +}) +``` + +...and finally, it is possible to combine several matchers in a single route: + +```go +r.HandleFunc("/products", ProductsHandler). + Host("www.example.com"). + Methods("GET"). + Schemes("http") +``` + +Setting the same matching conditions again and again can be boring, so we have a way to group several routes that share the same requirements. We call it "subrouting". + +For example, let's say we have several URLs that should only match when the host is `www.example.com`. Create a route for that host and get a "subrouter" from it: + +```go +r := mux.NewRouter() +s := r.Host("www.example.com").Subrouter() +``` + +Then register routes in the subrouter: + +```go +s.HandleFunc("/products/", ProductsHandler) +s.HandleFunc("/products/{key}", ProductHandler) +s.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler) +``` + +The three URL paths we registered above will only be tested if the domain is `www.example.com`, because the subrouter is tested first. This is not only convenient, but also optimizes request matching. You can create subrouters combining any attribute matchers accepted by a route. + +Subrouters can be used to create domain or path "namespaces": you define subrouters in a central place and then parts of the app can register its paths relatively to a given subrouter. + +There's one more thing about subroutes. When a subrouter has a path prefix, the inner routes use it as base for their paths: + +```go +r := mux.NewRouter() +s := r.PathPrefix("/products").Subrouter() +// "/products/" +s.HandleFunc("/", ProductsHandler) +// "/products/{key}/" +s.HandleFunc("/{key}/", ProductHandler) +// "/products/{key}/details" +s.HandleFunc("/{key}/details", ProductDetailsHandler) +``` + +### Listing Routes + +Routes on a mux can be listed using the Router.Walk method—useful for generating documentation: + +```go +package main + +import ( + "fmt" + "net/http" + + "github.com/gorilla/mux" +) + +func handler(w http.ResponseWriter, r *http.Request) { + return +} + +func main() { + r := mux.NewRouter() + r.HandleFunc("/", handler) + r.HandleFunc("/products", handler) + r.HandleFunc("/articles", handler) + r.HandleFunc("/articles/{id}", handler) + r.Walk(func(route *mux.Route, router *mux.Router, ancestors []*mux.Route) error { + t, err := route.GetPathTemplate() + if err != nil { + return err + } + fmt.Println(t) + return nil + }) + http.Handle("/", r) +} +``` + +### Static Files + +Note that the path provided to `PathPrefix()` represents a "wildcard": calling +`PathPrefix("/static/").Handler(...)` means that the handler will be passed any +request that matches "/static/*". This makes it easy to serve static files with mux: + +```go +func main() { + var dir string + + flag.StringVar(&dir, "dir", ".", "the directory to serve files from. Defaults to the current dir") + flag.Parse() + r := mux.NewRouter() + + // This will serve files under http://localhost:8000/static/ + r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir(dir)))) + + srv := &http.Server{ + Handler: r, + Addr: "127.0.0.1:8000", + // Good practice: enforce timeouts for servers you create! + WriteTimeout: 15 * time.Second, + ReadTimeout: 15 * time.Second, + } + + log.Fatal(srv.ListenAndServe()) +} +``` + +### Registered URLs + +Now let's see how to build registered URLs. + +Routes can be named. All routes that define a name can have their URLs built, or "reversed". We define a name calling `Name()` on a route. For example: + +```go +r := mux.NewRouter() +r.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler). + Name("article") +``` + +To build a URL, get the route and call the `URL()` method, passing a sequence of key/value pairs for the route variables. For the previous route, we would do: + +```go +url, err := r.Get("article").URL("category", "technology", "id", "42") +``` + +...and the result will be a `url.URL` with the following path: + +``` +"/articles/technology/42" +``` + +This also works for host variables: + +```go +r := mux.NewRouter() +r.Host("{subdomain}.domain.com"). + Path("/articles/{category}/{id:[0-9]+}"). + HandlerFunc(ArticleHandler). + Name("article") + +// url.String() will be "http://news.domain.com/articles/technology/42" +url, err := r.Get("article").URL("subdomain", "news", + "category", "technology", + "id", "42") +``` + +All variables defined in the route are required, and their values must conform to the corresponding patterns. These requirements guarantee that a generated URL will always match a registered route -- the only exception is for explicitly defined "build-only" routes which never match. + +Regex support also exists for matching Headers within a route. For example, we could do: + +```go +r.HeadersRegexp("Content-Type", "application/(text|json)") +``` + +...and the route will match both requests with a Content-Type of `application/json` as well as `application/text` + +There's also a way to build only the URL host or path for a route: use the methods `URLHost()` or `URLPath()` instead. For the previous route, we would do: + +```go +// "http://news.domain.com/" +host, err := r.Get("article").URLHost("subdomain", "news") + +// "/articles/technology/42" +path, err := r.Get("article").URLPath("category", "technology", "id", "42") +``` + +And if you use subrouters, host and path defined separately can be built as well: + +```go +r := mux.NewRouter() +s := r.Host("{subdomain}.domain.com").Subrouter() +s.Path("/articles/{category}/{id:[0-9]+}"). + HandlerFunc(ArticleHandler). + Name("article") + +// "http://news.domain.com/articles/technology/42" +url, err := r.Get("article").URL("subdomain", "news", + "category", "technology", + "id", "42") +``` + +## Full Example + +Here's a complete, runnable example of a small `mux` based server: + +```go +package main + +import ( + "net/http" + "log" + "github.com/gorilla/mux" +) + +func YourHandler(w http.ResponseWriter, r *http.Request) { + w.Write([]byte("Gorilla!\n")) +} + +func main() { + r := mux.NewRouter() + // Routes consist of a path and a handler function. + r.HandleFunc("/", YourHandler) + + // Bind to a port and pass our router in + log.Fatal(http.ListenAndServe(":8000", r)) +} +``` + +## License + +BSD licensed. See the LICENSE file for details. diff --git a/vendor/src/github.com/gorilla/mux/bench_test.go b/vendor/src/github.com/gorilla/mux/bench_test.go new file mode 100644 index 0000000..522156d --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/bench_test.go @@ -0,0 +1,49 @@ +// Copyright 2012 The Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mux + +import ( + "net/http" + "net/http/httptest" + "testing" +) + +func BenchmarkMux(b *testing.B) { + router := new(Router) + handler := func(w http.ResponseWriter, r *http.Request) {} + router.HandleFunc("/v1/{v1}", handler) + + request, _ := http.NewRequest("GET", "/v1/anything", nil) + for i := 0; i < b.N; i++ { + router.ServeHTTP(nil, request) + } +} + +func BenchmarkMuxAlternativeInRegexp(b *testing.B) { + router := new(Router) + handler := func(w http.ResponseWriter, r *http.Request) {} + router.HandleFunc("/v1/{v1:(?:a|b)}", handler) + + requestA, _ := http.NewRequest("GET", "/v1/a", nil) + requestB, _ := http.NewRequest("GET", "/v1/b", nil) + for i := 0; i < b.N; i++ { + router.ServeHTTP(nil, requestA) + router.ServeHTTP(nil, requestB) + } +} + +func BenchmarkManyPathVariables(b *testing.B) { + router := new(Router) + handler := func(w http.ResponseWriter, r *http.Request) {} + router.HandleFunc("/v1/{v1}/{v2}/{v3}/{v4}/{v5}", handler) + + matchingRequest, _ := http.NewRequest("GET", "/v1/1/2/3/4/5", nil) + notMatchingRequest, _ := http.NewRequest("GET", "/v1/1/2/3/4", nil) + recorder := httptest.NewRecorder() + for i := 0; i < b.N; i++ { + router.ServeHTTP(nil, matchingRequest) + router.ServeHTTP(recorder, notMatchingRequest) + } +} diff --git a/vendor/src/github.com/gorilla/mux/context_gorilla.go b/vendor/src/github.com/gorilla/mux/context_gorilla.go new file mode 100644 index 0000000..d7adaa8 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/context_gorilla.go @@ -0,0 +1,26 @@ +// +build !go1.7 + +package mux + +import ( + "net/http" + + "github.com/gorilla/context" +) + +func contextGet(r *http.Request, key interface{}) interface{} { + return context.Get(r, key) +} + +func contextSet(r *http.Request, key, val interface{}) *http.Request { + if val == nil { + return r + } + + context.Set(r, key, val) + return r +} + +func contextClear(r *http.Request) { + context.Clear(r) +} diff --git a/vendor/src/github.com/gorilla/mux/context_gorilla_test.go b/vendor/src/github.com/gorilla/mux/context_gorilla_test.go new file mode 100644 index 0000000..ffaf384 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/context_gorilla_test.go @@ -0,0 +1,40 @@ +// +build !go1.7 + +package mux + +import ( + "net/http" + "testing" + + "github.com/gorilla/context" +) + +// Tests that the context is cleared or not cleared properly depending on +// the configuration of the router +func TestKeepContext(t *testing.T) { + func1 := func(w http.ResponseWriter, r *http.Request) {} + + r := NewRouter() + r.HandleFunc("/", func1).Name("func1") + + req, _ := http.NewRequest("GET", "http://localhost/", nil) + context.Set(req, "t", 1) + + res := new(http.ResponseWriter) + r.ServeHTTP(*res, req) + + if _, ok := context.GetOk(req, "t"); ok { + t.Error("Context should have been cleared at end of request") + } + + r.KeepContext = true + + req, _ = http.NewRequest("GET", "http://localhost/", nil) + context.Set(req, "t", 1) + + r.ServeHTTP(*res, req) + if _, ok := context.GetOk(req, "t"); !ok { + t.Error("Context should NOT have been cleared at end of request") + } + +} diff --git a/vendor/src/github.com/gorilla/mux/context_native.go b/vendor/src/github.com/gorilla/mux/context_native.go new file mode 100644 index 0000000..209cbea --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/context_native.go @@ -0,0 +1,24 @@ +// +build go1.7 + +package mux + +import ( + "context" + "net/http" +) + +func contextGet(r *http.Request, key interface{}) interface{} { + return r.Context().Value(key) +} + +func contextSet(r *http.Request, key, val interface{}) *http.Request { + if val == nil { + return r + } + + return r.WithContext(context.WithValue(r.Context(), key, val)) +} + +func contextClear(r *http.Request) { + return +} diff --git a/vendor/src/github.com/gorilla/mux/context_native_test.go b/vendor/src/github.com/gorilla/mux/context_native_test.go new file mode 100644 index 0000000..c150edf --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/context_native_test.go @@ -0,0 +1,32 @@ +// +build go1.7 + +package mux + +import ( + "context" + "net/http" + "testing" + "time" +) + +func TestNativeContextMiddleware(t *testing.T) { + withTimeout := func(h http.Handler) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + ctx, cancel := context.WithTimeout(r.Context(), time.Minute) + defer cancel() + h.ServeHTTP(w, r.WithContext(ctx)) + }) + } + + r := NewRouter() + r.Handle("/path/{foo}", withTimeout(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + vars := Vars(r) + if vars["foo"] != "bar" { + t.Fatal("Expected foo var to be set") + } + }))) + + rec := NewRecorder() + req := newRequest("GET", "/path/bar") + r.ServeHTTP(rec, req) +} diff --git a/vendor/src/github.com/gorilla/mux/doc.go b/vendor/src/github.com/gorilla/mux/doc.go new file mode 100644 index 0000000..00daf4a --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/doc.go @@ -0,0 +1,240 @@ +// Copyright 2012 The Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +/* +Package mux implements a request router and dispatcher. + +The name mux stands for "HTTP request multiplexer". Like the standard +http.ServeMux, mux.Router matches incoming requests against a list of +registered routes and calls a handler for the route that matches the URL +or other conditions. The main features are: + + * Requests can be matched based on URL host, path, path prefix, schemes, + header and query values, HTTP methods or using custom matchers. + * URL hosts and paths can have variables with an optional regular + expression. + * Registered URLs can be built, or "reversed", which helps maintaining + references to resources. + * Routes can be used as subrouters: nested routes are only tested if the + parent route matches. This is useful to define groups of routes that + share common conditions like a host, a path prefix or other repeated + attributes. As a bonus, this optimizes request matching. + * It implements the http.Handler interface so it is compatible with the + standard http.ServeMux. + +Let's start registering a couple of URL paths and handlers: + + func main() { + r := mux.NewRouter() + r.HandleFunc("/", HomeHandler) + r.HandleFunc("/products", ProductsHandler) + r.HandleFunc("/articles", ArticlesHandler) + http.Handle("/", r) + } + +Here we register three routes mapping URL paths to handlers. This is +equivalent to how http.HandleFunc() works: if an incoming request URL matches +one of the paths, the corresponding handler is called passing +(http.ResponseWriter, *http.Request) as parameters. + +Paths can have variables. They are defined using the format {name} or +{name:pattern}. If a regular expression pattern is not defined, the matched +variable will be anything until the next slash. For example: + + r := mux.NewRouter() + r.HandleFunc("/products/{key}", ProductHandler) + r.HandleFunc("/articles/{category}/", ArticlesCategoryHandler) + r.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler) + +Groups can be used inside patterns, as long as they are non-capturing (?:re). For example: + + r.HandleFunc("/articles/{category}/{sort:(?:asc|desc|new)}", ArticlesCategoryHandler) + +The names are used to create a map of route variables which can be retrieved +calling mux.Vars(): + + vars := mux.Vars(request) + category := vars["category"] + +Note that if any capturing groups are present, mux will panic() during parsing. To prevent +this, convert any capturing groups to non-capturing, e.g. change "/{sort:(asc|desc)}" to +"/{sort:(?:asc|desc)}". This is a change from prior versions which behaved unpredictably +when capturing groups were present. + +And this is all you need to know about the basic usage. More advanced options +are explained below. + +Routes can also be restricted to a domain or subdomain. Just define a host +pattern to be matched. They can also have variables: + + r := mux.NewRouter() + // Only matches if domain is "www.example.com". + r.Host("www.example.com") + // Matches a dynamic subdomain. + r.Host("{subdomain:[a-z]+}.domain.com") + +There are several other matchers that can be added. To match path prefixes: + + r.PathPrefix("/products/") + +...or HTTP methods: + + r.Methods("GET", "POST") + +...or URL schemes: + + r.Schemes("https") + +...or header values: + + r.Headers("X-Requested-With", "XMLHttpRequest") + +...or query values: + + r.Queries("key", "value") + +...or to use a custom matcher function: + + r.MatcherFunc(func(r *http.Request, rm *RouteMatch) bool { + return r.ProtoMajor == 0 + }) + +...and finally, it is possible to combine several matchers in a single route: + + r.HandleFunc("/products", ProductsHandler). + Host("www.example.com"). + Methods("GET"). + Schemes("http") + +Setting the same matching conditions again and again can be boring, so we have +a way to group several routes that share the same requirements. +We call it "subrouting". + +For example, let's say we have several URLs that should only match when the +host is "www.example.com". Create a route for that host and get a "subrouter" +from it: + + r := mux.NewRouter() + s := r.Host("www.example.com").Subrouter() + +Then register routes in the subrouter: + + s.HandleFunc("/products/", ProductsHandler) + s.HandleFunc("/products/{key}", ProductHandler) + s.HandleFunc("/articles/{category}/{id:[0-9]+}"), ArticleHandler) + +The three URL paths we registered above will only be tested if the domain is +"www.example.com", because the subrouter is tested first. This is not +only convenient, but also optimizes request matching. You can create +subrouters combining any attribute matchers accepted by a route. + +Subrouters can be used to create domain or path "namespaces": you define +subrouters in a central place and then parts of the app can register its +paths relatively to a given subrouter. + +There's one more thing about subroutes. When a subrouter has a path prefix, +the inner routes use it as base for their paths: + + r := mux.NewRouter() + s := r.PathPrefix("/products").Subrouter() + // "/products/" + s.HandleFunc("/", ProductsHandler) + // "/products/{key}/" + s.HandleFunc("/{key}/", ProductHandler) + // "/products/{key}/details" + s.HandleFunc("/{key}/details", ProductDetailsHandler) + +Note that the path provided to PathPrefix() represents a "wildcard": calling +PathPrefix("/static/").Handler(...) means that the handler will be passed any +request that matches "/static/*". This makes it easy to serve static files with mux: + + func main() { + var dir string + + flag.StringVar(&dir, "dir", ".", "the directory to serve files from. Defaults to the current dir") + flag.Parse() + r := mux.NewRouter() + + // This will serve files under http://localhost:8000/static/ + r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir(dir)))) + + srv := &http.Server{ + Handler: r, + Addr: "127.0.0.1:8000", + // Good practice: enforce timeouts for servers you create! + WriteTimeout: 15 * time.Second, + ReadTimeout: 15 * time.Second, + } + + log.Fatal(srv.ListenAndServe()) + } + +Now let's see how to build registered URLs. + +Routes can be named. All routes that define a name can have their URLs built, +or "reversed". We define a name calling Name() on a route. For example: + + r := mux.NewRouter() + r.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler). + Name("article") + +To build a URL, get the route and call the URL() method, passing a sequence of +key/value pairs for the route variables. For the previous route, we would do: + + url, err := r.Get("article").URL("category", "technology", "id", "42") + +...and the result will be a url.URL with the following path: + + "/articles/technology/42" + +This also works for host variables: + + r := mux.NewRouter() + r.Host("{subdomain}.domain.com"). + Path("/articles/{category}/{id:[0-9]+}"). + HandlerFunc(ArticleHandler). + Name("article") + + // url.String() will be "http://news.domain.com/articles/technology/42" + url, err := r.Get("article").URL("subdomain", "news", + "category", "technology", + "id", "42") + +All variables defined in the route are required, and their values must +conform to the corresponding patterns. These requirements guarantee that a +generated URL will always match a registered route -- the only exception is +for explicitly defined "build-only" routes which never match. + +Regex support also exists for matching Headers within a route. For example, we could do: + + r.HeadersRegexp("Content-Type", "application/(text|json)") + +...and the route will match both requests with a Content-Type of `application/json` as well as +`application/text` + +There's also a way to build only the URL host or path for a route: +use the methods URLHost() or URLPath() instead. For the previous route, +we would do: + + // "http://news.domain.com/" + host, err := r.Get("article").URLHost("subdomain", "news") + + // "/articles/technology/42" + path, err := r.Get("article").URLPath("category", "technology", "id", "42") + +And if you use subrouters, host and path defined separately can be built +as well: + + r := mux.NewRouter() + s := r.Host("{subdomain}.domain.com").Subrouter() + s.Path("/articles/{category}/{id:[0-9]+}"). + HandlerFunc(ArticleHandler). + Name("article") + + // "http://news.domain.com/articles/technology/42" + url, err := r.Get("article").URL("subdomain", "news", + "category", "technology", + "id", "42") +*/ +package mux diff --git a/vendor/src/github.com/gorilla/mux/mux.go b/vendor/src/github.com/gorilla/mux/mux.go new file mode 100644 index 0000000..d66ec38 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/mux.go @@ -0,0 +1,542 @@ +// Copyright 2012 The Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mux + +import ( + "errors" + "fmt" + "net/http" + "path" + "regexp" + "strings" +) + +// NewRouter returns a new router instance. +func NewRouter() *Router { + return &Router{namedRoutes: make(map[string]*Route), KeepContext: false} +} + +// Router registers routes to be matched and dispatches a handler. +// +// It implements the http.Handler interface, so it can be registered to serve +// requests: +// +// var router = mux.NewRouter() +// +// func main() { +// http.Handle("/", router) +// } +// +// Or, for Google App Engine, register it in a init() function: +// +// func init() { +// http.Handle("/", router) +// } +// +// This will send all incoming requests to the router. +type Router struct { + // Configurable Handler to be used when no route matches. + NotFoundHandler http.Handler + // Parent route, if this is a subrouter. + parent parentRoute + // Routes to be matched, in order. + routes []*Route + // Routes by name for URL building. + namedRoutes map[string]*Route + // See Router.StrictSlash(). This defines the flag for new routes. + strictSlash bool + // See Router.SkipClean(). This defines the flag for new routes. + skipClean bool + // If true, do not clear the request context after handling the request. + // This has no effect when go1.7+ is used, since the context is stored + // on the request itself. + KeepContext bool + // see Router.UseEncodedPath(). This defines a flag for all routes. + useEncodedPath bool +} + +// Match matches registered routes against the request. +func (r *Router) Match(req *http.Request, match *RouteMatch) bool { + for _, route := range r.routes { + if route.Match(req, match) { + return true + } + } + + // Closest match for a router (includes sub-routers) + if r.NotFoundHandler != nil { + match.Handler = r.NotFoundHandler + return true + } + return false +} + +// ServeHTTP dispatches the handler registered in the matched route. +// +// When there is a match, the route variables can be retrieved calling +// mux.Vars(request). +func (r *Router) ServeHTTP(w http.ResponseWriter, req *http.Request) { + if !r.skipClean { + path := req.URL.Path + if r.useEncodedPath { + path = getPath(req) + } + // Clean path to canonical form and redirect. + if p := cleanPath(path); p != path { + + // Added 3 lines (Philip Schlump) - It was dropping the query string and #whatever from query. + // This matches with fix in go 1.2 r.c. 4 for same problem. Go Issue: + // http://code.google.com/p/go/issues/detail?id=5252 + url := *req.URL + url.Path = p + p = url.String() + + w.Header().Set("Location", p) + w.WriteHeader(http.StatusMovedPermanently) + return + } + } + var match RouteMatch + var handler http.Handler + if r.Match(req, &match) { + handler = match.Handler + req = setVars(req, match.Vars) + req = setCurrentRoute(req, match.Route) + } + if handler == nil { + handler = http.NotFoundHandler() + } + if !r.KeepContext { + defer contextClear(req) + } + handler.ServeHTTP(w, req) +} + +// Get returns a route registered with the given name. +func (r *Router) Get(name string) *Route { + return r.getNamedRoutes()[name] +} + +// GetRoute returns a route registered with the given name. This method +// was renamed to Get() and remains here for backwards compatibility. +func (r *Router) GetRoute(name string) *Route { + return r.getNamedRoutes()[name] +} + +// StrictSlash defines the trailing slash behavior for new routes. The initial +// value is false. +// +// When true, if the route path is "/path/", accessing "/path" will redirect +// to the former and vice versa. In other words, your application will always +// see the path as specified in the route. +// +// When false, if the route path is "/path", accessing "/path/" will not match +// this route and vice versa. +// +// Special case: when a route sets a path prefix using the PathPrefix() method, +// strict slash is ignored for that route because the redirect behavior can't +// be determined from a prefix alone. However, any subrouters created from that +// route inherit the original StrictSlash setting. +func (r *Router) StrictSlash(value bool) *Router { + r.strictSlash = value + return r +} + +// SkipClean defines the path cleaning behaviour for new routes. The initial +// value is false. Users should be careful about which routes are not cleaned +// +// When true, if the route path is "/path//to", it will remain with the double +// slash. This is helpful if you have a route like: /fetch/http://xkcd.com/534/ +// +// When false, the path will be cleaned, so /fetch/http://xkcd.com/534/ will +// become /fetch/http/xkcd.com/534 +func (r *Router) SkipClean(value bool) *Router { + r.skipClean = value + return r +} + +// UseEncodedPath tells the router to match the encoded original path +// to the routes. +// For eg. "/path/foo%2Fbar/to" will match the path "/path/{var}/to". +// This behavior has the drawback of needing to match routes against +// r.RequestURI instead of r.URL.Path. Any modifications (such as http.StripPrefix) +// to r.URL.Path will not affect routing when this flag is on and thus may +// induce unintended behavior. +// +// If not called, the router will match the unencoded path to the routes. +// For eg. "/path/foo%2Fbar/to" will match the path "/path/foo/bar/to" +func (r *Router) UseEncodedPath() *Router { + r.useEncodedPath = true + return r +} + +// ---------------------------------------------------------------------------- +// parentRoute +// ---------------------------------------------------------------------------- + +// getNamedRoutes returns the map where named routes are registered. +func (r *Router) getNamedRoutes() map[string]*Route { + if r.namedRoutes == nil { + if r.parent != nil { + r.namedRoutes = r.parent.getNamedRoutes() + } else { + r.namedRoutes = make(map[string]*Route) + } + } + return r.namedRoutes +} + +// getRegexpGroup returns regexp definitions from the parent route, if any. +func (r *Router) getRegexpGroup() *routeRegexpGroup { + if r.parent != nil { + return r.parent.getRegexpGroup() + } + return nil +} + +func (r *Router) buildVars(m map[string]string) map[string]string { + if r.parent != nil { + m = r.parent.buildVars(m) + } + return m +} + +// ---------------------------------------------------------------------------- +// Route factories +// ---------------------------------------------------------------------------- + +// NewRoute registers an empty route. +func (r *Router) NewRoute() *Route { + route := &Route{parent: r, strictSlash: r.strictSlash, skipClean: r.skipClean, useEncodedPath: r.useEncodedPath} + r.routes = append(r.routes, route) + return route +} + +// Handle registers a new route with a matcher for the URL path. +// See Route.Path() and Route.Handler(). +func (r *Router) Handle(path string, handler http.Handler) *Route { + return r.NewRoute().Path(path).Handler(handler) +} + +// HandleFunc registers a new route with a matcher for the URL path. +// See Route.Path() and Route.HandlerFunc(). +func (r *Router) HandleFunc(path string, f func(http.ResponseWriter, + *http.Request)) *Route { + return r.NewRoute().Path(path).HandlerFunc(f) +} + +// Headers registers a new route with a matcher for request header values. +// See Route.Headers(). +func (r *Router) Headers(pairs ...string) *Route { + return r.NewRoute().Headers(pairs...) +} + +// Host registers a new route with a matcher for the URL host. +// See Route.Host(). +func (r *Router) Host(tpl string) *Route { + return r.NewRoute().Host(tpl) +} + +// MatcherFunc registers a new route with a custom matcher function. +// See Route.MatcherFunc(). +func (r *Router) MatcherFunc(f MatcherFunc) *Route { + return r.NewRoute().MatcherFunc(f) +} + +// Methods registers a new route with a matcher for HTTP methods. +// See Route.Methods(). +func (r *Router) Methods(methods ...string) *Route { + return r.NewRoute().Methods(methods...) +} + +// Path registers a new route with a matcher for the URL path. +// See Route.Path(). +func (r *Router) Path(tpl string) *Route { + return r.NewRoute().Path(tpl) +} + +// PathPrefix registers a new route with a matcher for the URL path prefix. +// See Route.PathPrefix(). +func (r *Router) PathPrefix(tpl string) *Route { + return r.NewRoute().PathPrefix(tpl) +} + +// Queries registers a new route with a matcher for URL query values. +// See Route.Queries(). +func (r *Router) Queries(pairs ...string) *Route { + return r.NewRoute().Queries(pairs...) +} + +// Schemes registers a new route with a matcher for URL schemes. +// See Route.Schemes(). +func (r *Router) Schemes(schemes ...string) *Route { + return r.NewRoute().Schemes(schemes...) +} + +// BuildVarsFunc registers a new route with a custom function for modifying +// route variables before building a URL. +func (r *Router) BuildVarsFunc(f BuildVarsFunc) *Route { + return r.NewRoute().BuildVarsFunc(f) +} + +// Walk walks the router and all its sub-routers, calling walkFn for each route +// in the tree. The routes are walked in the order they were added. Sub-routers +// are explored depth-first. +func (r *Router) Walk(walkFn WalkFunc) error { + return r.walk(walkFn, []*Route{}) +} + +// SkipRouter is used as a return value from WalkFuncs to indicate that the +// router that walk is about to descend down to should be skipped. +var SkipRouter = errors.New("skip this router") + +// WalkFunc is the type of the function called for each route visited by Walk. +// At every invocation, it is given the current route, and the current router, +// and a list of ancestor routes that lead to the current route. +type WalkFunc func(route *Route, router *Router, ancestors []*Route) error + +func (r *Router) walk(walkFn WalkFunc, ancestors []*Route) error { + for _, t := range r.routes { + if t.regexp == nil || t.regexp.path == nil || t.regexp.path.template == "" { + continue + } + + err := walkFn(t, r, ancestors) + if err == SkipRouter { + continue + } + if err != nil { + return err + } + for _, sr := range t.matchers { + if h, ok := sr.(*Router); ok { + err := h.walk(walkFn, ancestors) + if err != nil { + return err + } + } + } + if h, ok := t.handler.(*Router); ok { + ancestors = append(ancestors, t) + err := h.walk(walkFn, ancestors) + if err != nil { + return err + } + ancestors = ancestors[:len(ancestors)-1] + } + } + return nil +} + +// ---------------------------------------------------------------------------- +// Context +// ---------------------------------------------------------------------------- + +// RouteMatch stores information about a matched route. +type RouteMatch struct { + Route *Route + Handler http.Handler + Vars map[string]string +} + +type contextKey int + +const ( + varsKey contextKey = iota + routeKey +) + +// Vars returns the route variables for the current request, if any. +func Vars(r *http.Request) map[string]string { + if rv := contextGet(r, varsKey); rv != nil { + return rv.(map[string]string) + } + return nil +} + +// CurrentRoute returns the matched route for the current request, if any. +// This only works when called inside the handler of the matched route +// because the matched route is stored in the request context which is cleared +// after the handler returns, unless the KeepContext option is set on the +// Router. +func CurrentRoute(r *http.Request) *Route { + if rv := contextGet(r, routeKey); rv != nil { + return rv.(*Route) + } + return nil +} + +func setVars(r *http.Request, val interface{}) *http.Request { + return contextSet(r, varsKey, val) +} + +func setCurrentRoute(r *http.Request, val interface{}) *http.Request { + return contextSet(r, routeKey, val) +} + +// ---------------------------------------------------------------------------- +// Helpers +// ---------------------------------------------------------------------------- + +// getPath returns the escaped path if possible; doing what URL.EscapedPath() +// which was added in go1.5 does +func getPath(req *http.Request) string { + if req.RequestURI != "" { + // Extract the path from RequestURI (which is escaped unlike URL.Path) + // as detailed here as detailed in https://golang.org/pkg/net/url/#URL + // for < 1.5 server side workaround + // http://localhost/path/here?v=1 -> /path/here + path := req.RequestURI + path = strings.TrimPrefix(path, req.URL.Scheme+`://`) + path = strings.TrimPrefix(path, req.URL.Host) + if i := strings.LastIndex(path, "?"); i > -1 { + path = path[:i] + } + if i := strings.LastIndex(path, "#"); i > -1 { + path = path[:i] + } + return path + } + return req.URL.Path +} + +// cleanPath returns the canonical path for p, eliminating . and .. elements. +// Borrowed from the net/http package. +func cleanPath(p string) string { + if p == "" { + return "/" + } + if p[0] != '/' { + p = "/" + p + } + np := path.Clean(p) + // path.Clean removes trailing slash except for root; + // put the trailing slash back if necessary. + if p[len(p)-1] == '/' && np != "/" { + np += "/" + } + + return np +} + +// uniqueVars returns an error if two slices contain duplicated strings. +func uniqueVars(s1, s2 []string) error { + for _, v1 := range s1 { + for _, v2 := range s2 { + if v1 == v2 { + return fmt.Errorf("mux: duplicated route variable %q", v2) + } + } + } + return nil +} + +// checkPairs returns the count of strings passed in, and an error if +// the count is not an even number. +func checkPairs(pairs ...string) (int, error) { + length := len(pairs) + if length%2 != 0 { + return length, fmt.Errorf( + "mux: number of parameters must be multiple of 2, got %v", pairs) + } + return length, nil +} + +// mapFromPairsToString converts variadic string parameters to a +// string to string map. +func mapFromPairsToString(pairs ...string) (map[string]string, error) { + length, err := checkPairs(pairs...) + if err != nil { + return nil, err + } + m := make(map[string]string, length/2) + for i := 0; i < length; i += 2 { + m[pairs[i]] = pairs[i+1] + } + return m, nil +} + +// mapFromPairsToRegex converts variadic string paramers to a +// string to regex map. +func mapFromPairsToRegex(pairs ...string) (map[string]*regexp.Regexp, error) { + length, err := checkPairs(pairs...) + if err != nil { + return nil, err + } + m := make(map[string]*regexp.Regexp, length/2) + for i := 0; i < length; i += 2 { + regex, err := regexp.Compile(pairs[i+1]) + if err != nil { + return nil, err + } + m[pairs[i]] = regex + } + return m, nil +} + +// matchInArray returns true if the given string value is in the array. +func matchInArray(arr []string, value string) bool { + for _, v := range arr { + if v == value { + return true + } + } + return false +} + +// matchMapWithString returns true if the given key/value pairs exist in a given map. +func matchMapWithString(toCheck map[string]string, toMatch map[string][]string, canonicalKey bool) bool { + for k, v := range toCheck { + // Check if key exists. + if canonicalKey { + k = http.CanonicalHeaderKey(k) + } + if values := toMatch[k]; values == nil { + return false + } else if v != "" { + // If value was defined as an empty string we only check that the + // key exists. Otherwise we also check for equality. + valueExists := false + for _, value := range values { + if v == value { + valueExists = true + break + } + } + if !valueExists { + return false + } + } + } + return true +} + +// matchMapWithRegex returns true if the given key/value pairs exist in a given map compiled against +// the given regex +func matchMapWithRegex(toCheck map[string]*regexp.Regexp, toMatch map[string][]string, canonicalKey bool) bool { + for k, v := range toCheck { + // Check if key exists. + if canonicalKey { + k = http.CanonicalHeaderKey(k) + } + if values := toMatch[k]; values == nil { + return false + } else if v != nil { + // If value was defined as an empty string we only check that the + // key exists. Otherwise we also check for equality. + valueExists := false + for _, value := range values { + if v.MatchString(value) { + valueExists = true + break + } + } + if !valueExists { + return false + } + } + } + return true +} diff --git a/vendor/src/github.com/gorilla/mux/mux_test.go b/vendor/src/github.com/gorilla/mux/mux_test.go new file mode 100644 index 0000000..1dec7ab --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/mux_test.go @@ -0,0 +1,1655 @@ +// Copyright 2012 The Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mux + +import ( + "bufio" + "bytes" + "errors" + "fmt" + "net/http" + "strings" + "testing" +) + +func (r *Route) GoString() string { + matchers := make([]string, len(r.matchers)) + for i, m := range r.matchers { + matchers[i] = fmt.Sprintf("%#v", m) + } + return fmt.Sprintf("&Route{matchers:[]matcher{%s}}", strings.Join(matchers, ", ")) +} + +func (r *routeRegexp) GoString() string { + return fmt.Sprintf("&routeRegexp{template: %q, matchHost: %t, matchQuery: %t, strictSlash: %t, regexp: regexp.MustCompile(%q), reverse: %q, varsN: %v, varsR: %v", r.template, r.matchHost, r.matchQuery, r.strictSlash, r.regexp.String(), r.reverse, r.varsN, r.varsR) +} + +type routeTest struct { + title string // title of the test + route *Route // the route being tested + request *http.Request // a request to test the route + vars map[string]string // the expected vars of the match + host string // the expected host of the match + path string // the expected path of the match + pathTemplate string // the expected path template to match + hostTemplate string // the expected host template to match + shouldMatch bool // whether the request is expected to match the route at all + shouldRedirect bool // whether the request should result in a redirect +} + +func TestHost(t *testing.T) { + // newRequestHost a new request with a method, url, and host header + newRequestHost := func(method, url, host string) *http.Request { + req, err := http.NewRequest(method, url, nil) + if err != nil { + panic(err) + } + req.Host = host + return req + } + + tests := []routeTest{ + { + title: "Host route match", + route: new(Route).Host("aaa.bbb.ccc"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{}, + host: "aaa.bbb.ccc", + path: "", + shouldMatch: true, + }, + { + title: "Host route, wrong host in request URL", + route: new(Route).Host("aaa.bbb.ccc"), + request: newRequest("GET", "http://aaa.222.ccc/111/222/333"), + vars: map[string]string{}, + host: "aaa.bbb.ccc", + path: "", + shouldMatch: false, + }, + { + title: "Host route with port, match", + route: new(Route).Host("aaa.bbb.ccc:1234"), + request: newRequest("GET", "http://aaa.bbb.ccc:1234/111/222/333"), + vars: map[string]string{}, + host: "aaa.bbb.ccc:1234", + path: "", + shouldMatch: true, + }, + { + title: "Host route with port, wrong port in request URL", + route: new(Route).Host("aaa.bbb.ccc:1234"), + request: newRequest("GET", "http://aaa.bbb.ccc:9999/111/222/333"), + vars: map[string]string{}, + host: "aaa.bbb.ccc:1234", + path: "", + shouldMatch: false, + }, + { + title: "Host route, match with host in request header", + route: new(Route).Host("aaa.bbb.ccc"), + request: newRequestHost("GET", "/111/222/333", "aaa.bbb.ccc"), + vars: map[string]string{}, + host: "aaa.bbb.ccc", + path: "", + shouldMatch: true, + }, + { + title: "Host route, wrong host in request header", + route: new(Route).Host("aaa.bbb.ccc"), + request: newRequestHost("GET", "/111/222/333", "aaa.222.ccc"), + vars: map[string]string{}, + host: "aaa.bbb.ccc", + path: "", + shouldMatch: false, + }, + // BUG {new(Route).Host("aaa.bbb.ccc:1234"), newRequestHost("GET", "/111/222/333", "aaa.bbb.ccc:1234"), map[string]string{}, "aaa.bbb.ccc:1234", "", true}, + { + title: "Host route with port, wrong host in request header", + route: new(Route).Host("aaa.bbb.ccc:1234"), + request: newRequestHost("GET", "/111/222/333", "aaa.bbb.ccc:9999"), + vars: map[string]string{}, + host: "aaa.bbb.ccc:1234", + path: "", + shouldMatch: false, + }, + { + title: "Host route with pattern, match", + route: new(Route).Host("aaa.{v1:[a-z]{3}}.ccc"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v1": "bbb"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `aaa.{v1:[a-z]{3}}.ccc`, + shouldMatch: true, + }, + { + title: "Host route with pattern, additional capturing group, match", + route: new(Route).Host("aaa.{v1:[a-z]{2}(?:b|c)}.ccc"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v1": "bbb"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `aaa.{v1:[a-z]{2}(?:b|c)}.ccc`, + shouldMatch: true, + }, + { + title: "Host route with pattern, wrong host in request URL", + route: new(Route).Host("aaa.{v1:[a-z]{3}}.ccc"), + request: newRequest("GET", "http://aaa.222.ccc/111/222/333"), + vars: map[string]string{"v1": "bbb"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `aaa.{v1:[a-z]{3}}.ccc`, + shouldMatch: false, + }, + { + title: "Host route with multiple patterns, match", + route: new(Route).Host("{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v1": "aaa", "v2": "bbb", "v3": "ccc"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}`, + shouldMatch: true, + }, + { + title: "Host route with multiple patterns, wrong host in request URL", + route: new(Route).Host("{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}"), + request: newRequest("GET", "http://aaa.222.ccc/111/222/333"), + vars: map[string]string{"v1": "aaa", "v2": "bbb", "v3": "ccc"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}`, + shouldMatch: false, + }, + { + title: "Host route with hyphenated name and pattern, match", + route: new(Route).Host("aaa.{v-1:[a-z]{3}}.ccc"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v-1": "bbb"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `aaa.{v-1:[a-z]{3}}.ccc`, + shouldMatch: true, + }, + { + title: "Host route with hyphenated name and pattern, additional capturing group, match", + route: new(Route).Host("aaa.{v-1:[a-z]{2}(?:b|c)}.ccc"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v-1": "bbb"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `aaa.{v-1:[a-z]{2}(?:b|c)}.ccc`, + shouldMatch: true, + }, + { + title: "Host route with multiple hyphenated names and patterns, match", + route: new(Route).Host("{v-1:[a-z]{3}}.{v-2:[a-z]{3}}.{v-3:[a-z]{3}}"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v-1": "aaa", "v-2": "bbb", "v-3": "ccc"}, + host: "aaa.bbb.ccc", + path: "", + hostTemplate: `{v-1:[a-z]{3}}.{v-2:[a-z]{3}}.{v-3:[a-z]{3}}`, + shouldMatch: true, + }, + { + title: "Path route with single pattern with pipe, match", + route: new(Route).Path("/{category:a|b/c}"), + request: newRequest("GET", "http://localhost/a"), + vars: map[string]string{"category": "a"}, + host: "", + path: "/a", + pathTemplate: `/{category:a|b/c}`, + shouldMatch: true, + }, + { + title: "Path route with single pattern with pipe, match", + route: new(Route).Path("/{category:a|b/c}"), + request: newRequest("GET", "http://localhost/b/c"), + vars: map[string]string{"category": "b/c"}, + host: "", + path: "/b/c", + pathTemplate: `/{category:a|b/c}`, + shouldMatch: true, + }, + { + title: "Path route with multiple patterns with pipe, match", + route: new(Route).Path("/{category:a|b/c}/{product}/{id:[0-9]+}"), + request: newRequest("GET", "http://localhost/a/product_name/1"), + vars: map[string]string{"category": "a", "product": "product_name", "id": "1"}, + host: "", + path: "/a/product_name/1", + pathTemplate: `/{category:a|b/c}/{product}/{id:[0-9]+}`, + shouldMatch: true, + }, + { + title: "Path route with multiple patterns with pipe, match", + route: new(Route).Path("/{category:a|b/c}/{product}/{id:[0-9]+}"), + request: newRequest("GET", "http://localhost/b/c/product_name/1"), + vars: map[string]string{"category": "b/c", "product": "product_name", "id": "1"}, + host: "", + path: "/b/c/product_name/1", + pathTemplate: `/{category:a|b/c}/{product}/{id:[0-9]+}`, + shouldMatch: true, + }, + } + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } +} + +func TestPath(t *testing.T) { + tests := []routeTest{ + { + title: "Path route, match", + route: new(Route).Path("/111/222/333"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{}, + host: "", + path: "/111/222/333", + shouldMatch: true, + }, + { + title: "Path route, match with trailing slash in request and path", + route: new(Route).Path("/111/"), + request: newRequest("GET", "http://localhost/111/"), + vars: map[string]string{}, + host: "", + path: "/111/", + shouldMatch: true, + }, + { + title: "Path route, do not match with trailing slash in path", + route: new(Route).Path("/111/"), + request: newRequest("GET", "http://localhost/111"), + vars: map[string]string{}, + host: "", + path: "/111", + pathTemplate: `/111/`, + shouldMatch: false, + }, + { + title: "Path route, do not match with trailing slash in request", + route: new(Route).Path("/111"), + request: newRequest("GET", "http://localhost/111/"), + vars: map[string]string{}, + host: "", + path: "/111/", + pathTemplate: `/111`, + shouldMatch: false, + }, + { + title: "Path route, match root with no host", + route: new(Route).Path("/"), + request: newRequest("GET", "/"), + vars: map[string]string{}, + host: "", + path: "/", + pathTemplate: `/`, + shouldMatch: true, + }, + { + title: "Path route, match root with no host, App Engine format", + route: new(Route).Path("/"), + request: func() *http.Request { + r := newRequest("GET", "http://localhost/") + r.RequestURI = "/" + return r + }(), + vars: map[string]string{}, + host: "", + path: "/", + pathTemplate: `/`, + shouldMatch: true, + }, + { + title: "Path route, wrong path in request in request URL", + route: new(Route).Path("/111/222/333"), + request: newRequest("GET", "http://localhost/1/2/3"), + vars: map[string]string{}, + host: "", + path: "/111/222/333", + shouldMatch: false, + }, + { + title: "Path route with pattern, match", + route: new(Route).Path("/111/{v1:[0-9]{3}}/333"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{"v1": "222"}, + host: "", + path: "/111/222/333", + pathTemplate: `/111/{v1:[0-9]{3}}/333`, + shouldMatch: true, + }, + { + title: "Path route with pattern, URL in request does not match", + route: new(Route).Path("/111/{v1:[0-9]{3}}/333"), + request: newRequest("GET", "http://localhost/111/aaa/333"), + vars: map[string]string{"v1": "222"}, + host: "", + path: "/111/222/333", + pathTemplate: `/111/{v1:[0-9]{3}}/333`, + shouldMatch: false, + }, + { + title: "Path route with multiple patterns, match", + route: new(Route).Path("/{v1:[0-9]{3}}/{v2:[0-9]{3}}/{v3:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{"v1": "111", "v2": "222", "v3": "333"}, + host: "", + path: "/111/222/333", + pathTemplate: `/{v1:[0-9]{3}}/{v2:[0-9]{3}}/{v3:[0-9]{3}}`, + shouldMatch: true, + }, + { + title: "Path route with multiple patterns, URL in request does not match", + route: new(Route).Path("/{v1:[0-9]{3}}/{v2:[0-9]{3}}/{v3:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/aaa/333"), + vars: map[string]string{"v1": "111", "v2": "222", "v3": "333"}, + host: "", + path: "/111/222/333", + pathTemplate: `/{v1:[0-9]{3}}/{v2:[0-9]{3}}/{v3:[0-9]{3}}`, + shouldMatch: false, + }, + { + title: "Path route with multiple patterns with pipe, match", + route: new(Route).Path("/{category:a|(?:b/c)}/{product}/{id:[0-9]+}"), + request: newRequest("GET", "http://localhost/a/product_name/1"), + vars: map[string]string{"category": "a", "product": "product_name", "id": "1"}, + host: "", + path: "/a/product_name/1", + pathTemplate: `/{category:a|(?:b/c)}/{product}/{id:[0-9]+}`, + shouldMatch: true, + }, + { + title: "Path route with hyphenated name and pattern, match", + route: new(Route).Path("/111/{v-1:[0-9]{3}}/333"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{"v-1": "222"}, + host: "", + path: "/111/222/333", + pathTemplate: `/111/{v-1:[0-9]{3}}/333`, + shouldMatch: true, + }, + { + title: "Path route with multiple hyphenated names and patterns, match", + route: new(Route).Path("/{v-1:[0-9]{3}}/{v-2:[0-9]{3}}/{v-3:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{"v-1": "111", "v-2": "222", "v-3": "333"}, + host: "", + path: "/111/222/333", + pathTemplate: `/{v-1:[0-9]{3}}/{v-2:[0-9]{3}}/{v-3:[0-9]{3}}`, + shouldMatch: true, + }, + { + title: "Path route with multiple hyphenated names and patterns with pipe, match", + route: new(Route).Path("/{product-category:a|(?:b/c)}/{product-name}/{product-id:[0-9]+}"), + request: newRequest("GET", "http://localhost/a/product_name/1"), + vars: map[string]string{"product-category": "a", "product-name": "product_name", "product-id": "1"}, + host: "", + path: "/a/product_name/1", + pathTemplate: `/{product-category:a|(?:b/c)}/{product-name}/{product-id:[0-9]+}`, + shouldMatch: true, + }, + { + title: "Path route with multiple hyphenated names and patterns with pipe and case insensitive, match", + route: new(Route).Path("/{type:(?i:daily|mini|variety)}-{date:\\d{4,4}-\\d{2,2}-\\d{2,2}}"), + request: newRequest("GET", "http://localhost/daily-2016-01-01"), + vars: map[string]string{"type": "daily", "date": "2016-01-01"}, + host: "", + path: "/daily-2016-01-01", + pathTemplate: `/{type:(?i:daily|mini|variety)}-{date:\d{4,4}-\d{2,2}-\d{2,2}}`, + shouldMatch: true, + }, + { + title: "Path route with empty match right after other match", + route: new(Route).Path(`/{v1:[0-9]*}{v2:[a-z]*}/{v3:[0-9]*}`), + request: newRequest("GET", "http://localhost/111/222"), + vars: map[string]string{"v1": "111", "v2": "", "v3": "222"}, + host: "", + path: "/111/222", + pathTemplate: `/{v1:[0-9]*}{v2:[a-z]*}/{v3:[0-9]*}`, + shouldMatch: true, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + testUseEscapedRoute(t, test) + } +} + +func TestPathPrefix(t *testing.T) { + tests := []routeTest{ + { + title: "PathPrefix route, match", + route: new(Route).PathPrefix("/111"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{}, + host: "", + path: "/111", + shouldMatch: true, + }, + { + title: "PathPrefix route, match substring", + route: new(Route).PathPrefix("/1"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{}, + host: "", + path: "/1", + shouldMatch: true, + }, + { + title: "PathPrefix route, URL prefix in request does not match", + route: new(Route).PathPrefix("/111"), + request: newRequest("GET", "http://localhost/1/2/3"), + vars: map[string]string{}, + host: "", + path: "/111", + shouldMatch: false, + }, + { + title: "PathPrefix route with pattern, match", + route: new(Route).PathPrefix("/111/{v1:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{"v1": "222"}, + host: "", + path: "/111/222", + pathTemplate: `/111/{v1:[0-9]{3}}`, + shouldMatch: true, + }, + { + title: "PathPrefix route with pattern, URL prefix in request does not match", + route: new(Route).PathPrefix("/111/{v1:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/aaa/333"), + vars: map[string]string{"v1": "222"}, + host: "", + path: "/111/222", + pathTemplate: `/111/{v1:[0-9]{3}}`, + shouldMatch: false, + }, + { + title: "PathPrefix route with multiple patterns, match", + route: new(Route).PathPrefix("/{v1:[0-9]{3}}/{v2:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/222/333"), + vars: map[string]string{"v1": "111", "v2": "222"}, + host: "", + path: "/111/222", + pathTemplate: `/{v1:[0-9]{3}}/{v2:[0-9]{3}}`, + shouldMatch: true, + }, + { + title: "PathPrefix route with multiple patterns, URL prefix in request does not match", + route: new(Route).PathPrefix("/{v1:[0-9]{3}}/{v2:[0-9]{3}}"), + request: newRequest("GET", "http://localhost/111/aaa/333"), + vars: map[string]string{"v1": "111", "v2": "222"}, + host: "", + path: "/111/222", + pathTemplate: `/{v1:[0-9]{3}}/{v2:[0-9]{3}}`, + shouldMatch: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + testUseEscapedRoute(t, test) + } +} + +func TestHostPath(t *testing.T) { + tests := []routeTest{ + { + title: "Host and Path route, match", + route: new(Route).Host("aaa.bbb.ccc").Path("/111/222/333"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{}, + host: "", + path: "", + pathTemplate: `/111/222/333`, + hostTemplate: `aaa.bbb.ccc`, + shouldMatch: true, + }, + { + title: "Host and Path route, wrong host in request URL", + route: new(Route).Host("aaa.bbb.ccc").Path("/111/222/333"), + request: newRequest("GET", "http://aaa.222.ccc/111/222/333"), + vars: map[string]string{}, + host: "", + path: "", + pathTemplate: `/111/222/333`, + hostTemplate: `aaa.bbb.ccc`, + shouldMatch: false, + }, + { + title: "Host and Path route with pattern, match", + route: new(Route).Host("aaa.{v1:[a-z]{3}}.ccc").Path("/111/{v2:[0-9]{3}}/333"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v1": "bbb", "v2": "222"}, + host: "aaa.bbb.ccc", + path: "/111/222/333", + pathTemplate: `/111/{v2:[0-9]{3}}/333`, + hostTemplate: `aaa.{v1:[a-z]{3}}.ccc`, + shouldMatch: true, + }, + { + title: "Host and Path route with pattern, URL in request does not match", + route: new(Route).Host("aaa.{v1:[a-z]{3}}.ccc").Path("/111/{v2:[0-9]{3}}/333"), + request: newRequest("GET", "http://aaa.222.ccc/111/222/333"), + vars: map[string]string{"v1": "bbb", "v2": "222"}, + host: "aaa.bbb.ccc", + path: "/111/222/333", + pathTemplate: `/111/{v2:[0-9]{3}}/333`, + hostTemplate: `aaa.{v1:[a-z]{3}}.ccc`, + shouldMatch: false, + }, + { + title: "Host and Path route with multiple patterns, match", + route: new(Route).Host("{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}").Path("/{v4:[0-9]{3}}/{v5:[0-9]{3}}/{v6:[0-9]{3}}"), + request: newRequest("GET", "http://aaa.bbb.ccc/111/222/333"), + vars: map[string]string{"v1": "aaa", "v2": "bbb", "v3": "ccc", "v4": "111", "v5": "222", "v6": "333"}, + host: "aaa.bbb.ccc", + path: "/111/222/333", + pathTemplate: `/{v4:[0-9]{3}}/{v5:[0-9]{3}}/{v6:[0-9]{3}}`, + hostTemplate: `{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}`, + shouldMatch: true, + }, + { + title: "Host and Path route with multiple patterns, URL in request does not match", + route: new(Route).Host("{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}").Path("/{v4:[0-9]{3}}/{v5:[0-9]{3}}/{v6:[0-9]{3}}"), + request: newRequest("GET", "http://aaa.222.ccc/111/222/333"), + vars: map[string]string{"v1": "aaa", "v2": "bbb", "v3": "ccc", "v4": "111", "v5": "222", "v6": "333"}, + host: "aaa.bbb.ccc", + path: "/111/222/333", + pathTemplate: `/{v4:[0-9]{3}}/{v5:[0-9]{3}}/{v6:[0-9]{3}}`, + hostTemplate: `{v1:[a-z]{3}}.{v2:[a-z]{3}}.{v3:[a-z]{3}}`, + shouldMatch: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + testUseEscapedRoute(t, test) + } +} + +func TestHeaders(t *testing.T) { + // newRequestHeaders creates a new request with a method, url, and headers + newRequestHeaders := func(method, url string, headers map[string]string) *http.Request { + req, err := http.NewRequest(method, url, nil) + if err != nil { + panic(err) + } + for k, v := range headers { + req.Header.Add(k, v) + } + return req + } + + tests := []routeTest{ + { + title: "Headers route, match", + route: new(Route).Headers("foo", "bar", "baz", "ding"), + request: newRequestHeaders("GET", "http://localhost", map[string]string{"foo": "bar", "baz": "ding"}), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Headers route, bad header values", + route: new(Route).Headers("foo", "bar", "baz", "ding"), + request: newRequestHeaders("GET", "http://localhost", map[string]string{"foo": "bar", "baz": "dong"}), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Headers route, regex header values to match", + route: new(Route).Headers("foo", "ba[zr]"), + request: newRequestHeaders("GET", "http://localhost", map[string]string{"foo": "bar"}), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Headers route, regex header values to match", + route: new(Route).HeadersRegexp("foo", "ba[zr]"), + request: newRequestHeaders("GET", "http://localhost", map[string]string{"foo": "baz"}), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } + +} + +func TestMethods(t *testing.T) { + tests := []routeTest{ + { + title: "Methods route, match GET", + route: new(Route).Methods("GET", "POST"), + request: newRequest("GET", "http://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Methods route, match POST", + route: new(Route).Methods("GET", "POST"), + request: newRequest("POST", "http://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Methods route, bad method", + route: new(Route).Methods("GET", "POST"), + request: newRequest("PUT", "http://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } +} + +func TestQueries(t *testing.T) { + tests := []routeTest{ + { + title: "Queries route, match", + route: new(Route).Queries("foo", "bar", "baz", "ding"), + request: newRequest("GET", "http://localhost?foo=bar&baz=ding"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route, match with a query string", + route: new(Route).Host("www.example.com").Path("/api").Queries("foo", "bar", "baz", "ding"), + request: newRequest("GET", "http://www.example.com/api?foo=bar&baz=ding"), + vars: map[string]string{}, + host: "", + path: "", + pathTemplate: `/api`, + hostTemplate: `www.example.com`, + shouldMatch: true, + }, + { + title: "Queries route, match with a query string out of order", + route: new(Route).Host("www.example.com").Path("/api").Queries("foo", "bar", "baz", "ding"), + request: newRequest("GET", "http://www.example.com/api?baz=ding&foo=bar"), + vars: map[string]string{}, + host: "", + path: "", + pathTemplate: `/api`, + hostTemplate: `www.example.com`, + shouldMatch: true, + }, + { + title: "Queries route, bad query", + route: new(Route).Queries("foo", "bar", "baz", "ding"), + request: newRequest("GET", "http://localhost?foo=bar&baz=dong"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with pattern, match", + route: new(Route).Queries("foo", "{v1}"), + request: newRequest("GET", "http://localhost?foo=bar"), + vars: map[string]string{"v1": "bar"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with multiple patterns, match", + route: new(Route).Queries("foo", "{v1}", "baz", "{v2}"), + request: newRequest("GET", "http://localhost?foo=bar&baz=ding"), + vars: map[string]string{"v1": "bar", "v2": "ding"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with regexp pattern, match", + route: new(Route).Queries("foo", "{v1:[0-9]+}"), + request: newRequest("GET", "http://localhost?foo=10"), + vars: map[string]string{"v1": "10"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with regexp pattern, regexp does not match", + route: new(Route).Queries("foo", "{v1:[0-9]+}"), + request: newRequest("GET", "http://localhost?foo=a"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with regexp pattern with quantifier, match", + route: new(Route).Queries("foo", "{v1:[0-9]{1}}"), + request: newRequest("GET", "http://localhost?foo=1"), + vars: map[string]string{"v1": "1"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with regexp pattern with quantifier, additional variable in query string, match", + route: new(Route).Queries("foo", "{v1:[0-9]{1}}"), + request: newRequest("GET", "http://localhost?bar=2&foo=1"), + vars: map[string]string{"v1": "1"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with regexp pattern with quantifier, regexp does not match", + route: new(Route).Queries("foo", "{v1:[0-9]{1}}"), + request: newRequest("GET", "http://localhost?foo=12"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with regexp pattern with quantifier, additional capturing group", + route: new(Route).Queries("foo", "{v1:[0-9]{1}(?:a|b)}"), + request: newRequest("GET", "http://localhost?foo=1a"), + vars: map[string]string{"v1": "1a"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with regexp pattern with quantifier, additional variable in query string, regexp does not match", + route: new(Route).Queries("foo", "{v1:[0-9]{1}}"), + request: newRequest("GET", "http://localhost?foo=12"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with hyphenated name, match", + route: new(Route).Queries("foo", "{v-1}"), + request: newRequest("GET", "http://localhost?foo=bar"), + vars: map[string]string{"v-1": "bar"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with multiple hyphenated names, match", + route: new(Route).Queries("foo", "{v-1}", "baz", "{v-2}"), + request: newRequest("GET", "http://localhost?foo=bar&baz=ding"), + vars: map[string]string{"v-1": "bar", "v-2": "ding"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with hyphenate name and pattern, match", + route: new(Route).Queries("foo", "{v-1:[0-9]+}"), + request: newRequest("GET", "http://localhost?foo=10"), + vars: map[string]string{"v-1": "10"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with hyphenated name and pattern with quantifier, additional capturing group", + route: new(Route).Queries("foo", "{v-1:[0-9]{1}(?:a|b)}"), + request: newRequest("GET", "http://localhost?foo=1a"), + vars: map[string]string{"v-1": "1a"}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with empty value, should match", + route: new(Route).Queries("foo", ""), + request: newRequest("GET", "http://localhost?foo=bar"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with empty value and no parameter in request, should not match", + route: new(Route).Queries("foo", ""), + request: newRequest("GET", "http://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with empty value and empty parameter in request, should match", + route: new(Route).Queries("foo", ""), + request: newRequest("GET", "http://localhost?foo="), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route with overlapping value, should not match", + route: new(Route).Queries("foo", "bar"), + request: newRequest("GET", "http://localhost?foo=barfoo"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with no parameter in request, should not match", + route: new(Route).Queries("foo", "{bar}"), + request: newRequest("GET", "http://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + { + title: "Queries route with empty parameter in request, should match", + route: new(Route).Queries("foo", "{bar}"), + request: newRequest("GET", "http://localhost?foo="), + vars: map[string]string{"foo": ""}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Queries route, bad submatch", + route: new(Route).Queries("foo", "bar", "baz", "ding"), + request: newRequest("GET", "http://localhost?fffoo=bar&baz=dingggg"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + testUseEscapedRoute(t, test) + } +} + +func TestSchemes(t *testing.T) { + tests := []routeTest{ + // Schemes + { + title: "Schemes route, match https", + route: new(Route).Schemes("https", "ftp"), + request: newRequest("GET", "https://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Schemes route, match ftp", + route: new(Route).Schemes("https", "ftp"), + request: newRequest("GET", "ftp://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "Schemes route, bad scheme", + route: new(Route).Schemes("https", "ftp"), + request: newRequest("GET", "http://localhost"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + } + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } +} + +func TestMatcherFunc(t *testing.T) { + m := func(r *http.Request, m *RouteMatch) bool { + if r.URL.Host == "aaa.bbb.ccc" { + return true + } + return false + } + + tests := []routeTest{ + { + title: "MatchFunc route, match", + route: new(Route).MatcherFunc(m), + request: newRequest("GET", "http://aaa.bbb.ccc"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: true, + }, + { + title: "MatchFunc route, non-match", + route: new(Route).MatcherFunc(m), + request: newRequest("GET", "http://aaa.222.ccc"), + vars: map[string]string{}, + host: "", + path: "", + shouldMatch: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } +} + +func TestBuildVarsFunc(t *testing.T) { + tests := []routeTest{ + { + title: "BuildVarsFunc set on route", + route: new(Route).Path(`/111/{v1:\d}{v2:.*}`).BuildVarsFunc(func(vars map[string]string) map[string]string { + vars["v1"] = "3" + vars["v2"] = "a" + return vars + }), + request: newRequest("GET", "http://localhost/111/2"), + path: "/111/3a", + pathTemplate: `/111/{v1:\d}{v2:.*}`, + shouldMatch: true, + }, + { + title: "BuildVarsFunc set on route and parent route", + route: new(Route).PathPrefix(`/{v1:\d}`).BuildVarsFunc(func(vars map[string]string) map[string]string { + vars["v1"] = "2" + return vars + }).Subrouter().Path(`/{v2:\w}`).BuildVarsFunc(func(vars map[string]string) map[string]string { + vars["v2"] = "b" + return vars + }), + request: newRequest("GET", "http://localhost/1/a"), + path: "/2/b", + pathTemplate: `/{v1:\d}/{v2:\w}`, + shouldMatch: true, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } +} + +func TestSubRouter(t *testing.T) { + subrouter1 := new(Route).Host("{v1:[a-z]+}.google.com").Subrouter() + subrouter2 := new(Route).PathPrefix("/foo/{v1}").Subrouter() + subrouter3 := new(Route).PathPrefix("/foo").Subrouter() + subrouter4 := new(Route).PathPrefix("/foo/bar").Subrouter() + subrouter5 := new(Route).PathPrefix("/{category}").Subrouter() + + tests := []routeTest{ + { + route: subrouter1.Path("/{v2:[a-z]+}"), + request: newRequest("GET", "http://aaa.google.com/bbb"), + vars: map[string]string{"v1": "aaa", "v2": "bbb"}, + host: "aaa.google.com", + path: "/bbb", + pathTemplate: `/{v2:[a-z]+}`, + hostTemplate: `{v1:[a-z]+}.google.com`, + shouldMatch: true, + }, + { + route: subrouter1.Path("/{v2:[a-z]+}"), + request: newRequest("GET", "http://111.google.com/111"), + vars: map[string]string{"v1": "aaa", "v2": "bbb"}, + host: "aaa.google.com", + path: "/bbb", + pathTemplate: `/{v2:[a-z]+}`, + hostTemplate: `{v1:[a-z]+}.google.com`, + shouldMatch: false, + }, + { + route: subrouter2.Path("/baz/{v2}"), + request: newRequest("GET", "http://localhost/foo/bar/baz/ding"), + vars: map[string]string{"v1": "bar", "v2": "ding"}, + host: "", + path: "/foo/bar/baz/ding", + pathTemplate: `/foo/{v1}/baz/{v2}`, + shouldMatch: true, + }, + { + route: subrouter2.Path("/baz/{v2}"), + request: newRequest("GET", "http://localhost/foo/bar"), + vars: map[string]string{"v1": "bar", "v2": "ding"}, + host: "", + path: "/foo/bar/baz/ding", + pathTemplate: `/foo/{v1}/baz/{v2}`, + shouldMatch: false, + }, + { + route: subrouter3.Path("/"), + request: newRequest("GET", "http://localhost/foo/"), + vars: map[string]string{}, + host: "", + path: "/foo/", + pathTemplate: `/foo/`, + shouldMatch: true, + }, + { + route: subrouter3.Path(""), + request: newRequest("GET", "http://localhost/foo"), + vars: map[string]string{}, + host: "", + path: "/foo", + pathTemplate: `/foo`, + shouldMatch: true, + }, + + { + route: subrouter4.Path("/"), + request: newRequest("GET", "http://localhost/foo/bar/"), + vars: map[string]string{}, + host: "", + path: "/foo/bar/", + pathTemplate: `/foo/bar/`, + shouldMatch: true, + }, + { + route: subrouter4.Path(""), + request: newRequest("GET", "http://localhost/foo/bar"), + vars: map[string]string{}, + host: "", + path: "/foo/bar", + pathTemplate: `/foo/bar`, + shouldMatch: true, + }, + { + route: subrouter5.Path("/"), + request: newRequest("GET", "http://localhost/baz/"), + vars: map[string]string{"category": "baz"}, + host: "", + path: "/baz/", + pathTemplate: `/{category}/`, + shouldMatch: true, + }, + { + route: subrouter5.Path(""), + request: newRequest("GET", "http://localhost/baz"), + vars: map[string]string{"category": "baz"}, + host: "", + path: "/baz", + pathTemplate: `/{category}`, + shouldMatch: true, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + testUseEscapedRoute(t, test) + } +} + +func TestNamedRoutes(t *testing.T) { + r1 := NewRouter() + r1.NewRoute().Name("a") + r1.NewRoute().Name("b") + r1.NewRoute().Name("c") + + r2 := r1.NewRoute().Subrouter() + r2.NewRoute().Name("d") + r2.NewRoute().Name("e") + r2.NewRoute().Name("f") + + r3 := r2.NewRoute().Subrouter() + r3.NewRoute().Name("g") + r3.NewRoute().Name("h") + r3.NewRoute().Name("i") + + if r1.namedRoutes == nil || len(r1.namedRoutes) != 9 { + t.Errorf("Expected 9 named routes, got %v", r1.namedRoutes) + } else if r1.Get("i") == nil { + t.Errorf("Subroute name not registered") + } +} + +func TestStrictSlash(t *testing.T) { + r := NewRouter() + r.StrictSlash(true) + + tests := []routeTest{ + { + title: "Redirect path without slash", + route: r.NewRoute().Path("/111/"), + request: newRequest("GET", "http://localhost/111"), + vars: map[string]string{}, + host: "", + path: "/111/", + shouldMatch: true, + shouldRedirect: true, + }, + { + title: "Do not redirect path with slash", + route: r.NewRoute().Path("/111/"), + request: newRequest("GET", "http://localhost/111/"), + vars: map[string]string{}, + host: "", + path: "/111/", + shouldMatch: true, + shouldRedirect: false, + }, + { + title: "Redirect path with slash", + route: r.NewRoute().Path("/111"), + request: newRequest("GET", "http://localhost/111/"), + vars: map[string]string{}, + host: "", + path: "/111", + shouldMatch: true, + shouldRedirect: true, + }, + { + title: "Do not redirect path without slash", + route: r.NewRoute().Path("/111"), + request: newRequest("GET", "http://localhost/111"), + vars: map[string]string{}, + host: "", + path: "/111", + shouldMatch: true, + shouldRedirect: false, + }, + { + title: "Propagate StrictSlash to subrouters", + route: r.NewRoute().PathPrefix("/static/").Subrouter().Path("/images/"), + request: newRequest("GET", "http://localhost/static/images"), + vars: map[string]string{}, + host: "", + path: "/static/images/", + shouldMatch: true, + shouldRedirect: true, + }, + { + title: "Ignore StrictSlash for path prefix", + route: r.NewRoute().PathPrefix("/static/"), + request: newRequest("GET", "http://localhost/static/logo.png"), + vars: map[string]string{}, + host: "", + path: "/static/", + shouldMatch: true, + shouldRedirect: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + testUseEscapedRoute(t, test) + } +} + +func TestUseEncodedPath(t *testing.T) { + r := NewRouter() + r.UseEncodedPath() + + tests := []routeTest{ + { + title: "Router with useEncodedPath, URL with encoded slash does match", + route: r.NewRoute().Path("/v1/{v1}/v2"), + request: newRequest("GET", "http://localhost/v1/1%2F2/v2"), + vars: map[string]string{"v1": "1%2F2"}, + host: "", + path: "/v1/1%2F2/v2", + pathTemplate: `/v1/{v1}/v2`, + shouldMatch: true, + }, + { + title: "Router with useEncodedPath, URL with encoded slash doesn't match", + route: r.NewRoute().Path("/v1/1/2/v2"), + request: newRequest("GET", "http://localhost/v1/1%2F2/v2"), + vars: map[string]string{"v1": "1%2F2"}, + host: "", + path: "/v1/1%2F2/v2", + pathTemplate: `/v1/1/2/v2`, + shouldMatch: false, + }, + } + + for _, test := range tests { + testRoute(t, test) + testTemplate(t, test) + } +} + +func TestWalkSingleDepth(t *testing.T) { + r0 := NewRouter() + r1 := NewRouter() + r2 := NewRouter() + + r0.Path("/g") + r0.Path("/o") + r0.Path("/d").Handler(r1) + r0.Path("/r").Handler(r2) + r0.Path("/a") + + r1.Path("/z") + r1.Path("/i") + r1.Path("/l") + r1.Path("/l") + + r2.Path("/i") + r2.Path("/l") + r2.Path("/l") + + paths := []string{"g", "o", "r", "i", "l", "l", "a"} + depths := []int{0, 0, 0, 1, 1, 1, 0} + i := 0 + err := r0.Walk(func(route *Route, router *Router, ancestors []*Route) error { + matcher := route.matchers[0].(*routeRegexp) + if matcher.template == "/d" { + return SkipRouter + } + if len(ancestors) != depths[i] { + t.Errorf(`Expected depth of %d at i = %d; got "%d"`, depths[i], i, len(ancestors)) + } + if matcher.template != "/"+paths[i] { + t.Errorf(`Expected "/%s" at i = %d; got "%s"`, paths[i], i, matcher.template) + } + i++ + return nil + }) + if err != nil { + panic(err) + } + if i != len(paths) { + t.Errorf("Expected %d routes, found %d", len(paths), i) + } +} + +func TestWalkNested(t *testing.T) { + router := NewRouter() + + g := router.Path("/g").Subrouter() + o := g.PathPrefix("/o").Subrouter() + r := o.PathPrefix("/r").Subrouter() + i := r.PathPrefix("/i").Subrouter() + l1 := i.PathPrefix("/l").Subrouter() + l2 := l1.PathPrefix("/l").Subrouter() + l2.Path("/a") + + paths := []string{"/g", "/g/o", "/g/o/r", "/g/o/r/i", "/g/o/r/i/l", "/g/o/r/i/l/l", "/g/o/r/i/l/l/a"} + idx := 0 + err := router.Walk(func(route *Route, router *Router, ancestors []*Route) error { + path := paths[idx] + tpl := route.regexp.path.template + if tpl != path { + t.Errorf(`Expected %s got %s`, path, tpl) + } + idx++ + return nil + }) + if err != nil { + panic(err) + } + if idx != len(paths) { + t.Errorf("Expected %d routes, found %d", len(paths), idx) + } +} + +func TestWalkErrorRoute(t *testing.T) { + router := NewRouter() + router.Path("/g") + expectedError := errors.New("error") + err := router.Walk(func(route *Route, router *Router, ancestors []*Route) error { + return expectedError + }) + if err != expectedError { + t.Errorf("Expected %v routes, found %v", expectedError, err) + } +} + +func TestWalkErrorMatcher(t *testing.T) { + router := NewRouter() + expectedError := router.Path("/g").Subrouter().Path("").GetError() + err := router.Walk(func(route *Route, router *Router, ancestors []*Route) error { + return route.GetError() + }) + if err != expectedError { + t.Errorf("Expected %v routes, found %v", expectedError, err) + } +} + +func TestWalkErrorHandler(t *testing.T) { + handler := NewRouter() + expectedError := handler.Path("/path").Subrouter().Path("").GetError() + router := NewRouter() + router.Path("/g").Handler(handler) + err := router.Walk(func(route *Route, router *Router, ancestors []*Route) error { + return route.GetError() + }) + if err != expectedError { + t.Errorf("Expected %v routes, found %v", expectedError, err) + } +} + +func TestSubrouterErrorHandling(t *testing.T) { + superRouterCalled := false + subRouterCalled := false + + router := NewRouter() + router.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + superRouterCalled = true + }) + subRouter := router.PathPrefix("/bign8").Subrouter() + subRouter.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + subRouterCalled = true + }) + + req, _ := http.NewRequest("GET", "http://localhost/bign8/was/here", nil) + router.ServeHTTP(NewRecorder(), req) + + if superRouterCalled { + t.Error("Super router 404 handler called when sub-router 404 handler is available.") + } + if !subRouterCalled { + t.Error("Sub-router 404 handler was not called.") + } +} + +// See: https://github.com/gorilla/mux/issues/200 +func TestPanicOnCapturingGroups(t *testing.T) { + defer func() { + if recover() == nil { + t.Errorf("(Test that capturing groups now fail fast) Expected panic, however test completed successfully.\n") + } + }() + NewRouter().NewRoute().Path("/{type:(promo|special)}/{promoId}.json") +} + +// ---------------------------------------------------------------------------- +// Helpers +// ---------------------------------------------------------------------------- + +func getRouteTemplate(route *Route) string { + host, err := route.GetHostTemplate() + if err != nil { + host = "none" + } + path, err := route.GetPathTemplate() + if err != nil { + path = "none" + } + return fmt.Sprintf("Host: %v, Path: %v", host, path) +} + +func testRoute(t *testing.T, test routeTest) { + request := test.request + route := test.route + vars := test.vars + shouldMatch := test.shouldMatch + host := test.host + path := test.path + url := test.host + test.path + shouldRedirect := test.shouldRedirect + + var match RouteMatch + ok := route.Match(request, &match) + if ok != shouldMatch { + msg := "Should match" + if !shouldMatch { + msg = "Should not match" + } + t.Errorf("(%v) %v:\nRoute: %#v\nRequest: %#v\nVars: %v\n", test.title, msg, route, request, vars) + return + } + if shouldMatch { + if test.vars != nil && !stringMapEqual(test.vars, match.Vars) { + t.Errorf("(%v) Vars not equal: expected %v, got %v", test.title, vars, match.Vars) + return + } + if host != "" { + u, _ := test.route.URLHost(mapToPairs(match.Vars)...) + if host != u.Host { + t.Errorf("(%v) URLHost not equal: expected %v, got %v -- %v", test.title, host, u.Host, getRouteTemplate(route)) + return + } + } + if path != "" { + u, _ := route.URLPath(mapToPairs(match.Vars)...) + if path != u.Path { + t.Errorf("(%v) URLPath not equal: expected %v, got %v -- %v", test.title, path, u.Path, getRouteTemplate(route)) + return + } + } + if url != "" { + u, _ := route.URL(mapToPairs(match.Vars)...) + if url != u.Host+u.Path { + t.Errorf("(%v) URL not equal: expected %v, got %v -- %v", test.title, url, u.Host+u.Path, getRouteTemplate(route)) + return + } + } + if shouldRedirect && match.Handler == nil { + t.Errorf("(%v) Did not redirect", test.title) + return + } + if !shouldRedirect && match.Handler != nil { + t.Errorf("(%v) Unexpected redirect", test.title) + return + } + } +} + +func testUseEscapedRoute(t *testing.T, test routeTest) { + test.route.useEncodedPath = true + testRoute(t, test) +} + +func testTemplate(t *testing.T, test routeTest) { + route := test.route + pathTemplate := test.pathTemplate + if len(pathTemplate) == 0 { + pathTemplate = test.path + } + hostTemplate := test.hostTemplate + if len(hostTemplate) == 0 { + hostTemplate = test.host + } + + routePathTemplate, pathErr := route.GetPathTemplate() + if pathErr == nil && routePathTemplate != pathTemplate { + t.Errorf("(%v) GetPathTemplate not equal: expected %v, got %v", test.title, pathTemplate, routePathTemplate) + } + + routeHostTemplate, hostErr := route.GetHostTemplate() + if hostErr == nil && routeHostTemplate != hostTemplate { + t.Errorf("(%v) GetHostTemplate not equal: expected %v, got %v", test.title, hostTemplate, routeHostTemplate) + } +} + +type TestA301ResponseWriter struct { + hh http.Header + status int +} + +func (ho TestA301ResponseWriter) Header() http.Header { + return http.Header(ho.hh) +} + +func (ho TestA301ResponseWriter) Write(b []byte) (int, error) { + return 0, nil +} + +func (ho TestA301ResponseWriter) WriteHeader(code int) { + ho.status = code +} + +func Test301Redirect(t *testing.T) { + m := make(http.Header) + + func1 := func(w http.ResponseWriter, r *http.Request) {} + func2 := func(w http.ResponseWriter, r *http.Request) {} + + r := NewRouter() + r.HandleFunc("/api/", func2).Name("func2") + r.HandleFunc("/", func1).Name("func1") + + req, _ := http.NewRequest("GET", "http://localhost//api/?abc=def", nil) + + res := TestA301ResponseWriter{ + hh: m, + status: 0, + } + r.ServeHTTP(&res, req) + + if "http://localhost/api/?abc=def" != res.hh["Location"][0] { + t.Errorf("Should have complete URL with query string") + } +} + +func TestSkipClean(t *testing.T) { + func1 := func(w http.ResponseWriter, r *http.Request) {} + func2 := func(w http.ResponseWriter, r *http.Request) {} + + r := NewRouter() + r.SkipClean(true) + r.HandleFunc("/api/", func2).Name("func2") + r.HandleFunc("/", func1).Name("func1") + + req, _ := http.NewRequest("GET", "http://localhost//api/?abc=def", nil) + res := NewRecorder() + r.ServeHTTP(res, req) + + if len(res.HeaderMap["Location"]) != 0 { + t.Errorf("Shouldn't redirect since skip clean is disabled") + } +} + +// https://plus.google.com/101022900381697718949/posts/eWy6DjFJ6uW +func TestSubrouterHeader(t *testing.T) { + expected := "func1 response" + func1 := func(w http.ResponseWriter, r *http.Request) { + fmt.Fprint(w, expected) + } + func2 := func(http.ResponseWriter, *http.Request) {} + + r := NewRouter() + s := r.Headers("SomeSpecialHeader", "").Subrouter() + s.HandleFunc("/", func1).Name("func1") + r.HandleFunc("/", func2).Name("func2") + + req, _ := http.NewRequest("GET", "http://localhost/", nil) + req.Header.Add("SomeSpecialHeader", "foo") + match := new(RouteMatch) + matched := r.Match(req, match) + if !matched { + t.Errorf("Should match request") + } + if match.Route.GetName() != "func1" { + t.Errorf("Expecting func1 handler, got %s", match.Route.GetName()) + } + resp := NewRecorder() + match.Handler.ServeHTTP(resp, req) + if resp.Body.String() != expected { + t.Errorf("Expecting %q", expected) + } +} + +// mapToPairs converts a string map to a slice of string pairs +func mapToPairs(m map[string]string) []string { + var i int + p := make([]string, len(m)*2) + for k, v := range m { + p[i] = k + p[i+1] = v + i += 2 + } + return p +} + +// stringMapEqual checks the equality of two string maps +func stringMapEqual(m1, m2 map[string]string) bool { + nil1 := m1 == nil + nil2 := m2 == nil + if nil1 != nil2 || len(m1) != len(m2) { + return false + } + for k, v := range m1 { + if v != m2[k] { + return false + } + } + return true +} + +// newRequest is a helper function to create a new request with a method and url. +// The request returned is a 'server' request as opposed to a 'client' one through +// simulated write onto the wire and read off of the wire. +// The differences between requests are detailed in the net/http package. +func newRequest(method, url string) *http.Request { + req, err := http.NewRequest(method, url, nil) + if err != nil { + panic(err) + } + // extract the escaped original host+path from url + // http://localhost/path/here?v=1#frag -> //localhost/path/here + opaque := "" + if i := len(req.URL.Scheme); i > 0 { + opaque = url[i+1:] + } + + if i := strings.LastIndex(opaque, "?"); i > -1 { + opaque = opaque[:i] + } + if i := strings.LastIndex(opaque, "#"); i > -1 { + opaque = opaque[:i] + } + + // Escaped host+path workaround as detailed in https://golang.org/pkg/net/url/#URL + // for < 1.5 client side workaround + req.URL.Opaque = opaque + + // Simulate writing to wire + var buff bytes.Buffer + req.Write(&buff) + ioreader := bufio.NewReader(&buff) + + // Parse request off of 'wire' + req, err = http.ReadRequest(ioreader) + if err != nil { + panic(err) + } + return req +} diff --git a/vendor/src/github.com/gorilla/mux/old_test.go b/vendor/src/github.com/gorilla/mux/old_test.go new file mode 100644 index 0000000..9bdc5e5 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/old_test.go @@ -0,0 +1,710 @@ +// Old tests ported to Go1. This is a mess. Want to drop it one day. + +// Copyright 2011 Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mux + +import ( + "bytes" + "net/http" + "testing" +) + +// ---------------------------------------------------------------------------- +// ResponseRecorder +// ---------------------------------------------------------------------------- +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// ResponseRecorder is an implementation of http.ResponseWriter that +// records its mutations for later inspection in tests. +type ResponseRecorder struct { + Code int // the HTTP response code from WriteHeader + HeaderMap http.Header // the HTTP response headers + Body *bytes.Buffer // if non-nil, the bytes.Buffer to append written data to + Flushed bool +} + +// NewRecorder returns an initialized ResponseRecorder. +func NewRecorder() *ResponseRecorder { + return &ResponseRecorder{ + HeaderMap: make(http.Header), + Body: new(bytes.Buffer), + } +} + +// Header returns the response headers. +func (rw *ResponseRecorder) Header() http.Header { + return rw.HeaderMap +} + +// Write always succeeds and writes to rw.Body, if not nil. +func (rw *ResponseRecorder) Write(buf []byte) (int, error) { + if rw.Body != nil { + rw.Body.Write(buf) + } + if rw.Code == 0 { + rw.Code = http.StatusOK + } + return len(buf), nil +} + +// WriteHeader sets rw.Code. +func (rw *ResponseRecorder) WriteHeader(code int) { + rw.Code = code +} + +// Flush sets rw.Flushed to true. +func (rw *ResponseRecorder) Flush() { + rw.Flushed = true +} + +// ---------------------------------------------------------------------------- + +func TestRouteMatchers(t *testing.T) { + var scheme, host, path, query, method string + var headers map[string]string + var resultVars map[bool]map[string]string + + router := NewRouter() + router.NewRoute().Host("{var1}.google.com"). + Path("/{var2:[a-z]+}/{var3:[0-9]+}"). + Queries("foo", "bar"). + Methods("GET"). + Schemes("https"). + Headers("x-requested-with", "XMLHttpRequest") + router.NewRoute().Host("www.{var4}.com"). + PathPrefix("/foo/{var5:[a-z]+}/{var6:[0-9]+}"). + Queries("baz", "ding"). + Methods("POST"). + Schemes("http"). + Headers("Content-Type", "application/json") + + reset := func() { + // Everything match. + scheme = "https" + host = "www.google.com" + path = "/product/42" + query = "?foo=bar" + method = "GET" + headers = map[string]string{"X-Requested-With": "XMLHttpRequest"} + resultVars = map[bool]map[string]string{ + true: {"var1": "www", "var2": "product", "var3": "42"}, + false: {}, + } + } + + reset2 := func() { + // Everything match. + scheme = "http" + host = "www.google.com" + path = "/foo/product/42/path/that/is/ignored" + query = "?baz=ding" + method = "POST" + headers = map[string]string{"Content-Type": "application/json"} + resultVars = map[bool]map[string]string{ + true: {"var4": "google", "var5": "product", "var6": "42"}, + false: {}, + } + } + + match := func(shouldMatch bool) { + url := scheme + "://" + host + path + query + request, _ := http.NewRequest(method, url, nil) + for key, value := range headers { + request.Header.Add(key, value) + } + + var routeMatch RouteMatch + matched := router.Match(request, &routeMatch) + if matched != shouldMatch { + // Need better messages. :) + if matched { + t.Errorf("Should match.") + } else { + t.Errorf("Should not match.") + } + } + + if matched { + currentRoute := routeMatch.Route + if currentRoute == nil { + t.Errorf("Expected a current route.") + } + vars := routeMatch.Vars + expectedVars := resultVars[shouldMatch] + if len(vars) != len(expectedVars) { + t.Errorf("Expected vars: %v Got: %v.", expectedVars, vars) + } + for name, value := range vars { + if expectedVars[name] != value { + t.Errorf("Expected vars: %v Got: %v.", expectedVars, vars) + } + } + } + } + + // 1st route -------------------------------------------------------------- + + // Everything match. + reset() + match(true) + + // Scheme doesn't match. + reset() + scheme = "http" + match(false) + + // Host doesn't match. + reset() + host = "www.mygoogle.com" + match(false) + + // Path doesn't match. + reset() + path = "/product/notdigits" + match(false) + + // Query doesn't match. + reset() + query = "?foo=baz" + match(false) + + // Method doesn't match. + reset() + method = "POST" + match(false) + + // Header doesn't match. + reset() + headers = map[string]string{} + match(false) + + // Everything match, again. + reset() + match(true) + + // 2nd route -------------------------------------------------------------- + + // Everything match. + reset2() + match(true) + + // Scheme doesn't match. + reset2() + scheme = "https" + match(false) + + // Host doesn't match. + reset2() + host = "sub.google.com" + match(false) + + // Path doesn't match. + reset2() + path = "/bar/product/42" + match(false) + + // Query doesn't match. + reset2() + query = "?foo=baz" + match(false) + + // Method doesn't match. + reset2() + method = "GET" + match(false) + + // Header doesn't match. + reset2() + headers = map[string]string{} + match(false) + + // Everything match, again. + reset2() + match(true) +} + +type headerMatcherTest struct { + matcher headerMatcher + headers map[string]string + result bool +} + +var headerMatcherTests = []headerMatcherTest{ + { + matcher: headerMatcher(map[string]string{"x-requested-with": "XMLHttpRequest"}), + headers: map[string]string{"X-Requested-With": "XMLHttpRequest"}, + result: true, + }, + { + matcher: headerMatcher(map[string]string{"x-requested-with": ""}), + headers: map[string]string{"X-Requested-With": "anything"}, + result: true, + }, + { + matcher: headerMatcher(map[string]string{"x-requested-with": "XMLHttpRequest"}), + headers: map[string]string{}, + result: false, + }, +} + +type hostMatcherTest struct { + matcher *Route + url string + vars map[string]string + result bool +} + +var hostMatcherTests = []hostMatcherTest{ + { + matcher: NewRouter().NewRoute().Host("{foo:[a-z][a-z][a-z]}.{bar:[a-z][a-z][a-z]}.{baz:[a-z][a-z][a-z]}"), + url: "http://abc.def.ghi/", + vars: map[string]string{"foo": "abc", "bar": "def", "baz": "ghi"}, + result: true, + }, + { + matcher: NewRouter().NewRoute().Host("{foo:[a-z][a-z][a-z]}.{bar:[a-z][a-z][a-z]}.{baz:[a-z][a-z][a-z]}"), + url: "http://a.b.c/", + vars: map[string]string{"foo": "abc", "bar": "def", "baz": "ghi"}, + result: false, + }, +} + +type methodMatcherTest struct { + matcher methodMatcher + method string + result bool +} + +var methodMatcherTests = []methodMatcherTest{ + { + matcher: methodMatcher([]string{"GET", "POST", "PUT"}), + method: "GET", + result: true, + }, + { + matcher: methodMatcher([]string{"GET", "POST", "PUT"}), + method: "POST", + result: true, + }, + { + matcher: methodMatcher([]string{"GET", "POST", "PUT"}), + method: "PUT", + result: true, + }, + { + matcher: methodMatcher([]string{"GET", "POST", "PUT"}), + method: "DELETE", + result: false, + }, +} + +type pathMatcherTest struct { + matcher *Route + url string + vars map[string]string + result bool +} + +var pathMatcherTests = []pathMatcherTest{ + { + matcher: NewRouter().NewRoute().Path("/{foo:[0-9][0-9][0-9]}/{bar:[0-9][0-9][0-9]}/{baz:[0-9][0-9][0-9]}"), + url: "http://localhost:8080/123/456/789", + vars: map[string]string{"foo": "123", "bar": "456", "baz": "789"}, + result: true, + }, + { + matcher: NewRouter().NewRoute().Path("/{foo:[0-9][0-9][0-9]}/{bar:[0-9][0-9][0-9]}/{baz:[0-9][0-9][0-9]}"), + url: "http://localhost:8080/1/2/3", + vars: map[string]string{"foo": "123", "bar": "456", "baz": "789"}, + result: false, + }, +} + +type schemeMatcherTest struct { + matcher schemeMatcher + url string + result bool +} + +var schemeMatcherTests = []schemeMatcherTest{ + { + matcher: schemeMatcher([]string{"http", "https"}), + url: "http://localhost:8080/", + result: true, + }, + { + matcher: schemeMatcher([]string{"http", "https"}), + url: "https://localhost:8080/", + result: true, + }, + { + matcher: schemeMatcher([]string{"https"}), + url: "http://localhost:8080/", + result: false, + }, + { + matcher: schemeMatcher([]string{"http"}), + url: "https://localhost:8080/", + result: false, + }, +} + +type urlBuildingTest struct { + route *Route + vars []string + url string +} + +var urlBuildingTests = []urlBuildingTest{ + { + route: new(Route).Host("foo.domain.com"), + vars: []string{}, + url: "http://foo.domain.com", + }, + { + route: new(Route).Host("{subdomain}.domain.com"), + vars: []string{"subdomain", "bar"}, + url: "http://bar.domain.com", + }, + { + route: new(Route).Host("foo.domain.com").Path("/articles"), + vars: []string{}, + url: "http://foo.domain.com/articles", + }, + { + route: new(Route).Path("/articles"), + vars: []string{}, + url: "/articles", + }, + { + route: new(Route).Path("/articles/{category}/{id:[0-9]+}"), + vars: []string{"category", "technology", "id", "42"}, + url: "/articles/technology/42", + }, + { + route: new(Route).Host("{subdomain}.domain.com").Path("/articles/{category}/{id:[0-9]+}"), + vars: []string{"subdomain", "foo", "category", "technology", "id", "42"}, + url: "http://foo.domain.com/articles/technology/42", + }, +} + +func TestHeaderMatcher(t *testing.T) { + for _, v := range headerMatcherTests { + request, _ := http.NewRequest("GET", "http://localhost:8080/", nil) + for key, value := range v.headers { + request.Header.Add(key, value) + } + var routeMatch RouteMatch + result := v.matcher.Match(request, &routeMatch) + if result != v.result { + if v.result { + t.Errorf("%#v: should match %v.", v.matcher, request.Header) + } else { + t.Errorf("%#v: should not match %v.", v.matcher, request.Header) + } + } + } +} + +func TestHostMatcher(t *testing.T) { + for _, v := range hostMatcherTests { + request, _ := http.NewRequest("GET", v.url, nil) + var routeMatch RouteMatch + result := v.matcher.Match(request, &routeMatch) + vars := routeMatch.Vars + if result != v.result { + if v.result { + t.Errorf("%#v: should match %v.", v.matcher, v.url) + } else { + t.Errorf("%#v: should not match %v.", v.matcher, v.url) + } + } + if result { + if len(vars) != len(v.vars) { + t.Errorf("%#v: vars length should be %v, got %v.", v.matcher, len(v.vars), len(vars)) + } + for name, value := range vars { + if v.vars[name] != value { + t.Errorf("%#v: expected value %v for key %v, got %v.", v.matcher, v.vars[name], name, value) + } + } + } else { + if len(vars) != 0 { + t.Errorf("%#v: vars length should be 0, got %v.", v.matcher, len(vars)) + } + } + } +} + +func TestMethodMatcher(t *testing.T) { + for _, v := range methodMatcherTests { + request, _ := http.NewRequest(v.method, "http://localhost:8080/", nil) + var routeMatch RouteMatch + result := v.matcher.Match(request, &routeMatch) + if result != v.result { + if v.result { + t.Errorf("%#v: should match %v.", v.matcher, v.method) + } else { + t.Errorf("%#v: should not match %v.", v.matcher, v.method) + } + } + } +} + +func TestPathMatcher(t *testing.T) { + for _, v := range pathMatcherTests { + request, _ := http.NewRequest("GET", v.url, nil) + var routeMatch RouteMatch + result := v.matcher.Match(request, &routeMatch) + vars := routeMatch.Vars + if result != v.result { + if v.result { + t.Errorf("%#v: should match %v.", v.matcher, v.url) + } else { + t.Errorf("%#v: should not match %v.", v.matcher, v.url) + } + } + if result { + if len(vars) != len(v.vars) { + t.Errorf("%#v: vars length should be %v, got %v.", v.matcher, len(v.vars), len(vars)) + } + for name, value := range vars { + if v.vars[name] != value { + t.Errorf("%#v: expected value %v for key %v, got %v.", v.matcher, v.vars[name], name, value) + } + } + } else { + if len(vars) != 0 { + t.Errorf("%#v: vars length should be 0, got %v.", v.matcher, len(vars)) + } + } + } +} + +func TestSchemeMatcher(t *testing.T) { + for _, v := range schemeMatcherTests { + request, _ := http.NewRequest("GET", v.url, nil) + var routeMatch RouteMatch + result := v.matcher.Match(request, &routeMatch) + if result != v.result { + if v.result { + t.Errorf("%#v: should match %v.", v.matcher, v.url) + } else { + t.Errorf("%#v: should not match %v.", v.matcher, v.url) + } + } + } +} + +func TestUrlBuilding(t *testing.T) { + + for _, v := range urlBuildingTests { + u, _ := v.route.URL(v.vars...) + url := u.String() + if url != v.url { + t.Errorf("expected %v, got %v", v.url, url) + /* + reversePath := "" + reverseHost := "" + if v.route.pathTemplate != nil { + reversePath = v.route.pathTemplate.Reverse + } + if v.route.hostTemplate != nil { + reverseHost = v.route.hostTemplate.Reverse + } + + t.Errorf("%#v:\nexpected: %q\ngot: %q\nreverse path: %q\nreverse host: %q", v.route, v.url, url, reversePath, reverseHost) + */ + } + } + + ArticleHandler := func(w http.ResponseWriter, r *http.Request) { + } + + router := NewRouter() + router.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler).Name("article") + + url, _ := router.Get("article").URL("category", "technology", "id", "42") + expected := "/articles/technology/42" + if url.String() != expected { + t.Errorf("Expected %v, got %v", expected, url.String()) + } +} + +func TestMatchedRouteName(t *testing.T) { + routeName := "stock" + router := NewRouter() + route := router.NewRoute().Path("/products/").Name(routeName) + + url := "http://www.example.com/products/" + request, _ := http.NewRequest("GET", url, nil) + var rv RouteMatch + ok := router.Match(request, &rv) + + if !ok || rv.Route != route { + t.Errorf("Expected same route, got %+v.", rv.Route) + } + + retName := rv.Route.GetName() + if retName != routeName { + t.Errorf("Expected %q, got %q.", routeName, retName) + } +} + +func TestSubRouting(t *testing.T) { + // Example from docs. + router := NewRouter() + subrouter := router.NewRoute().Host("www.example.com").Subrouter() + route := subrouter.NewRoute().Path("/products/").Name("products") + + url := "http://www.example.com/products/" + request, _ := http.NewRequest("GET", url, nil) + var rv RouteMatch + ok := router.Match(request, &rv) + + if !ok || rv.Route != route { + t.Errorf("Expected same route, got %+v.", rv.Route) + } + + u, _ := router.Get("products").URL() + builtURL := u.String() + // Yay, subroute aware of the domain when building! + if builtURL != url { + t.Errorf("Expected %q, got %q.", url, builtURL) + } +} + +func TestVariableNames(t *testing.T) { + route := new(Route).Host("{arg1}.domain.com").Path("/{arg1}/{arg2:[0-9]+}") + if route.err == nil { + t.Errorf("Expected error for duplicated variable names") + } +} + +func TestRedirectSlash(t *testing.T) { + var route *Route + var routeMatch RouteMatch + r := NewRouter() + + r.StrictSlash(false) + route = r.NewRoute() + if route.strictSlash != false { + t.Errorf("Expected false redirectSlash.") + } + + r.StrictSlash(true) + route = r.NewRoute() + if route.strictSlash != true { + t.Errorf("Expected true redirectSlash.") + } + + route = new(Route) + route.strictSlash = true + route.Path("/{arg1}/{arg2:[0-9]+}/") + request, _ := http.NewRequest("GET", "http://localhost/foo/123", nil) + routeMatch = RouteMatch{} + _ = route.Match(request, &routeMatch) + vars := routeMatch.Vars + if vars["arg1"] != "foo" { + t.Errorf("Expected foo.") + } + if vars["arg2"] != "123" { + t.Errorf("Expected 123.") + } + rsp := NewRecorder() + routeMatch.Handler.ServeHTTP(rsp, request) + if rsp.HeaderMap.Get("Location") != "http://localhost/foo/123/" { + t.Errorf("Expected redirect header.") + } + + route = new(Route) + route.strictSlash = true + route.Path("/{arg1}/{arg2:[0-9]+}") + request, _ = http.NewRequest("GET", "http://localhost/foo/123/", nil) + routeMatch = RouteMatch{} + _ = route.Match(request, &routeMatch) + vars = routeMatch.Vars + if vars["arg1"] != "foo" { + t.Errorf("Expected foo.") + } + if vars["arg2"] != "123" { + t.Errorf("Expected 123.") + } + rsp = NewRecorder() + routeMatch.Handler.ServeHTTP(rsp, request) + if rsp.HeaderMap.Get("Location") != "http://localhost/foo/123" { + t.Errorf("Expected redirect header.") + } +} + +// Test for the new regexp library, still not available in stable Go. +func TestNewRegexp(t *testing.T) { + var p *routeRegexp + var matches []string + + tests := map[string]map[string][]string{ + "/{foo:a{2}}": { + "/a": nil, + "/aa": {"aa"}, + "/aaa": nil, + "/aaaa": nil, + }, + "/{foo:a{2,}}": { + "/a": nil, + "/aa": {"aa"}, + "/aaa": {"aaa"}, + "/aaaa": {"aaaa"}, + }, + "/{foo:a{2,3}}": { + "/a": nil, + "/aa": {"aa"}, + "/aaa": {"aaa"}, + "/aaaa": nil, + }, + "/{foo:[a-z]{3}}/{bar:[a-z]{2}}": { + "/a": nil, + "/ab": nil, + "/abc": nil, + "/abcd": nil, + "/abc/ab": {"abc", "ab"}, + "/abc/abc": nil, + "/abcd/ab": nil, + }, + `/{foo:\w{3,}}/{bar:\d{2,}}`: { + "/a": nil, + "/ab": nil, + "/abc": nil, + "/abc/1": nil, + "/abc/12": {"abc", "12"}, + "/abcd/12": {"abcd", "12"}, + "/abcd/123": {"abcd", "123"}, + }, + } + + for pattern, paths := range tests { + p, _ = newRouteRegexp(pattern, false, false, false, false, false) + for path, result := range paths { + matches = p.regexp.FindStringSubmatch(path) + if result == nil { + if matches != nil { + t.Errorf("%v should not match %v.", pattern, path) + } + } else { + if len(matches) != len(result)+1 { + t.Errorf("Expected %v matches, got %v.", len(result)+1, len(matches)) + } else { + for k, v := range result { + if matches[k+1] != v { + t.Errorf("Expected %v, got %v.", v, matches[k+1]) + } + } + } + } + } + } +} diff --git a/vendor/src/github.com/gorilla/mux/regexp.go b/vendor/src/github.com/gorilla/mux/regexp.go new file mode 100644 index 0000000..0189ad3 --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/regexp.go @@ -0,0 +1,323 @@ +// Copyright 2012 The Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mux + +import ( + "bytes" + "fmt" + "net/http" + "net/url" + "regexp" + "strconv" + "strings" +) + +// newRouteRegexp parses a route template and returns a routeRegexp, +// used to match a host, a path or a query string. +// +// It will extract named variables, assemble a regexp to be matched, create +// a "reverse" template to build URLs and compile regexps to validate variable +// values used in URL building. +// +// Previously we accepted only Python-like identifiers for variable +// names ([a-zA-Z_][a-zA-Z0-9_]*), but currently the only restriction is that +// name and pattern can't be empty, and names can't contain a colon. +func newRouteRegexp(tpl string, matchHost, matchPrefix, matchQuery, strictSlash, useEncodedPath bool) (*routeRegexp, error) { + // Check if it is well-formed. + idxs, errBraces := braceIndices(tpl) + if errBraces != nil { + return nil, errBraces + } + // Backup the original. + template := tpl + // Now let's parse it. + defaultPattern := "[^/]+" + if matchQuery { + defaultPattern = "[^?&]*" + } else if matchHost { + defaultPattern = "[^.]+" + matchPrefix = false + } + // Only match strict slash if not matching + if matchPrefix || matchHost || matchQuery { + strictSlash = false + } + // Set a flag for strictSlash. + endSlash := false + if strictSlash && strings.HasSuffix(tpl, "/") { + tpl = tpl[:len(tpl)-1] + endSlash = true + } + varsN := make([]string, len(idxs)/2) + varsR := make([]*regexp.Regexp, len(idxs)/2) + pattern := bytes.NewBufferString("") + pattern.WriteByte('^') + reverse := bytes.NewBufferString("") + var end int + var err error + for i := 0; i < len(idxs); i += 2 { + // Set all values we are interested in. + raw := tpl[end:idxs[i]] + end = idxs[i+1] + parts := strings.SplitN(tpl[idxs[i]+1:end-1], ":", 2) + name := parts[0] + patt := defaultPattern + if len(parts) == 2 { + patt = parts[1] + } + // Name or pattern can't be empty. + if name == "" || patt == "" { + return nil, fmt.Errorf("mux: missing name or pattern in %q", + tpl[idxs[i]:end]) + } + // Build the regexp pattern. + fmt.Fprintf(pattern, "%s(?P<%s>%s)", regexp.QuoteMeta(raw), varGroupName(i/2), patt) + + // Build the reverse template. + fmt.Fprintf(reverse, "%s%%s", raw) + + // Append variable name and compiled pattern. + varsN[i/2] = name + varsR[i/2], err = regexp.Compile(fmt.Sprintf("^%s$", patt)) + if err != nil { + return nil, err + } + } + // Add the remaining. + raw := tpl[end:] + pattern.WriteString(regexp.QuoteMeta(raw)) + if strictSlash { + pattern.WriteString("[/]?") + } + if matchQuery { + // Add the default pattern if the query value is empty + if queryVal := strings.SplitN(template, "=", 2)[1]; queryVal == "" { + pattern.WriteString(defaultPattern) + } + } + if !matchPrefix { + pattern.WriteByte('$') + } + reverse.WriteString(raw) + if endSlash { + reverse.WriteByte('/') + } + // Compile full regexp. + reg, errCompile := regexp.Compile(pattern.String()) + if errCompile != nil { + return nil, errCompile + } + + // Check for capturing groups which used to work in older versions + if reg.NumSubexp() != len(idxs)/2 { + panic(fmt.Sprintf("route %s contains capture groups in its regexp. ", template) + + "Only non-capturing groups are accepted: e.g. (?:pattern) instead of (pattern)") + } + + // Done! + return &routeRegexp{ + template: template, + matchHost: matchHost, + matchQuery: matchQuery, + strictSlash: strictSlash, + useEncodedPath: useEncodedPath, + regexp: reg, + reverse: reverse.String(), + varsN: varsN, + varsR: varsR, + }, nil +} + +// routeRegexp stores a regexp to match a host or path and information to +// collect and validate route variables. +type routeRegexp struct { + // The unmodified template. + template string + // True for host match, false for path or query string match. + matchHost bool + // True for query string match, false for path and host match. + matchQuery bool + // The strictSlash value defined on the route, but disabled if PathPrefix was used. + strictSlash bool + // Determines whether to use encoded path from getPath function or unencoded + // req.URL.Path for path matching + useEncodedPath bool + // Expanded regexp. + regexp *regexp.Regexp + // Reverse template. + reverse string + // Variable names. + varsN []string + // Variable regexps (validators). + varsR []*regexp.Regexp +} + +// Match matches the regexp against the URL host or path. +func (r *routeRegexp) Match(req *http.Request, match *RouteMatch) bool { + if !r.matchHost { + if r.matchQuery { + return r.matchQueryString(req) + } + path := req.URL.Path + if r.useEncodedPath { + path = getPath(req) + } + return r.regexp.MatchString(path) + } + + return r.regexp.MatchString(getHost(req)) +} + +// url builds a URL part using the given values. +func (r *routeRegexp) url(values map[string]string) (string, error) { + urlValues := make([]interface{}, len(r.varsN)) + for k, v := range r.varsN { + value, ok := values[v] + if !ok { + return "", fmt.Errorf("mux: missing route variable %q", v) + } + urlValues[k] = value + } + rv := fmt.Sprintf(r.reverse, urlValues...) + if !r.regexp.MatchString(rv) { + // The URL is checked against the full regexp, instead of checking + // individual variables. This is faster but to provide a good error + // message, we check individual regexps if the URL doesn't match. + for k, v := range r.varsN { + if !r.varsR[k].MatchString(values[v]) { + return "", fmt.Errorf( + "mux: variable %q doesn't match, expected %q", values[v], + r.varsR[k].String()) + } + } + } + return rv, nil +} + +// getURLQuery returns a single query parameter from a request URL. +// For a URL with foo=bar&baz=ding, we return only the relevant key +// value pair for the routeRegexp. +func (r *routeRegexp) getURLQuery(req *http.Request) string { + if !r.matchQuery { + return "" + } + templateKey := strings.SplitN(r.template, "=", 2)[0] + for key, vals := range req.URL.Query() { + if key == templateKey && len(vals) > 0 { + return key + "=" + vals[0] + } + } + return "" +} + +func (r *routeRegexp) matchQueryString(req *http.Request) bool { + return r.regexp.MatchString(r.getURLQuery(req)) +} + +// braceIndices returns the first level curly brace indices from a string. +// It returns an error in case of unbalanced braces. +func braceIndices(s string) ([]int, error) { + var level, idx int + var idxs []int + for i := 0; i < len(s); i++ { + switch s[i] { + case '{': + if level++; level == 1 { + idx = i + } + case '}': + if level--; level == 0 { + idxs = append(idxs, idx, i+1) + } else if level < 0 { + return nil, fmt.Errorf("mux: unbalanced braces in %q", s) + } + } + } + if level != 0 { + return nil, fmt.Errorf("mux: unbalanced braces in %q", s) + } + return idxs, nil +} + +// varGroupName builds a capturing group name for the indexed variable. +func varGroupName(idx int) string { + return "v" + strconv.Itoa(idx) +} + +// ---------------------------------------------------------------------------- +// routeRegexpGroup +// ---------------------------------------------------------------------------- + +// routeRegexpGroup groups the route matchers that carry variables. +type routeRegexpGroup struct { + host *routeRegexp + path *routeRegexp + queries []*routeRegexp +} + +// setMatch extracts the variables from the URL once a route matches. +func (v *routeRegexpGroup) setMatch(req *http.Request, m *RouteMatch, r *Route) { + // Store host variables. + if v.host != nil { + host := getHost(req) + matches := v.host.regexp.FindStringSubmatchIndex(host) + if len(matches) > 0 { + extractVars(host, matches, v.host.varsN, m.Vars) + } + } + path := req.URL.Path + if r.useEncodedPath { + path = getPath(req) + } + // Store path variables. + if v.path != nil { + matches := v.path.regexp.FindStringSubmatchIndex(path) + if len(matches) > 0 { + extractVars(path, matches, v.path.varsN, m.Vars) + // Check if we should redirect. + if v.path.strictSlash { + p1 := strings.HasSuffix(path, "/") + p2 := strings.HasSuffix(v.path.template, "/") + if p1 != p2 { + u, _ := url.Parse(req.URL.String()) + if p1 { + u.Path = u.Path[:len(u.Path)-1] + } else { + u.Path += "/" + } + m.Handler = http.RedirectHandler(u.String(), 301) + } + } + } + } + // Store query string variables. + for _, q := range v.queries { + queryURL := q.getURLQuery(req) + matches := q.regexp.FindStringSubmatchIndex(queryURL) + if len(matches) > 0 { + extractVars(queryURL, matches, q.varsN, m.Vars) + } + } +} + +// getHost tries its best to return the request host. +func getHost(r *http.Request) string { + if r.URL.IsAbs() { + return r.URL.Host + } + host := r.Host + // Slice off any port information. + if i := strings.Index(host, ":"); i != -1 { + host = host[:i] + } + return host + +} + +func extractVars(input string, matches []int, names []string, output map[string]string) { + for i, name := range names { + output[name] = input[matches[2*i+2]:matches[2*i+3]] + } +} diff --git a/vendor/src/github.com/gorilla/mux/route.go b/vendor/src/github.com/gorilla/mux/route.go new file mode 100644 index 0000000..5544c1f --- /dev/null +++ b/vendor/src/github.com/gorilla/mux/route.go @@ -0,0 +1,636 @@ +// Copyright 2012 The Gorilla Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package mux + +import ( + "errors" + "fmt" + "net/http" + "net/url" + "regexp" + "strings" +) + +// Route stores information to match a request and build URLs. +type Route struct { + // Parent where the route was registered (a Router). + parent parentRoute + // Request handler for the route. + handler http.Handler + // List of matchers. + matchers []matcher + // Manager for the variables from host and path. + regexp *routeRegexpGroup + // If true, when the path pattern is "/path/", accessing "/path" will + // redirect to the former and vice versa. + strictSlash bool + // If true, when the path pattern is "/path//to", accessing "/path//to" + // will not redirect + skipClean bool + // If true, "/path/foo%2Fbar/to" will match the path "/path/{var}/to" + useEncodedPath bool + // If true, this route never matches: it is only used to build URLs. + buildOnly bool + // The name used to build URLs. + name string + // Error resulted from building a route. + err error + + buildVarsFunc BuildVarsFunc +} + +func (r *Route) SkipClean() bool { + return r.skipClean +} + +// Match matches the route against the request. +func (r *Route) Match(req *http.Request, match *RouteMatch) bool { + if r.buildOnly || r.err != nil { + return false + } + // Match everything. + for _, m := range r.matchers { + if matched := m.Match(req, match); !matched { + return false + } + } + // Yay, we have a match. Let's collect some info about it. + if match.Route == nil { + match.Route = r + } + if match.Handler == nil { + match.Handler = r.handler + } + if match.Vars == nil { + match.Vars = make(map[string]string) + } + // Set variables. + if r.regexp != nil { + r.regexp.setMatch(req, match, r) + } + return true +} + +// ---------------------------------------------------------------------------- +// Route attributes +// ---------------------------------------------------------------------------- + +// GetError returns an error resulted from building the route, if any. +func (r *Route) GetError() error { + return r.err +} + +// BuildOnly sets the route to never match: it is only used to build URLs. +func (r *Route) BuildOnly() *Route { + r.buildOnly = true + return r +} + +// Handler -------------------------------------------------------------------- + +// Handler sets a handler for the route. +func (r *Route) Handler(handler http.Handler) *Route { + if r.err == nil { + r.handler = handler + } + return r +} + +// HandlerFunc sets a handler function for the route. +func (r *Route) HandlerFunc(f func(http.ResponseWriter, *http.Request)) *Route { + return r.Handler(http.HandlerFunc(f)) +} + +// GetHandler returns the handler for the route, if any. +func (r *Route) GetHandler() http.Handler { + return r.handler +} + +// Name ----------------------------------------------------------------------- + +// Name sets the name for the route, used to build URLs. +// If the name was registered already it will be overwritten. +func (r *Route) Name(name string) *Route { + if r.name != "" { + r.err = fmt.Errorf("mux: route already has name %q, can't set %q", + r.name, name) + } + if r.err == nil { + r.name = name + r.getNamedRoutes()[name] = r + } + return r +} + +// GetName returns the name for the route, if any. +func (r *Route) GetName() string { + return r.name +} + +// ---------------------------------------------------------------------------- +// Matchers +// ---------------------------------------------------------------------------- + +// matcher types try to match a request. +type matcher interface { + Match(*http.Request, *RouteMatch) bool +} + +// addMatcher adds a matcher to the route. +func (r *Route) addMatcher(m matcher) *Route { + if r.err == nil { + r.matchers = append(r.matchers, m) + } + return r +} + +// addRegexpMatcher adds a host or path matcher and builder to a route. +func (r *Route) addRegexpMatcher(tpl string, matchHost, matchPrefix, matchQuery bool) error { + if r.err != nil { + return r.err + } + r.regexp = r.getRegexpGroup() + if !matchHost && !matchQuery { + if len(tpl) > 0 && tpl[0] != '/' { + return fmt.Errorf("mux: path must start with a slash, got %q", tpl) + } + if r.regexp.path != nil { + tpl = strings.TrimRight(r.regexp.path.template, "/") + tpl + } + } + rr, err := newRouteRegexp(tpl, matchHost, matchPrefix, matchQuery, r.strictSlash, r.useEncodedPath) + if err != nil { + return err + } + for _, q := range r.regexp.queries { + if err = uniqueVars(rr.varsN, q.varsN); err != nil { + return err + } + } + if matchHost { + if r.regexp.path != nil { + if err = uniqueVars(rr.varsN, r.regexp.path.varsN); err != nil { + return err + } + } + r.regexp.host = rr + } else { + if r.regexp.host != nil { + if err = uniqueVars(rr.varsN, r.regexp.host.varsN); err != nil { + return err + } + } + if matchQuery { + r.regexp.queries = append(r.regexp.queries, rr) + } else { + r.regexp.path = rr + } + } + r.addMatcher(rr) + return nil +} + +// Headers -------------------------------------------------------------------- + +// headerMatcher matches the request against header values. +type headerMatcher map[string]string + +func (m headerMatcher) Match(r *http.Request, match *RouteMatch) bool { + return matchMapWithString(m, r.Header, true) +} + +// Headers adds a matcher for request header values. +// It accepts a sequence of key/value pairs to be matched. For example: +// +// r := mux.NewRouter() +// r.Headers("Content-Type", "application/json", +// "X-Requested-With", "XMLHttpRequest") +// +// The above route will only match if both request header values match. +// If the value is an empty string, it will match any value if the key is set. +func (r *Route) Headers(pairs ...string) *Route { + if r.err == nil { + var headers map[string]string + headers, r.err = mapFromPairsToString(pairs...) + return r.addMatcher(headerMatcher(headers)) + } + return r +} + +// headerRegexMatcher matches the request against the route given a regex for the header +type headerRegexMatcher map[string]*regexp.Regexp + +func (m headerRegexMatcher) Match(r *http.Request, match *RouteMatch) bool { + return matchMapWithRegex(m, r.Header, true) +} + +// HeadersRegexp accepts a sequence of key/value pairs, where the value has regex +// support. For example: +// +// r := mux.NewRouter() +// r.HeadersRegexp("Content-Type", "application/(text|json)", +// "X-Requested-With", "XMLHttpRequest") +// +// The above route will only match if both the request header matches both regular expressions. +// It the value is an empty string, it will match any value if the key is set. +func (r *Route) HeadersRegexp(pairs ...string) *Route { + if r.err == nil { + var headers map[string]*regexp.Regexp + headers, r.err = mapFromPairsToRegex(pairs...) + return r.addMatcher(headerRegexMatcher(headers)) + } + return r +} + +// Host ----------------------------------------------------------------------- + +// Host adds a matcher for the URL host. +// It accepts a template with zero or more URL variables enclosed by {}. +// Variables can define an optional regexp pattern to be matched: +// +// - {name} matches anything until the next dot. +// +// - {name:pattern} matches the given regexp pattern. +// +// For example: +// +// r := mux.NewRouter() +// r.Host("www.example.com") +// r.Host("{subdomain}.domain.com") +// r.Host("{subdomain:[a-z]+}.domain.com") +// +// Variable names must be unique in a given route. They can be retrieved +// calling mux.Vars(request). +func (r *Route) Host(tpl string) *Route { + r.err = r.addRegexpMatcher(tpl, true, false, false) + return r +} + +// MatcherFunc ---------------------------------------------------------------- + +// MatcherFunc is the function signature used by custom matchers. +type MatcherFunc func(*http.Request, *RouteMatch) bool + +// Match returns the match for a given request. +func (m MatcherFunc) Match(r *http.Request, match *RouteMatch) bool { + return m(r, match) +} + +// MatcherFunc adds a custom function to be used as request matcher. +func (r *Route) MatcherFunc(f MatcherFunc) *Route { + return r.addMatcher(f) +} + +// Methods -------------------------------------------------------------------- + +// methodMatcher matches the request against HTTP methods. +type methodMatcher []string + +func (m methodMatcher) Match(r *http.Request, match *RouteMatch) bool { + return matchInArray(m, r.Method) +} + +// Methods adds a matcher for HTTP methods. +// It accepts a sequence of one or more methods to be matched, e.g.: +// "GET", "POST", "PUT". +func (r *Route) Methods(methods ...string) *Route { + for k, v := range methods { + methods[k] = strings.ToUpper(v) + } + return r.addMatcher(methodMatcher(methods)) +} + +// Path ----------------------------------------------------------------------- + +// Path adds a matcher for the URL path. +// It accepts a template with zero or more URL variables enclosed by {}. The +// template must start with a "/". +// Variables can define an optional regexp pattern to be matched: +// +// - {name} matches anything until the next slash. +// +// - {name:pattern} matches the given regexp pattern. +// +// For example: +// +// r := mux.NewRouter() +// r.Path("/products/").Handler(ProductsHandler) +// r.Path("/products/{key}").Handler(ProductsHandler) +// r.Path("/articles/{category}/{id:[0-9]+}"). +// Handler(ArticleHandler) +// +// Variable names must be unique in a given route. They can be retrieved +// calling mux.Vars(request). +func (r *Route) Path(tpl string) *Route { + r.err = r.addRegexpMatcher(tpl, false, false, false) + return r +} + +// PathPrefix ----------------------------------------------------------------- + +// PathPrefix adds a matcher for the URL path prefix. This matches if the given +// template is a prefix of the full URL path. See Route.Path() for details on +// the tpl argument. +// +// Note that it does not treat slashes specially ("/foobar/" will be matched by +// the prefix "/foo") so you may want to use a trailing slash here. +// +// Also note that the setting of Router.StrictSlash() has no effect on routes +// with a PathPrefix matcher. +func (r *Route) PathPrefix(tpl string) *Route { + r.err = r.addRegexpMatcher(tpl, false, true, false) + return r +} + +// Query ---------------------------------------------------------------------- + +// Queries adds a matcher for URL query values. +// It accepts a sequence of key/value pairs. Values may define variables. +// For example: +// +// r := mux.NewRouter() +// r.Queries("foo", "bar", "id", "{id:[0-9]+}") +// +// The above route will only match if the URL contains the defined queries +// values, e.g.: ?foo=bar&id=42. +// +// It the value is an empty string, it will match any value if the key is set. +// +// Variables can define an optional regexp pattern to be matched: +// +// - {name} matches anything until the next slash. +// +// - {name:pattern} matches the given regexp pattern. +func (r *Route) Queries(pairs ...string) *Route { + length := len(pairs) + if length%2 != 0 { + r.err = fmt.Errorf( + "mux: number of parameters must be multiple of 2, got %v", pairs) + return nil + } + for i := 0; i < length; i += 2 { + if r.err = r.addRegexpMatcher(pairs[i]+"="+pairs[i+1], false, false, true); r.err != nil { + return r + } + } + + return r +} + +// Schemes -------------------------------------------------------------------- + +// schemeMatcher matches the request against URL schemes. +type schemeMatcher []string + +func (m schemeMatcher) Match(r *http.Request, match *RouteMatch) bool { + return matchInArray(m, r.URL.Scheme) +} + +// Schemes adds a matcher for URL schemes. +// It accepts a sequence of schemes to be matched, e.g.: "http", "https". +func (r *Route) Schemes(schemes ...string) *Route { + for k, v := range schemes { + schemes[k] = strings.ToLower(v) + } + return r.addMatcher(schemeMatcher(schemes)) +} + +// BuildVarsFunc -------------------------------------------------------------- + +// BuildVarsFunc is the function signature used by custom build variable +// functions (which can modify route variables before a route's URL is built). +type BuildVarsFunc func(map[string]string) map[string]string + +// BuildVarsFunc adds a custom function to be used to modify build variables +// before a route's URL is built. +func (r *Route) BuildVarsFunc(f BuildVarsFunc) *Route { + r.buildVarsFunc = f + return r +} + +// Subrouter ------------------------------------------------------------------ + +// Subrouter creates a subrouter for the route. +// +// It will test the inner routes only if the parent route matched. For example: +// +// r := mux.NewRouter() +// s := r.Host("www.example.com").Subrouter() +// s.HandleFunc("/products/", ProductsHandler) +// s.HandleFunc("/products/{key}", ProductHandler) +// s.HandleFunc("/articles/{category}/{id:[0-9]+}"), ArticleHandler) +// +// Here, the routes registered in the subrouter won't be tested if the host +// doesn't match. +func (r *Route) Subrouter() *Router { + router := &Router{parent: r, strictSlash: r.strictSlash} + r.addMatcher(router) + return router +} + +// ---------------------------------------------------------------------------- +// URL building +// ---------------------------------------------------------------------------- + +// URL builds a URL for the route. +// +// It accepts a sequence of key/value pairs for the route variables. For +// example, given this route: +// +// r := mux.NewRouter() +// r.HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler). +// Name("article") +// +// ...a URL for it can be built using: +// +// url, err := r.Get("article").URL("category", "technology", "id", "42") +// +// ...which will return an url.URL with the following path: +// +// "/articles/technology/42" +// +// This also works for host variables: +// +// r := mux.NewRouter() +// r.Host("{subdomain}.domain.com"). +// HandleFunc("/articles/{category}/{id:[0-9]+}", ArticleHandler). +// Name("article") +// +// // url.String() will be "http://news.domain.com/articles/technology/42" +// url, err := r.Get("article").URL("subdomain", "news", +// "category", "technology", +// "id", "42") +// +// All variables defined in the route are required, and their values must +// conform to the corresponding patterns. +func (r *Route) URL(pairs ...string) (*url.URL, error) { + if r.err != nil { + return nil, r.err + } + if r.regexp == nil { + return nil, errors.New("mux: route doesn't have a host or path") + } + values, err := r.prepareVars(pairs...) + if err != nil { + return nil, err + } + var scheme, host, path string + if r.regexp.host != nil { + // Set a default scheme. + scheme = "http" + if host, err = r.regexp.host.url(values); err != nil { + return nil, err + } + } + if r.regexp.path != nil { + if path, err = r.regexp.path.url(values); err != nil { + return nil, err + } + } + return &url.URL{ + Scheme: scheme, + Host: host, + Path: path, + }, nil +} + +// URLHost builds the host part of the URL for a route. See Route.URL(). +// +// The route must have a host defined. +func (r *Route) URLHost(pairs ...string) (*url.URL, error) { + if r.err != nil { + return nil, r.err + } + if r.regexp == nil || r.regexp.host == nil { + return nil, errors.New("mux: route doesn't have a host") + } + values, err := r.prepareVars(pairs...) + if err != nil { + return nil, err + } + host, err := r.regexp.host.url(values) + if err != nil { + return nil, err + } + return &url.URL{ + Scheme: "http", + Host: host, + }, nil +} + +// URLPath builds the path part of the URL for a route. See Route.URL(). +// +// The route must have a path defined. +func (r *Route) URLPath(pairs ...string) (*url.URL, error) { + if r.err != nil { + return nil, r.err + } + if r.regexp == nil || r.regexp.path == nil { + return nil, errors.New("mux: route doesn't have a path") + } + values, err := r.prepareVars(pairs...) + if err != nil { + return nil, err + } + path, err := r.regexp.path.url(values) + if err != nil { + return nil, err + } + return &url.URL{ + Path: path, + }, nil +} + +// GetPathTemplate returns the template used to build the +// route match. +// This is useful for building simple REST API documentation and for instrumentation +// against third-party services. +// An error will be returned if the route does not define a path. +func (r *Route) GetPathTemplate() (string, error) { + if r.err != nil { + return "", r.err + } + if r.regexp == nil || r.regexp.path == nil { + return "", errors.New("mux: route doesn't have a path") + } + return r.regexp.path.template, nil +} + +// GetHostTemplate returns the template used to build the +// route match. +// This is useful for building simple REST API documentation and for instrumentation +// against third-party services. +// An error will be returned if the route does not define a host. +func (r *Route) GetHostTemplate() (string, error) { + if r.err != nil { + return "", r.err + } + if r.regexp == nil || r.regexp.host == nil { + return "", errors.New("mux: route doesn't have a host") + } + return r.regexp.host.template, nil +} + +// prepareVars converts the route variable pairs into a map. If the route has a +// BuildVarsFunc, it is invoked. +func (r *Route) prepareVars(pairs ...string) (map[string]string, error) { + m, err := mapFromPairsToString(pairs...) + if err != nil { + return nil, err + } + return r.buildVars(m), nil +} + +func (r *Route) buildVars(m map[string]string) map[string]string { + if r.parent != nil { + m = r.parent.buildVars(m) + } + if r.buildVarsFunc != nil { + m = r.buildVarsFunc(m) + } + return m +} + +// ---------------------------------------------------------------------------- +// parentRoute +// ---------------------------------------------------------------------------- + +// parentRoute allows routes to know about parent host and path definitions. +type parentRoute interface { + getNamedRoutes() map[string]*Route + getRegexpGroup() *routeRegexpGroup + buildVars(map[string]string) map[string]string +} + +// getNamedRoutes returns the map where named routes are registered. +func (r *Route) getNamedRoutes() map[string]*Route { + if r.parent == nil { + // During tests router is not always set. + r.parent = NewRouter() + } + return r.parent.getNamedRoutes() +} + +// getRegexpGroup returns regexp definitions from this route. +func (r *Route) getRegexpGroup() *routeRegexpGroup { + if r.regexp == nil { + if r.parent == nil { + // During tests router is not always set. + r.parent = NewRouter() + } + regexp := r.parent.getRegexpGroup() + if regexp == nil { + r.regexp = new(routeRegexpGroup) + } else { + // Copy. + r.regexp = &routeRegexpGroup{ + host: regexp.host, + path: regexp.path, + queries: regexp.queries, + } + } + } + return r.regexp +} diff --git a/vendor/src/github.com/tstranex/u2f/LICENSE b/vendor/src/github.com/tstranex/u2f/LICENSE new file mode 100644 index 0000000..3c7279c --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2015 The Go FIDO U2F Library Authors + +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/src/github.com/tstranex/u2f/README.md b/vendor/src/github.com/tstranex/u2f/README.md new file mode 100644 index 0000000..95de78f --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/README.md @@ -0,0 +1,97 @@ +# Go FIDO U2F Library + +This Go package implements the parts of the FIDO U2F specification required on +the server side of an application. + +[![Build Status](https://travis-ci.org/tstranex/u2f.svg?branch=master)](https://travis-ci.org/tstranex/u2f) + +## Features + +- Native Go implementation +- No dependancies other than the Go standard library +- Token attestation certificate verification + +## Usage + +Please visit http://godoc.org/github.com/tstranex/u2f for the full +documentation. + +### How to enrol a new token + +```go +app_id := "http://localhost" + +// Send registration request to the browser. +c, _ := NewChallenge(app_id, []string{app_id}) +req, _ := c.RegisterRequest() + +// Read response from the browser. +var resp RegisterResponse +reg, err := Register(resp, c, nil) +if err != nil { + // Registration failed. +} + +// Store registration in the database. +``` + +### How to perform an authentication + +```go +// Fetch registration and counter from the database. +var reg Registration +var counter uint32 + +// Send authentication request to the browser. +c, _ := NewChallenge(app_id, []string{app_id}) +req, _ := c.SignRequest(reg) + +// Read response from the browser. +var resp SignResponse +newCounter, err := reg.Authenticate(resp, c, counter) +if err != nil { + // Authentication failed. +} + +// Store updated counter in the database. +``` + +## Installation + +``` +$ go get github.com/tstranex/u2f +``` + +## Example + +See u2fdemo/main.go for an full example server. To run it: + +``` +$ go install github.com/tstranex/u2f/u2fdemo +$ ./bin/u2fdemo +``` + +Open https://localhost:3483 in Chrome. +Ignore the SSL warning (due to the self-signed certificate for localhost). +You can then test registering and authenticating using your token. + +## Changelog + +- 2016-12-18: The package has been updated to work with the new + U2F Javascript 1.1 API specification. This causes some breaking changes. + + `SignRequest` has been replaced by `WebSignRequest` which now includes + multiple registrations. This is useful when the user has multiple devices + registered since you can now authenticate against any of them with a single + request. + + `WebRegisterRequest` has been introduced, which should generally be used + instead of using `RegisterRequest` directly. It includes the list of existing + registrations with the new registration request. If the user's device already + matches one of the existing registrations, it will refuse to re-register. + + `Challenge.RegisterRequest` has been replaced by `NewWebRegisterRequest`. + +## License + +The Go FIDO U2F Library is licensed under the MIT License. diff --git a/vendor/src/github.com/tstranex/u2f/auth.go b/vendor/src/github.com/tstranex/u2f/auth.go new file mode 100644 index 0000000..05c25f5 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/auth.go @@ -0,0 +1,136 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "crypto/ecdsa" + "crypto/sha256" + "encoding/asn1" + "errors" + "math/big" + "time" +) + +// SignRequest creates a request to initiate an authentication. +func (c *Challenge) SignRequest(regs []Registration) *WebSignRequest { + var sr WebSignRequest + sr.AppID = c.AppID + sr.Challenge = encodeBase64(c.Challenge) + for _, r := range regs { + rk := getRegisteredKey(c.AppID, r) + sr.RegisteredKeys = append(sr.RegisteredKeys, rk) + } + return &sr +} + +// ErrCounterTooLow is raised when the counter value received from the device is +// lower than last stored counter value. This may indicate that the device has +// been cloned (or is malfunctioning). The application may choose to disable +// the particular device as precaution. +var ErrCounterTooLow = errors.New("u2f: counter too low") + +// Authenticate validates a SignResponse authentication response. +// An error is returned if any part of the response fails to validate. +// The counter should be the counter associated with appropriate device +// (i.e. resp.KeyHandle). +// The latest counter value is returned, which the caller should store. +func (reg *Registration) Authenticate(resp SignResponse, c Challenge, counter uint32) (newCounter uint32, err error) { + if time.Now().Sub(c.Timestamp) > timeout { + return 0, errors.New("u2f: challenge has expired") + } + if resp.KeyHandle != encodeBase64(reg.KeyHandle) { + return 0, errors.New("u2f: wrong key handle") + } + + sigData, err := decodeBase64(resp.SignatureData) + if err != nil { + return 0, err + } + + clientData, err := decodeBase64(resp.ClientData) + if err != nil { + return 0, err + } + + ar, err := parseSignResponse(sigData) + if err != nil { + return 0, err + } + + if ar.Counter < counter { + return 0, ErrCounterTooLow + } + + if err := verifyClientData(clientData, c); err != nil { + return 0, err + } + + if err := verifyAuthSignature(*ar, ®.PubKey, c.AppID, clientData); err != nil { + return 0, err + } + + if !ar.UserPresenceVerified { + return 0, errors.New("u2f: user was not present") + } + + return ar.Counter, nil +} + +type ecdsaSig struct { + R, S *big.Int +} + +type authResp struct { + UserPresenceVerified bool + Counter uint32 + sig ecdsaSig + raw []byte +} + +func parseSignResponse(sd []byte) (*authResp, error) { + if len(sd) < 5 { + return nil, errors.New("u2f: data is too short") + } + + var ar authResp + + userPresence := sd[0] + if userPresence|1 != 1 { + return nil, errors.New("u2f: invalid user presence byte") + } + ar.UserPresenceVerified = userPresence == 1 + + ar.Counter = uint32(sd[1])<<24 | uint32(sd[2])<<16 | uint32(sd[3])<<8 | uint32(sd[4]) + + ar.raw = sd[:5] + + rest, err := asn1.Unmarshal(sd[5:], &ar.sig) + if err != nil { + return nil, err + } + if len(rest) != 0 { + return nil, errors.New("u2f: trailing data") + } + + return &ar, nil +} + +func verifyAuthSignature(ar authResp, pubKey *ecdsa.PublicKey, appID string, clientData []byte) error { + appParam := sha256.Sum256([]byte(appID)) + challenge := sha256.Sum256(clientData) + + var buf []byte + buf = append(buf, appParam[:]...) + buf = append(buf, ar.raw...) + buf = append(buf, challenge[:]...) + hash := sha256.Sum256(buf) + + if !ecdsa.Verify(pubKey, hash[:], ar.sig.R, ar.sig.S) { + return errors.New("u2f: invalid signature") + } + + return nil +} diff --git a/vendor/src/github.com/tstranex/u2f/auth_test.go b/vendor/src/github.com/tstranex/u2f/auth_test.go new file mode 100644 index 0000000..69bce77 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/auth_test.go @@ -0,0 +1,36 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "crypto/ecdsa" + "crypto/elliptic" + "encoding/hex" + "testing" +) + +func TestSignExample(t *testing.T) { + // Example 8.2 in FIDO U2F Raw Message Formats. + + signResp, _ := hex.DecodeString("0100000001304402204b5f0cd17534cedd8c34ee09570ef542a353df4436030ce43d406de870b847780220267bb998fac9b7266eb60e7cb0b5eabdfd5ba9614f53c7b22272ec10047a923f") + + ar, err := parseSignResponse(signResp) + if err != nil { + t.Error(err) + } + + pubKeyBytes, _ := hex.DecodeString("04d368f1b665bade3c33a20f1e429c7750d5033660c019119d29aa4ba7abc04aa7c80a46bbe11ca8cb5674d74f31f8a903f6bad105fb6ab74aefef4db8b0025e1d") + x, y := elliptic.Unmarshal(elliptic.P256(), pubKeyBytes) + pubKey := &ecdsa.PublicKey{Curve: elliptic.P256(), X: x, Y: y} + + const appID = "https://gstatic.com/securitykey/a/example.com" + const clientData = "{\"typ\":\"navigator.id.getAssertion\",\"challenge\":\"opsXqUifDriAAmWclinfbS0e-USY0CgyJHe_Otd7z8o\",\"cid_pubkey\":{\"kty\":\"EC\",\"crv\":\"P-256\",\"x\":\"HzQwlfXX7Q4S5MtCCnZUNBw3RMzPO9tOyWjBqRl4tJ8\",\"y\":\"XVguGFLIZx1fXg3wNqfdbn75hi4-_7-BxhMljw42Ht4\"},\"origin\":\"http://example.com\"}" + + err = verifyAuthSignature(*ar, pubKey, appID, []byte(clientData)) + if err != nil { + t.Error(err) + } +} diff --git a/vendor/src/github.com/tstranex/u2f/certs.go b/vendor/src/github.com/tstranex/u2f/certs.go new file mode 100644 index 0000000..14d745a --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/certs.go @@ -0,0 +1,89 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "crypto/x509" + "log" +) + +const plugUpCert = `-----BEGIN CERTIFICATE----- +MIIBrjCCAVSgAwIBAgIJAMGSvUZlGSGVMAoGCCqGSM49BAMCMDIxMDAuBgNVBAMM +J1BsdWctdXAgRklETyBJbnRlcm5hbCBBdHRlc3RhdGlvbiBDQSAjMTAeFw0xNDA5 +MjMxNjM3NTFaFw0zNDA5MjMxNjM3NTFaMDIxMDAuBgNVBAMMJ1BsdWctdXAgRklE +TyBJbnRlcm5hbCBBdHRlc3RhdGlvbiBDQSAjMTBZMBMGByqGSM49AgEGCCqGSM49 +AwEHA0IABH9mscDgEHo4AUh7J8JHqRxsSVxbvsbe6Pxy5cUFKfQlWNjxRrZcbhOb +UY3WsAwmKuUdOcghbpTILhdp8LG9z5GjUzBRMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFM+nRPKhYlDwOemShePaUOd9sDqoMB8GA1UdIwQYMBaAFM+nRPKhYlDw +OemShePaUOd9sDqoMAoGCCqGSM49BAMCA0gAMEUCIQDVzqnX1rgvyJaZ7WZUm1ED +hJKSsDxRXEnH+/voqpq/zgIgH4RUR6vr9YNrkzuCq5R07gF7P4qhtg/4jy+dhl7o +NAU= +-----END CERTIFICATE----- +` + +const neowaveCert = `-----BEGIN CERTIFICATE----- +MIICJDCCAcugAwIBAgIJAIo+0R9DGvSBMAoGCCqGSM49BAMCMG8xCzAJBgNVBAYT +AkZSMQ8wDQYDVQQIDAZGcmFuY2UxETAPBgNVBAcMCEdhcmRhbm5lMRAwDgYDVQQK +DAdOZW93YXZlMSowKAYDVQQDDCFOZW93YXZlIEtFWURPIEZJRE8gVTJGIENBIEJh +dGNoIDEwHhcNMTUwMTI4MTA1ODM1WhcNMjUwMTI1MTA1ODM1WjBvMQswCQYDVQQG +EwJGUjEPMA0GA1UECAwGRnJhbmNlMREwDwYDVQQHDAhHYXJkYW5uZTEQMA4GA1UE +CgwHTmVvd2F2ZTEqMCgGA1UEAwwhTmVvd2F2ZSBLRVlETyBGSURPIFUyRiBDQSBC +YXRjaCAxMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEBlUmE1BRE/M/CE/ZCN+x +eutfnVsThMwIDN+4DL9gqXoKCeRMiDQ1zwm/yQS80BYSEz7Du9RU+2mlnyhwhu+f +BqNQME4wHQYDVR0OBBYEFF42te8/iq5HGom4sIhgkJWLq5jkMB8GA1UdIwQYMBaA +FF42te8/iq5HGom4sIhgkJWLq5jkMAwGA1UdEwQFMAMBAf8wCgYIKoZIzj0EAwID +RwAwRAIgVTxBFb2Hclq5Yi5gQp6WoZAcHETfKASvTQVOE88REGQCIA5DcwGVLsZB +QTb94Xgtb/WUieCvmwukFl/gEO15f3uA +-----END CERTIFICATE----- +` + +const yubicoRootCert = `-----BEGIN CERTIFICATE----- +MIIDHjCCAgagAwIBAgIEG0BT9zANBgkqhkiG9w0BAQsFADAuMSwwKgYDVQQDEyNZ +dWJpY28gVTJGIFJvb3QgQ0EgU2VyaWFsIDQ1NzIwMDYzMTAgFw0xNDA4MDEwMDAw +MDBaGA8yMDUwMDkwNDAwMDAwMFowLjEsMCoGA1UEAxMjWXViaWNvIFUyRiBSb290 +IENBIFNlcmlhbCA0NTcyMDA2MzEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC/jwYuhBVlqaiYWEMsrWFisgJ+PtM91eSrpI4TK7U53mwCIawSDHy8vUmk +5N2KAj9abvT9NP5SMS1hQi3usxoYGonXQgfO6ZXyUA9a+KAkqdFnBnlyugSeCOep +8EdZFfsaRFtMjkwz5Gcz2Py4vIYvCdMHPtwaz0bVuzneueIEz6TnQjE63Rdt2zbw +nebwTG5ZybeWSwbzy+BJ34ZHcUhPAY89yJQXuE0IzMZFcEBbPNRbWECRKgjq//qT +9nmDOFVlSRCt2wiqPSzluwn+v+suQEBsUjTGMEd25tKXXTkNW21wIWbxeSyUoTXw +LvGS6xlwQSgNpk2qXYwf8iXg7VWZAgMBAAGjQjBAMB0GA1UdDgQWBBQgIvz0bNGJ +hjgpToksyKpP9xv9oDAPBgNVHRMECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjAN +BgkqhkiG9w0BAQsFAAOCAQEAjvjuOMDSa+JXFCLyBKsycXtBVZsJ4Ue3LbaEsPY4 +MYN/hIQ5ZM5p7EjfcnMG4CtYkNsfNHc0AhBLdq45rnT87q/6O3vUEtNMafbhU6kt +hX7Y+9XFN9NpmYxr+ekVY5xOxi8h9JDIgoMP4VB1uS0aunL1IGqrNooL9mmFnL2k +LVVee6/VR6C5+KSTCMCWppMuJIZII2v9o4dkoZ8Y7QRjQlLfYzd3qGtKbw7xaF1U +sG/5xUb/Btwb2X2g4InpiB/yt/3CpQXpiWX/K4mBvUKiGn05ZsqeY1gx4g0xLBqc +U9psmyPzK+Vsgw2jeRQ5JlKDyqE0hebfC1tvFu0CCrJFcw== +-----END CERTIFICATE----- +` + +const entersektCert = `-----BEGIN CERTIFICATE----- +MIICHjCCAcOgAwIBAgIBADAKBggqhkjOPQQDAjBvMQswCQYDVQQGEwJaQTEVMBMG +A1UECAwMV2VzdGVybiBDYXBlMRUwEwYDVQQHDAxTdGVsbGVuYm9zY2gxEjAQBgNV +BAoMCUVudGVyc2VrdDELMAkGA1UECwwCSVQxETAPBgNVBAMMCFRyYW5zYWt0MB4X +DTE0MTEwMTExMjczNFoXDTE1MTEwMTExMjczNFowbzELMAkGA1UEBhMCWkExFTAT +BgNVBAgMDFdlc3Rlcm4gQ2FwZTEVMBMGA1UEBwwMU3RlbGxlbmJvc2NoMRIwEAYD +VQQKDAlFbnRlcnNla3QxCzAJBgNVBAsMAklUMREwDwYDVQQDDAhUcmFuc2FrdDBZ +MBMGByqGSM49AgEGCCqGSM49AwEHA0IABBh10blFheMZy3k2iqW9TzLhS1DbJ/Xf +DxqQJJkpqTLq7vI+K3O4C20YtN0jsVrj7UylWoSRlPL5F7IkbeQ6aZ6jUDBOMB0G +A1UdDgQWBBQWRFF7mVAipWTdfBWk2B8Dv4Ab4jAfBgNVHSMEGDAWgBQWRFF7mVAi +pWTdfBWk2B8Dv4Ab4jAMBgNVHRMEBTADAQH/MAoGCCqGSM49BAMCA0kAMEYCIQCo +bMURXOxv6pqz6ECBh0zgL2vVhEfTOZJOW0PACGalWgIhAME0LHGi6ZS7z9yzHNqi +cnRb+okM+PIy/hBcBuqTWCbw +-----END CERTIFICATE----- +` + +func mustLoadPool(pemCerts []byte) *x509.CertPool { + p := x509.NewCertPool() + if !p.AppendCertsFromPEM(pemCerts) { + log.Fatal("u2f: Error loading root cert pool.") + return nil + } + return p +} + +var roots = mustLoadPool([]byte(yubicoRootCert + entersektCert + neowaveCert + plugUpCert)) diff --git a/vendor/src/github.com/tstranex/u2f/messages.go b/vendor/src/github.com/tstranex/u2f/messages.go new file mode 100644 index 0000000..a78038d --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/messages.go @@ -0,0 +1,87 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "encoding/json" +) + +// JwkKey represents a public key used by a browser for the Channel ID TLS +// extension. +type JwkKey struct { + KTy string `json:"kty"` + Crv string `json:"crv"` + X string `json:"x"` + Y string `json:"y"` +} + +// ClientData as defined by the FIDO U2F Raw Message Formats specification. +type ClientData struct { + Typ string `json:"typ"` + Challenge string `json:"challenge"` + Origin string `json:"origin"` + CIDPubKey json.RawMessage `json:"cid_pubkey"` +} + +// RegisterRequest as defined by the FIDO U2F Javascript API 1.1. +type RegisterRequest struct { + Version string `json:"version"` + Challenge string `json:"challenge"` +} + +// WebRegisterRequest contains the parameters needed for the u2f.register() +// high-level Javascript API function as defined by the +// FIDO U2F Javascript API 1.1. +type WebRegisterRequest struct { + AppID string `json:"appId"` + RegisterRequests []RegisterRequest `json:"registerRequests"` + RegisteredKeys []RegisteredKey `json:"registeredKeys"` +} + +// RegisterResponse as defined by the FIDO U2F Javascript API 1.1. +type RegisterResponse struct { + Version string `json:"version"` + RegistrationData string `json:"registrationData"` + ClientData string `json:"clientData"` +} + +// RegisteredKey as defined by the FIDO U2F Javascript API 1.1. +type RegisteredKey struct { + Version string `json:"version"` + KeyHandle string `json:"keyHandle"` + AppID string `json:"appId"` +} + +// WebSignRequest contains the parameters needed for the u2f.sign() +// high-level Javascript API function as defined by the +// FIDO U2F Javascript API 1.1. +type WebSignRequest struct { + AppID string `json:"appId"` + Challenge string `json:"challenge"` + RegisteredKeys []RegisteredKey `json:"registeredKeys"` +} + +// SignResponse as defined by the FIDO U2F Javascript API 1.1. +type SignResponse struct { + KeyHandle string `json:"keyHandle"` + SignatureData string `json:"signatureData"` + ClientData string `json:"clientData"` +} + +// TrustedFacets as defined by the FIDO AppID and Facet Specification. +type TrustedFacets struct { + Version struct { + Major int `json:"major"` + Minor int `json:"minor"` + } `json:"version"` + Ids []string `json:"ids"` +} + +// TrustedFacetsEndpoint is a container of TrustedFacets. +// It is used as the response for an appId URL endpoint. +type TrustedFacetsEndpoint struct { + TrustedFacets []TrustedFacets `json:"trustedFacets"` +} diff --git a/vendor/src/github.com/tstranex/u2f/register.go b/vendor/src/github.com/tstranex/u2f/register.go new file mode 100644 index 0000000..cb81c38 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/register.go @@ -0,0 +1,210 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "crypto/ecdsa" + "crypto/elliptic" + "crypto/sha256" + "crypto/x509" + "encoding/asn1" + "errors" + "time" +) + +// Registration represents a single enrolment or pairing between an +// application and a token. This data will typically be stored in a database. +type Registration struct { + // Raw serialized registration data as received from the token. + Raw []byte + + KeyHandle []byte + PubKey ecdsa.PublicKey + + // AttestationCert can be nil for Authenticate requests. + AttestationCert *x509.Certificate +} + +// Config contains configurable options for the package. +type Config struct { + // SkipAttestationVerify controls whether the token attestation + // certificate should be verified on registration. Ideally it should + // always be verified. However, there is currently no public list of + // trusted attestation root certificates so it may be necessary to skip. + SkipAttestationVerify bool + + // RootAttestationCertPool overrides the default root certificates used + // to verify client attestations. If nil, this defaults to the roots that are + // bundled in this library. + RootAttestationCertPool *x509.CertPool +} + +// Register validates a RegisterResponse message to enrol a new token. +// An error is returned if any part of the response fails to validate. +// The returned Registration should be stored by the caller. +func Register(resp RegisterResponse, c Challenge, config *Config) (*Registration, error) { + if config == nil { + config = &Config{} + } + + if time.Now().Sub(c.Timestamp) > timeout { + return nil, errors.New("u2f: challenge has expired") + } + + regData, err := decodeBase64(resp.RegistrationData) + if err != nil { + return nil, err + } + + clientData, err := decodeBase64(resp.ClientData) + if err != nil { + return nil, err + } + + reg, sig, err := parseRegistration(regData) + if err != nil { + return nil, err + } + + if err := verifyClientData(clientData, c); err != nil { + return nil, err + } + + if err := verifyAttestationCert(*reg, config); err != nil { + return nil, err + } + + if err := verifyRegistrationSignature(*reg, sig, c.AppID, clientData); err != nil { + return nil, err + } + + return reg, nil +} + +func parseRegistration(buf []byte) (*Registration, []byte, error) { + if len(buf) < 1+65+1+1+1 { + return nil, nil, errors.New("u2f: data is too short") + } + + var r Registration + r.Raw = buf + + if buf[0] != 0x05 { + return nil, nil, errors.New("u2f: invalid reserved byte") + } + buf = buf[1:] + + x, y := elliptic.Unmarshal(elliptic.P256(), buf[:65]) + if x == nil { + return nil, nil, errors.New("u2f: invalid public key") + } + r.PubKey.Curve = elliptic.P256() + r.PubKey.X = x + r.PubKey.Y = y + buf = buf[65:] + + khLen := int(buf[0]) + buf = buf[1:] + if len(buf) < khLen { + return nil, nil, errors.New("u2f: invalid key handle") + } + r.KeyHandle = buf[:khLen] + buf = buf[khLen:] + + // The length of the x509 cert isn't specified so it has to be inferred + // by parsing. We can't use x509.ParseCertificate yet because it returns + // an error if there are any trailing bytes. So parse raw asn1 as a + // workaround to get the length. + sig, err := asn1.Unmarshal(buf, &asn1.RawValue{}) + if err != nil { + return nil, nil, err + } + + buf = buf[:len(buf)-len(sig)] + cert, err := x509.ParseCertificate(buf) + if err != nil { + return nil, nil, err + } + r.AttestationCert = cert + + return &r, sig, nil +} + +// UnmarshalBinary implements encoding.BinaryMarshaler. +func (r *Registration) UnmarshalBinary(data []byte) error { + reg, _, err := parseRegistration(data) + if err != nil { + return err + } + *r = *reg + return nil +} + +// MarshalBinary implements encoding.BinaryUnmarshaler. +func (r *Registration) MarshalBinary() ([]byte, error) { + return r.Raw, nil +} + +func verifyAttestationCert(r Registration, config *Config) error { + if config.SkipAttestationVerify { + return nil + } + rootCertPool := roots + if config.RootAttestationCertPool != nil { + rootCertPool = config.RootAttestationCertPool + } + + opts := x509.VerifyOptions{Roots: rootCertPool} + _, err := r.AttestationCert.Verify(opts) + return err +} + +func verifyRegistrationSignature( + r Registration, signature []byte, appid string, clientData []byte) error { + + appParam := sha256.Sum256([]byte(appid)) + challenge := sha256.Sum256(clientData) + + buf := []byte{0} + buf = append(buf, appParam[:]...) + buf = append(buf, challenge[:]...) + buf = append(buf, r.KeyHandle...) + pk := elliptic.Marshal(r.PubKey.Curve, r.PubKey.X, r.PubKey.Y) + buf = append(buf, pk...) + + return r.AttestationCert.CheckSignature( + x509.ECDSAWithSHA256, buf, signature) +} + +func getRegisteredKey(appID string, r Registration) RegisteredKey { + return RegisteredKey{ + Version: u2fVersion, + KeyHandle: encodeBase64(r.KeyHandle), + AppID: appID, + } +} + +// NewWebRegisterRequest creates a request to enrol a new token. +// regs is the list of the user's existing registration. The browser will +// refuse to re-register a device if it has an existing registration. +func NewWebRegisterRequest(c *Challenge, regs []Registration) *WebRegisterRequest { + req := RegisterRequest{ + Version: u2fVersion, + Challenge: encodeBase64(c.Challenge), + } + + rr := WebRegisterRequest{ + AppID: c.AppID, + RegisterRequests: []RegisterRequest{req}, + } + + for _, r := range regs { + rk := getRegisteredKey(c.AppID, r) + rr.RegisteredKeys = append(rr.RegisteredKeys, rk) + } + + return &rr +} diff --git a/vendor/src/github.com/tstranex/u2f/register_test.go b/vendor/src/github.com/tstranex/u2f/register_test.go new file mode 100644 index 0000000..bb35698 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/register_test.go @@ -0,0 +1,100 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "bytes" + "crypto/elliptic" + "encoding/hex" + "testing" +) + +const testRegRespHex = "0504b174bc49c7ca254b70d2e5c207cee9cf174820ebd77ea3c65508c26da51b657c1cc6b952f8621697936482da0a6d3d3826a59095daf6cd7c03e2e60385d2f6d9402a552dfdb7477ed65fd84133f86196010b2215b57da75d315b7b9e8fe2e3925a6019551bab61d16591659cbaf00b4950f7abfe6660e2e006f76868b772d70c253082013c3081e4a003020102020a47901280001155957352300a06082a8648ce3d0403023017311530130603550403130c476e756262792050696c6f74301e170d3132303831343138323933325a170d3133303831343138323933325a3031312f302d0603550403132650696c6f74476e756262792d302e342e312d34373930313238303030313135353935373335323059301306072a8648ce3d020106082a8648ce3d030107034200048d617e65c9508e64bcc5673ac82a6799da3c1446682c258c463fffdf58dfd2fa3e6c378b53d795c4a4dffb4199edd7862f23abaf0203b4b8911ba0569994e101300a06082a8648ce3d0403020347003044022060cdb6061e9c22262d1aac1d96d8c70829b2366531dda268832cb836bcd30dfa0220631b1459f09e6330055722c8d89b7f48883b9089b88d60d1d9795902b30410df304502201471899bcc3987e62e8202c9b39c33c19033f7340352dba80fcab017db9230e402210082677d673d891933ade6f617e5dbde2e247e70423fd5ad7804a6d3d3961ef871" + +func TestRegistrationExample(t *testing.T) { + // Example 8.1 in FIDO U2F Raw Message Formats. + + regResp, _ := hex.DecodeString(testRegRespHex) + + r, sig, err := parseRegistration(regResp) + if err != nil { + t.Errorf("ParseRegistration error: %v", err) + } + + const expectedKeyHandle = "2a552dfdb7477ed65fd84133f86196010b2215b57da75d315b7b9e8fe2e3925a6019551bab61d16591659cbaf00b4950f7abfe6660e2e006f76868b772d70c25" + actualKeyHandle := hex.EncodeToString(r.KeyHandle) + if actualKeyHandle != expectedKeyHandle { + t.Errorf("unexpected key handle: %s vs %s", + actualKeyHandle, expectedKeyHandle) + } + + const expectedAttestationCert = "3082013c3081e4a003020102020a47901280001155957352300a06082a8648ce3d0403023017311530130603550403130c476e756262792050696c6f74301e170d3132303831343138323933325a170d3133303831343138323933325a3031312f302d0603550403132650696c6f74476e756262792d302e342e312d34373930313238303030313135353935373335323059301306072a8648ce3d020106082a8648ce3d030107034200048d617e65c9508e64bcc5673ac82a6799da3c1446682c258c463fffdf58dfd2fa3e6c378b53d795c4a4dffb4199edd7862f23abaf0203b4b8911ba0569994e101300a06082a8648ce3d0403020347003044022060cdb6061e9c22262d1aac1d96d8c70829b2366531dda268832cb836bcd30dfa0220631b1459f09e6330055722c8d89b7f48883b9089b88d60d1d9795902b30410df" + actualAttestationCert := hex.EncodeToString(r.AttestationCert.Raw) + if actualAttestationCert != expectedAttestationCert { + t.Errorf("unexpected attestation cert: %s vs %s", + actualAttestationCert, expectedAttestationCert) + } + + const expectedSig = "304502201471899bcc3987e62e8202c9b39c33c19033f7340352dba80fcab017db9230e402210082677d673d891933ade6f617e5dbde2e247e70423fd5ad7804a6d3d3961ef871" + actualSig := hex.EncodeToString(sig) + if actualSig != expectedSig { + t.Errorf("unexpected signature: %s vs %s", + actualSig, expectedSig) + } + + const expectedPubKey = "04b174bc49c7ca254b70d2e5c207cee9cf174820ebd77ea3c65508c26da51b657c1cc6b952f8621697936482da0a6d3d3826a59095daf6cd7c03e2e60385d2f6d9" + actualPubKey := hex.EncodeToString( + elliptic.Marshal(r.PubKey.Curve, r.PubKey.X, r.PubKey.Y)) + if actualPubKey != expectedPubKey { + t.Errorf("unexpected pubkey: %s vs %s", + actualPubKey, expectedPubKey) + } + + const appID = "http://example.com" + const clientData = "{\"typ\":\"navigator.id.finishEnrollment\",\"challenge\":\"vqrS6WXDe1JUs5_c3i4-LkKIHRr-3XVb3azuA5TifHo\",\"cid_pubkey\":{\"kty\":\"EC\",\"crv\":\"P-256\",\"x\":\"HzQwlfXX7Q4S5MtCCnZUNBw3RMzPO9tOyWjBqRl4tJ8\",\"y\":\"XVguGFLIZx1fXg3wNqfdbn75hi4-_7-BxhMljw42Ht4\"},\"origin\":\"http://example.com\"}" + err = verifyRegistrationSignature(*r, sig, appID, []byte(clientData)) + if err != nil { + t.Errorf("VerifySignature error: %v", err) + } +} + +func TestSerialize(t *testing.T) { + regResp, _ := hex.DecodeString(testRegRespHex) + + reg, _, err := parseRegistration(regResp) + if err != nil { + t.Errorf("ParseRegistration error: %v", err) + } + + buf, err := reg.MarshalBinary() + if err != nil { + t.Errorf("MarshalBinary error: %v", err) + } + + var reg2 Registration + if err := reg2.UnmarshalBinary(buf); err != nil { + t.Errorf("UnmarshalBinary error: %v", err) + } + + if bytes.Compare(reg.Raw, reg2.Raw) != 0 { + t.Errorf("reg.Raw differs") + } + if bytes.Compare(reg.KeyHandle, reg2.KeyHandle) != 0 { + t.Errorf("reg.KeyHandle differs") + } + if reg.PubKey.Curve != reg2.PubKey.Curve { + t.Errorf("reg.PubKey.Curve differs") + } + if reg.PubKey.X.Cmp(reg2.PubKey.X) != 0 { + t.Errorf("reg.PubKey.X differs") + } + if reg.PubKey.Y.Cmp(reg2.PubKey.Y) != 0 { + t.Errorf("reg.PubKey.Y differs") + } + if bytes.Compare(reg.AttestationCert.Raw, reg2.AttestationCert.Raw) != 0 { + t.Errorf("reg.AttestationCert differs") + } +} diff --git a/vendor/src/github.com/tstranex/u2f/u2f_test.go b/vendor/src/github.com/tstranex/u2f/u2f_test.go new file mode 100644 index 0000000..c53d817 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/u2f_test.go @@ -0,0 +1,64 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "encoding/json" + "testing" + "time" +) + +func TestFull(t *testing.T) { + // These are actual responses from a Yubikey with Chrome. + + const appID = "http://localhost:3483" + + c1, _ := decodeBase64("s4UJ3wkN80p4wLjyI2Guv-_a-s7LV54Ic9PAZvHo_lM") + registerChallenge := Challenge{ + Challenge: c1, + Timestamp: time.Now().Add(-time.Minute), + AppID: appID, + TrustedFacets: []string{appID}, + } + + const regRespJSON = "{\"registrationData\":\"BQTD17IP7bZ3Gcd7l5Ao4qqohsUcm0bcXgHLpn0pv2VWNl7SBtNFo0wEoAdMrHlFXGzJgQz_bRZaKXZfHyd3fAo0QJmZkSv9ZbTKz7TVO6jnOcKGrSHb15JDatMMFxHxN5BR56CE3sj10jtGOY7szQIi4RGU6kONIuriAarxuEFJ5IswggIcMIIBBqADAgECAgQk26tAMAsGCSqGSIb3DQEBCzAuMSwwKgYDVQQDEyNZdWJpY28gVTJGIFJvb3QgQ0EgU2VyaWFsIDQ1NzIwMDYzMTAgFw0xNDA4MDEwMDAwMDBaGA8yMDUwMDkwNDAwMDAwMFowKzEpMCcGA1UEAwwgWXViaWNvIFUyRiBFRSBTZXJpYWwgMTM1MDMyNzc4ODgwWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAQCsJS-NH1HeUHEd46-xcpN7SpHn6oeb-w5r-veDCBwy1vUvWnJanjjv4dR_rV5G436ysKUAXUcsVe5fAnkORo2oxIwEDAOBgorBgEEAYLECgEBBAAwCwYJKoZIhvcNAQELA4IBAQCjY64OmDrzC7rxLIst81pZvxy7ShsPy2jEhFWEkPaHNFhluNsCacNG5VOITCxWB68OonuQrIzx70MfcqwYnbIcgkkUvxeIpVEaM9B7TI40ZHzp9h4VFqmps26QCkAgYfaapG4SxTK5k_lCPvqqTPmjtlS03d7ykkpUj9WZlVEN1Pf02aTVIZOHPHHJuH6GhT6eLadejwxtKDBTdNTv3V4UlvjDOQYQe9aL1jUNqtLDeBHso8pDvJMLc0CX3vadaI2UVQxM-xip4kuGouXYj0mYmaCbzluBDFNsrzkNyL3elg3zMMrKvAUhoYMjlX_-vKWcqQsgsQ0JtSMcWMJ-umeDMEQCIApTYovLr8citOpIKkyNidCQz7UeSOWNMlPBB-s3r4G9AiAskXkh7iale4QDe6a-675L3xzohYb8Fcvz3gH6dkDLvw\",\"version\":\"U2F_V2\",\"challenge\":\"s4UJ3wkN80p4wLjyI2Guv-_a-s7LV54Ic9PAZvHo_lM\",\"appId\":\"http://localhost:3483\",\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZmluaXNoRW5yb2xsbWVudCIsImNoYWxsZW5nZSI6InM0VUozd2tOODBwNHdManlJMkd1di1fYS1zN0xWNTRJYzlQQVp2SG9fbE0iLCJvcmlnaW4iOiJodHRwOi8vbG9jYWxob3N0OjM0ODMiLCJjaWRfcHVia2V5IjoiIn0\"}" + var regResp RegisterResponse + if err := json.Unmarshal([]byte(regRespJSON), ®Resp); err != nil { + t.Error(err) + } + + reg, err := Register(regResp, registerChallenge, nil) + if err != nil { + t.Error(err) + } + + c2, _ := decodeBase64("PzN6SGiUaeypErE3SCHeRlkRxVwfWlGVi35gfq6LsdY") + authChallenge := Challenge{ + Challenge: c2, + Timestamp: time.Now().Add(-time.Minute), + AppID: appID, + TrustedFacets: []string{appID}, + } + + const signRespJSON = "{\"keyHandle\":\"mZmRK_1ltMrPtNU7qOc5woatIdvXkkNq0wwXEfE3kFHnoITeyPXSO0Y5juzNAiLhEZTqQ40i6uIBqvG4QUnkiw\",\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiUHpONlNHaVVhZXlwRXJFM1NDSGVSbGtSeFZ3ZldsR1ZpMzVnZnE2THNkWSIsIm9yaWdpbiI6Imh0dHA6Ly9sb2NhbGhvc3Q6MzQ4MyIsImNpZF9wdWJrZXkiOiIifQ\",\"signatureData\":\"AQAAAAYwRAIgBuyafOXoc9Q7fARcs2JbCZdtnMzVCyeJC-J-2Im1IBsCIDxkzmvPX9RCY8uts4wM1y4wEX9LmNH2Mz_VFd-JdyGE\"}" + var signResp SignResponse + if err := json.Unmarshal([]byte(signRespJSON), &signResp); err != nil { + t.Error(err) + } + + newCounter, err := reg.Authenticate(signResp, authChallenge, 0) + if err != nil { + t.Error(err) + } + if newCounter != 6 { + t.Errorf("Wrong new counter: %d", newCounter) + } + + newCounter, err = reg.Authenticate(signResp, authChallenge, 7) + if err == nil { + t.Errorf("Expected error due to decreasing counter") + } +} diff --git a/vendor/src/github.com/tstranex/u2f/u2fdemo/certs.go b/vendor/src/github.com/tstranex/u2f/u2fdemo/certs.go new file mode 100644 index 0000000..4a260ea --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/u2fdemo/certs.go @@ -0,0 +1,49 @@ +package main + +const tlsCert = `-----BEGIN CERTIFICATE----- +MIIDBTCCAe2gAwIBAgIJAOkg5B4SWLv4MA0GCSqGSIb3DQEBBQUAMBkxFzAVBgNV +BAMMDmxvY2FsaG9zdDozNDgzMB4XDTE2MDIwMzAxMDU1OFoXDTI2MDEzMTAxMDU1 +OFowGTEXMBUGA1UEAwwObG9jYWxob3N0OjM0ODMwggEiMA0GCSqGSIb3DQEBAQUA +A4IBDwAwggEKAoIBAQDWYO0PMOtoX2N5bZUK6fpuYg3UILf+gFiBpMCHYDAMR3XN +B6Tc2gsyQXxIwfqpadze3NlIVGtbvKKP7kIYaozpAbYbal2yv78Zfoo3N15xTgkT +x8cYPbmnQWw8eNnmnfeTL1RM1swGqaIXxj3oVWigQx9uYp3nFi9m1MExFitfAy5j +s0f603CCj9kS5+eBVXkE/+JnwdKMB8qoa+Ckl9B+Cc6MsPvuWRYW3xuqaS2sjSs6 +EALa8qM4ANti+VJrceIP9FZC/E8jpTgB08QC94lG/f+nBFANR4Xe7UmvN5/m1+EX +6v9Q0uWiWecfVg8jVfWaGOn3uWX/M1bd/3/+bunrAgMBAAGjUDBOMB0GA1UdDgQW +BBQvoTLNw9umdxq4A6hCL2YkNCbk9TAfBgNVHSMEGDAWgBQvoTLNw9umdxq4A6hC +L2YkNCbk9TAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQDLHassIZs2 +uBbz5AcSEDs/RUl+ibb0VWKiqRYanBKVhFqdIbmN0uowIii4B6J5MzMzShJm9FNb +pErD1qSabNh8YFSD7h6K4QyQMDkCWvQ1jTwkJc4oZ/TaC81e/Gn1ypDi6LsJ7mw2 +mX9PfGltl/KFWaDIrpW3V4Jq9IyHbkKOR3c3Zj5HSTm4dCEojad+/SYfA6t1kPER +7/N56S2n1P9JEGXBljMhjemomFLPLPoFcOS8UxQh01QRZwzboP62XKiLSn+klOqg +aQav964p66HC2P3CdfPJdkeuQGar39MXt59WY5sUtCxLNZYzFItQfoCBqShZM6FF +RgAkWpAZ0xpQ +-----END CERTIFICATE-----` + +const tlsKey = `-----BEGIN RSA PRIVATE KEY----- +MIIEpQIBAAKCAQEA1mDtDzDraF9jeW2VCun6bmIN1CC3/oBYgaTAh2AwDEd1zQek +3NoLMkF8SMH6qWnc3tzZSFRrW7yij+5CGGqM6QG2G2pdsr+/GX6KNzdecU4JE8fH +GD25p0FsPHjZ5p33ky9UTNbMBqmiF8Y96FVooEMfbmKd5xYvZtTBMRYrXwMuY7NH ++tNwgo/ZEufngVV5BP/iZ8HSjAfKqGvgpJfQfgnOjLD77lkWFt8bqmktrI0rOhAC +2vKjOADbYvlSa3HiD/RWQvxPI6U4AdPEAveJRv3/pwRQDUeF3u1Jrzef5tfhF+r/ +UNLlolnnH1YPI1X1mhjp97ll/zNW3f9//m7p6wIDAQABAoIBAH8/APbnXpORKwZE +WRclUpR6dyLWWOAjZmVtWSoBmgNv1yhfxSeh9Mtbu12kZhhw0b0m8YHROfg1u3gb +P/gmJoWXknQranpS/icvyPKFVvWCEDlBd5eX676vQoOSaCRO10jx6uPBC1FZFvFt +pgllyLh3nwxyVK95p6Et3443Tn8R2eSKhIxiMKZweBuZFEgZTQnh+U9YcciqXPZF +fwtPEels/r3WJ3tOhbRaWyxZYy0kWcE9P/0F6slv6xbQyu2+DolsoAzjMpWPPoAc +LmLXWGwYyMUIwMGM28Wsz06vnjtT4Yft17GySLHX+0j3XkyNOSpyNSfF0HdZ+fuD +vWDsamECgYEA9ePlWVWgOdmnrjjN3mUfsfXXSswgqvLbnPnrrLsiAX9VDaopThAO +3MKOEPlC6DoR8JqeZVKBAXHGkoiAtYwxkA+4xgPMSgSij5Up028PGtJbzRaG1NhG +5jFvfUiMqsKWlOIxF+1yrEOJ2d6S5fmDd77Svy317Q3xl9Xw2WDkoY8CgYEA3zFb +QhKwgi3PFxvMYX+FDsVaUsnee2FJM/gImsfN6BrNBeM1YchZU8QWZSz/8mDtKodI +9pJhu8leZcPwS83YO9bvm/oyk6+6KVY+mctVrjc9ALHpWElQWaOx8IwOCOQ4ryLo +oZtGW7jjf2nc4lOFvwKopcKpsyMLqwq0YVpSy+UCgYEAjTYc76n6A18ZKjfbGt5O +ToBV7NG/7QzdzI/GpgMuK1f5+4f+gqM8NdHRjrPnlcBLrzbMwnmYNsElfd/AswJZ +MFenEKj7uIJi7TyHsbI1JX0rVWObeT7fsLExSuzQQ/zOR6CC+y/VTFLZJvLowAQE +WU+QblSxyDraxQ0LbXt0sccCgYEA0mXgtUSRB+bPFeWqoS5o7Ce2odyS0pQ/QbJL +yj0YKfk51Jb/N5J6QrDSu8XT8VTVvgWSDn6nizKkviIbYBpIAQD5F3ygOQCq6VTX +5nr75iNEamdMpWFXUWky0KP2hwM9PDwYOF/7z3NXYkEVbHV32zxSZxA+kRQ0Z6TL +rgpLitECgYEA53xgtC/EvAZZN376Llj8wY8IymEfJEvI2UR3ojedltLUFwkcevIQ +kv+nvYDmiN66ShdgfQON1RQQXLXYIeCDXAdxVJAJ9b7YDAtlQqV/rTDzrQhIH/ou +y8RWa2m4azhqGuCfK9wpPq7bgodlqNn7oREIsDRQxzTD/gzwxCZ+1rE= +-----END RSA PRIVATE KEY-----` diff --git a/vendor/src/github.com/tstranex/u2f/u2fdemo/main.go b/vendor/src/github.com/tstranex/u2f/u2fdemo/main.go new file mode 100644 index 0000000..44df9a4 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/u2fdemo/main.go @@ -0,0 +1,232 @@ +// FIDO U2F Go Library +// Copyright 2015 The FIDO U2F Go Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package main + +import ( + "crypto/tls" + "encoding/json" + "log" + "net/http" + + "github.com/tstranex/u2f" +) + +const appID = "https://localhost:3483" + +var trustedFacets = []string{appID} + +// Normally these state variables would be stored in a database. +// For the purposes of the demo, we just store them in memory. +var challenge *u2f.Challenge + +var registrations []u2f.Registration +var counter uint32 + +func registerRequest(w http.ResponseWriter, r *http.Request) { + c, err := u2f.NewChallenge(appID, trustedFacets) + if err != nil { + log.Printf("u2f.NewChallenge error: %v", err) + http.Error(w, "error", http.StatusInternalServerError) + return + } + challenge = c + req := u2f.NewWebRegisterRequest(c, registrations) + + log.Printf("registerRequest: %+v", req) + json.NewEncoder(w).Encode(req) +} + +func registerResponse(w http.ResponseWriter, r *http.Request) { + var regResp u2f.RegisterResponse + if err := json.NewDecoder(r.Body).Decode(®Resp); err != nil { + http.Error(w, "invalid response: "+err.Error(), http.StatusBadRequest) + return + } + + if challenge == nil { + http.Error(w, "challenge not found", http.StatusBadRequest) + return + } + + reg, err := u2f.Register(regResp, *challenge, nil) + if err != nil { + log.Printf("u2f.Register error: %v", err) + http.Error(w, "error verifying response", http.StatusInternalServerError) + return + } + + registrations = append(registrations, *reg) + counter = 0 + + log.Printf("Registration success: %+v", reg) + w.Write([]byte("success")) +} + +func signRequest(w http.ResponseWriter, r *http.Request) { + if registrations == nil { + http.Error(w, "registration missing", http.StatusBadRequest) + return + } + + c, err := u2f.NewChallenge(appID, trustedFacets) + if err != nil { + log.Printf("u2f.NewChallenge error: %v", err) + http.Error(w, "error", http.StatusInternalServerError) + return + } + challenge = c + + req := c.SignRequest(registrations) + + log.Printf("Sign request: %+v", req) + json.NewEncoder(w).Encode(req) +} + +func signResponse(w http.ResponseWriter, r *http.Request) { + var signResp u2f.SignResponse + if err := json.NewDecoder(r.Body).Decode(&signResp); err != nil { + http.Error(w, "invalid response: "+err.Error(), http.StatusBadRequest) + return + } + + log.Printf("signResponse: %+v", signResp) + + if challenge == nil { + http.Error(w, "challenge missing", http.StatusBadRequest) + return + } + if registrations == nil { + http.Error(w, "registration missing", http.StatusBadRequest) + return + } + + var err error + for _, reg := range registrations { + newCounter, authErr := reg.Authenticate(signResp, *challenge, counter) + if authErr == nil { + log.Printf("newCounter: %d", newCounter) + counter = newCounter + w.Write([]byte("success")) + return + } + } + + log.Printf("VerifySignResponse error: %v", err) + http.Error(w, "error verifying response", http.StatusInternalServerError) +} + +const indexHTML = ` + + + + + + + + + + +

    FIDO U2F Go Library Demo

    + + + +

    Open Chrome Developer Tools to see debug console logs.

    + + + + + +` + +func indexHandler(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(indexHTML)) +} + +func main() { + http.HandleFunc("/", indexHandler) + http.HandleFunc("/registerRequest", registerRequest) + http.HandleFunc("/registerResponse", registerResponse) + http.HandleFunc("/signRequest", signRequest) + http.HandleFunc("/signResponse", signResponse) + + certs, err := tls.X509KeyPair([]byte(tlsCert), []byte(tlsKey)) + if err != nil { + log.Fatal(err) + } + + log.Printf("Running on %s", appID) + + var s http.Server + s.Addr = ":3483" + s.TLSConfig = &tls.Config{Certificates: []tls.Certificate{certs}} + log.Fatal(s.ListenAndServeTLS("", "")) +} diff --git a/vendor/src/github.com/tstranex/u2f/util.go b/vendor/src/github.com/tstranex/u2f/util.go new file mode 100644 index 0000000..f035aa4 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/util.go @@ -0,0 +1,125 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +/* +Package u2f implements the server-side parts of the +FIDO Universal 2nd Factor (U2F) specification. + +Applications will usually persist Challenge and Registration objects in a +database. + +To enrol a new token: + + app_id := "http://localhost" + c, _ := NewChallenge(app_id, []string{app_id}) + req, _ := u2f.NewWebRegisterRequest(c, existingTokens) + // Send the request to the browser. + var resp RegisterResponse + // Read resp from the browser. + reg, err := Register(resp, c) + if err != nil { + // Registration failed. + } + // Store reg in the database. + +To perform an authentication: + + var regs []Registration + // Fetch regs from the database. + c, _ := NewChallenge(app_id, []string{app_id}) + req, _ := c.SignRequest(regs) + // Send the request to the browser. + var resp SignResponse + // Read resp from the browser. + new_counter, err := reg.Authenticate(resp, c) + if err != nil { + // Authentication failed. + } + reg.Counter = new_counter + // Store updated Registration in the database. + +The FIDO U2F specification can be found here: +https://fidoalliance.org/specifications/download +*/ +package u2f + +import ( + "crypto/rand" + "crypto/subtle" + "encoding/base64" + "encoding/json" + "errors" + "strings" + "time" +) + +const u2fVersion = "U2F_V2" +const timeout = 5 * time.Minute + +func decodeBase64(s string) ([]byte, error) { + for i := 0; i < len(s)%4; i++ { + s += "=" + } + return base64.URLEncoding.DecodeString(s) +} + +func encodeBase64(buf []byte) string { + s := base64.URLEncoding.EncodeToString(buf) + return strings.TrimRight(s, "=") +} + +// Challenge represents a single transaction between the server and +// authenticator. This data will typically be stored in a database. +type Challenge struct { + Challenge []byte + Timestamp time.Time + AppID string + TrustedFacets []string +} + +// NewChallenge generates a challenge for the given application. +func NewChallenge(appID string, trustedFacets []string) (*Challenge, error) { + challenge := make([]byte, 32) + n, err := rand.Read(challenge) + if err != nil { + return nil, err + } + if n != 32 { + return nil, errors.New("u2f: unable to generate random bytes") + } + + var c Challenge + c.Challenge = challenge + c.Timestamp = time.Now() + c.AppID = appID + c.TrustedFacets = trustedFacets + return &c, nil +} + +func verifyClientData(clientData []byte, challenge Challenge) error { + var cd ClientData + if err := json.Unmarshal(clientData, &cd); err != nil { + return err + } + + foundFacetID := false + for _, facetID := range challenge.TrustedFacets { + if facetID == cd.Origin { + foundFacetID = true + break + } + } + if !foundFacetID { + return errors.New("u2f: untrusted facet id") + } + + c := encodeBase64(challenge.Challenge) + if len(c) != len(cd.Challenge) || + subtle.ConstantTimeCompare([]byte(c), []byte(cd.Challenge)) != 1 { + return errors.New("u2f: challenge does not match") + } + + return nil +} diff --git a/vendor/src/github.com/tstranex/u2f/util_test.go b/vendor/src/github.com/tstranex/u2f/util_test.go new file mode 100644 index 0000000..31f0b03 --- /dev/null +++ b/vendor/src/github.com/tstranex/u2f/util_test.go @@ -0,0 +1,40 @@ +// Go FIDO U2F Library +// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved. +// Use of this source code is governed by the MIT +// license that can be found in the LICENSE file. + +package u2f + +import ( + "testing" +) + +func TestVerifyClientDataWithoutChannelId(t *testing.T) { + const clientData = "{\"typ\":\"navigator.id.finishEnrollment\",\"challenge\":\"KLWuflMwjv5UfJ9Ua1Kaaw\",\"origin\":\"http://localhost:3483\",\"cid_pubkey\":\"\"}" + + cbytes, _ := decodeBase64("KLWuflMwjv5UfJ9Ua1Kaaw") + c := Challenge{ + Challenge: cbytes, + TrustedFacets: []string{"http://localhost:3483"}, + } + + err := verifyClientData([]byte(clientData), c) + if err != nil { + t.Error(err) + } +} + +func TestVerifyClientDataWithChannelId(t *testing.T) { + const clientData = "{\"typ\":\"navigator.id.finishEnrollment\",\"challenge\":\"vqrS6WXDe1JUs5_c3i4-LkKIHRr-3XVb3azuA5TifHo\",\"cid_pubkey\":{\"kty\":\"EC\",\"crv\":\"P-256\",\"x\":\"HzQwlfXX7Q4S5MtCCnZUNBw3RMzPO9tOyWjBqRl4tJ8\",\"y\":\"XVguGFLIZx1fXg3wNqfdbn75hi4-_7-BxhMljw42Ht4\"},\"origin\":\"http://example.com\"}" + + cbytes, _ := decodeBase64("vqrS6WXDe1JUs5_c3i4-LkKIHRr-3XVb3azuA5TifHo") + c := Challenge{ + Challenge: cbytes, + TrustedFacets: []string{"http://example.com"}, + } + + err := verifyClientData([]byte(clientData), c) + if err != nil { + t.Error(err) + } +} diff --git a/vendor/src/golang.org/x/crypto/bcrypt/base64.go b/vendor/src/golang.org/x/crypto/bcrypt/base64.go new file mode 100644 index 0000000..fc31160 --- /dev/null +++ b/vendor/src/golang.org/x/crypto/bcrypt/base64.go @@ -0,0 +1,35 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bcrypt + +import "encoding/base64" + +const alphabet = "./ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" + +var bcEncoding = base64.NewEncoding(alphabet) + +func base64Encode(src []byte) []byte { + n := bcEncoding.EncodedLen(len(src)) + dst := make([]byte, n) + bcEncoding.Encode(dst, src) + for dst[n-1] == '=' { + n-- + } + return dst[:n] +} + +func base64Decode(src []byte) ([]byte, error) { + numOfEquals := 4 - (len(src) % 4) + for i := 0; i < numOfEquals; i++ { + src = append(src, '=') + } + + dst := make([]byte, bcEncoding.DecodedLen(len(src))) + n, err := bcEncoding.Decode(dst, src) + if err != nil { + return nil, err + } + return dst[:n], nil +} diff --git a/vendor/src/golang.org/x/crypto/bcrypt/bcrypt.go b/vendor/src/golang.org/x/crypto/bcrypt/bcrypt.go new file mode 100644 index 0000000..f8b807f --- /dev/null +++ b/vendor/src/golang.org/x/crypto/bcrypt/bcrypt.go @@ -0,0 +1,294 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package bcrypt implements Provos and Mazières's bcrypt adaptive hashing +// algorithm. See http://www.usenix.org/event/usenix99/provos/provos.pdf +package bcrypt // import "golang.org/x/crypto/bcrypt" + +// The code is a port of Provos and Mazières's C implementation. +import ( + "crypto/rand" + "crypto/subtle" + "errors" + "fmt" + "golang.org/x/crypto/blowfish" + "io" + "strconv" +) + +const ( + MinCost int = 4 // the minimum allowable cost as passed in to GenerateFromPassword + MaxCost int = 31 // the maximum allowable cost as passed in to GenerateFromPassword + DefaultCost int = 10 // the cost that will actually be set if a cost below MinCost is passed into GenerateFromPassword +) + +// The error returned from CompareHashAndPassword when a password and hash do +// not match. +var ErrMismatchedHashAndPassword = errors.New("crypto/bcrypt: hashedPassword is not the hash of the given password") + +// The error returned from CompareHashAndPassword when a hash is too short to +// be a bcrypt hash. +var ErrHashTooShort = errors.New("crypto/bcrypt: hashedSecret too short to be a bcrypted password") + +// The error returned from CompareHashAndPassword when a hash was created with +// a bcrypt algorithm newer than this implementation. +type HashVersionTooNewError byte + +func (hv HashVersionTooNewError) Error() string { + return fmt.Sprintf("crypto/bcrypt: bcrypt algorithm version '%c' requested is newer than current version '%c'", byte(hv), majorVersion) +} + +// The error returned from CompareHashAndPassword when a hash starts with something other than '$' +type InvalidHashPrefixError byte + +func (ih InvalidHashPrefixError) Error() string { + return fmt.Sprintf("crypto/bcrypt: bcrypt hashes must start with '$', but hashedSecret started with '%c'", byte(ih)) +} + +type InvalidCostError int + +func (ic InvalidCostError) Error() string { + return fmt.Sprintf("crypto/bcrypt: cost %d is outside allowed range (%d,%d)", int(ic), int(MinCost), int(MaxCost)) +} + +const ( + majorVersion = '2' + minorVersion = 'a' + maxSaltSize = 16 + maxCryptedHashSize = 23 + encodedSaltSize = 22 + encodedHashSize = 31 + minHashSize = 59 +) + +// magicCipherData is an IV for the 64 Blowfish encryption calls in +// bcrypt(). It's the string "OrpheanBeholderScryDoubt" in big-endian bytes. +var magicCipherData = []byte{ + 0x4f, 0x72, 0x70, 0x68, + 0x65, 0x61, 0x6e, 0x42, + 0x65, 0x68, 0x6f, 0x6c, + 0x64, 0x65, 0x72, 0x53, + 0x63, 0x72, 0x79, 0x44, + 0x6f, 0x75, 0x62, 0x74, +} + +type hashed struct { + hash []byte + salt []byte + cost int // allowed range is MinCost to MaxCost + major byte + minor byte +} + +// GenerateFromPassword returns the bcrypt hash of the password at the given +// cost. If the cost given is less than MinCost, the cost will be set to +// DefaultCost, instead. Use CompareHashAndPassword, as defined in this package, +// to compare the returned hashed password with its cleartext version. +func GenerateFromPassword(password []byte, cost int) ([]byte, error) { + p, err := newFromPassword(password, cost) + if err != nil { + return nil, err + } + return p.Hash(), nil +} + +// CompareHashAndPassword compares a bcrypt hashed password with its possible +// plaintext equivalent. Returns nil on success, or an error on failure. +func CompareHashAndPassword(hashedPassword, password []byte) error { + p, err := newFromHash(hashedPassword) + if err != nil { + return err + } + + otherHash, err := bcrypt(password, p.cost, p.salt) + if err != nil { + return err + } + + otherP := &hashed{otherHash, p.salt, p.cost, p.major, p.minor} + if subtle.ConstantTimeCompare(p.Hash(), otherP.Hash()) == 1 { + return nil + } + + return ErrMismatchedHashAndPassword +} + +// Cost returns the hashing cost used to create the given hashed +// password. When, in the future, the hashing cost of a password system needs +// to be increased in order to adjust for greater computational power, this +// function allows one to establish which passwords need to be updated. +func Cost(hashedPassword []byte) (int, error) { + p, err := newFromHash(hashedPassword) + if err != nil { + return 0, err + } + return p.cost, nil +} + +func newFromPassword(password []byte, cost int) (*hashed, error) { + if cost < MinCost { + cost = DefaultCost + } + p := new(hashed) + p.major = majorVersion + p.minor = minorVersion + + err := checkCost(cost) + if err != nil { + return nil, err + } + p.cost = cost + + unencodedSalt := make([]byte, maxSaltSize) + _, err = io.ReadFull(rand.Reader, unencodedSalt) + if err != nil { + return nil, err + } + + p.salt = base64Encode(unencodedSalt) + hash, err := bcrypt(password, p.cost, p.salt) + if err != nil { + return nil, err + } + p.hash = hash + return p, err +} + +func newFromHash(hashedSecret []byte) (*hashed, error) { + if len(hashedSecret) < minHashSize { + return nil, ErrHashTooShort + } + p := new(hashed) + n, err := p.decodeVersion(hashedSecret) + if err != nil { + return nil, err + } + hashedSecret = hashedSecret[n:] + n, err = p.decodeCost(hashedSecret) + if err != nil { + return nil, err + } + hashedSecret = hashedSecret[n:] + + // The "+2" is here because we'll have to append at most 2 '=' to the salt + // when base64 decoding it in expensiveBlowfishSetup(). + p.salt = make([]byte, encodedSaltSize, encodedSaltSize+2) + copy(p.salt, hashedSecret[:encodedSaltSize]) + + hashedSecret = hashedSecret[encodedSaltSize:] + p.hash = make([]byte, len(hashedSecret)) + copy(p.hash, hashedSecret) + + return p, nil +} + +func bcrypt(password []byte, cost int, salt []byte) ([]byte, error) { + cipherData := make([]byte, len(magicCipherData)) + copy(cipherData, magicCipherData) + + c, err := expensiveBlowfishSetup(password, uint32(cost), salt) + if err != nil { + return nil, err + } + + for i := 0; i < 24; i += 8 { + for j := 0; j < 64; j++ { + c.Encrypt(cipherData[i:i+8], cipherData[i:i+8]) + } + } + + // Bug compatibility with C bcrypt implementations. We only encode 23 of + // the 24 bytes encrypted. + hsh := base64Encode(cipherData[:maxCryptedHashSize]) + return hsh, nil +} + +func expensiveBlowfishSetup(key []byte, cost uint32, salt []byte) (*blowfish.Cipher, error) { + + csalt, err := base64Decode(salt) + if err != nil { + return nil, err + } + + // Bug compatibility with C bcrypt implementations. They use the trailing + // NULL in the key string during expansion. + ckey := append(key, 0) + + c, err := blowfish.NewSaltedCipher(ckey, csalt) + if err != nil { + return nil, err + } + + var i, rounds uint64 + rounds = 1 << cost + for i = 0; i < rounds; i++ { + blowfish.ExpandKey(ckey, c) + blowfish.ExpandKey(csalt, c) + } + + return c, nil +} + +func (p *hashed) Hash() []byte { + arr := make([]byte, 60) + arr[0] = '$' + arr[1] = p.major + n := 2 + if p.minor != 0 { + arr[2] = p.minor + n = 3 + } + arr[n] = '$' + n += 1 + copy(arr[n:], []byte(fmt.Sprintf("%02d", p.cost))) + n += 2 + arr[n] = '$' + n += 1 + copy(arr[n:], p.salt) + n += encodedSaltSize + copy(arr[n:], p.hash) + n += encodedHashSize + return arr[:n] +} + +func (p *hashed) decodeVersion(sbytes []byte) (int, error) { + if sbytes[0] != '$' { + return -1, InvalidHashPrefixError(sbytes[0]) + } + if sbytes[1] > majorVersion { + return -1, HashVersionTooNewError(sbytes[1]) + } + p.major = sbytes[1] + n := 3 + if sbytes[2] != '$' { + p.minor = sbytes[2] + n++ + } + return n, nil +} + +// sbytes should begin where decodeVersion left off. +func (p *hashed) decodeCost(sbytes []byte) (int, error) { + cost, err := strconv.Atoi(string(sbytes[0:2])) + if err != nil { + return -1, err + } + err = checkCost(cost) + if err != nil { + return -1, err + } + p.cost = cost + return 3, nil +} + +func (p *hashed) String() string { + return fmt.Sprintf("&{hash: %#v, salt: %#v, cost: %d, major: %c, minor: %c}", string(p.hash), p.salt, p.cost, p.major, p.minor) +} + +func checkCost(cost int) error { + if cost < MinCost || cost > MaxCost { + return InvalidCostError(cost) + } + return nil +} diff --git a/vendor/src/golang.org/x/crypto/bcrypt/bcrypt_test.go b/vendor/src/golang.org/x/crypto/bcrypt/bcrypt_test.go new file mode 100644 index 0000000..f08a6f5 --- /dev/null +++ b/vendor/src/golang.org/x/crypto/bcrypt/bcrypt_test.go @@ -0,0 +1,226 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package bcrypt + +import ( + "bytes" + "fmt" + "testing" +) + +func TestBcryptingIsEasy(t *testing.T) { + pass := []byte("mypassword") + hp, err := GenerateFromPassword(pass, 0) + if err != nil { + t.Fatalf("GenerateFromPassword error: %s", err) + } + + if CompareHashAndPassword(hp, pass) != nil { + t.Errorf("%v should hash %s correctly", hp, pass) + } + + notPass := "notthepass" + err = CompareHashAndPassword(hp, []byte(notPass)) + if err != ErrMismatchedHashAndPassword { + t.Errorf("%v and %s should be mismatched", hp, notPass) + } +} + +func TestBcryptingIsCorrect(t *testing.T) { + pass := []byte("allmine") + salt := []byte("XajjQvNhvvRt5GSeFk1xFe") + expectedHash := []byte("$2a$10$XajjQvNhvvRt5GSeFk1xFeyqRrsxkhBkUiQeg0dt.wU1qD4aFDcga") + + hash, err := bcrypt(pass, 10, salt) + if err != nil { + t.Fatalf("bcrypt blew up: %v", err) + } + if !bytes.HasSuffix(expectedHash, hash) { + t.Errorf("%v should be the suffix of %v", hash, expectedHash) + } + + h, err := newFromHash(expectedHash) + if err != nil { + t.Errorf("Unable to parse %s: %v", string(expectedHash), err) + } + + // This is not the safe way to compare these hashes. We do this only for + // testing clarity. Use bcrypt.CompareHashAndPassword() + if err == nil && !bytes.Equal(expectedHash, h.Hash()) { + t.Errorf("Parsed hash %v should equal %v", h.Hash(), expectedHash) + } +} + +func TestVeryShortPasswords(t *testing.T) { + key := []byte("k") + salt := []byte("XajjQvNhvvRt5GSeFk1xFe") + _, err := bcrypt(key, 10, salt) + if err != nil { + t.Errorf("One byte key resulted in error: %s", err) + } +} + +func TestTooLongPasswordsWork(t *testing.T) { + salt := []byte("XajjQvNhvvRt5GSeFk1xFe") + // One byte over the usual 56 byte limit that blowfish has + tooLongPass := []byte("012345678901234567890123456789012345678901234567890123456") + tooLongExpected := []byte("$2a$10$XajjQvNhvvRt5GSeFk1xFe5l47dONXg781AmZtd869sO8zfsHuw7C") + hash, err := bcrypt(tooLongPass, 10, salt) + if err != nil { + t.Fatalf("bcrypt blew up on long password: %v", err) + } + if !bytes.HasSuffix(tooLongExpected, hash) { + t.Errorf("%v should be the suffix of %v", hash, tooLongExpected) + } +} + +type InvalidHashTest struct { + err error + hash []byte +} + +var invalidTests = []InvalidHashTest{ + {ErrHashTooShort, []byte("$2a$10$fooo")}, + {ErrHashTooShort, []byte("$2a")}, + {HashVersionTooNewError('3'), []byte("$3a$10$sssssssssssssssssssssshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")}, + {InvalidHashPrefixError('%'), []byte("%2a$10$sssssssssssssssssssssshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")}, + {InvalidCostError(32), []byte("$2a$32$sssssssssssssssssssssshhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh")}, +} + +func TestInvalidHashErrors(t *testing.T) { + check := func(name string, expected, err error) { + if err == nil { + t.Errorf("%s: Should have returned an error", name) + } + if err != nil && err != expected { + t.Errorf("%s gave err %v but should have given %v", name, err, expected) + } + } + for _, iht := range invalidTests { + _, err := newFromHash(iht.hash) + check("newFromHash", iht.err, err) + err = CompareHashAndPassword(iht.hash, []byte("anything")) + check("CompareHashAndPassword", iht.err, err) + } +} + +func TestUnpaddedBase64Encoding(t *testing.T) { + original := []byte{101, 201, 101, 75, 19, 227, 199, 20, 239, 236, 133, 32, 30, 109, 243, 30} + encodedOriginal := []byte("XajjQvNhvvRt5GSeFk1xFe") + + encoded := base64Encode(original) + + if !bytes.Equal(encodedOriginal, encoded) { + t.Errorf("Encoded %v should have equaled %v", encoded, encodedOriginal) + } + + decoded, err := base64Decode(encodedOriginal) + if err != nil { + t.Fatalf("base64Decode blew up: %s", err) + } + + if !bytes.Equal(decoded, original) { + t.Errorf("Decoded %v should have equaled %v", decoded, original) + } +} + +func TestCost(t *testing.T) { + suffix := "XajjQvNhvvRt5GSeFk1xFe5l47dONXg781AmZtd869sO8zfsHuw7C" + for _, vers := range []string{"2a", "2"} { + for _, cost := range []int{4, 10} { + s := fmt.Sprintf("$%s$%02d$%s", vers, cost, suffix) + h := []byte(s) + actual, err := Cost(h) + if err != nil { + t.Errorf("Cost, error: %s", err) + continue + } + if actual != cost { + t.Errorf("Cost, expected: %d, actual: %d", cost, actual) + } + } + } + _, err := Cost([]byte("$a$a$" + suffix)) + if err == nil { + t.Errorf("Cost, malformed but no error returned") + } +} + +func TestCostValidationInHash(t *testing.T) { + if testing.Short() { + return + } + + pass := []byte("mypassword") + + for c := 0; c < MinCost; c++ { + p, _ := newFromPassword(pass, c) + if p.cost != DefaultCost { + t.Errorf("newFromPassword should default costs below %d to %d, but was %d", MinCost, DefaultCost, p.cost) + } + } + + p, _ := newFromPassword(pass, 14) + if p.cost != 14 { + t.Errorf("newFromPassword should default cost to 14, but was %d", p.cost) + } + + hp, _ := newFromHash(p.Hash()) + if p.cost != hp.cost { + t.Errorf("newFromHash should maintain the cost at %d, but was %d", p.cost, hp.cost) + } + + _, err := newFromPassword(pass, 32) + if err == nil { + t.Fatalf("newFromPassword: should return a cost error") + } + if err != InvalidCostError(32) { + t.Errorf("newFromPassword: should return cost error, got %#v", err) + } +} + +func TestCostReturnsWithLeadingZeroes(t *testing.T) { + hp, _ := newFromPassword([]byte("abcdefgh"), 7) + cost := hp.Hash()[4:7] + expected := []byte("07$") + + if !bytes.Equal(expected, cost) { + t.Errorf("single digit costs in hash should have leading zeros: was %v instead of %v", cost, expected) + } +} + +func TestMinorNotRequired(t *testing.T) { + noMinorHash := []byte("$2$10$XajjQvNhvvRt5GSeFk1xFeyqRrsxkhBkUiQeg0dt.wU1qD4aFDcga") + h, err := newFromHash(noMinorHash) + if err != nil { + t.Fatalf("No minor hash blew up: %s", err) + } + if h.minor != 0 { + t.Errorf("Should leave minor version at 0, but was %d", h.minor) + } + + if !bytes.Equal(noMinorHash, h.Hash()) { + t.Errorf("Should generate hash %v, but created %v", noMinorHash, h.Hash()) + } +} + +func BenchmarkEqual(b *testing.B) { + b.StopTimer() + passwd := []byte("somepasswordyoulike") + hash, _ := GenerateFromPassword(passwd, 10) + b.StartTimer() + for i := 0; i < b.N; i++ { + CompareHashAndPassword(hash, passwd) + } +} + +func BenchmarkGeneration(b *testing.B) { + b.StopTimer() + passwd := []byte("mylongpassword1234") + b.StartTimer() + for i := 0; i < b.N; i++ { + GenerateFromPassword(passwd, 10) + } +} diff --git a/vendor/src/golang.org/x/crypto/blowfish/block.go b/vendor/src/golang.org/x/crypto/blowfish/block.go new file mode 100644 index 0000000..9d80f19 --- /dev/null +++ b/vendor/src/golang.org/x/crypto/blowfish/block.go @@ -0,0 +1,159 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package blowfish + +// getNextWord returns the next big-endian uint32 value from the byte slice +// at the given position in a circular manner, updating the position. +func getNextWord(b []byte, pos *int) uint32 { + var w uint32 + j := *pos + for i := 0; i < 4; i++ { + w = w<<8 | uint32(b[j]) + j++ + if j >= len(b) { + j = 0 + } + } + *pos = j + return w +} + +// ExpandKey performs a key expansion on the given *Cipher. Specifically, it +// performs the Blowfish algorithm's key schedule which sets up the *Cipher's +// pi and substitution tables for calls to Encrypt. This is used, primarily, +// by the bcrypt package to reuse the Blowfish key schedule during its +// set up. It's unlikely that you need to use this directly. +func ExpandKey(key []byte, c *Cipher) { + j := 0 + for i := 0; i < 18; i++ { + // Using inlined getNextWord for performance. + var d uint32 + for k := 0; k < 4; k++ { + d = d<<8 | uint32(key[j]) + j++ + if j >= len(key) { + j = 0 + } + } + c.p[i] ^= d + } + + var l, r uint32 + for i := 0; i < 18; i += 2 { + l, r = encryptBlock(l, r, c) + c.p[i], c.p[i+1] = l, r + } + + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s0[i], c.s0[i+1] = l, r + } + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s1[i], c.s1[i+1] = l, r + } + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s2[i], c.s2[i+1] = l, r + } + for i := 0; i < 256; i += 2 { + l, r = encryptBlock(l, r, c) + c.s3[i], c.s3[i+1] = l, r + } +} + +// This is similar to ExpandKey, but folds the salt during the key +// schedule. While ExpandKey is essentially expandKeyWithSalt with an all-zero +// salt passed in, reusing ExpandKey turns out to be a place of inefficiency +// and specializing it here is useful. +func expandKeyWithSalt(key []byte, salt []byte, c *Cipher) { + j := 0 + for i := 0; i < 18; i++ { + c.p[i] ^= getNextWord(key, &j) + } + + j = 0 + var l, r uint32 + for i := 0; i < 18; i += 2 { + l ^= getNextWord(salt, &j) + r ^= getNextWord(salt, &j) + l, r = encryptBlock(l, r, c) + c.p[i], c.p[i+1] = l, r + } + + for i := 0; i < 256; i += 2 { + l ^= getNextWord(salt, &j) + r ^= getNextWord(salt, &j) + l, r = encryptBlock(l, r, c) + c.s0[i], c.s0[i+1] = l, r + } + + for i := 0; i < 256; i += 2 { + l ^= getNextWord(salt, &j) + r ^= getNextWord(salt, &j) + l, r = encryptBlock(l, r, c) + c.s1[i], c.s1[i+1] = l, r + } + + for i := 0; i < 256; i += 2 { + l ^= getNextWord(salt, &j) + r ^= getNextWord(salt, &j) + l, r = encryptBlock(l, r, c) + c.s2[i], c.s2[i+1] = l, r + } + + for i := 0; i < 256; i += 2 { + l ^= getNextWord(salt, &j) + r ^= getNextWord(salt, &j) + l, r = encryptBlock(l, r, c) + c.s3[i], c.s3[i+1] = l, r + } +} + +func encryptBlock(l, r uint32, c *Cipher) (uint32, uint32) { + xl, xr := l, r + xl ^= c.p[0] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[1] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[2] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[3] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[4] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[5] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[6] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[7] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[8] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[9] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[10] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[11] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[12] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[13] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[14] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[15] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[16] + xr ^= c.p[17] + return xr, xl +} + +func decryptBlock(l, r uint32, c *Cipher) (uint32, uint32) { + xl, xr := l, r + xl ^= c.p[17] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[16] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[15] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[14] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[13] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[12] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[11] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[10] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[9] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[8] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[7] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[6] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[5] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[4] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[3] + xr ^= ((c.s0[byte(xl>>24)] + c.s1[byte(xl>>16)]) ^ c.s2[byte(xl>>8)]) + c.s3[byte(xl)] ^ c.p[2] + xl ^= ((c.s0[byte(xr>>24)] + c.s1[byte(xr>>16)]) ^ c.s2[byte(xr>>8)]) + c.s3[byte(xr)] ^ c.p[1] + xr ^= c.p[0] + return xr, xl +} diff --git a/vendor/src/golang.org/x/crypto/blowfish/blowfish_test.go b/vendor/src/golang.org/x/crypto/blowfish/blowfish_test.go new file mode 100644 index 0000000..7afa1fd --- /dev/null +++ b/vendor/src/golang.org/x/crypto/blowfish/blowfish_test.go @@ -0,0 +1,274 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package blowfish + +import "testing" + +type CryptTest struct { + key []byte + in []byte + out []byte +} + +// Test vector values are from http://www.schneier.com/code/vectors.txt. +var encryptTests = []CryptTest{ + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x4E, 0xF9, 0x97, 0x45, 0x61, 0x98, 0xDD, 0x78}}, + { + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x51, 0x86, 0x6F, 0xD5, 0xB8, 0x5E, 0xCB, 0x8A}}, + { + []byte{0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01}, + []byte{0x7D, 0x85, 0x6F, 0x9A, 0x61, 0x30, 0x63, 0xF2}}, + { + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x24, 0x66, 0xDD, 0x87, 0x8B, 0x96, 0x3C, 0x9D}}, + + { + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x61, 0xF9, 0xC3, 0x80, 0x22, 0x81, 0xB0, 0x96}}, + { + []byte{0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x7D, 0x0C, 0xC6, 0x30, 0xAF, 0xDA, 0x1E, 0xC7}}, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x4E, 0xF9, 0x97, 0x45, 0x61, 0x98, 0xDD, 0x78}}, + { + []byte{0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x0A, 0xCE, 0xAB, 0x0F, 0xC6, 0xA0, 0xA2, 0x8D}}, + { + []byte{0x7C, 0xA1, 0x10, 0x45, 0x4A, 0x1A, 0x6E, 0x57}, + []byte{0x01, 0xA1, 0xD6, 0xD0, 0x39, 0x77, 0x67, 0x42}, + []byte{0x59, 0xC6, 0x82, 0x45, 0xEB, 0x05, 0x28, 0x2B}}, + { + []byte{0x01, 0x31, 0xD9, 0x61, 0x9D, 0xC1, 0x37, 0x6E}, + []byte{0x5C, 0xD5, 0x4C, 0xA8, 0x3D, 0xEF, 0x57, 0xDA}, + []byte{0xB1, 0xB8, 0xCC, 0x0B, 0x25, 0x0F, 0x09, 0xA0}}, + { + []byte{0x07, 0xA1, 0x13, 0x3E, 0x4A, 0x0B, 0x26, 0x86}, + []byte{0x02, 0x48, 0xD4, 0x38, 0x06, 0xF6, 0x71, 0x72}, + []byte{0x17, 0x30, 0xE5, 0x77, 0x8B, 0xEA, 0x1D, 0xA4}}, + { + []byte{0x38, 0x49, 0x67, 0x4C, 0x26, 0x02, 0x31, 0x9E}, + []byte{0x51, 0x45, 0x4B, 0x58, 0x2D, 0xDF, 0x44, 0x0A}, + []byte{0xA2, 0x5E, 0x78, 0x56, 0xCF, 0x26, 0x51, 0xEB}}, + { + []byte{0x04, 0xB9, 0x15, 0xBA, 0x43, 0xFE, 0xB5, 0xB6}, + []byte{0x42, 0xFD, 0x44, 0x30, 0x59, 0x57, 0x7F, 0xA2}, + []byte{0x35, 0x38, 0x82, 0xB1, 0x09, 0xCE, 0x8F, 0x1A}}, + { + []byte{0x01, 0x13, 0xB9, 0x70, 0xFD, 0x34, 0xF2, 0xCE}, + []byte{0x05, 0x9B, 0x5E, 0x08, 0x51, 0xCF, 0x14, 0x3A}, + []byte{0x48, 0xF4, 0xD0, 0x88, 0x4C, 0x37, 0x99, 0x18}}, + { + []byte{0x01, 0x70, 0xF1, 0x75, 0x46, 0x8F, 0xB5, 0xE6}, + []byte{0x07, 0x56, 0xD8, 0xE0, 0x77, 0x47, 0x61, 0xD2}, + []byte{0x43, 0x21, 0x93, 0xB7, 0x89, 0x51, 0xFC, 0x98}}, + { + []byte{0x43, 0x29, 0x7F, 0xAD, 0x38, 0xE3, 0x73, 0xFE}, + []byte{0x76, 0x25, 0x14, 0xB8, 0x29, 0xBF, 0x48, 0x6A}, + []byte{0x13, 0xF0, 0x41, 0x54, 0xD6, 0x9D, 0x1A, 0xE5}}, + { + []byte{0x07, 0xA7, 0x13, 0x70, 0x45, 0xDA, 0x2A, 0x16}, + []byte{0x3B, 0xDD, 0x11, 0x90, 0x49, 0x37, 0x28, 0x02}, + []byte{0x2E, 0xED, 0xDA, 0x93, 0xFF, 0xD3, 0x9C, 0x79}}, + { + []byte{0x04, 0x68, 0x91, 0x04, 0xC2, 0xFD, 0x3B, 0x2F}, + []byte{0x26, 0x95, 0x5F, 0x68, 0x35, 0xAF, 0x60, 0x9A}, + []byte{0xD8, 0x87, 0xE0, 0x39, 0x3C, 0x2D, 0xA6, 0xE3}}, + { + []byte{0x37, 0xD0, 0x6B, 0xB5, 0x16, 0xCB, 0x75, 0x46}, + []byte{0x16, 0x4D, 0x5E, 0x40, 0x4F, 0x27, 0x52, 0x32}, + []byte{0x5F, 0x99, 0xD0, 0x4F, 0x5B, 0x16, 0x39, 0x69}}, + { + []byte{0x1F, 0x08, 0x26, 0x0D, 0x1A, 0xC2, 0x46, 0x5E}, + []byte{0x6B, 0x05, 0x6E, 0x18, 0x75, 0x9F, 0x5C, 0xCA}, + []byte{0x4A, 0x05, 0x7A, 0x3B, 0x24, 0xD3, 0x97, 0x7B}}, + { + []byte{0x58, 0x40, 0x23, 0x64, 0x1A, 0xBA, 0x61, 0x76}, + []byte{0x00, 0x4B, 0xD6, 0xEF, 0x09, 0x17, 0x60, 0x62}, + []byte{0x45, 0x20, 0x31, 0xC1, 0xE4, 0xFA, 0xDA, 0x8E}}, + { + []byte{0x02, 0x58, 0x16, 0x16, 0x46, 0x29, 0xB0, 0x07}, + []byte{0x48, 0x0D, 0x39, 0x00, 0x6E, 0xE7, 0x62, 0xF2}, + []byte{0x75, 0x55, 0xAE, 0x39, 0xF5, 0x9B, 0x87, 0xBD}}, + { + []byte{0x49, 0x79, 0x3E, 0xBC, 0x79, 0xB3, 0x25, 0x8F}, + []byte{0x43, 0x75, 0x40, 0xC8, 0x69, 0x8F, 0x3C, 0xFA}, + []byte{0x53, 0xC5, 0x5F, 0x9C, 0xB4, 0x9F, 0xC0, 0x19}}, + { + []byte{0x4F, 0xB0, 0x5E, 0x15, 0x15, 0xAB, 0x73, 0xA7}, + []byte{0x07, 0x2D, 0x43, 0xA0, 0x77, 0x07, 0x52, 0x92}, + []byte{0x7A, 0x8E, 0x7B, 0xFA, 0x93, 0x7E, 0x89, 0xA3}}, + { + []byte{0x49, 0xE9, 0x5D, 0x6D, 0x4C, 0xA2, 0x29, 0xBF}, + []byte{0x02, 0xFE, 0x55, 0x77, 0x81, 0x17, 0xF1, 0x2A}, + []byte{0xCF, 0x9C, 0x5D, 0x7A, 0x49, 0x86, 0xAD, 0xB5}}, + { + []byte{0x01, 0x83, 0x10, 0xDC, 0x40, 0x9B, 0x26, 0xD6}, + []byte{0x1D, 0x9D, 0x5C, 0x50, 0x18, 0xF7, 0x28, 0xC2}, + []byte{0xD1, 0xAB, 0xB2, 0x90, 0x65, 0x8B, 0xC7, 0x78}}, + { + []byte{0x1C, 0x58, 0x7F, 0x1C, 0x13, 0x92, 0x4F, 0xEF}, + []byte{0x30, 0x55, 0x32, 0x28, 0x6D, 0x6F, 0x29, 0x5A}, + []byte{0x55, 0xCB, 0x37, 0x74, 0xD1, 0x3E, 0xF2, 0x01}}, + { + []byte{0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0xFA, 0x34, 0xEC, 0x48, 0x47, 0xB2, 0x68, 0xB2}}, + { + []byte{0x1F, 0x1F, 0x1F, 0x1F, 0x0E, 0x0E, 0x0E, 0x0E}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0xA7, 0x90, 0x79, 0x51, 0x08, 0xEA, 0x3C, 0xAE}}, + { + []byte{0xE0, 0xFE, 0xE0, 0xFE, 0xF1, 0xFE, 0xF1, 0xFE}, + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0xC3, 0x9E, 0x07, 0x2D, 0x9F, 0xAC, 0x63, 0x1D}}, + { + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x01, 0x49, 0x33, 0xE0, 0xCD, 0xAF, 0xF6, 0xE4}}, + { + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0xF2, 0x1E, 0x9A, 0x77, 0xB7, 0x1C, 0x49, 0xBC}}, + { + []byte{0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF}, + []byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, + []byte{0x24, 0x59, 0x46, 0x88, 0x57, 0x54, 0x36, 0x9A}}, + { + []byte{0xFE, 0xDC, 0xBA, 0x98, 0x76, 0x54, 0x32, 0x10}, + []byte{0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, + []byte{0x6B, 0x5C, 0x5A, 0x9C, 0x5D, 0x9E, 0x0A, 0x5A}}, +} + +func TestCipherEncrypt(t *testing.T) { + for i, tt := range encryptTests { + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(tt.key), err) + continue + } + ct := make([]byte, len(tt.out)) + c.Encrypt(ct, tt.in) + for j, v := range ct { + if v != tt.out[j] { + t.Errorf("Cipher.Encrypt, test vector #%d: cipher-text[%d] = %#x, expected %#x", i, j, v, tt.out[j]) + break + } + } + } +} + +func TestCipherDecrypt(t *testing.T) { + for i, tt := range encryptTests { + c, err := NewCipher(tt.key) + if err != nil { + t.Errorf("NewCipher(%d bytes) = %s", len(tt.key), err) + continue + } + pt := make([]byte, len(tt.in)) + c.Decrypt(pt, tt.out) + for j, v := range pt { + if v != tt.in[j] { + t.Errorf("Cipher.Decrypt, test vector #%d: plain-text[%d] = %#x, expected %#x", i, j, v, tt.in[j]) + break + } + } + } +} + +func TestSaltedCipherKeyLength(t *testing.T) { + if _, err := NewSaltedCipher(nil, []byte{'a'}); err != KeySizeError(0) { + t.Errorf("NewSaltedCipher with short key, gave error %#v, expected %#v", err, KeySizeError(0)) + } + + // A 57-byte key. One over the typical blowfish restriction. + key := []byte("012345678901234567890123456789012345678901234567890123456") + if _, err := NewSaltedCipher(key, []byte{'a'}); err != nil { + t.Errorf("NewSaltedCipher with long key, gave error %#v", err) + } +} + +// Test vectors generated with Blowfish from OpenSSH. +var saltedVectors = [][8]byte{ + {0x0c, 0x82, 0x3b, 0x7b, 0x8d, 0x01, 0x4b, 0x7e}, + {0xd1, 0xe1, 0x93, 0xf0, 0x70, 0xa6, 0xdb, 0x12}, + {0xfc, 0x5e, 0xba, 0xde, 0xcb, 0xf8, 0x59, 0xad}, + {0x8a, 0x0c, 0x76, 0xe7, 0xdd, 0x2c, 0xd3, 0xa8}, + {0x2c, 0xcb, 0x7b, 0xee, 0xac, 0x7b, 0x7f, 0xf8}, + {0xbb, 0xf6, 0x30, 0x6f, 0xe1, 0x5d, 0x62, 0xbf}, + {0x97, 0x1e, 0xc1, 0x3d, 0x3d, 0xe0, 0x11, 0xe9}, + {0x06, 0xd7, 0x4d, 0xb1, 0x80, 0xa3, 0xb1, 0x38}, + {0x67, 0xa1, 0xa9, 0x75, 0x0e, 0x5b, 0xc6, 0xb4}, + {0x51, 0x0f, 0x33, 0x0e, 0x4f, 0x67, 0xd2, 0x0c}, + {0xf1, 0x73, 0x7e, 0xd8, 0x44, 0xea, 0xdb, 0xe5}, + {0x14, 0x0e, 0x16, 0xce, 0x7f, 0x4a, 0x9c, 0x7b}, + {0x4b, 0xfe, 0x43, 0xfd, 0xbf, 0x36, 0x04, 0x47}, + {0xb1, 0xeb, 0x3e, 0x15, 0x36, 0xa7, 0xbb, 0xe2}, + {0x6d, 0x0b, 0x41, 0xdd, 0x00, 0x98, 0x0b, 0x19}, + {0xd3, 0xce, 0x45, 0xce, 0x1d, 0x56, 0xb7, 0xfc}, + {0xd9, 0xf0, 0xfd, 0xda, 0xc0, 0x23, 0xb7, 0x93}, + {0x4c, 0x6f, 0xa1, 0xe4, 0x0c, 0xa8, 0xca, 0x57}, + {0xe6, 0x2f, 0x28, 0xa7, 0x0c, 0x94, 0x0d, 0x08}, + {0x8f, 0xe3, 0xf0, 0xb6, 0x29, 0xe3, 0x44, 0x03}, + {0xff, 0x98, 0xdd, 0x04, 0x45, 0xb4, 0x6d, 0x1f}, + {0x9e, 0x45, 0x4d, 0x18, 0x40, 0x53, 0xdb, 0xef}, + {0xb7, 0x3b, 0xef, 0x29, 0xbe, 0xa8, 0x13, 0x71}, + {0x02, 0x54, 0x55, 0x41, 0x8e, 0x04, 0xfc, 0xad}, + {0x6a, 0x0a, 0xee, 0x7c, 0x10, 0xd9, 0x19, 0xfe}, + {0x0a, 0x22, 0xd9, 0x41, 0xcc, 0x23, 0x87, 0x13}, + {0x6e, 0xff, 0x1f, 0xff, 0x36, 0x17, 0x9c, 0xbe}, + {0x79, 0xad, 0xb7, 0x40, 0xf4, 0x9f, 0x51, 0xa6}, + {0x97, 0x81, 0x99, 0xa4, 0xde, 0x9e, 0x9f, 0xb6}, + {0x12, 0x19, 0x7a, 0x28, 0xd0, 0xdc, 0xcc, 0x92}, + {0x81, 0xda, 0x60, 0x1e, 0x0e, 0xdd, 0x65, 0x56}, + {0x7d, 0x76, 0x20, 0xb2, 0x73, 0xc9, 0x9e, 0xee}, +} + +func TestSaltedCipher(t *testing.T) { + var key, salt [32]byte + for i := range key { + key[i] = byte(i) + salt[i] = byte(i + 32) + } + for i, v := range saltedVectors { + c, err := NewSaltedCipher(key[:], salt[:i]) + if err != nil { + t.Fatal(err) + } + var buf [8]byte + c.Encrypt(buf[:], buf[:]) + if v != buf { + t.Errorf("%d: expected %x, got %x", i, v, buf) + } + } +} + +func BenchmarkExpandKeyWithSalt(b *testing.B) { + key := make([]byte, 32) + salt := make([]byte, 16) + c, _ := NewCipher(key) + for i := 0; i < b.N; i++ { + expandKeyWithSalt(key, salt, c) + } +} + +func BenchmarkExpandKey(b *testing.B) { + key := make([]byte, 32) + c, _ := NewCipher(key) + for i := 0; i < b.N; i++ { + ExpandKey(key, c) + } +} diff --git a/vendor/src/golang.org/x/crypto/blowfish/cipher.go b/vendor/src/golang.org/x/crypto/blowfish/cipher.go new file mode 100644 index 0000000..a73954f --- /dev/null +++ b/vendor/src/golang.org/x/crypto/blowfish/cipher.go @@ -0,0 +1,91 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package blowfish implements Bruce Schneier's Blowfish encryption algorithm. +package blowfish // import "golang.org/x/crypto/blowfish" + +// The code is a port of Bruce Schneier's C implementation. +// See http://www.schneier.com/blowfish.html. + +import "strconv" + +// The Blowfish block size in bytes. +const BlockSize = 8 + +// A Cipher is an instance of Blowfish encryption using a particular key. +type Cipher struct { + p [18]uint32 + s0, s1, s2, s3 [256]uint32 +} + +type KeySizeError int + +func (k KeySizeError) Error() string { + return "crypto/blowfish: invalid key size " + strconv.Itoa(int(k)) +} + +// NewCipher creates and returns a Cipher. +// The key argument should be the Blowfish key, from 1 to 56 bytes. +func NewCipher(key []byte) (*Cipher, error) { + var result Cipher + if k := len(key); k < 1 || k > 56 { + return nil, KeySizeError(k) + } + initCipher(&result) + ExpandKey(key, &result) + return &result, nil +} + +// NewSaltedCipher creates a returns a Cipher that folds a salt into its key +// schedule. For most purposes, NewCipher, instead of NewSaltedCipher, is +// sufficient and desirable. For bcrypt compatibility, the key can be over 56 +// bytes. +func NewSaltedCipher(key, salt []byte) (*Cipher, error) { + if len(salt) == 0 { + return NewCipher(key) + } + var result Cipher + if k := len(key); k < 1 { + return nil, KeySizeError(k) + } + initCipher(&result) + expandKeyWithSalt(key, salt, &result) + return &result, nil +} + +// BlockSize returns the Blowfish block size, 8 bytes. +// It is necessary to satisfy the Block interface in the +// package "crypto/cipher". +func (c *Cipher) BlockSize() int { return BlockSize } + +// Encrypt encrypts the 8-byte buffer src using the key k +// and stores the result in dst. +// Note that for amounts of data larger than a block, +// it is not safe to just call Encrypt on successive blocks; +// instead, use an encryption mode like CBC (see crypto/cipher/cbc.go). +func (c *Cipher) Encrypt(dst, src []byte) { + l := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + l, r = encryptBlock(l, r, c) + dst[0], dst[1], dst[2], dst[3] = byte(l>>24), byte(l>>16), byte(l>>8), byte(l) + dst[4], dst[5], dst[6], dst[7] = byte(r>>24), byte(r>>16), byte(r>>8), byte(r) +} + +// Decrypt decrypts the 8-byte buffer src using the key k +// and stores the result in dst. +func (c *Cipher) Decrypt(dst, src []byte) { + l := uint32(src[0])<<24 | uint32(src[1])<<16 | uint32(src[2])<<8 | uint32(src[3]) + r := uint32(src[4])<<24 | uint32(src[5])<<16 | uint32(src[6])<<8 | uint32(src[7]) + l, r = decryptBlock(l, r, c) + dst[0], dst[1], dst[2], dst[3] = byte(l>>24), byte(l>>16), byte(l>>8), byte(l) + dst[4], dst[5], dst[6], dst[7] = byte(r>>24), byte(r>>16), byte(r>>8), byte(r) +} + +func initCipher(c *Cipher) { + copy(c.p[0:], p[0:]) + copy(c.s0[0:], s0[0:]) + copy(c.s1[0:], s1[0:]) + copy(c.s2[0:], s2[0:]) + copy(c.s3[0:], s3[0:]) +} diff --git a/vendor/src/golang.org/x/crypto/blowfish/const.go b/vendor/src/golang.org/x/crypto/blowfish/const.go new file mode 100644 index 0000000..8c5ee4c --- /dev/null +++ b/vendor/src/golang.org/x/crypto/blowfish/const.go @@ -0,0 +1,199 @@ +// Copyright 2010 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// The startup permutation array and substitution boxes. +// They are the hexadecimal digits of PI; see: +// http://www.schneier.com/code/constants.txt. + +package blowfish + +var s0 = [256]uint32{ + 0xd1310ba6, 0x98dfb5ac, 0x2ffd72db, 0xd01adfb7, 0xb8e1afed, 0x6a267e96, + 0xba7c9045, 0xf12c7f99, 0x24a19947, 0xb3916cf7, 0x0801f2e2, 0x858efc16, + 0x636920d8, 0x71574e69, 0xa458fea3, 0xf4933d7e, 0x0d95748f, 0x728eb658, + 0x718bcd58, 0x82154aee, 0x7b54a41d, 0xc25a59b5, 0x9c30d539, 0x2af26013, + 0xc5d1b023, 0x286085f0, 0xca417918, 0xb8db38ef, 0x8e79dcb0, 0x603a180e, + 0x6c9e0e8b, 0xb01e8a3e, 0xd71577c1, 0xbd314b27, 0x78af2fda, 0x55605c60, + 0xe65525f3, 0xaa55ab94, 0x57489862, 0x63e81440, 0x55ca396a, 0x2aab10b6, + 0xb4cc5c34, 0x1141e8ce, 0xa15486af, 0x7c72e993, 0xb3ee1411, 0x636fbc2a, + 0x2ba9c55d, 0x741831f6, 0xce5c3e16, 0x9b87931e, 0xafd6ba33, 0x6c24cf5c, + 0x7a325381, 0x28958677, 0x3b8f4898, 0x6b4bb9af, 0xc4bfe81b, 0x66282193, + 0x61d809cc, 0xfb21a991, 0x487cac60, 0x5dec8032, 0xef845d5d, 0xe98575b1, + 0xdc262302, 0xeb651b88, 0x23893e81, 0xd396acc5, 0x0f6d6ff3, 0x83f44239, + 0x2e0b4482, 0xa4842004, 0x69c8f04a, 0x9e1f9b5e, 0x21c66842, 0xf6e96c9a, + 0x670c9c61, 0xabd388f0, 0x6a51a0d2, 0xd8542f68, 0x960fa728, 0xab5133a3, + 0x6eef0b6c, 0x137a3be4, 0xba3bf050, 0x7efb2a98, 0xa1f1651d, 0x39af0176, + 0x66ca593e, 0x82430e88, 0x8cee8619, 0x456f9fb4, 0x7d84a5c3, 0x3b8b5ebe, + 0xe06f75d8, 0x85c12073, 0x401a449f, 0x56c16aa6, 0x4ed3aa62, 0x363f7706, + 0x1bfedf72, 0x429b023d, 0x37d0d724, 0xd00a1248, 0xdb0fead3, 0x49f1c09b, + 0x075372c9, 0x80991b7b, 0x25d479d8, 0xf6e8def7, 0xe3fe501a, 0xb6794c3b, + 0x976ce0bd, 0x04c006ba, 0xc1a94fb6, 0x409f60c4, 0x5e5c9ec2, 0x196a2463, + 0x68fb6faf, 0x3e6c53b5, 0x1339b2eb, 0x3b52ec6f, 0x6dfc511f, 0x9b30952c, + 0xcc814544, 0xaf5ebd09, 0xbee3d004, 0xde334afd, 0x660f2807, 0x192e4bb3, + 0xc0cba857, 0x45c8740f, 0xd20b5f39, 0xb9d3fbdb, 0x5579c0bd, 0x1a60320a, + 0xd6a100c6, 0x402c7279, 0x679f25fe, 0xfb1fa3cc, 0x8ea5e9f8, 0xdb3222f8, + 0x3c7516df, 0xfd616b15, 0x2f501ec8, 0xad0552ab, 0x323db5fa, 0xfd238760, + 0x53317b48, 0x3e00df82, 0x9e5c57bb, 0xca6f8ca0, 0x1a87562e, 0xdf1769db, + 0xd542a8f6, 0x287effc3, 0xac6732c6, 0x8c4f5573, 0x695b27b0, 0xbbca58c8, + 0xe1ffa35d, 0xb8f011a0, 0x10fa3d98, 0xfd2183b8, 0x4afcb56c, 0x2dd1d35b, + 0x9a53e479, 0xb6f84565, 0xd28e49bc, 0x4bfb9790, 0xe1ddf2da, 0xa4cb7e33, + 0x62fb1341, 0xcee4c6e8, 0xef20cada, 0x36774c01, 0xd07e9efe, 0x2bf11fb4, + 0x95dbda4d, 0xae909198, 0xeaad8e71, 0x6b93d5a0, 0xd08ed1d0, 0xafc725e0, + 0x8e3c5b2f, 0x8e7594b7, 0x8ff6e2fb, 0xf2122b64, 0x8888b812, 0x900df01c, + 0x4fad5ea0, 0x688fc31c, 0xd1cff191, 0xb3a8c1ad, 0x2f2f2218, 0xbe0e1777, + 0xea752dfe, 0x8b021fa1, 0xe5a0cc0f, 0xb56f74e8, 0x18acf3d6, 0xce89e299, + 0xb4a84fe0, 0xfd13e0b7, 0x7cc43b81, 0xd2ada8d9, 0x165fa266, 0x80957705, + 0x93cc7314, 0x211a1477, 0xe6ad2065, 0x77b5fa86, 0xc75442f5, 0xfb9d35cf, + 0xebcdaf0c, 0x7b3e89a0, 0xd6411bd3, 0xae1e7e49, 0x00250e2d, 0x2071b35e, + 0x226800bb, 0x57b8e0af, 0x2464369b, 0xf009b91e, 0x5563911d, 0x59dfa6aa, + 0x78c14389, 0xd95a537f, 0x207d5ba2, 0x02e5b9c5, 0x83260376, 0x6295cfa9, + 0x11c81968, 0x4e734a41, 0xb3472dca, 0x7b14a94a, 0x1b510052, 0x9a532915, + 0xd60f573f, 0xbc9bc6e4, 0x2b60a476, 0x81e67400, 0x08ba6fb5, 0x571be91f, + 0xf296ec6b, 0x2a0dd915, 0xb6636521, 0xe7b9f9b6, 0xff34052e, 0xc5855664, + 0x53b02d5d, 0xa99f8fa1, 0x08ba4799, 0x6e85076a, +} + +var s1 = [256]uint32{ + 0x4b7a70e9, 0xb5b32944, 0xdb75092e, 0xc4192623, 0xad6ea6b0, 0x49a7df7d, + 0x9cee60b8, 0x8fedb266, 0xecaa8c71, 0x699a17ff, 0x5664526c, 0xc2b19ee1, + 0x193602a5, 0x75094c29, 0xa0591340, 0xe4183a3e, 0x3f54989a, 0x5b429d65, + 0x6b8fe4d6, 0x99f73fd6, 0xa1d29c07, 0xefe830f5, 0x4d2d38e6, 0xf0255dc1, + 0x4cdd2086, 0x8470eb26, 0x6382e9c6, 0x021ecc5e, 0x09686b3f, 0x3ebaefc9, + 0x3c971814, 0x6b6a70a1, 0x687f3584, 0x52a0e286, 0xb79c5305, 0xaa500737, + 0x3e07841c, 0x7fdeae5c, 0x8e7d44ec, 0x5716f2b8, 0xb03ada37, 0xf0500c0d, + 0xf01c1f04, 0x0200b3ff, 0xae0cf51a, 0x3cb574b2, 0x25837a58, 0xdc0921bd, + 0xd19113f9, 0x7ca92ff6, 0x94324773, 0x22f54701, 0x3ae5e581, 0x37c2dadc, + 0xc8b57634, 0x9af3dda7, 0xa9446146, 0x0fd0030e, 0xecc8c73e, 0xa4751e41, + 0xe238cd99, 0x3bea0e2f, 0x3280bba1, 0x183eb331, 0x4e548b38, 0x4f6db908, + 0x6f420d03, 0xf60a04bf, 0x2cb81290, 0x24977c79, 0x5679b072, 0xbcaf89af, + 0xde9a771f, 0xd9930810, 0xb38bae12, 0xdccf3f2e, 0x5512721f, 0x2e6b7124, + 0x501adde6, 0x9f84cd87, 0x7a584718, 0x7408da17, 0xbc9f9abc, 0xe94b7d8c, + 0xec7aec3a, 0xdb851dfa, 0x63094366, 0xc464c3d2, 0xef1c1847, 0x3215d908, + 0xdd433b37, 0x24c2ba16, 0x12a14d43, 0x2a65c451, 0x50940002, 0x133ae4dd, + 0x71dff89e, 0x10314e55, 0x81ac77d6, 0x5f11199b, 0x043556f1, 0xd7a3c76b, + 0x3c11183b, 0x5924a509, 0xf28fe6ed, 0x97f1fbfa, 0x9ebabf2c, 0x1e153c6e, + 0x86e34570, 0xeae96fb1, 0x860e5e0a, 0x5a3e2ab3, 0x771fe71c, 0x4e3d06fa, + 0x2965dcb9, 0x99e71d0f, 0x803e89d6, 0x5266c825, 0x2e4cc978, 0x9c10b36a, + 0xc6150eba, 0x94e2ea78, 0xa5fc3c53, 0x1e0a2df4, 0xf2f74ea7, 0x361d2b3d, + 0x1939260f, 0x19c27960, 0x5223a708, 0xf71312b6, 0xebadfe6e, 0xeac31f66, + 0xe3bc4595, 0xa67bc883, 0xb17f37d1, 0x018cff28, 0xc332ddef, 0xbe6c5aa5, + 0x65582185, 0x68ab9802, 0xeecea50f, 0xdb2f953b, 0x2aef7dad, 0x5b6e2f84, + 0x1521b628, 0x29076170, 0xecdd4775, 0x619f1510, 0x13cca830, 0xeb61bd96, + 0x0334fe1e, 0xaa0363cf, 0xb5735c90, 0x4c70a239, 0xd59e9e0b, 0xcbaade14, + 0xeecc86bc, 0x60622ca7, 0x9cab5cab, 0xb2f3846e, 0x648b1eaf, 0x19bdf0ca, + 0xa02369b9, 0x655abb50, 0x40685a32, 0x3c2ab4b3, 0x319ee9d5, 0xc021b8f7, + 0x9b540b19, 0x875fa099, 0x95f7997e, 0x623d7da8, 0xf837889a, 0x97e32d77, + 0x11ed935f, 0x16681281, 0x0e358829, 0xc7e61fd6, 0x96dedfa1, 0x7858ba99, + 0x57f584a5, 0x1b227263, 0x9b83c3ff, 0x1ac24696, 0xcdb30aeb, 0x532e3054, + 0x8fd948e4, 0x6dbc3128, 0x58ebf2ef, 0x34c6ffea, 0xfe28ed61, 0xee7c3c73, + 0x5d4a14d9, 0xe864b7e3, 0x42105d14, 0x203e13e0, 0x45eee2b6, 0xa3aaabea, + 0xdb6c4f15, 0xfacb4fd0, 0xc742f442, 0xef6abbb5, 0x654f3b1d, 0x41cd2105, + 0xd81e799e, 0x86854dc7, 0xe44b476a, 0x3d816250, 0xcf62a1f2, 0x5b8d2646, + 0xfc8883a0, 0xc1c7b6a3, 0x7f1524c3, 0x69cb7492, 0x47848a0b, 0x5692b285, + 0x095bbf00, 0xad19489d, 0x1462b174, 0x23820e00, 0x58428d2a, 0x0c55f5ea, + 0x1dadf43e, 0x233f7061, 0x3372f092, 0x8d937e41, 0xd65fecf1, 0x6c223bdb, + 0x7cde3759, 0xcbee7460, 0x4085f2a7, 0xce77326e, 0xa6078084, 0x19f8509e, + 0xe8efd855, 0x61d99735, 0xa969a7aa, 0xc50c06c2, 0x5a04abfc, 0x800bcadc, + 0x9e447a2e, 0xc3453484, 0xfdd56705, 0x0e1e9ec9, 0xdb73dbd3, 0x105588cd, + 0x675fda79, 0xe3674340, 0xc5c43465, 0x713e38d8, 0x3d28f89e, 0xf16dff20, + 0x153e21e7, 0x8fb03d4a, 0xe6e39f2b, 0xdb83adf7, +} + +var s2 = [256]uint32{ + 0xe93d5a68, 0x948140f7, 0xf64c261c, 0x94692934, 0x411520f7, 0x7602d4f7, + 0xbcf46b2e, 0xd4a20068, 0xd4082471, 0x3320f46a, 0x43b7d4b7, 0x500061af, + 0x1e39f62e, 0x97244546, 0x14214f74, 0xbf8b8840, 0x4d95fc1d, 0x96b591af, + 0x70f4ddd3, 0x66a02f45, 0xbfbc09ec, 0x03bd9785, 0x7fac6dd0, 0x31cb8504, + 0x96eb27b3, 0x55fd3941, 0xda2547e6, 0xabca0a9a, 0x28507825, 0x530429f4, + 0x0a2c86da, 0xe9b66dfb, 0x68dc1462, 0xd7486900, 0x680ec0a4, 0x27a18dee, + 0x4f3ffea2, 0xe887ad8c, 0xb58ce006, 0x7af4d6b6, 0xaace1e7c, 0xd3375fec, + 0xce78a399, 0x406b2a42, 0x20fe9e35, 0xd9f385b9, 0xee39d7ab, 0x3b124e8b, + 0x1dc9faf7, 0x4b6d1856, 0x26a36631, 0xeae397b2, 0x3a6efa74, 0xdd5b4332, + 0x6841e7f7, 0xca7820fb, 0xfb0af54e, 0xd8feb397, 0x454056ac, 0xba489527, + 0x55533a3a, 0x20838d87, 0xfe6ba9b7, 0xd096954b, 0x55a867bc, 0xa1159a58, + 0xcca92963, 0x99e1db33, 0xa62a4a56, 0x3f3125f9, 0x5ef47e1c, 0x9029317c, + 0xfdf8e802, 0x04272f70, 0x80bb155c, 0x05282ce3, 0x95c11548, 0xe4c66d22, + 0x48c1133f, 0xc70f86dc, 0x07f9c9ee, 0x41041f0f, 0x404779a4, 0x5d886e17, + 0x325f51eb, 0xd59bc0d1, 0xf2bcc18f, 0x41113564, 0x257b7834, 0x602a9c60, + 0xdff8e8a3, 0x1f636c1b, 0x0e12b4c2, 0x02e1329e, 0xaf664fd1, 0xcad18115, + 0x6b2395e0, 0x333e92e1, 0x3b240b62, 0xeebeb922, 0x85b2a20e, 0xe6ba0d99, + 0xde720c8c, 0x2da2f728, 0xd0127845, 0x95b794fd, 0x647d0862, 0xe7ccf5f0, + 0x5449a36f, 0x877d48fa, 0xc39dfd27, 0xf33e8d1e, 0x0a476341, 0x992eff74, + 0x3a6f6eab, 0xf4f8fd37, 0xa812dc60, 0xa1ebddf8, 0x991be14c, 0xdb6e6b0d, + 0xc67b5510, 0x6d672c37, 0x2765d43b, 0xdcd0e804, 0xf1290dc7, 0xcc00ffa3, + 0xb5390f92, 0x690fed0b, 0x667b9ffb, 0xcedb7d9c, 0xa091cf0b, 0xd9155ea3, + 0xbb132f88, 0x515bad24, 0x7b9479bf, 0x763bd6eb, 0x37392eb3, 0xcc115979, + 0x8026e297, 0xf42e312d, 0x6842ada7, 0xc66a2b3b, 0x12754ccc, 0x782ef11c, + 0x6a124237, 0xb79251e7, 0x06a1bbe6, 0x4bfb6350, 0x1a6b1018, 0x11caedfa, + 0x3d25bdd8, 0xe2e1c3c9, 0x44421659, 0x0a121386, 0xd90cec6e, 0xd5abea2a, + 0x64af674e, 0xda86a85f, 0xbebfe988, 0x64e4c3fe, 0x9dbc8057, 0xf0f7c086, + 0x60787bf8, 0x6003604d, 0xd1fd8346, 0xf6381fb0, 0x7745ae04, 0xd736fccc, + 0x83426b33, 0xf01eab71, 0xb0804187, 0x3c005e5f, 0x77a057be, 0xbde8ae24, + 0x55464299, 0xbf582e61, 0x4e58f48f, 0xf2ddfda2, 0xf474ef38, 0x8789bdc2, + 0x5366f9c3, 0xc8b38e74, 0xb475f255, 0x46fcd9b9, 0x7aeb2661, 0x8b1ddf84, + 0x846a0e79, 0x915f95e2, 0x466e598e, 0x20b45770, 0x8cd55591, 0xc902de4c, + 0xb90bace1, 0xbb8205d0, 0x11a86248, 0x7574a99e, 0xb77f19b6, 0xe0a9dc09, + 0x662d09a1, 0xc4324633, 0xe85a1f02, 0x09f0be8c, 0x4a99a025, 0x1d6efe10, + 0x1ab93d1d, 0x0ba5a4df, 0xa186f20f, 0x2868f169, 0xdcb7da83, 0x573906fe, + 0xa1e2ce9b, 0x4fcd7f52, 0x50115e01, 0xa70683fa, 0xa002b5c4, 0x0de6d027, + 0x9af88c27, 0x773f8641, 0xc3604c06, 0x61a806b5, 0xf0177a28, 0xc0f586e0, + 0x006058aa, 0x30dc7d62, 0x11e69ed7, 0x2338ea63, 0x53c2dd94, 0xc2c21634, + 0xbbcbee56, 0x90bcb6de, 0xebfc7da1, 0xce591d76, 0x6f05e409, 0x4b7c0188, + 0x39720a3d, 0x7c927c24, 0x86e3725f, 0x724d9db9, 0x1ac15bb4, 0xd39eb8fc, + 0xed545578, 0x08fca5b5, 0xd83d7cd3, 0x4dad0fc4, 0x1e50ef5e, 0xb161e6f8, + 0xa28514d9, 0x6c51133c, 0x6fd5c7e7, 0x56e14ec4, 0x362abfce, 0xddc6c837, + 0xd79a3234, 0x92638212, 0x670efa8e, 0x406000e0, +} + +var s3 = [256]uint32{ + 0x3a39ce37, 0xd3faf5cf, 0xabc27737, 0x5ac52d1b, 0x5cb0679e, 0x4fa33742, + 0xd3822740, 0x99bc9bbe, 0xd5118e9d, 0xbf0f7315, 0xd62d1c7e, 0xc700c47b, + 0xb78c1b6b, 0x21a19045, 0xb26eb1be, 0x6a366eb4, 0x5748ab2f, 0xbc946e79, + 0xc6a376d2, 0x6549c2c8, 0x530ff8ee, 0x468dde7d, 0xd5730a1d, 0x4cd04dc6, + 0x2939bbdb, 0xa9ba4650, 0xac9526e8, 0xbe5ee304, 0xa1fad5f0, 0x6a2d519a, + 0x63ef8ce2, 0x9a86ee22, 0xc089c2b8, 0x43242ef6, 0xa51e03aa, 0x9cf2d0a4, + 0x83c061ba, 0x9be96a4d, 0x8fe51550, 0xba645bd6, 0x2826a2f9, 0xa73a3ae1, + 0x4ba99586, 0xef5562e9, 0xc72fefd3, 0xf752f7da, 0x3f046f69, 0x77fa0a59, + 0x80e4a915, 0x87b08601, 0x9b09e6ad, 0x3b3ee593, 0xe990fd5a, 0x9e34d797, + 0x2cf0b7d9, 0x022b8b51, 0x96d5ac3a, 0x017da67d, 0xd1cf3ed6, 0x7c7d2d28, + 0x1f9f25cf, 0xadf2b89b, 0x5ad6b472, 0x5a88f54c, 0xe029ac71, 0xe019a5e6, + 0x47b0acfd, 0xed93fa9b, 0xe8d3c48d, 0x283b57cc, 0xf8d56629, 0x79132e28, + 0x785f0191, 0xed756055, 0xf7960e44, 0xe3d35e8c, 0x15056dd4, 0x88f46dba, + 0x03a16125, 0x0564f0bd, 0xc3eb9e15, 0x3c9057a2, 0x97271aec, 0xa93a072a, + 0x1b3f6d9b, 0x1e6321f5, 0xf59c66fb, 0x26dcf319, 0x7533d928, 0xb155fdf5, + 0x03563482, 0x8aba3cbb, 0x28517711, 0xc20ad9f8, 0xabcc5167, 0xccad925f, + 0x4de81751, 0x3830dc8e, 0x379d5862, 0x9320f991, 0xea7a90c2, 0xfb3e7bce, + 0x5121ce64, 0x774fbe32, 0xa8b6e37e, 0xc3293d46, 0x48de5369, 0x6413e680, + 0xa2ae0810, 0xdd6db224, 0x69852dfd, 0x09072166, 0xb39a460a, 0x6445c0dd, + 0x586cdecf, 0x1c20c8ae, 0x5bbef7dd, 0x1b588d40, 0xccd2017f, 0x6bb4e3bb, + 0xdda26a7e, 0x3a59ff45, 0x3e350a44, 0xbcb4cdd5, 0x72eacea8, 0xfa6484bb, + 0x8d6612ae, 0xbf3c6f47, 0xd29be463, 0x542f5d9e, 0xaec2771b, 0xf64e6370, + 0x740e0d8d, 0xe75b1357, 0xf8721671, 0xaf537d5d, 0x4040cb08, 0x4eb4e2cc, + 0x34d2466a, 0x0115af84, 0xe1b00428, 0x95983a1d, 0x06b89fb4, 0xce6ea048, + 0x6f3f3b82, 0x3520ab82, 0x011a1d4b, 0x277227f8, 0x611560b1, 0xe7933fdc, + 0xbb3a792b, 0x344525bd, 0xa08839e1, 0x51ce794b, 0x2f32c9b7, 0xa01fbac9, + 0xe01cc87e, 0xbcc7d1f6, 0xcf0111c3, 0xa1e8aac7, 0x1a908749, 0xd44fbd9a, + 0xd0dadecb, 0xd50ada38, 0x0339c32a, 0xc6913667, 0x8df9317c, 0xe0b12b4f, + 0xf79e59b7, 0x43f5bb3a, 0xf2d519ff, 0x27d9459c, 0xbf97222c, 0x15e6fc2a, + 0x0f91fc71, 0x9b941525, 0xfae59361, 0xceb69ceb, 0xc2a86459, 0x12baa8d1, + 0xb6c1075e, 0xe3056a0c, 0x10d25065, 0xcb03a442, 0xe0ec6e0e, 0x1698db3b, + 0x4c98a0be, 0x3278e964, 0x9f1f9532, 0xe0d392df, 0xd3a0342b, 0x8971f21e, + 0x1b0a7441, 0x4ba3348c, 0xc5be7120, 0xc37632d8, 0xdf359f8d, 0x9b992f2e, + 0xe60b6f47, 0x0fe3f11d, 0xe54cda54, 0x1edad891, 0xce6279cf, 0xcd3e7e6f, + 0x1618b166, 0xfd2c1d05, 0x848fd2c5, 0xf6fb2299, 0xf523f357, 0xa6327623, + 0x93a83531, 0x56cccd02, 0xacf08162, 0x5a75ebb5, 0x6e163697, 0x88d273cc, + 0xde966292, 0x81b949d0, 0x4c50901b, 0x71c65614, 0xe6c6c7bd, 0x327a140a, + 0x45e1d006, 0xc3f27b9a, 0xc9aa53fd, 0x62a80f00, 0xbb25bfe2, 0x35bdd2f6, + 0x71126905, 0xb2040222, 0xb6cbcf7c, 0xcd769c2b, 0x53113ec0, 0x1640e3d3, + 0x38abbd60, 0x2547adf0, 0xba38209c, 0xf746ce76, 0x77afa1c5, 0x20756060, + 0x85cbfe4e, 0x8ae88dd8, 0x7aaaf9b0, 0x4cf9aa7e, 0x1948c25c, 0x02fb8a8c, + 0x01c36ae4, 0xd6ebe1f9, 0x90d4f869, 0xa65cdea0, 0x3f09252d, 0xc208e69f, + 0xb74e6132, 0xce77e25b, 0x578fdfe3, 0x3ac372e6, +} + +var p = [18]uint32{ + 0x243f6a88, 0x85a308d3, 0x13198a2e, 0x03707344, 0xa4093822, 0x299f31d0, + 0x082efa98, 0xec4e6c89, 0x452821e6, 0x38d01377, 0xbe5466cf, 0x34e90c6c, + 0xc0ac29b7, 0xc97c50dd, 0x3f84d5b5, 0xb5470917, 0x9216d5d9, 0x8979fb1b, +}